-- -- PostgreSQL database dump -- -- Dumped from database version 12.4 (Debian 12.4-1.pgdg100+1) -- Dumped by pg_dump version 12.4 (Debian 12.4-1.pgdg100+1) SET statement_timeout = 0; SET lock_timeout = 0; SET idle_in_transaction_session_timeout = 0; SET client_encoding = 'UTF8'; SET standard_conforming_strings = on; SELECT pg_catalog.set_config('search_path', '', false); SET check_function_bodies = false; SET xmloption = content; SET client_min_messages = warning; SET row_security = off; -- -- Name: annotation; Type: SCHEMA; Schema: -; Owner: postgres -- CREATE SCHEMA annotation; ALTER SCHEMA annotation OWNER TO postgres; -- -- Name: biosource; Type: SCHEMA; Schema: -; Owner: postgres -- CREATE SCHEMA biosource; ALTER SCHEMA biosource OWNER TO postgres; -- -- Name: SCHEMA biosource; Type: COMMENT; Schema: -; Owner: postgres -- COMMENT ON SCHEMA biosource IS 'Biosource schema are composed by tables that store data about biological source of the data or other schemas as transcript or expression. It is a combination of the biological origin (samples) and how it was processed (protocol). See specific table comment for more information. The table prefix used is "bs_"'; -- -- Name: gem; Type: SCHEMA; Schema: -; Owner: postgres -- CREATE SCHEMA gem; ALTER SCHEMA gem OWNER TO postgres; -- -- Name: genomic; Type: SCHEMA; Schema: -; Owner: postgres -- CREATE SCHEMA genomic; ALTER SCHEMA genomic OWNER TO postgres; -- -- Name: insitu; Type: SCHEMA; Schema: -; Owner: postgres -- CREATE SCHEMA insitu; ALTER SCHEMA insitu OWNER TO postgres; -- -- Name: metadata; Type: SCHEMA; Schema: -; Owner: postgres -- CREATE SCHEMA metadata; ALTER SCHEMA metadata OWNER TO postgres; -- -- Name: SCHEMA metadata; Type: COMMENT; Schema: -; Owner: postgres -- COMMENT ON SCHEMA metadata IS 'metadata schema is composed of tables that store data about the CXGN system (from file locations to the user that loaded some data). See specific table comment for more information. The table prefix used is "md_"'; -- -- Name: pheno_population; Type: SCHEMA; Schema: -; Owner: postgres -- CREATE SCHEMA pheno_population; ALTER SCHEMA pheno_population OWNER TO postgres; -- -- Name: phenome; Type: SCHEMA; Schema: -; Owner: postgres -- CREATE SCHEMA phenome; ALTER SCHEMA phenome OWNER TO postgres; -- -- Name: physical; Type: SCHEMA; Schema: -; Owner: postgres -- CREATE SCHEMA physical; ALTER SCHEMA physical OWNER TO postgres; -- -- Name: sgn; Type: SCHEMA; Schema: -; Owner: postgres -- CREATE SCHEMA sgn; ALTER SCHEMA sgn OWNER TO postgres; -- -- Name: sgn_people; Type: SCHEMA; Schema: -; Owner: postgres -- CREATE SCHEMA sgn_people; ALTER SCHEMA sgn_people OWNER TO postgres; -- -- Name: sgn_submit; Type: SCHEMA; Schema: -; Owner: postgres -- CREATE SCHEMA sgn_submit; ALTER SCHEMA sgn_submit OWNER TO postgres; -- -- Name: tomato_gff; Type: SCHEMA; Schema: -; Owner: postgres -- CREATE SCHEMA tomato_gff; ALTER SCHEMA tomato_gff OWNER TO postgres; -- -- Name: utils; Type: SCHEMA; Schema: -; Owner: postgres -- CREATE SCHEMA utils; ALTER SCHEMA utils OWNER TO postgres; -- -- Name: pgcrypto; Type: EXTENSION; Schema: -; Owner: - -- CREATE EXTENSION IF NOT EXISTS pgcrypto WITH SCHEMA sgn; -- -- Name: EXTENSION pgcrypto; Type: COMMENT; Schema: -; Owner: -- COMMENT ON EXTENSION pgcrypto IS 'cryptographic functions'; -- -- Name: tablefunc; Type: EXTENSION; Schema: -; Owner: - -- CREATE EXTENSION IF NOT EXISTS tablefunc WITH SCHEMA sgn; -- -- Name: EXTENSION tablefunc; Type: COMMENT; Schema: -; Owner: -- COMMENT ON EXTENSION tablefunc IS 'functions that manipulate whole tables, including crosstab'; -- -- Name: abstract_tsvector(); Type: FUNCTION; Schema: public; Owner: postgres -- CREATE FUNCTION public.abstract_tsvector() RETURNS trigger LANGUAGE plpgsql AS $$ BEGIN NEW.abstract_tsvector := to_tsvector(NEW.abstract); RETURN NEW; END $$; ALTER FUNCTION public.abstract_tsvector() OWNER TO postgres; -- -- Name: boxquery(integer, integer); Type: FUNCTION; Schema: public; Owner: postgres -- CREATE FUNCTION public.boxquery(integer, integer) RETURNS box LANGUAGE sql IMMUTABLE AS $_$SELECT box (create_point($1, $2), create_point($1, $2))$_$; ALTER FUNCTION public.boxquery(integer, integer) OWNER TO postgres; -- -- Name: boxrange(integer, integer); Type: FUNCTION; Schema: public; Owner: postgres -- CREATE FUNCTION public.boxrange(integer, integer) RETURNS box LANGUAGE sql IMMUTABLE AS $_$SELECT box (create_point(0, $1), create_point($2,500000000))$_$; ALTER FUNCTION public.boxrange(integer, integer) OWNER TO postgres; -- -- Name: create_point(integer, integer); Type: FUNCTION; Schema: public; Owner: postgres -- CREATE FUNCTION public.create_point(integer, integer) RETURNS point LANGUAGE sql AS $_$SELECT point ($1, $2)$_$; ALTER FUNCTION public.create_point(integer, integer) OWNER TO postgres; SET default_tablespace = ''; SET default_table_access_method = heap; -- -- Name: feature; Type: TABLE; Schema: public; Owner: postgres -- CREATE TABLE public.feature ( feature_id integer NOT NULL, dbxref_id integer, organism_id integer NOT NULL, name character varying(255), uniquename text NOT NULL, residues text, seqlen integer, md5checksum character(32), type_id integer NOT NULL, is_analysis boolean DEFAULT false NOT NULL, is_obsolete boolean DEFAULT false NOT NULL, timeaccessioned timestamp without time zone DEFAULT ('now'::text)::timestamp(6) with time zone NOT NULL, timelastmodified timestamp without time zone DEFAULT ('now'::text)::timestamp(6) with time zone NOT NULL ); ALTER TABLE public.feature OWNER TO postgres; -- -- Name: TABLE feature; Type: COMMENT; Schema: public; Owner: postgres -- COMMENT ON TABLE public.feature IS 'A feature is a biological sequence or a section of a biological sequence, or a collection of such sections. Examples include genes, exons, transcripts, regulatory regions, polypeptides, protein domains, chromosome sequences, sequence variations, cross-genome match regions such as hits and HSPs and so on; see the Sequence Ontology for more'; -- -- Name: COLUMN feature.dbxref_id; Type: COMMENT; Schema: public; Owner: postgres -- COMMENT ON COLUMN public.feature.dbxref_id IS 'An optional primary public stable identifier for this feature. Secondary identifiers and external dbxrefs go in table:feature_dbxref'; -- -- Name: COLUMN feature.organism_id; Type: COMMENT; Schema: public; Owner: postgres -- COMMENT ON COLUMN public.feature.organism_id IS 'The organism to which this feature belongs. This column is mandatory'; -- -- Name: COLUMN feature.name; Type: COMMENT; Schema: public; Owner: postgres -- COMMENT ON COLUMN public.feature.name IS 'The optional human-readable common name for a feature, for display purposes'; -- -- Name: COLUMN feature.uniquename; Type: COMMENT; Schema: public; Owner: postgres -- COMMENT ON COLUMN public.feature.uniquename IS 'The unique name for a feature; may not be necessarily be particularly human-readable, although this is prefered. This name must be unique for this type of feature within this organism'; -- -- Name: COLUMN feature.residues; Type: COMMENT; Schema: public; Owner: postgres -- COMMENT ON COLUMN public.feature.residues IS 'A sequence of alphabetic characters representing biological residues (nucleic acids, amino acids). This column does not need to be manifested for all features; it is optional for features such as exons where the residues can be derived from the featureloc. It is recommended that the value for this column be manifested for features which may may non-contiguous sublocations (eg transcripts), since derivation at query time is non-trivial. For expressed sequence, the DNA sequence should be used rather than the RNA sequence'; -- -- Name: COLUMN feature.seqlen; Type: COMMENT; Schema: public; Owner: postgres -- COMMENT ON COLUMN public.feature.seqlen IS 'The length of the residue feature. See column:residues. This column is partially redundant with the residues column, and also with featureloc. This column is required because the location may be unknown and the residue sequence may not be manifested, yet it may be desirable to store and query the length of the feature. The seqlen should always be manifested where the length of the sequence is known'; -- -- Name: COLUMN feature.md5checksum; Type: COMMENT; Schema: public; Owner: postgres -- COMMENT ON COLUMN public.feature.md5checksum IS 'The 32-character checksum of the sequence, calculated using the MD5 algorithm. This is practically guaranteed to be unique for any feature. This column thus acts as a unique identifier on the mathematical sequence'; -- -- Name: COLUMN feature.type_id; Type: COMMENT; Schema: public; Owner: postgres -- COMMENT ON COLUMN public.feature.type_id IS 'A required reference to a table:cvterm giving the feature type. This will typically be a Sequence Ontology identifier. This column is thus used to subclass the feature table'; -- -- Name: COLUMN feature.is_analysis; Type: COMMENT; Schema: public; Owner: postgres -- COMMENT ON COLUMN public.feature.is_analysis IS 'Boolean indicating whether this feature is annotated or the result of an automated analysis. Analysis results also use the companalysis module. Note that the dividing line between analysis/annotation may be fuzzy, this should be determined on a per-project basis in a consistent manner. One requirement is that there should only be one non-analysis version of each wild-type gene feature in a genome, whereas the same gene feature can be predicted multiple times in different analyses'; -- -- Name: COLUMN feature.is_obsolete; Type: COMMENT; Schema: public; Owner: postgres -- COMMENT ON COLUMN public.feature.is_obsolete IS 'Boolean indicating whether this feature has been obsoleted. Some chado instances may choose to simply remove the feature altogether, others may choose to keep an obsolete row in the table'; -- -- Name: COLUMN feature.timeaccessioned; Type: COMMENT; Schema: public; Owner: postgres -- COMMENT ON COLUMN public.feature.timeaccessioned IS 'for handling object accession/modification timestamps (as opposed to db auditing info, handled elsewhere). The expectation is that these fields would be available to software interacting with chado'; -- -- Name: COLUMN feature.timelastmodified; Type: COMMENT; Schema: public; Owner: postgres -- COMMENT ON COLUMN public.feature.timelastmodified IS 'for handling object accession/modification timestamps (as opposed to db auditing info, handled elsewhere). The expectation is that these fields would be available to software interacting with chado'; -- -- Name: feature_disjoint_from(integer); Type: FUNCTION; Schema: public; Owner: postgres -- CREATE FUNCTION public.feature_disjoint_from(integer) RETURNS SETOF public.feature LANGUAGE sql AS $_$SELECT feature.* FROM feature INNER JOIN featureloc AS x ON (x.feature_id=feature.feature_id) INNER JOIN featureloc AS y ON (y.feature_id=$1) WHERE x.srcfeature_id = y.srcfeature_id AND ( x.fmax < y.fmin OR x.fmin > y.fmax ) $_$; ALTER FUNCTION public.feature_disjoint_from(integer) OWNER TO postgres; -- -- Name: feature_overlaps(integer); Type: FUNCTION; Schema: public; Owner: postgres -- CREATE FUNCTION public.feature_overlaps(integer) RETURNS SETOF public.feature LANGUAGE sql AS $_$SELECT feature.* FROM feature INNER JOIN featureloc AS x ON (x.feature_id=feature.feature_id) INNER JOIN featureloc AS y ON (y.feature_id=$1) WHERE x.srcfeature_id = y.srcfeature_id AND ( x.fmax >= y.fmin AND x.fmin <= y.fmax ) $_$; ALTER FUNCTION public.feature_overlaps(integer) OWNER TO postgres; -- -- Name: featureloc; Type: TABLE; Schema: public; Owner: postgres -- CREATE TABLE public.featureloc ( featureloc_id integer NOT NULL, feature_id integer NOT NULL, srcfeature_id integer, fmin integer, is_fmin_partial boolean DEFAULT false NOT NULL, fmax integer, is_fmax_partial boolean DEFAULT false NOT NULL, strand smallint, phase integer, residue_info text, locgroup integer DEFAULT 0 NOT NULL, rank integer DEFAULT 0 NOT NULL, CONSTRAINT featureloc_c2 CHECK ((fmin <= fmax)) ); ALTER TABLE public.featureloc OWNER TO postgres; -- -- Name: TABLE featureloc; Type: COMMENT; Schema: public; Owner: postgres -- COMMENT ON TABLE public.featureloc IS 'The location of a feature relative to another feature. IMPORTANT: INTERBASE COORDINATES ARE USED.(This is vital as it allows us to represent zero-length features eg splice sites, insertion points without an awkward fuzzy system). Features typically have exactly ONE location, but this need not be the case. Some features may not be localized (eg a gene that has been characterized genetically but no sequence/molecular info is available). NOTE ON MULTIPLE LOCATIONS: Each feature can have 0 or more locations. Multiple locations do NOT indicate non-contiguous locations (if a feature such as a transcript has a non-contiguous location, then the subfeatures such as exons should always be manifested). Instead, multiple featurelocs for a feature designate alternate locations or grouped locations; for instance, a feature designating a blast hit or hsp will have two locations, one on the query feature, one on the subject feature. features representing sequence variation could have alternate locations instantiated on a feature on the mutant strain. the column:rank is used to differentiate these different locations. Reflexive locations should never be stored - this is for -proper- (ie non-self) locations only; i.e. nothing should be located relative to itself'; -- -- Name: COLUMN featureloc.feature_id; Type: COMMENT; Schema: public; Owner: postgres -- COMMENT ON COLUMN public.featureloc.feature_id IS 'The feature that is being located. Any feature can have zero or more featurelocs'; -- -- Name: COLUMN featureloc.srcfeature_id; Type: COMMENT; Schema: public; Owner: postgres -- COMMENT ON COLUMN public.featureloc.srcfeature_id IS 'The source feature which this location is relative to. Every location is relative to another feature (however, this column is nullable, because the srcfeature may not be known). All locations are -proper- that is, nothing should be located relative to itself. No cycles are allowed in the featureloc graph'; -- -- Name: COLUMN featureloc.fmin; Type: COMMENT; Schema: public; Owner: postgres -- COMMENT ON COLUMN public.featureloc.fmin IS 'The leftmost/minimal boundary in the linear range represented by the featureloc. Sometimes (eg in bioperl) this is called -start- although this is confusing because it does not necessarily represent the 5-prime coordinate. IMPORTANT: This is space-based (INTERBASE) coordinates, counting from zero. To convert this to the leftmost position in a base-oriented system (eg GFF, bioperl), add 1 to fmin'; -- -- Name: COLUMN featureloc.is_fmin_partial; Type: COMMENT; Schema: public; Owner: postgres -- COMMENT ON COLUMN public.featureloc.is_fmin_partial IS 'This is typically false, but may be true if the value for column:fmin is inaccurate or the leftmost part of the range is unknown/unbounded'; -- -- Name: COLUMN featureloc.fmax; Type: COMMENT; Schema: public; Owner: postgres -- COMMENT ON COLUMN public.featureloc.fmax IS 'The rightmost/maximal boundary in the linear range represented by the featureloc. Sometimes (eg in bioperl) this is called -end- although this is confusing because it does not necessarily represent the 3-prime coordinate. IMPORTANT: This is space-based (INTERBASE) coordinates, counting from zero. No conversion is required to go from fmax to the rightmost coordinate in a base-oriented system that counts from 1 (eg GFF, bioperl)'; -- -- Name: COLUMN featureloc.is_fmax_partial; Type: COMMENT; Schema: public; Owner: postgres -- COMMENT ON COLUMN public.featureloc.is_fmax_partial IS 'This is typically false, but may be true if the value for column:fmax is inaccurate or the rightmost part of the range is unknown/unbounded'; -- -- Name: COLUMN featureloc.strand; Type: COMMENT; Schema: public; Owner: postgres -- COMMENT ON COLUMN public.featureloc.strand IS 'The orientation/directionality of the location. Should be 0,-1 or +1'; -- -- Name: COLUMN featureloc.phase; Type: COMMENT; Schema: public; Owner: postgres -- COMMENT ON COLUMN public.featureloc.phase IS 'phase of translation wrt srcfeature_id. Values are 0,1,2. It may not be possible to manifest this column for some features such as exons, because the phase is dependant on the spliceform (the same exon can appear in multiple spliceforms). This column is mostly useful for predicted exons and CDSs'; -- -- Name: COLUMN featureloc.residue_info; Type: COMMENT; Schema: public; Owner: postgres -- COMMENT ON COLUMN public.featureloc.residue_info IS 'Alternative residues, when these differ from feature.residues. for instance, a SNP feature located on a wild and mutant protein would have different alresidues. for alignment/similarity features, the altresidues is used to represent the alignment string (CIGAR format). Note on variation features; even if we dont want to instantiate a mutant chromosome/contig feature, we can still represent a SNP etc with 2 locations, one (rank 0) on the genome, the other (rank 1) would have most fields null, except for altresidues'; -- -- Name: COLUMN featureloc.locgroup; Type: COMMENT; Schema: public; Owner: postgres -- COMMENT ON COLUMN public.featureloc.locgroup IS 'This is used to manifest redundant, derivable extra locations for a feature. The default locgroup=0 is used for the DIRECT location of a feature. !! MOST CHADO USERS MAY NEVER USE featurelocs WITH logroup>0 !! Transitively derived locations are indicated with locgroup>0. For example, the position of an exon on a BAC and in global chromosome coordinates. This column is used to differentiate these groupings of locations. the default locgroup 0 is used for the main/primary location, from which the others can be derived via coordinate transformations. another example of redundant locations is storing ORF coordinates relative to both transcript and genome. redundant locations open the possibility of the database getting into inconsistent states; this schema gives us the flexibility of both warehouse instantiations with redundant locations (easier for querying) and management instantiations with no redundant locations. An example of using both locgroup and rank: imagine a feature indicating a conserved region between the chromosomes of two different species. we may want to keep redundant locations on both contigs and chromosomes. we would thus have 4 locations for the single conserved region feature - two distinct locgroups (contig level and chromosome level) and two distinct ranks (for the two species)'; -- -- Name: COLUMN featureloc.rank; Type: COMMENT; Schema: public; Owner: postgres -- COMMENT ON COLUMN public.featureloc.rank IS 'Used when a feature has >1 location, otherwise the default rank 0 is used. Some features (eg blast hits and HSPs) have two locations - one on the query and one on the subject. Rank is used to differentiate these. Rank=0 is always used for the query, Rank=1 for the subject. For multiple alignments, assignment of rank is arbitrary. Rank is also used for sequence_variant features, such as SNPs. Rank=0 indicates the wildtype (or baseline) feature, Rank=1 indicates the mutant (or compared) feature'; -- -- Name: featureloc_slice(integer, integer); Type: FUNCTION; Schema: public; Owner: postgres -- CREATE FUNCTION public.featureloc_slice(integer, integer) RETURNS SETOF public.featureloc LANGUAGE sql AS $_$SELECT * from featureloc where boxquery($1, $2) @ boxrange(fmin,fmax)$_$; ALTER FUNCTION public.featureloc_slice(integer, integer) OWNER TO postgres; -- -- Name: featureloc_slice(integer, integer, integer); Type: FUNCTION; Schema: public; Owner: postgres -- CREATE FUNCTION public.featureloc_slice(integer, integer, integer) RETURNS SETOF public.featureloc LANGUAGE sql AS $_$SELECT * FROM featureloc WHERE boxquery($2, $3) @ boxrange(fmin,fmax) AND srcfeature_id = $1 $_$; ALTER FUNCTION public.featureloc_slice(integer, integer, integer) OWNER TO postgres; -- -- Name: featureloc_slice(character varying, integer, integer); Type: FUNCTION; Schema: public; Owner: postgres -- CREATE FUNCTION public.featureloc_slice(character varying, integer, integer) RETURNS SETOF public.featureloc LANGUAGE sql AS $_$SELECT featureloc.* FROM featureloc INNER JOIN feature AS srcf ON (srcf.feature_id = featureloc.srcfeature_id) WHERE boxquery($2, $3) @ boxrange(fmin,fmax) AND srcf.name = $1 $_$; ALTER FUNCTION public.featureloc_slice(character varying, integer, integer) OWNER TO postgres; -- -- Name: featureslice(integer, integer); Type: FUNCTION; Schema: public; Owner: postgres -- CREATE FUNCTION public.featureslice(integer, integer) RETURNS SETOF public.featureloc LANGUAGE sql AS $_$SELECT * from featureloc where boxquery($1, $2) @ boxrange(fmin,fmax)$_$; ALTER FUNCTION public.featureslice(integer, integer) OWNER TO postgres; -- -- Name: gffattstring(integer); Type: FUNCTION; Schema: public; Owner: postgres -- CREATE FUNCTION public.gffattstring(integer) RETURNS character varying LANGUAGE plpgsql AS $_$DECLARE return_string varchar; f_id ALIAS FOR $1; atts_view gffatts%ROWTYPE; feature_row feature%ROWTYPE; name varchar; uniquename varchar; parent varchar; escape_loc int; BEGIN --Get name from feature.name --Get ID from feature.uniquename SELECT INTO feature_row * FROM feature WHERE feature_id = f_id; name = feature_row.name; return_string = 'ID=' || feature_row.uniquename; IF name IS NOT NULL AND name != '' THEN return_string = return_string ||';' || 'Name=' || name; END IF; --Get Parent from feature_relationship SELECT INTO feature_row * FROM feature f, feature_relationship fr WHERE fr.subject_id = f_id AND fr.object_id = f.feature_id; IF FOUND THEN return_string = return_string||';'||'Parent='||feature_row.uniquename; END IF; FOR atts_view IN SELECT * FROM gff3atts WHERE feature_id = f_id LOOP escape_loc = position(';' in atts_view.attribute); IF escape_loc > 0 THEN atts_view.attribute = replace(atts_view.attribute, ';', '%3B'); END IF; return_string = return_string || ';' || atts_view.type || '=' || atts_view.attribute; END LOOP; RETURN return_string; END; $_$; ALTER FUNCTION public.gffattstring(integer) OWNER TO postgres; -- -- Name: cvterm; Type: TABLE; Schema: public; Owner: postgres -- CREATE TABLE public.cvterm ( cvterm_id integer NOT NULL, cv_id integer NOT NULL, name character varying(1024) NOT NULL, definition text, dbxref_id integer NOT NULL, is_obsolete integer DEFAULT 0 NOT NULL, is_relationshiptype integer DEFAULT 0 NOT NULL ); ALTER TABLE public.cvterm OWNER TO postgres; -- -- Name: TABLE cvterm; Type: COMMENT; Schema: public; Owner: postgres -- COMMENT ON TABLE public.cvterm IS 'A term, class, universal or type within an ontology or controlled vocabulary. This table is also used for relations and properties. cvterms constitute nodes in the graph defined by the collection of cvterms and cvterm_relationships'; -- -- Name: COLUMN cvterm.cv_id; Type: COMMENT; Schema: public; Owner: postgres -- COMMENT ON COLUMN public.cvterm.cv_id IS 'The cv/ontology/namespace to which this cvterm belongs'; -- -- Name: COLUMN cvterm.name; Type: COMMENT; Schema: public; Owner: postgres -- COMMENT ON COLUMN public.cvterm.name IS 'A concise human-readable name or label for the cvterm. uniquely identifies a cvterm within a cv'; -- -- Name: COLUMN cvterm.definition; Type: COMMENT; Schema: public; Owner: postgres -- COMMENT ON COLUMN public.cvterm.definition IS 'A human-readable text definition'; -- -- Name: COLUMN cvterm.dbxref_id; Type: COMMENT; Schema: public; Owner: postgres -- COMMENT ON COLUMN public.cvterm.dbxref_id IS 'Primary identifier dbxref - The unique global OBO identifier for this cvterm. Note that a cvterm may have multiple secondary dbxrefs - see also table: cvterm_dbxref'; -- -- Name: COLUMN cvterm.is_obsolete; Type: COMMENT; Schema: public; Owner: postgres -- COMMENT ON COLUMN public.cvterm.is_obsolete IS 'Boolean 0=false,1=true; see GO documentation for details of obsoletion. note that two terms with different primary dbxrefs may exist if one is obsolete'; -- -- Name: COLUMN cvterm.is_relationshiptype; Type: COMMENT; Schema: public; Owner: postgres -- COMMENT ON COLUMN public.cvterm.is_relationshiptype IS 'Boolean 0=false,1=true relations or relationship types (also known as Typedefs in OBO format, or as properties or slots) form a cv/ontology in themselves. We use this flag to indicate whether this cvterm is an actual term/class/universal or a relation. Relations may be drawn from the OBO Relations ontology, but are not exclusively drawn from there'; -- -- Name: db; Type: TABLE; Schema: public; Owner: postgres -- CREATE TABLE public.db ( db_id integer NOT NULL, name character varying(255) NOT NULL, description character varying(255), urlprefix character varying(255), url character varying(255) ); ALTER TABLE public.db OWNER TO postgres; -- -- Name: TABLE db; Type: COMMENT; Schema: public; Owner: postgres -- COMMENT ON TABLE public.db IS 'A database authority. Typical dbs in bioinformatics are FlyBase, GO, UniProt, NCBI, MGI, etc. The authority is generally known by this sortened form, which is unique within the bioinformatics and biomedical realm. **TODO** - add support for URIs, URNs (eg LSIDs). We can do this by treating the url as a uri - however, some applications may expect this to be resolvable - to be decided'; -- -- Name: dbxref; Type: TABLE; Schema: public; Owner: postgres -- CREATE TABLE public.dbxref ( dbxref_id integer NOT NULL, db_id integer NOT NULL, accession character varying(255) NOT NULL, version character varying(255) DEFAULT ''::character varying NOT NULL, description text ); ALTER TABLE public.dbxref OWNER TO postgres; -- -- Name: TABLE dbxref; Type: COMMENT; Schema: public; Owner: postgres -- COMMENT ON TABLE public.dbxref IS 'A unique, global, public, stable identifier. Not necessarily an eXternal reference - can reference data items inside the particular chado instance being used. Typically a row in a table can be uniquely identified with a primary identifier (called dbxref_id); a table may also have secondary identifiers (in a linking table _dbxref). A dbxref is generally written as : or as ::. '; -- -- Name: COLUMN dbxref.accession; Type: COMMENT; Schema: public; Owner: postgres -- COMMENT ON COLUMN public.dbxref.accession IS 'The local part of the identifier. Guaranteed by the db authority to be unique for that db'; -- -- Name: feature_cvterm; Type: TABLE; Schema: public; Owner: postgres -- CREATE TABLE public.feature_cvterm ( feature_cvterm_id integer NOT NULL, feature_id integer NOT NULL, cvterm_id integer NOT NULL, pub_id integer NOT NULL, is_not boolean DEFAULT false NOT NULL, rank integer DEFAULT 0 NOT NULL ); ALTER TABLE public.feature_cvterm OWNER TO postgres; -- -- Name: TABLE feature_cvterm; Type: COMMENT; Schema: public; Owner: postgres -- COMMENT ON TABLE public.feature_cvterm IS 'Associate a term from a cv with a feature, for example, GO annotation'; -- -- Name: COLUMN feature_cvterm.pub_id; Type: COMMENT; Schema: public; Owner: postgres -- COMMENT ON COLUMN public.feature_cvterm.pub_id IS 'Provenance for the annotation. Each annotation should have a single primary publication (which may be of the appropriate type for computational analyses) where more details can be found. Additional provenance dbxrefs can be attached using feature_cvterm_dbxref'; -- -- Name: COLUMN feature_cvterm.is_not; Type: COMMENT; Schema: public; Owner: postgres -- COMMENT ON COLUMN public.feature_cvterm.is_not IS 'if this is set to true, then this annotation is interpreted as a NEGATIVE annotation - ie the feature does NOT have the specified function, process, component, part, etc. See GO docs for more details'; -- -- Name: feature_dbxref; Type: TABLE; Schema: public; Owner: postgres -- CREATE TABLE public.feature_dbxref ( feature_dbxref_id integer NOT NULL, feature_id integer NOT NULL, dbxref_id integer NOT NULL, is_current boolean DEFAULT true NOT NULL ); ALTER TABLE public.feature_dbxref OWNER TO postgres; -- -- Name: TABLE feature_dbxref; Type: COMMENT; Schema: public; Owner: postgres -- COMMENT ON TABLE public.feature_dbxref IS 'links a feature to dbxrefs. This is for secondary identifiers; primary identifiers should use feature.dbxref_id'; -- -- Name: COLUMN feature_dbxref.is_current; Type: COMMENT; Schema: public; Owner: postgres -- COMMENT ON COLUMN public.feature_dbxref.is_current IS 'the is_current boolean indicates whether the linked dbxref is the current -official- dbxref for the linked feature'; -- -- Name: feature_pub; Type: TABLE; Schema: public; Owner: postgres -- CREATE TABLE public.feature_pub ( feature_pub_id integer NOT NULL, feature_id integer NOT NULL, pub_id integer NOT NULL ); ALTER TABLE public.feature_pub OWNER TO postgres; -- -- Name: TABLE feature_pub; Type: COMMENT; Schema: public; Owner: postgres -- COMMENT ON TABLE public.feature_pub IS 'Provenance. Linking table between features and publications that mention them'; -- -- Name: feature_synonym; Type: TABLE; Schema: public; Owner: postgres -- CREATE TABLE public.feature_synonym ( feature_synonym_id integer NOT NULL, synonym_id integer NOT NULL, feature_id integer NOT NULL, pub_id integer NOT NULL, is_current boolean DEFAULT true NOT NULL, is_internal boolean DEFAULT false NOT NULL ); ALTER TABLE public.feature_synonym OWNER TO postgres; -- -- Name: TABLE feature_synonym; Type: COMMENT; Schema: public; Owner: postgres -- COMMENT ON TABLE public.feature_synonym IS 'Linking table between feature and synonym'; -- -- Name: COLUMN feature_synonym.pub_id; Type: COMMENT; Schema: public; Owner: postgres -- COMMENT ON COLUMN public.feature_synonym.pub_id IS 'the pub_id link is for relating the usage of a given synonym to the publication in which it was used'; -- -- Name: COLUMN feature_synonym.is_current; Type: COMMENT; Schema: public; Owner: postgres -- COMMENT ON COLUMN public.feature_synonym.is_current IS 'the is_current boolean indicates whether the linked synonym is the current -official- symbol for the linked feature'; -- -- Name: COLUMN feature_synonym.is_internal; Type: COMMENT; Schema: public; Owner: postgres -- COMMENT ON COLUMN public.feature_synonym.is_internal IS 'typically a synonym exists so that somebody querying the db with an obsolete name can find the object theyre looking for (under its current name. If the synonym has been used publicly & deliberately (eg in a paper), it my also be listed in reports as a synonym. If the synonym was not used deliberately (eg, there was a typo which went public), then the is_internal boolean may be set to -true- so that it is known that the synonym is -internal- and should be queryable but should not be listed in reports as a valid synonym'; -- -- Name: featureprop; Type: TABLE; Schema: public; Owner: postgres -- CREATE TABLE public.featureprop ( featureprop_id integer NOT NULL, feature_id integer NOT NULL, type_id integer NOT NULL, value text, rank integer DEFAULT 0 NOT NULL ); ALTER TABLE public.featureprop OWNER TO postgres; -- -- Name: TABLE featureprop; Type: COMMENT; Schema: public; Owner: postgres -- COMMENT ON TABLE public.featureprop IS 'A feature can have any number of slot-value property tags attached to it. This is an alternative to hardcoding a list of columns in the relational schema, and is completely extensible'; -- -- Name: COLUMN featureprop.type_id; Type: COMMENT; Schema: public; Owner: postgres -- COMMENT ON COLUMN public.featureprop.type_id IS 'The name of the property/slot is a cvterm. The meaning of the property is defined in that cvterm. Certain property types will only apply to certain feature types (e.g. the anticodon property will only apply to tRNA features) ; the types here come from the sequence feature property ontology'; -- -- Name: COLUMN featureprop.value; Type: COMMENT; Schema: public; Owner: postgres -- COMMENT ON COLUMN public.featureprop.value IS 'The value of the property, represented as text. Numeric values are converted to their text representation. This is less efficient than using native database types, but is easier to query.'; -- -- Name: COLUMN featureprop.rank; Type: COMMENT; Schema: public; Owner: postgres -- COMMENT ON COLUMN public.featureprop.rank IS 'Property-Value ordering. Any feature can have multiple values for any particular property type - these are ordered in a list using rank, counting from zero. For properties that are single-valued rather than multi-valued, the default 0 value should be used'; -- -- Name: pub; Type: TABLE; Schema: public; Owner: postgres -- CREATE TABLE public.pub ( pub_id integer NOT NULL, title text, volumetitle text, volume character varying(255), series_name character varying(255), issue character varying(255), pyear character varying(255), pages character varying(255), miniref character varying(255), uniquename text NOT NULL, type_id integer NOT NULL, is_obsolete boolean DEFAULT false, publisher character varying(255), pubplace character varying(255), title_tsvector tsvector ); ALTER TABLE public.pub OWNER TO postgres; -- -- Name: TABLE pub; Type: COMMENT; Schema: public; Owner: postgres -- COMMENT ON TABLE public.pub IS 'A documented provenance artefact - publications, documents, personal communication'; -- -- Name: COLUMN pub.title; Type: COMMENT; Schema: public; Owner: postgres -- COMMENT ON COLUMN public.pub.title IS 'descriptive general heading'; -- -- Name: COLUMN pub.volumetitle; Type: COMMENT; Schema: public; Owner: postgres -- COMMENT ON COLUMN public.pub.volumetitle IS 'title of part if one of a series'; -- -- Name: COLUMN pub.series_name; Type: COMMENT; Schema: public; Owner: postgres -- COMMENT ON COLUMN public.pub.series_name IS 'full name of (journal) series'; -- -- Name: COLUMN pub.pages; Type: COMMENT; Schema: public; Owner: postgres -- COMMENT ON COLUMN public.pub.pages IS 'page number range[s], eg, 457--459, viii + 664pp, lv--lvii'; -- -- Name: COLUMN pub.type_id; Type: COMMENT; Schema: public; Owner: postgres -- COMMENT ON COLUMN public.pub.type_id IS 'the type of the publication (book, journal, poem, graffiti, etc). Uses pub cv'; -- -- Name: synonym; Type: TABLE; Schema: public; Owner: postgres -- CREATE TABLE public.synonym ( synonym_id integer NOT NULL, name character varying(255) NOT NULL, type_id integer NOT NULL, synonym_sgml character varying(255) NOT NULL ); ALTER TABLE public.synonym OWNER TO postgres; -- -- Name: TABLE synonym; Type: COMMENT; Schema: public; Owner: postgres -- COMMENT ON TABLE public.synonym IS 'A synonym for a feature. One feature can have multiple synonyms, and the same synonym can apply to multiple features'; -- -- Name: COLUMN synonym.name; Type: COMMENT; Schema: public; Owner: postgres -- COMMENT ON COLUMN public.synonym.name IS 'The synonym itself. Should be human-readable machine-searchable ascii text'; -- -- Name: COLUMN synonym.type_id; Type: COMMENT; Schema: public; Owner: postgres -- COMMENT ON COLUMN public.synonym.type_id IS 'types would be symbol and fullname for now'; -- -- Name: COLUMN synonym.synonym_sgml; Type: COMMENT; Schema: public; Owner: postgres -- COMMENT ON COLUMN public.synonym.synonym_sgml IS 'The fully specified synonym, with any non-ascii characters encoded in SGML'; -- -- Name: gffatts; Type: VIEW; Schema: public; Owner: postgres -- CREATE VIEW public.gffatts AS SELECT fs.feature_id, 'cvterm'::text AS type, s.name AS attribute FROM public.cvterm s, public.feature_cvterm fs WHERE (fs.cvterm_id = s.cvterm_id) UNION ALL SELECT fs.feature_id, 'dbxref'::text AS type, (((d.name)::text || ':'::text) || (s.accession)::text) AS attribute FROM public.dbxref s, public.feature_dbxref fs, public.db d WHERE ((fs.dbxref_id = s.dbxref_id) AND (s.db_id = d.db_id)) UNION ALL SELECT fs.feature_id, 'synonym'::text AS type, s.name AS attribute FROM public.synonym s, public.feature_synonym fs WHERE (fs.synonym_id = s.synonym_id) UNION ALL SELECT fp.feature_id, cv.name AS type, fp.value AS attribute FROM public.featureprop fp, public.cvterm cv WHERE (fp.type_id = cv.cvterm_id) UNION ALL SELECT fs.feature_id, 'pub'::text AS type, (((s.series_name)::text || ':'::text) || s.title) AS attribute FROM public.pub s, public.feature_pub fs WHERE (fs.pub_id = s.pub_id); ALTER TABLE public.gffatts OWNER TO postgres; -- -- Name: gfffeatureatts(integer); Type: FUNCTION; Schema: public; Owner: postgres -- CREATE FUNCTION public.gfffeatureatts(integer) RETURNS SETOF public.gffatts LANGUAGE sql AS $_$ SELECT feature_id, 'cvterm' AS type, s.name AS attribute FROM cvterm s, feature_cvterm fs WHERE fs.feature_id= $1 AND fs.cvterm_id = s.cvterm_id UNION SELECT feature_id, 'dbxref' AS type, d.name || ':' || s.accession AS attribute FROM dbxref s, feature_dbxref fs, db d WHERE fs.feature_id= $1 AND fs.dbxref_id = s.dbxref_id AND s.db_id = d.db_id --UNION --SELECT feature_id, 'expression' AS type, s.description AS attribute --FROM expression s, feature_expression fs --WHERE fs.feature_id= $1 AND fs.expression_id = s.expression_id --UNION --SELECT fg.feature_id, 'genotype' AS type, g.uniquename||': '||g.description AS attribute --FROM gcontext g, feature_gcontext fg --WHERE fg.feature_id= $1 AND g.gcontext_id = fg.gcontext_id --UNION --SELECT feature_id, 'genotype' AS type, s.description AS attribute --FROM genotype s, feature_genotype fs --WHERE fs.feature_id= $1 AND fs.genotype_id = s.genotype_id --UNION --SELECT feature_id, 'phenotype' AS type, s.description AS attribute --FROM phenotype s, feature_phenotype fs --WHERE fs.feature_id= $1 AND fs.phenotype_id = s.phenotype_id UNION SELECT feature_id, 'synonym' AS type, s.name AS attribute FROM synonym s, feature_synonym fs WHERE fs.feature_id= $1 AND fs.synonym_id = s.synonym_id UNION SELECT fp.feature_id,cv.name,fp.value FROM featureprop fp, cvterm cv WHERE fp.feature_id= $1 AND fp.type_id = cv.cvterm_id UNION SELECT feature_id, 'pub' AS type, s.series_name || ':' || s.title AS attribute FROM pub s, feature_pub fs WHERE fs.feature_id= $1 AND fs.pub_id = s.pub_id $_$; ALTER FUNCTION public.gfffeatureatts(integer) OWNER TO postgres; -- -- Name: make_all_rows_visible_in_schema(character varying); Type: FUNCTION; Schema: public; Owner: postgres -- CREATE FUNCTION public.make_all_rows_visible_in_schema(scm character varying) RETURNS boolean LANGUAGE plpgsql AS $$ DECLARE myrec RECORD; stmt VARCHAR; query VARCHAR; bt_schema VARCHAR; BEGIN bt_schema = scm || '_bt'; query = 'SELECT relname FROM pg_class c, pg_namespace n WHERE c.relnamespace=n.oid AND c.relkind=''r'' AND n.nspname=''' || bt_schema || ''''; -- RAISE NOTICE '%', query; --stmt; FOR myrec IN EXECUTE query LOOP RAISE NOTICE 'Making rows in ''%'' visible', myrec.relname; stmt = 'SELECT make_all_rows_visible(''' || scm || '''::varchar, ''' || myrec.relname || '''::varchar)'; --RAISE NOTICE '%', stmt; EXECUTE stmt; END LOOP; RETURN 't'; END $$; ALTER FUNCTION public.make_all_rows_visible_in_schema(scm character varying) OWNER TO postgres; -- -- Name: plpgsql_call_handler(); Type: FUNCTION; Schema: public; Owner: postgres -- CREATE FUNCTION public.plpgsql_call_handler() RETURNS language_handler LANGUAGE c AS '$libdir/plpgsql', 'plpgsql_call_handler'; ALTER FUNCTION public.plpgsql_call_handler() OWNER TO postgres; -- -- Name: plpgsql_validator(oid); Type: FUNCTION; Schema: public; Owner: postgres -- CREATE FUNCTION public.plpgsql_validator(oid) RETURNS void LANGUAGE c AS '$libdir/plpgsql', 'plpgsql_validator'; ALTER FUNCTION public.plpgsql_validator(oid) OWNER TO postgres; -- -- Name: randstring(integer); Type: FUNCTION; Schema: public; Owner: postgres -- CREATE FUNCTION public.randstring(length integer) RETURNS character varying LANGUAGE plpgsql AS $$ declare ret varchar; begin ret = ''; for i in 1..length loop ret = ret || substring ('abcdefghijklmnopqrstuvwxyz1234567890ABCDEFGHIJKLMN' from cast (random()*50 as integer) for 1); end loop; return ret; end $$; ALTER FUNCTION public.randstring(length integer) OWNER TO postgres; -- -- Name: refresh_materialized_phenotype_jsonb_table(); Type: FUNCTION; Schema: public; Owner: web_usr -- CREATE FUNCTION public.refresh_materialized_phenotype_jsonb_table() RETURNS void LANGUAGE sql AS $$ REFRESH MATERIALIZED VIEW public.materialized_phenotype_jsonb_table;$$; ALTER FUNCTION public.refresh_materialized_phenotype_jsonb_table() OWNER TO web_usr; -- -- Name: refresh_materialized_phenotype_jsonb_table_concurrently(); Type: FUNCTION; Schema: public; Owner: web_usr -- CREATE FUNCTION public.refresh_materialized_phenotype_jsonb_table_concurrently() RETURNS void LANGUAGE sql AS $$ REFRESH MATERIALIZED VIEW CONCURRENTLY public.materialized_phenotype_jsonb_table;$$; ALTER FUNCTION public.refresh_materialized_phenotype_jsonb_table_concurrently() OWNER TO web_usr; -- -- Name: refresh_materialized_stockprop(); Type: FUNCTION; Schema: public; Owner: web_usr -- CREATE FUNCTION public.refresh_materialized_stockprop() RETURNS void LANGUAGE sql AS $$ REFRESH MATERIALIZED VIEW public.materialized_stockprop;$$; ALTER FUNCTION public.refresh_materialized_stockprop() OWNER TO web_usr; -- -- Name: refresh_materialized_stockprop_concurrently(); Type: FUNCTION; Schema: public; Owner: web_usr -- CREATE FUNCTION public.refresh_materialized_stockprop_concurrently() RETURNS void LANGUAGE sql AS $$ REFRESH MATERIALIZED VIEW CONCURRENTLY public.materialized_stockprop;$$; ALTER FUNCTION public.refresh_materialized_stockprop_concurrently() OWNER TO web_usr; -- -- Name: refresh_materialized_views(); Type: FUNCTION; Schema: public; Owner: web_usr -- CREATE FUNCTION public.refresh_materialized_views() RETURNS void LANGUAGE sql AS $$ REFRESH MATERIALIZED VIEW public.materialized_phenoview; REFRESH MATERIALIZED VIEW public.materialized_genoview; REFRESH MATERIALIZED VIEW public.accessions; REFRESH MATERIALIZED VIEW public.breeding_programs; REFRESH MATERIALIZED VIEW public.genotyping_protocols; REFRESH MATERIALIZED VIEW public.locations; REFRESH MATERIALIZED VIEW public.plants; REFRESH MATERIALIZED VIEW public.plots; REFRESH MATERIALIZED VIEW public.seedlots; REFRESH MATERIALIZED VIEW public.trait_components; REFRESH MATERIALIZED VIEW public.traits; REFRESH MATERIALIZED VIEW public.trial_designs; REFRESH MATERIALIZED VIEW public.trial_types; REFRESH MATERIALIZED VIEW public.trials; REFRESH MATERIALIZED VIEW public.genotyping_projects; REFRESH MATERIALIZED VIEW public.years; REFRESH MATERIALIZED VIEW public.accessionsXbreeding_programs; REFRESH MATERIALIZED VIEW public.accessionsXlocations; REFRESH MATERIALIZED VIEW public.accessionsXgenotyping_protocols; REFRESH MATERIALIZED VIEW public.accessionsXplants; REFRESH MATERIALIZED VIEW public.accessionsXplots; REFRESH MATERIALIZED VIEW public.accessionsXseedlots; REFRESH MATERIALIZED VIEW public.accessionsXtrait_components; REFRESH MATERIALIZED VIEW public.accessionsXtraits; REFRESH MATERIALIZED VIEW public.accessionsXtrial_designs; REFRESH MATERIALIZED VIEW public.accessionsXtrial_types; REFRESH MATERIALIZED VIEW public.accessionsXtrials; REFRESH MATERIALIZED VIEW public.accessionsxgenotyping_projects; REFRESH MATERIALIZED VIEW public.accessionsXyears; REFRESH MATERIALIZED VIEW public.breeding_programsXlocations; REFRESH MATERIALIZED VIEW public.breeding_programsXgenotyping_protocols; REFRESH MATERIALIZED VIEW public.breeding_programsXplants; REFRESH MATERIALIZED VIEW public.breeding_programsXplots; REFRESH MATERIALIZED VIEW public.breeding_programsXseedlots; REFRESH MATERIALIZED VIEW public.breeding_programsXtrait_components; REFRESH MATERIALIZED VIEW public.breeding_programsXtraits; REFRESH MATERIALIZED VIEW public.breeding_programsXtrial_designs; REFRESH MATERIALIZED VIEW public.breeding_programsXtrial_types; REFRESH MATERIALIZED VIEW public.breeding_programsXtrials; REFRESH MATERIALIZED VIEW public.breeding_programsxgenotyping_projects; REFRESH MATERIALIZED VIEW public.breeding_programsXyears; REFRESH MATERIALIZED VIEW public.genotyping_protocolsXlocations; REFRESH MATERIALIZED VIEW public.genotyping_protocolsXplants; REFRESH MATERIALIZED VIEW public.genotyping_protocolsXplots; REFRESH MATERIALIZED VIEW public.genotyping_protocolsXseedlots; REFRESH MATERIALIZED VIEW public.genotyping_protocolsXtrait_components; REFRESH MATERIALIZED VIEW public.genotyping_protocolsXtraits; REFRESH MATERIALIZED VIEW public.genotyping_protocolsXtrial_designs; REFRESH MATERIALIZED VIEW public.genotyping_protocolsXtrial_types; REFRESH MATERIALIZED VIEW public.genotyping_protocolsXtrials; REFRESH MATERIALIZED VIEW public.genotyping_protocolsXyears; REFRESH MATERIALIZED VIEW public.genotyping_protocolsxgenotyping_projects; REFRESH MATERIALIZED VIEW public.genotyping_projectsxaccessions; REFRESH MATERIALIZED VIEW public.genotyping_projectsxbreeding_programs; REFRESH MATERIALIZED VIEW public.genotyping_projectsxgenotyping_protocols; REFRESH MATERIALIZED VIEW public.genotyping_projectsxlocations; REFRESH MATERIALIZED VIEW public.genotyping_projectsxtraits; REFRESH MATERIALIZED VIEW public.genotyping_projectsxtrials; REFRESH MATERIALIZED VIEW public.genotyping_projectsxyears; REFRESH MATERIALIZED VIEW public.locationsXplants; REFRESH MATERIALIZED VIEW public.locationsXplots; REFRESH MATERIALIZED VIEW public.locationsXseedlots; REFRESH MATERIALIZED VIEW public.locationsXtrait_components; REFRESH MATERIALIZED VIEW public.locationsXtraits; REFRESH MATERIALIZED VIEW public.locationsXtrial_designs; REFRESH MATERIALIZED VIEW public.locationsXtrial_types; REFRESH MATERIALIZED VIEW public.locationsXtrials; REFRESH MATERIALIZED VIEW public.locationsxgenotyping_projects; REFRESH MATERIALIZED VIEW public.locationsXyears; REFRESH MATERIALIZED VIEW public.plantsXplots; REFRESH MATERIALIZED VIEW public.plantsXseedlots; REFRESH MATERIALIZED VIEW public.plantsXtrait_components; REFRESH MATERIALIZED VIEW public.plantsXtraits; REFRESH MATERIALIZED VIEW public.plantsXtrial_designs; REFRESH MATERIALIZED VIEW public.plantsXtrial_types; REFRESH MATERIALIZED VIEW public.plantsXtrials; REFRESH MATERIALIZED VIEW public.plantsXyears; REFRESH MATERIALIZED VIEW public.plotsXseedlots; REFRESH MATERIALIZED VIEW public.plotsXtrait_components; REFRESH MATERIALIZED VIEW public.plotsXtraits; REFRESH MATERIALIZED VIEW public.plotsXtrial_designs; REFRESH MATERIALIZED VIEW public.plotsXtrial_types; REFRESH MATERIALIZED VIEW public.plotsXtrials; REFRESH MATERIALIZED VIEW public.plotsXyears; REFRESH MATERIALIZED VIEW public.seedlotsXtrait_components; REFRESH MATERIALIZED VIEW public.seedlotsXtraits; REFRESH MATERIALIZED VIEW public.seedlotsXtrial_designs; REFRESH MATERIALIZED VIEW public.seedlotsXtrial_types; REFRESH MATERIALIZED VIEW public.seedlotsXtrials; REFRESH MATERIALIZED VIEW public.seedlotsXyears; REFRESH MATERIALIZED VIEW public.trait_componentsXtraits; REFRESH MATERIALIZED VIEW public.trait_componentsXtrial_designs; REFRESH MATERIALIZED VIEW public.trait_componentsXtrial_types; REFRESH MATERIALIZED VIEW public.trait_componentsXtrials; REFRESH MATERIALIZED VIEW public.trait_componentsXyears; REFRESH MATERIALIZED VIEW public.traitsXtrial_designs; REFRESH MATERIALIZED VIEW public.traitsXtrial_types; REFRESH MATERIALIZED VIEW public.traitsXtrials; REFRESH MATERIALIZED VIEW public.traitsXyears; REFRESH MATERIALIZED VIEW public.trialsxgenotyping_projects; REFRESH MATERIALIZED VIEW public.trial_designsXtrial_types; REFRESH MATERIALIZED VIEW public.trial_designsXtrials; REFRESH MATERIALIZED VIEW public.trial_designsXyears; REFRESH MATERIALIZED VIEW public.trial_typesXtrials; REFRESH MATERIALIZED VIEW public.trial_typesXyears; REFRESH MATERIALIZED VIEW public.trialsXyears; UPDATE public.matviews SET currently_refreshing=FALSE, last_refresh=CURRENT_TIMESTAMP;$$; ALTER FUNCTION public.refresh_materialized_views() OWNER TO web_usr; -- -- Name: refresh_materialized_views_concurrently(); Type: FUNCTION; Schema: public; Owner: web_usr -- CREATE FUNCTION public.refresh_materialized_views_concurrently() RETURNS void LANGUAGE sql AS $$ REFRESH MATERIALIZED VIEW CONCURRENTLY public.materialized_phenoview; REFRESH MATERIALIZED VIEW CONCURRENTLY public.materialized_genoview; REFRESH MATERIALIZED VIEW CONCURRENTLY public.accessions; REFRESH MATERIALIZED VIEW CONCURRENTLY public.breeding_programs; REFRESH MATERIALIZED VIEW CONCURRENTLY public.genotyping_protocols; REFRESH MATERIALIZED VIEW CONCURRENTLY public.locations; REFRESH MATERIALIZED VIEW CONCURRENTLY public.plants; REFRESH MATERIALIZED VIEW CONCURRENTLY public.plots; REFRESH MATERIALIZED VIEW CONCURRENTLY public.seedlots; REFRESH MATERIALIZED VIEW CONCURRENTLY public.trait_components; REFRESH MATERIALIZED VIEW CONCURRENTLY public.traits; REFRESH MATERIALIZED VIEW CONCURRENTLY public.trial_designs; REFRESH MATERIALIZED VIEW CONCURRENTLY public.trial_types; REFRESH MATERIALIZED VIEW CONCURRENTLY public.trials; REFRESH MATERIALIZED VIEW CONCURRENTLY public.genotyping_projects; REFRESH MATERIALIZED VIEW CONCURRENTLY public.years; REFRESH MATERIALIZED VIEW CONCURRENTLY public.accessionsXbreeding_programs; REFRESH MATERIALIZED VIEW CONCURRENTLY public.accessionsXlocations; REFRESH MATERIALIZED VIEW CONCURRENTLY public.accessionsXgenotyping_protocols; REFRESH MATERIALIZED VIEW CONCURRENTLY public.accessionsXplants; REFRESH MATERIALIZED VIEW CONCURRENTLY public.accessionsXplots; REFRESH MATERIALIZED VIEW CONCURRENTLY public.accessionsXseedlots; REFRESH MATERIALIZED VIEW CONCURRENTLY public.accessionsXtrait_components; REFRESH MATERIALIZED VIEW CONCURRENTLY public.accessionsXtraits; REFRESH MATERIALIZED VIEW CONCURRENTLY public.accessionsXtrial_designs; REFRESH MATERIALIZED VIEW CONCURRENTLY public.accessionsXtrial_types; REFRESH MATERIALIZED VIEW CONCURRENTLY public.accessionsXtrials; REFRESH MATERIALIZED VIEW CONCURRENTLY public.accessionsxgenotyping_projects; REFRESH MATERIALIZED VIEW CONCURRENTLY public.accessionsXyears; REFRESH MATERIALIZED VIEW CONCURRENTLY public.breeding_programsXlocations; REFRESH MATERIALIZED VIEW CONCURRENTLY public.breeding_programsXgenotyping_protocols; REFRESH MATERIALIZED VIEW CONCURRENTLY public.breeding_programsXplants; REFRESH MATERIALIZED VIEW CONCURRENTLY public.breeding_programsXplots; REFRESH MATERIALIZED VIEW CONCURRENTLY public.breeding_programsXseedlots; REFRESH MATERIALIZED VIEW CONCURRENTLY public.breeding_programsXtrait_components; REFRESH MATERIALIZED VIEW CONCURRENTLY public.breeding_programsXtraits; REFRESH MATERIALIZED VIEW CONCURRENTLY public.breeding_programsXtrial_designs; REFRESH MATERIALIZED VIEW CONCURRENTLY public.breeding_programsXtrial_types; REFRESH MATERIALIZED VIEW CONCURRENTLY public.breeding_programsXtrials; REFRESH MATERIALIZED VIEW CONCURRENTLY public.breeding_programsxgenotyping_projects; REFRESH MATERIALIZED VIEW CONCURRENTLY public.breeding_programsXyears; REFRESH MATERIALIZED VIEW CONCURRENTLY public.genotyping_protocolsXlocations; REFRESH MATERIALIZED VIEW CONCURRENTLY public.genotyping_protocolsXplants; REFRESH MATERIALIZED VIEW CONCURRENTLY public.genotyping_protocolsXplots; REFRESH MATERIALIZED VIEW CONCURRENTLY public.genotyping_protocolsXseedlots; REFRESH MATERIALIZED VIEW CONCURRENTLY public.genotyping_protocolsXtrait_components; REFRESH MATERIALIZED VIEW CONCURRENTLY public.genotyping_protocolsXtraits; REFRESH MATERIALIZED VIEW CONCURRENTLY public.genotyping_protocolsXtrial_designs; REFRESH MATERIALIZED VIEW CONCURRENTLY public.genotyping_protocolsXtrial_types; REFRESH MATERIALIZED VIEW CONCURRENTLY public.genotyping_protocolsXtrials; REFRESH MATERIALIZED VIEW CONCURRENTLY public.genotyping_protocolsXyears; REFRESH MATERIALIZED VIEW CONCURRENTLY public.genotyping_protocolsxgenotyping_projects; REFRESH MATERIALIZED VIEW CONCURRENTLY public.genotyping_projectsxaccessions; REFRESH MATERIALIZED VIEW CONCURRENTLY public.genotyping_projectsxbreeding_programs; REFRESH MATERIALIZED VIEW CONCURRENTLY public.genotyping_projectsxgenotyping_protocols; REFRESH MATERIALIZED VIEW CONCURRENTLY public.genotyping_projectsxlocations; REFRESH MATERIALIZED VIEW CONCURRENTLY public.genotyping_projectsxtraits; REFRESH MATERIALIZED VIEW CONCURRENTLY public.genotyping_projectsxtrials; REFRESH MATERIALIZED VIEW CONCURRENTLY public.genotyping_projectsxyears; REFRESH MATERIALIZED VIEW CONCURRENTLY public.locationsXplants; REFRESH MATERIALIZED VIEW CONCURRENTLY public.locationsXplots; REFRESH MATERIALIZED VIEW CONCURRENTLY public.locationsXseedlots; REFRESH MATERIALIZED VIEW CONCURRENTLY public.locationsXtrait_components; REFRESH MATERIALIZED VIEW CONCURRENTLY public.locationsXtraits; REFRESH MATERIALIZED VIEW CONCURRENTLY public.locationsXtrial_designs; REFRESH MATERIALIZED VIEW CONCURRENTLY public.locationsXtrial_types; REFRESH MATERIALIZED VIEW CONCURRENTLY public.locationsXtrials; REFRESH MATERIALIZED VIEW CONCURRENTLY public.locationsxgenotyping_projects; REFRESH MATERIALIZED VIEW CONCURRENTLY public.locationsXyears; REFRESH MATERIALIZED VIEW CONCURRENTLY public.plantsXplots; REFRESH MATERIALIZED VIEW CONCURRENTLY public.plantsXseedlots; REFRESH MATERIALIZED VIEW CONCURRENTLY public.plantsXtrait_components; REFRESH MATERIALIZED VIEW CONCURRENTLY public.plantsXtraits; REFRESH MATERIALIZED VIEW CONCURRENTLY public.plantsXtrial_designs; REFRESH MATERIALIZED VIEW CONCURRENTLY public.plantsXtrial_types; REFRESH MATERIALIZED VIEW CONCURRENTLY public.plantsXtrials; REFRESH MATERIALIZED VIEW CONCURRENTLY public.plantsXyears; REFRESH MATERIALIZED VIEW CONCURRENTLY public.plotsXseedlots; REFRESH MATERIALIZED VIEW CONCURRENTLY public.plotsXtrait_components; REFRESH MATERIALIZED VIEW CONCURRENTLY public.plotsXtraits; REFRESH MATERIALIZED VIEW CONCURRENTLY public.plotsXtrial_designs; REFRESH MATERIALIZED VIEW CONCURRENTLY public.plotsXtrial_types; REFRESH MATERIALIZED VIEW CONCURRENTLY public.plotsXtrials; REFRESH MATERIALIZED VIEW CONCURRENTLY public.plotsXyears; REFRESH MATERIALIZED VIEW CONCURRENTLY public.seedlotsXtrait_components; REFRESH MATERIALIZED VIEW CONCURRENTLY public.seedlotsXtraits; REFRESH MATERIALIZED VIEW CONCURRENTLY public.seedlotsXtrial_designs; REFRESH MATERIALIZED VIEW CONCURRENTLY public.seedlotsXtrial_types; REFRESH MATERIALIZED VIEW CONCURRENTLY public.seedlotsXtrials; REFRESH MATERIALIZED VIEW CONCURRENTLY public.seedlotsXyears; REFRESH MATERIALIZED VIEW CONCURRENTLY public.trait_componentsXtraits; REFRESH MATERIALIZED VIEW CONCURRENTLY public.trait_componentsXtrial_designs; REFRESH MATERIALIZED VIEW CONCURRENTLY public.trait_componentsXtrial_types; REFRESH MATERIALIZED VIEW CONCURRENTLY public.trait_componentsXtrials; REFRESH MATERIALIZED VIEW CONCURRENTLY public.trait_componentsXyears; REFRESH MATERIALIZED VIEW CONCURRENTLY public.traitsXtrial_designs; REFRESH MATERIALIZED VIEW CONCURRENTLY public.traitsXtrial_types; REFRESH MATERIALIZED VIEW CONCURRENTLY public.traitsXtrials; REFRESH MATERIALIZED VIEW CONCURRENTLY public.traitsXyears; REFRESH MATERIALIZED VIEW CONCURRENTLY public.trialsxgenotyping_projects; REFRESH MATERIALIZED VIEW CONCURRENTLY public.trial_designsXtrial_types; REFRESH MATERIALIZED VIEW CONCURRENTLY public.trial_designsXtrials; REFRESH MATERIALIZED VIEW CONCURRENTLY public.trial_designsXyears; REFRESH MATERIALIZED VIEW CONCURRENTLY public.trial_typesXtrials; REFRESH MATERIALIZED VIEW CONCURRENTLY public.trial_typesXyears; REFRESH MATERIALIZED VIEW CONCURRENTLY public.trialsXyears; UPDATE public.matviews SET currently_refreshing=FALSE, last_refresh=CURRENT_TIMESTAMP;$$; ALTER FUNCTION public.refresh_materialized_views_concurrently() OWNER TO web_usr; -- -- Name: store_feature(character varying); Type: FUNCTION; Schema: public; Owner: postgres -- CREATE FUNCTION public.store_feature(character varying) RETURNS integer LANGUAGE plpgsql AS $_$ DECLARE paccession ALIAS FOR $1; pkeyid INTEGER; BEGIN SELECT INTO pkeyid feature_id FROM feature WHERE feature.accession = paccession; IF NOT FOUND THEN INSERT INTO feature (accession) VALUES (paccession); RETURN currval('feature_pk_seq'); END IF; UPDATE feature SET WHERE feature.accession = paccession RETURN pkeyid; END; $_$; ALTER FUNCTION public.store_feature(character varying) OWNER TO postgres; -- -- Name: store_feature(character varying, character varying, integer, integer, integer, text, integer, character, integer); Type: FUNCTION; Schema: public; Owner: postgres -- CREATE FUNCTION public.store_feature(character varying, character varying, integer, integer, integer, text, integer, character, integer) RETURNS integer LANGUAGE plpgsql AS $_$ DECLARE pname ALIAS FOR $1; paccession ALIAS FOR $2; pfmin ALIAS FOR $3; pfmax ALIAS FOR $4; pfstrand ALIAS FOR $5; presidues ALIAS FOR $6; pseqlen ALIAS FOR $7; pmd5checksum ALIAS FOR $8; ptype_id ALIAS FOR $9; pkeyid INTEGER; BEGIN SELECT INTO pkeyid feature_id FROM feature WHERE feature.name = pname AND feature.accession = paccession AND feature.fmin = pfmin AND feature.fmax = pfmax AND feature.fstrand = pfstrand AND feature.residues = presidues AND feature.seqlen = pseqlen AND feature.md5checksum = pmd5checksum AND feature.type_id = ptype_id; IF NOT FOUND THEN INSERT INTO feature (name, accession, fmin, fmax, fstrand, residues, seqlen, md5checksum, type_id) VALUES (pname, paccession, pfmin, pfmax, pfstrand, presidues, pseqlen, pmd5checksum, ptype_id); RETURN currval('feature_pk_seq'); END IF; UPDATE feature SET WHERE feature.name = pname AND feature.accession = paccession AND feature.fmin = pfmin AND feature.fmax = pfmax AND feature.fstrand = pfstrand AND feature.residues = presidues AND feature.seqlen = pseqlen AND feature.md5checksum = pmd5checksum AND feature.type_id = ptype_id RETURN pkeyid; END; $_$; ALTER FUNCTION public.store_feature(character varying, character varying, integer, integer, integer, text, integer, character, integer) OWNER TO postgres; -- -- Name: store_feature_cvterm(integer, integer, integer); Type: FUNCTION; Schema: public; Owner: postgres -- CREATE FUNCTION public.store_feature_cvterm(integer, integer, integer) RETURNS integer LANGUAGE plpgsql AS $_$ DECLARE pfeature_id ALIAS FOR $1; pcvterm_id ALIAS FOR $2; ppub_id ALIAS FOR $3; pkeyid INTEGER; BEGIN SELECT INTO pkeyid feature_cvterm_id FROM feature_cvterm WHERE feature_cvterm.feature_id = pfeature_id AND feature_cvterm.cvterm_id = pcvterm_id AND feature_cvterm.pub_id = ppub_id; IF NOT FOUND THEN INSERT INTO feature_cvterm (feature_id, cvterm_id, pub_id) VALUES (pfeature_id, pcvterm_id, ppub_id); RETURN currval('feature_cvterm_pk_seq'); END IF; UPDATE feature_cvterm SET WHERE feature_cvterm.feature_id = pfeature_id AND feature_cvterm.cvterm_id = pcvterm_id AND feature_cvterm.pub_id = ppub_id RETURN pkeyid; END; $_$; ALTER FUNCTION public.store_feature_cvterm(integer, integer, integer) OWNER TO postgres; -- -- Name: store_feature_dbxref(integer); Type: FUNCTION; Schema: public; Owner: postgres -- CREATE FUNCTION public.store_feature_dbxref(integer) RETURNS integer LANGUAGE plpgsql AS $_$ DECLARE pdbxref_id ALIAS FOR $1; pkeyid INTEGER; BEGIN SELECT INTO pkeyid feature_dbxref_id FROM feature_dbxref WHERE feature_dbxref.feature_dbxref_id = pfeature_dbxref_id AND feature_dbxref.dbxref_id = pdbxref_id; IF NOT FOUND THEN INSERT INTO feature_dbxref (dbxref_id) VALUES (pdbxref_id); RETURN currval('feature_dbxref_pk_seq'); END IF; UPDATE feature_dbxref SET WHERE feature_dbxref.feature_dbxref_id = pfeature_dbxref_id AND feature_dbxref.dbxref_id = pdbxref_id RETURN pkeyid; END; $_$; ALTER FUNCTION public.store_feature_dbxref(integer) OWNER TO postgres; -- -- Name: store_feature_relationship(integer, integer, integer); Type: FUNCTION; Schema: public; Owner: postgres -- CREATE FUNCTION public.store_feature_relationship(integer, integer, integer) RETURNS integer LANGUAGE plpgsql AS $_$ DECLARE psubj_feature_id ALIAS FOR $1; pobj_feature_id ALIAS FOR $2; ptype_id ALIAS FOR $3; pkeyid INTEGER; BEGIN SELECT INTO pkeyid feature_relationship_id FROM feature_relationship WHERE feature_relationship.subj_feature_id = psubj_feature_id AND feature_relationship.obj_feature_id = pobj_feature_id AND feature_relationship.type_id = ptype_id; IF NOT FOUND THEN INSERT INTO feature_relationship (subj_feature_id, obj_feature_id, type_id) VALUES (psubj_feature_id, pobj_feature_id, ptype_id); RETURN currval('feature_relationship_pk_seq'); END IF; UPDATE feature_relationship SET WHERE feature_relationship.subj_feature_id = psubj_feature_id AND feature_relationship.obj_feature_id = pobj_feature_id AND feature_relationship.type_id = ptype_id RETURN pkeyid; END; $_$; ALTER FUNCTION public.store_feature_relationship(integer, integer, integer) OWNER TO postgres; -- -- Name: store_featureprop(integer, integer, text, integer); Type: FUNCTION; Schema: public; Owner: postgres -- CREATE FUNCTION public.store_featureprop(integer, integer, text, integer) RETURNS integer LANGUAGE plpgsql AS $_$ DECLARE pfeature_id ALIAS FOR $1; ppkey_id ALIAS FOR $2; ppval ALIAS FOR $3; pprank ALIAS FOR $4; pkeyid INTEGER; BEGIN SELECT INTO pkeyid featureprop_id FROM featureprop WHERE featureprop.feature_id = pfeature_id AND featureprop.pkey_id = ppkey_id AND featureprop.pval = ppval AND featureprop.prank = pprank; IF NOT FOUND THEN INSERT INTO featureprop (feature_id, pkey_id, pval, prank) VALUES (pfeature_id, ppkey_id, ppval, pprank); RETURN currval('featureprop_pk_seq'); END IF; UPDATE featureprop SET WHERE featureprop.feature_id = pfeature_id AND featureprop.pkey_id = ppkey_id AND featureprop.pval = ppval AND featureprop.prank = pprank RETURN pkeyid; END; $_$; ALTER FUNCTION public.store_featureprop(integer, integer, text, integer) OWNER TO postgres; -- -- Name: store_featureprop_pub(integer, integer); Type: FUNCTION; Schema: public; Owner: postgres -- CREATE FUNCTION public.store_featureprop_pub(integer, integer) RETURNS integer LANGUAGE plpgsql AS $_$ DECLARE pfeatureprop_id ALIAS FOR $1; ppub_id ALIAS FOR $2; pkeyid INTEGER; BEGIN SELECT INTO pkeyid 0 FROM featureprop_pub WHERE featureprop_pub.featureprop_id = pfeatureprop_id AND featureprop_pub.pub_id = ppub_id; IF NOT FOUND THEN INSERT INTO featureprop_pub (featureprop_id, pub_id) VALUES (pfeatureprop_id, ppub_id); RETURN currval('0'); END IF; UPDATE featureprop_pub SET WHERE featureprop_pub.featureprop_id = pfeatureprop_id AND featureprop_pub.pub_id = ppub_id RETURN pkeyid; END; $_$; ALTER FUNCTION public.store_featureprop_pub(integer, integer) OWNER TO postgres; -- -- Name: store_gene(character varying); Type: FUNCTION; Schema: public; Owner: postgres -- CREATE FUNCTION public.store_gene(character varying) RETURNS integer LANGUAGE plpgsql AS $_$ DECLARE pname ALIAS FOR $1; pkeyid INTEGER; BEGIN SELECT INTO pkeyid gene_id FROM gene WHERE gene.name = pname; IF NOT FOUND THEN INSERT INTO gene (name) VALUES (pname); RETURN currval('gene_pk_seq'); END IF; UPDATE gene SET WHERE gene.name = pname RETURN pkeyid; END; $_$; ALTER FUNCTION public.store_gene(character varying) OWNER TO postgres; -- -- Name: store_gene_feature(integer, integer); Type: FUNCTION; Schema: public; Owner: postgres -- CREATE FUNCTION public.store_gene_feature(integer, integer) RETURNS integer LANGUAGE plpgsql AS $_$ DECLARE pgene_id ALIAS FOR $1; pfeature_id ALIAS FOR $2; pkeyid INTEGER; BEGIN SELECT INTO pkeyid 0 FROM gene_feature WHERE gene_feature.gene_id = pgene_id AND gene_feature.feature_id = pfeature_id; IF NOT FOUND THEN INSERT INTO gene_feature (gene_id, feature_id) VALUES (pgene_id, pfeature_id); RETURN currval('0'); END IF; UPDATE gene_feature SET WHERE gene_feature.gene_id = pgene_id AND gene_feature.feature_id = pfeature_id RETURN pkeyid; END; $_$; ALTER FUNCTION public.store_gene_feature(integer, integer) OWNER TO postgres; -- -- Name: store_gene_genesynonym(integer, integer, integer); Type: FUNCTION; Schema: public; Owner: postgres -- CREATE FUNCTION public.store_gene_genesynonym(integer, integer, integer) RETURNS integer LANGUAGE plpgsql AS $_$ DECLARE pgenesynonym_id ALIAS FOR $1; pgene_id ALIAS FOR $2; ppub_id ALIAS FOR $3; pkeyid INTEGER; BEGIN SELECT INTO pkeyid 0 FROM gene_genesynonym WHERE gene_genesynonym.genesynonym_id = pgenesynonym_id AND gene_genesynonym.gene_id = pgene_id AND gene_genesynonym.pub_id = ppub_id; IF NOT FOUND THEN INSERT INTO gene_genesynonym (genesynonym_id, gene_id, pub_id) VALUES (pgenesynonym_id, pgene_id, ppub_id); RETURN currval('0'); END IF; UPDATE gene_genesynonym SET WHERE gene_genesynonym.genesynonym_id = pgenesynonym_id AND gene_genesynonym.gene_id = pgene_id AND gene_genesynonym.pub_id = ppub_id RETURN pkeyid; END; $_$; ALTER FUNCTION public.store_gene_genesynonym(integer, integer, integer) OWNER TO postgres; -- -- Name: store_genesynonym(character varying); Type: FUNCTION; Schema: public; Owner: postgres -- CREATE FUNCTION public.store_genesynonym(character varying) RETURNS integer LANGUAGE plpgsql AS $_$ DECLARE pgsynonym ALIAS FOR $1; pkeyid INTEGER; BEGIN SELECT INTO pkeyid genesynonym_id FROM genesynonym WHERE genesynonym.gsynonym = pgsynonym; IF NOT FOUND THEN INSERT INTO genesynonym (gsynonym) VALUES (pgsynonym); RETURN currval('genesynonym_pk_seq'); END IF; UPDATE genesynonym SET WHERE genesynonym.gsynonym = pgsynonym RETURN pkeyid; END; $_$; ALTER FUNCTION public.store_genesynonym(character varying) OWNER TO postgres; -- -- Name: add_cxgn_metadata_to_empty_table(character varying, character varying); Type: FUNCTION; Schema: utils; Owner: postgres -- CREATE FUNCTION utils.add_cxgn_metadata_to_empty_table(scm character varying, tbl character varying) RETURNS boolean LANGUAGE plpgsql AS $$ DECLARE visible_bit VARCHAR := 'cxgn_production_visible'; prod_schema VARCHAR; dev_schema VARCHAR; bt_schema VARCHAR; nonempty INTEGER := 0; stmt VARCHAR; BEGIN prod_schema = scm; dev_schema = scm || '_dev'; bt_schema = scm || '_bt'; -- FIXME: check whether the table is empty before doing this, or else -- you'll wait a loooonnnnngggg time for it to finish. -- stmt='SELECT count(*) FROM ' || bt_schema || '.' || tbl || ' LIMIT 1'; -- EXECUTE stmt; -- IF nonempty > 0 THEN -- RAISE NOTICE 'Can''t add metadata to a non-empty table.'; -- RETURN 'f'; -- ELSE stmt= 'ALTER TABLE ' || bt_schema || '.' || tbl || ' ADD COLUMN ' || visible_bit || ' BOOLEAN DEFAULT false'; EXECUTE stmt; RETURN 't'; -- END IF; END $$; ALTER FUNCTION utils.add_cxgn_metadata_to_empty_table(scm character varying, tbl character varying) OWNER TO postgres; -- -- Name: create_cxgn_branch_views_for_table(character varying, character varying); Type: FUNCTION; Schema: utils; Owner: postgres -- CREATE FUNCTION utils.create_cxgn_branch_views_for_table(scm character varying, tbl character varying) RETURNS boolean LANGUAGE plpgsql AS $$ DECLARE cols VARCHAR; pkey VARCHAR; pkey_ins VARCHAR; seq VARCHAR; upd_cols VARCHAR; ins_cols VARCHAR; visible_bit VARCHAR := 'cxgn_production_visible'; --metadata_cols ROW := ('cxgn_production_visible'); prod_schema VARCHAR; dev_schema VARCHAR; bt_schema VARCHAR; stmt VARCHAR; new_view_oid BIGINT; BEGIN --RAISE NOTICE '%', scm; --RAISE NOTICE '%', tbl; prod_schema = scm; dev_schema = scm || '_dev'; bt_schema = scm || '_bt'; --RAISE NOTICE '%', prod_schema; --RAISE NOTICE '%', dev_schema; --RAISE NOTICE '%', bt_schema; -- Make sure there's a primary key pkey = find_primary_key_for_table(bt_schema, tbl); IF pkey IS NULL THEN RAISE NOTICE 'Sorry, can''t operate on tables that lack primary keys. Please fix me.'; RETURN 'f'; END IF; -- Get a string representation of the column names. SELECT array_to_string(array(SELECT quote_ident(attname) FROM pg_class c, pg_attribute a, pg_namespace n WHERE c.relnamespace = n.oid AND a.attrelid = c.oid AND a.attisdropped = 'f' AND a.attname NOT IN ('cxgn_production_visible') AND nspname = bt_schema AND c.relname = tbl AND a.attnum > 0 ORDER BY attnum), ', ') INTO cols; SELECT (SELECT adsrc FROM pg_class c, pg_attribute a, pg_namespace n, pg_constraint t, pg_attrdef d WHERE c.relnamespace = n.oid AND a.attrelid = c.oid AND t.conrelid = c.oid AND t.contype = 'p' AND array_upper(t.conkey, 1)=1 AND t.conkey[1]=a.attnum AND d.adrelid = c.oid AND d.adnum = a.attnum AND a.attname NOT IN ('cxgn_production_visible') AND nspname = bt_schema AND c.relname = tbl AND a.attnum > 0 ORDER BY attnum) INTO seq; -- If the table doesn't have a sequence behind the pkey, use the pkey -- column. IF seq IS NULL THEN pkey_ins = 'NEW.' || pkey; ELSE pkey_ins = 'COALESCE(NEW.' || pkey || ',' || seq || ')'; END IF; -- Get a string representation of the non-primary key columns -- of the pseudotable NEW (see the Pg Rules documentation for NEW). SELECT pkey_ins || ', ' || array_to_string(array(SELECT 'NEW.' || quote_ident(attname) FROM pg_class c JOIN pg_attribute a ON (a.attrelid = c.oid) JOIN pg_namespace n ON (c.relnamespace = n.oid) WHERE a.attname NOT IN ('cxgn_production_visible') AND a.attname <> pkey AND a.attisdropped = 'f' AND nspname = bt_schema AND c.relname = tbl AND a.attnum > 0 ORDER BY attnum), ', ') INTO ins_cols; IF ins_cols IS NULL THEN RAISE NOTICE 'This table doesn''t have any non-primary key columns.'; RETURN 'f'; END IF; -- Get a string representation of the update list for all the -- non-primary key columns. SELECT array_to_string(array(SELECT quote_ident(attname) || ' = NEW.' || quote_ident(attname) FROM pg_class c, pg_attribute a, pg_namespace n WHERE c.relnamespace = n.oid AND a.attrelid = c.oid AND a.attname NOT IN ('cxgn_production_visible') AND a.attname <> pkey AND a.attisdropped = 'f' AND nspname = bt_schema AND c.relname = tbl AND a.attnum > 0 ORDER BY attnum), ', ') INTO upd_cols; --RAISE NOTICE 'cols: %', cols; --RAISE NOTICE 'pkey: %', pkey; --RAISE NOTICE 'ins_cols: %', ins_cols; --RAISE NOTICE 'upd_cols: %', upd_cols; stmt ='CREATE VIEW ' || dev_schema || '.' || tbl || ' AS SELECT ' || cols || ' FROM ' || bt_schema || '.' || tbl; --RAISE NOTICE 'dev view: %', stmt; EXECUTE stmt; stmt ='CREATE VIEW ' || prod_schema || '.' || tbl || ' AS SELECT ' || cols || ' FROM ' || bt_schema || '.' || tbl || ' WHERE ' || visible_bit || ' = ' || 'true'; --RAISE NOTICE 'prod view: %', stmt; EXECUTE stmt; stmt ='CREATE RULE development_' || scm || '_' || tbl || '_insert_rule AS ON INSERT TO ' || dev_schema || '.' || tbl || ' DO INSTEAD INSERT INTO ' || bt_schema || '.' || tbl || ' (' || cols || ') VALUES (' || ins_cols ||')'; --RAISE NOTICE 'insert rule %', stmt; EXECUTE stmt; stmt ='CREATE RULE development_' || scm || '_' || tbl || '_update_rule AS ON UPDATE TO ' || dev_schema || '.' || tbl || ' DO INSTEAD UPDATE ' || bt_schema || '.' || tbl || ' SET ' || upd_cols || ' WHERE ' || pkey || ' = OLD.' || pkey; --RAISE NOTICE '%', stmt; EXECUTE stmt; stmt ='CREATE RULE development_' || scm || '_' || tbl || '_delete_rule AS ON DELETE TO ' || dev_schema || '.' || tbl || ' DO INSTEAD DELETE FROM ' || bt_schema || '.' || tbl || ' WHERE ' || pkey || ' = OLD.' || pkey; --RAISE NOTICE '%', stmt; EXECUTE stmt; -- Restore old privileges on views. XXX doesn't actually work. --SELECT relname INTO dropped_view_privs FROM pg_class WHERE relname='dropped_view_privs'; --IF dropped_view_privs IS NOT NULL THEN -- stmt='SELECT oid INTO new_view_oid FROM pg_class c JOIN pg_namespace n ON (n.oid=c.relnamespace) --WHERE c.relname=' || tbl || ' AND n.nspname=' || prod_schema; -- EXECUTE stmt; -- stmt='UPDATE pg_class SET relacl=(SELECT relacl FROM dropped_view_privs WHERE relname=' || tbl || ' AND nspname=' prod_schema ') WHERE oid=' || new_view_oid; -- EXECUTE stmt; -- stmt='SELECT oid INTO new_view_oid FROM pg_class c JOIN pg_namespace n ON (n.oid=c.relnamespace) --WHERE c.relname=' || tbl || ' AND n.nspname=' || prod_schema; -- EXECUTE stmt; -- stmt= 'UPDATE pg_class SET relacl=(SELECT relacl FROM dropped_view_privs WHERE relname=' || tbl || ' AND nspname=' prod_schema ') WHERE oid=' || new_view_oid; -- EXECUTE stmt; --END IF; RETURN 't'; END $$; ALTER FUNCTION utils.create_cxgn_branch_views_for_table(scm character varying, tbl character varying) OWNER TO postgres; -- -- Name: create_cxgn_branch_views_for_table(character varying, character varying, boolean); Type: FUNCTION; Schema: utils; Owner: postgres -- CREATE FUNCTION utils.create_cxgn_branch_views_for_table(scm character varying, tbl character varying, modifiable_in_production boolean) RETURNS boolean LANGUAGE plpgsql AS $$ DECLARE cols VARCHAR; pkey VARCHAR; pkey_ins VARCHAR; seq VARCHAR; upd_cols VARCHAR; ins_cols VARCHAR; visible_bit VARCHAR := 'cxgn_production_visible'; --metadata_cols ROW := ('cxgn_production_visible'); prod_schema VARCHAR; dev_schema VARCHAR; bt_schema VARCHAR; stmt VARCHAR; new_view_oid BIGINT; BEGIN --RAISE NOTICE '%', scm; --RAISE NOTICE '%', tbl; prod_schema = scm; dev_schema = scm || '_dev'; bt_schema = scm || '_bt'; --RAISE NOTICE '%', prod_schema; --RAISE NOTICE '%', dev_schema; --RAISE NOTICE '%', bt_schema; -- Make sure there's a primary key pkey = find_primary_key_for_table(bt_schema, tbl); IF pkey IS NULL THEN RAISE NOTICE 'Sorry, can''t operate on tables that lack primary keys. Please fix me.'; RETURN 'f'; END IF; -- Get a string representation of the column names. SELECT array_to_string(array(SELECT quote_ident(attname) FROM pg_class c, pg_attribute a, pg_namespace n WHERE c.relnamespace = n.oid AND a.attrelid = c.oid AND a.attisdropped = 'f' AND a.attname NOT IN ('cxgn_production_visible') AND nspname = bt_schema AND c.relname = tbl AND a.attnum > 0 ORDER BY attnum), ', ') INTO cols; SELECT (SELECT adsrc FROM pg_class c, pg_attribute a, pg_namespace n, pg_constraint t, pg_attrdef d WHERE c.relnamespace = n.oid AND a.attrelid = c.oid AND t.conrelid = c.oid AND t.contype = 'p' AND array_upper(t.conkey, 1)=1 AND t.conkey[1]=a.attnum AND d.adrelid = c.oid AND d.adnum = a.attnum AND a.attname NOT IN ('cxgn_production_visible') AND nspname = bt_schema AND c.relname = tbl AND a.attnum > 0 ORDER BY attnum) INTO seq; -- If the table doesn't have a sequence behind the pkey, use the pkey -- column. IF seq IS NULL THEN pkey_ins = 'NEW.' || pkey; ELSE pkey_ins = 'COALESCE(NEW.' || pkey || ',' || seq || ')'; END IF; -- Get a string representation of the non-primary key columns -- of the pseudotable NEW (see the Pg Rules documentation for NEW). SELECT pkey_ins || ', ' || array_to_string(array(SELECT 'NEW.' || quote_ident(attname) FROM pg_class c JOIN pg_attribute a ON (a.attrelid = c.oid) JOIN pg_namespace n ON (c.relnamespace = n.oid) WHERE a.attname NOT IN ('cxgn_production_visible') AND a.attname <> pkey AND a.attisdropped = 'f' AND nspname = bt_schema AND c.relname = tbl AND a.attnum > 0 ORDER BY attnum), ', ') INTO ins_cols; IF ins_cols IS NULL THEN RAISE NOTICE 'This table doesn''t have any non-primary key columns.'; RETURN 'f'; END IF; -- Get a string representation of the update list for all the -- non-primary key columns. SELECT array_to_string(array(SELECT quote_ident(attname) || ' = NEW.' || quote_ident(attname) FROM pg_class c, pg_attribute a, pg_namespace n WHERE c.relnamespace = n.oid AND a.attrelid = c.oid AND a.attname NOT IN ('cxgn_production_visible') AND a.attname <> pkey AND a.attisdropped = 'f' AND nspname = bt_schema AND c.relname = tbl AND a.attnum > 0 ORDER BY attnum), ', ') INTO upd_cols; --RAISE NOTICE 'cols: %', cols; --RAISE NOTICE 'pkey: %', pkey; --RAISE NOTICE 'ins_cols: %', ins_cols; --RAISE NOTICE 'upd_cols: %', upd_cols; stmt ='CREATE VIEW ' || dev_schema || '.' || tbl || ' AS SELECT ' || cols || ' FROM ' || bt_schema || '.' || tbl; --RAISE NOTICE 'dev view: %', stmt; EXECUTE stmt; stmt ='CREATE VIEW ' || prod_schema || '.' || tbl || ' AS SELECT ' || cols || ' FROM ' || bt_schema || '.' || tbl || ' WHERE ' || visible_bit || ' = ' || 'true'; --RAISE NOTICE 'prod view: %', stmt; EXECUTE stmt; stmt ='CREATE RULE development_' || scm || '_' || tbl || '_insert_rule AS ON INSERT TO ' || dev_schema || '.' || tbl || ' DO INSTEAD INSERT INTO ' || bt_schema || '.' || tbl || ' (' || cols || ') VALUES (' || ins_cols ||')'; --RAISE NOTICE 'insert rule %', stmt; EXECUTE stmt; stmt ='CREATE RULE development_' || scm || '_' || tbl || '_update_rule AS ON UPDATE TO ' || dev_schema || '.' || tbl || ' DO INSTEAD UPDATE ' || bt_schema || '.' || tbl || ' SET ' || upd_cols || ' WHERE ' || pkey || ' = OLD.' || pkey; --RAISE NOTICE '%', stmt; EXECUTE stmt; stmt ='CREATE RULE development_' || scm || '_' || tbl || '_delete_rule AS ON DELETE TO ' || dev_schema || '.' || tbl || ' DO INSTEAD DELETE FROM ' || bt_schema || '.' || tbl || ' WHERE ' || pkey || ' = OLD.' || pkey; --RAISE NOTICE '%', stmt; EXECUTE stmt; if modifiable_in_production IS TRUE THEN stmt ='CREATE RULE production_' || scm || '_' || tbl || '_insert_rule AS ON INSERT TO ' || prod_schema || '.' || tbl || ' DO INSTEAD INSERT INTO ' || bt_schema || '.' || tbl || ' (' || cols || ', cxgn_production_visible) VALUES (' || ins_cols ||', ''t'')'; --RAISE NOTICE 'insert rule %', stmt; EXECUTE stmt; stmt ='CREATE RULE production_' || scm || '_' || tbl || '_update_rule AS ON UPDATE TO ' || prod_schema || '.' || tbl || ' DO INSTEAD UPDATE ' || bt_schema || '.' || tbl || ' SET ' || upd_cols || ' WHERE ' || pkey || ' = OLD.' || pkey; --RAISE NOTICE '%', stmt; EXECUTE stmt; stmt ='CREATE RULE production_' || scm || '_' || tbl || '_delete_rule AS ON DELETE TO ' || prod_schema || '.' || tbl || ' DO INSTEAD DELETE FROM ' || bt_schema || '.' || tbl || ' WHERE ' || pkey || ' = OLD.' || pkey; --RAISE NOTICE '%', stmt; EXECUTE stmt; END IF; -- Restore old privileges on views. XXX doesn't actually work. --SELECT relname INTO dropped_view_privs FROM pg_class WHERE relname='dropped_view_privs'; --IF dropped_view_privs IS NOT NULL THEN -- stmt='SELECT oid INTO new_view_oid FROM pg_class c JOIN pg_namespace n ON (n.oid=c.relnamespace) --WHERE c.relname=' || tbl || ' AND n.nspname=' || prod_schema; -- EXECUTE stmt; -- stmt='UPDATE pg_class SET relacl=(SELECT relacl FROM dropped_view_privs WHERE relname=' || tbl || ' AND nspname=' prod_schema ') WHERE oid=' || new_view_oid; -- EXECUTE stmt; -- stmt='SELECT oid INTO new_view_oid FROM pg_class c JOIN pg_namespace n ON (n.oid=c.relnamespace) --WHERE c.relname=' || tbl || ' AND n.nspname=' || prod_schema; -- EXECUTE stmt; -- stmt= 'UPDATE pg_class SET relacl=(SELECT relacl FROM dropped_view_privs WHERE relname=' || tbl || ' AND nspname=' prod_schema ') WHERE oid=' || new_view_oid; -- EXECUTE stmt; --END IF; RETURN 't'; END $$; ALTER FUNCTION utils.create_cxgn_branch_views_for_table(scm character varying, tbl character varying, modifiable_in_production boolean) OWNER TO postgres; -- -- Name: drop_cxgn_branch_views_for_table(character varying, character varying); Type: FUNCTION; Schema: utils; Owner: postgres -- CREATE FUNCTION utils.drop_cxgn_branch_views_for_table(scm character varying, tbl character varying) RETURNS boolean LANGUAGE plpgsql AS $$ DECLARE prod_schema VARCHAR; dev_schema VARCHAR; bt_schema VARCHAR; stmt VARCHAR; BEGIN --RAISE NOTICE '%', scm; --RAISE NOTICE '%', tbl; prod_schema = scm; dev_schema = scm || '_dev'; bt_schema = scm || '_bt'; --Save the permissions on the production and development tables --before proceeding -- XXX: Doesn't actually work, because --stmt='SELECT nspname, relname, relacl INTO TEMPORARY TABLE dropped_view_privs FROM pg_class c --JOIN pg_namespace n ON (n.oid=c.relnamespace) WHERE c.relname=''' || tbl || ''' AND n.nspname='''|| dev_schema ||''''; --EXECUTE stmt; --stmt='SELECT nspname, relname, relacl INTO TEMPORARY TABLE dropped_view_privs FROM pg_class c --JOIN pg_namespace n ON (n.oid=c.relnamespace) WHERE c.relname=' || tbl || ' AND n.nspname='|| prod_schema || ';'; --EXECUTE stmt; stmt = 'DROP RULE development_' || scm || '_' || tbl || '_insert_rule ON ' || dev_schema || '.' || tbl; EXECUTE stmt; stmt = 'DROP RULE development_' || scm || '_' || tbl || '_update_rule ON ' || dev_schema || '.' || tbl; EXECUTE stmt; stmt = 'DROP RULE development_' || scm || '_' || tbl || '_delete_rule ON ' || dev_schema || '.' || tbl; EXECUTE stmt; stmt = 'DROP VIEW ' || prod_schema || '.' || tbl; EXECUTE stmt; stmt = 'DROP VIEW ' || dev_schema || '.' || tbl; EXECUTE stmt; RETURN 't'; END $$; ALTER FUNCTION utils.drop_cxgn_branch_views_for_table(scm character varying, tbl character varying) OWNER TO postgres; -- -- Name: find_primary_key_for_table(character varying, character varying); Type: FUNCTION; Schema: utils; Owner: postgres -- CREATE FUNCTION utils.find_primary_key_for_table(scm character varying, tbl character varying) RETURNS character varying LANGUAGE plpgsql AS $$DECLARE ret VARCHAR; BEGIN SELECT quote_ident(attname) FROM pg_class c JOIN pg_namespace n ON (n.oid = c.relnamespace) JOIN pg_attribute a ON (a.attrelid = c.oid) JOIN pg_constraint t ON (t.conrelid = c.oid) WHERE array_upper(t.conkey, 1)=1 AND t.conkey[1]=a.attnum AND t.contype = 'p' AND a.attname NOT IN ('cxgn_production_visible') AND nspname = scm AND c.relname = tbl INTO ret; RETURN ret; END;$$; ALTER FUNCTION utils.find_primary_key_for_table(scm character varying, tbl character varying) OWNER TO postgres; -- -- Name: make_all_rows_visible(character varying, character varying); Type: FUNCTION; Schema: utils; Owner: postgres -- CREATE FUNCTION utils.make_all_rows_visible(scm character varying, tbl character varying) RETURNS boolean LANGUAGE plpgsql AS $$DECLARE stmt VARCHAR; visible_bit VARCHAR := 'cxgn_production_visible'; bt_schema VARCHAR; qualified_tbl VARCHAR; BEGIN bt_schema = scm || '_bt'; qualified_tbl = bt_schema || '.' || tbl; stmt = 'UPDATE ' || qualified_tbl || ' SET ' || visible_bit || ' = true WHERE ' || visible_bit || ' = ''f'''; BEGIN EXECUTE stmt; EXCEPTION WHEN OTHERS THEN RAISE NOTICE 'failure making rows in % visible', qualified_tbl; END; RETURN 't'; END $$; ALTER FUNCTION utils.make_all_rows_visible(scm character varying, tbl character varying) OWNER TO postgres; -- -- Name: make_all_rows_visible_in_schema(character varying); Type: FUNCTION; Schema: utils; Owner: postgres -- CREATE FUNCTION utils.make_all_rows_visible_in_schema(scm character varying) RETURNS boolean LANGUAGE plpgsql AS $$ DECLARE myrec RECORD; stmt VARCHAR; query VARCHAR; bt_schema VARCHAR; BEGIN bt_schema = scm || '_bt'; query = 'SELECT relname FROM pg_class c, pg_namespace n WHERE c.relnamespace=n.oid AND c.relkind=''r'' AND n.nspname=''' || bt_schema || ''''; -- RAISE NOTICE '%', query; --stmt; FOR myrec IN EXECUTE query LOOP RAISE NOTICE 'Making rows in ''%'' visible', myrec.relname; stmt = 'SELECT make_all_rows_visible(''' || scm || ''', ''' || myrec.relname || ''')'; --RAISE NOTICE '%', stmt; EXECUTE stmt; END LOOP; RETURN 't'; END $$; ALTER FUNCTION utils.make_all_rows_visible_in_schema(scm character varying) OWNER TO postgres; -- -- Name: annotation; Type: TABLE; Schema: annotation; Owner: postgres -- CREATE TABLE annotation.annotation ( annot_id integer NOT NULL, id character varying(100), name character varying(100), type character varying(10), date date, person_id bigint, "timestamp" timestamp(6) without time zone DEFAULT ('now'::text)::timestamp(6) with time zone NOT NULL, version bigint, history_id bigint, CONSTRAINT annotation_type_check CHECK ((((type)::text = 'gene'::text) OR ((type)::text = 'pseudogene'::text) OR ((type)::text = 'transposon'::text) OR ((type)::text = 'tRNA'::text) OR ((type)::text = 'rRNA'::text) OR ((type)::text = 'snRNA'::text) OR ((type)::text = 'snoRNA'::text))) ); ALTER TABLE annotation.annotation OWNER TO postgres; -- -- Name: annotation_annot_id_seq; Type: SEQUENCE; Schema: annotation; Owner: postgres -- CREATE SEQUENCE annotation.annotation_annot_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE annotation.annotation_annot_id_seq OWNER TO postgres; -- -- Name: annotation_annot_id_seq; Type: SEQUENCE OWNED BY; Schema: annotation; Owner: postgres -- ALTER SEQUENCE annotation.annotation_annot_id_seq OWNED BY annotation.annotation.annot_id; -- -- Name: comment; Type: TABLE; Schema: annotation; Owner: postgres -- CREATE TABLE annotation.comment ( comment_id integer NOT NULL, text text, person_id bigint, date date, table_name character varying(11), table_id bigint, CONSTRAINT comment_table_name_check CHECK ((((table_name)::text = 'annotation'::text) OR ((table_name)::text = 'feature_set'::text))) ); ALTER TABLE annotation.comment OWNER TO postgres; -- -- Name: comment_comment_id_seq; Type: SEQUENCE; Schema: annotation; Owner: postgres -- CREATE SEQUENCE annotation.comment_comment_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE annotation.comment_comment_id_seq OWNER TO postgres; -- -- Name: comment_comment_id_seq; Type: SEQUENCE OWNED BY; Schema: annotation; Owner: postgres -- ALTER SEQUENCE annotation.comment_comment_id_seq OWNED BY annotation.comment.comment_id; -- -- Name: comp_analysis; Type: TABLE; Schema: annotation; Owner: postgres -- CREATE TABLE annotation.comp_analysis ( ca_id integer NOT NULL, program_id bigint, db_id bigint, date date, person_id bigint, "timestamp" timestamp(6) without time zone DEFAULT ('now'::text)::timestamp(6) with time zone NOT NULL, version bigint ); ALTER TABLE annotation.comp_analysis OWNER TO postgres; -- -- Name: comp_analysis_ca_id_seq; Type: SEQUENCE; Schema: annotation; Owner: postgres -- CREATE SEQUENCE annotation.comp_analysis_ca_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE annotation.comp_analysis_ca_id_seq OWNER TO postgres; -- -- Name: comp_analysis_ca_id_seq; Type: SEQUENCE OWNED BY; Schema: annotation; Owner: postgres -- ALTER SEQUENCE annotation.comp_analysis_ca_id_seq OWNED BY annotation.comp_analysis.ca_id; -- -- Name: dblist; Type: TABLE; Schema: annotation; Owner: postgres -- CREATE TABLE annotation.dblist ( db_id integer NOT NULL, name character varying(100) ); ALTER TABLE annotation.dblist OWNER TO postgres; -- -- Name: dblist_db_id_seq; Type: SEQUENCE; Schema: annotation; Owner: postgres -- CREATE SEQUENCE annotation.dblist_db_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE annotation.dblist_db_id_seq OWNER TO postgres; -- -- Name: dblist_db_id_seq; Type: SEQUENCE OWNED BY; Schema: annotation; Owner: postgres -- ALTER SEQUENCE annotation.dblist_db_id_seq OWNED BY annotation.dblist.db_id; -- -- Name: dbxref; Type: TABLE; Schema: annotation; Owner: postgres -- CREATE TABLE annotation.dbxref ( dbxref_id integer NOT NULL, db_id bigint, db_key character varying(100), table_name character varying(10), table_id bigint, CONSTRAINT dbxref_table_name_check CHECK ((((table_name)::text = 'annotation'::text) OR ((table_name)::text = 'seq'::text))) ); ALTER TABLE annotation.dbxref OWNER TO postgres; -- -- Name: dbxref_dbxref_id_seq; Type: SEQUENCE; Schema: annotation; Owner: postgres -- CREATE SEQUENCE annotation.dbxref_dbxref_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE annotation.dbxref_dbxref_id_seq OWNER TO postgres; -- -- Name: dbxref_dbxref_id_seq; Type: SEQUENCE OWNED BY; Schema: annotation; Owner: postgres -- ALTER SEQUENCE annotation.dbxref_dbxref_id_seq OWNED BY annotation.dbxref.dbxref_id; -- -- Name: feature_set; Type: TABLE; Schema: annotation; Owner: postgres -- CREATE TABLE annotation.feature_set ( f_set_id integer NOT NULL, annot_id bigint, name character varying(100), type character varying(20), cdna_seq_id bigint, cds_seq_id bigint, prot_seq_id bigint, description text, date date, person_id bigint, "timestamp" timestamp(6) without time zone DEFAULT ('now'::text)::timestamp(6) with time zone NOT NULL, version bigint, history_id bigint ); ALTER TABLE annotation.feature_set OWNER TO postgres; -- -- Name: feature_set_f_set_id_seq; Type: SEQUENCE; Schema: annotation; Owner: postgres -- CREATE SEQUENCE annotation.feature_set_f_set_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE annotation.feature_set_f_set_id_seq OWNER TO postgres; -- -- Name: feature_set_f_set_id_seq; Type: SEQUENCE OWNED BY; Schema: annotation; Owner: postgres -- ALTER SEQUENCE annotation.feature_set_f_set_id_seq OWNED BY annotation.feature_set.f_set_id; -- -- Name: feature_span; Type: TABLE; Schema: annotation; Owner: postgres -- CREATE TABLE annotation.feature_span ( f_span_id integer NOT NULL, f_set_id bigint, type character varying(13), CONSTRAINT feature_span_type_check CHECK ((((type)::text = 'exon'::text) OR ((type)::text = 'intron'::text) OR ((type)::text = '3utr'::text) OR ((type)::text = '5utr'::text) OR ((type)::text = 'match_segment'::text) OR ((type)::text = 'start_codon'::text))) ); ALTER TABLE annotation.feature_span OWNER TO postgres; -- -- Name: feature_span_f_span_id_seq; Type: SEQUENCE; Schema: annotation; Owner: postgres -- CREATE SEQUENCE annotation.feature_span_f_span_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE annotation.feature_span_f_span_id_seq OWNER TO postgres; -- -- Name: feature_span_f_span_id_seq; Type: SEQUENCE OWNED BY; Schema: annotation; Owner: postgres -- ALTER SEQUENCE annotation.feature_span_f_span_id_seq OWNED BY annotation.feature_span.f_span_id; -- -- Name: organism; Type: TABLE; Schema: annotation; Owner: postgres -- CREATE TABLE annotation.organism ( organism_id integer NOT NULL, name character varying(100) ); ALTER TABLE annotation.organism OWNER TO postgres; -- -- Name: organism_organism_id_seq; Type: SEQUENCE; Schema: annotation; Owner: postgres -- CREATE SEQUENCE annotation.organism_organism_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE annotation.organism_organism_id_seq OWNER TO postgres; -- -- Name: organism_organism_id_seq; Type: SEQUENCE OWNED BY; Schema: annotation; Owner: postgres -- ALTER SEQUENCE annotation.organism_organism_id_seq OWNED BY annotation.organism.organism_id; -- -- Name: output; Type: TABLE; Schema: annotation; Owner: postgres -- CREATE TABLE annotation.output ( output_id integer NOT NULL, r_span_id bigint, type character varying(20), value character varying(20) ); ALTER TABLE annotation.output OWNER TO postgres; -- -- Name: output_output_id_seq; Type: SEQUENCE; Schema: annotation; Owner: postgres -- CREATE SEQUENCE annotation.output_output_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE annotation.output_output_id_seq OWNER TO postgres; -- -- Name: output_output_id_seq; Type: SEQUENCE OWNED BY; Schema: annotation; Owner: postgres -- ALTER SEQUENCE annotation.output_output_id_seq OWNED BY annotation.output.output_id; -- -- Name: person; Type: TABLE; Schema: annotation; Owner: postgres -- CREATE TABLE annotation.person ( person_id integer NOT NULL, name character varying(100) ); ALTER TABLE annotation.person OWNER TO postgres; -- -- Name: person_person_id_seq; Type: SEQUENCE; Schema: annotation; Owner: postgres -- CREATE SEQUENCE annotation.person_person_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE annotation.person_person_id_seq OWNER TO postgres; -- -- Name: person_person_id_seq; Type: SEQUENCE OWNED BY; Schema: annotation; Owner: postgres -- ALTER SEQUENCE annotation.person_person_id_seq OWNED BY annotation.person.person_id; -- -- Name: program; Type: TABLE; Schema: annotation; Owner: postgres -- CREATE TABLE annotation.program ( program_id integer NOT NULL, name character varying(100) ); ALTER TABLE annotation.program OWNER TO postgres; -- -- Name: program_program_id_seq; Type: SEQUENCE; Schema: annotation; Owner: postgres -- CREATE SEQUENCE annotation.program_program_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE annotation.program_program_id_seq OWNER TO postgres; -- -- Name: program_program_id_seq; Type: SEQUENCE OWNED BY; Schema: annotation; Owner: postgres -- ALTER SEQUENCE annotation.program_program_id_seq OWNED BY annotation.program.program_id; -- -- Name: property; Type: TABLE; Schema: annotation; Owner: postgres -- CREATE TABLE annotation.property ( property_id integer NOT NULL, type character varying(100), value character varying(100), table_name character varying(13), table_id bigint, CONSTRAINT property_table_name_check CHECK ((((table_name)::text = 'annotation'::text) OR ((table_name)::text = 'feature_set'::text) OR ((table_name)::text = 'comp_analysis'::text))) ); ALTER TABLE annotation.property OWNER TO postgres; -- -- Name: property_property_id_seq; Type: SEQUENCE; Schema: annotation; Owner: postgres -- CREATE SEQUENCE annotation.property_property_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE annotation.property_property_id_seq OWNER TO postgres; -- -- Name: property_property_id_seq; Type: SEQUENCE OWNED BY; Schema: annotation; Owner: postgres -- ALTER SEQUENCE annotation.property_property_id_seq OWNED BY annotation.property.property_id; -- -- Name: result_set; Type: TABLE; Schema: annotation; Owner: postgres -- CREATE TABLE annotation.result_set ( r_set_id integer NOT NULL, ca_id bigint, name character varying(100), "timestamp" timestamp(6) without time zone DEFAULT ('now'::text)::timestamp(6) with time zone NOT NULL ); ALTER TABLE annotation.result_set OWNER TO postgres; -- -- Name: result_set_r_set_id_seq; Type: SEQUENCE; Schema: annotation; Owner: postgres -- CREATE SEQUENCE annotation.result_set_r_set_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE annotation.result_set_r_set_id_seq OWNER TO postgres; -- -- Name: result_set_r_set_id_seq; Type: SEQUENCE OWNED BY; Schema: annotation; Owner: postgres -- ALTER SEQUENCE annotation.result_set_r_set_id_seq OWNED BY annotation.result_set.r_set_id; -- -- Name: result_span; Type: TABLE; Schema: annotation; Owner: postgres -- CREATE TABLE annotation.result_span ( r_span_id integer NOT NULL, r_set_id bigint, type character varying(20), score double precision, output_id bigint ); ALTER TABLE annotation.result_span OWNER TO postgres; -- -- Name: result_span_r_span_id_seq; Type: SEQUENCE; Schema: annotation; Owner: postgres -- CREATE SEQUENCE annotation.result_span_r_span_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE annotation.result_span_r_span_id_seq OWNER TO postgres; -- -- Name: result_span_r_span_id_seq; Type: SEQUENCE OWNED BY; Schema: annotation; Owner: postgres -- ALTER SEQUENCE annotation.result_span_r_span_id_seq OWNED BY annotation.result_span.r_span_id; -- -- Name: seq; Type: TABLE; Schema: annotation; Owner: postgres -- CREATE TABLE annotation.seq ( seq_id integer NOT NULL, id character varying(100), version bigint, length bigint, md5checksum character varying(32), name character varying(100), description text, organism_id bigint, type character varying(3), residues text, genbank_gi character varying(20), person_id bigint, clone_id bigint, CONSTRAINT seq_type_check CHECK ((((type)::text = 'AA'::text) OR ((type)::text = 'DNA'::text) OR ((type)::text = 'RNA'::text))) ); ALTER TABLE annotation.seq OWNER TO postgres; -- -- Name: seq_error; Type: TABLE; Schema: annotation; Owner: postgres -- CREATE TABLE annotation.seq_error ( seq_err_id integer NOT NULL, seq_id bigint, type character varying(20), "position" bigint ); ALTER TABLE annotation.seq_error OWNER TO postgres; -- -- Name: seq_error_seq_err_id_seq; Type: SEQUENCE; Schema: annotation; Owner: postgres -- CREATE SEQUENCE annotation.seq_error_seq_err_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE annotation.seq_error_seq_err_id_seq OWNER TO postgres; -- -- Name: seq_error_seq_err_id_seq; Type: SEQUENCE OWNED BY; Schema: annotation; Owner: postgres -- ALTER SEQUENCE annotation.seq_error_seq_err_id_seq OWNED BY annotation.seq_error.seq_err_id; -- -- Name: seq_relationship; Type: TABLE; Schema: annotation; Owner: postgres -- CREATE TABLE annotation.seq_relationship ( seq_rel_id integer NOT NULL, seq_id bigint, type character varying(7), alignment text, start bigint, "end" bigint, strand character varying(1), table_name character varying(12), table_id bigint, CONSTRAINT seq_relationship_strand_check CHECK ((((strand)::text = '-'::text) OR ((strand)::text = '+'::text))), CONSTRAINT seq_relationship_table_name_check CHECK ((((table_name)::text = 'seq'::text) OR ((table_name)::text = 'result_span'::text) OR ((table_name)::text = 'feature_set'::text) OR ((table_name)::text = 'feature_span'::text))), CONSTRAINT seq_relationship_type_check CHECK ((((type)::text = 'query'::text) OR ((type)::text = 'subject'::text))) ); ALTER TABLE annotation.seq_relationship OWNER TO postgres; -- -- Name: seq_relationship_seq_rel_id_seq; Type: SEQUENCE; Schema: annotation; Owner: postgres -- CREATE SEQUENCE annotation.seq_relationship_seq_rel_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE annotation.seq_relationship_seq_rel_id_seq OWNER TO postgres; -- -- Name: seq_relationship_seq_rel_id_seq; Type: SEQUENCE OWNED BY; Schema: annotation; Owner: postgres -- ALTER SEQUENCE annotation.seq_relationship_seq_rel_id_seq OWNED BY annotation.seq_relationship.seq_rel_id; -- -- Name: seq_seq_id_seq; Type: SEQUENCE; Schema: annotation; Owner: postgres -- CREATE SEQUENCE annotation.seq_seq_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE annotation.seq_seq_id_seq OWNER TO postgres; -- -- Name: seq_seq_id_seq; Type: SEQUENCE OWNED BY; Schema: annotation; Owner: postgres -- ALTER SEQUENCE annotation.seq_seq_id_seq OWNED BY annotation.seq.seq_id; -- -- Name: synonym; Type: TABLE; Schema: annotation; Owner: postgres -- CREATE TABLE annotation.synonym ( synonym_id integer NOT NULL, name character varying(100), table_name character varying(11), table_id bigint, CONSTRAINT synonym_table_name_check CHECK ((((table_name)::text = 'annotation'::text) OR ((table_name)::text = 'feature_set'::text))) ); ALTER TABLE annotation.synonym OWNER TO postgres; -- -- Name: synonym_synonym_id_seq; Type: SEQUENCE; Schema: annotation; Owner: postgres -- CREATE SEQUENCE annotation.synonym_synonym_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE annotation.synonym_synonym_id_seq OWNER TO postgres; -- -- Name: synonym_synonym_id_seq; Type: SEQUENCE OWNED BY; Schema: annotation; Owner: postgres -- ALTER SEQUENCE annotation.synonym_synonym_id_seq OWNED BY annotation.synonym.synonym_id; -- -- Name: bs_protocol; Type: TABLE; Schema: biosource; Owner: postgres -- CREATE TABLE biosource.bs_protocol ( protocol_id integer NOT NULL, protocol_name character varying(250), protocol_type character varying(250), description text, metadata_id bigint ); ALTER TABLE biosource.bs_protocol OWNER TO postgres; -- -- Name: TABLE bs_protocol; Type: COMMENT; Schema: biosource; Owner: postgres -- COMMENT ON TABLE biosource.bs_protocol IS 'biosource.bs_protocol store general information about how something was processed. mRNA extraction is a protocol, but also can be a protocol sequence_assembly or plant growth'; -- -- Name: bs_protocol_protocol_id_seq; Type: SEQUENCE; Schema: biosource; Owner: postgres -- CREATE SEQUENCE biosource.bs_protocol_protocol_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE biosource.bs_protocol_protocol_id_seq OWNER TO postgres; -- -- Name: bs_protocol_protocol_id_seq; Type: SEQUENCE OWNED BY; Schema: biosource; Owner: postgres -- ALTER SEQUENCE biosource.bs_protocol_protocol_id_seq OWNED BY biosource.bs_protocol.protocol_id; -- -- Name: bs_protocol_pub; Type: TABLE; Schema: biosource; Owner: postgres -- CREATE TABLE biosource.bs_protocol_pub ( protocol_pub_id integer NOT NULL, protocol_id integer, pub_id integer, metadata_id bigint ); ALTER TABLE biosource.bs_protocol_pub OWNER TO postgres; -- -- Name: TABLE bs_protocol_pub; Type: COMMENT; Schema: biosource; Owner: postgres -- COMMENT ON TABLE biosource.bs_protocol_pub IS 'biosource.bs_protocol_pub is a linker table to associate publications to some protocols'; -- -- Name: bs_protocol_pub_protocol_pub_id_seq; Type: SEQUENCE; Schema: biosource; Owner: postgres -- CREATE SEQUENCE biosource.bs_protocol_pub_protocol_pub_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE biosource.bs_protocol_pub_protocol_pub_id_seq OWNER TO postgres; -- -- Name: bs_protocol_pub_protocol_pub_id_seq; Type: SEQUENCE OWNED BY; Schema: biosource; Owner: postgres -- ALTER SEQUENCE biosource.bs_protocol_pub_protocol_pub_id_seq OWNED BY biosource.bs_protocol_pub.protocol_pub_id; -- -- Name: bs_protocol_step; Type: TABLE; Schema: biosource; Owner: postgres -- CREATE TABLE biosource.bs_protocol_step ( protocol_step_id integer NOT NULL, protocol_id integer, step integer, action text, execution text, tool_id integer, begin_date timestamp without time zone, end_date timestamp without time zone, location text, metadata_id bigint ); ALTER TABLE biosource.bs_protocol_step OWNER TO postgres; -- -- Name: TABLE bs_protocol_step; Type: COMMENT; Schema: biosource; Owner: postgres -- COMMENT ON TABLE biosource.bs_protocol_step IS 'biosource.bs_protocol_step store data for each step or stage in a protocol. They are order by the secuencially by step column. Execution describe the action produced during the step, for example plant growth at 24C, blastall -p blastx, ligation... begin_date, end_date and location generally will be used for plant field growth conditions.'; -- -- Name: bs_protocol_step_dbxref; Type: TABLE; Schema: biosource; Owner: postgres -- CREATE TABLE biosource.bs_protocol_step_dbxref ( protocol_step_dbxref_id integer NOT NULL, protocol_step_id integer, dbxref_id integer, metadata_id bigint ); ALTER TABLE biosource.bs_protocol_step_dbxref OWNER TO postgres; -- -- Name: TABLE bs_protocol_step_dbxref; Type: COMMENT; Schema: biosource; Owner: postgres -- COMMENT ON TABLE biosource.bs_protocol_step_dbxref IS 'biosource.bs_protocol_step_dbxref is a loker table designed to store controlled vocabulary terms associated to some protocol steps'; -- -- Name: bs_protocol_step_dbxref_protocol_step_dbxref_id_seq; Type: SEQUENCE; Schema: biosource; Owner: postgres -- CREATE SEQUENCE biosource.bs_protocol_step_dbxref_protocol_step_dbxref_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE biosource.bs_protocol_step_dbxref_protocol_step_dbxref_id_seq OWNER TO postgres; -- -- Name: bs_protocol_step_dbxref_protocol_step_dbxref_id_seq; Type: SEQUENCE OWNED BY; Schema: biosource; Owner: postgres -- ALTER SEQUENCE biosource.bs_protocol_step_dbxref_protocol_step_dbxref_id_seq OWNED BY biosource.bs_protocol_step_dbxref.protocol_step_dbxref_id; -- -- Name: bs_protocol_step_protocol_step_id_seq; Type: SEQUENCE; Schema: biosource; Owner: postgres -- CREATE SEQUENCE biosource.bs_protocol_step_protocol_step_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE biosource.bs_protocol_step_protocol_step_id_seq OWNER TO postgres; -- -- Name: bs_protocol_step_protocol_step_id_seq; Type: SEQUENCE OWNED BY; Schema: biosource; Owner: postgres -- ALTER SEQUENCE biosource.bs_protocol_step_protocol_step_id_seq OWNED BY biosource.bs_protocol_step.protocol_step_id; -- -- Name: bs_sample; Type: TABLE; Schema: biosource; Owner: postgres -- CREATE TABLE biosource.bs_sample ( sample_id integer NOT NULL, sample_name character varying(250), sample_type character varying(250), alternative_name text, type_id bigint, description text, organism_id integer, stock_id integer, protocol_id bigint, contact_id integer, metadata_id bigint ); ALTER TABLE biosource.bs_sample OWNER TO postgres; -- -- Name: TABLE bs_sample; Type: COMMENT; Schema: biosource; Owner: postgres -- COMMENT ON TABLE biosource.bs_sample IS 'biosource.bs_sample store information about the origin of a biological sample. It can be composed by different elements, for example tomato fruit sample can be a mix of fruits in different stages. Each stage will be a sample_element. Sample also can have associated a sp_person_id in terms of contact.'; -- -- Name: bs_sample_cvterm; Type: TABLE; Schema: biosource; Owner: postgres -- CREATE TABLE biosource.bs_sample_cvterm ( sample_cvterm_id integer NOT NULL, sample_id integer, cvterm_id integer, metadata_id bigint ); ALTER TABLE biosource.bs_sample_cvterm OWNER TO postgres; -- -- Name: TABLE bs_sample_cvterm; Type: COMMENT; Schema: biosource; Owner: postgres -- COMMENT ON TABLE biosource.bs_sample_cvterm IS 'biosource.bs_sample_cvterm is a linker table to associate tags to the samples as Normalized, Sustracted...'; -- -- Name: bs_sample_cvterm_sample_cvterm_id_seq; Type: SEQUENCE; Schema: biosource; Owner: postgres -- CREATE SEQUENCE biosource.bs_sample_cvterm_sample_cvterm_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE biosource.bs_sample_cvterm_sample_cvterm_id_seq OWNER TO postgres; -- -- Name: bs_sample_cvterm_sample_cvterm_id_seq; Type: SEQUENCE OWNED BY; Schema: biosource; Owner: postgres -- ALTER SEQUENCE biosource.bs_sample_cvterm_sample_cvterm_id_seq OWNED BY biosource.bs_sample_cvterm.sample_cvterm_id; -- -- Name: bs_sample_dbxref; Type: TABLE; Schema: biosource; Owner: postgres -- CREATE TABLE biosource.bs_sample_dbxref ( sample_dbxref_id integer NOT NULL, sample_id integer, dbxref_id bigint, metadata_id bigint ); ALTER TABLE biosource.bs_sample_dbxref OWNER TO postgres; -- -- Name: TABLE bs_sample_dbxref; Type: COMMENT; Schema: biosource; Owner: postgres -- COMMENT ON TABLE biosource.bs_sample_dbxref IS 'biosource.bs_sample_dbxref is a linker table to associate controlled vocabullary as Plant Ontology to each element of a sample'; -- -- Name: bs_sample_dbxref_sample_dbxref_id_seq; Type: SEQUENCE; Schema: biosource; Owner: postgres -- CREATE SEQUENCE biosource.bs_sample_dbxref_sample_dbxref_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE biosource.bs_sample_dbxref_sample_dbxref_id_seq OWNER TO postgres; -- -- Name: bs_sample_dbxref_sample_dbxref_id_seq; Type: SEQUENCE OWNED BY; Schema: biosource; Owner: postgres -- ALTER SEQUENCE biosource.bs_sample_dbxref_sample_dbxref_id_seq OWNED BY biosource.bs_sample_dbxref.sample_dbxref_id; -- -- Name: bs_sample_element; Type: TABLE; Schema: biosource; Owner: postgres -- CREATE TABLE biosource.bs_sample_element ( sample_element_id integer NOT NULL, sample_element_name character varying(250), alternative_name text, sample_id integer, description text, organism_id integer, stock_id integer, protocol_id integer, metadata_id bigint ); ALTER TABLE biosource.bs_sample_element OWNER TO postgres; -- -- Name: TABLE bs_sample_element; Type: COMMENT; Schema: biosource; Owner: postgres -- COMMENT ON TABLE biosource.bs_sample_element IS 'biosource.bs_sample_element store information of each elemennt of a sample. It have a organism_id column and stock_id to associate different origins, for example a tomato leaves sample can be composed by leaves of Solanum lycopersicum and Solanum pimpinellifolium.'; -- -- Name: bs_sample_element_cvterm; Type: TABLE; Schema: biosource; Owner: postgres -- CREATE TABLE biosource.bs_sample_element_cvterm ( sample_element_cvterm_id integer NOT NULL, sample_element_id integer, cvterm_id integer, metadata_id bigint ); ALTER TABLE biosource.bs_sample_element_cvterm OWNER TO postgres; -- -- Name: TABLE bs_sample_element_cvterm; Type: COMMENT; Schema: biosource; Owner: postgres -- COMMENT ON TABLE biosource.bs_sample_element_cvterm IS 'biosource.bs_sample_cvterm is a linker table to associate tags to the samples as Normalized, Sustracted...'; -- -- Name: bs_sample_element_cvterm_sample_element_cvterm_id_seq; Type: SEQUENCE; Schema: biosource; Owner: postgres -- CREATE SEQUENCE biosource.bs_sample_element_cvterm_sample_element_cvterm_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE biosource.bs_sample_element_cvterm_sample_element_cvterm_id_seq OWNER TO postgres; -- -- Name: bs_sample_element_cvterm_sample_element_cvterm_id_seq; Type: SEQUENCE OWNED BY; Schema: biosource; Owner: postgres -- ALTER SEQUENCE biosource.bs_sample_element_cvterm_sample_element_cvterm_id_seq OWNED BY biosource.bs_sample_element_cvterm.sample_element_cvterm_id; -- -- Name: bs_sample_element_dbxref; Type: TABLE; Schema: biosource; Owner: postgres -- CREATE TABLE biosource.bs_sample_element_dbxref ( sample_element_dbxref_id integer NOT NULL, sample_element_id integer, dbxref_id bigint, metadata_id bigint ); ALTER TABLE biosource.bs_sample_element_dbxref OWNER TO postgres; -- -- Name: TABLE bs_sample_element_dbxref; Type: COMMENT; Schema: biosource; Owner: postgres -- COMMENT ON TABLE biosource.bs_sample_element_dbxref IS 'biosource.bs_sample_element_dbxref is a linker table to associate controlled vocabullary as Plant Ontology to each element of a sample'; -- -- Name: bs_sample_element_dbxref_sample_element_dbxref_id_seq; Type: SEQUENCE; Schema: biosource; Owner: postgres -- CREATE SEQUENCE biosource.bs_sample_element_dbxref_sample_element_dbxref_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE biosource.bs_sample_element_dbxref_sample_element_dbxref_id_seq OWNER TO postgres; -- -- Name: bs_sample_element_dbxref_sample_element_dbxref_id_seq; Type: SEQUENCE OWNED BY; Schema: biosource; Owner: postgres -- ALTER SEQUENCE biosource.bs_sample_element_dbxref_sample_element_dbxref_id_seq OWNED BY biosource.bs_sample_element_dbxref.sample_element_dbxref_id; -- -- Name: bs_sample_element_file; Type: TABLE; Schema: biosource; Owner: postgres -- CREATE TABLE biosource.bs_sample_element_file ( sample_element_file_id integer NOT NULL, sample_element_id integer, file_id integer, metadata_id bigint ); ALTER TABLE biosource.bs_sample_element_file OWNER TO postgres; -- -- Name: TABLE bs_sample_element_file; Type: COMMENT; Schema: biosource; Owner: postgres -- COMMENT ON TABLE biosource.bs_sample_element_file IS 'biosource.bs_sample_element_file store the associations between the sample_elements and files.'; -- -- Name: bs_sample_element_file_sample_element_file_id_seq; Type: SEQUENCE; Schema: biosource; Owner: postgres -- CREATE SEQUENCE biosource.bs_sample_element_file_sample_element_file_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE biosource.bs_sample_element_file_sample_element_file_id_seq OWNER TO postgres; -- -- Name: bs_sample_element_file_sample_element_file_id_seq; Type: SEQUENCE OWNED BY; Schema: biosource; Owner: postgres -- ALTER SEQUENCE biosource.bs_sample_element_file_sample_element_file_id_seq OWNED BY biosource.bs_sample_element_file.sample_element_file_id; -- -- Name: bs_sample_element_relation; Type: TABLE; Schema: biosource; Owner: postgres -- CREATE TABLE biosource.bs_sample_element_relation ( sample_element_relation_id integer NOT NULL, sample_element_id_a integer, sample_element_id_b integer, relation_type text, metadata_id bigint ); ALTER TABLE biosource.bs_sample_element_relation OWNER TO postgres; -- -- Name: TABLE bs_sample_element_relation; Type: COMMENT; Schema: biosource; Owner: postgres -- COMMENT ON TABLE biosource.bs_sample_element_relation IS 'biosource.bs_sample_element_relation store the associations between sample_elements, for example an est dataset and an unigene dataset can be related with a sequence assembly relation'; -- -- Name: bs_sample_element_relation_sample_element_relation_id_seq; Type: SEQUENCE; Schema: biosource; Owner: postgres -- CREATE SEQUENCE biosource.bs_sample_element_relation_sample_element_relation_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE biosource.bs_sample_element_relation_sample_element_relation_id_seq OWNER TO postgres; -- -- Name: bs_sample_element_relation_sample_element_relation_id_seq; Type: SEQUENCE OWNED BY; Schema: biosource; Owner: postgres -- ALTER SEQUENCE biosource.bs_sample_element_relation_sample_element_relation_id_seq OWNED BY biosource.bs_sample_element_relation.sample_element_relation_id; -- -- Name: bs_sample_element_sample_element_id_seq; Type: SEQUENCE; Schema: biosource; Owner: postgres -- CREATE SEQUENCE biosource.bs_sample_element_sample_element_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE biosource.bs_sample_element_sample_element_id_seq OWNER TO postgres; -- -- Name: bs_sample_element_sample_element_id_seq; Type: SEQUENCE OWNED BY; Schema: biosource; Owner: postgres -- ALTER SEQUENCE biosource.bs_sample_element_sample_element_id_seq OWNED BY biosource.bs_sample_element.sample_element_id; -- -- Name: bs_sample_file; Type: TABLE; Schema: biosource; Owner: postgres -- CREATE TABLE biosource.bs_sample_file ( sample_file_id integer NOT NULL, sample_id integer, file_id integer, metadata_id bigint ); ALTER TABLE biosource.bs_sample_file OWNER TO postgres; -- -- Name: TABLE bs_sample_file; Type: COMMENT; Schema: biosource; Owner: postgres -- COMMENT ON TABLE biosource.bs_sample_file IS 'biosource.bs_sample_file store the associations between the sample and files.'; -- -- Name: bs_sample_file_sample_file_id_seq; Type: SEQUENCE; Schema: biosource; Owner: postgres -- CREATE SEQUENCE biosource.bs_sample_file_sample_file_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE biosource.bs_sample_file_sample_file_id_seq OWNER TO postgres; -- -- Name: bs_sample_file_sample_file_id_seq; Type: SEQUENCE OWNED BY; Schema: biosource; Owner: postgres -- ALTER SEQUENCE biosource.bs_sample_file_sample_file_id_seq OWNED BY biosource.bs_sample_file.sample_file_id; -- -- Name: bs_sample_pub; Type: TABLE; Schema: biosource; Owner: postgres -- CREATE TABLE biosource.bs_sample_pub ( sample_pub_id integer NOT NULL, sample_id integer, pub_id integer, metadata_id bigint ); ALTER TABLE biosource.bs_sample_pub OWNER TO postgres; -- -- Name: TABLE bs_sample_pub; Type: COMMENT; Schema: biosource; Owner: postgres -- COMMENT ON TABLE biosource.bs_sample_pub IS 'bisource.bs_sample_pub is a linker table to associate publications to a sample.'; -- -- Name: bs_sample_pub_sample_pub_id_seq; Type: SEQUENCE; Schema: biosource; Owner: postgres -- CREATE SEQUENCE biosource.bs_sample_pub_sample_pub_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE biosource.bs_sample_pub_sample_pub_id_seq OWNER TO postgres; -- -- Name: bs_sample_pub_sample_pub_id_seq; Type: SEQUENCE OWNED BY; Schema: biosource; Owner: postgres -- ALTER SEQUENCE biosource.bs_sample_pub_sample_pub_id_seq OWNED BY biosource.bs_sample_pub.sample_pub_id; -- -- Name: bs_sample_relationship; Type: TABLE; Schema: biosource; Owner: postgres -- CREATE TABLE biosource.bs_sample_relationship ( sample_relationship_id integer NOT NULL, subject_id integer, object_id integer, type_id integer, value text, rank integer, metadata_id bigint ); ALTER TABLE biosource.bs_sample_relationship OWNER TO postgres; -- -- Name: TABLE bs_sample_relationship; Type: COMMENT; Schema: biosource; Owner: postgres -- COMMENT ON TABLE biosource.bs_sample_relationship IS 'biosource.bs_sample_relationship store the associations between sample, for example an est dataset and an unigene dataset can be related with a sequence assembly relation'; -- -- Name: bs_sample_relationship_sample_relationship_id_seq; Type: SEQUENCE; Schema: biosource; Owner: postgres -- CREATE SEQUENCE biosource.bs_sample_relationship_sample_relationship_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE biosource.bs_sample_relationship_sample_relationship_id_seq OWNER TO postgres; -- -- Name: bs_sample_relationship_sample_relationship_id_seq; Type: SEQUENCE OWNED BY; Schema: biosource; Owner: postgres -- ALTER SEQUENCE biosource.bs_sample_relationship_sample_relationship_id_seq OWNED BY biosource.bs_sample_relationship.sample_relationship_id; -- -- Name: bs_sample_sample_id_seq; Type: SEQUENCE; Schema: biosource; Owner: postgres -- CREATE SEQUENCE biosource.bs_sample_sample_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE biosource.bs_sample_sample_id_seq OWNER TO postgres; -- -- Name: bs_sample_sample_id_seq; Type: SEQUENCE OWNED BY; Schema: biosource; Owner: postgres -- ALTER SEQUENCE biosource.bs_sample_sample_id_seq OWNED BY biosource.bs_sample.sample_id; -- -- Name: bs_tool; Type: TABLE; Schema: biosource; Owner: postgres -- CREATE TABLE biosource.bs_tool ( tool_id integer NOT NULL, tool_name character varying(250), tool_version character varying(10), tool_type character varying(250), tool_description text, tool_weblink text, file_id integer, metadata_id bigint ); ALTER TABLE biosource.bs_tool OWNER TO postgres; -- -- Name: TABLE bs_tool; Type: COMMENT; Schema: biosource; Owner: postgres -- COMMENT ON TABLE biosource.bs_tool IS 'biosource.bs_tool stores information about the tools used during the execution of some protocols. Example of tools are vectors, mRNA purification kits, software, soils. They can have links to web_pages or/and files.'; -- -- Name: bs_tool_pub; Type: TABLE; Schema: biosource; Owner: postgres -- CREATE TABLE biosource.bs_tool_pub ( tool_pub_id integer NOT NULL, tool_id integer, pub_id integer, metadata_id bigint ); ALTER TABLE biosource.bs_tool_pub OWNER TO postgres; -- -- Name: TABLE bs_tool_pub; Type: COMMENT; Schema: biosource; Owner: postgres -- COMMENT ON TABLE biosource.bs_tool_pub IS 'biosource.bs_tool_pub is a linker table to associate publications to some tools'; -- -- Name: bs_tool_pub_tool_pub_id_seq; Type: SEQUENCE; Schema: biosource; Owner: postgres -- CREATE SEQUENCE biosource.bs_tool_pub_tool_pub_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE biosource.bs_tool_pub_tool_pub_id_seq OWNER TO postgres; -- -- Name: bs_tool_pub_tool_pub_id_seq; Type: SEQUENCE OWNED BY; Schema: biosource; Owner: postgres -- ALTER SEQUENCE biosource.bs_tool_pub_tool_pub_id_seq OWNED BY biosource.bs_tool_pub.tool_pub_id; -- -- Name: bs_tool_tool_id_seq; Type: SEQUENCE; Schema: biosource; Owner: postgres -- CREATE SEQUENCE biosource.bs_tool_tool_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE biosource.bs_tool_tool_id_seq OWNER TO postgres; -- -- Name: bs_tool_tool_id_seq; Type: SEQUENCE OWNED BY; Schema: biosource; Owner: postgres -- ALTER SEQUENCE biosource.bs_tool_tool_id_seq OWNED BY biosource.bs_tool.tool_id; -- -- Name: ge_cluster_analysis; Type: TABLE; Schema: gem; Owner: postgres -- CREATE TABLE gem.ge_cluster_analysis ( cluster_analysis_id integer NOT NULL, experiment_analysis_group_id integer, methodology character varying(250), protocol_id integer, description text, correlation_analysis_id bigint, metadata_id bigint ); ALTER TABLE gem.ge_cluster_analysis OWNER TO postgres; -- -- Name: TABLE ge_cluster_analysis; Type: COMMENT; Schema: gem; Owner: postgres -- COMMENT ON TABLE gem.ge_cluster_analysis IS 'gem.ge_cluster_analysis stores information about the experiments and methology used to do a cluster analysis of data expression.'; -- -- Name: ge_cluster_analysis_cluster_analysis_id_seq; Type: SEQUENCE; Schema: gem; Owner: postgres -- CREATE SEQUENCE gem.ge_cluster_analysis_cluster_analysis_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE gem.ge_cluster_analysis_cluster_analysis_id_seq OWNER TO postgres; -- -- Name: ge_cluster_analysis_cluster_analysis_id_seq; Type: SEQUENCE OWNED BY; Schema: gem; Owner: postgres -- ALTER SEQUENCE gem.ge_cluster_analysis_cluster_analysis_id_seq OWNED BY gem.ge_cluster_analysis.cluster_analysis_id; -- -- Name: ge_cluster_member; Type: TABLE; Schema: gem; Owner: postgres -- CREATE TABLE gem.ge_cluster_member ( cluster_member_id bigint NOT NULL, template_id bigint, cluster_profile_id bigint, metadata_id bigint ); ALTER TABLE gem.ge_cluster_member OWNER TO postgres; -- -- Name: TABLE ge_cluster_member; Type: COMMENT; Schema: gem; Owner: postgres -- COMMENT ON TABLE gem.ge_cluster_member IS 'gem.ge_cluster_member stores the cluster composition as template list'; -- -- Name: ge_cluster_member_cluster_member_id_seq; Type: SEQUENCE; Schema: gem; Owner: postgres -- CREATE SEQUENCE gem.ge_cluster_member_cluster_member_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE gem.ge_cluster_member_cluster_member_id_seq OWNER TO postgres; -- -- Name: ge_cluster_member_cluster_member_id_seq; Type: SEQUENCE OWNED BY; Schema: gem; Owner: postgres -- ALTER SEQUENCE gem.ge_cluster_member_cluster_member_id_seq OWNED BY gem.ge_cluster_member.cluster_member_id; -- -- Name: ge_cluster_profile; Type: TABLE; Schema: gem; Owner: postgres -- CREATE TABLE gem.ge_cluster_profile ( cluster_profile_id integer NOT NULL, cluster_analysis_id integer, member_nr integer, file_id integer, metadata_id bigint ); ALTER TABLE gem.ge_cluster_profile OWNER TO postgres; -- -- Name: TABLE ge_cluster_profile; Type: COMMENT; Schema: gem; Owner: postgres -- COMMENT ON TABLE gem.ge_cluster_profile IS 'gem.ge_cluster_profile is a linker table between ge_cluster_expression_analysis table and md_files table. It let associate image and files to a cluster expression analysis.'; -- -- Name: ge_cluster_profile_cluster_profile_id_seq; Type: SEQUENCE; Schema: gem; Owner: postgres -- CREATE SEQUENCE gem.ge_cluster_profile_cluster_profile_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE gem.ge_cluster_profile_cluster_profile_id_seq OWNER TO postgres; -- -- Name: ge_cluster_profile_cluster_profile_id_seq; Type: SEQUENCE OWNED BY; Schema: gem; Owner: postgres -- ALTER SEQUENCE gem.ge_cluster_profile_cluster_profile_id_seq OWNED BY gem.ge_cluster_profile.cluster_profile_id; -- -- Name: ge_correlation_analysis; Type: TABLE; Schema: gem; Owner: postgres -- CREATE TABLE gem.ge_correlation_analysis ( correlation_analysis_id integer NOT NULL, experiment_analysis_group_id integer, methodology character varying(250), description text, metadata_id bigint ); ALTER TABLE gem.ge_correlation_analysis OWNER TO postgres; -- -- Name: TABLE ge_correlation_analysis; Type: COMMENT; Schema: gem; Owner: postgres -- COMMENT ON TABLE gem.ge_correlation_analysis IS 'gem.ge_correlation_member stores correlation values associated to each template of a correlation analysis over a set of experiments.'; -- -- Name: ge_correlation_analysis_correlation_analysis_id_seq; Type: SEQUENCE; Schema: gem; Owner: postgres -- CREATE SEQUENCE gem.ge_correlation_analysis_correlation_analysis_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE gem.ge_correlation_analysis_correlation_analysis_id_seq OWNER TO postgres; -- -- Name: ge_correlation_analysis_correlation_analysis_id_seq; Type: SEQUENCE OWNED BY; Schema: gem; Owner: postgres -- ALTER SEQUENCE gem.ge_correlation_analysis_correlation_analysis_id_seq OWNED BY gem.ge_correlation_analysis.correlation_analysis_id; -- -- Name: ge_correlation_member; Type: TABLE; Schema: gem; Owner: postgres -- CREATE TABLE gem.ge_correlation_member ( correlation_member_id bigint NOT NULL, correlation_analysis_id bigint, template_a_id bigint, template_b_id bigint, correlation_value real, correlation_type character varying(250), dataset_id integer, metadata_id bigint ); ALTER TABLE gem.ge_correlation_member OWNER TO postgres; -- -- Name: ge_correlation_member_correlation_member_id_seq; Type: SEQUENCE; Schema: gem; Owner: postgres -- CREATE SEQUENCE gem.ge_correlation_member_correlation_member_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE gem.ge_correlation_member_correlation_member_id_seq OWNER TO postgres; -- -- Name: ge_correlation_member_correlation_member_id_seq; Type: SEQUENCE OWNED BY; Schema: gem; Owner: postgres -- ALTER SEQUENCE gem.ge_correlation_member_correlation_member_id_seq OWNED BY gem.ge_correlation_member.correlation_member_id; -- -- Name: ge_data_analysis_process; Type: TABLE; Schema: gem; Owner: postgres -- CREATE TABLE gem.ge_data_analysis_process ( data_analysis_process_id integer NOT NULL, process_type character varying(250), target_id integer, source_dataset_id integer, result_dataset_id integer, file_id integer, metadata_id bigint ); ALTER TABLE gem.ge_data_analysis_process OWNER TO postgres; -- -- Name: TABLE ge_data_analysis_process; Type: COMMENT; Schema: gem; Owner: postgres -- COMMENT ON TABLE gem.ge_data_analysis_process IS 'gem.ge_data_analysis_process store the different steps of a data analysis process for a microarray analysis as a relation between two datasets (source and result). The protocol can be stored as a protocol associated to a sample. A result file can be associated using file_id.'; -- -- Name: ge_data_analysis_process_data_analysis_process_id_seq; Type: SEQUENCE; Schema: gem; Owner: postgres -- CREATE SEQUENCE gem.ge_data_analysis_process_data_analysis_process_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE gem.ge_data_analysis_process_data_analysis_process_id_seq OWNER TO postgres; -- -- Name: ge_data_analysis_process_data_analysis_process_id_seq; Type: SEQUENCE OWNED BY; Schema: gem; Owner: postgres -- ALTER SEQUENCE gem.ge_data_analysis_process_data_analysis_process_id_seq OWNED BY gem.ge_data_analysis_process.data_analysis_process_id; -- -- Name: ge_diff_expression; Type: TABLE; Schema: gem; Owner: postgres -- CREATE TABLE gem.ge_diff_expression ( diff_expression_id integer NOT NULL, experiment_analysis_group_id integer, method character varying(250), stat_significance_cutoff real, stat_significance_type character varying(250), metadata_id bigint ); ALTER TABLE gem.ge_diff_expression OWNER TO postgres; -- -- Name: TABLE ge_diff_expression; Type: COMMENT; Schema: gem; Owner: postgres -- COMMENT ON TABLE gem.ge_diff_expression IS 'gem.ge_diff_expression store information about the differential expression analysis made over a set of experiments'; -- -- Name: ge_diff_expression_diff_expression_id_seq; Type: SEQUENCE; Schema: gem; Owner: postgres -- CREATE SEQUENCE gem.ge_diff_expression_diff_expression_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE gem.ge_diff_expression_diff_expression_id_seq OWNER TO postgres; -- -- Name: ge_diff_expression_diff_expression_id_seq; Type: SEQUENCE OWNED BY; Schema: gem; Owner: postgres -- ALTER SEQUENCE gem.ge_diff_expression_diff_expression_id_seq OWNED BY gem.ge_diff_expression.diff_expression_id; -- -- Name: ge_experiment; Type: TABLE; Schema: gem; Owner: postgres -- CREATE TABLE gem.ge_experiment ( experiment_id integer NOT NULL, experiment_name character varying(250), experimental_design_id integer, replicates_nr integer, colour_nr integer, description text, contact_id integer, metadata_id bigint ); ALTER TABLE gem.ge_experiment OWNER TO postgres; -- -- Name: TABLE ge_experiment; Type: COMMENT; Schema: gem; Owner: postgres -- COMMENT ON TABLE gem.ge_experiment IS 'gem.ge_experiment store data about a single expression experiment such as tomato leaves or tomato leaves vs potato leaves in a two colour microarray experiment. For a high-throughtput sequencing methods an experiment could be equal to a sequencing run.'; -- -- Name: ge_experiment_analysis_group; Type: TABLE; Schema: gem; Owner: postgres -- CREATE TABLE gem.ge_experiment_analysis_group ( experiment_analysis_group_id integer NOT NULL, group_name character varying(250), group_description text, metadata_id bigint ); ALTER TABLE gem.ge_experiment_analysis_group OWNER TO postgres; -- -- Name: TABLE ge_experiment_analysis_group; Type: COMMENT; Schema: gem; Owner: postgres -- COMMENT ON TABLE gem.ge_experiment_analysis_group IS 'gem.ge_experiment_analysis_member stores member id for experiment groups.'; -- -- Name: ge_experiment_analysis_group_experiment_analysis_group_id_seq; Type: SEQUENCE; Schema: gem; Owner: postgres -- CREATE SEQUENCE gem.ge_experiment_analysis_group_experiment_analysis_group_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE gem.ge_experiment_analysis_group_experiment_analysis_group_id_seq OWNER TO postgres; -- -- Name: ge_experiment_analysis_group_experiment_analysis_group_id_seq; Type: SEQUENCE OWNED BY; Schema: gem; Owner: postgres -- ALTER SEQUENCE gem.ge_experiment_analysis_group_experiment_analysis_group_id_seq OWNED BY gem.ge_experiment_analysis_group.experiment_analysis_group_id; -- -- Name: ge_experiment_analysis_member; Type: TABLE; Schema: gem; Owner: postgres -- CREATE TABLE gem.ge_experiment_analysis_member ( experiment_analysis_member_id integer NOT NULL, experiment_analysis_group_id integer, experiment_id integer, metadata_id bigint ); ALTER TABLE gem.ge_experiment_analysis_member OWNER TO postgres; -- -- Name: ge_experiment_analysis_member_experiment_analysis_member_id_seq; Type: SEQUENCE; Schema: gem; Owner: postgres -- CREATE SEQUENCE gem.ge_experiment_analysis_member_experiment_analysis_member_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE gem.ge_experiment_analysis_member_experiment_analysis_member_id_seq OWNER TO postgres; -- -- Name: ge_experiment_analysis_member_experiment_analysis_member_id_seq; Type: SEQUENCE OWNED BY; Schema: gem; Owner: postgres -- ALTER SEQUENCE gem.ge_experiment_analysis_member_experiment_analysis_member_id_seq OWNED BY gem.ge_experiment_analysis_member.experiment_analysis_member_id; -- -- Name: ge_experiment_dbxref; Type: TABLE; Schema: gem; Owner: postgres -- CREATE TABLE gem.ge_experiment_dbxref ( experiment_dbxref_id integer NOT NULL, experiment_id integer, dbxref_id bigint, metadata_id bigint ); ALTER TABLE gem.ge_experiment_dbxref OWNER TO postgres; -- -- Name: TABLE ge_experiment_dbxref; Type: COMMENT; Schema: gem; Owner: postgres -- COMMENT ON TABLE gem.ge_experiment_dbxref IS 'gem.ge_experiment_dbxref is a linking table between gem.ge_experiment table and dbxref table in the chado schema. It is used to store experiment associations with other databases.'; -- -- Name: ge_experiment_dbxref_experiment_dbxref_id_seq; Type: SEQUENCE; Schema: gem; Owner: postgres -- CREATE SEQUENCE gem.ge_experiment_dbxref_experiment_dbxref_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE gem.ge_experiment_dbxref_experiment_dbxref_id_seq OWNER TO postgres; -- -- Name: ge_experiment_dbxref_experiment_dbxref_id_seq; Type: SEQUENCE OWNED BY; Schema: gem; Owner: postgres -- ALTER SEQUENCE gem.ge_experiment_dbxref_experiment_dbxref_id_seq OWNED BY gem.ge_experiment_dbxref.experiment_dbxref_id; -- -- Name: ge_experiment_experiment_id_seq; Type: SEQUENCE; Schema: gem; Owner: postgres -- CREATE SEQUENCE gem.ge_experiment_experiment_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE gem.ge_experiment_experiment_id_seq OWNER TO postgres; -- -- Name: ge_experiment_experiment_id_seq; Type: SEQUENCE OWNED BY; Schema: gem; Owner: postgres -- ALTER SEQUENCE gem.ge_experiment_experiment_id_seq OWNED BY gem.ge_experiment.experiment_id; -- -- Name: ge_experimental_design; Type: TABLE; Schema: gem; Owner: postgres -- CREATE TABLE gem.ge_experimental_design ( experimental_design_id integer NOT NULL, experimental_design_name character varying(250), description text, design_type character varying(250), metadata_id bigint ); ALTER TABLE gem.ge_experimental_design OWNER TO postgres; -- -- Name: ge_experimental_design_dbxref; Type: TABLE; Schema: gem; Owner: postgres -- CREATE TABLE gem.ge_experimental_design_dbxref ( experimental_design_dbxref_id integer NOT NULL, experimental_design_id integer, dbxref_id bigint, metadata_id bigint ); ALTER TABLE gem.ge_experimental_design_dbxref OWNER TO postgres; -- -- Name: TABLE ge_experimental_design_dbxref; Type: COMMENT; Schema: gem; Owner: postgres -- COMMENT ON TABLE gem.ge_experimental_design_dbxref IS 'gem.ge_experimental_design_dbxref is a linking table between gem.ge_experimental_design table and dbxref table in the chado schema. It is used to store experimental designs associations with other databases.'; -- -- Name: ge_experimental_design_dbxref_experimental_design_dbxref_id_seq; Type: SEQUENCE; Schema: gem; Owner: postgres -- CREATE SEQUENCE gem.ge_experimental_design_dbxref_experimental_design_dbxref_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE gem.ge_experimental_design_dbxref_experimental_design_dbxref_id_seq OWNER TO postgres; -- -- Name: ge_experimental_design_dbxref_experimental_design_dbxref_id_seq; Type: SEQUENCE OWNED BY; Schema: gem; Owner: postgres -- ALTER SEQUENCE gem.ge_experimental_design_dbxref_experimental_design_dbxref_id_seq OWNED BY gem.ge_experimental_design_dbxref.experimental_design_dbxref_id; -- -- Name: ge_experimental_design_experimental_design_id_seq; Type: SEQUENCE; Schema: gem; Owner: postgres -- CREATE SEQUENCE gem.ge_experimental_design_experimental_design_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE gem.ge_experimental_design_experimental_design_id_seq OWNER TO postgres; -- -- Name: ge_experimental_design_experimental_design_id_seq; Type: SEQUENCE OWNED BY; Schema: gem; Owner: postgres -- ALTER SEQUENCE gem.ge_experimental_design_experimental_design_id_seq OWNED BY gem.ge_experimental_design.experimental_design_id; -- -- Name: ge_experimental_design_pub; Type: TABLE; Schema: gem; Owner: postgres -- CREATE TABLE gem.ge_experimental_design_pub ( experimental_design_pub_id integer NOT NULL, experimental_design_id integer, pub_id bigint, metadata_id bigint ); ALTER TABLE gem.ge_experimental_design_pub OWNER TO postgres; -- -- Name: TABLE ge_experimental_design_pub; Type: COMMENT; Schema: gem; Owner: postgres -- COMMENT ON TABLE gem.ge_experimental_design_pub IS 'gem.ge_experimental_design_pub is a linking table between gem.ge_experimental_design table and pub table in the chado schema. It is used to store experimental designs associations with publications.'; -- -- Name: ge_experimental_design_pub_experimental_design_pub_id_seq; Type: SEQUENCE; Schema: gem; Owner: postgres -- CREATE SEQUENCE gem.ge_experimental_design_pub_experimental_design_pub_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE gem.ge_experimental_design_pub_experimental_design_pub_id_seq OWNER TO postgres; -- -- Name: ge_experimental_design_pub_experimental_design_pub_id_seq; Type: SEQUENCE OWNED BY; Schema: gem; Owner: postgres -- ALTER SEQUENCE gem.ge_experimental_design_pub_experimental_design_pub_id_seq OWNED BY gem.ge_experimental_design_pub.experimental_design_pub_id; -- -- Name: ge_expression_by_experiment; Type: TABLE; Schema: gem; Owner: postgres -- CREATE TABLE gem.ge_expression_by_experiment ( expression_by_experiment_id bigint NOT NULL, experiment_id integer, template_id bigint, replicates_used integer, mean real, median real, standard_desviation double precision, coefficient_of_variance double precision, dataset_id integer, metadata_id bigint ); ALTER TABLE gem.ge_expression_by_experiment OWNER TO postgres; -- -- Name: TABLE ge_expression_by_experiment; Type: COMMENT; Schema: gem; Owner: postgres -- COMMENT ON TABLE gem.ge_expression_by_experiment IS 'gem.ge_expression_by_experiment stores the mean, media, SD and CV associated to the expression values of a template in a concrete experiment. These statistical values are calculated using the signal values for different hybridizations in the same experiment.'; -- -- Name: ge_expression_by_experiment_expression_by_experiment_id_seq; Type: SEQUENCE; Schema: gem; Owner: postgres -- CREATE SEQUENCE gem.ge_expression_by_experiment_expression_by_experiment_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE gem.ge_expression_by_experiment_expression_by_experiment_id_seq OWNER TO postgres; -- -- Name: ge_expression_by_experiment_expression_by_experiment_id_seq; Type: SEQUENCE OWNED BY; Schema: gem; Owner: postgres -- ALTER SEQUENCE gem.ge_expression_by_experiment_expression_by_experiment_id_seq OWNED BY gem.ge_expression_by_experiment.expression_by_experiment_id; -- -- Name: ge_fluorescanning; Type: TABLE; Schema: gem; Owner: postgres -- CREATE TABLE gem.ge_fluorescanning ( fluorescanning_id integer NOT NULL, hybridization_id integer, protocol_id integer, file_id integer, dbxref_id bigint, metadata_id bigint ); ALTER TABLE gem.ge_fluorescanning OWNER TO postgres; -- -- Name: TABLE ge_fluorescanning; Type: COMMENT; Schema: gem; Owner: postgres -- COMMENT ON TABLE gem.ge_fluorescanning IS 'gem.ge_fluorescanning store the data and the file location of how a hybridization was scanned (the location can be specified in two different ways. Using a file location in the system (file_id), or linking the file with a ftp location (dbxref_id)).'; -- -- Name: ge_fluorescanning_fluorescanning_id_seq; Type: SEQUENCE; Schema: gem; Owner: postgres -- CREATE SEQUENCE gem.ge_fluorescanning_fluorescanning_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE gem.ge_fluorescanning_fluorescanning_id_seq OWNER TO postgres; -- -- Name: ge_fluorescanning_fluorescanning_id_seq; Type: SEQUENCE OWNED BY; Schema: gem; Owner: postgres -- ALTER SEQUENCE gem.ge_fluorescanning_fluorescanning_id_seq OWNED BY gem.ge_fluorescanning.fluorescanning_id; -- -- Name: ge_hybridization; Type: TABLE; Schema: gem; Owner: postgres -- CREATE TABLE gem.ge_hybridization ( hybridization_id integer NOT NULL, target_id integer, platform_id integer, platform_batch character varying(250), protocol_id integer, metadata_id bigint ); ALTER TABLE gem.ge_hybridization OWNER TO postgres; -- -- Name: TABLE ge_hybridization; Type: COMMENT; Schema: gem; Owner: postgres -- COMMENT ON TABLE gem.ge_hybridization IS 'gem.ge_hybridization store the data of the platform and the target used in a hybridization.'; -- -- Name: ge_hybridization_hybridization_id_seq; Type: SEQUENCE; Schema: gem; Owner: postgres -- CREATE SEQUENCE gem.ge_hybridization_hybridization_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE gem.ge_hybridization_hybridization_id_seq OWNER TO postgres; -- -- Name: ge_hybridization_hybridization_id_seq; Type: SEQUENCE OWNED BY; Schema: gem; Owner: postgres -- ALTER SEQUENCE gem.ge_hybridization_hybridization_id_seq OWNED BY gem.ge_hybridization.hybridization_id; -- -- Name: ge_platform; Type: TABLE; Schema: gem; Owner: postgres -- CREATE TABLE gem.ge_platform ( platform_id integer NOT NULL, technology_type_id integer, platform_name character varying(250), description text, contact_id bigint, metadata_id bigint ); ALTER TABLE gem.ge_platform OWNER TO postgres; -- -- Name: TABLE ge_platform; Type: COMMENT; Schema: gem; Owner: postgres -- COMMENT ON TABLE gem.ge_platform IS 'trancriptomics.ge_platform stores for a specific gem platform, an aplication of a gem expression meassure technology to a concrete system. For example Arabidopsis AffyChip'; -- -- Name: ge_platform_dbxref; Type: TABLE; Schema: gem; Owner: postgres -- CREATE TABLE gem.ge_platform_dbxref ( platform_dbxref_id integer NOT NULL, platform_id integer, dbxref_id bigint, metadata_id bigint ); ALTER TABLE gem.ge_platform_dbxref OWNER TO postgres; -- -- Name: TABLE ge_platform_dbxref; Type: COMMENT; Schema: gem; Owner: postgres -- COMMENT ON TABLE gem.ge_platform_dbxref IS 'gem.ge_platform_dbxref is a linking table between gem.ge_platform table and dbxref table in the chado schema. It is used to store platform associations with other expression databases as GEO'; -- -- Name: ge_platform_dbxref_platform_dbxref_id_seq; Type: SEQUENCE; Schema: gem; Owner: postgres -- CREATE SEQUENCE gem.ge_platform_dbxref_platform_dbxref_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE gem.ge_platform_dbxref_platform_dbxref_id_seq OWNER TO postgres; -- -- Name: ge_platform_dbxref_platform_dbxref_id_seq; Type: SEQUENCE OWNED BY; Schema: gem; Owner: postgres -- ALTER SEQUENCE gem.ge_platform_dbxref_platform_dbxref_id_seq OWNED BY gem.ge_platform_dbxref.platform_dbxref_id; -- -- Name: ge_platform_design; Type: TABLE; Schema: gem; Owner: postgres -- CREATE TABLE gem.ge_platform_design ( platform_design_id integer NOT NULL, platform_id integer, sample_id integer, metadata_id bigint ); ALTER TABLE gem.ge_platform_design OWNER TO postgres; -- -- Name: TABLE ge_platform_design; Type: COMMENT; Schema: gem; Owner: postgres -- COMMENT ON TABLE gem.ge_platform_design IS 'gem.ge_platform_design is a linking table between gem.ge_platform table and biosource.sample table. This table is used to create relations between a platform and a sequence datatset (sequence dataset as sample_type used in the design of the gem platform'; -- -- Name: ge_platform_design_platform_design_id_seq; Type: SEQUENCE; Schema: gem; Owner: postgres -- CREATE SEQUENCE gem.ge_platform_design_platform_design_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE gem.ge_platform_design_platform_design_id_seq OWNER TO postgres; -- -- Name: ge_platform_design_platform_design_id_seq; Type: SEQUENCE OWNED BY; Schema: gem; Owner: postgres -- ALTER SEQUENCE gem.ge_platform_design_platform_design_id_seq OWNED BY gem.ge_platform_design.platform_design_id; -- -- Name: ge_platform_platform_id_seq; Type: SEQUENCE; Schema: gem; Owner: postgres -- CREATE SEQUENCE gem.ge_platform_platform_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE gem.ge_platform_platform_id_seq OWNER TO postgres; -- -- Name: ge_platform_platform_id_seq; Type: SEQUENCE OWNED BY; Schema: gem; Owner: postgres -- ALTER SEQUENCE gem.ge_platform_platform_id_seq OWNED BY gem.ge_platform.platform_id; -- -- Name: ge_platform_pub; Type: TABLE; Schema: gem; Owner: postgres -- CREATE TABLE gem.ge_platform_pub ( platform_pub_id integer NOT NULL, platform_id integer, pub_id bigint, metadata_id bigint ); ALTER TABLE gem.ge_platform_pub OWNER TO postgres; -- -- Name: TABLE ge_platform_pub; Type: COMMENT; Schema: gem; Owner: postgres -- COMMENT ON TABLE gem.ge_platform_pub IS 'gem.ge_platform_pub is a linking table between gem.ge_platform table and pub table in the chado schema. It is used to store platform associations with publications'; -- -- Name: ge_platform_pub_platform_pub_id_seq; Type: SEQUENCE; Schema: gem; Owner: postgres -- CREATE SEQUENCE gem.ge_platform_pub_platform_pub_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE gem.ge_platform_pub_platform_pub_id_seq OWNER TO postgres; -- -- Name: ge_platform_pub_platform_pub_id_seq; Type: SEQUENCE OWNED BY; Schema: gem; Owner: postgres -- ALTER SEQUENCE gem.ge_platform_pub_platform_pub_id_seq OWNED BY gem.ge_platform_pub.platform_pub_id; -- -- Name: ge_probe; Type: TABLE; Schema: gem; Owner: postgres -- CREATE TABLE gem.ge_probe ( probe_id bigint NOT NULL, platform_id integer, probe_name character varying(250), probe_type character varying(250), sequence_file_id bigint, template_id bigint, template_start bigint, template_end bigint, metadata_id bigint ); ALTER TABLE gem.ge_probe OWNER TO postgres; -- -- Name: TABLE ge_probe; Type: COMMENT; Schema: gem; Owner: postgres -- COMMENT ON TABLE gem.ge_probe IS 'gem.ge_probe stores data about the sequence used in the hybridization or produced by the sequencing method. Also map these sequence with a reference (see ge_template table).'; -- -- Name: ge_probe_expression; Type: TABLE; Schema: gem; Owner: postgres -- CREATE TABLE gem.ge_probe_expression ( probe_expression_id bigint NOT NULL, target_element_id integer, probe_id bigint, signal real, signal_type character varying(25), background real, background_type character varying(25), flag character varying(25), dataset_id integer, metadata_id bigint ); ALTER TABLE gem.ge_probe_expression OWNER TO postgres; -- -- Name: TABLE ge_probe_expression; Type: COMMENT; Schema: gem; Owner: postgres -- COMMENT ON TABLE gem.ge_probe_expression IS 'gem.ge_probe_expression stores the signal and the background associated with each probe for a target_element in a hybridization. The experiment data are associated in two ways: target_id (faster) and as a sample_id (dataset_id) that keeps the history of the process.'; -- -- Name: ge_probe_expression_probe_expression_id_seq; Type: SEQUENCE; Schema: gem; Owner: postgres -- CREATE SEQUENCE gem.ge_probe_expression_probe_expression_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE gem.ge_probe_expression_probe_expression_id_seq OWNER TO postgres; -- -- Name: ge_probe_expression_probe_expression_id_seq; Type: SEQUENCE OWNED BY; Schema: gem; Owner: postgres -- ALTER SEQUENCE gem.ge_probe_expression_probe_expression_id_seq OWNED BY gem.ge_probe_expression.probe_expression_id; -- -- Name: ge_probe_probe_id_seq; Type: SEQUENCE; Schema: gem; Owner: postgres -- CREATE SEQUENCE gem.ge_probe_probe_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE gem.ge_probe_probe_id_seq OWNER TO postgres; -- -- Name: ge_probe_probe_id_seq; Type: SEQUENCE OWNED BY; Schema: gem; Owner: postgres -- ALTER SEQUENCE gem.ge_probe_probe_id_seq OWNED BY gem.ge_probe.probe_id; -- -- Name: ge_probe_spot; Type: TABLE; Schema: gem; Owner: postgres -- CREATE TABLE gem.ge_probe_spot ( probe_spot_id bigint NOT NULL, probe_id bigint, spot_name character varying(250), metadata_id bigint ); ALTER TABLE gem.ge_probe_spot OWNER TO postgres; -- -- Name: TABLE ge_probe_spot; Type: COMMENT; Schema: gem; Owner: postgres -- COMMENT ON TABLE gem.ge_probe_spot IS 'gem.ge_probe_spot store each spot (each point of the microarray) associated with a probe (one probe can have more than one spot).'; -- -- Name: ge_probe_spot_coordinate; Type: TABLE; Schema: gem; Owner: postgres -- CREATE TABLE gem.ge_probe_spot_coordinate ( probe_spot_coordinate_id bigint NOT NULL, probe_spot_id bigint, coordinate_type character varying(50), coordinate_value integer, metadata_id bigint ); ALTER TABLE gem.ge_probe_spot_coordinate OWNER TO postgres; -- -- Name: TABLE ge_probe_spot_coordinate; Type: COMMENT; Schema: gem; Owner: postgres -- COMMENT ON TABLE gem.ge_probe_spot_coordinate IS 'gem.ge_probe_spot_coordinate store each coordinate associated to a spot as combination of different coordination types, for example a spot can have the coordinates x=1, y=1 and grid=1. This will be translate in three rows in this table for the same spot_id'; -- -- Name: ge_probe_spot_coordinate_probe_spot_coordinate_id_seq; Type: SEQUENCE; Schema: gem; Owner: postgres -- CREATE SEQUENCE gem.ge_probe_spot_coordinate_probe_spot_coordinate_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE gem.ge_probe_spot_coordinate_probe_spot_coordinate_id_seq OWNER TO postgres; -- -- Name: ge_probe_spot_coordinate_probe_spot_coordinate_id_seq; Type: SEQUENCE OWNED BY; Schema: gem; Owner: postgres -- ALTER SEQUENCE gem.ge_probe_spot_coordinate_probe_spot_coordinate_id_seq OWNED BY gem.ge_probe_spot_coordinate.probe_spot_coordinate_id; -- -- Name: ge_probe_spot_probe_spot_id_seq; Type: SEQUENCE; Schema: gem; Owner: postgres -- CREATE SEQUENCE gem.ge_probe_spot_probe_spot_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE gem.ge_probe_spot_probe_spot_id_seq OWNER TO postgres; -- -- Name: ge_probe_spot_probe_spot_id_seq; Type: SEQUENCE OWNED BY; Schema: gem; Owner: postgres -- ALTER SEQUENCE gem.ge_probe_spot_probe_spot_id_seq OWNED BY gem.ge_probe_spot.probe_spot_id; -- -- Name: ge_profile_element; Type: TABLE; Schema: gem; Owner: postgres -- CREATE TABLE gem.ge_profile_element ( profile_element_id integer NOT NULL, cluster_profile_id integer, experiment_id integer, experiment_predefined_position integer, element_mean_value real, element_median_value real, element_sd real, element_type character varying(25), previous_element_ratio real, metadata_id bigint ); ALTER TABLE gem.ge_profile_element OWNER TO postgres; -- -- Name: TABLE ge_profile_element; Type: COMMENT; Schema: gem; Owner: postgres -- COMMENT ON TABLE gem.ge_profile_element IS 'gem.ge_cluster_profile_element store data about each element of a profile, for example is a profile is done over a time course with 4 points, each element will be one of these points.'; -- -- Name: ge_profile_element_profile_element_id_seq; Type: SEQUENCE; Schema: gem; Owner: postgres -- CREATE SEQUENCE gem.ge_profile_element_profile_element_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE gem.ge_profile_element_profile_element_id_seq OWNER TO postgres; -- -- Name: ge_profile_element_profile_element_id_seq; Type: SEQUENCE OWNED BY; Schema: gem; Owner: postgres -- ALTER SEQUENCE gem.ge_profile_element_profile_element_id_seq OWNED BY gem.ge_profile_element.profile_element_id; -- -- Name: ge_target; Type: TABLE; Schema: gem; Owner: postgres -- CREATE TABLE gem.ge_target ( target_id integer NOT NULL, target_name character varying(250), experiment_id integer, metadata_id bigint ); ALTER TABLE gem.ge_target OWNER TO postgres; -- -- Name: TABLE ge_target; Type: COMMENT; Schema: gem; Owner: postgres -- COMMENT ON TABLE gem.ge_target IS 'gems.ge_target store data about the replicates for an experiment. Different biological replicates will have different sample_id. Technical replicated will have the same sample_id but different target_id.'; -- -- Name: ge_target_dbxref; Type: TABLE; Schema: gem; Owner: postgres -- CREATE TABLE gem.ge_target_dbxref ( target_dbxref_id integer NOT NULL, target_id integer, dbxref_id bigint, metadata_id bigint ); ALTER TABLE gem.ge_target_dbxref OWNER TO postgres; -- -- Name: TABLE ge_target_dbxref; Type: COMMENT; Schema: gem; Owner: postgres -- COMMENT ON TABLE gem.ge_target_dbxref IS 'gem.ge_target_dbxref is a linking table between gem.ge_target table and dbxref table in the chado schema. It is used to store target associations with other databases.'; -- -- Name: ge_target_dbxref_target_dbxref_id_seq; Type: SEQUENCE; Schema: gem; Owner: postgres -- CREATE SEQUENCE gem.ge_target_dbxref_target_dbxref_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE gem.ge_target_dbxref_target_dbxref_id_seq OWNER TO postgres; -- -- Name: ge_target_dbxref_target_dbxref_id_seq; Type: SEQUENCE OWNED BY; Schema: gem; Owner: postgres -- ALTER SEQUENCE gem.ge_target_dbxref_target_dbxref_id_seq OWNED BY gem.ge_target_dbxref.target_dbxref_id; -- -- Name: ge_target_element; Type: TABLE; Schema: gem; Owner: postgres -- CREATE TABLE gem.ge_target_element ( target_element_id integer NOT NULL, target_element_name character varying(250), target_id integer, sample_id integer, protocol_id integer, dye text, metadata_id bigint ); ALTER TABLE gem.ge_target_element OWNER TO postgres; -- -- Name: TABLE ge_target_element; Type: COMMENT; Schema: gem; Owner: postgres -- COMMENT ON TABLE gem.ge_target_element IS 'gems.ge_target_element store data about the association of different samples in the same hybridization as target_elements, for example a two colour experiment will have one experiment, as many target as replicates and two target elements per replicates. A dye swap technique will be represented as two different targets with two different element each with different combinations of sample_id and dye.'; -- -- Name: ge_target_element_target_element_id_seq; Type: SEQUENCE; Schema: gem; Owner: postgres -- CREATE SEQUENCE gem.ge_target_element_target_element_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE gem.ge_target_element_target_element_id_seq OWNER TO postgres; -- -- Name: ge_target_element_target_element_id_seq; Type: SEQUENCE OWNED BY; Schema: gem; Owner: postgres -- ALTER SEQUENCE gem.ge_target_element_target_element_id_seq OWNED BY gem.ge_target_element.target_element_id; -- -- Name: ge_target_target_id_seq; Type: SEQUENCE; Schema: gem; Owner: postgres -- CREATE SEQUENCE gem.ge_target_target_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE gem.ge_target_target_id_seq OWNER TO postgres; -- -- Name: ge_target_target_id_seq; Type: SEQUENCE OWNED BY; Schema: gem; Owner: postgres -- ALTER SEQUENCE gem.ge_target_target_id_seq OWNED BY gem.ge_target.target_id; -- -- Name: ge_technology_type; Type: TABLE; Schema: gem; Owner: postgres -- CREATE TABLE gem.ge_technology_type ( technology_type_id integer NOT NULL, technology_name character varying(250), description text, metadata_id bigint ); ALTER TABLE gem.ge_technology_type OWNER TO postgres; -- -- Name: TABLE ge_technology_type; Type: COMMENT; Schema: gem; Owner: postgres -- COMMENT ON TABLE gem.ge_technology_type IS 'gem.ge_technology_type stores information about gem technology used in the development of the expression platform, for example Affymetrix GeneChip or High-throughput pyrosequencing'; -- -- Name: ge_technology_type_technology_type_id_seq; Type: SEQUENCE; Schema: gem; Owner: postgres -- CREATE SEQUENCE gem.ge_technology_type_technology_type_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE gem.ge_technology_type_technology_type_id_seq OWNER TO postgres; -- -- Name: ge_technology_type_technology_type_id_seq; Type: SEQUENCE OWNED BY; Schema: gem; Owner: postgres -- ALTER SEQUENCE gem.ge_technology_type_technology_type_id_seq OWNED BY gem.ge_technology_type.technology_type_id; -- -- Name: ge_template; Type: TABLE; Schema: gem; Owner: postgres -- CREATE TABLE gem.ge_template ( template_id bigint NOT NULL, template_name character varying(250), template_type text, platform_id integer, metadata_id bigint ); ALTER TABLE gem.ge_template OWNER TO postgres; -- -- Name: TABLE ge_template; Type: COMMENT; Schema: gem; Owner: postgres -- COMMENT ON TABLE gem.ge_template IS 'gem.ge_template store data about the gem templates of a specific platform. A template is a reference sequence used in the microarrat probe design or in the high-throughput sequencing mapping.'; -- -- Name: ge_template_dbiref; Type: TABLE; Schema: gem; Owner: postgres -- CREATE TABLE gem.ge_template_dbiref ( template_dbiref_id bigint NOT NULL, template_id bigint, dbiref_id bigint, metadata_id bigint ); ALTER TABLE gem.ge_template_dbiref OWNER TO postgres; -- -- Name: TABLE ge_template_dbiref; Type: COMMENT; Schema: gem; Owner: postgres -- COMMENT ON TABLE gem.ge_template_dbiref IS 'gem.ge_template_dbiref is a linking table between gem.ge_template table and metadata.md_dbiref table in the metadata schema. It is used to store associations between a template and internal sequence accessions, such us unigenes or ests'; -- -- Name: ge_template_dbiref_template_dbiref_id_seq; Type: SEQUENCE; Schema: gem; Owner: postgres -- CREATE SEQUENCE gem.ge_template_dbiref_template_dbiref_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE gem.ge_template_dbiref_template_dbiref_id_seq OWNER TO postgres; -- -- Name: ge_template_dbiref_template_dbiref_id_seq; Type: SEQUENCE OWNED BY; Schema: gem; Owner: postgres -- ALTER SEQUENCE gem.ge_template_dbiref_template_dbiref_id_seq OWNED BY gem.ge_template_dbiref.template_dbiref_id; -- -- Name: ge_template_dbxref; Type: TABLE; Schema: gem; Owner: postgres -- CREATE TABLE gem.ge_template_dbxref ( template_dbxref_id bigint NOT NULL, template_id bigint, dbxref_id bigint, metadata_id bigint ); ALTER TABLE gem.ge_template_dbxref OWNER TO postgres; -- -- Name: TABLE ge_template_dbxref; Type: COMMENT; Schema: gem; Owner: postgres -- COMMENT ON TABLE gem.ge_template_dbxref IS 'gem.ge_template_dbxref is a linking table between gem.ge_template table and dbxref table in the chado schema. It is used to store associations between a template and external sequence accessions of other databases as genbank'; -- -- Name: ge_template_dbxref_template_dbxref_id_seq; Type: SEQUENCE; Schema: gem; Owner: postgres -- CREATE SEQUENCE gem.ge_template_dbxref_template_dbxref_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE gem.ge_template_dbxref_template_dbxref_id_seq OWNER TO postgres; -- -- Name: ge_template_dbxref_template_dbxref_id_seq; Type: SEQUENCE OWNED BY; Schema: gem; Owner: postgres -- ALTER SEQUENCE gem.ge_template_dbxref_template_dbxref_id_seq OWNED BY gem.ge_template_dbxref.template_dbxref_id; -- -- Name: ge_template_diff_expression; Type: TABLE; Schema: gem; Owner: postgres -- CREATE TABLE gem.ge_template_diff_expression ( template_diff_expression_id bigint NOT NULL, diff_expression_id integer, template_id bigint, stat_value double precision, stat_type character varying(25), dataset_id integer, metadata_id bigint ); ALTER TABLE gem.ge_template_diff_expression OWNER TO postgres; -- -- Name: TABLE ge_template_diff_expression; Type: COMMENT; Schema: gem; Owner: postgres -- COMMENT ON TABLE gem.ge_template_diff_expression IS 'gem.ge_template_diff_expression store information about the differential expression analysis per template'; -- -- Name: ge_template_diff_expression_template_diff_expression_id_seq; Type: SEQUENCE; Schema: gem; Owner: postgres -- CREATE SEQUENCE gem.ge_template_diff_expression_template_diff_expression_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE gem.ge_template_diff_expression_template_diff_expression_id_seq OWNER TO postgres; -- -- Name: ge_template_diff_expression_template_diff_expression_id_seq; Type: SEQUENCE OWNED BY; Schema: gem; Owner: postgres -- ALTER SEQUENCE gem.ge_template_diff_expression_template_diff_expression_id_seq OWNED BY gem.ge_template_diff_expression.template_diff_expression_id; -- -- Name: ge_template_expression; Type: TABLE; Schema: gem; Owner: postgres -- CREATE TABLE gem.ge_template_expression ( template_expression_id bigint NOT NULL, hybridization_id integer, template_id bigint, template_signal real, template_signal_type character varying(25), statistical_value double precision, statistical_value_type character varying(25), flag character varying(25), dataset_id integer, metadata_id bigint ); ALTER TABLE gem.ge_template_expression OWNER TO postgres; -- -- Name: TABLE ge_template_expression; Type: COMMENT; Schema: gem; Owner: postgres -- COMMENT ON TABLE gem.ge_template_expression IS 'gem.ge_template_expression store the signal and its statitistical avlue associated to a template in a hybridization ( the average, median ... of the signal of the probes associated to the template). The experiment data are linked using two ways: hybrdization_id (faster) and as a sample_id (dataset_id) that keeps the history of the process'; -- -- Name: ge_template_expression_template_expression_id_seq; Type: SEQUENCE; Schema: gem; Owner: postgres -- CREATE SEQUENCE gem.ge_template_expression_template_expression_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE gem.ge_template_expression_template_expression_id_seq OWNER TO postgres; -- -- Name: ge_template_expression_template_expression_id_seq; Type: SEQUENCE OWNED BY; Schema: gem; Owner: postgres -- ALTER SEQUENCE gem.ge_template_expression_template_expression_id_seq OWNED BY gem.ge_template_expression.template_expression_id; -- -- Name: ge_template_template_id_seq; Type: SEQUENCE; Schema: gem; Owner: postgres -- CREATE SEQUENCE gem.ge_template_template_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE gem.ge_template_template_id_seq OWNER TO postgres; -- -- Name: ge_template_template_id_seq; Type: SEQUENCE OWNED BY; Schema: gem; Owner: postgres -- ALTER SEQUENCE gem.ge_template_template_id_seq OWNED BY gem.ge_template.template_id; -- -- Name: blast_defline; Type: TABLE; Schema: genomic; Owner: postgres -- CREATE TABLE genomic.blast_defline ( blast_defline_id integer NOT NULL, blast_db_id integer, identifier character varying(255), defline text, identifier_defline_fulltext tsvector ); ALTER TABLE genomic.blast_defline OWNER TO postgres; -- -- Name: blast_defline_blast_defline_id_seq; Type: SEQUENCE; Schema: genomic; Owner: postgres -- CREATE SEQUENCE genomic.blast_defline_blast_defline_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE genomic.blast_defline_blast_defline_id_seq OWNER TO postgres; -- -- Name: blast_defline_blast_defline_id_seq; Type: SEQUENCE OWNED BY; Schema: genomic; Owner: postgres -- ALTER SEQUENCE genomic.blast_defline_blast_defline_id_seq OWNED BY genomic.blast_defline.blast_defline_id; -- -- Name: blast_hit; Type: TABLE; Schema: genomic; Owner: postgres -- CREATE TABLE genomic.blast_hit ( blast_hit_id integer NOT NULL, blast_query_id integer, identifier character varying(255), evalue double precision, score double precision, identity_percentage double precision, align_start bigint, align_end bigint, blast_defline_id integer ); ALTER TABLE genomic.blast_hit OWNER TO postgres; -- -- Name: blast_hit_blast_hit_id_seq; Type: SEQUENCE; Schema: genomic; Owner: postgres -- CREATE SEQUENCE genomic.blast_hit_blast_hit_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE genomic.blast_hit_blast_hit_id_seq OWNER TO postgres; -- -- Name: blast_hit_blast_hit_id_seq; Type: SEQUENCE OWNED BY; Schema: genomic; Owner: postgres -- ALTER SEQUENCE genomic.blast_hit_blast_hit_id_seq OWNED BY genomic.blast_hit.blast_hit_id; -- -- Name: blast_query; Type: TABLE; Schema: genomic; Owner: postgres -- CREATE TABLE genomic.blast_query ( blast_query_id integer NOT NULL, source_id integer, query_source_type_id integer, blast_db_id integer, total_hits integer, stored_hits integer, last_updated timestamp(6) without time zone DEFAULT ('now'::text)::timestamp(6) with time zone NOT NULL ); ALTER TABLE genomic.blast_query OWNER TO postgres; -- -- Name: blast_query_blast_query_id_seq; Type: SEQUENCE; Schema: genomic; Owner: postgres -- CREATE SEQUENCE genomic.blast_query_blast_query_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE genomic.blast_query_blast_query_id_seq OWNER TO postgres; -- -- Name: blast_query_blast_query_id_seq; Type: SEQUENCE OWNED BY; Schema: genomic; Owner: postgres -- ALTER SEQUENCE genomic.blast_query_blast_query_id_seq OWNED BY genomic.blast_query.blast_query_id; -- -- Name: chromat; Type: TABLE; Schema: genomic; Owner: postgres -- CREATE TABLE genomic.chromat ( chromat_id bigint NOT NULL, clone_id bigint, primer character varying(50), direction character(1), filename character varying(50), subpath text, date timestamp(6) without time zone DEFAULT ('now'::text)::timestamp(6) with time zone NOT NULL, censor_id integer, read_class_id bigint ); ALTER TABLE genomic.chromat OWNER TO postgres; -- -- Name: chromat_chromat_id_seq; Type: SEQUENCE; Schema: genomic; Owner: postgres -- CREATE SEQUENCE genomic.chromat_chromat_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE genomic.chromat_chromat_id_seq OWNER TO postgres; -- -- Name: chromat_chromat_id_seq; Type: SEQUENCE OWNED BY; Schema: genomic; Owner: postgres -- ALTER SEQUENCE genomic.chromat_chromat_id_seq OWNED BY genomic.chromat.chromat_id; -- -- Name: clone; Type: TABLE; Schema: genomic; Owner: postgres -- CREATE TABLE genomic.clone ( clone_id integer NOT NULL, library_id bigint, clone_type_id smallint DEFAULT (0)::smallint NOT NULL, platenum integer, wellrow character varying(2), wellcol smallint, genbank_accession character varying(32), bad_clone character varying(32), estimated_length bigint ); ALTER TABLE genomic.clone OWNER TO postgres; -- -- Name: clone_clone_id_seq; Type: SEQUENCE; Schema: genomic; Owner: postgres -- CREATE SEQUENCE genomic.clone_clone_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE genomic.clone_clone_id_seq OWNER TO postgres; -- -- Name: clone_clone_id_seq; Type: SEQUENCE OWNED BY; Schema: genomic; Owner: postgres -- ALTER SEQUENCE genomic.clone_clone_id_seq OWNED BY genomic.clone.clone_id; -- -- Name: clone_feature; Type: TABLE; Schema: genomic; Owner: postgres -- CREATE TABLE genomic.clone_feature ( clone_feature_id integer NOT NULL, clone_id bigint, feature_id bigint ); ALTER TABLE genomic.clone_feature OWNER TO postgres; -- -- Name: TABLE clone_feature; Type: COMMENT; Schema: genomic; Owner: postgres -- COMMENT ON TABLE genomic.clone_feature IS 'linking table between genomic.clone and the chado feature table, showing which features in the feature table are the sequences of clones in the clone table'; -- -- Name: clone_feature_backup; Type: TABLE; Schema: genomic; Owner: postgres -- CREATE TABLE genomic.clone_feature_backup ( clone_feature_id integer, clone_id bigint, feature_id bigint ); ALTER TABLE genomic.clone_feature_backup OWNER TO postgres; -- -- Name: clone_feature_clone_feature_id_seq; Type: SEQUENCE; Schema: genomic; Owner: postgres -- CREATE SEQUENCE genomic.clone_feature_clone_feature_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE genomic.clone_feature_clone_feature_id_seq OWNER TO postgres; -- -- Name: clone_feature_clone_feature_id_seq; Type: SEQUENCE OWNED BY; Schema: genomic; Owner: postgres -- ALTER SEQUENCE genomic.clone_feature_clone_feature_id_seq OWNED BY genomic.clone_feature.clone_feature_id; -- -- Name: clone_type; Type: TABLE; Schema: genomic; Owner: postgres -- CREATE TABLE genomic.clone_type ( clone_type_id integer NOT NULL, name character varying(40), shortname character varying(12) ); ALTER TABLE genomic.clone_type OWNER TO postgres; -- -- Name: clone_type_clone_type_id_seq; Type: SEQUENCE; Schema: genomic; Owner: postgres -- CREATE SEQUENCE genomic.clone_type_clone_type_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE genomic.clone_type_clone_type_id_seq OWNER TO postgres; -- -- Name: clone_type_clone_type_id_seq; Type: SEQUENCE OWNED BY; Schema: genomic; Owner: postgres -- ALTER SEQUENCE genomic.clone_type_clone_type_id_seq OWNED BY genomic.clone_type.clone_type_id; -- -- Name: genbank_submission; Type: TABLE; Schema: genomic; Owner: postgres -- CREATE TABLE genomic.genbank_submission ( genbank_submission_id integer NOT NULL, date_generated timestamp without time zone, date_sent timestamp without time zone, submitted_by character varying(20), ncbi_reply_date timestamp without time zone ); ALTER TABLE genomic.genbank_submission OWNER TO postgres; -- -- Name: genbank_submission_genbank_submission_id_seq; Type: SEQUENCE; Schema: genomic; Owner: postgres -- CREATE SEQUENCE genomic.genbank_submission_genbank_submission_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE genomic.genbank_submission_genbank_submission_id_seq OWNER TO postgres; -- -- Name: genbank_submission_genbank_submission_id_seq; Type: SEQUENCE OWNED BY; Schema: genomic; Owner: postgres -- ALTER SEQUENCE genomic.genbank_submission_genbank_submission_id_seq OWNED BY genomic.genbank_submission.genbank_submission_id; -- -- Name: gss; Type: TABLE; Schema: genomic; Owner: postgres -- CREATE TABLE genomic.gss ( gss_id integer NOT NULL, chromat_id bigint, version smallint DEFAULT 1 NOT NULL, basecaller character varying(32), seq text, qual text, call_positions text, status integer, flags integer, date timestamp(6) without time zone DEFAULT ('now'::text)::timestamp(6) with time zone NOT NULL ); ALTER TABLE genomic.gss OWNER TO postgres; -- -- Name: gss_gss_id_seq; Type: SEQUENCE; Schema: genomic; Owner: postgres -- CREATE SEQUENCE genomic.gss_gss_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE genomic.gss_gss_id_seq OWNER TO postgres; -- -- Name: gss_gss_id_seq; Type: SEQUENCE OWNED BY; Schema: genomic; Owner: postgres -- ALTER SEQUENCE genomic.gss_gss_id_seq OWNED BY genomic.gss.gss_id; -- -- Name: gss_submitted_to_genbank; Type: TABLE; Schema: genomic; Owner: postgres -- CREATE TABLE genomic.gss_submitted_to_genbank ( gss_submitted_to_genbank_id integer NOT NULL, genbank_submission_id integer DEFAULT 0 NOT NULL, gss_id integer DEFAULT 0 NOT NULL, genbank_identifier character varying(80), genbank_dbgss_id bigint ); ALTER TABLE genomic.gss_submitted_to_genbank OWNER TO postgres; -- -- Name: gss_submitted_to_genbank_gss_submitted_to_genbank_id_seq; Type: SEQUENCE; Schema: genomic; Owner: postgres -- CREATE SEQUENCE genomic.gss_submitted_to_genbank_gss_submitted_to_genbank_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE genomic.gss_submitted_to_genbank_gss_submitted_to_genbank_id_seq OWNER TO postgres; -- -- Name: gss_submitted_to_genbank_gss_submitted_to_genbank_id_seq; Type: SEQUENCE OWNED BY; Schema: genomic; Owner: postgres -- ALTER SEQUENCE genomic.gss_submitted_to_genbank_gss_submitted_to_genbank_id_seq OWNED BY genomic.gss_submitted_to_genbank.gss_submitted_to_genbank_id; -- -- Name: library; Type: TABLE; Schema: genomic; Owner: postgres -- CREATE TABLE genomic.library ( library_id integer NOT NULL, clone_type_id bigint DEFAULT (0)::bigint NOT NULL, name character varying(80), shortname character varying(16) DEFAULT ''::character varying NOT NULL, accession_id bigint, subclone_of bigint, cloning_host character varying(80) DEFAULT 'E. coli'::character varying, rs1 character varying(12), rs2 character varying(12), vector_ligation_1 integer, vector_ligation_2 integer, vector character varying(80) NOT NULL, left_primer_id bigint, right_primer_id bigint, organism_id bigint ); ALTER TABLE genomic.library OWNER TO postgres; -- -- Name: library_annotation_db; Type: TABLE; Schema: genomic; Owner: postgres -- CREATE TABLE genomic.library_annotation_db ( library_annotation_db_id integer NOT NULL, library_id bigint DEFAULT (0)::bigint NOT NULL, blast_db_id bigint DEFAULT (0)::bigint NOT NULL, is_contaminant smallint DEFAULT (0)::smallint NOT NULL ); ALTER TABLE genomic.library_annotation_db OWNER TO postgres; -- -- Name: library_annotation_db_library_annotation_db_id_seq; Type: SEQUENCE; Schema: genomic; Owner: postgres -- CREATE SEQUENCE genomic.library_annotation_db_library_annotation_db_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE genomic.library_annotation_db_library_annotation_db_id_seq OWNER TO postgres; -- -- Name: library_annotation_db_library_annotation_db_id_seq; Type: SEQUENCE OWNED BY; Schema: genomic; Owner: postgres -- ALTER SEQUENCE genomic.library_annotation_db_library_annotation_db_id_seq OWNED BY genomic.library_annotation_db.library_annotation_db_id; -- -- Name: library_library_id_seq; Type: SEQUENCE; Schema: genomic; Owner: postgres -- CREATE SEQUENCE genomic.library_library_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE genomic.library_library_id_seq OWNER TO postgres; -- -- Name: library_library_id_seq; Type: SEQUENCE OWNED BY; Schema: genomic; Owner: postgres -- ALTER SEQUENCE genomic.library_library_id_seq OWNED BY genomic.library.library_id; -- -- Name: library_shortname_abbreviation; Type: TABLE; Schema: genomic; Owner: postgres -- CREATE TABLE genomic.library_shortname_abbreviation ( library_shortname_abbreviation_id integer NOT NULL, library_id integer, abbreviation character varying(10) ); ALTER TABLE genomic.library_shortname_abbreviation OWNER TO postgres; -- -- Name: TABLE library_shortname_abbreviation; Type: COMMENT; Schema: genomic; Owner: postgres -- COMMENT ON TABLE genomic.library_shortname_abbreviation IS 'stores known abbreviations for the shortnames of genomic libraries'; -- -- Name: library_shortname_abbreviatio_library_shortname_abbreviatio_seq; Type: SEQUENCE; Schema: genomic; Owner: postgres -- CREATE SEQUENCE genomic.library_shortname_abbreviatio_library_shortname_abbreviatio_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE genomic.library_shortname_abbreviatio_library_shortname_abbreviatio_seq OWNER TO postgres; -- -- Name: library_shortname_abbreviatio_library_shortname_abbreviatio_seq; Type: SEQUENCE OWNED BY; Schema: genomic; Owner: postgres -- ALTER SEQUENCE genomic.library_shortname_abbreviatio_library_shortname_abbreviatio_seq OWNED BY genomic.library_shortname_abbreviation.library_shortname_abbreviation_id; -- -- Name: qc_report; Type: TABLE; Schema: genomic; Owner: postgres -- CREATE TABLE genomic.qc_report ( qc_report_id integer NOT NULL, gss_id bigint DEFAULT (0)::bigint NOT NULL, vs_status smallint, qstart integer, qend integer, istart integer, iend integer, hqi_start integer, hqi_length integer, entropy real, expected_error real, qual_trim_threshold real, vector_tokens character varying(40) ); ALTER TABLE genomic.qc_report OWNER TO postgres; -- -- Name: qc_report_qc_report_id_seq; Type: SEQUENCE; Schema: genomic; Owner: postgres -- CREATE SEQUENCE genomic.qc_report_qc_report_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE genomic.qc_report_qc_report_id_seq OWNER TO postgres; -- -- Name: qc_report_qc_report_id_seq; Type: SEQUENCE OWNED BY; Schema: genomic; Owner: postgres -- ALTER SEQUENCE genomic.qc_report_qc_report_id_seq OWNED BY genomic.qc_report.qc_report_id; -- -- Name: query_source_type; Type: TABLE; Schema: genomic; Owner: postgres -- CREATE TABLE genomic.query_source_type ( query_source_type_id integer NOT NULL, name character varying(255), shortname character varying(15) ); ALTER TABLE genomic.query_source_type OWNER TO postgres; -- -- Name: query_source_type_query_source_type_id_seq; Type: SEQUENCE; Schema: genomic; Owner: postgres -- CREATE SEQUENCE genomic.query_source_type_query_source_type_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE genomic.query_source_type_query_source_type_id_seq OWNER TO postgres; -- -- Name: query_source_type_query_source_type_id_seq; Type: SEQUENCE OWNED BY; Schema: genomic; Owner: postgres -- ALTER SEQUENCE genomic.query_source_type_query_source_type_id_seq OWNED BY genomic.query_source_type.query_source_type_id; -- -- Name: read_class; Type: TABLE; Schema: genomic; Owner: postgres -- CREATE TABLE genomic.read_class ( read_class_id integer NOT NULL, class_name character varying(40) ); ALTER TABLE genomic.read_class OWNER TO postgres; -- -- Name: read_class_read_class_id_seq; Type: SEQUENCE; Schema: genomic; Owner: postgres -- CREATE SEQUENCE genomic.read_class_read_class_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE genomic.read_class_read_class_id_seq OWNER TO postgres; -- -- Name: read_class_read_class_id_seq; Type: SEQUENCE OWNED BY; Schema: genomic; Owner: postgres -- ALTER SEQUENCE genomic.read_class_read_class_id_seq OWNED BY genomic.read_class.read_class_id; -- -- Name: sequencing_primer; Type: TABLE; Schema: genomic; Owner: postgres -- CREATE TABLE genomic.sequencing_primer ( sequencing_primer_id integer NOT NULL, name character varying(20) NOT NULL ); ALTER TABLE genomic.sequencing_primer OWNER TO postgres; -- -- Name: sequencing_primer_sequencing_primer_id_seq; Type: SEQUENCE; Schema: genomic; Owner: postgres -- CREATE SEQUENCE genomic.sequencing_primer_sequencing_primer_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE genomic.sequencing_primer_sequencing_primer_id_seq OWNER TO postgres; -- -- Name: sequencing_primer_sequencing_primer_id_seq; Type: SEQUENCE OWNED BY; Schema: genomic; Owner: postgres -- ALTER SEQUENCE genomic.sequencing_primer_sequencing_primer_id_seq OWNED BY genomic.sequencing_primer.sequencing_primer_id; -- -- Name: ex_tag; Type: TABLE; Schema: insitu; Owner: postgres -- CREATE TABLE insitu.ex_tag ( experiment_id bigint DEFAULT (0)::bigint NOT NULL, tag_id bigint DEFAULT (0)::bigint NOT NULL ); ALTER TABLE insitu.ex_tag OWNER TO postgres; -- -- Name: experiment; Type: TABLE; Schema: insitu; Owner: postgres -- CREATE TABLE insitu.experiment ( experiment_id integer NOT NULL, name text, date date, is_organism_id bigint DEFAULT (0)::bigint NOT NULL, tissue text, stage text, probe_id bigint, description text, user_id bigint, obsolete boolean, type text ); ALTER TABLE insitu.experiment OWNER TO postgres; -- -- Name: experiment_experiment_id_seq; Type: SEQUENCE; Schema: insitu; Owner: postgres -- CREATE SEQUENCE insitu.experiment_experiment_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE insitu.experiment_experiment_id_seq OWNER TO postgres; -- -- Name: experiment_experiment_id_seq; Type: SEQUENCE OWNED BY; Schema: insitu; Owner: postgres -- ALTER SEQUENCE insitu.experiment_experiment_id_seq OWNED BY insitu.experiment.experiment_id; -- -- Name: experiment_image; Type: TABLE; Schema: insitu; Owner: postgres -- CREATE TABLE insitu.experiment_image ( experiment_image_id integer NOT NULL, image_id bigint, experiment_id bigint, obsolete boolean DEFAULT false, sp_person_id integer, create_date timestamp with time zone DEFAULT now(), modified_date timestamp with time zone ); ALTER TABLE insitu.experiment_image OWNER TO postgres; -- -- Name: experiment_image_experiment_image_id_seq; Type: SEQUENCE; Schema: insitu; Owner: postgres -- CREATE SEQUENCE insitu.experiment_image_experiment_image_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE insitu.experiment_image_experiment_image_id_seq OWNER TO postgres; -- -- Name: experiment_image_experiment_image_id_seq; Type: SEQUENCE OWNED BY; Schema: insitu; Owner: postgres -- ALTER SEQUENCE insitu.experiment_image_experiment_image_id_seq OWNED BY insitu.experiment_image.experiment_image_id; -- -- Name: experiment_tag; Type: TABLE; Schema: insitu; Owner: postgres -- CREATE TABLE insitu.experiment_tag ( experiment_tag_id integer NOT NULL, tag_id bigint, experiment_id bigint, sp_person_id bigint, modified_date timestamp with time zone, create_date timestamp with time zone, obsolete boolean DEFAULT false ); ALTER TABLE insitu.experiment_tag OWNER TO postgres; -- -- Name: experiment_tag_experiment_tag_id_seq; Type: SEQUENCE; Schema: insitu; Owner: postgres -- CREATE SEQUENCE insitu.experiment_tag_experiment_tag_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE insitu.experiment_tag_experiment_tag_id_seq OWNER TO postgres; -- -- Name: experiment_tag_experiment_tag_id_seq; Type: SEQUENCE OWNED BY; Schema: insitu; Owner: postgres -- ALTER SEQUENCE insitu.experiment_tag_experiment_tag_id_seq OWNED BY insitu.experiment_tag.experiment_tag_id; -- -- Name: image_tag; Type: TABLE; Schema: insitu; Owner: postgres -- CREATE TABLE insitu.image_tag ( image_id bigint DEFAULT (0)::bigint NOT NULL, tag_id bigint DEFAULT (0)::bigint NOT NULL ); ALTER TABLE insitu.image_tag OWNER TO postgres; -- -- Name: is_organism; Type: TABLE; Schema: insitu; Owner: postgres -- CREATE TABLE insitu.is_organism ( is_organism_id integer NOT NULL, name text NOT NULL, common_name text, description text, user_id bigint ); ALTER TABLE insitu.is_organism OWNER TO postgres; -- -- Name: is_organism_is_organism_id_seq; Type: SEQUENCE; Schema: insitu; Owner: postgres -- CREATE SEQUENCE insitu.is_organism_is_organism_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE insitu.is_organism_is_organism_id_seq OWNER TO postgres; -- -- Name: is_organism_is_organism_id_seq; Type: SEQUENCE OWNED BY; Schema: insitu; Owner: postgres -- ALTER SEQUENCE insitu.is_organism_is_organism_id_seq OWNED BY insitu.is_organism.is_organism_id; -- -- Name: probe; Type: TABLE; Schema: insitu; Owner: postgres -- CREATE TABLE insitu.probe ( probe_id bigint NOT NULL, name text NOT NULL, sequence text, clone text, link_desc text, link text, primer1 text, primer1_seq text, primer2 text, primer2_seq text, user_id bigint, obsolete boolean, dbxref_type_id bigint, antibody text, identifier text ); ALTER TABLE insitu.probe OWNER TO postgres; -- -- Name: probe_probe_id_seq; Type: SEQUENCE; Schema: insitu; Owner: postgres -- CREATE SEQUENCE insitu.probe_probe_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE insitu.probe_probe_id_seq OWNER TO postgres; -- -- Name: probe_probe_id_seq; Type: SEQUENCE OWNED BY; Schema: insitu; Owner: postgres -- ALTER SEQUENCE insitu.probe_probe_id_seq OWNED BY insitu.probe.probe_id; -- -- Name: tag; Type: TABLE; Schema: insitu; Owner: postgres -- CREATE TABLE insitu.tag ( tag_id bigint NOT NULL, name text, description text, user_id bigint ); ALTER TABLE insitu.tag OWNER TO postgres; -- -- Name: tag_implication; Type: TABLE; Schema: insitu; Owner: postgres -- CREATE TABLE insitu.tag_implication ( tag_id bigint, implied_id bigint DEFAULT (0)::bigint NOT NULL ); ALTER TABLE insitu.tag_implication OWNER TO postgres; -- -- Name: tag_tag_id_seq; Type: SEQUENCE; Schema: insitu; Owner: postgres -- CREATE SEQUENCE insitu.tag_tag_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE insitu.tag_tag_id_seq OWNER TO postgres; -- -- Name: tag_tag_id_seq; Type: SEQUENCE OWNED BY; Schema: insitu; Owner: postgres -- ALTER SEQUENCE insitu.tag_tag_id_seq OWNED BY insitu.tag.tag_id; -- -- Name: attribution; Type: TABLE; Schema: metadata; Owner: postgres -- CREATE TABLE metadata.attribution ( attribution_id bigint NOT NULL, database_name character varying(255), table_name character varying(255), primary_key_column_name character varying(255), row_id bigint ); ALTER TABLE metadata.attribution OWNER TO postgres; -- -- Name: attribution_attribution_id_seq; Type: SEQUENCE; Schema: metadata; Owner: postgres -- CREATE SEQUENCE metadata.attribution_attribution_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE metadata.attribution_attribution_id_seq OWNER TO postgres; -- -- Name: attribution_attribution_id_seq; Type: SEQUENCE OWNED BY; Schema: metadata; Owner: postgres -- ALTER SEQUENCE metadata.attribution_attribution_id_seq OWNED BY metadata.attribution.attribution_id; -- -- Name: attribution_to; Type: TABLE; Schema: metadata; Owner: postgres -- CREATE TABLE metadata.attribution_to ( attribution_to_id bigint NOT NULL, attribution_id bigint, person_id bigint, organization_id bigint, project_id bigint, role_id bigint ); ALTER TABLE metadata.attribution_to OWNER TO postgres; -- -- Name: attribution_to_attribution_to_id_seq; Type: SEQUENCE; Schema: metadata; Owner: postgres -- CREATE SEQUENCE metadata.attribution_to_attribution_to_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE metadata.attribution_to_attribution_to_id_seq OWNER TO postgres; -- -- Name: attribution_to_attribution_to_id_seq; Type: SEQUENCE OWNED BY; Schema: metadata; Owner: postgres -- ALTER SEQUENCE metadata.attribution_to_attribution_to_id_seq OWNED BY metadata.attribution_to.attribution_to_id; -- -- Name: comments; Type: TABLE; Schema: metadata; Owner: postgres -- CREATE TABLE metadata.comments ( comment_id bigint NOT NULL, attribution_id bigint, comment_text character varying(255) ); ALTER TABLE metadata.comments OWNER TO postgres; -- -- Name: comments_comment_id_seq; Type: SEQUENCE; Schema: metadata; Owner: postgres -- CREATE SEQUENCE metadata.comments_comment_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE metadata.comments_comment_id_seq OWNER TO postgres; -- -- Name: comments_comment_id_seq; Type: SEQUENCE OWNED BY; Schema: metadata; Owner: postgres -- ALTER SEQUENCE metadata.comments_comment_id_seq OWNED BY metadata.comments.comment_id; -- -- Name: md_dbipath; Type: TABLE; Schema: metadata; Owner: postgres -- CREATE TABLE metadata.md_dbipath ( dbipath_id integer NOT NULL, column_name text, table_name text, schema_name text, metadata_id bigint ); ALTER TABLE metadata.md_dbipath OWNER TO postgres; -- -- Name: TABLE md_dbipath; Type: COMMENT; Schema: metadata; Owner: postgres -- COMMENT ON TABLE metadata.md_dbipath IS 'md_dbipath is a table that store the path to access to any internal data in the database as a combination of schema_name.table_name.column_name. See md_dbiref for more details about internal references.'; -- -- Name: md_dbipath_dbipath_id_seq; Type: SEQUENCE; Schema: metadata; Owner: postgres -- CREATE SEQUENCE metadata.md_dbipath_dbipath_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE metadata.md_dbipath_dbipath_id_seq OWNER TO postgres; -- -- Name: md_dbipath_dbipath_id_seq; Type: SEQUENCE OWNED BY; Schema: metadata; Owner: postgres -- ALTER SEQUENCE metadata.md_dbipath_dbipath_id_seq OWNED BY metadata.md_dbipath.dbipath_id; -- -- Name: md_dbiref; Type: TABLE; Schema: metadata; Owner: postgres -- CREATE TABLE metadata.md_dbiref ( dbiref_id bigint NOT NULL, iref_accession text, dbipath_id integer, metadata_id bigint ); ALTER TABLE metadata.md_dbiref OWNER TO postgres; -- -- Name: TABLE md_dbiref; Type: COMMENT; Schema: metadata; Owner: postgres -- COMMENT ON TABLE metadata.md_dbiref IS 'md_dbiref is a table that store internal database references. An internal database reference (dbiref) is an unique combination of schema_name + table_name + column_name (from md_dbipath table) and iref_accession that let access to any data in the database. The internal accession refered must be unique.'; -- -- Name: md_dbiref_dbiref_id_seq; Type: SEQUENCE; Schema: metadata; Owner: postgres -- CREATE SEQUENCE metadata.md_dbiref_dbiref_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE metadata.md_dbiref_dbiref_id_seq OWNER TO postgres; -- -- Name: md_dbiref_dbiref_id_seq; Type: SEQUENCE OWNED BY; Schema: metadata; Owner: postgres -- ALTER SEQUENCE metadata.md_dbiref_dbiref_id_seq OWNED BY metadata.md_dbiref.dbiref_id; -- -- Name: md_dbversion; Type: TABLE; Schema: metadata; Owner: postgres -- CREATE TABLE metadata.md_dbversion ( dbversion_id integer NOT NULL, patch_name text, patch_description text, metadata_id bigint ); ALTER TABLE metadata.md_dbversion OWNER TO postgres; -- -- Name: TABLE md_dbversion; Type: COMMENT; Schema: metadata; Owner: postgres -- COMMENT ON TABLE metadata.md_dbversion IS 'md_dbversion is a table that store the names of the patches that have been executed over the database.'; -- -- Name: md_dbversion_dbversion_id_seq; Type: SEQUENCE; Schema: metadata; Owner: postgres -- CREATE SEQUENCE metadata.md_dbversion_dbversion_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE metadata.md_dbversion_dbversion_id_seq OWNER TO postgres; -- -- Name: md_dbversion_dbversion_id_seq; Type: SEQUENCE OWNED BY; Schema: metadata; Owner: postgres -- ALTER SEQUENCE metadata.md_dbversion_dbversion_id_seq OWNED BY metadata.md_dbversion.dbversion_id; -- -- Name: md_files; Type: TABLE; Schema: metadata; Owner: postgres -- CREATE TABLE metadata.md_files ( file_id integer NOT NULL, basename text, dirname text, filetype character varying(250), alt_filename text, comment text, md5checksum text, metadata_id bigint, urlsource text, urlsource_md5checksum text ); ALTER TABLE metadata.md_files OWNER TO postgres; -- -- Name: TABLE md_files; Type: COMMENT; Schema: metadata; Owner: postgres -- COMMENT ON TABLE metadata.md_files IS 'md_files is a table that store the location and the name of any file. The location (dirname) should be relative and not absolute (example core/sgn/images and not /data/local/cxgn/core/sgn/images).'; -- -- Name: md_files_file_id_seq; Type: SEQUENCE; Schema: metadata; Owner: postgres -- CREATE SEQUENCE metadata.md_files_file_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE metadata.md_files_file_id_seq OWNER TO postgres; -- -- Name: md_files_file_id_seq; Type: SEQUENCE OWNED BY; Schema: metadata; Owner: postgres -- ALTER SEQUENCE metadata.md_files_file_id_seq OWNED BY metadata.md_files.file_id; -- -- Name: md_groupmembers; Type: TABLE; Schema: metadata; Owner: postgres -- CREATE TABLE metadata.md_groupmembers ( groupmember_id bigint NOT NULL, group_id integer, dbiref_id bigint, metadata_id bigint ); ALTER TABLE metadata.md_groupmembers OWNER TO postgres; -- -- Name: TABLE md_groupmembers; Type: COMMENT; Schema: metadata; Owner: postgres -- COMMENT ON TABLE metadata.md_groupmembers IS 'md_groupmembers is a table that store the relations between a group and the members that compound this group as dbiref (see md_dbiref and md_groups comments).'; -- -- Name: md_groupmembers_groupmember_id_seq; Type: SEQUENCE; Schema: metadata; Owner: postgres -- CREATE SEQUENCE metadata.md_groupmembers_groupmember_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE metadata.md_groupmembers_groupmember_id_seq OWNER TO postgres; -- -- Name: md_groupmembers_groupmember_id_seq; Type: SEQUENCE OWNED BY; Schema: metadata; Owner: postgres -- ALTER SEQUENCE metadata.md_groupmembers_groupmember_id_seq OWNED BY metadata.md_groupmembers.groupmember_id; -- -- Name: md_groups; Type: TABLE; Schema: metadata; Owner: postgres -- CREATE TABLE metadata.md_groups ( group_id bigint NOT NULL, group_name character varying(250), group_type character varying(250), group_description text, metadata_id bigint ); ALTER TABLE metadata.md_groups OWNER TO postgres; -- -- Name: TABLE md_groups; Type: COMMENT; Schema: metadata; Owner: postgres -- COMMENT ON TABLE metadata.md_groups IS 'md_groups is a table that store data about a group identity and a group type of a group of data. These groups are composed by dbirefs (see md_dbiref comment), so can be groups of any data in the database (from sample_id to organism_names).'; -- -- Name: md_groups_group_id_seq; Type: SEQUENCE; Schema: metadata; Owner: postgres -- CREATE SEQUENCE metadata.md_groups_group_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE metadata.md_groups_group_id_seq OWNER TO postgres; -- -- Name: md_groups_group_id_seq; Type: SEQUENCE OWNED BY; Schema: metadata; Owner: postgres -- ALTER SEQUENCE metadata.md_groups_group_id_seq OWNED BY metadata.md_groups.group_id; -- -- Name: md_image; Type: TABLE; Schema: metadata; Owner: postgres -- CREATE TABLE metadata.md_image ( image_id integer NOT NULL, name character varying(100), description text, original_filename character varying(100), file_ext character varying(20), sp_person_id bigint, modified_date timestamp with time zone DEFAULT now(), create_date timestamp with time zone DEFAULT now(), obsolete boolean DEFAULT false, md5sum text ); ALTER TABLE metadata.md_image OWNER TO postgres; -- -- Name: md_image_cvterm; Type: TABLE; Schema: metadata; Owner: postgres -- CREATE TABLE metadata.md_image_cvterm ( md_image_cvterm_id integer NOT NULL, image_id bigint NOT NULL, cvterm_id bigint NOT NULL, sp_person_id bigint, obsolete boolean DEFAULT false ); ALTER TABLE metadata.md_image_cvterm OWNER TO postgres; -- -- Name: md_image_cvterm_md_image_cvterm_id_seq; Type: SEQUENCE; Schema: metadata; Owner: postgres -- CREATE SEQUENCE metadata.md_image_cvterm_md_image_cvterm_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE metadata.md_image_cvterm_md_image_cvterm_id_seq OWNER TO postgres; -- -- Name: md_image_cvterm_md_image_cvterm_id_seq; Type: SEQUENCE OWNED BY; Schema: metadata; Owner: postgres -- ALTER SEQUENCE metadata.md_image_cvterm_md_image_cvterm_id_seq OWNED BY metadata.md_image_cvterm.md_image_cvterm_id; -- -- Name: md_image_image_id_seq; Type: SEQUENCE; Schema: metadata; Owner: postgres -- CREATE SEQUENCE metadata.md_image_image_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE metadata.md_image_image_id_seq OWNER TO postgres; -- -- Name: md_image_image_id_seq; Type: SEQUENCE OWNED BY; Schema: metadata; Owner: postgres -- ALTER SEQUENCE metadata.md_image_image_id_seq OWNED BY metadata.md_image.image_id; -- -- Name: md_image_organism; Type: TABLE; Schema: metadata; Owner: postgres -- CREATE TABLE metadata.md_image_organism ( md_image_organism_id integer NOT NULL, image_id bigint NOT NULL, organism_id bigint NOT NULL, sp_person_id bigint, obsolete boolean DEFAULT false ); ALTER TABLE metadata.md_image_organism OWNER TO postgres; -- -- Name: md_image_organism_md_image_organism_id_seq; Type: SEQUENCE; Schema: metadata; Owner: postgres -- CREATE SEQUENCE metadata.md_image_organism_md_image_organism_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE metadata.md_image_organism_md_image_organism_id_seq OWNER TO postgres; -- -- Name: md_image_organism_md_image_organism_id_seq; Type: SEQUENCE OWNED BY; Schema: metadata; Owner: postgres -- ALTER SEQUENCE metadata.md_image_organism_md_image_organism_id_seq OWNED BY metadata.md_image_organism.md_image_organism_id; -- -- Name: md_json; Type: TABLE; Schema: metadata; Owner: postgres -- CREATE TABLE metadata.md_json ( json_id integer NOT NULL, json_type character varying(250), json jsonb ); ALTER TABLE metadata.md_json OWNER TO postgres; -- -- Name: TABLE md_json; Type: COMMENT; Schema: metadata; Owner: postgres -- COMMENT ON TABLE metadata.md_json IS 'md_json is a table for storing variable json datasets and linking them to related data in other tables. For example storing nirs spectra (wavelength:value pairs) and linking to the relevant nd_experiment which in turn links to the plot and derived phenotype values.'; -- -- Name: md_json_json_id_seq; Type: SEQUENCE; Schema: metadata; Owner: postgres -- CREATE SEQUENCE metadata.md_json_json_id_seq AS integer START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE metadata.md_json_json_id_seq OWNER TO postgres; -- -- Name: md_json_json_id_seq; Type: SEQUENCE OWNED BY; Schema: metadata; Owner: postgres -- ALTER SEQUENCE metadata.md_json_json_id_seq OWNED BY metadata.md_json.json_id; -- -- Name: md_metadata; Type: TABLE; Schema: metadata; Owner: postgres -- CREATE TABLE metadata.md_metadata ( metadata_id bigint NOT NULL, create_date timestamp with time zone DEFAULT now(), create_person_id integer NOT NULL, modified_date timestamp with time zone, modified_person_id integer, modification_note text, previous_metadata_id integer, obsolete integer DEFAULT 0, obsolete_note text, permission_id integer ); ALTER TABLE metadata.md_metadata OWNER TO postgres; -- -- Name: TABLE md_metadata; Type: COMMENT; Schema: metadata; Owner: postgres -- COMMENT ON TABLE metadata.md_metadata IS 'md_metadata is a table that store data about who and when insert or modify some data in the database. Also it can support obsolete features. It can not support permission features yet.'; -- -- Name: md_metadata_metadata_id_seq; Type: SEQUENCE; Schema: metadata; Owner: postgres -- CREATE SEQUENCE metadata.md_metadata_metadata_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE metadata.md_metadata_metadata_id_seq OWNER TO postgres; -- -- Name: md_metadata_metadata_id_seq; Type: SEQUENCE OWNED BY; Schema: metadata; Owner: postgres -- ALTER SEQUENCE metadata.md_metadata_metadata_id_seq OWNED BY metadata.md_metadata.metadata_id; -- -- Name: md_tag; Type: TABLE; Schema: metadata; Owner: postgres -- CREATE TABLE metadata.md_tag ( tag_id integer NOT NULL, name character varying(256), description text, sp_person_id bigint, modified_date timestamp with time zone DEFAULT now(), create_date timestamp with time zone DEFAULT now(), obsolete boolean DEFAULT false ); ALTER TABLE metadata.md_tag OWNER TO postgres; -- -- Name: md_tag_image; Type: TABLE; Schema: metadata; Owner: postgres -- CREATE TABLE metadata.md_tag_image ( tag_image_id integer NOT NULL, image_id bigint, tag_id bigint, obsolete boolean DEFAULT false, sp_person_id integer, create_date timestamp with time zone DEFAULT now(), modified_date timestamp with time zone DEFAULT now() ); ALTER TABLE metadata.md_tag_image OWNER TO postgres; -- -- Name: md_tag_image_tag_image_id_seq; Type: SEQUENCE; Schema: metadata; Owner: postgres -- CREATE SEQUENCE metadata.md_tag_image_tag_image_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE metadata.md_tag_image_tag_image_id_seq OWNER TO postgres; -- -- Name: md_tag_image_tag_image_id_seq; Type: SEQUENCE OWNED BY; Schema: metadata; Owner: postgres -- ALTER SEQUENCE metadata.md_tag_image_tag_image_id_seq OWNED BY metadata.md_tag_image.tag_image_id; -- -- Name: md_tag_tag_id_seq; Type: SEQUENCE; Schema: metadata; Owner: postgres -- CREATE SEQUENCE metadata.md_tag_tag_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE metadata.md_tag_tag_id_seq OWNER TO postgres; -- -- Name: md_tag_tag_id_seq; Type: SEQUENCE OWNED BY; Schema: metadata; Owner: postgres -- ALTER SEQUENCE metadata.md_tag_tag_id_seq OWNED BY metadata.md_tag.tag_id; -- -- Name: roles; Type: TABLE; Schema: metadata; Owner: postgres -- CREATE TABLE metadata.roles ( role_id bigint NOT NULL, role_name character varying(255), role_description character varying(255) ); ALTER TABLE metadata.roles OWNER TO postgres; -- -- Name: roles_role_id_seq; Type: SEQUENCE; Schema: metadata; Owner: postgres -- CREATE SEQUENCE metadata.roles_role_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE metadata.roles_role_id_seq OWNER TO postgres; -- -- Name: roles_role_id_seq; Type: SEQUENCE OWNED BY; Schema: metadata; Owner: postgres -- ALTER SEQUENCE metadata.roles_role_id_seq OWNED BY metadata.roles.role_id; -- -- Name: data_points; Type: TABLE; Schema: pheno_population; Owner: postgres -- CREATE TABLE pheno_population.data_points ( dp_id integer NOT NULL, sample_id bigint DEFAULT (0)::bigint NOT NULL, prop_id bigint DEFAULT (0)::bigint NOT NULL, source_id bigint, image_id bigint, value character varying(128) ); ALTER TABLE pheno_population.data_points OWNER TO postgres; -- -- Name: data_points_dp_id_seq; Type: SEQUENCE; Schema: pheno_population; Owner: postgres -- CREATE SEQUENCE pheno_population.data_points_dp_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE pheno_population.data_points_dp_id_seq OWNER TO postgres; -- -- Name: data_points_dp_id_seq; Type: SEQUENCE OWNED BY; Schema: pheno_population; Owner: postgres -- ALTER SEQUENCE pheno_population.data_points_dp_id_seq OWNED BY pheno_population.data_points.dp_id; -- -- Name: genotypes; Type: TABLE; Schema: pheno_population; Owner: postgres -- CREATE TABLE pheno_population.genotypes ( gen_id integer NOT NULL, gen_name character varying(32), pop_id bigint, annotation character varying(128) ); ALTER TABLE pheno_population.genotypes OWNER TO postgres; -- -- Name: genotypes_gen_id_seq; Type: SEQUENCE; Schema: pheno_population; Owner: postgres -- CREATE SEQUENCE pheno_population.genotypes_gen_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE pheno_population.genotypes_gen_id_seq OWNER TO postgres; -- -- Name: genotypes_gen_id_seq; Type: SEQUENCE OWNED BY; Schema: pheno_population; Owner: postgres -- ALTER SEQUENCE pheno_population.genotypes_gen_id_seq OWNED BY pheno_population.genotypes.gen_id; -- -- Name: images; Type: TABLE; Schema: pheno_population; Owner: postgres -- CREATE TABLE pheno_population.images ( image_id integer NOT NULL, filepath character varying(128), sample_id bigint, source_id bigint, annotation character varying(128) ); ALTER TABLE pheno_population.images OWNER TO postgres; -- -- Name: images_image_id_seq; Type: SEQUENCE; Schema: pheno_population; Owner: postgres -- CREATE SEQUENCE pheno_population.images_image_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE pheno_population.images_image_id_seq OWNER TO postgres; -- -- Name: images_image_id_seq; Type: SEQUENCE OWNED BY; Schema: pheno_population; Owner: postgres -- ALTER SEQUENCE pheno_population.images_image_id_seq OWNED BY pheno_population.images.image_id; -- -- Name: locations; Type: TABLE; Schema: pheno_population; Owner: postgres -- CREATE TABLE pheno_population.locations ( loc_id integer NOT NULL, institution character varying(32), environment character varying(32), year bigint, annotation character varying(128) ); ALTER TABLE pheno_population.locations OWNER TO postgres; -- -- Name: locations_loc_id_seq; Type: SEQUENCE; Schema: pheno_population; Owner: postgres -- CREATE SEQUENCE pheno_population.locations_loc_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE pheno_population.locations_loc_id_seq OWNER TO postgres; -- -- Name: locations_loc_id_seq; Type: SEQUENCE OWNED BY; Schema: pheno_population; Owner: postgres -- ALTER SEQUENCE pheno_population.locations_loc_id_seq OWNED BY pheno_population.locations.loc_id; -- -- Name: organs; Type: TABLE; Schema: pheno_population; Owner: postgres -- CREATE TABLE pheno_population.organs ( organ_id integer NOT NULL, organ_name character varying(32) DEFAULT ''::character varying NOT NULL ); ALTER TABLE pheno_population.organs OWNER TO postgres; -- -- Name: organs_organ_id_seq; Type: SEQUENCE; Schema: pheno_population; Owner: postgres -- CREATE SEQUENCE pheno_population.organs_organ_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE pheno_population.organs_organ_id_seq OWNER TO postgres; -- -- Name: organs_organ_id_seq; Type: SEQUENCE OWNED BY; Schema: pheno_population; Owner: postgres -- ALTER SEQUENCE pheno_population.organs_organ_id_seq OWNED BY pheno_population.organs.organ_id; -- -- Name: plants; Type: TABLE; Schema: pheno_population; Owner: postgres -- CREATE TABLE pheno_population.plants ( plant_id integer NOT NULL, plant_name character varying(32), gen_id bigint, loc_id bigint ); ALTER TABLE pheno_population.plants OWNER TO postgres; -- -- Name: plants_plant_id_seq; Type: SEQUENCE; Schema: pheno_population; Owner: postgres -- CREATE SEQUENCE pheno_population.plants_plant_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE pheno_population.plants_plant_id_seq OWNER TO postgres; -- -- Name: plants_plant_id_seq; Type: SEQUENCE OWNED BY; Schema: pheno_population; Owner: postgres -- ALTER SEQUENCE pheno_population.plants_plant_id_seq OWNED BY pheno_population.plants.plant_id; -- -- Name: populations; Type: TABLE; Schema: pheno_population; Owner: postgres -- CREATE TABLE pheno_population.populations ( pop_id integer NOT NULL, pedigree character varying(32), annotation character varying(128) ); ALTER TABLE pheno_population.populations OWNER TO postgres; -- -- Name: populations_pop_id_seq; Type: SEQUENCE; Schema: pheno_population; Owner: postgres -- CREATE SEQUENCE pheno_population.populations_pop_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE pheno_population.populations_pop_id_seq OWNER TO postgres; -- -- Name: populations_pop_id_seq; Type: SEQUENCE OWNED BY; Schema: pheno_population; Owner: postgres -- ALTER SEQUENCE pheno_population.populations_pop_id_seq OWNED BY pheno_population.populations.pop_id; -- -- Name: properties; Type: TABLE; Schema: pheno_population; Owner: postgres -- CREATE TABLE pheno_population.properties ( prop_id integer NOT NULL, prop_name character varying(64) DEFAULT ''::character varying NOT NULL, organ_id bigint DEFAULT (0)::bigint NOT NULL, unit_name character varying(16) DEFAULT ''::character varying NOT NULL, unit_precision bigint DEFAULT (0)::bigint NOT NULL, annotation character varying(200) ); ALTER TABLE pheno_population.properties OWNER TO postgres; -- -- Name: properties_prop_id_seq; Type: SEQUENCE; Schema: pheno_population; Owner: postgres -- CREATE SEQUENCE pheno_population.properties_prop_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE pheno_population.properties_prop_id_seq OWNER TO postgres; -- -- Name: properties_prop_id_seq; Type: SEQUENCE OWNED BY; Schema: pheno_population; Owner: postgres -- ALTER SEQUENCE pheno_population.properties_prop_id_seq OWNED BY pheno_population.properties.prop_id; -- -- Name: samples; Type: TABLE; Schema: pheno_population; Owner: postgres -- CREATE TABLE pheno_population.samples ( sample_id integer NOT NULL, sample_name character varying(32), sample_group character varying(32), organ_id bigint DEFAULT (0)::bigint NOT NULL, plant_id bigint DEFAULT (0)::bigint NOT NULL, annotation character varying(128) ); ALTER TABLE pheno_population.samples OWNER TO postgres; -- -- Name: samples_sample_id_seq; Type: SEQUENCE; Schema: pheno_population; Owner: postgres -- CREATE SEQUENCE pheno_population.samples_sample_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE pheno_population.samples_sample_id_seq OWNER TO postgres; -- -- Name: samples_sample_id_seq; Type: SEQUENCE OWNED BY; Schema: pheno_population; Owner: postgres -- ALTER SEQUENCE pheno_population.samples_sample_id_seq OWNED BY pheno_population.samples.sample_id; -- -- Name: sources; Type: TABLE; Schema: pheno_population; Owner: postgres -- CREATE TABLE pheno_population.sources ( source_id integer NOT NULL, author character varying(32), location character varying(32), source_date character varying(32) ); ALTER TABLE pheno_population.sources OWNER TO postgres; -- -- Name: sources_source_id_seq; Type: SEQUENCE; Schema: pheno_population; Owner: postgres -- CREATE SEQUENCE pheno_population.sources_source_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE pheno_population.sources_source_id_seq OWNER TO postgres; -- -- Name: sources_source_id_seq; Type: SEQUENCE OWNED BY; Schema: pheno_population; Owner: postgres -- ALTER SEQUENCE pheno_population.sources_source_id_seq OWNED BY pheno_population.sources.source_id; -- -- Name: allele; Type: TABLE; Schema: phenome; Owner: postgres -- CREATE TABLE phenome.allele ( allele_id integer NOT NULL, locus_id integer, allele_symbol character varying(32), allele_name character varying(255), mode_of_inheritance character varying(18), allele_synonym character varying(255)[], allele_phenotype text, allele_notes text, obsolete boolean DEFAULT false, sp_person_id integer, create_date timestamp with time zone DEFAULT now(), modified_date timestamp with time zone, updated_by integer, is_default boolean DEFAULT true, sequence text, CONSTRAINT chk_allele_mode_of_inheritance CHECK ((((mode_of_inheritance)::text = 'recessive'::text) OR ((mode_of_inheritance)::text = 'partially dominant'::text) OR ((mode_of_inheritance)::text = 'dominant'::text) OR ((mode_of_inheritance)::text = ''::text))) ); ALTER TABLE phenome.allele OWNER TO postgres; -- -- Name: allele_alias; Type: TABLE; Schema: phenome; Owner: postgres -- CREATE TABLE phenome.allele_alias ( allele_alias_id integer NOT NULL, alias text NOT NULL, allele_id integer NOT NULL, preferred boolean, obsolete boolean DEFAULT false, sp_person_id integer, create_date timestamp with time zone DEFAULT now(), modified_date timestamp with time zone ); ALTER TABLE phenome.allele_alias OWNER TO postgres; -- -- Name: allele_alias_allele_alias_id_seq; Type: SEQUENCE; Schema: phenome; Owner: postgres -- CREATE SEQUENCE phenome.allele_alias_allele_alias_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE phenome.allele_alias_allele_alias_id_seq OWNER TO postgres; -- -- Name: allele_alias_allele_alias_id_seq; Type: SEQUENCE OWNED BY; Schema: phenome; Owner: postgres -- ALTER SEQUENCE phenome.allele_alias_allele_alias_id_seq OWNED BY phenome.allele_alias.allele_alias_id; -- -- Name: allele_allele_id_seq; Type: SEQUENCE; Schema: phenome; Owner: postgres -- CREATE SEQUENCE phenome.allele_allele_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE phenome.allele_allele_id_seq OWNER TO postgres; -- -- Name: allele_allele_id_seq; Type: SEQUENCE OWNED BY; Schema: phenome; Owner: postgres -- ALTER SEQUENCE phenome.allele_allele_id_seq OWNED BY phenome.allele.allele_id; -- -- Name: allele_dbxref; Type: TABLE; Schema: phenome; Owner: postgres -- CREATE TABLE phenome.allele_dbxref ( allele_dbxref_id integer NOT NULL, allele_id integer NOT NULL, dbxref_id integer NOT NULL, obsolete boolean DEFAULT false, sp_person_id integer, create_date timestamp with time zone DEFAULT now(), modified_date timestamp with time zone ); ALTER TABLE phenome.allele_dbxref OWNER TO postgres; -- -- Name: allele_dbxref_allele_dbxref_id_seq; Type: SEQUENCE; Schema: phenome; Owner: postgres -- CREATE SEQUENCE phenome.allele_dbxref_allele_dbxref_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE phenome.allele_dbxref_allele_dbxref_id_seq OWNER TO postgres; -- -- Name: allele_dbxref_allele_dbxref_id_seq; Type: SEQUENCE OWNED BY; Schema: phenome; Owner: postgres -- ALTER SEQUENCE phenome.allele_dbxref_allele_dbxref_id_seq OWNED BY phenome.allele_dbxref.allele_dbxref_id; -- -- Name: allele_history; Type: TABLE; Schema: phenome; Owner: postgres -- CREATE TABLE phenome.allele_history ( allele_history_id integer NOT NULL, allele_id integer NOT NULL, locus_id integer NOT NULL, allele_symbol character varying(32), allele_name character varying(32), mode_of_inheritance character varying(18), allele_phenotype text, sp_person_id integer, updated_by integer, obsolete boolean DEFAULT false, create_date timestamp with time zone DEFAULT now(), sequence text, CONSTRAINT allele_history_mode_of_inheritance_check CHECK ((((mode_of_inheritance)::text = 'dominant'::text) OR ((mode_of_inheritance)::text = 'partially dominant'::text) OR ((mode_of_inheritance)::text = 'recessive'::text) OR ((mode_of_inheritance)::text = ''::text))) ); ALTER TABLE phenome.allele_history OWNER TO postgres; -- -- Name: allele_history_allele_history_id_seq; Type: SEQUENCE; Schema: phenome; Owner: postgres -- CREATE SEQUENCE phenome.allele_history_allele_history_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE phenome.allele_history_allele_history_id_seq OWNER TO postgres; -- -- Name: allele_history_allele_history_id_seq; Type: SEQUENCE OWNED BY; Schema: phenome; Owner: postgres -- ALTER SEQUENCE phenome.allele_history_allele_history_id_seq OWNED BY phenome.allele_history.allele_history_id; -- -- Name: cross_type; Type: TABLE; Schema: phenome; Owner: postgres -- CREATE TABLE phenome.cross_type ( cross_type_id integer NOT NULL, cross_type character varying NOT NULL ); ALTER TABLE phenome.cross_type OWNER TO postgres; -- -- Name: cross_type_cross_type_id_seq; Type: SEQUENCE; Schema: phenome; Owner: postgres -- CREATE SEQUENCE phenome.cross_type_cross_type_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE phenome.cross_type_cross_type_id_seq OWNER TO postgres; -- -- Name: cross_type_cross_type_id_seq; Type: SEQUENCE OWNED BY; Schema: phenome; Owner: postgres -- ALTER SEQUENCE phenome.cross_type_cross_type_id_seq OWNED BY phenome.cross_type.cross_type_id; -- -- Name: cvterm_pub_ranking; Type: TABLE; Schema: phenome; Owner: postgres -- CREATE TABLE phenome.cvterm_pub_ranking ( cvterm_id integer, pub_id integer, rank real, match_type text, headline text ); ALTER TABLE phenome.cvterm_pub_ranking OWNER TO postgres; -- -- Name: dbxref_type; Type: TABLE; Schema: phenome; Owner: postgres -- CREATE TABLE phenome.dbxref_type ( dbxref_type_id integer NOT NULL, dbxref_type_name character varying(32), dbxref_type_definition character varying(255), dbxref_type_url character varying(255) ); ALTER TABLE phenome.dbxref_type OWNER TO postgres; -- -- Name: dbxref_type_dbxref_type_id_seq; Type: SEQUENCE; Schema: phenome; Owner: postgres -- CREATE SEQUENCE phenome.dbxref_type_dbxref_type_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE phenome.dbxref_type_dbxref_type_id_seq OWNER TO postgres; -- -- Name: dbxref_type_dbxref_type_id_seq; Type: SEQUENCE OWNED BY; Schema: phenome; Owner: postgres -- ALTER SEQUENCE phenome.dbxref_type_dbxref_type_id_seq OWNED BY phenome.dbxref_type.dbxref_type_id; -- -- Name: genotype_experiment; Type: TABLE; Schema: phenome; Owner: postgres -- CREATE TABLE phenome.genotype_experiment ( genotype_experiment_id integer NOT NULL, experiment_name character varying(100), reference_map_id bigint, background_accession_id bigint, preferred boolean, sp_person_id bigint, modified_date timestamp with time zone, create_date timestamp with time zone, obsolete boolean DEFAULT false ); ALTER TABLE phenome.genotype_experiment OWNER TO postgres; -- -- Name: genotype_experiment_genotype_experiment_id_seq; Type: SEQUENCE; Schema: phenome; Owner: postgres -- CREATE SEQUENCE phenome.genotype_experiment_genotype_experiment_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE phenome.genotype_experiment_genotype_experiment_id_seq OWNER TO postgres; -- -- Name: genotype_experiment_genotype_experiment_id_seq; Type: SEQUENCE OWNED BY; Schema: phenome; Owner: postgres -- ALTER SEQUENCE phenome.genotype_experiment_genotype_experiment_id_seq OWNED BY phenome.genotype_experiment.genotype_experiment_id; -- -- Name: phenome_genotype; Type: TABLE; Schema: phenome; Owner: postgres -- CREATE TABLE phenome.phenome_genotype ( phenome_genotype_id integer NOT NULL, individual_id bigint, experiment_name character varying(100), reference_map_id bigint, background_accession_id bigint, preferred boolean, sp_person_id bigint, modified_date timestamp with time zone, create_date timestamp with time zone, obsolete boolean DEFAULT false, genotype_experiment_id bigint, stock_id integer ); ALTER TABLE phenome.phenome_genotype OWNER TO postgres; -- -- Name: genotype_genotype_id_seq; Type: SEQUENCE; Schema: phenome; Owner: postgres -- CREATE SEQUENCE phenome.genotype_genotype_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE phenome.genotype_genotype_id_seq OWNER TO postgres; -- -- Name: genotype_genotype_id_seq; Type: SEQUENCE OWNED BY; Schema: phenome; Owner: postgres -- ALTER SEQUENCE phenome.genotype_genotype_id_seq OWNED BY phenome.phenome_genotype.phenome_genotype_id; -- -- Name: genotype_region; Type: TABLE; Schema: phenome; Owner: postgres -- CREATE TABLE phenome.genotype_region ( genotype_region_id integer NOT NULL, phenome_genotype_id integer, marker_id_nn bigint, marker_id_ns bigint NOT NULL, marker_id_sn bigint NOT NULL, marker_id_ss bigint, zygocity_code character varying(1), lg_id integer, type character varying(32) NOT NULL, name character varying(32), sp_person_id integer, modified_date timestamp with time zone DEFAULT now() NOT NULL, create_date timestamp with time zone DEFAULT now() NOT NULL, obsolete boolean DEFAULT false NOT NULL, CONSTRAINT genotype_region_type_check CHECK ((((type)::text = 'bin'::text) OR ((type)::text = 'map'::text) OR ((type)::text = 'inbred'::text))), CONSTRAINT genotype_region_zygocity_code_check CHECK ((((zygocity_code)::text = 'a'::text) OR ((zygocity_code)::text = 'b'::text) OR ((zygocity_code)::text = 'c'::text) OR ((zygocity_code)::text = 'd'::text) OR ((zygocity_code)::text = 'h'::text))) ); ALTER TABLE phenome.genotype_region OWNER TO postgres; -- -- Name: TABLE genotype_region; Type: COMMENT; Schema: phenome; Owner: postgres -- COMMENT ON TABLE phenome.genotype_region IS 'polymorphic regions from a genotype, delineated by markers in a certain linkage group on a certain map'; -- -- Name: COLUMN genotype_region.phenome_genotype_id; Type: COMMENT; Schema: phenome; Owner: postgres -- COMMENT ON COLUMN phenome.genotype_region.phenome_genotype_id IS 'optional genotype this region belongs to. some regions are artificial, arising from combinations of other regions, and thus do not have an associated genotype'; -- -- Name: COLUMN genotype_region.marker_id_nn; Type: COMMENT; Schema: phenome; Owner: postgres -- COMMENT ON COLUMN phenome.genotype_region.marker_id_nn IS 'the north marker in the pair of markers bracketing the north end of this region. this may be null for regions at the north end of a linkage group'; -- -- Name: COLUMN genotype_region.marker_id_ns; Type: COMMENT; Schema: phenome; Owner: postgres -- COMMENT ON COLUMN phenome.genotype_region.marker_id_ns IS 'the south marker in the pair of markers bracketing the north end of this region'; -- -- Name: COLUMN genotype_region.marker_id_sn; Type: COMMENT; Schema: phenome; Owner: postgres -- COMMENT ON COLUMN phenome.genotype_region.marker_id_sn IS 'the north marker in the pair of markers bracketing the south end of this region'; -- -- Name: COLUMN genotype_region.marker_id_ss; Type: COMMENT; Schema: phenome; Owner: postgres -- COMMENT ON COLUMN phenome.genotype_region.marker_id_ss IS 'the south marker in the pair of markers bracketing the south end of this region. this may be null for regions at the south end of a linkage group.'; -- -- Name: COLUMN genotype_region.lg_id; Type: COMMENT; Schema: phenome; Owner: postgres -- COMMENT ON COLUMN phenome.genotype_region.lg_id IS 'the linkage group in a specific version of a specific map where this region is located'; -- -- Name: COLUMN genotype_region.type; Type: COMMENT; Schema: phenome; Owner: postgres -- COMMENT ON COLUMN phenome.genotype_region.type IS 'the type of polymorphic region this is. map is mapping experiment data, inbred is IL lines segments, and bin is a derived region based on a boolean combination of inbred fragments. For bin regions, the specific boolean combination of fragments that make the bin is not stored.'; -- -- Name: COLUMN genotype_region.name; Type: COMMENT; Schema: phenome; Owner: postgres -- COMMENT ON COLUMN phenome.genotype_region.name IS 'special name for this region, if any. optional'; -- -- Name: COLUMN genotype_region.sp_person_id; Type: COMMENT; Schema: phenome; Owner: postgres -- COMMENT ON COLUMN phenome.genotype_region.sp_person_id IS 'the person who loaded this datum. optional'; -- -- Name: genotype_region_genotype_region_id_seq; Type: SEQUENCE; Schema: phenome; Owner: postgres -- CREATE SEQUENCE phenome.genotype_region_genotype_region_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE phenome.genotype_region_genotype_region_id_seq OWNER TO postgres; -- -- Name: genotype_region_genotype_region_id_seq; Type: SEQUENCE OWNED BY; Schema: phenome; Owner: postgres -- ALTER SEQUENCE phenome.genotype_region_genotype_region_id_seq OWNED BY phenome.genotype_region.genotype_region_id; -- -- Name: germplasm; Type: TABLE; Schema: phenome; Owner: postgres -- CREATE TABLE phenome.germplasm ( germplasm_id integer NOT NULL, germplasm_type character varying(10), individual_id bigint NOT NULL, description text, dbxref_id bigint, sp_person_id bigint, create_date timestamp with time zone DEFAULT now(), modified_date timestamp with time zone, obsolete boolean DEFAULT false, CONSTRAINT chk_germplasm_germplasm_type CHECK ((((germplasm_type)::text = 'seed'::text) OR ((germplasm_type)::text = 'vegetative'::text))) ); ALTER TABLE phenome.germplasm OWNER TO postgres; -- -- Name: germplasm_germplasm_id_seq; Type: SEQUENCE; Schema: phenome; Owner: postgres -- CREATE SEQUENCE phenome.germplasm_germplasm_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE phenome.germplasm_germplasm_id_seq OWNER TO postgres; -- -- Name: germplasm_germplasm_id_seq; Type: SEQUENCE OWNED BY; Schema: phenome; Owner: postgres -- ALTER SEQUENCE phenome.germplasm_germplasm_id_seq OWNED BY phenome.germplasm.germplasm_id; -- -- Name: individual; Type: TABLE; Schema: phenome; Owner: postgres -- CREATE TABLE phenome.individual ( individual_id integer NOT NULL, name character varying(100), description text, sp_person_id bigint, create_date timestamp with time zone DEFAULT now(), modified_date timestamp with time zone, obsolete boolean DEFAULT false, population_id bigint, updated_by integer, common_name_id bigint, accession_id integer, stock_id integer ); ALTER TABLE phenome.individual OWNER TO postgres; -- -- Name: individual_alias; Type: TABLE; Schema: phenome; Owner: postgres -- CREATE TABLE phenome.individual_alias ( individual_alias_id integer NOT NULL, alias text NOT NULL, individual_id integer NOT NULL, preferred boolean DEFAULT false, obsolete boolean DEFAULT false, sp_person_id integer, create_date timestamp with time zone DEFAULT now(), modified_date timestamp with time zone ); ALTER TABLE phenome.individual_alias OWNER TO postgres; -- -- Name: individual_alias_individual_alias_id_seq; Type: SEQUENCE; Schema: phenome; Owner: postgres -- CREATE SEQUENCE phenome.individual_alias_individual_alias_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE phenome.individual_alias_individual_alias_id_seq OWNER TO postgres; -- -- Name: individual_alias_individual_alias_id_seq; Type: SEQUENCE OWNED BY; Schema: phenome; Owner: postgres -- ALTER SEQUENCE phenome.individual_alias_individual_alias_id_seq OWNED BY phenome.individual_alias.individual_alias_id; -- -- Name: individual_allele; Type: TABLE; Schema: phenome; Owner: postgres -- CREATE TABLE phenome.individual_allele ( individual_allele_id integer NOT NULL, individual_id bigint NOT NULL, allele_id bigint NOT NULL, sp_person_id bigint, create_date timestamp with time zone DEFAULT now(), modified_date timestamp with time zone, obsolete boolean DEFAULT false ); ALTER TABLE phenome.individual_allele OWNER TO postgres; -- -- Name: individual_allele_individual_allele_id_seq; Type: SEQUENCE; Schema: phenome; Owner: postgres -- CREATE SEQUENCE phenome.individual_allele_individual_allele_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE phenome.individual_allele_individual_allele_id_seq OWNER TO postgres; -- -- Name: individual_allele_individual_allele_id_seq; Type: SEQUENCE OWNED BY; Schema: phenome; Owner: postgres -- ALTER SEQUENCE phenome.individual_allele_individual_allele_id_seq OWNED BY phenome.individual_allele.individual_allele_id; -- -- Name: individual_dbxref; Type: TABLE; Schema: phenome; Owner: postgres -- CREATE TABLE phenome.individual_dbxref ( individual_dbxref_id integer NOT NULL, individual_id integer NOT NULL, dbxref_id integer NOT NULL, obsolete boolean DEFAULT false, sp_person_id integer, create_date timestamp with time zone DEFAULT now(), modified_date timestamp with time zone ); ALTER TABLE phenome.individual_dbxref OWNER TO postgres; -- -- Name: individual_dbxref_evidence; Type: TABLE; Schema: phenome; Owner: postgres -- CREATE TABLE phenome.individual_dbxref_evidence ( individual_dbxref_evidence_id integer NOT NULL, individual_dbxref_id integer, relationship_type integer, evidence_code integer, evidence_description integer, evidence_with integer, reference_id integer, sp_person_id integer, updated_by integer, create_date timestamp with time zone DEFAULT now(), modified_date timestamp with time zone, obsolete boolean DEFAULT false ); ALTER TABLE phenome.individual_dbxref_evidence OWNER TO postgres; -- -- Name: individual_dbxref_evidence_history; Type: TABLE; Schema: phenome; Owner: postgres -- CREATE TABLE phenome.individual_dbxref_evidence_history ( individual_dbxref_evidence_history_id integer NOT NULL, individual_dbxref_evidence_id integer, individual_dbxref_id integer, relationship_type integer, evidence_code integer, evidence_description integer, evidence_with integer, reference_id integer, sp_person_id integer, updated_by integer, create_date timestamp with time zone DEFAULT now(), modified_date timestamp with time zone, obsolete boolean DEFAULT false ); ALTER TABLE phenome.individual_dbxref_evidence_history OWNER TO postgres; -- -- Name: individual_dbxref_evidence_hi_individual_dbxref_evidence_hi_seq; Type: SEQUENCE; Schema: phenome; Owner: postgres -- CREATE SEQUENCE phenome.individual_dbxref_evidence_hi_individual_dbxref_evidence_hi_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE phenome.individual_dbxref_evidence_hi_individual_dbxref_evidence_hi_seq OWNER TO postgres; -- -- Name: individual_dbxref_evidence_hi_individual_dbxref_evidence_hi_seq; Type: SEQUENCE OWNED BY; Schema: phenome; Owner: postgres -- ALTER SEQUENCE phenome.individual_dbxref_evidence_hi_individual_dbxref_evidence_hi_seq OWNED BY phenome.individual_dbxref_evidence_history.individual_dbxref_evidence_history_id; -- -- Name: individual_dbxref_evidence_individual_dbxref_evidence_id_seq; Type: SEQUENCE; Schema: phenome; Owner: postgres -- CREATE SEQUENCE phenome.individual_dbxref_evidence_individual_dbxref_evidence_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE phenome.individual_dbxref_evidence_individual_dbxref_evidence_id_seq OWNER TO postgres; -- -- Name: individual_dbxref_evidence_individual_dbxref_evidence_id_seq; Type: SEQUENCE OWNED BY; Schema: phenome; Owner: postgres -- ALTER SEQUENCE phenome.individual_dbxref_evidence_individual_dbxref_evidence_id_seq OWNED BY phenome.individual_dbxref_evidence.individual_dbxref_evidence_id; -- -- Name: individual_dbxref_individual_dbxref_id_seq; Type: SEQUENCE; Schema: phenome; Owner: postgres -- CREATE SEQUENCE phenome.individual_dbxref_individual_dbxref_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE phenome.individual_dbxref_individual_dbxref_id_seq OWNER TO postgres; -- -- Name: individual_dbxref_individual_dbxref_id_seq; Type: SEQUENCE OWNED BY; Schema: phenome; Owner: postgres -- ALTER SEQUENCE phenome.individual_dbxref_individual_dbxref_id_seq OWNED BY phenome.individual_dbxref.individual_dbxref_id; -- -- Name: individual_history; Type: TABLE; Schema: phenome; Owner: postgres -- CREATE TABLE phenome.individual_history ( individual_history_id integer NOT NULL, individual_id integer NOT NULL, name character varying(255), description text, population_id integer, sp_person_id integer, updated_by integer, obsolete boolean DEFAULT false, create_date timestamp with time zone DEFAULT now() ); ALTER TABLE phenome.individual_history OWNER TO postgres; -- -- Name: individual_history_individual_history_id_seq; Type: SEQUENCE; Schema: phenome; Owner: postgres -- CREATE SEQUENCE phenome.individual_history_individual_history_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE phenome.individual_history_individual_history_id_seq OWNER TO postgres; -- -- Name: individual_history_individual_history_id_seq; Type: SEQUENCE OWNED BY; Schema: phenome; Owner: postgres -- ALTER SEQUENCE phenome.individual_history_individual_history_id_seq OWNED BY phenome.individual_history.individual_history_id; -- -- Name: individual_image; Type: TABLE; Schema: phenome; Owner: postgres -- CREATE TABLE phenome.individual_image ( individual_image_id integer NOT NULL, image_id bigint, individual_id bigint, obsolete boolean DEFAULT false, sp_person_id integer, create_date timestamp with time zone DEFAULT now(), modified_date timestamp with time zone ); ALTER TABLE phenome.individual_image OWNER TO postgres; -- -- Name: individual_image_individual_image_id_seq; Type: SEQUENCE; Schema: phenome; Owner: postgres -- CREATE SEQUENCE phenome.individual_image_individual_image_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE phenome.individual_image_individual_image_id_seq OWNER TO postgres; -- -- Name: individual_image_individual_image_id_seq; Type: SEQUENCE OWNED BY; Schema: phenome; Owner: postgres -- ALTER SEQUENCE phenome.individual_image_individual_image_id_seq OWNED BY phenome.individual_image.individual_image_id; -- -- Name: individual_individual_id_seq; Type: SEQUENCE; Schema: phenome; Owner: postgres -- CREATE SEQUENCE phenome.individual_individual_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE phenome.individual_individual_id_seq OWNER TO postgres; -- -- Name: individual_individual_id_seq; Type: SEQUENCE OWNED BY; Schema: phenome; Owner: postgres -- ALTER SEQUENCE phenome.individual_individual_id_seq OWNED BY phenome.individual.individual_id; -- -- Name: individual_locus; Type: TABLE; Schema: phenome; Owner: postgres -- CREATE TABLE phenome.individual_locus ( individual_locus_id integer NOT NULL, individual_id bigint NOT NULL, locus_id bigint NOT NULL, sp_person_id bigint, create_date timestamp with time zone DEFAULT now(), modified_date timestamp with time zone, obsolete boolean DEFAULT false ); ALTER TABLE phenome.individual_locus OWNER TO postgres; -- -- Name: individual_locus_individual_locus_id_seq; Type: SEQUENCE; Schema: phenome; Owner: postgres -- CREATE SEQUENCE phenome.individual_locus_individual_locus_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE phenome.individual_locus_individual_locus_id_seq OWNER TO postgres; -- -- Name: individual_locus_individual_locus_id_seq; Type: SEQUENCE OWNED BY; Schema: phenome; Owner: postgres -- ALTER SEQUENCE phenome.individual_locus_individual_locus_id_seq OWNED BY phenome.individual_locus.individual_locus_id; -- -- Name: is_public; Type: TABLE; Schema: phenome; Owner: postgres -- CREATE TABLE phenome.is_public ( is_public_id integer NOT NULL, population_id integer NOT NULL, is_public boolean DEFAULT true, owner_id integer NOT NULL ); ALTER TABLE phenome.is_public OWNER TO postgres; -- -- Name: is_public_is_public_id_seq; Type: SEQUENCE; Schema: phenome; Owner: postgres -- CREATE SEQUENCE phenome.is_public_is_public_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE phenome.is_public_is_public_id_seq OWNER TO postgres; -- -- Name: is_public_is_public_id_seq; Type: SEQUENCE OWNED BY; Schema: phenome; Owner: postgres -- ALTER SEQUENCE phenome.is_public_is_public_id_seq OWNED BY phenome.is_public.is_public_id; -- -- Name: locus; Type: TABLE; Schema: phenome; Owner: postgres -- CREATE TABLE phenome.locus ( locus_id integer NOT NULL, locus_name character varying(255) NOT NULL, locus_symbol character varying(32) NOT NULL, original_symbol character varying(32), gene_activity text, locus_notes text, obsolete boolean DEFAULT false, sp_person_id integer, create_date timestamp with time zone DEFAULT now(), modified_date timestamp with time zone, description text, linkage_group character varying(16), lg_arm character varying(16), common_name_id integer NOT NULL, updated_by integer, locus character varying(24), organism_id integer, CONSTRAINT chk_lg_arm CHECK ((((lg_arm)::text = 'short'::text) OR ((lg_arm)::text = 'long'::text) OR ((lg_arm)::text = ''::text))) ); ALTER TABLE phenome.locus OWNER TO postgres; -- -- Name: locus2locus; Type: TABLE; Schema: phenome; Owner: postgres -- CREATE TABLE phenome.locus2locus ( locus2locus_id integer NOT NULL, subject_id bigint, object_id bigint, relationship_id bigint, evidence_id bigint, reference_id bigint, sp_person_id bigint, obsolete boolean DEFAULT false, modified_date timestamp with time zone, create_date timestamp with time zone DEFAULT now() ); ALTER TABLE phenome.locus2locus OWNER TO postgres; -- -- Name: locus2locus_locus2locus_id_seq; Type: SEQUENCE; Schema: phenome; Owner: postgres -- CREATE SEQUENCE phenome.locus2locus_locus2locus_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE phenome.locus2locus_locus2locus_id_seq OWNER TO postgres; -- -- Name: locus2locus_locus2locus_id_seq; Type: SEQUENCE OWNED BY; Schema: phenome; Owner: postgres -- ALTER SEQUENCE phenome.locus2locus_locus2locus_id_seq OWNED BY phenome.locus2locus.locus2locus_id; -- -- Name: locus_alias; Type: TABLE; Schema: phenome; Owner: postgres -- CREATE TABLE phenome.locus_alias ( locus_alias_id integer NOT NULL, alias text NOT NULL, locus_id integer NOT NULL, preferred boolean DEFAULT false, obsolete boolean DEFAULT false, sp_person_id integer, create_date timestamp with time zone DEFAULT now(), modified_date timestamp with time zone ); ALTER TABLE phenome.locus_alias OWNER TO postgres; -- -- Name: locus_alias_locus_alias_id_seq; Type: SEQUENCE; Schema: phenome; Owner: postgres -- CREATE SEQUENCE phenome.locus_alias_locus_alias_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE phenome.locus_alias_locus_alias_id_seq OWNER TO postgres; -- -- Name: locus_alias_locus_alias_id_seq; Type: SEQUENCE OWNED BY; Schema: phenome; Owner: postgres -- ALTER SEQUENCE phenome.locus_alias_locus_alias_id_seq OWNED BY phenome.locus_alias.locus_alias_id; -- -- Name: locus_dbxref; Type: TABLE; Schema: phenome; Owner: postgres -- CREATE TABLE phenome.locus_dbxref ( locus_dbxref_id integer NOT NULL, locus_id integer NOT NULL, dbxref_id integer NOT NULL, obsolete boolean DEFAULT false, sp_person_id integer, create_date timestamp with time zone DEFAULT now(), modified_date timestamp with time zone ); ALTER TABLE phenome.locus_dbxref OWNER TO postgres; -- -- Name: locus_dbxref_evidence; Type: TABLE; Schema: phenome; Owner: postgres -- CREATE TABLE phenome.locus_dbxref_evidence ( locus_dbxref_evidence_id integer NOT NULL, locus_dbxref_id integer, relationship_type_id integer, evidence_code_id integer, evidence_description_id integer, evidence_with integer, reference_id integer, sp_person_id integer, updated_by integer, create_date timestamp with time zone DEFAULT now(), modified_date timestamp with time zone, obsolete boolean DEFAULT false ); ALTER TABLE phenome.locus_dbxref_evidence OWNER TO postgres; -- -- Name: locus_dbxref_evidence_history; Type: TABLE; Schema: phenome; Owner: postgres -- CREATE TABLE phenome.locus_dbxref_evidence_history ( locus_dbxref_evidence_history_id integer NOT NULL, locus_dbxref_evidence_id integer, locus_dbxref_id integer, relationship_type integer, evidence_code integer, evidence_description integer, evidence_with integer, reference_id integer, sp_person_id integer, updated_by integer, create_date timestamp with time zone DEFAULT now(), modified_date timestamp with time zone, obsolete boolean DEFAULT false ); ALTER TABLE phenome.locus_dbxref_evidence_history OWNER TO postgres; -- -- Name: locus_dbxref_evidence_history_locus_dbxref_evidence_history_seq; Type: SEQUENCE; Schema: phenome; Owner: postgres -- CREATE SEQUENCE phenome.locus_dbxref_evidence_history_locus_dbxref_evidence_history_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE phenome.locus_dbxref_evidence_history_locus_dbxref_evidence_history_seq OWNER TO postgres; -- -- Name: locus_dbxref_evidence_history_locus_dbxref_evidence_history_seq; Type: SEQUENCE OWNED BY; Schema: phenome; Owner: postgres -- ALTER SEQUENCE phenome.locus_dbxref_evidence_history_locus_dbxref_evidence_history_seq OWNED BY phenome.locus_dbxref_evidence_history.locus_dbxref_evidence_history_id; -- -- Name: locus_dbxref_evidence_locus_dbxref_evidence_id_seq; Type: SEQUENCE; Schema: phenome; Owner: postgres -- CREATE SEQUENCE phenome.locus_dbxref_evidence_locus_dbxref_evidence_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE phenome.locus_dbxref_evidence_locus_dbxref_evidence_id_seq OWNER TO postgres; -- -- Name: locus_dbxref_evidence_locus_dbxref_evidence_id_seq; Type: SEQUENCE OWNED BY; Schema: phenome; Owner: postgres -- ALTER SEQUENCE phenome.locus_dbxref_evidence_locus_dbxref_evidence_id_seq OWNED BY phenome.locus_dbxref_evidence.locus_dbxref_evidence_id; -- -- Name: locus_dbxref_locus_dbxref_id_seq; Type: SEQUENCE; Schema: phenome; Owner: postgres -- CREATE SEQUENCE phenome.locus_dbxref_locus_dbxref_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE phenome.locus_dbxref_locus_dbxref_id_seq OWNER TO postgres; -- -- Name: locus_dbxref_locus_dbxref_id_seq; Type: SEQUENCE OWNED BY; Schema: phenome; Owner: postgres -- ALTER SEQUENCE phenome.locus_dbxref_locus_dbxref_id_seq OWNED BY phenome.locus_dbxref.locus_dbxref_id; -- -- Name: locus_history; Type: TABLE; Schema: phenome; Owner: postgres -- CREATE TABLE phenome.locus_history ( locus_history_id integer NOT NULL, locus_id integer NOT NULL, locus_name character varying(255), locus_symbol character varying(32), original_symbol character varying(32), gene_activity text, locus_description text, locus_notes text, linkage_group character varying(16), lg_arm character varying(16), sp_person_id integer, updated_by integer, obsolete boolean DEFAULT false, create_date timestamp with time zone DEFAULT now(), CONSTRAINT locus_history_lg_arm_check CHECK ((((lg_arm)::text = 'short'::text) OR ((lg_arm)::text = 'long'::text) OR ((lg_arm)::text = ''::text))) ); ALTER TABLE phenome.locus_history OWNER TO postgres; -- -- Name: locus_history_locus_history_id_seq; Type: SEQUENCE; Schema: phenome; Owner: postgres -- CREATE SEQUENCE phenome.locus_history_locus_history_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE phenome.locus_history_locus_history_id_seq OWNER TO postgres; -- -- Name: locus_history_locus_history_id_seq; Type: SEQUENCE OWNED BY; Schema: phenome; Owner: postgres -- ALTER SEQUENCE phenome.locus_history_locus_history_id_seq OWNED BY phenome.locus_history.locus_history_id; -- -- Name: locus_image; Type: TABLE; Schema: phenome; Owner: postgres -- CREATE TABLE phenome.locus_image ( locus_image_id integer NOT NULL, image_id bigint, locus_id bigint, obsolete boolean DEFAULT false, sp_person_id integer, create_date timestamp with time zone DEFAULT now(), modified_date timestamp with time zone, display_order integer DEFAULT 50 ); ALTER TABLE phenome.locus_image OWNER TO postgres; -- -- Name: locus_image_locus_image_id_seq; Type: SEQUENCE; Schema: phenome; Owner: postgres -- CREATE SEQUENCE phenome.locus_image_locus_image_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE phenome.locus_image_locus_image_id_seq OWNER TO postgres; -- -- Name: locus_image_locus_image_id_seq; Type: SEQUENCE OWNED BY; Schema: phenome; Owner: postgres -- ALTER SEQUENCE phenome.locus_image_locus_image_id_seq OWNED BY phenome.locus_image.locus_image_id; -- -- Name: locus_locus_id_seq; Type: SEQUENCE; Schema: phenome; Owner: postgres -- CREATE SEQUENCE phenome.locus_locus_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE phenome.locus_locus_id_seq OWNER TO postgres; -- -- Name: locus_locus_id_seq; Type: SEQUENCE OWNED BY; Schema: phenome; Owner: postgres -- ALTER SEQUENCE phenome.locus_locus_id_seq OWNED BY phenome.locus.locus_id; -- -- Name: locus_marker; Type: TABLE; Schema: phenome; Owner: postgres -- CREATE TABLE phenome.locus_marker ( locus_marker_id integer NOT NULL, locus_id integer NOT NULL, marker_id integer NOT NULL, obsolete boolean DEFAULT false, sp_person_id integer, create_date timestamp with time zone DEFAULT now(), modified_date timestamp with time zone ); ALTER TABLE phenome.locus_marker OWNER TO postgres; -- -- Name: locus_marker_locus_marker_id_seq; Type: SEQUENCE; Schema: phenome; Owner: postgres -- CREATE SEQUENCE phenome.locus_marker_locus_marker_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE phenome.locus_marker_locus_marker_id_seq OWNER TO postgres; -- -- Name: locus_marker_locus_marker_id_seq; Type: SEQUENCE OWNED BY; Schema: phenome; Owner: postgres -- ALTER SEQUENCE phenome.locus_marker_locus_marker_id_seq OWNED BY phenome.locus_marker.locus_marker_id; -- -- Name: locus_owner; Type: TABLE; Schema: phenome; Owner: postgres -- CREATE TABLE phenome.locus_owner ( locus_owner_id integer NOT NULL, locus_id integer NOT NULL, sp_person_id integer NOT NULL, granted_by integer, obsolete boolean DEFAULT false, create_date timestamp with time zone DEFAULT now(), modified_date timestamp with time zone ); ALTER TABLE phenome.locus_owner OWNER TO postgres; -- -- Name: locus_owner_locus_owner_id_seq; Type: SEQUENCE; Schema: phenome; Owner: postgres -- CREATE SEQUENCE phenome.locus_owner_locus_owner_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE phenome.locus_owner_locus_owner_id_seq OWNER TO postgres; -- -- Name: locus_owner_locus_owner_id_seq; Type: SEQUENCE OWNED BY; Schema: phenome; Owner: postgres -- ALTER SEQUENCE phenome.locus_owner_locus_owner_id_seq OWNED BY phenome.locus_owner.locus_owner_id; -- -- Name: locus_pub_ranking; Type: TABLE; Schema: phenome; Owner: postgres -- CREATE TABLE phenome.locus_pub_ranking ( locus_id integer, pub_id integer, rank real, match_type text, headline text ); ALTER TABLE phenome.locus_pub_ranking OWNER TO postgres; -- -- Name: locus_pub_ranking_validate; Type: TABLE; Schema: phenome; Owner: postgres -- CREATE TABLE phenome.locus_pub_ranking_validate ( locus_id integer, pub_id integer, validate character varying(18) ); ALTER TABLE phenome.locus_pub_ranking_validate OWNER TO postgres; -- -- Name: locus_registry; Type: TABLE; Schema: phenome; Owner: postgres -- CREATE TABLE phenome.locus_registry ( locus_registry_id integer NOT NULL, locus_id integer, registry_id integer, sp_person_id integer NOT NULL, create_date timestamp with time zone DEFAULT now(), modified_date timestamp with time zone, obsolete boolean DEFAULT false ); ALTER TABLE phenome.locus_registry OWNER TO postgres; -- -- Name: locus_registry_locus_registry_id_seq; Type: SEQUENCE; Schema: phenome; Owner: postgres -- CREATE SEQUENCE phenome.locus_registry_locus_registry_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE phenome.locus_registry_locus_registry_id_seq OWNER TO postgres; -- -- Name: locus_registry_locus_registry_id_seq; Type: SEQUENCE OWNED BY; Schema: phenome; Owner: postgres -- ALTER SEQUENCE phenome.locus_registry_locus_registry_id_seq OWNED BY phenome.locus_registry.locus_registry_id; -- -- Name: locus_unigene; Type: TABLE; Schema: phenome; Owner: postgres -- CREATE TABLE phenome.locus_unigene ( locus_unigene_id integer NOT NULL, locus_id integer NOT NULL, unigene_id integer NOT NULL, obsolete boolean DEFAULT false, sp_person_id integer, create_date timestamp with time zone DEFAULT now(), modified_date timestamp with time zone ); ALTER TABLE phenome.locus_unigene OWNER TO postgres; -- -- Name: locus_unigene_locus_unigene_id_seq; Type: SEQUENCE; Schema: phenome; Owner: postgres -- CREATE SEQUENCE phenome.locus_unigene_locus_unigene_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE phenome.locus_unigene_locus_unigene_id_seq OWNER TO postgres; -- -- Name: locus_unigene_locus_unigene_id_seq; Type: SEQUENCE OWNED BY; Schema: phenome; Owner: postgres -- ALTER SEQUENCE phenome.locus_unigene_locus_unigene_id_seq OWNED BY phenome.locus_unigene.locus_unigene_id; -- -- Name: locusgroup; Type: TABLE; Schema: phenome; Owner: postgres -- CREATE TABLE phenome.locusgroup ( locusgroup_id integer NOT NULL, locusgroup_name character varying(255), relationship_id integer, sp_person_id integer, create_date timestamp with time zone DEFAULT now(), modified_date timestamp with time zone, obsolete boolean DEFAULT false ); ALTER TABLE phenome.locusgroup OWNER TO postgres; -- -- Name: locusgroup_locusgroup_id_seq; Type: SEQUENCE; Schema: phenome; Owner: postgres -- CREATE SEQUENCE phenome.locusgroup_locusgroup_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE phenome.locusgroup_locusgroup_id_seq OWNER TO postgres; -- -- Name: locusgroup_locusgroup_id_seq; Type: SEQUENCE OWNED BY; Schema: phenome; Owner: postgres -- ALTER SEQUENCE phenome.locusgroup_locusgroup_id_seq OWNED BY phenome.locusgroup.locusgroup_id; -- -- Name: locusgroup_member; Type: TABLE; Schema: phenome; Owner: postgres -- CREATE TABLE phenome.locusgroup_member ( locusgroup_member_id integer NOT NULL, locusgroup_id integer, locus_id integer, direction character varying(16), evidence_id integer, reference_id integer, sp_person_id integer, create_date timestamp with time zone DEFAULT now(), modified_date timestamp with time zone, obsolete boolean DEFAULT false, CONSTRAINT locusgroup_member_direction_check CHECK ((((direction)::text = 'subject'::text) OR ((direction)::text = 'object'::text) OR ((direction)::text = ''::text))) ); ALTER TABLE phenome.locusgroup_member OWNER TO postgres; -- -- Name: locusgroup_member_locusgroup_member_id_seq; Type: SEQUENCE; Schema: phenome; Owner: postgres -- CREATE SEQUENCE phenome.locusgroup_member_locusgroup_member_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE phenome.locusgroup_member_locusgroup_member_id_seq OWNER TO postgres; -- -- Name: locusgroup_member_locusgroup_member_id_seq; Type: SEQUENCE OWNED BY; Schema: phenome; Owner: postgres -- ALTER SEQUENCE phenome.locusgroup_member_locusgroup_member_id_seq OWNED BY phenome.locusgroup_member.locusgroup_member_id; -- -- Name: nd_experiment_md_files; Type: TABLE; Schema: phenome; Owner: postgres -- CREATE TABLE phenome.nd_experiment_md_files ( nd_experiment_md_files_id integer NOT NULL, nd_experiment_id bigint, file_id bigint ); ALTER TABLE phenome.nd_experiment_md_files OWNER TO postgres; -- -- Name: nd_experiment_md_files_nd_experiment_md_files_id_seq; Type: SEQUENCE; Schema: phenome; Owner: postgres -- CREATE SEQUENCE phenome.nd_experiment_md_files_nd_experiment_md_files_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE phenome.nd_experiment_md_files_nd_experiment_md_files_id_seq OWNER TO postgres; -- -- Name: nd_experiment_md_files_nd_experiment_md_files_id_seq; Type: SEQUENCE OWNED BY; Schema: phenome; Owner: postgres -- ALTER SEQUENCE phenome.nd_experiment_md_files_nd_experiment_md_files_id_seq OWNED BY phenome.nd_experiment_md_files.nd_experiment_md_files_id; -- -- Name: nd_experiment_md_images; Type: TABLE; Schema: phenome; Owner: postgres -- CREATE TABLE phenome.nd_experiment_md_images ( nd_experiment_md_images_id integer NOT NULL, nd_experiment_id integer NOT NULL, image_id integer NOT NULL ); ALTER TABLE phenome.nd_experiment_md_images OWNER TO postgres; -- -- Name: nd_experiment_md_images_nd_experiment_md_images_id_seq; Type: SEQUENCE; Schema: phenome; Owner: postgres -- CREATE SEQUENCE phenome.nd_experiment_md_images_nd_experiment_md_images_id_seq AS integer START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE phenome.nd_experiment_md_images_nd_experiment_md_images_id_seq OWNER TO postgres; -- -- Name: nd_experiment_md_images_nd_experiment_md_images_id_seq; Type: SEQUENCE OWNED BY; Schema: phenome; Owner: postgres -- ALTER SEQUENCE phenome.nd_experiment_md_images_nd_experiment_md_images_id_seq OWNED BY phenome.nd_experiment_md_images.nd_experiment_md_images_id; -- -- Name: nd_experiment_md_json; Type: TABLE; Schema: phenome; Owner: postgres -- CREATE TABLE phenome.nd_experiment_md_json ( nd_experiment_md_json_id integer NOT NULL, nd_experiment_id integer, json_id integer ); ALTER TABLE phenome.nd_experiment_md_json OWNER TO postgres; -- -- Name: nd_experiment_md_json_nd_experiment_md_json_id_seq; Type: SEQUENCE; Schema: phenome; Owner: postgres -- CREATE SEQUENCE phenome.nd_experiment_md_json_nd_experiment_md_json_id_seq AS integer START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE phenome.nd_experiment_md_json_nd_experiment_md_json_id_seq OWNER TO postgres; -- -- Name: nd_experiment_md_json_nd_experiment_md_json_id_seq; Type: SEQUENCE OWNED BY; Schema: phenome; Owner: postgres -- ALTER SEQUENCE phenome.nd_experiment_md_json_nd_experiment_md_json_id_seq OWNED BY phenome.nd_experiment_md_json.nd_experiment_md_json_id; -- -- Name: phenotype_user_trait; Type: TABLE; Schema: phenome; Owner: postgres -- CREATE TABLE phenome.phenotype_user_trait ( phenotype_user_trait_id integer NOT NULL, user_trait_id integer NOT NULL, phenotype_id integer NOT NULL ); ALTER TABLE phenome.phenotype_user_trait OWNER TO postgres; -- -- Name: phenotype_user_trait_phenotype_user_trait_id_seq; Type: SEQUENCE; Schema: phenome; Owner: postgres -- CREATE SEQUENCE phenome.phenotype_user_trait_phenotype_user_trait_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE phenome.phenotype_user_trait_phenotype_user_trait_id_seq OWNER TO postgres; -- -- Name: phenotype_user_trait_phenotype_user_trait_id_seq; Type: SEQUENCE OWNED BY; Schema: phenome; Owner: postgres -- ALTER SEQUENCE phenome.phenotype_user_trait_phenotype_user_trait_id_seq OWNED BY phenome.phenotype_user_trait.phenotype_user_trait_id; -- -- Name: polymorphic_fragment; Type: TABLE; Schema: phenome; Owner: postgres -- CREATE TABLE phenome.polymorphic_fragment ( polymorphic_fragment_id integer NOT NULL, phenome_genotype_id bigint, flanking_marker1_id bigint, flanking_marker2_id bigint, zygocity character varying(15), linkage_group text, type text, sp_person_id bigint, modified_date timestamp with time zone, create_date timestamp with time zone, obsolete boolean DEFAULT false ); ALTER TABLE phenome.polymorphic_fragment OWNER TO postgres; -- -- Name: polymorphic_fragment_polymorphic_fragment_id_seq; Type: SEQUENCE; Schema: phenome; Owner: postgres -- CREATE SEQUENCE phenome.polymorphic_fragment_polymorphic_fragment_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE phenome.polymorphic_fragment_polymorphic_fragment_id_seq OWNER TO postgres; -- -- Name: polymorphic_fragment_polymorphic_fragment_id_seq; Type: SEQUENCE OWNED BY; Schema: phenome; Owner: postgres -- ALTER SEQUENCE phenome.polymorphic_fragment_polymorphic_fragment_id_seq OWNED BY phenome.polymorphic_fragment.polymorphic_fragment_id; -- -- Name: population; Type: TABLE; Schema: phenome; Owner: postgres -- CREATE TABLE phenome.population ( population_id integer NOT NULL, name character varying(100), description text, person_id integer, sp_person_id bigint, create_date timestamp with time zone DEFAULT now(), modified_date timestamp with time zone, background_accession_id bigint, obsolete boolean DEFAULT false, cross_type_id integer, female_parent_id integer, male_parent_id integer, recurrent_parent_id integer, donor_parent_id integer, comment text, web_uploaded boolean, common_name_id integer, stock_id integer ); ALTER TABLE phenome.population OWNER TO postgres; -- -- Name: population_dbxref; Type: TABLE; Schema: phenome; Owner: postgres -- CREATE TABLE phenome.population_dbxref ( population_dbxref_id integer NOT NULL, population_id integer NOT NULL, dbxref_id integer NOT NULL, obsolete boolean DEFAULT false, sp_person_id integer, create_date timestamp with time zone DEFAULT now(), modified_date timestamp with time zone ); ALTER TABLE phenome.population_dbxref OWNER TO postgres; -- -- Name: population_dbxref_population_dbxref_id_seq; Type: SEQUENCE; Schema: phenome; Owner: postgres -- CREATE SEQUENCE phenome.population_dbxref_population_dbxref_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE phenome.population_dbxref_population_dbxref_id_seq OWNER TO postgres; -- -- Name: population_dbxref_population_dbxref_id_seq; Type: SEQUENCE OWNED BY; Schema: phenome; Owner: postgres -- ALTER SEQUENCE phenome.population_dbxref_population_dbxref_id_seq OWNED BY phenome.population_dbxref.population_dbxref_id; -- -- Name: population_population_id_seq; Type: SEQUENCE; Schema: phenome; Owner: postgres -- CREATE SEQUENCE phenome.population_population_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE phenome.population_population_id_seq OWNER TO postgres; -- -- Name: population_population_id_seq; Type: SEQUENCE OWNED BY; Schema: phenome; Owner: postgres -- ALTER SEQUENCE phenome.population_population_id_seq OWNED BY phenome.population.population_id; -- -- Name: project_md_image; Type: TABLE; Schema: phenome; Owner: postgres -- CREATE TABLE phenome.project_md_image ( project_md_image_id integer NOT NULL, project_id integer NOT NULL, image_id integer NOT NULL, type_id integer NOT NULL ); ALTER TABLE phenome.project_md_image OWNER TO postgres; -- -- Name: project_md_image_project_md_image_id_seq; Type: SEQUENCE; Schema: phenome; Owner: postgres -- CREATE SEQUENCE phenome.project_md_image_project_md_image_id_seq AS integer START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE phenome.project_md_image_project_md_image_id_seq OWNER TO postgres; -- -- Name: project_md_image_project_md_image_id_seq; Type: SEQUENCE OWNED BY; Schema: phenome; Owner: postgres -- ALTER SEQUENCE phenome.project_md_image_project_md_image_id_seq OWNED BY phenome.project_md_image.project_md_image_id; -- -- Name: pub_curator; Type: TABLE; Schema: phenome; Owner: postgres -- CREATE TABLE phenome.pub_curator ( pub_curator_id integer NOT NULL, pub_id integer, sp_person_id integer, status character varying(32), date_stored timestamp with time zone DEFAULT now(), date_curated timestamp with time zone, curated_by integer, assigned_to integer ); ALTER TABLE phenome.pub_curator OWNER TO postgres; -- -- Name: pub_curator_pub_curator_id_seq; Type: SEQUENCE; Schema: phenome; Owner: postgres -- CREATE SEQUENCE phenome.pub_curator_pub_curator_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE phenome.pub_curator_pub_curator_id_seq OWNER TO postgres; -- -- Name: pub_curator_pub_curator_id_seq; Type: SEQUENCE OWNED BY; Schema: phenome; Owner: postgres -- ALTER SEQUENCE phenome.pub_curator_pub_curator_id_seq OWNED BY phenome.pub_curator.pub_curator_id; -- -- Name: registry; Type: TABLE; Schema: phenome; Owner: postgres -- CREATE TABLE phenome.registry ( registry_id integer NOT NULL, symbol character varying(32) NOT NULL, name character varying(255) NOT NULL, description text NOT NULL, origin character varying(32), sp_person_id integer NOT NULL, updated_by integer, create_date timestamp with time zone DEFAULT now(), modified_date timestamp with time zone, status character varying(32), CONSTRAINT registry_status_check CHECK ((((status)::text = 'registered'::text) OR ((status)::text = 'active'::text) OR ((status)::text = 'inactive'::text) OR ((status)::text = 'deleted'::text) OR ((status)::text = 'obsolete'::text))) ); ALTER TABLE phenome.registry OWNER TO postgres; -- -- Name: registry_registry_id_seq; Type: SEQUENCE; Schema: phenome; Owner: postgres -- CREATE SEQUENCE phenome.registry_registry_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE phenome.registry_registry_id_seq OWNER TO postgres; -- -- Name: registry_registry_id_seq; Type: SEQUENCE OWNED BY; Schema: phenome; Owner: postgres -- ALTER SEQUENCE phenome.registry_registry_id_seq OWNED BY phenome.registry.registry_id; -- -- Name: stock_allele; Type: TABLE; Schema: phenome; Owner: postgres -- CREATE TABLE phenome.stock_allele ( stock_allele_id integer NOT NULL, stock_id integer NOT NULL, allele_id integer NOT NULL, metadata_id integer ); ALTER TABLE phenome.stock_allele OWNER TO postgres; -- -- Name: stock_allele_stock_allele_id_seq; Type: SEQUENCE; Schema: phenome; Owner: postgres -- CREATE SEQUENCE phenome.stock_allele_stock_allele_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE phenome.stock_allele_stock_allele_id_seq OWNER TO postgres; -- -- Name: stock_allele_stock_allele_id_seq; Type: SEQUENCE OWNED BY; Schema: phenome; Owner: postgres -- ALTER SEQUENCE phenome.stock_allele_stock_allele_id_seq OWNED BY phenome.stock_allele.stock_allele_id; -- -- Name: stock_image; Type: TABLE; Schema: phenome; Owner: postgres -- CREATE TABLE phenome.stock_image ( stock_image_id integer NOT NULL, stock_id integer NOT NULL, image_id integer NOT NULL, metadata_id integer, display_order integer DEFAULT 50 ); ALTER TABLE phenome.stock_image OWNER TO postgres; -- -- Name: stock_image_stock_image_id_seq; Type: SEQUENCE; Schema: phenome; Owner: postgres -- CREATE SEQUENCE phenome.stock_image_stock_image_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE phenome.stock_image_stock_image_id_seq OWNER TO postgres; -- -- Name: stock_image_stock_image_id_seq; Type: SEQUENCE OWNED BY; Schema: phenome; Owner: postgres -- ALTER SEQUENCE phenome.stock_image_stock_image_id_seq OWNED BY phenome.stock_image.stock_image_id; -- -- Name: stock_owner; Type: TABLE; Schema: phenome; Owner: postgres -- CREATE TABLE phenome.stock_owner ( stock_owner_id integer NOT NULL, stock_id integer NOT NULL, sp_person_id integer NOT NULL, metadata_id integer ); ALTER TABLE phenome.stock_owner OWNER TO postgres; -- -- Name: stock_owner_stock_owner_id_seq; Type: SEQUENCE; Schema: phenome; Owner: postgres -- CREATE SEQUENCE phenome.stock_owner_stock_owner_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE phenome.stock_owner_stock_owner_id_seq OWNER TO postgres; -- -- Name: stock_owner_stock_owner_id_seq; Type: SEQUENCE OWNED BY; Schema: phenome; Owner: postgres -- ALTER SEQUENCE phenome.stock_owner_stock_owner_id_seq OWNED BY phenome.stock_owner.stock_owner_id; -- -- Name: tomato_il_bin; Type: TABLE; Schema: phenome; Owner: postgres -- CREATE TABLE phenome.tomato_il_bin ( il_bin_id integer NOT NULL, chromosome integer NOT NULL, name character varying(32) NOT NULL, n_marker_n integer, n_marker_s integer, s_marker_n integer, s_marker_s integer, CONSTRAINT tomato_il_bin_chromosome_check CHECK (((chromosome >= 1) AND (chromosome <= 12))) ); ALTER TABLE phenome.tomato_il_bin OWNER TO postgres; -- -- Name: tomato_il_bin_il_bin_id_seq; Type: SEQUENCE; Schema: phenome; Owner: postgres -- CREATE SEQUENCE phenome.tomato_il_bin_il_bin_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE phenome.tomato_il_bin_il_bin_id_seq OWNER TO postgres; -- -- Name: tomato_il_bin_il_bin_id_seq; Type: SEQUENCE OWNED BY; Schema: phenome; Owner: postgres -- ALTER SEQUENCE phenome.tomato_il_bin_il_bin_id_seq OWNED BY phenome.tomato_il_bin.il_bin_id; -- -- Name: tomato_term; Type: TABLE; Schema: phenome; Owner: postgres -- CREATE TABLE phenome.tomato_term ( tomato_term_id integer NOT NULL, tomato_term_name character varying(255) DEFAULT ''::character varying NOT NULL, tomato_term_type character varying(55) DEFAULT ''::character varying NOT NULL, tomato_term_acc character varying(255) DEFAULT ''::character varying NOT NULL, is_obsolete bigint DEFAULT (0)::bigint NOT NULL, is_root bigint DEFAULT (0)::bigint NOT NULL ); ALTER TABLE phenome.tomato_term OWNER TO postgres; -- -- Name: tomato_term2term; Type: TABLE; Schema: phenome; Owner: postgres -- CREATE TABLE phenome.tomato_term2term ( tomato_term2term_id integer NOT NULL, relationship_type_id bigint DEFAULT (0)::bigint NOT NULL, term1_id bigint DEFAULT (0)::bigint NOT NULL, term2_id bigint DEFAULT (0)::bigint NOT NULL, complete bigint DEFAULT (0)::bigint NOT NULL ); ALTER TABLE phenome.tomato_term2term OWNER TO postgres; -- -- Name: tomato_term2term_tomato_term2term_id_seq; Type: SEQUENCE; Schema: phenome; Owner: postgres -- CREATE SEQUENCE phenome.tomato_term2term_tomato_term2term_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE phenome.tomato_term2term_tomato_term2term_id_seq OWNER TO postgres; -- -- Name: tomato_term2term_tomato_term2term_id_seq; Type: SEQUENCE OWNED BY; Schema: phenome; Owner: postgres -- ALTER SEQUENCE phenome.tomato_term2term_tomato_term2term_id_seq OWNED BY phenome.tomato_term2term.tomato_term2term_id; -- -- Name: tomato_term_tomato_term_id_seq; Type: SEQUENCE; Schema: phenome; Owner: postgres -- CREATE SEQUENCE phenome.tomato_term_tomato_term_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE phenome.tomato_term_tomato_term_id_seq OWNER TO postgres; -- -- Name: tomato_term_tomato_term_id_seq; Type: SEQUENCE OWNED BY; Schema: phenome; Owner: postgres -- ALTER SEQUENCE phenome.tomato_term_tomato_term_id_seq OWNED BY phenome.tomato_term.tomato_term_id; -- -- Name: unit; Type: TABLE; Schema: phenome; Owner: postgres -- CREATE TABLE phenome.unit ( unit_id integer NOT NULL, name character varying NOT NULL ); ALTER TABLE phenome.unit OWNER TO postgres; -- -- Name: unit_unit_id_seq; Type: SEQUENCE; Schema: phenome; Owner: postgres -- CREATE SEQUENCE phenome.unit_unit_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE phenome.unit_unit_id_seq OWNER TO postgres; -- -- Name: unit_unit_id_seq; Type: SEQUENCE OWNED BY; Schema: phenome; Owner: postgres -- ALTER SEQUENCE phenome.unit_unit_id_seq OWNED BY phenome.unit.unit_id; -- -- Name: user_trait; Type: TABLE; Schema: phenome; Owner: postgres -- CREATE TABLE phenome.user_trait ( user_trait_id integer NOT NULL, cv_id integer, name character varying NOT NULL, definition text, dbxref_id integer, sp_person_id integer ); ALTER TABLE phenome.user_trait OWNER TO postgres; -- -- Name: user_trait_unit; Type: TABLE; Schema: phenome; Owner: postgres -- CREATE TABLE phenome.user_trait_unit ( user_trait_unit_id integer NOT NULL, user_trait_id integer NOT NULL, unit_id integer, population_id integer NOT NULL ); ALTER TABLE phenome.user_trait_unit OWNER TO postgres; -- -- Name: user_trait_unit_user_trait_unit_id_seq; Type: SEQUENCE; Schema: phenome; Owner: postgres -- CREATE SEQUENCE phenome.user_trait_unit_user_trait_unit_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE phenome.user_trait_unit_user_trait_unit_id_seq OWNER TO postgres; -- -- Name: user_trait_unit_user_trait_unit_id_seq; Type: SEQUENCE OWNED BY; Schema: phenome; Owner: postgres -- ALTER SEQUENCE phenome.user_trait_unit_user_trait_unit_id_seq OWNED BY phenome.user_trait_unit.user_trait_unit_id; -- -- Name: user_trait_user_trait_id_seq; Type: SEQUENCE; Schema: phenome; Owner: postgres -- CREATE SEQUENCE phenome.user_trait_user_trait_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE phenome.user_trait_user_trait_id_seq OWNER TO postgres; -- -- Name: user_trait_user_trait_id_seq; Type: SEQUENCE OWNED BY; Schema: phenome; Owner: postgres -- ALTER SEQUENCE phenome.user_trait_user_trait_id_seq OWNED BY phenome.user_trait.user_trait_id; -- -- Name: variant; Type: TABLE; Schema: phenome; Owner: postgres -- CREATE TABLE phenome.variant ( variant_id integer NOT NULL, locus_id integer NOT NULL, variant_name character varying(255), variant_gi integer, variant_notes text ); ALTER TABLE phenome.variant OWNER TO postgres; -- -- Name: variant_variant_id_seq; Type: SEQUENCE; Schema: phenome; Owner: postgres -- CREATE SEQUENCE phenome.variant_variant_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE phenome.variant_variant_id_seq OWNER TO postgres; -- -- Name: variant_variant_id_seq; Type: SEQUENCE OWNED BY; Schema: phenome; Owner: postgres -- ALTER SEQUENCE phenome.variant_variant_id_seq OWNED BY phenome.variant.variant_id; -- -- Name: ba_plausibility; Type: TABLE; Schema: physical; Owner: postgres -- CREATE TABLE physical.ba_plausibility ( bap_id bigint NOT NULL, bac_assoc_id bigint, map_id bigint, plausible smallint DEFAULT (0)::smallint NOT NULL ); ALTER TABLE physical.ba_plausibility OWNER TO postgres; -- -- Name: ba_plausibility_bap_id_seq; Type: SEQUENCE; Schema: physical; Owner: postgres -- CREATE SEQUENCE physical.ba_plausibility_bap_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE physical.ba_plausibility_bap_id_seq OWNER TO postgres; -- -- Name: ba_plausibility_bap_id_seq; Type: SEQUENCE OWNED BY; Schema: physical; Owner: postgres -- ALTER SEQUENCE physical.ba_plausibility_bap_id_seq OWNED BY physical.ba_plausibility.bap_id; -- -- Name: bac_associations; Type: TABLE; Schema: physical; Owner: postgres -- CREATE TABLE physical.bac_associations ( bac_assoc_id integer NOT NULL, bac_id bigint DEFAULT (0)::bigint NOT NULL, bac_contig_id bigint DEFAULT (0)::bigint NOT NULL, plausible smallint DEFAULT (0)::smallint NOT NULL ); ALTER TABLE physical.bac_associations OWNER TO postgres; -- -- Name: bac_associations_bac_assoc_id_seq; Type: SEQUENCE; Schema: physical; Owner: postgres -- CREATE SEQUENCE physical.bac_associations_bac_assoc_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE physical.bac_associations_bac_assoc_id_seq OWNER TO postgres; -- -- Name: bac_associations_bac_assoc_id_seq; Type: SEQUENCE OWNED BY; Schema: physical; Owner: postgres -- ALTER SEQUENCE physical.bac_associations_bac_assoc_id_seq OWNED BY physical.bac_associations.bac_assoc_id; -- -- Name: bac_consensus_sequences; Type: TABLE; Schema: physical; Owner: postgres -- CREATE TABLE physical.bac_consensus_sequences ( consensus_seq_id integer NOT NULL, fasta_sequence text NOT NULL, bac_id bigint DEFAULT (0)::bigint NOT NULL, tracefile character varying(64) DEFAULT ''::character varying NOT NULL, consensus_seq_name character varying(32), length bigint DEFAULT (0)::bigint NOT NULL, includes_sp6_end smallint, includes_t7_end smallint ); ALTER TABLE physical.bac_consensus_sequences OWNER TO postgres; -- -- Name: bac_consensus_sequences_consensus_seq_id_seq; Type: SEQUENCE; Schema: physical; Owner: postgres -- CREATE SEQUENCE physical.bac_consensus_sequences_consensus_seq_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE physical.bac_consensus_sequences_consensus_seq_id_seq OWNER TO postgres; -- -- Name: bac_consensus_sequences_consensus_seq_id_seq; Type: SEQUENCE OWNED BY; Schema: physical; Owner: postgres -- ALTER SEQUENCE physical.bac_consensus_sequences_consensus_seq_id_seq OWNED BY physical.bac_consensus_sequences.consensus_seq_id; -- -- Name: bac_contigs; Type: TABLE; Schema: physical; Owner: postgres -- CREATE TABLE physical.bac_contigs ( bac_contig_id integer NOT NULL, contig_name character varying(16) DEFAULT ''::character varying NOT NULL, fpc_version bigint DEFAULT (0)::bigint NOT NULL ); ALTER TABLE physical.bac_contigs OWNER TO postgres; -- -- Name: bac_contigs_bac_contig_id_seq; Type: SEQUENCE; Schema: physical; Owner: postgres -- CREATE SEQUENCE physical.bac_contigs_bac_contig_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE physical.bac_contigs_bac_contig_id_seq OWNER TO postgres; -- -- Name: bac_contigs_bac_contig_id_seq; Type: SEQUENCE OWNED BY; Schema: physical; Owner: postgres -- ALTER SEQUENCE physical.bac_contigs_bac_contig_id_seq OWNED BY physical.bac_contigs.bac_contig_id; -- -- Name: bac_end_sequences; Type: TABLE; Schema: physical; Owner: postgres -- CREATE TABLE physical.bac_end_sequences ( end_seq_id integer NOT NULL, end_id smallint DEFAULT (0)::smallint NOT NULL, fasta_sequence text NOT NULL, tracefile character varying(64) DEFAULT ''::character varying NOT NULL, length bigint DEFAULT (0)::bigint NOT NULL ); ALTER TABLE physical.bac_end_sequences OWNER TO postgres; -- -- Name: bac_end_sequences_end_seq_id_seq; Type: SEQUENCE; Schema: physical; Owner: postgres -- CREATE SEQUENCE physical.bac_end_sequences_end_seq_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE physical.bac_end_sequences_end_seq_id_seq OWNER TO postgres; -- -- Name: bac_end_sequences_end_seq_id_seq; Type: SEQUENCE OWNED BY; Schema: physical; Owner: postgres -- ALTER SEQUENCE physical.bac_end_sequences_end_seq_id_seq OWNED BY physical.bac_end_sequences.end_seq_id; -- -- Name: bac_marker_matches; Type: TABLE; Schema: physical; Owner: postgres -- CREATE TABLE physical.bac_marker_matches ( marker_id integer, alias text, confidence_id integer, lg_id integer, lg_name text, lg_order integer, "position" numeric(8,5), bac_id integer, arizona_clone_name character varying(32), cornell_clone_name character varying(16), estimated_length bigint, number_of_bacs bigint, contig_name character varying(16), fpc_version bigint, association_type text, CONSTRAINT bac_marker_matches_association_type_check CHECK (((association_type = 'computational'::text) OR (association_type = 'overgo'::text) OR (association_type = 'manual'::text))) ); ALTER TABLE physical.bac_marker_matches OWNER TO postgres; -- -- Name: bacs; Type: TABLE; Schema: physical; Owner: postgres -- CREATE TABLE physical.bacs ( bac_id integer NOT NULL, cornell_clone_name character varying(16) DEFAULT ''::character varying NOT NULL, arizona_clone_name character varying(32) DEFAULT ''::character varying NOT NULL, species_id bigint DEFAULT (0)::bigint NOT NULL, sp6_end_seq_id bigint, t7_end_seq_id bigint, genbank_accession character varying(32), bad_clone smallint DEFAULT (0)::smallint NOT NULL, estimated_length bigint, library_id integer ); ALTER TABLE physical.bacs OWNER TO postgres; -- -- Name: bacs_bac_id_seq; Type: SEQUENCE; Schema: physical; Owner: postgres -- CREATE SEQUENCE physical.bacs_bac_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE physical.bacs_bac_id_seq OWNER TO postgres; -- -- Name: bacs_bac_id_seq; Type: SEQUENCE OWNED BY; Schema: physical; Owner: postgres -- ALTER SEQUENCE physical.bacs_bac_id_seq OWNED BY physical.bacs.bac_id; -- -- Name: computational_associations; Type: TABLE; Schema: physical; Owner: postgres -- CREATE TABLE physical.computational_associations ( computational_assoc_id integer NOT NULL, marker_id integer NOT NULL, clone_id integer NOT NULL, e_value double precision, q_start bigint, q_end bigint, s_start bigint, s_end bigint, identity double precision, score double precision, parameters text ); ALTER TABLE physical.computational_associations OWNER TO postgres; -- -- Name: computational_associations_computational_assoc_id_seq; Type: SEQUENCE; Schema: physical; Owner: postgres -- CREATE SEQUENCE physical.computational_associations_computational_assoc_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE physical.computational_associations_computational_assoc_id_seq OWNER TO postgres; -- -- Name: computational_associations_computational_assoc_id_seq; Type: SEQUENCE OWNED BY; Schema: physical; Owner: postgres -- ALTER SEQUENCE physical.computational_associations_computational_assoc_id_seq OWNED BY physical.computational_associations.computational_assoc_id; -- -- Name: contig_sizes; Type: TABLE; Schema: physical; Owner: postgres -- CREATE TABLE physical.contig_sizes ( contig_size_id bigint NOT NULL, bac_contig_id bigint, contig_size double precision ); ALTER TABLE physical.contig_sizes OWNER TO postgres; -- -- Name: contig_sizes_contig_size_id_seq; Type: SEQUENCE; Schema: physical; Owner: postgres -- CREATE SEQUENCE physical.contig_sizes_contig_size_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE physical.contig_sizes_contig_size_id_seq OWNER TO postgres; -- -- Name: contig_sizes_contig_size_id_seq; Type: SEQUENCE OWNED BY; Schema: physical; Owner: postgres -- ALTER SEQUENCE physical.contig_sizes_contig_size_id_seq OWNED BY physical.contig_sizes.contig_size_id; -- -- Name: deprecated_probes; Type: TABLE; Schema: physical; Owner: postgres -- CREATE TABLE physical.deprecated_probes ( dp_id integer NOT NULL, overgo_version bigint, overgo_probe_id bigint ); ALTER TABLE physical.deprecated_probes OWNER TO postgres; -- -- Name: deprecated_probes_dp_id_seq; Type: SEQUENCE; Schema: physical; Owner: postgres -- CREATE SEQUENCE physical.deprecated_probes_dp_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE physical.deprecated_probes_dp_id_seq OWNER TO postgres; -- -- Name: deprecated_probes_dp_id_seq; Type: SEQUENCE OWNED BY; Schema: physical; Owner: postgres -- ALTER SEQUENCE physical.deprecated_probes_dp_id_seq OWNED BY physical.deprecated_probes.dp_id; -- -- Name: fpc_data; Type: TABLE; Schema: physical; Owner: postgres -- CREATE TABLE physical.fpc_data ( fpc_datum_id integer NOT NULL, bac_id bigint DEFAULT (0)::bigint NOT NULL, bac_name character varying(32) DEFAULT ''::character varying NOT NULL, gel_number character varying(16), map_ctg_left character varying(16), map_ctg_right character varying(16), map_ends_left double precision, map_ends_right double precision, creation_date date, modification_date date, bac_contig_id_left integer, bac_contig_id_right integer ); ALTER TABLE physical.fpc_data OWNER TO postgres; -- -- Name: fpc_data_fpc_datum_id_seq; Type: SEQUENCE; Schema: physical; Owner: postgres -- CREATE SEQUENCE physical.fpc_data_fpc_datum_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE physical.fpc_data_fpc_datum_id_seq OWNER TO postgres; -- -- Name: fpc_data_fpc_datum_id_seq; Type: SEQUENCE OWNED BY; Schema: physical; Owner: postgres -- ALTER SEQUENCE physical.fpc_data_fpc_datum_id_seq OWNED BY physical.fpc_data.fpc_datum_id; -- -- Name: fpc_version; Type: TABLE; Schema: physical; Owner: postgres -- CREATE TABLE physical.fpc_version ( fpc_version integer NOT NULL, updated_on date DEFAULT ('now'::text)::date NOT NULL, updated_by bigint DEFAULT (0)::bigint NOT NULL, fpcfile character varying(32), current smallint, comments text ); ALTER TABLE physical.fpc_version OWNER TO postgres; -- -- Name: fpc_version_fpc_version_seq; Type: SEQUENCE; Schema: physical; Owner: postgres -- CREATE SEQUENCE physical.fpc_version_fpc_version_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE physical.fpc_version_fpc_version_seq OWNER TO postgres; -- -- Name: fpc_version_fpc_version_seq; Type: SEQUENCE OWNED BY; Schema: physical; Owner: postgres -- ALTER SEQUENCE physical.fpc_version_fpc_version_seq OWNED BY physical.fpc_version.fpc_version; -- -- Name: manual_associations; Type: TABLE; Schema: physical; Owner: postgres -- CREATE TABLE physical.manual_associations ( manual_assoc_id integer NOT NULL, marker_id integer NOT NULL, clone_id integer NOT NULL, pubmed_id integer, sp_person_id integer, comment text ); ALTER TABLE physical.manual_associations OWNER TO postgres; -- -- Name: manual_associations_manual_assoc_id_seq; Type: SEQUENCE; Schema: physical; Owner: postgres -- CREATE SEQUENCE physical.manual_associations_manual_assoc_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE physical.manual_associations_manual_assoc_id_seq OWNER TO postgres; -- -- Name: manual_associations_manual_assoc_id_seq; Type: SEQUENCE OWNED BY; Schema: physical; Owner: postgres -- ALTER SEQUENCE physical.manual_associations_manual_assoc_id_seq OWNED BY physical.manual_associations.manual_assoc_id; -- -- Name: oa_plausibility; Type: TABLE; Schema: physical; Owner: postgres -- CREATE TABLE physical.oa_plausibility ( oap_id bigint NOT NULL, overgo_assoc_id bigint, map_id bigint, plausible smallint DEFAULT (0)::smallint NOT NULL ); ALTER TABLE physical.oa_plausibility OWNER TO postgres; -- -- Name: oa_plausibility_oap_id_seq; Type: SEQUENCE; Schema: physical; Owner: postgres -- CREATE SEQUENCE physical.oa_plausibility_oap_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE physical.oa_plausibility_oap_id_seq OWNER TO postgres; -- -- Name: oa_plausibility_oap_id_seq; Type: SEQUENCE OWNED BY; Schema: physical; Owner: postgres -- ALTER SEQUENCE physical.oa_plausibility_oap_id_seq OWNED BY physical.oa_plausibility.oap_id; -- -- Name: overgo_associations; Type: TABLE; Schema: physical; Owner: postgres -- CREATE TABLE physical.overgo_associations ( overgo_assoc_id integer NOT NULL, overgo_version bigint, overgo_probe_id bigint, bac_id bigint, plausible smallint DEFAULT (0)::smallint NOT NULL ); ALTER TABLE physical.overgo_associations OWNER TO postgres; -- -- Name: overgo_associations_overgo_assoc_id_seq; Type: SEQUENCE; Schema: physical; Owner: postgres -- CREATE SEQUENCE physical.overgo_associations_overgo_assoc_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE physical.overgo_associations_overgo_assoc_id_seq OWNER TO postgres; -- -- Name: overgo_associations_overgo_assoc_id_seq; Type: SEQUENCE OWNED BY; Schema: physical; Owner: postgres -- ALTER SEQUENCE physical.overgo_associations_overgo_assoc_id_seq OWNED BY physical.overgo_associations.overgo_assoc_id; -- -- Name: overgo_plates; Type: TABLE; Schema: physical; Owner: postgres -- CREATE TABLE physical.overgo_plates ( plate_id integer NOT NULL, plate_number bigint DEFAULT (0)::bigint NOT NULL, row_max character varying(4) DEFAULT ''::character varying NOT NULL, col_max bigint DEFAULT (0)::bigint NOT NULL, plate_size bigint, empty_wells bigint DEFAULT (0)::bigint NOT NULL ); ALTER TABLE physical.overgo_plates OWNER TO postgres; -- -- Name: overgo_plates_plate_id_seq; Type: SEQUENCE; Schema: physical; Owner: postgres -- CREATE SEQUENCE physical.overgo_plates_plate_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE physical.overgo_plates_plate_id_seq OWNER TO postgres; -- -- Name: overgo_plates_plate_id_seq; Type: SEQUENCE OWNED BY; Schema: physical; Owner: postgres -- ALTER SEQUENCE physical.overgo_plates_plate_id_seq OWNED BY physical.overgo_plates.plate_id; -- -- Name: overgo_results; Type: TABLE; Schema: physical; Owner: postgres -- CREATE TABLE physical.overgo_results ( result_id integer NOT NULL, overgo_plate_id bigint, overgo_pool character(2), bac_id bigint ); ALTER TABLE physical.overgo_results OWNER TO postgres; -- -- Name: overgo_results_result_id_seq; Type: SEQUENCE; Schema: physical; Owner: postgres -- CREATE SEQUENCE physical.overgo_results_result_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE physical.overgo_results_result_id_seq OWNER TO postgres; -- -- Name: overgo_results_result_id_seq; Type: SEQUENCE OWNED BY; Schema: physical; Owner: postgres -- ALTER SEQUENCE physical.overgo_results_result_id_seq OWNED BY physical.overgo_results.result_id; -- -- Name: overgo_version; Type: TABLE; Schema: physical; Owner: postgres -- CREATE TABLE physical.overgo_version ( overgo_version integer NOT NULL, updated_on timestamp(6) without time zone DEFAULT ('now'::text)::timestamp(6) with time zone NOT NULL, updated_by bigint, current smallint, comments text ); ALTER TABLE physical.overgo_version OWNER TO postgres; -- -- Name: overgo_version_overgo_version_seq; Type: SEQUENCE; Schema: physical; Owner: postgres -- CREATE SEQUENCE physical.overgo_version_overgo_version_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE physical.overgo_version_overgo_version_seq OWNER TO postgres; -- -- Name: overgo_version_overgo_version_seq; Type: SEQUENCE OWNED BY; Schema: physical; Owner: postgres -- ALTER SEQUENCE physical.overgo_version_overgo_version_seq OWNED BY physical.overgo_version.overgo_version; -- -- Name: plausible_bacs_in_all_contigs; Type: TABLE; Schema: physical; Owner: postgres -- CREATE TABLE physical.plausible_bacs_in_all_contigs ( overgo_assoc_id integer, overgo_version bigint, overgo_probe_id bigint, bac_id bigint, overgo_plausible smallint, overgo_map bigint, bac_assoc_id integer, bac_contig_id integer, contig_name character varying(16), fpc_version bigint, bac_plausible smallint, bac_map bigint ); ALTER TABLE physical.plausible_bacs_in_all_contigs OWNER TO postgres; -- -- Name: probe_markers; Type: TABLE; Schema: physical; Owner: postgres -- CREATE TABLE physical.probe_markers ( overgo_probe_id integer NOT NULL, overgo_plate_id bigint, overgo_plate_row character varying(4), overgo_plate_col bigint, marker_id bigint, overgo_seq_a character varying(30), overgo_seq_b character varying(30), overgo_seq_ab character varying(30), marker_seq text ); ALTER TABLE physical.probe_markers OWNER TO postgres; -- -- Name: probe_markers_overgo_probe_id_seq; Type: SEQUENCE; Schema: physical; Owner: postgres -- CREATE SEQUENCE physical.probe_markers_overgo_probe_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE physical.probe_markers_overgo_probe_id_seq OWNER TO postgres; -- -- Name: probe_markers_overgo_probe_id_seq; Type: SEQUENCE OWNED BY; Schema: physical; Owner: postgres -- ALTER SEQUENCE physical.probe_markers_overgo_probe_id_seq OWNED BY physical.probe_markers.overgo_probe_id; -- -- Name: species; Type: TABLE; Schema: physical; Owner: postgres -- CREATE TABLE physical.species ( species_id integer NOT NULL, short_name character varying(32), long_name character varying(64) ); ALTER TABLE physical.species OWNER TO postgres; -- -- Name: species_species_id_seq; Type: SEQUENCE; Schema: physical; Owner: postgres -- CREATE SEQUENCE physical.species_species_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE physical.species_species_id_seq OWNER TO postgres; -- -- Name: species_species_id_seq; Type: SEQUENCE OWNED BY; Schema: physical; Owner: postgres -- ALTER SEQUENCE physical.species_species_id_seq OWNED BY physical.species.species_id; -- -- Name: tentative_association_conflict_groups; Type: TABLE; Schema: physical; Owner: postgres -- CREATE TABLE physical.tentative_association_conflict_groups ( tacg_id integer NOT NULL, conflict_group_id bigint, tentative_assoc_id bigint ); ALTER TABLE physical.tentative_association_conflict_groups OWNER TO postgres; -- -- Name: tentative_association_conflict_groups_tacg_id_seq; Type: SEQUENCE; Schema: physical; Owner: postgres -- CREATE SEQUENCE physical.tentative_association_conflict_groups_tacg_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE physical.tentative_association_conflict_groups_tacg_id_seq OWNER TO postgres; -- -- Name: tentative_association_conflict_groups_tacg_id_seq; Type: SEQUENCE OWNED BY; Schema: physical; Owner: postgres -- ALTER SEQUENCE physical.tentative_association_conflict_groups_tacg_id_seq OWNED BY physical.tentative_association_conflict_groups.tacg_id; -- -- Name: tentative_overgo_associations; Type: TABLE; Schema: physical; Owner: postgres -- CREATE TABLE physical.tentative_overgo_associations ( tentative_assoc_id integer NOT NULL, overgo_version bigint, overgo_probe_id bigint, bac_id bigint ); ALTER TABLE physical.tentative_overgo_associations OWNER TO postgres; -- -- Name: tentative_overgo_associations_tentative_assoc_id_seq; Type: SEQUENCE; Schema: physical; Owner: postgres -- CREATE SEQUENCE physical.tentative_overgo_associations_tentative_assoc_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE physical.tentative_overgo_associations_tentative_assoc_id_seq OWNER TO postgres; -- -- Name: tentative_overgo_associations_tentative_assoc_id_seq; Type: SEQUENCE OWNED BY; Schema: physical; Owner: postgres -- ALTER SEQUENCE physical.tentative_overgo_associations_tentative_assoc_id_seq OWNED BY physical.tentative_overgo_associations.tentative_assoc_id; -- -- Name: users; Type: TABLE; Schema: physical; Owner: postgres -- CREATE TABLE physical.users ( user_id integer NOT NULL, full_name character varying(64) DEFAULT ''::character varying NOT NULL, net_id character varying(16) DEFAULT ''::character varying NOT NULL ); ALTER TABLE physical.users OWNER TO postgres; -- -- Name: users_user_id_seq; Type: SEQUENCE; Schema: physical; Owner: postgres -- CREATE SEQUENCE physical.users_user_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE physical.users_user_id_seq OWNER TO postgres; -- -- Name: users_user_id_seq; Type: SEQUENCE OWNED BY; Schema: physical; Owner: postgres -- ALTER SEQUENCE physical.users_user_id_seq OWNED BY physical.users.user_id; -- -- Name: stock; Type: TABLE; Schema: public; Owner: postgres -- CREATE TABLE public.stock ( stock_id integer NOT NULL, dbxref_id integer, organism_id integer, name character varying(255), uniquename text NOT NULL, description text, type_id integer NOT NULL, is_obsolete boolean DEFAULT false NOT NULL, create_date timestamp without time zone DEFAULT now() ); ALTER TABLE public.stock OWNER TO postgres; -- -- Name: TABLE stock; Type: COMMENT; Schema: public; Owner: postgres -- COMMENT ON TABLE public.stock IS 'Any stock can be globally identified by the combination of organism, uniquename and stock type. A stock is the physical entities, either living or preserved, held by collections. Stocks belong to a collection; they have IDs, type, organism, description and may have a genotype.'; -- -- Name: COLUMN stock.dbxref_id; Type: COMMENT; Schema: public; Owner: postgres -- COMMENT ON COLUMN public.stock.dbxref_id IS 'The dbxref_id is an optional primary stable identifier for this stock. Secondary indentifiers and external dbxrefs go in table: stock_dbxref.'; -- -- Name: COLUMN stock.organism_id; Type: COMMENT; Schema: public; Owner: postgres -- COMMENT ON COLUMN public.stock.organism_id IS 'The organism_id is the organism to which the stock belongs. This column should only be left blank if the organism cannot be determined.'; -- -- Name: COLUMN stock.name; Type: COMMENT; Schema: public; Owner: postgres -- COMMENT ON COLUMN public.stock.name IS 'The name is a human-readable local name for a stock.'; -- -- Name: COLUMN stock.description; Type: COMMENT; Schema: public; Owner: postgres -- COMMENT ON COLUMN public.stock.description IS 'The description is the genetic description provided in the stock list.'; -- -- Name: COLUMN stock.type_id; Type: COMMENT; Schema: public; Owner: postgres -- COMMENT ON COLUMN public.stock.type_id IS 'The type_id foreign key links to a controlled vocabulary of stock types. The would include living stock, genomic DNA, preserved specimen. Secondary cvterms for stocks would go in stock_cvterm.'; -- -- Name: accessions; Type: MATERIALIZED VIEW; Schema: public; Owner: web_usr -- CREATE MATERIALIZED VIEW public.accessions AS SELECT stock.stock_id AS accession_id, stock.uniquename AS accession_name FROM public.stock WHERE ((stock.type_id = ( SELECT cvterm.cvterm_id FROM public.cvterm WHERE ((cvterm.name)::text = 'accession'::text))) AND (stock.is_obsolete = false)) GROUP BY stock.stock_id, stock.uniquename WITH NO DATA; ALTER TABLE public.accessions OWNER TO web_usr; -- -- Name: nd_experiment; Type: TABLE; Schema: public; Owner: postgres -- CREATE TABLE public.nd_experiment ( nd_experiment_id integer NOT NULL, nd_geolocation_id integer NOT NULL, type_id integer NOT NULL, create_date timestamp without time zone DEFAULT now() ); ALTER TABLE public.nd_experiment OWNER TO postgres; -- -- Name: nd_experiment_phenotype; Type: TABLE; Schema: public; Owner: postgres -- CREATE TABLE public.nd_experiment_phenotype ( nd_experiment_phenotype_id integer NOT NULL, nd_experiment_id integer NOT NULL, phenotype_id integer NOT NULL ); ALTER TABLE public.nd_experiment_phenotype OWNER TO postgres; -- -- Name: TABLE nd_experiment_phenotype; Type: COMMENT; Schema: public; Owner: postgres -- COMMENT ON TABLE public.nd_experiment_phenotype IS 'Linking table: experiments to the phenotypes they produce. There is a one-to-one relationship between an experiment and a phenotype since each phenotype record should point to one experiment. Add a new experiment_id for each phenotype record.'; -- -- Name: nd_experiment_project; Type: TABLE; Schema: public; Owner: postgres -- CREATE TABLE public.nd_experiment_project ( nd_experiment_project_id integer NOT NULL, project_id integer NOT NULL, nd_experiment_id integer NOT NULL ); ALTER TABLE public.nd_experiment_project OWNER TO postgres; -- -- Name: nd_experiment_stock; Type: TABLE; Schema: public; Owner: postgres -- CREATE TABLE public.nd_experiment_stock ( nd_experiment_stock_id integer NOT NULL, nd_experiment_id integer NOT NULL, stock_id integer NOT NULL, type_id integer NOT NULL ); ALTER TABLE public.nd_experiment_stock OWNER TO postgres; -- -- Name: TABLE nd_experiment_stock; Type: COMMENT; Schema: public; Owner: postgres -- COMMENT ON TABLE public.nd_experiment_stock IS 'Part of a stock or a clone of a stock that is used in an experiment'; -- -- Name: COLUMN nd_experiment_stock.stock_id; Type: COMMENT; Schema: public; Owner: postgres -- COMMENT ON COLUMN public.nd_experiment_stock.stock_id IS 'stock used in the extraction or the corresponding stock for the clone'; -- -- Name: nd_geolocation; Type: TABLE; Schema: public; Owner: postgres -- CREATE TABLE public.nd_geolocation ( nd_geolocation_id integer NOT NULL, description character varying(255), latitude real, longitude real, geodetic_datum character varying(32), altitude real ); ALTER TABLE public.nd_geolocation OWNER TO postgres; -- -- Name: TABLE nd_geolocation; Type: COMMENT; Schema: public; Owner: postgres -- COMMENT ON TABLE public.nd_geolocation IS 'The geo-referencable location of the stock. NOTE: This entity is subject to change as a more general and possibly more OpenGIS-compliant geolocation module may be introduced into Chado.'; -- -- Name: COLUMN nd_geolocation.description; Type: COMMENT; Schema: public; Owner: postgres -- COMMENT ON COLUMN public.nd_geolocation.description IS 'A textual representation of the location, if this is the original georeference. Optional if the original georeference is available in lat/long coordinates.'; -- -- Name: COLUMN nd_geolocation.latitude; Type: COMMENT; Schema: public; Owner: postgres -- COMMENT ON COLUMN public.nd_geolocation.latitude IS 'The decimal latitude coordinate of the georeference, using positive and negative sign to indicate N and S, respectively.'; -- -- Name: COLUMN nd_geolocation.longitude; Type: COMMENT; Schema: public; Owner: postgres -- COMMENT ON COLUMN public.nd_geolocation.longitude IS 'The decimal longitude coordinate of the georeference, using positive and negative sign to indicate E and W, respectively.'; -- -- Name: COLUMN nd_geolocation.geodetic_datum; Type: COMMENT; Schema: public; Owner: postgres -- COMMENT ON COLUMN public.nd_geolocation.geodetic_datum IS 'The geodetic system on which the geo-reference coordinates are based. For geo-references measured between 1984 and 2010, this will typically be WGS84.'; -- -- Name: COLUMN nd_geolocation.altitude; Type: COMMENT; Schema: public; Owner: postgres -- COMMENT ON COLUMN public.nd_geolocation.altitude IS 'The altitude (elevation) of the location in meters. If the altitude is only known as a range, this is the average, and altitude_dev will hold half of the width of the range.'; -- -- Name: phenotype; Type: TABLE; Schema: public; Owner: postgres -- CREATE TABLE public.phenotype ( phenotype_id integer NOT NULL, uniquename text NOT NULL, observable_id integer, attr_id integer, value character varying, cvalue_id integer, assay_id integer, individual_id integer, sp_person_id integer, name text, create_date timestamp without time zone DEFAULT now(), collect_date timestamp without time zone, operator character varying(128) ); ALTER TABLE public.phenotype OWNER TO postgres; -- -- Name: project; Type: TABLE; Schema: public; Owner: postgres -- CREATE TABLE public.project ( project_id integer NOT NULL, name character varying(255) NOT NULL, description character varying(255) NOT NULL, create_date timestamp without time zone DEFAULT now() ); ALTER TABLE public.project OWNER TO postgres; -- -- Name: project_relationship; Type: TABLE; Schema: public; Owner: postgres -- CREATE TABLE public.project_relationship ( project_relationship_id integer NOT NULL, subject_project_id integer NOT NULL, object_project_id integer NOT NULL, type_id integer NOT NULL, create_date timestamp without time zone DEFAULT now() ); ALTER TABLE public.project_relationship OWNER TO postgres; -- -- Name: TABLE project_relationship; Type: COMMENT; Schema: public; Owner: postgres -- COMMENT ON TABLE public.project_relationship IS 'A project can be composed of several smaller scale projects'; -- -- Name: COLUMN project_relationship.type_id; Type: COMMENT; Schema: public; Owner: postgres -- COMMENT ON COLUMN public.project_relationship.type_id IS 'The type of relationship being stated, such as "is part of".'; -- -- Name: projectprop; Type: TABLE; Schema: public; Owner: postgres -- CREATE TABLE public.projectprop ( projectprop_id integer NOT NULL, project_id integer NOT NULL, type_id integer NOT NULL, value text, rank integer DEFAULT 0 NOT NULL ); ALTER TABLE public.projectprop OWNER TO postgres; -- -- Name: stock_relationship; Type: TABLE; Schema: public; Owner: postgres -- CREATE TABLE public.stock_relationship ( stock_relationship_id integer NOT NULL, subject_id integer NOT NULL, object_id integer NOT NULL, type_id integer NOT NULL, value text, rank integer DEFAULT 0 NOT NULL, create_date timestamp without time zone DEFAULT now() ); ALTER TABLE public.stock_relationship OWNER TO postgres; -- -- Name: COLUMN stock_relationship.subject_id; Type: COMMENT; Schema: public; Owner: postgres -- COMMENT ON COLUMN public.stock_relationship.subject_id IS 'stock_relationship.subject_id is the subject of the subj-predicate-obj sentence. This is typically the substock.'; -- -- Name: COLUMN stock_relationship.object_id; Type: COMMENT; Schema: public; Owner: postgres -- COMMENT ON COLUMN public.stock_relationship.object_id IS 'stock_relationship.object_id is the object of the subj-predicate-obj sentence. This is typically the container stock.'; -- -- Name: COLUMN stock_relationship.type_id; Type: COMMENT; Schema: public; Owner: postgres -- COMMENT ON COLUMN public.stock_relationship.type_id IS 'stock_relationship.type_id is relationship type between subject and object. This is a cvterm, typically from the OBO relationship ontology, although other relationship types are allowed.'; -- -- Name: COLUMN stock_relationship.value; Type: COMMENT; Schema: public; Owner: postgres -- COMMENT ON COLUMN public.stock_relationship.value IS 'stock_relationship.value is for additional notes or comments.'; -- -- Name: COLUMN stock_relationship.rank; Type: COMMENT; Schema: public; Owner: postgres -- COMMENT ON COLUMN public.stock_relationship.rank IS 'stock_relationship.rank is the ordering of subject stocks with respect to the object stock may be important where rank is used to order these; starts from zero.'; -- -- Name: materialized_phenoview; Type: MATERIALIZED VIEW; Schema: public; Owner: web_usr -- CREATE MATERIALIZED VIEW public.materialized_phenoview AS SELECT breeding_program.project_id AS breeding_program_id, nd_experiment.nd_geolocation_id AS location_id, projectprop.value AS year_id, trial.project_id AS trial_id, accession.stock_id AS accession_id, seedlot.stock_id AS seedlot_id, stock.stock_id, phenotype.phenotype_id, phenotype.cvalue_id AS trait_id FROM ((((((((((((((public.stock accession LEFT JOIN public.stock_relationship ON (((accession.stock_id = stock_relationship.object_id) AND (stock_relationship.type_id IN ( SELECT cvterm.cvterm_id FROM public.cvterm WHERE (((cvterm.name)::text = 'plot_of'::text) OR ((cvterm.name)::text = 'plant_of'::text) OR ((cvterm.name)::text = 'analysis_of'::text))))))) LEFT JOIN public.stock ON (((stock_relationship.subject_id = stock.stock_id) AND (stock.type_id IN ( SELECT cvterm.cvterm_id FROM public.cvterm WHERE (((cvterm.name)::text = 'plot'::text) OR ((cvterm.name)::text = 'plant'::text) OR ((cvterm.name)::text = 'analysis_instance'::text))))))) LEFT JOIN public.stock_relationship seedlot_relationship ON (((stock.stock_id = seedlot_relationship.subject_id) AND (seedlot_relationship.type_id IN ( SELECT cvterm.cvterm_id FROM public.cvterm WHERE ((cvterm.name)::text = 'seed transaction'::text)))))) LEFT JOIN public.stock seedlot ON (((seedlot_relationship.object_id = seedlot.stock_id) AND (seedlot.type_id IN ( SELECT cvterm.cvterm_id FROM public.cvterm WHERE ((cvterm.name)::text = 'seedlot'::text)))))) LEFT JOIN public.nd_experiment_stock ON (((stock.stock_id = nd_experiment_stock.stock_id) AND (nd_experiment_stock.type_id IN ( SELECT cvterm.cvterm_id FROM public.cvterm WHERE ((cvterm.name)::text = ANY (ARRAY[('phenotyping_experiment'::character varying)::text, ('field_layout'::character varying)::text, ('analysis_experiment'::character varying)::text]))))))) LEFT JOIN public.nd_experiment ON (((nd_experiment_stock.nd_experiment_id = nd_experiment.nd_experiment_id) AND (nd_experiment.type_id IN ( SELECT cvterm.cvterm_id FROM public.cvterm WHERE ((cvterm.name)::text = ANY (ARRAY[('phenotyping_experiment'::character varying)::text, ('field_layout'::character varying)::text, ('analysis_experiment'::character varying)::text]))))))) FULL JOIN public.nd_geolocation ON ((nd_experiment.nd_geolocation_id = nd_geolocation.nd_geolocation_id))) LEFT JOIN public.nd_experiment_project ON ((nd_experiment_stock.nd_experiment_id = nd_experiment_project.nd_experiment_id))) FULL JOIN public.project trial ON ((nd_experiment_project.project_id = trial.project_id))) LEFT JOIN public.project_relationship ON (((trial.project_id = project_relationship.subject_project_id) AND (project_relationship.type_id = ( SELECT cvterm.cvterm_id FROM public.cvterm WHERE ((cvterm.name)::text = 'breeding_program_trial_relationship'::text)))))) FULL JOIN public.project breeding_program ON ((project_relationship.object_project_id = breeding_program.project_id))) LEFT JOIN public.projectprop ON (((trial.project_id = projectprop.project_id) AND (projectprop.type_id = ( SELECT cvterm.cvterm_id FROM public.cvterm WHERE ((cvterm.name)::text = 'project year'::text)))))) LEFT JOIN public.nd_experiment_phenotype ON ((nd_experiment_stock.nd_experiment_id = nd_experiment_phenotype.nd_experiment_id))) LEFT JOIN public.phenotype ON ((nd_experiment_phenotype.phenotype_id = phenotype.phenotype_id))) WHERE (accession.type_id = ( SELECT cvterm.cvterm_id FROM public.cvterm WHERE ((cvterm.name)::text = 'accession'::text))) ORDER BY breeding_program.project_id, nd_experiment.nd_geolocation_id, trial.project_id, accession.stock_id, seedlot.stock_id, stock.stock_id, phenotype.phenotype_id, phenotype.cvalue_id WITH NO DATA; ALTER TABLE public.materialized_phenoview OWNER TO web_usr; -- -- Name: accessionsxbreeding_programs; Type: MATERIALIZED VIEW; Schema: public; Owner: web_usr -- CREATE MATERIALIZED VIEW public.accessionsxbreeding_programs AS SELECT materialized_phenoview.accession_id, materialized_phenoview.breeding_program_id FROM public.materialized_phenoview GROUP BY materialized_phenoview.accession_id, materialized_phenoview.breeding_program_id WITH NO DATA; ALTER TABLE public.accessionsxbreeding_programs OWNER TO web_usr; -- -- Name: nd_experiment_genotype; Type: TABLE; Schema: public; Owner: postgres -- CREATE TABLE public.nd_experiment_genotype ( nd_experiment_genotype_id integer NOT NULL, nd_experiment_id integer NOT NULL, genotype_id integer NOT NULL ); ALTER TABLE public.nd_experiment_genotype OWNER TO postgres; -- -- Name: TABLE nd_experiment_genotype; Type: COMMENT; Schema: public; Owner: postgres -- COMMENT ON TABLE public.nd_experiment_genotype IS 'Linking table: experiments to the genotypes they produce. There is a one-to-one relationship between an experiment and a genotype since each genotype record should point to one experiment. Add a new experiment_id for each genotype record.'; -- -- Name: nd_experiment_protocol; Type: TABLE; Schema: public; Owner: postgres -- CREATE TABLE public.nd_experiment_protocol ( nd_experiment_protocol_id integer NOT NULL, nd_experiment_id integer NOT NULL, nd_protocol_id integer NOT NULL ); ALTER TABLE public.nd_experiment_protocol OWNER TO postgres; -- -- Name: TABLE nd_experiment_protocol; Type: COMMENT; Schema: public; Owner: postgres -- COMMENT ON TABLE public.nd_experiment_protocol IS 'Linking table: experiments to the protocols they involve.'; -- -- Name: nd_protocol; Type: TABLE; Schema: public; Owner: postgres -- CREATE TABLE public.nd_protocol ( nd_protocol_id integer NOT NULL, name character varying(255) NOT NULL, type_id integer NOT NULL, create_date timestamp without time zone DEFAULT now(), description character varying(255) DEFAULT NULL::character varying ); ALTER TABLE public.nd_protocol OWNER TO postgres; -- -- Name: TABLE nd_protocol; Type: COMMENT; Schema: public; Owner: postgres -- COMMENT ON TABLE public.nd_protocol IS 'A protocol can be anything that is done as part of the experiment.'; -- -- Name: COLUMN nd_protocol.name; Type: COMMENT; Schema: public; Owner: postgres -- COMMENT ON COLUMN public.nd_protocol.name IS 'The protocol name.'; -- -- Name: materialized_genoview; Type: MATERIALIZED VIEW; Schema: public; Owner: web_usr -- CREATE MATERIALIZED VIEW public.materialized_genoview AS SELECT COALESCE(stock_relationship.object_id, accession.stock_id) AS accession_id, COALESCE(stock_type.name, 'accession'::character varying) AS stock_type, COALESCE(nd_experiment_protocol.nd_protocol_id, nd_experiment_protocol_accession.nd_protocol_id) AS genotyping_protocol_id, COALESCE(nd_experiment_genotype.genotype_id, nd_experiment_genotype_accession.genotype_id) AS genotype_id FROM (((((((((((public.stock accession LEFT JOIN public.stock_relationship ON (((accession.stock_id = stock_relationship.object_id) AND (stock_relationship.type_id IN ( SELECT cvterm.cvterm_id FROM public.cvterm WHERE ((cvterm.name)::text = 'tissue_sample_of'::text)))))) LEFT JOIN public.stock ON (((stock_relationship.subject_id = stock.stock_id) AND (stock.type_id IN ( SELECT cvterm.cvterm_id FROM public.cvterm WHERE ((cvterm.name)::text = 'tissue_sample'::text)))))) LEFT JOIN public.cvterm stock_type ON ((stock_type.cvterm_id = stock.type_id))) LEFT JOIN public.nd_experiment_stock ON ((stock.stock_id = nd_experiment_stock.stock_id))) LEFT JOIN public.nd_experiment_protocol ON ((nd_experiment_stock.nd_experiment_id = nd_experiment_protocol.nd_experiment_id))) LEFT JOIN public.nd_protocol ON ((nd_experiment_protocol.nd_protocol_id = nd_protocol.nd_protocol_id))) LEFT JOIN public.nd_experiment_genotype ON ((nd_experiment_stock.nd_experiment_id = nd_experiment_genotype.nd_experiment_id))) LEFT JOIN public.nd_experiment_stock nd_experiment_stock_accession ON ((accession.stock_id = nd_experiment_stock_accession.stock_id))) LEFT JOIN public.nd_experiment_protocol nd_experiment_protocol_accession ON ((nd_experiment_stock_accession.nd_experiment_id = nd_experiment_protocol_accession.nd_experiment_id))) LEFT JOIN public.nd_protocol nd_protocol_accession ON ((nd_experiment_protocol_accession.nd_protocol_id = nd_protocol_accession.nd_protocol_id))) LEFT JOIN public.nd_experiment_genotype nd_experiment_genotype_accession ON ((nd_experiment_stock_accession.nd_experiment_id = nd_experiment_genotype_accession.nd_experiment_id))) WHERE ((accession.type_id IN ( SELECT cvterm.cvterm_id FROM public.cvterm WHERE ((cvterm.name)::text = 'accession'::text))) AND ((nd_experiment_genotype.genotype_id IS NOT NULL) OR (nd_experiment_genotype_accession.genotype_id IS NOT NULL))) GROUP BY COALESCE(stock_relationship.object_id, accession.stock_id), COALESCE(stock_type.name, 'accession'::character varying), COALESCE(nd_experiment_protocol.nd_protocol_id, nd_experiment_protocol_accession.nd_protocol_id), COALESCE(nd_experiment_genotype.genotype_id, nd_experiment_genotype_accession.genotype_id) WITH NO DATA; ALTER TABLE public.materialized_genoview OWNER TO web_usr; -- -- Name: accessionsxgenotyping_projects; Type: MATERIALIZED VIEW; Schema: public; Owner: web_usr -- CREATE MATERIALIZED VIEW public.accessionsxgenotyping_projects AS SELECT accessions.accession_id, nd_experiment_project.project_id AS genotyping_project_id FROM (((public.accessions JOIN public.materialized_genoview ON ((accessions.accession_id = materialized_genoview.accession_id))) JOIN public.nd_experiment_genotype ON ((materialized_genoview.genotype_id = nd_experiment_genotype.genotype_id))) JOIN public.nd_experiment_project ON ((nd_experiment_genotype.nd_experiment_id = nd_experiment_project.nd_experiment_id))) WHERE (nd_experiment_project.project_id IN ( SELECT projectprop.project_id FROM public.projectprop WHERE ((projectprop.type_id = ( SELECT cvterm.cvterm_id FROM public.cvterm WHERE ((cvterm.name)::text = 'design'::text))) AND (projectprop.value = 'genotype_data_project'::text)))) GROUP BY accessions.accession_id, nd_experiment_project.project_id WITH NO DATA; ALTER TABLE public.accessionsxgenotyping_projects OWNER TO web_usr; -- -- Name: accessionsxgenotyping_protocols; Type: MATERIALIZED VIEW; Schema: public; Owner: web_usr -- CREATE MATERIALIZED VIEW public.accessionsxgenotyping_protocols AS SELECT materialized_genoview.accession_id, materialized_genoview.genotyping_protocol_id FROM public.materialized_genoview GROUP BY materialized_genoview.accession_id, materialized_genoview.genotyping_protocol_id WITH NO DATA; ALTER TABLE public.accessionsxgenotyping_protocols OWNER TO web_usr; -- -- Name: accessionsxlocations; Type: MATERIALIZED VIEW; Schema: public; Owner: web_usr -- CREATE MATERIALIZED VIEW public.accessionsxlocations AS SELECT materialized_phenoview.accession_id, materialized_phenoview.location_id FROM public.materialized_phenoview GROUP BY materialized_phenoview.accession_id, materialized_phenoview.location_id WITH NO DATA; ALTER TABLE public.accessionsxlocations OWNER TO web_usr; -- -- Name: accessionsxplants; Type: MATERIALIZED VIEW; Schema: public; Owner: web_usr -- CREATE MATERIALIZED VIEW public.accessionsxplants AS SELECT materialized_phenoview.accession_id, stock.stock_id AS plant_id FROM (public.materialized_phenoview JOIN public.stock ON (((materialized_phenoview.stock_id = stock.stock_id) AND (stock.type_id = ( SELECT cvterm.cvterm_id FROM public.cvterm WHERE ((cvterm.name)::text = 'plant'::text)))))) GROUP BY materialized_phenoview.accession_id, stock.stock_id WITH NO DATA; ALTER TABLE public.accessionsxplants OWNER TO web_usr; -- -- Name: accessionsxplots; Type: MATERIALIZED VIEW; Schema: public; Owner: web_usr -- CREATE MATERIALIZED VIEW public.accessionsxplots AS SELECT materialized_phenoview.accession_id, stock.stock_id AS plot_id FROM (public.materialized_phenoview JOIN public.stock ON (((materialized_phenoview.stock_id = stock.stock_id) AND (stock.type_id = ( SELECT cvterm.cvterm_id FROM public.cvterm WHERE ((cvterm.name)::text = 'plot'::text)))))) GROUP BY materialized_phenoview.accession_id, stock.stock_id WITH NO DATA; ALTER TABLE public.accessionsxplots OWNER TO web_usr; -- -- Name: accessionsxseedlots; Type: MATERIALIZED VIEW; Schema: public; Owner: web_usr -- CREATE MATERIALIZED VIEW public.accessionsxseedlots AS SELECT materialized_phenoview.accession_id, stock.stock_id AS seedlot_id FROM ((public.materialized_phenoview LEFT JOIN public.stock_relationship seedlot_relationship ON (((materialized_phenoview.accession_id = seedlot_relationship.subject_id) AND (seedlot_relationship.type_id IN ( SELECT cvterm.cvterm_id FROM public.cvterm WHERE ((cvterm.name)::text = 'collection_of'::text)))))) LEFT JOIN public.stock ON (((seedlot_relationship.object_id = stock.stock_id) AND (stock.type_id IN ( SELECT cvterm.cvterm_id FROM public.cvterm WHERE ((cvterm.name)::text = 'seedlot'::text)))))) GROUP BY materialized_phenoview.accession_id, stock.stock_id WITH NO DATA; ALTER TABLE public.accessionsxseedlots OWNER TO web_usr; -- -- Name: cvterm_relationship; Type: TABLE; Schema: public; Owner: postgres -- CREATE TABLE public.cvterm_relationship ( cvterm_relationship_id integer NOT NULL, type_id integer NOT NULL, subject_id integer NOT NULL, object_id integer NOT NULL ); ALTER TABLE public.cvterm_relationship OWNER TO postgres; -- -- Name: TABLE cvterm_relationship; Type: COMMENT; Schema: public; Owner: postgres -- COMMENT ON TABLE public.cvterm_relationship IS 'A relationship linking two cvterms. Each cvterm_relationship constitutes an edge in the graph defined by the collection of cvterms and cvterm_relationships. The meaning of the cvterm_relationship depends on the definition of the cvterm R refered to by type_id. However, in general the definitions are such that the statement all SUBJs REL some OBJ is true. The cvterm_relationship statement is about the subject, not the object. For example "insect wing part_of thorax"'; -- -- Name: COLUMN cvterm_relationship.type_id; Type: COMMENT; Schema: public; Owner: postgres -- COMMENT ON COLUMN public.cvterm_relationship.type_id IS 'The nature of the relationship between subject and object. Note that relations are also housed in the cvterm table, typically from the OBO relationship ontology, although other relationship types are allowed'; -- -- Name: COLUMN cvterm_relationship.subject_id; Type: COMMENT; Schema: public; Owner: postgres -- COMMENT ON COLUMN public.cvterm_relationship.subject_id IS 'the subject of the subj-predicate-obj sentence. The cvterm_relationship is about the subject. In a graph, this typically corresponds to the child node'; -- -- Name: COLUMN cvterm_relationship.object_id; Type: COMMENT; Schema: public; Owner: postgres -- COMMENT ON COLUMN public.cvterm_relationship.object_id IS 'the object of the subj-predicate-obj sentence. The cvterm_relationship refers to the object. In a graph, this typically corresponds to the parent node'; -- -- Name: accessionsxtrait_components; Type: MATERIALIZED VIEW; Schema: public; Owner: web_usr -- CREATE MATERIALIZED VIEW public.accessionsxtrait_components AS SELECT materialized_phenoview.accession_id, trait_component.cvterm_id AS trait_component_id FROM (((public.materialized_phenoview JOIN public.cvterm trait ON ((materialized_phenoview.trait_id = trait.cvterm_id))) JOIN public.cvterm_relationship ON (((trait.cvterm_id = cvterm_relationship.object_id) AND (cvterm_relationship.type_id = ( SELECT cvterm.cvterm_id FROM public.cvterm WHERE ((cvterm.name)::text = 'contains'::text)))))) JOIN public.cvterm trait_component ON ((cvterm_relationship.subject_id = trait_component.cvterm_id))) GROUP BY materialized_phenoview.accession_id, trait_component.cvterm_id WITH NO DATA; ALTER TABLE public.accessionsxtrait_components OWNER TO web_usr; -- -- Name: accessionsxtraits; Type: MATERIALIZED VIEW; Schema: public; Owner: web_usr -- CREATE MATERIALIZED VIEW public.accessionsxtraits AS SELECT materialized_phenoview.accession_id, materialized_phenoview.trait_id FROM public.materialized_phenoview GROUP BY materialized_phenoview.accession_id, materialized_phenoview.trait_id WITH NO DATA; ALTER TABLE public.accessionsxtraits OWNER TO web_usr; -- -- Name: accessionsxtrial_designs; Type: MATERIALIZED VIEW; Schema: public; Owner: web_usr -- CREATE MATERIALIZED VIEW public.accessionsxtrial_designs AS SELECT materialized_phenoview.accession_id, trialdesign.value AS trial_design_id FROM (public.materialized_phenoview JOIN public.projectprop trialdesign ON (((materialized_phenoview.trial_id = trialdesign.project_id) AND (trialdesign.type_id = ( SELECT cvterm.cvterm_id FROM public.cvterm WHERE ((cvterm.name)::text = 'design'::text)))))) GROUP BY materialized_phenoview.accession_id, trialdesign.value WITH NO DATA; ALTER TABLE public.accessionsxtrial_designs OWNER TO web_usr; -- -- Name: cv; Type: TABLE; Schema: public; Owner: postgres -- CREATE TABLE public.cv ( cv_id integer NOT NULL, name character varying(255) NOT NULL, definition text ); ALTER TABLE public.cv OWNER TO postgres; -- -- Name: TABLE cv; Type: COMMENT; Schema: public; Owner: postgres -- COMMENT ON TABLE public.cv IS 'A controlled vocabulary or ontology. A cv is composed of cvterms (aka terms, classes, types, universals - relations and properties are also stored in cvterm)) and the relationships between them'; -- -- Name: COLUMN cv.name; Type: COMMENT; Schema: public; Owner: postgres -- COMMENT ON COLUMN public.cv.name IS 'The name of the ontology. This corresponds to the obo-format -namespace-. cv names uniquely identify the cv. In obo file format, the cv.name is known as the namespace'; -- -- Name: COLUMN cv.definition; Type: COMMENT; Schema: public; Owner: postgres -- COMMENT ON COLUMN public.cv.definition IS 'A text description of the criteria for membership of this ontology'; -- -- Name: accessionsxtrial_types; Type: MATERIALIZED VIEW; Schema: public; Owner: web_usr -- CREATE MATERIALIZED VIEW public.accessionsxtrial_types AS SELECT materialized_phenoview.accession_id, trialterm.cvterm_id AS trial_type_id FROM ((public.materialized_phenoview JOIN public.projectprop trialprop ON (((materialized_phenoview.trial_id = trialprop.project_id) AND (trialprop.type_id IN ( SELECT cvterm.cvterm_id FROM (public.cvterm JOIN public.cv USING (cv_id)) WHERE ((cv.name)::text = 'project_type'::text)))))) JOIN public.cvterm trialterm ON ((trialprop.type_id = trialterm.cvterm_id))) GROUP BY materialized_phenoview.accession_id, trialterm.cvterm_id WITH NO DATA; ALTER TABLE public.accessionsxtrial_types OWNER TO web_usr; -- -- Name: accessionsxtrials; Type: MATERIALIZED VIEW; Schema: public; Owner: web_usr -- CREATE MATERIALIZED VIEW public.accessionsxtrials AS SELECT materialized_phenoview.accession_id, materialized_phenoview.trial_id FROM public.materialized_phenoview GROUP BY materialized_phenoview.accession_id, materialized_phenoview.trial_id WITH NO DATA; ALTER TABLE public.accessionsxtrials OWNER TO web_usr; -- -- Name: accessionsxyears; Type: MATERIALIZED VIEW; Schema: public; Owner: web_usr -- CREATE MATERIALIZED VIEW public.accessionsxyears AS SELECT materialized_phenoview.accession_id, materialized_phenoview.year_id FROM public.materialized_phenoview GROUP BY materialized_phenoview.accession_id, materialized_phenoview.year_id WITH NO DATA; ALTER TABLE public.accessionsxyears OWNER TO web_usr; -- -- Name: all_gs_traits; Type: MATERIALIZED VIEW; Schema: public; Owner: web_usr -- CREATE MATERIALIZED VIEW public.all_gs_traits AS SELECT observable.cvterm_id, observable.name FROM (public.phenotype me JOIN public.cvterm observable ON ((observable.cvterm_id = me.observable_id))) GROUP BY observable.cvterm_id, observable.name WITH NO DATA; ALTER TABLE public.all_gs_traits OWNER TO web_usr; -- -- Name: analysis; Type: TABLE; Schema: public; Owner: postgres -- CREATE TABLE public.analysis ( analysis_id integer NOT NULL, name character varying(255), description text, program character varying(255) NOT NULL, programversion character varying(255) NOT NULL, algorithm character varying(255), sourcename character varying(255), sourceversion character varying(255), sourceuri text, timeexecuted timestamp without time zone DEFAULT ('now'::text)::timestamp(6) with time zone NOT NULL ); ALTER TABLE public.analysis OWNER TO postgres; -- -- Name: analysis_analysis_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- CREATE SEQUENCE public.analysis_analysis_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE public.analysis_analysis_id_seq OWNER TO postgres; -- -- Name: analysis_analysis_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- ALTER SEQUENCE public.analysis_analysis_id_seq OWNED BY public.analysis.analysis_id; -- -- Name: analysisfeature; Type: TABLE; Schema: public; Owner: postgres -- CREATE TABLE public.analysisfeature ( analysisfeature_id integer NOT NULL, feature_id integer NOT NULL, analysis_id integer NOT NULL, rawscore double precision, normscore double precision, significance double precision, identity double precision ); ALTER TABLE public.analysisfeature OWNER TO postgres; -- -- Name: analysisfeature_analysisfeature_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- CREATE SEQUENCE public.analysisfeature_analysisfeature_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE public.analysisfeature_analysisfeature_id_seq OWNER TO postgres; -- -- Name: analysisfeature_analysisfeature_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- ALTER SEQUENCE public.analysisfeature_analysisfeature_id_seq OWNED BY public.analysisfeature.analysisfeature_id; -- -- Name: analysisprop; Type: TABLE; Schema: public; Owner: postgres -- CREATE TABLE public.analysisprop ( analysisprop_id integer NOT NULL, analysis_id integer NOT NULL, type_id integer NOT NULL, value text ); ALTER TABLE public.analysisprop OWNER TO postgres; -- -- Name: analysisprop_analysisprop_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- CREATE SEQUENCE public.analysisprop_analysisprop_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE public.analysisprop_analysisprop_id_seq OWNER TO postgres; -- -- Name: analysisprop_analysisprop_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- ALTER SEQUENCE public.analysisprop_analysisprop_id_seq OWNED BY public.analysisprop.analysisprop_id; -- -- Name: ara_annotation; Type: TABLE; Schema: public; Owner: postgres -- CREATE TABLE public.ara_annotation ( agi character varying(16) NOT NULL, locus character varying(16), genbank_gi bigint, gb_prot_id character varying(16), gb_mrna_id character varying(16), uniprot_id character varying(128), tair_annotation text, symbol character varying(256), aliases text, localization text, process text, function text, localization_evidence text, process_evidence text, function_evidence text, fulltext tsvector ); ALTER TABLE public.ara_annotation OWNER TO postgres; -- -- Name: ara_domain; Type: TABLE; Schema: public; Owner: postgres -- CREATE TABLE public.ara_domain ( agi character varying(16), locus character varying(16), prot_length integer, app_name character varying(32), dom_id character varying(12), dom_desc character varying(32), dom_start integer, dom_end integer, e_value character varying(16), interpro_id character varying(12), interpro_dom text, run_date date ); ALTER TABLE public.ara_domain OWNER TO postgres; -- -- Name: ara_evidef; Type: TABLE; Schema: public; Owner: postgres -- CREATE TABLE public.ara_evidef ( code character varying(10), description text, longdescription text ); ALTER TABLE public.ara_evidef OWNER TO postgres; -- -- Name: ara_family; Type: TABLE; Schema: public; Owner: postgres -- CREATE TABLE public.ara_family ( locus character varying(128), super_gene_family character varying(128), gene_family character varying(128), gene_name character varying(128), gene_alias character varying(128), bac_locus character varying(128), gbi character varying(64), gb_locus character varying(128), tigr_annotation text, expert_annotation text, criteria text, people_id character varying(128), org_id character varying(128), pmid character varying(128), url text, url_name text ); ALTER TABLE public.ara_family OWNER TO postgres; -- -- Name: ara_gfp_ms; Type: TABLE; Schema: public; Owner: postgres -- CREATE TABLE public.ara_gfp_ms ( agi character varying(16), locus character varying(16), gfp_all text, ms_all text ); ALTER TABLE public.ara_gfp_ms OWNER TO postgres; -- -- Name: ara_go_term; Type: TABLE; Schema: public; Owner: postgres -- CREATE TABLE public.ara_go_term ( go_id character varying(12) NOT NULL, alt_id character varying(12), num_child integer, num_desc integer, namespace character varying(32), name text, is_a text, children text, path text, definition text ); ALTER TABLE public.ara_go_term OWNER TO postgres; -- -- Name: ara_interactome_all; Type: TABLE; Schema: public; Owner: postgres -- CREATE TABLE public.ara_interactome_all ( locus character varying(16), locus_interact character varying(16), source character varying(32), database character varying(32), type character varying(32), author character varying(32), pmid character varying(64) ); ALTER TABLE public.ara_interactome_all OWNER TO postgres; -- -- Name: ara_interactome_unique; Type: TABLE; Schema: public; Owner: postgres -- CREATE TABLE public.ara_interactome_unique ( locus character varying(16), locus_interact character varying(16) ); ALTER TABLE public.ara_interactome_unique OWNER TO postgres; -- -- Name: ara_intron; Type: TABLE; Schema: public; Owner: postgres -- CREATE TABLE public.ara_intron ( agi character varying(16), locus character varying(16), intron_num smallint, lbound integer, rbound integer, sequence text ); ALTER TABLE public.ara_intron OWNER TO postgres; -- -- Name: ara_map; Type: TABLE; Schema: public; Owner: postgres -- CREATE TABLE public.ara_map ( locus character varying(16), chromosome character(1), direction character(1), startpos integer, endpos integer ); ALTER TABLE public.ara_map OWNER TO postgres; -- -- Name: ara_myristoylation; Type: TABLE; Schema: public; Owner: postgres -- CREATE TABLE public.ara_myristoylation ( locus character varying(12), evidence character varying(8) ); ALTER TABLE public.ara_myristoylation OWNER TO postgres; -- -- Name: ara_pmidlink; Type: TABLE; Schema: public; Owner: postgres -- CREATE TABLE public.ara_pmidlink ( pmid bigint, url text ); ALTER TABLE public.ara_pmidlink OWNER TO postgres; -- -- Name: ara_prefix_info; Type: TABLE; Schema: public; Owner: postgres -- CREATE TABLE public.ara_prefix_info ( prefix character varying(12), genecount integer ); ALTER TABLE public.ara_prefix_info OWNER TO postgres; -- -- Name: ara_properties; Type: TABLE; Schema: public; Owner: postgres -- CREATE TABLE public.ara_properties ( agi character varying(16) NOT NULL, locus character varying(16), weight integer, isoelectric real, transmemcount smallint, transmempos text, genomepos character varying(64), interactioncount integer, introncount smallint ); ALTER TABLE public.ara_properties OWNER TO postgres; -- -- Name: ara_scop; Type: TABLE; Schema: public; Owner: postgres -- CREATE TABLE public.ara_scop ( agi character varying(16), locus character varying(16), lbound integer, rbound integer, e_value character varying(32), scop_id integer, description text, structure_type character varying(16) ); ALTER TABLE public.ara_scop OWNER TO postgres; -- -- Name: ara_sequence; Type: TABLE; Schema: public; Owner: postgres -- CREATE TABLE public.ara_sequence ( agi character varying(16) NOT NULL, locus character varying(16), protein text, cds text, cdna text, genomic text, utr5 text, utr3 text ); ALTER TABLE public.ara_sequence OWNER TO postgres; -- -- Name: ara_signalp; Type: TABLE; Schema: public; Owner: postgres -- CREATE TABLE public.ara_signalp ( agi character varying(16) NOT NULL, locus character varying(16), nn_cmax real, nn_cpos integer, nn_cd character(1), nn_ymax real, nn_ypos integer, nn_yd character(1), nn_smax real, nn_spos integer, nn_sd character(1), nn_smean real, nn_smeand character(1), nn_score real, nn_d character(1), hmm_type character(1), hmm_cmax real, hmm_cpos integer, hmm_cd character(1), hmm_sprob real, hmm_d character(1) ); ALTER TABLE public.ara_signalp OWNER TO postgres; -- -- Name: ara_targetp; Type: TABLE; Schema: public; Owner: postgres -- CREATE TABLE public.ara_targetp ( agi character varying(16) NOT NULL, locus character varying(16), location character(1), rc integer, c_score real, m_score real, s_score real, o_score real ); ALTER TABLE public.ara_targetp OWNER TO postgres; -- -- Name: ara_users; Type: TABLE; Schema: public; Owner: postgres -- CREATE TABLE public.ara_users ( id integer NOT NULL, username character varying(32), password character varying(32), hotlist text, lists text, email character varying(32), confirm_email boolean ); ALTER TABLE public.ara_users OWNER TO postgres; -- -- Name: ara_users_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- CREATE SEQUENCE public.ara_users_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE public.ara_users_id_seq OWNER TO postgres; -- -- Name: ara_users_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- ALTER SEQUENCE public.ara_users_id_seq OWNED BY public.ara_users.id; -- -- Name: blastwatch_queries; Type: TABLE; Schema: public; Owner: postgres -- CREATE TABLE public.blastwatch_queries ( blastwatch_queries_id integer NOT NULL, sp_person_id integer NOT NULL, sequence text NOT NULL, program character varying(10) NOT NULL, database character varying(50) NOT NULL, matrix character varying(10) NOT NULL, evalue double precision NOT NULL, num_results integer DEFAULT 0 NOT NULL, new_results boolean DEFAULT false NOT NULL ); ALTER TABLE public.blastwatch_queries OWNER TO postgres; -- -- Name: blastwatch_queries_blastwatch_queries_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- CREATE SEQUENCE public.blastwatch_queries_blastwatch_queries_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE public.blastwatch_queries_blastwatch_queries_id_seq OWNER TO postgres; -- -- Name: blastwatch_queries_blastwatch_queries_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- ALTER SEQUENCE public.blastwatch_queries_blastwatch_queries_id_seq OWNED BY public.blastwatch_queries.blastwatch_queries_id; -- -- Name: blastwatch_results; Type: TABLE; Schema: public; Owner: postgres -- CREATE TABLE public.blastwatch_results ( blastwatch_results_id integer NOT NULL, blastwatch_queries_id integer NOT NULL, query_id character varying(50) NOT NULL, subject_id character varying(50) NOT NULL, subject_start integer NOT NULL, subject_end integer NOT NULL, evalue double precision NOT NULL, score numeric NOT NULL ); ALTER TABLE public.blastwatch_results OWNER TO postgres; -- -- Name: blastwatch_results_blastwatch_results_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- CREATE SEQUENCE public.blastwatch_results_blastwatch_results_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE public.blastwatch_results_blastwatch_results_id_seq OWNER TO postgres; -- -- Name: blastwatch_results_blastwatch_results_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- ALTER SEQUENCE public.blastwatch_results_blastwatch_results_id_seq OWNED BY public.blastwatch_results.blastwatch_results_id; -- -- Name: breeding_programs; Type: MATERIALIZED VIEW; Schema: public; Owner: web_usr -- CREATE MATERIALIZED VIEW public.breeding_programs AS SELECT project.project_id AS breeding_program_id, project.name AS breeding_program_name FROM (public.project JOIN public.projectprop USING (project_id)) WHERE (projectprop.type_id = ( SELECT cvterm.cvterm_id FROM public.cvterm WHERE ((cvterm.name)::text = 'breeding_program'::text))) GROUP BY project.project_id, project.name WITH NO DATA; ALTER TABLE public.breeding_programs OWNER TO web_usr; -- -- Name: genotyping_projects; Type: MATERIALIZED VIEW; Schema: public; Owner: web_usr -- CREATE MATERIALIZED VIEW public.genotyping_projects AS SELECT project.project_id AS genotyping_project_id, project.name AS genotyping_project_name FROM (public.project JOIN public.projectprop USING (project_id)) WHERE ((projectprop.type_id = ( SELECT cvterm.cvterm_id FROM public.cvterm WHERE ((cvterm.name)::text = 'design'::text))) AND (projectprop.value = 'genotype_data_project'::text)) GROUP BY project.project_id, project.name WITH NO DATA; ALTER TABLE public.genotyping_projects OWNER TO web_usr; -- -- Name: breeding_programsxgenotyping_projects; Type: MATERIALIZED VIEW; Schema: public; Owner: web_usr -- CREATE MATERIALIZED VIEW public.breeding_programsxgenotyping_projects AS SELECT breeding_programs.breeding_program_id, project_relationship.subject_project_id AS genotyping_project_id FROM (public.breeding_programs JOIN public.project_relationship ON ((breeding_programs.breeding_program_id = project_relationship.object_project_id))) WHERE ((project_relationship.type_id = ( SELECT cvterm.cvterm_id FROM public.cvterm WHERE ((cvterm.name)::text = 'breeding_program_trial_relationship'::text))) AND (project_relationship.subject_project_id IN ( SELECT genotyping_projects.genotyping_project_id FROM public.genotyping_projects))) WITH NO DATA; ALTER TABLE public.breeding_programsxgenotyping_projects OWNER TO web_usr; -- -- Name: breeding_programsxgenotyping_protocols; Type: MATERIALIZED VIEW; Schema: public; Owner: web_usr -- CREATE MATERIALIZED VIEW public.breeding_programsxgenotyping_protocols AS SELECT materialized_phenoview.breeding_program_id, materialized_genoview.genotyping_protocol_id FROM (public.materialized_phenoview JOIN public.materialized_genoview USING (accession_id)) GROUP BY materialized_phenoview.breeding_program_id, materialized_genoview.genotyping_protocol_id WITH NO DATA; ALTER TABLE public.breeding_programsxgenotyping_protocols OWNER TO web_usr; -- -- Name: breeding_programsxlocations; Type: MATERIALIZED VIEW; Schema: public; Owner: web_usr -- CREATE MATERIALIZED VIEW public.breeding_programsxlocations AS SELECT materialized_phenoview.breeding_program_id, materialized_phenoview.location_id FROM public.materialized_phenoview GROUP BY materialized_phenoview.breeding_program_id, materialized_phenoview.location_id WITH NO DATA; ALTER TABLE public.breeding_programsxlocations OWNER TO web_usr; -- -- Name: breeding_programsxplants; Type: MATERIALIZED VIEW; Schema: public; Owner: web_usr -- CREATE MATERIALIZED VIEW public.breeding_programsxplants AS SELECT materialized_phenoview.breeding_program_id, stock.stock_id AS plant_id FROM (public.materialized_phenoview JOIN public.stock ON (((materialized_phenoview.stock_id = stock.stock_id) AND (stock.type_id = ( SELECT cvterm.cvterm_id FROM public.cvterm WHERE ((cvterm.name)::text = 'plant'::text)))))) GROUP BY materialized_phenoview.breeding_program_id, stock.stock_id WITH NO DATA; ALTER TABLE public.breeding_programsxplants OWNER TO web_usr; -- -- Name: breeding_programsxplots; Type: MATERIALIZED VIEW; Schema: public; Owner: web_usr -- CREATE MATERIALIZED VIEW public.breeding_programsxplots AS SELECT materialized_phenoview.breeding_program_id, stock.stock_id AS plot_id FROM (public.materialized_phenoview JOIN public.stock ON (((materialized_phenoview.stock_id = stock.stock_id) AND (stock.type_id = ( SELECT cvterm.cvterm_id FROM public.cvterm WHERE ((cvterm.name)::text = 'plot'::text)))))) GROUP BY materialized_phenoview.breeding_program_id, stock.stock_id WITH NO DATA; ALTER TABLE public.breeding_programsxplots OWNER TO web_usr; -- -- Name: breeding_programsxseedlots; Type: MATERIALIZED VIEW; Schema: public; Owner: web_usr -- CREATE MATERIALIZED VIEW public.breeding_programsxseedlots AS SELECT materialized_phenoview.breeding_program_id, nd_experiment_stock.stock_id AS seedlot_id FROM (((public.materialized_phenoview LEFT JOIN public.nd_experiment_project ON ((materialized_phenoview.breeding_program_id = nd_experiment_project.project_id))) LEFT JOIN public.nd_experiment ON (((nd_experiment_project.nd_experiment_id = nd_experiment.nd_experiment_id) AND (nd_experiment.type_id IN ( SELECT cvterm.cvterm_id FROM public.cvterm WHERE ((cvterm.name)::text = 'seedlot_experiment'::text)))))) LEFT JOIN public.nd_experiment_stock ON ((nd_experiment.nd_experiment_id = nd_experiment_stock.nd_experiment_id))) GROUP BY materialized_phenoview.breeding_program_id, nd_experiment_stock.stock_id WITH NO DATA; ALTER TABLE public.breeding_programsxseedlots OWNER TO web_usr; -- -- Name: breeding_programsxtrait_components; Type: MATERIALIZED VIEW; Schema: public; Owner: web_usr -- CREATE MATERIALIZED VIEW public.breeding_programsxtrait_components AS SELECT materialized_phenoview.breeding_program_id, trait_component.cvterm_id AS trait_component_id FROM (((public.materialized_phenoview JOIN public.cvterm trait ON ((materialized_phenoview.trait_id = trait.cvterm_id))) JOIN public.cvterm_relationship ON (((trait.cvterm_id = cvterm_relationship.object_id) AND (cvterm_relationship.type_id = ( SELECT cvterm.cvterm_id FROM public.cvterm WHERE ((cvterm.name)::text = 'contains'::text)))))) JOIN public.cvterm trait_component ON ((cvterm_relationship.subject_id = trait_component.cvterm_id))) GROUP BY materialized_phenoview.breeding_program_id, trait_component.cvterm_id WITH NO DATA; ALTER TABLE public.breeding_programsxtrait_components OWNER TO web_usr; -- -- Name: breeding_programsxtraits; Type: MATERIALIZED VIEW; Schema: public; Owner: web_usr -- CREATE MATERIALIZED VIEW public.breeding_programsxtraits AS SELECT materialized_phenoview.breeding_program_id, materialized_phenoview.trait_id FROM public.materialized_phenoview GROUP BY materialized_phenoview.breeding_program_id, materialized_phenoview.trait_id WITH NO DATA; ALTER TABLE public.breeding_programsxtraits OWNER TO web_usr; -- -- Name: breeding_programsxtrial_designs; Type: MATERIALIZED VIEW; Schema: public; Owner: web_usr -- CREATE MATERIALIZED VIEW public.breeding_programsxtrial_designs AS SELECT materialized_phenoview.breeding_program_id, trialdesign.value AS trial_design_id FROM (public.materialized_phenoview JOIN public.projectprop trialdesign ON (((materialized_phenoview.trial_id = trialdesign.project_id) AND (trialdesign.type_id = ( SELECT cvterm.cvterm_id FROM public.cvterm WHERE ((cvterm.name)::text = 'design'::text)))))) GROUP BY materialized_phenoview.breeding_program_id, trialdesign.value WITH NO DATA; ALTER TABLE public.breeding_programsxtrial_designs OWNER TO web_usr; -- -- Name: breeding_programsxtrial_types; Type: MATERIALIZED VIEW; Schema: public; Owner: web_usr -- CREATE MATERIALIZED VIEW public.breeding_programsxtrial_types AS SELECT materialized_phenoview.breeding_program_id, trialterm.cvterm_id AS trial_type_id FROM ((public.materialized_phenoview JOIN public.projectprop trialprop ON (((materialized_phenoview.trial_id = trialprop.project_id) AND (trialprop.type_id IN ( SELECT cvterm.cvterm_id FROM (public.cvterm JOIN public.cv USING (cv_id)) WHERE ((cv.name)::text = 'project_type'::text)))))) JOIN public.cvterm trialterm ON ((trialprop.type_id = trialterm.cvterm_id))) GROUP BY materialized_phenoview.breeding_program_id, trialterm.cvterm_id WITH NO DATA; ALTER TABLE public.breeding_programsxtrial_types OWNER TO web_usr; -- -- Name: breeding_programsxtrials; Type: MATERIALIZED VIEW; Schema: public; Owner: web_usr -- CREATE MATERIALIZED VIEW public.breeding_programsxtrials AS SELECT materialized_phenoview.breeding_program_id, materialized_phenoview.trial_id FROM public.materialized_phenoview GROUP BY materialized_phenoview.breeding_program_id, materialized_phenoview.trial_id WITH NO DATA; ALTER TABLE public.breeding_programsxtrials OWNER TO web_usr; -- -- Name: breeding_programsxyears; Type: MATERIALIZED VIEW; Schema: public; Owner: web_usr -- CREATE MATERIALIZED VIEW public.breeding_programsxyears AS SELECT materialized_phenoview.breeding_program_id, materialized_phenoview.year_id FROM public.materialized_phenoview GROUP BY materialized_phenoview.breeding_program_id, materialized_phenoview.year_id WITH NO DATA; ALTER TABLE public.breeding_programsxyears OWNER TO web_usr; -- -- Name: bug; Type: TABLE; Schema: public; Owner: postgres -- CREATE TABLE public.bug ( bug_id integer NOT NULL, sp_person_id bigint, obsolete boolean, create_date timestamp with time zone, created_by bigint, modified_date timestamp with time zone, updated_by bigint, description text, status character varying(20), severity character varying(20), affected_page text, action text ); ALTER TABLE public.bug OWNER TO postgres; -- -- Name: bug_bug_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- CREATE SEQUENCE public.bug_bug_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE public.bug_bug_id_seq OWNER TO postgres; -- -- Name: bug_bug_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- ALTER SEQUENCE public.bug_bug_id_seq OWNED BY public.bug.bug_id; -- -- Name: composed_trait_ids; Type: SEQUENCE; Schema: public; Owner: web_usr -- CREATE SEQUENCE public.composed_trait_ids START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE public.composed_trait_ids OWNER TO web_usr; -- -- Name: contact; Type: TABLE; Schema: public; Owner: postgres -- CREATE TABLE public.contact ( contact_id integer NOT NULL, type_id integer, name character varying(255) NOT NULL, description character varying(255) ); ALTER TABLE public.contact OWNER TO postgres; -- -- Name: TABLE contact; Type: COMMENT; Schema: public; Owner: postgres -- COMMENT ON TABLE public.contact IS 'Model persons, institutes, groups, organizations, etc.'; -- -- Name: COLUMN contact.type_id; Type: COMMENT; Schema: public; Owner: postgres -- COMMENT ON COLUMN public.contact.type_id IS 'What type of contact is this? E.g. "person", "lab".'; -- -- Name: contact_contact_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- CREATE SEQUENCE public.contact_contact_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE public.contact_contact_id_seq OWNER TO postgres; -- -- Name: contact_contact_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- ALTER SEQUENCE public.contact_contact_id_seq OWNED BY public.contact.contact_id; -- -- Name: contact_relationship; Type: TABLE; Schema: public; Owner: postgres -- CREATE TABLE public.contact_relationship ( contact_relationship_id integer NOT NULL, type_id integer NOT NULL, subject_id integer NOT NULL, object_id integer NOT NULL ); ALTER TABLE public.contact_relationship OWNER TO postgres; -- -- Name: TABLE contact_relationship; Type: COMMENT; Schema: public; Owner: postgres -- COMMENT ON TABLE public.contact_relationship IS 'Model relationships between contacts'; -- -- Name: COLUMN contact_relationship.subject_id; Type: COMMENT; Schema: public; Owner: postgres -- COMMENT ON COLUMN public.contact_relationship.subject_id IS 'The subject of the subj-predicate-obj sentence. In a DAG, this corresponds to the child node.'; -- -- Name: COLUMN contact_relationship.object_id; Type: COMMENT; Schema: public; Owner: postgres -- COMMENT ON COLUMN public.contact_relationship.object_id IS 'The object of the subj-predicate-obj sentence. In a DAG, this corresponds to the parent node.'; -- -- Name: contact_relationship_contact_relationship_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- CREATE SEQUENCE public.contact_relationship_contact_relationship_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE public.contact_relationship_contact_relationship_id_seq OWNER TO postgres; -- -- Name: contact_relationship_contact_relationship_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- ALTER SEQUENCE public.contact_relationship_contact_relationship_id_seq OWNED BY public.contact_relationship.contact_relationship_id; -- -- Name: cv_cv_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- CREATE SEQUENCE public.cv_cv_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE public.cv_cv_id_seq OWNER TO postgres; -- -- Name: cv_cv_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- ALTER SEQUENCE public.cv_cv_id_seq OWNED BY public.cv.cv_id; -- -- Name: cvprop; Type: TABLE; Schema: public; Owner: postgres -- CREATE TABLE public.cvprop ( cvprop_id integer NOT NULL, cv_id integer NOT NULL, type_id integer NOT NULL, value text, rank integer DEFAULT 0 NOT NULL ); ALTER TABLE public.cvprop OWNER TO postgres; -- -- Name: TABLE cvprop; Type: COMMENT; Schema: public; Owner: postgres -- COMMENT ON TABLE public.cvprop IS 'Additional extensible properties can be attached to a cv using this table. A notable example would be the cv version'; -- -- Name: COLUMN cvprop.type_id; Type: COMMENT; Schema: public; Owner: postgres -- COMMENT ON COLUMN public.cvprop.type_id IS 'The name of the property or slot is a cvterm. The meaning of the property is defined in that cvterm.'; -- -- Name: COLUMN cvprop.value; Type: COMMENT; Schema: public; Owner: postgres -- COMMENT ON COLUMN public.cvprop.value IS 'The value of the property, represented as text. Numeric values are converted to their text representation.'; -- -- Name: COLUMN cvprop.rank; Type: COMMENT; Schema: public; Owner: postgres -- COMMENT ON COLUMN public.cvprop.rank IS 'Property-Value ordering. Any cv can have multiple values for any particular property type - these are ordered in a list using rank, counting from zero. For properties that are single-valued rather than multi-valued, the default 0 value should be used.'; -- -- Name: cvprop_cvprop_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- CREATE SEQUENCE public.cvprop_cvprop_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE public.cvprop_cvprop_id_seq OWNER TO postgres; -- -- Name: cvprop_cvprop_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- ALTER SEQUENCE public.cvprop_cvprop_id_seq OWNED BY public.cvprop.cvprop_id; -- -- Name: cvterm_cvterm_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- CREATE SEQUENCE public.cvterm_cvterm_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE public.cvterm_cvterm_id_seq OWNER TO postgres; -- -- Name: cvterm_cvterm_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- ALTER SEQUENCE public.cvterm_cvterm_id_seq OWNED BY public.cvterm.cvterm_id; -- -- Name: cvterm_dbxref; Type: TABLE; Schema: public; Owner: postgres -- CREATE TABLE public.cvterm_dbxref ( cvterm_dbxref_id integer NOT NULL, cvterm_id integer NOT NULL, dbxref_id integer NOT NULL, is_for_definition integer DEFAULT 0 NOT NULL ); ALTER TABLE public.cvterm_dbxref OWNER TO postgres; -- -- Name: TABLE cvterm_dbxref; Type: COMMENT; Schema: public; Owner: postgres -- COMMENT ON TABLE public.cvterm_dbxref IS 'In addition to the primary identifier (cvterm.dbxref_id) a cvterm can have zero or more secondary identifiers/dbxrefs, which may refer to records in external databases. The exact semantics of cvterm_dbxref are not fixed. For example: the dbxref could be a pubmed ID that is pertinent to the cvterm, or it could be an equivalent or similar term in another ontology. For example, GO cvterms are typically linked to InterPro IDs, even though the nature of the relationship between them is largely one of statistical association. The dbxref may be have data records attached in the same database instance, or it could be a "hanging" dbxref pointing to some external database. NOTE: If the desired objective is to link two cvterms together, and the nature of the relation is known and holds for all instances of the subject cvterm then consider instead using cvterm_relationship together with a well-defined relation.'; -- -- Name: COLUMN cvterm_dbxref.is_for_definition; Type: COMMENT; Schema: public; Owner: postgres -- COMMENT ON COLUMN public.cvterm_dbxref.is_for_definition IS 'A cvterm.definition should be supported by one or more references. If this column is true, the dbxref is not for a term in an external db - it is a dbxref for provenance information for the definition'; -- -- Name: cvterm_dbxref_cvterm_dbxref_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- CREATE SEQUENCE public.cvterm_dbxref_cvterm_dbxref_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE public.cvterm_dbxref_cvterm_dbxref_id_seq OWNER TO postgres; -- -- Name: cvterm_dbxref_cvterm_dbxref_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- ALTER SEQUENCE public.cvterm_dbxref_cvterm_dbxref_id_seq OWNED BY public.cvterm_dbxref.cvterm_dbxref_id; -- -- Name: cvterm_relationship_cvterm_relationship_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- CREATE SEQUENCE public.cvterm_relationship_cvterm_relationship_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE public.cvterm_relationship_cvterm_relationship_id_seq OWNER TO postgres; -- -- Name: cvterm_relationship_cvterm_relationship_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- ALTER SEQUENCE public.cvterm_relationship_cvterm_relationship_id_seq OWNED BY public.cvterm_relationship.cvterm_relationship_id; -- -- Name: cvtermpath; Type: TABLE; Schema: public; Owner: postgres -- CREATE TABLE public.cvtermpath ( cvtermpath_id integer NOT NULL, type_id integer, subject_id integer NOT NULL, object_id integer NOT NULL, cv_id integer NOT NULL, pathdistance integer ); ALTER TABLE public.cvtermpath OWNER TO postgres; -- -- Name: TABLE cvtermpath; Type: COMMENT; Schema: public; Owner: postgres -- COMMENT ON TABLE public.cvtermpath IS 'The reflexive transitive closure of the cvterm_relationship relation. For a full discussion, see the file populating-cvtermpath.txt in this directory'; -- -- Name: COLUMN cvtermpath.type_id; Type: COMMENT; Schema: public; Owner: postgres -- COMMENT ON COLUMN public.cvtermpath.type_id IS 'The relationship type that this is a closure over. If null, then this is a closure over ALL relationship types. If non-null, then this references a relationship cvterm - note that the closure will apply to both this relationship AND the OBO_REL:is_a (subclass) relationship'; -- -- Name: COLUMN cvtermpath.cv_id; Type: COMMENT; Schema: public; Owner: postgres -- COMMENT ON COLUMN public.cvtermpath.cv_id IS 'Closures will mostly be within one cv. If the closure of a relationship traverses a cv, then this refers to the cv of the object_id cvterm'; -- -- Name: COLUMN cvtermpath.pathdistance; Type: COMMENT; Schema: public; Owner: postgres -- COMMENT ON COLUMN public.cvtermpath.pathdistance IS 'The number of steps required to get from the subject cvterm to the object cvterm, counting from zero (reflexive relationship)'; -- -- Name: cvtermpath_cvtermpath_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- CREATE SEQUENCE public.cvtermpath_cvtermpath_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE public.cvtermpath_cvtermpath_id_seq OWNER TO postgres; -- -- Name: cvtermpath_cvtermpath_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- ALTER SEQUENCE public.cvtermpath_cvtermpath_id_seq OWNED BY public.cvtermpath.cvtermpath_id; -- -- Name: cvtermprop; Type: TABLE; Schema: public; Owner: postgres -- CREATE TABLE public.cvtermprop ( cvtermprop_id integer NOT NULL, cvterm_id integer NOT NULL, type_id integer NOT NULL, value text DEFAULT ''::text NOT NULL, rank integer DEFAULT 0 NOT NULL ); ALTER TABLE public.cvtermprop OWNER TO postgres; -- -- Name: TABLE cvtermprop; Type: COMMENT; Schema: public; Owner: postgres -- COMMENT ON TABLE public.cvtermprop IS 'Additional extensible properties can be attached to a cvterm using this table. Corresponds to -AnnotationProperty- in W3C OWL format'; -- -- Name: COLUMN cvtermprop.type_id; Type: COMMENT; Schema: public; Owner: postgres -- COMMENT ON COLUMN public.cvtermprop.type_id IS 'The name of the property/slot is a cvterm. The meaning of the property is defined in that cvterm'; -- -- Name: COLUMN cvtermprop.value; Type: COMMENT; Schema: public; Owner: postgres -- COMMENT ON COLUMN public.cvtermprop.value IS 'The value of the property, represented as text. Numeric values are converted to their text representation'; -- -- Name: COLUMN cvtermprop.rank; Type: COMMENT; Schema: public; Owner: postgres -- COMMENT ON COLUMN public.cvtermprop.rank IS 'Property-Value ordering. Any cvterm can have multiple values for any particular property type - these are ordered in a list using rank, counting from zero. For properties that are single-valued rather than multi-valued, the default 0 value should be used'; -- -- Name: cvtermprop_cvtermprop_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- CREATE SEQUENCE public.cvtermprop_cvtermprop_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE public.cvtermprop_cvtermprop_id_seq OWNER TO postgres; -- -- Name: cvtermprop_cvtermprop_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- ALTER SEQUENCE public.cvtermprop_cvtermprop_id_seq OWNED BY public.cvtermprop.cvtermprop_id; -- -- Name: cvtermsynonym; Type: TABLE; Schema: public; Owner: postgres -- CREATE TABLE public.cvtermsynonym ( cvtermsynonym_id integer NOT NULL, cvterm_id integer NOT NULL, synonym character varying(1024) NOT NULL, type_id integer ); ALTER TABLE public.cvtermsynonym OWNER TO postgres; -- -- Name: TABLE cvtermsynonym; Type: COMMENT; Schema: public; Owner: postgres -- COMMENT ON TABLE public.cvtermsynonym IS 'A cvterm actually represents a distinct class or concept. A concept can be refered to by different phrases or names. In addition to the primary name (cvterm.name) there can be a number of alternative aliases or synonyms. For example, -T cell- as a synonym for -T lymphocyte-'; -- -- Name: COLUMN cvtermsynonym.type_id; Type: COMMENT; Schema: public; Owner: postgres -- COMMENT ON COLUMN public.cvtermsynonym.type_id IS 'A synonym can be exact, narrow or borader than'; -- -- Name: cvtermsynonym_cvtermsynonym_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- CREATE SEQUENCE public.cvtermsynonym_cvtermsynonym_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE public.cvtermsynonym_cvtermsynonym_id_seq OWNER TO postgres; -- -- Name: cvtermsynonym_cvtermsynonym_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- ALTER SEQUENCE public.cvtermsynonym_cvtermsynonym_id_seq OWNED BY public.cvtermsynonym.cvtermsynonym_id; -- -- Name: cxgn_bac_pipeline_genbank_log; Type: TABLE; Schema: public; Owner: postgres -- CREATE TABLE public.cxgn_bac_pipeline_genbank_log ( id integer NOT NULL, deleted boolean DEFAULT false NOT NULL, "timestamp" timestamp without time zone DEFAULT now() NOT NULL, uname character varying(40) NOT NULL, host character varying(40) NOT NULL, progname character varying(80) NOT NULL, pid integer NOT NULL, search_key character varying(200), message text ); ALTER TABLE public.cxgn_bac_pipeline_genbank_log OWNER TO postgres; -- -- Name: cxgn_bac_pipeline_genbank_log_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- CREATE SEQUENCE public.cxgn_bac_pipeline_genbank_log_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE public.cxgn_bac_pipeline_genbank_log_id_seq OWNER TO postgres; -- -- Name: cxgn_bac_pipeline_genbank_log_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- ALTER SEQUENCE public.cxgn_bac_pipeline_genbank_log_id_seq OWNED BY public.cxgn_bac_pipeline_genbank_log.id; -- -- Name: cxgn_bac_pipeline_loading_log; Type: TABLE; Schema: public; Owner: postgres -- CREATE TABLE public.cxgn_bac_pipeline_loading_log ( id integer NOT NULL, deleted boolean DEFAULT false NOT NULL, "timestamp" timestamp without time zone DEFAULT now() NOT NULL, uname character varying(40) NOT NULL, host character varying(40) NOT NULL, progname character varying(80) NOT NULL, pid integer NOT NULL, search_key character varying(200), message text ); ALTER TABLE public.cxgn_bac_pipeline_loading_log OWNER TO postgres; -- -- Name: cxgn_bac_pipeline_loading_log_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- CREATE SEQUENCE public.cxgn_bac_pipeline_loading_log_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE public.cxgn_bac_pipeline_loading_log_id_seq OWNER TO postgres; -- -- Name: cxgn_bac_pipeline_loading_log_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- ALTER SEQUENCE public.cxgn_bac_pipeline_loading_log_id_seq OWNED BY public.cxgn_bac_pipeline_loading_log.id; -- -- Name: cxgn_bac_pipeline_processing_log; Type: TABLE; Schema: public; Owner: postgres -- CREATE TABLE public.cxgn_bac_pipeline_processing_log ( id integer NOT NULL, deleted boolean DEFAULT false NOT NULL, "timestamp" timestamp without time zone DEFAULT now() NOT NULL, uname character varying(40) NOT NULL, host character varying(40) NOT NULL, progname character varying(80) NOT NULL, pid integer NOT NULL, search_key character varying(200), message text ); ALTER TABLE public.cxgn_bac_pipeline_processing_log OWNER TO postgres; -- -- Name: cxgn_bac_pipeline_processing_log_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- CREATE SEQUENCE public.cxgn_bac_pipeline_processing_log_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE public.cxgn_bac_pipeline_processing_log_id_seq OWNER TO postgres; -- -- Name: cxgn_bac_pipeline_processing_log_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- ALTER SEQUENCE public.cxgn_bac_pipeline_processing_log_id_seq OWNED BY public.cxgn_bac_pipeline_processing_log.id; -- -- Name: cxgn_indexedlog_test_feel_free_to_delete_me; Type: TABLE; Schema: public; Owner: postgres -- CREATE TABLE public.cxgn_indexedlog_test_feel_free_to_delete_me ( id integer NOT NULL, deleted boolean DEFAULT false NOT NULL, "timestamp" timestamp without time zone DEFAULT now() NOT NULL, uname character varying(40) NOT NULL, host character varying(40) NOT NULL, progname character varying(80), pid integer NOT NULL, search_key character varying(80), message text ); ALTER TABLE public.cxgn_indexedlog_test_feel_free_to_delete_me OWNER TO postgres; -- -- Name: cxgn_indexedlog_test_feel_free_to_delete_me_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- CREATE SEQUENCE public.cxgn_indexedlog_test_feel_free_to_delete_me_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE public.cxgn_indexedlog_test_feel_free_to_delete_me_id_seq OWNER TO postgres; -- -- Name: cxgn_indexedlog_test_feel_free_to_delete_me_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- ALTER SEQUENCE public.cxgn_indexedlog_test_feel_free_to_delete_me_id_seq OWNED BY public.cxgn_indexedlog_test_feel_free_to_delete_me.id; -- -- Name: db_db_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- CREATE SEQUENCE public.db_db_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE public.db_db_id_seq OWNER TO postgres; -- -- Name: db_db_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- ALTER SEQUENCE public.db_db_id_seq OWNED BY public.db.db_id; -- -- Name: dbxref_dbxref_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- CREATE SEQUENCE public.dbxref_dbxref_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE public.dbxref_dbxref_id_seq OWNER TO postgres; -- -- Name: dbxref_dbxref_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- ALTER SEQUENCE public.dbxref_dbxref_id_seq OWNED BY public.dbxref.dbxref_id; -- -- Name: dbxrefprop; Type: TABLE; Schema: public; Owner: postgres -- CREATE TABLE public.dbxrefprop ( dbxrefprop_id integer NOT NULL, dbxref_id integer NOT NULL, type_id integer NOT NULL, value text DEFAULT ''::text NOT NULL, rank integer DEFAULT 0 NOT NULL ); ALTER TABLE public.dbxrefprop OWNER TO postgres; -- -- Name: TABLE dbxrefprop; Type: COMMENT; Schema: public; Owner: postgres -- COMMENT ON TABLE public.dbxrefprop IS 'Metadata about a dbxref. Note that this is not defined in the dbxref module, as it depends on the cvterm table. This table has a structure analagous to cvtermprop'; -- -- Name: dbxrefprop_dbxrefprop_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- CREATE SEQUENCE public.dbxrefprop_dbxrefprop_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE public.dbxrefprop_dbxrefprop_id_seq OWNER TO postgres; -- -- Name: dbxrefprop_dbxrefprop_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- ALTER SEQUENCE public.dbxrefprop_dbxrefprop_id_seq OWNED BY public.dbxrefprop.dbxrefprop_id; -- -- Name: environment; Type: TABLE; Schema: public; Owner: postgres -- CREATE TABLE public.environment ( environment_id integer NOT NULL, uniquename text NOT NULL, description text ); ALTER TABLE public.environment OWNER TO postgres; -- -- Name: TABLE environment; Type: COMMENT; Schema: public; Owner: postgres -- COMMENT ON TABLE public.environment IS 'The environmental component of a phenotype description.'; -- -- Name: environment_cvterm; Type: TABLE; Schema: public; Owner: postgres -- CREATE TABLE public.environment_cvterm ( environment_cvterm_id integer NOT NULL, environment_id integer NOT NULL, cvterm_id integer NOT NULL ); ALTER TABLE public.environment_cvterm OWNER TO postgres; -- -- Name: environment_cvterm_environment_cvterm_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- CREATE SEQUENCE public.environment_cvterm_environment_cvterm_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE public.environment_cvterm_environment_cvterm_id_seq OWNER TO postgres; -- -- Name: environment_cvterm_environment_cvterm_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- ALTER SEQUENCE public.environment_cvterm_environment_cvterm_id_seq OWNED BY public.environment_cvterm.environment_cvterm_id; -- -- Name: environment_environment_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- CREATE SEQUENCE public.environment_environment_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE public.environment_environment_id_seq OWNER TO postgres; -- -- Name: environment_environment_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- ALTER SEQUENCE public.environment_environment_id_seq OWNED BY public.environment.environment_id; -- -- Name: enzyme_restriction_sites; Type: TABLE; Schema: public; Owner: postgres -- CREATE TABLE public.enzyme_restriction_sites ( enzyme_restriction_sites_id integer NOT NULL, restriction_site text, enzyme_id integer ); ALTER TABLE public.enzyme_restriction_sites OWNER TO postgres; -- -- Name: enzyme_restriction_sites_enzyme_restriction_sites_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- CREATE SEQUENCE public.enzyme_restriction_sites_enzyme_restriction_sites_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE public.enzyme_restriction_sites_enzyme_restriction_sites_id_seq OWNER TO postgres; -- -- Name: enzyme_restriction_sites_enzyme_restriction_sites_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- ALTER SEQUENCE public.enzyme_restriction_sites_enzyme_restriction_sites_id_seq OWNED BY public.enzyme_restriction_sites.enzyme_restriction_sites_id; -- -- Name: family; Type: TABLE; Schema: sgn; Owner: postgres -- CREATE TABLE sgn.family ( family_id bigint NOT NULL, family_build_id bigint, family_annotation text, tree_log_file_location character varying, tree_file_location character varying, tree_taxa_number integer, tree_overlap_length integer, family_nr integer, member_count integer ); ALTER TABLE sgn.family OWNER TO postgres; -- -- Name: family; Type: VIEW; Schema: public; Owner: postgres -- CREATE VIEW public.family AS SELECT family.family_id, family.family_build_id, family.family_annotation, family.tree_log_file_location, family.tree_file_location, family.tree_taxa_number, family.tree_overlap_length, family.family_nr, family.member_count FROM sgn.family; ALTER TABLE public.family OWNER TO postgres; -- -- Name: family_build; Type: TABLE; Schema: sgn; Owner: postgres -- CREATE TABLE sgn.family_build ( family_build_id bigint NOT NULL, group_id bigint, build_nr bigint, i_value double precision, build_date timestamp(6) without time zone DEFAULT ('now'::text)::timestamp(6) with time zone NOT NULL, status character(1) DEFAULT 'C'::bpchar ); ALTER TABLE sgn.family_build OWNER TO postgres; -- -- Name: family_build; Type: VIEW; Schema: public; Owner: postgres -- CREATE VIEW public.family_build AS SELECT family_build.family_build_id, family_build.group_id, family_build.build_nr, family_build.i_value, family_build.build_date, family_build.status FROM sgn.family_build; ALTER TABLE public.family_build OWNER TO postgres; -- -- Name: family_member; Type: TABLE; Schema: sgn; Owner: postgres -- CREATE TABLE sgn.family_member ( family_member_id bigint NOT NULL, cds_id bigint, organism_group_id bigint, family_id bigint, database_name character varying(20), sequence_name character varying(50), alignment_seq text ); ALTER TABLE sgn.family_member OWNER TO postgres; -- -- Name: family_member; Type: VIEW; Schema: public; Owner: postgres -- CREATE VIEW public.family_member AS SELECT family_member.family_member_id, family_member.cds_id, family_member.organism_group_id, family_member.family_id, family_member.database_name, family_member.sequence_name, family_member.alignment_seq FROM sgn.family_member; ALTER TABLE public.family_member OWNER TO postgres; -- -- Name: feature_cvterm_dbxref; Type: TABLE; Schema: public; Owner: postgres -- CREATE TABLE public.feature_cvterm_dbxref ( feature_cvterm_dbxref_id integer NOT NULL, feature_cvterm_id integer NOT NULL, dbxref_id integer NOT NULL ); ALTER TABLE public.feature_cvterm_dbxref OWNER TO postgres; -- -- Name: TABLE feature_cvterm_dbxref; Type: COMMENT; Schema: public; Owner: postgres -- COMMENT ON TABLE public.feature_cvterm_dbxref IS 'Additional dbxrefs for an association. Rows in the feature_cvterm table may be backed up by dbxrefs. For example, a feature_cvterm association that was inferred via a protein-protein interaction may be backed by by refering to the dbxref for the alternate protein. Corresponds to the WITH column in a GO gene association file (but can also be used for other analagous associations). See http://www.geneontology.org/doc/GO.annotation.shtml#file for more details'; -- -- Name: feature_cvterm_dbxref_feature_cvterm_dbxref_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- CREATE SEQUENCE public.feature_cvterm_dbxref_feature_cvterm_dbxref_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE public.feature_cvterm_dbxref_feature_cvterm_dbxref_id_seq OWNER TO postgres; -- -- Name: feature_cvterm_dbxref_feature_cvterm_dbxref_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- ALTER SEQUENCE public.feature_cvterm_dbxref_feature_cvterm_dbxref_id_seq OWNED BY public.feature_cvterm_dbxref.feature_cvterm_dbxref_id; -- -- Name: feature_cvterm_feature_cvterm_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- CREATE SEQUENCE public.feature_cvterm_feature_cvterm_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE public.feature_cvterm_feature_cvterm_id_seq OWNER TO postgres; -- -- Name: feature_cvterm_feature_cvterm_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- ALTER SEQUENCE public.feature_cvterm_feature_cvterm_id_seq OWNED BY public.feature_cvterm.feature_cvterm_id; -- -- Name: feature_cvterm_pub; Type: TABLE; Schema: public; Owner: postgres -- CREATE TABLE public.feature_cvterm_pub ( feature_cvterm_pub_id integer NOT NULL, feature_cvterm_id integer NOT NULL, pub_id integer NOT NULL ); ALTER TABLE public.feature_cvterm_pub OWNER TO postgres; -- -- Name: TABLE feature_cvterm_pub; Type: COMMENT; Schema: public; Owner: postgres -- COMMENT ON TABLE public.feature_cvterm_pub IS 'Secondary pubs for an association. Each feature_cvterm association is supported by a single primary publication. Additional secondary pubs can be added using this linking table (in a GO gene association file, these corresponding to any IDs after the pipe symbol in the publications column'; -- -- Name: feature_cvterm_pub_feature_cvterm_pub_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- CREATE SEQUENCE public.feature_cvterm_pub_feature_cvterm_pub_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE public.feature_cvterm_pub_feature_cvterm_pub_id_seq OWNER TO postgres; -- -- Name: feature_cvterm_pub_feature_cvterm_pub_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- ALTER SEQUENCE public.feature_cvterm_pub_feature_cvterm_pub_id_seq OWNED BY public.feature_cvterm_pub.feature_cvterm_pub_id; -- -- Name: feature_cvtermprop; Type: TABLE; Schema: public; Owner: postgres -- CREATE TABLE public.feature_cvtermprop ( feature_cvtermprop_id integer NOT NULL, feature_cvterm_id integer NOT NULL, type_id integer NOT NULL, value text, rank integer DEFAULT 0 NOT NULL ); ALTER TABLE public.feature_cvtermprop OWNER TO postgres; -- -- Name: TABLE feature_cvtermprop; Type: COMMENT; Schema: public; Owner: postgres -- COMMENT ON TABLE public.feature_cvtermprop IS 'Extensible properties for feature to cvterm associations. Examples: GO evidence codes; qualifiers; metadata such as the date on which the entry was curated and the source of the association. See the featureprop table for meanings of type_id, value and rank'; -- -- Name: COLUMN feature_cvtermprop.type_id; Type: COMMENT; Schema: public; Owner: postgres -- COMMENT ON COLUMN public.feature_cvtermprop.type_id IS 'The name of the property/slot is a cvterm. The meaning of the property is defined in that cvterm. cvterms may come from the OBO evidence code cv'; -- -- Name: COLUMN feature_cvtermprop.value; Type: COMMENT; Schema: public; Owner: postgres -- COMMENT ON COLUMN public.feature_cvtermprop.value IS 'The value of the property, represented as text. Numeric values are converted to their text representation. This is less efficient than using native database types, but is easier to query.'; -- -- Name: COLUMN feature_cvtermprop.rank; Type: COMMENT; Schema: public; Owner: postgres -- COMMENT ON COLUMN public.feature_cvtermprop.rank IS 'Property-Value ordering. Any feature_cvterm can have multiple values for any particular property type - these are ordered in a list using rank, counting from zero. For properties that are single-valued rather than multi-valued, the default 0 value should be used'; -- -- Name: feature_cvtermprop_feature_cvtermprop_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- CREATE SEQUENCE public.feature_cvtermprop_feature_cvtermprop_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE public.feature_cvtermprop_feature_cvtermprop_id_seq OWNER TO postgres; -- -- Name: feature_cvtermprop_feature_cvtermprop_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- ALTER SEQUENCE public.feature_cvtermprop_feature_cvtermprop_id_seq OWNED BY public.feature_cvtermprop.feature_cvtermprop_id; -- -- Name: feature_dbxref_feature_dbxref_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- CREATE SEQUENCE public.feature_dbxref_feature_dbxref_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE public.feature_dbxref_feature_dbxref_id_seq OWNER TO postgres; -- -- Name: feature_dbxref_feature_dbxref_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- ALTER SEQUENCE public.feature_dbxref_feature_dbxref_id_seq OWNED BY public.feature_dbxref.feature_dbxref_id; -- -- Name: feature_feature_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- CREATE SEQUENCE public.feature_feature_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE public.feature_feature_id_seq OWNER TO postgres; -- -- Name: feature_feature_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- ALTER SEQUENCE public.feature_feature_id_seq OWNED BY public.feature.feature_id; -- -- Name: feature_genotype; Type: TABLE; Schema: public; Owner: postgres -- CREATE TABLE public.feature_genotype ( feature_genotype_id integer NOT NULL, feature_id integer NOT NULL, genotype_id integer NOT NULL, chromosome_id integer, rank integer NOT NULL, cgroup integer NOT NULL, cvterm_id integer NOT NULL ); ALTER TABLE public.feature_genotype OWNER TO postgres; -- -- Name: COLUMN feature_genotype.chromosome_id; Type: COMMENT; Schema: public; Owner: postgres -- COMMENT ON COLUMN public.feature_genotype.chromosome_id IS 'A feature of SO type "chromosome".'; -- -- Name: COLUMN feature_genotype.rank; Type: COMMENT; Schema: public; Owner: postgres -- COMMENT ON COLUMN public.feature_genotype.rank IS 'rank can be used for n-ploid organisms or to preserve order.'; -- -- Name: COLUMN feature_genotype.cgroup; Type: COMMENT; Schema: public; Owner: postgres -- COMMENT ON COLUMN public.feature_genotype.cgroup IS 'Spatially distinguishable group. group can be used for distinguishing the chromosomal groups, for example (RNAi products and so on can be treated as different groups, as they do not fall on a particular chromosome).'; -- -- Name: feature_genotype_feature_genotype_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- CREATE SEQUENCE public.feature_genotype_feature_genotype_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE public.feature_genotype_feature_genotype_id_seq OWNER TO postgres; -- -- Name: feature_genotype_feature_genotype_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- ALTER SEQUENCE public.feature_genotype_feature_genotype_id_seq OWNED BY public.feature_genotype.feature_genotype_id; -- -- Name: feature_pub_feature_pub_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- CREATE SEQUENCE public.feature_pub_feature_pub_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE public.feature_pub_feature_pub_id_seq OWNER TO postgres; -- -- Name: feature_pub_feature_pub_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- ALTER SEQUENCE public.feature_pub_feature_pub_id_seq OWNED BY public.feature_pub.feature_pub_id; -- -- Name: feature_relationship; Type: TABLE; Schema: public; Owner: postgres -- CREATE TABLE public.feature_relationship ( feature_relationship_id integer NOT NULL, subject_id integer NOT NULL, object_id integer NOT NULL, type_id integer NOT NULL, value text, rank integer DEFAULT 0 NOT NULL ); ALTER TABLE public.feature_relationship OWNER TO postgres; -- -- Name: TABLE feature_relationship; Type: COMMENT; Schema: public; Owner: postgres -- COMMENT ON TABLE public.feature_relationship IS 'features can be arranged in graphs, eg exon part_of transcript part_of gene; translation madeby transcript if type is thought of as a verb, each arc makes a statement [SUBJECT VERB OBJECT] object can also be thought of as parent (containing feature), and subject as child (contained feature or subfeature) -- we include the relationship rank/order, because even though most of the time we can order things implicitly by sequence coordinates, we cant always do this - eg transpliced genes. its also useful for quickly getting implicit introns'; -- -- Name: COLUMN feature_relationship.subject_id; Type: COMMENT; Schema: public; Owner: postgres -- COMMENT ON COLUMN public.feature_relationship.subject_id IS 'the subject of the subj-predicate-obj sentence. This is typically the subfeature'; -- -- Name: COLUMN feature_relationship.object_id; Type: COMMENT; Schema: public; Owner: postgres -- COMMENT ON COLUMN public.feature_relationship.object_id IS 'the object of the subj-predicate-obj sentence. This is typically the container feature'; -- -- Name: COLUMN feature_relationship.type_id; Type: COMMENT; Schema: public; Owner: postgres -- COMMENT ON COLUMN public.feature_relationship.type_id IS 'relationship type between subject and object. This is a cvterm, typically from the OBO relationship ontology, although other relationship types are allowed. The most common relationship type is OBO_REL:part_of. Valid relationship types are constrained by the Sequence Ontology'; -- -- Name: COLUMN feature_relationship.value; Type: COMMENT; Schema: public; Owner: postgres -- COMMENT ON COLUMN public.feature_relationship.value IS 'Additional notes/comments'; -- -- Name: COLUMN feature_relationship.rank; Type: COMMENT; Schema: public; Owner: postgres -- COMMENT ON COLUMN public.feature_relationship.rank IS 'The ordering of subject features with respect to the object feature may be important (for example, exon ordering on a transcript - not always derivable if you take trans spliced genes into consideration). rank is used to order these; starts from zero'; -- -- Name: feature_relationship_feature_relationship_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- CREATE SEQUENCE public.feature_relationship_feature_relationship_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE public.feature_relationship_feature_relationship_id_seq OWNER TO postgres; -- -- Name: feature_relationship_feature_relationship_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- ALTER SEQUENCE public.feature_relationship_feature_relationship_id_seq OWNED BY public.feature_relationship.feature_relationship_id; -- -- Name: feature_relationship_pub; Type: TABLE; Schema: public; Owner: postgres -- CREATE TABLE public.feature_relationship_pub ( feature_relationship_pub_id integer NOT NULL, feature_relationship_id integer NOT NULL, pub_id integer NOT NULL ); ALTER TABLE public.feature_relationship_pub OWNER TO postgres; -- -- Name: TABLE feature_relationship_pub; Type: COMMENT; Schema: public; Owner: postgres -- COMMENT ON TABLE public.feature_relationship_pub IS 'Provenance. Attach optional evidence to a feature_relationship in the form of a publication'; -- -- Name: feature_relationship_pub_feature_relationship_pub_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- CREATE SEQUENCE public.feature_relationship_pub_feature_relationship_pub_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE public.feature_relationship_pub_feature_relationship_pub_id_seq OWNER TO postgres; -- -- Name: feature_relationship_pub_feature_relationship_pub_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- ALTER SEQUENCE public.feature_relationship_pub_feature_relationship_pub_id_seq OWNED BY public.feature_relationship_pub.feature_relationship_pub_id; -- -- Name: feature_relationshipprop; Type: TABLE; Schema: public; Owner: postgres -- CREATE TABLE public.feature_relationshipprop ( feature_relationshipprop_id integer NOT NULL, feature_relationship_id integer NOT NULL, type_id integer NOT NULL, value text, rank integer DEFAULT 0 NOT NULL ); ALTER TABLE public.feature_relationshipprop OWNER TO postgres; -- -- Name: TABLE feature_relationshipprop; Type: COMMENT; Schema: public; Owner: postgres -- COMMENT ON TABLE public.feature_relationshipprop IS 'Extensible properties for feature_relationships. Analagous structure to featureprop. This table is largely optional and not used with a high frequency. Typical scenarios may be if one wishes to attach additional data to a feature_relationship - for example to say that the feature_relationship is only true in certain contexts'; -- -- Name: COLUMN feature_relationshipprop.type_id; Type: COMMENT; Schema: public; Owner: postgres -- COMMENT ON COLUMN public.feature_relationshipprop.type_id IS 'The name of the property/slot is a cvterm. The meaning of the property is defined in that cvterm. Currently there is no standard ontology for feature_relationship property types'; -- -- Name: COLUMN feature_relationshipprop.value; Type: COMMENT; Schema: public; Owner: postgres -- COMMENT ON COLUMN public.feature_relationshipprop.value IS 'The value of the property, represented as text. Numeric values are converted to their text representation. This is less efficient than using native database types, but is easier to query.'; -- -- Name: COLUMN feature_relationshipprop.rank; Type: COMMENT; Schema: public; Owner: postgres -- COMMENT ON COLUMN public.feature_relationshipprop.rank IS 'Property-Value ordering. Any feature_relationship can have multiple values for any particular property type - these are ordered in a list using rank, counting from zero. For properties that are single-valued rather than multi-valued, the default 0 value should be used'; -- -- Name: feature_relationshipprop_feature_relationshipprop_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- CREATE SEQUENCE public.feature_relationshipprop_feature_relationshipprop_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE public.feature_relationshipprop_feature_relationshipprop_id_seq OWNER TO postgres; -- -- Name: feature_relationshipprop_feature_relationshipprop_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- ALTER SEQUENCE public.feature_relationshipprop_feature_relationshipprop_id_seq OWNED BY public.feature_relationshipprop.feature_relationshipprop_id; -- -- Name: feature_relationshipprop_pub; Type: TABLE; Schema: public; Owner: postgres -- CREATE TABLE public.feature_relationshipprop_pub ( feature_relationshipprop_pub_id integer NOT NULL, feature_relationshipprop_id integer NOT NULL, pub_id integer NOT NULL ); ALTER TABLE public.feature_relationshipprop_pub OWNER TO postgres; -- -- Name: TABLE feature_relationshipprop_pub; Type: COMMENT; Schema: public; Owner: postgres -- COMMENT ON TABLE public.feature_relationshipprop_pub IS 'Provenance for feature_relationshipprop'; -- -- Name: feature_relationshipprop_pub_feature_relationshipprop_pub_i_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- CREATE SEQUENCE public.feature_relationshipprop_pub_feature_relationshipprop_pub_i_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE public.feature_relationshipprop_pub_feature_relationshipprop_pub_i_seq OWNER TO postgres; -- -- Name: feature_relationshipprop_pub_feature_relationshipprop_pub_i_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- ALTER SEQUENCE public.feature_relationshipprop_pub_feature_relationshipprop_pub_i_seq OWNED BY public.feature_relationshipprop_pub.feature_relationshipprop_pub_id; -- -- Name: feature_synonym_feature_synonym_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- CREATE SEQUENCE public.feature_synonym_feature_synonym_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE public.feature_synonym_feature_synonym_id_seq OWNER TO postgres; -- -- Name: feature_synonym_feature_synonym_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- ALTER SEQUENCE public.feature_synonym_feature_synonym_id_seq OWNED BY public.feature_synonym.feature_synonym_id; -- -- Name: feature_uniquename_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- CREATE SEQUENCE public.feature_uniquename_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE public.feature_uniquename_seq OWNER TO postgres; -- -- Name: featureloc_featureloc_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- CREATE SEQUENCE public.featureloc_featureloc_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE public.featureloc_featureloc_id_seq OWNER TO postgres; -- -- Name: featureloc_featureloc_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- ALTER SEQUENCE public.featureloc_featureloc_id_seq OWNED BY public.featureloc.featureloc_id; -- -- Name: featureloc_pub; Type: TABLE; Schema: public; Owner: postgres -- CREATE TABLE public.featureloc_pub ( featureloc_pub_id integer NOT NULL, featureloc_id integer NOT NULL, pub_id integer NOT NULL ); ALTER TABLE public.featureloc_pub OWNER TO postgres; -- -- Name: TABLE featureloc_pub; Type: COMMENT; Schema: public; Owner: postgres -- COMMENT ON TABLE public.featureloc_pub IS 'Provenance of featureloc. Linking table between featurelocs and publications that mention them'; -- -- Name: featureloc_pub_featureloc_pub_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- CREATE SEQUENCE public.featureloc_pub_featureloc_pub_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE public.featureloc_pub_featureloc_pub_id_seq OWNER TO postgres; -- -- Name: featureloc_pub_featureloc_pub_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- ALTER SEQUENCE public.featureloc_pub_featureloc_pub_id_seq OWNED BY public.featureloc_pub.featureloc_pub_id; -- -- Name: featureprop_featureprop_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- CREATE SEQUENCE public.featureprop_featureprop_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE public.featureprop_featureprop_id_seq OWNER TO postgres; -- -- Name: featureprop_featureprop_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- ALTER SEQUENCE public.featureprop_featureprop_id_seq OWNED BY public.featureprop.featureprop_id; -- -- Name: featureprop_pub; Type: TABLE; Schema: public; Owner: postgres -- CREATE TABLE public.featureprop_pub ( featureprop_pub_id integer NOT NULL, featureprop_id integer NOT NULL, pub_id integer NOT NULL ); ALTER TABLE public.featureprop_pub OWNER TO postgres; -- -- Name: TABLE featureprop_pub; Type: COMMENT; Schema: public; Owner: postgres -- COMMENT ON TABLE public.featureprop_pub IS 'Provenance. Any featureprop assignment can optionally be supported by a publication'; -- -- Name: featureprop_pub_featureprop_pub_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- CREATE SEQUENCE public.featureprop_pub_featureprop_pub_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE public.featureprop_pub_featureprop_pub_id_seq OWNER TO postgres; -- -- Name: featureprop_pub_featureprop_pub_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- ALTER SEQUENCE public.featureprop_pub_featureprop_pub_id_seq OWNED BY public.featureprop_pub.featureprop_pub_id; -- -- Name: forward_amplicon_sequence_information; Type: TABLE; Schema: public; Owner: postgres -- CREATE TABLE public.forward_amplicon_sequence_information ( organism_name text, accession_id text, plant_number integer, ending text, cxgn_production_visible boolean, forward_amplicon_sequence_information_id integer NOT NULL ); ALTER TABLE public.forward_amplicon_sequence_information OWNER TO postgres; -- -- Name: forward_amplicon_sequence_inf_forward_amplicon_sequence_inf_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- CREATE SEQUENCE public.forward_amplicon_sequence_inf_forward_amplicon_sequence_inf_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE public.forward_amplicon_sequence_inf_forward_amplicon_sequence_inf_seq OWNER TO postgres; -- -- Name: forward_amplicon_sequence_inf_forward_amplicon_sequence_inf_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- ALTER SEQUENCE public.forward_amplicon_sequence_inf_forward_amplicon_sequence_inf_seq OWNED BY public.forward_amplicon_sequence_information.forward_amplicon_sequence_information_id; -- -- Name: forward_amplicon_sequence_markers; Type: TABLE; Schema: public; Owner: postgres -- CREATE TABLE public.forward_amplicon_sequence_markers ( marker_name text, ending text, cxgn_production_visible boolean, forward_amplicon_sequence_markers_id integer NOT NULL ); ALTER TABLE public.forward_amplicon_sequence_markers OWNER TO postgres; -- -- Name: forward_amplicon_sequence_mar_forward_amplicon_sequence_mar_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- CREATE SEQUENCE public.forward_amplicon_sequence_mar_forward_amplicon_sequence_mar_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE public.forward_amplicon_sequence_mar_forward_amplicon_sequence_mar_seq OWNER TO postgres; -- -- Name: forward_amplicon_sequence_mar_forward_amplicon_sequence_mar_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- ALTER SEQUENCE public.forward_amplicon_sequence_mar_forward_amplicon_sequence_mar_seq OWNED BY public.forward_amplicon_sequence_markers.forward_amplicon_sequence_markers_id; -- -- Name: fpc_band; Type: TABLE; Schema: public; Owner: postgres -- CREATE TABLE public.fpc_band ( fpc_band_id integer NOT NULL, fpc_fingerprint_id integer NOT NULL, fragment_size integer, band_position integer, CONSTRAINT bandcheck CHECK (((band_position IS NULL) OR (band_position > 0))), CONSTRAINT datacheck CHECK (((fragment_size IS NOT NULL) OR (band_position IS NOT NULL))), CONSTRAINT fragcheck CHECK (((fragment_size IS NULL) OR (fragment_size > 0))) ); ALTER TABLE public.fpc_band OWNER TO postgres; -- -- Name: TABLE fpc_band; Type: COMMENT; Schema: public; Owner: postgres -- COMMENT ON TABLE public.fpc_band IS 'each row is a band in a gel lane or capillary run'; -- -- Name: fpc_band_fpc_band_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- CREATE SEQUENCE public.fpc_band_fpc_band_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE public.fpc_band_fpc_band_id_seq OWNER TO postgres; -- -- Name: fpc_band_fpc_band_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- ALTER SEQUENCE public.fpc_band_fpc_band_id_seq OWNED BY public.fpc_band.fpc_band_id; -- -- Name: fpc_build; Type: TABLE; Schema: public; Owner: postgres -- CREATE TABLE public.fpc_build ( fpc_build_id integer NOT NULL, date date NOT NULL, file_base text NOT NULL, comment text, fpc_series_id integer NOT NULL ); ALTER TABLE public.fpc_build OWNER TO postgres; -- -- Name: TABLE fpc_build; Type: COMMENT; Schema: public; Owner: postgres -- COMMENT ON TABLE public.fpc_build IS 'each row represents a run of the fpc contig building program, with a result file, linked to a bunch of fingerprints that it uses, and containing a bunch of fpc contigs'; -- -- Name: COLUMN fpc_build.file_base; Type: COMMENT; Schema: public; Owner: postgres -- COMMENT ON COLUMN public.fpc_build.file_base IS 'file basename relative to the base path for keeping fpc data. the actual filenames are file_base.cor and file_base.fpc'; -- -- Name: fpc_build_fpc_build_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- CREATE SEQUENCE public.fpc_build_fpc_build_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE public.fpc_build_fpc_build_id_seq OWNER TO postgres; -- -- Name: fpc_build_fpc_build_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- ALTER SEQUENCE public.fpc_build_fpc_build_id_seq OWNED BY public.fpc_build.fpc_build_id; -- -- Name: fpc_build_fpc_fingerprint; Type: TABLE; Schema: public; Owner: postgres -- CREATE TABLE public.fpc_build_fpc_fingerprint ( fpc_build_fpc_fingerprint_id bigint NOT NULL, fpc_build_id integer, fpc_fingerprint_id bigint ); ALTER TABLE public.fpc_build_fpc_fingerprint OWNER TO postgres; -- -- Name: TABLE fpc_build_fpc_fingerprint; Type: COMMENT; Schema: public; Owner: postgres -- COMMENT ON TABLE public.fpc_build_fpc_fingerprint IS 'links fpc fingerprints to the builds that use them'; -- -- Name: fpc_build_fpc_fingerprint_fpc_build_fpc_fingerprint_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- CREATE SEQUENCE public.fpc_build_fpc_fingerprint_fpc_build_fpc_fingerprint_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE public.fpc_build_fpc_fingerprint_fpc_build_fpc_fingerprint_id_seq OWNER TO postgres; -- -- Name: fpc_build_fpc_fingerprint_fpc_build_fpc_fingerprint_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- ALTER SEQUENCE public.fpc_build_fpc_fingerprint_fpc_build_fpc_fingerprint_id_seq OWNED BY public.fpc_build_fpc_fingerprint.fpc_build_fpc_fingerprint_id; -- -- Name: fpc_contig; Type: TABLE; Schema: public; Owner: postgres -- CREATE TABLE public.fpc_contig ( fpc_contig_id bigint NOT NULL, fpc_build_id integer NOT NULL, name character varying(20) NOT NULL ); ALTER TABLE public.fpc_contig OWNER TO postgres; -- -- Name: TABLE fpc_contig; Type: COMMENT; Schema: public; Owner: postgres -- COMMENT ON TABLE public.fpc_contig IS 'each row is an contig in an fpc build, linked to clones it contains via fpc_contig_clone table'; -- -- Name: fpc_contig_clone; Type: TABLE; Schema: public; Owner: postgres -- CREATE TABLE public.fpc_contig_clone ( fpc_contig_clone_id bigint NOT NULL, fpc_contig_id bigint NOT NULL, clone_id bigint NOT NULL, plausible boolean DEFAULT true NOT NULL ); ALTER TABLE public.fpc_contig_clone OWNER TO postgres; -- -- Name: TABLE fpc_contig_clone; Type: COMMENT; Schema: public; Owner: postgres -- COMMENT ON TABLE public.fpc_contig_clone IS 'links fpc contigs with the clones that are a part of them'; -- -- Name: fpc_contig_clone_fpc_contig_clone_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- CREATE SEQUENCE public.fpc_contig_clone_fpc_contig_clone_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE public.fpc_contig_clone_fpc_contig_clone_id_seq OWNER TO postgres; -- -- Name: fpc_contig_clone_fpc_contig_clone_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- ALTER SEQUENCE public.fpc_contig_clone_fpc_contig_clone_id_seq OWNED BY public.fpc_contig_clone.fpc_contig_clone_id; -- -- Name: fpc_contig_fpc_contig_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- CREATE SEQUENCE public.fpc_contig_fpc_contig_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE public.fpc_contig_fpc_contig_id_seq OWNER TO postgres; -- -- Name: fpc_contig_fpc_contig_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- ALTER SEQUENCE public.fpc_contig_fpc_contig_id_seq OWNED BY public.fpc_contig.fpc_contig_id; -- -- Name: fpc_fingerprint; Type: TABLE; Schema: public; Owner: postgres -- CREATE TABLE public.fpc_fingerprint ( fpc_fingerprint_id integer NOT NULL, clone_id integer NOT NULL, gel_name character varying(30), enzyme_id integer NOT NULL ); ALTER TABLE public.fpc_fingerprint OWNER TO postgres; -- -- Name: TABLE fpc_fingerprint; Type: COMMENT; Schema: public; Owner: postgres -- COMMENT ON TABLE public.fpc_fingerprint IS 'each row is a lane in a gel or a single capillary run of a single clone'; -- -- Name: fpc_fingerprint_fpc_fingerprint_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- CREATE SEQUENCE public.fpc_fingerprint_fpc_fingerprint_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE public.fpc_fingerprint_fpc_fingerprint_id_seq OWNER TO postgres; -- -- Name: fpc_fingerprint_fpc_fingerprint_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- ALTER SEQUENCE public.fpc_fingerprint_fpc_fingerprint_id_seq OWNED BY public.fpc_fingerprint.fpc_fingerprint_id; -- -- Name: fpc_series; Type: TABLE; Schema: public; Owner: postgres -- CREATE TABLE public.fpc_series ( fpc_series_id integer NOT NULL, name character varying(50) ); ALTER TABLE public.fpc_series OWNER TO postgres; -- -- Name: TABLE fpc_series; Type: COMMENT; Schema: public; Owner: postgres -- COMMENT ON TABLE public.fpc_series IS 'each row here is one fpc build series, like "China FPC builds". captures when different fpc builds are different versions of the same build'; -- -- Name: fpc_series_fpc_series_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- CREATE SEQUENCE public.fpc_series_fpc_series_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE public.fpc_series_fpc_series_id_seq OWNER TO postgres; -- -- Name: fpc_series_fpc_series_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- ALTER SEQUENCE public.fpc_series_fpc_series_id_seq OWNED BY public.fpc_series.fpc_series_id; -- -- Name: genotype; Type: TABLE; Schema: public; Owner: postgres -- CREATE TABLE public.genotype ( genotype_id integer NOT NULL, name text, uniquename text NOT NULL, description character varying(255), type_id integer NOT NULL, create_date timestamp without time zone DEFAULT now() ); ALTER TABLE public.genotype OWNER TO postgres; -- -- Name: TABLE genotype; Type: COMMENT; Schema: public; Owner: postgres -- COMMENT ON TABLE public.genotype IS 'Genetic context. A genotype is defined by a collection of features, mutations, balancers, deficiencies, haplotype blocks, or engineered constructs.'; -- -- Name: COLUMN genotype.name; Type: COMMENT; Schema: public; Owner: postgres -- COMMENT ON COLUMN public.genotype.name IS 'Optional alternative name for a genotype, for display purposes.'; -- -- Name: COLUMN genotype.uniquename; Type: COMMENT; Schema: public; Owner: postgres -- COMMENT ON COLUMN public.genotype.uniquename IS 'The unique name for a genotype; typically derived from the features making up the genotype.'; -- -- Name: genotype_genotype_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- CREATE SEQUENCE public.genotype_genotype_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE public.genotype_genotype_id_seq OWNER TO postgres; -- -- Name: genotype_genotype_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- ALTER SEQUENCE public.genotype_genotype_id_seq OWNED BY public.genotype.genotype_id; -- -- Name: genotypeprop; Type: TABLE; Schema: public; Owner: postgres -- CREATE TABLE public.genotypeprop ( genotypeprop_id integer NOT NULL, genotype_id integer NOT NULL, type_id integer NOT NULL, value jsonb, rank integer DEFAULT 0 NOT NULL ); ALTER TABLE public.genotypeprop OWNER TO postgres; -- -- Name: genotypeprop_genotypeprop_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- CREATE SEQUENCE public.genotypeprop_genotypeprop_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE public.genotypeprop_genotypeprop_id_seq OWNER TO postgres; -- -- Name: genotypeprop_genotypeprop_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- ALTER SEQUENCE public.genotypeprop_genotypeprop_id_seq OWNED BY public.genotypeprop.genotypeprop_id; -- -- Name: genotyping_projectsxaccessions; Type: MATERIALIZED VIEW; Schema: public; Owner: web_usr -- CREATE MATERIALIZED VIEW public.genotyping_projectsxaccessions AS SELECT nd_experiment_project.project_id AS genotyping_project_id, materialized_genoview.accession_id FROM ((public.nd_experiment_project JOIN public.nd_experiment_genotype ON ((nd_experiment_project.nd_experiment_id = nd_experiment_genotype.nd_experiment_id))) JOIN public.materialized_genoview ON ((nd_experiment_genotype.genotype_id = materialized_genoview.genotype_id))) WHERE (nd_experiment_project.project_id IN ( SELECT genotyping_projects.genotyping_project_id FROM public.genotyping_projects)) GROUP BY nd_experiment_project.project_id, materialized_genoview.accession_id WITH NO DATA; ALTER TABLE public.genotyping_projectsxaccessions OWNER TO web_usr; -- -- Name: genotyping_projectsxbreeding_programs; Type: MATERIALIZED VIEW; Schema: public; Owner: web_usr -- CREATE MATERIALIZED VIEW public.genotyping_projectsxbreeding_programs AS SELECT project_relationship.subject_project_id AS genotyping_project_id, project_relationship.object_project_id AS breeding_program_id FROM public.project_relationship WHERE ((project_relationship.type_id = ( SELECT cvterm.cvterm_id FROM public.cvterm WHERE ((cvterm.name)::text = 'breeding_program_trial_relationship'::text))) AND (project_relationship.subject_project_id IN ( SELECT genotyping_projects.genotyping_project_id FROM public.genotyping_projects))) WITH NO DATA; ALTER TABLE public.genotyping_projectsxbreeding_programs OWNER TO web_usr; -- -- Name: genotyping_projectsxgenotyping_protocols; Type: MATERIALIZED VIEW; Schema: public; Owner: web_usr -- CREATE MATERIALIZED VIEW public.genotyping_projectsxgenotyping_protocols AS SELECT genotyping_projects.genotyping_project_id, nd_experiment_protocol.nd_protocol_id AS genotyping_protocol_id FROM ((public.genotyping_projects JOIN public.nd_experiment_project ON ((genotyping_projects.genotyping_project_id = nd_experiment_project.project_id))) JOIN public.nd_experiment_protocol ON ((nd_experiment_project.nd_experiment_id = nd_experiment_protocol.nd_experiment_id))) GROUP BY genotyping_projects.genotyping_project_id, nd_experiment_protocol.nd_protocol_id WITH NO DATA; ALTER TABLE public.genotyping_projectsxgenotyping_protocols OWNER TO web_usr; -- -- Name: genotyping_projectsxlocations; Type: MATERIALIZED VIEW; Schema: public; Owner: web_usr -- CREATE MATERIALIZED VIEW public.genotyping_projectsxlocations AS SELECT projectprop.project_id AS genotyping_project_id, (projectprop.value)::integer AS location_id FROM public.projectprop WHERE ((projectprop.type_id = ( SELECT cvterm.cvterm_id FROM public.cvterm WHERE ((cvterm.name)::text = 'project location'::text))) AND (projectprop.project_id IN ( SELECT genotyping_projects.genotyping_project_id FROM public.genotyping_projects))) WITH NO DATA; ALTER TABLE public.genotyping_projectsxlocations OWNER TO web_usr; -- -- Name: genotyping_projectsxtraits; Type: MATERIALIZED VIEW; Schema: public; Owner: web_usr -- CREATE MATERIALIZED VIEW public.genotyping_projectsxtraits AS SELECT nd_experiment_project.project_id AS genotyping_project_id, materialized_phenoview.trait_id FROM (((public.nd_experiment_project JOIN public.nd_experiment_genotype ON ((nd_experiment_genotype.nd_experiment_id = nd_experiment_project.nd_experiment_id))) JOIN public.materialized_genoview ON ((materialized_genoview.genotype_id = nd_experiment_genotype.genotype_id))) JOIN public.materialized_phenoview ON ((materialized_genoview.accession_id = materialized_phenoview.accession_id))) WHERE (nd_experiment_project.project_id IN ( SELECT projectprop.project_id FROM public.projectprop WHERE ((projectprop.type_id IN ( SELECT cvterm.cvterm_id FROM public.cvterm WHERE ((cvterm.name)::text = 'design'::text))) AND (projectprop.value = 'genotype_data_project'::text)))) GROUP BY nd_experiment_project.project_id, materialized_phenoview.trait_id WITH NO DATA; ALTER TABLE public.genotyping_projectsxtraits OWNER TO web_usr; -- -- Name: genotyping_projectsxtrials; Type: MATERIALIZED VIEW; Schema: public; Owner: web_usr -- CREATE MATERIALIZED VIEW public.genotyping_projectsxtrials AS SELECT nd_experiment_project.project_id AS genotyping_project_id, materialized_phenoview.trial_id FROM (((public.nd_experiment_project JOIN public.nd_experiment_genotype ON ((nd_experiment_genotype.nd_experiment_id = nd_experiment_project.nd_experiment_id))) JOIN public.materialized_genoview ON ((materialized_genoview.genotype_id = nd_experiment_genotype.genotype_id))) JOIN public.materialized_phenoview ON ((materialized_phenoview.accession_id = materialized_genoview.accession_id))) WHERE (nd_experiment_project.project_id IN ( SELECT projectprop.project_id FROM public.projectprop WHERE ((projectprop.type_id IN ( SELECT cvterm.cvterm_id FROM public.cvterm WHERE ((cvterm.name)::text = 'design'::text))) AND (projectprop.value = 'genotype_data_project'::text)))) GROUP BY nd_experiment_project.project_id, materialized_phenoview.trial_id WITH NO DATA; ALTER TABLE public.genotyping_projectsxtrials OWNER TO web_usr; -- -- Name: genotyping_projectsxyears; Type: MATERIALIZED VIEW; Schema: public; Owner: web_usr -- CREATE MATERIALIZED VIEW public.genotyping_projectsxyears AS SELECT projectprop.project_id AS genotyping_project_id, projectprop.value AS year_id FROM public.projectprop WHERE ((projectprop.project_id IN ( SELECT project.project_id FROM (public.project JOIN public.projectprop projectprop_1 USING (project_id)) WHERE ((projectprop_1.type_id = ( SELECT cvterm.cvterm_id FROM public.cvterm WHERE ((cvterm.name)::text = 'design'::text))) AND (projectprop_1.value = 'genotype_data_project'::text)))) AND (projectprop.type_id = ( SELECT cvterm.cvterm_id FROM public.cvterm WHERE ((cvterm.name)::text = 'project year'::text)))) WITH NO DATA; ALTER TABLE public.genotyping_projectsxyears OWNER TO web_usr; -- -- Name: genotyping_protocols; Type: MATERIALIZED VIEW; Schema: public; Owner: web_usr -- CREATE MATERIALIZED VIEW public.genotyping_protocols AS SELECT nd_protocol.nd_protocol_id AS genotyping_protocol_id, nd_protocol.name AS genotyping_protocol_name FROM public.nd_protocol WHERE (nd_protocol.type_id = ( SELECT cvterm.cvterm_id FROM public.cvterm WHERE ((cvterm.name)::text = 'genotyping_experiment'::text))) GROUP BY nd_protocol.nd_protocol_id, nd_protocol.name WITH NO DATA; ALTER TABLE public.genotyping_protocols OWNER TO web_usr; -- -- Name: genotyping_protocolsxgenotyping_projects; Type: MATERIALIZED VIEW; Schema: public; Owner: web_usr -- CREATE MATERIALIZED VIEW public.genotyping_protocolsxgenotyping_projects AS SELECT genotyping_protocols.genotyping_protocol_id, nd_experiment_project.project_id AS genotyping_project_id FROM ((public.genotyping_protocols JOIN public.nd_experiment_protocol ON ((genotyping_protocols.genotyping_protocol_id = nd_experiment_protocol.nd_protocol_id))) JOIN public.nd_experiment_project ON ((nd_experiment_protocol.nd_experiment_id = nd_experiment_project.nd_experiment_id))) GROUP BY genotyping_protocols.genotyping_protocol_id, nd_experiment_project.project_id WITH NO DATA; ALTER TABLE public.genotyping_protocolsxgenotyping_projects OWNER TO web_usr; -- -- Name: genotyping_protocolsxlocations; Type: MATERIALIZED VIEW; Schema: public; Owner: web_usr -- CREATE MATERIALIZED VIEW public.genotyping_protocolsxlocations AS SELECT materialized_genoview.genotyping_protocol_id, materialized_phenoview.location_id FROM (public.materialized_genoview JOIN public.materialized_phenoview USING (accession_id)) GROUP BY materialized_genoview.genotyping_protocol_id, materialized_phenoview.location_id WITH NO DATA; ALTER TABLE public.genotyping_protocolsxlocations OWNER TO web_usr; -- -- Name: genotyping_protocolsxplants; Type: MATERIALIZED VIEW; Schema: public; Owner: web_usr -- CREATE MATERIALIZED VIEW public.genotyping_protocolsxplants AS SELECT materialized_genoview.genotyping_protocol_id, stock.stock_id AS plant_id FROM ((public.materialized_genoview JOIN public.materialized_phenoview USING (accession_id)) JOIN public.stock ON (((materialized_phenoview.stock_id = stock.stock_id) AND (stock.type_id = ( SELECT cvterm.cvterm_id FROM public.cvterm WHERE ((cvterm.name)::text = 'plant'::text)))))) GROUP BY materialized_genoview.genotyping_protocol_id, stock.stock_id WITH NO DATA; ALTER TABLE public.genotyping_protocolsxplants OWNER TO web_usr; -- -- Name: genotyping_protocolsxplots; Type: MATERIALIZED VIEW; Schema: public; Owner: web_usr -- CREATE MATERIALIZED VIEW public.genotyping_protocolsxplots AS SELECT materialized_genoview.genotyping_protocol_id, stock.stock_id AS plot_id FROM ((public.materialized_genoview JOIN public.materialized_phenoview USING (accession_id)) JOIN public.stock ON (((materialized_phenoview.stock_id = stock.stock_id) AND (stock.type_id = ( SELECT cvterm.cvterm_id FROM public.cvterm WHERE ((cvterm.name)::text = 'plot'::text)))))) GROUP BY materialized_genoview.genotyping_protocol_id, stock.stock_id WITH NO DATA; ALTER TABLE public.genotyping_protocolsxplots OWNER TO web_usr; -- -- Name: genotyping_protocolsxseedlots; Type: MATERIALIZED VIEW; Schema: public; Owner: web_usr -- CREATE MATERIALIZED VIEW public.genotyping_protocolsxseedlots AS SELECT materialized_genoview.genotyping_protocol_id, stock.stock_id AS seedlot_id FROM ((public.materialized_genoview LEFT JOIN public.stock_relationship seedlot_relationship ON (((materialized_genoview.accession_id = seedlot_relationship.subject_id) AND (seedlot_relationship.type_id IN ( SELECT cvterm.cvterm_id FROM public.cvterm WHERE ((cvterm.name)::text = 'collection_of'::text)))))) LEFT JOIN public.stock ON (((seedlot_relationship.object_id = stock.stock_id) AND (stock.type_id IN ( SELECT cvterm.cvterm_id FROM public.cvterm WHERE ((cvterm.name)::text = 'seedlot'::text)))))) GROUP BY materialized_genoview.genotyping_protocol_id, stock.stock_id WITH NO DATA; ALTER TABLE public.genotyping_protocolsxseedlots OWNER TO web_usr; -- -- Name: genotyping_protocolsxtrait_components; Type: MATERIALIZED VIEW; Schema: public; Owner: web_usr -- CREATE MATERIALIZED VIEW public.genotyping_protocolsxtrait_components AS SELECT materialized_genoview.genotyping_protocol_id, trait_component.cvterm_id AS trait_component_id FROM ((((public.materialized_genoview JOIN public.materialized_phenoview USING (accession_id)) JOIN public.cvterm trait ON ((materialized_phenoview.trait_id = trait.cvterm_id))) JOIN public.cvterm_relationship ON (((trait.cvterm_id = cvterm_relationship.object_id) AND (cvterm_relationship.type_id = ( SELECT cvterm.cvterm_id FROM public.cvterm WHERE ((cvterm.name)::text = 'contains'::text)))))) JOIN public.cvterm trait_component ON ((cvterm_relationship.subject_id = trait_component.cvterm_id))) GROUP BY materialized_genoview.genotyping_protocol_id, trait_component.cvterm_id WITH NO DATA; ALTER TABLE public.genotyping_protocolsxtrait_components OWNER TO web_usr; -- -- Name: genotyping_protocolsxtraits; Type: MATERIALIZED VIEW; Schema: public; Owner: web_usr -- CREATE MATERIALIZED VIEW public.genotyping_protocolsxtraits AS SELECT materialized_genoview.genotyping_protocol_id, materialized_phenoview.trait_id FROM (public.materialized_genoview JOIN public.materialized_phenoview USING (accession_id)) GROUP BY materialized_genoview.genotyping_protocol_id, materialized_phenoview.trait_id WITH NO DATA; ALTER TABLE public.genotyping_protocolsxtraits OWNER TO web_usr; -- -- Name: genotyping_protocolsxtrial_designs; Type: MATERIALIZED VIEW; Schema: public; Owner: web_usr -- CREATE MATERIALIZED VIEW public.genotyping_protocolsxtrial_designs AS SELECT materialized_genoview.genotyping_protocol_id, trialdesign.value AS trial_design_id FROM ((public.materialized_genoview JOIN public.materialized_phenoview USING (accession_id)) JOIN public.projectprop trialdesign ON (((materialized_phenoview.trial_id = trialdesign.project_id) AND (trialdesign.type_id = ( SELECT cvterm.cvterm_id FROM public.cvterm WHERE ((cvterm.name)::text = 'design'::text)))))) GROUP BY materialized_genoview.genotyping_protocol_id, trialdesign.value WITH NO DATA; ALTER TABLE public.genotyping_protocolsxtrial_designs OWNER TO web_usr; -- -- Name: genotyping_protocolsxtrial_types; Type: MATERIALIZED VIEW; Schema: public; Owner: web_usr -- CREATE MATERIALIZED VIEW public.genotyping_protocolsxtrial_types AS SELECT materialized_genoview.genotyping_protocol_id, trialterm.cvterm_id AS trial_type_id FROM (((public.materialized_genoview JOIN public.materialized_phenoview USING (accession_id)) JOIN public.projectprop trialprop ON (((materialized_phenoview.trial_id = trialprop.project_id) AND (trialprop.type_id IN ( SELECT cvterm.cvterm_id FROM (public.cvterm JOIN public.cv USING (cv_id)) WHERE ((cv.name)::text = 'project_type'::text)))))) JOIN public.cvterm trialterm ON ((trialprop.type_id = trialterm.cvterm_id))) GROUP BY materialized_genoview.genotyping_protocol_id, trialterm.cvterm_id WITH NO DATA; ALTER TABLE public.genotyping_protocolsxtrial_types OWNER TO web_usr; -- -- Name: genotyping_protocolsxtrials; Type: MATERIALIZED VIEW; Schema: public; Owner: web_usr -- CREATE MATERIALIZED VIEW public.genotyping_protocolsxtrials AS SELECT materialized_genoview.genotyping_protocol_id, materialized_phenoview.trial_id FROM (public.materialized_genoview JOIN public.materialized_phenoview USING (accession_id)) GROUP BY materialized_genoview.genotyping_protocol_id, materialized_phenoview.trial_id WITH NO DATA; ALTER TABLE public.genotyping_protocolsxtrials OWNER TO web_usr; -- -- Name: genotyping_protocolsxyears; Type: MATERIALIZED VIEW; Schema: public; Owner: web_usr -- CREATE MATERIALIZED VIEW public.genotyping_protocolsxyears AS SELECT materialized_genoview.genotyping_protocol_id, materialized_phenoview.year_id FROM (public.materialized_genoview JOIN public.materialized_phenoview USING (accession_id)) GROUP BY materialized_genoview.genotyping_protocol_id, materialized_phenoview.year_id WITH NO DATA; ALTER TABLE public.genotyping_protocolsxyears OWNER TO web_usr; -- -- Name: gff3atts; Type: VIEW; Schema: public; Owner: postgres -- CREATE VIEW public.gff3atts AS SELECT fs.feature_id, 'Ontology_term'::text AS type, CASE WHEN ((db.name)::text ~~ '%Gene Ontology%'::text) THEN (('GO:'::text || (dbx.accession)::text))::character varying WHEN ((db.name)::text ~~ 'Sequence Ontology%'::text) THEN (('SO:'::text || (dbx.accession)::text))::character varying ELSE ((((db.name)::text || ':'::text) || (dbx.accession)::text))::character varying END AS attribute FROM public.cvterm s, public.dbxref dbx, public.feature_cvterm fs, public.db WHERE ((fs.cvterm_id = s.cvterm_id) AND (s.dbxref_id = dbx.dbxref_id) AND (db.db_id = dbx.db_id)) UNION ALL SELECT fs.feature_id, 'Dbxref'::text AS type, (((d.name)::text || ':'::text) || (s.accession)::text) AS attribute FROM public.dbxref s, public.feature_dbxref fs, public.db d WHERE ((fs.dbxref_id = s.dbxref_id) AND (s.db_id = d.db_id) AND ((d.name)::text <> 'GFF_source'::text)) UNION ALL SELECT f.feature_id, 'Alias'::text AS type, s.name AS attribute FROM public.synonym s, public.feature_synonym fs, public.feature f WHERE ((fs.synonym_id = s.synonym_id) AND (f.feature_id = fs.feature_id) AND ((f.name)::text <> (s.name)::text) AND (f.uniquename <> (s.name)::text)) UNION ALL SELECT fp.feature_id, cv.name AS type, fp.value AS attribute FROM public.featureprop fp, public.cvterm cv WHERE (fp.type_id = cv.cvterm_id) UNION ALL SELECT fs.feature_id, 'pub'::text AS type, (((s.series_name)::text || ':'::text) || s.title) AS attribute FROM public.pub s, public.feature_pub fs WHERE (fs.pub_id = s.pub_id) UNION ALL SELECT fr.subject_id AS feature_id, 'Parent'::text AS type, parent.uniquename AS attribute FROM public.feature_relationship fr, public.feature parent WHERE (fr.object_id = parent.feature_id) UNION ALL SELECT feature.feature_id, 'ID'::text AS type, feature.uniquename AS attribute FROM public.feature WHERE (NOT (feature.type_id IN ( SELECT cvterm.cvterm_id FROM public.cvterm WHERE ((cvterm.name)::text = 'CDS'::text)))) UNION ALL SELECT feature.feature_id, 'chado_feature_id'::text AS type, (feature.feature_id)::character varying AS attribute FROM public.feature UNION ALL SELECT feature.feature_id, 'Name'::text AS type, feature.name AS attribute FROM public.feature; ALTER TABLE public.gff3atts OWNER TO postgres; -- -- Name: gff3view; Type: VIEW; Schema: public; Owner: postgres -- CREATE VIEW public.gff3view AS SELECT f.feature_id, sf.name AS ref, gffdbx.accession AS source, cv.name AS type, (fl.fmin + 1) AS fstart, fl.fmax AS fend, af.significance AS score, fl.strand, fl.phase, f.seqlen, f.name, f.organism_id FROM (((((public.feature f LEFT JOIN public.featureloc fl ON ((f.feature_id = fl.feature_id))) LEFT JOIN public.feature sf ON ((fl.srcfeature_id = sf.feature_id))) LEFT JOIN ( SELECT fd.feature_id, d.accession FROM ((public.feature_dbxref fd JOIN public.dbxref d USING (dbxref_id)) JOIN public.db USING (db_id)) WHERE ((db.name)::text = 'GFF_source'::text)) gffdbx ON ((f.feature_id = gffdbx.feature_id))) LEFT JOIN public.cvterm cv ON ((f.type_id = cv.cvterm_id))) LEFT JOIN public.analysisfeature af ON ((f.feature_id = af.feature_id))); ALTER TABLE public.gff3view OWNER TO postgres; -- -- Name: gff_meta; Type: TABLE; Schema: public; Owner: postgres -- CREATE TABLE public.gff_meta ( name character varying(100), hostname character varying(100), starttime timestamp without time zone DEFAULT now() NOT NULL ); ALTER TABLE public.gff_meta OWNER TO postgres; -- -- Name: glossary; Type: TABLE; Schema: public; Owner: postgres -- CREATE TABLE public.glossary ( glossary_id integer NOT NULL, term text NOT NULL, definition text NOT NULL ); ALTER TABLE public.glossary OWNER TO postgres; -- -- Name: glossary_glossary_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- CREATE SEQUENCE public.glossary_glossary_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE public.glossary_glossary_id_seq OWNER TO postgres; -- -- Name: glossary_glossary_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- ALTER SEQUENCE public.glossary_glossary_id_seq OWNED BY public.glossary.glossary_id; -- -- Name: itag_loading_log; Type: TABLE; Schema: public; Owner: postgres -- CREATE TABLE public.itag_loading_log ( id integer NOT NULL, deleted boolean DEFAULT false NOT NULL, "timestamp" timestamp without time zone DEFAULT now() NOT NULL, uname character varying(40) NOT NULL, host character varying(40) NOT NULL, progname character varying(80) NOT NULL, pid integer NOT NULL, search_key character varying(200), message text ); ALTER TABLE public.itag_loading_log OWNER TO postgres; -- -- Name: itag_loading_log_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- CREATE SEQUENCE public.itag_loading_log_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE public.itag_loading_log_id_seq OWNER TO postgres; -- -- Name: itag_loading_log_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- ALTER SEQUENCE public.itag_loading_log_id_seq OWNED BY public.itag_loading_log.id; -- -- Name: locations; Type: MATERIALIZED VIEW; Schema: public; Owner: web_usr -- CREATE MATERIALIZED VIEW public.locations AS SELECT nd_geolocation.nd_geolocation_id AS location_id, nd_geolocation.description AS location_name FROM public.nd_geolocation GROUP BY nd_geolocation.nd_geolocation_id, nd_geolocation.description WITH NO DATA; ALTER TABLE public.locations OWNER TO web_usr; -- -- Name: locationsxgenotyping_projects; Type: MATERIALIZED VIEW; Schema: public; Owner: web_usr -- CREATE MATERIALIZED VIEW public.locationsxgenotyping_projects AS SELECT projectprop.value AS location_id, projectprop.project_id AS genotyping_project_id FROM public.projectprop WHERE ((projectprop.type_id = ( SELECT cvterm.cvterm_id FROM public.cvterm WHERE ((cvterm.name)::text = 'project location'::text))) AND (projectprop.value IN ( SELECT (locations.location_id)::text AS location_id FROM public.locations)) AND (projectprop.project_id IN ( SELECT project.project_id FROM (public.project JOIN public.projectprop projectprop_1 USING (project_id)) WHERE ((projectprop_1.type_id = ( SELECT cvterm.cvterm_id FROM public.cvterm WHERE ((cvterm.name)::text = 'design'::text))) AND (projectprop_1.value = 'genotype_data_project'::text))))) WITH NO DATA; ALTER TABLE public.locationsxgenotyping_projects OWNER TO web_usr; -- -- Name: locationsxplants; Type: MATERIALIZED VIEW; Schema: public; Owner: web_usr -- CREATE MATERIALIZED VIEW public.locationsxplants AS SELECT materialized_phenoview.location_id, stock.stock_id AS plant_id FROM (public.materialized_phenoview JOIN public.stock ON (((materialized_phenoview.stock_id = stock.stock_id) AND (stock.type_id = ( SELECT cvterm.cvterm_id FROM public.cvterm WHERE ((cvterm.name)::text = 'plant'::text)))))) GROUP BY materialized_phenoview.location_id, stock.stock_id WITH NO DATA; ALTER TABLE public.locationsxplants OWNER TO web_usr; -- -- Name: locationsxplots; Type: MATERIALIZED VIEW; Schema: public; Owner: web_usr -- CREATE MATERIALIZED VIEW public.locationsxplots AS SELECT materialized_phenoview.location_id, stock.stock_id AS plot_id FROM (public.materialized_phenoview JOIN public.stock ON (((materialized_phenoview.stock_id = stock.stock_id) AND (stock.type_id = ( SELECT cvterm.cvterm_id FROM public.cvterm WHERE ((cvterm.name)::text = 'plot'::text)))))) GROUP BY materialized_phenoview.location_id, stock.stock_id WITH NO DATA; ALTER TABLE public.locationsxplots OWNER TO web_usr; -- -- Name: locationsxseedlots; Type: MATERIALIZED VIEW; Schema: public; Owner: web_usr -- CREATE MATERIALIZED VIEW public.locationsxseedlots AS SELECT nd_experiment.nd_geolocation_id AS location_id, nd_experiment_stock.stock_id AS seedlot_id FROM (public.nd_experiment LEFT JOIN public.nd_experiment_stock ON ((nd_experiment.nd_experiment_id = nd_experiment_stock.nd_experiment_id))) WHERE (nd_experiment.type_id IN ( SELECT cvterm.cvterm_id FROM public.cvterm WHERE ((cvterm.name)::text = 'seedlot_experiment'::text))) GROUP BY nd_experiment.nd_geolocation_id, nd_experiment_stock.stock_id WITH NO DATA; ALTER TABLE public.locationsxseedlots OWNER TO web_usr; -- -- Name: locationsxtrait_components; Type: MATERIALIZED VIEW; Schema: public; Owner: web_usr -- CREATE MATERIALIZED VIEW public.locationsxtrait_components AS SELECT materialized_phenoview.location_id, trait_component.cvterm_id AS trait_component_id FROM (((public.materialized_phenoview JOIN public.cvterm trait ON ((materialized_phenoview.trait_id = trait.cvterm_id))) JOIN public.cvterm_relationship ON (((trait.cvterm_id = cvterm_relationship.object_id) AND (cvterm_relationship.type_id = ( SELECT cvterm.cvterm_id FROM public.cvterm WHERE ((cvterm.name)::text = 'contains'::text)))))) JOIN public.cvterm trait_component ON ((cvterm_relationship.subject_id = trait_component.cvterm_id))) GROUP BY materialized_phenoview.location_id, trait_component.cvterm_id WITH NO DATA; ALTER TABLE public.locationsxtrait_components OWNER TO web_usr; -- -- Name: locationsxtraits; Type: MATERIALIZED VIEW; Schema: public; Owner: web_usr -- CREATE MATERIALIZED VIEW public.locationsxtraits AS SELECT materialized_phenoview.location_id, materialized_phenoview.trait_id FROM public.materialized_phenoview GROUP BY materialized_phenoview.location_id, materialized_phenoview.trait_id WITH NO DATA; ALTER TABLE public.locationsxtraits OWNER TO web_usr; -- -- Name: locationsxtrial_designs; Type: MATERIALIZED VIEW; Schema: public; Owner: web_usr -- CREATE MATERIALIZED VIEW public.locationsxtrial_designs AS SELECT materialized_phenoview.location_id, trialdesign.value AS trial_design_id FROM (public.materialized_phenoview JOIN public.projectprop trialdesign ON (((materialized_phenoview.trial_id = trialdesign.project_id) AND (trialdesign.type_id = ( SELECT cvterm.cvterm_id FROM public.cvterm WHERE ((cvterm.name)::text = 'design'::text)))))) GROUP BY materialized_phenoview.location_id, trialdesign.value WITH NO DATA; ALTER TABLE public.locationsxtrial_designs OWNER TO web_usr; -- -- Name: locationsxtrial_types; Type: MATERIALIZED VIEW; Schema: public; Owner: web_usr -- CREATE MATERIALIZED VIEW public.locationsxtrial_types AS SELECT materialized_phenoview.location_id, trialterm.cvterm_id AS trial_type_id FROM ((public.materialized_phenoview JOIN public.projectprop trialprop ON (((materialized_phenoview.trial_id = trialprop.project_id) AND (trialprop.type_id IN ( SELECT cvterm.cvterm_id FROM (public.cvterm JOIN public.cv USING (cv_id)) WHERE ((cv.name)::text = 'project_type'::text)))))) JOIN public.cvterm trialterm ON ((trialprop.type_id = trialterm.cvterm_id))) GROUP BY materialized_phenoview.location_id, trialterm.cvterm_id WITH NO DATA; ALTER TABLE public.locationsxtrial_types OWNER TO web_usr; -- -- Name: locationsxtrials; Type: MATERIALIZED VIEW; Schema: public; Owner: web_usr -- CREATE MATERIALIZED VIEW public.locationsxtrials AS SELECT materialized_phenoview.location_id, materialized_phenoview.trial_id FROM public.materialized_phenoview GROUP BY materialized_phenoview.location_id, materialized_phenoview.trial_id WITH NO DATA; ALTER TABLE public.locationsxtrials OWNER TO web_usr; -- -- Name: locationsxyears; Type: MATERIALIZED VIEW; Schema: public; Owner: web_usr -- CREATE MATERIALIZED VIEW public.locationsxyears AS SELECT materialized_phenoview.location_id, materialized_phenoview.year_id FROM public.materialized_phenoview GROUP BY materialized_phenoview.location_id, materialized_phenoview.year_id WITH NO DATA; ALTER TABLE public.locationsxyears OWNER TO web_usr; -- -- Name: marker_names; Type: TABLE; Schema: public; Owner: postgres -- CREATE TABLE public.marker_names ( marker_id integer, name text ); ALTER TABLE public.marker_names OWNER TO postgres; -- -- Name: phenotypeprop; Type: TABLE; Schema: public; Owner: postgres -- CREATE TABLE public.phenotypeprop ( phenotypeprop_id integer NOT NULL, phenotype_id integer NOT NULL, type_id integer NOT NULL, value text, rank integer DEFAULT 0 NOT NULL ); ALTER TABLE public.phenotypeprop OWNER TO postgres; -- -- Name: TABLE phenotypeprop; Type: COMMENT; Schema: public; Owner: postgres -- COMMENT ON TABLE public.phenotypeprop IS 'A phenotype can have any number of slot-value property tags attached to it. This is an alternative to hardcoding a list of columns in the relational schema, and is completely extensible. There is a unique constraint, phenotypeprop_c1, for the combination of phenotype_id, rank, and type_id. Multivalued property-value pairs must be differentiated by rank.'; -- -- Name: stockprop; Type: TABLE; Schema: public; Owner: postgres -- CREATE TABLE public.stockprop ( stockprop_id integer NOT NULL, stock_id integer NOT NULL, type_id integer NOT NULL, value text, rank integer DEFAULT 0 NOT NULL ); ALTER TABLE public.stockprop OWNER TO postgres; -- -- Name: TABLE stockprop; Type: COMMENT; Schema: public; Owner: postgres -- COMMENT ON TABLE public.stockprop IS 'A stock can have any number of slot-value property tags attached to it. This is an alternative to hardcoding a list of columns in the relational schema, and is completely extensible. There is a unique constraint, stockprop_c1, for the combination of stock_id, rank, and type_id. Multivalued property-value pairs must be differentiated by rank.'; -- -- Name: materialized_phenotype_jsonb_table; Type: MATERIALIZED VIEW; Schema: public; Owner: web_usr -- CREATE MATERIALIZED VIEW public.materialized_phenotype_jsonb_table AS SELECT observationunit.stock_id AS observationunit_stock_id, observationunit.uniquename AS observationunit_uniquename, observationunit_cvterm.name AS observationunit_type_name, germplasm.uniquename AS germplasm_uniquename, germplasm.stock_id AS germplasm_stock_id, rep.value AS rep, block_number.value AS block, plot_number.value AS plot_number, row_number.value AS row_number, col_number.value AS col_number, plant_number.value AS plant_number, is_a_control.value AS is_a_control, string_agg(DISTINCT notes.value, ', '::text) AS notes, project.project_id AS trial_id, project.name AS trial_name, project.description AS trial_description, plot_width.value AS plot_width, plot_length.value AS plot_length, field_size.value AS field_size, field_trial_is_planned_to_be_genotyped.value AS field_trial_is_planned_to_be_genotyped, field_trial_is_planned_to_cross.value AS field_trial_is_planned_to_cross, breeding_program.project_id AS breeding_program_id, breeding_program.name AS breeding_program_name, breeding_program.description AS breeding_program_description, year.value AS year, design.value AS design, location_id.value AS location_id, planting_date.value AS planting_date, harvest_date.value AS harvest_date, folder.project_id AS folder_id, folder.name AS folder_name, folder.description AS folder_description, seedplot_planted.value AS seedlot_transaction, seedlot.stock_id AS seedlot_stock_id, seedlot.uniquename AS seedlot_uniquename, seedlot_current_weight.value AS seedlot_current_weight_gram, seedlot_current_count.value AS seedlot_current_count, seedlot_seedlot_box.value AS seedlot_box_name, jsonb_object_agg(COALESCE( CASE WHEN (treatment.name IS NULL) THEN NULL::character varying ELSE treatment.name END, 'No ManagementFactor'::character varying), treatment.description) AS treatments, COALESCE(jsonb_agg(jsonb_build_object('trait_id', phenotype.cvalue_id, 'trait_name', (((((cvterm.name)::text || '|'::text) || (db.name)::text) || ':'::text) || (dbxref.accession)::text), 'value', phenotype.value, 'phenotype_id', phenotype.phenotype_id, 'outlier', outlier.value, 'create_date', phenotype.create_date, 'uniquename', phenotype.uniquename, 'phenotype_location_id', nd_geolocation.nd_geolocation_id, 'phenotype_location_name', nd_geolocation.description, 'collect_date', phenotype.collect_date, 'operator', phenotype.operator, 'associated_image_id', md_image.image_id, 'associated_image_type', project_md_image_type.name, 'associated_image_project_id', drone_image_project.project_id, 'associated_image_project_name', drone_image_project.name, 'associated_image_project_time_json', drone_image_project_time_json.value)) FILTER (WHERE (phenotype.value IS NOT NULL)), '[]'::jsonb) AS observations, COALESCE(jsonb_agg(jsonb_build_object('stock_id', available_seelot.stock_id, 'stock_uniquename', available_seelot.uniquename, 'current_weight_gram', current_weight.value, 'current_count', current_count.value, 'box_name', seedlot_box.value)) FILTER (WHERE (available_seelot.stock_id IS NOT NULL)), '[]'::jsonb) AS available_germplasm_seedlots FROM ((((((((((((((((((((((((((((((((((((((((((((((((((((((public.stock observationunit JOIN public.nd_experiment_stock ON ((observationunit.stock_id = nd_experiment_stock.stock_id))) JOIN public.nd_experiment ON ((nd_experiment_stock.nd_experiment_id = nd_experiment.nd_experiment_id))) JOIN public.nd_geolocation USING (nd_geolocation_id)) LEFT JOIN public.stock_relationship seedplot_planted ON (((seedplot_planted.subject_id = observationunit.stock_id) AND (seedplot_planted.type_id = 77562)))) LEFT JOIN public.stock seedlot ON (((seedplot_planted.object_id = seedlot.stock_id) AND (seedlot.type_id = 77563)))) LEFT JOIN public.stockprop seedlot_current_count ON (((seedlot.stock_id = seedlot_current_count.stock_id) AND (seedlot_current_count.type_id = 77580)))) LEFT JOIN public.stockprop seedlot_current_weight ON (((seedlot.stock_id = seedlot_current_weight.stock_id) AND (seedlot_current_weight.type_id = 77621)))) LEFT JOIN public.stockprop seedlot_seedlot_box ON (((seedlot.stock_id = seedlot_seedlot_box.stock_id) AND (seedlot_seedlot_box.type_id = 76520)))) LEFT JOIN public.nd_experiment_phenotype ON ((nd_experiment_phenotype.nd_experiment_id = nd_experiment.nd_experiment_id))) LEFT JOIN public.phenotype USING (phenotype_id)) JOIN public.cvterm observationunit_cvterm ON ((observationunit.type_id = observationunit_cvterm.cvterm_id))) JOIN public.stock_relationship ON (((observationunit.stock_id = stock_relationship.subject_id) AND (stock_relationship.type_id = ANY (ARRAY[76394, 76506, 77578, 78838]))))) JOIN public.stock germplasm ON (((stock_relationship.object_id = germplasm.stock_id) AND (germplasm.type_id = ANY (ARRAY[76392, 76446, 77647]))))) LEFT JOIN phenome.nd_experiment_md_images nd_experiment_md_images ON ((nd_experiment.nd_experiment_id = nd_experiment_md_images.nd_experiment_id))) LEFT JOIN metadata.md_image md_image ON ((nd_experiment_md_images.image_id = md_image.image_id))) LEFT JOIN phenome.project_md_image project_md_image ON ((md_image.image_id = project_md_image.image_id))) LEFT JOIN public.cvterm project_md_image_type ON ((project_md_image.type_id = project_md_image_type.cvterm_id))) LEFT JOIN public.project drone_image_project ON ((project_md_image.project_id = drone_image_project.project_id))) LEFT JOIN public.projectprop drone_image_project_time_json ON (((drone_image_project.project_id = drone_image_project_time_json.project_id) AND (drone_image_project_time_json.type_id = 78125)))) LEFT JOIN public.stock_relationship available_seedlot_rel ON (((available_seedlot_rel.subject_id = germplasm.stock_id) AND (available_seedlot_rel.type_id = 77561)))) LEFT JOIN public.stock available_seelot ON (((available_seedlot_rel.object_id = available_seelot.stock_id) AND (seedlot.type_id = 77563)))) LEFT JOIN public.stockprop current_count ON (((available_seelot.stock_id = current_count.stock_id) AND (current_count.type_id = 77580)))) LEFT JOIN public.stockprop current_weight ON (((available_seelot.stock_id = current_weight.stock_id) AND (current_weight.type_id = 77621)))) LEFT JOIN public.stockprop seedlot_box ON (((available_seelot.stock_id = seedlot_box.stock_id) AND (seedlot_box.type_id = 76520)))) LEFT JOIN public.stockprop rep ON (((observationunit.stock_id = rep.stock_id) AND (rep.type_id = 76459)))) LEFT JOIN public.stockprop block_number ON (((observationunit.stock_id = block_number.stock_id) AND (block_number.type_id = 76460)))) LEFT JOIN public.stockprop plot_number ON (((observationunit.stock_id = plot_number.stock_id) AND (plot_number.type_id = 76461)))) LEFT JOIN public.stockprop row_number ON (((observationunit.stock_id = row_number.stock_id) AND (row_number.type_id = 76523) AND (row_number.rank = 0)))) LEFT JOIN public.stockprop col_number ON (((observationunit.stock_id = col_number.stock_id) AND (col_number.type_id = 76517) AND (col_number.rank = 0)))) LEFT JOIN public.stockprop plant_number ON (((observationunit.stock_id = plant_number.stock_id) AND (plant_number.type_id = 77104)))) LEFT JOIN public.stockprop is_a_control ON (((observationunit.stock_id = is_a_control.stock_id) AND (is_a_control.type_id = 76519)))) LEFT JOIN public.stockprop notes ON (((observationunit.stock_id = notes.stock_id) AND (notes.type_id = 77600)))) LEFT JOIN public.phenotypeprop outlier ON (((phenotype.phenotype_id = outlier.phenotype_id) AND (outlier.type_id = 77605)))) LEFT JOIN public.cvterm ON ((phenotype.cvalue_id = cvterm.cvterm_id))) LEFT JOIN public.dbxref ON ((cvterm.dbxref_id = dbxref.dbxref_id))) LEFT JOIN public.db USING (db_id)) JOIN public.nd_experiment_project ON ((nd_experiment_project.nd_experiment_id = nd_experiment.nd_experiment_id))) JOIN public.project ON ((nd_experiment_project.project_id = project.project_id))) JOIN public.project_relationship ON (((project.project_id = project_relationship.subject_project_id) AND (project_relationship.type_id = 76448)))) JOIN public.project breeding_program ON ((breeding_program.project_id = project_relationship.object_project_id))) LEFT JOIN public.projectprop year ON (((project.project_id = year.project_id) AND (year.type_id = 76395)))) LEFT JOIN public.projectprop design ON (((project.project_id = design.project_id) AND (design.type_id = 76458)))) LEFT JOIN public.projectprop location_id ON (((project.project_id = location_id.project_id) AND (location_id.type_id = 76462)))) LEFT JOIN public.projectprop planting_date ON (((project.project_id = planting_date.project_id) AND (planting_date.type_id = 76496)))) LEFT JOIN public.projectprop harvest_date ON (((project.project_id = harvest_date.project_id) AND (harvest_date.type_id = 76495)))) LEFT JOIN public.projectprop plot_width ON (((project.project_id = plot_width.project_id) AND (plot_width.type_id = 77634)))) LEFT JOIN public.projectprop plot_length ON (((project.project_id = plot_length.project_id) AND (plot_length.type_id = 77635)))) LEFT JOIN public.projectprop field_size ON (((project.project_id = field_size.project_id) AND (field_size.type_id = 77636)))) LEFT JOIN public.projectprop field_trial_is_planned_to_be_genotyped ON (((project.project_id = field_trial_is_planned_to_be_genotyped.project_id) AND (field_trial_is_planned_to_be_genotyped.type_id = 77637)))) LEFT JOIN public.projectprop field_trial_is_planned_to_cross ON (((project.project_id = field_trial_is_planned_to_cross.project_id) AND (field_trial_is_planned_to_cross.type_id = 77638)))) LEFT JOIN public.project_relationship treatment_rel ON (((project.project_id = treatment_rel.object_project_id) AND (treatment_rel.type_id = 77568)))) LEFT JOIN public.project treatment ON ((treatment.project_id = treatment_rel.subject_project_id))) LEFT JOIN public.project_relationship folder_rel ON (((project.project_id = folder_rel.subject_project_id) AND (folder_rel.type_id = 76504)))) LEFT JOIN public.project folder ON ((folder.project_id = folder_rel.object_project_id))) WHERE ((nd_experiment.type_id = ANY (ARRAY[76441, 76477, 76391, 78834])) AND (design.value <> 'genotype_data_project'::text) AND (design.value <> 'treatment'::text)) GROUP BY observationunit.stock_id, observationunit.uniquename, observationunit_cvterm.name, germplasm.uniquename, germplasm.stock_id, rep.value, block_number.value, plot_number.value, row_number.value, col_number.value, plant_number.value, is_a_control.value, project.project_id, project.name, project.description, breeding_program.project_id, breeding_program.name, breeding_program.description, year.value, design.value, location_id.value, planting_date.value, harvest_date.value, plot_width.value, plot_length.value, field_size.value, field_trial_is_planned_to_be_genotyped.value, field_trial_is_planned_to_cross.value, folder.project_id, folder.name, folder.description, seedplot_planted.value, seedlot.stock_id, seedlot.uniquename, seedlot_current_weight.value, seedlot_current_count.value, seedlot_seedlot_box.value ORDER BY project.project_id, observationunit.uniquename WITH NO DATA; ALTER TABLE public.materialized_phenotype_jsonb_table OWNER TO web_usr; -- -- Name: materialized_stockprop; Type: MATERIALIZED VIEW; Schema: public; Owner: web_usr -- CREATE MATERIALIZED VIEW public.materialized_stockprop AS SELECT crosstab.stock_id, crosstab.uniquename, crosstab.stock_type_id, crosstab.stock_type_name, crosstab.organism_id, crosstab.block, crosstab.col_number, crosstab.igd_synonym, crosstab."is a control", crosstab.location_code, crosstab.organization, crosstab.plant_index_number, crosstab.subplot_index_number, crosstab.tissue_sample_index_number, crosstab."plot number", crosstab.plot_geo_json, crosstab.range, crosstab.replicate, crosstab.row_number, crosstab.stock_synonym, crosstab."T1", crosstab."T2", crosstab.transgenic, crosstab.variety, crosstab.notes, crosstab.state, crosstab."accession number", crosstab."PUI", crosstab.donor, crosstab."donor institute", crosstab."donor PUI", crosstab."seed source", crosstab."institute code", crosstab."institute name", crosstab."biological status of accession code", crosstab."country of origin", crosstab."type of germplasm storage code", crosstab."entry number", crosstab."acquisition date", crosstab.current_count, crosstab.current_weight_gram, crosstab.crossing_metadata_jsonb, crosstab.ploidy_level, crosstab.genome_structure, crosstab.introgression_parent, crosstab.introgression_backcross_parent, crosstab.introgression_map_version, crosstab.introgression_chromosome, crosstab.introgression_start_position_bp, crosstab.introgression_end_position_bp, crosstab.is_blank, crosstab.concentration, crosstab.volume, crosstab.extraction, crosstab.dna_person, crosstab.tissue_type, crosstab.seedlot_quality, crosstab.ncbi_taxonomy_id FROM sgn.crosstab('SELECT stockprop.stock_id, stock.uniquename, stock.type_id, stock_cvterm.name, stock.organism_id, stockprop.type_id, jsonb_object_agg(stockprop.value, ''RANK'' || stockprop.rank) FROM public.stockprop JOIN public.stock USING(stock_id) JOIN public.cvterm as stock_cvterm ON (stock_cvterm.cvterm_id=stock.type_id) GROUP BY (stockprop.stock_id, stock.uniquename, stock.type_id, stock_cvterm.name, stock.organism_id, stockprop.type_id) ORDER by stockprop.stock_id ASC'::text, 'SELECT type_id FROM (VALUES (''76460''), (''76517''), (''76518''), (''76519''), (''76520''), (''76521''), (''77104''), (''77576''), (''77607''), (''76461''), (''77604''), (''76522''), (''76459''), (''76523''), (''76487''), (''76490''), (''76491''), (''76489''), (''77601''), (''77600''), (''77602''), (''77139''), (''77140''), (''77141''), (''77142''), (''77143''), (''77144''), (''77145''), (''77146''), (''77147''), (''77148''), (''77149''), (''77150''), (''77151''), (''77580''), (''77621''), (''77581''), (''77593''), (''77592''), (''77594''), (''77595''), (''77596''), (''77597''), (''77598''), (''77599''), (''77608''), (''77609''), (''77610''), (''77612''), (''77611''), (''77613''), (''79003''), (''77614'')) AS t (type_id);'::text) crosstab(stock_id integer, uniquename text, stock_type_id integer, stock_type_name text, organism_id integer, block json, col_number jsonb, igd_synonym jsonb, "is a control" jsonb, location_code jsonb, organization jsonb, plant_index_number jsonb, subplot_index_number jsonb, tissue_sample_index_number jsonb, "plot number" jsonb, plot_geo_json jsonb, range jsonb, replicate jsonb, row_number jsonb, stock_synonym jsonb, "T1" jsonb, "T2" jsonb, transgenic jsonb, variety jsonb, notes jsonb, state jsonb, "accession number" jsonb, "PUI" jsonb, donor jsonb, "donor institute" jsonb, "donor PUI" jsonb, "seed source" jsonb, "institute code" jsonb, "institute name" jsonb, "biological status of accession code" jsonb, "country of origin" jsonb, "type of germplasm storage code" jsonb, "entry number" jsonb, "acquisition date" jsonb, current_count jsonb, current_weight_gram jsonb, crossing_metadata_jsonb jsonb, ploidy_level jsonb, genome_structure jsonb, introgression_parent jsonb, introgression_backcross_parent jsonb, introgression_map_version jsonb, introgression_chromosome jsonb, introgression_start_position_bp jsonb, introgression_end_position_bp jsonb, is_blank jsonb, concentration jsonb, volume jsonb, extraction jsonb, dna_person jsonb, tissue_type jsonb, seedlot_quality jsonb, ncbi_taxonomy_id jsonb) WITH NO DATA; ALTER TABLE public.materialized_stockprop OWNER TO web_usr; -- -- Name: materialized_view; Type: TABLE; Schema: public; Owner: postgres -- CREATE TABLE public.materialized_view ( materialized_view_id integer NOT NULL, last_update timestamp without time zone, refresh_time integer, name character varying(64), mv_schema character varying(64), mv_table character varying(128), mv_specs text, indexed text, query text ); ALTER TABLE public.materialized_view OWNER TO postgres; -- -- Name: materialized_view_materialized_view_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- CREATE SEQUENCE public.materialized_view_materialized_view_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE public.materialized_view_materialized_view_id_seq OWNER TO postgres; -- -- Name: materialized_view_materialized_view_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- ALTER SEQUENCE public.materialized_view_materialized_view_id_seq OWNED BY public.materialized_view.materialized_view_id; -- -- Name: matviews; Type: TABLE; Schema: public; Owner: web_usr -- CREATE TABLE public.matviews ( mv_id integer NOT NULL, mv_name name NOT NULL, mv_dependents name[], currently_refreshing boolean, last_refresh timestamp with time zone ); ALTER TABLE public.matviews OWNER TO web_usr; -- -- Name: matviews_mv_id_seq; Type: SEQUENCE; Schema: public; Owner: web_usr -- CREATE SEQUENCE public.matviews_mv_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE public.matviews_mv_id_seq OWNER TO web_usr; -- -- Name: matviews_mv_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: web_usr -- ALTER SEQUENCE public.matviews_mv_id_seq OWNED BY public.matviews.mv_id; -- -- Name: nd_experiment_contact; Type: TABLE; Schema: public; Owner: postgres -- CREATE TABLE public.nd_experiment_contact ( nd_experiment_contact_id integer NOT NULL, nd_experiment_id integer NOT NULL, contact_id integer NOT NULL ); ALTER TABLE public.nd_experiment_contact OWNER TO postgres; -- -- Name: nd_experiment_contact_nd_experiment_contact_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- CREATE SEQUENCE public.nd_experiment_contact_nd_experiment_contact_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE public.nd_experiment_contact_nd_experiment_contact_id_seq OWNER TO postgres; -- -- Name: nd_experiment_contact_nd_experiment_contact_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- ALTER SEQUENCE public.nd_experiment_contact_nd_experiment_contact_id_seq OWNED BY public.nd_experiment_contact.nd_experiment_contact_id; -- -- Name: nd_experiment_dbxref; Type: TABLE; Schema: public; Owner: postgres -- CREATE TABLE public.nd_experiment_dbxref ( nd_experiment_dbxref_id integer NOT NULL, nd_experiment_id integer NOT NULL, dbxref_id integer NOT NULL ); ALTER TABLE public.nd_experiment_dbxref OWNER TO postgres; -- -- Name: TABLE nd_experiment_dbxref; Type: COMMENT; Schema: public; Owner: postgres -- COMMENT ON TABLE public.nd_experiment_dbxref IS 'Cross-reference experiment to accessions, images, etc'; -- -- Name: nd_experiment_dbxref_nd_experiment_dbxref_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- CREATE SEQUENCE public.nd_experiment_dbxref_nd_experiment_dbxref_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE public.nd_experiment_dbxref_nd_experiment_dbxref_id_seq OWNER TO postgres; -- -- Name: nd_experiment_dbxref_nd_experiment_dbxref_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- ALTER SEQUENCE public.nd_experiment_dbxref_nd_experiment_dbxref_id_seq OWNED BY public.nd_experiment_dbxref.nd_experiment_dbxref_id; -- -- Name: nd_experiment_genotype_nd_experiment_genotype_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- CREATE SEQUENCE public.nd_experiment_genotype_nd_experiment_genotype_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE public.nd_experiment_genotype_nd_experiment_genotype_id_seq OWNER TO postgres; -- -- Name: nd_experiment_genotype_nd_experiment_genotype_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- ALTER SEQUENCE public.nd_experiment_genotype_nd_experiment_genotype_id_seq OWNED BY public.nd_experiment_genotype.nd_experiment_genotype_id; -- -- Name: nd_experiment_nd_experiment_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- CREATE SEQUENCE public.nd_experiment_nd_experiment_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE public.nd_experiment_nd_experiment_id_seq OWNER TO postgres; -- -- Name: nd_experiment_nd_experiment_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- ALTER SEQUENCE public.nd_experiment_nd_experiment_id_seq OWNED BY public.nd_experiment.nd_experiment_id; -- -- Name: nd_experiment_phenotype_nd_experiment_phenotype_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- CREATE SEQUENCE public.nd_experiment_phenotype_nd_experiment_phenotype_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE public.nd_experiment_phenotype_nd_experiment_phenotype_id_seq OWNER TO postgres; -- -- Name: nd_experiment_phenotype_nd_experiment_phenotype_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- ALTER SEQUENCE public.nd_experiment_phenotype_nd_experiment_phenotype_id_seq OWNED BY public.nd_experiment_phenotype.nd_experiment_phenotype_id; -- -- Name: nd_experiment_project_nd_experiment_project_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- CREATE SEQUENCE public.nd_experiment_project_nd_experiment_project_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE public.nd_experiment_project_nd_experiment_project_id_seq OWNER TO postgres; -- -- Name: nd_experiment_project_nd_experiment_project_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- ALTER SEQUENCE public.nd_experiment_project_nd_experiment_project_id_seq OWNED BY public.nd_experiment_project.nd_experiment_project_id; -- -- Name: nd_experiment_protocol_nd_experiment_protocol_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- CREATE SEQUENCE public.nd_experiment_protocol_nd_experiment_protocol_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE public.nd_experiment_protocol_nd_experiment_protocol_id_seq OWNER TO postgres; -- -- Name: nd_experiment_protocol_nd_experiment_protocol_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- ALTER SEQUENCE public.nd_experiment_protocol_nd_experiment_protocol_id_seq OWNED BY public.nd_experiment_protocol.nd_experiment_protocol_id; -- -- Name: nd_experiment_pub; Type: TABLE; Schema: public; Owner: postgres -- CREATE TABLE public.nd_experiment_pub ( nd_experiment_pub_id integer NOT NULL, nd_experiment_id integer NOT NULL, pub_id integer NOT NULL ); ALTER TABLE public.nd_experiment_pub OWNER TO postgres; -- -- Name: TABLE nd_experiment_pub; Type: COMMENT; Schema: public; Owner: postgres -- COMMENT ON TABLE public.nd_experiment_pub IS 'Linking nd_experiment(s) to publication(s)'; -- -- Name: nd_experiment_pub_nd_experiment_pub_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- CREATE SEQUENCE public.nd_experiment_pub_nd_experiment_pub_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE public.nd_experiment_pub_nd_experiment_pub_id_seq OWNER TO postgres; -- -- Name: nd_experiment_pub_nd_experiment_pub_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- ALTER SEQUENCE public.nd_experiment_pub_nd_experiment_pub_id_seq OWNED BY public.nd_experiment_pub.nd_experiment_pub_id; -- -- Name: nd_experiment_stock_dbxref; Type: TABLE; Schema: public; Owner: postgres -- CREATE TABLE public.nd_experiment_stock_dbxref ( nd_experiment_stock_dbxref_id integer NOT NULL, nd_experiment_stock_id integer NOT NULL, dbxref_id integer NOT NULL ); ALTER TABLE public.nd_experiment_stock_dbxref OWNER TO postgres; -- -- Name: TABLE nd_experiment_stock_dbxref; Type: COMMENT; Schema: public; Owner: postgres -- COMMENT ON TABLE public.nd_experiment_stock_dbxref IS 'Cross-reference experiment_stock to accessions, images, etc'; -- -- Name: nd_experiment_stock_dbxref_nd_experiment_stock_dbxref_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- CREATE SEQUENCE public.nd_experiment_stock_dbxref_nd_experiment_stock_dbxref_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE public.nd_experiment_stock_dbxref_nd_experiment_stock_dbxref_id_seq OWNER TO postgres; -- -- Name: nd_experiment_stock_dbxref_nd_experiment_stock_dbxref_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- ALTER SEQUENCE public.nd_experiment_stock_dbxref_nd_experiment_stock_dbxref_id_seq OWNED BY public.nd_experiment_stock_dbxref.nd_experiment_stock_dbxref_id; -- -- Name: nd_experiment_stock_nd_experiment_stock_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- CREATE SEQUENCE public.nd_experiment_stock_nd_experiment_stock_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE public.nd_experiment_stock_nd_experiment_stock_id_seq OWNER TO postgres; -- -- Name: nd_experiment_stock_nd_experiment_stock_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- ALTER SEQUENCE public.nd_experiment_stock_nd_experiment_stock_id_seq OWNED BY public.nd_experiment_stock.nd_experiment_stock_id; -- -- Name: nd_experiment_stockprop; Type: TABLE; Schema: public; Owner: postgres -- CREATE TABLE public.nd_experiment_stockprop ( nd_experiment_stockprop_id integer NOT NULL, nd_experiment_stock_id integer NOT NULL, type_id integer NOT NULL, value text, rank integer DEFAULT 0 NOT NULL ); ALTER TABLE public.nd_experiment_stockprop OWNER TO postgres; -- -- Name: TABLE nd_experiment_stockprop; Type: COMMENT; Schema: public; Owner: postgres -- COMMENT ON TABLE public.nd_experiment_stockprop IS 'Property/value associations for experiment_stocks. This table can store the properties such as treatment'; -- -- Name: COLUMN nd_experiment_stockprop.nd_experiment_stock_id; Type: COMMENT; Schema: public; Owner: postgres -- COMMENT ON COLUMN public.nd_experiment_stockprop.nd_experiment_stock_id IS 'The experiment_stock to which the property applies.'; -- -- Name: COLUMN nd_experiment_stockprop.type_id; Type: COMMENT; Schema: public; Owner: postgres -- COMMENT ON COLUMN public.nd_experiment_stockprop.type_id IS 'The name of the property as a reference to a controlled vocabulary term.'; -- -- Name: COLUMN nd_experiment_stockprop.value; Type: COMMENT; Schema: public; Owner: postgres -- COMMENT ON COLUMN public.nd_experiment_stockprop.value IS 'The value of the property.'; -- -- Name: COLUMN nd_experiment_stockprop.rank; Type: COMMENT; Schema: public; Owner: postgres -- COMMENT ON COLUMN public.nd_experiment_stockprop.rank IS 'The rank of the property value, if the property has an array of values.'; -- -- Name: nd_experiment_stockprop_nd_experiment_stockprop_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- CREATE SEQUENCE public.nd_experiment_stockprop_nd_experiment_stockprop_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE public.nd_experiment_stockprop_nd_experiment_stockprop_id_seq OWNER TO postgres; -- -- Name: nd_experiment_stockprop_nd_experiment_stockprop_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- ALTER SEQUENCE public.nd_experiment_stockprop_nd_experiment_stockprop_id_seq OWNED BY public.nd_experiment_stockprop.nd_experiment_stockprop_id; -- -- Name: nd_experimentprop; Type: TABLE; Schema: public; Owner: postgres -- CREATE TABLE public.nd_experimentprop ( nd_experimentprop_id integer NOT NULL, nd_experiment_id integer NOT NULL, type_id integer NOT NULL, value text, rank integer DEFAULT 0 NOT NULL ); ALTER TABLE public.nd_experimentprop OWNER TO postgres; -- -- Name: nd_experimentprop_nd_experimentprop_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- CREATE SEQUENCE public.nd_experimentprop_nd_experimentprop_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE public.nd_experimentprop_nd_experimentprop_id_seq OWNER TO postgres; -- -- Name: nd_experimentprop_nd_experimentprop_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- ALTER SEQUENCE public.nd_experimentprop_nd_experimentprop_id_seq OWNED BY public.nd_experimentprop.nd_experimentprop_id; -- -- Name: nd_geolocation_nd_geolocation_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- CREATE SEQUENCE public.nd_geolocation_nd_geolocation_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE public.nd_geolocation_nd_geolocation_id_seq OWNER TO postgres; -- -- Name: nd_geolocation_nd_geolocation_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- ALTER SEQUENCE public.nd_geolocation_nd_geolocation_id_seq OWNED BY public.nd_geolocation.nd_geolocation_id; -- -- Name: nd_geolocationprop; Type: TABLE; Schema: public; Owner: postgres -- CREATE TABLE public.nd_geolocationprop ( nd_geolocationprop_id integer NOT NULL, nd_geolocation_id integer NOT NULL, type_id integer NOT NULL, value text, rank integer DEFAULT 0 NOT NULL ); ALTER TABLE public.nd_geolocationprop OWNER TO postgres; -- -- Name: TABLE nd_geolocationprop; Type: COMMENT; Schema: public; Owner: postgres -- COMMENT ON TABLE public.nd_geolocationprop IS 'Property/value associations for geolocations. This table can store the properties such as location and environment'; -- -- Name: COLUMN nd_geolocationprop.type_id; Type: COMMENT; Schema: public; Owner: postgres -- COMMENT ON COLUMN public.nd_geolocationprop.type_id IS 'The name of the property as a reference to a controlled vocabulary term.'; -- -- Name: COLUMN nd_geolocationprop.value; Type: COMMENT; Schema: public; Owner: postgres -- COMMENT ON COLUMN public.nd_geolocationprop.value IS 'The value of the property.'; -- -- Name: COLUMN nd_geolocationprop.rank; Type: COMMENT; Schema: public; Owner: postgres -- COMMENT ON COLUMN public.nd_geolocationprop.rank IS 'The rank of the property value, if the property has an array of values.'; -- -- Name: nd_geolocationprop_nd_geolocationprop_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- CREATE SEQUENCE public.nd_geolocationprop_nd_geolocationprop_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE public.nd_geolocationprop_nd_geolocationprop_id_seq OWNER TO postgres; -- -- Name: nd_geolocationprop_nd_geolocationprop_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- ALTER SEQUENCE public.nd_geolocationprop_nd_geolocationprop_id_seq OWNED BY public.nd_geolocationprop.nd_geolocationprop_id; -- -- Name: nd_protocol_nd_protocol_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- CREATE SEQUENCE public.nd_protocol_nd_protocol_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE public.nd_protocol_nd_protocol_id_seq OWNER TO postgres; -- -- Name: nd_protocol_nd_protocol_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- ALTER SEQUENCE public.nd_protocol_nd_protocol_id_seq OWNED BY public.nd_protocol.nd_protocol_id; -- -- Name: nd_protocol_reagent; Type: TABLE; Schema: public; Owner: postgres -- CREATE TABLE public.nd_protocol_reagent ( nd_protocol_reagent_id integer NOT NULL, nd_protocol_id integer NOT NULL, reagent_id integer NOT NULL, type_id integer NOT NULL ); ALTER TABLE public.nd_protocol_reagent OWNER TO postgres; -- -- Name: nd_protocol_reagent_nd_protocol_reagent_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- CREATE SEQUENCE public.nd_protocol_reagent_nd_protocol_reagent_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE public.nd_protocol_reagent_nd_protocol_reagent_id_seq OWNER TO postgres; -- -- Name: nd_protocol_reagent_nd_protocol_reagent_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- ALTER SEQUENCE public.nd_protocol_reagent_nd_protocol_reagent_id_seq OWNED BY public.nd_protocol_reagent.nd_protocol_reagent_id; -- -- Name: nd_protocolprop; Type: TABLE; Schema: public; Owner: postgres -- CREATE TABLE public.nd_protocolprop ( nd_protocolprop_id integer NOT NULL, nd_protocol_id integer NOT NULL, type_id integer NOT NULL, value jsonb, rank integer DEFAULT 0 NOT NULL ); ALTER TABLE public.nd_protocolprop OWNER TO postgres; -- -- Name: TABLE nd_protocolprop; Type: COMMENT; Schema: public; Owner: postgres -- COMMENT ON TABLE public.nd_protocolprop IS 'Property/value associations for protocol.'; -- -- Name: COLUMN nd_protocolprop.nd_protocol_id; Type: COMMENT; Schema: public; Owner: postgres -- COMMENT ON COLUMN public.nd_protocolprop.nd_protocol_id IS 'The protocol to which the property applies.'; -- -- Name: COLUMN nd_protocolprop.type_id; Type: COMMENT; Schema: public; Owner: postgres -- COMMENT ON COLUMN public.nd_protocolprop.type_id IS 'The name of the property as a reference to a controlled vocabulary term.'; -- -- Name: COLUMN nd_protocolprop.value; Type: COMMENT; Schema: public; Owner: postgres -- COMMENT ON COLUMN public.nd_protocolprop.value IS 'The value of the property.'; -- -- Name: COLUMN nd_protocolprop.rank; Type: COMMENT; Schema: public; Owner: postgres -- COMMENT ON COLUMN public.nd_protocolprop.rank IS 'The rank of the property value, if the property has an array of values.'; -- -- Name: nd_protocolprop_nd_protocolprop_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- CREATE SEQUENCE public.nd_protocolprop_nd_protocolprop_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE public.nd_protocolprop_nd_protocolprop_id_seq OWNER TO postgres; -- -- Name: nd_protocolprop_nd_protocolprop_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- ALTER SEQUENCE public.nd_protocolprop_nd_protocolprop_id_seq OWNED BY public.nd_protocolprop.nd_protocolprop_id; -- -- Name: nd_reagent; Type: TABLE; Schema: public; Owner: postgres -- CREATE TABLE public.nd_reagent ( nd_reagent_id integer NOT NULL, name character varying(80) NOT NULL, type_id integer NOT NULL, feature_id integer ); ALTER TABLE public.nd_reagent OWNER TO postgres; -- -- Name: TABLE nd_reagent; Type: COMMENT; Schema: public; Owner: postgres -- COMMENT ON TABLE public.nd_reagent IS 'A reagent such as a primer, an enzyme, an adapter oligo, a linker oligo. Reagents are used in genotyping experiments, or in any other kind of experiment.'; -- -- Name: COLUMN nd_reagent.name; Type: COMMENT; Schema: public; Owner: postgres -- COMMENT ON COLUMN public.nd_reagent.name IS 'The name of the reagent. The name should be unique for a given type.'; -- -- Name: COLUMN nd_reagent.type_id; Type: COMMENT; Schema: public; Owner: postgres -- COMMENT ON COLUMN public.nd_reagent.type_id IS 'The type of the reagent, for example linker oligomer, or forward primer.'; -- -- Name: COLUMN nd_reagent.feature_id; Type: COMMENT; Schema: public; Owner: postgres -- COMMENT ON COLUMN public.nd_reagent.feature_id IS 'If the reagent is a primer, the feature that it corresponds to. More generally, the corresponding feature for any reagent that has a sequence that maps to another sequence.'; -- -- Name: nd_reagent_nd_reagent_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- CREATE SEQUENCE public.nd_reagent_nd_reagent_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE public.nd_reagent_nd_reagent_id_seq OWNER TO postgres; -- -- Name: nd_reagent_nd_reagent_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- ALTER SEQUENCE public.nd_reagent_nd_reagent_id_seq OWNED BY public.nd_reagent.nd_reagent_id; -- -- Name: nd_reagent_relationship; Type: TABLE; Schema: public; Owner: postgres -- CREATE TABLE public.nd_reagent_relationship ( nd_reagent_relationship_id integer NOT NULL, subject_reagent_id integer NOT NULL, object_reagent_id integer NOT NULL, type_id integer NOT NULL ); ALTER TABLE public.nd_reagent_relationship OWNER TO postgres; -- -- Name: TABLE nd_reagent_relationship; Type: COMMENT; Schema: public; Owner: postgres -- COMMENT ON TABLE public.nd_reagent_relationship IS 'Relationships between reagents. Some reagents form a group. i.e., they are used all together or not at all. Examples are adapter/linker/enzyme experiment reagents.'; -- -- Name: COLUMN nd_reagent_relationship.subject_reagent_id; Type: COMMENT; Schema: public; Owner: postgres -- COMMENT ON COLUMN public.nd_reagent_relationship.subject_reagent_id IS 'The subject reagent in the relationship. In parent/child terminology, the subject is the child. For example, in "linkerA 3prime-overhang-linker enzymeA" linkerA is the subject, 3prime-overhand-linker is the type, and enzymeA is the object.'; -- -- Name: COLUMN nd_reagent_relationship.object_reagent_id; Type: COMMENT; Schema: public; Owner: postgres -- COMMENT ON COLUMN public.nd_reagent_relationship.object_reagent_id IS 'The object reagent in the relationship. In parent/child terminology, the object is the parent. For example, in "linkerA 3prime-overhang-linker enzymeA" linkerA is the subject, 3prime-overhand-linker is the type, and enzymeA is the object.'; -- -- Name: COLUMN nd_reagent_relationship.type_id; Type: COMMENT; Schema: public; Owner: postgres -- COMMENT ON COLUMN public.nd_reagent_relationship.type_id IS 'The type (or predicate) of the relationship. For example, in "linkerA 3prime-overhang-linker enzymeA" linkerA is the subject, 3prime-overhand-linker is the type, and enzymeA is the object.'; -- -- Name: nd_reagent_relationship_nd_reagent_relationship_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- CREATE SEQUENCE public.nd_reagent_relationship_nd_reagent_relationship_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE public.nd_reagent_relationship_nd_reagent_relationship_id_seq OWNER TO postgres; -- -- Name: nd_reagent_relationship_nd_reagent_relationship_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- ALTER SEQUENCE public.nd_reagent_relationship_nd_reagent_relationship_id_seq OWNED BY public.nd_reagent_relationship.nd_reagent_relationship_id; -- -- Name: nd_reagentprop; Type: TABLE; Schema: public; Owner: postgres -- CREATE TABLE public.nd_reagentprop ( nd_reagentprop_id integer NOT NULL, nd_reagent_id integer NOT NULL, type_id integer NOT NULL, value text, rank integer DEFAULT 0 NOT NULL ); ALTER TABLE public.nd_reagentprop OWNER TO postgres; -- -- Name: nd_reagentprop_nd_reagentprop_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- CREATE SEQUENCE public.nd_reagentprop_nd_reagentprop_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE public.nd_reagentprop_nd_reagentprop_id_seq OWNER TO postgres; -- -- Name: nd_reagentprop_nd_reagentprop_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- ALTER SEQUENCE public.nd_reagentprop_nd_reagentprop_id_seq OWNED BY public.nd_reagentprop.nd_reagentprop_id; -- -- Name: organism; Type: TABLE; Schema: public; Owner: postgres -- CREATE TABLE public.organism ( organism_id integer NOT NULL, abbreviation character varying(255), genus character varying(255) NOT NULL, species character varying(255) NOT NULL, common_name character varying(255), comment text, genbank_taxon_id integer, sgn_organism_id integer, obsolete integer ); ALTER TABLE public.organism OWNER TO postgres; -- -- Name: TABLE organism; Type: COMMENT; Schema: public; Owner: postgres -- COMMENT ON TABLE public.organism IS 'The organismal taxonomic classification. Note that phylogenies are represented using the phylogeny module, and taxonomies can be represented using the cvterm module or the phylogeny module'; -- -- Name: COLUMN organism.species; Type: COMMENT; Schema: public; Owner: postgres -- COMMENT ON COLUMN public.organism.species IS 'A type of organism is always uniquely identified by genus+species. When mapping from the NCBI taxonomy names.dmp file, the unique-name column must be used where it is present, as the name column is not always unique (eg environmental samples). If a particular strain or subspecies is to be represented, this is appended onto the species name. Follows standard NCBI taxonomy pattern'; -- -- Name: organism_dbxref; Type: TABLE; Schema: public; Owner: postgres -- CREATE TABLE public.organism_dbxref ( organism_dbxref_id integer NOT NULL, organism_id integer NOT NULL, dbxref_id integer NOT NULL ); ALTER TABLE public.organism_dbxref OWNER TO postgres; -- -- Name: organism_dbxref_organism_dbxref_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- CREATE SEQUENCE public.organism_dbxref_organism_dbxref_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE public.organism_dbxref_organism_dbxref_id_seq OWNER TO postgres; -- -- Name: organism_dbxref_organism_dbxref_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- ALTER SEQUENCE public.organism_dbxref_organism_dbxref_id_seq OWNED BY public.organism_dbxref.organism_dbxref_id; -- -- Name: organism_organism_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- CREATE SEQUENCE public.organism_organism_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE public.organism_organism_id_seq OWNER TO postgres; -- -- Name: organism_organism_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- ALTER SEQUENCE public.organism_organism_id_seq OWNED BY public.organism.organism_id; -- -- Name: organism_relationship; Type: TABLE; Schema: public; Owner: postgres -- CREATE TABLE public.organism_relationship ( organism_relationship_id integer NOT NULL, subject_id integer NOT NULL, object_id integer NOT NULL, type_id integer NOT NULL ); ALTER TABLE public.organism_relationship OWNER TO postgres; -- -- Name: organism_relationship_organism_relationship_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- CREATE SEQUENCE public.organism_relationship_organism_relationship_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE public.organism_relationship_organism_relationship_id_seq OWNER TO postgres; -- -- Name: organism_relationship_organism_relationship_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- ALTER SEQUENCE public.organism_relationship_organism_relationship_id_seq OWNED BY public.organism_relationship.organism_relationship_id; -- -- Name: organismpath; Type: TABLE; Schema: public; Owner: postgres -- CREATE TABLE public.organismpath ( organismpath_id integer NOT NULL, subject_id integer NOT NULL, object_id integer NOT NULL, type_id integer NOT NULL, pathdistance integer ); ALTER TABLE public.organismpath OWNER TO postgres; -- -- Name: organismpath_organismpath_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- CREATE SEQUENCE public.organismpath_organismpath_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE public.organismpath_organismpath_id_seq OWNER TO postgres; -- -- Name: organismpath_organismpath_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- ALTER SEQUENCE public.organismpath_organismpath_id_seq OWNED BY public.organismpath.organismpath_id; -- -- Name: organismprop; Type: TABLE; Schema: public; Owner: postgres -- CREATE TABLE public.organismprop ( organismprop_id integer NOT NULL, organism_id integer NOT NULL, type_id integer NOT NULL, value text, rank integer DEFAULT 0 NOT NULL ); ALTER TABLE public.organismprop OWNER TO postgres; -- -- Name: TABLE organismprop; Type: COMMENT; Schema: public; Owner: postgres -- COMMENT ON TABLE public.organismprop IS 'tag-value properties - follows standard chado model'; -- -- Name: organismprop_organismprop_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- CREATE SEQUENCE public.organismprop_organismprop_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE public.organismprop_organismprop_id_seq OWNER TO postgres; -- -- Name: organismprop_organismprop_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- ALTER SEQUENCE public.organismprop_organismprop_id_seq OWNED BY public.organismprop.organismprop_id; -- -- Name: phendesc; Type: TABLE; Schema: public; Owner: postgres -- CREATE TABLE public.phendesc ( phendesc_id integer NOT NULL, genotype_id integer NOT NULL, environment_id integer NOT NULL, description text NOT NULL, type_id integer NOT NULL, pub_id integer NOT NULL ); ALTER TABLE public.phendesc OWNER TO postgres; -- -- Name: TABLE phendesc; Type: COMMENT; Schema: public; Owner: postgres -- COMMENT ON TABLE public.phendesc IS 'A summary of a _set_ of phenotypic statements for any one gcontext made in any one publication.'; -- -- Name: phendesc_phendesc_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- CREATE SEQUENCE public.phendesc_phendesc_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE public.phendesc_phendesc_id_seq OWNER TO postgres; -- -- Name: phendesc_phendesc_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- ALTER SEQUENCE public.phendesc_phendesc_id_seq OWNED BY public.phendesc.phendesc_id; -- -- Name: phenotype_comparison; Type: TABLE; Schema: public; Owner: postgres -- CREATE TABLE public.phenotype_comparison ( phenotype_comparison_id integer NOT NULL, genotype1_id integer NOT NULL, environment1_id integer NOT NULL, genotype2_id integer NOT NULL, environment2_id integer NOT NULL, phenotype1_id integer NOT NULL, phenotype2_id integer, pub_id integer NOT NULL, organism_id integer NOT NULL ); ALTER TABLE public.phenotype_comparison OWNER TO postgres; -- -- Name: TABLE phenotype_comparison; Type: COMMENT; Schema: public; Owner: postgres -- COMMENT ON TABLE public.phenotype_comparison IS 'Comparison of phenotypes e.g., genotype1/environment1/phenotype1 "non-suppressible" with respect to genotype2/environment2/phenotype2.'; -- -- Name: phenotype_comparison_cvterm; Type: TABLE; Schema: public; Owner: postgres -- CREATE TABLE public.phenotype_comparison_cvterm ( phenotype_comparison_cvterm_id integer NOT NULL, phenotype_comparison_id integer NOT NULL, cvterm_id integer NOT NULL, pub_id integer NOT NULL, rank integer DEFAULT 0 NOT NULL ); ALTER TABLE public.phenotype_comparison_cvterm OWNER TO postgres; -- -- Name: phenotype_comparison_cvterm_phenotype_comparison_cvterm_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- CREATE SEQUENCE public.phenotype_comparison_cvterm_phenotype_comparison_cvterm_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE public.phenotype_comparison_cvterm_phenotype_comparison_cvterm_id_seq OWNER TO postgres; -- -- Name: phenotype_comparison_cvterm_phenotype_comparison_cvterm_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- ALTER SEQUENCE public.phenotype_comparison_cvterm_phenotype_comparison_cvterm_id_seq OWNED BY public.phenotype_comparison_cvterm.phenotype_comparison_cvterm_id; -- -- Name: phenotype_comparison_phenotype_comparison_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- CREATE SEQUENCE public.phenotype_comparison_phenotype_comparison_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE public.phenotype_comparison_phenotype_comparison_id_seq OWNER TO postgres; -- -- Name: phenotype_comparison_phenotype_comparison_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- ALTER SEQUENCE public.phenotype_comparison_phenotype_comparison_id_seq OWNED BY public.phenotype_comparison.phenotype_comparison_id; -- -- Name: phenotype_cvterm; Type: TABLE; Schema: public; Owner: postgres -- CREATE TABLE public.phenotype_cvterm ( phenotype_cvterm_id integer NOT NULL, phenotype_id integer NOT NULL, cvterm_id integer NOT NULL, rank integer DEFAULT 0 NOT NULL ); ALTER TABLE public.phenotype_cvterm OWNER TO postgres; -- -- Name: phenotype_cvterm_phenotype_cvterm_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- CREATE SEQUENCE public.phenotype_cvterm_phenotype_cvterm_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE public.phenotype_cvterm_phenotype_cvterm_id_seq OWNER TO postgres; -- -- Name: phenotype_cvterm_phenotype_cvterm_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- ALTER SEQUENCE public.phenotype_cvterm_phenotype_cvterm_id_seq OWNED BY public.phenotype_cvterm.phenotype_cvterm_id; -- -- Name: phenotype_phenotype_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- CREATE SEQUENCE public.phenotype_phenotype_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE public.phenotype_phenotype_id_seq OWNER TO postgres; -- -- Name: phenotype_phenotype_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- ALTER SEQUENCE public.phenotype_phenotype_id_seq OWNED BY public.phenotype.phenotype_id; -- -- Name: phenotypeprop_phenotypeprop_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- CREATE SEQUENCE public.phenotypeprop_phenotypeprop_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE public.phenotypeprop_phenotypeprop_id_seq OWNER TO postgres; -- -- Name: phenotypeprop_phenotypeprop_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- ALTER SEQUENCE public.phenotypeprop_phenotypeprop_id_seq OWNED BY public.phenotypeprop.phenotypeprop_id; -- -- Name: phenstatement; Type: TABLE; Schema: public; Owner: postgres -- CREATE TABLE public.phenstatement ( phenstatement_id integer NOT NULL, genotype_id integer NOT NULL, environment_id integer NOT NULL, phenotype_id integer NOT NULL, type_id integer NOT NULL, pub_id integer NOT NULL ); ALTER TABLE public.phenstatement OWNER TO postgres; -- -- Name: TABLE phenstatement; Type: COMMENT; Schema: public; Owner: postgres -- COMMENT ON TABLE public.phenstatement IS 'Phenotypes are things like "larval lethal". Phenstatements are things like "dpp-1 is recessive larval lethal". So essentially phenstatement is a linking table expressing the relationship between genotype, environment, and phenotype.'; -- -- Name: phenstatement_phenstatement_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- CREATE SEQUENCE public.phenstatement_phenstatement_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE public.phenstatement_phenstatement_id_seq OWNER TO postgres; -- -- Name: phenstatement_phenstatement_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- ALTER SEQUENCE public.phenstatement_phenstatement_id_seq OWNED BY public.phenstatement.phenstatement_id; -- -- Name: phylonode; Type: TABLE; Schema: public; Owner: postgres -- CREATE TABLE public.phylonode ( phylonode_id integer NOT NULL, phylotree_id integer NOT NULL, parent_phylonode_id integer, left_idx integer NOT NULL, right_idx integer NOT NULL, type_id integer, feature_id integer, label character varying(255), distance double precision ); ALTER TABLE public.phylonode OWNER TO postgres; -- -- Name: TABLE phylonode; Type: COMMENT; Schema: public; Owner: postgres -- COMMENT ON TABLE public.phylonode IS 'This is the most pervasive element in the phylogeny module, cataloging the "phylonodes" of tree graphs. Edges are implied by the parent_phylonode_id reflexive closure. For all nodes in a nested set implementation the left and right index will be *between* the parents left and right indexes.'; -- -- Name: COLUMN phylonode.parent_phylonode_id; Type: COMMENT; Schema: public; Owner: postgres -- COMMENT ON COLUMN public.phylonode.parent_phylonode_id IS 'Root phylonode can have null parent_phylonode_id value.'; -- -- Name: COLUMN phylonode.type_id; Type: COMMENT; Schema: public; Owner: postgres -- COMMENT ON COLUMN public.phylonode.type_id IS 'Type: e.g. root, interior, leaf.'; -- -- Name: COLUMN phylonode.feature_id; Type: COMMENT; Schema: public; Owner: postgres -- COMMENT ON COLUMN public.phylonode.feature_id IS 'Phylonodes can have optional features attached to them e.g. a protein or nucleotide sequence usually attached to a leaf of the phylotree for non-leaf nodes, the feature may be a feature that is an instance of SO:match; this feature is the alignment of all leaf features beneath it.'; -- -- Name: phylonode_dbxref; Type: TABLE; Schema: public; Owner: postgres -- CREATE TABLE public.phylonode_dbxref ( phylonode_dbxref_id integer NOT NULL, phylonode_id integer NOT NULL, dbxref_id integer NOT NULL ); ALTER TABLE public.phylonode_dbxref OWNER TO postgres; -- -- Name: TABLE phylonode_dbxref; Type: COMMENT; Schema: public; Owner: postgres -- COMMENT ON TABLE public.phylonode_dbxref IS 'For example, for orthology, paralogy group identifiers; could also be used for NCBI taxonomy; for sequences, refer to phylonode_feature, feature associated dbxrefs.'; -- -- Name: phylonode_dbxref_phylonode_dbxref_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- CREATE SEQUENCE public.phylonode_dbxref_phylonode_dbxref_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE public.phylonode_dbxref_phylonode_dbxref_id_seq OWNER TO postgres; -- -- Name: phylonode_dbxref_phylonode_dbxref_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- ALTER SEQUENCE public.phylonode_dbxref_phylonode_dbxref_id_seq OWNED BY public.phylonode_dbxref.phylonode_dbxref_id; -- -- Name: phylonode_organism; Type: TABLE; Schema: public; Owner: postgres -- CREATE TABLE public.phylonode_organism ( phylonode_organism_id integer NOT NULL, phylonode_id integer NOT NULL, organism_id integer NOT NULL ); ALTER TABLE public.phylonode_organism OWNER TO postgres; -- -- Name: TABLE phylonode_organism; Type: COMMENT; Schema: public; Owner: postgres -- COMMENT ON TABLE public.phylonode_organism IS 'This linking table should only be used for nodes in taxonomy trees; it provides a mapping between the node and an organism. One node can have zero or one organisms, one organism can have zero or more nodes (although typically it should only have one in the standard NCBI taxonomy tree).'; -- -- Name: COLUMN phylonode_organism.phylonode_id; Type: COMMENT; Schema: public; Owner: postgres -- COMMENT ON COLUMN public.phylonode_organism.phylonode_id IS 'One phylonode cannot refer to >1 organism.'; -- -- Name: phylonode_organism_phylonode_organism_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- CREATE SEQUENCE public.phylonode_organism_phylonode_organism_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE public.phylonode_organism_phylonode_organism_id_seq OWNER TO postgres; -- -- Name: phylonode_organism_phylonode_organism_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- ALTER SEQUENCE public.phylonode_organism_phylonode_organism_id_seq OWNED BY public.phylonode_organism.phylonode_organism_id; -- -- Name: phylonode_phylonode_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- CREATE SEQUENCE public.phylonode_phylonode_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE public.phylonode_phylonode_id_seq OWNER TO postgres; -- -- Name: phylonode_phylonode_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- ALTER SEQUENCE public.phylonode_phylonode_id_seq OWNED BY public.phylonode.phylonode_id; -- -- Name: phylonode_pub; Type: TABLE; Schema: public; Owner: postgres -- CREATE TABLE public.phylonode_pub ( phylonode_pub_id integer NOT NULL, phylonode_id integer NOT NULL, pub_id integer NOT NULL ); ALTER TABLE public.phylonode_pub OWNER TO postgres; -- -- Name: phylonode_pub_phylonode_pub_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- CREATE SEQUENCE public.phylonode_pub_phylonode_pub_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE public.phylonode_pub_phylonode_pub_id_seq OWNER TO postgres; -- -- Name: phylonode_pub_phylonode_pub_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- ALTER SEQUENCE public.phylonode_pub_phylonode_pub_id_seq OWNED BY public.phylonode_pub.phylonode_pub_id; -- -- Name: phylonode_relationship; Type: TABLE; Schema: public; Owner: postgres -- CREATE TABLE public.phylonode_relationship ( phylonode_relationship_id integer NOT NULL, subject_id integer NOT NULL, object_id integer NOT NULL, type_id integer NOT NULL, rank integer, phylotree_id integer NOT NULL ); ALTER TABLE public.phylonode_relationship OWNER TO postgres; -- -- Name: TABLE phylonode_relationship; Type: COMMENT; Schema: public; Owner: postgres -- COMMENT ON TABLE public.phylonode_relationship IS 'This is for relationships that are not strictly hierarchical; for example, horizontal gene transfer. Most phylogenetic trees are strictly hierarchical, nevertheless it is here for completeness.'; -- -- Name: phylonode_relationship_phylonode_relationship_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- CREATE SEQUENCE public.phylonode_relationship_phylonode_relationship_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE public.phylonode_relationship_phylonode_relationship_id_seq OWNER TO postgres; -- -- Name: phylonode_relationship_phylonode_relationship_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- ALTER SEQUENCE public.phylonode_relationship_phylonode_relationship_id_seq OWNED BY public.phylonode_relationship.phylonode_relationship_id; -- -- Name: phylonodeprop; Type: TABLE; Schema: public; Owner: postgres -- CREATE TABLE public.phylonodeprop ( phylonodeprop_id integer NOT NULL, phylonode_id integer NOT NULL, type_id integer NOT NULL, value text DEFAULT ''::text NOT NULL, rank integer DEFAULT 0 NOT NULL ); ALTER TABLE public.phylonodeprop OWNER TO postgres; -- -- Name: COLUMN phylonodeprop.type_id; Type: COMMENT; Schema: public; Owner: postgres -- COMMENT ON COLUMN public.phylonodeprop.type_id IS 'type_id could designate phylonode hierarchy relationships, for example: species taxonomy (kingdom, order, family, genus, species), "ortholog/paralog", "fold/superfold", etc.'; -- -- Name: phylonodeprop_phylonodeprop_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- CREATE SEQUENCE public.phylonodeprop_phylonodeprop_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE public.phylonodeprop_phylonodeprop_id_seq OWNER TO postgres; -- -- Name: phylonodeprop_phylonodeprop_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- ALTER SEQUENCE public.phylonodeprop_phylonodeprop_id_seq OWNED BY public.phylonodeprop.phylonodeprop_id; -- -- Name: phylotree; Type: TABLE; Schema: public; Owner: postgres -- CREATE TABLE public.phylotree ( phylotree_id integer NOT NULL, dbxref_id integer NOT NULL, name character varying(255), type_id integer, analysis_id integer, comment text ); ALTER TABLE public.phylotree OWNER TO postgres; -- -- Name: TABLE phylotree; Type: COMMENT; Schema: public; Owner: postgres -- COMMENT ON TABLE public.phylotree IS 'Global anchor for phylogenetic tree.'; -- -- Name: COLUMN phylotree.type_id; Type: COMMENT; Schema: public; Owner: postgres -- COMMENT ON COLUMN public.phylotree.type_id IS 'Type: protein, nucleotide, taxonomy, for example. The type should be any SO type, or "taxonomy".'; -- -- Name: phylotree_phylotree_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- CREATE SEQUENCE public.phylotree_phylotree_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE public.phylotree_phylotree_id_seq OWNER TO postgres; -- -- Name: phylotree_phylotree_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- ALTER SEQUENCE public.phylotree_phylotree_id_seq OWNED BY public.phylotree.phylotree_id; -- -- Name: phylotree_pub; Type: TABLE; Schema: public; Owner: postgres -- CREATE TABLE public.phylotree_pub ( phylotree_pub_id integer NOT NULL, phylotree_id integer NOT NULL, pub_id integer NOT NULL ); ALTER TABLE public.phylotree_pub OWNER TO postgres; -- -- Name: TABLE phylotree_pub; Type: COMMENT; Schema: public; Owner: postgres -- COMMENT ON TABLE public.phylotree_pub IS 'Tracks citations global to the tree e.g. multiple sequence alignment supporting tree construction.'; -- -- Name: phylotree_pub_phylotree_pub_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- CREATE SEQUENCE public.phylotree_pub_phylotree_pub_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE public.phylotree_pub_phylotree_pub_id_seq OWNER TO postgres; -- -- Name: phylotree_pub_phylotree_pub_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- ALTER SEQUENCE public.phylotree_pub_phylotree_pub_id_seq OWNED BY public.phylotree_pub.phylotree_pub_id; -- -- Name: plants; Type: MATERIALIZED VIEW; Schema: public; Owner: web_usr -- CREATE MATERIALIZED VIEW public.plants AS SELECT stock.stock_id AS plant_id, stock.uniquename AS plant_name FROM public.stock WHERE ((stock.type_id = ( SELECT cvterm.cvterm_id FROM public.cvterm WHERE ((cvterm.name)::text = 'plant'::text))) AND (stock.is_obsolete = false)) GROUP BY stock.stock_id, stock.uniquename WITH NO DATA; ALTER TABLE public.plants OWNER TO web_usr; -- -- Name: plantsxplots; Type: MATERIALIZED VIEW; Schema: public; Owner: web_usr -- CREATE MATERIALIZED VIEW public.plantsxplots AS SELECT plant.stock_id AS plant_id, plot.stock_id AS plot_id FROM (((public.materialized_phenoview JOIN public.stock plot ON (((materialized_phenoview.stock_id = plot.stock_id) AND (plot.type_id = ( SELECT cvterm.cvterm_id FROM public.cvterm WHERE ((cvterm.name)::text = 'plot'::text)))))) JOIN public.stock_relationship plant_relationship ON ((plot.stock_id = plant_relationship.subject_id))) JOIN public.stock plant ON (((plant_relationship.object_id = plant.stock_id) AND (plant.type_id = ( SELECT cvterm.cvterm_id FROM public.cvterm WHERE ((cvterm.name)::text = 'plant'::text)))))) GROUP BY plant.stock_id, plot.stock_id WITH NO DATA; ALTER TABLE public.plantsxplots OWNER TO web_usr; -- -- Name: plantsxseedlots; Type: MATERIALIZED VIEW; Schema: public; Owner: web_usr -- CREATE MATERIALIZED VIEW public.plantsxseedlots AS SELECT stock.stock_id AS plant_id, materialized_phenoview.seedlot_id FROM (public.materialized_phenoview JOIN public.stock ON (((materialized_phenoview.stock_id = stock.stock_id) AND (stock.type_id = ( SELECT cvterm.cvterm_id FROM public.cvterm WHERE ((cvterm.name)::text = 'plant'::text)))))) GROUP BY stock.stock_id, materialized_phenoview.seedlot_id WITH NO DATA; ALTER TABLE public.plantsxseedlots OWNER TO web_usr; -- -- Name: plantsxtrait_components; Type: MATERIALIZED VIEW; Schema: public; Owner: web_usr -- CREATE MATERIALIZED VIEW public.plantsxtrait_components AS SELECT stock.stock_id AS plant_id, trait_component.cvterm_id AS trait_component_id FROM ((((public.materialized_phenoview JOIN public.stock ON (((materialized_phenoview.stock_id = stock.stock_id) AND (stock.type_id = ( SELECT cvterm.cvterm_id FROM public.cvterm WHERE ((cvterm.name)::text = 'plant'::text)))))) JOIN public.cvterm trait ON ((materialized_phenoview.trait_id = trait.cvterm_id))) JOIN public.cvterm_relationship ON (((trait.cvterm_id = cvterm_relationship.object_id) AND (cvterm_relationship.type_id = ( SELECT cvterm.cvterm_id FROM public.cvterm WHERE ((cvterm.name)::text = 'contains'::text)))))) JOIN public.cvterm trait_component ON ((cvterm_relationship.subject_id = trait_component.cvterm_id))) GROUP BY stock.stock_id, trait_component.cvterm_id WITH NO DATA; ALTER TABLE public.plantsxtrait_components OWNER TO web_usr; -- -- Name: plantsxtraits; Type: MATERIALIZED VIEW; Schema: public; Owner: web_usr -- CREATE MATERIALIZED VIEW public.plantsxtraits AS SELECT stock.stock_id AS plant_id, materialized_phenoview.trait_id FROM (public.materialized_phenoview JOIN public.stock ON (((materialized_phenoview.stock_id = stock.stock_id) AND (stock.type_id = ( SELECT cvterm.cvterm_id FROM public.cvterm WHERE ((cvterm.name)::text = 'plant'::text)))))) GROUP BY stock.stock_id, materialized_phenoview.trait_id WITH NO DATA; ALTER TABLE public.plantsxtraits OWNER TO web_usr; -- -- Name: plantsxtrial_designs; Type: MATERIALIZED VIEW; Schema: public; Owner: web_usr -- CREATE MATERIALIZED VIEW public.plantsxtrial_designs AS SELECT stock.stock_id AS plant_id, trialdesign.value AS trial_design_id FROM ((public.materialized_phenoview JOIN public.stock ON (((materialized_phenoview.stock_id = stock.stock_id) AND (stock.type_id = ( SELECT cvterm.cvterm_id FROM public.cvterm WHERE ((cvterm.name)::text = 'plant'::text)))))) JOIN public.projectprop trialdesign ON (((materialized_phenoview.trial_id = trialdesign.project_id) AND (trialdesign.type_id = ( SELECT cvterm.cvterm_id FROM public.cvterm WHERE ((cvterm.name)::text = 'design'::text)))))) GROUP BY stock.stock_id, trialdesign.value WITH NO DATA; ALTER TABLE public.plantsxtrial_designs OWNER TO web_usr; -- -- Name: plantsxtrial_types; Type: MATERIALIZED VIEW; Schema: public; Owner: web_usr -- CREATE MATERIALIZED VIEW public.plantsxtrial_types AS SELECT stock.stock_id AS plant_id, trialterm.cvterm_id AS trial_type_id FROM (((public.materialized_phenoview JOIN public.stock ON (((materialized_phenoview.stock_id = stock.stock_id) AND (stock.type_id = ( SELECT cvterm.cvterm_id FROM public.cvterm WHERE ((cvterm.name)::text = 'plant'::text)))))) JOIN public.projectprop trialprop ON (((materialized_phenoview.trial_id = trialprop.project_id) AND (trialprop.type_id IN ( SELECT cvterm.cvterm_id FROM (public.cvterm JOIN public.cv USING (cv_id)) WHERE ((cv.name)::text = 'project_type'::text)))))) JOIN public.cvterm trialterm ON ((trialprop.type_id = trialterm.cvterm_id))) GROUP BY stock.stock_id, trialterm.cvterm_id WITH NO DATA; ALTER TABLE public.plantsxtrial_types OWNER TO web_usr; -- -- Name: plantsxtrials; Type: MATERIALIZED VIEW; Schema: public; Owner: web_usr -- CREATE MATERIALIZED VIEW public.plantsxtrials AS SELECT stock.stock_id AS plant_id, materialized_phenoview.trial_id FROM (public.materialized_phenoview JOIN public.stock ON (((materialized_phenoview.stock_id = stock.stock_id) AND (stock.type_id = ( SELECT cvterm.cvterm_id FROM public.cvterm WHERE ((cvterm.name)::text = 'plant'::text)))))) GROUP BY stock.stock_id, materialized_phenoview.trial_id WITH NO DATA; ALTER TABLE public.plantsxtrials OWNER TO web_usr; -- -- Name: plantsxyears; Type: MATERIALIZED VIEW; Schema: public; Owner: web_usr -- CREATE MATERIALIZED VIEW public.plantsxyears AS SELECT stock.stock_id AS plant_id, materialized_phenoview.year_id FROM (public.materialized_phenoview JOIN public.stock ON (((materialized_phenoview.stock_id = stock.stock_id) AND (stock.type_id = ( SELECT cvterm.cvterm_id FROM public.cvterm WHERE ((cvterm.name)::text = 'plant'::text)))))) GROUP BY stock.stock_id, materialized_phenoview.year_id WITH NO DATA; ALTER TABLE public.plantsxyears OWNER TO web_usr; -- -- Name: plots; Type: MATERIALIZED VIEW; Schema: public; Owner: web_usr -- CREATE MATERIALIZED VIEW public.plots AS SELECT stock.stock_id AS plot_id, stock.uniquename AS plot_name FROM public.stock WHERE ((stock.type_id = ( SELECT cvterm.cvterm_id FROM public.cvterm WHERE ((cvterm.name)::text = 'plot'::text))) AND (stock.is_obsolete = false)) GROUP BY stock.stock_id, stock.uniquename WITH NO DATA; ALTER TABLE public.plots OWNER TO web_usr; -- -- Name: plotsxseedlots; Type: MATERIALIZED VIEW; Schema: public; Owner: web_usr -- CREATE MATERIALIZED VIEW public.plotsxseedlots AS SELECT stock.stock_id AS plot_id, materialized_phenoview.seedlot_id FROM (public.materialized_phenoview JOIN public.stock ON (((materialized_phenoview.stock_id = stock.stock_id) AND (stock.type_id = ( SELECT cvterm.cvterm_id FROM public.cvterm WHERE ((cvterm.name)::text = 'plot'::text)))))) GROUP BY stock.stock_id, materialized_phenoview.seedlot_id WITH NO DATA; ALTER TABLE public.plotsxseedlots OWNER TO web_usr; -- -- Name: plotsxtrait_components; Type: MATERIALIZED VIEW; Schema: public; Owner: web_usr -- CREATE MATERIALIZED VIEW public.plotsxtrait_components AS SELECT stock.stock_id AS plot_id, trait_component.cvterm_id AS trait_component_id FROM ((((public.materialized_phenoview JOIN public.stock ON (((materialized_phenoview.stock_id = stock.stock_id) AND (stock.type_id = ( SELECT cvterm.cvterm_id FROM public.cvterm WHERE ((cvterm.name)::text = 'plot'::text)))))) JOIN public.cvterm trait ON ((materialized_phenoview.trait_id = trait.cvterm_id))) JOIN public.cvterm_relationship ON (((trait.cvterm_id = cvterm_relationship.object_id) AND (cvterm_relationship.type_id = ( SELECT cvterm.cvterm_id FROM public.cvterm WHERE ((cvterm.name)::text = 'contains'::text)))))) JOIN public.cvterm trait_component ON ((cvterm_relationship.subject_id = trait_component.cvterm_id))) GROUP BY stock.stock_id, trait_component.cvterm_id WITH NO DATA; ALTER TABLE public.plotsxtrait_components OWNER TO web_usr; -- -- Name: plotsxtraits; Type: MATERIALIZED VIEW; Schema: public; Owner: web_usr -- CREATE MATERIALIZED VIEW public.plotsxtraits AS SELECT stock.stock_id AS plot_id, materialized_phenoview.trait_id FROM (public.materialized_phenoview JOIN public.stock ON (((materialized_phenoview.stock_id = stock.stock_id) AND (stock.type_id = ( SELECT cvterm.cvterm_id FROM public.cvterm WHERE ((cvterm.name)::text = 'plot'::text)))))) GROUP BY stock.stock_id, materialized_phenoview.trait_id WITH NO DATA; ALTER TABLE public.plotsxtraits OWNER TO web_usr; -- -- Name: plotsxtrial_designs; Type: MATERIALIZED VIEW; Schema: public; Owner: web_usr -- CREATE MATERIALIZED VIEW public.plotsxtrial_designs AS SELECT stock.stock_id AS plot_id, trialdesign.value AS trial_design_id FROM ((public.materialized_phenoview JOIN public.stock ON (((materialized_phenoview.stock_id = stock.stock_id) AND (stock.type_id = ( SELECT cvterm.cvterm_id FROM public.cvterm WHERE ((cvterm.name)::text = 'plot'::text)))))) JOIN public.projectprop trialdesign ON (((materialized_phenoview.trial_id = trialdesign.project_id) AND (trialdesign.type_id = ( SELECT cvterm.cvterm_id FROM public.cvterm WHERE ((cvterm.name)::text = 'design'::text)))))) GROUP BY stock.stock_id, trialdesign.value WITH NO DATA; ALTER TABLE public.plotsxtrial_designs OWNER TO web_usr; -- -- Name: plotsxtrial_types; Type: MATERIALIZED VIEW; Schema: public; Owner: web_usr -- CREATE MATERIALIZED VIEW public.plotsxtrial_types AS SELECT stock.stock_id AS plot_id, trialterm.cvterm_id AS trial_type_id FROM (((public.materialized_phenoview JOIN public.stock ON (((materialized_phenoview.stock_id = stock.stock_id) AND (stock.type_id = ( SELECT cvterm.cvterm_id FROM public.cvterm WHERE ((cvterm.name)::text = 'plot'::text)))))) JOIN public.projectprop trialprop ON (((materialized_phenoview.trial_id = trialprop.project_id) AND (trialprop.type_id IN ( SELECT cvterm.cvterm_id FROM (public.cvterm JOIN public.cv USING (cv_id)) WHERE ((cv.name)::text = 'project_type'::text)))))) JOIN public.cvterm trialterm ON ((trialprop.type_id = trialterm.cvterm_id))) GROUP BY stock.stock_id, trialterm.cvterm_id WITH NO DATA; ALTER TABLE public.plotsxtrial_types OWNER TO web_usr; -- -- Name: plotsxtrials; Type: MATERIALIZED VIEW; Schema: public; Owner: web_usr -- CREATE MATERIALIZED VIEW public.plotsxtrials AS SELECT stock.stock_id AS plot_id, materialized_phenoview.trial_id FROM (public.materialized_phenoview JOIN public.stock ON (((materialized_phenoview.stock_id = stock.stock_id) AND (stock.type_id = ( SELECT cvterm.cvterm_id FROM public.cvterm WHERE ((cvterm.name)::text = 'plot'::text)))))) GROUP BY stock.stock_id, materialized_phenoview.trial_id WITH NO DATA; ALTER TABLE public.plotsxtrials OWNER TO web_usr; -- -- Name: plotsxyears; Type: MATERIALIZED VIEW; Schema: public; Owner: web_usr -- CREATE MATERIALIZED VIEW public.plotsxyears AS SELECT stock.stock_id AS plot_id, materialized_phenoview.year_id FROM (public.materialized_phenoview JOIN public.stock ON (((materialized_phenoview.stock_id = stock.stock_id) AND (stock.type_id = ( SELECT cvterm.cvterm_id FROM public.cvterm WHERE ((cvterm.name)::text = 'plot'::text)))))) GROUP BY stock.stock_id, materialized_phenoview.year_id WITH NO DATA; ALTER TABLE public.plotsxyears OWNER TO web_usr; -- -- Name: project_contact; Type: TABLE; Schema: public; Owner: postgres -- CREATE TABLE public.project_contact ( project_contact_id integer NOT NULL, project_id integer NOT NULL, contact_id integer NOT NULL ); ALTER TABLE public.project_contact OWNER TO postgres; -- -- Name: TABLE project_contact; Type: COMMENT; Schema: public; Owner: postgres -- COMMENT ON TABLE public.project_contact IS 'Linking project(s) to contact(s)'; -- -- Name: project_contact_project_contact_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- CREATE SEQUENCE public.project_contact_project_contact_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE public.project_contact_project_contact_id_seq OWNER TO postgres; -- -- Name: project_contact_project_contact_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- ALTER SEQUENCE public.project_contact_project_contact_id_seq OWNED BY public.project_contact.project_contact_id; -- -- Name: project_project_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- CREATE SEQUENCE public.project_project_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE public.project_project_id_seq OWNER TO postgres; -- -- Name: project_project_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- ALTER SEQUENCE public.project_project_id_seq OWNED BY public.project.project_id; -- -- Name: project_pub; Type: TABLE; Schema: public; Owner: postgres -- CREATE TABLE public.project_pub ( project_pub_id integer NOT NULL, project_id integer NOT NULL, pub_id integer NOT NULL ); ALTER TABLE public.project_pub OWNER TO postgres; -- -- Name: TABLE project_pub; Type: COMMENT; Schema: public; Owner: postgres -- COMMENT ON TABLE public.project_pub IS 'Linking project(s) to publication(s)'; -- -- Name: project_pub_project_pub_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- CREATE SEQUENCE public.project_pub_project_pub_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE public.project_pub_project_pub_id_seq OWNER TO postgres; -- -- Name: project_pub_project_pub_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- ALTER SEQUENCE public.project_pub_project_pub_id_seq OWNED BY public.project_pub.project_pub_id; -- -- Name: project_relationship_project_relationship_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- CREATE SEQUENCE public.project_relationship_project_relationship_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE public.project_relationship_project_relationship_id_seq OWNER TO postgres; -- -- Name: project_relationship_project_relationship_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- ALTER SEQUENCE public.project_relationship_project_relationship_id_seq OWNED BY public.project_relationship.project_relationship_id; -- -- Name: projectprop_projectprop_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- CREATE SEQUENCE public.projectprop_projectprop_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE public.projectprop_projectprop_id_seq OWNER TO postgres; -- -- Name: projectprop_projectprop_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- ALTER SEQUENCE public.projectprop_projectprop_id_seq OWNED BY public.projectprop.projectprop_id; -- -- Name: pub_dbxref; Type: TABLE; Schema: public; Owner: postgres -- CREATE TABLE public.pub_dbxref ( pub_dbxref_id integer NOT NULL, pub_id integer NOT NULL, dbxref_id integer NOT NULL, is_current boolean DEFAULT true NOT NULL ); ALTER TABLE public.pub_dbxref OWNER TO postgres; -- -- Name: TABLE pub_dbxref; Type: COMMENT; Schema: public; Owner: postgres -- COMMENT ON TABLE public.pub_dbxref IS 'Handle links to eg, pubmed, biosis, zoorec, OCLC, mdeline, ISSN, coden...'; -- -- Name: pub_dbxref_pub_dbxref_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- CREATE SEQUENCE public.pub_dbxref_pub_dbxref_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE public.pub_dbxref_pub_dbxref_id_seq OWNER TO postgres; -- -- Name: pub_dbxref_pub_dbxref_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- ALTER SEQUENCE public.pub_dbxref_pub_dbxref_id_seq OWNED BY public.pub_dbxref.pub_dbxref_id; -- -- Name: pub_pub_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- CREATE SEQUENCE public.pub_pub_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE public.pub_pub_id_seq OWNER TO postgres; -- -- Name: pub_pub_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- ALTER SEQUENCE public.pub_pub_id_seq OWNED BY public.pub.pub_id; -- -- Name: pub_relationship; Type: TABLE; Schema: public; Owner: postgres -- CREATE TABLE public.pub_relationship ( pub_relationship_id integer NOT NULL, subject_id integer NOT NULL, object_id integer NOT NULL, type_id integer NOT NULL ); ALTER TABLE public.pub_relationship OWNER TO postgres; -- -- Name: TABLE pub_relationship; Type: COMMENT; Schema: public; Owner: postgres -- COMMENT ON TABLE public.pub_relationship IS 'Handle relationships between publications, eg, when one publication makes others obsolete, when one publication contains errata with respect to other publication(s), or when one publication also appears in another pub (I think these three are it - at least for fb)'; -- -- Name: pub_relationship_pub_relationship_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- CREATE SEQUENCE public.pub_relationship_pub_relationship_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE public.pub_relationship_pub_relationship_id_seq OWNER TO postgres; -- -- Name: pub_relationship_pub_relationship_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- ALTER SEQUENCE public.pub_relationship_pub_relationship_id_seq OWNED BY public.pub_relationship.pub_relationship_id; -- -- Name: pubabstract; Type: TABLE; Schema: public; Owner: postgres -- CREATE TABLE public.pubabstract ( pubabstract_id integer NOT NULL, pub_id integer, abstract text, abstract_tsvector tsvector ); ALTER TABLE public.pubabstract OWNER TO postgres; -- -- Name: pubabstract_pubabstract_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- CREATE SEQUENCE public.pubabstract_pubabstract_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE public.pubabstract_pubabstract_id_seq OWNER TO postgres; -- -- Name: pubabstract_pubabstract_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- ALTER SEQUENCE public.pubabstract_pubabstract_id_seq OWNED BY public.pubabstract.pubabstract_id; -- -- Name: pubauthor; Type: TABLE; Schema: public; Owner: postgres -- CREATE TABLE public.pubauthor ( pubauthor_id integer NOT NULL, pub_id integer NOT NULL, rank integer NOT NULL, editor boolean DEFAULT false, surname character varying(100) NOT NULL, givennames character varying(100), suffix character varying(100) ); ALTER TABLE public.pubauthor OWNER TO postgres; -- -- Name: TABLE pubauthor; Type: COMMENT; Schema: public; Owner: postgres -- COMMENT ON TABLE public.pubauthor IS 'an author for a publication. Note the denormalisation (hence lack of _ in table name) - this is deliberate as it is in general too hard to assign IDs to authors.'; -- -- Name: COLUMN pubauthor.rank; Type: COMMENT; Schema: public; Owner: postgres -- COMMENT ON COLUMN public.pubauthor.rank IS 'order of author in author list for this pub - order is important'; -- -- Name: COLUMN pubauthor.editor; Type: COMMENT; Schema: public; Owner: postgres -- COMMENT ON COLUMN public.pubauthor.editor IS 'indicates whether the author is an editor for linked publication. Note: this is a boolean field but does not follow the normal chado convention for naming booleans'; -- -- Name: COLUMN pubauthor.givennames; Type: COMMENT; Schema: public; Owner: postgres -- COMMENT ON COLUMN public.pubauthor.givennames IS 'first name, initials'; -- -- Name: COLUMN pubauthor.suffix; Type: COMMENT; Schema: public; Owner: postgres -- COMMENT ON COLUMN public.pubauthor.suffix IS 'Jr., Sr., etc'; -- -- Name: pubauthor_pubauthor_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- CREATE SEQUENCE public.pubauthor_pubauthor_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE public.pubauthor_pubauthor_id_seq OWNER TO postgres; -- -- Name: pubauthor_pubauthor_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- ALTER SEQUENCE public.pubauthor_pubauthor_id_seq OWNED BY public.pubauthor.pubauthor_id; -- -- Name: pubprop; Type: TABLE; Schema: public; Owner: postgres -- CREATE TABLE public.pubprop ( pubprop_id integer NOT NULL, pub_id integer NOT NULL, type_id integer NOT NULL, value text NOT NULL, rank integer ); ALTER TABLE public.pubprop OWNER TO postgres; -- -- Name: TABLE pubprop; Type: COMMENT; Schema: public; Owner: postgres -- COMMENT ON TABLE public.pubprop IS 'Property-value pairs for a pub. Follows standard chado pattern - see sequence module for details'; -- -- Name: pubprop_pubprop_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- CREATE SEQUENCE public.pubprop_pubprop_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE public.pubprop_pubprop_id_seq OWNER TO postgres; -- -- Name: pubprop_pubprop_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- ALTER SEQUENCE public.pubprop_pubprop_id_seq OWNED BY public.pubprop.pubprop_id; -- -- Name: resource_file; Type: TABLE; Schema: public; Owner: postgres -- CREATE TABLE public.resource_file ( resource_file_id integer NOT NULL, name character varying(40) NOT NULL, expression text NOT NULL ); ALTER TABLE public.resource_file OWNER TO postgres; -- -- Name: TABLE resource_file; Type: COMMENT; Schema: public; Owner: postgres -- COMMENT ON TABLE public.resource_file IS 'each row defines a composite dataset, downloadable at the url cxgn-resource://name, that is composed of other downloadable datasets, according to the expression column. See CXGN::Tools::Wget for the accompanying code'; -- -- Name: resource_file_resource_file_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- CREATE SEQUENCE public.resource_file_resource_file_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE public.resource_file_resource_file_id_seq OWNER TO postgres; -- -- Name: resource_file_resource_file_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- ALTER SEQUENCE public.resource_file_resource_file_id_seq OWNED BY public.resource_file.resource_file_id; -- -- Name: seedlots; Type: MATERIALIZED VIEW; Schema: public; Owner: web_usr -- CREATE MATERIALIZED VIEW public.seedlots AS SELECT stock.stock_id AS seedlot_id, stock.uniquename AS seedlot_name FROM public.stock WHERE ((stock.type_id = ( SELECT cvterm.cvterm_id FROM public.cvterm WHERE ((cvterm.name)::text = 'seedlot'::text))) AND (stock.is_obsolete = false)) GROUP BY stock.stock_id, stock.uniquename WITH NO DATA; ALTER TABLE public.seedlots OWNER TO web_usr; -- -- Name: seedlotsxtrait_components; Type: MATERIALIZED VIEW; Schema: public; Owner: web_usr -- CREATE MATERIALIZED VIEW public.seedlotsxtrait_components AS SELECT materialized_phenoview.seedlot_id, trait_component.cvterm_id AS trait_component_id FROM (((public.materialized_phenoview JOIN public.cvterm trait ON ((materialized_phenoview.trait_id = trait.cvterm_id))) JOIN public.cvterm_relationship ON (((trait.cvterm_id = cvterm_relationship.object_id) AND (cvterm_relationship.type_id = ( SELECT cvterm.cvterm_id FROM public.cvterm WHERE ((cvterm.name)::text = 'contains'::text)))))) JOIN public.cvterm trait_component ON ((cvterm_relationship.subject_id = trait_component.cvterm_id))) GROUP BY materialized_phenoview.seedlot_id, trait_component.cvterm_id WITH NO DATA; ALTER TABLE public.seedlotsxtrait_components OWNER TO web_usr; -- -- Name: seedlotsxtraits; Type: MATERIALIZED VIEW; Schema: public; Owner: web_usr -- CREATE MATERIALIZED VIEW public.seedlotsxtraits AS SELECT materialized_phenoview.seedlot_id, materialized_phenoview.trait_id FROM public.materialized_phenoview GROUP BY materialized_phenoview.seedlot_id, materialized_phenoview.trait_id WITH NO DATA; ALTER TABLE public.seedlotsxtraits OWNER TO web_usr; -- -- Name: seedlotsxtrial_designs; Type: MATERIALIZED VIEW; Schema: public; Owner: web_usr -- CREATE MATERIALIZED VIEW public.seedlotsxtrial_designs AS SELECT materialized_phenoview.seedlot_id, trialdesign.value AS trial_design_id FROM (public.materialized_phenoview JOIN public.projectprop trialdesign ON (((materialized_phenoview.trial_id = trialdesign.project_id) AND (trialdesign.type_id = ( SELECT cvterm.cvterm_id FROM public.cvterm WHERE ((cvterm.name)::text = 'design'::text)))))) GROUP BY materialized_phenoview.seedlot_id, trialdesign.value WITH NO DATA; ALTER TABLE public.seedlotsxtrial_designs OWNER TO web_usr; -- -- Name: seedlotsxtrial_types; Type: MATERIALIZED VIEW; Schema: public; Owner: web_usr -- CREATE MATERIALIZED VIEW public.seedlotsxtrial_types AS SELECT materialized_phenoview.seedlot_id, trialterm.cvterm_id AS trial_type_id FROM ((public.materialized_phenoview JOIN public.projectprop trialprop ON (((materialized_phenoview.trial_id = trialprop.project_id) AND (trialprop.type_id IN ( SELECT cvterm.cvterm_id FROM (public.cvterm JOIN public.cv USING (cv_id)) WHERE ((cv.name)::text = 'project_type'::text)))))) JOIN public.cvterm trialterm ON ((trialprop.type_id = trialterm.cvterm_id))) GROUP BY materialized_phenoview.seedlot_id, trialterm.cvterm_id WITH NO DATA; ALTER TABLE public.seedlotsxtrial_types OWNER TO web_usr; -- -- Name: seedlotsxtrials; Type: MATERIALIZED VIEW; Schema: public; Owner: web_usr -- CREATE MATERIALIZED VIEW public.seedlotsxtrials AS SELECT materialized_phenoview.seedlot_id, materialized_phenoview.trial_id FROM public.materialized_phenoview GROUP BY materialized_phenoview.seedlot_id, materialized_phenoview.trial_id WITH NO DATA; ALTER TABLE public.seedlotsxtrials OWNER TO web_usr; -- -- Name: seedlotsxyears; Type: MATERIALIZED VIEW; Schema: public; Owner: web_usr -- CREATE MATERIALIZED VIEW public.seedlotsxyears AS SELECT materialized_phenoview.seedlot_id, materialized_phenoview.year_id FROM public.materialized_phenoview GROUP BY materialized_phenoview.seedlot_id, materialized_phenoview.year_id WITH NO DATA; ALTER TABLE public.seedlotsxyears OWNER TO web_usr; -- -- Name: signalp; Type: TABLE; Schema: public; Owner: postgres -- CREATE TABLE public.signalp ( signalp_id integer NOT NULL, cds_id bigint, nn_cmax real, nn_cpos smallint, nn_cd character(1), nn_ymax real, nn_ypos smallint, nn_yd character(1), nn_smax real, nn_spos smallint, nn_sd character(1), nn_smean real, nn_smeand character(1), nn_score real, nn_d character(1), hmm_type character(1), hmm_cmax real, hmm_cpos smallint, hmm_cd character(1), hmm_sprob real, hmm_d character(1) ); ALTER TABLE public.signalp OWNER TO postgres; -- -- Name: signalp_signalp_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- CREATE SEQUENCE public.signalp_signalp_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE public.signalp_signalp_id_seq OWNER TO postgres; -- -- Name: signalp_signalp_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- ALTER SEQUENCE public.signalp_signalp_id_seq OWNED BY public.signalp.signalp_id; -- -- Name: stock_cvterm; Type: TABLE; Schema: public; Owner: postgres -- CREATE TABLE public.stock_cvterm ( stock_cvterm_id integer NOT NULL, stock_id integer NOT NULL, cvterm_id integer NOT NULL, pub_id integer NOT NULL, rank integer DEFAULT 0 NOT NULL, is_not boolean DEFAULT false NOT NULL ); ALTER TABLE public.stock_cvterm OWNER TO postgres; -- -- Name: TABLE stock_cvterm; Type: COMMENT; Schema: public; Owner: postgres -- COMMENT ON TABLE public.stock_cvterm IS 'stock_cvterm links a stock to cvterms. This is for secondary cvterms; primary cvterms should use stock.type_id.'; -- -- Name: stock_cvterm_stock_cvterm_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- CREATE SEQUENCE public.stock_cvterm_stock_cvterm_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE public.stock_cvterm_stock_cvterm_id_seq OWNER TO postgres; -- -- Name: stock_cvterm_stock_cvterm_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- ALTER SEQUENCE public.stock_cvterm_stock_cvterm_id_seq OWNED BY public.stock_cvterm.stock_cvterm_id; -- -- Name: stock_cvtermprop; Type: TABLE; Schema: public; Owner: postgres -- CREATE TABLE public.stock_cvtermprop ( stock_cvtermprop_id integer NOT NULL, stock_cvterm_id integer NOT NULL, type_id integer NOT NULL, value text, rank integer DEFAULT 0 NOT NULL ); ALTER TABLE public.stock_cvtermprop OWNER TO postgres; -- -- Name: TABLE stock_cvtermprop; Type: COMMENT; Schema: public; Owner: postgres -- COMMENT ON TABLE public.stock_cvtermprop IS 'Extensible properties for stock to cvterm associations. Examples: GO evidence codes; qualifiers; metadata such as the date on which the entry was curated and the source of the association. See the stockprop table for meanings of type_id, value and rank.'; -- -- Name: COLUMN stock_cvtermprop.type_id; Type: COMMENT; Schema: public; Owner: postgres -- COMMENT ON COLUMN public.stock_cvtermprop.type_id IS 'The name of the property/slot is a cvterm. The meaning of the property is defined in that cvterm. cvterms may come from the OBO evidence code cv.'; -- -- Name: COLUMN stock_cvtermprop.value; Type: COMMENT; Schema: public; Owner: postgres -- COMMENT ON COLUMN public.stock_cvtermprop.value IS 'The value of the property, represented as text. Numeric values are converted to their text representation. This is less efficient than using native database types, but is easier to query.'; -- -- Name: COLUMN stock_cvtermprop.rank; Type: COMMENT; Schema: public; Owner: postgres -- COMMENT ON COLUMN public.stock_cvtermprop.rank IS 'Property-Value ordering. Any stock_cvterm can have multiple values for any particular property type - these are ordered in a list using rank, counting from zero. For properties that are single-valued rather than multi-valued, the default 0 value should be used.'; -- -- Name: stock_cvtermprop_stock_cvtermprop_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- CREATE SEQUENCE public.stock_cvtermprop_stock_cvtermprop_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE public.stock_cvtermprop_stock_cvtermprop_id_seq OWNER TO postgres; -- -- Name: stock_cvtermprop_stock_cvtermprop_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- ALTER SEQUENCE public.stock_cvtermprop_stock_cvtermprop_id_seq OWNED BY public.stock_cvtermprop.stock_cvtermprop_id; -- -- Name: stock_dbxref; Type: TABLE; Schema: public; Owner: postgres -- CREATE TABLE public.stock_dbxref ( stock_dbxref_id integer NOT NULL, stock_id integer NOT NULL, dbxref_id integer NOT NULL, is_current boolean DEFAULT true NOT NULL ); ALTER TABLE public.stock_dbxref OWNER TO postgres; -- -- Name: TABLE stock_dbxref; Type: COMMENT; Schema: public; Owner: postgres -- COMMENT ON TABLE public.stock_dbxref IS 'stock_dbxref links a stock to dbxrefs. This is for secondary identifiers; primary identifiers should use stock.dbxref_id.'; -- -- Name: COLUMN stock_dbxref.is_current; Type: COMMENT; Schema: public; Owner: postgres -- COMMENT ON COLUMN public.stock_dbxref.is_current IS 'The is_current boolean indicates whether the linked dbxref is the current -official- dbxref for the linked stock.'; -- -- Name: stock_dbxref_stock_dbxref_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- CREATE SEQUENCE public.stock_dbxref_stock_dbxref_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE public.stock_dbxref_stock_dbxref_id_seq OWNER TO postgres; -- -- Name: stock_dbxref_stock_dbxref_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- ALTER SEQUENCE public.stock_dbxref_stock_dbxref_id_seq OWNED BY public.stock_dbxref.stock_dbxref_id; -- -- Name: stock_dbxrefprop; Type: TABLE; Schema: public; Owner: postgres -- CREATE TABLE public.stock_dbxrefprop ( stock_dbxrefprop_id integer NOT NULL, stock_dbxref_id integer NOT NULL, type_id integer NOT NULL, value text, rank integer DEFAULT 0 NOT NULL ); ALTER TABLE public.stock_dbxrefprop OWNER TO postgres; -- -- Name: TABLE stock_dbxrefprop; Type: COMMENT; Schema: public; Owner: postgres -- COMMENT ON TABLE public.stock_dbxrefprop IS 'A stock_dbxref can have any number of slot-value property tags attached to it. This is useful for storing properties related to dbxref annotations of stocks, such as evidence codes, and references, and metadata, such as create/modify dates. This is an alternative to hardcoding a list of columns in the relational schema, and is completely extensible. There is a unique constraint, stock_dbxrefprop_c1, for the combination of stock_dbxref_id, rank, and type_id. Multivalued property-value pairs must be differentiated by rank.'; -- -- Name: stock_dbxrefprop_stock_dbxrefprop_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- CREATE SEQUENCE public.stock_dbxrefprop_stock_dbxrefprop_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE public.stock_dbxrefprop_stock_dbxrefprop_id_seq OWNER TO postgres; -- -- Name: stock_dbxrefprop_stock_dbxrefprop_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- ALTER SEQUENCE public.stock_dbxrefprop_stock_dbxrefprop_id_seq OWNED BY public.stock_dbxrefprop.stock_dbxrefprop_id; -- -- Name: stock_genotype; Type: TABLE; Schema: public; Owner: postgres -- CREATE TABLE public.stock_genotype ( stock_genotype_id integer NOT NULL, stock_id integer NOT NULL, genotype_id integer NOT NULL ); ALTER TABLE public.stock_genotype OWNER TO postgres; -- -- Name: TABLE stock_genotype; Type: COMMENT; Schema: public; Owner: postgres -- COMMENT ON TABLE public.stock_genotype IS 'Simple table linking a stock to a genotype. Features with genotypes can be linked to stocks thru feature_genotype -> genotype -> stock_genotype -> stock.'; -- -- Name: stock_genotype_stock_genotype_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- CREATE SEQUENCE public.stock_genotype_stock_genotype_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE public.stock_genotype_stock_genotype_id_seq OWNER TO postgres; -- -- Name: stock_genotype_stock_genotype_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- ALTER SEQUENCE public.stock_genotype_stock_genotype_id_seq OWNED BY public.stock_genotype.stock_genotype_id; -- -- Name: stock_pub; Type: TABLE; Schema: public; Owner: postgres -- CREATE TABLE public.stock_pub ( stock_pub_id integer NOT NULL, stock_id integer NOT NULL, pub_id integer NOT NULL ); ALTER TABLE public.stock_pub OWNER TO postgres; -- -- Name: TABLE stock_pub; Type: COMMENT; Schema: public; Owner: postgres -- COMMENT ON TABLE public.stock_pub IS 'Provenance. Linking table between stocks and, for example, a stocklist computer file.'; -- -- Name: stock_pub_stock_pub_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- CREATE SEQUENCE public.stock_pub_stock_pub_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE public.stock_pub_stock_pub_id_seq OWNER TO postgres; -- -- Name: stock_pub_stock_pub_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- ALTER SEQUENCE public.stock_pub_stock_pub_id_seq OWNED BY public.stock_pub.stock_pub_id; -- -- Name: stock_relationship_cvterm; Type: TABLE; Schema: public; Owner: postgres -- CREATE TABLE public.stock_relationship_cvterm ( stock_relationship_cvterm_id integer NOT NULL, stock_relationship_id integer NOT NULL, cvterm_id integer NOT NULL, pub_id integer ); ALTER TABLE public.stock_relationship_cvterm OWNER TO postgres; -- -- Name: TABLE stock_relationship_cvterm; Type: COMMENT; Schema: public; Owner: postgres -- COMMENT ON TABLE public.stock_relationship_cvterm IS 'For germplasm maintenance and pedigree data, stock_relationship. type_id will record cvterms such as "is a female parent of", "a parent for mutation", "is a group_id of", "is a source_id of", etc The cvterms for higher categories such as "generative", "derivative" or "maintenance" can be stored in table stock_relationship_cvterm'; -- -- Name: stock_relationship_cvterm_stock_relationship_cvterm_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- CREATE SEQUENCE public.stock_relationship_cvterm_stock_relationship_cvterm_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE public.stock_relationship_cvterm_stock_relationship_cvterm_id_seq OWNER TO postgres; -- -- Name: stock_relationship_cvterm_stock_relationship_cvterm_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- ALTER SEQUENCE public.stock_relationship_cvterm_stock_relationship_cvterm_id_seq OWNED BY public.stock_relationship_cvterm.stock_relationship_cvterm_id; -- -- Name: stock_relationship_pub; Type: TABLE; Schema: public; Owner: postgres -- CREATE TABLE public.stock_relationship_pub ( stock_relationship_pub_id integer NOT NULL, stock_relationship_id integer NOT NULL, pub_id integer NOT NULL ); ALTER TABLE public.stock_relationship_pub OWNER TO postgres; -- -- Name: TABLE stock_relationship_pub; Type: COMMENT; Schema: public; Owner: postgres -- COMMENT ON TABLE public.stock_relationship_pub IS 'Provenance. Attach optional evidence to a stock_relationship in the form of a publication.'; -- -- Name: stock_relationship_pub_stock_relationship_pub_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- CREATE SEQUENCE public.stock_relationship_pub_stock_relationship_pub_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE public.stock_relationship_pub_stock_relationship_pub_id_seq OWNER TO postgres; -- -- Name: stock_relationship_pub_stock_relationship_pub_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- ALTER SEQUENCE public.stock_relationship_pub_stock_relationship_pub_id_seq OWNED BY public.stock_relationship_pub.stock_relationship_pub_id; -- -- Name: stock_relationship_stock_relationship_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- CREATE SEQUENCE public.stock_relationship_stock_relationship_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE public.stock_relationship_stock_relationship_id_seq OWNER TO postgres; -- -- Name: stock_relationship_stock_relationship_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- ALTER SEQUENCE public.stock_relationship_stock_relationship_id_seq OWNED BY public.stock_relationship.stock_relationship_id; -- -- Name: stock_stock_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- CREATE SEQUENCE public.stock_stock_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE public.stock_stock_id_seq OWNER TO postgres; -- -- Name: stock_stock_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- ALTER SEQUENCE public.stock_stock_id_seq OWNED BY public.stock.stock_id; -- -- Name: stockcollection; Type: TABLE; Schema: public; Owner: postgres -- CREATE TABLE public.stockcollection ( stockcollection_id integer NOT NULL, type_id integer NOT NULL, contact_id integer, name character varying(255), uniquename text NOT NULL ); ALTER TABLE public.stockcollection OWNER TO postgres; -- -- Name: TABLE stockcollection; Type: COMMENT; Schema: public; Owner: postgres -- COMMENT ON TABLE public.stockcollection IS 'The lab or stock center distributing the stocks in their collection.'; -- -- Name: COLUMN stockcollection.type_id; Type: COMMENT; Schema: public; Owner: postgres -- COMMENT ON COLUMN public.stockcollection.type_id IS 'type_id is the collection type cv.'; -- -- Name: COLUMN stockcollection.contact_id; Type: COMMENT; Schema: public; Owner: postgres -- COMMENT ON COLUMN public.stockcollection.contact_id IS 'contact_id links to the contact information for the collection.'; -- -- Name: COLUMN stockcollection.name; Type: COMMENT; Schema: public; Owner: postgres -- COMMENT ON COLUMN public.stockcollection.name IS 'name is the collection.'; -- -- Name: COLUMN stockcollection.uniquename; Type: COMMENT; Schema: public; Owner: postgres -- COMMENT ON COLUMN public.stockcollection.uniquename IS 'uniqename is the value of the collection cv.'; -- -- Name: stockcollection_stock; Type: TABLE; Schema: public; Owner: postgres -- CREATE TABLE public.stockcollection_stock ( stockcollection_stock_id integer NOT NULL, stockcollection_id integer NOT NULL, stock_id integer NOT NULL ); ALTER TABLE public.stockcollection_stock OWNER TO postgres; -- -- Name: TABLE stockcollection_stock; Type: COMMENT; Schema: public; Owner: postgres -- COMMENT ON TABLE public.stockcollection_stock IS 'stockcollection_stock links a stock collection to the stocks which are contained in the collection.'; -- -- Name: stockcollection_stock_stockcollection_stock_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- CREATE SEQUENCE public.stockcollection_stock_stockcollection_stock_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE public.stockcollection_stock_stockcollection_stock_id_seq OWNER TO postgres; -- -- Name: stockcollection_stock_stockcollection_stock_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- ALTER SEQUENCE public.stockcollection_stock_stockcollection_stock_id_seq OWNED BY public.stockcollection_stock.stockcollection_stock_id; -- -- Name: stockcollection_stockcollection_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- CREATE SEQUENCE public.stockcollection_stockcollection_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE public.stockcollection_stockcollection_id_seq OWNER TO postgres; -- -- Name: stockcollection_stockcollection_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- ALTER SEQUENCE public.stockcollection_stockcollection_id_seq OWNED BY public.stockcollection.stockcollection_id; -- -- Name: stockcollectionprop; Type: TABLE; Schema: public; Owner: postgres -- CREATE TABLE public.stockcollectionprop ( stockcollectionprop_id integer NOT NULL, stockcollection_id integer NOT NULL, type_id integer NOT NULL, value text, rank integer DEFAULT 0 NOT NULL ); ALTER TABLE public.stockcollectionprop OWNER TO postgres; -- -- Name: TABLE stockcollectionprop; Type: COMMENT; Schema: public; Owner: postgres -- COMMENT ON TABLE public.stockcollectionprop IS 'The table stockcollectionprop contains the value of the stock collection such as website/email URLs; the value of the stock collection order URLs.'; -- -- Name: COLUMN stockcollectionprop.type_id; Type: COMMENT; Schema: public; Owner: postgres -- COMMENT ON COLUMN public.stockcollectionprop.type_id IS 'The cv for the type_id is "stockcollection property type".'; -- -- Name: stockcollectionprop_stockcollectionprop_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- CREATE SEQUENCE public.stockcollectionprop_stockcollectionprop_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE public.stockcollectionprop_stockcollectionprop_id_seq OWNER TO postgres; -- -- Name: stockcollectionprop_stockcollectionprop_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- ALTER SEQUENCE public.stockcollectionprop_stockcollectionprop_id_seq OWNED BY public.stockcollectionprop.stockcollectionprop_id; -- -- Name: stockprop_pub; Type: TABLE; Schema: public; Owner: postgres -- CREATE TABLE public.stockprop_pub ( stockprop_pub_id integer NOT NULL, stockprop_id integer NOT NULL, pub_id integer NOT NULL ); ALTER TABLE public.stockprop_pub OWNER TO postgres; -- -- Name: TABLE stockprop_pub; Type: COMMENT; Schema: public; Owner: postgres -- COMMENT ON TABLE public.stockprop_pub IS 'Provenance. Any stockprop assignment can optionally be supported by a publication.'; -- -- Name: stockprop_pub_stockprop_pub_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- CREATE SEQUENCE public.stockprop_pub_stockprop_pub_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE public.stockprop_pub_stockprop_pub_id_seq OWNER TO postgres; -- -- Name: stockprop_pub_stockprop_pub_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- ALTER SEQUENCE public.stockprop_pub_stockprop_pub_id_seq OWNED BY public.stockprop_pub.stockprop_pub_id; -- -- Name: stockprop_stockprop_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- CREATE SEQUENCE public.stockprop_stockprop_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE public.stockprop_stockprop_id_seq OWNER TO postgres; -- -- Name: stockprop_stockprop_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- ALTER SEQUENCE public.stockprop_stockprop_id_seq OWNED BY public.stockprop.stockprop_id; -- -- Name: synonym_synonym_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- CREATE SEQUENCE public.synonym_synonym_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE public.synonym_synonym_id_seq OWNER TO postgres; -- -- Name: synonym_synonym_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- ALTER SEQUENCE public.synonym_synonym_id_seq OWNED BY public.synonym.synonym_id; -- -- Name: tableinfo; Type: TABLE; Schema: public; Owner: postgres -- CREATE TABLE public.tableinfo ( tableinfo_id integer NOT NULL, name character varying(30) NOT NULL, primary_key_column character varying(30), is_view integer DEFAULT 0 NOT NULL, view_on_table_id integer, superclass_table_id integer, is_updateable integer DEFAULT 1 NOT NULL, modification_date date DEFAULT now() NOT NULL ); ALTER TABLE public.tableinfo OWNER TO postgres; -- -- Name: tableinfo_tableinfo_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- CREATE SEQUENCE public.tableinfo_tableinfo_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE public.tableinfo_tableinfo_id_seq OWNER TO postgres; -- -- Name: tableinfo_tableinfo_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- ALTER SEQUENCE public.tableinfo_tableinfo_id_seq OWNED BY public.tableinfo.tableinfo_id; -- -- Name: tmp_cds_handler; Type: TABLE; Schema: public; Owner: postgres -- CREATE TABLE public.tmp_cds_handler ( cds_row_id integer NOT NULL, seq_id character varying(1024), gff_id character varying(1024), type character varying(1024) NOT NULL, fmin integer NOT NULL, fmax integer NOT NULL, object text NOT NULL ); ALTER TABLE public.tmp_cds_handler OWNER TO postgres; -- -- Name: tmp_cds_handler_cds_row_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- CREATE SEQUENCE public.tmp_cds_handler_cds_row_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE public.tmp_cds_handler_cds_row_id_seq OWNER TO postgres; -- -- Name: tmp_cds_handler_cds_row_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- ALTER SEQUENCE public.tmp_cds_handler_cds_row_id_seq OWNED BY public.tmp_cds_handler.cds_row_id; -- -- Name: tmp_cds_handler_relationship; Type: TABLE; Schema: public; Owner: postgres -- CREATE TABLE public.tmp_cds_handler_relationship ( rel_row_id integer NOT NULL, cds_row_id integer, parent_id character varying(1024), grandparent_id character varying(1024) ); ALTER TABLE public.tmp_cds_handler_relationship OWNER TO postgres; -- -- Name: tmp_cds_handler_relationship_rel_row_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- CREATE SEQUENCE public.tmp_cds_handler_relationship_rel_row_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE public.tmp_cds_handler_relationship_rel_row_id_seq OWNER TO postgres; -- -- Name: tmp_cds_handler_relationship_rel_row_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- ALTER SEQUENCE public.tmp_cds_handler_relationship_rel_row_id_seq OWNED BY public.tmp_cds_handler_relationship.rel_row_id; -- -- Name: tmp_gff_load_cache; Type: TABLE; Schema: public; Owner: postgres -- CREATE TABLE public.tmp_gff_load_cache ( feature_id integer, uniquename character varying(1000), type_id integer, organism_id integer ); ALTER TABLE public.tmp_gff_load_cache OWNER TO postgres; -- -- Name: trait_components; Type: MATERIALIZED VIEW; Schema: public; Owner: web_usr -- CREATE MATERIALIZED VIEW public.trait_components AS SELECT cvterm.cvterm_id AS trait_component_id, (((((cvterm.name)::text || '|'::text) || (db.name)::text) || ':'::text) || (dbxref.accession)::text) AS trait_component_name FROM ((((((public.cv JOIN public.cvprop ON (((cv.cv_id = cvprop.cv_id) AND (cvprop.type_id IN ( SELECT cvterm_1.cvterm_id FROM public.cvterm cvterm_1 WHERE ((cvterm_1.name)::text = ANY ('{object_ontology,attribute_ontology,method_ontology,unit_ontology,time_ontology}'::text[]))))))) JOIN public.cvterm ON ((cvprop.cv_id = cvterm.cv_id))) JOIN public.dbxref USING (dbxref_id)) JOIN public.db ON ((dbxref.db_id = db.db_id))) LEFT JOIN public.cvterm_relationship is_subject ON ((cvterm.cvterm_id = is_subject.subject_id))) LEFT JOIN public.cvterm_relationship is_object ON ((cvterm.cvterm_id = is_object.object_id))) WHERE ((is_object.object_id IS NULL) AND (is_subject.subject_id IS NOT NULL)) GROUP BY (((((cvterm.name)::text || '|'::text) || (db.name)::text) || ':'::text) || (dbxref.accession)::text), cvterm.cvterm_id ORDER BY (((((cvterm.name)::text || '|'::text) || (db.name)::text) || ':'::text) || (dbxref.accession)::text), cvterm.cvterm_id WITH NO DATA; ALTER TABLE public.trait_components OWNER TO web_usr; -- -- Name: traits; Type: MATERIALIZED VIEW; Schema: public; Owner: web_usr -- CREATE MATERIALIZED VIEW public.traits AS SELECT cvterm.cvterm_id AS trait_id, (((((cvterm.name)::text || '|'::text) || (db.name)::text) || ':'::text) || (dbxref.accession)::text) AS trait_name FROM (((((public.cv JOIN public.cvprop ON (((cv.cv_id = cvprop.cv_id) AND (cvprop.type_id IN ( SELECT cvterm_1.cvterm_id FROM public.cvterm cvterm_1 WHERE ((cvterm_1.name)::text = 'trait_ontology'::text)))))) JOIN public.cvterm ON ((cvprop.cv_id = cvterm.cv_id))) JOIN public.dbxref USING (dbxref_id)) JOIN public.db ON ((dbxref.db_id = db.db_id))) LEFT JOIN public.cvterm_relationship is_variable ON (((cvterm.cvterm_id = is_variable.subject_id) AND (is_variable.type_id = ( SELECT cvterm_1.cvterm_id FROM public.cvterm cvterm_1 WHERE ((cvterm_1.name)::text = 'VARIABLE_OF'::text)))))) WHERE (is_variable.subject_id IS NOT NULL) GROUP BY cvterm.cvterm_id, (((((cvterm.name)::text || '|'::text) || (db.name)::text) || ':'::text) || (dbxref.accession)::text) UNION SELECT cvterm.cvterm_id AS trait_id, (((((cvterm.name)::text || '|'::text) || (db.name)::text) || ':'::text) || (dbxref.accession)::text) AS trait_name FROM (((((public.cv JOIN public.cvprop ON (((cv.cv_id = cvprop.cv_id) AND (cvprop.type_id IN ( SELECT cvterm_1.cvterm_id FROM public.cvterm cvterm_1 WHERE ((cvterm_1.name)::text = 'composed_trait_ontology'::text)))))) JOIN public.cvterm ON ((cvprop.cv_id = cvterm.cv_id))) JOIN public.dbxref USING (dbxref_id)) JOIN public.db ON ((dbxref.db_id = db.db_id))) LEFT JOIN public.cvterm_relationship is_subject ON ((cvterm.cvterm_id = is_subject.subject_id))) WHERE (is_subject.subject_id IS NOT NULL) GROUP BY cvterm.cvterm_id, (((((cvterm.name)::text || '|'::text) || (db.name)::text) || ':'::text) || (dbxref.accession)::text) ORDER BY 2 WITH NO DATA; ALTER TABLE public.traits OWNER TO web_usr; -- -- Name: trait_componentsxtraits; Type: MATERIALIZED VIEW; Schema: public; Owner: web_usr -- CREATE MATERIALIZED VIEW public.trait_componentsxtraits AS SELECT traits.trait_id, trait_component.cvterm_id AS trait_component_id FROM ((public.traits JOIN public.cvterm_relationship ON (((traits.trait_id = cvterm_relationship.object_id) AND (cvterm_relationship.type_id = ( SELECT cvterm.cvterm_id FROM public.cvterm WHERE ((cvterm.name)::text = 'contains'::text)))))) JOIN public.cvterm trait_component ON ((cvterm_relationship.subject_id = trait_component.cvterm_id))) GROUP BY traits.trait_id, trait_component.cvterm_id WITH NO DATA; ALTER TABLE public.trait_componentsxtraits OWNER TO web_usr; -- -- Name: trait_componentsxtrial_designs; Type: MATERIALIZED VIEW; Schema: public; Owner: web_usr -- CREATE MATERIALIZED VIEW public.trait_componentsxtrial_designs AS SELECT trait_component.cvterm_id AS trait_component_id, trialdesign.value AS trial_design_id FROM ((((public.materialized_phenoview JOIN public.cvterm trait ON ((materialized_phenoview.trait_id = trait.cvterm_id))) JOIN public.cvterm_relationship ON (((trait.cvterm_id = cvterm_relationship.object_id) AND (cvterm_relationship.type_id = ( SELECT cvterm.cvterm_id FROM public.cvterm WHERE ((cvterm.name)::text = 'contains'::text)))))) JOIN public.cvterm trait_component ON ((cvterm_relationship.subject_id = trait_component.cvterm_id))) JOIN public.projectprop trialdesign ON (((materialized_phenoview.trial_id = trialdesign.project_id) AND (trialdesign.type_id = ( SELECT cvterm.cvterm_id FROM public.cvterm WHERE ((cvterm.name)::text = 'design'::text)))))) GROUP BY trait_component.cvterm_id, trialdesign.value WITH NO DATA; ALTER TABLE public.trait_componentsxtrial_designs OWNER TO web_usr; -- -- Name: trait_componentsxtrial_types; Type: MATERIALIZED VIEW; Schema: public; Owner: web_usr -- CREATE MATERIALIZED VIEW public.trait_componentsxtrial_types AS SELECT trait_component.cvterm_id AS trait_component_id, trialterm.cvterm_id AS trial_type_id FROM (((((public.materialized_phenoview JOIN public.cvterm trait ON ((materialized_phenoview.trait_id = trait.cvterm_id))) JOIN public.cvterm_relationship ON (((trait.cvterm_id = cvterm_relationship.object_id) AND (cvterm_relationship.type_id = ( SELECT cvterm.cvterm_id FROM public.cvterm WHERE ((cvterm.name)::text = 'contains'::text)))))) JOIN public.cvterm trait_component ON ((cvterm_relationship.subject_id = trait_component.cvterm_id))) JOIN public.projectprop trialprop ON (((materialized_phenoview.trial_id = trialprop.project_id) AND (trialprop.type_id IN ( SELECT cvterm.cvterm_id FROM (public.cvterm JOIN public.cv USING (cv_id)) WHERE ((cv.name)::text = 'project_type'::text)))))) JOIN public.cvterm trialterm ON ((trialprop.type_id = trialterm.cvterm_id))) GROUP BY trait_component.cvterm_id, trialterm.cvterm_id WITH NO DATA; ALTER TABLE public.trait_componentsxtrial_types OWNER TO web_usr; -- -- Name: trait_componentsxtrials; Type: MATERIALIZED VIEW; Schema: public; Owner: web_usr -- CREATE MATERIALIZED VIEW public.trait_componentsxtrials AS SELECT trait_component.cvterm_id AS trait_component_id, materialized_phenoview.trial_id FROM (((public.materialized_phenoview JOIN public.cvterm trait ON ((materialized_phenoview.trait_id = trait.cvterm_id))) JOIN public.cvterm_relationship ON (((trait.cvterm_id = cvterm_relationship.object_id) AND (cvterm_relationship.type_id = ( SELECT cvterm.cvterm_id FROM public.cvterm WHERE ((cvterm.name)::text = 'contains'::text)))))) JOIN public.cvterm trait_component ON ((cvterm_relationship.subject_id = trait_component.cvterm_id))) GROUP BY trait_component.cvterm_id, materialized_phenoview.trial_id WITH NO DATA; ALTER TABLE public.trait_componentsxtrials OWNER TO web_usr; -- -- Name: trait_componentsxyears; Type: MATERIALIZED VIEW; Schema: public; Owner: web_usr -- CREATE MATERIALIZED VIEW public.trait_componentsxyears AS SELECT trait_component.cvterm_id AS trait_component_id, materialized_phenoview.year_id FROM (((public.materialized_phenoview JOIN public.cvterm trait ON ((materialized_phenoview.trait_id = trait.cvterm_id))) JOIN public.cvterm_relationship ON (((trait.cvterm_id = cvterm_relationship.object_id) AND (cvterm_relationship.type_id = ( SELECT cvterm.cvterm_id FROM public.cvterm WHERE ((cvterm.name)::text = 'contains'::text)))))) JOIN public.cvterm trait_component ON ((cvterm_relationship.subject_id = trait_component.cvterm_id))) GROUP BY trait_component.cvterm_id, materialized_phenoview.year_id WITH NO DATA; ALTER TABLE public.trait_componentsxyears OWNER TO web_usr; -- -- Name: traitsxtrial_designs; Type: MATERIALIZED VIEW; Schema: public; Owner: web_usr -- CREATE MATERIALIZED VIEW public.traitsxtrial_designs AS SELECT materialized_phenoview.trait_id, trialdesign.value AS trial_design_id FROM (public.materialized_phenoview JOIN public.projectprop trialdesign ON (((materialized_phenoview.trial_id = trialdesign.project_id) AND (trialdesign.type_id = ( SELECT cvterm.cvterm_id FROM public.cvterm WHERE ((cvterm.name)::text = 'design'::text)))))) GROUP BY materialized_phenoview.trait_id, trialdesign.value WITH NO DATA; ALTER TABLE public.traitsxtrial_designs OWNER TO web_usr; -- -- Name: traitsxtrial_types; Type: MATERIALIZED VIEW; Schema: public; Owner: web_usr -- CREATE MATERIALIZED VIEW public.traitsxtrial_types AS SELECT materialized_phenoview.trait_id, trialterm.cvterm_id AS trial_type_id FROM ((public.materialized_phenoview JOIN public.projectprop trialprop ON (((materialized_phenoview.trial_id = trialprop.project_id) AND (trialprop.type_id IN ( SELECT cvterm.cvterm_id FROM (public.cvterm JOIN public.cv USING (cv_id)) WHERE ((cv.name)::text = 'project_type'::text)))))) JOIN public.cvterm trialterm ON ((trialprop.type_id = trialterm.cvterm_id))) GROUP BY materialized_phenoview.trait_id, trialterm.cvterm_id WITH NO DATA; ALTER TABLE public.traitsxtrial_types OWNER TO web_usr; -- -- Name: traitsxtrials; Type: MATERIALIZED VIEW; Schema: public; Owner: web_usr -- CREATE MATERIALIZED VIEW public.traitsxtrials AS SELECT materialized_phenoview.trait_id, materialized_phenoview.trial_id FROM public.materialized_phenoview GROUP BY materialized_phenoview.trait_id, materialized_phenoview.trial_id WITH NO DATA; ALTER TABLE public.traitsxtrials OWNER TO web_usr; -- -- Name: traitsxyears; Type: MATERIALIZED VIEW; Schema: public; Owner: web_usr -- CREATE MATERIALIZED VIEW public.traitsxyears AS SELECT materialized_phenoview.trait_id, materialized_phenoview.year_id FROM public.materialized_phenoview GROUP BY materialized_phenoview.trait_id, materialized_phenoview.year_id WITH NO DATA; ALTER TABLE public.traitsxyears OWNER TO web_usr; -- -- Name: trial_designs; Type: MATERIALIZED VIEW; Schema: public; Owner: web_usr -- CREATE MATERIALIZED VIEW public.trial_designs AS SELECT projectprop.value AS trial_design_id, projectprop.value AS trial_design_name FROM (public.projectprop JOIN public.cvterm ON ((projectprop.type_id = cvterm.cvterm_id))) WHERE ((cvterm.name)::text = 'design'::text) GROUP BY projectprop.value WITH NO DATA; ALTER TABLE public.trial_designs OWNER TO web_usr; -- -- Name: trial_designsxtrial_types; Type: MATERIALIZED VIEW; Schema: public; Owner: web_usr -- CREATE MATERIALIZED VIEW public.trial_designsxtrial_types AS SELECT trialdesign.value AS trial_design_id, trialterm.cvterm_id AS trial_type_id FROM (((public.materialized_phenoview JOIN public.projectprop trialdesign ON (((materialized_phenoview.trial_id = trialdesign.project_id) AND (trialdesign.type_id = ( SELECT cvterm.cvterm_id FROM public.cvterm WHERE ((cvterm.name)::text = 'design'::text)))))) JOIN public.projectprop trialprop ON (((materialized_phenoview.trial_id = trialprop.project_id) AND (trialprop.type_id IN ( SELECT cvterm.cvterm_id FROM (public.cvterm JOIN public.cv USING (cv_id)) WHERE ((cv.name)::text = 'project_type'::text)))))) JOIN public.cvterm trialterm ON ((trialprop.type_id = trialterm.cvterm_id))) GROUP BY trialdesign.value, trialterm.cvterm_id WITH NO DATA; ALTER TABLE public.trial_designsxtrial_types OWNER TO web_usr; -- -- Name: trial_designsxtrials; Type: MATERIALIZED VIEW; Schema: public; Owner: web_usr -- CREATE MATERIALIZED VIEW public.trial_designsxtrials AS SELECT trialdesign.value AS trial_design_id, materialized_phenoview.trial_id FROM (public.materialized_phenoview JOIN public.projectprop trialdesign ON (((materialized_phenoview.trial_id = trialdesign.project_id) AND (trialdesign.type_id = ( SELECT cvterm.cvterm_id FROM public.cvterm WHERE ((cvterm.name)::text = 'design'::text)))))) GROUP BY trialdesign.value, materialized_phenoview.trial_id WITH NO DATA; ALTER TABLE public.trial_designsxtrials OWNER TO web_usr; -- -- Name: trial_designsxyears; Type: MATERIALIZED VIEW; Schema: public; Owner: web_usr -- CREATE MATERIALIZED VIEW public.trial_designsxyears AS SELECT trialdesign.value AS trial_design_id, materialized_phenoview.year_id FROM (public.materialized_phenoview JOIN public.projectprop trialdesign ON (((materialized_phenoview.trial_id = trialdesign.project_id) AND (trialdesign.type_id = ( SELECT cvterm.cvterm_id FROM public.cvterm WHERE ((cvterm.name)::text = 'design'::text)))))) GROUP BY trialdesign.value, materialized_phenoview.year_id WITH NO DATA; ALTER TABLE public.trial_designsxyears OWNER TO web_usr; -- -- Name: trial_typesxtrials; Type: MATERIALIZED VIEW; Schema: public; Owner: web_usr -- CREATE MATERIALIZED VIEW public.trial_typesxtrials AS SELECT trialterm.cvterm_id AS trial_type_id, materialized_phenoview.trial_id FROM ((public.materialized_phenoview JOIN public.projectprop trialprop ON (((materialized_phenoview.trial_id = trialprop.project_id) AND (trialprop.type_id IN ( SELECT cvterm.cvterm_id FROM (public.cvterm JOIN public.cv USING (cv_id)) WHERE ((cv.name)::text = 'project_type'::text)))))) JOIN public.cvterm trialterm ON ((trialprop.type_id = trialterm.cvterm_id))) GROUP BY trialterm.cvterm_id, materialized_phenoview.trial_id WITH NO DATA; ALTER TABLE public.trial_typesxtrials OWNER TO web_usr; -- -- Name: trial_typesxyears; Type: MATERIALIZED VIEW; Schema: public; Owner: web_usr -- CREATE MATERIALIZED VIEW public.trial_typesxyears AS SELECT trialterm.cvterm_id AS trial_type_id, materialized_phenoview.year_id FROM ((public.materialized_phenoview JOIN public.projectprop trialprop ON (((materialized_phenoview.trial_id = trialprop.project_id) AND (trialprop.type_id IN ( SELECT cvterm.cvterm_id FROM (public.cvterm JOIN public.cv USING (cv_id)) WHERE ((cv.name)::text = 'project_type'::text)))))) JOIN public.cvterm trialterm ON ((trialprop.type_id = trialterm.cvterm_id))) GROUP BY trialterm.cvterm_id, materialized_phenoview.year_id WITH NO DATA; ALTER TABLE public.trial_typesxyears OWNER TO web_usr; -- -- Name: trials; Type: MATERIALIZED VIEW; Schema: public; Owner: web_usr -- CREATE MATERIALIZED VIEW public.trials AS SELECT trial.project_id AS trial_id, trial.name AS trial_name FROM (((public.project breeding_program JOIN public.project_relationship ON (((breeding_program.project_id = project_relationship.object_project_id) AND (project_relationship.type_id = ( SELECT cvterm.cvterm_id FROM public.cvterm WHERE ((cvterm.name)::text = 'breeding_program_trial_relationship'::text)))))) JOIN public.project trial ON ((project_relationship.subject_project_id = trial.project_id))) JOIN public.projectprop ON ((trial.project_id = projectprop.project_id))) WHERE (NOT (projectprop.type_id IN ( SELECT cvterm.cvterm_id FROM public.cvterm WHERE (((cvterm.name)::text = 'cross'::text) OR ((cvterm.name)::text = 'trial_folder'::text) OR ((cvterm.name)::text = 'folder_for_trials'::text) OR ((cvterm.name)::text = 'folder_for_crosses'::text))))) GROUP BY trial.project_id, trial.name WITH NO DATA; ALTER TABLE public.trials OWNER TO web_usr; -- -- Name: trialsxgenotyping_projects; Type: MATERIALIZED VIEW; Schema: public; Owner: web_usr -- CREATE MATERIALIZED VIEW public.trialsxgenotyping_projects AS SELECT trials.trial_id, nd_experiment_project.project_id AS genotyping_project_id FROM ((((public.trials JOIN public.materialized_phenoview ON ((trials.trial_id = materialized_phenoview.trial_id))) JOIN public.materialized_genoview ON ((materialized_phenoview.accession_id = materialized_genoview.accession_id))) JOIN public.nd_experiment_genotype ON ((materialized_genoview.genotype_id = nd_experiment_genotype.genotype_id))) JOIN public.nd_experiment_project ON ((nd_experiment_genotype.nd_experiment_id = nd_experiment_project.nd_experiment_id))) WHERE (nd_experiment_project.project_id IN ( SELECT projectprop.project_id FROM public.projectprop WHERE ((projectprop.type_id IN ( SELECT cvterm.cvterm_id FROM public.cvterm WHERE ((cvterm.name)::text = 'design'::text))) AND (projectprop.value = 'genotype_data_project'::text)))) GROUP BY trials.trial_id, nd_experiment_project.project_id WITH NO DATA; ALTER TABLE public.trialsxgenotyping_projects OWNER TO web_usr; -- -- Name: trialsxyears; Type: MATERIALIZED VIEW; Schema: public; Owner: web_usr -- CREATE MATERIALIZED VIEW public.trialsxyears AS SELECT materialized_phenoview.trial_id, materialized_phenoview.year_id FROM public.materialized_phenoview GROUP BY materialized_phenoview.trial_id, materialized_phenoview.year_id WITH NO DATA; ALTER TABLE public.trialsxyears OWNER TO web_usr; -- -- Name: unigene_dbxref; Type: TABLE; Schema: public; Owner: postgres -- CREATE TABLE public.unigene_dbxref ( unigene_dbxref_id integer NOT NULL, unigene_id bigint NOT NULL, dbxref_id bigint NOT NULL ); ALTER TABLE public.unigene_dbxref OWNER TO postgres; -- -- Name: unigene_dbxref_unigene_dbxref_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres -- CREATE SEQUENCE public.unigene_dbxref_unigene_dbxref_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE public.unigene_dbxref_unigene_dbxref_id_seq OWNER TO postgres; -- -- Name: unigene_dbxref_unigene_dbxref_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres -- ALTER SEQUENCE public.unigene_dbxref_unigene_dbxref_id_seq OWNED BY public.unigene_dbxref.unigene_dbxref_id; -- -- Name: unigene_relations; Type: TABLE; Schema: public; Owner: postgres -- CREATE TABLE public.unigene_relations ( unigene_id bigint NOT NULL, superceded_by bigint, superceding_build_nr integer, superceding_organism text ); ALTER TABLE public.unigene_relations OWNER TO postgres; -- -- Name: unigene_signalp; Type: TABLE; Schema: public; Owner: postgres -- CREATE TABLE public.unigene_signalp ( unigene_id bigint NOT NULL, nn_cmax real, nn_cpos smallint, nn_cd character(1), nn_ymax real, nn_ypos smallint, nn_yd character(1), nn_smax real, nn_spos smallint, nn_sd character(1), nn_smean real, nn_smeand character(1), nn_score real, nn_d character(1), hmm_type character(1), hmm_cmax real, hmm_cpos smallint, hmm_cd character(1), hmm_sprob real, hmm_d character(1), cds_id bigint ); ALTER TABLE public.unigene_signalp OWNER TO postgres; -- -- Name: years; Type: MATERIALIZED VIEW; Schema: public; Owner: web_usr -- CREATE MATERIALIZED VIEW public.years AS SELECT projectprop.value AS year_id, projectprop.value AS year_name FROM public.projectprop WHERE (projectprop.type_id = ( SELECT cvterm.cvterm_id FROM public.cvterm WHERE ((cvterm.name)::text = 'project year'::text))) GROUP BY projectprop.value WITH NO DATA; ALTER TABLE public.years OWNER TO web_usr; -- -- Name: accession; Type: TABLE; Schema: sgn; Owner: postgres -- CREATE TABLE sgn.accession ( accession_id integer NOT NULL, organism_id bigint, common_name character varying(80), accession_name_id bigint, chado_organism_id integer, stock_id integer ); ALTER TABLE sgn.accession OWNER TO postgres; -- -- Name: accession_accession_id_seq; Type: SEQUENCE; Schema: sgn; Owner: postgres -- CREATE SEQUENCE sgn.accession_accession_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE sgn.accession_accession_id_seq OWNER TO postgres; -- -- Name: accession_accession_id_seq; Type: SEQUENCE OWNED BY; Schema: sgn; Owner: postgres -- ALTER SEQUENCE sgn.accession_accession_id_seq OWNED BY sgn.accession.accession_id; -- -- Name: accession_names; Type: TABLE; Schema: sgn; Owner: postgres -- CREATE TABLE sgn.accession_names ( accession_name_id bigint NOT NULL, accession_name character varying(255), accession_id bigint ); ALTER TABLE sgn.accession_names OWNER TO postgres; -- -- Name: accession_names_accession_name_id_seq; Type: SEQUENCE; Schema: sgn; Owner: postgres -- CREATE SEQUENCE sgn.accession_names_accession_name_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE sgn.accession_names_accession_name_id_seq OWNER TO postgres; -- -- Name: accession_names_accession_name_id_seq; Type: SEQUENCE OWNED BY; Schema: sgn; Owner: postgres -- ALTER SEQUENCE sgn.accession_names_accession_name_id_seq OWNED BY sgn.accession_names.accession_name_id; -- -- Name: annotation_target_type; Type: TABLE; Schema: sgn; Owner: postgres -- CREATE TABLE sgn.annotation_target_type ( annotation_target_type_id bigint NOT NULL, type_name character varying(25), type_description character varying(250), table_name character varying(250), index_field_name character varying(250) ); ALTER TABLE sgn.annotation_target_type OWNER TO postgres; -- -- Name: annotation_target_type_annotation_target_type_id_seq; Type: SEQUENCE; Schema: sgn; Owner: postgres -- CREATE SEQUENCE sgn.annotation_target_type_annotation_target_type_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE sgn.annotation_target_type_annotation_target_type_id_seq OWNER TO postgres; -- -- Name: annotation_target_type_annotation_target_type_id_seq; Type: SEQUENCE OWNED BY; Schema: sgn; Owner: postgres -- ALTER SEQUENCE sgn.annotation_target_type_annotation_target_type_id_seq OWNED BY sgn.annotation_target_type.annotation_target_type_id; -- -- Name: authors; Type: TABLE; Schema: sgn; Owner: postgres -- CREATE TABLE sgn.authors ( author_id integer NOT NULL, name text, institution text ); ALTER TABLE sgn.authors OWNER TO postgres; -- -- Name: authors_author_id_seq; Type: SEQUENCE; Schema: sgn; Owner: postgres -- CREATE SEQUENCE sgn.authors_author_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE sgn.authors_author_id_seq OWNER TO postgres; -- -- Name: authors_author_id_seq; Type: SEQUENCE OWNED BY; Schema: sgn; Owner: postgres -- ALTER SEQUENCE sgn.authors_author_id_seq OWNED BY sgn.authors.author_id; -- -- Name: blast_annotations; Type: TABLE; Schema: sgn; Owner: postgres -- CREATE TABLE sgn.blast_annotations ( blast_annotation_id integer NOT NULL, apply_id integer, apply_type integer, blast_target_id integer, n_hits integer, hits_stored integer, last_updated integer, host character varying(20), pid integer ); ALTER TABLE sgn.blast_annotations OWNER TO postgres; -- -- Name: blast_annotations_blast_annotation_id_seq; Type: SEQUENCE; Schema: sgn; Owner: postgres -- CREATE SEQUENCE sgn.blast_annotations_blast_annotation_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE sgn.blast_annotations_blast_annotation_id_seq OWNER TO postgres; -- -- Name: blast_annotations_blast_annotation_id_seq; Type: SEQUENCE OWNED BY; Schema: sgn; Owner: postgres -- ALTER SEQUENCE sgn.blast_annotations_blast_annotation_id_seq OWNED BY sgn.blast_annotations.blast_annotation_id; -- -- Name: blast_db; Type: TABLE; Schema: sgn; Owner: postgres -- CREATE TABLE sgn.blast_db ( blast_db_id integer NOT NULL, file_base character varying(120) NOT NULL, title character varying(80) NOT NULL, type character varying(80) NOT NULL, source_url character varying(255), lookup_url character varying(255), update_freq character varying(80) DEFAULT 'monthly'::character varying NOT NULL, info_url character varying(255), index_seqs boolean DEFAULT true NOT NULL, blast_db_group_id integer, web_interface_visible boolean DEFAULT false, description text, jbrowse_src character varying(80), CONSTRAINT blast_db_file_base_check CHECK (((file_base)::text !~~ '/%'::text)), CONSTRAINT blast_db_info_url_check CHECK (((info_url IS NULL) OR ((info_url)::text ~ similar_escape('(ftp|http|https)://%'::text, NULL::text)))), CONSTRAINT blast_db_lookup_url_check CHECK (((lookup_url IS NULL) OR ((lookup_url)::text ~ similar_escape('(ftp|http|https)://%%s%'::text, NULL::text)))), CONSTRAINT blast_db_source_url_check CHECK (((source_url IS NULL) OR ((source_url)::text ~ similar_escape('(ftp|http|https|cxgn-resource|file)://%'::text, NULL::text)))), CONSTRAINT blast_db_type_check CHECK ((((type)::text = 'protein'::text) OR ((type)::text = 'nucleotide'::text))), CONSTRAINT blast_db_update_freq_check CHECK ((((update_freq)::text = 'daily'::text) OR ((update_freq)::text = 'weekly'::text) OR ((update_freq)::text = 'monthly'::text) OR ((update_freq)::text = 'manual'::text))) ); ALTER TABLE sgn.blast_db OWNER TO postgres; -- -- Name: TABLE blast_db; Type: COMMENT; Schema: sgn; Owner: postgres -- COMMENT ON TABLE sgn.blast_db IS 'This table holds metadata about the BLAST databases that we keep in stock.'; -- -- Name: COLUMN blast_db.file_base; Type: COMMENT; Schema: sgn; Owner: postgres -- COMMENT ON COLUMN sgn.blast_db.file_base IS 'the basename of the blast db files, relative to the root of the databases repository. A blast DB is usually composed of 3 files, all with a given basename, and with the extensions .[pn]in, .[pn]sq, and .[pn]hr.'; -- -- Name: COLUMN blast_db.index_seqs; Type: COMMENT; Schema: sgn; Owner: postgres -- COMMENT ON COLUMN sgn.blast_db.index_seqs IS 'corresponds to formatdb -o option. Set true if formatdb should be given a ''-o T''. This is used only if you later want to fetch specific sequences out of this blast db.'; -- -- Name: COLUMN blast_db.blast_db_group_id; Type: COMMENT; Schema: sgn; Owner: postgres -- COMMENT ON COLUMN sgn.blast_db.blast_db_group_id IS 'blast_db_group this belongs to, for displaying on web'; -- -- Name: COLUMN blast_db.web_interface_visible; Type: COMMENT; Schema: sgn; Owner: postgres -- COMMENT ON COLUMN sgn.blast_db.web_interface_visible IS 'whether this blast DB is available for BLASTing via web interfaces'; -- -- Name: blast_db_blast_db_group; Type: TABLE; Schema: sgn; Owner: postgres -- CREATE TABLE sgn.blast_db_blast_db_group ( blast_db_blast_db_group_id integer NOT NULL, blast_db_id bigint, blast_db_group_id bigint ); ALTER TABLE sgn.blast_db_blast_db_group OWNER TO postgres; -- -- Name: blast_db_blast_db_group_blast_db_blast_db_group_id_seq; Type: SEQUENCE; Schema: sgn; Owner: postgres -- CREATE SEQUENCE sgn.blast_db_blast_db_group_blast_db_blast_db_group_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE sgn.blast_db_blast_db_group_blast_db_blast_db_group_id_seq OWNER TO postgres; -- -- Name: blast_db_blast_db_group_blast_db_blast_db_group_id_seq; Type: SEQUENCE OWNED BY; Schema: sgn; Owner: postgres -- ALTER SEQUENCE sgn.blast_db_blast_db_group_blast_db_blast_db_group_id_seq OWNED BY sgn.blast_db_blast_db_group.blast_db_blast_db_group_id; -- -- Name: blast_db_blast_db_id_seq; Type: SEQUENCE; Schema: sgn; Owner: postgres -- CREATE SEQUENCE sgn.blast_db_blast_db_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE sgn.blast_db_blast_db_id_seq OWNER TO postgres; -- -- Name: blast_db_blast_db_id_seq; Type: SEQUENCE OWNED BY; Schema: sgn; Owner: postgres -- ALTER SEQUENCE sgn.blast_db_blast_db_id_seq OWNED BY sgn.blast_db.blast_db_id; -- -- Name: blast_db_group; Type: TABLE; Schema: sgn; Owner: postgres -- CREATE TABLE sgn.blast_db_group ( blast_db_group_id integer NOT NULL, name character varying(50), ordinal integer ); ALTER TABLE sgn.blast_db_group OWNER TO postgres; -- -- Name: blast_db_group_blast_db_group_id_seq; Type: SEQUENCE; Schema: sgn; Owner: postgres -- CREATE SEQUENCE sgn.blast_db_group_blast_db_group_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE sgn.blast_db_group_blast_db_group_id_seq OWNER TO postgres; -- -- Name: blast_db_group_blast_db_group_id_seq; Type: SEQUENCE OWNED BY; Schema: sgn; Owner: postgres -- ALTER SEQUENCE sgn.blast_db_group_blast_db_group_id_seq OWNED BY sgn.blast_db_group.blast_db_group_id; -- -- Name: blast_db_organism; Type: TABLE; Schema: sgn; Owner: postgres -- CREATE TABLE sgn.blast_db_organism ( blast_db_organism_id integer NOT NULL, blast_db_id bigint, organism_id bigint ); ALTER TABLE sgn.blast_db_organism OWNER TO postgres; -- -- Name: blast_db_organism_blast_db_organism_id_seq; Type: SEQUENCE; Schema: sgn; Owner: postgres -- CREATE SEQUENCE sgn.blast_db_organism_blast_db_organism_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE sgn.blast_db_organism_blast_db_organism_id_seq OWNER TO postgres; -- -- Name: blast_db_organism_blast_db_organism_id_seq; Type: SEQUENCE OWNED BY; Schema: sgn; Owner: postgres -- ALTER SEQUENCE sgn.blast_db_organism_blast_db_organism_id_seq OWNED BY sgn.blast_db_organism.blast_db_organism_id; -- -- Name: blast_defline; Type: TABLE; Schema: sgn; Owner: postgres -- CREATE TABLE sgn.blast_defline ( defline_id integer NOT NULL, blast_target_id integer, target_db_id character varying(255), defline text, defline_fulltext tsvector, identifier_defline_fulltext tsvector ); ALTER TABLE sgn.blast_defline OWNER TO postgres; -- -- Name: blast_defline_defline_id_seq; Type: SEQUENCE; Schema: sgn; Owner: postgres -- CREATE SEQUENCE sgn.blast_defline_defline_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE sgn.blast_defline_defline_id_seq OWNER TO postgres; -- -- Name: blast_defline_defline_id_seq; Type: SEQUENCE OWNED BY; Schema: sgn; Owner: postgres -- ALTER SEQUENCE sgn.blast_defline_defline_id_seq OWNED BY sgn.blast_defline.defline_id; -- -- Name: blast_hits; Type: TABLE; Schema: sgn; Owner: postgres -- CREATE TABLE sgn.blast_hits ( blast_hit_id integer NOT NULL, blast_annotation_id integer, target_db_id character varying(255), evalue double precision, score double precision, identity_percentage double precision, apply_start bigint, apply_end bigint, defline_id integer ); ALTER TABLE sgn.blast_hits OWNER TO postgres; -- -- Name: blast_hits_blast_hit_id_seq; Type: SEQUENCE; Schema: sgn; Owner: postgres -- CREATE SEQUENCE sgn.blast_hits_blast_hit_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE sgn.blast_hits_blast_hit_id_seq OWNER TO postgres; -- -- Name: blast_hits_blast_hit_id_seq; Type: SEQUENCE OWNED BY; Schema: sgn; Owner: postgres -- ALTER SEQUENCE sgn.blast_hits_blast_hit_id_seq OWNED BY sgn.blast_hits.blast_hit_id; -- -- Name: blast_targets; Type: TABLE; Schema: sgn; Owner: postgres -- CREATE TABLE sgn.blast_targets ( blast_target_id integer NOT NULL, blast_program character varying(7), db_name character varying(80), db_path character varying(255), local_copy_timestamp integer ); ALTER TABLE sgn.blast_targets OWNER TO postgres; -- -- Name: blast_targets_blast_target_id_seq; Type: SEQUENCE; Schema: sgn; Owner: postgres -- CREATE SEQUENCE sgn.blast_targets_blast_target_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE sgn.blast_targets_blast_target_id_seq OWNER TO postgres; -- -- Name: blast_targets_blast_target_id_seq; Type: SEQUENCE OWNED BY; Schema: sgn; Owner: postgres -- ALTER SEQUENCE sgn.blast_targets_blast_target_id_seq OWNED BY sgn.blast_targets.blast_target_id; -- -- Name: cds; Type: TABLE; Schema: sgn; Owner: postgres -- CREATE TABLE sgn.cds ( cds_id bigint NOT NULL, unigene_id bigint, seq_text text, seq_edits text, protein_seq text, begin integer, "end" integer, forward_reverse character(1), run_id bigint, score integer, method character varying(20), frame character varying(2), preferred boolean, cds_seq text, protein_feature_id bigint ); ALTER TABLE sgn.cds OWNER TO postgres; -- -- Name: cds_cds_id_seq; Type: SEQUENCE; Schema: sgn; Owner: postgres -- CREATE SEQUENCE sgn.cds_cds_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE sgn.cds_cds_id_seq OWNER TO postgres; -- -- Name: cds_cds_id_seq; Type: SEQUENCE OWNED BY; Schema: sgn; Owner: postgres -- ALTER SEQUENCE sgn.cds_cds_id_seq OWNED BY sgn.cds.cds_id; -- -- Name: chadoprop; Type: TABLE; Schema: sgn; Owner: postgres -- CREATE TABLE sgn.chadoprop ( chadoprop_id integer NOT NULL, type_id integer NOT NULL, value text, rank integer DEFAULT 0 NOT NULL ); ALTER TABLE sgn.chadoprop OWNER TO postgres; -- -- Name: TABLE chadoprop; Type: COMMENT; Schema: sgn; Owner: postgres -- COMMENT ON TABLE sgn.chadoprop IS 'This table is different from other prop tables in the database, as it is for storing information about the database itself, like schema version'; -- -- Name: COLUMN chadoprop.type_id; Type: COMMENT; Schema: sgn; Owner: postgres -- COMMENT ON COLUMN sgn.chadoprop.type_id IS 'The name of the property or slot is a cvterm. The meaning of the property is defined in that cvterm.'; -- -- Name: COLUMN chadoprop.value; Type: COMMENT; Schema: sgn; Owner: postgres -- COMMENT ON COLUMN sgn.chadoprop.value IS 'The value of the property, represented as text. Numeric values are converted to their text representation.'; -- -- Name: COLUMN chadoprop.rank; Type: COMMENT; Schema: sgn; Owner: postgres -- COMMENT ON COLUMN sgn.chadoprop.rank IS 'Property-Value ordering. Any cv can have multiple values for any particular property type - these are ordered in a list using rank, counting from zero. For properties that are single-valued rather than multi-valued, the default 0 value should be used.'; -- -- Name: chadoprop_chadoprop_id_seq; Type: SEQUENCE; Schema: sgn; Owner: postgres -- CREATE SEQUENCE sgn.chadoprop_chadoprop_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE sgn.chadoprop_chadoprop_id_seq OWNER TO postgres; -- -- Name: chadoprop_chadoprop_id_seq; Type: SEQUENCE OWNED BY; Schema: sgn; Owner: postgres -- ALTER SEQUENCE sgn.chadoprop_chadoprop_id_seq OWNED BY sgn.chadoprop.chadoprop_id; -- -- Name: clone; Type: TABLE; Schema: sgn; Owner: postgres -- CREATE TABLE sgn.clone ( clone_id integer NOT NULL, library_id integer, clone_name character varying(50), clone_group_id integer ); ALTER TABLE sgn.clone OWNER TO postgres; -- -- Name: clone_clone_id_seq; Type: SEQUENCE; Schema: sgn; Owner: postgres -- CREATE SEQUENCE sgn.clone_clone_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE sgn.clone_clone_id_seq OWNER TO postgres; -- -- Name: clone_clone_id_seq; Type: SEQUENCE OWNED BY; Schema: sgn; Owner: postgres -- ALTER SEQUENCE sgn.clone_clone_id_seq OWNED BY sgn.clone.clone_id; -- -- Name: cloning_vector; Type: TABLE; Schema: sgn; Owner: postgres -- CREATE TABLE sgn.cloning_vector ( cloning_vector_id integer NOT NULL, name character varying(32), seq text ); ALTER TABLE sgn.cloning_vector OWNER TO postgres; -- -- Name: cloning_vector_cloning_vector_id_seq; Type: SEQUENCE; Schema: sgn; Owner: postgres -- CREATE SEQUENCE sgn.cloning_vector_cloning_vector_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE sgn.cloning_vector_cloning_vector_id_seq OWNER TO postgres; -- -- Name: cloning_vector_cloning_vector_id_seq; Type: SEQUENCE OWNED BY; Schema: sgn; Owner: postgres -- ALTER SEQUENCE sgn.cloning_vector_cloning_vector_id_seq OWNED BY sgn.cloning_vector.cloning_vector_id; -- -- Name: common_name; Type: TABLE; Schema: sgn; Owner: postgres -- CREATE TABLE sgn.common_name ( common_name_id bigint NOT NULL, common_name character varying(255) NOT NULL ); ALTER TABLE sgn.common_name OWNER TO postgres; -- -- Name: common_name_common_name_id_seq; Type: SEQUENCE; Schema: sgn; Owner: postgres -- CREATE SEQUENCE sgn.common_name_common_name_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE sgn.common_name_common_name_id_seq OWNER TO postgres; -- -- Name: common_name_common_name_id_seq; Type: SEQUENCE OWNED BY; Schema: sgn; Owner: postgres -- ALTER SEQUENCE sgn.common_name_common_name_id_seq OWNED BY sgn.common_name.common_name_id; -- -- Name: common_nameprop; Type: TABLE; Schema: sgn; Owner: postgres -- CREATE TABLE sgn.common_nameprop ( common_nameprop_id integer NOT NULL, common_name_id integer NOT NULL, type_id integer NOT NULL, value character varying(32) NOT NULL, rank integer DEFAULT 0 NOT NULL ); ALTER TABLE sgn.common_nameprop OWNER TO postgres; -- -- Name: common_nameprop_common_nameprop_id_seq; Type: SEQUENCE; Schema: sgn; Owner: postgres -- CREATE SEQUENCE sgn.common_nameprop_common_nameprop_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE sgn.common_nameprop_common_nameprop_id_seq OWNER TO postgres; -- -- Name: common_nameprop_common_nameprop_id_seq; Type: SEQUENCE OWNED BY; Schema: sgn; Owner: postgres -- ALTER SEQUENCE sgn.common_nameprop_common_nameprop_id_seq OWNED BY sgn.common_nameprop.common_nameprop_id; -- -- Name: composed_trait_ids; Type: SEQUENCE; Schema: sgn; Owner: web_usr -- CREATE SEQUENCE sgn.composed_trait_ids START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE sgn.composed_trait_ids OWNER TO web_usr; -- -- Name: cos_markers; Type: TABLE; Schema: sgn; Owner: postgres -- CREATE TABLE sgn.cos_markers ( cos_marker_id integer NOT NULL, marker_id bigint DEFAULT (0)::bigint NOT NULL, est_read_id bigint DEFAULT (0)::bigint NOT NULL, cos_id character varying(10) DEFAULT ''::character varying NOT NULL, at_match character varying(25), bac_id bigint, at_position numeric(11,7), best_gb_prot_hit character varying(25), at_evalue character varying(25), at_identities numeric(11,3), mips_cat character varying(11), description text, comment text, tomato_copy_number character varying(11), gbprot_evalue character varying(25), gbprot_identities numeric(11,3) ); ALTER TABLE sgn.cos_markers OWNER TO postgres; -- -- Name: cos_markers_cos_marker_id_seq; Type: SEQUENCE; Schema: sgn; Owner: postgres -- CREATE SEQUENCE sgn.cos_markers_cos_marker_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE sgn.cos_markers_cos_marker_id_seq OWNER TO postgres; -- -- Name: cos_markers_cos_marker_id_seq; Type: SEQUENCE OWNED BY; Schema: sgn; Owner: postgres -- ALTER SEQUENCE sgn.cos_markers_cos_marker_id_seq OWNED BY sgn.cos_markers.cos_marker_id; -- -- Name: cosii_ortholog; Type: TABLE; Schema: sgn; Owner: postgres -- CREATE TABLE sgn.cosii_ortholog ( cosii_unigene_id bigint NOT NULL, marker_id bigint, unigene_id integer, copies character varying(1), database_name character varying(11), sequence_name character varying(255), edited_sequence_id bigint, peptide_sequence_id bigint, introns text, CONSTRAINT cosii_ortholog_copies_check CHECK ((((copies)::text = 'S'::text) OR ((copies)::text = 'M'::text))), CONSTRAINT cosii_ortholog_database_name_check CHECK ((((database_name)::text = 'SGN'::text) OR ((database_name)::text = 'Arabidopsis'::text) OR ((database_name)::text = 'Coffee'::text))) ); ALTER TABLE sgn.cosii_ortholog OWNER TO postgres; -- -- Name: cosii_ortholog_cosii_unigene_id_seq; Type: SEQUENCE; Schema: sgn; Owner: postgres -- CREATE SEQUENCE sgn.cosii_ortholog_cosii_unigene_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE sgn.cosii_ortholog_cosii_unigene_id_seq OWNER TO postgres; -- -- Name: cosii_ortholog_cosii_unigene_id_seq; Type: SEQUENCE OWNED BY; Schema: sgn; Owner: postgres -- ALTER SEQUENCE sgn.cosii_ortholog_cosii_unigene_id_seq OWNED BY sgn.cosii_ortholog.cosii_unigene_id; -- -- Name: deprecated_linkage_groups; Type: TABLE; Schema: sgn; Owner: postgres -- CREATE TABLE sgn.deprecated_linkage_groups ( lg_id bigint NOT NULL, map_id bigint, lg_order bigint, lg_name character varying(255) ); ALTER TABLE sgn.deprecated_linkage_groups OWNER TO postgres; -- -- Name: deprecated_linkage_groups_lg_id_seq; Type: SEQUENCE; Schema: sgn; Owner: postgres -- CREATE SEQUENCE sgn.deprecated_linkage_groups_lg_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE sgn.deprecated_linkage_groups_lg_id_seq OWNER TO postgres; -- -- Name: deprecated_linkage_groups_lg_id_seq; Type: SEQUENCE OWNED BY; Schema: sgn; Owner: postgres -- ALTER SEQUENCE sgn.deprecated_linkage_groups_lg_id_seq OWNED BY sgn.deprecated_linkage_groups.lg_id; -- -- Name: deprecated_map_cross; Type: TABLE; Schema: sgn; Owner: postgres -- CREATE TABLE sgn.deprecated_map_cross ( map_cross_id integer NOT NULL, map_id bigint DEFAULT (0)::bigint NOT NULL, organism_id bigint DEFAULT (0)::bigint NOT NULL ); ALTER TABLE sgn.deprecated_map_cross OWNER TO postgres; -- -- Name: deprecated_map_cross_map_cross_id_seq; Type: SEQUENCE; Schema: sgn; Owner: postgres -- CREATE SEQUENCE sgn.deprecated_map_cross_map_cross_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE sgn.deprecated_map_cross_map_cross_id_seq OWNER TO postgres; -- -- Name: deprecated_map_cross_map_cross_id_seq; Type: SEQUENCE OWNED BY; Schema: sgn; Owner: postgres -- ALTER SEQUENCE sgn.deprecated_map_cross_map_cross_id_seq OWNED BY sgn.deprecated_map_cross.map_cross_id; -- -- Name: deprecated_mapdata; Type: TABLE; Schema: sgn; Owner: postgres -- CREATE TABLE sgn.deprecated_mapdata ( loc_id integer NOT NULL, map_id bigint DEFAULT (0)::bigint NOT NULL, lg_id bigint, "offset" numeric(8,5), loc_type bigint DEFAULT (0)::bigint NOT NULL, loc_order bigint DEFAULT (0)::bigint NOT NULL ); ALTER TABLE sgn.deprecated_mapdata OWNER TO postgres; -- -- Name: deprecated_mapdata_loc_id_seq; Type: SEQUENCE; Schema: sgn; Owner: postgres -- CREATE SEQUENCE sgn.deprecated_mapdata_loc_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE sgn.deprecated_mapdata_loc_id_seq OWNER TO postgres; -- -- Name: deprecated_mapdata_loc_id_seq; Type: SEQUENCE OWNED BY; Schema: sgn; Owner: postgres -- ALTER SEQUENCE sgn.deprecated_mapdata_loc_id_seq OWNED BY sgn.deprecated_mapdata.loc_id; -- -- Name: deprecated_maps; Type: TABLE; Schema: sgn; Owner: postgres -- CREATE TABLE sgn.deprecated_maps ( map_id integer NOT NULL, legacy_id bigint DEFAULT (0)::bigint NOT NULL, short_name character varying(50) DEFAULT ''::character varying NOT NULL, long_name character varying(250) DEFAULT ''::character varying NOT NULL, number_chromosomes bigint DEFAULT (0)::bigint NOT NULL, default_threshold bigint DEFAULT (0)::bigint NOT NULL, header text NOT NULL, abstract text NOT NULL, genetic_cross character varying(250), population_type character varying(250), population_size bigint, seed_available bigint, seed_url character varying(250), deprecated_by bigint DEFAULT (0)::bigint, map_type character varying(7), CONSTRAINT maps_map_type_check CHECK ((((map_type)::text = 'genetic'::text) OR ((map_type)::text = 'fish'::text))) ); ALTER TABLE sgn.deprecated_maps OWNER TO postgres; -- -- Name: deprecated_maps_map_id_seq; Type: SEQUENCE; Schema: sgn; Owner: postgres -- CREATE SEQUENCE sgn.deprecated_maps_map_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE sgn.deprecated_maps_map_id_seq OWNER TO postgres; -- -- Name: deprecated_maps_map_id_seq; Type: SEQUENCE OWNED BY; Schema: sgn; Owner: postgres -- ALTER SEQUENCE sgn.deprecated_maps_map_id_seq OWNED BY sgn.deprecated_maps.map_id; -- -- Name: deprecated_marker_confidences; Type: TABLE; Schema: sgn; Owner: postgres -- CREATE TABLE sgn.deprecated_marker_confidences ( confidence_id integer NOT NULL, confidence_name character varying(16), legacy_conf_id bigint, CONSTRAINT legacy_conf_id_not_null CHECK ((legacy_conf_id IS NOT NULL)) ); ALTER TABLE sgn.deprecated_marker_confidences OWNER TO postgres; -- -- Name: deprecated_marker_confidences_confidence_id_seq; Type: SEQUENCE; Schema: sgn; Owner: postgres -- CREATE SEQUENCE sgn.deprecated_marker_confidences_confidence_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE sgn.deprecated_marker_confidences_confidence_id_seq OWNER TO postgres; -- -- Name: deprecated_marker_confidences_confidence_id_seq; Type: SEQUENCE OWNED BY; Schema: sgn; Owner: postgres -- ALTER SEQUENCE sgn.deprecated_marker_confidences_confidence_id_seq OWNED BY sgn.deprecated_marker_confidences.confidence_id; -- -- Name: deprecated_marker_locations; Type: TABLE; Schema: sgn; Owner: postgres -- CREATE TABLE sgn.deprecated_marker_locations ( marker_location_id integer NOT NULL, marker_id bigint DEFAULT (0)::bigint NOT NULL, loc_id bigint DEFAULT (0)::bigint NOT NULL, confidence bigint DEFAULT (0)::bigint NOT NULL, order_in_loc bigint DEFAULT (0)::bigint NOT NULL, location_subscript character(2), mapmaker_id bigint DEFAULT (0)::bigint NOT NULL ); ALTER TABLE sgn.deprecated_marker_locations OWNER TO postgres; -- -- Name: deprecated_marker_locations_marker_location_id_seq; Type: SEQUENCE; Schema: sgn; Owner: postgres -- CREATE SEQUENCE sgn.deprecated_marker_locations_marker_location_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE sgn.deprecated_marker_locations_marker_location_id_seq OWNER TO postgres; -- -- Name: deprecated_marker_locations_marker_location_id_seq; Type: SEQUENCE OWNED BY; Schema: sgn; Owner: postgres -- ALTER SEQUENCE sgn.deprecated_marker_locations_marker_location_id_seq OWNED BY sgn.deprecated_marker_locations.marker_location_id; -- -- Name: deprecated_marker_types; Type: TABLE; Schema: sgn; Owner: postgres -- CREATE TABLE sgn.deprecated_marker_types ( marker_type_id integer NOT NULL, type_name character varying(32), description text, marker_table character varying(128) ); ALTER TABLE sgn.deprecated_marker_types OWNER TO postgres; -- -- Name: deprecated_marker_types_marker_type_id_seq; Type: SEQUENCE; Schema: sgn; Owner: postgres -- CREATE SEQUENCE sgn.deprecated_marker_types_marker_type_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE sgn.deprecated_marker_types_marker_type_id_seq OWNER TO postgres; -- -- Name: deprecated_marker_types_marker_type_id_seq; Type: SEQUENCE OWNED BY; Schema: sgn; Owner: postgres -- ALTER SEQUENCE sgn.deprecated_marker_types_marker_type_id_seq OWNED BY sgn.deprecated_marker_types.marker_type_id; -- -- Name: deprecated_markers; Type: TABLE; Schema: sgn; Owner: postgres -- CREATE TABLE sgn.deprecated_markers ( marker_id integer NOT NULL, marker_type bigint DEFAULT (0)::bigint NOT NULL, marker_name character varying(32) DEFAULT ''::character varying NOT NULL ); ALTER TABLE sgn.deprecated_markers OWNER TO postgres; -- -- Name: deprecated_markers_marker_id_seq; Type: SEQUENCE; Schema: sgn; Owner: postgres -- CREATE SEQUENCE sgn.deprecated_markers_marker_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE sgn.deprecated_markers_marker_id_seq OWNER TO postgres; -- -- Name: deprecated_markers_marker_id_seq; Type: SEQUENCE OWNED BY; Schema: sgn; Owner: postgres -- ALTER SEQUENCE sgn.deprecated_markers_marker_id_seq OWNED BY sgn.deprecated_markers.marker_id; -- -- Name: derived_from_source; Type: TABLE; Schema: sgn; Owner: postgres -- CREATE TABLE sgn.derived_from_source ( derived_from_source_id integer NOT NULL, source_name text, source_schema text, source_table text, source_col text ); ALTER TABLE sgn.derived_from_source OWNER TO postgres; -- -- Name: derived_from_source_derived_from_source_id_seq; Type: SEQUENCE; Schema: sgn; Owner: postgres -- CREATE SEQUENCE sgn.derived_from_source_derived_from_source_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE sgn.derived_from_source_derived_from_source_id_seq OWNER TO postgres; -- -- Name: derived_from_source_derived_from_source_id_seq; Type: SEQUENCE OWNED BY; Schema: sgn; Owner: postgres -- ALTER SEQUENCE sgn.derived_from_source_derived_from_source_id_seq OWNED BY sgn.derived_from_source.derived_from_source_id; -- -- Name: domain; Type: TABLE; Schema: sgn; Owner: postgres -- CREATE TABLE sgn.domain ( domain_id bigint NOT NULL, method_id bigint, domain_accession character varying(20), description text, interpro_id bigint, description_fulltext tsvector, dbxref_id bigint, metadata_id bigint ); ALTER TABLE sgn.domain OWNER TO postgres; -- -- Name: domain_domain_id_seq; Type: SEQUENCE; Schema: sgn; Owner: postgres -- CREATE SEQUENCE sgn.domain_domain_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE sgn.domain_domain_id_seq OWNER TO postgres; -- -- Name: domain_domain_id_seq; Type: SEQUENCE OWNED BY; Schema: sgn; Owner: postgres -- ALTER SEQUENCE sgn.domain_domain_id_seq OWNED BY sgn.domain.domain_id; -- -- Name: domain_match; Type: TABLE; Schema: sgn; Owner: postgres -- CREATE TABLE sgn.domain_match ( domain_match_id bigint NOT NULL, cds_id bigint, unigene_id bigint, domain_id bigint, match_begin integer, match_end integer, e_value character varying(10), hit_status character(1), run_id bigint, metadata_id bigint ); ALTER TABLE sgn.domain_match OWNER TO postgres; -- -- Name: domain_match_domain_match_id_seq; Type: SEQUENCE; Schema: sgn; Owner: postgres -- CREATE SEQUENCE sgn.domain_match_domain_match_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE sgn.domain_match_domain_match_id_seq OWNER TO postgres; -- -- Name: domain_match_domain_match_id_seq; Type: SEQUENCE OWNED BY; Schema: sgn; Owner: postgres -- ALTER SEQUENCE sgn.domain_match_domain_match_id_seq OWNED BY sgn.domain_match.domain_match_id; -- -- Name: enzyme_restriction_sites; Type: TABLE; Schema: sgn; Owner: postgres -- CREATE TABLE sgn.enzyme_restriction_sites ( enzyme_id integer, restriction_site text, enzyme_restriction_sites_id integer NOT NULL ); ALTER TABLE sgn.enzyme_restriction_sites OWNER TO postgres; -- -- Name: enzyme_restriction_sites_enzyme_restriction_sites_id_seq; Type: SEQUENCE; Schema: sgn; Owner: postgres -- CREATE SEQUENCE sgn.enzyme_restriction_sites_enzyme_restriction_sites_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE sgn.enzyme_restriction_sites_enzyme_restriction_sites_id_seq OWNER TO postgres; -- -- Name: enzyme_restriction_sites_enzyme_restriction_sites_id_seq; Type: SEQUENCE OWNED BY; Schema: sgn; Owner: postgres -- ALTER SEQUENCE sgn.enzyme_restriction_sites_enzyme_restriction_sites_id_seq OWNED BY sgn.enzyme_restriction_sites.enzyme_restriction_sites_id; -- -- Name: enzymes; Type: TABLE; Schema: sgn; Owner: postgres -- CREATE TABLE sgn.enzymes ( enzyme_id integer NOT NULL, enzyme_name character varying(32) ); ALTER TABLE sgn.enzymes OWNER TO postgres; -- -- Name: enzymes_enzyme_id_seq; Type: SEQUENCE; Schema: sgn; Owner: postgres -- CREATE SEQUENCE sgn.enzymes_enzyme_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE sgn.enzymes_enzyme_id_seq OWNER TO postgres; -- -- Name: enzymes_enzyme_id_seq; Type: SEQUENCE OWNED BY; Schema: sgn; Owner: postgres -- ALTER SEQUENCE sgn.enzymes_enzyme_id_seq OWNED BY sgn.enzymes.enzyme_id; -- -- Name: est; Type: TABLE; Schema: sgn; Owner: postgres -- CREATE TABLE sgn.est ( est_id integer NOT NULL, read_id integer, version integer, basecaller character varying(40), seq text, qscore text, call_positions text, status integer, flags bigint, date date, genbank_submission_date date, genbank_confirmed boolean ); ALTER TABLE sgn.est OWNER TO postgres; -- -- Name: est_dbxref; Type: TABLE; Schema: sgn; Owner: postgres -- CREATE TABLE sgn.est_dbxref ( est_dbxref_id integer NOT NULL, est_id integer NOT NULL, dbxref_id integer NOT NULL ); ALTER TABLE sgn.est_dbxref OWNER TO postgres; -- -- Name: est_dbxref_est_dbxref_id_seq; Type: SEQUENCE; Schema: sgn; Owner: postgres -- CREATE SEQUENCE sgn.est_dbxref_est_dbxref_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE sgn.est_dbxref_est_dbxref_id_seq OWNER TO postgres; -- -- Name: est_dbxref_est_dbxref_id_seq; Type: SEQUENCE OWNED BY; Schema: sgn; Owner: postgres -- ALTER SEQUENCE sgn.est_dbxref_est_dbxref_id_seq OWNED BY sgn.est_dbxref.est_dbxref_id; -- -- Name: est_est_id_seq; Type: SEQUENCE; Schema: sgn; Owner: postgres -- CREATE SEQUENCE sgn.est_est_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE sgn.est_est_id_seq OWNER TO postgres; -- -- Name: est_est_id_seq; Type: SEQUENCE OWNED BY; Schema: sgn; Owner: postgres -- ALTER SEQUENCE sgn.est_est_id_seq OWNED BY sgn.est.est_id; -- -- Name: ests_mapped_by_clone; Type: TABLE; Schema: sgn; Owner: postgres -- CREATE TABLE sgn.ests_mapped_by_clone ( embc_id integer NOT NULL, marker_id bigint, clone_id bigint ); ALTER TABLE sgn.ests_mapped_by_clone OWNER TO postgres; -- -- Name: ests_mapped_by_clone_embc_id_seq; Type: SEQUENCE; Schema: sgn; Owner: postgres -- CREATE SEQUENCE sgn.ests_mapped_by_clone_embc_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE sgn.ests_mapped_by_clone_embc_id_seq OWNER TO postgres; -- -- Name: ests_mapped_by_clone_embc_id_seq; Type: SEQUENCE OWNED BY; Schema: sgn; Owner: postgres -- ALTER SEQUENCE sgn.ests_mapped_by_clone_embc_id_seq OWNED BY sgn.ests_mapped_by_clone.embc_id; -- -- Name: experiment_type; Type: TABLE; Schema: sgn; Owner: postgres -- CREATE TABLE sgn.experiment_type ( experiment_type_id bigint NOT NULL, name character varying(255), description text ); ALTER TABLE sgn.experiment_type OWNER TO postgres; -- -- Name: experiment_type_experiment_type_id_seq; Type: SEQUENCE; Schema: sgn; Owner: postgres -- CREATE SEQUENCE sgn.experiment_type_experiment_type_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE sgn.experiment_type_experiment_type_id_seq OWNER TO postgres; -- -- Name: experiment_type_experiment_type_id_seq; Type: SEQUENCE OWNED BY; Schema: sgn; Owner: postgres -- ALTER SEQUENCE sgn.experiment_type_experiment_type_id_seq OWNED BY sgn.experiment_type.experiment_type_id; -- -- Name: facility; Type: TABLE; Schema: sgn; Owner: postgres -- CREATE TABLE sgn.facility ( facility_id integer NOT NULL, submit_user_id integer, facility_moniker character varying(20), facility_shortname character varying(12), facility_name character varying(80), facility_contact character varying(80), facility_address text, funding_agency character varying(80), funding_comment text, sequencing_primers character varying(80), machine character varying(40), chemistry character varying(40), attribution_display text, sp_person_id integer ); ALTER TABLE sgn.facility OWNER TO postgres; -- -- Name: facility_facility_id_seq; Type: SEQUENCE; Schema: sgn; Owner: postgres -- CREATE SEQUENCE sgn.facility_facility_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE sgn.facility_facility_id_seq OWNER TO postgres; -- -- Name: facility_facility_id_seq; Type: SEQUENCE OWNED BY; Schema: sgn; Owner: postgres -- ALTER SEQUENCE sgn.facility_facility_id_seq OWNED BY sgn.facility.facility_id; -- -- Name: family_build_family_build_id_seq; Type: SEQUENCE; Schema: sgn; Owner: postgres -- CREATE SEQUENCE sgn.family_build_family_build_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE sgn.family_build_family_build_id_seq OWNER TO postgres; -- -- Name: family_build_family_build_id_seq; Type: SEQUENCE OWNED BY; Schema: sgn; Owner: postgres -- ALTER SEQUENCE sgn.family_build_family_build_id_seq OWNED BY sgn.family_build.family_build_id; -- -- Name: family_family_id_seq; Type: SEQUENCE; Schema: sgn; Owner: postgres -- CREATE SEQUENCE sgn.family_family_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE sgn.family_family_id_seq OWNER TO postgres; -- -- Name: family_family_id_seq; Type: SEQUENCE OWNED BY; Schema: sgn; Owner: postgres -- ALTER SEQUENCE sgn.family_family_id_seq OWNED BY sgn.family.family_id; -- -- Name: family_member_family_member_id_seq; Type: SEQUENCE; Schema: sgn; Owner: postgres -- CREATE SEQUENCE sgn.family_member_family_member_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE sgn.family_member_family_member_id_seq OWNER TO postgres; -- -- Name: family_member_family_member_id_seq; Type: SEQUENCE OWNED BY; Schema: sgn; Owner: postgres -- ALTER SEQUENCE sgn.family_member_family_member_id_seq OWNED BY sgn.family_member.family_member_id; -- -- Name: family_tree; Type: TABLE; Schema: sgn; Owner: postgres -- CREATE TABLE sgn.family_tree ( family_tree_id integer NOT NULL, family_id integer NOT NULL, tree_nr integer, newick_cds character varying, newick_unigene character varying ); ALTER TABLE sgn.family_tree OWNER TO postgres; -- -- Name: family_tree_family_tree_id_seq; Type: SEQUENCE; Schema: sgn; Owner: postgres -- CREATE SEQUENCE sgn.family_tree_family_tree_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE sgn.family_tree_family_tree_id_seq OWNER TO postgres; -- -- Name: family_tree_family_tree_id_seq; Type: SEQUENCE OWNED BY; Schema: sgn; Owner: postgres -- ALTER SEQUENCE sgn.family_tree_family_tree_id_seq OWNED BY sgn.family_tree.family_tree_id; -- -- Name: fish_chromatin_density_constants; Type: TABLE; Schema: sgn; Owner: postgres -- CREATE TABLE sgn.fish_chromatin_density_constants ( arm character varying(1) DEFAULT 'E'::character varying NOT NULL, density real, CONSTRAINT fish_chromatin_density_constants_arm_check CHECK ((((arm)::text = 'E'::text) OR ((arm)::text = 'H'::text))) ); ALTER TABLE sgn.fish_chromatin_density_constants OWNER TO postgres; -- -- Name: fish_experimenter; Type: TABLE; Schema: sgn; Owner: postgres -- CREATE TABLE sgn.fish_experimenter ( fish_experimenter_id integer NOT NULL, fish_experimenter_name character varying(20) ); ALTER TABLE sgn.fish_experimenter OWNER TO postgres; -- -- Name: fish_experimenter_fish_experimenter_id_seq; Type: SEQUENCE; Schema: sgn; Owner: postgres -- CREATE SEQUENCE sgn.fish_experimenter_fish_experimenter_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE sgn.fish_experimenter_fish_experimenter_id_seq OWNER TO postgres; -- -- Name: fish_experimenter_fish_experimenter_id_seq; Type: SEQUENCE OWNED BY; Schema: sgn; Owner: postgres -- ALTER SEQUENCE sgn.fish_experimenter_fish_experimenter_id_seq OWNED BY sgn.fish_experimenter.fish_experimenter_id; -- -- Name: fish_file; Type: TABLE; Schema: sgn; Owner: postgres -- CREATE TABLE sgn.fish_file ( fish_file_id bigint NOT NULL, filename character varying(255), fish_result_id bigint DEFAULT (0)::bigint NOT NULL ); ALTER TABLE sgn.fish_file OWNER TO postgres; -- -- Name: fish_file_fish_file_id_seq; Type: SEQUENCE; Schema: sgn; Owner: postgres -- CREATE SEQUENCE sgn.fish_file_fish_file_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE sgn.fish_file_fish_file_id_seq OWNER TO postgres; -- -- Name: fish_file_fish_file_id_seq; Type: SEQUENCE OWNED BY; Schema: sgn; Owner: postgres -- ALTER SEQUENCE sgn.fish_file_fish_file_id_seq OWNED BY sgn.fish_file.fish_file_id; -- -- Name: fish_image; Type: TABLE; Schema: sgn; Owner: postgres -- CREATE TABLE sgn.fish_image ( fish_image_id integer DEFAULT 0 NOT NULL, filename character varying(255), fish_result_id integer DEFAULT 0 NOT NULL ); ALTER TABLE sgn.fish_image OWNER TO postgres; -- -- Name: fish_karyotype_constants; Type: TABLE; Schema: sgn; Owner: postgres -- CREATE TABLE sgn.fish_karyotype_constants ( fish_experimenter_id integer NOT NULL, chromo_num smallint NOT NULL, chromo_arm text NOT NULL, arm_length numeric(5,2) NOT NULL, arm_eu_length numeric(5,2) NOT NULL, arm_het_length numeric(5,2) NOT NULL, CONSTRAINT chromo_arm_enum CHECK (((chromo_arm = 'P'::text) OR (chromo_arm = 'Q'::text))) ); ALTER TABLE sgn.fish_karyotype_constants OWNER TO postgres; -- -- Name: fish_karyotype_constants_old; Type: TABLE; Schema: sgn; Owner: postgres -- CREATE TABLE sgn.fish_karyotype_constants_old ( chromo_num smallint DEFAULT (0)::smallint NOT NULL, chromo_length real, chromo_arm_ratio real, short_arm_length real, short_arm_eu_length real, short_arm_het_length real, long_arm_length real, long_arm_eu_length real, long_arm_het_length real ); ALTER TABLE sgn.fish_karyotype_constants_old OWNER TO postgres; -- -- Name: fish_result; Type: TABLE; Schema: sgn; Owner: postgres -- CREATE TABLE sgn.fish_result ( fish_result_id bigint NOT NULL, map_id bigint NOT NULL, fish_experimenter_id integer NOT NULL, experiment_name character varying(10) NOT NULL, clone_id bigint NOT NULL, chromo_num smallint NOT NULL, chromo_arm character varying(1) NOT NULL, percent_from_centromere real NOT NULL, experiment_group character varying(12), attribution_id bigint, CONSTRAINT fish_result_chromo_arm_check CHECK ((((chromo_arm)::text = 'P'::text) OR ((chromo_arm)::text = 'Q'::text))) ); ALTER TABLE sgn.fish_result OWNER TO postgres; -- -- Name: fish_result_composite; Type: TABLE; Schema: sgn; Owner: postgres -- CREATE TABLE sgn.fish_result_composite ( fish_result_id bigint DEFAULT (0)::bigint NOT NULL, map_id bigint DEFAULT (0)::bigint NOT NULL, fish_experimenter_id integer, experiment_name character varying(10), clone_id bigint DEFAULT (0)::bigint NOT NULL, chromo_num smallint DEFAULT (0)::smallint NOT NULL, chromo_arm character varying(1) DEFAULT 'P'::character varying NOT NULL, percent_from_centromere real DEFAULT (0)::real NOT NULL, het_or_eu character varying(1), um_from_centromere real, um_from_arm_end real, um_from_arm_border real, mbp_from_arm_end real, mbp_from_centromere real, mbp_from_arm_border real, experiment_group character varying(12), CONSTRAINT fish_result_composite_chromo_arm_check CHECK ((((chromo_arm)::text = 'P'::text) OR ((chromo_arm)::text = 'Q'::text))), CONSTRAINT fish_result_composite_het_or_eu_check CHECK ((((het_or_eu)::text = 'H'::text) OR ((het_or_eu)::text = 'E'::text))) ); ALTER TABLE sgn.fish_result_composite OWNER TO postgres; -- -- Name: fish_result_fish_result_id_seq; Type: SEQUENCE; Schema: sgn; Owner: postgres -- CREATE SEQUENCE sgn.fish_result_fish_result_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE sgn.fish_result_fish_result_id_seq OWNER TO postgres; -- -- Name: fish_result_fish_result_id_seq; Type: SEQUENCE OWNED BY; Schema: sgn; Owner: postgres -- ALTER SEQUENCE sgn.fish_result_fish_result_id_seq OWNED BY sgn.fish_result.fish_result_id; -- -- Name: fish_result_image; Type: TABLE; Schema: sgn; Owner: postgres -- CREATE TABLE sgn.fish_result_image ( fish_result_image_id integer NOT NULL, image_id bigint, fish_result_id bigint ); ALTER TABLE sgn.fish_result_image OWNER TO postgres; -- -- Name: fish_result_image_fish_result_image_id_seq; Type: SEQUENCE; Schema: sgn; Owner: postgres -- CREATE SEQUENCE sgn.fish_result_image_fish_result_image_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE sgn.fish_result_image_fish_result_image_id_seq OWNER TO postgres; -- -- Name: fish_result_image_fish_result_image_id_seq; Type: SEQUENCE OWNED BY; Schema: sgn; Owner: postgres -- ALTER SEQUENCE sgn.fish_result_image_fish_result_image_id_seq OWNED BY sgn.fish_result_image.fish_result_image_id; -- -- Name: go; Type: TABLE; Schema: sgn; Owner: postgres -- CREATE TABLE sgn.go ( go_id bigint NOT NULL, go_accession character varying(20), description text, description_fulltext tsvector ); ALTER TABLE sgn.go OWNER TO postgres; -- -- Name: go_go_id_seq; Type: SEQUENCE; Schema: sgn; Owner: postgres -- CREATE SEQUENCE sgn.go_go_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE sgn.go_go_id_seq OWNER TO postgres; -- -- Name: go_go_id_seq; Type: SEQUENCE OWNED BY; Schema: sgn; Owner: postgres -- ALTER SEQUENCE sgn.go_go_id_seq OWNED BY sgn.go.go_id; -- -- Name: group_linkage; Type: TABLE; Schema: sgn; Owner: postgres -- CREATE TABLE sgn.group_linkage ( group_linkage_id integer NOT NULL, group_id integer, member_id integer, member_type bigint, member_value bytea ); ALTER TABLE sgn.group_linkage OWNER TO postgres; -- -- Name: group_linkage_group_linkage_id_seq; Type: SEQUENCE; Schema: sgn; Owner: postgres -- CREATE SEQUENCE sgn.group_linkage_group_linkage_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE sgn.group_linkage_group_linkage_id_seq OWNER TO postgres; -- -- Name: group_linkage_group_linkage_id_seq; Type: SEQUENCE OWNED BY; Schema: sgn; Owner: postgres -- ALTER SEQUENCE sgn.group_linkage_group_linkage_id_seq OWNED BY sgn.group_linkage.group_linkage_id; -- -- Name: groups; Type: TABLE; Schema: sgn; Owner: postgres -- CREATE TABLE sgn.groups ( group_id integer NOT NULL, type integer, comment text ); ALTER TABLE sgn.groups OWNER TO postgres; -- -- Name: groups_group_id_seq; Type: SEQUENCE; Schema: sgn; Owner: postgres -- CREATE SEQUENCE sgn.groups_group_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE sgn.groups_group_id_seq OWNER TO postgres; -- -- Name: groups_group_id_seq; Type: SEQUENCE OWNED BY; Schema: sgn; Owner: postgres -- ALTER SEQUENCE sgn.groups_group_id_seq OWNED BY sgn.groups.group_id; -- -- Name: id_linkage; Type: TABLE; Schema: sgn; Owner: postgres -- CREATE TABLE sgn.id_linkage ( id_linkage_id integer NOT NULL, link_id character varying(80), link_id_type integer, internal_id integer, internal_id_type integer ); ALTER TABLE sgn.id_linkage OWNER TO postgres; -- -- Name: id_linkage_id_linkage_id_seq; Type: SEQUENCE; Schema: sgn; Owner: postgres -- CREATE SEQUENCE sgn.id_linkage_id_linkage_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE sgn.id_linkage_id_linkage_id_seq OWNER TO postgres; -- -- Name: id_linkage_id_linkage_id_seq; Type: SEQUENCE OWNED BY; Schema: sgn; Owner: postgres -- ALTER SEQUENCE sgn.id_linkage_id_linkage_id_seq OWNED BY sgn.id_linkage.id_linkage_id; -- -- Name: il_info; Type: TABLE; Schema: sgn; Owner: postgres -- CREATE TABLE sgn.il_info ( ns_marker_id integer, sn_marker_id integer, map_id integer, map_version_id integer, population_id bigint, ns_position numeric(8,5), sn_position numeric(8,5), name character varying(100), ns_alias text, sn_alias text, lg_name text ); ALTER TABLE sgn.il_info OWNER TO postgres; -- -- Name: interpro; Type: TABLE; Schema: sgn; Owner: postgres -- CREATE TABLE sgn.interpro ( interpro_id bigint NOT NULL, interpro_accession character varying(20), description text, description_fulltext tsvector ); ALTER TABLE sgn.interpro OWNER TO postgres; -- -- Name: interpro_go; Type: TABLE; Schema: sgn; Owner: postgres -- CREATE TABLE sgn.interpro_go ( interpro_go_id bigint NOT NULL, interpro_accession character varying(20), go_accession character varying(20) ); ALTER TABLE sgn.interpro_go OWNER TO postgres; -- -- Name: interpro_go_interpro_go_id_seq; Type: SEQUENCE; Schema: sgn; Owner: postgres -- CREATE SEQUENCE sgn.interpro_go_interpro_go_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE sgn.interpro_go_interpro_go_id_seq OWNER TO postgres; -- -- Name: interpro_go_interpro_go_id_seq; Type: SEQUENCE OWNED BY; Schema: sgn; Owner: postgres -- ALTER SEQUENCE sgn.interpro_go_interpro_go_id_seq OWNED BY sgn.interpro_go.interpro_go_id; -- -- Name: interpro_interpro_id_seq; Type: SEQUENCE; Schema: sgn; Owner: postgres -- CREATE SEQUENCE sgn.interpro_interpro_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE sgn.interpro_interpro_id_seq OWNER TO postgres; -- -- Name: interpro_interpro_id_seq; Type: SEQUENCE OWNED BY; Schema: sgn; Owner: postgres -- ALTER SEQUENCE sgn.interpro_interpro_id_seq OWNED BY sgn.interpro.interpro_id; -- -- Name: library; Type: TABLE; Schema: sgn; Owner: postgres -- CREATE TABLE sgn.library ( library_id integer NOT NULL, type bigint, submit_user_id integer, library_name character varying(80), library_shortname character varying(16), authors character varying(255), organism_id integer, cultivar character varying(255), accession character varying(255), tissue character varying(255), development_stage character varying(255), treatment_conditions text, cloning_host character varying(80), vector character varying(80), rs1 character varying(12), rs2 character varying(12), cloning_kit character varying(255), comments text, contact_information text, order_routing_id bigint, sp_person_id integer, forward_adapter character varying, reverse_adapter character varying, obsolete boolean, modified_date timestamp with time zone, create_date timestamp with time zone, chado_organism_id integer ); ALTER TABLE sgn.library OWNER TO postgres; -- -- Name: library_library_id_seq; Type: SEQUENCE; Schema: sgn; Owner: postgres -- CREATE SEQUENCE sgn.library_library_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE sgn.library_library_id_seq OWNER TO postgres; -- -- Name: library_library_id_seq; Type: SEQUENCE OWNED BY; Schema: sgn; Owner: postgres -- ALTER SEQUENCE sgn.library_library_id_seq OWNED BY sgn.library.library_id; -- -- Name: linkage_group; Type: TABLE; Schema: sgn; Owner: postgres -- CREATE TABLE sgn.linkage_group ( lg_id integer NOT NULL, map_version_id integer, lg_order integer NOT NULL, lg_name text, north_location_id integer, south_location_id integer ); ALTER TABLE sgn.linkage_group OWNER TO postgres; -- -- Name: linkage_group_lg_id_seq; Type: SEQUENCE; Schema: sgn; Owner: postgres -- CREATE SEQUENCE sgn.linkage_group_lg_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE sgn.linkage_group_lg_id_seq OWNER TO postgres; -- -- Name: linkage_group_lg_id_seq; Type: SEQUENCE OWNED BY; Schema: sgn; Owner: postgres -- ALTER SEQUENCE sgn.linkage_group_lg_id_seq OWNED BY sgn.linkage_group.lg_id; -- -- Name: loc_types; Type: TABLE; Schema: sgn; Owner: postgres -- CREATE TABLE sgn.loc_types ( loc_type_id integer NOT NULL, type_code character varying(10) DEFAULT ''::character varying NOT NULL, type_name character varying(12) DEFAULT ''::character varying NOT NULL ); ALTER TABLE sgn.loc_types OWNER TO postgres; -- -- Name: loc_types_loc_type_id_seq; Type: SEQUENCE; Schema: sgn; Owner: postgres -- CREATE SEQUENCE sgn.loc_types_loc_type_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE sgn.loc_types_loc_type_id_seq OWNER TO postgres; -- -- Name: loc_types_loc_type_id_seq; Type: SEQUENCE OWNED BY; Schema: sgn; Owner: postgres -- ALTER SEQUENCE sgn.loc_types_loc_type_id_seq OWNED BY sgn.loc_types.loc_type_id; -- -- Name: manual_annotations; Type: TABLE; Schema: sgn; Owner: postgres -- CREATE TABLE sgn.manual_annotations ( manual_annotations_id bigint NOT NULL, annotation_target_id bigint, annotation_target_type_id bigint, annotation_text text, author_id bigint, date_entered date, last_modified date, annotation_text_fulltext tsvector ); ALTER TABLE sgn.manual_annotations OWNER TO postgres; -- -- Name: manual_annotations_manual_annotations_id_seq; Type: SEQUENCE; Schema: sgn; Owner: postgres -- CREATE SEQUENCE sgn.manual_annotations_manual_annotations_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE sgn.manual_annotations_manual_annotations_id_seq OWNER TO postgres; -- -- Name: manual_annotations_manual_annotations_id_seq; Type: SEQUENCE OWNED BY; Schema: sgn; Owner: postgres -- ALTER SEQUENCE sgn.manual_annotations_manual_annotations_id_seq OWNED BY sgn.manual_annotations.manual_annotations_id; -- -- Name: manual_censor_reasons; Type: TABLE; Schema: sgn; Owner: postgres -- CREATE TABLE sgn.manual_censor_reasons ( censor_id integer NOT NULL, reason text ); ALTER TABLE sgn.manual_censor_reasons OWNER TO postgres; -- -- Name: manual_censor_reasons_censor_id_seq; Type: SEQUENCE; Schema: sgn; Owner: postgres -- CREATE SEQUENCE sgn.manual_censor_reasons_censor_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE sgn.manual_censor_reasons_censor_id_seq OWNER TO postgres; -- -- Name: manual_censor_reasons_censor_id_seq; Type: SEQUENCE OWNED BY; Schema: sgn; Owner: postgres -- ALTER SEQUENCE sgn.manual_censor_reasons_censor_id_seq OWNED BY sgn.manual_censor_reasons.censor_id; -- -- Name: map; Type: TABLE; Schema: sgn; Owner: postgres -- CREATE TABLE sgn.map ( map_id integer NOT NULL, short_name text NOT NULL, long_name text, abstract text, map_type text, parent_1 integer, parent_2 integer, units text DEFAULT 'cM'::text, ancestor integer, population_id integer, parent1_stock_id bigint, parent2_stock_id bigint, population_stock_id bigint, CONSTRAINT map_map_type_check CHECK (((map_type = 'genetic'::text) OR (map_type = 'fish'::text) OR (map_type = 'sequence'::text) OR (map_type = 'QTL'::text))), CONSTRAINT map_units_check CHECK (((units = 'cM'::text) OR (units = 'Mb'::text))) ); ALTER TABLE sgn.map OWNER TO postgres; -- -- Name: map_map_id_seq; Type: SEQUENCE; Schema: sgn; Owner: postgres -- CREATE SEQUENCE sgn.map_map_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE sgn.map_map_id_seq OWNER TO postgres; -- -- Name: map_map_id_seq; Type: SEQUENCE OWNED BY; Schema: sgn; Owner: postgres -- ALTER SEQUENCE sgn.map_map_id_seq OWNED BY sgn.map.map_id; -- -- Name: map_version; Type: TABLE; Schema: sgn; Owner: postgres -- CREATE TABLE sgn.map_version ( map_version_id integer NOT NULL, map_id integer, date_loaded date, current_version boolean, default_threshold integer, has_il boolean, has_physical boolean, metadata_id integer ); ALTER TABLE sgn.map_version OWNER TO postgres; -- -- Name: map_version_map_version_id_seq; Type: SEQUENCE; Schema: sgn; Owner: postgres -- CREATE SEQUENCE sgn.map_version_map_version_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE sgn.map_version_map_version_id_seq OWNER TO postgres; -- -- Name: map_version_map_version_id_seq; Type: SEQUENCE OWNED BY; Schema: sgn; Owner: postgres -- ALTER SEQUENCE sgn.map_version_map_version_id_seq OWNED BY sgn.map_version.map_version_id; -- -- Name: marker; Type: TABLE; Schema: sgn; Owner: postgres -- CREATE TABLE sgn.marker ( marker_id integer NOT NULL, dummy_field boolean ); ALTER TABLE sgn.marker OWNER TO postgres; -- -- Name: marker_alias; Type: TABLE; Schema: sgn; Owner: postgres -- CREATE TABLE sgn.marker_alias ( alias_id integer NOT NULL, alias text NOT NULL, marker_id integer NOT NULL, preferred boolean DEFAULT true ); ALTER TABLE sgn.marker_alias OWNER TO postgres; -- -- Name: marker_alias_alias_id_seq; Type: SEQUENCE; Schema: sgn; Owner: postgres -- CREATE SEQUENCE sgn.marker_alias_alias_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE sgn.marker_alias_alias_id_seq OWNER TO postgres; -- -- Name: marker_alias_alias_id_seq; Type: SEQUENCE OWNED BY; Schema: sgn; Owner: postgres -- ALTER SEQUENCE sgn.marker_alias_alias_id_seq OWNED BY sgn.marker_alias.alias_id; -- -- Name: marker_collectible; Type: TABLE; Schema: sgn; Owner: postgres -- CREATE TABLE sgn.marker_collectible ( marker_collectible_dummy_id integer NOT NULL, marker_id integer NOT NULL, mc_id integer NOT NULL ); ALTER TABLE sgn.marker_collectible OWNER TO postgres; -- -- Name: marker_collectible_marker_collectible_dummy_id_seq; Type: SEQUENCE; Schema: sgn; Owner: postgres -- CREATE SEQUENCE sgn.marker_collectible_marker_collectible_dummy_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE sgn.marker_collectible_marker_collectible_dummy_id_seq OWNER TO postgres; -- -- Name: marker_collectible_marker_collectible_dummy_id_seq; Type: SEQUENCE OWNED BY; Schema: sgn; Owner: postgres -- ALTER SEQUENCE sgn.marker_collectible_marker_collectible_dummy_id_seq OWNED BY sgn.marker_collectible.marker_collectible_dummy_id; -- -- Name: marker_collection; Type: TABLE; Schema: sgn; Owner: postgres -- CREATE TABLE sgn.marker_collection ( mc_id integer NOT NULL, mc_name text NOT NULL, mc_description text ); ALTER TABLE sgn.marker_collection OWNER TO postgres; -- -- Name: marker_collection_mc_id_seq; Type: SEQUENCE; Schema: sgn; Owner: postgres -- CREATE SEQUENCE sgn.marker_collection_mc_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE sgn.marker_collection_mc_id_seq OWNER TO postgres; -- -- Name: marker_collection_mc_id_seq; Type: SEQUENCE OWNED BY; Schema: sgn; Owner: postgres -- ALTER SEQUENCE sgn.marker_collection_mc_id_seq OWNED BY sgn.marker_collection.mc_id; -- -- Name: marker_confidence; Type: TABLE; Schema: sgn; Owner: postgres -- CREATE TABLE sgn.marker_confidence ( confidence_id integer NOT NULL, confidence_name text ); ALTER TABLE sgn.marker_confidence OWNER TO postgres; -- -- Name: marker_confidence_confidence_id_seq; Type: SEQUENCE; Schema: sgn; Owner: postgres -- CREATE SEQUENCE sgn.marker_confidence_confidence_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE sgn.marker_confidence_confidence_id_seq OWNER TO postgres; -- -- Name: marker_confidence_confidence_id_seq; Type: SEQUENCE OWNED BY; Schema: sgn; Owner: postgres -- ALTER SEQUENCE sgn.marker_confidence_confidence_id_seq OWNED BY sgn.marker_confidence.confidence_id; -- -- Name: marker_derived_from; Type: TABLE; Schema: sgn; Owner: postgres -- CREATE TABLE sgn.marker_derived_from ( marker_derived_dummy_id integer NOT NULL, marker_id integer, derived_from_source_id integer, id_in_source integer ); ALTER TABLE sgn.marker_derived_from OWNER TO postgres; -- -- Name: marker_derived_from_marker_derived_dummy_id_seq; Type: SEQUENCE; Schema: sgn; Owner: postgres -- CREATE SEQUENCE sgn.marker_derived_from_marker_derived_dummy_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE sgn.marker_derived_from_marker_derived_dummy_id_seq OWNER TO postgres; -- -- Name: marker_derived_from_marker_derived_dummy_id_seq; Type: SEQUENCE OWNED BY; Schema: sgn; Owner: postgres -- ALTER SEQUENCE sgn.marker_derived_from_marker_derived_dummy_id_seq OWNED BY sgn.marker_derived_from.marker_derived_dummy_id; -- -- Name: marker_experiment; Type: TABLE; Schema: sgn; Owner: postgres -- CREATE TABLE sgn.marker_experiment ( marker_experiment_id integer NOT NULL, marker_id integer, pcr_experiment_id integer, rflp_experiment_id integer, location_id integer, protocol text NOT NULL, CONSTRAINT marker_experiment_check CHECK (((rflp_experiment_id IS NOT NULL) OR (pcr_experiment_id IS NOT NULL) OR (location_id IS NOT NULL))), CONSTRAINT marker_experiment_check1 CHECK ((((pcr_experiment_id IS NOT NULL) AND (rflp_experiment_id IS NULL)) OR ((pcr_experiment_id IS NULL) AND (rflp_experiment_id IS NOT NULL)) OR ((pcr_experiment_id IS NULL) AND (rflp_experiment_id IS NULL) AND (location_id IS NOT NULL)))), CONSTRAINT marker_experiment_protocol_check CHECK (((protocol = 'AFLP'::text) OR (protocol = 'CAPS'::text) OR (protocol = 'RAPD'::text) OR (protocol = 'SNP'::text) OR (protocol = 'SSR'::text) OR (protocol = 'RFLP'::text) OR (protocol = 'PCR'::text) OR (protocol = 'dCAPS'::text) OR (protocol = 'DART'::text) OR (protocol = 'OPA'::text) OR (protocol = 'unknown'::text) OR (protocol = 'ASPE'::text) OR (protocol = 'INDEL'::text) OR (protocol = 'QTL'::text))), CONSTRAINT marker_experiment_rflp_protocol_consistency CHECK ((((protocol = 'RFLP'::text) AND (pcr_experiment_id IS NULL)) OR ((protocol <> 'RFLP'::text) AND (rflp_experiment_id IS NULL)))) ); ALTER TABLE sgn.marker_experiment OWNER TO postgres; -- -- Name: marker_experiment_marker_experiment_id_seq; Type: SEQUENCE; Schema: sgn; Owner: postgres -- CREATE SEQUENCE sgn.marker_experiment_marker_experiment_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE sgn.marker_experiment_marker_experiment_id_seq OWNER TO postgres; -- -- Name: marker_experiment_marker_experiment_id_seq; Type: SEQUENCE OWNED BY; Schema: sgn; Owner: postgres -- ALTER SEQUENCE sgn.marker_experiment_marker_experiment_id_seq OWNED BY sgn.marker_experiment.marker_experiment_id; -- -- Name: marker_location; Type: TABLE; Schema: sgn; Owner: postgres -- CREATE TABLE sgn.marker_location ( location_id integer NOT NULL, lg_id integer NOT NULL, map_version_id integer NOT NULL, "position" numeric(9,6) NOT NULL, confidence_id integer NOT NULL, subscript character(1), position_north numeric(8,5), position_south numeric(8,5), CONSTRAINT marker_location_subscript_check CHECK (((subscript = 'A'::bpchar) OR (subscript = 'B'::bpchar) OR (subscript = 'C'::bpchar) OR (subscript IS NULL))) ); ALTER TABLE sgn.marker_location OWNER TO postgres; -- -- Name: marker_location_location_id_seq; Type: SEQUENCE; Schema: sgn; Owner: postgres -- CREATE SEQUENCE sgn.marker_location_location_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE sgn.marker_location_location_id_seq OWNER TO postgres; -- -- Name: marker_location_location_id_seq; Type: SEQUENCE OWNED BY; Schema: sgn; Owner: postgres -- ALTER SEQUENCE sgn.marker_location_location_id_seq OWNED BY sgn.marker_location.location_id; -- -- Name: marker_marker_id_seq; Type: SEQUENCE; Schema: sgn; Owner: postgres -- CREATE SEQUENCE sgn.marker_marker_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE sgn.marker_marker_id_seq OWNER TO postgres; -- -- Name: marker_marker_id_seq; Type: SEQUENCE OWNED BY; Schema: sgn; Owner: postgres -- ALTER SEQUENCE sgn.marker_marker_id_seq OWNED BY sgn.marker.marker_id; -- -- Name: marker_to_map; Type: VIEW; Schema: sgn; Owner: postgres -- CREATE VIEW sgn.marker_to_map AS SELECT m.marker_id, me.protocol, ml.location_id, linkage_group.lg_name, linkage_group.lg_order, ml."position", ml.confidence_id, ml.subscript, ml.map_version_id, map.map_id, map.parent_1, map.parent_2, map_version.current_version FROM (((((sgn.marker m LEFT JOIN sgn.marker_experiment me USING (marker_id)) LEFT JOIN sgn.marker_location ml USING (location_id)) LEFT JOIN sgn.map_version USING (map_version_id)) LEFT JOIN sgn.map USING (map_id)) LEFT JOIN sgn.linkage_group USING (lg_id)) WHERE (map_version.current_version = true); ALTER TABLE sgn.marker_to_map OWNER TO postgres; -- -- Name: metadata; Type: TABLE; Schema: sgn; Owner: postgres -- CREATE TABLE sgn.metadata ( metadata_id bigint NOT NULL, create_date timestamp with time zone DEFAULT now(), create_person_id integer NOT NULL, modified_date timestamp with time zone, modified_person_id integer, previous_metadata_id integer, obsolete integer DEFAULT 0, obsolete_note character varying(250) ); ALTER TABLE sgn.metadata OWNER TO postgres; -- -- Name: metadata_metadata_id_seq; Type: SEQUENCE; Schema: sgn; Owner: postgres -- CREATE SEQUENCE sgn.metadata_metadata_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE sgn.metadata_metadata_id_seq OWNER TO postgres; -- -- Name: metadata_metadata_id_seq; Type: SEQUENCE OWNED BY; Schema: sgn; Owner: postgres -- ALTER SEQUENCE sgn.metadata_metadata_id_seq OWNED BY sgn.metadata.metadata_id; -- -- Name: microarray; Type: TABLE; Schema: sgn; Owner: postgres -- CREATE TABLE sgn.microarray ( microarray_id integer NOT NULL, chip_name character varying(80), release bigint, version bigint, spot_id character varying(20), content_specific_tag character varying(40), clone_id integer ); ALTER TABLE sgn.microarray OWNER TO postgres; -- -- Name: microarray_microarray_id_seq; Type: SEQUENCE; Schema: sgn; Owner: postgres -- CREATE SEQUENCE sgn.microarray_microarray_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE sgn.microarray_microarray_id_seq OWNER TO postgres; -- -- Name: microarray_microarray_id_seq; Type: SEQUENCE OWNED BY; Schema: sgn; Owner: postgres -- ALTER SEQUENCE sgn.microarray_microarray_id_seq OWNED BY sgn.microarray.microarray_id; -- -- Name: misc; Type: TABLE; Schema: sgn; Owner: postgres -- CREATE TABLE sgn.misc ( misc_unique_id integer NOT NULL, misc_id integer, name text, value bytea ); ALTER TABLE sgn.misc OWNER TO postgres; -- -- Name: misc_misc_unique_id_seq; Type: SEQUENCE; Schema: sgn; Owner: postgres -- CREATE SEQUENCE sgn.misc_misc_unique_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE sgn.misc_misc_unique_id_seq OWNER TO postgres; -- -- Name: misc_misc_unique_id_seq; Type: SEQUENCE OWNED BY; Schema: sgn; Owner: postgres -- ALTER SEQUENCE sgn.misc_misc_unique_id_seq OWNED BY sgn.misc.misc_unique_id; -- -- Name: organism; Type: TABLE; Schema: sgn; Owner: postgres -- CREATE TABLE sgn.organism ( organism_id integer NOT NULL, organism_name character varying(80), common_name_id bigint NOT NULL, organism_descrip text, specie_tax character varying(80), genus_tax integer, subfamily_tax integer, family_tax integer, order_tax integer, chr_n_gnmc integer, polypl_gnmc character varying(50), genom_size_gnmc character varying(50), genom_proj_gnmc text, est_attribution_tqmc text, chado_organism_id integer ); ALTER TABLE sgn.organism OWNER TO postgres; -- -- Name: organism_organism_id_seq; Type: SEQUENCE; Schema: sgn; Owner: postgres -- CREATE SEQUENCE sgn.organism_organism_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE sgn.organism_organism_id_seq OWNER TO postgres; -- -- Name: organism_organism_id_seq; Type: SEQUENCE OWNED BY; Schema: sgn; Owner: postgres -- ALTER SEQUENCE sgn.organism_organism_id_seq OWNED BY sgn.organism.organism_id; -- -- Name: organismgroup; Type: TABLE; Schema: sgn; Owner: postgres -- CREATE TABLE sgn.organismgroup ( organismgroup_id integer NOT NULL, name character varying(255), type character varying(32), CONSTRAINT organismgroup_type_check CHECK ((((type)::text = 'common name'::text) OR ((type)::text = 'unigene build'::text) OR ((type)::text = ''::text))) ); ALTER TABLE sgn.organismgroup OWNER TO postgres; -- -- Name: organismgroup_member; Type: TABLE; Schema: sgn; Owner: postgres -- CREATE TABLE sgn.organismgroup_member ( organismgroup_member_id integer NOT NULL, organismgroup_id integer, organism_id integer ); ALTER TABLE sgn.organismgroup_member OWNER TO postgres; -- -- Name: organismgroup_member_organismgroup_member_id_seq; Type: SEQUENCE; Schema: sgn; Owner: postgres -- CREATE SEQUENCE sgn.organismgroup_member_organismgroup_member_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE sgn.organismgroup_member_organismgroup_member_id_seq OWNER TO postgres; -- -- Name: organismgroup_member_organismgroup_member_id_seq; Type: SEQUENCE OWNED BY; Schema: sgn; Owner: postgres -- ALTER SEQUENCE sgn.organismgroup_member_organismgroup_member_id_seq OWNED BY sgn.organismgroup_member.organismgroup_member_id; -- -- Name: organismgroup_organismgroup_id_seq; Type: SEQUENCE; Schema: sgn; Owner: postgres -- CREATE SEQUENCE sgn.organismgroup_organismgroup_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE sgn.organismgroup_organismgroup_id_seq OWNER TO postgres; -- -- Name: organismgroup_organismgroup_id_seq; Type: SEQUENCE OWNED BY; Schema: sgn; Owner: postgres -- ALTER SEQUENCE sgn.organismgroup_organismgroup_id_seq OWNED BY sgn.organismgroup.organismgroup_id; -- -- Name: p_markers; Type: TABLE; Schema: sgn; Owner: postgres -- CREATE TABLE sgn.p_markers ( pid integer NOT NULL, marker_id bigint DEFAULT (0)::bigint NOT NULL, est_clone_id bigint DEFAULT (0)::bigint NOT NULL, p_mrkr_name character varying(32) ); ALTER TABLE sgn.p_markers OWNER TO postgres; -- -- Name: p_markers_pid_seq; Type: SEQUENCE; Schema: sgn; Owner: postgres -- CREATE SEQUENCE sgn.p_markers_pid_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE sgn.p_markers_pid_seq OWNER TO postgres; -- -- Name: p_markers_pid_seq; Type: SEQUENCE OWNED BY; Schema: sgn; Owner: postgres -- ALTER SEQUENCE sgn.p_markers_pid_seq OWNED BY sgn.p_markers.pid; -- -- Name: pcr_exp_accession; Type: TABLE; Schema: sgn; Owner: postgres -- CREATE TABLE sgn.pcr_exp_accession ( pcr_exp_accession_id bigint NOT NULL, pcr_experiment_id bigint, accession_id bigint, stock_id bigint, CONSTRAINT experiment_not_null CHECK ((pcr_experiment_id IS NOT NULL)) ); ALTER TABLE sgn.pcr_exp_accession OWNER TO postgres; -- -- Name: pcr_exp_accession_pcr_exp_accession_id_seq; Type: SEQUENCE; Schema: sgn; Owner: postgres -- CREATE SEQUENCE sgn.pcr_exp_accession_pcr_exp_accession_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE sgn.pcr_exp_accession_pcr_exp_accession_id_seq OWNER TO postgres; -- -- Name: pcr_exp_accession_pcr_exp_accession_id_seq; Type: SEQUENCE OWNED BY; Schema: sgn; Owner: postgres -- ALTER SEQUENCE sgn.pcr_exp_accession_pcr_exp_accession_id_seq OWNED BY sgn.pcr_exp_accession.pcr_exp_accession_id; -- -- Name: pcr_experiment; Type: TABLE; Schema: sgn; Owner: postgres -- CREATE TABLE sgn.pcr_experiment ( pcr_experiment_id bigint NOT NULL, marker_id bigint, mg_concentration real, annealing_temp bigint, primer_id_fwd bigint, primer_id_rev bigint, subscript character varying(255), experiment_type_id bigint, map_id bigint, additional_enzymes character varying(1023), primer_type character varying(4), predicted boolean DEFAULT false, primer_id_pd bigint, accession_id character varying(7), stock_id integer, CONSTRAINT different_primers CHECK (((primer_id_fwd IS NULL) OR (primer_id_rev IS NULL) OR (NOT (primer_id_fwd = primer_id_rev)))), CONSTRAINT primer_type_enum CHECK ((((primer_type)::text = 'iUPA'::text) OR ((primer_type)::text = 'eUPA'::text) OR (primer_type IS NULL))) ); ALTER TABLE sgn.pcr_experiment OWNER TO postgres; -- -- Name: pcr_experiment_pcr_experiment_id_seq; Type: SEQUENCE; Schema: sgn; Owner: postgres -- CREATE SEQUENCE sgn.pcr_experiment_pcr_experiment_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE sgn.pcr_experiment_pcr_experiment_id_seq OWNER TO postgres; -- -- Name: pcr_experiment_pcr_experiment_id_seq; Type: SEQUENCE OWNED BY; Schema: sgn; Owner: postgres -- ALTER SEQUENCE sgn.pcr_experiment_pcr_experiment_id_seq OWNED BY sgn.pcr_experiment.pcr_experiment_id; -- -- Name: pcr_experiment_sequence; Type: TABLE; Schema: sgn; Owner: postgres -- CREATE TABLE sgn.pcr_experiment_sequence ( pcr_experiment_sequence_id integer NOT NULL, pcr_experiment_id integer NOT NULL, sequence_id integer NOT NULL, type_id integer ); ALTER TABLE sgn.pcr_experiment_sequence OWNER TO postgres; -- -- Name: pcr_experiment_sequence_pcr_experiment_sequence_id_seq; Type: SEQUENCE; Schema: sgn; Owner: postgres -- CREATE SEQUENCE sgn.pcr_experiment_sequence_pcr_experiment_sequence_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE sgn.pcr_experiment_sequence_pcr_experiment_sequence_id_seq OWNER TO postgres; -- -- Name: pcr_experiment_sequence_pcr_experiment_sequence_id_seq; Type: SEQUENCE OWNED BY; Schema: sgn; Owner: postgres -- ALTER SEQUENCE sgn.pcr_experiment_sequence_pcr_experiment_sequence_id_seq OWNED BY sgn.pcr_experiment_sequence.pcr_experiment_sequence_id; -- -- Name: pcr_product; Type: TABLE; Schema: sgn; Owner: postgres -- CREATE TABLE sgn.pcr_product ( pcr_product_id bigint NOT NULL, pcr_exp_accession_id bigint, enzyme_id bigint, multiple_flag bigint, band_size bigint, predicted boolean DEFAULT false, CONSTRAINT band_size_or_multiple_check CHECK ((((band_size IS NOT NULL) OR (multiple_flag IS NOT NULL)) AND (NOT ((band_size IS NOT NULL) AND (multiple_flag IS NOT NULL))))), CONSTRAINT multiple_flag_null_or_1 CHECK (((multiple_flag = 1) OR (multiple_flag IS NULL))), CONSTRAINT pcr_exp_acc_not_null CHECK ((pcr_exp_accession_id IS NOT NULL)) ); ALTER TABLE sgn.pcr_product OWNER TO postgres; -- -- Name: pcr_product_pcr_product_id_seq; Type: SEQUENCE; Schema: sgn; Owner: postgres -- CREATE SEQUENCE sgn.pcr_product_pcr_product_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE sgn.pcr_product_pcr_product_id_seq OWNER TO postgres; -- -- Name: pcr_product_pcr_product_id_seq; Type: SEQUENCE OWNED BY; Schema: sgn; Owner: postgres -- ALTER SEQUENCE sgn.pcr_product_pcr_product_id_seq OWNED BY sgn.pcr_product.pcr_product_id; -- -- Name: primer_unigene_match; Type: TABLE; Schema: sgn; Owner: postgres -- CREATE TABLE sgn.primer_unigene_match ( primer_unigene_match_id integer NOT NULL, marker_id integer NOT NULL, unigene_id integer NOT NULL, primer_direction smallint, match_length integer, primer_match_start integer, primer_match_end integer, unigene_match_start integer, unigene_match_end integer, e_value double precision ); ALTER TABLE sgn.primer_unigene_match OWNER TO postgres; -- -- Name: primer_unigene_match_primer_unigene_match_id_seq; Type: SEQUENCE; Schema: sgn; Owner: postgres -- CREATE SEQUENCE sgn.primer_unigene_match_primer_unigene_match_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE sgn.primer_unigene_match_primer_unigene_match_id_seq OWNER TO postgres; -- -- Name: primer_unigene_match_primer_unigene_match_id_seq; Type: SEQUENCE OWNED BY; Schema: sgn; Owner: postgres -- ALTER SEQUENCE sgn.primer_unigene_match_primer_unigene_match_id_seq OWNED BY sgn.primer_unigene_match.primer_unigene_match_id; -- -- Name: qc_report; Type: TABLE; Schema: sgn; Owner: postgres -- CREATE TABLE sgn.qc_report ( qc_id integer NOT NULL, est_id integer DEFAULT 0 NOT NULL, basecaller character varying(40), qc_status bigint, vs_status bigint, qstart bigint, qend bigint, istart bigint, iend bigint, hqi_start bigint, hqi_length bigint, entropy real, expected_error real, quality_trim_threshold real, vector_tokens text ); ALTER TABLE sgn.qc_report OWNER TO postgres; -- -- Name: qc_report_qc_id_seq; Type: SEQUENCE; Schema: sgn; Owner: postgres -- CREATE SEQUENCE sgn.qc_report_qc_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE sgn.qc_report_qc_id_seq OWNER TO postgres; -- -- Name: qc_report_qc_id_seq; Type: SEQUENCE OWNED BY; Schema: sgn; Owner: postgres -- ALTER SEQUENCE sgn.qc_report_qc_id_seq OWNED BY sgn.qc_report.qc_id; -- -- Name: rflp_markers; Type: TABLE; Schema: sgn; Owner: postgres -- CREATE TABLE sgn.rflp_markers ( rflp_id integer NOT NULL, marker_id bigint DEFAULT (0)::bigint NOT NULL, rflp_name character varying(64) DEFAULT ''::character varying NOT NULL, library_name character varying(64), clone_name character varying(16), vector character varying(32), cutting_site character varying(32), forward_seq_id bigint, reverse_seq_id bigint, insert_size bigint DEFAULT (0)::bigint NOT NULL, drug_resistance character varying(16), marker_prefix character varying(8), marker_suffix smallint, CONSTRAINT clone_name_not_null_check CHECK ((clone_name IS NOT NULL)), CONSTRAINT cutting_site_not_null_check CHECK ((cutting_site IS NOT NULL)), CONSTRAINT drug_resistance_not_null_check CHECK ((drug_resistance IS NOT NULL)), CONSTRAINT insert_size_not_null_check CHECK ((insert_size IS NOT NULL)), CONSTRAINT marker_prefix_not_null_check CHECK ((marker_prefix IS NOT NULL)), CONSTRAINT marker_suffix_not_null_check CHECK ((marker_suffix IS NOT NULL)), CONSTRAINT vector_not_null_check CHECK ((vector IS NOT NULL)) ); ALTER TABLE sgn.rflp_markers OWNER TO postgres; -- -- Name: rflp_markers_rflp_id_seq; Type: SEQUENCE; Schema: sgn; Owner: postgres -- CREATE SEQUENCE sgn.rflp_markers_rflp_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE sgn.rflp_markers_rflp_id_seq OWNER TO postgres; -- -- Name: rflp_markers_rflp_id_seq; Type: SEQUENCE OWNED BY; Schema: sgn; Owner: postgres -- ALTER SEQUENCE sgn.rflp_markers_rflp_id_seq OWNED BY sgn.rflp_markers.rflp_id; -- -- Name: rflp_sequences; Type: TABLE; Schema: sgn; Owner: postgres -- CREATE TABLE sgn.rflp_sequences ( seq_id integer NOT NULL, fasta_sequence text NOT NULL ); ALTER TABLE sgn.rflp_sequences OWNER TO postgres; -- -- Name: rflp_sequences_seq_id_seq; Type: SEQUENCE; Schema: sgn; Owner: postgres -- CREATE SEQUENCE sgn.rflp_sequences_seq_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE sgn.rflp_sequences_seq_id_seq OWNER TO postgres; -- -- Name: rflp_sequences_seq_id_seq; Type: SEQUENCE OWNED BY; Schema: sgn; Owner: postgres -- ALTER SEQUENCE sgn.rflp_sequences_seq_id_seq OWNED BY sgn.rflp_sequences.seq_id; -- -- Name: rflp_unigene_associations; Type: TABLE; Schema: sgn; Owner: postgres -- CREATE TABLE sgn.rflp_unigene_associations ( rflp_unigene_assoc_id integer NOT NULL, rflp_seq_id bigint, unigene_id bigint, e_val double precision, align_length bigint, query_start bigint, query_end bigint ); ALTER TABLE sgn.rflp_unigene_associations OWNER TO postgres; -- -- Name: rflp_unigene_associations_rflp_unigene_assoc_id_seq; Type: SEQUENCE; Schema: sgn; Owner: postgres -- CREATE SEQUENCE sgn.rflp_unigene_associations_rflp_unigene_assoc_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE sgn.rflp_unigene_associations_rflp_unigene_assoc_id_seq OWNER TO postgres; -- -- Name: rflp_unigene_associations_rflp_unigene_assoc_id_seq; Type: SEQUENCE OWNED BY; Schema: sgn; Owner: postgres -- ALTER SEQUENCE sgn.rflp_unigene_associations_rflp_unigene_assoc_id_seq OWNED BY sgn.rflp_unigene_associations.rflp_unigene_assoc_id; -- -- Name: seqread; Type: TABLE; Schema: sgn; Owner: postgres -- CREATE TABLE sgn.seqread ( read_id integer NOT NULL, clone_id integer, facility_id integer, submitter_id integer, batch_id integer, primer character varying(50), direction character(1), trace_name character varying(50) NOT NULL, trace_location text, attribution_id integer, date timestamp(6) without time zone DEFAULT ('now'::text)::timestamp(6) with time zone NOT NULL, censor_id integer ); ALTER TABLE sgn.seqread OWNER TO postgres; -- -- Name: seqread_read_id_seq; Type: SEQUENCE; Schema: sgn; Owner: postgres -- CREATE SEQUENCE sgn.seqread_read_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE sgn.seqread_read_id_seq OWNER TO postgres; -- -- Name: seqread_read_id_seq; Type: SEQUENCE OWNED BY; Schema: sgn; Owner: postgres -- ALTER SEQUENCE sgn.seqread_read_id_seq OWNED BY sgn.seqread.read_id; -- -- Name: sequence; Type: TABLE; Schema: sgn; Owner: postgres -- CREATE TABLE sgn.sequence ( sequence_id bigint NOT NULL, sequence text ); ALTER TABLE sgn.sequence OWNER TO postgres; -- -- Name: sequence_sequence_id_seq; Type: SEQUENCE; Schema: sgn; Owner: postgres -- CREATE SEQUENCE sgn.sequence_sequence_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE sgn.sequence_sequence_id_seq OWNER TO postgres; -- -- Name: sequence_sequence_id_seq; Type: SEQUENCE OWNED BY; Schema: sgn; Owner: postgres -- ALTER SEQUENCE sgn.sequence_sequence_id_seq OWNED BY sgn.sequence.sequence_id; -- -- Name: snp; Type: TABLE; Schema: sgn; Owner: postgres -- CREATE TABLE sgn.snp ( snp_id integer NOT NULL, marker_id integer, reference_nucleotide character varying(4), snp_nucleotide character varying(4) NOT NULL, confirmed boolean DEFAULT false, sequence_left_id integer, sequence_right_id integer, reference_stock_id integer, stock_id integer NOT NULL, metadata_id integer ); ALTER TABLE sgn.snp OWNER TO postgres; -- -- Name: snp_file; Type: TABLE; Schema: sgn; Owner: postgres -- CREATE TABLE sgn.snp_file ( snp_file_id integer NOT NULL, snp_id integer NOT NULL, file_id integer NOT NULL ); ALTER TABLE sgn.snp_file OWNER TO postgres; -- -- Name: snp_file_snp_file_id_seq; Type: SEQUENCE; Schema: sgn; Owner: postgres -- CREATE SEQUENCE sgn.snp_file_snp_file_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE sgn.snp_file_snp_file_id_seq OWNER TO postgres; -- -- Name: snp_file_snp_file_id_seq; Type: SEQUENCE OWNED BY; Schema: sgn; Owner: postgres -- ALTER SEQUENCE sgn.snp_file_snp_file_id_seq OWNED BY sgn.snp_file.snp_file_id; -- -- Name: snp_snp_id_seq; Type: SEQUENCE; Schema: sgn; Owner: postgres -- CREATE SEQUENCE sgn.snp_snp_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE sgn.snp_snp_id_seq OWNER TO postgres; -- -- Name: snp_snp_id_seq; Type: SEQUENCE OWNED BY; Schema: sgn; Owner: postgres -- ALTER SEQUENCE sgn.snp_snp_id_seq OWNED BY sgn.snp.snp_id; -- -- Name: snpprop; Type: TABLE; Schema: sgn; Owner: postgres -- CREATE TABLE sgn.snpprop ( snpprop_id integer NOT NULL, snp_id integer, value character varying(255) NOT NULL, rank integer, type_id integer ); ALTER TABLE sgn.snpprop OWNER TO postgres; -- -- Name: snpprop_snpprop_id_seq; Type: SEQUENCE; Schema: sgn; Owner: postgres -- CREATE SEQUENCE sgn.snpprop_snpprop_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE sgn.snpprop_snpprop_id_seq OWNER TO postgres; -- -- Name: snpprop_snpprop_id_seq; Type: SEQUENCE OWNED BY; Schema: sgn; Owner: postgres -- ALTER SEQUENCE sgn.snpprop_snpprop_id_seq OWNED BY sgn.snpprop.snpprop_id; -- -- Name: ssr; Type: TABLE; Schema: sgn; Owner: postgres -- CREATE TABLE sgn.ssr ( ssr_id integer NOT NULL, marker_id bigint DEFAULT (0)::bigint NOT NULL, ssr_name character varying(10), est_read_id bigint, start_primer character varying(100), end_primer character varying(100), pcr_product_ln bigint, tm_start_primer character varying(10), tm_end_primer character varying(10), ann_high character varying(10), ann_low character varying(10) ); ALTER TABLE sgn.ssr OWNER TO postgres; -- -- Name: ssr_primer_unigene_matches; Type: TABLE; Schema: sgn; Owner: postgres -- CREATE TABLE sgn.ssr_primer_unigene_matches ( ssr_primer_unigene_match_id integer NOT NULL, ssr_id bigint DEFAULT (0)::bigint NOT NULL, unigene_id bigint DEFAULT (0)::bigint NOT NULL, primer_direction smallint DEFAULT (0)::smallint NOT NULL, match_length bigint DEFAULT (0)::bigint NOT NULL, primer_match_start bigint DEFAULT (0)::bigint NOT NULL, primer_match_end bigint DEFAULT (0)::bigint NOT NULL, unigene_match_start bigint DEFAULT (0)::bigint NOT NULL, unigene_match_end bigint DEFAULT (0)::bigint NOT NULL, e_value character varying(32) DEFAULT ''::character varying NOT NULL ); ALTER TABLE sgn.ssr_primer_unigene_matches OWNER TO postgres; -- -- Name: ssr_primer_unigene_matches_ssr_primer_unigene_match_id_seq; Type: SEQUENCE; Schema: sgn; Owner: postgres -- CREATE SEQUENCE sgn.ssr_primer_unigene_matches_ssr_primer_unigene_match_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE sgn.ssr_primer_unigene_matches_ssr_primer_unigene_match_id_seq OWNER TO postgres; -- -- Name: ssr_primer_unigene_matches_ssr_primer_unigene_match_id_seq; Type: SEQUENCE OWNED BY; Schema: sgn; Owner: postgres -- ALTER SEQUENCE sgn.ssr_primer_unigene_matches_ssr_primer_unigene_match_id_seq OWNED BY sgn.ssr_primer_unigene_matches.ssr_primer_unigene_match_id; -- -- Name: ssr_repeats; Type: TABLE; Schema: sgn; Owner: postgres -- CREATE TABLE sgn.ssr_repeats ( repeat_id integer NOT NULL, ssr_id bigint DEFAULT (0)::bigint NOT NULL, repeat_motif character varying(32) DEFAULT ''::character varying NOT NULL, reapeat_nr bigint, marker_id integer NOT NULL ); ALTER TABLE sgn.ssr_repeats OWNER TO postgres; -- -- Name: ssr_repeats_repeat_id_seq; Type: SEQUENCE; Schema: sgn; Owner: postgres -- CREATE SEQUENCE sgn.ssr_repeats_repeat_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE sgn.ssr_repeats_repeat_id_seq OWNER TO postgres; -- -- Name: ssr_repeats_repeat_id_seq; Type: SEQUENCE OWNED BY; Schema: sgn; Owner: postgres -- ALTER SEQUENCE sgn.ssr_repeats_repeat_id_seq OWNED BY sgn.ssr_repeats.repeat_id; -- -- Name: ssr_ssr_id_seq; Type: SEQUENCE; Schema: sgn; Owner: postgres -- CREATE SEQUENCE sgn.ssr_ssr_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE sgn.ssr_ssr_id_seq OWNER TO postgres; -- -- Name: ssr_ssr_id_seq; Type: SEQUENCE OWNED BY; Schema: sgn; Owner: postgres -- ALTER SEQUENCE sgn.ssr_ssr_id_seq OWNED BY sgn.ssr.ssr_id; -- -- Name: submit_user; Type: TABLE; Schema: sgn; Owner: postgres -- CREATE TABLE sgn.submit_user ( submit_user_id integer NOT NULL, submit_code character varying(6), username character varying(20), password character varying(20), name character varying(80), email_address character varying(255), phone_number character varying(20), organization character varying(80), contact_information text, disabled bigint, confirm_code character varying(16), sp_person_id integer ); ALTER TABLE sgn.submit_user OWNER TO postgres; -- -- Name: submit_user_submit_user_id_seq; Type: SEQUENCE; Schema: sgn; Owner: postgres -- CREATE SEQUENCE sgn.submit_user_submit_user_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE sgn.submit_user_submit_user_id_seq OWNER TO postgres; -- -- Name: submit_user_submit_user_id_seq; Type: SEQUENCE OWNED BY; Schema: sgn; Owner: postgres -- ALTER SEQUENCE sgn.submit_user_submit_user_id_seq OWNED BY sgn.submit_user.submit_user_id; -- -- Name: taxonomy; Type: TABLE; Schema: sgn; Owner: postgres -- CREATE TABLE sgn.taxonomy ( tax_id integer NOT NULL, tax_name character varying(50) NOT NULL, tax_type character varying(50) ); ALTER TABLE sgn.taxonomy OWNER TO postgres; -- -- Name: taxonomy_tax_id_seq; Type: SEQUENCE; Schema: sgn; Owner: postgres -- CREATE SEQUENCE sgn.taxonomy_tax_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE sgn.taxonomy_tax_id_seq OWNER TO postgres; -- -- Name: taxonomy_tax_id_seq; Type: SEQUENCE OWNED BY; Schema: sgn; Owner: postgres -- ALTER SEQUENCE sgn.taxonomy_tax_id_seq OWNED BY sgn.taxonomy.tax_id; -- -- Name: temp_caps_correspondence; Type: TABLE; Schema: sgn; Owner: postgres -- CREATE TABLE sgn.temp_caps_correspondence ( tcc_id integer NOT NULL, old_marker_id integer, new_marker_id integer ); ALTER TABLE sgn.temp_caps_correspondence OWNER TO postgres; -- -- Name: temp_caps_correspondence_tcc_id_seq; Type: SEQUENCE; Schema: sgn; Owner: postgres -- CREATE SEQUENCE sgn.temp_caps_correspondence_tcc_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE sgn.temp_caps_correspondence_tcc_id_seq OWNER TO postgres; -- -- Name: temp_caps_correspondence_tcc_id_seq; Type: SEQUENCE OWNED BY; Schema: sgn; Owner: postgres -- ALTER SEQUENCE sgn.temp_caps_correspondence_tcc_id_seq OWNED BY sgn.temp_caps_correspondence.tcc_id; -- -- Name: temp_map_correspondence; Type: TABLE; Schema: sgn; Owner: postgres -- CREATE TABLE sgn.temp_map_correspondence ( tmc_id integer NOT NULL, old_map_id integer, map_version_id integer ); ALTER TABLE sgn.temp_map_correspondence OWNER TO postgres; -- -- Name: temp_map_correspondence_tmc_id_seq; Type: SEQUENCE; Schema: sgn; Owner: postgres -- CREATE SEQUENCE sgn.temp_map_correspondence_tmc_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE sgn.temp_map_correspondence_tmc_id_seq OWNER TO postgres; -- -- Name: temp_map_correspondence_tmc_id_seq; Type: SEQUENCE OWNED BY; Schema: sgn; Owner: postgres -- ALTER SEQUENCE sgn.temp_map_correspondence_tmc_id_seq OWNED BY sgn.temp_map_correspondence.tmc_id; -- -- Name: temp_marker_correspondence; Type: TABLE; Schema: sgn; Owner: postgres -- CREATE TABLE sgn.temp_marker_correspondence ( tmc_id integer NOT NULL, old_marker_id integer, new_marker_id integer ); ALTER TABLE sgn.temp_marker_correspondence OWNER TO postgres; -- -- Name: temp_marker_correspondence_tmc_id_seq; Type: SEQUENCE; Schema: sgn; Owner: postgres -- CREATE SEQUENCE sgn.temp_marker_correspondence_tmc_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE sgn.temp_marker_correspondence_tmc_id_seq OWNER TO postgres; -- -- Name: temp_marker_correspondence_tmc_id_seq; Type: SEQUENCE OWNED BY; Schema: sgn; Owner: postgres -- ALTER SEQUENCE sgn.temp_marker_correspondence_tmc_id_seq OWNED BY sgn.temp_marker_correspondence.tmc_id; -- -- Name: tigrtc_index; Type: TABLE; Schema: sgn; Owner: postgres -- CREATE TABLE sgn.tigrtc_index ( tcindex_id integer NOT NULL, index_name character varying(40) ); ALTER TABLE sgn.tigrtc_index OWNER TO postgres; -- -- Name: tigrtc_index_tcindex_id_seq; Type: SEQUENCE; Schema: sgn; Owner: postgres -- CREATE SEQUENCE sgn.tigrtc_index_tcindex_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE sgn.tigrtc_index_tcindex_id_seq OWNER TO postgres; -- -- Name: tigrtc_index_tcindex_id_seq; Type: SEQUENCE OWNED BY; Schema: sgn; Owner: postgres -- ALTER SEQUENCE sgn.tigrtc_index_tcindex_id_seq OWNED BY sgn.tigrtc_index.tcindex_id; -- -- Name: tigrtc_membership; Type: TABLE; Schema: sgn; Owner: postgres -- CREATE TABLE sgn.tigrtc_membership ( tigrtc_membership_id integer NOT NULL, tc_id integer, tcindex_id integer, read_id integer ); ALTER TABLE sgn.tigrtc_membership OWNER TO postgres; -- -- Name: tigrtc_membership_tigrtc_membership_id_seq; Type: SEQUENCE; Schema: sgn; Owner: postgres -- CREATE SEQUENCE sgn.tigrtc_membership_tigrtc_membership_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE sgn.tigrtc_membership_tigrtc_membership_id_seq OWNER TO postgres; -- -- Name: tigrtc_membership_tigrtc_membership_id_seq; Type: SEQUENCE OWNED BY; Schema: sgn; Owner: postgres -- ALTER SEQUENCE sgn.tigrtc_membership_tigrtc_membership_id_seq OWNED BY sgn.tigrtc_membership.tigrtc_membership_id; -- -- Name: tigrtc_tracking; Type: TABLE; Schema: sgn; Owner: postgres -- CREATE TABLE sgn.tigrtc_tracking ( tigrtc_tracking_id integer NOT NULL, tc_id integer, current_tc_id integer, tcindex_id integer ); ALTER TABLE sgn.tigrtc_tracking OWNER TO postgres; -- -- Name: tigrtc_tracking_tigrtc_tracking_id_seq; Type: SEQUENCE; Schema: sgn; Owner: postgres -- CREATE SEQUENCE sgn.tigrtc_tracking_tigrtc_tracking_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE sgn.tigrtc_tracking_tigrtc_tracking_id_seq OWNER TO postgres; -- -- Name: tigrtc_tracking_tigrtc_tracking_id_seq; Type: SEQUENCE OWNED BY; Schema: sgn; Owner: postgres -- ALTER SEQUENCE sgn.tigrtc_tracking_tigrtc_tracking_id_seq OWNED BY sgn.tigrtc_tracking.tigrtc_tracking_id; -- -- Name: tm_markers; Type: TABLE; Schema: sgn; Owner: postgres -- CREATE TABLE sgn.tm_markers ( tm_id integer NOT NULL, marker_id bigint DEFAULT (0)::bigint NOT NULL, tm_name character varying(32) DEFAULT ''::character varying NOT NULL, old_cos_id character varying(32), seq_id bigint, est_read_id bigint, comment text ); ALTER TABLE sgn.tm_markers OWNER TO postgres; -- -- Name: tm_markers_sequences; Type: TABLE; Schema: sgn; Owner: postgres -- CREATE TABLE sgn.tm_markers_sequences ( tm_marker_seq_id bigint DEFAULT (0)::bigint NOT NULL, tm_id bigint, sequence text, comment text ); ALTER TABLE sgn.tm_markers_sequences OWNER TO postgres; -- -- Name: tm_markers_tm_id_seq; Type: SEQUENCE; Schema: sgn; Owner: postgres -- CREATE SEQUENCE sgn.tm_markers_tm_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE sgn.tm_markers_tm_id_seq OWNER TO postgres; -- -- Name: tm_markers_tm_id_seq; Type: SEQUENCE OWNED BY; Schema: sgn; Owner: postgres -- ALTER SEQUENCE sgn.tm_markers_tm_id_seq OWNED BY sgn.tm_markers.tm_id; -- -- Name: trim_feature; Type: TABLE; Schema: sgn; Owner: postgres -- CREATE TABLE sgn.trim_feature ( feature_id integer NOT NULL, est_id integer, start bigint, "end" bigint, type bigint, value bytea ); ALTER TABLE sgn.trim_feature OWNER TO postgres; -- -- Name: trim_feature_feature_id_seq; Type: SEQUENCE; Schema: sgn; Owner: postgres -- CREATE SEQUENCE sgn.trim_feature_feature_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE sgn.trim_feature_feature_id_seq OWNER TO postgres; -- -- Name: trim_feature_feature_id_seq; Type: SEQUENCE OWNED BY; Schema: sgn; Owner: postgres -- ALTER SEQUENCE sgn.trim_feature_feature_id_seq OWNED BY sgn.trim_feature.feature_id; -- -- Name: trim_feature_types; Type: TABLE; Schema: sgn; Owner: postgres -- CREATE TABLE sgn.trim_feature_types ( trim_type_id integer NOT NULL, comment text ); ALTER TABLE sgn.trim_feature_types OWNER TO postgres; -- -- Name: trim_feature_types_trim_type_id_seq; Type: SEQUENCE; Schema: sgn; Owner: postgres -- CREATE SEQUENCE sgn.trim_feature_types_trim_type_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE sgn.trim_feature_types_trim_type_id_seq OWNER TO postgres; -- -- Name: trim_feature_types_trim_type_id_seq; Type: SEQUENCE OWNED BY; Schema: sgn; Owner: postgres -- ALTER SEQUENCE sgn.trim_feature_types_trim_type_id_seq OWNED BY sgn.trim_feature_types.trim_type_id; -- -- Name: types; Type: TABLE; Schema: sgn; Owner: postgres -- CREATE TABLE sgn.types ( type_id integer NOT NULL, comment text ); ALTER TABLE sgn.types OWNER TO postgres; -- -- Name: types_type_id_seq; Type: SEQUENCE; Schema: sgn; Owner: postgres -- CREATE SEQUENCE sgn.types_type_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE sgn.types_type_id_seq OWNER TO postgres; -- -- Name: types_type_id_seq; Type: SEQUENCE OWNED BY; Schema: sgn; Owner: postgres -- ALTER SEQUENCE sgn.types_type_id_seq OWNED BY sgn.types.type_id; -- -- Name: unigene; Type: TABLE; Schema: sgn; Owner: postgres -- CREATE TABLE sgn.unigene ( unigene_id integer NOT NULL, unigene_build_id integer, consensi_id integer, cluster_no bigint, contig_no bigint, nr_members bigint, database_name character varying DEFAULT 'SGN'::character varying NOT NULL, sequence_name bigint NOT NULL, CONSTRAINT unigene_database_name_check CHECK ((((database_name)::text = 'SGN'::text) OR ((database_name)::text = 'CGN'::text))), CONSTRAINT unigene_nr_members_iff_consensi_id CHECK ((((nr_members > 1) AND (consensi_id IS NOT NULL)) OR ((nr_members = 1) AND (consensi_id IS NULL)))) ); ALTER TABLE sgn.unigene OWNER TO postgres; -- -- Name: unigene_build; Type: TABLE; Schema: sgn; Owner: postgres -- CREATE TABLE sgn.unigene_build ( unigene_build_id integer NOT NULL, source_data_group_id integer, organism_group_id integer, build_nr integer DEFAULT 0 NOT NULL, build_date date DEFAULT now(), method_id integer, status character(1), comment text, superseding_build_id integer, next_build_id integer, latest_build_id integer, blast_db_id integer, CONSTRAINT unigene_build_status_check CHECK (((status = 'C'::bpchar) OR (status = 'D'::bpchar) OR (status = 'P'::bpchar))) ); ALTER TABLE sgn.unigene_build OWNER TO postgres; -- -- Name: unigene_build_unigene_build_id_seq; Type: SEQUENCE; Schema: sgn; Owner: postgres -- CREATE SEQUENCE sgn.unigene_build_unigene_build_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE sgn.unigene_build_unigene_build_id_seq OWNER TO postgres; -- -- Name: unigene_build_unigene_build_id_seq; Type: SEQUENCE OWNED BY; Schema: sgn; Owner: postgres -- ALTER SEQUENCE sgn.unigene_build_unigene_build_id_seq OWNED BY sgn.unigene_build.unigene_build_id; -- -- Name: unigene_consensi; Type: TABLE; Schema: sgn; Owner: postgres -- CREATE TABLE sgn.unigene_consensi ( consensi_id integer NOT NULL, seq text, qscores text ); ALTER TABLE sgn.unigene_consensi OWNER TO postgres; -- -- Name: unigene_consensi_consensi_id_seq; Type: SEQUENCE; Schema: sgn; Owner: postgres -- CREATE SEQUENCE sgn.unigene_consensi_consensi_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE sgn.unigene_consensi_consensi_id_seq OWNER TO postgres; -- -- Name: unigene_consensi_consensi_id_seq; Type: SEQUENCE OWNED BY; Schema: sgn; Owner: postgres -- ALTER SEQUENCE sgn.unigene_consensi_consensi_id_seq OWNED BY sgn.unigene_consensi.consensi_id; -- -- Name: unigene_member; Type: TABLE; Schema: sgn; Owner: postgres -- CREATE TABLE sgn.unigene_member ( unigene_member_id integer NOT NULL, unigene_id integer DEFAULT 0 NOT NULL, est_id integer, start bigint, stop bigint, qstart bigint, qend bigint, dir character(1) ); ALTER TABLE sgn.unigene_member OWNER TO postgres; -- -- Name: unigene_member_unigene_member_id_seq; Type: SEQUENCE; Schema: sgn; Owner: postgres -- CREATE SEQUENCE sgn.unigene_member_unigene_member_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE sgn.unigene_member_unigene_member_id_seq OWNER TO postgres; -- -- Name: unigene_member_unigene_member_id_seq; Type: SEQUENCE OWNED BY; Schema: sgn; Owner: postgres -- ALTER SEQUENCE sgn.unigene_member_unigene_member_id_seq OWNED BY sgn.unigene_member.unigene_member_id; -- -- Name: unigene_unigene_id_seq; Type: SEQUENCE; Schema: sgn; Owner: postgres -- CREATE SEQUENCE sgn.unigene_unigene_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE sgn.unigene_unigene_id_seq OWNER TO postgres; -- -- Name: unigene_unigene_id_seq; Type: SEQUENCE OWNED BY; Schema: sgn; Owner: postgres -- ALTER SEQUENCE sgn.unigene_unigene_id_seq OWNED BY sgn.unigene.unigene_id; -- -- Name: bac_status; Type: TABLE; Schema: sgn_people; Owner: postgres -- CREATE TABLE sgn_people.bac_status ( bac_status_id bigint NOT NULL, bac_id bigint, person_id bigint, status character varying(13), genbank_status character varying(5), "timestamp" timestamp(6) without time zone DEFAULT ('now'::text)::timestamp(6) with time zone NOT NULL, CONSTRAINT chk_bac_status_genbank_status CHECK ((((genbank_status)::text = 'htgs1'::text) OR ((genbank_status)::text = 'htgs2'::text) OR ((genbank_status)::text = 'htgs3'::text) OR ((genbank_status)::text = 'htgs4'::text) OR ((genbank_status)::text = ''::text) OR (genbank_status IS NULL))), CONSTRAINT chk_bac_status_status CHECK ((((status)::text = 'not_sequenced'::text) OR ((status)::text = 'in_progress'::text) OR ((status)::text = 'complete'::text) OR ((status)::text = ''::text) OR (status IS NULL))) ); ALTER TABLE sgn_people.bac_status OWNER TO postgres; -- -- Name: bac_status_bac_status_id_seq; Type: SEQUENCE; Schema: sgn_people; Owner: postgres -- CREATE SEQUENCE sgn_people.bac_status_bac_status_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE sgn_people.bac_status_bac_status_id_seq OWNER TO postgres; -- -- Name: bac_status_bac_status_id_seq; Type: SEQUENCE OWNED BY; Schema: sgn_people; Owner: postgres -- ALTER SEQUENCE sgn_people.bac_status_bac_status_id_seq OWNED BY sgn_people.bac_status.bac_status_id; -- -- Name: bac_status_log; Type: TABLE; Schema: sgn_people; Owner: postgres -- CREATE TABLE sgn_people.bac_status_log ( bac_status_log_id bigint NOT NULL, bac_id bigint, person_id bigint, status character varying(13), genbank_status character varying(5), "timestamp" timestamp(6) without time zone DEFAULT ('now'::text)::timestamp(6) with time zone NOT NULL, CONSTRAINT chk_bac_status_log_genbank_status CHECK ((((genbank_status)::text = 'htgs1'::text) OR ((genbank_status)::text = 'htgs2'::text) OR ((genbank_status)::text = 'htgs3'::text) OR ((genbank_status)::text = 'htgs4'::text) OR ((genbank_status)::text = ''::text) OR (genbank_status IS NULL))), CONSTRAINT chk_bac_status_log_status CHECK ((((status)::text = 'not_sequenced'::text) OR ((status)::text = 'in_progress'::text) OR ((status)::text = 'complete'::text) OR ((status)::text = ''::text) OR (status IS NULL))) ); ALTER TABLE sgn_people.bac_status_log OWNER TO postgres; -- -- Name: bac_status_log_bac_status_log_id_seq; Type: SEQUENCE; Schema: sgn_people; Owner: postgres -- CREATE SEQUENCE sgn_people.bac_status_log_bac_status_log_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE sgn_people.bac_status_log_bac_status_log_id_seq OWNER TO postgres; -- -- Name: bac_status_log_bac_status_log_id_seq; Type: SEQUENCE OWNED BY; Schema: sgn_people; Owner: postgres -- ALTER SEQUENCE sgn_people.bac_status_log_bac_status_log_id_seq OWNED BY sgn_people.bac_status_log.bac_status_log_id; -- -- Name: clone_il_mapping_bin_log; Type: TABLE; Schema: sgn_people; Owner: postgres -- CREATE TABLE sgn_people.clone_il_mapping_bin_log ( sp_clone_il_mapping_bin_log_id integer NOT NULL, genotype_region_id integer, sp_person_id integer, clone_id integer, is_current boolean DEFAULT true, created timestamp without time zone DEFAULT now(), chromosome integer, notes text ); ALTER TABLE sgn_people.clone_il_mapping_bin_log OWNER TO postgres; -- -- Name: TABLE clone_il_mapping_bin_log; Type: COMMENT; Schema: sgn_people; Owner: postgres -- COMMENT ON TABLE sgn_people.clone_il_mapping_bin_log IS 'linking table showing which phenome.genotype_region a given clone has been mapped to. also provides a modification history with its is_current and created columns'; -- -- Name: clone_il_mapping_bin_log_sp_clone_il_mapping_bin_log_id_seq; Type: SEQUENCE; Schema: sgn_people; Owner: postgres -- CREATE SEQUENCE sgn_people.clone_il_mapping_bin_log_sp_clone_il_mapping_bin_log_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE sgn_people.clone_il_mapping_bin_log_sp_clone_il_mapping_bin_log_id_seq OWNER TO postgres; -- -- Name: clone_il_mapping_bin_log_sp_clone_il_mapping_bin_log_id_seq; Type: SEQUENCE OWNED BY; Schema: sgn_people; Owner: postgres -- ALTER SEQUENCE sgn_people.clone_il_mapping_bin_log_sp_clone_il_mapping_bin_log_id_seq OWNED BY sgn_people.clone_il_mapping_bin_log.sp_clone_il_mapping_bin_log_id; -- -- Name: clone_validation_log; Type: TABLE; Schema: sgn_people; Owner: postgres -- CREATE TABLE sgn_people.clone_validation_log ( clone_validation_log_id integer NOT NULL, sp_person_id integer, clone_id integer, val_overgo boolean DEFAULT false NOT NULL, val_bac_ends boolean DEFAULT false NOT NULL, is_current boolean DEFAULT true, created timestamp without time zone DEFAULT now() ); ALTER TABLE sgn_people.clone_validation_log OWNER TO postgres; -- -- Name: TABLE clone_validation_log; Type: COMMENT; Schema: sgn_people; Owner: postgres -- COMMENT ON TABLE sgn_people.clone_validation_log IS 'table showing which clones have been validated by a variety of methods. columns may be added to this without warning. details about each validation experiment should be written into the comment field on the detail page for the clone'; -- -- Name: clone_validation_log_clone_validation_log_id_seq; Type: SEQUENCE; Schema: sgn_people; Owner: postgres -- CREATE SEQUENCE sgn_people.clone_validation_log_clone_validation_log_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE sgn_people.clone_validation_log_clone_validation_log_id_seq OWNER TO postgres; -- -- Name: clone_validation_log_clone_validation_log_id_seq; Type: SEQUENCE OWNED BY; Schema: sgn_people; Owner: postgres -- ALTER SEQUENCE sgn_people.clone_validation_log_clone_validation_log_id_seq OWNED BY sgn_people.clone_validation_log.clone_validation_log_id; -- -- Name: clone_verification_log; Type: TABLE; Schema: sgn_people; Owner: postgres -- CREATE TABLE sgn_people.clone_verification_log ( clone_verification_log_id integer NOT NULL, sp_person_id integer, clone_id integer, ver_int_read boolean DEFAULT false NOT NULL, ver_bac_end boolean DEFAULT false NOT NULL, is_current boolean DEFAULT true, created timestamp without time zone DEFAULT now() ); ALTER TABLE sgn_people.clone_verification_log OWNER TO postgres; -- -- Name: TABLE clone_verification_log; Type: COMMENT; Schema: sgn_people; Owner: postgres -- COMMENT ON TABLE sgn_people.clone_verification_log IS 'table showing which clones have been validated by a variety of methods. columns may be added to this without warning. details about each validation experiment should be written into the comment field on the detail page for the clone'; -- -- Name: clone_verification_log_clone_verification_log_id_seq; Type: SEQUENCE; Schema: sgn_people; Owner: postgres -- CREATE SEQUENCE sgn_people.clone_verification_log_clone_verification_log_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE sgn_people.clone_verification_log_clone_verification_log_id_seq OWNER TO postgres; -- -- Name: clone_verification_log_clone_verification_log_id_seq; Type: SEQUENCE OWNED BY; Schema: sgn_people; Owner: postgres -- ALTER SEQUENCE sgn_people.clone_verification_log_clone_verification_log_id_seq OWNED BY sgn_people.clone_verification_log.clone_verification_log_id; -- -- Name: forum_post; Type: TABLE; Schema: sgn_people; Owner: postgres -- CREATE TABLE sgn_people.forum_post ( forum_post_id integer NOT NULL, person_id bigint, post_text text, parent_post_id bigint, forum_topic_id integer, subject character varying(255), post_time timestamp(0) without time zone DEFAULT ('now'::text)::timestamp(6) with time zone NOT NULL ); ALTER TABLE sgn_people.forum_post OWNER TO postgres; -- -- Name: forum_post_forum_post_id_seq; Type: SEQUENCE; Schema: sgn_people; Owner: postgres -- CREATE SEQUENCE sgn_people.forum_post_forum_post_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE sgn_people.forum_post_forum_post_id_seq OWNER TO postgres; -- -- Name: forum_post_forum_post_id_seq; Type: SEQUENCE OWNED BY; Schema: sgn_people; Owner: postgres -- ALTER SEQUENCE sgn_people.forum_post_forum_post_id_seq OWNED BY sgn_people.forum_post.forum_post_id; -- -- Name: forum_topic; Type: TABLE; Schema: sgn_people; Owner: postgres -- CREATE TABLE sgn_people.forum_topic ( forum_topic_id integer NOT NULL, person_id bigint, topic_name character varying(255), parent_topic bigint, topic_class character varying(255), page_type character varying(10), page_object_id bigint, topic_description text, sort_order character varying(10), CONSTRAINT person_id_check CHECK ((person_id IS NOT NULL)) ); ALTER TABLE sgn_people.forum_topic OWNER TO postgres; -- -- Name: forum_topic_forum_topic_id_seq; Type: SEQUENCE; Schema: sgn_people; Owner: postgres -- CREATE SEQUENCE sgn_people.forum_topic_forum_topic_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE sgn_people.forum_topic_forum_topic_id_seq OWNER TO postgres; -- -- Name: forum_topic_forum_topic_id_seq; Type: SEQUENCE OWNED BY; Schema: sgn_people; Owner: postgres -- ALTER SEQUENCE sgn_people.forum_topic_forum_topic_id_seq OWNED BY sgn_people.forum_topic.forum_topic_id; -- -- Name: list; Type: TABLE; Schema: sgn_people; Owner: postgres -- CREATE TABLE sgn_people.list ( list_id bigint NOT NULL, is_hotlist boolean DEFAULT false, sent_by integer, name character varying(128), description text, owner integer, type_id bigint, is_public boolean DEFAULT false NOT NULL ); ALTER TABLE sgn_people.list OWNER TO postgres; -- -- Name: list_item; Type: TABLE; Schema: sgn_people; Owner: postgres -- CREATE TABLE sgn_people.list_item ( list_item_id bigint NOT NULL, content text, list_id integer ); ALTER TABLE sgn_people.list_item OWNER TO postgres; -- -- Name: list_item_list_item_id_seq; Type: SEQUENCE; Schema: sgn_people; Owner: postgres -- CREATE SEQUENCE sgn_people.list_item_list_item_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE sgn_people.list_item_list_item_id_seq OWNER TO postgres; -- -- Name: list_item_list_item_id_seq; Type: SEQUENCE OWNED BY; Schema: sgn_people; Owner: postgres -- ALTER SEQUENCE sgn_people.list_item_list_item_id_seq OWNED BY sgn_people.list_item.list_item_id; -- -- Name: list_list_id_seq; Type: SEQUENCE; Schema: sgn_people; Owner: postgres -- CREATE SEQUENCE sgn_people.list_list_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE sgn_people.list_list_id_seq OWNER TO postgres; -- -- Name: list_list_id_seq; Type: SEQUENCE OWNED BY; Schema: sgn_people; Owner: postgres -- ALTER SEQUENCE sgn_people.list_list_id_seq OWNED BY sgn_people.list.list_id; -- -- Name: sp_clone_il_mapping_segment_log; Type: TABLE; Schema: sgn_people; Owner: postgres -- CREATE TABLE sgn_people.sp_clone_il_mapping_segment_log ( sp_clone_il_mapping_segment_log_id integer NOT NULL, individual_id integer, sp_person_id integer, clone_id integer, is_current boolean DEFAULT true, created timestamp without time zone DEFAULT now() ); ALTER TABLE sgn_people.sp_clone_il_mapping_segment_log OWNER TO postgres; -- -- Name: TABLE sp_clone_il_mapping_segment_log; Type: COMMENT; Schema: sgn_people; Owner: postgres -- COMMENT ON TABLE sgn_people.sp_clone_il_mapping_segment_log IS 'linking table showing which phenome.individual IL line a given clone has been mapped to. also provides a modification history with is_current and created columns'; -- -- Name: sp_clone_il_mapping_segment_l_sp_clone_il_mapping_segment_l_seq; Type: SEQUENCE; Schema: sgn_people; Owner: postgres -- CREATE SEQUENCE sgn_people.sp_clone_il_mapping_segment_l_sp_clone_il_mapping_segment_l_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE sgn_people.sp_clone_il_mapping_segment_l_sp_clone_il_mapping_segment_l_seq OWNER TO postgres; -- -- Name: sp_clone_il_mapping_segment_l_sp_clone_il_mapping_segment_l_seq; Type: SEQUENCE OWNED BY; Schema: sgn_people; Owner: postgres -- ALTER SEQUENCE sgn_people.sp_clone_il_mapping_segment_l_sp_clone_il_mapping_segment_l_seq OWNED BY sgn_people.sp_clone_il_mapping_segment_log.sp_clone_il_mapping_segment_log_id; -- -- Name: sp_dataset; Type: TABLE; Schema: sgn_people; Owner: postgres -- CREATE TABLE sgn_people.sp_dataset ( sp_dataset_id bigint NOT NULL, sp_person_id bigint, name character varying(255), description text, dataset jsonb, is_live boolean ); ALTER TABLE sgn_people.sp_dataset OWNER TO postgres; -- -- Name: sp_dataset_sp_dataset_id_seq; Type: SEQUENCE; Schema: sgn_people; Owner: postgres -- CREATE SEQUENCE sgn_people.sp_dataset_sp_dataset_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE sgn_people.sp_dataset_sp_dataset_id_seq OWNER TO postgres; -- -- Name: sp_dataset_sp_dataset_id_seq; Type: SEQUENCE OWNED BY; Schema: sgn_people; Owner: postgres -- ALTER SEQUENCE sgn_people.sp_dataset_sp_dataset_id_seq OWNED BY sgn_people.sp_dataset.sp_dataset_id; -- -- Name: sp_group; Type: TABLE; Schema: sgn_people; Owner: postgres -- CREATE TABLE sgn_people.sp_group ( sp_group_id integer NOT NULL, name character varying NOT NULL, description text ); ALTER TABLE sgn_people.sp_group OWNER TO postgres; -- -- Name: sp_group_member; Type: TABLE; Schema: sgn_people; Owner: postgres -- CREATE TABLE sgn_people.sp_group_member ( sp_person_id bigint, sp_group_id bigint, status character varying DEFAULT 'active'::character varying NOT NULL ); ALTER TABLE sgn_people.sp_group_member OWNER TO postgres; -- -- Name: sp_group_sp_group_id_seq; Type: SEQUENCE; Schema: sgn_people; Owner: postgres -- CREATE SEQUENCE sgn_people.sp_group_sp_group_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE sgn_people.sp_group_sp_group_id_seq OWNER TO postgres; -- -- Name: sp_group_sp_group_id_seq; Type: SEQUENCE OWNED BY; Schema: sgn_people; Owner: postgres -- ALTER SEQUENCE sgn_people.sp_group_sp_group_id_seq OWNED BY sgn_people.sp_group.sp_group_id; -- -- Name: sp_login_old; Type: TABLE; Schema: sgn_people; Owner: postgres -- CREATE TABLE sgn_people.sp_login_old ( sp_login_id integer NOT NULL, username character varying(255), private_email character varying(255), pending_email character varying(255), password character varying(255), confirm_code character varying(20), disabled bigint, user_type character varying(9) DEFAULT 'user'::character varying, CONSTRAINT chk_sp_login_user_type CHECK ((((user_type)::text = 'user'::text) OR ((user_type)::text = 'submitter'::text) OR ((user_type)::text = 'curator'::text) OR ((user_type)::text = 'sequencer'::text) OR ((user_type)::text = ''::text) OR (user_type IS NULL))) ); ALTER TABLE sgn_people.sp_login_old OWNER TO postgres; -- -- Name: sp_login_old_sp_login_id_seq; Type: SEQUENCE; Schema: sgn_people; Owner: postgres -- CREATE SEQUENCE sgn_people.sp_login_old_sp_login_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE sgn_people.sp_login_old_sp_login_id_seq OWNER TO postgres; -- -- Name: sp_login_old_sp_login_id_seq; Type: SEQUENCE OWNED BY; Schema: sgn_people; Owner: postgres -- ALTER SEQUENCE sgn_people.sp_login_old_sp_login_id_seq OWNED BY sgn_people.sp_login_old.sp_login_id; -- -- Name: sp_organisms; Type: TABLE; Schema: sgn_people; Owner: postgres -- CREATE TABLE sgn_people.sp_organisms ( organism_id integer NOT NULL, organism_name character varying(255) ); ALTER TABLE sgn_people.sp_organisms OWNER TO postgres; -- -- Name: sp_organisms_organism_id_seq; Type: SEQUENCE; Schema: sgn_people; Owner: postgres -- CREATE SEQUENCE sgn_people.sp_organisms_organism_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE sgn_people.sp_organisms_organism_id_seq OWNER TO postgres; -- -- Name: sp_organisms_organism_id_seq; Type: SEQUENCE OWNED BY; Schema: sgn_people; Owner: postgres -- ALTER SEQUENCE sgn_people.sp_organisms_organism_id_seq OWNED BY sgn_people.sp_organisms.organism_id; -- -- Name: sp_organization; Type: TABLE; Schema: sgn_people; Owner: postgres -- CREATE TABLE sgn_people.sp_organization ( sp_organization_id integer NOT NULL, name character varying(255) NOT NULL, department character varying(255), unit character varying(255), address text, country character varying(255), phone_number character varying(40), fax character varying(40), contact_email character varying(255), webpage character varying(255), description text, upload_account_name character varying(40), shortname character varying(20) NOT NULL, CONSTRAINT sp_organization_shortname_check CHECK (((shortname IS NULL) OR (lower((shortname)::text) = (shortname)::text))) ); ALTER TABLE sgn_people.sp_organization OWNER TO postgres; -- -- Name: sp_organization_person; Type: TABLE; Schema: sgn_people; Owner: postgres -- CREATE TABLE sgn_people.sp_organization_person ( sp_organization_person_id integer NOT NULL, sp_organization_id bigint, sp_person_id bigint ); ALTER TABLE sgn_people.sp_organization_person OWNER TO postgres; -- -- Name: sp_organization_person_sp_organization_person_id_seq; Type: SEQUENCE; Schema: sgn_people; Owner: postgres -- CREATE SEQUENCE sgn_people.sp_organization_person_sp_organization_person_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE sgn_people.sp_organization_person_sp_organization_person_id_seq OWNER TO postgres; -- -- Name: sp_organization_person_sp_organization_person_id_seq; Type: SEQUENCE OWNED BY; Schema: sgn_people; Owner: postgres -- ALTER SEQUENCE sgn_people.sp_organization_person_sp_organization_person_id_seq OWNED BY sgn_people.sp_organization_person.sp_organization_person_id; -- -- Name: sp_organization_sp_organization_id_seq; Type: SEQUENCE; Schema: sgn_people; Owner: postgres -- CREATE SEQUENCE sgn_people.sp_organization_sp_organization_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE sgn_people.sp_organization_sp_organization_id_seq OWNER TO postgres; -- -- Name: sp_organization_sp_organization_id_seq; Type: SEQUENCE OWNED BY; Schema: sgn_people; Owner: postgres -- ALTER SEQUENCE sgn_people.sp_organization_sp_organization_id_seq OWNED BY sgn_people.sp_organization.sp_organization_id; -- -- Name: sp_papers; Type: TABLE; Schema: sgn_people; Owner: postgres -- CREATE TABLE sgn_people.sp_papers ( sp_paper_id integer NOT NULL, person_id integer DEFAULT 0 NOT NULL, title text, author_list text, journal text, volume bigint, pages character varying(16), keywords text ); ALTER TABLE sgn_people.sp_papers OWNER TO postgres; -- -- Name: sp_papers_sp_paper_id_seq; Type: SEQUENCE; Schema: sgn_people; Owner: postgres -- CREATE SEQUENCE sgn_people.sp_papers_sp_paper_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE sgn_people.sp_papers_sp_paper_id_seq OWNER TO postgres; -- -- Name: sp_papers_sp_paper_id_seq; Type: SEQUENCE OWNED BY; Schema: sgn_people; Owner: postgres -- ALTER SEQUENCE sgn_people.sp_papers_sp_paper_id_seq OWNED BY sgn_people.sp_papers.sp_paper_id; -- -- Name: sp_person; Type: TABLE; Schema: sgn_people; Owner: postgres -- CREATE TABLE sgn_people.sp_person ( sp_person_id integer NOT NULL, censor bigint DEFAULT 0, salutation character varying(8), last_name character varying(63), first_name character varying(63), organization character varying(255), address text, country character varying(255), phone_number character varying(40), fax character varying(40), contact_email character varying(255), webpage character varying(255), research_keywords text, user_format character varying(8), research_interests text, formatted_interests text, contact_update date, research_update date, sp_login_id bigint, username character varying(255), private_email character varying(255), pending_email character varying(255), password character varying(255), confirm_code character varying(20), disabled character varying(20), user_type character varying(20) DEFAULT 'user'::character varying, cookie_string text, last_access_time timestamp without time zone DEFAULT now(), user_prefs character varying(4096), developer_settings character varying(4096), CONSTRAINT first_name_check CHECK ((first_name IS NOT NULL)), CONSTRAINT if_disabled_no_cookie_for_you CHECK ((((disabled IS NOT NULL) AND (cookie_string IS NULL)) OR (disabled IS NULL))), CONSTRAINT last_name_check CHECK ((last_name IS NOT NULL)), CONSTRAINT user_type_not_null CHECK ((user_type IS NOT NULL)) ); ALTER TABLE sgn_people.sp_person OWNER TO postgres; -- -- Name: sp_person_organisms; Type: TABLE; Schema: sgn_people; Owner: postgres -- CREATE TABLE sgn_people.sp_person_organisms ( sp_person_organisms_id integer NOT NULL, sp_person_id bigint, organism_id integer DEFAULT 0 NOT NULL ); ALTER TABLE sgn_people.sp_person_organisms OWNER TO postgres; -- -- Name: sp_person_organisms_sp_person_organisms_id_seq; Type: SEQUENCE; Schema: sgn_people; Owner: postgres -- CREATE SEQUENCE sgn_people.sp_person_organisms_sp_person_organisms_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE sgn_people.sp_person_organisms_sp_person_organisms_id_seq OWNER TO postgres; -- -- Name: sp_person_organisms_sp_person_organisms_id_seq; Type: SEQUENCE OWNED BY; Schema: sgn_people; Owner: postgres -- ALTER SEQUENCE sgn_people.sp_person_organisms_sp_person_organisms_id_seq OWNED BY sgn_people.sp_person_organisms.sp_person_organisms_id; -- -- Name: sp_person_roles; Type: TABLE; Schema: sgn_people; Owner: postgres -- CREATE TABLE sgn_people.sp_person_roles ( sp_person_role_id integer NOT NULL, sp_person_id bigint, sp_role_id bigint ); ALTER TABLE sgn_people.sp_person_roles OWNER TO postgres; -- -- Name: sp_person_roles_sp_person_role_id_seq; Type: SEQUENCE; Schema: sgn_people; Owner: postgres -- CREATE SEQUENCE sgn_people.sp_person_roles_sp_person_role_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE sgn_people.sp_person_roles_sp_person_role_id_seq OWNER TO postgres; -- -- Name: sp_person_roles_sp_person_role_id_seq; Type: SEQUENCE OWNED BY; Schema: sgn_people; Owner: postgres -- ALTER SEQUENCE sgn_people.sp_person_roles_sp_person_role_id_seq OWNED BY sgn_people.sp_person_roles.sp_person_role_id; -- -- Name: sp_person_sp_person_id_seq; Type: SEQUENCE; Schema: sgn_people; Owner: postgres -- CREATE SEQUENCE sgn_people.sp_person_sp_person_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE sgn_people.sp_person_sp_person_id_seq OWNER TO postgres; -- -- Name: sp_person_sp_person_id_seq; Type: SEQUENCE OWNED BY; Schema: sgn_people; Owner: postgres -- ALTER SEQUENCE sgn_people.sp_person_sp_person_id_seq OWNED BY sgn_people.sp_person.sp_person_id; -- -- Name: sp_project; Type: TABLE; Schema: sgn_people; Owner: postgres -- CREATE TABLE sgn_people.sp_project ( sp_project_id integer NOT NULL, name character varying(80), description text ); ALTER TABLE sgn_people.sp_project OWNER TO postgres; -- -- Name: sp_project_il_mapping_clone_log; Type: TABLE; Schema: sgn_people; Owner: postgres -- CREATE TABLE sgn_people.sp_project_il_mapping_clone_log ( sp_project_il_mapping_clone_log_id integer NOT NULL, sp_project_id integer, sp_person_id integer, clone_id integer, is_current boolean DEFAULT true, created timestamp without time zone DEFAULT now() ); ALTER TABLE sgn_people.sp_project_il_mapping_clone_log OWNER TO postgres; -- -- Name: TABLE sp_project_il_mapping_clone_log; Type: COMMENT; Schema: sgn_people; Owner: postgres -- COMMENT ON TABLE sgn_people.sp_project_il_mapping_clone_log IS 'linking table showing which sp_project is currently assigned to map a given clone to the zamir IL lines. also provides a modification history with is_current and created columns'; -- -- Name: sp_project_il_mapping_clone_l_sp_project_il_mapping_clone_l_seq; Type: SEQUENCE; Schema: sgn_people; Owner: postgres -- CREATE SEQUENCE sgn_people.sp_project_il_mapping_clone_l_sp_project_il_mapping_clone_l_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE sgn_people.sp_project_il_mapping_clone_l_sp_project_il_mapping_clone_l_seq OWNER TO postgres; -- -- Name: sp_project_il_mapping_clone_l_sp_project_il_mapping_clone_l_seq; Type: SEQUENCE OWNED BY; Schema: sgn_people; Owner: postgres -- ALTER SEQUENCE sgn_people.sp_project_il_mapping_clone_l_sp_project_il_mapping_clone_l_seq OWNED BY sgn_people.sp_project_il_mapping_clone_log.sp_project_il_mapping_clone_log_id; -- -- Name: sp_project_organization; Type: TABLE; Schema: sgn_people; Owner: postgres -- CREATE TABLE sgn_people.sp_project_organization ( sp_project_organization_id integer NOT NULL, sp_project_id bigint, sp_organization_id bigint ); ALTER TABLE sgn_people.sp_project_organization OWNER TO postgres; -- -- Name: sp_project_organization_sp_project_organization_id_seq; Type: SEQUENCE; Schema: sgn_people; Owner: postgres -- CREATE SEQUENCE sgn_people.sp_project_organization_sp_project_organization_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE sgn_people.sp_project_organization_sp_project_organization_id_seq OWNER TO postgres; -- -- Name: sp_project_organization_sp_project_organization_id_seq; Type: SEQUENCE OWNED BY; Schema: sgn_people; Owner: postgres -- ALTER SEQUENCE sgn_people.sp_project_organization_sp_project_organization_id_seq OWNED BY sgn_people.sp_project_organization.sp_project_organization_id; -- -- Name: sp_project_person; Type: TABLE; Schema: sgn_people; Owner: postgres -- CREATE TABLE sgn_people.sp_project_person ( sp_project_person_id integer NOT NULL, sp_project_id bigint, sp_person_id bigint, type character varying(6), CONSTRAINT chk_sp_project_person_type CHECK ((((type)::text = 'PI'::text) OR ((type)::text = 'co-PI'::text) OR ((type)::text = 'Member'::text) OR ((type)::text = ''::text) OR (type IS NULL))) ); ALTER TABLE sgn_people.sp_project_person OWNER TO postgres; -- -- Name: sp_project_person_sp_project_person_id_seq; Type: SEQUENCE; Schema: sgn_people; Owner: postgres -- CREATE SEQUENCE sgn_people.sp_project_person_sp_project_person_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE sgn_people.sp_project_person_sp_project_person_id_seq OWNER TO postgres; -- -- Name: sp_project_person_sp_project_person_id_seq; Type: SEQUENCE OWNED BY; Schema: sgn_people; Owner: postgres -- ALTER SEQUENCE sgn_people.sp_project_person_sp_project_person_id_seq OWNED BY sgn_people.sp_project_person.sp_project_person_id; -- -- Name: sp_project_sp_project_id_seq; Type: SEQUENCE; Schema: sgn_people; Owner: postgres -- CREATE SEQUENCE sgn_people.sp_project_sp_project_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE sgn_people.sp_project_sp_project_id_seq OWNER TO postgres; -- -- Name: sp_project_sp_project_id_seq; Type: SEQUENCE OWNED BY; Schema: sgn_people; Owner: postgres -- ALTER SEQUENCE sgn_people.sp_project_sp_project_id_seq OWNED BY sgn_people.sp_project.sp_project_id; -- -- Name: sp_roles; Type: TABLE; Schema: sgn_people; Owner: postgres -- CREATE TABLE sgn_people.sp_roles ( sp_role_id integer NOT NULL, name character varying(20) ); ALTER TABLE sgn_people.sp_roles OWNER TO postgres; -- -- Name: sp_roles_sp_role_id_seq; Type: SEQUENCE; Schema: sgn_people; Owner: postgres -- CREATE SEQUENCE sgn_people.sp_roles_sp_role_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE sgn_people.sp_roles_sp_role_id_seq OWNER TO postgres; -- -- Name: sp_roles_sp_role_id_seq; Type: SEQUENCE OWNED BY; Schema: sgn_people; Owner: postgres -- ALTER SEQUENCE sgn_people.sp_roles_sp_role_id_seq OWNED BY sgn_people.sp_roles.sp_role_id; -- -- Name: user_map; Type: TABLE; Schema: sgn_people; Owner: postgres -- CREATE TABLE sgn_people.user_map ( user_map_id integer NOT NULL, short_name character varying(40), long_name character varying(100), abstract text, is_public boolean, parent1_accession_id bigint, parent1 character varying(100), parent2_accession_id bigint, parent2 character varying(100), sp_person_id bigint, obsolete boolean, modified_date timestamp with time zone, create_date timestamp with time zone ); ALTER TABLE sgn_people.user_map OWNER TO postgres; -- -- Name: user_map_data; Type: TABLE; Schema: sgn_people; Owner: postgres -- CREATE TABLE sgn_people.user_map_data ( user_map_data_id integer NOT NULL, user_map_id bigint, marker_name character varying(50), protocol character varying(50), marker_id bigint, linkage_group character varying(20), "position" numeric(20,4), confidence character varying(20), sp_person_id bigint, obsolete boolean, modified_date timestamp with time zone, create_date timestamp with time zone ); ALTER TABLE sgn_people.user_map_data OWNER TO postgres; -- -- Name: user_map_data_user_map_data_id_seq; Type: SEQUENCE; Schema: sgn_people; Owner: postgres -- CREATE SEQUENCE sgn_people.user_map_data_user_map_data_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE sgn_people.user_map_data_user_map_data_id_seq OWNER TO postgres; -- -- Name: user_map_data_user_map_data_id_seq; Type: SEQUENCE OWNED BY; Schema: sgn_people; Owner: postgres -- ALTER SEQUENCE sgn_people.user_map_data_user_map_data_id_seq OWNED BY sgn_people.user_map_data.user_map_data_id; -- -- Name: user_map_user_map_id_seq; Type: SEQUENCE; Schema: sgn_people; Owner: postgres -- CREATE SEQUENCE sgn_people.user_map_user_map_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE sgn_people.user_map_user_map_id_seq OWNER TO postgres; -- -- Name: user_map_user_map_id_seq; Type: SEQUENCE OWNED BY; Schema: sgn_people; Owner: postgres -- ALTER SEQUENCE sgn_people.user_map_user_map_id_seq OWNED BY sgn_people.user_map.user_map_id; -- -- Name: facility; Type: TABLE; Schema: sgn_submit; Owner: postgres -- CREATE TABLE sgn_submit.facility ( facility_id integer NOT NULL, submit_user_id integer, facility_moniker character varying(20), facility_shortname character varying(12), facility_name character varying(80), facility_contact character varying(80), facility_address text, funding_agency character varying(80), funding_comment text, sequencing_primers character varying(80), machine character varying(40), chemistry character varying(40), attribution_display text, sp_person_id integer ); ALTER TABLE sgn_submit.facility OWNER TO postgres; -- -- Name: facility_facility_id_seq; Type: SEQUENCE; Schema: sgn_submit; Owner: postgres -- CREATE SEQUENCE sgn_submit.facility_facility_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE sgn_submit.facility_facility_id_seq OWNER TO postgres; -- -- Name: facility_facility_id_seq; Type: SEQUENCE OWNED BY; Schema: sgn_submit; Owner: postgres -- ALTER SEQUENCE sgn_submit.facility_facility_id_seq OWNED BY sgn_submit.facility.facility_id; -- -- Name: library; Type: TABLE; Schema: sgn_submit; Owner: postgres -- CREATE TABLE sgn_submit.library ( library_id integer NOT NULL, type bigint, submit_user_id integer, library_name character varying(80), library_shortname character varying(16), authors character varying(255), organism_id integer, cultivar character varying(255), accession character varying(255), tissue character varying(255), development_stage character varying(255), treatment_conditions text, cloning_host character varying(80), vector character varying(80), rs1 character varying(12), rs2 character varying(12), cloning_kit character varying(255), comments text, contact_information text, order_routing_id bigint, sp_person_id integer, forward_adapter character varying, reverse_adapter character varying ); ALTER TABLE sgn_submit.library OWNER TO postgres; -- -- Name: library_library_id_seq; Type: SEQUENCE; Schema: sgn_submit; Owner: postgres -- CREATE SEQUENCE sgn_submit.library_library_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE sgn_submit.library_library_id_seq OWNER TO postgres; -- -- Name: library_library_id_seq; Type: SEQUENCE OWNED BY; Schema: sgn_submit; Owner: postgres -- ALTER SEQUENCE sgn_submit.library_library_id_seq OWNED BY sgn_submit.library.library_id; -- -- Name: seqread; Type: TABLE; Schema: sgn_submit; Owner: postgres -- CREATE TABLE sgn_submit.seqread ( submit_read_id integer NOT NULL, library_id integer DEFAULT 0 NOT NULL, facility_id integer DEFAULT 0 NOT NULL, trace_name character varying(80), clone_name character varying(80), direction character(1), location character varying(255), read_id integer ); ALTER TABLE sgn_submit.seqread OWNER TO postgres; -- -- Name: seqread_submit_read_id_seq; Type: SEQUENCE; Schema: sgn_submit; Owner: postgres -- CREATE SEQUENCE sgn_submit.seqread_submit_read_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE sgn_submit.seqread_submit_read_id_seq OWNER TO postgres; -- -- Name: seqread_submit_read_id_seq; Type: SEQUENCE OWNED BY; Schema: sgn_submit; Owner: postgres -- ALTER SEQUENCE sgn_submit.seqread_submit_read_id_seq OWNED BY sgn_submit.seqread.submit_read_id; -- -- Name: submit_user; Type: TABLE; Schema: sgn_submit; Owner: postgres -- CREATE TABLE sgn_submit.submit_user ( submit_user_id integer NOT NULL, submit_code character varying(6), username character varying(20), password character varying(20), name character varying(80), email_address character varying(255), phone_number character varying(20), organization character varying(80), contact_information text, disabled bigint, confirm_code character varying(16), sp_person_id integer ); ALTER TABLE sgn_submit.submit_user OWNER TO postgres; -- -- Name: submit_user_submit_user_id_seq; Type: SEQUENCE; Schema: sgn_submit; Owner: postgres -- CREATE SEQUENCE sgn_submit.submit_user_submit_user_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE sgn_submit.submit_user_submit_user_id_seq OWNER TO postgres; -- -- Name: submit_user_submit_user_id_seq; Type: SEQUENCE OWNED BY; Schema: sgn_submit; Owner: postgres -- ALTER SEQUENCE sgn_submit.submit_user_submit_user_id_seq OWNED BY sgn_submit.submit_user.submit_user_id; -- -- Name: fattribute; Type: TABLE; Schema: tomato_gff; Owner: postgres -- CREATE TABLE tomato_gff.fattribute ( fattribute_id integer NOT NULL, fattribute_name character varying(255) DEFAULT ''::character varying NOT NULL ); ALTER TABLE tomato_gff.fattribute OWNER TO postgres; -- -- Name: fattribute_fattribute_id_seq; Type: SEQUENCE; Schema: tomato_gff; Owner: postgres -- CREATE SEQUENCE tomato_gff.fattribute_fattribute_id_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE tomato_gff.fattribute_fattribute_id_seq OWNER TO postgres; -- -- Name: fattribute_fattribute_id_seq; Type: SEQUENCE OWNED BY; Schema: tomato_gff; Owner: postgres -- ALTER SEQUENCE tomato_gff.fattribute_fattribute_id_seq OWNED BY tomato_gff.fattribute.fattribute_id; -- -- Name: fattribute_to_feature; Type: TABLE; Schema: tomato_gff; Owner: postgres -- CREATE TABLE tomato_gff.fattribute_to_feature ( fid integer DEFAULT 0 NOT NULL, fattribute_id integer DEFAULT 0 NOT NULL, fattribute_value text ); ALTER TABLE tomato_gff.fattribute_to_feature OWNER TO postgres; -- -- Name: fdata; Type: TABLE; Schema: tomato_gff; Owner: postgres -- CREATE TABLE tomato_gff.fdata ( fid integer NOT NULL, fref character varying(100) DEFAULT ''::character varying NOT NULL, fstart integer DEFAULT 0 NOT NULL, fstop integer DEFAULT 0 NOT NULL, fbin double precision DEFAULT (0)::double precision NOT NULL, ftypeid integer DEFAULT 0 NOT NULL, fscore double precision, fstrand character varying(3), fphase character varying(3), gid integer DEFAULT 0 NOT NULL, ftarget_start integer, ftarget_stop integer, CONSTRAINT chk_fdata_fphase CHECK ((((fphase)::text = '0'::text) OR ((fphase)::text = '1'::text) OR ((fphase)::text = '2'::text))), CONSTRAINT chk_fdata_fstrand CHECK ((((fstrand)::text = '+'::text) OR ((fstrand)::text = '-'::text))) ); ALTER TABLE tomato_gff.fdata OWNER TO postgres; -- -- Name: fdata_fid_seq; Type: SEQUENCE; Schema: tomato_gff; Owner: postgres -- CREATE SEQUENCE tomato_gff.fdata_fid_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE tomato_gff.fdata_fid_seq OWNER TO postgres; -- -- Name: fdata_fid_seq; Type: SEQUENCE OWNED BY; Schema: tomato_gff; Owner: postgres -- ALTER SEQUENCE tomato_gff.fdata_fid_seq OWNED BY tomato_gff.fdata.fid; -- -- Name: fdna; Type: TABLE; Schema: tomato_gff; Owner: postgres -- CREATE TABLE tomato_gff.fdna ( fref character varying(100) DEFAULT ''::character varying NOT NULL, foffset integer DEFAULT 0 NOT NULL, fdna bytea ); ALTER TABLE tomato_gff.fdna OWNER TO postgres; -- -- Name: fgroup; Type: TABLE; Schema: tomato_gff; Owner: postgres -- CREATE TABLE tomato_gff.fgroup ( gid integer NOT NULL, gclass character varying(100), gname character varying(100) ); ALTER TABLE tomato_gff.fgroup OWNER TO postgres; -- -- Name: fgroup_gid_seq; Type: SEQUENCE; Schema: tomato_gff; Owner: postgres -- CREATE SEQUENCE tomato_gff.fgroup_gid_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE tomato_gff.fgroup_gid_seq OWNER TO postgres; -- -- Name: fgroup_gid_seq; Type: SEQUENCE OWNED BY; Schema: tomato_gff; Owner: postgres -- ALTER SEQUENCE tomato_gff.fgroup_gid_seq OWNED BY tomato_gff.fgroup.gid; -- -- Name: fmeta; Type: TABLE; Schema: tomato_gff; Owner: postgres -- CREATE TABLE tomato_gff.fmeta ( fname character varying(255) DEFAULT ''::character varying NOT NULL, fvalue character varying(255) DEFAULT ''::character varying NOT NULL ); ALTER TABLE tomato_gff.fmeta OWNER TO postgres; -- -- Name: ftype; Type: TABLE; Schema: tomato_gff; Owner: postgres -- CREATE TABLE tomato_gff.ftype ( ftypeid integer NOT NULL, fmethod character varying(100) DEFAULT ''::character varying NOT NULL, fsource character varying(100) ); ALTER TABLE tomato_gff.ftype OWNER TO postgres; -- -- Name: ftype_ftypeid_seq; Type: SEQUENCE; Schema: tomato_gff; Owner: postgres -- CREATE SEQUENCE tomato_gff.ftype_ftypeid_seq START WITH 1 INCREMENT BY 1 NO MINVALUE NO MAXVALUE CACHE 1; ALTER TABLE tomato_gff.ftype_ftypeid_seq OWNER TO postgres; -- -- Name: ftype_ftypeid_seq; Type: SEQUENCE OWNED BY; Schema: tomato_gff; Owner: postgres -- ALTER SEQUENCE tomato_gff.ftype_ftypeid_seq OWNED BY tomato_gff.ftype.ftypeid; -- -- Name: annotation annot_id; Type: DEFAULT; Schema: annotation; Owner: postgres -- ALTER TABLE ONLY annotation.annotation ALTER COLUMN annot_id SET DEFAULT nextval('annotation.annotation_annot_id_seq'::regclass); -- -- Name: comment comment_id; Type: DEFAULT; Schema: annotation; Owner: postgres -- ALTER TABLE ONLY annotation.comment ALTER COLUMN comment_id SET DEFAULT nextval('annotation.comment_comment_id_seq'::regclass); -- -- Name: comp_analysis ca_id; Type: DEFAULT; Schema: annotation; Owner: postgres -- ALTER TABLE ONLY annotation.comp_analysis ALTER COLUMN ca_id SET DEFAULT nextval('annotation.comp_analysis_ca_id_seq'::regclass); -- -- Name: dblist db_id; Type: DEFAULT; Schema: annotation; Owner: postgres -- ALTER TABLE ONLY annotation.dblist ALTER COLUMN db_id SET DEFAULT nextval('annotation.dblist_db_id_seq'::regclass); -- -- Name: dbxref dbxref_id; Type: DEFAULT; Schema: annotation; Owner: postgres -- ALTER TABLE ONLY annotation.dbxref ALTER COLUMN dbxref_id SET DEFAULT nextval('annotation.dbxref_dbxref_id_seq'::regclass); -- -- Name: feature_set f_set_id; Type: DEFAULT; Schema: annotation; Owner: postgres -- ALTER TABLE ONLY annotation.feature_set ALTER COLUMN f_set_id SET DEFAULT nextval('annotation.feature_set_f_set_id_seq'::regclass); -- -- Name: feature_span f_span_id; Type: DEFAULT; Schema: annotation; Owner: postgres -- ALTER TABLE ONLY annotation.feature_span ALTER COLUMN f_span_id SET DEFAULT nextval('annotation.feature_span_f_span_id_seq'::regclass); -- -- Name: organism organism_id; Type: DEFAULT; Schema: annotation; Owner: postgres -- ALTER TABLE ONLY annotation.organism ALTER COLUMN organism_id SET DEFAULT nextval('annotation.organism_organism_id_seq'::regclass); -- -- Name: output output_id; Type: DEFAULT; Schema: annotation; Owner: postgres -- ALTER TABLE ONLY annotation.output ALTER COLUMN output_id SET DEFAULT nextval('annotation.output_output_id_seq'::regclass); -- -- Name: person person_id; Type: DEFAULT; Schema: annotation; Owner: postgres -- ALTER TABLE ONLY annotation.person ALTER COLUMN person_id SET DEFAULT nextval('annotation.person_person_id_seq'::regclass); -- -- Name: program program_id; Type: DEFAULT; Schema: annotation; Owner: postgres -- ALTER TABLE ONLY annotation.program ALTER COLUMN program_id SET DEFAULT nextval('annotation.program_program_id_seq'::regclass); -- -- Name: property property_id; Type: DEFAULT; Schema: annotation; Owner: postgres -- ALTER TABLE ONLY annotation.property ALTER COLUMN property_id SET DEFAULT nextval('annotation.property_property_id_seq'::regclass); -- -- Name: result_set r_set_id; Type: DEFAULT; Schema: annotation; Owner: postgres -- ALTER TABLE ONLY annotation.result_set ALTER COLUMN r_set_id SET DEFAULT nextval('annotation.result_set_r_set_id_seq'::regclass); -- -- Name: result_span r_span_id; Type: DEFAULT; Schema: annotation; Owner: postgres -- ALTER TABLE ONLY annotation.result_span ALTER COLUMN r_span_id SET DEFAULT nextval('annotation.result_span_r_span_id_seq'::regclass); -- -- Name: seq seq_id; Type: DEFAULT; Schema: annotation; Owner: postgres -- ALTER TABLE ONLY annotation.seq ALTER COLUMN seq_id SET DEFAULT nextval('annotation.seq_seq_id_seq'::regclass); -- -- Name: seq_error seq_err_id; Type: DEFAULT; Schema: annotation; Owner: postgres -- ALTER TABLE ONLY annotation.seq_error ALTER COLUMN seq_err_id SET DEFAULT nextval('annotation.seq_error_seq_err_id_seq'::regclass); -- -- Name: seq_relationship seq_rel_id; Type: DEFAULT; Schema: annotation; Owner: postgres -- ALTER TABLE ONLY annotation.seq_relationship ALTER COLUMN seq_rel_id SET DEFAULT nextval('annotation.seq_relationship_seq_rel_id_seq'::regclass); -- -- Name: synonym synonym_id; Type: DEFAULT; Schema: annotation; Owner: postgres -- ALTER TABLE ONLY annotation.synonym ALTER COLUMN synonym_id SET DEFAULT nextval('annotation.synonym_synonym_id_seq'::regclass); -- -- Name: bs_protocol protocol_id; Type: DEFAULT; Schema: biosource; Owner: postgres -- ALTER TABLE ONLY biosource.bs_protocol ALTER COLUMN protocol_id SET DEFAULT nextval('biosource.bs_protocol_protocol_id_seq'::regclass); -- -- Name: bs_protocol_pub protocol_pub_id; Type: DEFAULT; Schema: biosource; Owner: postgres -- ALTER TABLE ONLY biosource.bs_protocol_pub ALTER COLUMN protocol_pub_id SET DEFAULT nextval('biosource.bs_protocol_pub_protocol_pub_id_seq'::regclass); -- -- Name: bs_protocol_step protocol_step_id; Type: DEFAULT; Schema: biosource; Owner: postgres -- ALTER TABLE ONLY biosource.bs_protocol_step ALTER COLUMN protocol_step_id SET DEFAULT nextval('biosource.bs_protocol_step_protocol_step_id_seq'::regclass); -- -- Name: bs_protocol_step_dbxref protocol_step_dbxref_id; Type: DEFAULT; Schema: biosource; Owner: postgres -- ALTER TABLE ONLY biosource.bs_protocol_step_dbxref ALTER COLUMN protocol_step_dbxref_id SET DEFAULT nextval('biosource.bs_protocol_step_dbxref_protocol_step_dbxref_id_seq'::regclass); -- -- Name: bs_sample sample_id; Type: DEFAULT; Schema: biosource; Owner: postgres -- ALTER TABLE ONLY biosource.bs_sample ALTER COLUMN sample_id SET DEFAULT nextval('biosource.bs_sample_sample_id_seq'::regclass); -- -- Name: bs_sample_cvterm sample_cvterm_id; Type: DEFAULT; Schema: biosource; Owner: postgres -- ALTER TABLE ONLY biosource.bs_sample_cvterm ALTER COLUMN sample_cvterm_id SET DEFAULT nextval('biosource.bs_sample_cvterm_sample_cvterm_id_seq'::regclass); -- -- Name: bs_sample_dbxref sample_dbxref_id; Type: DEFAULT; Schema: biosource; Owner: postgres -- ALTER TABLE ONLY biosource.bs_sample_dbxref ALTER COLUMN sample_dbxref_id SET DEFAULT nextval('biosource.bs_sample_dbxref_sample_dbxref_id_seq'::regclass); -- -- Name: bs_sample_element sample_element_id; Type: DEFAULT; Schema: biosource; Owner: postgres -- ALTER TABLE ONLY biosource.bs_sample_element ALTER COLUMN sample_element_id SET DEFAULT nextval('biosource.bs_sample_element_sample_element_id_seq'::regclass); -- -- Name: bs_sample_element_cvterm sample_element_cvterm_id; Type: DEFAULT; Schema: biosource; Owner: postgres -- ALTER TABLE ONLY biosource.bs_sample_element_cvterm ALTER COLUMN sample_element_cvterm_id SET DEFAULT nextval('biosource.bs_sample_element_cvterm_sample_element_cvterm_id_seq'::regclass); -- -- Name: bs_sample_element_dbxref sample_element_dbxref_id; Type: DEFAULT; Schema: biosource; Owner: postgres -- ALTER TABLE ONLY biosource.bs_sample_element_dbxref ALTER COLUMN sample_element_dbxref_id SET DEFAULT nextval('biosource.bs_sample_element_dbxref_sample_element_dbxref_id_seq'::regclass); -- -- Name: bs_sample_element_file sample_element_file_id; Type: DEFAULT; Schema: biosource; Owner: postgres -- ALTER TABLE ONLY biosource.bs_sample_element_file ALTER COLUMN sample_element_file_id SET DEFAULT nextval('biosource.bs_sample_element_file_sample_element_file_id_seq'::regclass); -- -- Name: bs_sample_element_relation sample_element_relation_id; Type: DEFAULT; Schema: biosource; Owner: postgres -- ALTER TABLE ONLY biosource.bs_sample_element_relation ALTER COLUMN sample_element_relation_id SET DEFAULT nextval('biosource.bs_sample_element_relation_sample_element_relation_id_seq'::regclass); -- -- Name: bs_sample_file sample_file_id; Type: DEFAULT; Schema: biosource; Owner: postgres -- ALTER TABLE ONLY biosource.bs_sample_file ALTER COLUMN sample_file_id SET DEFAULT nextval('biosource.bs_sample_file_sample_file_id_seq'::regclass); -- -- Name: bs_sample_pub sample_pub_id; Type: DEFAULT; Schema: biosource; Owner: postgres -- ALTER TABLE ONLY biosource.bs_sample_pub ALTER COLUMN sample_pub_id SET DEFAULT nextval('biosource.bs_sample_pub_sample_pub_id_seq'::regclass); -- -- Name: bs_sample_relationship sample_relationship_id; Type: DEFAULT; Schema: biosource; Owner: postgres -- ALTER TABLE ONLY biosource.bs_sample_relationship ALTER COLUMN sample_relationship_id SET DEFAULT nextval('biosource.bs_sample_relationship_sample_relationship_id_seq'::regclass); -- -- Name: bs_tool tool_id; Type: DEFAULT; Schema: biosource; Owner: postgres -- ALTER TABLE ONLY biosource.bs_tool ALTER COLUMN tool_id SET DEFAULT nextval('biosource.bs_tool_tool_id_seq'::regclass); -- -- Name: bs_tool_pub tool_pub_id; Type: DEFAULT; Schema: biosource; Owner: postgres -- ALTER TABLE ONLY biosource.bs_tool_pub ALTER COLUMN tool_pub_id SET DEFAULT nextval('biosource.bs_tool_pub_tool_pub_id_seq'::regclass); -- -- Name: ge_cluster_analysis cluster_analysis_id; Type: DEFAULT; Schema: gem; Owner: postgres -- ALTER TABLE ONLY gem.ge_cluster_analysis ALTER COLUMN cluster_analysis_id SET DEFAULT nextval('gem.ge_cluster_analysis_cluster_analysis_id_seq'::regclass); -- -- Name: ge_cluster_member cluster_member_id; Type: DEFAULT; Schema: gem; Owner: postgres -- ALTER TABLE ONLY gem.ge_cluster_member ALTER COLUMN cluster_member_id SET DEFAULT nextval('gem.ge_cluster_member_cluster_member_id_seq'::regclass); -- -- Name: ge_cluster_profile cluster_profile_id; Type: DEFAULT; Schema: gem; Owner: postgres -- ALTER TABLE ONLY gem.ge_cluster_profile ALTER COLUMN cluster_profile_id SET DEFAULT nextval('gem.ge_cluster_profile_cluster_profile_id_seq'::regclass); -- -- Name: ge_correlation_analysis correlation_analysis_id; Type: DEFAULT; Schema: gem; Owner: postgres -- ALTER TABLE ONLY gem.ge_correlation_analysis ALTER COLUMN correlation_analysis_id SET DEFAULT nextval('gem.ge_correlation_analysis_correlation_analysis_id_seq'::regclass); -- -- Name: ge_correlation_member correlation_member_id; Type: DEFAULT; Schema: gem; Owner: postgres -- ALTER TABLE ONLY gem.ge_correlation_member ALTER COLUMN correlation_member_id SET DEFAULT nextval('gem.ge_correlation_member_correlation_member_id_seq'::regclass); -- -- Name: ge_data_analysis_process data_analysis_process_id; Type: DEFAULT; Schema: gem; Owner: postgres -- ALTER TABLE ONLY gem.ge_data_analysis_process ALTER COLUMN data_analysis_process_id SET DEFAULT nextval('gem.ge_data_analysis_process_data_analysis_process_id_seq'::regclass); -- -- Name: ge_diff_expression diff_expression_id; Type: DEFAULT; Schema: gem; Owner: postgres -- ALTER TABLE ONLY gem.ge_diff_expression ALTER COLUMN diff_expression_id SET DEFAULT nextval('gem.ge_diff_expression_diff_expression_id_seq'::regclass); -- -- Name: ge_experiment experiment_id; Type: DEFAULT; Schema: gem; Owner: postgres -- ALTER TABLE ONLY gem.ge_experiment ALTER COLUMN experiment_id SET DEFAULT nextval('gem.ge_experiment_experiment_id_seq'::regclass); -- -- Name: ge_experiment_analysis_group experiment_analysis_group_id; Type: DEFAULT; Schema: gem; Owner: postgres -- ALTER TABLE ONLY gem.ge_experiment_analysis_group ALTER COLUMN experiment_analysis_group_id SET DEFAULT nextval('gem.ge_experiment_analysis_group_experiment_analysis_group_id_seq'::regclass); -- -- Name: ge_experiment_analysis_member experiment_analysis_member_id; Type: DEFAULT; Schema: gem; Owner: postgres -- ALTER TABLE ONLY gem.ge_experiment_analysis_member ALTER COLUMN experiment_analysis_member_id SET DEFAULT nextval('gem.ge_experiment_analysis_member_experiment_analysis_member_id_seq'::regclass); -- -- Name: ge_experiment_dbxref experiment_dbxref_id; Type: DEFAULT; Schema: gem; Owner: postgres -- ALTER TABLE ONLY gem.ge_experiment_dbxref ALTER COLUMN experiment_dbxref_id SET DEFAULT nextval('gem.ge_experiment_dbxref_experiment_dbxref_id_seq'::regclass); -- -- Name: ge_experimental_design experimental_design_id; Type: DEFAULT; Schema: gem; Owner: postgres -- ALTER TABLE ONLY gem.ge_experimental_design ALTER COLUMN experimental_design_id SET DEFAULT nextval('gem.ge_experimental_design_experimental_design_id_seq'::regclass); -- -- Name: ge_experimental_design_dbxref experimental_design_dbxref_id; Type: DEFAULT; Schema: gem; Owner: postgres -- ALTER TABLE ONLY gem.ge_experimental_design_dbxref ALTER COLUMN experimental_design_dbxref_id SET DEFAULT nextval('gem.ge_experimental_design_dbxref_experimental_design_dbxref_id_seq'::regclass); -- -- Name: ge_experimental_design_pub experimental_design_pub_id; Type: DEFAULT; Schema: gem; Owner: postgres -- ALTER TABLE ONLY gem.ge_experimental_design_pub ALTER COLUMN experimental_design_pub_id SET DEFAULT nextval('gem.ge_experimental_design_pub_experimental_design_pub_id_seq'::regclass); -- -- Name: ge_expression_by_experiment expression_by_experiment_id; Type: DEFAULT; Schema: gem; Owner: postgres -- ALTER TABLE ONLY gem.ge_expression_by_experiment ALTER COLUMN expression_by_experiment_id SET DEFAULT nextval('gem.ge_expression_by_experiment_expression_by_experiment_id_seq'::regclass); -- -- Name: ge_fluorescanning fluorescanning_id; Type: DEFAULT; Schema: gem; Owner: postgres -- ALTER TABLE ONLY gem.ge_fluorescanning ALTER COLUMN fluorescanning_id SET DEFAULT nextval('gem.ge_fluorescanning_fluorescanning_id_seq'::regclass); -- -- Name: ge_hybridization hybridization_id; Type: DEFAULT; Schema: gem; Owner: postgres -- ALTER TABLE ONLY gem.ge_hybridization ALTER COLUMN hybridization_id SET DEFAULT nextval('gem.ge_hybridization_hybridization_id_seq'::regclass); -- -- Name: ge_platform platform_id; Type: DEFAULT; Schema: gem; Owner: postgres -- ALTER TABLE ONLY gem.ge_platform ALTER COLUMN platform_id SET DEFAULT nextval('gem.ge_platform_platform_id_seq'::regclass); -- -- Name: ge_platform_dbxref platform_dbxref_id; Type: DEFAULT; Schema: gem; Owner: postgres -- ALTER TABLE ONLY gem.ge_platform_dbxref ALTER COLUMN platform_dbxref_id SET DEFAULT nextval('gem.ge_platform_dbxref_platform_dbxref_id_seq'::regclass); -- -- Name: ge_platform_design platform_design_id; Type: DEFAULT; Schema: gem; Owner: postgres -- ALTER TABLE ONLY gem.ge_platform_design ALTER COLUMN platform_design_id SET DEFAULT nextval('gem.ge_platform_design_platform_design_id_seq'::regclass); -- -- Name: ge_platform_pub platform_pub_id; Type: DEFAULT; Schema: gem; Owner: postgres -- ALTER TABLE ONLY gem.ge_platform_pub ALTER COLUMN platform_pub_id SET DEFAULT nextval('gem.ge_platform_pub_platform_pub_id_seq'::regclass); -- -- Name: ge_probe probe_id; Type: DEFAULT; Schema: gem; Owner: postgres -- ALTER TABLE ONLY gem.ge_probe ALTER COLUMN probe_id SET DEFAULT nextval('gem.ge_probe_probe_id_seq'::regclass); -- -- Name: ge_probe_expression probe_expression_id; Type: DEFAULT; Schema: gem; Owner: postgres -- ALTER TABLE ONLY gem.ge_probe_expression ALTER COLUMN probe_expression_id SET DEFAULT nextval('gem.ge_probe_expression_probe_expression_id_seq'::regclass); -- -- Name: ge_probe_spot probe_spot_id; Type: DEFAULT; Schema: gem; Owner: postgres -- ALTER TABLE ONLY gem.ge_probe_spot ALTER COLUMN probe_spot_id SET DEFAULT nextval('gem.ge_probe_spot_probe_spot_id_seq'::regclass); -- -- Name: ge_probe_spot_coordinate probe_spot_coordinate_id; Type: DEFAULT; Schema: gem; Owner: postgres -- ALTER TABLE ONLY gem.ge_probe_spot_coordinate ALTER COLUMN probe_spot_coordinate_id SET DEFAULT nextval('gem.ge_probe_spot_coordinate_probe_spot_coordinate_id_seq'::regclass); -- -- Name: ge_profile_element profile_element_id; Type: DEFAULT; Schema: gem; Owner: postgres -- ALTER TABLE ONLY gem.ge_profile_element ALTER COLUMN profile_element_id SET DEFAULT nextval('gem.ge_profile_element_profile_element_id_seq'::regclass); -- -- Name: ge_target target_id; Type: DEFAULT; Schema: gem; Owner: postgres -- ALTER TABLE ONLY gem.ge_target ALTER COLUMN target_id SET DEFAULT nextval('gem.ge_target_target_id_seq'::regclass); -- -- Name: ge_target_dbxref target_dbxref_id; Type: DEFAULT; Schema: gem; Owner: postgres -- ALTER TABLE ONLY gem.ge_target_dbxref ALTER COLUMN target_dbxref_id SET DEFAULT nextval('gem.ge_target_dbxref_target_dbxref_id_seq'::regclass); -- -- Name: ge_target_element target_element_id; Type: DEFAULT; Schema: gem; Owner: postgres -- ALTER TABLE ONLY gem.ge_target_element ALTER COLUMN target_element_id SET DEFAULT nextval('gem.ge_target_element_target_element_id_seq'::regclass); -- -- Name: ge_technology_type technology_type_id; Type: DEFAULT; Schema: gem; Owner: postgres -- ALTER TABLE ONLY gem.ge_technology_type ALTER COLUMN technology_type_id SET DEFAULT nextval('gem.ge_technology_type_technology_type_id_seq'::regclass); -- -- Name: ge_template template_id; Type: DEFAULT; Schema: gem; Owner: postgres -- ALTER TABLE ONLY gem.ge_template ALTER COLUMN template_id SET DEFAULT nextval('gem.ge_template_template_id_seq'::regclass); -- -- Name: ge_template_dbiref template_dbiref_id; Type: DEFAULT; Schema: gem; Owner: postgres -- ALTER TABLE ONLY gem.ge_template_dbiref ALTER COLUMN template_dbiref_id SET DEFAULT nextval('gem.ge_template_dbiref_template_dbiref_id_seq'::regclass); -- -- Name: ge_template_dbxref template_dbxref_id; Type: DEFAULT; Schema: gem; Owner: postgres -- ALTER TABLE ONLY gem.ge_template_dbxref ALTER COLUMN template_dbxref_id SET DEFAULT nextval('gem.ge_template_dbxref_template_dbxref_id_seq'::regclass); -- -- Name: ge_template_diff_expression template_diff_expression_id; Type: DEFAULT; Schema: gem; Owner: postgres -- ALTER TABLE ONLY gem.ge_template_diff_expression ALTER COLUMN template_diff_expression_id SET DEFAULT nextval('gem.ge_template_diff_expression_template_diff_expression_id_seq'::regclass); -- -- Name: ge_template_expression template_expression_id; Type: DEFAULT; Schema: gem; Owner: postgres -- ALTER TABLE ONLY gem.ge_template_expression ALTER COLUMN template_expression_id SET DEFAULT nextval('gem.ge_template_expression_template_expression_id_seq'::regclass); -- -- Name: blast_defline blast_defline_id; Type: DEFAULT; Schema: genomic; Owner: postgres -- ALTER TABLE ONLY genomic.blast_defline ALTER COLUMN blast_defline_id SET DEFAULT nextval('genomic.blast_defline_blast_defline_id_seq'::regclass); -- -- Name: blast_hit blast_hit_id; Type: DEFAULT; Schema: genomic; Owner: postgres -- ALTER TABLE ONLY genomic.blast_hit ALTER COLUMN blast_hit_id SET DEFAULT nextval('genomic.blast_hit_blast_hit_id_seq'::regclass); -- -- Name: blast_query blast_query_id; Type: DEFAULT; Schema: genomic; Owner: postgres -- ALTER TABLE ONLY genomic.blast_query ALTER COLUMN blast_query_id SET DEFAULT nextval('genomic.blast_query_blast_query_id_seq'::regclass); -- -- Name: chromat chromat_id; Type: DEFAULT; Schema: genomic; Owner: postgres -- ALTER TABLE ONLY genomic.chromat ALTER COLUMN chromat_id SET DEFAULT nextval('genomic.chromat_chromat_id_seq'::regclass); -- -- Name: clone clone_id; Type: DEFAULT; Schema: genomic; Owner: postgres -- ALTER TABLE ONLY genomic.clone ALTER COLUMN clone_id SET DEFAULT nextval('genomic.clone_clone_id_seq'::regclass); -- -- Name: clone_feature clone_feature_id; Type: DEFAULT; Schema: genomic; Owner: postgres -- ALTER TABLE ONLY genomic.clone_feature ALTER COLUMN clone_feature_id SET DEFAULT nextval('genomic.clone_feature_clone_feature_id_seq'::regclass); -- -- Name: clone_type clone_type_id; Type: DEFAULT; Schema: genomic; Owner: postgres -- ALTER TABLE ONLY genomic.clone_type ALTER COLUMN clone_type_id SET DEFAULT nextval('genomic.clone_type_clone_type_id_seq'::regclass); -- -- Name: genbank_submission genbank_submission_id; Type: DEFAULT; Schema: genomic; Owner: postgres -- ALTER TABLE ONLY genomic.genbank_submission ALTER COLUMN genbank_submission_id SET DEFAULT nextval('genomic.genbank_submission_genbank_submission_id_seq'::regclass); -- -- Name: gss gss_id; Type: DEFAULT; Schema: genomic; Owner: postgres -- ALTER TABLE ONLY genomic.gss ALTER COLUMN gss_id SET DEFAULT nextval('genomic.gss_gss_id_seq'::regclass); -- -- Name: gss_submitted_to_genbank gss_submitted_to_genbank_id; Type: DEFAULT; Schema: genomic; Owner: postgres -- ALTER TABLE ONLY genomic.gss_submitted_to_genbank ALTER COLUMN gss_submitted_to_genbank_id SET DEFAULT nextval('genomic.gss_submitted_to_genbank_gss_submitted_to_genbank_id_seq'::regclass); -- -- Name: library library_id; Type: DEFAULT; Schema: genomic; Owner: postgres -- ALTER TABLE ONLY genomic.library ALTER COLUMN library_id SET DEFAULT nextval('genomic.library_library_id_seq'::regclass); -- -- Name: library_annotation_db library_annotation_db_id; Type: DEFAULT; Schema: genomic; Owner: postgres -- ALTER TABLE ONLY genomic.library_annotation_db ALTER COLUMN library_annotation_db_id SET DEFAULT nextval('genomic.library_annotation_db_library_annotation_db_id_seq'::regclass); -- -- Name: library_shortname_abbreviation library_shortname_abbreviation_id; Type: DEFAULT; Schema: genomic; Owner: postgres -- ALTER TABLE ONLY genomic.library_shortname_abbreviation ALTER COLUMN library_shortname_abbreviation_id SET DEFAULT nextval('genomic.library_shortname_abbreviatio_library_shortname_abbreviatio_seq'::regclass); -- -- Name: qc_report qc_report_id; Type: DEFAULT; Schema: genomic; Owner: postgres -- ALTER TABLE ONLY genomic.qc_report ALTER COLUMN qc_report_id SET DEFAULT nextval('genomic.qc_report_qc_report_id_seq'::regclass); -- -- Name: query_source_type query_source_type_id; Type: DEFAULT; Schema: genomic; Owner: postgres -- ALTER TABLE ONLY genomic.query_source_type ALTER COLUMN query_source_type_id SET DEFAULT nextval('genomic.query_source_type_query_source_type_id_seq'::regclass); -- -- Name: read_class read_class_id; Type: DEFAULT; Schema: genomic; Owner: postgres -- ALTER TABLE ONLY genomic.read_class ALTER COLUMN read_class_id SET DEFAULT nextval('genomic.read_class_read_class_id_seq'::regclass); -- -- Name: sequencing_primer sequencing_primer_id; Type: DEFAULT; Schema: genomic; Owner: postgres -- ALTER TABLE ONLY genomic.sequencing_primer ALTER COLUMN sequencing_primer_id SET DEFAULT nextval('genomic.sequencing_primer_sequencing_primer_id_seq'::regclass); -- -- Name: experiment experiment_id; Type: DEFAULT; Schema: insitu; Owner: postgres -- ALTER TABLE ONLY insitu.experiment ALTER COLUMN experiment_id SET DEFAULT nextval('insitu.experiment_experiment_id_seq'::regclass); -- -- Name: experiment_image experiment_image_id; Type: DEFAULT; Schema: insitu; Owner: postgres -- ALTER TABLE ONLY insitu.experiment_image ALTER COLUMN experiment_image_id SET DEFAULT nextval('insitu.experiment_image_experiment_image_id_seq'::regclass); -- -- Name: experiment_tag experiment_tag_id; Type: DEFAULT; Schema: insitu; Owner: postgres -- ALTER TABLE ONLY insitu.experiment_tag ALTER COLUMN experiment_tag_id SET DEFAULT nextval('insitu.experiment_tag_experiment_tag_id_seq'::regclass); -- -- Name: is_organism is_organism_id; Type: DEFAULT; Schema: insitu; Owner: postgres -- ALTER TABLE ONLY insitu.is_organism ALTER COLUMN is_organism_id SET DEFAULT nextval('insitu.is_organism_is_organism_id_seq'::regclass); -- -- Name: probe probe_id; Type: DEFAULT; Schema: insitu; Owner: postgres -- ALTER TABLE ONLY insitu.probe ALTER COLUMN probe_id SET DEFAULT nextval('insitu.probe_probe_id_seq'::regclass); -- -- Name: tag tag_id; Type: DEFAULT; Schema: insitu; Owner: postgres -- ALTER TABLE ONLY insitu.tag ALTER COLUMN tag_id SET DEFAULT nextval('insitu.tag_tag_id_seq'::regclass); -- -- Name: attribution attribution_id; Type: DEFAULT; Schema: metadata; Owner: postgres -- ALTER TABLE ONLY metadata.attribution ALTER COLUMN attribution_id SET DEFAULT nextval('metadata.attribution_attribution_id_seq'::regclass); -- -- Name: attribution_to attribution_to_id; Type: DEFAULT; Schema: metadata; Owner: postgres -- ALTER TABLE ONLY metadata.attribution_to ALTER COLUMN attribution_to_id SET DEFAULT nextval('metadata.attribution_to_attribution_to_id_seq'::regclass); -- -- Name: comments comment_id; Type: DEFAULT; Schema: metadata; Owner: postgres -- ALTER TABLE ONLY metadata.comments ALTER COLUMN comment_id SET DEFAULT nextval('metadata.comments_comment_id_seq'::regclass); -- -- Name: md_dbipath dbipath_id; Type: DEFAULT; Schema: metadata; Owner: postgres -- ALTER TABLE ONLY metadata.md_dbipath ALTER COLUMN dbipath_id SET DEFAULT nextval('metadata.md_dbipath_dbipath_id_seq'::regclass); -- -- Name: md_dbiref dbiref_id; Type: DEFAULT; Schema: metadata; Owner: postgres -- ALTER TABLE ONLY metadata.md_dbiref ALTER COLUMN dbiref_id SET DEFAULT nextval('metadata.md_dbiref_dbiref_id_seq'::regclass); -- -- Name: md_dbversion dbversion_id; Type: DEFAULT; Schema: metadata; Owner: postgres -- ALTER TABLE ONLY metadata.md_dbversion ALTER COLUMN dbversion_id SET DEFAULT nextval('metadata.md_dbversion_dbversion_id_seq'::regclass); -- -- Name: md_files file_id; Type: DEFAULT; Schema: metadata; Owner: postgres -- ALTER TABLE ONLY metadata.md_files ALTER COLUMN file_id SET DEFAULT nextval('metadata.md_files_file_id_seq'::regclass); -- -- Name: md_groupmembers groupmember_id; Type: DEFAULT; Schema: metadata; Owner: postgres -- ALTER TABLE ONLY metadata.md_groupmembers ALTER COLUMN groupmember_id SET DEFAULT nextval('metadata.md_groupmembers_groupmember_id_seq'::regclass); -- -- Name: md_groups group_id; Type: DEFAULT; Schema: metadata; Owner: postgres -- ALTER TABLE ONLY metadata.md_groups ALTER COLUMN group_id SET DEFAULT nextval('metadata.md_groups_group_id_seq'::regclass); -- -- Name: md_image image_id; Type: DEFAULT; Schema: metadata; Owner: postgres -- ALTER TABLE ONLY metadata.md_image ALTER COLUMN image_id SET DEFAULT nextval('metadata.md_image_image_id_seq'::regclass); -- -- Name: md_image_cvterm md_image_cvterm_id; Type: DEFAULT; Schema: metadata; Owner: postgres -- ALTER TABLE ONLY metadata.md_image_cvterm ALTER COLUMN md_image_cvterm_id SET DEFAULT nextval('metadata.md_image_cvterm_md_image_cvterm_id_seq'::regclass); -- -- Name: md_image_organism md_image_organism_id; Type: DEFAULT; Schema: metadata; Owner: postgres -- ALTER TABLE ONLY metadata.md_image_organism ALTER COLUMN md_image_organism_id SET DEFAULT nextval('metadata.md_image_organism_md_image_organism_id_seq'::regclass); -- -- Name: md_json json_id; Type: DEFAULT; Schema: metadata; Owner: postgres -- ALTER TABLE ONLY metadata.md_json ALTER COLUMN json_id SET DEFAULT nextval('metadata.md_json_json_id_seq'::regclass); -- -- Name: md_metadata metadata_id; Type: DEFAULT; Schema: metadata; Owner: postgres -- ALTER TABLE ONLY metadata.md_metadata ALTER COLUMN metadata_id SET DEFAULT nextval('metadata.md_metadata_metadata_id_seq'::regclass); -- -- Name: md_tag tag_id; Type: DEFAULT; Schema: metadata; Owner: postgres -- ALTER TABLE ONLY metadata.md_tag ALTER COLUMN tag_id SET DEFAULT nextval('metadata.md_tag_tag_id_seq'::regclass); -- -- Name: md_tag_image tag_image_id; Type: DEFAULT; Schema: metadata; Owner: postgres -- ALTER TABLE ONLY metadata.md_tag_image ALTER COLUMN tag_image_id SET DEFAULT nextval('metadata.md_tag_image_tag_image_id_seq'::regclass); -- -- Name: roles role_id; Type: DEFAULT; Schema: metadata; Owner: postgres -- ALTER TABLE ONLY metadata.roles ALTER COLUMN role_id SET DEFAULT nextval('metadata.roles_role_id_seq'::regclass); -- -- Name: data_points dp_id; Type: DEFAULT; Schema: pheno_population; Owner: postgres -- ALTER TABLE ONLY pheno_population.data_points ALTER COLUMN dp_id SET DEFAULT nextval('pheno_population.data_points_dp_id_seq'::regclass); -- -- Name: genotypes gen_id; Type: DEFAULT; Schema: pheno_population; Owner: postgres -- ALTER TABLE ONLY pheno_population.genotypes ALTER COLUMN gen_id SET DEFAULT nextval('pheno_population.genotypes_gen_id_seq'::regclass); -- -- Name: images image_id; Type: DEFAULT; Schema: pheno_population; Owner: postgres -- ALTER TABLE ONLY pheno_population.images ALTER COLUMN image_id SET DEFAULT nextval('pheno_population.images_image_id_seq'::regclass); -- -- Name: locations loc_id; Type: DEFAULT; Schema: pheno_population; Owner: postgres -- ALTER TABLE ONLY pheno_population.locations ALTER COLUMN loc_id SET DEFAULT nextval('pheno_population.locations_loc_id_seq'::regclass); -- -- Name: organs organ_id; Type: DEFAULT; Schema: pheno_population; Owner: postgres -- ALTER TABLE ONLY pheno_population.organs ALTER COLUMN organ_id SET DEFAULT nextval('pheno_population.organs_organ_id_seq'::regclass); -- -- Name: plants plant_id; Type: DEFAULT; Schema: pheno_population; Owner: postgres -- ALTER TABLE ONLY pheno_population.plants ALTER COLUMN plant_id SET DEFAULT nextval('pheno_population.plants_plant_id_seq'::regclass); -- -- Name: populations pop_id; Type: DEFAULT; Schema: pheno_population; Owner: postgres -- ALTER TABLE ONLY pheno_population.populations ALTER COLUMN pop_id SET DEFAULT nextval('pheno_population.populations_pop_id_seq'::regclass); -- -- Name: properties prop_id; Type: DEFAULT; Schema: pheno_population; Owner: postgres -- ALTER TABLE ONLY pheno_population.properties ALTER COLUMN prop_id SET DEFAULT nextval('pheno_population.properties_prop_id_seq'::regclass); -- -- Name: samples sample_id; Type: DEFAULT; Schema: pheno_population; Owner: postgres -- ALTER TABLE ONLY pheno_population.samples ALTER COLUMN sample_id SET DEFAULT nextval('pheno_population.samples_sample_id_seq'::regclass); -- -- Name: sources source_id; Type: DEFAULT; Schema: pheno_population; Owner: postgres -- ALTER TABLE ONLY pheno_population.sources ALTER COLUMN source_id SET DEFAULT nextval('pheno_population.sources_source_id_seq'::regclass); -- -- Name: allele allele_id; Type: DEFAULT; Schema: phenome; Owner: postgres -- ALTER TABLE ONLY phenome.allele ALTER COLUMN allele_id SET DEFAULT nextval('phenome.allele_allele_id_seq'::regclass); -- -- Name: allele_alias allele_alias_id; Type: DEFAULT; Schema: phenome; Owner: postgres -- ALTER TABLE ONLY phenome.allele_alias ALTER COLUMN allele_alias_id SET DEFAULT nextval('phenome.allele_alias_allele_alias_id_seq'::regclass); -- -- Name: allele_dbxref allele_dbxref_id; Type: DEFAULT; Schema: phenome; Owner: postgres -- ALTER TABLE ONLY phenome.allele_dbxref ALTER COLUMN allele_dbxref_id SET DEFAULT nextval('phenome.allele_dbxref_allele_dbxref_id_seq'::regclass); -- -- Name: allele_history allele_history_id; Type: DEFAULT; Schema: phenome; Owner: postgres -- ALTER TABLE ONLY phenome.allele_history ALTER COLUMN allele_history_id SET DEFAULT nextval('phenome.allele_history_allele_history_id_seq'::regclass); -- -- Name: cross_type cross_type_id; Type: DEFAULT; Schema: phenome; Owner: postgres -- ALTER TABLE ONLY phenome.cross_type ALTER COLUMN cross_type_id SET DEFAULT nextval('phenome.cross_type_cross_type_id_seq'::regclass); -- -- Name: dbxref_type dbxref_type_id; Type: DEFAULT; Schema: phenome; Owner: postgres -- ALTER TABLE ONLY phenome.dbxref_type ALTER COLUMN dbxref_type_id SET DEFAULT nextval('phenome.dbxref_type_dbxref_type_id_seq'::regclass); -- -- Name: genotype_experiment genotype_experiment_id; Type: DEFAULT; Schema: phenome; Owner: postgres -- ALTER TABLE ONLY phenome.genotype_experiment ALTER COLUMN genotype_experiment_id SET DEFAULT nextval('phenome.genotype_experiment_genotype_experiment_id_seq'::regclass); -- -- Name: genotype_region genotype_region_id; Type: DEFAULT; Schema: phenome; Owner: postgres -- ALTER TABLE ONLY phenome.genotype_region ALTER COLUMN genotype_region_id SET DEFAULT nextval('phenome.genotype_region_genotype_region_id_seq'::regclass); -- -- Name: germplasm germplasm_id; Type: DEFAULT; Schema: phenome; Owner: postgres -- ALTER TABLE ONLY phenome.germplasm ALTER COLUMN germplasm_id SET DEFAULT nextval('phenome.germplasm_germplasm_id_seq'::regclass); -- -- Name: individual individual_id; Type: DEFAULT; Schema: phenome; Owner: postgres -- ALTER TABLE ONLY phenome.individual ALTER COLUMN individual_id SET DEFAULT nextval('phenome.individual_individual_id_seq'::regclass); -- -- Name: individual_alias individual_alias_id; Type: DEFAULT; Schema: phenome; Owner: postgres -- ALTER TABLE ONLY phenome.individual_alias ALTER COLUMN individual_alias_id SET DEFAULT nextval('phenome.individual_alias_individual_alias_id_seq'::regclass); -- -- Name: individual_allele individual_allele_id; Type: DEFAULT; Schema: phenome; Owner: postgres -- ALTER TABLE ONLY phenome.individual_allele ALTER COLUMN individual_allele_id SET DEFAULT nextval('phenome.individual_allele_individual_allele_id_seq'::regclass); -- -- Name: individual_dbxref individual_dbxref_id; Type: DEFAULT; Schema: phenome; Owner: postgres -- ALTER TABLE ONLY phenome.individual_dbxref ALTER COLUMN individual_dbxref_id SET DEFAULT nextval('phenome.individual_dbxref_individual_dbxref_id_seq'::regclass); -- -- Name: individual_dbxref_evidence individual_dbxref_evidence_id; Type: DEFAULT; Schema: phenome; Owner: postgres -- ALTER TABLE ONLY phenome.individual_dbxref_evidence ALTER COLUMN individual_dbxref_evidence_id SET DEFAULT nextval('phenome.individual_dbxref_evidence_individual_dbxref_evidence_id_seq'::regclass); -- -- Name: individual_dbxref_evidence_history individual_dbxref_evidence_history_id; Type: DEFAULT; Schema: phenome; Owner: postgres -- ALTER TABLE ONLY phenome.individual_dbxref_evidence_history ALTER COLUMN individual_dbxref_evidence_history_id SET DEFAULT nextval('phenome.individual_dbxref_evidence_hi_individual_dbxref_evidence_hi_seq'::regclass); -- -- Name: individual_history individual_history_id; Type: DEFAULT; Schema: phenome; Owner: postgres -- ALTER TABLE ONLY phenome.individual_history ALTER COLUMN individual_history_id SET DEFAULT nextval('phenome.individual_history_individual_history_id_seq'::regclass); -- -- Name: individual_image individual_image_id; Type: DEFAULT; Schema: phenome; Owner: postgres -- ALTER TABLE ONLY phenome.individual_image ALTER COLUMN individual_image_id SET DEFAULT nextval('phenome.individual_image_individual_image_id_seq'::regclass); -- -- Name: individual_locus individual_locus_id; Type: DEFAULT; Schema: phenome; Owner: postgres -- ALTER TABLE ONLY phenome.individual_locus ALTER COLUMN individual_locus_id SET DEFAULT nextval('phenome.individual_locus_individual_locus_id_seq'::regclass); -- -- Name: is_public is_public_id; Type: DEFAULT; Schema: phenome; Owner: postgres -- ALTER TABLE ONLY phenome.is_public ALTER COLUMN is_public_id SET DEFAULT nextval('phenome.is_public_is_public_id_seq'::regclass); -- -- Name: locus locus_id; Type: DEFAULT; Schema: phenome; Owner: postgres -- ALTER TABLE ONLY phenome.locus ALTER COLUMN locus_id SET DEFAULT nextval('phenome.locus_locus_id_seq'::regclass); -- -- Name: locus2locus locus2locus_id; Type: DEFAULT; Schema: phenome; Owner: postgres -- ALTER TABLE ONLY phenome.locus2locus ALTER COLUMN locus2locus_id SET DEFAULT nextval('phenome.locus2locus_locus2locus_id_seq'::regclass); -- -- Name: locus_alias locus_alias_id; Type: DEFAULT; Schema: phenome; Owner: postgres -- ALTER TABLE ONLY phenome.locus_alias ALTER COLUMN locus_alias_id SET DEFAULT nextval('phenome.locus_alias_locus_alias_id_seq'::regclass); -- -- Name: locus_dbxref locus_dbxref_id; Type: DEFAULT; Schema: phenome; Owner: postgres -- ALTER TABLE ONLY phenome.locus_dbxref ALTER COLUMN locus_dbxref_id SET DEFAULT nextval('phenome.locus_dbxref_locus_dbxref_id_seq'::regclass); -- -- Name: locus_dbxref_evidence locus_dbxref_evidence_id; Type: DEFAULT; Schema: phenome; Owner: postgres -- ALTER TABLE ONLY phenome.locus_dbxref_evidence ALTER COLUMN locus_dbxref_evidence_id SET DEFAULT nextval('phenome.locus_dbxref_evidence_locus_dbxref_evidence_id_seq'::regclass); -- -- Name: locus_dbxref_evidence_history locus_dbxref_evidence_history_id; Type: DEFAULT; Schema: phenome; Owner: postgres -- ALTER TABLE ONLY phenome.locus_dbxref_evidence_history ALTER COLUMN locus_dbxref_evidence_history_id SET DEFAULT nextval('phenome.locus_dbxref_evidence_history_locus_dbxref_evidence_history_seq'::regclass); -- -- Name: locus_history locus_history_id; Type: DEFAULT; Schema: phenome; Owner: postgres -- ALTER TABLE ONLY phenome.locus_history ALTER COLUMN locus_history_id SET DEFAULT nextval('phenome.locus_history_locus_history_id_seq'::regclass); -- -- Name: locus_image locus_image_id; Type: DEFAULT; Schema: phenome; Owner: postgres -- ALTER TABLE ONLY phenome.locus_image ALTER COLUMN locus_image_id SET DEFAULT nextval('phenome.locus_image_locus_image_id_seq'::regclass); -- -- Name: locus_marker locus_marker_id; Type: DEFAULT; Schema: phenome; Owner: postgres -- ALTER TABLE ONLY phenome.locus_marker ALTER COLUMN locus_marker_id SET DEFAULT nextval('phenome.locus_marker_locus_marker_id_seq'::regclass); -- -- Name: locus_owner locus_owner_id; Type: DEFAULT; Schema: phenome; Owner: postgres -- ALTER TABLE ONLY phenome.locus_owner ALTER COLUMN locus_owner_id SET DEFAULT nextval('phenome.locus_owner_locus_owner_id_seq'::regclass); -- -- Name: locus_registry locus_registry_id; Type: DEFAULT; Schema: phenome; Owner: postgres -- ALTER TABLE ONLY phenome.locus_registry ALTER COLUMN locus_registry_id SET DEFAULT nextval('phenome.locus_registry_locus_registry_id_seq'::regclass); -- -- Name: locus_unigene locus_unigene_id; Type: DEFAULT; Schema: phenome; Owner: postgres -- ALTER TABLE ONLY phenome.locus_unigene ALTER COLUMN locus_unigene_id SET DEFAULT nextval('phenome.locus_unigene_locus_unigene_id_seq'::regclass); -- -- Name: locusgroup locusgroup_id; Type: DEFAULT; Schema: phenome; Owner: postgres -- ALTER TABLE ONLY phenome.locusgroup ALTER COLUMN locusgroup_id SET DEFAULT nextval('phenome.locusgroup_locusgroup_id_seq'::regclass); -- -- Name: locusgroup_member locusgroup_member_id; Type: DEFAULT; Schema: phenome; Owner: postgres -- ALTER TABLE ONLY phenome.locusgroup_member ALTER COLUMN locusgroup_member_id SET DEFAULT nextval('phenome.locusgroup_member_locusgroup_member_id_seq'::regclass); -- -- Name: nd_experiment_md_files nd_experiment_md_files_id; Type: DEFAULT; Schema: phenome; Owner: postgres -- ALTER TABLE ONLY phenome.nd_experiment_md_files ALTER COLUMN nd_experiment_md_files_id SET DEFAULT nextval('phenome.nd_experiment_md_files_nd_experiment_md_files_id_seq'::regclass); -- -- Name: nd_experiment_md_images nd_experiment_md_images_id; Type: DEFAULT; Schema: phenome; Owner: postgres -- ALTER TABLE ONLY phenome.nd_experiment_md_images ALTER COLUMN nd_experiment_md_images_id SET DEFAULT nextval('phenome.nd_experiment_md_images_nd_experiment_md_images_id_seq'::regclass); -- -- Name: nd_experiment_md_json nd_experiment_md_json_id; Type: DEFAULT; Schema: phenome; Owner: postgres -- ALTER TABLE ONLY phenome.nd_experiment_md_json ALTER COLUMN nd_experiment_md_json_id SET DEFAULT nextval('phenome.nd_experiment_md_json_nd_experiment_md_json_id_seq'::regclass); -- -- Name: phenome_genotype phenome_genotype_id; Type: DEFAULT; Schema: phenome; Owner: postgres -- ALTER TABLE ONLY phenome.phenome_genotype ALTER COLUMN phenome_genotype_id SET DEFAULT nextval('phenome.genotype_genotype_id_seq'::regclass); -- -- Name: phenotype_user_trait phenotype_user_trait_id; Type: DEFAULT; Schema: phenome; Owner: postgres -- ALTER TABLE ONLY phenome.phenotype_user_trait ALTER COLUMN phenotype_user_trait_id SET DEFAULT nextval('phenome.phenotype_user_trait_phenotype_user_trait_id_seq'::regclass); -- -- Name: polymorphic_fragment polymorphic_fragment_id; Type: DEFAULT; Schema: phenome; Owner: postgres -- ALTER TABLE ONLY phenome.polymorphic_fragment ALTER COLUMN polymorphic_fragment_id SET DEFAULT nextval('phenome.polymorphic_fragment_polymorphic_fragment_id_seq'::regclass); -- -- Name: population population_id; Type: DEFAULT; Schema: phenome; Owner: postgres -- ALTER TABLE ONLY phenome.population ALTER COLUMN population_id SET DEFAULT nextval('phenome.population_population_id_seq'::regclass); -- -- Name: population_dbxref population_dbxref_id; Type: DEFAULT; Schema: phenome; Owner: postgres -- ALTER TABLE ONLY phenome.population_dbxref ALTER COLUMN population_dbxref_id SET DEFAULT nextval('phenome.population_dbxref_population_dbxref_id_seq'::regclass); -- -- Name: project_md_image project_md_image_id; Type: DEFAULT; Schema: phenome; Owner: postgres -- ALTER TABLE ONLY phenome.project_md_image ALTER COLUMN project_md_image_id SET DEFAULT nextval('phenome.project_md_image_project_md_image_id_seq'::regclass); -- -- Name: pub_curator pub_curator_id; Type: DEFAULT; Schema: phenome; Owner: postgres -- ALTER TABLE ONLY phenome.pub_curator ALTER COLUMN pub_curator_id SET DEFAULT nextval('phenome.pub_curator_pub_curator_id_seq'::regclass); -- -- Name: registry registry_id; Type: DEFAULT; Schema: phenome; Owner: postgres -- ALTER TABLE ONLY phenome.registry ALTER COLUMN registry_id SET DEFAULT nextval('phenome.registry_registry_id_seq'::regclass); -- -- Name: stock_allele stock_allele_id; Type: DEFAULT; Schema: phenome; Owner: postgres -- ALTER TABLE ONLY phenome.stock_allele ALTER COLUMN stock_allele_id SET DEFAULT nextval('phenome.stock_allele_stock_allele_id_seq'::regclass); -- -- Name: stock_image stock_image_id; Type: DEFAULT; Schema: phenome; Owner: postgres -- ALTER TABLE ONLY phenome.stock_image ALTER COLUMN stock_image_id SET DEFAULT nextval('phenome.stock_image_stock_image_id_seq'::regclass); -- -- Name: stock_owner stock_owner_id; Type: DEFAULT; Schema: phenome; Owner: postgres -- ALTER TABLE ONLY phenome.stock_owner ALTER COLUMN stock_owner_id SET DEFAULT nextval('phenome.stock_owner_stock_owner_id_seq'::regclass); -- -- Name: tomato_il_bin il_bin_id; Type: DEFAULT; Schema: phenome; Owner: postgres -- ALTER TABLE ONLY phenome.tomato_il_bin ALTER COLUMN il_bin_id SET DEFAULT nextval('phenome.tomato_il_bin_il_bin_id_seq'::regclass); -- -- Name: tomato_term tomato_term_id; Type: DEFAULT; Schema: phenome; Owner: postgres -- ALTER TABLE ONLY phenome.tomato_term ALTER COLUMN tomato_term_id SET DEFAULT nextval('phenome.tomato_term_tomato_term_id_seq'::regclass); -- -- Name: tomato_term2term tomato_term2term_id; Type: DEFAULT; Schema: phenome; Owner: postgres -- ALTER TABLE ONLY phenome.tomato_term2term ALTER COLUMN tomato_term2term_id SET DEFAULT nextval('phenome.tomato_term2term_tomato_term2term_id_seq'::regclass); -- -- Name: unit unit_id; Type: DEFAULT; Schema: phenome; Owner: postgres -- ALTER TABLE ONLY phenome.unit ALTER COLUMN unit_id SET DEFAULT nextval('phenome.unit_unit_id_seq'::regclass); -- -- Name: user_trait user_trait_id; Type: DEFAULT; Schema: phenome; Owner: postgres -- ALTER TABLE ONLY phenome.user_trait ALTER COLUMN user_trait_id SET DEFAULT nextval('phenome.user_trait_user_trait_id_seq'::regclass); -- -- Name: user_trait_unit user_trait_unit_id; Type: DEFAULT; Schema: phenome; Owner: postgres -- ALTER TABLE ONLY phenome.user_trait_unit ALTER COLUMN user_trait_unit_id SET DEFAULT nextval('phenome.user_trait_unit_user_trait_unit_id_seq'::regclass); -- -- Name: variant variant_id; Type: DEFAULT; Schema: phenome; Owner: postgres -- ALTER TABLE ONLY phenome.variant ALTER COLUMN variant_id SET DEFAULT nextval('phenome.variant_variant_id_seq'::regclass); -- -- Name: ba_plausibility bap_id; Type: DEFAULT; Schema: physical; Owner: postgres -- ALTER TABLE ONLY physical.ba_plausibility ALTER COLUMN bap_id SET DEFAULT nextval('physical.ba_plausibility_bap_id_seq'::regclass); -- -- Name: bac_associations bac_assoc_id; Type: DEFAULT; Schema: physical; Owner: postgres -- ALTER TABLE ONLY physical.bac_associations ALTER COLUMN bac_assoc_id SET DEFAULT nextval('physical.bac_associations_bac_assoc_id_seq'::regclass); -- -- Name: bac_consensus_sequences consensus_seq_id; Type: DEFAULT; Schema: physical; Owner: postgres -- ALTER TABLE ONLY physical.bac_consensus_sequences ALTER COLUMN consensus_seq_id SET DEFAULT nextval('physical.bac_consensus_sequences_consensus_seq_id_seq'::regclass); -- -- Name: bac_contigs bac_contig_id; Type: DEFAULT; Schema: physical; Owner: postgres -- ALTER TABLE ONLY physical.bac_contigs ALTER COLUMN bac_contig_id SET DEFAULT nextval('physical.bac_contigs_bac_contig_id_seq'::regclass); -- -- Name: bac_end_sequences end_seq_id; Type: DEFAULT; Schema: physical; Owner: postgres -- ALTER TABLE ONLY physical.bac_end_sequences ALTER COLUMN end_seq_id SET DEFAULT nextval('physical.bac_end_sequences_end_seq_id_seq'::regclass); -- -- Name: bacs bac_id; Type: DEFAULT; Schema: physical; Owner: postgres -- ALTER TABLE ONLY physical.bacs ALTER COLUMN bac_id SET DEFAULT nextval('physical.bacs_bac_id_seq'::regclass); -- -- Name: computational_associations computational_assoc_id; Type: DEFAULT; Schema: physical; Owner: postgres -- ALTER TABLE ONLY physical.computational_associations ALTER COLUMN computational_assoc_id SET DEFAULT nextval('physical.computational_associations_computational_assoc_id_seq'::regclass); -- -- Name: contig_sizes contig_size_id; Type: DEFAULT; Schema: physical; Owner: postgres -- ALTER TABLE ONLY physical.contig_sizes ALTER COLUMN contig_size_id SET DEFAULT nextval('physical.contig_sizes_contig_size_id_seq'::regclass); -- -- Name: deprecated_probes dp_id; Type: DEFAULT; Schema: physical; Owner: postgres -- ALTER TABLE ONLY physical.deprecated_probes ALTER COLUMN dp_id SET DEFAULT nextval('physical.deprecated_probes_dp_id_seq'::regclass); -- -- Name: fpc_data fpc_datum_id; Type: DEFAULT; Schema: physical; Owner: postgres -- ALTER TABLE ONLY physical.fpc_data ALTER COLUMN fpc_datum_id SET DEFAULT nextval('physical.fpc_data_fpc_datum_id_seq'::regclass); -- -- Name: fpc_version fpc_version; Type: DEFAULT; Schema: physical; Owner: postgres -- ALTER TABLE ONLY physical.fpc_version ALTER COLUMN fpc_version SET DEFAULT nextval('physical.fpc_version_fpc_version_seq'::regclass); -- -- Name: manual_associations manual_assoc_id; Type: DEFAULT; Schema: physical; Owner: postgres -- ALTER TABLE ONLY physical.manual_associations ALTER COLUMN manual_assoc_id SET DEFAULT nextval('physical.manual_associations_manual_assoc_id_seq'::regclass); -- -- Name: oa_plausibility oap_id; Type: DEFAULT; Schema: physical; Owner: postgres -- ALTER TABLE ONLY physical.oa_plausibility ALTER COLUMN oap_id SET DEFAULT nextval('physical.oa_plausibility_oap_id_seq'::regclass); -- -- Name: overgo_associations overgo_assoc_id; Type: DEFAULT; Schema: physical; Owner: postgres -- ALTER TABLE ONLY physical.overgo_associations ALTER COLUMN overgo_assoc_id SET DEFAULT nextval('physical.overgo_associations_overgo_assoc_id_seq'::regclass); -- -- Name: overgo_plates plate_id; Type: DEFAULT; Schema: physical; Owner: postgres -- ALTER TABLE ONLY physical.overgo_plates ALTER COLUMN plate_id SET DEFAULT nextval('physical.overgo_plates_plate_id_seq'::regclass); -- -- Name: overgo_results result_id; Type: DEFAULT; Schema: physical; Owner: postgres -- ALTER TABLE ONLY physical.overgo_results ALTER COLUMN result_id SET DEFAULT nextval('physical.overgo_results_result_id_seq'::regclass); -- -- Name: overgo_version overgo_version; Type: DEFAULT; Schema: physical; Owner: postgres -- ALTER TABLE ONLY physical.overgo_version ALTER COLUMN overgo_version SET DEFAULT nextval('physical.overgo_version_overgo_version_seq'::regclass); -- -- Name: probe_markers overgo_probe_id; Type: DEFAULT; Schema: physical; Owner: postgres -- ALTER TABLE ONLY physical.probe_markers ALTER COLUMN overgo_probe_id SET DEFAULT nextval('physical.probe_markers_overgo_probe_id_seq'::regclass); -- -- Name: species species_id; Type: DEFAULT; Schema: physical; Owner: postgres -- ALTER TABLE ONLY physical.species ALTER COLUMN species_id SET DEFAULT nextval('physical.species_species_id_seq'::regclass); -- -- Name: tentative_association_conflict_groups tacg_id; Type: DEFAULT; Schema: physical; Owner: postgres -- ALTER TABLE ONLY physical.tentative_association_conflict_groups ALTER COLUMN tacg_id SET DEFAULT nextval('physical.tentative_association_conflict_groups_tacg_id_seq'::regclass); -- -- Name: tentative_overgo_associations tentative_assoc_id; Type: DEFAULT; Schema: physical; Owner: postgres -- ALTER TABLE ONLY physical.tentative_overgo_associations ALTER COLUMN tentative_assoc_id SET DEFAULT nextval('physical.tentative_overgo_associations_tentative_assoc_id_seq'::regclass); -- -- Name: users user_id; Type: DEFAULT; Schema: physical; Owner: postgres -- ALTER TABLE ONLY physical.users ALTER COLUMN user_id SET DEFAULT nextval('physical.users_user_id_seq'::regclass); -- -- Name: analysis analysis_id; Type: DEFAULT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.analysis ALTER COLUMN analysis_id SET DEFAULT nextval('public.analysis_analysis_id_seq'::regclass); -- -- Name: analysisfeature analysisfeature_id; Type: DEFAULT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.analysisfeature ALTER COLUMN analysisfeature_id SET DEFAULT nextval('public.analysisfeature_analysisfeature_id_seq'::regclass); -- -- Name: analysisprop analysisprop_id; Type: DEFAULT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.analysisprop ALTER COLUMN analysisprop_id SET DEFAULT nextval('public.analysisprop_analysisprop_id_seq'::regclass); -- -- Name: ara_users id; Type: DEFAULT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.ara_users ALTER COLUMN id SET DEFAULT nextval('public.ara_users_id_seq'::regclass); -- -- Name: blastwatch_queries blastwatch_queries_id; Type: DEFAULT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.blastwatch_queries ALTER COLUMN blastwatch_queries_id SET DEFAULT nextval('public.blastwatch_queries_blastwatch_queries_id_seq'::regclass); -- -- Name: blastwatch_results blastwatch_results_id; Type: DEFAULT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.blastwatch_results ALTER COLUMN blastwatch_results_id SET DEFAULT nextval('public.blastwatch_results_blastwatch_results_id_seq'::regclass); -- -- Name: bug bug_id; Type: DEFAULT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.bug ALTER COLUMN bug_id SET DEFAULT nextval('public.bug_bug_id_seq'::regclass); -- -- Name: contact contact_id; Type: DEFAULT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.contact ALTER COLUMN contact_id SET DEFAULT nextval('public.contact_contact_id_seq'::regclass); -- -- Name: contact_relationship contact_relationship_id; Type: DEFAULT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.contact_relationship ALTER COLUMN contact_relationship_id SET DEFAULT nextval('public.contact_relationship_contact_relationship_id_seq'::regclass); -- -- Name: cv cv_id; Type: DEFAULT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.cv ALTER COLUMN cv_id SET DEFAULT nextval('public.cv_cv_id_seq'::regclass); -- -- Name: cvprop cvprop_id; Type: DEFAULT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.cvprop ALTER COLUMN cvprop_id SET DEFAULT nextval('public.cvprop_cvprop_id_seq'::regclass); -- -- Name: cvterm cvterm_id; Type: DEFAULT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.cvterm ALTER COLUMN cvterm_id SET DEFAULT nextval('public.cvterm_cvterm_id_seq'::regclass); -- -- Name: cvterm_dbxref cvterm_dbxref_id; Type: DEFAULT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.cvterm_dbxref ALTER COLUMN cvterm_dbxref_id SET DEFAULT nextval('public.cvterm_dbxref_cvterm_dbxref_id_seq'::regclass); -- -- Name: cvterm_relationship cvterm_relationship_id; Type: DEFAULT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.cvterm_relationship ALTER COLUMN cvterm_relationship_id SET DEFAULT nextval('public.cvterm_relationship_cvterm_relationship_id_seq'::regclass); -- -- Name: cvtermpath cvtermpath_id; Type: DEFAULT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.cvtermpath ALTER COLUMN cvtermpath_id SET DEFAULT nextval('public.cvtermpath_cvtermpath_id_seq'::regclass); -- -- Name: cvtermprop cvtermprop_id; Type: DEFAULT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.cvtermprop ALTER COLUMN cvtermprop_id SET DEFAULT nextval('public.cvtermprop_cvtermprop_id_seq'::regclass); -- -- Name: cvtermsynonym cvtermsynonym_id; Type: DEFAULT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.cvtermsynonym ALTER COLUMN cvtermsynonym_id SET DEFAULT nextval('public.cvtermsynonym_cvtermsynonym_id_seq'::regclass); -- -- Name: cxgn_bac_pipeline_genbank_log id; Type: DEFAULT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.cxgn_bac_pipeline_genbank_log ALTER COLUMN id SET DEFAULT nextval('public.cxgn_bac_pipeline_genbank_log_id_seq'::regclass); -- -- Name: cxgn_bac_pipeline_loading_log id; Type: DEFAULT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.cxgn_bac_pipeline_loading_log ALTER COLUMN id SET DEFAULT nextval('public.cxgn_bac_pipeline_loading_log_id_seq'::regclass); -- -- Name: cxgn_bac_pipeline_processing_log id; Type: DEFAULT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.cxgn_bac_pipeline_processing_log ALTER COLUMN id SET DEFAULT nextval('public.cxgn_bac_pipeline_processing_log_id_seq'::regclass); -- -- Name: cxgn_indexedlog_test_feel_free_to_delete_me id; Type: DEFAULT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.cxgn_indexedlog_test_feel_free_to_delete_me ALTER COLUMN id SET DEFAULT nextval('public.cxgn_indexedlog_test_feel_free_to_delete_me_id_seq'::regclass); -- -- Name: db db_id; Type: DEFAULT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.db ALTER COLUMN db_id SET DEFAULT nextval('public.db_db_id_seq'::regclass); -- -- Name: dbxref dbxref_id; Type: DEFAULT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.dbxref ALTER COLUMN dbxref_id SET DEFAULT nextval('public.dbxref_dbxref_id_seq'::regclass); -- -- Name: dbxrefprop dbxrefprop_id; Type: DEFAULT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.dbxrefprop ALTER COLUMN dbxrefprop_id SET DEFAULT nextval('public.dbxrefprop_dbxrefprop_id_seq'::regclass); -- -- Name: environment environment_id; Type: DEFAULT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.environment ALTER COLUMN environment_id SET DEFAULT nextval('public.environment_environment_id_seq'::regclass); -- -- Name: environment_cvterm environment_cvterm_id; Type: DEFAULT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.environment_cvterm ALTER COLUMN environment_cvterm_id SET DEFAULT nextval('public.environment_cvterm_environment_cvterm_id_seq'::regclass); -- -- Name: enzyme_restriction_sites enzyme_restriction_sites_id; Type: DEFAULT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.enzyme_restriction_sites ALTER COLUMN enzyme_restriction_sites_id SET DEFAULT nextval('public.enzyme_restriction_sites_enzyme_restriction_sites_id_seq'::regclass); -- -- Name: feature feature_id; Type: DEFAULT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.feature ALTER COLUMN feature_id SET DEFAULT nextval('public.feature_feature_id_seq'::regclass); -- -- Name: feature_cvterm feature_cvterm_id; Type: DEFAULT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.feature_cvterm ALTER COLUMN feature_cvterm_id SET DEFAULT nextval('public.feature_cvterm_feature_cvterm_id_seq'::regclass); -- -- Name: feature_cvterm_dbxref feature_cvterm_dbxref_id; Type: DEFAULT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.feature_cvterm_dbxref ALTER COLUMN feature_cvterm_dbxref_id SET DEFAULT nextval('public.feature_cvterm_dbxref_feature_cvterm_dbxref_id_seq'::regclass); -- -- Name: feature_cvterm_pub feature_cvterm_pub_id; Type: DEFAULT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.feature_cvterm_pub ALTER COLUMN feature_cvterm_pub_id SET DEFAULT nextval('public.feature_cvterm_pub_feature_cvterm_pub_id_seq'::regclass); -- -- Name: feature_cvtermprop feature_cvtermprop_id; Type: DEFAULT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.feature_cvtermprop ALTER COLUMN feature_cvtermprop_id SET DEFAULT nextval('public.feature_cvtermprop_feature_cvtermprop_id_seq'::regclass); -- -- Name: feature_dbxref feature_dbxref_id; Type: DEFAULT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.feature_dbxref ALTER COLUMN feature_dbxref_id SET DEFAULT nextval('public.feature_dbxref_feature_dbxref_id_seq'::regclass); -- -- Name: feature_genotype feature_genotype_id; Type: DEFAULT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.feature_genotype ALTER COLUMN feature_genotype_id SET DEFAULT nextval('public.feature_genotype_feature_genotype_id_seq'::regclass); -- -- Name: feature_pub feature_pub_id; Type: DEFAULT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.feature_pub ALTER COLUMN feature_pub_id SET DEFAULT nextval('public.feature_pub_feature_pub_id_seq'::regclass); -- -- Name: feature_relationship feature_relationship_id; Type: DEFAULT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.feature_relationship ALTER COLUMN feature_relationship_id SET DEFAULT nextval('public.feature_relationship_feature_relationship_id_seq'::regclass); -- -- Name: feature_relationship_pub feature_relationship_pub_id; Type: DEFAULT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.feature_relationship_pub ALTER COLUMN feature_relationship_pub_id SET DEFAULT nextval('public.feature_relationship_pub_feature_relationship_pub_id_seq'::regclass); -- -- Name: feature_relationshipprop feature_relationshipprop_id; Type: DEFAULT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.feature_relationshipprop ALTER COLUMN feature_relationshipprop_id SET DEFAULT nextval('public.feature_relationshipprop_feature_relationshipprop_id_seq'::regclass); -- -- Name: feature_relationshipprop_pub feature_relationshipprop_pub_id; Type: DEFAULT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.feature_relationshipprop_pub ALTER COLUMN feature_relationshipprop_pub_id SET DEFAULT nextval('public.feature_relationshipprop_pub_feature_relationshipprop_pub_i_seq'::regclass); -- -- Name: feature_synonym feature_synonym_id; Type: DEFAULT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.feature_synonym ALTER COLUMN feature_synonym_id SET DEFAULT nextval('public.feature_synonym_feature_synonym_id_seq'::regclass); -- -- Name: featureloc featureloc_id; Type: DEFAULT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.featureloc ALTER COLUMN featureloc_id SET DEFAULT nextval('public.featureloc_featureloc_id_seq'::regclass); -- -- Name: featureloc_pub featureloc_pub_id; Type: DEFAULT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.featureloc_pub ALTER COLUMN featureloc_pub_id SET DEFAULT nextval('public.featureloc_pub_featureloc_pub_id_seq'::regclass); -- -- Name: featureprop featureprop_id; Type: DEFAULT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.featureprop ALTER COLUMN featureprop_id SET DEFAULT nextval('public.featureprop_featureprop_id_seq'::regclass); -- -- Name: featureprop_pub featureprop_pub_id; Type: DEFAULT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.featureprop_pub ALTER COLUMN featureprop_pub_id SET DEFAULT nextval('public.featureprop_pub_featureprop_pub_id_seq'::regclass); -- -- Name: forward_amplicon_sequence_information forward_amplicon_sequence_information_id; Type: DEFAULT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.forward_amplicon_sequence_information ALTER COLUMN forward_amplicon_sequence_information_id SET DEFAULT nextval('public.forward_amplicon_sequence_inf_forward_amplicon_sequence_inf_seq'::regclass); -- -- Name: forward_amplicon_sequence_markers forward_amplicon_sequence_markers_id; Type: DEFAULT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.forward_amplicon_sequence_markers ALTER COLUMN forward_amplicon_sequence_markers_id SET DEFAULT nextval('public.forward_amplicon_sequence_mar_forward_amplicon_sequence_mar_seq'::regclass); -- -- Name: fpc_band fpc_band_id; Type: DEFAULT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.fpc_band ALTER COLUMN fpc_band_id SET DEFAULT nextval('public.fpc_band_fpc_band_id_seq'::regclass); -- -- Name: fpc_build fpc_build_id; Type: DEFAULT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.fpc_build ALTER COLUMN fpc_build_id SET DEFAULT nextval('public.fpc_build_fpc_build_id_seq'::regclass); -- -- Name: fpc_build_fpc_fingerprint fpc_build_fpc_fingerprint_id; Type: DEFAULT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.fpc_build_fpc_fingerprint ALTER COLUMN fpc_build_fpc_fingerprint_id SET DEFAULT nextval('public.fpc_build_fpc_fingerprint_fpc_build_fpc_fingerprint_id_seq'::regclass); -- -- Name: fpc_contig fpc_contig_id; Type: DEFAULT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.fpc_contig ALTER COLUMN fpc_contig_id SET DEFAULT nextval('public.fpc_contig_fpc_contig_id_seq'::regclass); -- -- Name: fpc_contig_clone fpc_contig_clone_id; Type: DEFAULT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.fpc_contig_clone ALTER COLUMN fpc_contig_clone_id SET DEFAULT nextval('public.fpc_contig_clone_fpc_contig_clone_id_seq'::regclass); -- -- Name: fpc_fingerprint fpc_fingerprint_id; Type: DEFAULT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.fpc_fingerprint ALTER COLUMN fpc_fingerprint_id SET DEFAULT nextval('public.fpc_fingerprint_fpc_fingerprint_id_seq'::regclass); -- -- Name: fpc_series fpc_series_id; Type: DEFAULT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.fpc_series ALTER COLUMN fpc_series_id SET DEFAULT nextval('public.fpc_series_fpc_series_id_seq'::regclass); -- -- Name: genotype genotype_id; Type: DEFAULT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.genotype ALTER COLUMN genotype_id SET DEFAULT nextval('public.genotype_genotype_id_seq'::regclass); -- -- Name: genotypeprop genotypeprop_id; Type: DEFAULT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.genotypeprop ALTER COLUMN genotypeprop_id SET DEFAULT nextval('public.genotypeprop_genotypeprop_id_seq'::regclass); -- -- Name: glossary glossary_id; Type: DEFAULT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.glossary ALTER COLUMN glossary_id SET DEFAULT nextval('public.glossary_glossary_id_seq'::regclass); -- -- Name: itag_loading_log id; Type: DEFAULT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.itag_loading_log ALTER COLUMN id SET DEFAULT nextval('public.itag_loading_log_id_seq'::regclass); -- -- Name: materialized_view materialized_view_id; Type: DEFAULT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.materialized_view ALTER COLUMN materialized_view_id SET DEFAULT nextval('public.materialized_view_materialized_view_id_seq'::regclass); -- -- Name: matviews mv_id; Type: DEFAULT; Schema: public; Owner: web_usr -- ALTER TABLE ONLY public.matviews ALTER COLUMN mv_id SET DEFAULT nextval('public.matviews_mv_id_seq'::regclass); -- -- Name: nd_experiment nd_experiment_id; Type: DEFAULT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.nd_experiment ALTER COLUMN nd_experiment_id SET DEFAULT nextval('public.nd_experiment_nd_experiment_id_seq'::regclass); -- -- Name: nd_experiment_contact nd_experiment_contact_id; Type: DEFAULT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.nd_experiment_contact ALTER COLUMN nd_experiment_contact_id SET DEFAULT nextval('public.nd_experiment_contact_nd_experiment_contact_id_seq'::regclass); -- -- Name: nd_experiment_dbxref nd_experiment_dbxref_id; Type: DEFAULT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.nd_experiment_dbxref ALTER COLUMN nd_experiment_dbxref_id SET DEFAULT nextval('public.nd_experiment_dbxref_nd_experiment_dbxref_id_seq'::regclass); -- -- Name: nd_experiment_genotype nd_experiment_genotype_id; Type: DEFAULT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.nd_experiment_genotype ALTER COLUMN nd_experiment_genotype_id SET DEFAULT nextval('public.nd_experiment_genotype_nd_experiment_genotype_id_seq'::regclass); -- -- Name: nd_experiment_phenotype nd_experiment_phenotype_id; Type: DEFAULT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.nd_experiment_phenotype ALTER COLUMN nd_experiment_phenotype_id SET DEFAULT nextval('public.nd_experiment_phenotype_nd_experiment_phenotype_id_seq'::regclass); -- -- Name: nd_experiment_project nd_experiment_project_id; Type: DEFAULT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.nd_experiment_project ALTER COLUMN nd_experiment_project_id SET DEFAULT nextval('public.nd_experiment_project_nd_experiment_project_id_seq'::regclass); -- -- Name: nd_experiment_protocol nd_experiment_protocol_id; Type: DEFAULT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.nd_experiment_protocol ALTER COLUMN nd_experiment_protocol_id SET DEFAULT nextval('public.nd_experiment_protocol_nd_experiment_protocol_id_seq'::regclass); -- -- Name: nd_experiment_pub nd_experiment_pub_id; Type: DEFAULT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.nd_experiment_pub ALTER COLUMN nd_experiment_pub_id SET DEFAULT nextval('public.nd_experiment_pub_nd_experiment_pub_id_seq'::regclass); -- -- Name: nd_experiment_stock nd_experiment_stock_id; Type: DEFAULT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.nd_experiment_stock ALTER COLUMN nd_experiment_stock_id SET DEFAULT nextval('public.nd_experiment_stock_nd_experiment_stock_id_seq'::regclass); -- -- Name: nd_experiment_stock_dbxref nd_experiment_stock_dbxref_id; Type: DEFAULT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.nd_experiment_stock_dbxref ALTER COLUMN nd_experiment_stock_dbxref_id SET DEFAULT nextval('public.nd_experiment_stock_dbxref_nd_experiment_stock_dbxref_id_seq'::regclass); -- -- Name: nd_experiment_stockprop nd_experiment_stockprop_id; Type: DEFAULT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.nd_experiment_stockprop ALTER COLUMN nd_experiment_stockprop_id SET DEFAULT nextval('public.nd_experiment_stockprop_nd_experiment_stockprop_id_seq'::regclass); -- -- Name: nd_experimentprop nd_experimentprop_id; Type: DEFAULT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.nd_experimentprop ALTER COLUMN nd_experimentprop_id SET DEFAULT nextval('public.nd_experimentprop_nd_experimentprop_id_seq'::regclass); -- -- Name: nd_geolocation nd_geolocation_id; Type: DEFAULT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.nd_geolocation ALTER COLUMN nd_geolocation_id SET DEFAULT nextval('public.nd_geolocation_nd_geolocation_id_seq'::regclass); -- -- Name: nd_geolocationprop nd_geolocationprop_id; Type: DEFAULT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.nd_geolocationprop ALTER COLUMN nd_geolocationprop_id SET DEFAULT nextval('public.nd_geolocationprop_nd_geolocationprop_id_seq'::regclass); -- -- Name: nd_protocol nd_protocol_id; Type: DEFAULT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.nd_protocol ALTER COLUMN nd_protocol_id SET DEFAULT nextval('public.nd_protocol_nd_protocol_id_seq'::regclass); -- -- Name: nd_protocol_reagent nd_protocol_reagent_id; Type: DEFAULT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.nd_protocol_reagent ALTER COLUMN nd_protocol_reagent_id SET DEFAULT nextval('public.nd_protocol_reagent_nd_protocol_reagent_id_seq'::regclass); -- -- Name: nd_protocolprop nd_protocolprop_id; Type: DEFAULT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.nd_protocolprop ALTER COLUMN nd_protocolprop_id SET DEFAULT nextval('public.nd_protocolprop_nd_protocolprop_id_seq'::regclass); -- -- Name: nd_reagent nd_reagent_id; Type: DEFAULT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.nd_reagent ALTER COLUMN nd_reagent_id SET DEFAULT nextval('public.nd_reagent_nd_reagent_id_seq'::regclass); -- -- Name: nd_reagent_relationship nd_reagent_relationship_id; Type: DEFAULT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.nd_reagent_relationship ALTER COLUMN nd_reagent_relationship_id SET DEFAULT nextval('public.nd_reagent_relationship_nd_reagent_relationship_id_seq'::regclass); -- -- Name: nd_reagentprop nd_reagentprop_id; Type: DEFAULT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.nd_reagentprop ALTER COLUMN nd_reagentprop_id SET DEFAULT nextval('public.nd_reagentprop_nd_reagentprop_id_seq'::regclass); -- -- Name: organism organism_id; Type: DEFAULT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.organism ALTER COLUMN organism_id SET DEFAULT nextval('public.organism_organism_id_seq'::regclass); -- -- Name: organism_dbxref organism_dbxref_id; Type: DEFAULT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.organism_dbxref ALTER COLUMN organism_dbxref_id SET DEFAULT nextval('public.organism_dbxref_organism_dbxref_id_seq'::regclass); -- -- Name: organism_relationship organism_relationship_id; Type: DEFAULT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.organism_relationship ALTER COLUMN organism_relationship_id SET DEFAULT nextval('public.organism_relationship_organism_relationship_id_seq'::regclass); -- -- Name: organismpath organismpath_id; Type: DEFAULT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.organismpath ALTER COLUMN organismpath_id SET DEFAULT nextval('public.organismpath_organismpath_id_seq'::regclass); -- -- Name: organismprop organismprop_id; Type: DEFAULT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.organismprop ALTER COLUMN organismprop_id SET DEFAULT nextval('public.organismprop_organismprop_id_seq'::regclass); -- -- Name: phendesc phendesc_id; Type: DEFAULT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.phendesc ALTER COLUMN phendesc_id SET DEFAULT nextval('public.phendesc_phendesc_id_seq'::regclass); -- -- Name: phenotype phenotype_id; Type: DEFAULT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.phenotype ALTER COLUMN phenotype_id SET DEFAULT nextval('public.phenotype_phenotype_id_seq'::regclass); -- -- Name: phenotype_comparison phenotype_comparison_id; Type: DEFAULT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.phenotype_comparison ALTER COLUMN phenotype_comparison_id SET DEFAULT nextval('public.phenotype_comparison_phenotype_comparison_id_seq'::regclass); -- -- Name: phenotype_comparison_cvterm phenotype_comparison_cvterm_id; Type: DEFAULT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.phenotype_comparison_cvterm ALTER COLUMN phenotype_comparison_cvterm_id SET DEFAULT nextval('public.phenotype_comparison_cvterm_phenotype_comparison_cvterm_id_seq'::regclass); -- -- Name: phenotype_cvterm phenotype_cvterm_id; Type: DEFAULT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.phenotype_cvterm ALTER COLUMN phenotype_cvterm_id SET DEFAULT nextval('public.phenotype_cvterm_phenotype_cvterm_id_seq'::regclass); -- -- Name: phenotypeprop phenotypeprop_id; Type: DEFAULT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.phenotypeprop ALTER COLUMN phenotypeprop_id SET DEFAULT nextval('public.phenotypeprop_phenotypeprop_id_seq'::regclass); -- -- Name: phenstatement phenstatement_id; Type: DEFAULT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.phenstatement ALTER COLUMN phenstatement_id SET DEFAULT nextval('public.phenstatement_phenstatement_id_seq'::regclass); -- -- Name: phylonode phylonode_id; Type: DEFAULT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.phylonode ALTER COLUMN phylonode_id SET DEFAULT nextval('public.phylonode_phylonode_id_seq'::regclass); -- -- Name: phylonode_dbxref phylonode_dbxref_id; Type: DEFAULT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.phylonode_dbxref ALTER COLUMN phylonode_dbxref_id SET DEFAULT nextval('public.phylonode_dbxref_phylonode_dbxref_id_seq'::regclass); -- -- Name: phylonode_organism phylonode_organism_id; Type: DEFAULT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.phylonode_organism ALTER COLUMN phylonode_organism_id SET DEFAULT nextval('public.phylonode_organism_phylonode_organism_id_seq'::regclass); -- -- Name: phylonode_pub phylonode_pub_id; Type: DEFAULT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.phylonode_pub ALTER COLUMN phylonode_pub_id SET DEFAULT nextval('public.phylonode_pub_phylonode_pub_id_seq'::regclass); -- -- Name: phylonode_relationship phylonode_relationship_id; Type: DEFAULT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.phylonode_relationship ALTER COLUMN phylonode_relationship_id SET DEFAULT nextval('public.phylonode_relationship_phylonode_relationship_id_seq'::regclass); -- -- Name: phylonodeprop phylonodeprop_id; Type: DEFAULT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.phylonodeprop ALTER COLUMN phylonodeprop_id SET DEFAULT nextval('public.phylonodeprop_phylonodeprop_id_seq'::regclass); -- -- Name: phylotree phylotree_id; Type: DEFAULT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.phylotree ALTER COLUMN phylotree_id SET DEFAULT nextval('public.phylotree_phylotree_id_seq'::regclass); -- -- Name: phylotree_pub phylotree_pub_id; Type: DEFAULT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.phylotree_pub ALTER COLUMN phylotree_pub_id SET DEFAULT nextval('public.phylotree_pub_phylotree_pub_id_seq'::regclass); -- -- Name: project project_id; Type: DEFAULT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.project ALTER COLUMN project_id SET DEFAULT nextval('public.project_project_id_seq'::regclass); -- -- Name: project_contact project_contact_id; Type: DEFAULT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.project_contact ALTER COLUMN project_contact_id SET DEFAULT nextval('public.project_contact_project_contact_id_seq'::regclass); -- -- Name: project_pub project_pub_id; Type: DEFAULT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.project_pub ALTER COLUMN project_pub_id SET DEFAULT nextval('public.project_pub_project_pub_id_seq'::regclass); -- -- Name: project_relationship project_relationship_id; Type: DEFAULT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.project_relationship ALTER COLUMN project_relationship_id SET DEFAULT nextval('public.project_relationship_project_relationship_id_seq'::regclass); -- -- Name: projectprop projectprop_id; Type: DEFAULT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.projectprop ALTER COLUMN projectprop_id SET DEFAULT nextval('public.projectprop_projectprop_id_seq'::regclass); -- -- Name: pub pub_id; Type: DEFAULT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.pub ALTER COLUMN pub_id SET DEFAULT nextval('public.pub_pub_id_seq'::regclass); -- -- Name: pub_dbxref pub_dbxref_id; Type: DEFAULT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.pub_dbxref ALTER COLUMN pub_dbxref_id SET DEFAULT nextval('public.pub_dbxref_pub_dbxref_id_seq'::regclass); -- -- Name: pub_relationship pub_relationship_id; Type: DEFAULT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.pub_relationship ALTER COLUMN pub_relationship_id SET DEFAULT nextval('public.pub_relationship_pub_relationship_id_seq'::regclass); -- -- Name: pubabstract pubabstract_id; Type: DEFAULT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.pubabstract ALTER COLUMN pubabstract_id SET DEFAULT nextval('public.pubabstract_pubabstract_id_seq'::regclass); -- -- Name: pubauthor pubauthor_id; Type: DEFAULT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.pubauthor ALTER COLUMN pubauthor_id SET DEFAULT nextval('public.pubauthor_pubauthor_id_seq'::regclass); -- -- Name: pubprop pubprop_id; Type: DEFAULT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.pubprop ALTER COLUMN pubprop_id SET DEFAULT nextval('public.pubprop_pubprop_id_seq'::regclass); -- -- Name: resource_file resource_file_id; Type: DEFAULT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.resource_file ALTER COLUMN resource_file_id SET DEFAULT nextval('public.resource_file_resource_file_id_seq'::regclass); -- -- Name: signalp signalp_id; Type: DEFAULT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.signalp ALTER COLUMN signalp_id SET DEFAULT nextval('public.signalp_signalp_id_seq'::regclass); -- -- Name: stock stock_id; Type: DEFAULT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.stock ALTER COLUMN stock_id SET DEFAULT nextval('public.stock_stock_id_seq'::regclass); -- -- Name: stock_cvterm stock_cvterm_id; Type: DEFAULT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.stock_cvterm ALTER COLUMN stock_cvterm_id SET DEFAULT nextval('public.stock_cvterm_stock_cvterm_id_seq'::regclass); -- -- Name: stock_cvtermprop stock_cvtermprop_id; Type: DEFAULT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.stock_cvtermprop ALTER COLUMN stock_cvtermprop_id SET DEFAULT nextval('public.stock_cvtermprop_stock_cvtermprop_id_seq'::regclass); -- -- Name: stock_dbxref stock_dbxref_id; Type: DEFAULT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.stock_dbxref ALTER COLUMN stock_dbxref_id SET DEFAULT nextval('public.stock_dbxref_stock_dbxref_id_seq'::regclass); -- -- Name: stock_dbxrefprop stock_dbxrefprop_id; Type: DEFAULT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.stock_dbxrefprop ALTER COLUMN stock_dbxrefprop_id SET DEFAULT nextval('public.stock_dbxrefprop_stock_dbxrefprop_id_seq'::regclass); -- -- Name: stock_genotype stock_genotype_id; Type: DEFAULT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.stock_genotype ALTER COLUMN stock_genotype_id SET DEFAULT nextval('public.stock_genotype_stock_genotype_id_seq'::regclass); -- -- Name: stock_pub stock_pub_id; Type: DEFAULT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.stock_pub ALTER COLUMN stock_pub_id SET DEFAULT nextval('public.stock_pub_stock_pub_id_seq'::regclass); -- -- Name: stock_relationship stock_relationship_id; Type: DEFAULT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.stock_relationship ALTER COLUMN stock_relationship_id SET DEFAULT nextval('public.stock_relationship_stock_relationship_id_seq'::regclass); -- -- Name: stock_relationship_cvterm stock_relationship_cvterm_id; Type: DEFAULT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.stock_relationship_cvterm ALTER COLUMN stock_relationship_cvterm_id SET DEFAULT nextval('public.stock_relationship_cvterm_stock_relationship_cvterm_id_seq'::regclass); -- -- Name: stock_relationship_pub stock_relationship_pub_id; Type: DEFAULT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.stock_relationship_pub ALTER COLUMN stock_relationship_pub_id SET DEFAULT nextval('public.stock_relationship_pub_stock_relationship_pub_id_seq'::regclass); -- -- Name: stockcollection stockcollection_id; Type: DEFAULT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.stockcollection ALTER COLUMN stockcollection_id SET DEFAULT nextval('public.stockcollection_stockcollection_id_seq'::regclass); -- -- Name: stockcollection_stock stockcollection_stock_id; Type: DEFAULT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.stockcollection_stock ALTER COLUMN stockcollection_stock_id SET DEFAULT nextval('public.stockcollection_stock_stockcollection_stock_id_seq'::regclass); -- -- Name: stockcollectionprop stockcollectionprop_id; Type: DEFAULT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.stockcollectionprop ALTER COLUMN stockcollectionprop_id SET DEFAULT nextval('public.stockcollectionprop_stockcollectionprop_id_seq'::regclass); -- -- Name: stockprop stockprop_id; Type: DEFAULT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.stockprop ALTER COLUMN stockprop_id SET DEFAULT nextval('public.stockprop_stockprop_id_seq'::regclass); -- -- Name: stockprop_pub stockprop_pub_id; Type: DEFAULT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.stockprop_pub ALTER COLUMN stockprop_pub_id SET DEFAULT nextval('public.stockprop_pub_stockprop_pub_id_seq'::regclass); -- -- Name: synonym synonym_id; Type: DEFAULT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.synonym ALTER COLUMN synonym_id SET DEFAULT nextval('public.synonym_synonym_id_seq'::regclass); -- -- Name: tableinfo tableinfo_id; Type: DEFAULT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.tableinfo ALTER COLUMN tableinfo_id SET DEFAULT nextval('public.tableinfo_tableinfo_id_seq'::regclass); -- -- Name: tmp_cds_handler cds_row_id; Type: DEFAULT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.tmp_cds_handler ALTER COLUMN cds_row_id SET DEFAULT nextval('public.tmp_cds_handler_cds_row_id_seq'::regclass); -- -- Name: tmp_cds_handler_relationship rel_row_id; Type: DEFAULT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.tmp_cds_handler_relationship ALTER COLUMN rel_row_id SET DEFAULT nextval('public.tmp_cds_handler_relationship_rel_row_id_seq'::regclass); -- -- Name: unigene_dbxref unigene_dbxref_id; Type: DEFAULT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.unigene_dbxref ALTER COLUMN unigene_dbxref_id SET DEFAULT nextval('public.unigene_dbxref_unigene_dbxref_id_seq'::regclass); -- -- Name: accession accession_id; Type: DEFAULT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.accession ALTER COLUMN accession_id SET DEFAULT nextval('sgn.accession_accession_id_seq'::regclass); -- -- Name: accession_names accession_name_id; Type: DEFAULT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.accession_names ALTER COLUMN accession_name_id SET DEFAULT nextval('sgn.accession_names_accession_name_id_seq'::regclass); -- -- Name: annotation_target_type annotation_target_type_id; Type: DEFAULT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.annotation_target_type ALTER COLUMN annotation_target_type_id SET DEFAULT nextval('sgn.annotation_target_type_annotation_target_type_id_seq'::regclass); -- -- Name: authors author_id; Type: DEFAULT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.authors ALTER COLUMN author_id SET DEFAULT nextval('sgn.authors_author_id_seq'::regclass); -- -- Name: blast_annotations blast_annotation_id; Type: DEFAULT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.blast_annotations ALTER COLUMN blast_annotation_id SET DEFAULT nextval('sgn.blast_annotations_blast_annotation_id_seq'::regclass); -- -- Name: blast_db blast_db_id; Type: DEFAULT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.blast_db ALTER COLUMN blast_db_id SET DEFAULT nextval('sgn.blast_db_blast_db_id_seq'::regclass); -- -- Name: blast_db_blast_db_group blast_db_blast_db_group_id; Type: DEFAULT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.blast_db_blast_db_group ALTER COLUMN blast_db_blast_db_group_id SET DEFAULT nextval('sgn.blast_db_blast_db_group_blast_db_blast_db_group_id_seq'::regclass); -- -- Name: blast_db_group blast_db_group_id; Type: DEFAULT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.blast_db_group ALTER COLUMN blast_db_group_id SET DEFAULT nextval('sgn.blast_db_group_blast_db_group_id_seq'::regclass); -- -- Name: blast_db_organism blast_db_organism_id; Type: DEFAULT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.blast_db_organism ALTER COLUMN blast_db_organism_id SET DEFAULT nextval('sgn.blast_db_organism_blast_db_organism_id_seq'::regclass); -- -- Name: blast_defline defline_id; Type: DEFAULT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.blast_defline ALTER COLUMN defline_id SET DEFAULT nextval('sgn.blast_defline_defline_id_seq'::regclass); -- -- Name: blast_hits blast_hit_id; Type: DEFAULT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.blast_hits ALTER COLUMN blast_hit_id SET DEFAULT nextval('sgn.blast_hits_blast_hit_id_seq'::regclass); -- -- Name: blast_targets blast_target_id; Type: DEFAULT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.blast_targets ALTER COLUMN blast_target_id SET DEFAULT nextval('sgn.blast_targets_blast_target_id_seq'::regclass); -- -- Name: cds cds_id; Type: DEFAULT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.cds ALTER COLUMN cds_id SET DEFAULT nextval('sgn.cds_cds_id_seq'::regclass); -- -- Name: chadoprop chadoprop_id; Type: DEFAULT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.chadoprop ALTER COLUMN chadoprop_id SET DEFAULT nextval('sgn.chadoprop_chadoprop_id_seq'::regclass); -- -- Name: clone clone_id; Type: DEFAULT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.clone ALTER COLUMN clone_id SET DEFAULT nextval('sgn.clone_clone_id_seq'::regclass); -- -- Name: cloning_vector cloning_vector_id; Type: DEFAULT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.cloning_vector ALTER COLUMN cloning_vector_id SET DEFAULT nextval('sgn.cloning_vector_cloning_vector_id_seq'::regclass); -- -- Name: common_name common_name_id; Type: DEFAULT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.common_name ALTER COLUMN common_name_id SET DEFAULT nextval('sgn.common_name_common_name_id_seq'::regclass); -- -- Name: common_nameprop common_nameprop_id; Type: DEFAULT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.common_nameprop ALTER COLUMN common_nameprop_id SET DEFAULT nextval('sgn.common_nameprop_common_nameprop_id_seq'::regclass); -- -- Name: cos_markers cos_marker_id; Type: DEFAULT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.cos_markers ALTER COLUMN cos_marker_id SET DEFAULT nextval('sgn.cos_markers_cos_marker_id_seq'::regclass); -- -- Name: cosii_ortholog cosii_unigene_id; Type: DEFAULT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.cosii_ortholog ALTER COLUMN cosii_unigene_id SET DEFAULT nextval('sgn.cosii_ortholog_cosii_unigene_id_seq'::regclass); -- -- Name: deprecated_linkage_groups lg_id; Type: DEFAULT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.deprecated_linkage_groups ALTER COLUMN lg_id SET DEFAULT nextval('sgn.deprecated_linkage_groups_lg_id_seq'::regclass); -- -- Name: deprecated_map_cross map_cross_id; Type: DEFAULT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.deprecated_map_cross ALTER COLUMN map_cross_id SET DEFAULT nextval('sgn.deprecated_map_cross_map_cross_id_seq'::regclass); -- -- Name: deprecated_mapdata loc_id; Type: DEFAULT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.deprecated_mapdata ALTER COLUMN loc_id SET DEFAULT nextval('sgn.deprecated_mapdata_loc_id_seq'::regclass); -- -- Name: deprecated_maps map_id; Type: DEFAULT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.deprecated_maps ALTER COLUMN map_id SET DEFAULT nextval('sgn.deprecated_maps_map_id_seq'::regclass); -- -- Name: deprecated_marker_confidences confidence_id; Type: DEFAULT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.deprecated_marker_confidences ALTER COLUMN confidence_id SET DEFAULT nextval('sgn.deprecated_marker_confidences_confidence_id_seq'::regclass); -- -- Name: deprecated_marker_locations marker_location_id; Type: DEFAULT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.deprecated_marker_locations ALTER COLUMN marker_location_id SET DEFAULT nextval('sgn.deprecated_marker_locations_marker_location_id_seq'::regclass); -- -- Name: deprecated_marker_types marker_type_id; Type: DEFAULT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.deprecated_marker_types ALTER COLUMN marker_type_id SET DEFAULT nextval('sgn.deprecated_marker_types_marker_type_id_seq'::regclass); -- -- Name: deprecated_markers marker_id; Type: DEFAULT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.deprecated_markers ALTER COLUMN marker_id SET DEFAULT nextval('sgn.deprecated_markers_marker_id_seq'::regclass); -- -- Name: derived_from_source derived_from_source_id; Type: DEFAULT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.derived_from_source ALTER COLUMN derived_from_source_id SET DEFAULT nextval('sgn.derived_from_source_derived_from_source_id_seq'::regclass); -- -- Name: domain domain_id; Type: DEFAULT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.domain ALTER COLUMN domain_id SET DEFAULT nextval('sgn.domain_domain_id_seq'::regclass); -- -- Name: domain_match domain_match_id; Type: DEFAULT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.domain_match ALTER COLUMN domain_match_id SET DEFAULT nextval('sgn.domain_match_domain_match_id_seq'::regclass); -- -- Name: enzyme_restriction_sites enzyme_restriction_sites_id; Type: DEFAULT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.enzyme_restriction_sites ALTER COLUMN enzyme_restriction_sites_id SET DEFAULT nextval('sgn.enzyme_restriction_sites_enzyme_restriction_sites_id_seq'::regclass); -- -- Name: enzymes enzyme_id; Type: DEFAULT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.enzymes ALTER COLUMN enzyme_id SET DEFAULT nextval('sgn.enzymes_enzyme_id_seq'::regclass); -- -- Name: est est_id; Type: DEFAULT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.est ALTER COLUMN est_id SET DEFAULT nextval('sgn.est_est_id_seq'::regclass); -- -- Name: est_dbxref est_dbxref_id; Type: DEFAULT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.est_dbxref ALTER COLUMN est_dbxref_id SET DEFAULT nextval('sgn.est_dbxref_est_dbxref_id_seq'::regclass); -- -- Name: ests_mapped_by_clone embc_id; Type: DEFAULT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.ests_mapped_by_clone ALTER COLUMN embc_id SET DEFAULT nextval('sgn.ests_mapped_by_clone_embc_id_seq'::regclass); -- -- Name: experiment_type experiment_type_id; Type: DEFAULT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.experiment_type ALTER COLUMN experiment_type_id SET DEFAULT nextval('sgn.experiment_type_experiment_type_id_seq'::regclass); -- -- Name: facility facility_id; Type: DEFAULT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.facility ALTER COLUMN facility_id SET DEFAULT nextval('sgn.facility_facility_id_seq'::regclass); -- -- Name: family family_id; Type: DEFAULT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.family ALTER COLUMN family_id SET DEFAULT nextval('sgn.family_family_id_seq'::regclass); -- -- Name: family_build family_build_id; Type: DEFAULT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.family_build ALTER COLUMN family_build_id SET DEFAULT nextval('sgn.family_build_family_build_id_seq'::regclass); -- -- Name: family_member family_member_id; Type: DEFAULT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.family_member ALTER COLUMN family_member_id SET DEFAULT nextval('sgn.family_member_family_member_id_seq'::regclass); -- -- Name: family_tree family_tree_id; Type: DEFAULT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.family_tree ALTER COLUMN family_tree_id SET DEFAULT nextval('sgn.family_tree_family_tree_id_seq'::regclass); -- -- Name: fish_experimenter fish_experimenter_id; Type: DEFAULT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.fish_experimenter ALTER COLUMN fish_experimenter_id SET DEFAULT nextval('sgn.fish_experimenter_fish_experimenter_id_seq'::regclass); -- -- Name: fish_file fish_file_id; Type: DEFAULT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.fish_file ALTER COLUMN fish_file_id SET DEFAULT nextval('sgn.fish_file_fish_file_id_seq'::regclass); -- -- Name: fish_result fish_result_id; Type: DEFAULT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.fish_result ALTER COLUMN fish_result_id SET DEFAULT nextval('sgn.fish_result_fish_result_id_seq'::regclass); -- -- Name: fish_result_image fish_result_image_id; Type: DEFAULT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.fish_result_image ALTER COLUMN fish_result_image_id SET DEFAULT nextval('sgn.fish_result_image_fish_result_image_id_seq'::regclass); -- -- Name: go go_id; Type: DEFAULT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.go ALTER COLUMN go_id SET DEFAULT nextval('sgn.go_go_id_seq'::regclass); -- -- Name: group_linkage group_linkage_id; Type: DEFAULT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.group_linkage ALTER COLUMN group_linkage_id SET DEFAULT nextval('sgn.group_linkage_group_linkage_id_seq'::regclass); -- -- Name: groups group_id; Type: DEFAULT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.groups ALTER COLUMN group_id SET DEFAULT nextval('sgn.groups_group_id_seq'::regclass); -- -- Name: id_linkage id_linkage_id; Type: DEFAULT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.id_linkage ALTER COLUMN id_linkage_id SET DEFAULT nextval('sgn.id_linkage_id_linkage_id_seq'::regclass); -- -- Name: interpro interpro_id; Type: DEFAULT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.interpro ALTER COLUMN interpro_id SET DEFAULT nextval('sgn.interpro_interpro_id_seq'::regclass); -- -- Name: interpro_go interpro_go_id; Type: DEFAULT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.interpro_go ALTER COLUMN interpro_go_id SET DEFAULT nextval('sgn.interpro_go_interpro_go_id_seq'::regclass); -- -- Name: library library_id; Type: DEFAULT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.library ALTER COLUMN library_id SET DEFAULT nextval('sgn.library_library_id_seq'::regclass); -- -- Name: linkage_group lg_id; Type: DEFAULT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.linkage_group ALTER COLUMN lg_id SET DEFAULT nextval('sgn.linkage_group_lg_id_seq'::regclass); -- -- Name: loc_types loc_type_id; Type: DEFAULT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.loc_types ALTER COLUMN loc_type_id SET DEFAULT nextval('sgn.loc_types_loc_type_id_seq'::regclass); -- -- Name: manual_annotations manual_annotations_id; Type: DEFAULT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.manual_annotations ALTER COLUMN manual_annotations_id SET DEFAULT nextval('sgn.manual_annotations_manual_annotations_id_seq'::regclass); -- -- Name: manual_censor_reasons censor_id; Type: DEFAULT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.manual_censor_reasons ALTER COLUMN censor_id SET DEFAULT nextval('sgn.manual_censor_reasons_censor_id_seq'::regclass); -- -- Name: map map_id; Type: DEFAULT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.map ALTER COLUMN map_id SET DEFAULT nextval('sgn.map_map_id_seq'::regclass); -- -- Name: map_version map_version_id; Type: DEFAULT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.map_version ALTER COLUMN map_version_id SET DEFAULT nextval('sgn.map_version_map_version_id_seq'::regclass); -- -- Name: marker marker_id; Type: DEFAULT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.marker ALTER COLUMN marker_id SET DEFAULT nextval('sgn.marker_marker_id_seq'::regclass); -- -- Name: marker_alias alias_id; Type: DEFAULT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.marker_alias ALTER COLUMN alias_id SET DEFAULT nextval('sgn.marker_alias_alias_id_seq'::regclass); -- -- Name: marker_collectible marker_collectible_dummy_id; Type: DEFAULT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.marker_collectible ALTER COLUMN marker_collectible_dummy_id SET DEFAULT nextval('sgn.marker_collectible_marker_collectible_dummy_id_seq'::regclass); -- -- Name: marker_collection mc_id; Type: DEFAULT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.marker_collection ALTER COLUMN mc_id SET DEFAULT nextval('sgn.marker_collection_mc_id_seq'::regclass); -- -- Name: marker_confidence confidence_id; Type: DEFAULT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.marker_confidence ALTER COLUMN confidence_id SET DEFAULT nextval('sgn.marker_confidence_confidence_id_seq'::regclass); -- -- Name: marker_derived_from marker_derived_dummy_id; Type: DEFAULT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.marker_derived_from ALTER COLUMN marker_derived_dummy_id SET DEFAULT nextval('sgn.marker_derived_from_marker_derived_dummy_id_seq'::regclass); -- -- Name: marker_experiment marker_experiment_id; Type: DEFAULT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.marker_experiment ALTER COLUMN marker_experiment_id SET DEFAULT nextval('sgn.marker_experiment_marker_experiment_id_seq'::regclass); -- -- Name: marker_location location_id; Type: DEFAULT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.marker_location ALTER COLUMN location_id SET DEFAULT nextval('sgn.marker_location_location_id_seq'::regclass); -- -- Name: metadata metadata_id; Type: DEFAULT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.metadata ALTER COLUMN metadata_id SET DEFAULT nextval('sgn.metadata_metadata_id_seq'::regclass); -- -- Name: microarray microarray_id; Type: DEFAULT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.microarray ALTER COLUMN microarray_id SET DEFAULT nextval('sgn.microarray_microarray_id_seq'::regclass); -- -- Name: misc misc_unique_id; Type: DEFAULT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.misc ALTER COLUMN misc_unique_id SET DEFAULT nextval('sgn.misc_misc_unique_id_seq'::regclass); -- -- Name: organism organism_id; Type: DEFAULT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.organism ALTER COLUMN organism_id SET DEFAULT nextval('sgn.organism_organism_id_seq'::regclass); -- -- Name: organismgroup organismgroup_id; Type: DEFAULT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.organismgroup ALTER COLUMN organismgroup_id SET DEFAULT nextval('sgn.organismgroup_organismgroup_id_seq'::regclass); -- -- Name: organismgroup_member organismgroup_member_id; Type: DEFAULT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.organismgroup_member ALTER COLUMN organismgroup_member_id SET DEFAULT nextval('sgn.organismgroup_member_organismgroup_member_id_seq'::regclass); -- -- Name: p_markers pid; Type: DEFAULT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.p_markers ALTER COLUMN pid SET DEFAULT nextval('sgn.p_markers_pid_seq'::regclass); -- -- Name: pcr_exp_accession pcr_exp_accession_id; Type: DEFAULT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.pcr_exp_accession ALTER COLUMN pcr_exp_accession_id SET DEFAULT nextval('sgn.pcr_exp_accession_pcr_exp_accession_id_seq'::regclass); -- -- Name: pcr_experiment pcr_experiment_id; Type: DEFAULT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.pcr_experiment ALTER COLUMN pcr_experiment_id SET DEFAULT nextval('sgn.pcr_experiment_pcr_experiment_id_seq'::regclass); -- -- Name: pcr_experiment_sequence pcr_experiment_sequence_id; Type: DEFAULT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.pcr_experiment_sequence ALTER COLUMN pcr_experiment_sequence_id SET DEFAULT nextval('sgn.pcr_experiment_sequence_pcr_experiment_sequence_id_seq'::regclass); -- -- Name: pcr_product pcr_product_id; Type: DEFAULT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.pcr_product ALTER COLUMN pcr_product_id SET DEFAULT nextval('sgn.pcr_product_pcr_product_id_seq'::regclass); -- -- Name: primer_unigene_match primer_unigene_match_id; Type: DEFAULT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.primer_unigene_match ALTER COLUMN primer_unigene_match_id SET DEFAULT nextval('sgn.primer_unigene_match_primer_unigene_match_id_seq'::regclass); -- -- Name: qc_report qc_id; Type: DEFAULT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.qc_report ALTER COLUMN qc_id SET DEFAULT nextval('sgn.qc_report_qc_id_seq'::regclass); -- -- Name: rflp_markers rflp_id; Type: DEFAULT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.rflp_markers ALTER COLUMN rflp_id SET DEFAULT nextval('sgn.rflp_markers_rflp_id_seq'::regclass); -- -- Name: rflp_sequences seq_id; Type: DEFAULT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.rflp_sequences ALTER COLUMN seq_id SET DEFAULT nextval('sgn.rflp_sequences_seq_id_seq'::regclass); -- -- Name: rflp_unigene_associations rflp_unigene_assoc_id; Type: DEFAULT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.rflp_unigene_associations ALTER COLUMN rflp_unigene_assoc_id SET DEFAULT nextval('sgn.rflp_unigene_associations_rflp_unigene_assoc_id_seq'::regclass); -- -- Name: seqread read_id; Type: DEFAULT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.seqread ALTER COLUMN read_id SET DEFAULT nextval('sgn.seqread_read_id_seq'::regclass); -- -- Name: sequence sequence_id; Type: DEFAULT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.sequence ALTER COLUMN sequence_id SET DEFAULT nextval('sgn.sequence_sequence_id_seq'::regclass); -- -- Name: snp snp_id; Type: DEFAULT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.snp ALTER COLUMN snp_id SET DEFAULT nextval('sgn.snp_snp_id_seq'::regclass); -- -- Name: snp_file snp_file_id; Type: DEFAULT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.snp_file ALTER COLUMN snp_file_id SET DEFAULT nextval('sgn.snp_file_snp_file_id_seq'::regclass); -- -- Name: snpprop snpprop_id; Type: DEFAULT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.snpprop ALTER COLUMN snpprop_id SET DEFAULT nextval('sgn.snpprop_snpprop_id_seq'::regclass); -- -- Name: ssr ssr_id; Type: DEFAULT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.ssr ALTER COLUMN ssr_id SET DEFAULT nextval('sgn.ssr_ssr_id_seq'::regclass); -- -- Name: ssr_primer_unigene_matches ssr_primer_unigene_match_id; Type: DEFAULT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.ssr_primer_unigene_matches ALTER COLUMN ssr_primer_unigene_match_id SET DEFAULT nextval('sgn.ssr_primer_unigene_matches_ssr_primer_unigene_match_id_seq'::regclass); -- -- Name: ssr_repeats repeat_id; Type: DEFAULT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.ssr_repeats ALTER COLUMN repeat_id SET DEFAULT nextval('sgn.ssr_repeats_repeat_id_seq'::regclass); -- -- Name: submit_user submit_user_id; Type: DEFAULT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.submit_user ALTER COLUMN submit_user_id SET DEFAULT nextval('sgn.submit_user_submit_user_id_seq'::regclass); -- -- Name: taxonomy tax_id; Type: DEFAULT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.taxonomy ALTER COLUMN tax_id SET DEFAULT nextval('sgn.taxonomy_tax_id_seq'::regclass); -- -- Name: temp_caps_correspondence tcc_id; Type: DEFAULT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.temp_caps_correspondence ALTER COLUMN tcc_id SET DEFAULT nextval('sgn.temp_caps_correspondence_tcc_id_seq'::regclass); -- -- Name: temp_map_correspondence tmc_id; Type: DEFAULT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.temp_map_correspondence ALTER COLUMN tmc_id SET DEFAULT nextval('sgn.temp_map_correspondence_tmc_id_seq'::regclass); -- -- Name: temp_marker_correspondence tmc_id; Type: DEFAULT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.temp_marker_correspondence ALTER COLUMN tmc_id SET DEFAULT nextval('sgn.temp_marker_correspondence_tmc_id_seq'::regclass); -- -- Name: tigrtc_index tcindex_id; Type: DEFAULT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.tigrtc_index ALTER COLUMN tcindex_id SET DEFAULT nextval('sgn.tigrtc_index_tcindex_id_seq'::regclass); -- -- Name: tigrtc_membership tigrtc_membership_id; Type: DEFAULT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.tigrtc_membership ALTER COLUMN tigrtc_membership_id SET DEFAULT nextval('sgn.tigrtc_membership_tigrtc_membership_id_seq'::regclass); -- -- Name: tigrtc_tracking tigrtc_tracking_id; Type: DEFAULT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.tigrtc_tracking ALTER COLUMN tigrtc_tracking_id SET DEFAULT nextval('sgn.tigrtc_tracking_tigrtc_tracking_id_seq'::regclass); -- -- Name: tm_markers tm_id; Type: DEFAULT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.tm_markers ALTER COLUMN tm_id SET DEFAULT nextval('sgn.tm_markers_tm_id_seq'::regclass); -- -- Name: trim_feature feature_id; Type: DEFAULT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.trim_feature ALTER COLUMN feature_id SET DEFAULT nextval('sgn.trim_feature_feature_id_seq'::regclass); -- -- Name: trim_feature_types trim_type_id; Type: DEFAULT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.trim_feature_types ALTER COLUMN trim_type_id SET DEFAULT nextval('sgn.trim_feature_types_trim_type_id_seq'::regclass); -- -- Name: types type_id; Type: DEFAULT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.types ALTER COLUMN type_id SET DEFAULT nextval('sgn.types_type_id_seq'::regclass); -- -- Name: unigene unigene_id; Type: DEFAULT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.unigene ALTER COLUMN unigene_id SET DEFAULT nextval('sgn.unigene_unigene_id_seq'::regclass); -- -- Name: unigene_build unigene_build_id; Type: DEFAULT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.unigene_build ALTER COLUMN unigene_build_id SET DEFAULT nextval('sgn.unigene_build_unigene_build_id_seq'::regclass); -- -- Name: unigene_consensi consensi_id; Type: DEFAULT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.unigene_consensi ALTER COLUMN consensi_id SET DEFAULT nextval('sgn.unigene_consensi_consensi_id_seq'::regclass); -- -- Name: unigene_member unigene_member_id; Type: DEFAULT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.unigene_member ALTER COLUMN unigene_member_id SET DEFAULT nextval('sgn.unigene_member_unigene_member_id_seq'::regclass); -- -- Name: bac_status bac_status_id; Type: DEFAULT; Schema: sgn_people; Owner: postgres -- ALTER TABLE ONLY sgn_people.bac_status ALTER COLUMN bac_status_id SET DEFAULT nextval('sgn_people.bac_status_bac_status_id_seq'::regclass); -- -- Name: bac_status_log bac_status_log_id; Type: DEFAULT; Schema: sgn_people; Owner: postgres -- ALTER TABLE ONLY sgn_people.bac_status_log ALTER COLUMN bac_status_log_id SET DEFAULT nextval('sgn_people.bac_status_log_bac_status_log_id_seq'::regclass); -- -- Name: clone_il_mapping_bin_log sp_clone_il_mapping_bin_log_id; Type: DEFAULT; Schema: sgn_people; Owner: postgres -- ALTER TABLE ONLY sgn_people.clone_il_mapping_bin_log ALTER COLUMN sp_clone_il_mapping_bin_log_id SET DEFAULT nextval('sgn_people.clone_il_mapping_bin_log_sp_clone_il_mapping_bin_log_id_seq'::regclass); -- -- Name: clone_validation_log clone_validation_log_id; Type: DEFAULT; Schema: sgn_people; Owner: postgres -- ALTER TABLE ONLY sgn_people.clone_validation_log ALTER COLUMN clone_validation_log_id SET DEFAULT nextval('sgn_people.clone_validation_log_clone_validation_log_id_seq'::regclass); -- -- Name: clone_verification_log clone_verification_log_id; Type: DEFAULT; Schema: sgn_people; Owner: postgres -- ALTER TABLE ONLY sgn_people.clone_verification_log ALTER COLUMN clone_verification_log_id SET DEFAULT nextval('sgn_people.clone_verification_log_clone_verification_log_id_seq'::regclass); -- -- Name: forum_post forum_post_id; Type: DEFAULT; Schema: sgn_people; Owner: postgres -- ALTER TABLE ONLY sgn_people.forum_post ALTER COLUMN forum_post_id SET DEFAULT nextval('sgn_people.forum_post_forum_post_id_seq'::regclass); -- -- Name: forum_topic forum_topic_id; Type: DEFAULT; Schema: sgn_people; Owner: postgres -- ALTER TABLE ONLY sgn_people.forum_topic ALTER COLUMN forum_topic_id SET DEFAULT nextval('sgn_people.forum_topic_forum_topic_id_seq'::regclass); -- -- Name: list list_id; Type: DEFAULT; Schema: sgn_people; Owner: postgres -- ALTER TABLE ONLY sgn_people.list ALTER COLUMN list_id SET DEFAULT nextval('sgn_people.list_list_id_seq'::regclass); -- -- Name: list_item list_item_id; Type: DEFAULT; Schema: sgn_people; Owner: postgres -- ALTER TABLE ONLY sgn_people.list_item ALTER COLUMN list_item_id SET DEFAULT nextval('sgn_people.list_item_list_item_id_seq'::regclass); -- -- Name: sp_clone_il_mapping_segment_log sp_clone_il_mapping_segment_log_id; Type: DEFAULT; Schema: sgn_people; Owner: postgres -- ALTER TABLE ONLY sgn_people.sp_clone_il_mapping_segment_log ALTER COLUMN sp_clone_il_mapping_segment_log_id SET DEFAULT nextval('sgn_people.sp_clone_il_mapping_segment_l_sp_clone_il_mapping_segment_l_seq'::regclass); -- -- Name: sp_dataset sp_dataset_id; Type: DEFAULT; Schema: sgn_people; Owner: postgres -- ALTER TABLE ONLY sgn_people.sp_dataset ALTER COLUMN sp_dataset_id SET DEFAULT nextval('sgn_people.sp_dataset_sp_dataset_id_seq'::regclass); -- -- Name: sp_group sp_group_id; Type: DEFAULT; Schema: sgn_people; Owner: postgres -- ALTER TABLE ONLY sgn_people.sp_group ALTER COLUMN sp_group_id SET DEFAULT nextval('sgn_people.sp_group_sp_group_id_seq'::regclass); -- -- Name: sp_login_old sp_login_id; Type: DEFAULT; Schema: sgn_people; Owner: postgres -- ALTER TABLE ONLY sgn_people.sp_login_old ALTER COLUMN sp_login_id SET DEFAULT nextval('sgn_people.sp_login_old_sp_login_id_seq'::regclass); -- -- Name: sp_organisms organism_id; Type: DEFAULT; Schema: sgn_people; Owner: postgres -- ALTER TABLE ONLY sgn_people.sp_organisms ALTER COLUMN organism_id SET DEFAULT nextval('sgn_people.sp_organisms_organism_id_seq'::regclass); -- -- Name: sp_organization sp_organization_id; Type: DEFAULT; Schema: sgn_people; Owner: postgres -- ALTER TABLE ONLY sgn_people.sp_organization ALTER COLUMN sp_organization_id SET DEFAULT nextval('sgn_people.sp_organization_sp_organization_id_seq'::regclass); -- -- Name: sp_organization_person sp_organization_person_id; Type: DEFAULT; Schema: sgn_people; Owner: postgres -- ALTER TABLE ONLY sgn_people.sp_organization_person ALTER COLUMN sp_organization_person_id SET DEFAULT nextval('sgn_people.sp_organization_person_sp_organization_person_id_seq'::regclass); -- -- Name: sp_papers sp_paper_id; Type: DEFAULT; Schema: sgn_people; Owner: postgres -- ALTER TABLE ONLY sgn_people.sp_papers ALTER COLUMN sp_paper_id SET DEFAULT nextval('sgn_people.sp_papers_sp_paper_id_seq'::regclass); -- -- Name: sp_person sp_person_id; Type: DEFAULT; Schema: sgn_people; Owner: postgres -- ALTER TABLE ONLY sgn_people.sp_person ALTER COLUMN sp_person_id SET DEFAULT nextval('sgn_people.sp_person_sp_person_id_seq'::regclass); -- -- Name: sp_person_organisms sp_person_organisms_id; Type: DEFAULT; Schema: sgn_people; Owner: postgres -- ALTER TABLE ONLY sgn_people.sp_person_organisms ALTER COLUMN sp_person_organisms_id SET DEFAULT nextval('sgn_people.sp_person_organisms_sp_person_organisms_id_seq'::regclass); -- -- Name: sp_person_roles sp_person_role_id; Type: DEFAULT; Schema: sgn_people; Owner: postgres -- ALTER TABLE ONLY sgn_people.sp_person_roles ALTER COLUMN sp_person_role_id SET DEFAULT nextval('sgn_people.sp_person_roles_sp_person_role_id_seq'::regclass); -- -- Name: sp_project sp_project_id; Type: DEFAULT; Schema: sgn_people; Owner: postgres -- ALTER TABLE ONLY sgn_people.sp_project ALTER COLUMN sp_project_id SET DEFAULT nextval('sgn_people.sp_project_sp_project_id_seq'::regclass); -- -- Name: sp_project_il_mapping_clone_log sp_project_il_mapping_clone_log_id; Type: DEFAULT; Schema: sgn_people; Owner: postgres -- ALTER TABLE ONLY sgn_people.sp_project_il_mapping_clone_log ALTER COLUMN sp_project_il_mapping_clone_log_id SET DEFAULT nextval('sgn_people.sp_project_il_mapping_clone_l_sp_project_il_mapping_clone_l_seq'::regclass); -- -- Name: sp_project_organization sp_project_organization_id; Type: DEFAULT; Schema: sgn_people; Owner: postgres -- ALTER TABLE ONLY sgn_people.sp_project_organization ALTER COLUMN sp_project_organization_id SET DEFAULT nextval('sgn_people.sp_project_organization_sp_project_organization_id_seq'::regclass); -- -- Name: sp_project_person sp_project_person_id; Type: DEFAULT; Schema: sgn_people; Owner: postgres -- ALTER TABLE ONLY sgn_people.sp_project_person ALTER COLUMN sp_project_person_id SET DEFAULT nextval('sgn_people.sp_project_person_sp_project_person_id_seq'::regclass); -- -- Name: sp_roles sp_role_id; Type: DEFAULT; Schema: sgn_people; Owner: postgres -- ALTER TABLE ONLY sgn_people.sp_roles ALTER COLUMN sp_role_id SET DEFAULT nextval('sgn_people.sp_roles_sp_role_id_seq'::regclass); -- -- Name: user_map user_map_id; Type: DEFAULT; Schema: sgn_people; Owner: postgres -- ALTER TABLE ONLY sgn_people.user_map ALTER COLUMN user_map_id SET DEFAULT nextval('sgn_people.user_map_user_map_id_seq'::regclass); -- -- Name: user_map_data user_map_data_id; Type: DEFAULT; Schema: sgn_people; Owner: postgres -- ALTER TABLE ONLY sgn_people.user_map_data ALTER COLUMN user_map_data_id SET DEFAULT nextval('sgn_people.user_map_data_user_map_data_id_seq'::regclass); -- -- Name: facility facility_id; Type: DEFAULT; Schema: sgn_submit; Owner: postgres -- ALTER TABLE ONLY sgn_submit.facility ALTER COLUMN facility_id SET DEFAULT nextval('sgn_submit.facility_facility_id_seq'::regclass); -- -- Name: library library_id; Type: DEFAULT; Schema: sgn_submit; Owner: postgres -- ALTER TABLE ONLY sgn_submit.library ALTER COLUMN library_id SET DEFAULT nextval('sgn_submit.library_library_id_seq'::regclass); -- -- Name: seqread submit_read_id; Type: DEFAULT; Schema: sgn_submit; Owner: postgres -- ALTER TABLE ONLY sgn_submit.seqread ALTER COLUMN submit_read_id SET DEFAULT nextval('sgn_submit.seqread_submit_read_id_seq'::regclass); -- -- Name: submit_user submit_user_id; Type: DEFAULT; Schema: sgn_submit; Owner: postgres -- ALTER TABLE ONLY sgn_submit.submit_user ALTER COLUMN submit_user_id SET DEFAULT nextval('sgn_submit.submit_user_submit_user_id_seq'::regclass); -- -- Name: fattribute fattribute_id; Type: DEFAULT; Schema: tomato_gff; Owner: postgres -- ALTER TABLE ONLY tomato_gff.fattribute ALTER COLUMN fattribute_id SET DEFAULT nextval('tomato_gff.fattribute_fattribute_id_seq'::regclass); -- -- Name: fdata fid; Type: DEFAULT; Schema: tomato_gff; Owner: postgres -- ALTER TABLE ONLY tomato_gff.fdata ALTER COLUMN fid SET DEFAULT nextval('tomato_gff.fdata_fid_seq'::regclass); -- -- Name: fgroup gid; Type: DEFAULT; Schema: tomato_gff; Owner: postgres -- ALTER TABLE ONLY tomato_gff.fgroup ALTER COLUMN gid SET DEFAULT nextval('tomato_gff.fgroup_gid_seq'::regclass); -- -- Name: ftype ftypeid; Type: DEFAULT; Schema: tomato_gff; Owner: postgres -- ALTER TABLE ONLY tomato_gff.ftype ALTER COLUMN ftypeid SET DEFAULT nextval('tomato_gff.ftype_ftypeid_seq'::regclass); -- -- Data for Name: annotation; Type: TABLE DATA; Schema: annotation; Owner: postgres -- COPY annotation.annotation (annot_id, id, name, type, date, person_id, "timestamp", version, history_id) FROM stdin; \. -- -- Data for Name: comment; Type: TABLE DATA; Schema: annotation; Owner: postgres -- COPY annotation.comment (comment_id, text, person_id, date, table_name, table_id) FROM stdin; \. -- -- Data for Name: comp_analysis; Type: TABLE DATA; Schema: annotation; Owner: postgres -- COPY annotation.comp_analysis (ca_id, program_id, db_id, date, person_id, "timestamp", version) FROM stdin; \. -- -- Data for Name: dblist; Type: TABLE DATA; Schema: annotation; Owner: postgres -- COPY annotation.dblist (db_id, name) FROM stdin; \. -- -- Data for Name: dbxref; Type: TABLE DATA; Schema: annotation; Owner: postgres -- COPY annotation.dbxref (dbxref_id, db_id, db_key, table_name, table_id) FROM stdin; \. -- -- Data for Name: feature_set; Type: TABLE DATA; Schema: annotation; Owner: postgres -- COPY annotation.feature_set (f_set_id, annot_id, name, type, cdna_seq_id, cds_seq_id, prot_seq_id, description, date, person_id, "timestamp", version, history_id) FROM stdin; \. -- -- Data for Name: feature_span; Type: TABLE DATA; Schema: annotation; Owner: postgres -- COPY annotation.feature_span (f_span_id, f_set_id, type) FROM stdin; \. -- -- Data for Name: organism; Type: TABLE DATA; Schema: annotation; Owner: postgres -- COPY annotation.organism (organism_id, name) FROM stdin; \. -- -- Data for Name: output; Type: TABLE DATA; Schema: annotation; Owner: postgres -- COPY annotation.output (output_id, r_span_id, type, value) FROM stdin; \. -- -- Data for Name: person; Type: TABLE DATA; Schema: annotation; Owner: postgres -- COPY annotation.person (person_id, name) FROM stdin; \. -- -- Data for Name: program; Type: TABLE DATA; Schema: annotation; Owner: postgres -- COPY annotation.program (program_id, name) FROM stdin; \. -- -- Data for Name: property; Type: TABLE DATA; Schema: annotation; Owner: postgres -- COPY annotation.property (property_id, type, value, table_name, table_id) FROM stdin; \. -- -- Data for Name: result_set; Type: TABLE DATA; Schema: annotation; Owner: postgres -- COPY annotation.result_set (r_set_id, ca_id, name, "timestamp") FROM stdin; \. -- -- Data for Name: result_span; Type: TABLE DATA; Schema: annotation; Owner: postgres -- COPY annotation.result_span (r_span_id, r_set_id, type, score, output_id) FROM stdin; \. -- -- Data for Name: seq; Type: TABLE DATA; Schema: annotation; Owner: postgres -- COPY annotation.seq (seq_id, id, version, length, md5checksum, name, description, organism_id, type, residues, genbank_gi, person_id, clone_id) FROM stdin; \. -- -- Data for Name: seq_error; Type: TABLE DATA; Schema: annotation; Owner: postgres -- COPY annotation.seq_error (seq_err_id, seq_id, type, "position") FROM stdin; \. -- -- Data for Name: seq_relationship; Type: TABLE DATA; Schema: annotation; Owner: postgres -- COPY annotation.seq_relationship (seq_rel_id, seq_id, type, alignment, start, "end", strand, table_name, table_id) FROM stdin; \. -- -- Data for Name: synonym; Type: TABLE DATA; Schema: annotation; Owner: postgres -- COPY annotation.synonym (synonym_id, name, table_name, table_id) FROM stdin; \. -- -- Data for Name: bs_protocol; Type: TABLE DATA; Schema: biosource; Owner: postgres -- COPY biosource.bs_protocol (protocol_id, protocol_name, protocol_type, description, metadata_id) FROM stdin; \. -- -- Data for Name: bs_protocol_pub; Type: TABLE DATA; Schema: biosource; Owner: postgres -- COPY biosource.bs_protocol_pub (protocol_pub_id, protocol_id, pub_id, metadata_id) FROM stdin; \. -- -- Data for Name: bs_protocol_step; Type: TABLE DATA; Schema: biosource; Owner: postgres -- COPY biosource.bs_protocol_step (protocol_step_id, protocol_id, step, action, execution, tool_id, begin_date, end_date, location, metadata_id) FROM stdin; \. -- -- Data for Name: bs_protocol_step_dbxref; Type: TABLE DATA; Schema: biosource; Owner: postgres -- COPY biosource.bs_protocol_step_dbxref (protocol_step_dbxref_id, protocol_step_id, dbxref_id, metadata_id) FROM stdin; \. -- -- Data for Name: bs_sample; Type: TABLE DATA; Schema: biosource; Owner: postgres -- COPY biosource.bs_sample (sample_id, sample_name, sample_type, alternative_name, type_id, description, organism_id, stock_id, protocol_id, contact_id, metadata_id) FROM stdin; \. -- -- Data for Name: bs_sample_cvterm; Type: TABLE DATA; Schema: biosource; Owner: postgres -- COPY biosource.bs_sample_cvterm (sample_cvterm_id, sample_id, cvterm_id, metadata_id) FROM stdin; \. -- -- Data for Name: bs_sample_dbxref; Type: TABLE DATA; Schema: biosource; Owner: postgres -- COPY biosource.bs_sample_dbxref (sample_dbxref_id, sample_id, dbxref_id, metadata_id) FROM stdin; \. -- -- Data for Name: bs_sample_element; Type: TABLE DATA; Schema: biosource; Owner: postgres -- COPY biosource.bs_sample_element (sample_element_id, sample_element_name, alternative_name, sample_id, description, organism_id, stock_id, protocol_id, metadata_id) FROM stdin; \. -- -- Data for Name: bs_sample_element_cvterm; Type: TABLE DATA; Schema: biosource; Owner: postgres -- COPY biosource.bs_sample_element_cvterm (sample_element_cvterm_id, sample_element_id, cvterm_id, metadata_id) FROM stdin; \. -- -- Data for Name: bs_sample_element_dbxref; Type: TABLE DATA; Schema: biosource; Owner: postgres -- COPY biosource.bs_sample_element_dbxref (sample_element_dbxref_id, sample_element_id, dbxref_id, metadata_id) FROM stdin; \. -- -- Data for Name: bs_sample_element_file; Type: TABLE DATA; Schema: biosource; Owner: postgres -- COPY biosource.bs_sample_element_file (sample_element_file_id, sample_element_id, file_id, metadata_id) FROM stdin; \. -- -- Data for Name: bs_sample_element_relation; Type: TABLE DATA; Schema: biosource; Owner: postgres -- COPY biosource.bs_sample_element_relation (sample_element_relation_id, sample_element_id_a, sample_element_id_b, relation_type, metadata_id) FROM stdin; \. -- -- Data for Name: bs_sample_file; Type: TABLE DATA; Schema: biosource; Owner: postgres -- COPY biosource.bs_sample_file (sample_file_id, sample_id, file_id, metadata_id) FROM stdin; \. -- -- Data for Name: bs_sample_pub; Type: TABLE DATA; Schema: biosource; Owner: postgres -- COPY biosource.bs_sample_pub (sample_pub_id, sample_id, pub_id, metadata_id) FROM stdin; \. -- -- Data for Name: bs_sample_relationship; Type: TABLE DATA; Schema: biosource; Owner: postgres -- COPY biosource.bs_sample_relationship (sample_relationship_id, subject_id, object_id, type_id, value, rank, metadata_id) FROM stdin; \. -- -- Data for Name: bs_tool; Type: TABLE DATA; Schema: biosource; Owner: postgres -- COPY biosource.bs_tool (tool_id, tool_name, tool_version, tool_type, tool_description, tool_weblink, file_id, metadata_id) FROM stdin; \. -- -- Data for Name: bs_tool_pub; Type: TABLE DATA; Schema: biosource; Owner: postgres -- COPY biosource.bs_tool_pub (tool_pub_id, tool_id, pub_id, metadata_id) FROM stdin; \. -- -- Data for Name: ge_cluster_analysis; Type: TABLE DATA; Schema: gem; Owner: postgres -- COPY gem.ge_cluster_analysis (cluster_analysis_id, experiment_analysis_group_id, methodology, protocol_id, description, correlation_analysis_id, metadata_id) FROM stdin; \. -- -- Data for Name: ge_cluster_member; Type: TABLE DATA; Schema: gem; Owner: postgres -- COPY gem.ge_cluster_member (cluster_member_id, template_id, cluster_profile_id, metadata_id) FROM stdin; \. -- -- Data for Name: ge_cluster_profile; Type: TABLE DATA; Schema: gem; Owner: postgres -- COPY gem.ge_cluster_profile (cluster_profile_id, cluster_analysis_id, member_nr, file_id, metadata_id) FROM stdin; \. -- -- Data for Name: ge_correlation_analysis; Type: TABLE DATA; Schema: gem; Owner: postgres -- COPY gem.ge_correlation_analysis (correlation_analysis_id, experiment_analysis_group_id, methodology, description, metadata_id) FROM stdin; \. -- -- Data for Name: ge_correlation_member; Type: TABLE DATA; Schema: gem; Owner: postgres -- COPY gem.ge_correlation_member (correlation_member_id, correlation_analysis_id, template_a_id, template_b_id, correlation_value, correlation_type, dataset_id, metadata_id) FROM stdin; \. -- -- Data for Name: ge_data_analysis_process; Type: TABLE DATA; Schema: gem; Owner: postgres -- COPY gem.ge_data_analysis_process (data_analysis_process_id, process_type, target_id, source_dataset_id, result_dataset_id, file_id, metadata_id) FROM stdin; \. -- -- Data for Name: ge_diff_expression; Type: TABLE DATA; Schema: gem; Owner: postgres -- COPY gem.ge_diff_expression (diff_expression_id, experiment_analysis_group_id, method, stat_significance_cutoff, stat_significance_type, metadata_id) FROM stdin; \. -- -- Data for Name: ge_experiment; Type: TABLE DATA; Schema: gem; Owner: postgres -- COPY gem.ge_experiment (experiment_id, experiment_name, experimental_design_id, replicates_nr, colour_nr, description, contact_id, metadata_id) FROM stdin; \. -- -- Data for Name: ge_experiment_analysis_group; Type: TABLE DATA; Schema: gem; Owner: postgres -- COPY gem.ge_experiment_analysis_group (experiment_analysis_group_id, group_name, group_description, metadata_id) FROM stdin; \. -- -- Data for Name: ge_experiment_analysis_member; Type: TABLE DATA; Schema: gem; Owner: postgres -- COPY gem.ge_experiment_analysis_member (experiment_analysis_member_id, experiment_analysis_group_id, experiment_id, metadata_id) FROM stdin; \. -- -- Data for Name: ge_experiment_dbxref; Type: TABLE DATA; Schema: gem; Owner: postgres -- COPY gem.ge_experiment_dbxref (experiment_dbxref_id, experiment_id, dbxref_id, metadata_id) FROM stdin; \. -- -- Data for Name: ge_experimental_design; Type: TABLE DATA; Schema: gem; Owner: postgres -- COPY gem.ge_experimental_design (experimental_design_id, experimental_design_name, description, design_type, metadata_id) FROM stdin; \. -- -- Data for Name: ge_experimental_design_dbxref; Type: TABLE DATA; Schema: gem; Owner: postgres -- COPY gem.ge_experimental_design_dbxref (experimental_design_dbxref_id, experimental_design_id, dbxref_id, metadata_id) FROM stdin; \. -- -- Data for Name: ge_experimental_design_pub; Type: TABLE DATA; Schema: gem; Owner: postgres -- COPY gem.ge_experimental_design_pub (experimental_design_pub_id, experimental_design_id, pub_id, metadata_id) FROM stdin; \. -- -- Data for Name: ge_expression_by_experiment; Type: TABLE DATA; Schema: gem; Owner: postgres -- COPY gem.ge_expression_by_experiment (expression_by_experiment_id, experiment_id, template_id, replicates_used, mean, median, standard_desviation, coefficient_of_variance, dataset_id, metadata_id) FROM stdin; \. -- -- Data for Name: ge_fluorescanning; Type: TABLE DATA; Schema: gem; Owner: postgres -- COPY gem.ge_fluorescanning (fluorescanning_id, hybridization_id, protocol_id, file_id, dbxref_id, metadata_id) FROM stdin; \. -- -- Data for Name: ge_hybridization; Type: TABLE DATA; Schema: gem; Owner: postgres -- COPY gem.ge_hybridization (hybridization_id, target_id, platform_id, platform_batch, protocol_id, metadata_id) FROM stdin; \. -- -- Data for Name: ge_platform; Type: TABLE DATA; Schema: gem; Owner: postgres -- COPY gem.ge_platform (platform_id, technology_type_id, platform_name, description, contact_id, metadata_id) FROM stdin; \. -- -- Data for Name: ge_platform_dbxref; Type: TABLE DATA; Schema: gem; Owner: postgres -- COPY gem.ge_platform_dbxref (platform_dbxref_id, platform_id, dbxref_id, metadata_id) FROM stdin; \. -- -- Data for Name: ge_platform_design; Type: TABLE DATA; Schema: gem; Owner: postgres -- COPY gem.ge_platform_design (platform_design_id, platform_id, sample_id, metadata_id) FROM stdin; \. -- -- Data for Name: ge_platform_pub; Type: TABLE DATA; Schema: gem; Owner: postgres -- COPY gem.ge_platform_pub (platform_pub_id, platform_id, pub_id, metadata_id) FROM stdin; \. -- -- Data for Name: ge_probe; Type: TABLE DATA; Schema: gem; Owner: postgres -- COPY gem.ge_probe (probe_id, platform_id, probe_name, probe_type, sequence_file_id, template_id, template_start, template_end, metadata_id) FROM stdin; \. -- -- Data for Name: ge_probe_expression; Type: TABLE DATA; Schema: gem; Owner: postgres -- COPY gem.ge_probe_expression (probe_expression_id, target_element_id, probe_id, signal, signal_type, background, background_type, flag, dataset_id, metadata_id) FROM stdin; \. -- -- Data for Name: ge_probe_spot; Type: TABLE DATA; Schema: gem; Owner: postgres -- COPY gem.ge_probe_spot (probe_spot_id, probe_id, spot_name, metadata_id) FROM stdin; \. -- -- Data for Name: ge_probe_spot_coordinate; Type: TABLE DATA; Schema: gem; Owner: postgres -- COPY gem.ge_probe_spot_coordinate (probe_spot_coordinate_id, probe_spot_id, coordinate_type, coordinate_value, metadata_id) FROM stdin; \. -- -- Data for Name: ge_profile_element; Type: TABLE DATA; Schema: gem; Owner: postgres -- COPY gem.ge_profile_element (profile_element_id, cluster_profile_id, experiment_id, experiment_predefined_position, element_mean_value, element_median_value, element_sd, element_type, previous_element_ratio, metadata_id) FROM stdin; \. -- -- Data for Name: ge_target; Type: TABLE DATA; Schema: gem; Owner: postgres -- COPY gem.ge_target (target_id, target_name, experiment_id, metadata_id) FROM stdin; \. -- -- Data for Name: ge_target_dbxref; Type: TABLE DATA; Schema: gem; Owner: postgres -- COPY gem.ge_target_dbxref (target_dbxref_id, target_id, dbxref_id, metadata_id) FROM stdin; \. -- -- Data for Name: ge_target_element; Type: TABLE DATA; Schema: gem; Owner: postgres -- COPY gem.ge_target_element (target_element_id, target_element_name, target_id, sample_id, protocol_id, dye, metadata_id) FROM stdin; \. -- -- Data for Name: ge_technology_type; Type: TABLE DATA; Schema: gem; Owner: postgres -- COPY gem.ge_technology_type (technology_type_id, technology_name, description, metadata_id) FROM stdin; \. -- -- Data for Name: ge_template; Type: TABLE DATA; Schema: gem; Owner: postgres -- COPY gem.ge_template (template_id, template_name, template_type, platform_id, metadata_id) FROM stdin; \. -- -- Data for Name: ge_template_dbiref; Type: TABLE DATA; Schema: gem; Owner: postgres -- COPY gem.ge_template_dbiref (template_dbiref_id, template_id, dbiref_id, metadata_id) FROM stdin; \. -- -- Data for Name: ge_template_dbxref; Type: TABLE DATA; Schema: gem; Owner: postgres -- COPY gem.ge_template_dbxref (template_dbxref_id, template_id, dbxref_id, metadata_id) FROM stdin; \. -- -- Data for Name: ge_template_diff_expression; Type: TABLE DATA; Schema: gem; Owner: postgres -- COPY gem.ge_template_diff_expression (template_diff_expression_id, diff_expression_id, template_id, stat_value, stat_type, dataset_id, metadata_id) FROM stdin; \. -- -- Data for Name: ge_template_expression; Type: TABLE DATA; Schema: gem; Owner: postgres -- COPY gem.ge_template_expression (template_expression_id, hybridization_id, template_id, template_signal, template_signal_type, statistical_value, statistical_value_type, flag, dataset_id, metadata_id) FROM stdin; \. -- -- Data for Name: blast_defline; Type: TABLE DATA; Schema: genomic; Owner: postgres -- COPY genomic.blast_defline (blast_defline_id, blast_db_id, identifier, defline, identifier_defline_fulltext) FROM stdin; \. -- -- Data for Name: blast_hit; Type: TABLE DATA; Schema: genomic; Owner: postgres -- COPY genomic.blast_hit (blast_hit_id, blast_query_id, identifier, evalue, score, identity_percentage, align_start, align_end, blast_defline_id) FROM stdin; \. -- -- Data for Name: blast_query; Type: TABLE DATA; Schema: genomic; Owner: postgres -- COPY genomic.blast_query (blast_query_id, source_id, query_source_type_id, blast_db_id, total_hits, stored_hits, last_updated) FROM stdin; \. -- -- Data for Name: chromat; Type: TABLE DATA; Schema: genomic; Owner: postgres -- COPY genomic.chromat (chromat_id, clone_id, primer, direction, filename, subpath, date, censor_id, read_class_id) FROM stdin; \. -- -- Data for Name: clone; Type: TABLE DATA; Schema: genomic; Owner: postgres -- COPY genomic.clone (clone_id, library_id, clone_type_id, platenum, wellrow, wellcol, genbank_accession, bad_clone, estimated_length) FROM stdin; \. -- -- Data for Name: clone_feature; Type: TABLE DATA; Schema: genomic; Owner: postgres -- COPY genomic.clone_feature (clone_feature_id, clone_id, feature_id) FROM stdin; \. -- -- Data for Name: clone_feature_backup; Type: TABLE DATA; Schema: genomic; Owner: postgres -- COPY genomic.clone_feature_backup (clone_feature_id, clone_id, feature_id) FROM stdin; \. -- -- Data for Name: clone_type; Type: TABLE DATA; Schema: genomic; Owner: postgres -- COPY genomic.clone_type (clone_type_id, name, shortname) FROM stdin; \. -- -- Data for Name: genbank_submission; Type: TABLE DATA; Schema: genomic; Owner: postgres -- COPY genomic.genbank_submission (genbank_submission_id, date_generated, date_sent, submitted_by, ncbi_reply_date) FROM stdin; \. -- -- Data for Name: gss; Type: TABLE DATA; Schema: genomic; Owner: postgres -- COPY genomic.gss (gss_id, chromat_id, version, basecaller, seq, qual, call_positions, status, flags, date) FROM stdin; \. -- -- Data for Name: gss_submitted_to_genbank; Type: TABLE DATA; Schema: genomic; Owner: postgres -- COPY genomic.gss_submitted_to_genbank (gss_submitted_to_genbank_id, genbank_submission_id, gss_id, genbank_identifier, genbank_dbgss_id) FROM stdin; \. -- -- Data for Name: library; Type: TABLE DATA; Schema: genomic; Owner: postgres -- COPY genomic.library (library_id, clone_type_id, name, shortname, accession_id, subclone_of, cloning_host, rs1, rs2, vector_ligation_1, vector_ligation_2, vector, left_primer_id, right_primer_id, organism_id) FROM stdin; \. -- -- Data for Name: library_annotation_db; Type: TABLE DATA; Schema: genomic; Owner: postgres -- COPY genomic.library_annotation_db (library_annotation_db_id, library_id, blast_db_id, is_contaminant) FROM stdin; \. -- -- Data for Name: library_shortname_abbreviation; Type: TABLE DATA; Schema: genomic; Owner: postgres -- COPY genomic.library_shortname_abbreviation (library_shortname_abbreviation_id, library_id, abbreviation) FROM stdin; \. -- -- Data for Name: qc_report; Type: TABLE DATA; Schema: genomic; Owner: postgres -- COPY genomic.qc_report (qc_report_id, gss_id, vs_status, qstart, qend, istart, iend, hqi_start, hqi_length, entropy, expected_error, qual_trim_threshold, vector_tokens) FROM stdin; \. -- -- Data for Name: query_source_type; Type: TABLE DATA; Schema: genomic; Owner: postgres -- COPY genomic.query_source_type (query_source_type_id, name, shortname) FROM stdin; \. -- -- Data for Name: read_class; Type: TABLE DATA; Schema: genomic; Owner: postgres -- COPY genomic.read_class (read_class_id, class_name) FROM stdin; \. -- -- Data for Name: sequencing_primer; Type: TABLE DATA; Schema: genomic; Owner: postgres -- COPY genomic.sequencing_primer (sequencing_primer_id, name) FROM stdin; \. -- -- Data for Name: ex_tag; Type: TABLE DATA; Schema: insitu; Owner: postgres -- COPY insitu.ex_tag (experiment_id, tag_id) FROM stdin; \. -- -- Data for Name: experiment; Type: TABLE DATA; Schema: insitu; Owner: postgres -- COPY insitu.experiment (experiment_id, name, date, is_organism_id, tissue, stage, probe_id, description, user_id, obsolete, type) FROM stdin; \. -- -- Data for Name: experiment_image; Type: TABLE DATA; Schema: insitu; Owner: postgres -- COPY insitu.experiment_image (experiment_image_id, image_id, experiment_id, obsolete, sp_person_id, create_date, modified_date) FROM stdin; \. -- -- Data for Name: experiment_tag; Type: TABLE DATA; Schema: insitu; Owner: postgres -- COPY insitu.experiment_tag (experiment_tag_id, tag_id, experiment_id, sp_person_id, modified_date, create_date, obsolete) FROM stdin; \. -- -- Data for Name: image_tag; Type: TABLE DATA; Schema: insitu; Owner: postgres -- COPY insitu.image_tag (image_id, tag_id) FROM stdin; \. -- -- Data for Name: is_organism; Type: TABLE DATA; Schema: insitu; Owner: postgres -- COPY insitu.is_organism (is_organism_id, name, common_name, description, user_id) FROM stdin; \. -- -- Data for Name: probe; Type: TABLE DATA; Schema: insitu; Owner: postgres -- COPY insitu.probe (probe_id, name, sequence, clone, link_desc, link, primer1, primer1_seq, primer2, primer2_seq, user_id, obsolete, dbxref_type_id, antibody, identifier) FROM stdin; \. -- -- Data for Name: tag; Type: TABLE DATA; Schema: insitu; Owner: postgres -- COPY insitu.tag (tag_id, name, description, user_id) FROM stdin; \. -- -- Data for Name: tag_implication; Type: TABLE DATA; Schema: insitu; Owner: postgres -- COPY insitu.tag_implication (tag_id, implied_id) FROM stdin; \. -- -- Data for Name: attribution; Type: TABLE DATA; Schema: metadata; Owner: postgres -- COPY metadata.attribution (attribution_id, database_name, table_name, primary_key_column_name, row_id) FROM stdin; \. -- -- Data for Name: attribution_to; Type: TABLE DATA; Schema: metadata; Owner: postgres -- COPY metadata.attribution_to (attribution_to_id, attribution_id, person_id, organization_id, project_id, role_id) FROM stdin; \. -- -- Data for Name: comments; Type: TABLE DATA; Schema: metadata; Owner: postgres -- COPY metadata.comments (comment_id, attribution_id, comment_text) FROM stdin; \. -- -- Data for Name: md_dbipath; Type: TABLE DATA; Schema: metadata; Owner: postgres -- COPY metadata.md_dbipath (dbipath_id, column_name, table_name, schema_name, metadata_id) FROM stdin; \. -- -- Data for Name: md_dbiref; Type: TABLE DATA; Schema: metadata; Owner: postgres -- COPY metadata.md_dbiref (dbiref_id, iref_accession, dbipath_id, metadata_id) FROM stdin; \. -- -- Data for Name: md_dbversion; Type: TABLE DATA; Schema: metadata; Owner: postgres -- COPY metadata.md_dbversion (dbversion_id, patch_name, patch_description, metadata_id) FROM stdin; 1 UpdateChadoSchema Patch for bringing our Chado schema up to date with BCS version 0.09010\n 1 2 GrantPhenCvtermPerm Grant web_usr permissions on table phenotype_cvterm\n 2 3 CreatePhenProp Create new phenotypeprop table nad grant web_usr permission\n 3 4 AddVisibleToRoleIita add stockprops of type visible_to_role\n 4 5 AddOrganismImage This page adds an image_organism table to the metadata schema, so that images can be associated with organisms and displayed on the organism detail page.\n 5 6 AddOrganismComments Removes unnecessary database constraint. 12 7 AddFilesExperimentLinkingTable Adds the linking table between files and experiments to Phenome\n 13 8 ChangeMetadataPerms Change permissions to allow web_usr to write, update, and delete on metadata.md_files and phenome.nd_experiment_files and metadata.md_metadata\n 14 9 AddBlastDbBlastDbGroupLinkingTable Adds a linking table between the blast_db and blast_db_group table\n 15 10 FixStockPropPerms Description of this patch goes here\n 16 11 ChangeNdGeolocationPrivileges Description of this patch goes here\n 17 12 ChangeProjectPermissions Description of this patch goes here\n 19 13 AddListTypes Description of this patch goes here\n 20 14 FixStockPerms Description of this patch goes here\n 21 15 AddProjectLocationCvterm Description of this patch goes here\n 22 16 AddProjectTypes Description of this patch goes here\n 23 17 ChangeProjectRelationshipPerms Description of this patch goes here\n 24 18 AddCvPerms Description of this patch goes here\n 25 19 AddTraitPropTypes Description of this patch goes here\n 26 20 AddTrialTypes Description of this patch goes here\n 27 21 FixStockPerms Description of this patch goes here\n 28 22 AddMoreProjectTypes Description of this patch goes here\n 32 23 UnderlineCvNames This patch will add underline to the cv names \nexperiment type\nstock type\nstock relationship\ntrial type\nthis is important for making CVs uniform and less room for errors when using these\n 33 24 UpdateOrganismSynonymCvterms This patch will find_or_create a cvterm name organism_synonym\nwith cv of organism_property and dbxref of autocreated:organism_synonym\nThen all organismprops of type_id matching the word synonym will be associated with \nthe organism_synonym cvterm\nthis is important for making organism synonyms unified across the different databases and eliminating redundancy of cvterms with name = synonym\n 34 25 UpdateStockSynonymCvterms This patch will find_or_create a cvterm name stock_synonym\nwith cv of stock_property and dbxref of autocreated:stock_synonym\nThen all stockprop of type_id matching the word synonym will be associated with \nthe stock_synonym cvterm\nthis is important for making stock synonyms unified across the different databases and eliminating redundancy of cvterms with name = synonym\n 35 26 DeleteNullLocalSynonyms This patch will find cvterms with name ilike synonyms and cv.name \nlocal or null and will delete those.\nthis is important for using only synonyms with an explicit cvterm.name and cv.name.\n 36 27 ImplementWizardView Description of this patch goes here\n 37 28 FixDblinkPermissions Description of this patch goes here\n 38 29 AddVectorStockType This patch will find_or_create a cvterm name of vector, which is a new stock type\n 39 30 AddVectorListType This patch will find_or_create a cvterm name of vector, which is a new stock type\n 40 31 UnderlineExpCvterms This patch will add underline to the cvterm names with experiment_type cv \nfield_layout\nphenotyping_experiment\ngenotyping_layout\ngenotyping_experiment\nthis is important for making CVterms uniform and less room for errors when using these\n 41 32 UpdateLocalCvterms This patch will update the cv id of the following cvterms that currently have a local cv name \ncross_type\nbreeding_program\nbreeding_program_trial_relationship\nharvest_date\nnumber_of_flowers\nnumber_of_seeds\nplanting_date\nthis is important for making CVterms uniform and having an explicit cv name that provides the right context\n 42 33 FixRedundantCvterms This patch will do the following:\n1. Set cv_id = nd_experiment_property for the cvterm cross_name\n2. Update the type_id of nd_experiment rows to cross_experiment where the type_id = cross , and then obsolete this stock_relationship cross cvterm\n3. Create a new term called cross_relationship cv= stock_relationship to be used \nin the stock_relationship table instead of the term cross_name which now \nhas a nd_experiment_property cv and is used as type_id in nd_experimentprop\nthis is important for making CVterms uniform and less room for errors when using these\n 43 34 AddSystemCvterms This patch will add system cvterms required for the functionality of the cvgn databases\n 44 35 AddSystemCvterms This patch will add system cvterms required for the functionality of the cxgn databases\n 45 36 AddHasPlantsCvterm Description of this patch goes here\n 46 37 AddHasPlantsCvterm Description of this patch goes here\n 47 38 AddJbrowseSrcField Add jbrowse_src column to sgn.blast_db 48 39 FixTrialTypes This patch updates the list of possible trial types by removing duplicates, standardizing names, and assigning types to trials where it can be deduced from the trial name.\n 49 40 UpdateMatViews This patch updates the index of materialized_fullview and the queries used to create the materialized view for each individual category. It adds views for new categories: trial type and trial design\n 50 41 GrantPublicMatviews This patch grants permission to webuser on public.matviews\n 51 42 AddNewCrossCvterms This patch adds new cross cvterms so that they can be stored in the nd_experimentprop table.\n 52 43 RedefineTraitsView This patch updates the materialized view that stores traits\n 53 44 AddNewListTypes This patch will create new cvterms 'dataset', 'crosses', 'populations', and 'numeric' in the 'list_type' cv.\n 54 45 AddNewFolderCvterms This patch adds new cross cvterms so that they can be stored in the nd_experimentprop table.\n 55 46 AddDatasetTable Description of this patch goes here\n 56 47 AddBrAPIPropertyCvterms Description of this patch goes here\n 57 48 AddComposedCvtypeCv Adds a cv type cv for distinguisihing postcomposed ontologies\n 58 49 AddComposedTraitCv Adds a composed trait cv with namespace COMP to allow composition of traits\n 59 50 AddMdImageCvtermTable Adds a linking table between the metadata.md_image and cvterm table\n 60 53 AddSeedLotCvterms Description of this patch goes here\n 64 55 UpdateMaterializedPhenoview This patch updates the materialized_phenoview view and the binary views that depend on it to remove unnecessary fields and better handle plants vs plots.\n 66 56 AddPlantListType This patch will create the cvterm 'plant'.\n 67 57 AddProjectPropCvtermForPhenotypeCompletion When a trial has all phenotypes uploaded, a projectprop called 'phenotypes_fully_uploaded' is set to 1\n 68 58 UpdateProjectDateProps This patch will update the cvterm name of \nharvest_date -> project_harvest_date\nplanting_date -> project_planting_date\nand remove the redundant terms\nproject harvest date\nproject planting date\nRows in projectprop that point to the redundant cvterms will be updated to point to the correct ones\n 69 59 AddSeedlotListTypeCvterm Add missing cvterm for seedlot list type\n 70 60 AddTreatmentCvterms Add missing cvterms for storing grafted stocks, and grafting experiments or projects \n 71 61 AddDistributedSeedCrossCvterm This patch adds number of seeds distributed cvterms that can be stored in the nd_experimentprop table.\n 72 62 AddNewProjectType Add new cvterms for Genetic Gain, Storage, Heterosis and Health Status project types\n 73 63 UpdateCoPrefix Update cassava_trait db prefix\n 74 64 AddSubplotCvterms Adds subplot stock_type, subplot_index_number stockprop, and subplot_of stock_relationship cvterms.\n 75 65 AddSeedlotCurrentCountCvterm Adds current_count stock_property cvterm which acts as a store for the current count of a seedlot\n 76 66 AddSeedlotForEveryAccession Update cassava_trait db prefix\n 77 68 AddCrossingExperimentCvterms Add cvterms for crossing experiment\n 79 69 UpdateNewProjectProps This patch will update the cvterm name of \nGenetic Gain -> genetic_gain_trial\nHealth Status -> health_status_trial\nHeterosis -> heterosis_trial\nStorage -> storage_trial\n 80 70 AddGraftingCvterms Add missing cvterms for storing grafted stocks, and grafting experiments or projects \n 81 71 UpdateProjectTypes This patch updates the cvterms phenotypeing_trial and genotyping_trial with cv = project_type to be consistent with other projectprops in the database\ncvterm crossing_trial is redundant and is now deleted, as well as the cv.name trial_type. All trial types in the database should use the project_type cvterm since these are stored in the project table \n 82 72 AddTimestampToNdTables Adds a column called 'create_date' to the nd_experiment, stock, project, genotype, phenotype, and nd_protocol tables. this column is set to DEFAULT NOW() when an entry is created. This is useful for creating reports of which project, stocks, phenotypes, etc were added over different time periods.\n 83 73 AddSeedlotViews This patch updates the materialized views to include seedlots.\n 84 74 AddCachedTrialLayoutCvterm This patch adds the necessary cvterm for storing a cached trial layout in json\n 85 75 UpdateNdExperimentProperty This patch updates the cvterm "crossing_metadata_json" by changing from cv = "nd_experiment_property" to cv = "stock_property" and removes unused cvterms related to crossing experiments.\n 86 76 AddAccessionStockpropCvterms This patch adds the necessary cvterms for accession stockprops\n 87 77 AddLabelDesignListType This patch will create new cvterm 'label_design' in the 'list_type' cv.\n 88 78 AddStockGeoJsonCvterm This patch adds the necessary cvterm for storing geo json for plots\n 89 79 AddPhenotypeOutlierCvterm This patch adds phenotype_property cvterm for storing a suppressed plot phenotype.\n 90 80 AddProjectTissueSampleCvterms This patch adds cvterms for saving tissue_sample stocks from plants in a trial.\n 91 81 AddStockPropViews This patch creates a materialized view for stockprops.\n 92 82 AddTissueSampleCvterm This patch adds stock)type cvterm for tissue sample.\n 93 83 AddGenotypingTrialWellTerms This patch adds stockproperties for wells.\n 94 84 AddSeedlotCurrentWeightCvterm This patch adds stock)type cvterm for tissue sample.\n 95 85 AddTissueSampleListCvterm This patch adds list type for tissue_samples.\n 96 86 UpdateStockPropViews This patch creates/updates a materialized view for stockprops.\n 97 87 UpgradeGenotypeStorage This patch converts genotypeprop values to jsonb, and fixes genotype related materialized views.\n 98 88 PopulateStockPub Populating stock_pub table 99 89 AddWebUsrDeletePermToOrganismprop (no description) 100 90 MarkerPositionSize Change the sgn.marker_location.position type from numeric(8,5) to numeric(9,6)\nto accomodate full genome location in bp\n 101 91 ModifyProjectTablePrivileges This patch enables select, update, insert and delete on the Chado project table\nDescription of this patch goes here\n 102 92 FixLocusGroupPerms Description of this patch goes here\n 103 93 UpdateMembersOf This patch will find_or_create a member_of cvterm\nwith cv of stock_relationship\nThen all stock_relationship rows of type_id matching the word members of will be associated with the member_of cvterm\nthis is important for making stock_relationship member_of term unified across the different databases and eliminating redundancy\n 104 94 UpdateSnpGenotypeCvterm This patch will find_or_create a snp genotyping cvterm\nwith cv of genotype_property \nThen all genotypes and genotypeprops of type_id matching the word snp genotyping will be associated with the snp genotyping cvterm\nthis is important for making the snp genotyping cvterm unified across the different databases and eliminating redundancy\n 105 95 LinkPlantEntriesToProject This patch updates the way that plant entries were being created and stored. Previously, plant entries were not linked directly to the project they are in. This made uploading of phenotypes slow because of additional searches to go from plant to plot to project. Now the connnection of plant to project is available.\n 106 96 AddPlantOfCvterm This patch will find_or_create a cvterm name of vector, which is a new stock type\n 107 97 PlantEntriesInheritPlotProperties This patch updates the way that plant entries were being created and stored. Previously, plant entries did not inherit plot properties (block, replicate, plot number), as well as a relationship to the accession. Now they are created with these associations.\n 108 98 RenameObsoleteStocks This patch renames obsolete stocks by adding _OBSOLETED and a timestamp to the end of the uniquename and name. This then allows new stocks to be added with the same name as the obsoleted stock.\n 109 99 AddNdprotocolDescriptionChado patch for adding descriotion column to chado table nd_protocol. This change will go into Chado version 1.4. DO NOT ALTER CHADO TABLES WITHOUT COORDINATING FIRST WITH GMOD!\n 110 100 RedefineStockViews This patch updates the materialized view that stores traits\n 111 101 AddNdExperimentProperty This patch will add number_of_fruits, number_of_seeds_planted and number_of_seedlings_transplanted cvterms to the nd_experiment_property cv.\n 112 102 AddSeedMultiplicationTrialTypesYB Description of this patch goes here\n 113 103 AddScreenHouseTrialType Description of this patch goes here\n 114 104 UpdateGeolocationCvName Description of this patch goes here\n 115 105 AddMissingIndexes Add missing indexes 116 106 AddUserRoles Add User Roles 117 107 AddFeatureIndex Add missing indexes 118 108 AddSFSIndex Add missing indexes 119 109 CreateSolcapMarkerTables altering marker schema to accommodate SolCap markers 120 110 UpdateSolcapMapInfo loading solcap map info 121 111 AddNewMapParents loading map parents for tobacco and potato maps 122 112 CreateSnpTable Adding new sgn snp table 123 113 AddFeatureCvtermRank Adding rank column to feature_cvterm table 124 114 AddQtlMarkers Adding QTL marker and map types, and flanking positions to marker_location 125 115 AddStockCvtermProp Adding rank column to stock_cvterm table, and a new stocl_cvtermprop tables 126 116 ApplyPopulationTypes Adding explicit population types to stocks of type population 127 117 AddForumPageTypes Adding needed page types to sgn.forum_topic 128 118 AddMarkerExpAccession Adds a stock_id column to pcr_exp_accession and populates it. 129 119 RemoveAccessionCheckTrigger Testing a Moose dbpatch 130 120 AddMapVersionMetadata Adding metadata_id FK to sgn.map_version\n 131 121 TomatoGenomePageProp Adds an organismprop to the tomato organism turning on its genome page.\n 132 122 AddUniqueBarcodeSeq Description of this patch goes here\n 133 123 AddLocusOrganismId Add locus.organism_id field\n 134 124 AddPublicListField Add is_public boolean field to sgn_people.list 135 125 AddTrialTypesYB Description of this patch goes here\n 136 126 AddGenotypingTrialListCvterm This patch adds list type for genotyping_trials.\n 137 127 AddFieldTrialProjectMetadataCvterms This patch adds cvterms for project metadata and trial linkage.\n 138 128 AddCrossStockRelationshipCvterms Add cvterms for crossing experiment\n 139 129 AddGenotypingTrialprojectType This patch adds genotyping_trial project type.\n 140 130 EncodePasswords Description of this patch goes here\n 141 131 AddDataAgreementCvterm This patch adds the 'data_agreement' projectprop cvterm to databases that do not already have it\n 142 132 PhenotypeJsonbTableMaterializedView This patch creates/updates a materialized view for phenotypes in the traditional table format.\n 143 133 AddCrossingBlockTrialCvterm This patch adds the 'crossing_block_trial' project_type cvterm\n 144 134 AddFolderForGenotypingTrialCvterm This patch adds the 'folder_for_genotyping_trials' projectprop cvterm\n 145 135 AddVCFSNPGenotypingCvterm This patch adds the 'vcf_snp_genotyping' genotype_property cvterm\n 146 136 UpdatePhenotypeJsonbTableMaterializedView This patch creates/updates a materialized view for phenotypes in the traditional table format.\n 147 137 AddPhenotypeDateTimeAndCollectorColumns This patch adds a datetime timestamp column called collect_date to the phenotype table\n 148 138 UpdatePhenotypeJsonbTableMaterializedViewWithCollectDateAndOperator This patch creates/updates a materialized view for phenotypes in the traditional table format.\n 149 139 AdaptToNewGenotypeStorage This patch adapts to the new genotype storage by changing nd_protocolprop.value to JSONB and by changing the 'snp genotyping' values in genotypeprop to {'markername1' : {'DS' : '1'}, 'markername2' : {'DS' : '0'}, ... } and by changing the type of these genotypeprops to 'vcf_snp_genotyping'\n 150 140 AddImageDisplayOrderColumns Adds a display_order columns to phenome.locus_image and phenome.stock_image tables\n 151 141 AddMarkersListCvterm This patch adds list type for markers.\n 152 142 AddFamilyNameCvterm This patch adds the 'crossing_block_trial' project_type cvterm\n 153 143 AddIdentifierGenerationCvterm This patch adds the 'data_agreement' projectprop cvterm to databases that do not already have it\n 154 144 UpdatePhenotypeJsonbTableMaterializedViewWithNotes This patch creates/updates a materialized view for phenotypes in the traditional table format.\n 155 145 AddODKONAFormsListCvterm This patch adds odk_ona_forms as a list type cvterm.\n 156 146 FixTrialPluralTypes This patch fixes the odd "Preliminary Yield Trials" and "Advanced Yeld Trials" and "Advanced Yield Trials" terms that should be singular terms\n 157 147 UpdateProgenyOffspringOfRelationship Description of this patch goes here\n 158 148 AddProjectPropCvtermForRawDataLink Allows addition of a link to the raw data file for genotyping plates\n 159 149 AddMissingProgramPropsToLocations This patch finds locations that are missing a program prop, and adds the correct program if it can be inferred based on the trials that have been held at the location.\n 160 150 ChangeGenotypepropGTKeyToNucleotides Allows addition of a link to the raw data file for genotyping plates\n 161 151 ChangeGenotypepropGTKeyToDS Allows addition of a link to the raw data file for genotyping plates\n 162 152 GenotypepropUserPermissions This patch gives web_usr permissions for inserting and using genotypeprop table. Your database may already have been modified manually, but this patch explicitly grants the needed permissions.\n 163 153 AddManagementFactorPropertyCvterms This patch adds the necessary cvterms for field management factor properties\n 164 154 DefaultMdImageCreateDateTimestamp This patch sets a default NOW() value for the create_date and modified_date columns in metadata.md_images, metadata.md_tag_image, and metadata.md_tag\n 165 155 AddCrossCombinationCvterm This patch adds the 'cross_combination' stock_property cvterm\n 166 156 AddFamilyNamesListTypesCvterm Add cvterm for family_names list types\n 167 157 UpdateFamilyNameCvterm This patch updates the cvterm family_name by changing from cv = stock_property to cv = stock_type.\n 168 158 UpdateMaterializedViewsTissueSamplePhenotypingGenotyping This patch updates materialized views so that the genotype materialized view includes tissue samples that were genotyped\n 169 159 UpdateStockPropViewsUsePublic This patch updates the materialized view for all stockprops by using public.stockprop instead of just stockprop. \n 170 160 AddPhenomeProjectMdImageTable This patch adds a linking table called project_md_image to the phenome schema, which links project to metadata.md_image\n 171 161 AddMdJsonAndLinkingTable Adds md_json table for storing jsonb to Metadata schema and a linking table between md_json and nd_experiment to Phenome schema\n 172 162 AddGenotypeProjectSearchTables This patch adds materialized views related to genotyping projects for the search wizard\n 173 163 AddPhenotypeSpreadsheetAssociatedImagesCvterm This patch adds cvterms for phenotype spreadsheet associated images\n 174 164 AddNdProtocolpropGenotypeStorageCvterms This patch adds cvterms for storing nd_protocolprop genotype storage vvalues\n 175 165 AddSequencedAccessionCvTerm Description of this patch goes here\n 176 166 UpdateStoredNdProtocolpropGenotypeStorageCvterms This patch converts the old single nd_protocolprop storage into the new three value nd_protocolprop genotype storage: one for each of the cvterms: vcf_map_details, vcf_map_details_markers, vcf_map_details_markers_array\n 177 167 AddSpecialtyTrialType Description of this patch goes here\n 178 168 AddNOAAGeolocationPropCvterms This patch adds the 'noaa_station_id' geolocation_property cvterm\n 179 169 AddProjectPropTrialStockType This patch adds the 'trial_stock_type' project_property cvterm\n 180 170 UpdatePhenotypeMaterializedViewForAccessionCrossFamilyname This patch creates/updates a materialized view for phenotypes in the traditional table format.\n 181 171 AddMissingLocalCvterms This patch adds the date and operator cvterms into the local ontology\n 182 172 AddNdProtocolTrainedKerasCNNModelCvterms This patch adds cvterms for storing trained Keras CNN models in nd_protocol table\n 183 173 AddAerialRasterDSMCvterms This patch adds cvterms for phenotype spreadsheet associated images\n 184 174 FixGenotypeStorageDosage This patch fixes the genotype storage error of loading DS=0 when the GT is infact unknown (e.g. GT='./.'). DS is now stored as 'NA' in these cases.\n 185 175 FixDroneImageryPartialTemplates This patch fixes the drone imagery partial template storage info to contain a template name and the image_id.\n 186 176 UpdatePhenotypeJsonbTableMaterializedViewWithAssociatedPhenotypeImages This patch adds the associated phenotype image info into the materialized_phenotype_jsonb_table view.\n 187 177 UpdatePhenotypeJsonbTableMaterializedViewRowColumn This patch fixed the row and column info in the materialized_phenotype_jsonb_table view\n 188 178 AddNdProtocolTrainedKerasCNNModelCvterms This patch adds cvterms for storing trained Keras CNN models in nd_protocol table\n 191 179 AddNOAAGeolocationPropCvterms This patch adds the 'noaa_station_id' geolocation_property cvterm\n 192 180 AddAnalysisAndMixedModelCvterms Adds cvterms required for mixed models and analysis features\n 193 181 AddKerasAutoencoderVegetationIndicesCvterms This patch adds cvterms for istoring images from autoencoder vegetation indices\n 194 182 AddTissueCultureStockPropCvterm This patch adds the 'tissue_culture_data_json' stock_property cvterm\n 195 183 UpdatePhenotypeJsonbTableMaterializedViewForAnalyses This patch fixes materialized_phenotype_jsonb_table view for analyses results too\n 196 184 UpdateWizardMaterializedViewsForAnalysisResults This patch updates the materialized views to have analysis results\n 197 185 AddKerasImagesCvterms This patch adds cvterms for images that were used to train Keras CNN models\n 198 186 FixGenotypeStorageDosageToMajorAlleleDosage This patch fixes the genotype storage error of loading dosage as minor allele dosage, when it should be major allele dosage\n 199 187 AddStandardProcessInteractiveCvterms This patch adds cvterms for standard process interactive drone imagery\n 200 188 SeedlotQualityNSource This patch adds required stock prop types for seedlot quality. 201 189 AddStandardProcessInteractiveCvterms This patch adds cvterms for standard process interactive drone imagery\n 202 190 AddDroneRunGroundControlPointsCvterms This patch adds cvterms for drone imagery ground control points\n 203 191 AddDroneRunImagingVehicleCvterms This patch adds cvterms for drone imagery vehicles\n 204 192 AddUploadAnalysisCvterms This patch adds cvterms for uploading an analysis through web interface\n 205 193 AddNIRsModelTypeCvterm This patch adds cvterms for NIRS models\n 206 194 AddBLUPf90RandomRegressionAnalysisCvterms This patch adds cvterms for BLUPf90 random regression analysis\n 207 195 AddAIREMLf90AndSommerModelCvterms This patch adds cvterms for models\n 208 196 AddFamilynameRelatedCvterms Add cvterms for family_name stock_relationship\n 209 197 AddAveragePrecipitationSumCvterms This patch adds cvterms for averaged sum precipitation\n 210 198 AddSommerAnalysisCvterms This patch adds cvterms for sommer R analysis\n 211 199 FixPhenomeGenotypingTable Rename phenome.genotype table to phenome.phenome_genotype along with all genotype_id fields in the phenome schema\n 212 200 AddVendorOrderIDProjectProp Description of this patch goes here\n 213 201 AddMixedModelProtocol Description of this patch goes here\n 214 202 AddProductProfileCvterm This patch adds the 'product_profile_json' project_property cvterm\n 215 \. -- -- Data for Name: md_files; Type: TABLE DATA; Schema: metadata; Owner: postgres -- COPY metadata.md_files (file_id, basename, dirname, filetype, alt_filename, comment, md5checksum, metadata_id, urlsource, urlsource_md5checksum) FROM stdin; 5 2017-04-21_21:11:28_cass_phenotypes_updated.xls /data/prod/archive/40/spreadsheet_phenotype_upload spreadsheet phenotype file \N \N d54e546f7942d1bf7ad48bcea9948960 62 \N \N \. -- -- Data for Name: md_groupmembers; Type: TABLE DATA; Schema: metadata; Owner: postgres -- COPY metadata.md_groupmembers (groupmember_id, group_id, dbiref_id, metadata_id) FROM stdin; \. -- -- Data for Name: md_groups; Type: TABLE DATA; Schema: metadata; Owner: postgres -- COPY metadata.md_groups (group_id, group_name, group_type, group_description, metadata_id) FROM stdin; \. -- -- Data for Name: md_image; Type: TABLE DATA; Schema: metadata; Owner: postgres -- COPY metadata.md_image (image_id, name, description, original_filename, file_ext, sp_person_id, modified_date, create_date, obsolete, md5sum) FROM stdin; \. -- -- Data for Name: md_image_cvterm; Type: TABLE DATA; Schema: metadata; Owner: postgres -- COPY metadata.md_image_cvterm (md_image_cvterm_id, image_id, cvterm_id, sp_person_id, obsolete) FROM stdin; \. -- -- Data for Name: md_image_organism; Type: TABLE DATA; Schema: metadata; Owner: postgres -- COPY metadata.md_image_organism (md_image_organism_id, image_id, organism_id, sp_person_id, obsolete) FROM stdin; \. -- -- Data for Name: md_json; Type: TABLE DATA; Schema: metadata; Owner: postgres -- COPY metadata.md_json (json_id, json_type, json) FROM stdin; \. -- -- Data for Name: md_metadata; Type: TABLE DATA; Schema: metadata; Owner: postgres -- COPY metadata.md_metadata (metadata_id, create_date, create_person_id, modified_date, modified_person_id, modification_note, previous_metadata_id, obsolete, obsolete_note, permission_id) FROM stdin; 17 2014-01-03 17:44:29.059282+00 40 \N \N \N \N 0 \N \N 18 2014-01-03 22:13:32.335503+00 40 \N \N \N \N 1 \N \N 29 2015-02-04 20:06:40.169408+00 41 \N \N \N \N 0 \N \N 30 2015-02-06 16:07:45.355755+00 41 \N \N \N \N 0 \N \N 31 2015-02-06 20:07:38.136354+00 41 \N \N \N \N 0 \N \N 1 2011-12-20 17:58:26.736933+00 41 \N \N \N \N 0 \N \N 2 2011-12-20 17:59:02.671505+00 41 \N \N \N \N 0 \N \N 3 2011-12-20 17:59:19.844545+00 41 \N \N \N \N 0 \N \N 4 2012-01-19 20:46:35.153106+00 41 \N \N \N \N 0 \N \N 5 2012-01-23 17:25:06.637079+00 41 \N \N \N \N 0 \N \N 6 2012-06-28 20:34:36.265863+00 41 \N \N \N \N 0 \N \N 7 2012-06-28 20:35:00.551065+00 41 \N \N \N \N 0 \N \N 8 2012-06-28 20:36:04.901638+00 41 \N \N \N \N 0 \N \N 9 2012-06-28 20:36:30.035938+00 41 \N \N \N \N 0 \N \N 12 2013-10-09 14:47:20.320423+00 41 \N \N \N \N 0 \N \N 13 2013-10-09 14:49:37.243178+00 41 \N \N \N \N 0 \N \N 14 2013-10-09 14:49:49.683672+00 41 \N \N \N \N 0 \N \N 15 2013-10-09 14:50:09.982246+00 41 \N \N \N \N 0 \N \N 16 2013-10-09 14:50:46.875676+00 41 \N \N \N \N 0 \N \N 19 2014-01-10 23:11:16.337745+00 41 \N \N \N \N 0 \N \N 20 2014-02-13 00:42:52.573584+00 41 \N \N \N \N 0 \N \N 21 2014-12-19 14:12:05.270521+00 41 \N \N \N \N 0 \N \N 22 2014-12-19 14:14:21.150006+00 41 \N \N \N \N 0 \N \N 23 2014-12-19 14:14:53.610443+00 41 \N \N \N \N 0 \N \N 24 2014-12-19 14:15:25.567852+00 41 \N \N \N \N 0 \N \N 25 2014-12-19 14:16:05.753633+00 41 \N \N \N \N 0 \N \N 26 2014-12-19 14:16:25.843792+00 41 \N \N \N \N 0 \N \N 27 2014-12-19 14:26:02.50047+00 41 \N \N \N \N 0 \N \N 28 2014-12-19 21:22:22.583344+00 41 \N \N \N \N 0 \N \N 32 2015-06-02 12:16:04.529974+00 41 \N \N \N \N 0 \N \N 33 2016-02-04 18:58:52.339025+00 41 \N \N \N \N 0 \N \N 34 2016-02-04 18:59:53.76135+00 41 \N \N \N \N 0 \N \N 35 2016-02-04 19:00:26.992463+00 41 \N \N \N \N 0 \N \N 36 2016-02-04 19:00:53.818881+00 41 \N \N \N \N 0 \N \N 37 2016-02-17 20:34:04.967354+00 40 \N \N \N \N 0 \N \N 38 2016-02-25 21:29:32.465167+00 40 \N \N \N \N 0 \N \N 39 2016-03-07 17:28:59.083711+00 41 \N \N \N \N 0 \N \N 40 2016-03-07 17:29:05.349106+00 41 \N \N \N \N 0 \N \N 41 2016-03-07 17:30:33.01634+00 41 \N \N \N \N 0 \N \N 42 2016-03-07 17:30:48.618187+00 41 \N \N \N \N 0 \N \N 43 2016-03-07 17:30:59.870503+00 41 \N \N \N \N 0 \N \N 44 2016-03-08 02:08:23.919972+00 41 \N \N \N \N 0 \N \N 45 2016-03-08 03:35:28.565872+00 41 \N \N \N \N 0 \N \N 46 2016-05-09 17:54:13.75916+00 41 \N \N \N \N 0 \N \N 47 2016-05-09 21:49:25.421545+00 41 \N \N \N \N 0 \N \N 48 2016-05-12 21:14:24.101559+00 41 \N \N \N \N 0 \N \N 49 2016-08-02 16:57:34.432201+00 40 \N \N \N \N 0 \N \N 50 2016-08-02 16:57:57.411613+00 40 \N \N \N \N 0 \N \N 51 2016-08-04 15:35:21.249132+00 40 \N \N \N \N 0 \N \N 52 2016-10-12 17:29:59.74206+00 41 \N \N \N \N 0 \N \N 53 2016-10-17 17:51:17.740278+00 41 \N \N \N \N 0 \N \N 54 2016-11-11 14:47:39.732402+00 41 \N \N \N \N 0 \N \N 55 2017-01-04 15:25:47.878796+00 41 \N \N \N \N 0 \N \N 56 2017-02-20 21:54:13.041208+00 41 \N \N \N \N 0 \N \N 57 2017-03-28 18:48:59.237899+00 41 \N \N \N \N 0 \N \N 58 2017-04-21 20:38:42.140825+00 40 \N \N \N \N 0 \N \N 59 2017-04-21 20:38:47.264129+00 40 \N \N \N \N 0 \N \N 60 2017-04-21 20:40:28.934828+00 40 \N \N \N \N 0 \N \N 61 2017-04-21 20:40:54.719142+00 40 \N \N \N \N 0 \N \N 62 2017-04-21 21:12:02.017627+00 40 \N \N \N \N 0 \N \N 63 2017-05-08 16:12:57.002519+00 41 \N \N \N \N 0 \N \N 64 2017-05-31 14:08:18.88001+00 41 \N \N \N \N 0 \N \N 65 2017-06-08 16:11:32.805234+00 41 \N \N \N \N 0 \N \N 66 2017-06-08 16:53:22.864556+00 41 \N \N \N \N 0 \N \N 67 2017-06-30 13:41:36.162383+00 41 \N \N \N \N 0 \N \N 68 2017-06-30 13:41:47.39034+00 41 \N \N \N \N 0 \N \N 69 2017-07-17 17:31:42.837473+00 41 \N \N \N \N 0 \N \N 70 2017-07-27 19:09:24.635054+00 41 \N \N \N \N 0 \N \N 71 2017-07-27 19:09:56.99407+00 41 \N \N \N \N 0 \N \N 72 2017-08-16 18:07:04.409576+00 41 \N \N \N \N 0 \N \N 73 2017-08-16 18:07:17.022312+00 41 \N \N \N \N 0 \N \N 74 2017-08-16 18:07:38.778388+00 41 \N \N \N \N 0 \N \N 75 2017-09-01 17:08:01.703879+00 41 \N \N \N \N 0 \N \N 76 2017-09-18 15:42:28.250977+00 41 \N \N \N \N 0 \N \N 77 2017-09-18 15:43:58.719398+00 41 \N \N \N \N 0 \N \N 78 2017-10-10 15:10:41.4496+00 41 \N \N \N \N 0 \N \N 79 2017-10-10 15:10:52.863376+00 41 \N \N \N \N 0 \N \N 80 2017-10-10 15:11:22.791118+00 41 \N \N \N \N 0 \N \N 81 2017-10-10 15:13:14.819036+00 41 \N \N \N \N 0 \N \N 82 2017-10-10 15:13:30.873535+00 41 \N \N \N \N 0 \N \N 83 2017-10-10 15:17:59.09749+00 41 \N \N \N \N 0 \N \N 84 2017-10-10 18:46:10.177605+00 41 \N \N \N \N 0 \N \N 85 2017-10-28 09:27:19.914912+00 41 \N \N \N \N 0 \N \N 86 2017-10-28 09:27:31.016472+00 41 \N \N \N \N 0 \N \N 87 2018-03-15 18:22:23.716655+00 41 \N \N \N \N 0 \N \N 88 2018-03-15 18:22:38.694441+00 41 \N \N \N \N 0 \N \N 89 2018-03-15 18:22:50.086659+00 41 \N \N \N \N 0 \N \N 90 2018-03-15 18:23:18.356881+00 41 \N \N \N \N 0 \N \N 91 2018-03-15 18:23:27.198638+00 41 \N \N \N \N 0 \N \N 92 2018-03-15 18:23:42.849766+00 41 \N \N \N \N 0 \N \N 93 2018-03-15 18:23:53.182309+00 41 \N \N \N \N 0 \N \N 94 2018-03-15 18:24:08.119533+00 41 \N \N \N \N 0 \N \N 95 2018-03-15 18:24:20.893402+00 41 \N \N \N \N 0 \N \N 96 2018-03-15 18:24:30.449553+00 41 \N \N \N \N 0 \N \N 97 2018-03-15 18:24:48.650789+00 41 \N \N \N \N 0 \N \N 98 2018-03-15 18:25:52.818933+00 41 \N \N \N \N 0 \N \N 99 2018-03-15 18:27:22.075265+00 41 \N \N \N \N 0 \N \N 100 2018-03-15 18:27:31.137628+00 41 \N \N \N \N 0 \N \N 101 2018-03-15 18:27:34.05858+00 41 \N \N \N \N 0 \N \N 102 2018-03-15 18:27:35.098042+00 41 \N \N \N \N 0 \N \N 103 2018-03-15 18:27:36.863938+00 41 \N \N \N \N 0 \N \N 104 2018-03-15 18:27:44.327055+00 41 \N \N \N \N 0 \N \N 105 2018-03-15 18:27:47.338533+00 41 \N \N \N \N 0 \N \N 106 2018-03-15 18:27:50.954148+00 41 \N \N \N \N 0 \N \N 107 2018-03-15 18:27:54.330223+00 41 \N \N \N \N 0 \N \N 108 2018-03-15 18:28:04.11018+00 41 \N \N \N \N 0 \N \N 109 2018-03-15 18:28:07.980957+00 41 \N \N \N \N 0 \N \N 110 2018-03-15 18:28:09.301863+00 41 \N \N \N \N 0 \N \N 111 2018-03-15 18:28:10.524295+00 41 \N \N \N \N 0 \N \N 112 2018-03-15 18:28:12.704359+00 41 \N \N \N \N 0 \N \N 113 2018-03-15 18:28:14.967406+00 41 \N \N \N \N 0 \N \N 114 2018-03-15 18:28:17.296695+00 41 \N \N \N \N 0 \N \N 115 2018-03-15 18:28:19.55644+00 41 \N \N \N \N 0 \N \N 116 2018-03-15 18:33:22.456325+00 41 \N \N \N \N 0 \N \N 117 2018-03-15 18:34:21.334624+00 41 \N \N \N \N 0 \N \N 118 2018-03-15 18:35:12.538822+00 41 \N \N \N \N 0 \N \N 119 2018-03-15 18:36:00.770895+00 41 \N \N \N \N 0 \N \N 120 2018-03-15 18:36:49.307398+00 41 \N \N \N \N 0 \N \N 121 2018-03-15 18:39:49.100827+00 41 \N \N \N \N 0 \N \N 122 2018-03-15 18:40:54.965061+00 41 \N \N \N \N 0 \N \N 123 2018-03-15 18:41:46.412116+00 41 \N \N \N \N 0 \N \N 124 2018-03-15 18:42:55.118412+00 41 \N \N \N \N 0 \N \N 125 2018-03-15 18:43:42.52683+00 41 \N \N \N \N 0 \N \N 126 2018-03-15 18:44:43.779954+00 41 \N \N \N \N 0 \N \N 127 2018-03-15 18:46:05.081789+00 41 \N \N \N \N 0 \N \N 128 2018-03-15 18:47:06.79931+00 41 \N \N \N \N 0 \N \N 129 2018-03-15 18:47:49.912357+00 41 \N \N \N \N 0 \N \N 130 2018-03-15 18:48:31.490473+00 41 \N \N \N \N 0 \N \N 131 2018-03-15 18:49:17.403215+00 41 \N \N \N \N 0 \N \N 132 2018-03-15 18:50:01.866697+00 41 \N \N \N \N 0 \N \N 133 2018-03-15 18:52:01.920667+00 41 \N \N \N \N 0 \N \N 134 2018-03-15 18:56:21.786723+00 41 \N \N \N \N 0 \N \N 135 2018-03-15 18:57:23.524967+00 41 \N \N \N \N 0 \N \N 136 2018-03-15 18:59:13.473233+00 41 \N \N \N \N 0 \N \N 137 2018-08-07 19:33:30.680892+00 41 \N \N \N \N 0 \N \N 138 2018-08-07 19:33:32.459585+00 41 \N \N \N \N 0 \N \N 139 2018-08-07 19:33:34.412633+00 41 \N \N \N \N 0 \N \N 140 2018-08-07 19:33:36.167087+00 41 \N \N \N \N 0 \N \N 141 2018-08-07 19:33:37.222176+00 41 \N \N \N \N 0 \N \N 142 2018-08-07 19:33:38.900354+00 41 \N \N \N \N 0 \N \N 143 2018-08-07 19:33:41.547063+00 41 \N \N \N \N 0 \N \N 144 2018-08-07 19:33:44.11407+00 41 \N \N \N \N 0 \N \N 145 2018-08-07 19:33:45.851851+00 41 \N \N \N \N 0 \N \N 146 2018-08-07 19:33:47.617691+00 41 \N \N \N \N 0 \N \N 147 2018-08-07 19:33:50.103259+00 41 \N \N \N \N 0 \N \N 148 2018-08-07 19:33:52.612056+00 41 \N \N \N \N 0 \N \N 149 2018-08-07 19:33:55.128981+00 41 \N \N \N \N 0 \N \N 150 2018-08-19 22:28:38.254282+00 41 \N \N \N \N 0 \N \N 151 2018-08-19 22:28:41.219338+00 41 \N \N \N \N 0 \N \N 152 2018-10-17 19:34:10.537627+00 41 \N \N \N \N 0 \N \N 153 2018-10-17 19:34:11.840185+00 41 \N \N \N \N 0 \N \N 154 2018-10-17 19:34:13.089358+00 41 \N \N \N \N 0 \N \N 155 2018-10-17 19:34:15.04039+00 41 \N \N \N \N 0 \N \N 156 2018-10-17 19:34:17.251416+00 41 \N \N \N \N 0 \N \N 157 2018-10-17 19:34:19.268252+00 41 \N \N \N \N 0 \N \N 158 2019-04-03 19:07:52.723312+00 41 \N \N \N \N 0 \N \N 159 2019-04-03 19:07:53.774721+00 41 \N \N \N \N 0 \N \N 160 2019-04-03 19:07:55.444201+00 41 \N \N \N \N 0 \N \N 161 2019-04-03 19:07:57.201098+00 41 \N \N \N \N 0 \N \N 162 2019-04-03 19:07:58.878388+00 41 \N \N \N \N 0 \N \N 163 2019-06-05 21:33:52.895902+00 41 \N \N \N \N 0 \N \N 164 2019-06-05 21:33:54.076159+00 41 \N \N \N \N 0 \N \N 165 2019-08-06 16:35:16.339494+00 41 \N \N \N \N 0 \N \N 166 2019-08-06 16:35:17.89881+00 41 \N \N \N \N 0 \N \N 167 2019-08-06 16:35:19.280207+00 41 \N \N \N \N 0 \N \N 168 2019-08-06 16:35:21.282284+00 41 \N \N \N \N 0 \N \N 169 2019-08-06 16:35:22.148169+00 41 \N \N \N \N 0 \N \N 170 2019-08-07 22:56:34.894513+00 41 \N \N \N \N 0 \N \N 171 2020-01-22 20:12:16.928502+00 41 \N \N \N \N 0 \N \N 172 2020-01-22 20:12:29.485024+00 41 \N \N \N \N 0 \N \N 173 2020-01-22 20:12:31.038054+00 41 \N \N \N \N 0 \N \N 174 2020-01-22 20:12:33.972515+00 41 \N \N \N \N 0 \N \N 175 2020-01-22 20:12:36.71407+00 41 \N \N \N \N 0 \N \N 176 2020-01-22 20:12:39.453074+00 41 \N \N \N \N 0 \N \N 177 2020-01-22 20:12:42.868603+00 41 \N \N \N \N 0 \N \N 178 2020-01-22 20:12:45.743603+00 41 \N \N \N \N 0 \N \N 179 2020-01-22 20:12:48.129976+00 41 \N \N \N \N 0 \N \N 180 2020-02-21 19:26:14.344237+00 41 \N \N \N \N 0 \N \N 181 2020-02-21 19:26:16.286043+00 41 \N \N \N \N 0 \N \N 182 2020-02-21 19:26:18.454662+00 41 \N \N \N \N 0 \N \N 183 2020-04-09 13:28:49.143965+00 41 \N \N \N \N 0 \N \N 184 2020-04-09 13:28:50.799902+00 41 \N \N \N \N 0 \N \N 185 2020-04-09 13:28:54.790587+00 41 \N \N \N \N 0 \N \N 186 2020-04-09 13:28:58.773546+00 41 \N \N \N \N 0 \N \N 187 2020-04-09 13:29:01.086215+00 41 \N \N \N \N 0 \N \N 188 2020-04-09 13:29:14.372195+00 41 \N \N \N \N 0 \N \N 189 2020-04-09 14:43:29.697094+00 41 \N \N \N \N 0 \N \N 190 2020-04-09 14:43:29.697094+00 41 2020-04-09 14:43:29.697094+00 41 Bulk load of accession information 189 0 \N \N 191 2020-06-27 16:30:33.970546+00 41 \N \N \N \N 0 \N \N 192 2020-06-27 16:31:08.146366+00 41 \N \N \N \N 0 \N \N 193 2020-06-27 16:31:34.328798+00 41 \N \N \N \N 0 \N \N 194 2020-06-27 16:32:05.049948+00 41 \N \N \N \N 0 \N \N 195 2020-06-27 16:32:20.437788+00 41 \N \N \N \N 0 \N \N 196 2020-06-27 16:32:38.081425+00 41 \N \N \N \N 0 \N \N 197 2020-06-27 16:33:02.002609+00 41 \N \N \N \N 0 \N \N 198 2020-07-16 19:28:30.985547+00 41 \N \N \N \N 0 \N \N 199 2020-07-16 19:28:34.216065+00 41 \N \N \N \N 0 \N \N 200 2020-07-16 19:28:35.498009+00 41 \N \N \N \N 0 \N \N 201 2020-07-30 17:46:20.213307+00 41 \N \N \N \N 0 \N \N 202 2020-07-30 17:46:33.932416+00 41 \N \N \N \N 0 \N \N 203 2020-08-21 02:48:39.117945+00 41 \N \N \N \N 0 \N \N 204 2020-08-21 02:48:40.500789+00 41 \N \N \N \N 0 \N \N 205 2020-08-21 02:48:42.018041+00 41 \N \N \N \N 0 \N \N 206 2020-09-04 21:06:50.649866+00 41 \N \N \N \N 0 \N \N 207 2020-09-04 21:07:35.065837+00 41 \N \N \N \N 0 \N \N 208 2020-09-14 15:41:40.496852+00 41 \N \N \N \N 0 \N \N 209 2020-09-17 22:21:38.715859+00 41 \N \N \N \N 0 \N \N 210 2020-09-17 22:22:05.958752+00 41 \N \N \N \N 0 \N \N 211 2020-09-23 17:35:58.809559+00 41 \N \N \N \N 0 \N \N 212 2020-10-03 22:04:01.315147+00 41 \N \N \N \N 0 \N \N 213 2020-10-30 02:06:28.159077+00 41 \N \N \N \N 0 \N \N 214 2020-10-30 02:09:20.737725+00 41 \N \N \N \N 0 \N \N 215 2020-10-30 02:09:39.410676+00 41 \N \N \N \N 0 \N \N \. -- -- Data for Name: md_tag; Type: TABLE DATA; Schema: metadata; Owner: postgres -- COPY metadata.md_tag (tag_id, name, description, sp_person_id, modified_date, create_date, obsolete) FROM stdin; \. -- -- Data for Name: md_tag_image; Type: TABLE DATA; Schema: metadata; Owner: postgres -- COPY metadata.md_tag_image (tag_image_id, image_id, tag_id, obsolete, sp_person_id, create_date, modified_date) FROM stdin; \. -- -- Data for Name: roles; Type: TABLE DATA; Schema: metadata; Owner: postgres -- COPY metadata.roles (role_id, role_name, role_description) FROM stdin; \. -- -- Data for Name: data_points; Type: TABLE DATA; Schema: pheno_population; Owner: postgres -- COPY pheno_population.data_points (dp_id, sample_id, prop_id, source_id, image_id, value) FROM stdin; \. -- -- Data for Name: genotypes; Type: TABLE DATA; Schema: pheno_population; Owner: postgres -- COPY pheno_population.genotypes (gen_id, gen_name, pop_id, annotation) FROM stdin; \. -- -- Data for Name: images; Type: TABLE DATA; Schema: pheno_population; Owner: postgres -- COPY pheno_population.images (image_id, filepath, sample_id, source_id, annotation) FROM stdin; \. -- -- Data for Name: locations; Type: TABLE DATA; Schema: pheno_population; Owner: postgres -- COPY pheno_population.locations (loc_id, institution, environment, year, annotation) FROM stdin; \. -- -- Data for Name: organs; Type: TABLE DATA; Schema: pheno_population; Owner: postgres -- COPY pheno_population.organs (organ_id, organ_name) FROM stdin; \. -- -- Data for Name: plants; Type: TABLE DATA; Schema: pheno_population; Owner: postgres -- COPY pheno_population.plants (plant_id, plant_name, gen_id, loc_id) FROM stdin; \. -- -- Data for Name: populations; Type: TABLE DATA; Schema: pheno_population; Owner: postgres -- COPY pheno_population.populations (pop_id, pedigree, annotation) FROM stdin; \. -- -- Data for Name: properties; Type: TABLE DATA; Schema: pheno_population; Owner: postgres -- COPY pheno_population.properties (prop_id, prop_name, organ_id, unit_name, unit_precision, annotation) FROM stdin; \. -- -- Data for Name: samples; Type: TABLE DATA; Schema: pheno_population; Owner: postgres -- COPY pheno_population.samples (sample_id, sample_name, sample_group, organ_id, plant_id, annotation) FROM stdin; \. -- -- Data for Name: sources; Type: TABLE DATA; Schema: pheno_population; Owner: postgres -- COPY pheno_population.sources (source_id, author, location, source_date) FROM stdin; \. -- -- Data for Name: allele; Type: TABLE DATA; Schema: phenome; Owner: postgres -- COPY phenome.allele (allele_id, locus_id, allele_symbol, allele_name, mode_of_inheritance, allele_synonym, allele_phenotype, allele_notes, obsolete, sp_person_id, create_date, modified_date, updated_by, is_default, sequence) FROM stdin; 1 3 TEST2 \N \N \N \N \N f \N 2014-01-06 22:08:44.862552+00 \N \N t \N \. -- -- Data for Name: allele_alias; Type: TABLE DATA; Schema: phenome; Owner: postgres -- COPY phenome.allele_alias (allele_alias_id, alias, allele_id, preferred, obsolete, sp_person_id, create_date, modified_date) FROM stdin; \. -- -- Data for Name: allele_dbxref; Type: TABLE DATA; Schema: phenome; Owner: postgres -- COPY phenome.allele_dbxref (allele_dbxref_id, allele_id, dbxref_id, obsolete, sp_person_id, create_date, modified_date) FROM stdin; \. -- -- Data for Name: allele_history; Type: TABLE DATA; Schema: phenome; Owner: postgres -- COPY phenome.allele_history (allele_history_id, allele_id, locus_id, allele_symbol, allele_name, mode_of_inheritance, allele_phenotype, sp_person_id, updated_by, obsolete, create_date, sequence) FROM stdin; \. -- -- Data for Name: cross_type; Type: TABLE DATA; Schema: phenome; Owner: postgres -- COPY phenome.cross_type (cross_type_id, cross_type) FROM stdin; \. -- -- Data for Name: cvterm_pub_ranking; Type: TABLE DATA; Schema: phenome; Owner: postgres -- COPY phenome.cvterm_pub_ranking (cvterm_id, pub_id, rank, match_type, headline) FROM stdin; \. -- -- Data for Name: dbxref_type; Type: TABLE DATA; Schema: phenome; Owner: postgres -- COPY phenome.dbxref_type (dbxref_type_id, dbxref_type_name, dbxref_type_definition, dbxref_type_url) FROM stdin; \. -- -- Data for Name: genotype_experiment; Type: TABLE DATA; Schema: phenome; Owner: postgres -- COPY phenome.genotype_experiment (genotype_experiment_id, experiment_name, reference_map_id, background_accession_id, preferred, sp_person_id, modified_date, create_date, obsolete) FROM stdin; \. -- -- Data for Name: genotype_region; Type: TABLE DATA; Schema: phenome; Owner: postgres -- COPY phenome.genotype_region (genotype_region_id, phenome_genotype_id, marker_id_nn, marker_id_ns, marker_id_sn, marker_id_ss, zygocity_code, lg_id, type, name, sp_person_id, modified_date, create_date, obsolete) FROM stdin; \. -- -- Data for Name: germplasm; Type: TABLE DATA; Schema: phenome; Owner: postgres -- COPY phenome.germplasm (germplasm_id, germplasm_type, individual_id, description, dbxref_id, sp_person_id, create_date, modified_date, obsolete) FROM stdin; \. -- -- Data for Name: individual; Type: TABLE DATA; Schema: phenome; Owner: postgres -- COPY phenome.individual (individual_id, name, description, sp_person_id, create_date, modified_date, obsolete, population_id, updated_by, common_name_id, accession_id, stock_id) FROM stdin; \. -- -- Data for Name: individual_alias; Type: TABLE DATA; Schema: phenome; Owner: postgres -- COPY phenome.individual_alias (individual_alias_id, alias, individual_id, preferred, obsolete, sp_person_id, create_date, modified_date) FROM stdin; \. -- -- Data for Name: individual_allele; Type: TABLE DATA; Schema: phenome; Owner: postgres -- COPY phenome.individual_allele (individual_allele_id, individual_id, allele_id, sp_person_id, create_date, modified_date, obsolete) FROM stdin; \. -- -- Data for Name: individual_dbxref; Type: TABLE DATA; Schema: phenome; Owner: postgres -- COPY phenome.individual_dbxref (individual_dbxref_id, individual_id, dbxref_id, obsolete, sp_person_id, create_date, modified_date) FROM stdin; \. -- -- Data for Name: individual_dbxref_evidence; Type: TABLE DATA; Schema: phenome; Owner: postgres -- COPY phenome.individual_dbxref_evidence (individual_dbxref_evidence_id, individual_dbxref_id, relationship_type, evidence_code, evidence_description, evidence_with, reference_id, sp_person_id, updated_by, create_date, modified_date, obsolete) FROM stdin; \. -- -- Data for Name: individual_dbxref_evidence_history; Type: TABLE DATA; Schema: phenome; Owner: postgres -- COPY phenome.individual_dbxref_evidence_history (individual_dbxref_evidence_history_id, individual_dbxref_evidence_id, individual_dbxref_id, relationship_type, evidence_code, evidence_description, evidence_with, reference_id, sp_person_id, updated_by, create_date, modified_date, obsolete) FROM stdin; \. -- -- Data for Name: individual_history; Type: TABLE DATA; Schema: phenome; Owner: postgres -- COPY phenome.individual_history (individual_history_id, individual_id, name, description, population_id, sp_person_id, updated_by, obsolete, create_date) FROM stdin; \. -- -- Data for Name: individual_image; Type: TABLE DATA; Schema: phenome; Owner: postgres -- COPY phenome.individual_image (individual_image_id, image_id, individual_id, obsolete, sp_person_id, create_date, modified_date) FROM stdin; \. -- -- Data for Name: individual_locus; Type: TABLE DATA; Schema: phenome; Owner: postgres -- COPY phenome.individual_locus (individual_locus_id, individual_id, locus_id, sp_person_id, create_date, modified_date, obsolete) FROM stdin; \. -- -- Data for Name: is_public; Type: TABLE DATA; Schema: phenome; Owner: postgres -- COPY phenome.is_public (is_public_id, population_id, is_public, owner_id) FROM stdin; \. -- -- Data for Name: locus; Type: TABLE DATA; Schema: phenome; Owner: postgres -- COPY phenome.locus (locus_id, locus_name, locus_symbol, original_symbol, gene_activity, locus_notes, obsolete, sp_person_id, create_date, modified_date, description, linkage_group, lg_arm, common_name_id, updated_by, locus, organism_id) FROM stdin; 2 test T1 \N testblablabla \N f \N 2014-01-06 21:25:00.611864+00 2014-01-06 21:47:23.803621+00 \N \N \N 1 40 test \N 3 test2 test2 \N test \N f \N 2014-01-06 22:08:44.539434+00 \N \N \N \N 1 \N test2 \N \. -- -- Data for Name: locus2locus; Type: TABLE DATA; Schema: phenome; Owner: postgres -- COPY phenome.locus2locus (locus2locus_id, subject_id, object_id, relationship_id, evidence_id, reference_id, sp_person_id, obsolete, modified_date, create_date) FROM stdin; \. -- -- Data for Name: locus_alias; Type: TABLE DATA; Schema: phenome; Owner: postgres -- COPY phenome.locus_alias (locus_alias_id, alias, locus_id, preferred, obsolete, sp_person_id, create_date, modified_date) FROM stdin; 1 test2 3 t f \N 2014-01-06 22:08:44.829283+00 \N \. -- -- Data for Name: locus_dbxref; Type: TABLE DATA; Schema: phenome; Owner: postgres -- COPY phenome.locus_dbxref (locus_dbxref_id, locus_id, dbxref_id, obsolete, sp_person_id, create_date, modified_date) FROM stdin; \. -- -- Data for Name: locus_dbxref_evidence; Type: TABLE DATA; Schema: phenome; Owner: postgres -- COPY phenome.locus_dbxref_evidence (locus_dbxref_evidence_id, locus_dbxref_id, relationship_type_id, evidence_code_id, evidence_description_id, evidence_with, reference_id, sp_person_id, updated_by, create_date, modified_date, obsolete) FROM stdin; \. -- -- Data for Name: locus_dbxref_evidence_history; Type: TABLE DATA; Schema: phenome; Owner: postgres -- COPY phenome.locus_dbxref_evidence_history (locus_dbxref_evidence_history_id, locus_dbxref_evidence_id, locus_dbxref_id, relationship_type, evidence_code, evidence_description, evidence_with, reference_id, sp_person_id, updated_by, create_date, modified_date, obsolete) FROM stdin; \. -- -- Data for Name: locus_history; Type: TABLE DATA; Schema: phenome; Owner: postgres -- COPY phenome.locus_history (locus_history_id, locus_id, locus_name, locus_symbol, original_symbol, gene_activity, locus_description, locus_notes, linkage_group, lg_arm, sp_person_id, updated_by, obsolete, create_date) FROM stdin; 1 2 test T1 \N \N \N \N \N \N \N 40 f 2014-01-06 21:31:44.678775+00 2 2 test T1 \N \N \N \N \N \N \N 40 f 2014-01-06 21:35:55.408797+00 3 2 test T1 \N \N \N \N \N \N \N 40 f 2014-01-06 21:47:23.801806+00 \. -- -- Data for Name: locus_image; Type: TABLE DATA; Schema: phenome; Owner: postgres -- COPY phenome.locus_image (locus_image_id, image_id, locus_id, obsolete, sp_person_id, create_date, modified_date, display_order) FROM stdin; \. -- -- Data for Name: locus_marker; Type: TABLE DATA; Schema: phenome; Owner: postgres -- COPY phenome.locus_marker (locus_marker_id, locus_id, marker_id, obsolete, sp_person_id, create_date, modified_date) FROM stdin; \. -- -- Data for Name: locus_owner; Type: TABLE DATA; Schema: phenome; Owner: postgres -- COPY phenome.locus_owner (locus_owner_id, locus_id, sp_person_id, granted_by, obsolete, create_date, modified_date) FROM stdin; 1 3 40 \N f 2014-01-06 22:08:44.546768+00 \N \. -- -- Data for Name: locus_pub_ranking; Type: TABLE DATA; Schema: phenome; Owner: postgres -- COPY phenome.locus_pub_ranking (locus_id, pub_id, rank, match_type, headline) FROM stdin; \. -- -- Data for Name: locus_pub_ranking_validate; Type: TABLE DATA; Schema: phenome; Owner: postgres -- COPY phenome.locus_pub_ranking_validate (locus_id, pub_id, validate) FROM stdin; \. -- -- Data for Name: locus_registry; Type: TABLE DATA; Schema: phenome; Owner: postgres -- COPY phenome.locus_registry (locus_registry_id, locus_id, registry_id, sp_person_id, create_date, modified_date, obsolete) FROM stdin; \. -- -- Data for Name: locus_unigene; Type: TABLE DATA; Schema: phenome; Owner: postgres -- COPY phenome.locus_unigene (locus_unigene_id, locus_id, unigene_id, obsolete, sp_person_id, create_date, modified_date) FROM stdin; \. -- -- Data for Name: locusgroup; Type: TABLE DATA; Schema: phenome; Owner: postgres -- COPY phenome.locusgroup (locusgroup_id, locusgroup_name, relationship_id, sp_person_id, create_date, modified_date, obsolete) FROM stdin; \. -- -- Data for Name: locusgroup_member; Type: TABLE DATA; Schema: phenome; Owner: postgres -- COPY phenome.locusgroup_member (locusgroup_member_id, locusgroup_id, locus_id, direction, evidence_id, reference_id, sp_person_id, create_date, modified_date, obsolete) FROM stdin; \. -- -- Data for Name: nd_experiment_md_files; Type: TABLE DATA; Schema: phenome; Owner: postgres -- COPY phenome.nd_experiment_md_files (nd_experiment_md_files_id, nd_experiment_id, file_id) FROM stdin; \. -- -- Data for Name: nd_experiment_md_images; Type: TABLE DATA; Schema: phenome; Owner: postgres -- COPY phenome.nd_experiment_md_images (nd_experiment_md_images_id, nd_experiment_id, image_id) FROM stdin; \. -- -- Data for Name: nd_experiment_md_json; Type: TABLE DATA; Schema: phenome; Owner: postgres -- COPY phenome.nd_experiment_md_json (nd_experiment_md_json_id, nd_experiment_id, json_id) FROM stdin; \. -- -- Data for Name: phenome_genotype; Type: TABLE DATA; Schema: phenome; Owner: postgres -- COPY phenome.phenome_genotype (phenome_genotype_id, individual_id, experiment_name, reference_map_id, background_accession_id, preferred, sp_person_id, modified_date, create_date, obsolete, genotype_experiment_id, stock_id) FROM stdin; \. -- -- Data for Name: phenotype_user_trait; Type: TABLE DATA; Schema: phenome; Owner: postgres -- COPY phenome.phenotype_user_trait (phenotype_user_trait_id, user_trait_id, phenotype_id) FROM stdin; \. -- -- Data for Name: polymorphic_fragment; Type: TABLE DATA; Schema: phenome; Owner: postgres -- COPY phenome.polymorphic_fragment (polymorphic_fragment_id, phenome_genotype_id, flanking_marker1_id, flanking_marker2_id, zygocity, linkage_group, type, sp_person_id, modified_date, create_date, obsolete) FROM stdin; \. -- -- Data for Name: population; Type: TABLE DATA; Schema: phenome; Owner: postgres -- COPY phenome.population (population_id, name, description, person_id, sp_person_id, create_date, modified_date, background_accession_id, obsolete, cross_type_id, female_parent_id, male_parent_id, recurrent_parent_id, donor_parent_id, comment, web_uploaded, common_name_id, stock_id) FROM stdin; \. -- -- Data for Name: population_dbxref; Type: TABLE DATA; Schema: phenome; Owner: postgres -- COPY phenome.population_dbxref (population_dbxref_id, population_id, dbxref_id, obsolete, sp_person_id, create_date, modified_date) FROM stdin; \. -- -- Data for Name: project_md_image; Type: TABLE DATA; Schema: phenome; Owner: postgres -- COPY phenome.project_md_image (project_md_image_id, project_id, image_id, type_id) FROM stdin; \. -- -- Data for Name: pub_curator; Type: TABLE DATA; Schema: phenome; Owner: postgres -- COPY phenome.pub_curator (pub_curator_id, pub_id, sp_person_id, status, date_stored, date_curated, curated_by, assigned_to) FROM stdin; \. -- -- Data for Name: registry; Type: TABLE DATA; Schema: phenome; Owner: postgres -- COPY phenome.registry (registry_id, symbol, name, description, origin, sp_person_id, updated_by, create_date, modified_date, status) FROM stdin; \. -- -- Data for Name: stock_allele; Type: TABLE DATA; Schema: phenome; Owner: postgres -- COPY phenome.stock_allele (stock_allele_id, stock_id, allele_id, metadata_id) FROM stdin; \. -- -- Data for Name: stock_image; Type: TABLE DATA; Schema: phenome; Owner: postgres -- COPY phenome.stock_image (stock_image_id, stock_id, image_id, metadata_id, display_order) FROM stdin; \. -- -- Data for Name: stock_owner; Type: TABLE DATA; Schema: phenome; Owner: postgres -- COPY phenome.stock_owner (stock_owner_id, stock_id, sp_person_id, metadata_id) FROM stdin; 152785 41784 41 190 \. -- -- Data for Name: tomato_il_bin; Type: TABLE DATA; Schema: phenome; Owner: postgres -- COPY phenome.tomato_il_bin (il_bin_id, chromosome, name, n_marker_n, n_marker_s, s_marker_n, s_marker_s) FROM stdin; \. -- -- Data for Name: tomato_term; Type: TABLE DATA; Schema: phenome; Owner: postgres -- COPY phenome.tomato_term (tomato_term_id, tomato_term_name, tomato_term_type, tomato_term_acc, is_obsolete, is_root) FROM stdin; \. -- -- Data for Name: tomato_term2term; Type: TABLE DATA; Schema: phenome; Owner: postgres -- COPY phenome.tomato_term2term (tomato_term2term_id, relationship_type_id, term1_id, term2_id, complete) FROM stdin; \. -- -- Data for Name: unit; Type: TABLE DATA; Schema: phenome; Owner: postgres -- COPY phenome.unit (unit_id, name) FROM stdin; \. -- -- Data for Name: user_trait; Type: TABLE DATA; Schema: phenome; Owner: postgres -- COPY phenome.user_trait (user_trait_id, cv_id, name, definition, dbxref_id, sp_person_id) FROM stdin; \. -- -- Data for Name: user_trait_unit; Type: TABLE DATA; Schema: phenome; Owner: postgres -- COPY phenome.user_trait_unit (user_trait_unit_id, user_trait_id, unit_id, population_id) FROM stdin; \. -- -- Data for Name: variant; Type: TABLE DATA; Schema: phenome; Owner: postgres -- COPY phenome.variant (variant_id, locus_id, variant_name, variant_gi, variant_notes) FROM stdin; \. -- -- Data for Name: ba_plausibility; Type: TABLE DATA; Schema: physical; Owner: postgres -- COPY physical.ba_plausibility (bap_id, bac_assoc_id, map_id, plausible) FROM stdin; \. -- -- Data for Name: bac_associations; Type: TABLE DATA; Schema: physical; Owner: postgres -- COPY physical.bac_associations (bac_assoc_id, bac_id, bac_contig_id, plausible) FROM stdin; \. -- -- Data for Name: bac_consensus_sequences; Type: TABLE DATA; Schema: physical; Owner: postgres -- COPY physical.bac_consensus_sequences (consensus_seq_id, fasta_sequence, bac_id, tracefile, consensus_seq_name, length, includes_sp6_end, includes_t7_end) FROM stdin; \. -- -- Data for Name: bac_contigs; Type: TABLE DATA; Schema: physical; Owner: postgres -- COPY physical.bac_contigs (bac_contig_id, contig_name, fpc_version) FROM stdin; \. -- -- Data for Name: bac_end_sequences; Type: TABLE DATA; Schema: physical; Owner: postgres -- COPY physical.bac_end_sequences (end_seq_id, end_id, fasta_sequence, tracefile, length) FROM stdin; \. -- -- Data for Name: bac_marker_matches; Type: TABLE DATA; Schema: physical; Owner: postgres -- COPY physical.bac_marker_matches (marker_id, alias, confidence_id, lg_id, lg_name, lg_order, "position", bac_id, arizona_clone_name, cornell_clone_name, estimated_length, number_of_bacs, contig_name, fpc_version, association_type) FROM stdin; \. -- -- Data for Name: bacs; Type: TABLE DATA; Schema: physical; Owner: postgres -- COPY physical.bacs (bac_id, cornell_clone_name, arizona_clone_name, species_id, sp6_end_seq_id, t7_end_seq_id, genbank_accession, bad_clone, estimated_length, library_id) FROM stdin; \. -- -- Data for Name: computational_associations; Type: TABLE DATA; Schema: physical; Owner: postgres -- COPY physical.computational_associations (computational_assoc_id, marker_id, clone_id, e_value, q_start, q_end, s_start, s_end, identity, score, parameters) FROM stdin; \. -- -- Data for Name: contig_sizes; Type: TABLE DATA; Schema: physical; Owner: postgres -- COPY physical.contig_sizes (contig_size_id, bac_contig_id, contig_size) FROM stdin; \. -- -- Data for Name: deprecated_probes; Type: TABLE DATA; Schema: physical; Owner: postgres -- COPY physical.deprecated_probes (dp_id, overgo_version, overgo_probe_id) FROM stdin; \. -- -- Data for Name: fpc_data; Type: TABLE DATA; Schema: physical; Owner: postgres -- COPY physical.fpc_data (fpc_datum_id, bac_id, bac_name, gel_number, map_ctg_left, map_ctg_right, map_ends_left, map_ends_right, creation_date, modification_date, bac_contig_id_left, bac_contig_id_right) FROM stdin; \. -- -- Data for Name: fpc_version; Type: TABLE DATA; Schema: physical; Owner: postgres -- COPY physical.fpc_version (fpc_version, updated_on, updated_by, fpcfile, current, comments) FROM stdin; \. -- -- Data for Name: manual_associations; Type: TABLE DATA; Schema: physical; Owner: postgres -- COPY physical.manual_associations (manual_assoc_id, marker_id, clone_id, pubmed_id, sp_person_id, comment) FROM stdin; \. -- -- Data for Name: oa_plausibility; Type: TABLE DATA; Schema: physical; Owner: postgres -- COPY physical.oa_plausibility (oap_id, overgo_assoc_id, map_id, plausible) FROM stdin; \. -- -- Data for Name: overgo_associations; Type: TABLE DATA; Schema: physical; Owner: postgres -- COPY physical.overgo_associations (overgo_assoc_id, overgo_version, overgo_probe_id, bac_id, plausible) FROM stdin; \. -- -- Data for Name: overgo_plates; Type: TABLE DATA; Schema: physical; Owner: postgres -- COPY physical.overgo_plates (plate_id, plate_number, row_max, col_max, plate_size, empty_wells) FROM stdin; \. -- -- Data for Name: overgo_results; Type: TABLE DATA; Schema: physical; Owner: postgres -- COPY physical.overgo_results (result_id, overgo_plate_id, overgo_pool, bac_id) FROM stdin; \. -- -- Data for Name: overgo_version; Type: TABLE DATA; Schema: physical; Owner: postgres -- COPY physical.overgo_version (overgo_version, updated_on, updated_by, current, comments) FROM stdin; \. -- -- Data for Name: plausible_bacs_in_all_contigs; Type: TABLE DATA; Schema: physical; Owner: postgres -- COPY physical.plausible_bacs_in_all_contigs (overgo_assoc_id, overgo_version, overgo_probe_id, bac_id, overgo_plausible, overgo_map, bac_assoc_id, bac_contig_id, contig_name, fpc_version, bac_plausible, bac_map) FROM stdin; \. -- -- Data for Name: probe_markers; Type: TABLE DATA; Schema: physical; Owner: postgres -- COPY physical.probe_markers (overgo_probe_id, overgo_plate_id, overgo_plate_row, overgo_plate_col, marker_id, overgo_seq_a, overgo_seq_b, overgo_seq_ab, marker_seq) FROM stdin; \. -- -- Data for Name: species; Type: TABLE DATA; Schema: physical; Owner: postgres -- COPY physical.species (species_id, short_name, long_name) FROM stdin; \. -- -- Data for Name: tentative_association_conflict_groups; Type: TABLE DATA; Schema: physical; Owner: postgres -- COPY physical.tentative_association_conflict_groups (tacg_id, conflict_group_id, tentative_assoc_id) FROM stdin; \. -- -- Data for Name: tentative_overgo_associations; Type: TABLE DATA; Schema: physical; Owner: postgres -- COPY physical.tentative_overgo_associations (tentative_assoc_id, overgo_version, overgo_probe_id, bac_id) FROM stdin; \. -- -- Data for Name: users; Type: TABLE DATA; Schema: physical; Owner: postgres -- COPY physical.users (user_id, full_name, net_id) FROM stdin; \. -- -- Data for Name: analysis; Type: TABLE DATA; Schema: public; Owner: postgres -- COPY public.analysis (analysis_id, name, description, program, programversion, algorithm, sourcename, sourceversion, sourceuri, timeexecuted) FROM stdin; \. -- -- Data for Name: analysisfeature; Type: TABLE DATA; Schema: public; Owner: postgres -- COPY public.analysisfeature (analysisfeature_id, feature_id, analysis_id, rawscore, normscore, significance, identity) FROM stdin; \. -- -- Data for Name: analysisprop; Type: TABLE DATA; Schema: public; Owner: postgres -- COPY public.analysisprop (analysisprop_id, analysis_id, type_id, value) FROM stdin; \. -- -- Data for Name: ara_annotation; Type: TABLE DATA; Schema: public; Owner: postgres -- COPY public.ara_annotation (agi, locus, genbank_gi, gb_prot_id, gb_mrna_id, uniprot_id, tair_annotation, symbol, aliases, localization, process, function, localization_evidence, process_evidence, function_evidence, fulltext) FROM stdin; \. -- -- Data for Name: ara_domain; Type: TABLE DATA; Schema: public; Owner: postgres -- COPY public.ara_domain (agi, locus, prot_length, app_name, dom_id, dom_desc, dom_start, dom_end, e_value, interpro_id, interpro_dom, run_date) FROM stdin; \. -- -- Data for Name: ara_evidef; Type: TABLE DATA; Schema: public; Owner: postgres -- COPY public.ara_evidef (code, description, longdescription) FROM stdin; \. -- -- Data for Name: ara_family; Type: TABLE DATA; Schema: public; Owner: postgres -- COPY public.ara_family (locus, super_gene_family, gene_family, gene_name, gene_alias, bac_locus, gbi, gb_locus, tigr_annotation, expert_annotation, criteria, people_id, org_id, pmid, url, url_name) FROM stdin; \. -- -- Data for Name: ara_gfp_ms; Type: TABLE DATA; Schema: public; Owner: postgres -- COPY public.ara_gfp_ms (agi, locus, gfp_all, ms_all) FROM stdin; \. -- -- Data for Name: ara_go_term; Type: TABLE DATA; Schema: public; Owner: postgres -- COPY public.ara_go_term (go_id, alt_id, num_child, num_desc, namespace, name, is_a, children, path, definition) FROM stdin; \. -- -- Data for Name: ara_interactome_all; Type: TABLE DATA; Schema: public; Owner: postgres -- COPY public.ara_interactome_all (locus, locus_interact, source, database, type, author, pmid) FROM stdin; \. -- -- Data for Name: ara_interactome_unique; Type: TABLE DATA; Schema: public; Owner: postgres -- COPY public.ara_interactome_unique (locus, locus_interact) FROM stdin; \. -- -- Data for Name: ara_intron; Type: TABLE DATA; Schema: public; Owner: postgres -- COPY public.ara_intron (agi, locus, intron_num, lbound, rbound, sequence) FROM stdin; \. -- -- Data for Name: ara_map; Type: TABLE DATA; Schema: public; Owner: postgres -- COPY public.ara_map (locus, chromosome, direction, startpos, endpos) FROM stdin; \. -- -- Data for Name: ara_myristoylation; Type: TABLE DATA; Schema: public; Owner: postgres -- COPY public.ara_myristoylation (locus, evidence) FROM stdin; \. -- -- Data for Name: ara_pmidlink; Type: TABLE DATA; Schema: public; Owner: postgres -- COPY public.ara_pmidlink (pmid, url) FROM stdin; \. -- -- Data for Name: ara_prefix_info; Type: TABLE DATA; Schema: public; Owner: postgres -- COPY public.ara_prefix_info (prefix, genecount) FROM stdin; \. -- -- Data for Name: ara_properties; Type: TABLE DATA; Schema: public; Owner: postgres -- COPY public.ara_properties (agi, locus, weight, isoelectric, transmemcount, transmempos, genomepos, interactioncount, introncount) FROM stdin; \. -- -- Data for Name: ara_scop; Type: TABLE DATA; Schema: public; Owner: postgres -- COPY public.ara_scop (agi, locus, lbound, rbound, e_value, scop_id, description, structure_type) FROM stdin; \. -- -- Data for Name: ara_sequence; Type: TABLE DATA; Schema: public; Owner: postgres -- COPY public.ara_sequence (agi, locus, protein, cds, cdna, genomic, utr5, utr3) FROM stdin; \. -- -- Data for Name: ara_signalp; Type: TABLE DATA; Schema: public; Owner: postgres -- COPY public.ara_signalp (agi, locus, nn_cmax, nn_cpos, nn_cd, nn_ymax, nn_ypos, nn_yd, nn_smax, nn_spos, nn_sd, nn_smean, nn_smeand, nn_score, nn_d, hmm_type, hmm_cmax, hmm_cpos, hmm_cd, hmm_sprob, hmm_d) FROM stdin; \. -- -- Data for Name: ara_targetp; Type: TABLE DATA; Schema: public; Owner: postgres -- COPY public.ara_targetp (agi, locus, location, rc, c_score, m_score, s_score, o_score) FROM stdin; \. -- -- Data for Name: ara_users; Type: TABLE DATA; Schema: public; Owner: postgres -- COPY public.ara_users (id, username, password, hotlist, lists, email, confirm_email) FROM stdin; \. -- -- Data for Name: blastwatch_queries; Type: TABLE DATA; Schema: public; Owner: postgres -- COPY public.blastwatch_queries (blastwatch_queries_id, sp_person_id, sequence, program, database, matrix, evalue, num_results, new_results) FROM stdin; \. -- -- Data for Name: blastwatch_results; Type: TABLE DATA; Schema: public; Owner: postgres -- COPY public.blastwatch_results (blastwatch_results_id, blastwatch_queries_id, query_id, subject_id, subject_start, subject_end, evalue, score) FROM stdin; \. -- -- Data for Name: bug; Type: TABLE DATA; Schema: public; Owner: postgres -- COPY public.bug (bug_id, sp_person_id, obsolete, create_date, created_by, modified_date, updated_by, description, status, severity, affected_page, action) FROM stdin; \. -- -- Data for Name: contact; Type: TABLE DATA; Schema: public; Owner: postgres -- COPY public.contact (contact_id, type_id, name, description) FROM stdin; \. -- -- Data for Name: contact_relationship; Type: TABLE DATA; Schema: public; Owner: postgres -- COPY public.contact_relationship (contact_relationship_id, type_id, subject_id, object_id) FROM stdin; \. -- -- Data for Name: cv; Type: TABLE DATA; Schema: public; Owner: postgres -- COPY public.cv (cv_id, name, definition) FROM stdin; 1 relationship \N 2 cvterm_property \N 4 gene_ontology \N 7 biological_process \N 8 molecular_function \N 9 cellular_component \N 10 plant_ontology \N 13 plant_anatomy \N 14 plant_growth_and_development_stage \N 15 file:C:/Users/BAKARE/Desktop/cassava_trait.obo \N 16 cassava_trait \N 18 quality \N 19 sequence \N 38 project_property \N 39 local \N 40 taxonomy \N 41 organism_property \N 42 genotype_property \N 45 list_types 46 stock_property \N 47 project_type 48 trait_property 50 publication \N 35 experiment_type \N 36 stock_type \N 37 stock_relationship \N 51 nd_experiment_property \N 52 project_relationship \N 53 calendar \N 54 CassavaMethod \N 56 protocol_property \N 58 cass_tissue_ontology \N 59 chebi_ontology \N 60 synonym_type \N 61 cxgn_units_ontology \N 62 cxgn_time_ontology \N 63 composable_cvtypes \N 64 composed_trait \N 57 geolocation_property \N 65 phenotype_property \N 66 project_md_image \N 67 protocol_type \N 68 G2F_ontology \N 69 Imagesol_ontology \N 70 SGNStatistics_ontology \N 71 cxgn_plant_cycle \N 72 cxgn_plant_level_ontology \N 73 cxgn_plant_treatment \N 74 cxgn_rtb_cuts \N \. -- -- Data for Name: cvprop; Type: TABLE DATA; Schema: public; Owner: postgres -- COPY public.cvprop (cvprop_id, cv_id, type_id, value, rank) FROM stdin; 1 58 77542 \N 0 2 64 77541 \N 0 3 61 77545 \N 0 4 59 77543 \N 0 5 16 77540 \N 0 6 62 77546 \N 0 \. -- -- Data for Name: cvterm; Type: TABLE DATA; Schema: public; Owner: postgres -- COPY public.cvterm (cvterm_id, cv_id, name, definition, dbxref_id, is_obsolete, is_relationshiptype) FROM stdin; 2 2 comment \N 2 0 0 27 1 adjacent_to C adjacent to C' if and only if: given any instance c that instantiates C at a time t, there is some c' such that: c' instantiates C' at time t and c and c' are in spatial proximity 53 0 1 26 1 integral_part_of C integral_part_of C' if and only if: C part_of C' AND C' has_part C 51 0 1 25 1 contained_in C contained_in C' if and only if: given any instance c that instantiates C at a time t, there is some c' such that: c' instantiates C' at time t and c located_in c' at t, and it is not the case that c *overlaps* c' at t. (c' is a conduit or cavity.) 49 0 1 24 1 has_participant P has_participant C if and only if: given any process p that instantiates P there is some continuant c, and some time t, such that: c instantiates C at t and c participates in p at t 47 0 1 23 1 contains \N 45 0 1 22 1 preceded_by P preceded_by P' if and only if: given any process p that instantiates P at a time t, there is some process p' such that p' instantiates P' at time t', and t' is earlier than t. 43 0 1 21 1 proper_part_of As for part_of, with the additional constraint that subject and object are distinct 41 0 1 20 1 has_improper_part (obsolete OBO_REL:has_improper_part) \N 39 1 1 19 1 participates_in \N 37 0 1 18 1 transformed_into (obsolete OBO_REL:transformed_into) \N 35 1 1 17 1 derived_into \N 33 0 1 16 1 precedes \N 31 0 1 15 1 part_of For continuants: C part_of C' if and only if: given any c that instantiates C at a time t, there is some c' such that c' instantiates C' at time t, and c *part_of* c' at t. For processes: P part_of P' if and only if: given any p that instantiates P at a time t, there is some p' such that p' instantiates P' at time t, and p *part_of* p' at t. (Here *part_of* is the instance-level part-relation.) 29 0 1 14 1 has_part \N 27 0 1 13 1 improper_part_of (obsolete OBO_REL:improper_part_of) As for part_of, with the additional constraint that subject and object may be identical 25 1 1 12 1 location_of \N 23 0 1 11 1 instance_of A relation between an instance and a class. For components: a primitive relation between a component instance and a class which it instantiates at a specific time. For processes: a primitive relation, between a process instance and a class which it instantiates, holding independently of time 21 0 1 10 1 is_a For continuants: C is_a C' if and only if: given any c that instantiates C at a time t, c instantiates C' at t. For processes: P is_a P' if and only if: that given any p that instantiates P, then p instantiates P'. 19 0 1 9 1 located_in C located_in C' if and only if: given any c that instantiates C at a time t, there is some c' such that: c' instantiates C' at time t and c *located_in* c'. (Here *located_in* is the instance-level location relation.) 17 0 1 8 1 transformation_of Relation between two classes, in which instances retain their identity yet change their classification by virtue of some kind of transformation. Formally: C transformation_of C' if and only if given any c and any t, if c instantiates C at time t, then for some t', c instantiates C' at t' and t' earlier t, and there is no t2 such that c instantiates C at t2 and c instantiates C' at t2. 15 0 1 7 1 has_integral_part \N 13 0 1 6 1 has_agent As for has_participant, but with the additional condition that the component instance is causally active in the relevant process 11 0 1 5 1 has_proper_part \N 9 0 1 4 1 relationship (obsolete OBO_REL:relationship) A relationship between two classes (terms). Relationships between classes are expressed in terms of relations on underlying instances. 7 1 1 3 1 agent_in \N 5 0 1 1 1 derives_from Derivation on the instance level (*derives_from*) holds between distinct material continuants when one succeeds the other across a temporal divide in such a way that at least a biologically significant portion of the matter of the earlier continuant is inherited by the later. We say that one class C derives_from class C' if instances of C are connected to instances of C' via some chain of instance-level derivation relations. Example: osteocyte derives_from osteoblast. Formally: C derives_immediately_from C' if and only if: given any c and any t, if c instantiates C at time t, then there is some c' and some t', such that c' instantiates C' at t' and t' earlier-than t and c *derives_from* c'. C derives_from C' if and only if: there is an chain of immediate derivation relations connecting C to C'. 1 0 1 76442 37 offspring_of \N 209340 0 0 76445 35 cross_experiment \N 209343 0 0 76446 36 cross \N 209344 0 0 76447 37 member_of \N 209345 0 0 76458 38 design \N 209355 0 0 76459 46 replicate \N 209356 0 0 76460 46 block \N 209357 0 0 76461 46 plot number \N 209358 0 0 76450 45 plots plots 209347 0 0 76451 45 accessions accessions 209348 0 0 76452 45 locations locations 209349 0 0 76453 45 trials trials 209350 0 0 76454 45 years years 209351 0 0 76455 45 traits traits 209352 0 0 76456 45 unigene_ids unigene_ids 209353 0 0 76457 45 locus_ids locus_ids 209354 0 0 67537 9 cytoplasmic microtubule Any microtubule in the cytoplasm of a cell. 89051 0 0 74945 19 EST_match A match against an EST sequence. 98267 0 0 75140 19 simple_sequence_length_variation \N 98479 0 0 75683 19 chromosomal_structural_element \N 99111 0 0 69277 13 collective tepal structure A perianth consisting of two or more tepals. 91418 0 0 74677 19 one_methylguanosine 1_methylguanosine is a modified guanosine base feature. 97957 0 0 69188 13 cotyledon primordium A phyllome primordium that will develop into a cotyledon. 91314 0 0 76444 51 cross_type \N 209342 0 0 76443 51 cross_name \N 209341 0 0 69237 13 lower glume The proximal/basal of the two glumes. 91373 0 0 74678 19 rare_variant \N 97958 0 0 74940 19 cloned_genomic (obsolete SO:0000791) \N 98262 1 0 74993 19 sequence_attribute An attribute describes a quality of sequence. 98326 0 0 67918 9 host cell nuclear matrix The dense fibrillar network lying on the inner side of the host nuclear membrane. 89601 0 0 75271 19 five_methylcytidine 5-methylcytidine is a modified cytidine. 98629 0 0 75634 19 U5_LTR_region \N 99055 0 0 75635 19 gene_cassette_member \N 99056 0 0 75636 19 stop_codon_read_through A stop codon redefined to be a new amino acid. 99057 0 0 75681 19 protein_match A match against a protein sequence. 99109 0 0 75858 19 sequence_variant_increasing_rate_of_transcription (obsolete SO:1000080) \N 99308 1 0 75859 19 gene_by_polyadenylation_attribute (obsolete SO:0000066) \N 99309 1 0 75955 19 bacterial_RNApol_promoter_sigma54 \N 99412 0 0 69238 13 antheridium sperm cell A plant sperm cell that is produced by and located in an antheridium. 91376 0 0 69287 13 root cortex A portion of ground tissue that is part of a cortex and part of a root. 91429 0 0 69430 13 androecium A collective phyllome structure composed of two or more stamens. 91585 0 0 69478 13 gametophore axis A shoot axis that is part of a gametophore. 91636 0 0 33980 7 biological_process Any process specifically pertinent to the functioning of integrated living units: cells, tissues, organs, and organisms. A process is a collection of molecular events with a defined beginning and end. 41270 0 0 69527 13 embryo plant structure A plant structure that is part of an embryo. 91693 0 0 76137 19 foreign_transposable_element A transposable element that is foreign. 99618 0 0 76138 19 engineered_DNA (obsolete SO:0000793) \N 99619 1 0 76415 40 suborder \N 99921 0 0 76416 40 infraorder \N 99922 0 0 76417 40 parvorder \N 99923 0 0 76418 40 superfamily \N 99924 0 0 76419 40 family \N 99925 0 0 76420 40 subfamily \N 99926 0 0 69622 13 leaf pavement cell An epidermal pavement cell that is part of a leaf epidermis. 91794 0 0 76421 40 tribe \N 99927 0 0 76422 40 subtribe \N 99928 0 0 76423 40 genus \N 99929 0 0 76424 40 subgenus \N 99930 0 0 76425 40 species group \N 99931 0 0 76426 40 species subgroup \N 99932 0 0 69720 13 seed coat epidermis A portion of epidermis that is part of a seed coat. 91917 0 0 76427 40 species \N 99933 0 0 76428 40 subspecies \N 99934 0 0 76429 40 varietas \N 99935 0 0 76430 40 forma \N 99936 0 0 76431 41 synonym \N 99945 0 0 76434 42 snp genotyping \N 209331 0 0 76436 35 pedigree experiment \N 209333 0 0 76437 37 female_parent \N 209334 0 0 76438 37 male_parent \N 209335 0 0 65994 9 cyanelle membrane Either of the lipid bilayers that surround a cyanelle and form the cyanelle envelope. 86698 0 0 66215 9 acidic keratin (obsolete GO:0045096) OBSOLETE. A type of intermediate filament. 87068 1 0 69721 13 crown root Adventitious root formed at the base of the growing stem (known as a crown). 91918 0 0 69769 13 fruit locule A locule that is a cavity in a fruit and develops from an ovary locule. 91971 0 0 69819 13 stem stele A shoot axis stele that is part of a stem. 92039 0 0 68347 9 SMAD protein complex A protein complex that consists of SMAD proteins; may be homomeric or heteromeric. 90232 0 0 70023 13 hypocotyl epidermis The outermost primary cell layer of the hypocotyl. 92270 0 0 70164 13 leaf apex A phyllome apex that is part of a leaf. 92418 0 0 70408 14 A zygotic stage One cell stage that results from fertilization. 92682 0 0 66216 9 MCM complex A hexameric protein complex required for the initiation and regulation of DNA replication. 87069 0 0 66306 9 primary cell septum A cell septum that forms following nuclear division. 87197 0 0 70409 14 Poaceae inflorescence visible The stage at which grass plant is producing inflorescence(s). 92684 0 0 66701 9 apical plasma membrane The region of the plasma membrane located at the apical end of the cell. 87812 0 0 68378 9 site of polarized growth Any part of a cell where non-isotropic growth takes place. 90273 0 0 69126 13 shoot meristematic apical cell A meristematic apical cell that is part of a shoot system. 91233 0 0 70661 16 branching level Count of the actual number of levels of branching at harvest. 92949 0 0 70756 16 insect damage Traits related to damage caused by insects. 93047 0 0 69278 13 protonema side branch initial An protonema sub-apical initial that gives rise to a branch of a protonema. 91419 0 0 69279 13 floral stomatal pore (obsolete PO:0008046) A stomatal pore that is part of a floral stomatal complex. 91421 1 0 66120 9 half bridge of spindle pole body Structure adjacent to the plaques of the spindle pole body. 86919 0 0 66880 9 recombination nodule An electron dense structure that is associated with meiotic chromosomes. 88070 0 0 69328 13 root hair tip (obsolete PO:0000029) Tip portion of an outgrowth of a root epidermal cell. 91478 1 0 76435 37 OBSOLETE_cross \N 209332 0 0 69329 13 axillary vegetative bud An axillary bud that develops into a long or short shoot. 91479 0 0 69425 13 petal trichome A phyllome trichome that is part of a petal epidermis. 91580 0 0 69426 13 fruit columella A columella that forms the central axis of a fruit. 91581 0 0 69524 13 terminal reproductive bud A terminal bud that develops into a reproductive structure. 91689 0 0 69573 13 embryo axis A plant axis that is the axial part of a plant embryo. 91744 0 0 75829 19 glycine \N 99276 0 0 69139 13 adaxial petiole canal A petiole canal on the adaxial surface of a petiole. 91251 0 0 69140 13 secretory cell (obsolete PO:0004012) OBSOLETE. Cell that produces secreted substances. 91252 1 0 69187 13 lateral root cap of primary root A central root cap that is part of a root cap of primary root. 91313 0 0 66934 9 sheet-forming collagen Any collagen polymer in which collagen triple helices associate to form sheet-like networks. 88146 0 0 69668 13 axial wood parenchyma Parenchyma tissue in the axial system of secondary xylem. 91860 0 0 67255 9 stigma papilla A plant cell papilla that is part of a stigma papilla cell. 88629 0 0 67450 9 rDNA heterochromatin A region of heterochromatin located at the rDNA repeats in a chromosome. 88931 0 0 67686 9 other collagen (obsolete GO:0016341) OBSOLETE (was not defined before being made obsolete). 89273 1 0 69669 13 sepal apex A phyllome apex that is part of a sepal. 91861 0 0 69670 13 phloem A portion of vascular tissue that has as parts sieve tube members. 91862 0 0 67917 9 external side of endosome membrane The external (cytoplasmic face) of an endosome membrane. 89600 0 0 55671 4 NEGATIVELY_REGULATES \N 67063 0 1 55672 4 POSITIVELY_REGULATES \N 67064 0 1 55673 4 REGULATES \N 67065 0 1 69820 13 forth order inflorescence axis An inflorescence branch arising from a third order inflorescence axis. 92040 0 0 69925 13 perianth A collective phyllome structure composed of two or more petals, sepals, or tepals. 92159 0 0 69926 13 archegonium megagametophyte A megagametophyte that has as parts one or more archegonia. 92160 0 0 70074 13 peristome tooth A cardinal organ part that is a single lobe of a peristome. 92323 0 0 70075 13 shoot axis A plant axis that is part of a shoot system. 92324 0 0 70221 13 phyllome margin The margin of a phyllome. 92478 0 0 70223 13 leaf adaxial trichome A leaf trichome that is part of a leaf adaxial epidermis. 92480 0 0 70275 13 eighth order infructescence axis An infructescence branch arising from a seventh order infructescence axis. 92535 0 0 70276 13 seedling coleoptile A coleoptile that develops from an embryonic coleoptile. 92536 0 0 70371 13 perichaetal bract A bract that subtends an archegonium. 92640 0 0 70372 13 pedicel of ear spikelet This is the ultimate branch of the pedicellate ear spikelet. 92641 0 0 70557 14 D dormancy A suspension of physiological activity that can be reactivated once it is broken. 92836 0 0 70558 14 5.08 80% of inflorescence emerged (obsolete PO:0007107) OBSOLETE 92837 1 0 70607 14 fully expanded sepal Stage of calyx development when sepal is fully expanded. 92889 0 0 70608 14 FR.04 fruit ripening complete The stage at which fruit ripening is complete. 92890 0 0 70655 14 fully expanded petal Stage of corolla development when petal is fully expanded. 92941 0 0 70656 14 IL.03 full inflorescence length reached The stage when the inflorescence reaches full length. 92942 0 0 61373 8 molecular_function Elemental activities, such as catalysis or binding, describing the actions of a gene product at the molecular level. A given gene product may exhibit one or more molecular functions. 78031 0 0 65622 9 nuclear chromatin The ordered and organized complex of DNA, protein, and sometimes RNA, that forms the chromosome in the nucleus. 86070 0 0 65623 9 muscle tendon junction A cell-substrate junction found at the terminal anchorage site of skeletal muscle cells to tendons. 86071 0 0 65624 9 intrinsic to chloroplast inner membrane Located in the chloroplast inner membrane such that some covalently attached portion of the gene product, for example part of a peptide sequence or some other covalently attached group such as a GPI anchor, spans or is embedded in one or both leaflets of the membrane. 86073 0 0 65625 9 AP-1 adaptor complex A heterotetrameric AP-type membrane coat adaptor complex that consists of beta1, gamma, mu1 and sigma1 subunits and links clathrin to the membrane surface of a vesicle; vesicles with AP-1-containing coats are normally found primarily in the trans-Golgi network. In at least humans, the AP-1 complex can be heterogeneric due to the existence of multiple subunit isoforms encoded by different genes (gamma1 and gamma2, mu1A and mu1B, and sigma1A, sigma1B and sigma1C). 86074 0 0 65626 9 smooth muscle dense body Electron-dense region associated with a smooth muscle contractile fiber. 86076 0 0 65627 9 intrinsic to endosome membrane Located in the endosome membrane such that some covalently attached portion of the gene product, for example part of a peptide sequence or some other covalently attached group such as a GPI anchor, spans or is embedded in one or both leaflets of the membrane. 86077 0 0 65628 9 chloroplast envelope The double lipid bilayer enclosing the chloroplast and separating its contents from the rest of the cytoplasm; includes the intermembrane space. 86078 0 0 65629 9 cytoplasmic membrane-bounded vesicle lumen The volume enclosed by the membrane of a cytoplasmic membrane-bounded vesicle. 86079 0 0 65630 9 Slit-Robo signaling complex A protein-carbohydrate complex that consists of a transmembrane roundabout (Robo) receptor, an extracellular Slit ligand and heparin/heparan sulfate. 86080 0 0 65659 9 internal side of cell outer membrane The side of the outer membrane that faces the periplasm of the cell. 86130 0 0 66055 9 clathrin vesicle coat A clathrin coat found on a vesicle. 86802 0 0 66658 9 cell fraction A generic term for parts of cells prepared by disruptive biochemical techniques. 87745 0 0 65631 9 gamma-tubulin small complex, centrosomal A centrosomal complex usually comprising two gamma-tubulin molecules, at least two conserved non-tubulin proteins that multimerize along with additional non-tubulin proteins in animal cells into larger functional complexes. Gamma-tubulin small complexes are thought to be the repeating unit making up the core of the gamma-tubulin ring complex. An example of this structure is found in Mus musculus. 86083 0 0 65632 9 protein N-acetylglucosaminyltransferase complex Heterotrimeric enzyme complex, which in humans is composed of two large subunits of the same size, and one smaller subunit. Functions in the addition of nucleotide-activated sugars onto the polypeptide. 86085 0 0 65633 9 laminin-9 complex A laminin complex composed of alpha4, beta2 and gamma1 polypeptide chains. 86087 0 0 65634 9 crista junction Tubular structures of relatively uniform size that connect mitochondrial cristae to the inner mitchondrial membrane. 86089 0 0 65635 9 npBAF complex A SWI/SNF-type complex that is found in neural stem or progenitor cells, and in human contains actin and proteins encoded by the ARID1A/BAF250A or ARID1B/BAF250B, SMARCD1/BAF60A, SMARCD3/BAF60C, SMARCA2/BRM/BAF190B, SMARCA4/BRG1/BAF190A, SMARCB1/BAF47, SMARCC1/BAF155, SMARCE1/BAF57, SMARCC2/BAF170, PHF10/BAF45A, ACTL6A/BAF53A genes. The npBAF complex is essential for the self-renewal/proliferative capacity of the multipotent neural stem cells. 86091 0 0 65636 9 germ tube The slender tubular outgrowth first produced by most spores in germination. 86094 0 0 65637 9 Golgi stack The set of thin, flattened membrane-bounded compartments, called cisternae, that form the central portion of the Golgi complex. The stack usually comprises cis, medial, and trans cisternae; the cis- and trans-Golgi networks are not considered part of the stack. 86096 0 0 65638 9 phosphopyruvate hydratase complex A multimeric enzyme complex, usually a dimer or an octamer, that catalyzes the conversion of 2-phospho-D-glycerate to phosphoenolpyruvate and water. 86098 0 0 65639 9 integral to organelle membrane Penetrating at least one phospholipid bilayer of an organelle membrane. May also refer to the state of being buried in the bilayer with no exposure outside the bilayer. 86099 0 0 65640 9 clathrin coat of endocytic vesicle A clathrin coat found on an endocytic vesicle. 86100 0 0 65641 9 endospore cortex A layer surrounding a bacterial endospore found inside the outer endospore membrane, but outside the membrane surrounding the endospore core. It consists of peptidoglycan of a different chemical nature than that found in vegetative cell walls which results in less cross-linking of peptidoglycan. 86101 0 0 65642 9 alphav-beta3 integrin complex An integrin complex that comprises one alphav subunit and one beta3 subunit. 86102 0 0 65643 9 fimbrin (obsolete GO:0009417) OBSOLETE. A class of proteins that are the subunit components of fimbria. 86104 1 0 65644 9 chromosome, centromeric region The region of a chromosome that includes the centromeric DNA and associated proteins. In monocentric chromosomes, this region corresponds to a single area of the chromosome, whereas in holocentric chromosomes, it is evenly distributed along the chromosome. 86106 0 0 65645 9 condensed nuclear chromosome, centromeric region The region of a condensed chromosome in the nucleus that includes the centromere and associated proteins, including the kinetochore. In monocentric chromosomes, this region corresponds to a single area of the chromosome, whereas in holocentric chromosomes, it is evenly distributed along the chromosome. 86107 0 0 65646 9 host cell viral assembly compartment A membrane-bounded compartment that forms in the cytoplasm of the host cell, in which virus assembly takes place. 86108 0 0 65790 9 chloroplast part Any constituent part of a chloroplast, a chlorophyll-containing plastid with thylakoids organized into grana and frets, or stroma thylakoids, and embedded in a stroma. 86353 0 0 65647 9 small-subunit processome A large ribonucleoprotein complex that is an early preribosomal complex. In S. cerevisiae, it has a size of 80S and consists of the 35S pre-rRNA, early-associating ribosomal proteins most of which are part of the small ribosomal subunit, the U3 snoRNA and associated proteins. 86110 0 0 65648 9 alpha4-beta1 integrin complex An integrin complex that comprises one alpha4 subunit and one beta1 subunit. 86115 0 0 65649 9 host cell rough endoplasmic reticulum The irregular network of unit membranes, visible only by electron microscopy, that occurs in the host cell cytoplasm of many eukaryotic cells. The membranes form a complex meshwork of tubular channels, which are often expanded into slitlike cavities called cisternae. The host rough ER has ribosomes adhering to the outer surface. 86116 0 0 65650 9 nuclear proteasome core complex, beta-subunit complex The subunits forming the inner ring of the core complex of a proteasome located in the nucleus of a cell. 86117 0 0 65651 9 anchored to external side of plasma membrane Tethered to the plasma membrane by a covalently attached anchor, such as a lipid group, that is embedded in the membrane, with the bulk of the gene product located on the side opposite to the side that faces the cytoplasm. When used to describe a protein, indicates that the peptide sequence does not span the membrane. 86118 0 0 65652 9 mitochondrial endopeptidase Clp complex A Clp endopeptidase complex located in the mitochondrion. 86119 0 0 65653 9 cortical microtubule, transverse to long axis Arrays of microtubules underlying and connected to the plasma membrane, in the cortical cytosol, oriented mainly with their axes transverse to the long axis of the cell (and root in plants). In plants it influences the direction of cellulose microfibril deposition. 86120 0 0 65654 9 alpha4-beta1 integrin-thrombospondin-1 complex A protein complex that consists of an alpha4-beta1 integrin complex bound to thrombospondin-1. 86121 0 0 65655 9 EKC/KEOPS complex A protein complex proposed to be involved in transcription as well as promoting telomere uncapping and telomere elongation. For example, in Saccharomyces cerevisiae the complex contains Bud32p, Kae1p, Gon7p, Cgi121p, and Pcc1p. 86123 0 0 65656 9 Golgi medial cisterna The middle Golgi cisterna (or cisternae). 86126 0 0 65657 9 activator ecdysone receptor complex A protein complex consisting of a heterodimer of Ecdysone receptor (EcR) and ultraspiracle (usp) bound to the ligand ecdysone, which activates transcription of target genes. 86127 0 0 65658 9 longitudinal sarcoplasmic reticulum The portion of the free sarcoplasmic reticulum consisting of longitudinal tubules that connect terminal cisternae. 86129 0 0 75130 19 UST_match A match against an UST sequence. 98468 0 0 65660 9 ERCC4-ERCC1 complex A heterodimeric nucleotide-excision repair complex that has endonuclease activity specific for bubble structures characteristic of certain DNA lesions. The subunits are known as XPF/ERCC4 and ERCC1 in mammals, and Rad1p and Rad10p in S. cerevisiae. 86131 0 0 65661 9 U2-type post-mRNA release spliceosomal complex A spliceosomal complex that is formed following the release of the spliced product from the post-spliceosomal complex and contains the excised intron and the U2, U5 and U6 snRNPs. 86133 0 0 65662 9 ER proteasome complex A proteasome found in the endoplasmic reticulum of a cell. 86136 0 0 77184 60 RELATED \N 210087 0 0 65663 9 obsolete cellular component (obsolete GO:0008370) OBSOLETE. These are terms that have been removed from the active component ontology. 86137 1 0 65664 9 MHC protein complex A transmembrane protein complex composed of an MHC alpha chain and, in most cases, either an MHC class II beta chain or an invariant beta2-microglobin chain, and with or without a bound peptide, lipid, or polysaccharide antigen. 86138 0 0 65665 9 chloride channel complex An ion channel complex through which chloride ions pass. 86139 0 0 65666 9 apical pole of neuron Portion of a neuron cell soma closest to the point where the apical dendrite emerges. 86140 0 0 65695 9 Stn1-Ten1 complex A nuclear telomere cap complex that is formed by the association of the Stn1 and Ten1 proteins with telomeric DNA; in some species a third protein is present. 86185 0 0 65696 9 vesicle Any small, fluid-filled, spherical organelle enclosed by membrane or protein. 86188 0 0 65697 9 germinal vesicle The enlarged, fluid filled nucleus of a primary oocyte, the development of which is suspended in prophase I of the first meiotic division between embryohood and sexual maturity. 86189 0 0 65698 9 nuclear interphase chromosome (obsolete GO:0000232) OBSOLETE. A chromosome found in the nucleus during interphase. 86191 1 0 65667 9 smooth endoplasmic reticulum The smooth endoplasmic reticulum (ER) has with no ribosomes attached to it. The smooth is the recipient of the proteins synthesized in the rough ER. Those proteins to be exported are passed to the Golgi complex, the resident proteins are returned to the rough ER and the lysosomal proteins after phosphorylation of their mannose residues are passed to the lysosomes. Glycosylation of the glycoproteins also continues. The smooth ER is the site of synthesis of lipids, including the phospholipids. The membranes of the smooth ER also contain enzymes that catalyze a series of reactions to detoxify both lipid-soluble drugs and harmful products of metabolism. Large quantities of certain compounds such as phenobarbital cause an increase in the amount of the smooth ER. 86142 0 0 65668 9 phosphoenolpyruvate-dependent sugar phosphotransferase complex Includes phosphoenolpyruvate-protein phosphatase (enzyme I of the phosphotransferase system) and protein-N(PI)-phosphohistidine-sugar phosphotransferase (enzyme II of the phosphotransferase system). 86143 0 0 65669 9 porous cell septum A septum or cross wall which does not entirely span the space between two portions of cell wall and may contain a specialized central pore structure. A porous septum allows the movement of organelles and/or cytoplasm between compartments. 86144 0 0 65670 9 proton-transporting ATP synthase, stator stalk One of two stalks that connect the catalytic core of the hydrogen-transporting ATP synthase to the membrane-associated Fo proteins; is thought to prevent futile rotation of the catalytic core. 86145 0 0 65671 9 cytosolic part Any constituent part of cytosol, that part of the cytoplasm that does not contain membranous or particulate subcellular components. 86147 0 0 65672 9 nuclear body Extra-nucleolar nuclear domains usually visualized by confocal microscopy and fluorescent antibodies to specific proteins. 86148 0 0 65673 9 nuclear pore Any of the numerous similar discrete openings in the nuclear envelope of a eukaryotic cell, where the inner and outer nuclear membranes are joined. 86150 0 0 65674 9 cell outer membrane A lipid bilayer that forms the outermost layer of the cell envelope; enriched in polysaccharide and protein; the outer leaflet of the membrane contains specific lipopolysaccharide structures. 86152 0 0 65675 9 ESCRT III complex An endosomal sorting complex required for transport. Consists of two soluble subcomplexes of highly charged coiled-coil proteins and is required for sorting and/or concentration of multivesicular body (MVB) cargoes. 86153 0 0 65676 9 egg coat A specialized extracellular matrix that surrounds the ovum of animals. The egg coat provides structural support and can play an essential role in oogenesis, fertilization and early development. 86156 0 0 65677 9 chromatid (obsolete GO:0005695) OBSOLETE. One of the two daughter strands of a duplicated chromosome that become apparent between early prophase and metaphase in mitosis and between diplotene and second metaphase in meiosis. 86157 1 0 65678 9 plasma membrane succinate dehydrogenase complex (ubiquinone) The enzyme, located in the plasma membrane, that catalyzes the oxidation of succinate and ubiquinone to fumarate and ubiquinol; involved in aerobic respiration, repressed in anaerobic respiration. 86158 0 0 65679 9 eukaryotic translation initiation factor 4F complex The eukaryotic translation initiation factor 4F complex is composed of eIF4E, eIF4A and eIF4G; it is involved in the recognition of the mRNA cap, ATP-dependent unwinding of the 5'-terminal secondary structure and recruitment of the mRNA to the ribosome. 86159 0 0 65680 9 PSII associated light-harvesting complex II, core complex, LHCIIa subcomplex (obsolete GO:0030086) OBSOLETE (was not defined before being made obsolete). 86161 1 0 65681 9 organelle outer membrane The outer, i.e. cytoplasm-facing in a cellular organelle, lipid bilayer of an organelle envelope. 86162 0 0 65682 9 endosome A membrane-bounded organelle to which materials ingested by endocytosis are delivered. 86163 0 0 65683 9 glucose-1-phosphate adenylyltransferase complex Complex that catalyzes the synthesis of ADP-glucose and pyrophosphate from glucose-1-phosphate and ATP. In plants, the complex is a heterotetramer composed of two types of subunits (small and large). In bacteria, the enzyme complex is composed of four identical subunits. 86165 0 0 65684 9 esterosome A vesicle filled with crystalline protein that shows sequence similarities with various esterases. 86167 0 0 65685 9 enhanceosome A protein-DNA complex formed by the association of a distinct set of general and specific transcription factors with a region of enhancer DNA. The cooperative assembly of an enhanceosome confers specificity of transcriptional regulation. 86169 0 0 65686 9 U6 snRNP A ribonucleoprotein complex that contains small nuclear RNA U6. 86172 0 0 65687 9 female germline ring canal An intercellular bridge that connects the germline cells of a female cyst. 86173 0 0 65688 9 immunoglobulin complex A protein complex that in its canonical form is composed of two identical immunoglobulin heavy chains and two identical immunoglobulin light chains, held together by disulfide bonds and sometimes complexed with additional proteins. An immunoglobulin complex may be embedded in the plasma membrane or present in the extracellular space, in mucosal areas or other tissues, or circulating in the blood or lymph. 86175 0 0 75357 19 single_stranded_cDNA \N 98737 0 0 65689 9 stored secretory granule A small subcellular vesicle, surrounded by a membrane, that is formed from the Golgi apparatus and contains a highly concentrated protein destined for secretion. Secretory granules move towards the periphery of the cell and upon stimulation, their membranes fuse with the cell membrane, and their protein load is exteriorized. Processing of the contained protein may take place in secretory granules. 86176 0 0 65690 9 chromoplast intermembrane space The region between the inner and outer lipid bilayers of a chromoplast envelope. 86177 0 0 69451 13 leaf trichome A phyllome trichome that is part of a leaf epidermis. 91607 0 0 65691 9 horsetail nucleus leading edge The part of the horsetail nucleus where telomeres cluster under the SPB and that leads horsetail movement. The horsetail nucleus is the elongated nucleus which forms during the rapid oscillatory movement at meiotic prophase; characterized in Schizosaccharomyces pombe. 86178 0 0 65692 9 subpellicular network A mechanically stable cytoskeletal structure associated with the cytoplasmic face of the pellicle and surrounding the microtubule-based cytoskeleton. 86180 0 0 65693 9 fibrinogen alpha chain (obsolete GO:0005972) OBSOLETE (was not defined before being made obsolete). 86182 1 0 65694 9 chloroplast thylakoid membrane The pigmented membrane of a chloroplast thylakoid. An example of this component is found in Arabidopsis thaliana. 86184 0 0 75931 19 lysidine Lysidine is a modified cytidine. 99385 0 0 65699 9 transcription factor TFIIIC2 complex A transcription factor complex that forms part of the TFIIIC complex, observed in human; composed of five subunits (GTF3C1/hTFIIIC220/TFIIICalpha, GTF3C2/hTFIIIC110/TFIIICbeta, GTF3C3/hTFIIIC102/TFIIICgamma, GTF3C4/hTFIIIC90/TFIIICdelta and GTF3C5/hTFIIIC63/TFIIICepsilon in human) that together recognize the type 2 RNA polymerase III promoter. 86192 0 0 65700 9 LUBAC complex A ubiquitin ligase complex that catalyzes linear head-to-tail polyubiquitin conjugation on its targets. In human the complex consists of RBCK1, RNF31 and SHARPIN, and has an MW of approximately 600 kDa, suggesting a heteromultimeric assembly of its subunits. LUBAC stands for Linear Ubiquitin Chain Assembly Complex. 86194 0 0 65701 9 vacuole A closed structure, found only in eukaryotic cells, that is completely surrounded by unit membrane and contains liquid material. Cells contain one or several vacuoles, that may have different functions from each other. Vacuoles have a diverse array of functions. They can act as a storage organelle for nutrients or waste products, as a degradative compartment, as a cost-effective way of increasing cell size, and as a homeostatic regulator controlling both turgor pressure and pH of the cytosol. 86197 0 0 65702 9 pterinosome A tissue-specific, membrane-bounded cytoplasmic organelle within which pteridine pigments are synthesized and stored. Pterinosomes are synthesized in xanthophores and erythrophore cells and are yellow, orange or red in appearance. 86198 0 0 65703 9 protocadherin-alpha-v4-protocadherin-gamma-b2 complex A protein complex that contains the cell adhesion molecules protocadherin-alpha-v4 and protocadherin-gamma-b2, and is involved in the regulation of protein localization to the plasma membrane. 86199 0 0 65928 9 external side of mitochondrial outer membrane The external (cytoplasmic face) of the mitochondrial outer membrane. 86593 0 0 65704 9 VCB complex A protein complex that possesses ubiquitin ligase activity; the complex is usually pentameric; for example, in mammals the subunits are pVHL, elongin B, elongin C, cullin-2 (Cul2), and Rbx1. 86201 0 0 65705 9 brahma complex A SWI/SNF-type complex that contains the ATPase product of the Drosophila brahma gene, or an ortholog thereof. 86203 0 0 65706 9 multi-eIF complex A multifactor complex composed of multiple translation initiation factors and the initiatior tRNAiMet, which is ready to bind to the small (40S) ribosome to form the 43S preinitiation complex. In S. cerevisiae, this complex is composed of eIF1, eIF2, eIF3, and eIF5. 86206 0 0 65707 9 phagocytic vesicle A membrane-bounded intracellular vesicle that arises from the ingestion of particulate material by phagocytosis. 86207 0 0 65708 9 polytene chromosome interband A stretch of less tightly packed chromatin along the polytene chromosome, found between bands. 86208 0 0 65709 9 cytoplasmic dynein heavy chain (obsolete GO:0001687) OBSOLETE (was not defined before being made obsolete). 86210 1 0 65710 9 Cdc73/Paf1 complex A multiprotein complex that associates with RNA polymerase II and general RNA polymerase II transcription factor complexes and may be involved in both transcriptional initiation and elongation. In Saccharomyces the complex contains Paf1p, Cdc73p, Ctr9p, Rtf1p, and Leo1p. 86211 0 0 65711 9 IgM B cell receptor complex An IgM immunoglobulin complex that is present in the plasma membrane of B cells and is composed of two identical immunoglobulin heavy chains of the IgM isotype and two identical immunoglobulin light chains and a signaling subunit, a heterodimer of the Ig-alpha and Ig-beta proteins. 86213 0 0 65712 9 specific granule lumen The volume enclosed by the membrane of a specific granule, a granule with a membranous, tubular internal structure, found primarily in mature neutrophil cells. Most are released into the extracellular fluid. Specific granules contain lactoferrin, lysozyme, vitamin B12 binding protein and elastase. 86215 0 0 65713 9 invadopodium A cell projection that emerges from the ECM-facing surface of a cell, is enriched in actin and associated cytoskeletal proteins, and displays localized proteolytic activity toward the substrate. 86217 0 0 65714 9 external side of fungal-type cell wall The side of the fungal-type cell wall that is opposite to the side that faces the cell and its contents. 86221 0 0 65739 9 monopolin complex A protein complex required for clamping microtubule binding sites, ensuring orientation of sister kinetochores to the same pole (mono-orientation) during meiosis I. In the yeast S. cerevisiae this complex consists of Csm1p, Lrs4p, Hrr25p and Mam1p; in S. pombe Psc1 and Mde4 have been identified as subunits. 86270 0 0 69198 13 root periderm A portion of periderm that is part of a root. 91326 0 0 65715 9 eukaryotic translation initiation factor 3 complex A complex of several polypeptides that plays at least two important roles in protein synthesis: First, eIF3 binds to the 40S ribosome and facilitates loading of the Met-tRNA/eIF2.GTP ternary complex to form the 43S preinitiation complex. Subsequently, eIF3 apparently assists eIF4 in recruiting mRNAs to the 43S complex. The eIF3 complex contains five conserved core subunits, and may contain several additional proteins; the non-core subunits are thought to mediate association of the complex with specific sets of mRNAs. 86222 0 0 65716 9 DNA polymerase complex A protein complex that possesses DNA polymerase activity and is involved in template directed synthesis of DNA. 86224 0 0 65717 9 synaptobrevin 2-SNAP-25-syntaxin-1a-complexin I complex A SNARE complex that contains synaptobrevin 2 (VAMP2), SNAP-25, syntaxin 1a, and complexin I (or orthologs thereof). 86226 0 0 65718 9 inner acrosomal membrane The acrosomal membrane region that underlies the acrosomal vesicle and is located toward the sperm nucleus. This region is responsible for molecular interactions allowing the sperm to penetrate the zona pellucida and fuses with the egg plasma membrane. 86228 0 0 65719 9 alpha6-beta1 integrin-CYR61 complex A protein complex that consists of an alpha6-beta1 integrin complex bound to CYR61, a cysteine-rich protein involved in angiogenesis. 86231 0 0 65720 9 integral to cytosolic side of endoplasmic reticulum membrane Penetrating at least one phospholipid bilayer of the endoplasmic reticulum membrane, with the bulk of the gene product located on the side that faces the cytosol. 86233 0 0 65721 9 intraflagellar transport particle B The larger subcomplex of the intraflagellar transport particle; characterized complexes have molecular weights around 550 kDa. 86234 0 0 65722 9 host cell lipid particle Any particle of coalesced lipids in the cytoplasm of a host cell. May include associated proteins. 86236 0 0 65829 9 endopeptidase Clp complex A protein complex comprised of members of the ClpX, ClpC, ClpD, ClpP or ClpR protein families. ClpPs are the proteolytic subunit of active complexes, and ClpA and ClpX form the regulatory subunits. Enzymatically active and inactive complexes can form. 86422 0 0 65723 9 paranodal junction A highly specialized cell-cell junction found in vertebrates, which forms between a neuron and a glial cell, and has structural similarity to Drosophila septate junctions. It flanks the node of Ranvier in myelinated nerve and electrically isolates the myelinated from unmyelinated nerve segments and physically separates the voltage-gated sodium channels at the node from the cluster of potassium channels underneath the myelin sheath. 86237 0 0 65724 9 rhoptry lumen The volume enclosed by the rhoptry membrane. 86240 0 0 65725 9 endospore core An intracellular part that represents the innermost portion of an endospore; the endospore core is dehydrated, enriched in dipicolinic acid and divalent cations, and metabolically inactive. 86242 0 0 65726 9 epsilon DNA polymerase complex A heterotetrameric DNA polymerase complex that catalyzes processive DNA synthesis in the absence of PCNA, but is further stimulated in the presence of PCNA. The complex contains a large catalytic subunit and three small subunits, and is best characterized in Saccharomyces, in which the subunits are named Pol2p, Dpb2p, Dpb3p, and Dpb4p. Some evidence suggests that DNA polymerase epsilon is the leading strand polymerase; it is also involved in nucleotide-excision repair and mismatch repair. 86245 0 0 65727 9 nephrocyte junction A tissue-specific adherens junction found between nephrocyte cells. A nephrocyte is an insect excretory cell that regulates hemolymph composition by filtration and filtrate endocytosis. 86248 0 0 65728 9 neuron projection terminus The specialized, terminal region of a neuron projection such as an axon or a dendrite. 86250 0 0 65729 9 NADPH oxidase complex A enzyme complex of which the core is a heterodimer composed of a light (alpha) and heavy (beta) chain, and requires several other water-soluble proteins of cytosolic origin for activity. Functions in superoxide generation by the NADPH-dependent reduction of O2. 86251 0 0 65730 9 Nic96 complex A protein complex that forms part of the nuclear pore complex, and is required for its correct assembly. In Saccharomyces cerevisiae Nic96 contains Nsp1p, Nup57p, Nup49p, and Nic96p. 86254 0 0 65788 9 eRF1 methyltransferase complex A protein complex required for the methylation of a glutamine (Gln) residue in the protein release factor eRF1. In S. cerevisiae, this complex consists of at least Trm112p and Mtq2p. 86348 0 0 65731 9 core TFIIH complex The 5 subunit core of TFIIH that has tightly associated subunits and is found in both the general transcription factor holo-TFIIH and in the nucleotide-excision repair factor 3 complex. In S. cerevisiae, it is composed of Rad3, Tfb1, Tfb2, Ssl1, Tfb4. In humans, it is composed of XPD, p62, p55, p44, p34. 86257 0 0 65732 9 basal layer of collagen and cuticulin-based cuticle extracellular matrix The layer of cuticle most closely apposed to the hypodermal cells. The morphology of the basal layer varies with life stage. In adult C. elegans animals, the basal layers is comprised of three sublayers: two fibrous layers whose fibers run in clockwise and counter-clockwise directions meeting one another at a 60 degree angle, and an amorphous basal layer that lies underneath the fibrous layers and directly contacts the hypodermis. In C. elegans dauer and L1 larval stage animals, the basal layer is characterized by a striated pattern that appears to derive from interwoven laminae. An example of this component is found in Caenorhabditis elegans. 86260 0 0 65733 9 U5 snRNP A ribonucleoprotein complex that contains small nuclear RNA U5. 86262 0 0 65734 9 host cell presynaptic membrane A specialized area of membrane of the host axon terminal that faces the plasma membrane of the host neuron or muscle fiber with which the axon terminal establishes a synaptic junction; many host synaptic junctions exhibit structural presynaptic characteristics, such as conical, electron-dense internal protrusions, that distinguish it from the remainder of the axon plasma membrane. 86263 0 0 65735 9 mitochondrial permeability transition pore complex A protein complex that connects the inner and outer membranes of animal mitochondria and acts as a pore that can open transiently to allow free diffusion of solutes between the mitochondrial matrix and the cytosol. 86264 0 0 65736 9 host cell mitochondrial envelope The double lipid bilayer enclosing the host cell mitochondrion and separating its contents from the host cell cytoplasm; includes the intermembrane space. 86266 0 0 65737 9 rhabdomere microvillus Thin cylindrical membrane-covered projection on the surface of a rhabdomere. 86267 0 0 65738 9 extrinsic to mitochondrial outer membrane Loosely bound to one surface of the mitochondrial outer membrane, but not integrated into the hydrophobic region. 86269 0 0 66109 9 subsynaptic reticulum An elaborate tubulolamellar membrane system that underlies the postsynaptic cell membrane. 86894 0 0 76088 19 group_IIA_intron \N 99565 0 0 65740 9 precatalytic spliceosome A spliceosomal complex that is formed by the recruitment of a preassembled U5-containing tri-snRNP to the prespliceosome. Although all 5 snRNPs are present, the precatalytic spliceosome is catalytically inactive. The precatalytic spliceosome includes many proteins in addition to those found in the associated snRNPs. 86272 0 0 65882 9 DNA replication factor C core complex A protein complex containing three of the five subunits of eukaryotic replication factor C, those corresponding to human p40, p38, and p37. 86511 0 0 65741 9 RNA polymerase transcription factor SL1 complex A RNA polymerase I-specific transcription factor complex that contains the TATA-box-binding protein (TBP) and at least three TBP-associated factors including proteins known in mammals as TAFI110, TAFI63 and TAFI48. 86274 0 0 65742 9 plastid small ribosomal subunit The smaller of the two subunits of a plastid ribosome. 86276 0 0 65743 9 central element A structural unit of the synaptonemal complex found between the lateral elements. 86277 0 0 65744 9 host cell cytosol The part of the host cell cytoplasm that does not contain organelles but which does contain other particulate matter, such as protein complexes. 86278 0 0 65745 9 nuclear chromosome A chromosome found in the nucleus of a eukaryotic cell. 86279 0 0 65746 9 host cell nuclear lamina The fibrous, electron-dense layer lying on the nucleoplasmic side of the inner membrane of a host cell nucleus, composed of lamin filaments. 86280 0 0 65747 9 type VI protein secretion system complex A complex of proteins that permits the transfer of proteins into the extracellular milieu or directly into host cells via the type VI secretion system. Proteins secreted by this complex do not require an N-terminal signal sequence. 86281 0 0 65830 9 CBF3 complex A multisubunit protein complex that binds to centromeric DNA and initiates kinetochore assembly. In yeast, this complex consists of four subunits, namely Ctf13p, Skp1p, Cep3p and Cbf2p. 86424 0 0 76283 19 engineered_gene A gene that is engineered. 99783 0 0 65748 9 chloroplast isoamylase complex A protein complex whose composition varies amongst species; in rice it probably exists in a homo-tetramer to homo-hexamer form and in Gram negative bacteria as a dimer. Functions in the hydrolysis of alpha-(1,6)-D-glucosidic branch linkages. Isoamylases in plants are intracellular and probably chloroplast localized. 86282 0 0 65749 9 plasma membrane proton-transporting ATP synthase, catalytic core The hexamer that possesses the catalytic activity of the plasma membrane hydrogen-transporting ATP synthase. Examples of this component are found in Bacterial species. 86283 0 0 65750 9 plastid acetyl-CoA carboxylase complex An acetyl-CoA carboxylase complex located in the stroma of a plastid. 86284 0 0 65751 9 granulocyte macrophage colony-stimulating factor receptor complex The heterodimeric receptor for granulocyte macrophage colony-stimulating factor. 86285 0 0 65752 9 MSL complex A histone acetyltransferase complex that catalyzes the acetylation of a histone H4 lysine residue at position 16. In human, it contains the catalytic subunit MOF, and MSL1, MSL2 and MSL3. 86286 0 0 65753 9 Golgi cisterna membrane The lipid bilayer surrounding any of the thin, flattened compartments that form the central portion of the Golgi complex. 86289 0 0 65754 9 transcription factor complex A protein complex, distinct from RNA polymerase, that associates with DNA at promoters or at cis-acting regulatory sequences, by direct binding or by interaction with other DNA-binding polypeptides or complexes, and regulates transcription. 86290 0 0 65755 9 box C + D snoRNP protein (obsolete GO:0005734) OBSOLETE (was not defined before being made obsolete). 86291 1 0 65756 9 intraflagellar transport particle A The smaller subcomplex of the intraflagellar transport particle; characterized complexes have molecular weights of 710-760 kDa. 86292 0 0 65757 9 heterotetrameric ADPG pyrophosphorylase complex A protein complex composed of four different subunits that possesses ADPG pyrophosphorylase activity. An example of this process is found in Mus musculus. 86293 0 0 65758 9 secretory granule membrane The lipid bilayer surrounding a secretory granule. 86294 0 0 65789 9 axolemma The portion of the plasma membrane surrounding an axon; it is a specialized trilaminar random mosaic of protein molecules floating within a fluid matrix of highly mobile phospholipid molecules, 7-8 nm in thickness. 86351 0 0 65759 9 PTW/PP1 phosphatase complex A protein serine/threonine phosphatase complex that contains a catalytic subunits (PPP1CA, PPP1CB or PPP1CC) and the regulatory subunits PPP1R10 (PNUTS), TOX4 and WDR82, and plays a role in the control of chromatin structure and cell cycle progression during the transition from mitosis into interphase. 86295 0 0 65760 9 axon hillock Portion of the neuronal cell soma from which the axon originates. 86297 0 0 65761 9 P2 peroxisome A subform of peroxisome that corresponds to an intermediate in a peroxisome assembly pathway, which operates by conversion of peroxisomal subforms in the direction P1, P2 -> P3 -> P4 -> P5 -> P6. P2 peroxisomes are distinguished from the other subforms on the bases of buoyant density and protein content; they are the least dense of the subforms observed. 86298 0 0 65762 9 type III protein secretion system complex A complex of approximately 20 proteins, most of which are located in the cytoplasmic membrane that carries out protein secretion in the bacterial type III secretion system; type III secretion also requires a cytoplasmic, probably membrane-associated ATPase. 86300 0 0 65763 9 synaptobrevin 2-SNAP-25-syntaxin-1a complex A SNARE complex that contains synaptobrevin 2 (VAMP2), SNAP-25, and syntaxin 1a (or orthologs thereof). 86302 0 0 65764 9 light-harvesting complex A protein-pigment complex that may be closely or peripherally associated to photosynthetic reaction centers that participate in harvesting and transferring radiant energy to the reaction center. 86304 0 0 65765 9 IgG immunoglobulin complex, circulating A protein complex composed of two identical immunoglobulin heavy chains of an IgG isotype and two identical immunoglobulin light chains, held together by disulfide bonds, and present in the extracellular space, in mucosal areas or other tissues, or circulating in the blood or lymph. 86305 0 0 65766 9 intrinsic to contractile vacuolar membrane Located in the contractile vacuolar membrane such that some covalently attached portion of the gene product, for example part of a peptide sequence or some other covalently attached group such as a GPI anchor, spans or is embedded in one or both leaflets of the membrane. 86306 0 0 65767 9 DNA ligase IV complex A eukaryotically conserved protein complex that contains DNA ligase IV and is involved in DNA repair by non-homologous end joining; in addition to the ligase, the complex also contains XRCC4 or a homolog, e.g. Saccharomyces Lif1p. 86307 0 0 65880 9 chromosome segregation-directing complex A trimeric protein complex which in E. coli is composed of the subunits MreB, MreC and MreD. The complex directs longitudinal cell wall synthesis, maintaining cell morphology. 86508 0 0 65768 9 transcription factor TFIIIC1 complex A transcription factor complex that forms part of the TFIIIC complex, observed in human. The complex is poorly characterized, but contains the 250-kDa form of HsBdp1, and is thought to include nuclear factor 1 (NF1). It stimulates binding by human TFIIIC2 and is required for transcription activity. 86309 0 0 65769 9 cellular birth scar Crater-like ring of chitinous scar tissue located on the surface of the daughter cell, in budding fungi, at the site of separation from the mother cell. It is formed after the newly emerged daughter cell separates, thereby marking the site of cytokinesis and septation. 86311 0 0 65770 9 Elg1 RFC-like complex A pentameric complex related to replication factor C, which loads the DNA polymerase processivity factor proliferating cell nuclear antigen (PCNA) onto DNA and has roles in telomere length regulation and other aspects of genome stability. In Saccharomyces the subunits are known as Elg1p, Rfc2p, Rfc3p, Rfc4p, and Rfc5p. 86314 0 0 65771 9 extracellular vesicular exosome A membrane-bounded vesicle that is released into the extracellular region by fusion of the limiting endosomal membrane of a multivesicular body with the plasma membrane. 86316 0 0 65772 9 fibrillar collagen Any collagen polymer in which collagen triple helices associate to form fibrils. 86319 0 0 65773 9 myosin phosphatase complex An enzyme complex that catalyzes the removal of the phosphate group from phosphomyosin. 86320 0 0 65774 9 VRK3/VHR/ERK complex A ternary complex consisting of VRK3, VHR (Dusp3), and ERK1 (Mapk3) existing in neuronal cells, and is involved in regulation of the ERK signaling pathway. 86321 0 0 65831 9 alphaL-beta2 integrin complex An integrin complex that comprises one alphaL subunit and one beta2 subunit. 86427 0 0 76509 53 Harvest Event \N 209406 0 0 65775 9 annular furrow extracellular matrix The extracellular matrix part that is a regularly spaced indentation in the outer cortical layer of the cuticle. The pattern of annular furrows corresponds to sites of invaginations in hypodermal cell membranes that, in turn, correspond to submembranous regions where actin microfilament bundles assemble early in lethargus, the first phase of the molting cycle in which activity and feeding decline. 86323 0 0 65776 9 alphaD-beta2 integrin complex An integrin complex that comprises one alphaD subunit and one beta2 subunit. 86324 0 0 65777 9 cytosolic small ribosomal subunit The small subunit of a ribosome located in the cytosol. 86325 0 0 65778 9 host cell plasmodesma A fine cytoplasmic channel, found in all higher plants, that connects the cytoplasm of one host cell to that of an adjacent host cell. 86330 0 0 65779 9 cytosolic alpha-ketoglutarate dehydrogenase complex Cytosolic complex that possesses alpha-ketoglutarate dehydrogenase activity. 86331 0 0 65780 9 leucoplast A colorless plastid involved in the synthesis of monoterpenes. 86332 0 0 65781 9 luminal surveillance complex A multiprotein complex that recognizes ERAD-luminal misfolded substrates and brings them to the ubiquitination/extraction machinery. In yeast, this complex consists of Yos9p, Kar2p and Hrd3p proteins. 86334 0 0 65782 9 early phagosome A membrane-bounded intracellular vesicle as initially formed upon the ingestion of particulate material by phagocytosis. 86336 0 0 65783 9 alphaIIb-beta3 integrin-CD9-CD47-platelet glycoprotein Ib complex A protein complex that consists of an alphaIIb-beta3 integrin complex bound to the cell surface proteins CD9 and CD47, and the heterodimeric platelet glycoprotein Ib. 86338 0 0 65784 9 stereocilium membrane The portion of the plasma membrane surrounding a stereocilium. 86340 0 0 65785 9 minus-end kinesin complex Any complex that includes a dimer of molecules from the kinesin superfamily and any associated proteins, and moves towards the minus end of a microtubule. 86341 0 0 65786 9 TAP complex A heterodimer composed of the subunits TAP1 and TAP2 (transporter associated with antigen presentation). Functions in the transport of antigenic peptides from the cytosol to the lumen of the endoplasmic reticulum. 86342 0 0 65787 9 beta-galactosidase complex A protein complex that possesses beta-galactosidase activity, i.e. catalyzes the hydrolysis of terminal non-reducing beta-D-galactose residues in beta-D-galactosides. In E. coli, the complex is a homotetramer; dimeric and hexameric beta-galactosidase complexes have been observed in other species. 86345 0 0 65791 9 nucleolus organizer region A region of a chromosome where nucleoli form during interphase, and where genes encoding the largest rRNA precursor transcript are tandemly arrayed. 86354 0 0 65792 9 cytoskeletal calyx A large cytoskeletal structure located at the posterior end of the perinuclear theca of a mammalian sperm head. The nucleus is tightly associated with the calyx, which contains calicin and basic cylicin proteins. 86356 0 0 65793 9 starch grain Plant storage body for amylose and amylopectin, 1-100um in diameter. Also contains small amounts of enzymes, amino acids, lipids and nucleic acids. The shape of the grain varies widely amongst species, but is often spherical or disk-shaped. 86359 0 0 65794 9 NuRD complex An approximately 2 MDa multi-subunit complex that exhibits ATP-dependent chromatin remodeling activity in addition to histone deacetylase (HDAC) activity, and has been shown to establish transcriptional repression of a number of target genes in vertebrates, invertebrates and fungi. Amongst its subunits, the NuRD complex contains histone deacetylases, histone binding proteins and Mi-2-like proteins. 86361 0 0 65795 9 cleavage furrow In animal cells, the first sign of cleavage, or cytokinesis, is the appearance of a shallow groove in the cell surface near the old metaphase plate. A contractile ring containing actin and myosin is located just inside the plasma membrane at the location of the furrow. Ring contraction is associated with centripetal growth of the membrane that deepens the cleavage furrow and divides the cytoplasm of the two daughter cells. While the term 'cleavage furrow' was initially associated with animal cells, such a structure occurs in many other types of cells, including unicellular protists. 86365 0 0 65796 9 gamma-tubulin large complex, equatorial microtubule organizing center A complex of gamma tubulin and associated proteins thought to be formed by multimerization of gamma-tubulin small complexes located at equatorial microtubule organizing centers. 86367 0 0 65797 9 microneme A small, elongated secretory organelle that forms part of the apical complex, located along the main axis of an apicomplexan parasite cell within the extreme apical region and at the periphery under the inner membrane complex. Of the specialized secretory compartments identified in apicomplexans, micronemes discharge their contents first, during initial contact of the parasite's apical pole with the host cell surface. Micronemal proteins function during parasite attachment and penetration into the target cell. 86368 0 0 65824 9 stress fiber A contractile actin filament bundle that consists of short actin filaments with alternating polarity, cross-linked by alpha-actinin and possibly other actin bundling proteins, and with myosin present in a periodic distribution along the fiber. 86417 0 0 65825 9 chloroplast ribosome A ribosome contained within a chloroplast. 86418 0 0 65798 9 actin filament A filamentous structure formed of a two-stranded helical polymer of the protein actin and associated proteins. Actin filaments are a major component of the contractile apparatus of skeletal muscle and the microfilaments of the cytoskeleton of eukaryotic cells. The filaments, comprising polymerized globular actin molecules, appear as flexible structures with a diameter of 5-9 nm. They are organized into a variety of linear bundles, two-dimensional networks, and three dimensional gels. In the cytoskeleton they are most highly concentrated in the cortex of the cell just beneath the plasma membrane. 86371 0 0 65799 9 cytoplasmic nucleosome A complex comprised of DNA wound around a multisubunit core and associated proteins, which forms the primary packing unit of DNA in the cytoplasm into higher order structures. 86373 0 0 65832 9 alpha2-beta1 integrin-CD47 complex A protein complex that consists of an alpha2-beta1 integrin complex bound to the cell surface protein CD47. 86428 0 0 65833 9 EGO complex A vacuolar membrane-associated protein complex that is required for activation of microautophagy during exit from rapamycin-induced growth arrest. In budding yeast, S. cerevisiae, this complex includes Meh1p, Gtr2p and Slm4p. 86430 0 0 65834 9 NatA complex A conserved complex that catalyzes the transfer of an acetyl group to an N-terminal Ser, Ala, Gly, or Thr residue of a protein acceptor molecule. In Saccharomyces the complex includes Nat1p and Ard1p, and may contain additional proteins. 86432 0 0 65800 9 DNA-directed RNA polymerase V complex RNA polymerase V is a multisubunit RNA polymerase complex found in the nucleus of plants and involved in accumulation of siRNAs and in DNA methylation-dependent silencing of endogenous repeated sequences. Pol V is composed of subunits that are paralogous or identical to the 12 subunits of Pol II. Two large subunits comprise the most conserved portion including the catalytic site and share similarity with other eukaryotic and bacterial multisubunit RNA polymerases. The second largest subunit is also found in RNA polymerase IVa, while the largest subunit is found only in the IVa complex and contains an extended C-terminal domain (CTD) that includes multiple repeats of a 16 amino-acid consensus sequence as well as other sequences. The remainder of the complex is composed of smaller subunits. 86374 0 0 65801 9 P6 peroxisome A subform of peroxisome that corresponds to an intermediate in a peroxisome assembly pathway, which operates by conversion of peroxisomal subforms in the direction P1, P2 -> P3 -> P4 -> P5 -> P6. P6 peroxisomes are distinguished from the other subforms on the bases of buoyant density and protein content, and are equivalent to mature peroxisomes. 86377 0 0 65802 9 cytosolic proteasome regulatory particle A multisubunit complex located in the cytosol of a cell, which caps one or both ends of the proteasome core complex. This complex recognizes, unfolds ubiquitinated proteins and translocates them to the proteasome core complex. 86378 0 0 65803 9 gamma-secretase complex A protein complex that has aspartic-type endopeptidase activity, and contains a catalytic subunit, presenilin (PS), that is a prototypical member of the GxGD-type aspartyl peptidases. The complex also contains additional subunits, including nicastrin, APH-1, PEN-2, and a regulatory subunit, CD147. Gamma-secretase cleaves several transmembrane proteins including the cell surface receptor Notch and the beta-amyloid precursor protein. 86379 0 0 65804 9 extraorganismal space The environmental space outside of an organism; this may be a host organism in the case of parasitic and symbiotic organisms. 86383 0 0 65805 9 eukaryotic 48S preinitiation complex A protein complex composed of the small ribosomal subunit, eIF3, eIF1A, methionyl-initiatior methionine and a capped mRNA. The complex is initially positioned at the 5'-end of the capped mRNA. 86384 0 0 65806 9 mucocyst A small subcellular vesicle, surrounded by a membrane, in the pellicle of ciliate protozoans that discharges a mucus-like secretion. 86387 0 0 65807 9 W chromosome The sex chromosome present in females of species in which the female is the heterogametic sex; generally, the sex chromosome that pairs with the Z chromosome in the heterogametic sex. The W chromosome is absent from the cells of males and present in one copy in the somatic cells of females. 86391 0 0 65808 9 axoneme The bundle of microtubules and associated proteins that forms the core of cilia and flagella in eukaryotic cells and is responsible for their movements. 86392 0 0 65809 9 6-phosphofructokinase complex A protein complex that possesses 6-phosphofructokinase activity; homodimeric, homooctameric, and allosteric homotetrameric forms are known. 86393 0 0 65810 9 DNA polymerase V complex A DNA polymerase complex that contains two UmuD' and one UmuC subunits, and acts in translesion DNA synthesis. 86394 0 0 65811 9 secondary cell septum Cell wall structures composed of linear polysaccharides which are deposited at both sides of the primary septum at 90 degrees to the primary septum. 86397 0 0 65812 9 sarcolemma The outer membrane of a muscle cell, consisting of the plasma membrane, a covering basement membrane (about 100 nm thick and sometimes common to more than one fiber), and the associated loose network of collagen fibers. 86398 0 0 65813 9 PRC1 complex An insect multiprotein complex containing the products of many of the Polycomb Group genes including Polycomb, Posterior sex combs, polyhomeotic and Sex comb on midleg. The Polycomb Group proteins are required for stable long-term maintenance of transcriptionally repressed states and the PRC1 complex directly antagonizes ATP-dependent remodeling of nucleosomal arrays. 86399 0 0 65814 9 Kv4.2-KChIP1 channel complex A voltage-gated potassium channel complex that contains the Kv channel interacting protein KChIP1 associated with the channel via interaction with the Kv alpha subunit 4.2. 86401 0 0 65815 9 proteinoplast A leucoplast in which protein is stored. 86403 0 0 65816 9 spindle microtubule Any microtubule that is part of a mitotic or meiotic spindle; anchored at one spindle pole. 86404 0 0 65817 9 respiratory chain complex II A part of the respiratory chain, containing the four polypeptide subunits of succinate dehydrogenase, flavin-adenine dinucleotide and iron-sulfur. Catalyzes the oxidation of succinate by ubiquinone. Connects the TCA cycle with the respiratory chain. 86405 0 0 65818 9 alpha7-beta1 integrin-laminin alpha-2 complex A protein complex that consists of an alpha7-beta1 integrin complex bound to laminin alpha-2. 86406 0 0 65819 9 microtubule cytoskeleton The part of the cytoskeleton (the internal framework of a cell) composed of microtubules and associated proteins. 86408 0 0 65820 9 cellular bud tip polarisome Protein complex that has a role in determining cell polarity, found at the tip of a growing fungal bud. 86409 0 0 65821 9 BID-BCL-2 complex A heterodimeric protein complex consisting of BID and BCL-2, members of the Bcl-2 family of anti- and proapoptotic regulators. 86411 0 0 65822 9 external side of plasma membrane The side of the plasma membrane that is opposite to the side that faces the cytoplasm. 86413 0 0 65823 9 hydrogenosome A spherical, membrane-bounded organelle found in some anaerobic protozoa, which participates in ATP and molecular hydrogen formation. 86414 0 0 66141 9 U4atac snRNP A ribonucleoprotein complex that contains small nuclear RNA U4atac. 86945 0 0 76462 38 project location project location 209359 0 0 65826 9 membrane part Any constituent part of a membrane, a double layer of lipid molecules that encloses all cells, and, in eukaryotes, many organelles; may be a single or double lipid bilayer; also includes associated proteins. 86419 0 0 65827 9 intrinsic to internal side of plasma membrane Located in the plasma membrane such that some covalently attached portion of the gene product, for example part of a peptide sequence or some other covalently attached group such as a GPI anchor, spans or is embedded in one or both leaflets of the membrane, with the bulk of the gene product located on the side that faces the cytoplasm. 86420 0 0 65828 9 mitochondrial chromosome A chromosome found in the mitochondrion of a eukaryotic cell. 86421 0 0 65862 9 plant-type vacuole A closed structure that is completely surrounded by a unit membrane, contains liquid, and retains the same shape regardless of cell cycle phase. An example of this structure is found in Arabidopsis thaliana. 86476 0 0 65835 9 photosystem II antenna complex The antenna complex of photosystem II. A photosystem has two closely linked components, an antenna containing light-absorbing pigments and a reaction center. Each antenna contains one or more light-harvesting complexes (LHCs). 86434 0 0 65836 9 cilium axoneme The bundle of microtubules and associated proteins that forms the core of cilia in eukaryotic cells and is responsible for their movements. 86435 0 0 65837 9 coated vesicle Small membrane-bounded organelle formed by pinching off of a coated region of membrane. Some coats are made of clathrin, whereas others are made from other proteins. 86436 0 0 65838 9 signalosome A protein complex that catalyzes the deneddylation of proteins, including the cullin component of SCF ubiquitin E3 ligase; deneddylation increases the activity of cullin family ubiquitin ligases. The signalosome is involved in many regulatory process, including some which control development, in many species; also regulates photomorphogenesis in plants; in many species its subunits are highly similar to those of the proteasome. 86438 0 0 65839 9 Rhp55-Rhp57 complex A conserved heterodimeric DNA recombinase mediator complex that contains the RecA family proteins Rhp55p and Rph57 in Schizosaccharomyces, or orthologs thereof (e.g. Rad55p and Rad57p in Saccharomyces). 86442 0 0 65840 9 cyclin D3-CDK4 complex A protein complex consisting of cyclin D3 and cyclin-dependent kinase 4 (CDK4). Cyclins are characterized by periodicity in protein abundance throughout the cell cycle. Cyclin-dependent kinases represent a family of serine/threonine protein kinases that become active upon binding to a cyclin regulatory partner. 86443 0 0 65841 9 spindle pole body The microtubule organizing center in fungi; functionally homologous to the animal cell centrosome. 86445 0 0 65929 9 actin cytoskeleton The part of the cytoskeleton (the internal framework of a cell) composed of actin and associated proteins. Includes actin cytoskeleton-associated complexes. 86594 0 0 65842 9 ascospore-type prospore An immature spore undergoing development. The spore usually consists of nucleic acid, prospore membrane(s) that encase the nucleic acid, and ultimately a cell wall that covers the membrane(s). This type of spore is observed in ascopore-forming fungi. 86446 0 0 65843 9 chromocenter A region in which centric, heterochromatic portions of one or more chromosomes form a compact structure. 86447 0 0 65844 9 chlamydospore septin filament array Arrays of septin filaments, or bars, found in a series of filamentous structures. Observed in the chlamydospore membrane during chlamydospore formation. 86451 0 0 65845 9 endobrevin-SNAP-25-syntaxin-2 complex A SNARE complex that contains endobrevin (VAMP8), SNAP-25, and syntaxin 2 (or orthologs thereof). 86453 0 0 65846 9 PCNA complex A protein complex composed of three identical PCNA monomers, each comprising two similar domains, which are joined in a head-to-tail arrangement to form a homotrimer. Forms a ring-like structure in solution, with a central hole sufficiently large to accommodate the double helix of DNA. Originally characterized as a DNA sliding clamp for replicative DNA polymerases and as an essential component of the replisome, and has also been shown to be involved in other processes including Okazaki fragment processing, DNA repair, translesion DNA synthesis, DNA methylation, chromatin remodeling and cell cycle regulation. 86454 0 0 65847 9 contractile fiber Fibers, composed of actin, myosin, and associated proteins, found in cells of smooth or striated muscle. 86456 0 0 65848 9 chromoplast outer membrane The outer, i.e. cytoplasm-facing, lipid bilayer of the chromoplast envelope. 86457 0 0 65849 9 transforming growth factor beta1-type II receptor-type I receptor complex A protein complex that is formed by the association of a ligand-bound TGF-beta type II receptor dimer with a TGF-beta type I receptor dimer. 86458 0 0 65850 9 extrachromosomal DNA DNA structures that are not part of a chromosome. 86459 0 0 65851 9 MMXD complex A protein complex that contains the proteins MMS19, MIP18 and XPD, localizes to mitotic spindle during mitosis, and is required for proper chromosome segregation. 86460 0 0 65852 9 U4/U6 snRNP A ribonucleoprotein complex that contains base-paired U4 and U6 small nuclear RNAs. 86462 0 0 65881 9 ribulose bisphosphate carboxylase complex A complex containing either both large and small subunits or just small subunits which carries out the activity of producing 3-phosphoglycerate from carbon dioxide and ribulose-1,5-bisphosphate. 86510 0 0 66111 9 5-lipoxygenase complex An nuclear membrane protein complex having arachidonate 5-lipoxygenase activity. 86900 0 0 65853 9 proton-transporting V-type ATPase complex A proton-transporting two-sector ATPase complex that couples ATP hydrolysis to the transport of protons across a concentration gradient. The resulting transmembrane electrochemical potential of H+ is used to drive a variety of (i) secondary active transport systems via H+-dependent symporters and antiporters and (ii) channel-mediated transport systems. The complex comprises a membrane sector (V0) that carries out proton transport and a cytoplasmic compartment sector (V1) that catalyzes ATP hydrolysis. V-type ATPases are found in the membranes of organelles such as vacuoles, endosomes, and lysosomes, and in the plasma membrane. 86464 0 0 65854 9 RNA polymerase I transcription factor complex A transcription factor complex that acts at promoters of genes transcribed by RNA polymerase I. 86466 0 0 65855 9 microneme membrane The lipid bilayer surrounding a microneme. 86467 0 0 65856 9 chloroplast nucleoid The region of a chloroplast to which the DNA is confined. 86468 0 0 65857 9 virion membrane The lipid bilayer surrounding a virion. 86469 0 0 65858 9 neurofilament A type of intermediate filament found in the core of neuronal axons. Neurofilaments are heteropolymers composed of three type IV polypeptides: NF-L, NF-M, and NF-H (for low, middle, and high molecular weight). Neurofilaments are responsible for the radial growth of an axon and determine axonal diameter. 86471 0 0 65859 9 antipodal cell nucleus The nucleus of an antipodal cell, one of three cells of the embryo sac in angiosperms, found at the chalazal end of the embryo away from the point of entry of the pollen tube, and its descendents. 86472 0 0 65860 9 NOXA-BCL-2 complex A heterodimeric protein complex consisting of NOXA and BCL-2, members of the Bcl-2 family of anti- and proapoptotic regulators. 86474 0 0 65861 9 U2-type precatalytic spliceosome A spliceosomal complex that is formed by the recruitment of the preassembled U4/U6.U5 tri-snRNP to the prespliceosome. Although all 5 snRNPs are present, the precatalytic spliceosome is catalytically inactive. The precatalytic spliceosome includes many proteins in addition to those found in the U1, U2 and U4/U6.U5 snRNPs. 86475 0 0 76510 53 Meeting Event \N 209407 0 0 65863 9 nexin complex A protein complex found in the axoneme of eukaryotic cilia and flagella. It forms interconnections between the microtubule outer doublets that surround the inner central pair of microtubules. 86478 0 0 65864 9 sexine The outer, sculptured layer of the exine, which lies above the nexine. 86479 0 0 65865 9 nucleoplasmic THO complex The THO complex when it is acting as a nuclear complex that is required for transcription elongation through genes containing tandemly repeated DNA sequences. In S. cerevisiae, it is composed of four subunits: Hpr1, Tho2, Thp1, and Mft1, while the human complex is composed of 7 subunits. 86481 0 0 65866 9 MAML3-RBP-Jkappa-ICN2 complex A protein complex that consists of the intracellular domain of Notch2 (ICN2), the DNA-binding transcription factor RBP-Jkappa, and the transcriptional coactivator Mastermind-like-3 (MAML3); the complex is involved in transcriptional activation in response to Notch-mediated signaling. 86485 0 0 65867 9 organellar chromatophore inner membrane The inner, i.e. lumen-facing, of the two lipid bilayers surrounding an organellar chromatophore. 86487 0 0 65868 9 plasma membrane respiratory chain complex III A part of the respiratory chain located in the plasma membrane, containing about 10 polypeptide subunits including four redox centers: cytochrome b/b6, cytochrome c1 and an 2Fe-2S cluster. Catalyzes the oxidation of ubiquinol by oxidized cytochrome c1. Examples of this component are found in Bacterial species. 86488 0 0 65869 9 IgD B cell receptor complex An IgD immunoglobulin complex that is present in the plasma membrane of B cells and is composed of two identical immunoglobulin heavy chains of the IgD isotype and two identical immunoglobulin light chains and a signaling subunit, a heterodimer of the Ig-alpha and Ig-beta proteins. 86490 0 0 65930 9 other organism membrane A membrane of a secondary organism with which the first organism is interacting. 86595 0 0 65870 9 flagellar fibrous sheath A cytoskeletal structure surrounding the axoneme and outer dense fibers of the sperm flagellum. Consists of two longitudinal columns connected by closely arrayed semicircular ribs that assemble from distal to proximal throughout spermiogenesis. The fibrous sheath probably influences the degree of flexibility, plane of flagellar motion, and the shape of the flagellar beat. 86492 0 0 65871 9 cytolytic granule A specialized secretory lysosome that is present in cells with cytolytic capability such as cytotoxic T lymphocytes and natural killer cells. Cytolytic granules mediate the storage and regulated excretion of lytic molecules for killing of target cells. 86495 0 0 65872 9 CBM complex A protein complex comprising Carma1, Bcl10 and MALT1; plays a role in signal transduction during NF-kappaB activation. 86498 0 0 65873 9 old growing cell tip A cell tip which has existed for at least one complete cell cycle, and at which polarized growth occurs. For example, in fission yeast the cell end that existed prior to cell division grows immediately after division, and contains a distinctive complement of proteins including actin cytoskeletal structures. 86500 0 0 65874 9 palmitoyltransferase complex A protein complex with palmitoyltransferase activity. 86502 0 0 65875 9 membrane fraction That fraction of cells, prepared by disruptive biochemical methods, that includes the plasma and other membranes. 86503 0 0 65876 9 host cell plastid Any member of a family of organelles as found in the cytoplasm of host cells, which are membrane-bounded and contain DNA. The host is defined as the larger of the organisms involved in a symbiotic interaction. 86504 0 0 65877 9 cilium part Any constituent part of a cilium, a specialized eukaryotic organelle that consists of a filiform extrusion of the cell surface. Each cilium is bounded by an extrusion of the cytoplasmic membrane, and contains a regular longitudinal array of microtubules, anchored basally in a centriole. 86505 0 0 65878 9 mitochondrial isocitrate dehydrogenase complex (NAD+) Mitochondrial complex that possesses isocitrate dehydrogenase (NAD+) activity. 86506 0 0 65879 9 bipartite viral genome A segmented viral genome consisting of two sub-genomic nucleic acids but each nucleic acid is packaged into a different virion. 86507 0 0 70264 13 Zea stomium A stomium that is part of an anther wall (sensu Zea). 92524 0 0 65883 9 DNA replication factor C complex A complex of five polypeptides in eukaryotes, and two in prokaryotes, that loads the DNA polymerase processivity factor proliferating cell nuclear antigen (PCNA) onto DNA, thereby permitting processive DNA synthesis catalyzed by DNA polymerase. 86515 0 0 65884 9 magnesium-dependent protein serine/threonine phosphatase complex An enzyme complex that catalyzes the removal of serine- or threonine-bound phosphate groups from a wide range of phosphoproteins, including a number of enzymes that have been phosphorylated under the action of a kinase. 86518 0 0 65885 9 chromoplast stroma The space enclosed by the double membrane of a chromoplast but excluding the photosynthetic material. 86519 0 0 65886 9 polymeric IgA immunoglobulin complex A protein complex composed of two, three, or four monomeric IgA immunoglobulin complexes linked through both direct disulfide bonds and through disulfide binded monomers of J chain acting as a bridge. Each IgA monomer consists of two identical immunoglobulin heavy chains of an IgA isotype and two identical immunoglobulin light chains, held together by disulfide bonds. Dimeric IgA is sometimes complexed additionally with secretory component, and present in the extracellular space, in mucosal areas or other tissues, or circulating in the blood or lymph. 86520 0 0 65887 9 polytene chromosome band A stretch of densely packed chromatin along the polytene chromosome, visible as a morphologically distinct band. 86522 0 0 65888 9 vacuolar proton-transporting V-type ATPase complex A proton-transporting two-sector ATPase complex found in the vacuolar membrane, where it acts as a proton pump to mediate acidification of the vacuolar lumen. 86523 0 0 65889 9 viral glycoprotein (obsolete GO:0019032) OBSOLETE (was not defined before being made obsolete). 86524 1 0 65890 9 growth cone The migrating motile tip of a growing nerve cell axon or dendrite. 86525 0 0 65891 9 secondary lysosome Vacuole formed by the fusion of a lysosome with an organelle (autosome) or with a primary phagosome. 86526 0 0 65892 9 RNA viral genome A viral genome composed of ribonucleic acid. This results in genome replication and expression of genetic information being inextricably linked. 86527 0 0 65893 9 alpha4-beta1 integrin-CD53 complex A protein complex that consists of an alpha4-beta1 integrin complex bound to membrane protein CD53, a member of the tetraspan family. 86528 0 0 65921 9 cytoproct Stable, specialized structure for extrusion of waste by the cell into the surrounding medium. 86576 0 0 76511 53 Phenotyping Event \N 209408 0 0 65894 9 insulin-like growth factor ternary complex A complex of three proteins, which in animals is approximately 150kDa and consists of the insulin-like growth factor (IGF), the insulin-like growth factor binding protein-3 (IGFBP-3), or -5 (IGFBP-5) and an acid-labile subunit (ALS). The complex plays a role in growth and development. 86530 0 0 65895 9 dendriole Small dendrites that makes up a brush structure found as the terminal specialization of a dendrite of a unipolar brush cell (UBC). 86532 0 0 65896 9 ascus lipid particle Any particle of coalesced lipids in an ascus or ascospore. May include associated proteins. 86535 0 0 65897 9 horsetail-astral microtubule array An array of astral microtubules that emanates from the spindle pole body during meiosis and facilitates horsetail nuclear movement. 86537 0 0 65898 9 Scrib-APC-beta-catenin complex A protein complex that contains the Scribble protein (a cell polarity determinant), the tumor suppressor protein adenomatous polyposis coli (APC), and beta-catenin; may be involved in the control of cell proliferation. 86538 0 0 65899 9 chloroplast stromal thylakoid Unstacked thylakoids that connect the grana stacks through the stroma. 86540 0 0 65993 9 ER ubiquitin ligase complex A ubiquitin ligase complex found in the ER. 86697 0 0 65900 9 DNA polymerase III complex A DNA polymerase complex that contains two complexes of the catalytic alpha, beta, delta and epsilon polymerase/exonuclease subunits, plus the DnaX complex, a heptamer that includes the tau and gamma products of the dnaX gene and confers structural asymmetry that allows the polymerase to replicate both leading and lagging strands. 86541 0 0 65901 9 kinesin complex Any complex that includes a dimer of molecules from the kinesin superfamily, a group of related proteins that contain an extended region of predicted alpha-helical coiled coil in the main chain that likely produces dimerization. The native complexes of several kinesin family members have also been shown to contain additional peptides, often designated light chains as all of the noncatalytic subunits that are currently known are smaller than the chain that contains the motor unit. Kinesin complexes generally possess a force-generating enzymatic activity, or motor, which converts the free energy of the gamma phosphate bond of ATP into mechanical work. 86544 0 0 65902 9 spindle pole centrosome A centrosome from which one pole of a mitotic or meiotic spindle is organized. 86547 0 0 65903 9 cytosolic large ribosomal subunit (obsolete GO:0000180) OBSOLETE (was not defined before being made obsolete). 86548 1 0 65904 9 nuclear RNA export factor complex A protein complex that contains two proteins (know in several organisms, including Drosophila, as NXF1 and NXF2) and is required for the export of the majority of mRNAs from the nucleus to the cytoplasm; localized in the nucleoplasm and at both the nucleoplasmic and cytoplasmic faces of the nuclear pore complex; shuttles between the nucleus and the cytoplasm. 86549 0 0 65905 9 large ribosomal subunit The larger of the two subunits of a ribosome. Two sites on the ribosomal large subunit are involved in translation, namely the aminoacyl site (A site) and peptidyl site (P site). 86551 0 0 65906 9 Lid2 complex A protein complex that is thought to be involved in regulation of chromatin remodeling. In Schizosaccharomyces the complex contains Lid1p, Ash2p, Ecm5p, Snt2p, and Sdc1p. 86552 0 0 65907 9 cell wall The rigid or semi-rigid envelope lying outside the cell membrane of plant, fungal, and most prokaryotic cells, maintaining their shape and protecting them from osmotic lysis. In plants it is made of cellulose and, often, lignin; in fungi it is composed largely of polysaccharides; in bacteria it is composed of peptidoglycan. 86554 0 0 69300 13 apical meristem A maximal portion of meristem tissue located at an apex of a shoot system or root system. 91447 0 0 65908 9 activin complex A nonsteroidal regulator, composed of two covalently linked inhibin beta subunits, inhibin beta-A and inhibin beta-B (sometimes known as activin beta or activin/inhibin beta). There are three forms of activin complex, activin A, which is composed of 2 inhibin beta-A subunits, activin B, which is composed of 2 inhibin beta-B subunits, and activin AB, which is composed of an inhibin beta-A and an inhibin beta-B subunit. 86555 0 0 65909 9 puncta adhaerentia A small version of the zonula adherens type junction, characterized by a symmetrical adherent point between two cells. 86556 0 0 65910 9 pre-snoRNP complex A ribonucleoprotein complex that contains a precursor small nucleolar RNA (pre-snoRNA) and associated proteins, and forms during small nucleolar ribonucleoprotein complex (snoRNP) assembly. Pre-snoRNP complexes may contain proteins not found in the corresponding mature snoRNP complexes. 86558 0 0 65911 9 pollen wall The complex wall surrounding a pollen grain. 86561 0 0 65912 9 ATP-binding cassette (ABC) transporter complex, integrated substrate binding A complex for the transport of metabolites out of the cell, consisting of 4 domains: two ATP-binding domains and two membrane spanning domains. In some cases, all 4 domains are contained on 1 polypeptide, while in others one ATP-binding domain and one membrane spanning domain are together on one polypeptide in what is called a "half transporter". Two "half-transporters" come together to form a functional transporter. Transport of the substrate across the membrane is driven by the hydrolysis of ATP. 86563 0 0 65913 9 prospore contractile ring A contractile ring, i.e. a cytoskeletal structure composed of actin filaments and myosin, that forms beneath the plasma membrane of the prospore envelope in meiotic cells in preparation for completing cytokinesis. 86564 0 0 65914 9 SMAD2 protein complex A protein complex that consists of a SMAD2 homotrimer. 86566 0 0 65915 9 rough microsome Vesicular particles formed from disrupted endoplasmic reticulum membranes and studded with ribosomes on the outside. 86568 0 0 65916 9 cyclin D2-CDK4 complex A protein complex consisting of cyclin D2 and cyclin-dependent kinase 4 (CDK4). Cyclins are characterized by periodicity in protein abundance throughout the cell cycle. Cyclin-dependent kinases represent a family of serine/threonine protein kinases that become active upon binding to a cyclin regulatory partner. 86569 0 0 65917 9 sculpture element The third layer of the sexine. 86570 0 0 65918 9 peribacteroid fluid The soluble material inside the peribacteroid membrane, but outside of the bacteroid, within a bacteroid-containing symbiosome. 86571 0 0 65919 9 exoneme A dense granule-like organelle of the apical complex of merozoites, released into the parasitophorous vacuole, mediating protease-dependent rupture and parasite exit from the infected erythrocyte. 86572 0 0 65920 9 SMAD2-SMAD3 protein complex A heteromeric SMAD protein complex that contains SMAD2 and SMAD3. 86575 0 0 66509 9 cytosolic proteasome complex A proteasome complex found in the cytosol of a cell. 87520 0 0 65922 9 glycosome A membrane-bounded organelle found in organisms from the order Kinetoplastida that houses the enzymes of glycolysis. 86577 0 0 65923 9 DNA-dependent protein kinase-DNA ligase 4 complex A large protein complex which is involved in the repair of DNA double-strand breaks and, in mammals, V(D)J recombination events. It consists of the DNA-dependent protein kinase catalytic subunit (DNA-PKcs), the DNA end-binding heterodimer Ku, the nuclear phosphoprotein XRCC4 or a homolog thereof, and DNA ligase IV. 86578 0 0 65924 9 clathrin adaptor (obsolete GO:0005906) OBSOLETE (was not defined before being made obsolete). 86583 1 0 65925 9 ribose phosphate diphosphokinase complex A protein complex having ribose phosphate diphosphokinase activity. 86584 0 0 65926 9 alphaV-beta3 integrin-paxillin-Pyk2 complex A protein complex that consists of an alphaV-beta3 integrin complex bound to paxillin and the FAK-related kinase Pyk2. 86587 0 0 65927 9 3-isopropylmalate dehydratase complex A heterodimeric enzyme complex composed of subunits leuC and leuD. Catalyzes the isomerization between 2-isopropylmalate and 3-isopropylmalate, via the formation of 2-isopropylmaleate. 86589 0 0 65931 9 alpha4-beta1 integrin-CD47 complex A protein complex that consists of an alpha4-beta1 integrin complex bound to the cell surface antigen CD47. 86596 0 0 65932 9 transcription elongation factor complex Any protein complex that interacts with RNA polymerase II to increase (positive transcription elongation factor) or reduce (negative transcription elongation factor) the rate of transcription elongation. 86598 0 0 65933 9 CURI complex A protein complex that is involved in the transcription of ribosomal genes. In Saccharomyces this complex consists of Ckb2p, Utp22p, Rrp7p andIfh1p. 86599 0 0 65934 9 aryl hydrocarbon receptor complex A protein complex that acts as an aryl hydrocarbon (Ah) receptor. Cytosolic and nuclear Ah receptor complexes have different subunit composition, but both contain the ligand-binding subunit AhR. 86601 0 0 65935 9 bacterial-type flagellum basal body, rod The central portion of the flagellar basal body, which spans the periplasm and threads through the rings. Examples of this component are found in Bacterial species. 86603 0 0 65936 9 striated muscle thin filament Filaments formed of actin and associated proteins; attached to Z discs at either end of sarcomeres in myofibrils. 86607 0 0 65937 9 myosin V complex A myosin complex containing a dimer of class V myosin heavy chains and associated light chains; involved in intracellular transport. Myosin V is a dimeric molecule consisting of conserved motor domains followed by 6 IQ motifs which bind specific light chains and calmodulin. The tail domain is important for cellular localization and cargo binding and can be divided into an alpha-helical coiled coil region and a C-terminal globular region. 86608 0 0 65938 9 chloroplast stroma The space enclosed by the double membrane of a chloroplast but excluding the thylakoid space. It contains DNA, ribosomes and some temporary products of photosynthesis. 86609 0 0 65939 9 collagen type XIV A collagen homotrimer of alpha1(XIV) chains; type XIV collagen triple helices may link sheet-forming or fibrillar collagens to other structures. 86610 0 0 65940 9 RAD52-ERCC4-ERCC1 complex A nucleotide-excision repair complex formed by the association of the heterodimeric endonuclease XPF/ERCC4-ERCC1 (Rad1p and Rad10p in S. cerevisiae) with the RAD52 protein. 86611 0 0 69301 13 embryo cortex A cortex that is part of an embryo. 91448 0 0 65968 9 glycosylphosphatidylinositol-N-acetylglucosaminyltransferase (GPI-GnT) complex An enzyme complex that catalyzes the transfer of GlcNAc from UDP-GlcNAc to an acceptor phosphatidylinositol, the first step in the production of GPI anchors for cell surface proteins. The complex contains PIG-A, PIG-C, PIG-H, PIG-Q, PIG-P, and DPM2 in human, and Eri1p, Gpi1p, Gpi2p, Gpi15p, Gpi19p, and Spt14p in budding yeast. 86658 0 0 77185 60 RELATED FORMULA \N 210088 0 0 65941 9 microprocessor complex A protein complex that binds to heme and to pri-miRNAs, and is required for the formation of a pre-microRNA (pre-miRNA), the initial step of microRNA (miRNA) biogenesis. The complex is composed of the double-stranded-RNA-specific RNase Drosha (also called RNASEN) and the RNA-binding protein DGCR8 (heme-free or heme-bound forms). Within the complex, DGCR8 function as a molecular anchor necessary for the recognition of pri-miRNA at dsRNA-ssRNA junction and directs RNASEN/Drosha to cleave the 3' and 5' strands of a stem-loop to release hairpin-shaped pre-miRNAs. 86612 0 0 65942 9 Golgi to plasma membrane transport vesicle A transport vesicle that mediates transport from the Golgi to the plasma membrane, and fuses with the plasma membrane to release various cargo molecules, such as proteins or hormones, by exocytosis. 86615 0 0 65943 9 cytoplasmic U snRNP body A ribonucleoprotein complex that can be visualized as a focus in the cytoplasm, and contains uridine-rich small nuclear ribonucleoproteins (U snRNPs) and essential snRNP assembly factors. These U bodies are invariably found in association with P bodies. 86616 0 0 65944 9 nucleolar preribosome Any complex of pre-rRNAs, ribosomal proteins, and associated proteins formed in the nucleolus during ribosome biogenesis. 86618 0 0 65945 9 Rb-E2F complex A multiprotein complex containing a heterodimeric E2F transcription factor and a Retinoblastoma (Rb) family member. This complex is capable of repressing transcription of E2F-regulated genes in order to regulate cell cycle progression. 86620 0 0 65946 9 MutSalpha complex A heterodimer involved in the recognition and repair of base-base and small insertion/deletion mismatches. In human the complex consists of two subunits, MSH2 and MSH6. 86622 0 0 65947 9 external encapsulating structure A structure that lies outside the plasma membrane and surrounds the entire cell. 86624 0 0 65948 9 carboxysome An organelle found in the Cyanobacteria consisting of a proteinaceous coat and enzymes for the fixation of carbon dioxide including mechanisms for the concentration of carbonate to increase the efficiency of fixation under low-carbon dioxide conditions. 86625 0 0 65949 9 MHC class Ib protein complex A transmembrane protein complex composed of a MHC class Ib alpha chain and, in most cases, an invariant beta2-microglobin chain, and with or without a bound peptide or lipid antigen. Class Ib here refers to non-classical class I molecules, such as those of the CD1 or HLA-E gene families. 86628 0 0 65950 9 plastid intermembrane space The region between the inner and outer lipid bilayers of the plastid envelope. 86629 0 0 65951 9 coated membrane A single or double lipid bilayer with any of several different proteinaceous coats that can associate with membranes. Membrane coats include those formed by clathrin plus an adaptor complex, the COPI and COPII complexes. 86630 0 0 76513 53 Presentation Event \N 209410 0 0 65952 9 caveola A membrane raft that forms small pit, depression, or invagination that communicates with the outside of a cell and extends inward, indenting the cytoplasm and the cell membrane. Examples include any of the minute pits or incuppings of the cell membrane formed during pinocytosis. Such caveolae may be pinched off to form free vesicles within the cytoplasm. 86631 0 0 65953 9 Grb2-EGFR complex A protein complex that contains the epidermal growth factor receptor (EGFR) and Grb2, and is involved in linking EGFR activation to the p21-Ras pathway. 86633 0 0 65954 9 SOD1-calcineurin complex A protein complex formed by the association of superoxide dismutase 1 (SOD1) with calcineurin; complex formation is implicated in activation of calcineurin by SOD1. 86635 0 0 65955 9 platelet alpha granule lumen The volume enclosed by the membrane of the platelet alpha granule. 86637 0 0 65956 9 laminin receptor protein (obsolete GO:0005613) OBSOLETE (was not defined before being made obsolete). 86639 1 0 65957 9 CRLF-CLCF1 complex A heterodimeric protein complex that is composed of cardiotrophin-like cytokine factor 1 (product of the CLCF1 gene) and cytokine receptor-like factor 1 (product of the CRLF gene) and is secreted into the extracellular space. The CRLF-CLCF1 complex is a ligand for the ciliary neurotrophic factor (CNTF) receptor complex. 86640 0 0 65958 9 intermediate layer of spindle pole body Structure between the central and outer plaques of the spindle pole body. 86642 0 0 65959 9 cell projection cytoplasm All of the contents of a cell projection, excluding the plasma membrane surrounding the projection. 86644 0 0 65960 9 alphaV-beta3 integrin-tumstatin complex A protein complex that consists of an alphaV-beta3 integrin complex bound to tumstatin, the NC1 domain of the alpha3 chain of type IV collagen. 86645 0 0 65961 9 interleukin-35 complex A protein complex that is composed of an interleukin-12 alpha subunit (p35, product of the IL12A gene) and an EBI3 subunit and is secreted into the extracellular space. 86647 0 0 65962 9 eukaryotic translation initiation factor 4 complex (obsolete GO:0008304) OBSOLETE (was not defined before being made obsolete). 86650 1 0 65963 9 vacuolar transporter chaperone complex A protein complex that contains four related proteins that have been implicated in several membrane-related processes, such as sorting of H+-translocating ATPases, endocytosis, ER-Golgi trafficking, vacuole fusion, vacuolar polyphosphate homeostasis and the microautophagic scission of vesicles into the vacuolar lumen. The complex is enriched at the vacuolar membrane, but also found in other cellular compartments, including the ER and the cell periphery. In Saccharomyces, the subunits are Vtc1p, Vtc2p, Vtc3p and Vtc4p. 86651 0 0 65964 9 nucleoplasm part Any constituent part of the nucleoplasm, that part of the nuclear content other than the chromosomes or the nucleolus. 86654 0 0 65965 9 proteasome regulatory particle, base subcomplex The subcomplex of the proteasome regulatory particle that directly associates with the proteasome core complex. 86655 0 0 65966 9 telomere (obsolete GO:0005696) OBSOLETE. A complex of DNA and protein that seals the end of a chromosome. The telomeric DNA consists of simple tandemly repeated sequences specific for each species. Typically one strand is G-rich and the other C-rich. The G-rich strand forms a 3'-terminal overhang, the length of which varies with species. The single strand overhang is bound by a variety of proteins, including telomere capping proteins that bind to the single-stranded DNA. 86656 1 0 65967 9 protein storage vacuole lumen The volume enclosed by the protein storage vacuole membrane. 86657 0 0 66028 9 mitochondrial type II fatty acid synthase complex (obsolete GO:0031377) OBSOLETE A fatty acid synthase complex in which each polypeptide chain catalyzes a single activity, located in the mitochondrion. 86754 1 0 65969 9 Sid2-Mob1 complex A protein complex that contains a protein kinase (Sid2 in S. pombe) and its regulatory subunit (Mob1). The Sid2p-Mob1p kinase complex is a component of the septation initiation network in fission yeast (called the mitotic exit network in S. cerevisiae) and is required for cytokinesis. The analogous complex in S. cerevisiae is called Dbf2p-Mob1p complex. 86661 0 0 65970 9 laminin-2 complex A laminin complex composed of alpha2, beta1 and gamma1 polypeptide chains. 86664 0 0 65971 9 synaptobrevin 2-SNAP-25-syntaxin-3-complexin complex A SNARE complex that contains synaptobrevin 2 (VAMP2), SNAP-25, syntaxin 3, and a complexin (or orthologs thereof). 86665 0 0 65972 9 transportin (obsolete GO:0005649) OBSOLETE (was not defined before being made obsolete). 86667 1 0 65973 9 nicotinic acetylcholine-gated receptor-channel complex A protein complex that acts as an acetylcholine receptor, and forms a transmembrane channel through which ions may pass in response to ligand binding. The complex is a homo- or heteropentamer of subunits that are members of a neurotransmitter receptor superfamily. 86668 0 0 65974 9 bacterial nucleoid The region of a bacterial cell to which the DNA is confined. 86671 0 0 65975 9 DNA polymerase III, DnaX complex A heptamer that includes the tau and gamma products of the dnaX gene and the chi/psi subcomplex. Confers structural asymmetry that allows the polymerase to replicate both leading and lagging strands. 86672 0 0 65976 9 glyoxysomal membrane The lipid bilayer surrounding a glyoxysome. 86673 0 0 65977 9 nuclear chromosome part Any constituent part of a nuclear chromosome, a chromosome found in the nucleus of a eukaryotic cell. 86674 0 0 65978 9 host cell endoplasmic reticulum-Golgi intermediate compartment membrane The lipid bilayer surrounding any of the compartments of the host cell ER-Golgi intermediate compartment system. 86675 0 0 65979 9 box H/ACA snoRNP complex A box H/ACA RNP complex that is located in the nucleolus. 86676 0 0 65980 9 stereocilium bundle tip The end of a stereocilium bundle, distal to the site of the bundle's attachment to the apical cell surface. 86679 0 0 65981 9 mitochondrial tRNA (obsolete GO:0005565) OBSOLETE (was not defined before being made obsolete). 86681 1 0 65982 9 BRCA1-BARD1 complex A heterodimeric complex comprising BRCA1 and BARD1, which possesses ubiquitin ligase activity and is involved in genome maintenance, possibly by functioning in surveillance for DNA damage. 86682 0 0 65983 9 spindle midzone The area in the center of the spindle where the spindle microtubules from opposite poles overlap. 86684 0 0 65984 9 plant cell papilla A cell projection that is a short, rounded projection from a plant epidermal cell. 86685 0 0 65985 9 plastid thylakoid Any thylakoid within a plastid. 86686 0 0 65986 9 cortical microtubule cytoskeleton The portion of the microtubule cytoskeleton that lies just beneath the plasma membrane. 86687 0 0 65987 9 cell wall-bounded periplasmic space The region between the plasma membrane and the cell wall, as found in organisms such as yeast and Gram positive bacteria. The region is thinner than the equivalent in Gram negative bacteria. 86688 0 0 65988 9 chloroplast ATP synthase complex The protein complex that catalyzes the phosphorylation of ADP to ATP in chloroplasts. 86689 0 0 65989 9 peroxisomal matrix The volume contained within the membranes of a peroxisome; in many cells the matrix contains a crystalloid core largely composed of urate oxidase. 86691 0 0 65990 9 melanosome A tissue-specific, membrane-bounded cytoplasmic organelle within which melanin pigments are synthesized and stored. Melanosomes are synthesized in melanocyte cells. 86693 0 0 65991 9 kinetochore microtubule Any of the spindle microtubules that attach to the kinetochores of chromosomes by their plus ends, and maneuver the chromosomes during mitotic or meiotic chromosome segregation. 86695 0 0 65992 9 alpha9-beta1 integrin complex An integrin complex that comprises one alpha9 subunit and one beta1 subunit. 86696 0 0 65995 9 ambisense viral genome A RNA genome that contains coding regions that are either positive sense or negative sense on the same RNA molecule. 86699 0 0 65996 9 plastoglobule A lipoprotein particle present in chloroplasts. They are rich in non-polar lipids (triglycerides, esters) as well as in prenylquinones, plastoquinone and tocopherols. Plastoglobules are often associated with thylakoid membranes, suggesting an exchange of lipids with thylakoids. 86700 0 0 65997 9 mating projection The projection formed by unicellular fungi in response to mating pheromone. 86703 0 0 65998 9 specific granule Granule with a membranous, tubular internal structure, found primarily in mature neutrophil cells. Most are released into the extracellular fluid. Specific granules contain lactoferrin, lysozyme, vitamin B12 binding protein and elastase. 86704 0 0 65999 9 radial spoke Protein complex that links the outer microtubule doublet of the ciliary or flagellum axoneme with the sheath that surrounds the central pair of microtubules. Composed of a stalk that attaches to each doublet microtubule and a globular structure (spoke head) that projects toward the central pair of microtubules. 86705 0 0 66000 9 septin complex Any of several heterooligomeric complexes containing multiple septins. 86707 0 0 66001 9 Holliday junction helicase complex A DNA helicase complex that forms part of a Holliday junction resolvase complex, where the helicase activity is involved in the migration of the junction branch point. The best-characterized example is the E. coli RuvAB complex, in which a hexamer of RuvB subunits possesses helicase activity that is modulated by association with RuvA. 86709 0 0 66002 9 THO complex part of transcription export complex The THO complex when it is part of the TREX (TRanscription EXport) complex that is involved in coupling transcription to export of mRNAs to the cytoplasm. In S. cerevisiae, it is composed of four subunits: Hpr1, Tho2, Thp1, and Mft1, while the human complex is composed of 7 subunits. 86711 0 0 66029 9 hyphal cell wall The cell wall surrounding a fungal hypha. 86756 0 0 66003 9 EGFR-Shc-Grb2-Sos complex A protein complex that contains the epidermal growth factor receptor (EGFR), Grb2, the adaptor protein SHC and the guanine nucleotide exchange factor Sos (or an ortholog thereof, such as mSos1), and is involved in linking EGFR activation to the p21-Ras pathway. 86712 0 0 69801 13 inflorescence meristem A meristem that gives rise to an inflorescence. 92005 0 0 66004 9 lysosomal proton-transporting V-type ATPase, V0 domain The V0 domain of a proton-transporting V-type ATPase found in the lysosomal membrane. 86714 0 0 66005 9 PSII associated light-harvesting complex II Protein-pigment complex associated with photosystem II. 86715 0 0 66006 9 cell-cell adherens junction An adherens junction which connects two cells to each other. 86716 0 0 66007 9 potassium ion-transporting ATPase complex Protein complex that carries out the reaction: ATP + H2O + K+(out) = ADP + phosphate + K+(in). It is a high affinity potassium uptake system. The E. coli complex consists of 4 proteins: KdpA is the potassium ion translocase, KdpB is the ATPase, and KdpC and KdpF seem to be involved in assembly and stabilization of the complex. 86717 0 0 66008 9 ER body A novel compartment found in plant cells that is derived from the ER. The structures have a characteristic shape and size (10 mm long and 0.5 mm wide) and are surrounded with ribosomes. They have been found in Arabidopsis thaliana and related Brassicaceae species. 86721 0 0 66009 9 cell pole Either of two different areas at opposite ends of an axis of a cell. 86723 0 0 66010 9 Type I site-specific deoxyribonuclease complex A multisubunit complex composed of two copies of a restriction (R) subunit, two copies of a methylation (M) subunit, and one copy of a specificity (S) subunit. This complex recognizes specific short DNA sequences (through the S subunit), and binds to them. If the recognition site is hemimethylated, the complex acts as a methyltransferase which modifies the recognition site, using S-adenosylmethionine as the methyl donor. Only the M and S subunits are required for this reaction. If the complex binds to an unmethylated recognition site, then the complex translocates the DNA bidirectionally in an ATP-dependent manner. When the translocation is stalled by impact with another complex or unusual DNA structure, the enzyme functions as an endonuclease and cleavage of the DNA will occur, hundreds or thousands of base pairs away from the recognition site. These DNA restriction systems are used by bacteria to defend against phage and other foreign DNA that may enter a cell. 86724 0 0 66011 9 histone locus body A nuclear body associated with the histone gene locus that is thought to contain all of the factors necessary for histone mRNA transcription and pre-mRNA processing. In Drosophila, U7 snRNP is located in the histone locus body rather than the distinct Cajal body. 86725 0 0 66012 9 connexon complex An assembly of six molecules of connexin, made in the Golgi apparatus and subsequently transported to the plasma membrane, where docking of two connexons on apposed plasma membranes across the extracellular space forms a gap junction. 86729 0 0 66013 9 quinolinate synthetase complex (obsolete GO:0019804) OBSOLETE. A heterodimer which acts as a quinolinate synthetase; quinolinate synthetase B (L-aspartate oxidase) catalyzes the oxidation of L-aspartate to L-iminoaspartate; quinolinate synthetase A condenses L-imidoaspartate and dihydroxyacetone to quinolinate. 86731 1 0 66014 9 photosystem II reaction center An integral membrane complex containing P680, the chlorophyll a molecule that functions as a primary electron donor. In the light, functioning as a water-plastoquinone oxidoreductase, it transfers electrons from water to plastoquinone. 86733 0 0 69407 13 pollen A microgametophyte that is located in a pollen sac. 91562 0 0 66015 9 plasmodesmatal desmotubule A tightly wound cylinder of membrane that is located within the plasmodesmal pore and runs the length of the plasmodesma. The desmotubule likely provides a rigid stability to plasmodesmata and confers a fixed diameter and pore size to the plasmodesmal canal, and is linked to the endoplasmic reticulum in each of the adjacent cell. 86734 0 0 66016 9 organellar chromatophore thylakoid membrane The lipid bilayer membrane of any thylakoid within an organellar chromatophore. 86737 0 0 66017 9 nuclear origin of replication recognition complex A multisubunit complex that is located at the replication origins of a chromosome in the nucleus. 86738 0 0 66018 9 clathrin sculpted monoamine transport vesicle membrane The lipid bilayer surrounding a clathrin sculpted monoamine transport vesicle. 86739 0 0 66019 9 ERMES complex A protein complex that links the endoplasmic reticulum with mitochondria and may have a role in promoting exchange of calcium and phospholipids between the two organelles. The complex is also associated with actively replicating mitochondrial DNA nucleoids, and may further coordinate mitochondrial genome replication and membrane growth. 86741 0 0 66020 9 alphaPDGFR-SHP-2 complex A protein complex that contains the platelet-derived growth factor alpha receptor (alphaPDGFR; PDGFRA) and the adaptor protein SHP-2, and is involved signaling via the PDGFR signaling pathway. 86743 0 0 66021 9 peroxisome A small, membrane-bounded organelle that uses dioxygen (O2) to oxidize organic molecules; contains some enzymes that produce and others that degrade hydrogen peroxide (H2O2). 86745 0 0 66022 9 extrinsic to stromal side of plastid thylakoid membrane Loosely bound to the surface of a plastid thylakoid membrane that faces the stroma but not integrated into the hydrophobic region. 86747 0 0 66023 9 IgX immunoglobulin complex A protein complex composed of two identical immunoglobulin heavy chains of the IgX isotype and two identical immunoglobulin light chains, held together by disulfide bonds. An IgX immunoglobulin complex may be embedded in the plasma membrane or present in the extracellular space, in mucosal areas or other tissues, or circulating in the blood or lymph. 86748 0 0 66024 9 alphaE-beta7 integrin-E-cadherin complex A protein complex that consists of an alphaE-beta7 integrin complex bound to E-cadherin. 86749 0 0 66025 9 prospore membrane The prospore membrane is a double-membraned structure that extends from the cytoplasmic face of the spindle pole bodies to encompass the spindle pole bodies and the four nuclear lobes that are formed during meiosis. It helps isolate the meiotic nuclei from the cytoplasm during spore formation and serves as a foundation for the formation of the spore walls. An example of this component is found in Schizosaccharomyces pombe. 86751 0 0 66026 9 pentameric IgM immunoglobulin complex A circulating form of IgM consisting of a pentamer of IgM core units with a single J chain polypeptide. 86752 0 0 66027 9 B800-850 antenna complex Protein-pigment complex that absorbs light at 800 and 850 nm; is peripherally associated to the bacterial reaction center; transfers excitation energy to the B875 antenna complex. 86753 0 0 69302 13 tepal margin The margin of a tepal. 91451 0 0 66110 9 intracellular cyclic nucleotide activated cation channel complex A protein complex that forms a transmembrane channel through which cations ions may pass in response to an intracellular cyclic nucleotide binding to the channel complex or one of its constituent parts. 86899 0 0 66030 9 pectic matrix The gel-like pectin matrix consists of the interlinked acidic and neutral pectin networks that are further cross-linked by calcium bridges. Pectins consist largely of long chains of mostly galacturonic acid units (typically 1,4 linkages and sometimes methyl esters). Three major pectic polysaccharides (homogalacturonan, rhamnogalacturonan I and rhamnogalacturonan II) are thought to occur in all primary cell walls. 86757 0 0 66031 9 hemicellulose network Network composed of hemicelluloses; members of a class of plant cell wall polysaccharide that cannot be extracted from the wall by hot water or chelating agents, but can be extracted by aqueous alkali. Includes xylan, glucuronoxylan, arabinoxylan, arabinogalactan II, glucomannan, xyloglucan and galactomannan. 86759 0 0 66032 9 axonemal dynein heavy chain (obsolete GO:0001683) OBSOLETE (was not defined before being made obsolete). 86761 1 0 66033 9 katanin complex A complex possessing an activity that couples ATP hydrolysis to the severing of microtubules; usually a heterodimer comprising a catalytic subunit (often 60kDa) and a regulatory subunit (often 80 kDa). 86762 0 0 66034 9 Golgi apparatus part Any constituent part of the Golgi apparatus, a compound membranous cytoplasmic organelle of eukaryotic cells, consisting of flattened, ribosome-free vesicles arranged in a more or less regular stack. 86763 0 0 66035 9 paranode region of axon An axon part that is located adjacent to the nodes of Ranvier and surrounded by lateral loop portions of myelin sheath. 86764 0 0 66036 9 dystroglycan complex A protein complex that includes alpha- and beta-dystroglycan, which are alternative products of the same gene; the laminin-binding component of the dystrophin-associated glycoprotein complex, providing a link between the subsarcolemmal cytoskeleton (in muscle cells) and the extracellular matrix. Alpha-dystroglycan is an extracellular protein binding to alpha-laminin and to beta-dystroglycan; beta-dystroglycan is a transmembrane protein which binds alpha-dystroglycan and dystrophin. 86765 0 0 66037 9 Ubisch body A small, granular structure that is found in the extracellular matrix of cell of the secretory tapetal layer that surrounds developing pollen grains. Ubisch bodies have a sporopollenin coat, are attached to the peritapetal wall, and may play a role in pollen development. 86768 0 0 66038 9 MOZ/MORF histone acetyltransferase complex A histone acetyltransferase complex that has histone H3 acetyltransferase and coactivator activities. Subunits of the human complex include MYST3/MOZ, MYST4/MORF, ING5, EAF6 and one of BRPF1, BRD1/BRPF2 and BRPF3. 86771 0 0 66039 9 pi-body A P granule that contains the PIWIL2-TDRD1 module, a set of proteins that act in the primary piRNA pathway. The pi-body corresponds to the cementing material between mitochondria found in gonocytes. 86773 0 0 66040 9 dentate gyrus mossy fiber Distinctive, unmyelinated axons produced by granule cells. 86775 0 0 66041 9 proteoglycan integral to plasma membrane (obsolete GO:0005888) OBSOLETE. Penetrating at least one phospholipid bilayer of a plasma membrane and consisting of proteoglycan. Also refers to the state of being buried in the bilayer with no exposure outside the bilayer. 86778 1 0 66092 9 host cell Golgi membrane The lipid bilayer surrounding any of the compartments of the host cell Golgi apparatus. 86870 0 0 66093 9 autophagic vacuole lumen The volume enclosed within the autophagic vacuole membrane. 86871 0 0 66042 9 alphav-beta3 integrin-IGF-1-IGF1R complex A protein complex that consists of an alphav-beta3 integrin complex bound to insulin-like growth factor-1 (IGF-1) and type I insulin-like growth factor receptor (IGF1R). IGF1R is a heterotetramer that consists of two alpha-subunits and two beta-subunits. 86779 0 0 66043 9 omega speckle A nucleoplasmic speckle distributed in the interchromatin space of cells in close proximity to chromatin. Omega speckles are distinct from interchromatin granules and contain heterogeneous nuclear RNA-binding proteins (hnRNPs). 86781 0 0 66044 9 cytoskeleton Any of the various filamentous elements that form the internal framework of cells, and typically remain after treatment of the cells with mild detergent to remove membrane constituents and soluble components of the cytoplasm. The term embraces intermediate filaments, microfilaments, microtubules, the microtrabecular lattice, and other structures characterized by a polymeric filamentous nature and long-range order within the cell. The various elements of the cytoskeleton not only serve in the maintenance of cellular shape but also have roles in other cellular functions, including cellular movement, cell division, endocytosis, and movement of organelles. 86783 0 0 66045 9 bacterial-type flagellum basal body, distal rod The portion of the central rod of the flagellar basal body that is distal to the cell membrane; spans most of the distance between the inner and outer membranes. Examples of this component are found in bacteria. 86785 0 0 66046 9 Smc5-Smc6 complex A conserved complex that contains a heterodimer of SMC proteins (Smc5p and Smc6p, or homologs thereof) and several other proteins, and is involved in DNA repair and maintaining cell cycle arrest following DNA damage. In S. cerevisiae, this is an octameric complex called Mms21-Smc5-Smc6 complex, with at least five of its subunits conserved in fission yeast and humans. 86786 0 0 66047 9 intrinsic to nuclear inner membrane Located in the nuclear inner membrane such that some covalently attached portion of the gene product, for example part of a peptide sequence or some other covalently attached group such as a GPI anchor, spans or is embedded in one or both leaflets of the membrane. 86788 0 0 66048 9 extrinsic to cell outer membrane Loosely bound to one surface of the outer membrane of the cell, but not integrated into the hydrophobic region. 86789 0 0 66049 9 subplasmalemmal coating Electron dense material observed coating the cytoplasmic face of the plasma membrane in certain regions of a neuron, e.g., the axon initial segment; the nodal membrane at the Node of Ranvier. 86790 0 0 66050 9 post-lysosomal vacuole A membrane-bounded intracellular vesicle formed late in the endocytic pathway when the pH in the vacuole becomes neutral prior to exocytosis. 86792 0 0 66051 9 post-mRNA release spliceosomal complex A spliceosomal complex that is formed following the release of the spliced product from the post-spliceosomal complex and contains the excised intron and three snRNPs, including U5. 86795 0 0 66052 9 vesicle membrane The lipid bilayer surrounding any membrane-bounded vesicle in the cell. 86796 0 0 66053 9 middle lamella-containing extracellular matrix The matrix external to the cell, composed of the cell wall and middle lamella. 86797 0 0 66054 9 oxygen evolving complex A complex, composed of a cluster of manganese, calcium and chloride ions bound to extrinsic proteins, that catalyzes the splitting of water to O2 and 4 H+. In cyanobacteria there are five extrinsic proteins in OEC (PsbO, PsbP-like, PsbQ-like, PsbU and PsbV), while in plants there are only three (PsbO, PsbP and PsbQ). 86800 0 0 76485 50 journal \N 209382 0 0 66056 9 intrinsic to mitochondrial outer membrane Located in the mitochondrial outer membrane such that some covalently attached portion of the gene product, for example part of a peptide sequence or some other covalently attached group such as a GPI anchor, spans or is embedded in one or both leaflets of the membrane. 86803 0 0 66057 9 RITS complex A protein complex required for heterochromatin assembly; contains an Argonaute homolog, a chromodomain protein, and at least one additional protein; named for RNA-induced initiation of transcriptional gene silencing. 86804 0 0 66058 9 DSIF complex A heterodimeric protein complex formed of Spt4 and Spt5 proteins which is expressed in eukaryotes from yeast to man. DSIF is an inhibitory elongation factor that promotes RNA polymerase II transcriptional pausing, but can also stimulate transcriptional elongation under certain conditions, and may play a role in RNA processing via its physical association with mRNA capping enzymes. 86806 0 0 66059 9 integral to mitochondrial inner membrane Located such that some or all of the gene product itself penetrates at least one phospholipid bilayer of the mitochondrial inner membrane. May also refer to the state of being buried in the bilayer with no exposure outside the bilayer. 86812 0 0 66060 9 early endosome lumen The volume enclosed by the membrane of an early endosome. 86813 0 0 66061 9 postsynaptic density The post synaptic density is a region that lies adjacent to the cytoplasmic face of the postsynaptic membrane at excitatory synapse. It forms a disc that consists of a range of proteins with different functions, some of which contact the cytoplasmic domains of ion channels in the postsynaptic membrane. The proteins making up the disc include receptors, and structural proteins linked to the actin cytoskeleton. They also include signalling machinery, such as protein kinases and phosphatases. 86814 0 0 66062 9 beta-catenin destruction complex A cytoplasmic protein complex containing glycogen synthase kinase-3-beta (GSK-3-beta), the adenomatous polyposis coli protein (APC), and the scaffolding protein axin, among others; phosphorylates beta-catenin, targets it for degradation by the proteasome. 86818 0 0 66063 9 fibrillar center A structure found most metazoan nucleoli, but not usually found in lower eukaryotes; surrounded by the dense fibrillar component; the zone of transcription from multiple copies of the pre-rRNA genes is in the border region between these two structures. 86820 0 0 66064 9 condensed chromosome, centromeric region The region of a condensed chromosome that includes the centromere and associated proteins, including the kinetochore. In monocentric chromosomes, this region corresponds to a single area of the chromosome, whereas in holocentric chromosomes, it is evenly distributed along the chromosome. 86822 0 0 66065 9 specific granule membrane The lipid bilayer surrounding a specific granule, a granule with a membranous, tubular internal structure, found primarily in mature neutrophil cells. Most are released into the extracellular fluid. Specific granules contain lactoferrin, lysozyme, vitamin B12 binding protein and elastase. 86823 0 0 66066 9 condensed nuclear chromosome A highly compacted molecule of DNA and associated proteins resulting in a cytologically distinct structure that remains in the nucleus. 86824 0 0 74315 19 modified_glycine A post translationally modified glycine amino acid feature. 97495 0 0 66067 9 cellular bud neck contractile ring A contractile ring, i.e. a cytoskeletal structure composed of actin filaments and myosin, that forms beneath the plasma membrane at the mother-bud neck in mitotic cells that divide by budding in preparation for completing cytokinesis. An example of this structure is found in Saccharomyces cerevisiae. 86825 0 0 66068 9 merozoite dense granule Electron-dense organelle with a granular internal matrix found throughout the merozoite life cycle stage of apicomplexan parasites; contains proteins destined to be secreted into the parasitophorous vacuole following parasite invasion of a host cell. 86826 0 0 66069 9 AP-2 adaptor complex A heterotetrameric AP-type membrane coat adaptor complex that consists of alpha, beta2, mu2 and sigma2 subunits, and links clathrin to the membrane surface of a vesicle; vesicles with AP-2-containing coats are normally found primarily near the plasma membrane, on endocytic vesicles. In at least humans, the AP-2 complex can be heterogeneric due to the existence of multiple subunit isoforms encoded by different alpha genes (alphaA and alphaC). 86827 0 0 66070 9 RasGAP-Fyn-Lyn-Yes complex A protein complex that consists of a GTPase activator protein (GAP) for Ras and three Src family protein tyrosine kinases, Fyn, Lyn and Yes. The complex is involved in signaling upon platelet activation. 86828 0 0 66071 9 myelin sheath An electrically insulating fatty layer that surrounds the axons of many neurons. It is an outgrowth of glial cells: Schwann cells supply the myelin for peripheral neurons while oligodendrocytes supply it to those of the central nervous system. 86830 0 0 66072 9 macropinocytic cup membrane The portion of the plasma membrane surrounding a macropinocytic cup. 86833 0 0 66073 9 glycosome lumen The volume enclosed by the membrane of a glycosome. 86834 0 0 66074 9 APC-IQGAP complex A protein complex that contains the tumor suppressor protein adenomatous polyposis coli (APC) and the Rac1 and Cdc42 effector IQGAP1; may play a role in cytoskeleton organization and cell migration. 86835 0 0 66075 9 glycerol-3-phosphate dehydrogenase complex An enzyme complex that catalyzes the dehydrogenation of sn-glycerol 3-phosphate to form glycerone phosphate. 86837 0 0 66076 9 sporoplasm The complex infective apparatus corresponding to the central mass of cytoplasm within a spore that is injected into a host cell by various parasitic microorganisms. 86838 0 0 66077 9 preprophase band A dense band of microtubules, 1-3 pm wide, that appears just beneath the cell membrane before the start of cell division in the cells of higher plants. It precedes the onset of prophase and then disappears as mitosis begins, yet it somehow determines the plane of orientation of the new cell plate forming in late telophase and marks the zone of the parental cell wall where fusion with the growing cell plate ultimately occurs. 86843 0 0 66078 9 centromere-specific nucleosome A form of nucleosome located only at the centromere, in which the histone H3 is replaced by the variant form CENP-A (sometimes known as CenH3). 86844 0 0 66079 9 fusome A large intracellular spectrin-rich structure that has been found in insect germline cells and mammalian hematopoietic cells. The fusome is an elongated, branched structure, formed from the spherical spectrosome organelle. 86847 0 0 66142 9 mating projection membrane The portion of the plasma membrane surrounding a mating projection, the projection formed by unicellular fungi in response to mating pheromone. 86946 0 0 77344 61 ft One foot. 212505 0 0 66080 9 centrosome A structure comprised of a core structure (in most organisms, a pair of centrioles) and peripheral material from which a microtubule-based structure, such as a spindle apparatus, is organized. Centrosomes occur close to the nucleus during interphase in many eukaryotic cells, though in animal cells it changes continually during the cell-division cycle. 86849 0 0 66081 9 extracellular membrane-bounded organelle Organized structure of distinctive morphology and function, bounded by a lipid bilayer membrane and occurring outside the cell. 86850 0 0 66082 9 medial cortical node A protein complex that contains the mid1, cdr2, wee1, klp8, and blt1 proteins, and is involved in contractile ring localization. Medial cortical node complexes appear as cortical dots in the middle of the cell during interphase, and function to recruit other ring components in early mitosis. 86851 0 0 66083 9 meiotic spindle A spindle that forms as part of meiosis. Several proteins, such as budding yeast Spo21p, fission yeast Spo2 and Spo13, and C. elegans mei-1, localize specifically to the meiotic spindle and are absent from the mitotic spindle. 86854 0 0 66084 9 cytosolic proteasome core complex The core complex of a proteasome located in the cytosol of a cell. 86858 0 0 66085 9 integral to membrane Penetrating at least one phospholipid bilayer of a membrane. May also refer to the state of being buried in the bilayer with no exposure outside the bilayer. When used to describe a protein, indicates that all or part of the peptide sequence is embedded in the membrane. 86859 0 0 66086 9 U12-type catalytic step 2 spliceosome A spliceosomal complex that contains the U12, U5 and U6atac snRNPs bound to a splicing intermediate in which the first catalytic cleavage of the 5' splice site has occurred. The precise subunit composition differs significantly from that of the catalytic step 1, or activated, spliceosome, and includes many proteins in addition to those found in the U12, U5 and U6atac snRNPs. 86860 0 0 66087 9 proton-transporting ATP synthase complex, catalytic core F(1) The sector of a hydrogen-transporting ATP synthase complex in which the catalytic activity resides; it comprises the catalytic core and central stalk, and is peripherally associated with a membrane, such as the plasma membrane or the mitochondrial inner membrane, when the entire ATP synthase is assembled. 86862 0 0 66088 9 alpha9-beta1 integrin-ADAM8 complex A protein complex that consists of an alpha9-beta1 integrin complex bound to the transmembrane metallopeptidase ADAM8. 86863 0 0 66089 9 basolateral plasma membrane The region of the plasma membrane that includes the basal end and sides of the cell. Often used in reference to animal polarized epithelial membranes, where the basal membrane is the part attached to the extracellular matrix, or in plant cells, where the basal membrane is defined with respect to the zygotic axis. 86865 0 0 66090 9 Swr1 complex A multisubunit protein complex that is involved in chromatin remodeling. It is required for the incorporation of the histone variant H2AZ into chromatin. In S. cerevisiae, the complex contains Swr1p, a Swi2/Snf2-related ATPase, and 12 additional subunits. 86866 0 0 66091 9 cell cortex part Any constituent part of the cell cortex, the region of a cell that lies just beneath the plasma membrane and often, but not always, contains a network of actin filaments and associated proteins. 86869 0 0 74362 19 DNA_replication_mode (obsolete SO:0000971) \N 97559 1 0 66094 9 interleukin-18 receptor complex A protein complex that binds interleukin-18; comprises an alpha and a beta subunit. 86872 0 0 66095 9 acrosomal matrix A structural framework, or 'dense core' at the interior of an acrosome. May regulate the distribution of hydrolases within the acrosome and their release during the acrosome reaction. 86874 0 0 66096 9 CRD-mediated mRNA stability complex A protein complex that binds to, and promotes stabilization of, mRNA molecules containing the coding region instability determinant (CRD). In human, IGF2BP1 and at least four additional proteins: HNRNPU, SYNCRIP, YBX1, and DHX9. 86877 0 0 66097 9 macromolecular complex A stable assembly of two or more macromolecules, i.e. proteins, nucleic acids, carbohydrates or lipids, in which the constituent parts function together. 86878 0 0 66098 9 mitochondrial respiratory chain The protein complexes that form the mitochondrial electron transport system (the respiratory chain), associated with the inner mitochondrial membrane. The respiratory chain complexes transfer electrons from an electron donor to an electron acceptor and are associated with a proton pump to create a transmembrane electrochemical gradient. 86879 0 0 66099 9 ciliary rootlet A cytoskeleton-like structure, originating from the basal body at the proximal end of a cilium, and extending proximally toward the cell nucleus. Rootlets are typically 80-100 nm in diameter and contain cross striae distributed at regular intervals of approximately 55-70 nm. 86880 0 0 66100 9 organellar ribosome A ribosome contained within a subcellular membrane-bounded organelle. 86882 0 0 66101 9 SmD-containing SMN-Sm protein complex An SMN-Sm protein complex formed by the association of the methylated Sm proteins B/B', D1, D2, D3, E, F, and G with the SMN complex. 86883 0 0 66102 9 root hair A long, thin projection from a root epidermal cell that contains F-actin and tubulin, and a cell wall. 86885 0 0 66103 9 ethanolamine ammonia-lyase complex An enzyme complex that catalyzes the breakdown of ethanolamine to form acetaldehyde and ammonia. 86888 0 0 66104 9 extrinsic to lysosome membrane Loosely bound to one surface of the lysosome membrane, but not integrated into the hydrophobic region. 86889 0 0 66105 9 kinetoplast A sub-structure within the large single mitochondrion of kinetoplastid parasites and which is closely associated with the flagellar pocket and basal body of the flagellum. 86890 0 0 66106 9 micropinosome A membrane-bounded, uncoated intracellular vesicle formed by the process of micropinocytosis. 86891 0 0 66107 9 Nebenkern A product of the fusion of the mitochondria during spermatogenesis. After the completion of meiosis the mitochondria of the spermatid collect along side the nucleus and fuse into two masses; these wrap around each other to produce the spherical Nebenkern. During flagellum elongation the Nebenkern unfolds and the two derivatives (major and minor mitochondrial derivatives) elongate down the axoneme. 86892 0 0 66108 9 muscle thin filament tropomyosin A form of the tropomyosin dimer found associated with actin and the troponin complex in muscle thin filaments. 86893 0 0 66112 9 Cajal body A class of nuclear body, first seen after silver staining by Ramon y Cajal in 1903, enriched in small nuclear ribonucleoproteins, and certain general RNA polymerase II transcription factors; ultrastructurally, they appear as a tangle of coiled, electron-dense threads roughly 0.5 micrometers in diameter; involved in aspects of snRNP biogenesis; the protein coilin serves as a marker for Cajal bodies. Some argue that Cajal bodies are the sites for preassembly of transcriptosomes, unitary particles involved in transcription and processing of RNA. 86902 0 0 66113 9 inner mucus layer The inner of two mucus layers secreted by epithelial cells in the colon; the inner mucus layer is firmly attached to the epithelium, is densely packed with a compact stratified appearance and is devoid of bacteria. 86906 0 0 66114 9 nuclear part Any constituent part of the nucleus, a membrane-bounded organelle of eukaryotic cells in which chromosomes are housed and replicated. 86910 0 0 66115 9 SSL2-core TFIIH complex portion of NEF3 complex The SSL2-core TFIIH complex when it is part of the nucleotide-excision repair factor 3 (NEF3). It is composed of the tightly associated 5 subunit core TFIIH subcomplex plus one additional, less tighly associated subunit. The subunits are well conserved from yeast to humans. In S. cerevisiae, the 5-subunit core is composed of Rad3, Tfb1, Tfb2, Ssl1, Tfb4 and the loosely associated subunit is Ssl2p (also called Rad25). In humans, the 5 subunit core is composed of ERCC2, p62, p55, p44, p34 and the loosely associated subunit is XPB. 86911 0 0 66116 9 alphav-beta5 integrin-vitronectin complex A protein complex that comprises one integrin alphav subunit, one integrin beta5 subunit, and vitronectin. 86912 0 0 66117 9 haustorium A projection from a cell or tissue that penetrates the host's cell wall and invaginates the host cell membrane. 86915 0 0 66118 9 succinate-CoA ligase complex A heterodimeric enzyme complex, usually composed of an alpha and beta chain. Functions in the TCA cycle, hydrolyzing succinyl-CoA into succinate and CoA, thereby forming ATP or GTP. 86916 0 0 66119 9 polytene chromosome chromocenter A region at which the centric regions of polytene chromosomes are joined together. 86917 0 0 66121 9 BMP receptor complex A protein complex that acts as a receptor for bone morphogenetic proteins (BMPs); a homo- or heterodimer of type I and/or type II BMP receptor subunits. 86920 0 0 66122 9 neuronal cell body The portion of a neuron that includes the nucleus, but excludes all cell projections such as axons and dendrites. 86922 0 0 66123 9 collagen type V A collagen heterotrimer containing type V alpha chains; [alpha1(V)]2alpha2(V) and alpha1(V)alpha2(V)alpha3(V) trimers have been observed; type V collagen triple helices associate to form fibrils. 86923 0 0 66124 9 pole plasm Differentiated cytoplasm associated with a pole (animal, vegetal, anterior, or posterior) of an oocyte, egg or early embryo. 86924 0 0 66125 9 Yb body A cytoplasmic part that appears as an electron-dense sphere of around 1.5 micron diameter containing Yb protein found in somatic cells of ovary and testis. There are one to two Yb bodies per cell. 86926 0 0 66126 9 Mon1-Ccz1 complex A protein complex that functions as a guanine nucleotide exchange factor (GEF) and converts Rab-GDP to Rab-GTP. In S. cerevisiae, this complex consists of at least Mon1 and Ccz1, and serves as a GEF for the Rab Ypt7p. 86928 0 0 66127 9 voltage-gated potassium channel complex A protein complex that forms a transmembrane channel through which potassium ions may cross a cell membrane in response to changes in membrane potential. 86930 0 0 66161 9 chloroplast inner membrane The inner, i.e. lumen-facing, lipid bilayer of the chloroplast envelope; also faces the chloroplast stroma. 86975 0 0 66128 9 microbody part Any constituent part of a microbody, a cytoplasmic organelle, spherical or oval in shape, that is bounded by a single membrane and contains oxidative enzymes, especially those utilizing hydrogen peroxide (H2O2). 86931 0 0 66129 9 nuclear telomere cap complex A complex of DNA and protein located at the end of a linear chromosome in the nucleus that protects and stabilizes a linear chromosome. 86932 0 0 66130 9 symbiont-containing vacuole membrane The lipid bilayer surrounding a symbiont-containing vacuole, derived from both the host and symbiont. 86933 0 0 66131 9 host cell late endosome membrane The lipid bilayer surrounding a host cell late endosome. 86934 0 0 66132 9 nuclear DNA replication factor C complex A nuclear complex of five polypeptides that loads the DNA polymerase processivity factor proliferating cell nuclear antigen (PCNA) onto DNA, thereby permitting processive DNA synthesis catalyzed by DNA polymerase delta or epsilon. In Saccharomyces and several other species, the subunits are known as Rfc1p-Rfc5p, although subunit names do not necessarily correspond between different species. 86935 0 0 66133 9 contractile vacuolar membrane The lipid bilayer surrounding the contractile vacuole. 86936 0 0 66134 9 sensory dendrite A dendrite that is found on a sensory neuron, and directly transduces a sensory signal from the sensory neuron to another neuron. 86937 0 0 66135 9 pseudohyphal septin ring A tight ring-shaped structure that forms in the division plane at the junction between the mother cell and a pseudohyphal projection; composed of septins as well as septin-associated proteins. 86938 0 0 66136 9 plant-type vacuole lumen The volume enclosed within the vacuolar membrane of a vacuole that retains the same shape regardless of cell cycle phase. An example of this is found in Arabidopsis thaliana. 86939 0 0 66137 9 polysome Several ribosomes bound to one mRNA. 86940 0 0 66138 9 tripartite viral genome A segmented viral genome consisting of three sub-genomic nucleic acids but each nucleic acid is packaged into a different virion. 86941 0 0 66139 9 split septin rings A pair of rings that flank the site of cell division, formed by splitting of the septin ring (or collar) prior to cytokinesis; this double ring structure is thought to trap proteins needed for cytokinesis or the formation of the new membrane or cell wall between the two septin rings. Split septin rings are known to occur in budding yeast cells and probably occur in other cell types as well. 86942 0 0 66140 9 extrinsic to fungal-type vacuolar membrane Loosely bound to one surface of the fungal-type vacuolar membrane, but not integrated into the hydrophobic region. 86943 0 0 66143 9 vacuolar proton-transporting V-type ATPase, V1 domain The V1 domain of a proton-transporting V-type ATPase found in the vacuolar membrane. 86947 0 0 66144 9 smooth endoplasmic reticulum lumen The volume enclosed by the membranes of the smooth endoplasmic reticulum. 86948 0 0 70210 13 tuber perimedullary zone A perimedullary zone that is part of a tuber pith. 92467 0 0 66145 9 phycobilisome Any of the granules, approximately 32 nm x 48 nm and consisting of highly aggregated phycobiliproteins, that are attached in arrays to the external face of a thylakoid membrane in algae of the phyla Cyanophyta and Rhodophyta, where they function as light-harvesting devices in photosynthesis. Excitation energy in the phycobilisome flows in the sequence: phycoerythrin, phycocyanin, allophycocyanin before passing to the antenna chlorophyll of photosystem II. 86949 0 0 66146 9 pyrophosphate-dependent phosphofructokinase complex, alpha-subunit complex Refers to the alpha subunit of the heterodimeric complex that possesses pyrophosphate-dependent phosphofructokinase activity. 86952 0 0 66147 9 heterotetrameric decaprenyl diphosphate synthase complex A heterotetrameric complex located in the mitochondrial inner membrane that possesses di-trans,poly-cis-decaprenylcistransferase activity; involved in ubiquinone biosynthesis. In S. pombe it is a heterotetramer of Dlp1 and Dps1. 86954 0 0 66148 9 desmin (obsolete GO:0045100) OBSOLETE. A type of intermediate filament. 86956 1 0 66149 9 extrahaustorial membrane The membrane surrounding the symbiont haustorium during symbiosis, derived from the host plasma membrane. 86957 0 0 66150 9 alpha6-beta1 integrin complex An integrin complex that comprises one alpha6 subunit and one beta1 subunit. 86958 0 0 66151 9 fatty acid beta-oxidation multienzyme complex A complex that includes the long-chain 3-hydroxyacyl-CoA dehydrogenase and long-chain enoyl-CoA hydratase activities in two subunits (alpha and beta), catalyzing two steps of the fatty acid beta-oxidation cycle within the mitochondrial matrix. 86959 0 0 66152 9 phage terminase complex A complex of a large and small subunit which catalyze the packaging of DNA into phage heads. Note that not all phage terminases have this structure, some exist as single polypeptides. 86960 0 0 66153 9 mitochondrial proton-transporting ATP synthase complex A proton-transporting ATP synthase complex found in the mitochondrial membrane. 86961 0 0 66154 9 plastid pyruvate dehydrogenase complex Complex that carries out the oxidative decarboxylation of pyruvate to form acetyl-CoA; comprises subunits possessing three catalytic activities: pyruvate dehydrogenase (E1), dihydrolipoamide S-acetyltransferase (E2), and dihydrolipoamide dehydrogenase (E3). This complex is found in plant plastids and is distinct from the one found in mitochondria. 86963 0 0 66155 9 collagen type XVI A collagen trimer containing alpha(XVI) chains; type XVI trimers can associate with microfibrils. 86965 0 0 66156 9 intracellular organelle Organized structure of distinctive morphology and function, occurring within the cell. Includes the nucleus, mitochondria, plastids, vacuoles, vesicles, ribosomes and the cytoskeleton. Excludes the plasma membrane. 86967 0 0 66157 9 basal plasma membrane The region of the plasma membrane located at the basal end of the cell. Often used in reference to animal polarized epithelial membranes, where the basal membrane is the part attached to the extracellular matrix, or in plant cells, where the basal membrane is defined with respect to the zygotic axis. 86968 0 0 66158 9 NuA3 histone acetyltransferase complex A Gcn5-independent multisubunit complex that catalyzes the acetylation of histone H3. The budding yeast complex includes Sas3p, Taf30p, and Yng1p. 86969 0 0 66159 9 plant-type cell wall A more or less rigid stucture lying outside the cell membrane of a cell and composed of cellulose and pectin and other organic and inorganic substances. 86972 0 0 66160 9 eukaryotic translation initiation factor 2B complex A multisubunit guanine nucleotide exchange factor which catalyzes the exchange of GDP bound to initiation factor eIF2 for GTP, generating active eIF2-GTP. In humans, it is composed of five subunits, alpha, beta, delta, gamma and epsilon. 86973 0 0 66162 9 NHE3/E3KARP/ACTN4 complex A heterotrimeric protein complex formed by the association of NHE3, E3KARP and alpha-actinin upon an increase in calcium ion concentration; found in clusters localized on plasma membrane and in intracellular compartments. 86976 0 0 66163 9 D-amino-acid dehydrogenase complex A protein complex that possesses D-amino-acid dehydrogenase activity. 86978 0 0 66164 9 collagen type XV A collagen homotrimer of alpha1(XV) chains; a chondroitin sulfate proteoglycan often found in specialized basement membranes. 86979 0 0 66165 9 RSC complex A protein complex similar to, but more abundant than, the Swi/Snf complex. The RSC complex is generally recruited to RNA polymerase III promoters and is specifically recruited to RNA polymerase II promoters by transcriptional activators and repressors; it is also involved in non-homologous end joining. 86982 0 0 66166 9 oligosaccharyltransferase complex A protein complex that is found in the endoplasmic reticulum membrane of eukaryotes and transfers lipid-linked oligosaccharide precursor to asparagine residues on nascent proteins. In yeast, the complex includes at least nine different subunits, whereas in mammalian cells at least three different forms of the complex have been detected. 86987 0 0 66167 9 alpha-1,6-mannosyltransferase complex A large, multiprotein complex with alpha-1,6 mannosyltransferase activity, located in the cis Golgi membrane; adds mannan to N-linked glycans on proteins. 86989 0 0 66168 9 Cul3-RING ubiquitin ligase complex A ubiquitin ligase complex in which a cullin from the Cul3 subfamily and a RING domain protein form the catalytic core; substrate specificity is conferred by a BTB-domain-containing protein. 86992 0 0 66169 9 molybdopterin synthase complex A protein complex that possesses molybdopterin synthase activity. In E. coli, the complex is a heterotetramer consisting of two MoaD and two MoaE subunits. 86995 0 0 66170 9 cyanelle ribonuclease P complex A ribonuclease P complex located in the cyanelle, where it catalyzes the 5' endonucleolytic cleavage of precursor tRNAs to yield mature tRNAs. The best characterized cyanelle ribonuclease P complex, from the alga Cyanophora paradoxa, contains a single RNA molecule that is necessary but not sufficient for catalysis, and several protein molecules. 86999 0 0 66171 9 cytosolic tRNA wobble base thiouridylase complex A complex of two proteins involved in the thiolation of U34 in glutamate, lysine, and glutamine tRNAs of eukaryotes. 87001 0 0 66200 9 vacuolar hydrogen-transporting ATPase (obsolete GO:0000219) OBSOLETE (was not defined before being made obsolete). 87044 1 0 68030 9 basal pole of neuron Portion of a neuron cell soma closest to the point where the basilar dendrite emerges. 89760 0 0 66172 9 cellulose microfibril A microfibril composed of cellulose arranged in orthogonal layers. Cellulose is a straight chain polysaccharide composed of B(14) linked glucose subunits. It is a major component of plant cell walls. Higher plant microfibrils are about 10nm in diameter and extremely long in relation to their width. The cellulose molecules are oriented parallel to the long axis of the microfibril in a paracrystalline array, which provides great tensile strength. The microfibrils are held in place by the wall matrix and their orientation is closely controlled by the cell. 87003 0 0 66173 9 high-density lipoprotein particle A lipoprotein particle with a high density (typically 1.063-1.21 g/ml) and a diameter of 5-10 nm that contains APOAs and may contain APOCs and APOE; found in blood and carries lipids from body tissues to the liver as part of the reverse cholesterol transport process. 87004 0 0 66174 9 heterotrimeric G-protein complex Any of a family of heterotrimeric GTP-binding and hydrolyzing proteins; they belong to a superfamily of GTPases that includes monomeric proteins such as EF-Tu and RAS. Heterotrimeric G-proteins consist of three subunits; the alpha subunit contains the guanine nucleotide binding site and possesses GTPase activity; the beta and gamma subunits are tightly associated and function as a beta-gamma heterodimer; extrinsic plasma membrane proteins (cytoplasmic face) that function as a complex to transduce signals from G-protein coupled receptors to an effector protein. 87005 0 0 66175 9 acidocalcisome lumen The volume enclosed by the membranes of an acidocalcisome. 87006 0 0 66176 9 anammoxosome An intracytoplasmic membrane-bounded compartment in anaerobic ammonium oxidation (anammox) bacteria, is the site of anammox catabolism. 87007 0 0 66177 9 alphaV-beta8 integrin-MMP14-TGFbeta-1 complex A protein complex that consists of an alphaV-beta8 integrin complex bound to matrix metalloproteinase 14 and transforming growth factor beta-1 (TGFbeta-1). 87010 0 0 66178 9 TORC1 complex A protein complex that contains the TOR (target of rapamycin) serine/threonine kinase and mediates temporal control of cell growth via regulation of translation, transcription, ribosome biogenesis, nutrient transport, and autophagy. In Saccharomyces, the complex contains Kog1p, Lst8p, Tco89p, and either Tor1p or Tor2p; in mammals the complex contains orthologs of the yeast proteins. 87012 0 0 66179 9 plasma membrane-derived chromatophore A pigment-bearing structure that is derived from the cytoplasmic membrane, sometimes consisting of simple invaginations and sometimes a complete vesicle. This component is found in certain photosynthetic bacteria and cyanobacteria. 87014 0 0 66180 9 high molecular weight kininogen receptor complex A protein complex that acts as a receptor for high molecular weight kininogens. In humans, this receptor includes the CK1 and uPAR proteins. 87016 0 0 66181 9 chitosome membrane The lipid bilayer surrounding a chitosome. 87018 0 0 66182 9 chromoplast envelope The double lipid bilayer enclosing the chromoplast and separating its contents from the rest of the cytoplasm; includes the intermembrane space. 87019 0 0 66183 9 BCL-2 complex A homodimeric protein complex consisting of BAK, a member of the Bcl-2 family of anti- and proapoptotic regulators. 87020 0 0 66184 9 basement membrane A thin layer of dense material found in various animal tissues interposed between the cells and the adjacent connective tissue. It consists of the basal lamina plus an associated layer of reticulin fibers. 87021 0 0 66185 9 primary cell wall A plant cell wall that is still able to expand, permitting cell growth. Primary cell walls contain more pectin than secondary walls and no lignin is present. 87022 0 0 66186 9 plasma membrane enriched fraction The fraction of cells, prepared by disruptive biochemical methods, that is enriched for plasma membranes. 87024 0 0 66187 9 bacterial-type flagellum basal body, C ring Cytoplasmic ring located at the base of the flagellar basal body; acts as a rotor; includes three switch proteins, which generate torque and can change their conformational state in a bimodal fashion, so that the motor direction can switch between clockwise and counterclockwise. Examples of this component are found in bacteria. 87027 0 0 66188 9 flagellar pocket membrane That part of the plasma membrane found in the flagellar pocket. 87028 0 0 66189 9 phragmosome A flattened membranous vesicle containing cell wall components. 87029 0 0 66190 9 cellular bud scar Crater-like ring of chitinous scar tissue located on the surface of the mother cell. It is formed after the newly emerged daughter cell separates thereby marking the site of cytokinesis and septation. The number of bud scars that accumulate on the surface of a cell is a useful determinant of replicative age. 87030 0 0 66191 9 zymogen granule A membrane-bounded, cytoplasmic secretory granule found in enzyme-secreting cells and visible by light microscopy. Contain zymogen, an inactive enzyme precursor, often of a digestive enzyme. 87033 0 0 66192 9 Ecsit-NDUFAF1 complex Any large protein complex that contains Ecsit and NDUFAF1, is located in the mitochondrion, and is involved in the assembly of complex I of the oxidative phosphorylation system. In mammalian cells, three complexes of approximately 500, 600, and 850 kDa containing the 45 kDa isoform of Ecsit and NDUFAF1 have been observed. 87034 0 0 66193 9 sperm cell nucleus (sensu Magnoliophyta) (obsolete GO:0043075) OBSOLETE. The nucleus of a plant pollen cell, the male gamete, and its descendents. 87036 1 0 66194 9 haptoglobin-hemoglobin complex A protein complex formed by the stable binding of a haptoglobin to hemoglobin. 87037 0 0 66195 9 Fc-epsilon receptor I complex A protein complex composed of an Fc-epsilon RI alpha chain and an Fc-epsilon RI gamma chain dimer with or without an Fc-episilon RI beta chain and additional signaling components. The complex functions primarily as an activating receptor for IgE. 87038 0 0 66196 9 nuclear replisome A multi-component enzymatic machine at the nuclear replication fork, which mediates DNA replication. Includes DNA primase, one or more DNA polymerases, DNA helicases, and other proteins. 87039 0 0 66197 9 host multivesicular body A late endosome in which regions of the limiting host cell endosomal membrane invaginate to form internal vesicles; host membrane proteins that enter the internal vesicles are sequestered from the host cytoplasm. 87040 0 0 66198 9 cell periphery The part of a cell encompassing the cell cortex, the plasma membrane, and any external encapsulating structures. 87041 0 0 66199 9 rhabdomere The specialized microvilli-containing organelle on the apical surfaces of a photoreceptor cell containing the visual pigment rhodopsin and most of the proteins involved in phototransduction. 87042 0 0 66201 9 translation initiation complex A ribonucleoprotein complex that contains a ribosome, mRNA, and initiator tRNA; the functional ribosome is at the AUG, with the methionyl/formyl-methionyl-tRNA positioned at the P site. 87045 0 0 66202 9 nonmotile primary cilium A primary cilium which contains a variable array of axonemal microtubules but does not contain molecular motors. Nonmotile primary cilia are found on many different cell types and function as sensory organelles that concentrate and organize sensory signaling molecules. 87046 0 0 66203 9 membrane attack complex A protein complex produced by sequentially activated components of the complement cascade inserted into a target cell membrane and forming a pore leading to cell lysis via ion and water flow. 87049 0 0 66204 9 PUMA-BCL-xl complex A heterodimeric protein complex consisting of PUMA and BCL-xl, members of the Bcl-2 family of anti- and proapoptotic regulators. 87050 0 0 66205 9 alpha1-beta1 integrin-alpha3(VI) complex A protein complex that consists of an alpha1-beta1 integrin complex bound to a type VI collagen triple helix containing an alpha3(VI) chain. 87051 0 0 66206 9 cation channel complex An ion channel complex through which cations pass. 87053 0 0 66207 9 cyclic-nucleotide phosphodiesterase complex An enzyme complex that catalyzes the hydrolysis of bonds in a cyclic nucleotide. 87054 0 0 66208 9 host cell junction A plasma membrane part that forms a specialized region of connection between two host cells or between a host cell and the host extracellular matrix. At a host cell junction, anchoring proteins extend through the host plasma membrane to link cytoskeletal proteins in one cell to cytoskeletal proteins in neighboring cells or to proteins in the extracellular matrix. 87055 0 0 66209 9 organelle lumen The internal volume enclosed by the membranes of a particular organelle; includes the volume enclosed by a single organelle membrane, e.g. endoplasmic reticulum lumen, or the volume enclosed by the innermost of the two lipid bilayers of an organelle envelope, e.g. nuclear lumen. 87056 0 0 66210 9 alpha9-beta1 integrin-ADAM15 complex A protein complex that consists of an alpha9-beta1 integrin complex bound to the transmembrane metallopeptidase ADAM15. 87057 0 0 66211 9 TACC/TOG complex A protein complex that contains the transforming acidic coiled coil (TACC) protein and the TOG protein (Mia1p/Alp7p and Alp14, respectively, in fission yeast), and is involved in microtubule array remodeling as cells progress through the cell cycle. The TACC/TOG complex is conserved in eukaryotes, associates with microtubules, and shuttles between the nucleus and the cytoplasm during interphase. 87059 0 0 66212 9 plasma membrane-derived thylakoid photosystem II A protein complex, located in the membrane-derived thylakoid, containing the P680 reaction center. In the light, PSII functions as a water-plastoquinone oxidoreductase, transferring electrons from water to plastoquinone. 87061 0 0 66213 9 SBF transcription complex A protein complex that binds to the Swi4/6 cell cycle box (SCB) promoter element, consensus sequence CRCGAAA, and activates transcription during the G1/S transition of the cell cycle. In Saccharomyces, the complex contains a heterodimer of the DNA binding protein Swi6p and the activator Swi4p, and is associated with additional proteins known as Whi5p and Msa1p. 87062 0 0 66214 9 electron transfer flavoprotein complex A protein complex containing flavin adenine dinucleotide (FAD) and acyl-CoA dehydrogenase, which form a system that oxidizes an acyl-CoA molecule and reduces ubiquinone and other acceptors in the mitochondrial electron transport system. 87067 0 0 66217 9 replisome A multi-component enzymatic machine at the replication fork which mediates DNA replication. Includes DNA primase, one or more DNA polymerases, DNA helicases, and other proteins. 87071 0 0 66218 9 signal recognition particle, plasma membrane targeting A complex consisting of a protein and RNA component which binds the signal sequence of some proteins and facilitates their export to or across the plasma membrane. 87072 0 0 66219 9 intercalary heterochromatin Any of the regions of heterochromatin that form a reproducible set of dense bands scattered along the euchromatic arms in polytene chromosomes. 87073 0 0 66276 9 pseudopodium membrane The portion of the plasma membrane surrounding a pseudopodium. 87151 0 0 66220 9 cell body The portion of a cell bearing surface projections such as axons, dendrites, cilia, or flagella that includes the nucleus, but excludes all cell projections. 87075 0 0 66221 9 excinuclease repair complex Any of the protein complexes formed by the UvrABC excinuclease system, which carries out nucleotide excision repair. Three different complexes are formed by the 3 proteins as they proceed through the excision repair process. First a complex consisting of two A subunits and one B subunit bind DNA and unwind it around the damaged site. Then, the A subunits disassociate leaving behind a stable complex between subunit B and DNA. Now, subunit C binds to this B+DNA complex and causes subunit B to nick the DNA on one side of the complex while subunit C nicks the DNA on the other side of the complex. DNA polymerase I and DNA ligase can then repair the resulting gap. 87076 0 0 66222 9 protein histidine kinase complex A complex that possesses protein histidine kinase activity. 87077 0 0 66223 9 RNA polymerase II transcribed untranslated RNA (obsolete GO:0005572) OBSOLETE (was not defined before being made obsolete). 87078 1 0 66224 9 phosphoribosylaminoimidazole carboxylase complex A protein complex that possesses phosphoribosylaminoimidazole carboxylase activity. 87079 0 0 66225 9 thylakoid A membranous cellular structure that bears the photosynthetic pigments in plants, algae, and cyanobacteria. In cyanobacteria thylakoids are of various shapes and are attached to, or continuous with, the plasma membrane. In eukaryotes they are flattened, membrane-bounded disk-like structures located in the chloroplasts; in the chloroplasts of higher plants the thylakoids form dense stacks called grana. Isolated thylakoid preparations can carry out photosynthetic electron transport and the associated phosphorylation. 87080 0 0 66226 9 Lsm-containing SMN-Sm protein complex An SMN-Sm protein complex formed by the association of the methylated Sm proteins B/B', D3, E, F, and G, and Lsm10 and Lsm11, with the SMN complex. This complex forms Sm cores on U7 snRNA. 87081 0 0 66227 9 ER proteasome regulatory particle, base subcomplex The subunits of the regulatory particle that directly associate with the core complex of a proteasome located in the endoplasmic reticulum of a cell. 87082 0 0 66228 9 sex chromatin A condensed mass of compacted chromatin that represents an inactivated X chromosome. 87083 0 0 66457 9 inner plaque of spindle pole body One of three laminate structures that form the spindle pole body; the inner plaque is in the nucleus. 87436 0 0 66229 9 host cell endosome A membrane-bounded organelle that carries materials newly ingested by endocytosis. It passes many of the materials to host cell lysosomes for degradation. 87084 0 0 66230 9 etioplast membrane Either of the lipid bilayers that surround a etioplast and form the etioplast envelope. 87085 0 0 66231 9 nuclear exosome (RNase complex) Complex of 3'-5' exoribonucleases found in the nucleus. 87086 0 0 66232 9 VAMP4-syntaxin-6-syntaxin-16-Vti1a complex A SNARE complex that contains VAMP4, syntaxin 6, syntaxin 16, and Vti1a (or orthologs thereof). 87088 0 0 66233 9 microbody Cytoplasmic organelles, spherical or oval in shape, that are bounded by a single membrane and contain oxidative enzymes, especially those utilizing hydrogen peroxide (H2O2). 87090 0 0 66234 9 myosin XIV complex A myosin complex containing a class XIV myosin heavy chain and associated light chains; myosin XIV heavy chains are the simplest known, containing a motor domain, no classic IQ motif and variable length tails. 87091 0 0 66235 9 IgE immunoglobulin complex A protein complex composed of two identical immunoglobulin heavy chains of the IgE isotype and two identical immunoglobulin light chains, held together by disulfide bonds. An IgE immunoglobulin complex may be embedded in the plasma membrane or present in the extracellular space, in mucosal areas or other tissues, or circulating in the blood or lymph. 87092 0 0 66236 9 viral scaffold A complex of proteins that form a scaffold around which the viral capsid is constructed. 87093 0 0 66237 9 magnesium chelatase complex A heterotrimeric enzyme complex composed of three subunits, all of which are required for enzyme activity, which catalyzes the chelation of Mg by proto IX in an ATP-dependent manner. 87094 0 0 66238 9 nucleotide-excision repair factor 1 complex One of several protein complexes involved in nucleotide-excision repair; possesses DNA damage recognition and endodeoxynuclease activities. In S. cerevisiae, it is composed of Rad1p, Rad10p, and Rad14p; in human the subunits are ERCC4/XPF, ERCC1 and XPA, respectively. 87096 0 0 66239 9 plastid mRNA editing complex An mRNA editing complex found in a plastid. 87098 0 0 66240 9 origin recognition complex A multisubunit complex that is located at the replication origins of a chromosome. 87099 0 0 66241 9 mRNA cleavage stimulating factor complex A protein complex required for mRNA cleavage but not for poly(A) addition. 87100 0 0 66242 9 nuclear ubiquitin ligase complex A ubiquitin ligase complex found in the nucleus. 87101 0 0 66243 9 early recombination nodule An electron dense structure that is associated with meiotic chromosomes in leptotene or zygotene during meiosis I. 87102 0 0 66244 9 IgY immunoglobulin complex A protein complex composed of two identical immunoglobulin heavy chains of the IgY isotype and two identical immunoglobulin light chains, held together by disulfide bonds. An IgY immunoglobulin complex may be embedded in the plasma membrane or present in the extracellular space, in mucosal areas or other tissues, or circulating in the blood or lymph. 87103 0 0 66245 9 synaptotagmin-synaptobrevin 2-SNAP-25-syntaxin-1a-syntaxin-1b-Rab3a complex A SNARE complex that contains synaptotagmin, synaptobrevin 2 (VAMP2), SNAP-25, syntaxin 1a, syntaxin1b, and Rab3a (or orthologs thereof). 87104 0 0 66246 9 collagen type VIII A collagen heterotrimer containing type VIII alpha chains; [alpha1(VIII)2]alpha2(VIII) and alpha1(VIII)[alpha2(VIII)]2 trimers have been observed; type VIII collagen triple helices associate to form regular hexagonal nets. 87106 0 0 66247 9 Type II site-specific deoxyribonuclease complex A protein complex that functions as an endonuclease to cleave DNA at or near a specific recognition site, when that site is unmethylated. These complexes may be dimers or tetramers; it is also possible for the endonuclease to be in a complex with the corresponding methyltransferase that methylates the recognition site. DNA restriction systems such as this are used by bacteria to defend against phage and other foreign DNA that may enter a cell. 87107 0 0 66248 9 clathrin sculpted acetylcholine transport vesicle lumen The volume enclosed by the membrane of the clathrin sculpted acetylcholine transport vesicle. 87108 0 0 66510 9 extrinsic to plastid membrane Loosely bound to one surface of a plastid membrane, but not integrated into the hydrophobic region. 87521 0 0 66249 9 tRNA-specific adenosine-34 deaminase complex A protein complex that possesses tRNA-specific adenosine-34 deaminase activity. In eukaryotes the complex is a heterodimer; the subunits are known as Tad2p and Tad3p in yeasts and Adat2 and Adat3 in human. 87109 0 0 66250 9 lysosomal glycocalyx The polysaccharide-based coating on the inner side of a lysosomal membrane that protects it from digestion by lysosomal enzymes. 87110 0 0 66251 9 cell-substrate junction A cell junction that forms a connection between a cell and the extracellular matrix. 87111 0 0 66252 9 CFTR-NHERF-ezrin complex A protein complex that contains ezrin, Na+/H+ exchanger regulatory factor (NHERF, also called EBP50), and two copies of the cystic fibrosis transmembrane conductance regulator (CFTR). The CFTR molecules interact with NHERF via their cytoplasmic tail domains; the complex is thought to link the CFTR channel to the actin cytoskeleton and contribute to the regulation of channel activity. 87112 0 0 66253 9 amyloplast A plastid whose main function is to synthesize and store starch. 87116 0 0 66254 9 26S proteasome (obsolete GO:0005837) OBSOLETE. A large multisubunit protease found in the cytosol that recognizes, unfolds, and digests protein substrates that have been marked for degradation by the attachment of a ubiquitin group. Individual subcomplexes of the complete 26S proteasome are involved in these different tasks: the ATP-dependent 19S caps are believed to unfold substrates and feed them to the actual protease, the 20S proteasome. 87117 1 0 66255 9 extrinsic to external side of plasma membrane, in periplasmic space Located in the periplasmic space and loosely bound to the surface of the plasma membrane that faces away from the cytoplasm, but not integrated into the hydrophobic region. 87119 0 0 66256 9 Kv4.2-KChIP2 channel complex A voltage-gated potassium channel complex that contains the Kv channel interacting protein KChIP2 associated with the channel via interaction with the Kv alpha subunit 4.2. 87121 0 0 66257 9 alphaM-beta2 integrin-CD63 complex A protein complex that consists of an alphaM-beta2 integrin complex bound to membrane protein CD63, a member of the tetraspan family. 87122 0 0 66289 9 S-layer A crystalline protein layer surrounding some bacteria. 87171 0 0 66434 9 envelope A multilayered structure surrounding all or part of a cell; encompasses one or more lipid bilayers, and may include a cell wall layer; also includes the space between layers. 87396 0 0 66258 9 cyclin E2-CDK2 complex A protein complex consisting of cyclin E2 and cyclin-dependent kinase 2 (CDK2). Cyclins are characterized by periodicity in protein abundance throughout the cell cycle. Cyclin-dependent kinases represent a family of serine/threonine protein kinases that become active upon binding to a cyclin regulatory partner. 87124 0 0 66259 9 alpha3-beta1 integrin-basigin complex A protein complex that consists of an alpha3-beta1 integrin complex bound to the cell surface protein basigin. 87126 0 0 66260 9 cytoplasmic dynein light chain (obsolete GO:0001690) OBSOLETE (was not defined before being made obsolete). 87128 1 0 66261 9 alpha9-beta1 integrin-ADAM3 complex A protein complex that consists of an alpha9-beta1 integrin complex bound to the transmembrane metallopeptidase ADAM3. 87129 0 0 66262 9 proteasome-activating nucleotidase complex A multisubunit complex that recognizes and unfolds core proteasome substrate proteins, and translocates them to the core complex in an ATP dependent manner. 87130 0 0 66263 9 methionyl glutamyl tRNA synthetase complex A complex consisting of methionyl- and glutamyl-tRNA synthetases. The tRNA synthetases present in the complex bind to their cognate tRNAs more efficiently than they do as monomers. 87131 0 0 66264 9 filopodium Thin, stiff protrusion extended by the leading edge of a motile cell such as a crawling fibroblast or amoeba, or an axonal growth cone; usually approximately 0.1 um wide, 5-10 um long, can be up to 50 um long in axon growth cones; contains a loose bundle of about 20 actin filaments oriented with their plus ends pointing outward. 87133 0 0 66265 9 G-protein beta/gamma-Btk complex A protein complex formed by the association of the Bruton tyrosine protein kinase Btk, which is implicated in mammalian X-linked immunodeficiencies, with the beta and gamma subunits of a heterotrimeric G protein. 87135 0 0 66266 9 mating projection septin band A septin band, i.e. a diffuse ring composed of a series of septin bars running parallel to the long axis of the cell, located at the neck of a shmoo (mating projection). 87137 0 0 66267 9 extracellular region part Any constituent part of the extracellular region, the space external to the outermost structure of a cell. For cells without external protective or external encapsulating structures this refers to space outside of the plasma membrane. This term covers constituent parts of the host cell environment outside an intracellular parasite. 87138 0 0 66268 9 Toll-like receptor 1-Toll-like receptor 2 protein complex A heterodimeric protein complex containing Toll-like receptor 1 (TLR1) and Toll-like receptor 2 (TLR2). 87139 0 0 66269 9 lysosomal membrane hydrogen-transporting ATPase (obsolete GO:0008245) OBSOLETE (was not defined before being made obsolete). 87141 1 0 66270 9 Rad51B-Rad51C complex A DNA recombinase mediator complex that contains the Rad51 paralogs RAD51B and RAD51C, or orthologs thereof. 87142 0 0 66271 9 exodeoxyribonuclease V complex An enzyme complex that catalyzes exonucleolytic cleavage (in the presence of ATP) in either 5' to 3' or 3' to 5' direction to yield 5'-phosphooligonucleotides. Exodeoxyribonuclease V shows a preference for double-stranded DNA and possesses DNA-dependent ATPase activity. It acts endonucleolytically on single-stranded circular DNA. 87145 0 0 66272 9 brush border Dense covering of microvilli on the apical surface of epithelial cells in tissues such as the intestine, kidney, and choroid plexus; the microvilli aid absorption by increasing the surface area of the cell. 87146 0 0 66273 9 transcriptional repressor complex A protein complex that possesses activity that prevents or downregulates transcription. 87147 0 0 66307 9 ABIN2-NFKB1-MAP3K8 complex A protein complex that contains the precursor form of NF-kappaB (p105), the NF-kappaB inhibitor ABIN-2, and the kinase TPL-2 (MAP3K8); the complex stabilizes TPL-2 and is involved in signaling in lipopolysaccharide (LPS)-stimulated macrophages. 87199 0 0 66274 9 molybdenum-iron nitrogenase complex An enzyme complex containing a molybdenum-iron cluster found in many species. It is composed of two proteins, dinitrogenase and nitrogenase reductase; dinitrogenase, the molybdenum-iron protein, is tetrameric with an alpha2-beta2 structure, and nitrogenase reductase is a homodimer. 87148 0 0 66275 9 MLL1 complex A protein complex that can methylate lysine-4 of histone H3. MLL1/MLL is the catalytic methyltransferase subunit, and the complex also contains the core components ASH2L, HCFC1/HCF1 WDR5 and RBBP5. 87149 0 0 66277 9 egasyn-beta-glucuronidase complex A protein complex that contains beta-glucuronidase and the carboxyl esterase egasyn; formation of the complex causes beta-glucuronidase to be retained in the endoplasmic reticulum. 87152 0 0 66278 9 Par3-APC-KIF3A complex A protein complex that contains Par3, the tumor suppressor protein adenomatous polyposis coli (APC), and the kinesin-related protein KIF3A; involved in establishing neuronal cell polarity. 87154 0 0 66279 9 transmembrane collagen Any collagen polymer that passes through a lipid bilayer membrane. 87156 0 0 66280 9 interferon regulatory factor 3-interferon regulatory factor 7 complex An interferon regulatory factor complex that consists of a heterodimer of interferon regulatory factor 3 and interferon regulatory factor 7. 87157 0 0 66281 9 nuclear matrix The dense fibrillar network lying on the inner side of the nuclear membrane. 87160 0 0 66282 9 inclusion body A discrete intracellular part formed of aggregated molecules such as proteins or other biopolymers. 87161 0 0 66283 9 lamin filament Any of a group of intermediate-filament proteins that form the fibrous matrix on the inner surface of the nuclear envelope. They are classified as lamins A, B and C. 87163 0 0 66284 9 bursicon neuropeptide hormone complex A neuropeptide hormone secreted by the central nervous system of insects that stimulates the tanning and sclerotization of the adult cuticle following eclosion. The active hormone consists of an obligate heterodimer of the alpha and beta subunits. 87164 0 0 66285 9 cell leading edge The area of a motile cell closest to the direction of movement. 87165 0 0 66286 9 clathrin adaptor complex A membrane coat adaptor complex that links clathrin to a membrane. 87166 0 0 66287 9 alpha6-beta4 integrin-CD9 complex A protein complex that consists of an alpha6-beta4 integrin complex bound to the cell surface protein CD9. 87167 0 0 66288 9 perinucleolar chromocenter A chromocenter adjacent to the nucleolus. 87169 0 0 76489 46 transgenic \N 209388 0 0 66290 9 classical-complement-pathway C3/C5 convertase complex A heterodimeric protein complex that catalyzes the cleavage of complement components C3 and C5, and acts in the classical pathway of complement activation; consists of one monomer of C2a and one monomer of C4b; C2a is the catalytic subunit, but cannot catalyze cleavage alone. 87172 0 0 66291 9 apicoplast The plastid organelle found in apicomplexans. 87175 0 0 66292 9 myosin I complex A myosin complex containing a class I myosin heavy chain and associated light chains; myosin I heavy chains are single-headed, possess tails of various lengths, and do not self-associate into bipolar filaments; myosin I complexes are involved in diverse processes related to membrane traffic and cell movement. 87176 0 0 66293 9 integral to lumenal side of endoplasmic reticulum membrane Penetrating at least one phospholipid bilayer of the endoplasmic reticulum membrane, with the bulk of the gene product located on the side that faces the lumen. 87178 0 0 66294 9 neuromuscular junction The junction between the axon of a motor neuron and a muscle fiber. In response to the arrival of action potentials, the presynaptic button releases molecules of neurotransmitters into the synaptic cleft. These diffuse across the cleft and transmit the signal to the postsynaptic membrane of the muscle fiber, leading to a post-synaptic potential responsible of the muscle contraction. 87179 0 0 66295 9 riboflavin synthase complex An flavoprotein that catalyzes the reaction the breakdown of dimethyl(ribityl)lumazine to form riboflavin and ribitylamino-amino-dihydroxypyrimidine. 87180 0 0 66296 9 U2-type spliceosomal complex Any spliceosomal complex that forms during the splicing of a messenger RNA primary transcript to excise an intron that has canonical consensus sequences near the 5' and 3' ends. 87181 0 0 66297 9 nuclear cluster Discrete hetero-chromatin-containing foci in interphase nuclei, which comprise clusters of centromeric DNA (as defined by gamma-satellite sequences and the abundance of heterochromatin protein 1 (HP-1). 87183 0 0 66298 9 alpha9-beta1 integrin-VEGF-C complex A protein complex that consists of an alpha9-beta1 integrin complex bound to vascular endothelial growth factor C. 87185 0 0 66299 9 integral to plasma membrane Penetrating at least one phospholipid bilayer of a plasma membrane. May also refer to the state of being buried in the bilayer with no exposure outside the bilayer. 87187 0 0 66300 9 apical hemi-adherens junction A cell-substrate adherens junction found in the apical region of a cell, such as those found in cuticle-secreting epithelia, which connect the apical membrane to the cuticle. 87188 0 0 66301 9 DNA-directed RNA polymerase complex A protein complex that possesses DNA-directed RNA polymerase activity. 87190 0 0 66302 9 intrinsic to peroxisomal membrane Located in the peroxisomal membrane such that some covalently attached portion of the gene product, for example part of a peptide sequence or some other covalently attached group such as a GPI anchor, spans or is embedded in one or both leaflets of the membrane. 87191 0 0 66303 9 Gemin6-Gemin7-unrip complex A protein complex that contains Gemin6, Gemin7, and unrip (STRAP), and can bind to snRNAs; may play a role in snRNP assembly. 87192 0 0 66304 9 interstitial matrix A type of extracellular matrix found in interstitial connective tissue, characterized by the presence of fibronectins, proteoglycans, and types I, III, V, VI, VII and XII collagens. 87194 0 0 66305 9 plastid-encoded plastid RNA polymerase complex An RNA polymerase complex containing polypeptides encoded by the plastid genome. Plastid-encoded DNA-directed RNA polymerases resemble eubacterial multisubunit RNA polymerases, with a core composed of alpha, beta, and beta-prime subunits. Some forms contain multiple additional subunits. An additional sigma factor subunit is required for promoter recognition. 87196 0 0 66308 9 kainate selective glutamate receptor complex An assembly of four or five subunits which form a structure with an extracellular N-terminus and a large loop that together form the ligand binding domain. The C-terminus is intracellular. The ionotropic glutamate receptor complex itself acts as a ligand gated ion channel; on binding glutamate, charged ions pass through a channel in the center of the receptor complex. Kainate receptors are multimeric assemblies of GluR5-7 and KA-1/2 subunits. 87201 0 0 66309 9 RES complex A protein complex that is required for efficient splicing, and prevents leakage of unspliced pre-mRNAs from the nucleus (named for pre-mRNA REtention and Splicing). In Saccharomyces, the complex consists of Ist3p, Bud13p, and Pml1p. 87203 0 0 66310 9 horsetail nucleus The elongated nucleus which forms during the rapid oscillatory movement at meiotic prophase; characterized in Schizosaccharomyces pombe. 87208 0 0 77132 41 species authority \N 210035 0 0 66311 9 clathrin sculpted gamma-aminobutyric acid transport vesicle membrane The lipid bilayer surrounding a clathrin sculpted gamma-aminobutyric acid transport vesicle. 87209 0 0 66312 9 proton-transporting two-sector ATPase complex A large protein complex that catalyzes the synthesis or hydrolysis of ATP by a rotational mechanism, coupled to the transport of protons across a membrane. The complex comprises a membrane sector (F0, V0, or A0) that carries out proton transport and a cytoplasmic compartment sector (F1, V1, or A1) that catalyzes ATP synthesis or hydrolysis. Two major types have been characterized: V-type ATPases couple ATP hydrolysis to the transport of protons across a concentration gradient, whereas F-type ATPases, also known as ATP synthases, normally run in the reverse direction to utilize energy from a proton concentration or electrochemical gradient to synthesize ATP. A third type, A-type ATPases have been found in archaea, and are closely related to eukaryotic V-type ATPases but are reversible. 87210 0 0 66313 9 nucleic acid (obsolete GO:0005561) OBSOLETE (was not defined before being made obsolete). 87212 1 0 66314 9 box C/D snoRNP complex A ribonucleoprotein complex containing small nucleolar RNA of the box C/D type that can carry out ribose-2'-O-methylation of target RNAs. 87213 0 0 66315 9 serine-pyruvate aminotransferase complex An enzyme complex that catalyzes the formation of hydroxypyruvate and alanine from serine and pyruvate. 87214 0 0 66316 9 cellular bud neck polarisome Protein complex that has a role in determining cell polarity, found at the neck of a fungal bud before and during cytokinesis. 87216 0 0 66345 9 cell envelope An envelope that surrounds a bacterial cell and includes the cytoplasmic membrane and everything external, encompassing the periplasmic space, cell wall, and outer membrane if present. 87261 0 0 66346 9 nexine The inner, non-sculptured part of the exine which lies below the sexine. 87263 0 0 76490 46 T1 \N 209389 0 0 66317 9 MBF transcription complex A protein complex that binds to the Mlu1 cell cycle box (MCB) promoter element, consensus sequence ACGCGN, and is involved in regulation of transcription during the G1/S transition of the cell cycle. In Saccharomyces, the complex contains a heterodimer of the DNA binding protein Mbp1p and the activator Swi4p, and is associated with additional proteins known as Nrm1p, Msa1p, and Msa2p; in Schizosaccharomyces the complex contains Res1p, Res2p, and Cdc10p. 87217 0 0 66318 9 P-TEFb-cap methyltransferase complex A protein complex that is formed by the association of positive transcription elongation factor complex b (P-TEFb) with the mRNA capping methyltransferase. 87219 0 0 66319 9 citrate lyase complex Citrate lyase is a multienzyme complex with three constituents: the alpha subunit, citrate-ACP transferase; the beta subunit, citryl-ACP lyase; and the gamma subunit, an acyl-carrier protein which also carries the prosthetic group components. All three subunits are required for citrate lyase enzyme activity. 87222 0 0 66320 9 mitochondrial proton-transporting ATP synthase complex, coupling factor F(o) All non-F1 subunits of the mitochondrial hydrogen-transporting ATP synthase, including integral and peripheral mitochondrial inner membrane proteins. 87224 0 0 66321 9 CCR4-NOT core complex The core of the CCR4-NOT transcription factor complex. In Saccharomyces the CCR4-NOT core complex comprises Ccr4p, Caf1p, Not1p, Not2p, Not3p, Not4p, and Not5p. 87225 0 0 66322 9 protein storage vacuole membrane The lipid bilayer surrounding a protein storage vacuole. 87227 0 0 66323 9 nuclear cyclin-dependent protein kinase holoenzyme complex Cyclin-dependent protein kinase (CDK) complex found in the nucleus. 87228 0 0 66324 9 dsRNA viral genome A viral genome composed of double stranded RNA. 87229 0 0 66325 9 sarcoplasmic reticulum A fine reticular network of membrane-limited elements that pervades the sarcoplasm of a muscle cell; continuous over large portions of the cell and with the nuclear envelope; that part of the endoplasmic reticulum specialized for calcium release, uptake and storage. 87230 0 0 66326 9 AP-type membrane coat adaptor complex Any of several heterotetrameric complexes that link clathrin (or another coat-forming molecule, as hypothesized for AP-3 and AP-4) to a membrane surface; they are found on coated pits and coated vesicles, and mediate sorting of cargo proteins into vesicles. Each AP complex contains two large (a beta and one of either an alpha, gamma, delta, or epsilon) subunits (110-130 kDa), a medium (mu) subunit (approximately 50 kDa), and a small (sigma) subunit (15-20 kDa). 87232 0 0 66327 9 etioplast A plastid arrested in the development of chloroplasts from proplastids due to absence of light or low light conditions. 87234 0 0 66328 9 host cell endomembrane system A collection of membranous structures involved in transport within the host cell. The main components of the endomembrane system are endoplasmic reticulum, Golgi bodies, vesicles, cell membrane and nuclear envelope. Members of the endomembrane system pass materials through each other or though the use of vesicles. The host is defined as the larger of the organisms involved in a symbiotic interaction. 87235 0 0 66329 9 F-actin capping protein complex A heterodimer consisting of alpha and beta subunits that binds to and caps the barbed ends of actin filaments, thereby regulating the polymerization of actin monomers but not severing actin filaments. 87236 0 0 66330 9 SPOTS complex A multiprotein complex at least composed of serine palmitoyltransferases and ORM proteins (known as ORMDL proteins in mammals and other higher vertebrates) that plays a key role in sphingolipid homeostasis. 87238 0 0 66331 9 extrinsic to thylakoid membrane Loosely bound to one surface of a thylakoid membrane, but not integrated into the hydrophobic region. 87240 0 0 66332 9 plasma membrane-derived thylakoid lumen The volume enclosed by a plasma membrane-derived thylakoid. 87241 0 0 66333 9 mitochondrial tricarboxylic acid cycle enzyme complex Any of the heteromeric enzymes, located in the mitochondrion, that act in the tricarboxylic acid (TCA) cycle. 87242 0 0 66423 9 chloroplast large ribosomal subunit The large subunit of a ribosome contained within a chloroplast. 87380 0 0 66334 9 integral to plastid inner membrane Penetrating at least one phospholipid bilayer of a plastid inner membrane. May also refer to the state of being buried in the bilayer with no exposure outside the bilayer. 87243 0 0 66335 9 RAN-binding protein (obsolete GO:0005645) OBSOLETE (was not defined before being made obsolete). 87244 1 0 66336 9 dendritic spine head Distal part of the dendritic spine, that carries the post-synaptic density. 87245 0 0 66366 9 HDA1 complex A tetrameric histone deacetylase complex that contains a Class II deacetylase catalytic subunit. In S. cerevisiae it is composed of two Hda1p subunits along with Hda2p and Hda3p. 87296 0 0 77133 41 subtaxa \N 210036 0 0 66337 9 BLOC complex Any of several protein complexes required for the biogenesis of specialized organelles of the endosomal-lysosomal system, such as melanosomes, platelet dense granules, and other related organelles; acronym for biogenesis of lysosomal-related organelles complex. 87246 0 0 66338 9 viral transcriptional complex Specific locations and structures in the virus infected cell involved in transcribing the viral genome. 87249 0 0 66339 9 transcription factor TFIIIC complex A heterotrimeric transcription factor complex that is involved in regulating transcription from RNA polymerase III (Pol III) promoters. TFIIIC contains three conserved subunits that associate with the proximal Pol III promoter element, and additional subunits that associate with sequence elements downstream of the promoter and are more diverged among species. It also functions as a boundary element to partition genome content into distinct domains outside Pol III promoter regions. 87250 0 0 66340 9 cellular bud tip The end of a cellular bud distal to the site of attachment to the mother cell. 87252 0 0 66341 9 RENT complex A protein complex that mediates transcriptional silencing at the rDNA locus (the name derives from regulator of nucleolar silencing and telophase). In Saccharomyces the complex contains Net1p, Sir2p, Cdc14p, and at least one more subunit. 87253 0 0 66342 9 multimeric ribonuclease P complex A ribonuclease P complex that generally contains a single RNA molecule and several protein molecules. Examples of this complex are found in Archaeal species. 87255 0 0 66343 9 murein sacculus (obsolete GO:0009278) OBSOLETE. A peptidoglycan polymer that forms the shape-determining structure of the cell all of Gram-negative bacteria. 87257 1 0 66344 9 Kv4.3-DPP6 channel complex A voltage-gated potassium channel complex that contains the peptidase-related protein DPP6 associated with the channel via interaction with the Kv alpha subunit 4.3. 87258 0 0 69303 13 embryo plant cell A plant cell that is part of a plant embryo. 91452 0 0 66347 9 mitochondrial large ribosomal subunit The larger of the two subunits of a mitochondrial ribosome. Two sites on the ribosomal large subunit are involved in translation: the aminoacyl site (A site) and peptidyl site (P site). 87264 0 0 66348 9 interleukin-6 receptor complex A hexameric protein complex consisting of two molecules each of interleukin-6, interleukin-6 receptor alpha chain, and gp-130. 87265 0 0 66349 9 calcium- and calmodulin-dependent protein kinase complex An enzyme complex which in eukaryotes is composed of four different chains: alpha, beta, gamma, and delta. The different isoforms assemble into homo- or heteromultimeric holoenzymes composed of 8 to 12 subunits. Catalyzes the phosphorylation of proteins to O-phosphoproteins. 87267 0 0 66350 9 small nuclear ribonucleoprotein complex A complex composed of RNA of the small nuclear RNA (snRNA) class and protein, found in the nucleus of a eukaryotic cell. These are typically named after the snRNA(s) they contain, e.g. U1 snRNP or U4/U6 snRNP. Many, but not all, of these complexes are involved in splicing of nuclear mRNAs. 87269 0 0 66351 9 cytochrome o ubiquinol oxidase complex A protein complex that possesses cytochrome o ubiquinol oxidase activity; consists of four polypeptide subunits and associated prosthetic groups. 87270 0 0 66352 9 signal recognition particle receptor complex A transmembrane heterodimeric protein located in the membrane of the rough endoplasmic reticulum. Both subunits contain GTPase domains with which signal recognition particle interacts. In the presence of GTP and SRP receptor, SRP is released from the ribosome-nascent chain complex. 87274 0 0 66353 9 calcineurin complex A heterodimeric calcium ion and calmodulin dependent protein phosphatase composed of catalytic and regulatory subunits; the regulatory subunit is very similar in sequence to calmodulin. 87275 0 0 66354 9 voltage-gated sodium channel complex A sodium channel in a cell membrane whose opening is governed by the membrane potential. 87277 0 0 66355 9 cytosolic oxoglutarate dehydrogenase complex A cytosolic complex of multiple copies of three enzymatic components: oxoglutarate dehydrogenase (lipoamide) ; EC:1.2.4.2 (E1), dihydrolipoamide S-succinyltransferase ; EC:2.3.1.61 (E2) and dihydrolipoamide dehydrogenase ; EC:1.8.1.4 (E3); catalyzes the overall conversion of 2-oxoglutarate to succinyl-CoA and carbon dioxide (CO2). 87278 0 0 66356 9 syntaxin-6-syntaxin-16-Vti1a complex A SNARE complex that contains syntaxin 6, syntaxin 16, and Vti1a (or orthologs thereof). 87280 0 0 66357 9 BRCA2-MAGE-D1 complex A heterodimeric protein complex formed of BRCA2 and MAGE-D1; may mediate the synergistic activities of the two proteins in regulating cell growth. 87281 0 0 66358 9 actomyosin Any complex of actin, myosin, and accessory proteins. 87283 0 0 66359 9 Rpd3L-Expanded complex A protein complex that contains a histone deacetylase and is part of the chromatin remodeling machinery. In Saccharomyces cerevisiae this complex contains the Rpd3p, Sin3p, Ume1p, Pho23p, Sap30p, Sds3p, Cti6p, Rxt2p, Rxt3p, Dep1p, Ume6p, Ash1p, Dot6p, Snt1, Sif2p, Set3p, Hos2p, Tos4p and Tod6p proteins. 87284 0 0 66360 9 dynactin complex A 20S multiprotein assembly of total mass about 1.2 MDa that activates dynein-based activity in vivo. A large structural component of the complex is an actin-like 40 nm filament composed of actin-related protein, to which other components attach. 87286 0 0 66361 9 amyloplast membrane Either of the lipid bilayers that surround an amyloplast and form the amyloplast envelope. 87287 0 0 66362 9 cortical endoplasmic reticulum A cortical network of highly dynamic tubules that are juxtaposed to the plasma membrane and undergo ring closure and tubule-branching movements. 87288 0 0 66474 9 alpha3-beta1 integrin-thrombospondin complex A protein complex that consists of an alpha3-beta1 integrin complex bound to thrombospondin. 87463 0 0 66475 9 dendritic branch A dendrite arising from another dendrite. 87465 0 0 66363 9 plasma membrane succinate dehydrogenase complex A multimeric complex which consists of flavoprotein (subunit A ; InterPro:IPR003952), iron-sulfur protein (subunit B) and membrane-bound cytochrome b560 (subunit C; InterPro:IPR000701). In some Archaea, the membrane-bound subunits (C or C and D) do not necessarily contain heme. Membrane-bound subunits can bind/react with quinones. Examples of this component are found in Bacterial species. 87291 0 0 66364 9 Noc complex Any of several heterodimers containing one or two Noc proteins, associated with preribosomal complexes; involved in ribosome biogenesis. 87293 0 0 66365 9 spectrosome A germline specific spherical organelle, rich in membrane skeletal proteins. Precursor to the fusome. 87295 0 0 66511 9 FHL3-CREB complex A protein complex that contains CREB and FHL3, and is involved in transcriptional regulation. 87522 0 0 66367 9 UBC13-UEV1A complex A heterodimeric ubiquitin conjugating enzyme complex that catalyzes assembly of K63-linked polyubiquitin chains and is involved in NF-kappaB activation. In humans at least, the complex comprises the ubiquitin-conjugating enzyme UBC13 and ubiquitin-conjugating enzyme variant 1A (UEV1A). 87299 0 0 66368 9 ethanolamine degradation polyhedral organelle An organelle found in bacteria consisting of a proteinaceous coat containing enzymes for the degradation of ethanolamine whose purpose is the protection of the rest of the cell from the toxic acetaldehyde product of the enzyme ethanolamine ammonia lyase. 87301 0 0 66369 9 nucleus A membrane-bounded organelle of eukaryotic cells in which chromosomes are housed and replicated. In most cells, the nucleus contains all of the cell's chromosomes except the organellar chromosomes, and is the site of RNA synthesis and processing. In some species, or in specialized cell types, RNA metabolism or DNA replication may be absent. 87303 0 0 66370 9 T-tubule Invagination of the plasma membrane of a muscle cell that extends inward from the cell surface around each myofibril. The ends of T-tubules make contact with the sarcoplasmic reticulum membrane. 87304 0 0 66371 9 host intracellular part Any constituent part of the living contents of a host cell; the matter contained within (but not including) the plasma membrane, usually taken to exclude large vacuoles and masses of secretory or ingested material. In eukaryotes it includes the nucleus and cytoplasm. The host is defined as the larger of the organisms involved in a symbiotic interaction. 87305 0 0 66372 9 H zone A relatively pale zone traversing the center of the A band of a sarcomere, visible in relaxed muscle fibers; consists of the central portion of thick (myosin) filaments that are not overlapped by thin (actin) filaments. 87306 0 0 66373 9 anchored to plasma membrane Tethered to the plasma membrane by a covalently attached anchor, such as a lipid group, that is embedded in the membrane. When used to describe a protein, indicates that the peptide sequence does not span the membrane. 87308 0 0 66374 9 host cell periplasmic space The region between the inner (cytoplasmic) and outer host membrane (Gram-negative Bacteria) or inner host membrane and host cell wall (Fungi). 87309 0 0 66375 9 4-aminobutyrate transaminase complex A homodimeric protein complex that possesses 4-aminobutyrate transaminase activity. 87310 0 0 66376 9 host cell mitochondrial outer membrane The outer, i.e. cytoplasm-facing, lipid bilayer of the host cell mitochondrial envelope. 87312 0 0 66377 9 polysomal ribosome A ribosome bound to mRNA that forms part of a polysome. 87313 0 0 66378 9 axon terminus Terminal inflated portion of the axon, containing the specialized apparatus necessary to release neurotransmitters. The axon terminus is considered to be the whole region of thickening and the terminal button is a specialized region of it. 87314 0 0 66379 9 myosin VIII complex A myosin complex containing a dimer of class VIII myosin heavy chains and associated light chains. Myosin VIII is predicted to be dimeric, and contain an unusual 100-190 residue N-terminal extension prior to their motor domains, 3-4 IQ motifs, a short region (~70 residues) of predicted alpha-helical coiled coil and a C-terminal domain. 87315 0 0 66380 9 leaf papilla A plant cell papilla that is part of a leaf papilla cell. 87316 0 0 66381 9 spitzenkorper Structure within the hyphal tip of filamentous fungi that acts as an organizing center for hyphal tip growth; may function to supply vesicles to the elongating tip and/or to organize cytoskeletal microfilaments. 87317 0 0 66382 9 ascus (obsolete GO:0005627) OBSOLETE. A sac-like fruiting body (ascomycete Fungi); contains ascospores (typically eight in number). 87320 1 0 66383 9 PAS complex A protein complex that contains a phosphatidylinositol-3-phosphate 5-kinase subunit (Fab1p in yeast; PIKfyve in mammals), a kinase activator, and a phosphatase, and may also contain additional proteins; it is involved in regulating the synthesis and turnover of phosphatidylinositol 3,5-bisphosphate. In mammals the complex is composed of PIKFYVE, FIG4 and VAC14. In yeast it is composed of Atg18p, Fig4p, Fab1p, Vac14p and Vac7p. 87321 0 0 66384 9 trimeric positive transcription elongation factor complex b A positive transcription elongation factor complex b that comprises three subunits; an example is the budding yeast Ctk complex, which consists of Ctk1p, Ctk2p and Ctk3p. 87325 0 0 66385 9 intracellular organelle lumen An organelle lumen that is part of an intracellular organelle. 87327 0 0 66386 9 insulin-like growth factor binding protein (obsolete GO:0017052) OBSOLETE (was not defined before being made obsolete). 87328 1 0 66387 9 alpha5-beta1 integrin-endostatin complex A protein complex that consists of an alpha5-beta1 integrin complex bound to endostatin, the NC1 domain of the alpha1 chain of type XVIII collagen. 87329 0 0 66388 9 gamma-tubulin large complex, spindle pole body A complex of gamma tubulin and associated proteins thought to be formed by multimerization of gamma-tubulin small complexes located in the spindle pole body. 87330 0 0 66389 9 mismatch repair complex Any complex formed of proteins that act in mismatch repair. 87331 0 0 66390 9 AMP-activated protein kinase complex A protein complex that possesses AMP-dependent protein kinase activity. 87332 0 0 66391 9 mitotic cohesin complex A cohesin complex that mediates sister chromatid cohesion during mitosis; has a subunit composition distinct from that of the meiotic cohesin complex. 87333 0 0 66392 9 phenylalanine-tRNA ligase complex An enzyme complex that catalyzes the ligation of phenylalanine to tRNA(Phe), forming L-phenylalanyl-tRNA(Phe). 87335 0 0 66393 9 I band A region of a sarcomere that appears as a light band on each side of the Z disc, comprising a region of the sarcomere where thin (actin) filaments are not overlapped by thick (myosin) filaments; contains actin, troponin, and tropomyosin; each sarcomere includes half of an I band at each end. 87336 0 0 66394 9 mast cell granule Coarse, bluish-black staining cytoplasmic granules, bounded by a plasma membrane and found in mast cells and basophils. Contents include histamine, heparin, chondroitin sulfates, chymase and tryptase. 87337 0 0 66395 9 proteasome core complex, beta-subunit complex The proteasome core subcomplex that constitutes the two inner rings of the proteasome core complex. An example of this component is found in Mus musculus. 87339 0 0 66396 9 mitochondrial alpha-ketoglutarate dehydrogenase complex Mitochondrial complex that possesses alpha-ketoglutarate dehydrogenase activity. 87341 0 0 66397 9 endocytic vesicle membrane The lipid bilayer surrounding an endocytic vesicle. 87342 0 0 67064 9 untranslated RNA (obsolete GO:0005571) OBSOLETE (was not defined before being made obsolete). 88332 1 0 66398 9 perineuronal net A dense extracellular matrix (ECM) structure that forms around many neuronal cell bodies and dendrites late in development and is responsible for synaptic stabilization in the adult brain. 87343 0 0 66399 9 oral apparatus Complex basket- or funnel-like structure used by the cell to collect food and channel it to the cytostome; includes specialized sub-structures made up of closely-spaced cilia and underlying basal bodies and fibrillar systems. 87345 0 0 66400 9 IPAF inflammasome complex A protein complex that consists of four components, NALP1, PYCARD (ASC)(27), caspase-1 and caspase-5, and includes among its functions that of being the primary mediator of susceptibility to anthrax lethal toxin. 87346 0 0 66401 9 BBSome A protein complex that associates with the primary cilium and is involved in cilium biogenesis; consists of seven conserved proteins: BBS1, BBS2, BBS4, BBS5, BBS7, BBS8 and BBS9. 87348 0 0 66402 9 Cul7-RING ubiquitin ligase complex A ubiquitin ligase complex in which a cullin from the Cul7 subfamily and a RING domain protein form the catalytic core; substrate specificity is conferred by a Skp1 linker and an F-box protein. 87350 0 0 66403 9 lysosomal proton-transporting V-type ATPase, V1 domain The V1 domain of a proton-transporting V-type ATPase found in the lysosomal membrane. 87351 0 0 66404 9 endoplasmic reticulum-Golgi intermediate compartment membrane The lipid bilayer surrounding any of the compartments of the endoplasmic reticulum (ER)-Golgi intermediate compartment system. 87352 0 0 66405 9 lateral element A proteinaceous core found between sister chromatids during meiotic prophase. 87354 0 0 76491 46 T2 \N 209390 0 0 66406 9 synaptosome Any of the discrete particles (nerve-ending particles) formed from the clublike presynaptic nerve endings that resist disruption and are snapped or torn off their attachments when brain tissue is homogenized in media isosmotic to plasma. 87355 0 0 66407 9 PDX1-PBX1b-MRG1 complex A protein complex that contains the homeodomain proteins PDX1, PBX1b and MRG1 (MEIS2) and is involved in the transcriptional regulation of pancreatic acinar cell-specific genes. 87356 0 0 66408 9 small nucleolar RNA (obsolete GO:0005733) OBSOLETE (was not defined before being made obsolete). 87359 1 0 66409 9 microtubule organizing center part Any constituent part of a microtubule organizing center, a region in a eukaryotic cell, such as a centrosome or basal body, from which microtubules grow. 87360 0 0 66410 9 plastid chromosome A circular DNA molecule containing plastid encoded genes. 87361 0 0 66411 9 myosin XI complex A myosin complex containing a dimer of class XI myosin heavy chains and associated light chains. Myosin XI heavy chain sizes are similar in molecular structure to the class V myosins with 5 to 6 IQ motifs and tail regions with predicted coiled coil domains (forming dimeric molecules) and large C-terminal regions. 87362 0 0 66412 9 cytosolic electron transfer flavoprotein complex A protein complex located in the cytosol containing flavin adenine dinucleotide (FAD) that, together with an acyl-CoA dehydrogenase, forms a system that oxidizes an acyl-CoA molecule and reduces ubiquinone and other acceptors. 87363 0 0 66413 9 tRNA-splicing ligase complex A protein complex that catalyzes the ligation of cleaved pre-tRNAs by directly joining spliced tRNA halves to mature-sized tRNAs by incorporating the precursor-derived splice junction phosphate into the mature tRNA as a canonical 3',5'-phosphodiester. 87364 0 0 66414 9 middle lamella Layer of intercellular material, chiefly pectic substances, cementing together the primary walls of contiguous cells. 87366 0 0 66415 9 CSK-GAP-A.p62 complex A protein complex that contains the protein-tyrosine kinase CSK and the GTPase-activating protein (GAP)-associated p62 (GAP-A.p62); may mediate translocation of proteins, including GAP and CSK, to membrane or cytoskeletal regions upon c-Src activation. 87367 0 0 66416 9 exomer complex A protein complex that forms a coat structure on vesicles involved in exocytosis of proteins from the trans-Golgi network to the cell surface; in Saccharomyces, the complex contains Chs5p, Chs6p, and Chs6p paralogues. 87369 0 0 66417 9 dosage compensation complex A protein or protein-RNA complex that localizes to one or more of the sex chromosome(s), where it acts to normalize transcription between different sexes. 87372 0 0 66418 9 plastid acetate CoA-transferase complex An acetate CoA-transferase complex located in the stroma of a plastid. 87373 0 0 66419 9 Ctf18 RFC-like complex A heptameric complex related to replication factor C, which loads the DNA polymerase processivity factor proliferating cell nuclear antigen (PCNA) onto DNA and plays a vital role in chromosome cohesion. In Saccharomyces the subunits are known as Ctf18p, Rfc2p, Rfc3p, Rfc4p, Rfc5p, Dcc1p, and Ctf8p. 87374 0 0 66420 9 lamellar body A membrane-bounded organelle, specialized for the storage and secretion various substances (surfactant phospholipids, glycoproteins and acid phosphates) which are arranged in the form of tightly packed, concentric, membrane sheets or lamellae. Has some similar properties to, but is distinct from, a lysosome. 87375 0 0 66421 9 alpha6-beta4 integrin-Shc-Grb2 complex A protein complex that consists of an alpha6-beta4 integrin complex bound to the adaptor proteins Shc and Grb2. 87377 0 0 66422 9 astral microtubule Any of the spindle microtubules that radiate in all directions from the spindle poles and are thought to contribute to the forces that separate the poles and position them in relation to the rest of the cell. 87379 0 0 66424 9 small nucleolar ribonucleoprotein complex A ribonucleoprotein complex that contains an RNA molecule of the small nucleolar RNA (snoRNA) family and associated proteins. Most are involved in a step of processing of rRNA: cleavage, 2'-O-methylation, or pseudouridylation. The majority, though not all, fall into one of two classes, box C/D type or box H/ACA type. 87381 0 0 66425 9 prospore septin filament array Arrays of septin filaments, or bars, found in a series of filamentous structures; observed in the prospore membrane during spore formation. 87382 0 0 66426 9 striated muscle dense body A vinculin-containing myofibril attachment structure of striated muscle that connects sarcomeres to the extracellular matrix. In nematode body wall muscle, the dense body performs the dual role of Z-disk and costamere. 87383 0 0 66427 9 insulin-responsive compartment A small membrane-bounded vesicle that releases its contents by exocytosis in response to insulin stimulation; the contents are enriched in GLUT4, IRAP and VAMP2. 87385 0 0 66507 9 repressor ecdysone receptor complex A protein complex consisting of a heterodimer of Ecdysone receptor (EcR) and ultraspiracle (usp) plus an associated corepressor such as SMRTER, which represses transcription of target genes. 87518 0 0 66428 9 Ada2/Gcn5/Ada3 transcription activator complex A multiprotein complex that possesses histone acetyltransferase and is involved in regulation of transcription. The budding yeast complex includes Gcn5p, two proteins of the Ada family, and two TBP-associate proteins (TAFs); analogous complexes in other species have analogous compositions, and usually contain homologs of the yeast proteins. 87387 0 0 66429 9 nuclear RNA-directed RNA polymerase complex A complex required for RNAi mediated heterochromatin assembly. In S. pombe this contains RNA-directed RNA polymerase, a putative helicase and a protein containing a pap25 associated domain. 87389 0 0 66430 9 Mad-Max-mSin3A complex A transcriptional repressor complex that contains a heterodimer of the bHLH-ZIP proteins Mad and Max, plus mSin3A, a homolog of the yeast Sin3p. 87391 0 0 66431 9 SSL2-core TFIIH complex A complex which is part of both the general transcription factor TFIIH and the nucleotide-excision repair factor 3 complex. It is composed of the tightly associated 5 subunit core TFIIH subcomplex plus one additional, more loosely associated subunit. The subunits are well conserved from yeast to humans. In S. cerevisiae, the 5-subunit core is composed of Rad3, Tfb1, Tfb2, Ssl1, Tfb4 and the loosely associated subunit is Ssl2p (also called Rad25). In humans, the 5 subunit core is composed of ERCC2, p62, p55, p44, p34 and the loosely associated subunit is XPB. 87393 0 0 66432 9 cytosol The part of the cytoplasm that does not contain organelles but which does contain other particulate matter, such as protein complexes. 87394 0 0 66433 9 amyloplast inner membrane The inner, i.e. lumen-facing, lipid bilayer of the amyloplast envelope; also faces the amyloplast stroma. 87395 0 0 69449 13 stamen stomatal complex A phyllome stomatal complex that is part of a stamen. 91605 0 0 66435 9 photosystem I antenna complex The antenna complex of photosystem I. A photosystem has two closely linked components, an antenna containing light-absorbing pigments and a reaction center. Each antenna contains one or more light-harvesting complexes (LHCs). 87397 0 0 66436 9 protocadherin-alpha-v7-protocadherin-gamma-b2 complex A protein complex that contains the cell adhesion molecules protocadherin-alpha-v7 and protocadherin-gamma-b2, and is involved in the regulation of protein localization to the plasma membrane. 87398 0 0 66437 9 core mediator complex A protein complex that interacts with the carboxy-terminal domain of the largest subunit of RNA polymerase II and plays an active role in transducing the signal from a transcription factor to the transcriptional machinery. The core mediator complex has a stimulatory effect on basal transcription, and contains most of the same subdomains as the larger form of mediator complex -- a head domain comprising proteins known in Saccharomyces as Srb2, -4, and -5, Med6, -8, and -11, and Rox3 proteins; a middle domain comprising Med1, -4, and -7, Nut1 and -2, Cse2, Rgr1, Soh1, and Srb7 proteins; and a tail consisting of Gal11p, Med2p, Pgd1p, and Sin4p -- but lacks the regulatory subcomplex comprising Ssn2, -3, and -8, and Srb8 proteins. Metazoan core mediator complexes have similar modular structures and include homologs of yeast Srb and Med proteins. 87399 0 0 66438 9 low-density lipoprotein particle A lipoprotein particle, rich in cholesterol esters and low in triglycerides that is typically composed of APOB100 and APOE and has a density of 1.02-1.06 g/ml and a diameter of between 20-25 nm. LDL particles are formed from VLDL particles (via IDL) by the loss of triglyceride and gain of cholesterol ester. They transport endogenous cholesterol (and to some extent triglycerides) from peripheral tissues back to the liver. 87403 0 0 66439 9 clathrin sculpted glutamate transport vesicle A clathrin sculpted lipid bilayer membrane-enclosed vesicle after clathrin release and containing glutamate. 87404 0 0 66440 9 Rab-protein geranylgeranyltransferase complex A heterodimeric enzyme complex, which in mammals is composed of an alpha and a beta subunit, and which associates with an accessory protein Rep (Rab escort protein). Catalyzes of the transfer of a geranyl-geranyl group from geranylgeranyl pyrophosphate to a Rab protein. 87405 0 0 66441 9 mitochondrial respiratory chain complex II A protein complex located in the mitochondrial inner membrane that forms part of the mitochondrial respiratory chain. Contains the four polypeptide subunits of succinate dehydrogenase, flavin-adenine dinucleotide and iron-sulfur. Catalyzes the oxidation of succinate by ubiquinone. Connects the TCA cycle with the respiratory chain. 87407 0 0 66442 9 sarcosine oxidase complex A complex consisting of 4 protein subunits as a heterotetramer, that possesses sarcosine oxidase activity. 87412 0 0 66443 9 transcription factor TFIIIB-beta complex A transcription factor TFIIIB-beta complex that contains the TATA-binding protein (TBP), B'' and BRF, and is involved in the regulation of transcription from type 2 RNA polymerase III promoters. 87413 0 0 66444 9 vitelline envelope A glycoprotein-based structure that lies outside the plasma membrane and surrounds the egg before fertilization. 87414 0 0 66445 9 Sin3 complex A multiprotein complex that functions broadly in eukaryotic organisms as a transcriptional repressor of protein-coding genes, through the gene-specific deacetylation of histones. Amongst its subunits, the Sin3 complex contains Sin3-like proteins, and a number of core proteins that are shared with the NuRD complex (including histone deacetylases and histone binding proteins). The Sin3 complex does not directly bind DNA itself, but is targeted to specific genes through protein-protein interactions with DNA-binding proteins. 87415 0 0 66446 9 nuclear outer membrane-endoplasmic reticulum membrane network The continuous network of membranes encompassing the nuclear outer membrane and the endoplasmic reticulum membrane. 87417 0 0 66447 9 host cell endoplasmic reticulum-Golgi intermediate compartment A complex system of membrane-bounded compartments located between host cell endoplasmic reticulum (ER) and the host Golgi complex, with a distinctive membrane protein composition; involved in ER-to-Golgi transport. 87418 0 0 66448 9 discoidal high-density lipoprotein particle A newly formed high-density lipoprotein particle; consists of a phospholipid bilayer surrounded by two or more APOA1 molecules. The discoidal HDL particle is formed when lipid-free or lipid-poor APOA1 acquires phospholipids and unesterified cholesterol from either cell membranes or triglyceride-rich lipoproteins (undergoing lipolysis by lipoprotein lipase). 87419 0 0 66449 9 rhoptry A large, club-shaped secretory organelle that forms part of the apical complex of an apicomplexan parasite, and consists of a bulbous body and a narrow electron-dense neck that extends through the conoid at the apical tip of the parasite. The rhoptry necks serve as ducts through which the contents of the rhoptries are secreted after attachment to the host has been completed and at the commencement of invasion. Rhoptry proteins function in the biogenesis and host organellar association of the parasitophorous vacuole. 87420 0 0 76515 47 Preliminary Yield Trial \N 209412 0 0 66450 9 mitochondrial processing peptidase complex A protein complex that consists of a catalytic alpha subunit (alpha-MPP) and a regulatory beta subunit (beta-MPP), and catalyzes the release of N-terminal targeting peptides from precursor proteins imported into the mitochondrion. 87422 0 0 66451 9 Cdc48p-Npl4p-Ufd1p AAA ATPase complex A multiprotein ATPase complex required for the efficient dislocation of ER-lumenal degradation substrates, and their subsequent proteolysis by the proteasome. In budding yeast, this complex includes Cdc48p, Npl4p and Ufd1p proteins. 87424 0 0 66452 9 trans spliceosomal complex A spliceosomal complex that forms during the addition of a specific spliced leader (SL) sequence to the 5'-end of a messenger RNA primary transcript, a process which occurs in a number of eukaryotic organisms, including trypanosomatid protozoans, euglenoids, nematodes, trematodes, and chordates. 87427 0 0 66453 9 recycling endosome Organelle consisting of networks of 60nm tubules organized around the microtubule organizing centre in some cell types. They transport receptors from late endosomes back to the plasma membrane for recycling and are also involved in membrane trafficking. 87428 0 0 66454 9 interleukin-20 receptor complex A protein complex that binds interleukin-20; comprises an alpha and a beta subunit. 87432 0 0 66455 9 Arp2/3 protein complex A stable protein complex that contains two actin-related proteins, Arp2 and Arp3, and five novel proteins (ARPC1-5), and functions in the nucleation of branched actin filaments. 87433 0 0 66456 9 cilium membrane The portion of the plasma membrane surrounding a cilium. 87435 0 0 69501 13 gynoecium A collective phyllome structure composed of two or more carpels. 91662 0 0 66458 9 spectrin-associated cytoskeleton The part of the cytoskeleton composed of spectrin, protein 4.1 and ankyrin. Spectrin-associated cytoskeleton is associated with the plasma membrane. 87437 0 0 66459 9 synaptic vesicle membrane The lipid bilayer surrounding a synaptic vesicle. 87439 0 0 66460 9 laminin-7 complex A laminin complex composed of alpha3, beta2 and gamma1 polypeptide chains. 87440 0 0 66461 9 BRCA1-B complex A protein complex that contains the BRCA1-BARD1 heterodimer, BACH1 and TopBP1, and binds to DNA during S phase at DNA damage sites. 87441 0 0 66462 9 SCAR complex A heterotetrameric complex that includes orthologues of human PIR121, Nap125 and HSPC300 and regulates actin polymerization and/or depolymerization through small GTPase mediated signal transduction. 87443 0 0 66463 9 DNA recombinase mediator complex A protein complex that promotes nucleoprotein filament formation during homologous recombination; most known examples contain two or more RecA family proteins (often Rad51 paralogs). 87445 0 0 66464 9 amyloplast starch grain Plant storage body for amylose and amylopectin, 1-100um in diameter, and located in amyloplasts. Also contains small amounts of enzymes, amino acids, lipids and nucleic acids. The shape of the grain varies widely amongst species, but is often spherical or disk-shaped. 87446 0 0 66465 9 gap junction A cell-cell junction that is composed of an array of small channels that permit small molecules to pass from one cell to another. At gap junctions, the membranes of two adjacent cells are separated by a uniform narrow gap of about 2-4 nm that is spanned by channel-forming proteins called connexins, which form hexagonal tubes called connexons. 87447 0 0 66466 9 intrinsic to organelle membrane Located in an organelle membrane such that some covalently attached portion of the gene product, for example part of a peptide sequence or some other covalently attached group such as a GPI anchor, spans or is embedded in one or both leaflets of the membrane. 87449 0 0 66467 9 pilus shaft The long, slender, mid section of a pilus. 87450 0 0 66468 9 protein phosphatase type 2A complex A protein complex that has protein serine/threonine phosphatase activity that is polycation-stimulated (PCS), being directly stimulated by protamine, polylysine, or histone H1; it constitutes a subclass of several enzymes activated by different histones and polylysine, and consists of catalytic, scaffolding, and regulatory subunits. The catalytic and scaffolding subunits form the core enzyme, and the holoenzyme also includes the regulatory subunit. 87451 0 0 66469 9 interferon regulatory factor 3-interferon regulatory factor 5 complex An interferon regulatory factor complex that consists of a heterodimer of interferon regulatory factor 3 and interferon regulatory factor 5. 87453 0 0 66470 9 lamina lucida The electron-lucent layer of the basal lamina adjacent to the basal plasma membrane of the cells that rest on the lamina. 87455 0 0 66471 9 telomerase catalytic core complex The minimal catalytic core of telomerase is a ribonucleoprotein complex composed of a catalytic reverse transcriptase subunit and an RNA subunit that provides the template for telomeric DNA addition. 87456 0 0 66472 9 glycogen granule Cytoplasmic bead-like structures of animal cells, visible by electron microscope. Each granule is a functional unit with the biosynthesis and catabolism of glycogen being catalyzed by enzymes bound to the granule surface. 87458 0 0 66473 9 dense nuclear body A location in the host cell nucleus where viral proteins colocalize late in infection prior to the onset of viral DNA synthesis. More than one site can be present simultaneously. 87461 0 0 66476 9 Mad-Max-mSin3B complex A transcriptional repressor complex that contains a heterodimer of the bHLH-ZIP proteins Mad and Max, plus mSin3B, a homolog of the yeast Sin3p. 87467 0 0 66477 9 connecting hemi-adherens junction A cell-substrate adherens junction, also known as a hemiadherens junction (HAJ) that forms one of a pair of junctions in opposing cells that are separated by only 30-40nm, with a thin line of extracellular electron-dense material in between; found where muscles attach to epidermal cells directly (in insects). 87468 0 0 66478 9 alpha8-beta1 integrin complex An integrin complex that comprises one alpha8 subunit and one beta1 subunit. 87469 0 0 66479 9 gamma-tubulin ring complex, centrosomal A centrosome-localized multiprotein complex composed of gamma-tubulin and other non-tubulin proteins assembled into a ring structure that is thought to be the unit of nucleation at the minus end of a microtubule. Gamma-tubulin small complexes are thought to be the core repeating units of the ring. 87470 0 0 66480 9 subapical complex The most apical region of the lateral plasma membrane of an invertebrate epithelial cell. The subapical complex lies above the zonula adherens and the septate junction, and is comparable to the position of the tight junction of vertebrate cells. 87474 0 0 66508 9 Golgi-associated vesicle Any vesicle associated with the Golgi complex and involved in mediating transport within the Golgi or between the Golgi and other parts of the cell. 87519 0 0 76516 47 Uniform Yield Trial \N 209413 0 0 66481 9 formin-nucleated actin cable An actin filament bundle that consists of short filaments organized into bundles of uniform polarity, and is nucleated by formins. In fungal cells, myosin motors transport cargo along actin cables toward sites of polarized cell growth; actin cables may play a similar role in pollen tube growth. 87477 0 0 66482 9 integral to nuclear outer membrane Located such that some or all of the gene product itself penetrates at least one phospholipid bilayer of the nuclear outer membrane. May also refer to the state of being buried in the bilayer with no exposure outside the bilayer. 87478 0 0 66483 9 organelle part Any constituent part of an organelle, an organized structure of distinctive morphology and function. Includes constituent parts of the nucleus, mitochondria, plastids, vacuoles, vesicles, ribosomes and the cytoskeleton, but excludes the plasma membrane. 87479 0 0 66484 9 viral envelope The lipid bilayer and associated glycoproteins that surround many types of virus particle. 87480 0 0 66485 9 Ric1p-Rgp1p complex A protein complex that acts as a nucleotide exchange factor for the GTPase Ypt6p, and is required for fusion of endosome-derived vesicles with the Golgi. 87481 0 0 66486 9 actin tubule A cellular structure, approximately 13 nm in diameter, consisting of three actin filaments bundled together. 87483 0 0 66487 9 isoamylase complex A protein complex whose composition varies amongst species; in rice it probably exists in a homo-tetramer to homo-hexamer form and in Gram-negative bacteria as a dimer. Functions in the hydrolysis of alpha-(1,6)-D-glucosidic branch linkages. 87484 0 0 66488 9 Golgi lumen The volume enclosed by the membranes of any cisterna or subcompartment of the Golgi apparatus, including the cis- and trans-Golgi networks. 87486 0 0 66489 9 annuli extracellular matrix The extracellular matrix that is a regularly spaced circumferential ridge present in the cortical region of the cuticle. Annuli are delineated by annular furrows and are present throughout the cuticle with the exception of lateral regions where longitudinal alae are present. 87487 0 0 66490 9 FACT complex An abundant nuclear complex, which was originally identified in mammalian systems as a factor required for transcription elongation on chromatin templates. The FACT complex has been shown to destablilize the interaction between the H2A/H2B dimer and the H3/H4 tetramer of the nucleosome, thus reorganizing the structure of the nucleosome. In this way, the FACT complex may play a role in DNA replication and other processes that traverse the chromatin, as well as in transcription elongation. FACT is composed of two proteins that are evolutionarily conserved in all eukaryotes and homologous to mammalian Spt16 and SSRP1. In metazoans, the SSRP1 homolog contains an HMG domain; however in fungi and protists, it does not. For example, in S. cerevisiae the Pob3 protein is homologous to SSRP1, but lacks the HMG chromatin binding domain. Instead, the yFACT complex of Spt16p and Pob3p, binds to nucleosomes where multiple copies of the HMG-domain containing protein Nhp6p have already bound, but Nhp6p does not form a stable complex with the Spt16p/Pob3p heterodimer. 87488 0 0 66491 9 type IV secretion system complex A complex of proteins related to those involved in bacterial DNA conjugative transfer, that permits the transfer of DNA or proteins into the extracellular milieu or directly into host cells. In general the type IV complex forms a multisubunit cell-envelope-spanning structure composed of a secretion channel and often a pilus or other surface filament or protein(s). 87495 0 0 66492 9 proteasome regulatory particle, lid subcomplex The subcomplex of the proteasome regulatory particle that forms the peripheral lid, which is added on top of the base subcomplex. 87496 0 0 66493 9 THO complex The THO complex is a nuclear complex that is required for transcription elongation through genes containing tandemly repeated DNA sequences. The THO complex is also part of the TREX (TRanscription EXport) complex that is involved in coupling transcription to export of mRNAs to the cytoplasm. In S. cerevisiae, it is composed of four subunits: Hpr1p, Tho2p, Thp1p, and Mft1p, while the human complex is composed of 7 subunits. 87497 0 0 66494 9 plasma membrane proton-transporting ATP synthase, stator stalk One of two stalks that connect the catalytic core of the hydrogen-transporting ATP synthase to the plasma membrane-associated F0 proteins; is thought to prevent futile rotation of the catalytic core. Examples of this component are found in Bacterial species. 87498 0 0 66495 9 SCF ubiquitin ligase complex A ubiquitin ligase complex in which a cullin from the Cul1 subfamily and a RING domain protein form the catalytic core; substrate specificity is conferred by a Skp1 adaptor and an F-box protein. SCF complexes are involved in targeting proteins for degradation by the proteasome. The best characterized complexes are those from yeast and mammals (with core subunits named Cdc53/Cul1, Rbx1/Hrt1/Roc1). 87499 0 0 66496 9 aminodeoxychorismate synthase complex A heterodimeric protein complex that possesses 4-amino-4-deoxychorismate synthase activity. 87500 0 0 66497 9 nuclear proteasome core complex The core complex of a proteasome located in the nucleus of a cell. 87503 0 0 66498 9 host cell rough endoplasmic reticulum membrane The lipid bilayer surrounding the host cell rough endoplasmic reticulum. 87504 0 0 66499 9 Hrd1p ubiquitin ligase ERAD-M complex A multiprotein complex that recognizes and ubiquitinates proteins with misfolded membrane domains during ER-associated protein degradation (ERAD). In S. cerevisiae, this complex contains the ubiquitin ligase Hrd1p. 87505 0 0 66500 9 terminal cisterna The portion of sarcoplasmic reticulum devoted to calcium ion storage and calcium ion release. 87507 0 0 66501 9 synaptotagmin-synaptobrevin 2-SNAP-25-syntaxin-1a-syntaxin-1b-Unc13 complex A SNARE complex that contains synaptotagmin, synaptobrevin 2 (VAMP2), SNAP-25, syntaxin 1a, syntaxin1b, and Unc13b (or orthologs thereof). 87508 0 0 66502 9 presynaptic cytoskeletal matrix assembled at active zones The specialized cytoskeletal matrix assembled at the active zones of the presynaptic nerve terminal. The cytoskeletal matrix is a proteinaceous structure involved in organizing synaptic events such as immobilisation or translocation of synaptic vesicles, and assembling active zone components. The cytomatrix protein exclusively assembled at active zones, is thought to form a molecular scaffold that organizes neurotransmitter release sites. 87510 0 0 66503 9 alpha6-beta4 integrin-CD151 complex A protein complex that consists of an alpha6-beta4 integrin complex bound to the tetraspanin CD151. 87512 0 0 66504 9 elaioplast A leucoplast in which oil is stored. 87514 0 0 66505 9 TEAD-3-YAP complex A transcription factor complex that is composed of the DNA biding protein TEAD-3 and the transcriptional coactivator YAP. 87515 0 0 66506 9 viral genome The whole of the genetic information of a virus, contained as either DNA or RNA. 87517 0 0 76517 46 col_number \N 209414 0 0 66512 9 Schmidt-Lanterman incisure Regions within compact myelin in which the cytoplasmic faces of the enveloping myelin sheath are not tightly juxtaposed, and include cytoplasm from the cell responsible for making the myelin. Schmidt-Lanterman incisures occur in the compact myelin internode, while lateral loops are analogous structures found in the paranodal region adjacent to the nodes of Ranvier. 87524 0 0 66513 9 presequence translocase-associated import motor Protein complex located on the matrix side of the mitochondrial inner membrane and associated with the presequence translocase complex; hydrolyzes ATP to provide the force to drive import of proteins into the mitochondrial matrix. 87526 0 0 66970 9 alphav-beta3 integrin-CD47 complex A protein complex that consists of an alphav-beta3 integrin complex bound to CD47 (also known as IAP). 88196 0 0 66514 9 Myo2p-Vac17p-Vac8p transport complex A protein complex that is involved in transport of vacuoles to a newly formed daughter cell. In yeast, this complex is composed of Myo2p, Vac17p, and Vac8p. 87529 0 0 66515 9 host cell microsome Any of the small, heterogeneous, artifactual, vesicular particles, 50-150 nm in diameter, that are formed when some eukaryotic host cells are homogenized and that sediment on centrifugation at 100000 g. 87531 0 0 66516 9 chloroplast thylakoid Sac-like membranous structures (cisternae) in a chloroplast combined into stacks (grana) and present singly in the stroma (stroma thylakoids or frets) as interconnections between grana. An example of this component is found in Arabidopsis thaliana. 87532 0 0 66517 9 myosin filament A protein complex containing myosin heavy chains, plus associated light chains and other proteins, in which the myosin heavy chains are arranged into a filament. 87533 0 0 66518 9 alpha6-beta4 integrin-Fyn complex A protein complex that consists of an alpha6-beta4 integrin complex bound to the Src family tyrosine kinase Fyn. 87534 0 0 66519 9 IgM immunoglobulin complex, circulating A polymer of five or six IgM core units each composed of two identical immunoglobulin heavy chains of the IgM isotype and two identical immunoglobulin light chains, held together by disulfide bonds; the individual IgM core units are held together via disulfide bonds with a single J chain polypeptide acting as a bridge between two of the polymeric units. Circulating IgM is present in the extracellular space, in mucosal areas or other tissues, or in the blood or lymph. 87536 0 0 66520 9 cuticular plate A dense network of actin filaments found beneath the apical cell surface of hair cells, and into which stereocilia are inserted. 87537 0 0 66521 9 etioplast stroma The space enclosed by the double membrane of an etioplast but excluding the prothylakoid space. It contains the etioplast DNA. 87541 0 0 66522 9 death-inducing signaling complex A protein complex formed by the association of signaling proteins with a death receptor upon ligand binding. The complex includes procaspases and death domain-containing proteins in addition to the ligand-bound receptor. 87542 0 0 66523 9 DNA viral genome A viral genome composed of deoxyribonucleic acid. 87545 0 0 66524 9 ubiquitin conjugating enzyme complex Any complex that possesses ubiquitin conjugating enzyme activity. 87546 0 0 66525 9 Bcl3-Bcl10 complex A protein complex containing Bcl3 and Bcl10, which forms when Akt1 is activated by TNF-alpha to phosphorylate Bcl10; the Bcl3-Bcl10 complex is translocated to the nucleus. 87547 0 0 66526 9 clathrin-coated phagocytic vesicle A clathrin-coated, membrane-bounded intracellular vesicle that arises from the ingestion of particulate material by phagocytosis. 87549 0 0 66527 9 melanosome membrane The lipid bilayer surrounding a melanosome. 87550 0 0 66528 9 outer dense fiber Structure or material found in the flagella of mammalian sperm that surrounds each of the nine microtubule doublets, giving a 9 + 9 + 2 arrangement rather than the 9 + 2 pattern usually seen. These dense fibers are stiff and noncontractile. 87551 0 0 66529 9 extracellular matrix A structure lying external to one or more cells, which provides structural support for cells or tissues; may be completely external to the cell (as in animals) or be part of the cell (as in plants). 87552 0 0 66530 9 vacuolar membrane The lipid bilayer surrounding the vacuole and separating its contents from the cytoplasm of the cell. 87553 0 0 66531 9 MutLalpha complex A heterodimer involved in the recognition of base-base and small insertion/deletion mismatches. In human the complex consists of two subunits, MLH1 and PMS2. 87554 0 0 66532 9 GET complex A multisubunit complex involved in ER/Golgi trafficking (Golgi to ER Traffic). In yeast, includes Get1p, Get2p and Get3p proteins. 87555 0 0 66533 9 CAK-ERCC2 complex A protein complex formed by the association of the cyclin-dependent protein kinase activating kinase (CAK) holoenzyme complex with ERCC2. 87557 0 0 66534 9 viral procapsid A stable empty viral capsid produced during the assembly of viruses. 87560 0 0 66535 9 ribonucleoside-diphosphate reductase complex An enzyme complex composed of 2-4 or more subunits, which usually contains nonheme iron and requires ATP for catalysis. Catalyzes the formation of 2'-deoxyribonucleoside diphosphate and thioredoxin disulfide from ribonucleoside diphosphate and thioredoxin. 87561 0 0 66536 9 microtubule basal body A short cylindrical array of microtubules and associated proteins found at the base of a eukaryotic cilium or flagellum that is similar in structure to a centriole. The basal body serves as a nucleation site for axoneme growth. 87563 0 0 66537 9 synaptobrevin 2-SNAP-25-syntaxin-1a-complexin II complex A SNARE complex that contains synaptobrevin 2 (VAMP2), SNAP-25, syntaxin 1a, and complexin II (or orthologs thereof). 87564 0 0 66538 9 MAML3-RBP-Jkappa-ICN3 complex A protein complex that consists of the intracellular domain of Notch3 (ICN3), the DNA-binding transcription factor RBP-Jkappa, and the transcriptional coactivator Mastermind-like-3 (MAML3); the complex is involved in transcriptional activation in response to Notch-mediated signaling. 87565 0 0 66539 9 core-binding factor complex A heterodimeric transcription factor complex that contains an alpha subunit (Runx1, Runx2 or Runx3 in human) that binds DNA and a non-DNA-binding beta subunit (CBFbeta), and binds to a consensus sequence 5'-YGYGGTY-3' found in several enhancers and promoters; the beta subunit enhances the DNA binding of the alpha subunit. 87566 0 0 66540 9 cell projection membrane The portion of the plasma membrane surrounding a cell surface projection. 87569 0 0 66541 9 nuclear membrane part Any constituent part of the nuclear membrane, the envelope that surrounds the nucleus of eukaryotic cells. 87570 0 0 66598 9 myosin XVIII complex A myosin complex containing a class XVIII myosin heavy chain and associated light chains; myosin XVIII heavy chains contain an N-terminal PDZ domain. 87663 0 0 66542 9 fungal-type vacuole A vacuole that has both lytic and storage functions. The fungal vacuole is a large, membrane-bounded organelle that functions as a reservoir for the storage of small molecules (including polyphosphate, amino acids, several divalent cations (e.g. calcium), other ions, and other small molecules) as well as being the primary compartment for degradation. It is an acidic compartment, containing an ensemble of acid hydrolases. At least in S. cerevisiae, there are indications that the morphology of the vacuole is variable and correlated with the cell cycle, with logarithmically growing cells having a multilobed, reticulated vacuole, while stationary phase cells contain a single large structure. 87571 0 0 66543 9 homodimeric serine palmitoyltransferase complex A homodimeric complex which transfers a palmitoyl group onto serine, forming 3-dehydro-D-sphinganine. 87572 0 0 66544 9 senescence-associated vacuole A lytic vacuole that is maintained at acidic pH and has different tonoplast composition compared to the central vacuole. Found during leaf senescence and develops in the peripheral cytoplasm of cells that contain chloroplast. 87573 0 0 66545 9 synaptic vesicle lumen The volume enclosed by the synaptic vesicle membrane. 87575 0 0 66546 9 BRCA2-BRAF35 complex A heterodimeric complex of BRCA2 and BRAF35 (BRCA2-associated factor 35). The BRCA2-BRAF35 complex is often associated with condensed chromatin during mitosis. 87576 0 0 66547 9 chromosome A structure composed of a very long molecule of DNA and associated proteins (e.g. histones) that carries hereditary information. 87578 0 0 66548 9 hyphal tip polarisome Protein complex that has a role in determining cell polarity, found at the tip of a growing fungal hypha. 87579 0 0 66549 9 NuA4 histone acetyltransferase complex A complex having histone acetylase activity on chromatin, as well as ATPase, DNA helicase and structural DNA binding activities. The complex is thought to be involved in double-strand DNA break repair. Subunits of the human complex include HTATIP/TIP60, TRRAP, RUVBL1, BUVBL2, beta-actin and BAF53/ACTL6A. In yeast, the complex has 13 subunits, including the catalytic subunit Esa1 (homologous to human Tip60). 87580 0 0 66550 9 PHA granule An inclusion body located in the cytoplasm that consists of polyhydroxyalkanoate (PHA) molecules and associated proteins, surrounded by a phospholipid monolayer; the proteins include PHA synthase, PHA depolymerase and 3HB-oligomer hydroxylase, phasins (PhaPs), which are thought to be the major structural proteins of the membrane surrounding the inclusion, and the regulator of phasin expression PhaR. 87583 0 0 66551 9 bacterial-type flagellum basal body, proximal rod The portion of the central rod of the flagellar basal body that is proximal to the cell membrane; proximal rod connects the distal rod to the flagellar motor. Examples of this component are found in bacteria. 87585 0 0 66552 9 polyketide synthase complex A protein complex that carries out enzymatic reactions involved in the biosynthesis of polyketides, any of a diverse group of natural products synthesized via linear poly-beta-ketones. 87586 0 0 66553 9 immunological synapse An area of close contact between a lymphocyte (T-, B-, or natural killer cell) and a target cell formed through the clustering of particular signaling and adhesion molecules and their associated membrane rafts on both the lymphocyte and the target cell and facilitating activation of the lymphocyte, transfer of membrane from the target cell to the lymphocyte, and in some situations killing of the target cell through release of secretory granules and/or death-pathway ligand-receptor interaction. 87588 0 0 66554 9 alphaIIb-beta3 integrin-CIB complex A protein complex that consists of an alphaIIb-beta3 integrin complex bound to CIB, a protein that binds calcium as well as the alphaIIb-beta3 integrin. 87590 0 0 66555 9 tectum The layer of sexine which forms a roof over the columella, granules or other infratectal elements. 87592 0 0 66556 9 peribacteroid membrane A membrane that surrounds one or more bacteroids (such as nitrogen-fixing bacteroids within legume root nodule cells). 87593 0 0 66557 9 Rad17 RFC-like complex A pentameric protein complex related to replication factor C, which loads a trimeric complex of checkpoint proteins (known as the checkpoint clamp or 9-1-1 complex) onto DNA at damage sites; functions in DNA damage cell cycle checkpoints. In Schizosaccharomyces pombe the subunits are known as Rad17, Rfc2, Rfc3, Rfc4, and Rfc5, while in Saccharomyces cerevisiae the subunits are known as Rad24p, Rfc2p, Rfc3p, Rfc4p, and Rfc5p. 87594 0 0 66558 9 glycine-gated chloride channel complex A protein complex that forms a transmembrane channel through which chloride ions may pass in response to glycine binding to the channel complex or one of its constituent parts. 87595 0 0 66559 9 host cell nuclear outer membrane The outer, i.e. cytoplasm-facing, lipid bilayer of the host nuclear envelope; continuous with the endoplasmic reticulum of the host cell and sometimes studded with ribosomes. 87596 0 0 66560 9 clathrin sculpted monoamine transport vesicle A clathrin sculpted lipid bilayer membrane-enclosed vesicle after clathrin release and containing monoamines. 87597 0 0 66561 9 type IV pilus A short filamentous structure on the surface of a bacterial cell distinguished from other pili by post-translational N-methylation of the pilin monomers. 87598 0 0 66562 9 cytosolic small ribosomal subunit (obsolete GO:0000181) OBSOLETE (was not defined before being made obsolete). 87599 1 0 66563 9 SMAD2-SMAD4 protein complex A heteromeric SMAD protein complex that contains SMAD2 and SMAD4. 87600 0 0 66564 9 RecFOR complex A heterotrimeric complex composed of the subunits RecF, RecO and RecR. Mediates the loading of RecA protein specifically onto SSB-coated gapped DNA during DNA repair. 87601 0 0 66565 9 chlorosome envelope The structure, composed of a monolayer of glycolipids with embedded proteins, that encloses the pigments and other contents of the chlorosome. 87604 0 0 66566 9 cell part Any constituent part of a cell, the basic structural and functional unit of all organisms. 87608 0 0 66567 9 sarcoplasmic reticulum lumen The volume enclosed by the membranes of the sarcoplasmic reticulum. 87609 0 0 66568 9 alae of collagen and cuticulin-based cuticle extracellular matrix Raised, thickened cuticular ridges that run longitudinally, and in parallel, along the left and right sides of the animal. The alae lie above the hypodermal cells known as the lateral seam cells. In C. elegans, alae are produced in L1 larvae, dauer larvae and adult stage animals, where they consist of three, five, and three ridges of distinct morphology, respectively. 87610 0 0 66569 9 alphaV-beta6 integrin-osteopontin complex A protein complex that consists of an alphaV-beta6 integrin complex bound to osteopontin. 87611 0 0 66685 9 unicellular trichome branch A cell projection part that is a branch of a unicellular trichome. 87786 0 0 66570 9 secondary plasmodesma A plasmodesma with a branched structure, often with many channels leading into a larger central cavity; found in older tissues and usually derived from preexisting primary plasmodesmata. 87613 0 0 66571 9 juxtaparanode region of axon A region of an axon near a node of Ranvier that is between the paranode and internode regions. 87615 0 0 66572 9 alphaV-beta3 integrin-tissue transglutaminase complex A protein complex that consists of an alphaV-beta3 integrin complex bound to tissue transglutaminase. 87618 0 0 66600 9 inner membrane complex A membrane structure formed of two closely aligned lipid bilayers that lie beneath the plasma membrane and form part of the pellicle surrounding an apicomplexan parasite cell. 87666 0 0 66573 9 type II terminal button Terminal inflated portion of the axon of a non-glutamatergic neuron, containing the specialized apparatus necessary to release neurotransmitters at a regulatory synapse. The axon terminus is considered to be the whole region of thickening and the terminal button is a specialized region of it. 87620 0 0 66574 9 dolichyl-phosphate-mannose-protein mannosyltransferase complex A complex that possesses dolichyl-phosphate-mannose-protein mannosyltransferase activity; usually includes members of the PMT1 and PMT2 protein subfamilies. 87621 0 0 66575 9 auxin efflux carrier complex The protein complex associated with the plasma membrane of certain plant cells (e.g. root cortex, epidermal cells) that functions to transport auxin out of the cell. 87623 0 0 66576 9 chloroplast photosystem I Photosystem located in the chloroplast that functions as a light-dependent plastocyanin-ferredoxin oxidoreductase, transferring electrons from plastocyanin to ferredoxin. An example of this is found in Arabidopsis thaliana. 87625 0 0 66577 9 cyclin A1-CDK1 complex A protein complex consisting of cyclin A1 and cyclin-dependent kinase 1 (CDK1). Cyclins are characterized by periodicity in protein abundance throughout the cell cycle. Cyclin-dependent kinases represent a family of serine/threonine protein kinases that become active upon binding to a cyclin regulatory partner. 87626 0 0 66578 9 preribosome Any complex of pre-rRNAs, ribosomal proteins, and associated proteins formed during ribosome biogenesis. 87627 0 0 66579 9 host cell endoplasmic reticulum The irregular network of unit membranes, visible only by electron microscopy, that occurs in the host cell cytoplasm of many eukaryotic cells. The membranes form a complex meshwork of tubular channels, which are often expanded into slitlike cavities called cisternae. The host ER takes two forms, rough (or granular), with ribosomes adhering to the outer surface, and smooth (with no ribosomes attached). 87628 0 0 66580 9 intermediate filament associated protein (obsolete GO:0001721) OBSOLETE. Proteins that associate with intermediate filaments and function in the supramolecular organization of cellular intermediate filament networks. 87629 1 0 66581 9 signal peptidase complex A protein complex that is located in the endoplasmic reticulum membrane and cleaves the signal sequence from precursor proteins following their transport out of the cytoplasmic space. 87631 0 0 66582 9 rhabdomere microvillus membrane The portion of the plasma membrane surrounding a microvillus of a rhabdomere. 87634 0 0 66583 9 glutamyl-tRNA(Gln) amidotransferase complex A protein complex that possesses glutamyl-tRNA(Gln) amidotransferase activity, and therefore creates Gln-tRNA by amidating Glu-tRNA; usually composed of 3 subunits: A, B, and C. Note that the C subunit may not be required in all organisms. 87635 0 0 66584 9 intercalated disc A complex cell-cell junction at which myofibrils terminate in cardiomyocytes; mediates mechanical and electrochemical integration between individual cardiomyocytes. The intercalated disc contains regions of tight mechanical attachment (fasciae adherentes and desmosomes) and electrical coupling (gap junctions) between adjacent cells. 87636 0 0 66585 9 spliceosomal complex Any of a series of ribonucleoprotein complexes that contain RNA and small nuclear ribonucleoproteins (snRNPs), and are formed sequentially during the splicing of a messenger RNA primary transcript to excise an intron. 87638 0 0 66586 9 glutamate-tRNA ligase complex An enzyme complex that catalyzes the ligation of glutamate and tRNA(Glu) to form glutamyl-tRNA(Glu). 87639 0 0 66587 9 plastid nucleoid The region of a plastid to which the DNA is confined. 87640 0 0 66588 9 dityrosine layer of spore wall The outermost layer of the spore wall, as described in Saccharomyces. 87641 0 0 66589 9 Swi5-Sfr1 complex A conserved DNA recombinase mediator complex that contains two Swi5 monomers and one Sfr1 monomer in Schizosaccharomyces, or orthologs thereof (e.g. Sae3p and Mei5p in Saccharomyces). 87642 0 0 66590 9 anthranilate synthase complex A heterotetrameric enzyme complex made up of two components I and two components II. Catalyzes the formation of anthranilate, pyruvate and L-glutamate from chorismate and L-glutamine. 87645 0 0 66591 9 mononeme A secretory organelle that forms part of the apical complex; a small, threadlike structure located is close proximity to the subpellicular microtubules. Its contents include a rhomboid protease (PfROM1 in Plasmodium falciparum) that moves from the lateral asymmetric localization to the merozoite apical pole and the posterior pole upon release of merozoites from schizonts. 87648 0 0 66592 9 alphav-beta3 integrin-osteopontin complex A protein complex that consists of an alphav-beta3 integrin complex bound to osteopontin. 87650 0 0 66593 9 cohesin core heterodimer The core heterodimer of a cohesin complex; a structure required for sister chromatid cohesion in eukaryotes. 87652 0 0 66594 9 Set1C/COMPASS complex A conserved protein complex that catalyzes methylation of histone H3. In Saccharomyces the complex contains Shg1p, Sdc1p, Swd1p, Swd2p, Swd3p, Spp1p, Bre2p, and the trithorax-related Set1p; in mammals it contains the catalytic subunit (SETD1A or SETD1B), WDR5, WDR82, RBBP5, ASH2L/ASH2, CXXC1/CFP1, HCFC1 and DPY30. 87653 0 0 66595 9 acetyl-CoA carboxylase complex A protein complex that catalyzes the first step in long-chain fatty acid biosynthesis. For example, in E. coli the complex is heterohexameric and composed of biotin carbonyl carrier protein, biotin carboxylase and the acetate CoA-transferase complex. 87659 0 0 66596 9 occluding junction A cell-cell junction that seals cells together in an epithelium in a way that prevents even small molecules from leaking from one side of the sheet to the other. 87661 0 0 66597 9 anaerobic ribonucleoside-triphosphate reductase complex An enzyme complex composed of 4 subunits, 2 copies of the large protein (nrdD in E. coli) and 2 copies of the small protein (nrdG in E. coli). It catalyzes the generation of 2'deoxyribonucleotides under anaerobic growth conditions. The larger subunit is the catalytic unit that is activated by the smaller iron-binding subunit. 87662 0 0 66599 9 extrachromosomal rDNA circle Circular DNA molecules encoding ribosomal RNA that are replicated independently of chromosomal replication. These molecules originate in the chromosome but are excised and circularized, often by intramolecular homologous recombination between direct tandem repeats. 87665 0 0 69502 13 root endodermis A portion of endodermis that is part of a root cortex. 91663 0 0 66601 9 histone pre-mRNA 3'end processing complex A ribonucleoprotein that binds to specific sites in, and is required for cleavage of, the 3'-end of histone pre-mRNAs. The complex contains the U7 snRNP and additional proteins, including the stem-loop binding protein (SLBP) and the exonuclease 3'hExo/Eri-1. 87668 0 0 66602 9 caspase complex A protein complex that is located in the cytosol and acts as a cysteine-type endopeptidase are involved in apoptosis; the peptidase activity has specificity for the hydrolysis of aspartyl bonds. 87669 0 0 66603 9 GID complex A protein complex with ubiquitin ligase activity that is involved in proteasomal degradation of fructose-1,6-bisphosphatase (FBPase) and phosphoenolpyruvate carboxykinase during the transition from gluconeogenic to glycolytic growth conditions. In S. cerevisiae, the GID (Glucose Induced degradation Deficient) complex consists of Vid30p, Rmd5p, Vid24p, Vid28p, Gid7p, Gid8p, and Fyv10p. 87670 0 0 66604 9 alpha5-beta1 integrin-osteopontin complex A protein complex that consists of an alpha5-beta1 integrin complex bound to osteopontin. 87673 0 0 66605 9 exosporium The outermost layer of a bacterial endospore, which is loosely attached and located outside of the endospore coat. It is generally composed of protein, carbohydrate, and perhaps lipid. 87674 0 0 66606 9 platelet dense tubular network A network of membrane-bounded compartments found in blood platelets, where they regulate platelet activation by sequestering or releasing calcium. The dense tubular network exists as thin elongated membranes in resting platelets, and undergoes a major ultrastructural change, to a rounded vesicular form, upon addition of thrombin. 87675 0 0 66607 9 Dsl1p complex A multisubunit tethering complex, i.e. a protein complex involved in mediating the initial interaction between vesicles and the membranes with which they fuse, that is involved in trafficking from the Golgi apparatus to the ER. In Saccharomyces cerevisiae the Dsl1p complex contains Dsl1p, Tip20p, and Sec39p. 87677 0 0 66608 9 ER membrane protein complex A transmembrane protein complex that is involved in protein folding in the endoplasmic reticulum. In S. cerevisiae, it has six members: EMC1, EMC2, AIM27, EMC4, KRE27, and EMC6. 87679 0 0 66609 9 dendrite cytoplasm All of the contents of a dendrite, excluding the surrounding plasma membrane. 87681 0 0 66610 9 vacuolar part Any constituent part of a vacuole, a closed structure, found only in eukaryotic cells, that is completely surrounded by unit membrane and contains liquid material. 87682 0 0 66611 9 polycystin complex A stable heterodimeric complex composed of polycystin-1 and polycystin-2. 87683 0 0 66612 9 DNA polymerase III, DnaX complex, chi/psi subcomplex A dimer composed of the chi and psi subunits which is a subassembly of the DNA polymerase III DnaX complex and serves as a bridge between the DnaX complex and the single-stranded DNA-binding protein (SSB). 87685 0 0 66613 9 MutLbeta complex A heterodimer involved in the recognition of base-base and small insertion/deletion mismatches. In human the complex consists of two subunits, MLH1 and PMS1. 87687 0 0 66614 9 focal adhesion Small region on the surface of a cell that anchors the cell to the extracellular matrix and that forms a point of termination of actin filaments. 87688 0 0 66615 9 neuronal RNA granule A ribonucleoprotein complex that is found in the cytoplasm of axons and dendrites, and transports translationally silenced mRNAs to dendritic synapses, where they are released and translated in response to specific exogenous stimuli. 87690 0 0 66616 9 RNAi effector complex Any protein complex that mediates the effects of small interfering RNAs on gene expression. Most known examples contain one or more members of the Argonaute family of proteins. 87692 0 0 66617 9 other organism cell membrane The cell membrane of a secondary organism with which the first organism is interacting. 87693 0 0 66618 9 cell wall part Any constituent part of the cell wall, the rigid or semi-rigid envelope lying outside the cell membrane of plant, fungal, and most prokaryotic cells, maintaining their shape and protecting them from osmotic lysis. 87694 0 0 66619 9 Z disc Platelike region of a muscle sarcomere to which the plus ends of actin filaments are attached. 87695 0 0 66620 9 kinetochore A multisubunit complex that is located at the centromeric region of DNA and provides an attachment point for the spindle microtubules. 87696 0 0 66621 9 granal stacked thylakoid Appressed thylakoid membranes that are part of a granum (stacked regions). A characteristic of these appressed regions is the preferential localization of photosystem II. 87698 0 0 66622 9 Kv4.1-DPP6 channel complex A voltage-gated potassium channel complex that contains the peptidase-related protein DPP6 associated with the channel via interaction with the Kv alpha subunit 4.1. 87699 0 0 66623 9 glutamate synthase complex (NADPH) A complex that possesses glutamate synthase (NADPH) activity. 87700 0 0 66624 9 basal ring of apical complex An electron dense ring at the most posterior position of the apical complex, from which the subpellicular microtubules originate; formed during an invasive life cycle stage of an apicomplexan parasite. 87701 0 0 66625 9 chromatin assembly complex Any protein complex that acts in the formation of nucleosomes or higher order chromatin structure. 87703 0 0 66626 9 mating-type region heterochromatin Heterochromatic regions of the chromosome found at silenced mating-type loci. 87704 0 0 66627 9 chloroplast outer membrane The outer, i.e. cytoplasm-facing, lipid bilayer of the chloroplast envelope. 87705 0 0 66628 9 microneme lumen The volume enclosed by the microneme membrane. 87706 0 0 66629 9 interleukin-5 receptor complex A protein complex that binds interleukin-3; comprises an alpha and a beta subunit. The alpha chain is specific to the interleukin-5 receptor, whereas the beta chain is shared with the receptors for granulocyte-macrophage colony-stimulating factor and interleukin-3. 87707 0 0 66630 9 extrinsic to mitochondrial inner membrane Loosely bound to one surface of the mitochondrial inner membrane, but not integrated into the hydrophobic region. 87710 0 0 69599 13 rhexigenous aerenchyma (obsolete PO:0005704) OBSOLETE. Aerenchyma originating by rupture of cells. 91771 1 0 67545 9 apical cortex The region that lies just beneath the plasma membrane on the apical edge of a cell. 89060 0 0 66631 9 Bcl-2 family protein complex A protein complex that consists of members of the Bcl-2 family of anti- and proapoptotic regulators. Bcl-2 proteins respond to cues from various forms of intracellular stress, such as DNA damage or cytokine deprivation, and interact with opposing family members to determine whether or not the caspase proteolytic cascade should be unleashed. 87711 0 0 77345 61 BTU One British thermal unit. 212506 0 0 66632 9 P5 peroxisome A subform of peroxisome that corresponds to an intermediate in a peroxisome assembly pathway, which operates by conversion of peroxisomal subforms in the direction P1, P2 -> P3 -> P4 -> P5 -> P6. P5 peroxisomes are distinguished from the other subforms on the bases of buoyant density and protein content. 87712 0 0 66633 9 pinosome A membrane-bounded, uncoated intracellular vesicle formed by the process of pinocytosis. 87713 0 0 66634 9 alpha5-beta1 integrin complex An integrin complex that comprises one alpha5 subunit and one beta1 subunit. 87714 0 0 66635 9 6-phosphofructo-2-kinase/fructose-2,6-biphosphatase 1 complex A homodimeric, bifunctional enzyme complex which catalyzes the synthesis and degradation of fructose 2,6-bisphosphate, and is required for both glycolysis and gluconeogenesis. 87715 0 0 66636 9 intercellular canaliculus An extremely narrow tubular channel located between adjacent cells. An instance of this is the secretory canaliculi occurring between adjacent parietal cells in the gastric mucosa of vertebrates. 87716 0 0 66637 9 fumarate reductase complex A membrane-bound flavoenzyme complex consisting of four subunits, A, B, C, and D. A and B comprise the membrane-extrinsic catalytic domain and C (InterPro:IPR003510; InterPro:IPR004224) and D (InterPro:IPR003418) link the catalytic centers to the electron-transport chain. This family consists of the 13 kDa hydrophobic subunit D. This component may be required to anchor the catalytic components of the fumarate reductase complex to the cytoplasmic membrane. Fumarate reductase couples the reduction of fumarate to succinate to the oxidation of quinol to quinone, in a reaction opposite to that catalyzed by the related complex II of the respiratory chain (succinate dehydrogenase-(ubiquinone)). 87717 0 0 66638 9 nuclear outer membrane The outer, i.e. cytoplasm-facing, lipid bilayer of the nuclear envelope; continuous with the endoplasmic reticulum of the cell and sometimes studded with ribosomes. 87719 0 0 66639 9 NF-kappaB complex A protein complex that consists of a homo- or heterodimer of members of a family of structurally related proteins that contain a conserved N-terminal region called the Rel homology domain (RHD). In the nucleus, NF-kappaB complexes act as transcription factors. In unstimulated cells, NF-kappaB dimers are sequestered in the cytoplasm by IkappaB monomers; signals that induce NF-kappaB activity cause degradation of IkappaB, allowing NF-kappaB dimers to translocate to the nucleus and induce gene expression. 87720 0 0 66640 9 clathrin sculpted gamma-aminobutyric acid transport vesicle A clathrin sculpted lipid bilayer membrane-enclosed vesicle after clathrin release and containing gamma-aminobutyric acid transport vesicle. 87722 0 0 66641 9 X chromosome The sex chromosome present in both sexes of species in which the male is the heterogametic sex. Two copies of the X chromosome are present in each somatic cell of females and one copy is present in males. 87723 0 0 66642 9 light-harvesting complex, peripheral complex Bacteriochlorophyll a binding complex that is peripherally associated to the bacterial reaction center. 87724 0 0 66643 9 catenin complex Complex of peripheral cytoplasmic proteins (alpha-, beta- and gamma-catenin) that interact with the cytoplasmic region of uvomorulin/E-cadherin to connect it to the actin cytoskeleton. 87725 0 0 66644 9 2-micrometer circle DNA A plasmid commonly found in Saccharomyces, inherited in a non-Mendelian manner and often present in 100-400 copies. 87726 0 0 66700 9 beta-heterochromatin A diffusely banded region of heterochromatin located between euchromatin and alpha-heterochromatin in the polytene chromosome chromocenter; normally replicated during polytenization. 87809 0 0 66645 9 trans-Golgi network The network of interconnected tubular and cisternal structures located at the side of the Golgi apparatus distal to the endoplasmic reticulum, from which secretory vesicles emerge. The trans-Golgi network is important in the later stages of protein secretion where it is thought to play a key role in the sorting and targeting of secreted proteins to the correct destination. 87728 0 0 66646 9 dolichol-phosphate-mannose synthase complex A protein complex that possesses dolichyl-phosphate beta-D-mannosyltransferase activity; contains a catalytic subunit, a regulatory subunit, and a third subunit that stabilizes the complex. In human and several other metazoa, the subunits are named DPM1, DPM2 and DPM3, respectively. 87729 0 0 66647 9 glyoxysomal lumen The volume enclosed by the membranes of a glyoxysome. 87731 0 0 66648 9 alpha7-beta1 integrin-focal adhesion kinase complex A protein complex that consists of an alpha7-beta1 integrin complex bound to focal adhesion kinase. 87732 0 0 66649 9 hydrogen:potassium-exchanging ATPase complex A protein complex that possesses hydrogen:potassium-exchanging ATPase activity; characterized in animal cells, where it maintains ionic gradients of Na+ and K+ at the expense of ATP hydrolysis; The complex contains two obligatory subunits, the catalytic alpha subunit and a glycosylated beta subunit; two additional subunits, gamma and channel-inducing factor (CHIF), may also be present. 87733 0 0 66650 9 host cell A cell within a host organism. Includes the host plasma membrane and any external encapsulating structures such as the host cell wall and cell envelope. 87735 0 0 66651 9 nuclear nucleosome A complex comprised of DNA wound around a multisubunit core and associated proteins, which forms the primary packing unit of DNA in the nucleus into higher order structures. 87736 0 0 66652 9 ruffle Projection at the leading edge of a crawling cell; the protrusions are supported by a microfilament meshwork. 87737 0 0 66653 9 flagellar axoneme The bundle of microtubules and associated proteins that forms the core of flagellar in eukaryotic cells and is responsible for their movements. 87738 0 0 66654 9 paraspeckles Discrete subnuclear bodies in the interchromatin nucleoplasmic space, often located adjacent to nuclear specks. 10-20 paraspeckles are typically found in human cell nuclei. 87739 0 0 66655 9 RNA nuclear export complex A complex which usually consists of three components, e.g. in Xenopus and yeast, the export receptor CRM1 (also known as exportin 1), the Ran protein and any RNA with a nuclear export sequence (NES). The complex acts to export RNA molecules with a NES from the nucleus through a nuclear pore. 87741 0 0 66856 9 vimentin (obsolete GO:0045099) OBSOLETE. A type of intermediate filament. 88030 1 0 76518 46 igd_synonym \N 209415 0 0 66656 9 integral to chloroplast outer membrane Located such that some or all of the gene product itself penetrates at least one phospholipid bilayer of the chloroplast outer membrane. May also refer to the state of being buried in the bilayer with no exposure outside the bilayer. 87743 0 0 66657 9 varicosity Non-terminal inflated portion of the axon, containing the specialized apparatus necessary to release neurotransmitters. 87744 0 0 66659 9 ER proteasome core complex, beta-subunit complex The subunits forming the inner ring of the core complex of a proteasome located in the endoplasmic reticulum of a cell. 87746 0 0 66660 9 dynein complex Any of several large complexes that contain two or three dynein heavy chains and several light chains, and have microtubule motor activity. 87747 0 0 66661 9 axon part A part of an axon, a cell projection of a neuron. 87748 0 0 66662 9 megasome Large, cysteine proteinase rich lysosomes, often found in the amastigote (an intracytoplasmic, nonflagellated form of the parasite) stage of Leishmania species belonging to the mexicana complex. 87749 0 0 66663 9 alpha,alpha-trehalose-phosphate synthase complex (UDP-forming) A protein complex that possesses alpha,alpha-trehalose-phosphate synthase (UDP-forming) and trehalose-phosphatase activities, and thus catalyzes two reactions in trehalose biosynthesis. In the complex identified in Saccharomyces, Tps1p has alpha,alpha-trehalose-phosphate synthase (UDP-forming) activity, Tps2p has trehalose 6-phosphate phosphatase activity; Tps3p is a regulatory subunit, and an additional subunit, Tsl1p, may be present. 87752 0 0 66664 9 mitochondrial respiratory chain complex I, membrane segment The mitochondrial membrane segment of respiratory chain complex I. Respiratory chain complex I is an enzyme of the respiratory chain, consisting of at least 34 polypeptide chains. The electrons of NADH enter the chain at this complex. The complete complex is L-shaped, with a horizontal arm lying in the membrane and a vertical arm that projects into the matrix. 87754 0 0 66665 9 cyclin D1-CDK6 complex A protein complex consisting of cyclin D1 and cyclin-dependent kinase 6 (CDK6). Cyclins are characterized by periodicity in protein abundance throughout the cell cycle. Cyclin-dependent kinases represent a family of serine/threonine protein kinases that become active upon binding to a cyclin regulatory partner. 87756 0 0 66666 9 SAS acetyltransferase complex A protein complex that possesses histone acetyltransferase activity and links histone acetylation to the assembly of transcriptionally silent chromatin. In vitro, the complex acetylates lysine 16 of histone H4 and lysine 14 of histone H3, although the latter may not be relevant in vivo. The complex contains a catalytic subunit and at least two other subunits; in Saccharomyces, the catalytic subunit is Sas2p and additional subunits are Sas4p and Sas5p. 87757 0 0 66667 9 organellar large ribosomal subunit The larger of the two subunits of an organellar ribosome. Two sites on the ribosomal large subunit are involved in translation: the aminoacyl site (A site) and peptidyl site (P site). 87761 0 0 66668 9 extrinsic to external side of plasma membrane Loosely bound to the surface of the plasma membrane that faces away from the cytoplasm, but not integrated into the hydrophobic region. 87762 0 0 66669 9 transforming growth factor beta receptor complex A dimeric receptor complex that binds transforming growth factor beta (TGF-beta); consists of two TGF-beta receptor monomers. 87763 0 0 66670 9 cytoplasmic part Any constituent part of the cytoplasm, all of the contents of a cell excluding the plasma membrane and nucleus, but including other subcellular structures. 87766 0 0 66699 9 protocadherin-alpha-protocadherin-gamma complex A protein complex that contains two cell adhesion molecules, a protocadherin-alpha and a protocadherin-gamma, and is involved in the regulation of protein localization to the plasma membrane. 87808 0 0 66671 9 Weibel-Palade body A large, elongated, rod-shaped secretory granule characteristic of vascular endothelial cells that contain a number of structurally and functionally distinct proteins, of which the best characterized are von Willebrand factor (VWF) and P-selectin. Weibel-Palade bodies are formed from the trans-Golgi network in a process that depends on VWF, which is densely packed in a highly organized manner, and on coat proteins that remain associated with the granules. Upon cell stimulation, regulated exocytosis releases the contained proteins to the cell surface, where they act in the recruitment of platelets and leukocytes and in inflammatory and vasoactive responses. 87767 0 0 66672 9 azurophil granule membrane The lipid bilayer surrounding an azurophil granule, a primary lysosomal granule found in neutrophil granulocytes that contains a wide range of hydrolytic enzymes and is released into the extracellular fluid. 87770 0 0 66673 9 acrosomal lumen The volume enclosed within the acrosome membrane. 87772 0 0 66674 9 centrosomal mitotic factor (obsolete GO:0005817) OBSOLETE (was not defined before being made obsolete). 87773 1 0 66675 9 host cell mitochondrion A semiautonomous, self replicating organelle as found in host cells that occurs in varying numbers, shapes, and sizes in the cell cytoplasm. The host is defined as the larger of the organisms involved in a symbiotic interaction. 87774 0 0 66676 9 cell septum edging The cell wall material that surrounds the septum in fungal cells. 87775 0 0 66677 9 alpha4-beta7 integrin complex An integrin complex that comprises one alpha4 subunit and one beta7 subunit. 87776 0 0 66678 9 clathrin coat of coated pit The coat found on coated pits and the coated vesicles derived from coated pits; comprises clathrin and the AP-2 adaptor complex. 87777 0 0 66679 9 oligosaccharyltransferase II complex An oligosaccharyltransferase (OST) complex that contains the seven polypeptides found in OST complex I, plus heterotrimeric Sec61alpha-beta-gamma. Of the three forms of mammalian OST complexes identified, the OSTII complex has intermediate affinity for ribosomes. 87778 0 0 66680 9 CMG complex A protein complex that contains the GINS complex, Cdc45p, and the heterohexameric MCM complex, and that is involved in unwinding DNA during replication. 87779 0 0 66681 9 myelin sheath adaxonal region The region of the myelin sheath nearest to the axon. 87781 0 0 66682 9 plastid inner membrane The inner, i.e. lumen-facing, lipid bilayer of the plastid envelope; also faces the plastid stroma. 87782 0 0 66683 9 host cell nucleus A membrane-bounded organelle as it is found in the host cell in which chromosomes are housed and replicated. The host is defined as the larger of the organisms involved in a symbiotic interaction. 87783 0 0 66684 9 eukaryotic 80S initiation complex A protein complex composed of the large and small ribosomal subunits, methionyl-initiatior tRNA, and the capped mRNA. The initiator tRNA is positioned at the ribosomal P site at the AUG codon corresponding to the beginning of the coding region. 87785 0 0 66686 9 cyclin B2-CDK1 complex A protein complex consisting of cyclin B2 and cyclin-dependent kinase 1 (CDK1). Cyclins are characterized by periodicity in protein abundance throughout the cell cycle. Cyclin-dependent kinases represent a family of serine/threonine protein kinases that become active upon binding to a cyclin regulatory partner. 87787 0 0 66687 9 mediator complex A protein complex that interacts with the carboxy-terminal domain of the largest subunit of RNA polymerase II and plays an active role in transducing the signal from a transcription factor to the transcriptional machinery. The mediator complex is required for activation of transcription of most protein-coding genes, but can also act as a transcriptional corepressor. The Saccharomyces complex contains several identifiable subcomplexes: a head domain comprising Srb2, -4, and -5, Med6, -8, and -11, and Rox3 proteins; a middle domain comprising Med1, -4, and -7, Nut1 and -2, Cse2, Rgr1, Soh1, and Srb7 proteins; a tail consisting of Gal11p, Med2p, Pgd1p, and Sin4p; and a regulatory subcomplex comprising Ssn2, -3, and -8, and Srb8 proteins. Metazoan mediator complexes have similar modular structures and include homologs of yeast Srb and Med proteins. 87788 0 0 66688 9 laminin-3 complex A laminin complex composed of alpha1, beta2 and gamma1 polypeptide chains. 87790 0 0 66689 9 organellar chromatophore outer membrane The outer, i.e. cytoplasm-facing, of the two lipid bilayers surrounding an organellar chromatophore. 87792 0 0 66690 9 fascia adherens A cell-cell junction that contains the transmembrane protein N-cadherin, which interacts with identical molecules from neighboring cells to form a tight mechanical intercellular link; forms a large portion of the intercalated disc, the structure at which myofibrils terminate in cardiomyocytes. 87793 0 0 66691 9 respiratory chain complex III A protein complex that transfers electrons from ubiquinol to cytochrome c and translocates two protons across a membrane. The complex contains a core structure of three catalytic subunits: cytochrome b, the Rieske iron sulfur protein (ISP), and cytochrome c1, which are arranged in an integral membrane-bound dimeric complex; additional subunits are present, and vary among different species. 87794 0 0 66692 9 condensed chromosome outer kinetochore The region of a condensed chromosome kinetochore most external to centromeric DNA; this outer region mediates kinetochore-microtubule interactions. 87800 0 0 66693 9 homotetrameric ADPG pyrophosphorylase complex A protein complex composed of four identical subunits that possesses ADPG pyrophosphorylase activity. Examples of this component are found in Bacterial species. 87802 0 0 66694 9 apical part of cell The region of a polarized cell that forms a tip or is distal to a base. For example, in a polarized epithelial cell, the apical region has an exposed surface and lies opposite to the basal lamina that separates the epithelium from other tissue. 87803 0 0 66695 9 cytoplasmic dynein intermediate chain (obsolete GO:0001688) OBSOLETE (was not defined before being made obsolete). 87804 1 0 66696 9 BAX complex An oligomeric protein complex consisting of BAX, a member of the Bcl-2 family of anti- and proapoptotic regulators. 87805 0 0 66697 9 nuclear membrane Either of the lipid bilayers that surround the nucleus and form the nuclear envelope; excludes the intermembrane space. 87806 0 0 66698 9 chiasma A connection formed between chromatids, visible during meiosis, thought to be the point of the interchange involved in crossing-over. 87807 0 0 66702 9 U2-type prespliceosome A spliceosomal complex that is formed by association of the 5' splice site with the U1 snRNP, while the branch point sequence is recognized by the U2 snRNP. The prespliceosome includes many proteins in addition to those found in the U1 and U2 snRNPs. Commitment to a given pair of 5' and 3' splice sites occurs at the time of prespliceosome formation. 87813 0 0 66703 9 nuclear centromeric heterochromatin A region of heterochromatin located near the centromere of a chromosome in the nucleus. 87815 0 0 66704 9 PSII associated light-harvesting complex II, peripheral complex, LHCIIb subcomplex A pigment protein complex that forms part of the photosystem II associated light-harvesting complex II; contains two proteins (usually about 28 and 27 kDa), and may contain a third; peripherally located relative to other LHC polypeptides. 87816 0 0 66705 9 cornified envelope An insoluble protein structure formed under the plasma membrane of cornifying epithelial cells. 87818 0 0 66706 9 proton-transporting two-sector ATPase complex, proton-transporting domain A protein complex that forms part of a proton-transporting two-sector ATPase complex and carries out proton transport across a membrane. The proton-transporting domain (F0, V0, or A0) includes integral and peripheral membrane proteins. 87820 0 0 66707 9 dendritic growth cone The migrating motile tip of a growing nerve cell dendrite. 87821 0 0 66708 9 nuclear mitotic cohesin complex A cohesin complex that mediates sister chromatid cohesion in the nucleus during mitosis; has a subunit composition distinct from that of the meiotic cohesin complex. 87822 0 0 66709 9 nuclear speck A discrete extra-nucleolar subnuclear domain, 20-50 in number, in which splicing factors are seen to be localized by immunofluorescence microscopy. 87823 0 0 66710 9 respiratory chain The protein complexes that form the electron transport system (the respiratory chain), associated with a cell membrane, usually the plasma membrane (in prokaryotes) or the inner mitochondrial membrane (on eukaryotes). The respiratory chain complexes transfer electrons from an electron donor to an electron acceptor and are associated with a proton pump to create a transmembrane electrochemical gradient. 87825 0 0 66711 9 alphav-beta1 integrin complex An integrin complex that comprises one alphav subunit and one beta1 subunit. 87826 0 0 66712 9 C-fiber The axon of a dorsal root ganglion cell that are responsive to pain and temperature. C-fibers are small in diameter (0.2-1.5 um) and unmyelinated. 87827 0 0 66713 9 extrinsic to vacuolar membrane Loosely bound to one or the other surface of the vacuolar membrane, but not integrated into the hydrophobic region. 87829 0 0 66714 9 SMC loading complex A protein complex required for the loading of a structural maintenance of chromosome (SMC) complex, such as cohesin, condensin or SMC5/SMC6, onto DNA. Appears to be eukaryotically conserved. 87830 0 0 66715 9 APC-Axin-1-beta-catenin complex A protein complex that contains the tumor suppressor protein adenomatous polyposis coli (APC), Axin-1, and beta-catenin. 87831 0 0 66739 9 ESCRT I complex An endosomal sorting complex required for transport. It consists of the class E vacuolar protein sorting (Vps) proteins and interacts with ubiquitinated cargoes. 87862 0 0 66945 9 bacterial-type flagellum hook-filament junction The region of the flagellum where the hook and filament meet. Examples of this component are found in bacteria. 88163 0 0 66716 9 succinate-CoA ligase complex (ADP-forming) A heterodimeric enzyme complex, composed of an alpha and beta chain, most usually found in (but not limited to) bacteria. Functions in the TCA cycle, hydrolyzing succinyl-CoA into succinate and CoA, thereby forming ATP. 87833 0 0 66717 9 mitochondrial intracristal space The space bounded by the mitochondrial cristae membranes, continuous with the intermembrane space. 87834 0 0 66718 9 photoreceptor outer segment membrane The membrane surrounding the outer segment of a vertebrate photoreceptor. 87836 0 0 66719 9 cytoplasmic chromosome A chromosome found in the cytoplasm. 87837 0 0 66720 9 monomeric IgA immunoglobulin complex A protein complex composed of two identical immunoglobulin heavy chains of an IgA isotype and two identical immunoglobulin light chains, held together by disulfide bonds, and present in the extracellular space, in mucosal areas or other tissues, or circulating in the blood or lymph. 87838 0 0 66721 9 keratin filament A filament composed of acidic and basic keratins (types I and II), typically expressed in epithelial cells. The keratins are the most diverse classes of IF proteins, with a large number of keratin isoforms being expressed. Each type of epithelium always expresses a characteristic combination of type I and type II keratins. 87839 0 0 66722 9 collagen type VII A collagen homotrimer of alpha1(VII) chains; type VII collagen triple helices form antiparallel dimer, which in turn associate laterally to form anchoring fibrils that connect type IV collagen in the basal lamina to plaques in the underlying connective tissue. 87840 0 0 66723 9 cell cortex The region of a cell that lies just beneath the plasma membrane and often, but not always, contains a network of actin filaments and associated proteins. 87841 0 0 66724 9 serine C-palmitoyltransferase complex An enzyme complex that catalyzes the transfer of a palmitoyl on to serine, forming 3-dehydro-D-sphinganine. 87842 0 0 66725 9 procollagen-proline 4-dioxygenase complex, alpha(III) type A procollagen-proline 4-dioxygenase complex that contains alpha subunits of the type III isoform. 87843 0 0 66726 9 primary lysosome A lysosome before it has fused with a vesicle or vacuole. 87845 0 0 66727 9 junctional sarcoplasmic reticulum membrane The part of the sarcoplasmic reticulum membrane that contains calcium release channels, is devoted to calcium release and is juxtaposed to transverse tubule membrane. The junctional sarcoplasmic reticulum membrane consists of the junctional region of the terminal cisterna membrane. 87846 0 0 66728 9 extracellular region The space external to the outermost structure of a cell. For cells without external protective or external encapsulating structures this refers to space outside of the plasma membrane. This term covers the host cell environment outside an intracellular parasite. 87847 0 0 66729 9 NMS complex A supercomplex formed by the association of two subcomplexes (known as MIND and Ndc80 in Schizosaccharomyces) with additional proteins at the kinetochores of condensed nuclear chromosomes. 87848 0 0 66754 9 m-AAA complex Protease complex of the mitochondrial inner membrane that is involved in mitochondrial protein turnover and in processing of proteins imported into mitochondria. 87880 0 0 66755 9 aspartate carbamoyltransferase complex A multienzyme complex that catalyzes the formation N-carbamoyl-L-aspartate from carbamoyl phosphate and L-aspartate. It exhibits a variety of architectural organizations, but in all microorganisms the core catalytic component is a homotrimer of approximately 34 kDa polypeptides. 87883 0 0 66730 9 ATP-binding cassette (ABC) transporter complex, substrate-binding subunit-containing A complex for the transport of metabolites into the cell, consisting of 5 subunits: two ATP-binding subunits, two membrane spanning subunits, and one substrate-binding subunit. In organisms with two membranes, the substrate-binding protein moves freely in the periplasmic space and joins the other subunits only when bound with substrate. In organisms with only one membrane the substrate-binding protein is tethered to the cytoplasmic membrane and associated with the other subunits. Transport of the substrate across the membrane is driven by the hydrolysis of ATP. 87850 0 0 66731 9 DNA replication factor A complex A conserved heterotrimeric complex that binds nonspecifically to single-stranded DNA and is required for multiple processes in eukaryotic DNA metabolism, including DNA replication, DNA repair, and recombination. In all eukaryotic organisms examined the complex is composed of subunits of approximately 70, 30, and 14 kDa. 87851 0 0 66732 9 dense fibrillar component A structure found in the nucleolus, which contains newly synthesized preribosomal RNA (pre-rRNA) and a collection of proteins. 87853 0 0 66733 9 Fanconi anaemia nuclear complex A protein complex composed of the Fanconi anaemia (FA) proteins including A, C, E, G and F (FANCA-F). Functions in the activation of the downstream protein FANCD2 by monoubiquitylation, and is essential for protection against chromosome breakage. 87854 0 0 66734 9 mitochondrial part Any constituent part of a mitochondrion, a semiautonomous, self replicating organelle that occurs in varying numbers, shapes, and sizes in the cytoplasm of virtually all eukaryotic cells. It is notably the site of tissue respiration. 87856 0 0 66735 9 anchored to membrane Tethered to a membrane by a covalently attached anchor, such as a lipid group, that is embedded in the membrane. When used to describe a protein, indicates that none of the peptide sequence is embedded in the membrane. 87857 0 0 66736 9 holo TFIIH complex A complex that contains kinase activity directed towards the C-terminal Domain (CTD) of the largest subunit of RNA polymerase II and is essential for initiation at RNA polymerase II promoters in vitro. In S. cerevisiae, it is composed of the 5-subunit core (Rad3p, Tfb1p, Tfb2p, Ssl1p and Tfb4p), Ssl2p, and TFIIK (Kin28p, Ccl1p, and Tfb3p). All of the subunits have equivalents in humans: the 5 subunit core is composed of ERCC2, p62, p55, p44, p34; the equivalent of the TFIIK subcomplex is composed of MO15, Mat1, and a cyclin; the human equivalent of Ssl2p is XPB. 87858 0 0 66737 9 transcriptionally silent chromatin The ordered and organized complex of DNA and protein that forms regions of the chromosome that are not being actively transcribed. 87859 0 0 66738 9 blood microparticle A phospholipid microvesicle that is derived from any of several cell types, such as platelets, blood cells, endothelial cells, or others, and contains membrane receptors as well as other proteins characteristic of the parental cell. Microparticles are heterogeneous in size, and are characterized as microvesicles free of nucleic acids. 87861 0 0 66771 9 elastin (obsolete GO:0001529) OBSOLETE (was not defined before being made obsolete). 87908 1 0 66740 9 polytene chromosome weak point A region of the polytene chromosome where the diameter is considerably decreased, probably resulting from local differences in chromosome organization. 87863 0 0 66741 9 nuclear euchromatin The dispersed less dense form of chromatin in the interphase nucleus. It exists in at least two forms, a some being in the form of transcriptionally active chromatin which is the least condensed, while the rest is inactive euchromatin which is more condensed than active chromatin but less condensed than heterochromatin. 87864 0 0 66742 9 mating projection septin ring A septin ring, i.e. a ring-shaped structure composed of septins and septin-associated proteins, located at the neck of a shmoo (mating projection). The septin ring in the neck of a shmoo may act as a barrier to localize mating factors in the shmoo tip. 87865 0 0 66743 9 cytochrome b6f complex Complex that transfers electrons from reduced plastoquinone to oxidized plastocyanin and translocates protons from the stroma to the lumen. The complex contains a core structure of three catalytic subunits: cytochrome b, the Rieske iron sulfur protein (ISP), and cytochrome f, which are arranged in an integral membrane-bound dimeric complex; additional subunits are present, and vary among different species. 87866 0 0 66744 9 MAML2-RBP-Jkappa-ICN4 complex A protein complex that consists of the intracellular domain of Notch4 (ICN4), the DNA-binding transcription factor RBP-Jkappa, and the transcriptional coactivator Mastermind-like-2 (MAML2); the complex is involved in transcriptional activation in response to Notch-mediated signaling. 87867 0 0 66745 9 TAF4B-containing transcription factor TFIID complex A transcription factor TFIID complex that contains the TBP-associated factor TAF4B (also known as TAFII105 in human), a cell-type-specific variant of TAF4. 87868 0 0 66746 9 Shc-EGFR complex A protein complex that contains the epidermal growth factor receptor (EGFR) and the adaptor protein Shc, and is involved in linking EGFR activation to the p21-Ras pathway. 87870 0 0 66747 9 murein sacculus (obsolete GO:0030063) OBSOLETE. A structure formed of the cross-linked polymer peptidoglycan (also called murein) that forms a covalently closed net around a bacterial cell, and imparts structural stability to the bacterial cell wall. 87871 1 0 66748 9 integral to plastid membrane Penetrating at least one phospholipid bilayer of a plastid membrane. May also refer to the state of being buried in the bilayer with no exposure outside the bilayer. 87873 0 0 66749 9 mitochondrial proton-transporting ATP synthase, catalytic core The hexamer, comprising three alpha and three beta subunits, that possesses the catalytic activity of the mitochondrial hydrogen-transporting ATP synthase. 87874 0 0 66750 9 symbiont-containing vacuolar space The space between a symbiont plasma membrane and the symbiont-containing vacuole membrane. 87875 0 0 66751 9 proteasome accessory complex A protein complex, that caps one or both ends of the proteasome core complex and regulates entry into, or exit from, the proteasome core complex. 87876 0 0 66752 9 actomyosin, myosin complex part The myosin part of any complex of actin, myosin, and accessory proteins. 87877 0 0 66753 9 caveolar macromolecular signaling complex A complex composed of proteins required for beta adrenergic receptor activation of protein kinase A. It includes the Cav 12. subunit of L-type calcium channel, protein kinase A regulatory subunit 2(PKAR2), adenyl cyclase, beta-adrenergic receptor, G-alpha-S, protein phosphatase 2A (PP2A) and caveolin 3 (CAV3). 87878 0 0 66756 9 carbamoyl-phosphate synthase complex A protein complex that catalyzes the formation of carbamoyl phosphate; comprises a small subunit that binds and cleaves glutamine, and a large subunit that accepts the ammonia group cleaved from glutamine, binds all of the remaining substrates and effectors, and carries out all of the other catalytic events. 87885 0 0 66757 9 importin (obsolete GO:0005646) OBSOLETE (was not defined before being made obsolete). 87887 1 0 66758 9 clathrin coat A membrane coat found on coated pits and some coated vesicles; consists of polymerized clathrin triskelions, each comprising three clathrin heavy chains and three clathrin light chains, linked to the membrane via one of the AP adaptor complexes. 87888 0 0 66759 9 succinate-CoA ligase complex (GDP-forming) A heterodimeric enzyme complex, usually composed of an alpha and beta chain. Functions in the TCA cycle, hydrolyzing succinyl-CoA into succinate and CoA, thereby forming GTP. 87891 0 0 66760 9 dihydrolipoamide S-acyltransferase complex (obsolete GO:0009351) OBSOLETE. An enzyme complex that catalyzes the transfer of an acyl group from coenzyme A to dihydrolipoamide. 87894 1 0 66761 9 nuclear envelope The double lipid bilayer enclosing the nucleus and separating its contents from the rest of the cytoplasm; includes the intermembrane space, a gap of width 20-40 nm (also called the perinuclear space). 87895 0 0 66762 9 cyclin-dependent protein kinase activating kinase holoenzyme complex A protein complex that phosphorylates cyclin-dependent kinases such as Cdc2 on Thr161 (or an equivalent residue); contains a catalytic subunit and a regulatory subunit, and some examples also include an assembly factor. 87897 0 0 66763 9 platelet dense tubular network membrane The lipid bilayer surrounding the platelet dense tubular network. 87899 0 0 66764 9 mRNA cap binding complex Any protein complex that binds to an mRNA cap at any time in the lifetime of the mRNA. 87900 0 0 66765 9 chorion A protective, noncellular membrane that surrounds the eggs of various animals including insects and fish. 87901 0 0 66766 9 postsynaptic membrane A specialized area of membrane facing the presynaptic membrane on the tip of the nerve ending and separated from it by a minute cleft (the synaptic cleft). Neurotransmitters across the synaptic cleft and transmit the signal to the postsynaptic membrane. 87902 0 0 66767 9 organellar small ribosomal subunit The smaller of the two subunits of an organellar ribosome. 87903 0 0 66768 9 other organism A secondary organism with which the first organism is interacting. 87904 0 0 66769 9 endoplasmic reticulum tubular network An endoplasmic reticulum part that comprises the membranes with high curvature in cross-section. 87905 0 0 66770 9 Hedgehog signaling complex A multiprotein complex that binds microtubules in a Hedgehog-dependent manner, and is required for signal transduction by members of the Hedgehog family of proteins. The core components of the complex are the serine/threonine protein kinase Fused, the kinesin motor protein Costal2 (Cos2), and a zinc finger transcription factor (Gli family members in humans, and Cubitus interruptus (Ci) in Drosophila). 87906 0 0 66772 9 collagen type IV A collagen heterotrimer containing type IV alpha chains; [alpha1(IV)]2alpha2(IV) trimers are commonly observed, although more type IV alpha chains exist and may be present in type IV trimers; type IV collagen triple helices associate to form nets within basement membranes. 87909 0 0 74580 19 epoxyqueuosine Epoxyqueuosine is a modified 7-deazoguanosine. 97842 0 0 66773 9 follicle-stimulating hormone complex A gonadotrophic glycoprotein hormone secreted, in mammals, by the anterior pituitary gland; consists of alpha and beta subunits, the latter of which confers hormonal specificity. 87910 0 0 66774 9 slime layer A slime layer is an easily removed, diffuse, unorganized layer of extracellular material that surrounds a cell. Specifically this consists mostly of exopolysaccharides, glycoproteins, and glycolipids. 87911 0 0 66775 9 prophase chromosome (obsolete GO:0005709) OBSOLETE. A chromosome found in the cell during prophase. 87913 1 0 66776 9 gamma-tubulin large complex, interphase microtubule organizing center A complex of gamma tubulin and associated proteins thought to be formed by multimerization of gamma-tubulin small complexes located at interphase microtubule organizing centers. 87914 0 0 66777 9 myosin IV complex A myosin complex containing one or more class IV myosin heavy chains and associated light chains; myosin IV is relatively uncharacterized, but is predicted to have a single motor domain, one IQ motif and a tail with a Myosin Tail Homology (myTH4) domain homologous to that in the tails of myosins VII and XV. 87915 0 0 66778 9 pyrophosphate-dependent phosphofructokinase complex, beta-subunit complex Refers to the beta subunit of the heterodimeric complex that possesses pyrophosphate-dependent phosphofructokinase activity. 87916 0 0 66779 9 deep fiber Inward projections of the cytoskeletal structures of the oral apparatus, which form a fiber that extends past the cytostome into the cytoplasm. 87917 0 0 66780 9 ionotropic glutamate receptor complex A multimeric assembly of four or five subunits which form a structure with an extracellular N-terminus and a large loop that together form the ligand binding domain. The C-terminus is intracellular. The ionotropic glutamate receptor complex itself acts as a ligand-gated ion channel; on binding glutamate, charged ions pass through a channel in the center of the receptor complex. 87918 0 0 66781 9 axon collateral Any of the smaller branches of an axon that emanate from the main axon cylinder. 87919 0 0 66782 9 nuclear chromosome, telomeric region The terminal region of a linear chromosome in the nucleus that includes the telomeric DNA repeats and associated proteins. 87921 0 0 66783 9 piP-body A P granule that contains the PIWIL4-TDRD9 module, a set of proteins that act in the secondary piRNA pathway. 87922 0 0 66784 9 chloroplast small ribosomal subunit The small subunit of a ribosome contained within a chloroplast. 87923 0 0 66785 9 larval serum protein-1 (obsolete GO:0005617) OBSOLETE (was not defined before being made obsolete). 87924 1 0 66786 9 septin filament array Arrays of septin filaments, or bars, found in a series of filamentous structures. Such structures have been observed in the prospore membrane during spore formation in S. cerevisiae and in the chlamydospore membrane during chlamydospore formation in C. albicans. 87925 0 0 66787 9 U4 snRNP A ribonucleoprotein complex that contains small nuclear RNA U4. 87926 0 0 66788 9 clathrin-coated phagocytic vesicle membrane The lipid bilayer surrounding a clathrin-coated phagocytic vesicle. 87927 0 0 66789 9 host cell mitochondrial inner membrane The inner, i.e. lumen-facing, lipid bilayer of the host cell mitochondrial envelope. It is highly folded to form cristae. 87928 0 0 66790 9 dendritic spine neck Part of the dendritic spine that connects the dendritic shaft to the head of the dendritic spine. 87929 0 0 66791 9 alpha7-beta1 integrin-nicotinamide riboside kinase complex A protein complex that consists of an alpha7-beta1 integrin complex bound to nicotinamide riboside kinase 2 (also known as muscle integrin binding protein, MIBP). 87930 0 0 66792 9 eukaryotic translation initiation factor 3 complex, eIF3e An eukaryotic translation initiation factor 3 complex that contains the PCI-domain protein eIF3e. 87932 0 0 66793 9 medial membrane band A sterol-rich region of the plasma membrane which forms at the cell surface overlying the contractile ring and spreads into the invaginating plasma membrane surrounding the septum. 87934 0 0 66794 9 alphaV-beta6 integrin-TGFbeta-3 complex A protein complex that consists of an alphaV-beta6 integrin complex bound to transforming growth factor beta-3 (TGFbeta-3). 87935 0 0 66795 9 extrinsic to membrane Loosely bound to one surface of a membrane, but not integrated into the hydrophobic region. 87937 0 0 66796 9 glycoprotein network An extracellular matrix part that consists of cross-linked glycoproteins. 87939 0 0 66797 9 proton-transporting ATP synthase complex A proton-transporting two-sector ATPase complex that catalyzes the phosphorylation of ADP to ATP during oxidative phosphorylation. The complex comprises a membrane sector (F0) that carries out proton transport and a cytoplasmic compartment sector (F1) that catalyzes ATP synthesis by a rotational mechanism; the extramembrane sector (containing 3 a and 3 b subunits) is connected via the d-subunit to the membrane sector by several smaller subunits. Within this complex, the g and e subunits and the 9-12 c subunits rotate by consecutive 120 degree angles and perform parts of ATP synthesis. This movement is driven by the hydrogen ion electrochemical potential gradient. 87942 0 0 66798 9 BRISC complex A protein complex that contains the FAM175B/ABRO1, BRCC3/BRCC36, BRE/BRCC45 and MERIT40/NBA1 proteins, and specifically cleaves K63-linked polyubiquitin chains. 87944 0 0 66799 9 integral to membrane of membrane fraction Integral to that fraction of cells, prepared by disruptive biochemical methods, that includes the plasma and other membranes; require detergents, such as Triton X-100, to be released from membranes. 87945 0 0 66800 9 compact myelin The portion of the myelin sheath in which layers of cell membrane are tightly juxtaposed, completely excluding cytoplasm. The juxtaposed cytoplasmic surfaces form the major dense line, while the juxtaposed extracellular surfaces form the interperiod line visible in electron micrographs. 87947 0 0 66801 9 plastid biotin carboxylase complex A biotin carboxylase complex located in the stroma of a plastid. 87949 0 0 66802 9 protein-DNA complex A macromolecular complex containing both protein and DNA molecules. 87950 0 0 66939 9 glutamate synthase complex A complex that possesses glutamate synthase activity. 88156 0 0 66803 9 IgG immunoglobulin complex A protein complex composed of two identical immunoglobulin heavy chains of an IgG isotype and two identical immunoglobulin light chains, held together by disulfide bonds. An IgG immunoglobulin complex may be embedded in the plasma membrane or present in the extracellular space, in mucosal areas or other tissues, or circulating in the blood or lymph. 87951 0 0 67000 9 dimethyl sulfoxide reductase complex An enzyme complex that catalyzes the formation of dimethyl sulfide from dimethyl sulfoxide. 88236 0 0 66804 9 TRAF2-GSTP1 complex A protein complex comprising tumor necrosis factor (TNF) receptor-associated factor 2 (TRAF2) and glutathione S-transferase pi 1 (GSTP1). This complex is thought to disrupt the TNF signaling cascade, thus down-regulating inflammatory responses. 87952 0 0 66805 9 nuclear lamina The fibrous, electron-dense layer lying on the nucleoplasmic side of the inner membrane of a cell nucleus, composed of lamin filaments. The polypeptides of the lamina are thought to be concerned in the dissolution of the nuclear envelope and its re-formation during mitosis. The lamina is composed of lamin A and lamin C filaments cross-linked into an orthogonal lattice, which is attached via lamin B to the inner nuclear membrane through interactions with a lamin B receptor, an IFAP, in the membrane. 87954 0 0 66806 9 phosphopantothenoylcysteine decarboxylase complex A protein complex that catalyzes decarboxylation of 4'-phosphopantothenoylcysteine to yield 4'-phosphopantetheine; this is the third step in the biosynthesis of Coenzyme A. The complex is homotrimeric in many eukaryotes, but is a heterotrimer in Saccharomyces. 87955 0 0 66807 9 AP1 complex A heterodimeric transcription factor complex composed of proteins from the c-Fos, c-Jun, activating transcription factor (ATF) or JDP families. The subunits contain a basic leucine zipper (bZIP) domain that is essential for dimerization and DNA binding. Jun-Fos heterodimers bind preferentially to a heptamer consensus sequence (TPA responsive element (TRE)), whereas Jun-ATF dimers bind the cyclic AMP responsive element (CRE) to regulate transcription of target genes. 87957 0 0 66808 9 mitochondrial cloud A prominent mass in the cytoplasm of previtellogenic oocytes. The cloud contains both mitochondria and electron-dense granulofibrillar material (GFM) and is the source of germinal granule material. 87961 0 0 66809 9 Golgi-associated vesicle membrane The lipid bilayer surrounding a vesicle associated with the Golgi apparatus. 87963 0 0 66810 9 alpha4-beta1 integrin-JAM2 complex A protein complex that consists of an alpha4-beta1 integrin complex bound to the cell adhesion molecule JAM2. 87964 0 0 66811 9 nucleotide-excision repair factor 3 complex One of several protein complexes involved in nucleotide-excision repair; possesses endodeoxynuclease and DNA helicase activities. In S. cerevisiae, it is composed of Rad2p and the core TFIIH-Ssl2p complex (Core TFIIH is composed of Rad3p, Tfb1p, Tfb2p, Ssl1p, and Tfb4p. Note that Ssl2p is also called Rad25p). 87966 0 0 66812 9 exocytic vesicle A transport vesicle that mediates transport from an intracellular compartment to the plasma membrane, and fuses with the plasma membrane to release various cargo molecules, such as proteins or hormones, by exocytosis. 87967 0 0 66813 9 host thylakoid membrane The pigmented membrane of any host thylakoid. 87968 0 0 66837 9 phagocytic cup An invagination of the cell membrane formed by an actin dependent process during phagocytosis. Following internalization it is converted into a phagosome. 88004 0 0 66838 9 alpha5-beta1 integrin-LPP3 complex A protein complex that consists of an alpha5-beta1 integrin complex bound to lipid phosphate phosphohydrolase-3. 88006 0 0 66814 9 plasma membrane respiratory chain complex I A subcomplex of the respiratory chain located in the plasma membrane. It contains about 25 different polypeptide subunits, including NADH dehydrogenase (ubiquinone), flavin mononucleotide and several different iron-sulfur clusters containing non-heme iron. The iron undergoes oxidation-reduction between Fe(II) and Fe(III), and catalyzes proton translocation linked to the oxidation of NADH by ubiquinone. Examples of this component are found in Bacterial species. 87969 0 0 66815 9 elastic fiber An extracellular matrix part that consists of an insoluble core of polymerized tropoelastin monomers and a surrounding mantle of microfibrils. Elastic fibers provide elasticity and recoiling to tissues and organs, and maintain structural integrity against mechanical strain. 87970 0 0 66816 9 Cul5-RING ubiquitin ligase complex A ubiquitin ligase complex in which a cullin from the Cul5 subfamily and a RING domain protein form the catalytic core; substrate specificity is conferred by an elongin-BC adaptor and a SOCS/BC box protein. 87972 0 0 66817 9 type II protein secretion system complex A large protein complex, containing 12-15 subunits, that spans the cell envelope of Gram-negative bacteria and mediates the movement of proteins into the extracellular environment. The complex includes a component in the cytoplasm, an inner membrane subcomplex that reaches into the periplasmic compartment and a secretion pore in the outer membrane. Proteins using the Type II pathway are transported across the cytoplasmic membrane by the Sec or Tat complex. 87973 0 0 66818 9 Atg12-Atg5-Atg16 complex A protein complex required for the expansion of the autophagosomal membrane. In budding yeast, this complex consists of Atg12p, Atg5p and Atg16p. 87975 0 0 66819 9 endospore external encapsulating structure The structures that lie outside the inner membrane and surround the entire endospore; consists of a peptidoglycan-containing inner layer (the endospore cortex) surrounded by a multilayered proteinaceous coat. An exosporium may be present as an extreme outer layer. 87977 0 0 66820 9 eukaryotic translation initiation factor 2 complex Complex of three heterogeneous polypeptide chains, that form a ternary complex with initiator methionyl-tRNA and GTP. This ternary complex binds to free 40S subunit, which subsequently binds the 5' end of mRNA. 87979 0 0 66821 9 Fc-gamma receptor I complex A protein complex composed of an Fc-gamma RI alpha chain and an Fc-epsilon RI gamma chain dimer with or without additional signaling components. The complex functions primarily as an activating receptor for IgG. 87981 0 0 66822 9 bacterial-type flagellum part Any constituent part of flagellum, a 20 nm diameter filament composed of subunits of flagellin driven passively at its base by a motor powered by the transmembrane proton potential. Examples of this component are found in bacterial species. 87984 0 0 66823 9 etioplast prolamellar body A three dimensional regular lattice found in etioplasts. It is composed of a continuous system of tubules but when exposed to light the symmetrical arrangement is rapidly lost as tubules become pinched off into two dimensional sections of lattice. These for perforated sheets of membrane that move apart, extend and increase, finally establishing the typical granal and intergranal lamellae of the mature chloroplast. 87985 0 0 66824 9 late endosome A prelysosomal endocytic organelle differentiated from early endosomes by lower lumenal pH and different protein composition. Late endosomes are more spherical than early endosomes and are mostly juxtanuclear, being concentrated near the microtubule organizing center. 87986 0 0 66825 9 cytoplasm All of the contents of a cell excluding the plasma membrane and nucleus, but including other subcellular structures. 87988 0 0 67605 9 importin, alpha-subunit (obsolete GO:0005647) OBSOLETE (was not defined before being made obsolete). 89158 1 0 66826 9 mitochondrial ribonuclease P complex A ribonuclease P complex located in the mitochondrion of a eukaryotic cell, where it catalyzes the 5' endonucleolytic cleavage of precursor tRNAs to yield mature tRNAs. The subunit composition of mitochondrial ribonuclease P complexes varies between species, but the complex often contains a single RNA molecule and a single protein molecule. 87989 0 0 66827 9 ciliary neurotrophic factor receptor complex A protein complex that acts as a receptor for the cytokine ciliary neurotrophic factor (CNTF). In humans the receptor complex is a hexamer composed of two molecules each of CNTF and CNTFR and one molecule each of gp130 and LIFR. 87990 0 0 66828 9 gamma-tubulin complex A multiprotein complex composed of gamma-tubulin and other non-tubulin proteins. Gamma-tubulin complexes are localized to microtubule organizing centers, and play an important role in the nucleation of microtubules. The number and complexity of non-tubulin proteins associated with these complexes varies between species. 87992 0 0 66829 9 WINAC complex A SWI/SNF-type complex that directly interacts with the vitamin D receptor (VDR) through the Williams syndrome transcription factor (WSTF), and mediates the recruitment of unliganded VDR to VDR target sites in promoters. The WINAC complex contains at least 13 subunits, including WSTF, several SWI/SNF components, and DNA replication-related factors. 87993 0 0 66830 9 collagen type III A collagen homotrimer of alpha1(III) chains; type III collagen triple helices associate to form fibrils. 87995 0 0 66831 9 lysosomal proton-transporting V-type ATPase complex A proton-transporting two-sector ATPase complex found in the lysosomal membrane, where it acts as a proton pump to mediate acidification of the lysosomal lumen. 87996 0 0 66832 9 CAF-1 complex A conserved heterotrimeric protein complex that promotes histone H3 and H4 deposition onto newly synthesized DNA during replication or DNA repair; specifically facilitates replication-dependent nucleosome assembly with the major histone H3 (H3.1). In many species the CAF-1 subunits are designated p150, p60, and p48. 87997 0 0 66833 9 ribonucleoprotein complex A macromolecular complex containing both protein and RNA molecules. 88000 0 0 66834 9 vesicle lumen The volume enclosed by the membrane or protein that forms a vesicle. 88001 0 0 66835 9 filopodium tip The end of a filopodium distal to the body of the cell. 88002 0 0 66836 9 dimeric IgA immunoglobulin complex A protein complex composed of two monomeric IgA immunoglobulin complexes linked through both direct disulfide bonds and through a disulfide binded monomer of J chain acting as a bridge. Each IgA monomer consists of two identical immunoglobulin heavy chains of an IgA isotype and two identical immunoglobulin light chains, held together by disulfide bonds. Dimeric IgA is sometimes complexed additionally with secretory component, and present in the extracellular space, in mucosal areas or other tissues, or circulating in the blood or lymph. 88003 0 0 66839 9 protein farnesyltransferase complex A protein complex that possesses protein farnesyltransferase activity. 88008 0 0 66840 9 nuclear aryl hydrocarbon receptor complex An aryl hydrocarbon receptor (AhR) complex found in the nucleus; ; consists of ligand-bound AhR and the aryl hydrocarbon receptor nuclear translocator (ARNT). 88009 0 0 66841 9 elongin complex A transcription elongation factor complex that suppresses RNA polymerase II pausing, and may act by promoting proper alignment of the 3'-end of nascent transcripts with the polymerase catalytic site. Consists of a transcriptionally active Elongin A subunit (abut 100 kDa)and two smaller Elongin B (about 18 kDa) and Elongin C (about 15 kDa)subunits. 88010 0 0 66842 9 sarcomere The repeating unit of a myofibril in a muscle cell, composed of an array of overlapping thick and thin filaments between two adjacent Z discs. 88011 0 0 66843 9 ribonuclease H2 complex A protein complex that possesses ribonuclease H activity, in which the catalytic subunit is a member of the RNase H2 (or HII) class. For example, in Saccharomyces the complex contains Rnh201p, Rnh202p and Rnh203p. 88012 0 0 66844 9 SAGA complex A SAGA-type histone acetyltransferase complex that contains Spt8 (in budding yeast) or a homolog thereof; additional polypeptides include Spt group, consisting of Spt7, Spt3, and Spt20/Ada5, which interact with the TATA-binding protein (TBP); the Ada group, consisting of Ada1, Ada2, Ada3, Ada4/Gcn5, and Ada5/Spt20, which is functionally linked to the nucleosomal HAT activity; Tra1, an ATM/PI-3 kinase-related protein that targets DNA-bound activators for recruitment to promoters; the TBP-associated factor (TAF) proteins, consisting of Taf5, Taf6, Taf9, Taf10, and Taf12, which mediate nucleosomal HAT activity and are thought to help recruit the basal transcription machinery. 88014 0 0 66845 9 intrinsic to thylakoid membrane Located in a thylakoid membrane such that some covalently attached portion of the gene product, for example part of a peptide sequence or some other covalently attached group such as a GPI anchor, spans or is embedded in one or both leaflets of the membrane. 88016 0 0 66846 9 vacuolar lumen The volume enclosed within the vacuolar membrane. 88017 0 0 66847 9 endosomal part Any constituent part of an endosome, a membrane-bounded organelle to which materials ingested by endocytosis are delivered. 88018 0 0 66848 9 peroxisomal membrane The lipid bilayer surrounding a peroxisome. 88019 0 0 66849 9 type II fatty acid synthase complex (obsolete GO:0031375) OBSOLETE A fatty acid synthase complex in which each polypeptide chain catalyzes a single activity. 88020 1 0 66850 9 plasma membrane of cell tip The portion of the plasma membrane surrounding the cell tip. 88021 0 0 66851 9 secondary cell wall A plant cell wall that is no longer able to expand and so does not permit growth. Secondary cell walls contain less pectin that primary cell walls. The secondary cell is mostly composed of cellulose and is strengthened with lignin. 88022 0 0 66852 9 NAD(P)+ transhydrogenase complex (AB-specific) A protein complex that possesses NAD(P)+ transhydrogenase (AB-specific) activity. Homodimeric, trimeric, and heterotetrameric complexes have been identified. 88023 0 0 69600 13 tepal tip A phyllome tip that is part of a tepal apex. 91772 0 0 66853 9 ESCRT-0 complex A protein complex required for the recycling of Golgi proteins, formation of lumenal membranes and sorting of ubiquitinated proteins into those membranes. This complex includes Vps1p and Hse1p in yeast and the Hrs and STAM proteins in mammals. 88025 0 0 66854 9 cyanelle envelope The double lipid bilayer enclosing the cyanelle and separating its contents from the rest of the cytoplasm; includes the intermembrane space. 88028 0 0 66855 9 pericentriolar material A network of small fibers that surrounds the centrioles in cells; contains the microtubule nucleating activity of the centrosome. 88029 0 0 76519 46 is a control \N 209416 0 0 66857 9 alpha2-beta1 integrin-alpha3(VI) complex A protein complex that consists of an alpha2-beta1 integrin complex bound to a type VI collagen triple helix containing an alpha3(VI) chain. 88031 0 0 66858 9 vacuolar proton-transporting V-type ATPase, V0 domain The V0 domain of a proton-transporting V-type ATPase found in the vacuolar membrane. 88032 0 0 66859 9 Axin-APC-beta-catenin-GSK3B complex A protein complex that contains the tumor suppressor protein adenomatous polyposis coli (APC), Axin-1, beta-catenin, and glycogen synthase kinase 3 beta. Formation of this complex leads to phosphorylation of beta-catenin and down-regulation of beta-catenin activity. 88033 0 0 66860 9 Ku-DNA ligase complex A nonhomologous end joining complex that contains one or more Ku monomers and one or more DNA ligase molecules from the LigC or LigD family, and mediates nonhomologous end joining in bacteria. 88035 0 0 66861 9 NURF complex A four subunit ISWI-containing protein complex that facilitates nucleosome mobility and transcriptional activation in an ATP-dependent manner. In contrast to other chromatin remodeling complexes, the ATPase activity of NURF requires nucleosomes rather than free DNA or histones. 88037 0 0 66862 9 SREBP-SCAP complex A protein complex formed by the association of sterol regulatory element binding protein (SREBP) and SREBP-cleavage-activating protein (SCAP) in the ER membrane; in the absence of sterols, the SREBP-SCAP complex is packaged into COPII vesicles and travels to the Golgi apparatus to be processed. 88040 0 0 66863 9 basal part of cell The region of a cell situated near the base. For example, in a polarized epithelial cell, the basal surface rests on the basal lamina that separates the epithelium from other tissue. 88041 0 0 66864 9 GCH1 complex A protein complex that possesses GTP cyclohydrolase I activity. In E. coli and human, the complex is a homodecamer, and monomers are catalytically inactive. 88042 0 0 66865 9 RNA cap binding complex Any protein complex that binds to a specialized RNA cap structure at any time in the lifetime of the RNA. 88044 0 0 66866 9 motile primary cilium A primary cilium which may contain a variable array of axonemal microtubules and also contains molecular motors. Motile primary cilia display a distinct twirling motion that directs fluid flow asymmetrically across the cellular surface to affect asymmetric body plan organization. 88045 0 0 66867 9 bacterial-type flagellum basal body One of the three major substructures of the flagellin-based flagellum; a structure consisting of a rod, a series of rings, the Mot proteins, the switch complex and the flagellum-specific export apparatus. The rings anchor the flagellum to the cytoplasmic membrane (MS ring), the peptidoglycan (P ring) and the outer membrane (L ring). Examples of this component are found in bacteria. 88046 0 0 66868 9 pollen tube tip The region at growing end of the pollen tube cell, where polarized growth occurs. 88047 0 0 66869 9 IgW immunoglobulin complex A protein complex composed of two identical immunoglobulin heavy chains of the IgW isotype and two identical immunoglobulin light chains, held together by disulfide bonds. An IgW immunoglobulin complex may be embedded in the plasma membrane or present in the extracellular space, in mucosal areas or other tissues, or circulating in the blood or lymph. 88050 0 0 66870 9 axonal spine A spine that originates from the axon, usually from the initial segment. 88051 0 0 66871 9 megagametophyte egg cell nucleus The nucleus of a plant egg cell. This nucleus is found at the micropylar end of the embryo. 88053 0 0 66872 9 PCNA-p21 complex A protein complex that contains the cyclin-dependent protein kinase inhibitor p21WAF1/CIP1 bound to PCNA; formation of the complex inhibits DNA replication. 88054 0 0 66873 9 prominosome An extracellular membrane-bounded vesicle that contains prominin proteins (in mouse Prom1/CD33 or Prom2) and are found in body fluids including ventricular fluid, saliva, urine and seminal fluid. In the ventricular fluid of the developing mouse brain two major classes of these particles have been observed (P2 particles of 500-1000 nm and P4 particles of 50-80 nm) which likely originate from microvilli, primary cilia and/or the midbody of neuroepithelial cells. The physiological role is not known. 88057 0 0 66874 9 nuclear microtubule Any microtubule in the nucleus of a cell. 88061 0 0 66875 9 alphav-beta8 integrin complex An integrin complex that comprises one alphav subunit and one beta8 subunit. 88062 0 0 66876 9 glucosidase II complex A heterodimeric complex that catalyzes the trimming of glucose residues from N-linked core glycans on newly synthesized glycoproteins. 88063 0 0 66877 9 yeast-form cell wall The wall surrounding a cell of a dimorphic fungus growing in the single-cell budding yeast form, in contrast to the filamentous or hyphal form. 88066 0 0 66878 9 RecQ helicase-Topo III complex A complex containing a RecQ family helicase and a topoisomerase III homologue; may also include one or more additional proteins; conserved from E. coli to human. 88067 0 0 66879 9 leading edge membrane The portion of the plasma membrane surrounding the leading edge of a motile cell. 88069 0 0 66881 9 endoplasmic reticulum quality control compartment A subcompartment of the endoplasmic reticulum in which proteins with improper or incorrect folding accumulate. Enzymes in this compartment direct proteins with major folding problems to translocation to the cytosol and degradation, and proteins with minor folding problems to the ER, to interact with chaperon proteins. 88071 0 0 66882 9 protein acetyltransferase complex A complex that catalyzes the transfer of an acetyl group to a protein acceptor molecule. 88073 0 0 66883 9 alphav-beta3 integrin-ADAM23 complex A protein complex that consists of an alphav-beta3 integrin complex bound to the transmembrane metallopeptidase ADAM23. 88074 0 0 70459 14 5.06 60% of inflorescence emerged (obsolete PO:0007105) OBSOLETE 92736 1 0 66884 9 outer mucus layer The outer of two mucus layers secreted by epithelial cells in the colon; the outer mucus layer is loosely packed and can be colonized by bacteria. 88076 0 0 66885 9 single-stranded DNA-dependent ATP-dependent DNA helicase complex A protein complex that possesses single-stranded DNA-dependent DNA helicase activity. 88077 0 0 66886 9 male germline ring canal An intercellular bridge that connects the germline cells of a male cyst. 88078 0 0 66887 9 multivesicular body membrane The lipid bilayer surrounding a multivesicular body. 88079 0 0 66888 9 G-protein alpha(13)-synembrin complex A protein complex formed by the association of the guanine nucleotide exchange factor synembrin with the alpha(13) subunit of a heterotrimeric G protein. 88080 0 0 67001 9 synaptobrevin 2-SNAP-25-syntaxin-2 complex A SNARE complex that contains synaptobrevin 2 (VAMP2), SNAP-25, and syntaxin 2 (or orthologs thereof). 88238 0 0 66889 9 1-phosphatidylinositol-4-phosphate 3-kinase, class IA complex A heterodimeric protein complex that possesses 1-phosphatidylinositol-4-phosphate 3-kinase activity; comprises a catalytic Class IA phosphoinositide 3-kinase (PI3K) subunit of 110-120 kDa and an associated SH2 domain-containing regulatory subunit that is a member of a family of related proteins often called p85 proteins. Class I PI3Ks phosphorylate phosphatidylinositol [PI], phosphatidylinositol-4-phosphate [PI(4)P] and phosphatidylinositol-4,5-bisphosphate [PI(4,5)P2], and are divided into subclasses A and B according to the type of adaptor subunit with which they associate. Through the interaction with the SH2-containing adaptor subunits, Class IA PI3K catalytic subunits are linked to tyrosine kinase signaling pathways. 88082 0 0 66890 9 contractile vacuole pore Stable structure that regulates the flow of liquid between the contractile vacuole and the surrounding medium. 88084 0 0 66891 9 H3 histone acetyltransferase complex A multisubunit complex that catalyzes the acetylation of histone H3. 88085 0 0 66892 9 protein phosphatase 4 complex The complex formed by the catalytic subunit of protein phosphatase 4 plus a regulatory subunit. 88086 0 0 66893 9 septin cap A faint structure formed of septins found at the leading edge of growth in germ tubes and hyphae in fungal cells growing filamentously. This cap of septins colocalizes with a region of the plasma membrane that is rich in ergosterol. 88088 0 0 66894 9 flotillin complex A protein complex that contains flotillin-1 and flotillin-2, and may contain associated proteins. Flotillins associate into membrane microdomains resembling caveolae. 88089 0 0 66895 9 AP-4 adaptor complex An AP-type membrane coat adaptor complex that consists of beta4, epsilon, mu4 and sigma4 subunits and is found associated with membranes in the trans-Golgi network; it is not clear whether AP-4 forms clathrin coats in vivo. 88092 0 0 66896 9 kinesin I complex A complex of two kinesin heavy chains and two kinesin light chains. 88093 0 0 66897 9 G-protein alpha(o)-synembrin complex A protein complex formed by the association of the guanine nucleotide exchange factor synembrin with the alpha(o) subunit of a heterotrimeric G protein. 88095 0 0 66898 9 U12-type prespliceosome A spliceosomal complex that is formed by the cooperative binding of the heterodimeric U11/U12 snRNP to the 5' splice site and the branch point sequence. The U12-type prespliceosome includes many proteins in addition to those found in the U11/U12 heterodimeric snRNPs. Commitment to a given pair of 5' and 3' splice sites occurs at the time of prespliceosome formation. 88096 0 0 66924 9 GATA1-TAL1-TCF3-Lmo2 complex A protein complex that contains the zinc finger transcription factor GATA1, the LIM domain protein Lmo2 (RBTN2), the basic helix-loop-helix protein TAL1 and its binding partner TCF3. The complex is involved transcriptional regulation in hematopoiesis. 88133 0 0 66899 9 rough endoplasmic reticulum The rough (or granular) endoplasmic reticulum (ER) has ribosomes adhering to the outer surface; the ribosomes are the site of translation of the mRNA for those proteins which are either to be retained within the cisternae (ER-resident proteins), the proteins of the lysosomes, or the proteins destined for export from the cell. Glycoproteins undergo their initial glycosylation within the cisternae. 88098 0 0 66900 9 protein body A membrane-bounded plant organelle found in the developing endosperm, contains storage proteins. 88099 0 0 66901 9 sarcoglycan complex A protein complex formed of four sarcoglycans plus sarcospan; there are six known sarcoglycans: alpha-, beta-, gamma-, delta-, epsilon- and zeta-sarcoglycan; all are N-glycosylated single-pass transmembrane proteins. The sarcoglycan-sarcospan complex is a subcomplex of the dystrophin glycoprotein complex, and is fixed to the dystrophin axis by a lateral association with the dystroglycan complex. 88101 0 0 66902 9 intracellular region of host That space within the plasma membrane of a host cell. 88102 0 0 66903 9 ER to Golgi transport vesicle membrane The lipid bilayer surrounding a vesicle transporting substances from the endoplasmic reticulum to the Golgi. 88103 0 0 66904 9 guanyl-nucleotide exchange factor complex A protein complex that stimulates the exchange of guanyl nucleotides associated with a GTPase. 88105 0 0 66905 9 chlorosome A large enclosure of aggregated pigment, typically bacteriochlorophyll c (BChl c), that acts as a light-harvesting antenna structure and is characteristic of green photosynthetic bacteria (e.g. Chlorobiaceae). The BChl aggregates are organized into lamellar elements by pigment-pigment rather than pigment-protein interactions. Chlorosomes also contain BChl a, carotenoids, quinones, lipids, and proteins, and are attached to the cytoplasmic membrane via a BChl a-containing protein baseplate. 88106 0 0 66906 9 proton-transporting ATP synthase, central stalk One of two stalks that connect the catalytic core of the hydrogen-transporting ATP synthase to the membrane-associated Fo proteins; rotates within the catalytic core during catalysis. 88108 0 0 66907 9 plasma membrane proton-transporting ATP synthase complex, catalytic core F(1) The catalytic sector of the plasma membrane hydrogen-transporting ATP synthase; it comprises the catalytic core and central stalk, and is peripherally associated with the plasma membrane when the entire ATP synthase is assembled. Examples of this component are found in Bacterial species. 88109 0 0 66908 9 centriole A cellular organelle, found close to the nucleus in many eukaryotic cells, consisting of a small cylinder with microtubular walls, 300-500 nm long and 150-250 nm in diameter. It contains nine short, parallel, peripheral microtubular fibrils, each fibril consisting of one complete microtubule fused to two incomplete microtubules. Cells usually have two centrioles, lying at right angles to each other. At division, each pair of centrioles generates another pair and the twin pairs form the pole of the mitotic spindle. 88110 0 0 76465 48 trait_format trait_format 209362 0 0 66909 9 extrinsic to internal side of cell outer membrane Loosely bound to the surface of the outer membrane of the cell that faces the cytoplasm, but not integrated into the hydrophobic region. 88111 0 0 66910 9 alphaX-beta2 integrin-ICAM-4 complex A protein complex that consists of an alphaX-beta2 integrin complex bound to intercellular adhesion molecule 4. 88112 0 0 66911 9 Rad51C-XRCC3 complex A DNA recombinase mediator complex that contains the Rad51 paralogs RAD51C and XRCC3, or orthologs thereof. 88114 0 0 66912 9 MAML3-RBP-Jkappa-ICN1 complex A protein complex that consists of the intracellular domain of Notch1 (ICN1), the DNA-binding transcription factor RBP-Jkappa, and the transcriptional coactivator Mastermind-like-3 (MAML3); the complex is involved in transcriptional activation in response to Notch-mediated signaling. 88115 0 0 67002 9 cellular bud membrane The portion of the plasma membrane surrounding a cellular bud. 88239 0 0 76520 46 location_code \N 209417 0 0 66913 9 CD40 receptor complex A protein complex that contains at least CD40 (a cell surface receptor of the tumour necrosis factor receptor (TNFR) superfamily), and other signaling molecules. 88116 0 0 66914 9 gamma-secretase-Delta1 complex A protein complex that is formed by the association of the Notch ligand Delta1 with the gamma-secretase complex. 88119 0 0 66915 9 smooth endoplasmic reticulum membrane The lipid bilayer surrounding the smooth endoplasmic reticulum. 88121 0 0 66916 9 peptidoglycan-based cell wall A protective structure outside the cytoplasmic membrane composed of peptidoglycan (also known as murein), a molecule made up of a glycan (sugar) backbone of repetitively alternating N-acetylglucosamine and N-acetylmuramic acid with short, attached, cross-linked peptide chains containing unusual amino acids. An example of this component is found in Escherichia coli. 88122 0 0 66917 9 site of double-strand break A region of a chromosome at which a DNA double-strand break has occurred. DNA damage signaling and repair proteins accumulate at the lesion to respond to the damage and repair the DNA to form a continuous DNA helix. 88123 0 0 66918 9 SREBP-SCAP-Insig complex A protein complex formed by the association of sterol regulatory element binding protein (SREBP), SREBP-cleavage-activating protein (SCAP), and an Insig protein (Insig-1 or Insig-2) the ER membrane. 88126 0 0 66919 9 U12-type post-mRNA release spliceosomal complex A spliceosomal complex that is formed following the release of the spliced product from the post-spliceosomal complex and contains the excised intron and the U12, U5 and U6atac snRNPs. 88127 0 0 66920 9 plastid-encoded plastid RNA polymerase complex A A plastid-encoded DNA-directed RNA polymerase complex that resembles eubacterial multisubunit RNA polymerases, with a core composed of alpha, beta, and beta-prime subunits. An additional subunit, a sigma factor, is required for promoter recognition. PEP-A is generated from the PEP-B form during chloroplast maturation to generate a complex composed of at least thirteen polypeptides that is not sensitive to the antibiotic rifampicin, like its precursor form the PEP-B complex. 88128 0 0 66921 9 integral to mitochondrial membrane Located such that some or all of the gene product itself penetrates at least one phospholipid bilayer of a mitochondrial membrane. May also refer to the state of being buried in the bilayer with no exposure outside the bilayer. 88130 0 0 66922 9 Kv4.2-KChIP3 channel complex A voltage-gated potassium channel complex that contains the Kv channel interacting protein KChIP3 associated with the channel via interaction with the Kv alpha subunit 4.2. 88131 0 0 66923 9 intrinsic to Golgi membrane Located in the Golgi membrane such that some covalently attached portion of the gene product, for example part of a peptide sequence or some other covalently attached group such as a GPI anchor, spans or is embedded in one or both leaflets of the membrane. 88132 0 0 66925 9 vanadium-iron nitrogenase complex An enzyme complex containing a vanadium-iron cluster found in some species, such as Azotobacter vinelandii. It is composed of two proteins, dinitrogenase and nitrogenase reductase; dinitrogenase, the vanadium-iron protein, is tetrameric with an alpha2-beta2 structure, and nitrogenase reductase is a homodimer. 88135 0 0 66926 9 interleukin-28 receptor complex A protein complex that binds interleukin-28 and interleukin-29. Composed of two subunits, IL-28R alpha and IL-10R beta. 88137 0 0 66927 9 apoplast The cell membranes and intracellular regions in a plant are connected through plasmodesmata, and plants may be described as having two major compartments: the living symplast and the non-living apoplast. The apoplast is external to the plasma membrane and includes cell walls, intercellular spaces and the lumen of dead structures such as xylem vessels. Water and solutes pass freely through it. 88138 0 0 66928 9 mRNA cleavage factor complex Any macromolecular complex involved in cleavage or polyadenylation of mRNA molecules. 88139 0 0 66929 9 Atg1p signaling complex A protein complex that contains a protein kinase and is required for the autophagosome formation. In budding yeast this complex consists of the kinase Atg1p, Atg13p and Atg17p. 88140 0 0 66930 9 mitotic spindle A spindle that forms as part of mitosis. Mitotic and meiotic spindles contain distinctive complements of proteins associated with microtubules. 88142 0 0 66931 9 Ddb1-Ckn1 complex A heterodimeric nucleotide-excision repair complex that is involved in transcription-coupled repair. The subunits are known as Ddb1 and Ckn1 in S. pombe; Ddb1 contains a motif called the DDB-box that interacts with adaptor proteins for DDB1/cullin 4 ubiquitin ligases. 88143 0 0 66932 9 extracellular ferritin complex A ferritin complex located in the extracellular region. Extracellular ferritin complexes contain L (light) chains but few or no H (heavy) chains. 88144 0 0 66933 9 fertilization envelope A structure that lies outside the plasma membrane and surrounds the egg. The fertilization envelope forms from the vitelline membrane after fertilization as a result of cortical granule release. 88145 0 0 66935 9 Ski complex A protein complex that regulates RNA degradation by the exosome complex. In Saccharomyces the complex has a heterotetrameric stoichiometry consisting of one copy each of Ski2p and Ski3 and two copies of Ski8p. 88147 0 0 66936 9 inhibin complex Heterodimeric hormone composed of an inhibin alpha subunit complexed with either an inhibin beta-A subunit, to form inhibin A, or an inhibin beta-B subunit, to form inhibin B. 88152 0 0 66937 9 Toll-like receptor 2-Toll-like receptor 6 protein complex A heterodimeric protein complex containing Toll-like receptor 2 (TLR2) and Toll-like receptor 6 (TLR6). 88153 0 0 66938 9 laminin-12 complex A laminin complex composed of alpha2, beta1 and gamma3 polypeptide chains. 88155 0 0 66940 9 acidocalcisome An electron-dense acidic membrane-bounded organelle which contains a matrix of pyrophosphate and polyphosphates with bound calcium and other cations. 88157 0 0 66941 9 polarisome Protein complex that plays a role in determining cell polarity by directing the localized assembly of actin filaments at polarization sites; in Saccharomyces the polarisome includes Bni1p, Spa2p, Pea2p, and Bud6p. 88158 0 0 66942 9 dolipore septum A septum, or cross-wall, between two portions of a cell or hypha; contains a central pore around which the septum is swollen to form a barrel-shaped structure; pore is covered on each side of the septum by a septal pore cap (parenthosome). 88160 0 0 66943 9 cortical granule A secretory vesicle that is stored under the cell membrane of an egg. These vesicles fuse with the egg plasma membrane as part of egg activation and are part of the block to polyspermy. 88161 0 0 66944 9 SMN-Gemin2 complex A protein complex that contains the survival motor neuron (SMN) protein and Gemin2; may form the stable core of the larger SMN complex. 88162 0 0 66946 9 mitochondrial electron transfer flavoprotein complex A protein complex located in the mitochondrion. It contains flavin adenine dinucleotide (FAD) that, together with an acyl-CoA dehydrogenase, forms a system that oxidizes an acyl-CoA molecule and reduces ubiquinone and other acceptors in the mitochondrial electron transport system. 88164 0 0 66947 9 inhibin A complex Heterodimeric hormone composed of an inhibin alpha subunit complexed with an inhibin beta-A subunit. 88165 0 0 66948 9 alpha4-beta1 integrin-CD81 complex A protein complex that consists of an alpha4-beta1 integrin complex bound to membrane protein CD81, a member of the tetraspan family. 88166 0 0 66949 9 cytoplasmic replisome A multi-component enzymatic machine at the cytoplasmic replication fork, which mediates DNA replication. Includes DNA primase, DNA polymerase, DNA helicase, and other proteins. 88168 0 0 66950 9 muscle fiber (obsolete GO:0030484) OBSOLETE. The contractile fibers, composed of actin, myosin, and associated proteins, found in cells of smooth or striated muscle. 88169 1 0 66951 9 SOD1-Bcl-2 complex A heterodimeric protein complex formed of superoxide dismutase 1 and Bcl-2. Complex formation is thought to link superoxide dismutase to an apoptotic pathway. 88170 0 0 66952 9 carboxy-terminal domain protein kinase complex A protein complex that phosphorylates amino acid residues of RNA polymerase II C-terminal domain repeats; phosphorylation occurs mainly on Ser2 and Ser5. 88173 0 0 66953 9 integral to synaptic vesicle membrane Penetrating at least one phospholipid bilayer of a synaptic vesicle membrane. May also refer to the state of being buried in the bilayer with no exposure outside the bilayer. 88175 0 0 66954 9 nuclear replication fork The Y-shaped region of a nuclear replicating DNA molecule, resulting from the separation of the DNA strands and in which the synthesis of new strands takes place. Also includes associated protein complexes. 88176 0 0 66955 9 growth hormone receptor complex A receptor complex that consists of two identical subunits and binds growth hormone. 88177 0 0 66956 9 host cell nucleolus A small, dense body one or more of which are present in the nucleus of eukaryotic host cells. 88178 0 0 67098 9 polytene chromosome ectopic fiber A thread-like connection joining two regions of ectopically paired polytene chromosomes. 88378 0 0 66957 9 microvillus Thin cylindrical membrane-covered projections on the surface of an animal cell containing a core bundle of actin filaments. Present in especially large numbers on the absorptive surface of intestinal cells. 88179 0 0 66958 9 nuclear proteasome core complex, alpha-subunit complex The subunits forming the outer ring of the core complex of a proteasome located in the nucleus of a cell. 88181 0 0 66959 9 organelle membrane contact site A zone of apposition between the membranes of two organelles, structured by bridging complexes. Membrane contact sites (MCSs) are specialized for communication, including the efficient traffic of small molecules such as Ca2+ ions and lipids, as well as enzyme-substrate interactions. 88182 0 0 66960 9 lipopolysaccharide receptor complex A multiprotein complex that consists of at least three proteins, CD14, TLR4, and MD-2, each of which is glycosylated. 88184 0 0 66961 9 ARC complex A ribonucleoprotein complex that contains members of the Argonaute family of proteins, additional protein subunits, and duplex siRNA; required for heterochromatin assembly and siRNA generation. Possibly involved in the conversion of ds siRNA to ss siRNA. 88186 0 0 66962 9 CD20-Lck-Fyn complex A protein complex that contains the cell-surface protein CD20 and the Src family tyrosine kinases Lck and Fyn. 88187 0 0 66963 9 free sarcoplasmic reticulum membrane The part of the sarcoplasmic reticulum membrane that contains calcium pumps and is devoted to calcium uptake. The free sarcoplasmic reticulum membrane consists of the longitudinal sarcoplasmic reticulum membrane and the non-junctional region of the terminal cisterna membrane. 88189 0 0 66964 9 APC-IQGAP1-CLIP-170 complex A protein complex that contains the tumor suppressor protein adenomatous polyposis coli (APC), the small GTPase Cdc42, and CLIP-170; may play a role in cytoskeleton organization and cell migration. 88190 0 0 66965 9 insulin receptor complex A disulfide-bonded, heterotetrameric receptor complex. The alpha chains are entirely extracellular, while each beta chain has one transmembrane domain. The ligand binds to the alpha subunit extracellular domain and the kinase is associated with the beta subunit intracellular domain. 88191 0 0 66966 9 clathrin sculpted acetylcholine transport vesicle membrane The lipid bilayer surrounding a clathrin sculpted acetylcholine transport vesicle. 88192 0 0 66967 9 sarcoplasm The cytoplasm of a muscle cell; includes the sarcoplasmic reticulum. 88193 0 0 66968 9 intrinsic to plastid inner membrane Located in a plastid inner membrane such that some covalently attached portion of the gene product, for example part of a peptide sequence or some other covalently attached group such as a GPI anchor, spans or is embedded in one or both leaflets of the membrane. 88194 0 0 66969 9 metaphase plate The intracellular plane, located halfway between the poles of the spindle, where chromosomes align during metaphase of mitotic or meiotic nuclear division. 88195 0 0 66971 9 septin ring A tight ring-shaped structure that forms in the division plane at the site of cytokinesis; composed of members of the conserved family of filament-forming proteins called septins as well as septin-associated proteins. This type of septin structure is observed at the bud neck of budding fungal cells, at the site of cell division in animal cells, at the junction between the mother cell and a pseudohyphal projection, and also within hyphae of filamentous fungi at sites where a septum will form. 88199 0 0 66972 9 alphaIIb-beta3 integrin-fibronectin-tissue transglutaminase complex A protein complex that consists of an alphaIIb-beta3 integrin complex bound to fibronectin and tissue transglutaminase. 88201 0 0 66973 9 host cell membrane Double layer of lipid molecules as it encloses host cells, and, in eukaryotes, many organelles; may be a single or double lipid bilayer; also includes associated proteins. The host is defined as the larger of the organisms involved in a symbiotic interaction. 88202 0 0 66974 9 dihydrolipoyl dehydrogenase complex A protein complex that possesses alpha-ketoglutarate dehydrogenase activity. 88203 0 0 66975 9 viral integration complex Virus-specific complex of protein required for integrating viral genomes into the host genome. 88204 0 0 67003 9 ectexine The outer part of the exine, which stains positively with basic fuchsin in optical microscopy and has higher electron density in conventionally prepared TEM sections. 88240 0 0 67844 9 acidocalcisome membrane The lipid bilayer surrounding an acidocalcisome. 89493 0 0 66976 9 CCR4-NOT complex A large multimeric transcription factor complex that can regulate transcription positively or negatively; consists of a core complex plus additional proteins; may interact with other proteins to control initiation of transcription. In Saccharomyces the core complex comprises Ccr4p, Caf1p, Not1p, Not2p, Not3p, Not4p, and Not5p; Caf4p, Caf16p, and several less well characterized proteins. 88205 0 0 66977 9 plasma membrane-derived thylakoid A thylakoid that is derived from and attached to, but not necessarily continuous with, the plasma membrane, and is not enclosed in a plastid. It bears the photosynthetic pigments in photosynthetic cyanobacteria. 88206 0 0 66978 9 Barr body A structure found in a female mammalian cell containing an unpaired X chromosome that has become densely heterochromatic, silenced and localized at the nuclear periphery. 88207 0 0 66979 9 female germline ring canal inner rim A proteinaceous actin-rich layer of the insect ovarian ring canal that forms subcortically to the outer rim. The electron dense inner rim accumulates after the final mitotic division of each germline syncytia, and contains actin, a phosphotyrosine protein, and a number of cytoskeletal proteins. 88208 0 0 66980 9 nonhomologous end joining complex A protein complex that plays a role in DNA double-strand break repair via nonhomologous end joining. Such complexes typically contain a specialized DNA ligase (e.g. Lig4 in eukaryotes) and one or more proteins that bind to DNA ends. 88212 0 0 66981 9 cellular bud neck septin structure Any of a series of septin structures that are localized in the bud neck of a budding fungal cell during the cell cycle. 88213 0 0 66982 9 BRCA1-A complex A protein complex that contains the BRCA1-BARD1 heterodimer, RAP80/UIMC1, BRCC3/BRCC36, BRE/BRCC45, FAM175A/CCDC98/Abraxas and MERIT40/NBA1, and specifically recognizes and binds K63-linked polyubiquitin chains present on histone H2A and H2AX at DNA damage sites. 88214 0 0 66983 9 RNA (obsolete GO:0005562) OBSOLETE (was not defined before being made obsolete). 88216 1 0 66984 9 non-membrane-bounded organelle Organized structure of distinctive morphology and function, not bounded by a lipid bilayer membrane. Includes ribosomes, the cytoskeleton and chromosomes. 88217 0 0 66985 9 Grb2-Sos complex A protein complex that contains Grb2 and the guanine nucleotide exchange factor Sos (or an ortholog thereof, such as mSos1), and is involved in linking EGFR activation to the p21-Ras pathway. 88218 0 0 66986 9 plasma membrane part Any constituent part of the plasma membrane, the membrane surrounding a cell that separates the cell from its external environment. It consists of a phospholipid bilayer and associated proteins. 88219 0 0 66987 9 interphase microtubule organizing center A microtubule organizing center found in interphase cells, which organize a longitudinal array of three to five MT bundles from the nuclear envelope during interphase. Each MT bundle is composed of two to seven MTs arranged in an antiparallel configuration, with the dynamic MT plus ends extending toward the cell tips and stable minus ends near the nucleus. 88220 0 0 66988 9 retromer complex, inner shell One of two subcomplexes that combine to form the retromer, believed to be closely associated with the membrane. In budding yeast the complex comprises Vps35p, Vps29p, and Vps26p. 88221 0 0 66989 9 host cell Golgi apparatus A compound membranous cytoplasmic organelle of eukaryotic host cells, consisting of flattened, ribosome-free vesicles arranged in a more or less regular stack. 88223 0 0 66990 9 pre-T cell receptor complex A receptor complex found on immature T cells consisting of a T cell receptor beta chain and the pre-TCR-alpha chain, along with additional signaling components including CD3 family members and additional signaling proteins. 88224 0 0 66991 9 cell division site part Any constituent part of the cell division plane, the eventual plane of cell division in a dividing cell. 88225 0 0 66992 9 intrinsic to vacuolar membrane Located in the vacuolar membrane such that some covalently attached portion of the gene product, for example part of a peptide sequence or some other covalently attached group such as a GPI anchor, spans or is embedded in one or both leaflets of the membrane. 88226 0 0 66993 9 hemoglobin complex An iron-containing, oxygen carrying complex. In vertebrates it is made up of two pairs of associated globin polypeptide chains, each chain carrying a noncovalently bound heme prosthetic group. 88227 0 0 66994 9 sodium ion-transporting V-type ATPase complex A sodium ion-transporting two-sector ATPase complex that couples ATP hydrolysis to the transport of sodium ions across a concentration gradient. The complex comprises a membrane sector (V0) that carries out proton transport and a cytoplasmic compartment sector (V1) that catalyzes ATP hydrolysis. 88228 0 0 66995 9 troponin complex A complex of accessory proteins (typically troponin T, troponin I and troponin C) found associated with actin in muscle thin filaments; involved in calcium regulation of muscle contraction. 88230 0 0 67022 9 nucleomorph A small, vestigial nucleus found in some plastids that derive from a eukaryotic endosymbiont. Observed in chlorarachniophytes and cryptomonads, which acquired their plastids from a green and red alga respectively. 88265 0 0 76466 48 trait_default_value trait_default_value 209363 0 0 68029 9 dendritic shaft Cylindric portion of the dendrite, directly stemming from the perikaryon, and carrying the dendritic spines. 89759 0 0 66996 9 N-methyl-D-aspartate selective glutamate receptor complex An assembly of four or five subunits which form a structure with an extracellular N-terminus and a large loop that together form the ligand binding domain. The C-terminus is intracellular. The ionotropic glutamate receptor complex itself acts as a ligand gated ion channel; on binding glutamate, charged ions pass through a channel in the center of the receptor complex. NMDA receptors are composed of assemblies of NR1 subunits (Figure 3) and NR2 subunits, which can be one of four separate gene products (NR2A-D). Expression of both subunits are required to form functional channels. The glutamate binding domain is formed at the junction of NR1 and NR2 subunits. NMDA receptors are permeable to calcium ions as well as being permeable to other ions. Thus NMDA receptor activation leads to a calcium influx into the post-synaptic cells, a signal thought to be crucial for the induction of NMDA-receptor dependent LTP and LTD. 88231 0 0 66997 9 alpha9-beta1 integrin-VEGF-A complex A protein complex that consists of an alpha9-beta1 integrin complex bound to vascular endothelial growth factor A. 88232 0 0 66998 9 cytoplasmic exosome (RNase complex) Complex of 3'-5' exoribonucleases found in the cytoplasm. 88234 0 0 66999 9 germ plasm Differentiated cytoplasm associated with a pole of an oocyte, egg or early embryo that will be inherited by the cells that will give rise to the germ line. 88235 0 0 76521 46 organization \N 209418 0 0 67004 9 DNA-directed RNA polymerase II, holoenzyme Large protein complex composed of the RNA polymerase core complex and a variety of other proteins including transcription factor complexes TFIIA, D, E, F, and H which are required for promoter recognition, and the Mediator subcomplex. Catalyzes the synthesis of eukaryotic pre-mRNA. 88241 0 0 67005 9 dimeric ribonuclease P complex A ribonuclease P complex that contains a single RNA molecule that is necessary and usually sufficient for catalysis, and a single protein molecule. Examples of this complex are found in Bacterial species. 88244 0 0 67006 9 cell plate The nascent cell membrane and cell wall structure that forms between two daughter nuclei near the center of a dividing plant cell. It develops at the equitorial region of the phragmoplast. It grows outwards to join with the lateral walls and form two daughter cells. 88245 0 0 67007 9 junctional membrane complex Complex formed in muscle cells between the membrane of the sarcoplasmic reticulum and invaginations of the plasma membrane (T-tubules). 88246 0 0 67008 9 Cul4A-RING ubiquitin ligase complex A ubiquitin ligase complex in which a cullin from the Cul4A subfamily and a RING domain protein form the catalytic core; substrate specificity is conferred by an adaptor protein. 88248 0 0 67009 9 cyanelle A plastid that contains unstacked, phycobilisome-bearing thylakoid membranes and is surrounded by a peptidoglycan layer as well as a double membrane. Cyanelles are characteristic of algae in the class Glaucophyta, and may represent an ancestral form of plastid. 88249 0 0 67010 9 hemidesmosome A cell-substrate junction that forms a point of contact between the basal surface of epithelial cells and the basal lamina. Morphologically resembles desmosomes; attached to intermediate filaments. 88252 0 0 67187 9 DNA (obsolete GO:0005574) OBSOLETE (was not defined before being made obsolete). 88523 1 0 67011 9 cyclin B1-CDK1 complex A protein complex consisting of cyclin B1 and cyclin-dependent kinase 1 (CDK1). Cyclins are characterized by periodicity in protein abundance throughout the cell cycle. Cyclin-dependent kinases represent a family of serine/threonine protein kinases that become active upon binding to a cyclin regulatory partner. 88253 0 0 67012 9 TEAD-1-YAP complex A transcription factor complex that is composed of the DNA biding protein TEAD-1 and the transcriptional coactivator YAP. 88254 0 0 67013 9 SHREC complex A histone deacetylase complex that contains a core of four proteins -- Clr1, Clr2, Clr3, and Mit1 in fission yeast -- and localizes to all heterochromatic regions in the genome as well as some euchromatic sites. The complex is involved in regulating nucleosome positioning to assemble higher-order chromatin structures. 88255 0 0 67014 9 Nem1-Spo7 phosphatase complex A protein serine/threonine phosphatase complex that is involved in nuclear envelope organization, and contains proteins known in budding yeast as Nem1p and Spo7p. 88256 0 0 67015 9 filiform apparatus A complex of cell wall invaginations in a synergid cell, similar to those in transfer cells. 88258 0 0 67016 9 myosin IX complex A myosin complex containing a class IX myosin heavy chain and associated light chains. Myosin IX is monomeric with a motor domain containing an N-terminal extension and an insert in the actin binding interface, followed by four to six IQ motifs and a tail region that contains a zinc binding motif and a domain with homology to GTPase activating proteins (GAPs) of the Rho family of G-proteins. 88259 0 0 67017 9 endoplasmic reticulum The irregular network of unit membranes, visible only by electron microscopy, that occurs in the cytoplasm of many eukaryotic cells. The membranes form a complex meshwork of tubular channels, which are often expanded into slitlike cavities called cisternae. The ER takes two forms, rough (or granular), with ribosomes adhering to the outer surface, and smooth (with no ribosomes attached). 88260 0 0 67018 9 alphaE-beta7 integrin complex An integrin complex that comprises one alphaE subunit and one beta7 subunit. 88261 0 0 67019 9 sulfate adenylyltransferase complex (ATP) An enzyme complex that catalyzes the formation adenylylsulfate from sulfate and ATP. 88262 0 0 67020 9 organelle membrane The lipid bilayer surrounding an organelle. 88263 0 0 67021 9 intercellular bridge A direct link between the cytoplasms of sister cells that allows cells to communicate with one another. Germline intercellular bridges facilitate the passage of cytoplasmic components between cells during development. Intercellular bridges have also been found connecting somatic cells. 88264 0 0 67259 9 plasmodesmatal cytoplasmic sleeve The space between the plasma membrane and the desmotubule of a plasmodesma. 88633 0 0 67023 9 microtubule plus end The growing (plus) end of a microtubule. In vitro, microtubules polymerize more quickly at the plus end than at the minus end. In vivo, microtubule growth occurs only at the plus end, and the plus end switches between periods of growth and shortening, a behavior known as dynamic instability. 88267 0 0 67024 9 flagellar pocket Invagination of the plasma membrane from which a flagellum protrudes. 88270 0 0 67025 9 endocytotic transport vesicle (obsolete GO:0005810) OBSOLETE (was not defined before being made obsolete). 88271 1 0 67026 9 complement component C1 complex A protein complex composed of six subunits of C1q, each formed of the three homologous polypeptide chains C1QA, C1QB, and C1QB, and tetramer of two C1QR and two C1QS polypeptide chains. 88272 0 0 67027 9 interferon regulatory factor complex A protein complex that consists of two interferon regulatory proteins (IRFs); may be homodimeric or heterodimeric. The activation of a latent closed conformation of IRF in the cytoplasm is triggered by phosphorylation of Ser/Thr residues in a C-terminal region. Phosphorylation stimulates the C-terminal autoinhibitory domain to attain a highly extended conformation triggering dimerization through extensive contacts to a second subunit. 88273 0 0 67028 9 gamma-tubulin large complex A complex of gamma tubulin and associated proteins thought to be formed by multimerization of gamma-tubulin small complexes. An example of this structure is found in Schizosaccharomyces pombe. 88275 0 0 67029 9 snRNA-activating protein complex A protein complex that recognizes the proximal sequence element of RNA polymerase II and III snRNA promoters. 88277 0 0 67030 9 preribosome, small subunit precursor A preribosomal complex consisting of 20S pre-rRNA, ribosomal proteins including late-associating small subunit proteins, and associated proteins; a precursor of the eukaryotic cytoplasmic small ribosomal subunit. 88280 0 0 67031 9 protocadherin-alpha-v4-protocadherin-gamma-b4 complex A protein complex that contains the cell adhesion molecules protocadherin-alpha-v4 and protocadherin-gamma-b4, and is involved in the regulation of protein localization to the plasma membrane. 88281 0 0 76522 46 range \N 209419 0 0 67032 9 host cell synapse The junction between a nerve fiber of one host neuron and another host neuron or muscle fiber or glial cell; the site of interneuronal communication. 88282 0 0 67033 9 apicolateral plasma membrane The apical end of the lateral plasma membrane of epithelial cells. 88283 0 0 67034 9 muscle myosin complex A filament of myosin found in a muscle cell of any type. 88284 0 0 67035 9 chloroplast membrane Either of the lipid bilayers that surround a chloroplast and form the chloroplast envelope. 88285 0 0 67036 9 pseudopodium A temporary protrusion or retractile process of a cell, associated with flowing movements of the protoplasm, and serving for locomotion and feeding. 88286 0 0 67037 9 collagen type IX A collagen heterotrimer containing type IX alpha chains in alpha1(IX)alpha2(IX)alpha3(IX) trimers; type IX collagen triple helices associate to form a structure that links glycosaminoglycans to type II collagen fibrils. 88287 0 0 67038 9 pre-replicative complex A protein-DNA complex assembled at eukaryotic DNA replication origins during late mitosis and G1, allowing the origin to become competent, or 'licensed', for replication. The complex normally includes the origin recognition complex (ORC), Cdc6, Cdt1 and the MiniChromosome Maintenance (Mcm2-7) proteins. 88288 0 0 67039 9 light-activated voltage-gated calcium channel complex A protein complex that forms a transmembrane channel through which calcium ions may cross a cell membrane in response to changes in membrane potential generated in response to a light stimulus. 88290 0 0 67040 9 plus-end kinesin complex Any complex that includes a dimer of molecules from the kinesin superfamily and any associated proteins, and moves towards the plus end of a microtubule. 88292 0 0 67041 9 Tic complex The translocon of the inner envelope of chloroplasts, which facilitates the import of proteins across the chloroplast inner membrane. 88293 0 0 67042 9 adherens junction A cell junction at which anchoring proteins (cadherins or integrins) extend through the plasma membrane and are attached to actin filaments. 88296 0 0 67043 9 cleavage apparatus septin structure Any of a series of structures composed of septins and septin-associated proteins localized to the cleavage plane which are involved in cytokinesis. 88298 0 0 67044 9 stereocilium An actin-based protrusion from the apical surface of auditory and vestibular hair cells. Bundles of stereocilia act as mechanosensory organelles. 88301 0 0 67045 9 B800-820 antenna complex Protein-pigment complex that absorbs light at 800 and 820 nm; is peripherally associated to the bacterial reaction center; transfers excitation energy to the B875 antenna complex. 88304 0 0 67046 9 Myc-Max complex A transcriptional factor complex that consists of a heterodimer of the bHLH-ZIP proteins Myc and Max. 88305 0 0 67047 9 Mpp10 complex A protein complex that forms a subcomplex of the 90S preribosome. In S. cerevisiae, it is composed of Mpp10p, Imp3p and Imp4p. 88309 0 0 67048 9 host cell cytoplasm part Any constituent part of the host cell cytoplasm, all of the contents of a cell excluding the plasma membrane and nucleus, but including other subcellular structures. The host is defined as the larger of the organisms involved in a symbiotic interaction. 88311 0 0 67049 9 Fc receptor complex A protein complex composed of a subunit or subunits capable of binding the Fc portion of an immunoglobulin with additional signaling components. The complex functions as a receptor for immunoglobulin. 88312 0 0 67050 9 laminin-8 complex A laminin complex composed of alpha4, beta1 and gamma1 polypeptide chains. 88313 0 0 67051 9 chloroplast ribulose bisphosphate carboxylase complex A complex, located in the chloroplast, containing either both large and small subunits or just small subunits which carries out the activity of producing 3-phosphoglycerate from carbon dioxide and ribulose-1,5-bisphosphate. An example of this component is found in Arabidopsis thaliana. 88314 0 0 67052 9 transforming growth factor beta activated kinase 1 complex A protein complex that possesses protein kinase activity and activates the I-kappa B kinase complex (IKK) and mitogen-activated protein (MAP) kinases in response to TRAF6 signaling. It comprises the catalytic subunit TAK1 complexed to the regulatory subunits, termed TABs (TAK1-binding subunits). 88315 0 0 67427 9 alpha7-beta1 integrin complex An integrin complex that comprises one alpha7 subunit and one beta1 subunit. 88893 0 0 67053 9 azurophil granule Primary lysosomal granule found in neutrophil granulocytes. Contains a wide range of hydrolytic enzymes and is released into the extracellular fluid. 88319 0 0 67054 9 cytosolic type II fatty acid synthase complex (obsolete GO:0031376) OBSOLETE A fatty acid synthase complex in which each polypeptide chain catalyzes a single activity, located in the cytosol. 88320 1 0 67055 9 axonemal dynein intermediate chain (obsolete GO:0001684) OBSOLETE (was not defined before being made obsolete). 88321 1 0 67056 9 fungal-type vacuole membrane The lipid bilayer surrounding a vacuole, the shape of which correlates with cell cycle phase. The membrane separates its contents from the cytoplasm of the cell. An example of this structure is found in Saccharomyces cerevisiae. 88322 0 0 67057 9 microtubule-based flagellum A long, whiplike protrusion from the surface of a eukaryotic cell, whose undulations drive the cell through a liquid medium; similar in structure to a cilium. The flagellum is based on a 9+2 arrangement of microtubules. 88323 0 0 67058 9 extra-invasive hyphal space The space between the symbiont plasma membrane and the extra-invasive hyphal membrane. 88324 0 0 67059 9 megasporocyte nucleus The nucleus of a megasporocyte, a diploid cell that undergoes meiosis to produce four megaspores, and its descendents. 88325 0 0 67060 9 cell body membrane The plasma membrane of a cell that bears surface projections such as axons, dendrites, cilia, or flagella, excluding the plasma membrane on cell projections. 88326 0 0 67061 9 mitochondrial outer membrane The outer, i.e. cytoplasm-facing, lipid bilayer of the mitochondrial envelope. 88327 0 0 67062 9 cytoskeletal part Any constituent part of the cytoskeleton, a cellular scaffolding or skeleton that maintains cell shape, enables some cell motion (using structures such as flagella and cilia), and plays important roles in both intra-cellular transport (e.g. the movement of vesicles and organelles) and cellular division. Includes constituent parts of intermediate filaments, microfilaments, microtubules, and the microtrabecular lattice. 88328 0 0 67063 9 TRAPP complex A large complex present on the cis-Golgi that acts prior to SNARE complex assembly to mediate vesicle docking and fusion. Ras guanyl-nucleotide exchange factor activity has been demonstrated for this complex in S. cerevisiae. 88329 0 0 67065 9 centralspindlin complex A heterotetrameric protein complex playing a key role in the formation of the central spindle in mitosis. Made up of two molecules each of a mitotic kinesin (ZEN-4 in Caenorhabditis elegans or MKLP1 in mammals) and of two molecules each of a GTPase activating protein (GAP) factor (CYK-4 in Caenorhabditis elegans or MgcRacGAP in mammals). 88333 0 0 67066 9 plastid Any member of a family of organelles found in the cytoplasm of plants and some protists, which are membrane-bounded and contain DNA. Plant plastids develop from a common type, the proplastid. 88336 0 0 67067 9 cytosolic proteasome regulatory particle, base subcomplex The subcomplex of the proteasome regulatory particle that directly associates with the proteasome core complex located in the cytosol of the cell. 88337 0 0 67068 9 ASTRA complex A protein complex that is part of the chromatin remodeling machinery; the acronym stands for ASsembly of Tel, Rvb and Atm-like kinase. In Saccharomyces cerevisiae this complex includes Rvb1p, Rvb2p, Tra1p, Tel2p, Asa1p, Ttilp and Tti2p. 88338 0 0 67069 9 apolipoprotein B mRNA editing enzyme complex Protein complex that mediates editing of the mRNA encoding apolipoprotein B; catalyzes the deamination of C to U (residue 6666 in the human mRNA). Contains a catalytic subunit, APOBEC-1, and other proteins (e.g. human ASP; rat ASP and KSRP). 88339 0 0 67070 9 membrane-enclosed lumen The enclosed volume within a sealed membrane or between two sealed membranes. Encompasses the volume enclosed by the membranes of a particular organelle, e.g. endoplasmic reticulum lumen, or the space between the two lipid bilayers of a double membrane surrounding an organelle, e.g. nuclear envelope lumen. 88341 0 0 67071 9 type I terminal button Terminal inflated portion of the axon of a glutamatergic neuron, containing the specialized apparatus necessary to release neurotransmitters that will induce the contraction of muscle. The axon terminus is considered to be the whole region of thickening and the terminal button is a specialized region of it. 88342 0 0 67072 9 BIM-BCL-xl complex A heterodimeric protein complex consisting of BIM and BCL-xl, members of the Bcl-2 family of anti- and proapoptotic regulators. 88343 0 0 67073 9 alpha11-beta1 integrin complex An integrin complex that comprises one alpha11 subunit and one beta1 subunit. 88344 0 0 67074 9 signal recognition particle, endoplasmic reticulum targeting A ribonucleoprotein particle of 325 kDa composed of a 7S (300 nucleotide) RNA molecule and a complex of six different polypeptides. This binds both to the N-terminal signal peptide for proteins destined for the endoplasmic reticulum as they emerge from the large ribosomal subunit and also to the ribosome. This binding arrests further translation thereby preventing the proteins from being released into the cytosol. The SRP-ribosome complex then diffuses to the endoplasmic reticulum where it is bound to the signal recognition particle receptor, which allows resumption of protein synthesis and facilitates the passage of the growing polypeptide chain through the translocon. Through a process involving GTP hydrolysis, the SRP-SRP receptor complex dissociates and SRP returns to the cytosol. Of the six polypeptides of SRP the 54 kDa subunit (SRP54) is the central player. It contains an N-terminal GTPase domain and a C-terminal domain that binds directly to the signal peptide and the SRP RNA. Examples of this component are found in Mus musculus, Saccharomyces cerevisiae and Arabidopsis thaliana. 88345 0 0 67075 9 presynaptic active zone membrane The membrane portion of the presynaptic active zone; it is the site where docking and fusion of synaptic vesicles occurs for the release of neurotransmitters. 88347 0 0 67076 9 trans-Golgi network transport vesicle A vesicle that mediates transport between the trans-Golgi network and other parts of the cell. 88350 0 0 67077 9 negative sense viral genome A single stranded RNA genome with the opposite nucleotide polarity as mRNA. 88351 0 0 67078 9 cytoplasmic origin of replication recognition complex A multisubunit complex that is located at the replication origins of a chromosome in the cytoplasm. 88352 0 0 67169 9 plasma membrane The membrane surrounding a cell that separates the cell from its external environment. It consists of a phospholipid bilayer and associated proteins. 88491 0 0 67079 9 oxoglutarate dehydrogenase complex A complex of multiple copies of three enzymatic components: oxoglutarate dehydrogenase (lipoamide) ; EC:1.2.4.2 (E1), dihydrolipoamide S-succinyltransferase ; EC:2.3.1.61 (E2) and dihydrolipoamide dehydrogenase ; EC:1.8.1.4 (E3); catalyzes the overall conversion of 2-oxoglutarate to succinyl-CoA and carbon dioxide (CO2). 88353 0 0 67080 9 mitochondrial intermembrane space The region between the inner and outer lipid bilayers of the mitochondrial envelope. 88355 0 0 67081 9 collagen type X A collagen homotrimer of alpha1(X) chains; type X collagen triple helices may form nets. 88357 0 0 67082 9 chromoplast A plastid containing pigments other than chlorophyll, usually yellow and orange carotenoid pigments. 88358 0 0 67083 9 condensed chromosome A highly compacted molecule of DNA and associated proteins resulting in a cytologically distinct structure. 88359 0 0 67084 9 integral to nuclear inner membrane Located such that some or all of the gene product itself penetrates at least one phospholipid bilayer of the nuclear inner membrane. May also refer to the state of being buried in the bilayer with no exposure outside the bilayer. 88360 0 0 67085 9 fatty-acyl-CoA synthase complex A protein complex that possesses fatty-acyl-CoA synthase activity. 88361 0 0 67086 9 axoneme part Any constituent part of an axoneme, the bundle of microtubules and associated proteins that forms the core of cilia and flagella in eukaryotic cells and is responsible for their movements. 88363 0 0 67087 9 endospore-forming forespore Portion of the cell formed during the process of bacterial sporulation that will ultimately become the core of the endospore. An endospore is a type of dormant cell that is resistant to adverse conditions. 88364 0 0 67088 9 activin AB complex A nonsteroidal regulator, composed of two covalently linked inhibin beta subunits (sometimes known as activin beta or activin/inhibin beta), inhibin beta-A and inhibin beta-B. 88366 0 0 67089 9 intrinsic to external side of plasma membrane, in periplasmic space Located in the plasma membrane such that some covalently attached portion of the gene product, for example part of a peptide sequence or some other covalently attached group such as a GPI anchor, spans or is embedded in one or both leaflets of the membrane, with the bulk of the gene product located in the periplasmic space. 88367 0 0 67090 9 mating projection tip membrane The portion of the plasma membrane surrounding a mating projection tip. 88369 0 0 67154 9 BRCA1-Rad51 complex A protein complex that contains BRCA1 and Rad 51, and is involved in the control of recombination and of genome integrity. 88462 0 0 67091 9 endocytic vesicle A membrane-bounded intracellular vesicle formed by invagination of the plasma membrane around an extracellular substance. Endocytic vesicles fuse with early endosomes to deliver the cargo for further sorting. 88370 0 0 67092 9 alpha2-beta1 integrin-chondroadherin complex A protein complex that consists of an alpha2-beta1 integrin complex bound to the cartilage matrix protein chondroadherin. 88371 0 0 67093 9 nucleotide-excision repair factor 2 complex One of several protein complexes involved in nucleotide-excision repair; possesses damaged DNA binding activity. In S. cerevisiae, it is composed of Rad4p and Rad23p. 88373 0 0 67094 9 host cell surface The external part of the host cell wall and/or host plasma membrane. 88374 0 0 67095 9 X chromosome located dosage compensation complex, transcription activating An RNA-protein complex localized to the X chromosome of males where it is required for the hyper-transcriptional activation of the X chromosome. An example of this is found in Drosophila melanogaster. 88375 0 0 67096 9 longitudinal sarcoplasmic reticulum lumen The region between the inner and outer lipid bilayers of the longitudinal sarcoplasmic reticulum envelope. The longitudinal sarcoplasmic reticulum lumen is continuous with the lumen contained within the terminal cisternae. 88376 0 0 67097 9 Golgi-ER transport vesicle (obsolete GO:0005806) OBSOLETE (was not defined before being made obsolete). 88377 1 0 67099 9 cyclin D2-CDK6 complex A protein complex consisting of cyclin D2 and cyclin-dependent kinase 6 (CDK6). Cyclins are characterized by periodicity in protein abundance throughout the cell cycle. Cyclin-dependent kinases represent a family of serine/threonine protein kinases that become active upon binding to a cyclin regulatory partner. 88379 0 0 67100 9 proteasome activator complex A multisubunit complex that activates the hydrolysis of small nonubiquitinated peptides by binding to the proteasome core complex. 88380 0 0 67101 9 IgA immunoglobulin complex A protein complex composed of two identical immunoglobulin heavy chains of the IgA isotype and two identical immunoglobulin light chains, held together by disulfide bonds, and sometimes complexed with J chain or J chain and secretory component. An IgA immunoglobulin complex may be embedded in the plasma membrane or present in the extracellular space, in mucosal areas or other tissues, or circulating in the blood or lymph. 88381 0 0 67102 9 enterobactin synthetase complex A multienzyme complex usually composed of four proteins, EntB, EntD, EntE and EntF. Plays a role in the enterobactin biosynthesis pathway. 88382 0 0 67103 9 alpha3-beta1 integrin-CD63 complex A protein complex that consists of an alpha3-beta1 integrin complex bound to the tetraspanin CD63. 88385 0 0 67104 9 alpha4-beta1 integrin-thrombospondin-2 complex A protein complex that consists of an alpha4-beta1 integrin complex bound to thrombospondin-2. 88387 0 0 67105 9 alphav-beta3 integrin-ADAM15 complex A protein complex that consists of an alphav-beta3 integrin complex bound to the transmembrane metallopeptidase ADAM15. 88388 0 0 67106 9 subrhabdomeral cisterna A membrane-bounded compartment that is found at the base of the rhabdomere and contains stored calcium, InsP3 receptors and smooth endoplasmic reticulum Ca2+-ATPase. 88390 0 0 67107 9 RNA polymerase complex Any complex that possesses RNA polymerase activity; generally comprises a catalytic subunit and one or more additional subunits. 88392 0 0 67108 9 interleukin-12 receptor complex A protein complex that binds interleukin-12; comprises a beta1 and a beta2 subunit. 88393 0 0 67109 9 cis-Golgi network The network of interconnected tubular and cisternal structures located at the convex side of the Golgi apparatus, which abuts the endoplasmic reticulum. 88395 0 0 67110 9 leucosome A tissue-specific, membrane-bounded cytoplasmic organelle within which uric acid and/or purines crystalize in reflective stacks. Leucosomes are synthesized in leucophore cells and have a whitish cast. 88396 0 0 67111 9 host cell projection A prolongation or process extending from a host cell, e.g. a flagellum or axon. 88397 0 0 67112 9 photoreceptor inner segment membrane The membrane surrounding the outer segment of a vertebrate photoreceptor. The photoreceptor inner segment contains mitochondria, ribosomes and membranes where opsin molecules are assembled and passed to be part of the outer segment discs. 88398 0 0 67113 9 endoplasmic reticulum palmitoyltransferase complex A dimeric complex of the endoplasmic reticulum that catalyzes S-palmitoylation, the addition of palmitate (C16:0) or other long-chain fatty acids to proteins at a cysteine residue. 88399 0 0 67114 9 node of Ranvier An axon part that is a gap in the myelin where voltage-gated sodium channels cluster and saltatory conduction is executed. 88400 0 0 67115 9 PeBoW complex A protein complex that is involved in coordinating ribosome biogenesis with cell cycle progression. In human, it is composed of Pes1, Bop1, and WDR12; in Saccharomyces the proteins are known as Nop7p, Erb1 and Ytm1 respectively. 88401 0 0 67116 9 SC5b-7 complex A protein complex that consist of complement components C5b6 and C7 stably inserted in a cell membrane. Formation of the SC5b-7 complex is the first phase of membrane attack complex assembly. 88404 0 0 67117 9 plasma membrane proton-transporting V-type ATPase complex A proton-transporting two-sector ATPase complex found in the plasma membrane. 88406 0 0 67118 9 glycolate oxidase complex An enzyme complex that catalyzes the oxidation of 2-hydroxy acid to form 2-oxo acid and hydrogen peroxide (H2O2). The enzyme is a flavoprotein (FMN). 88407 0 0 67119 9 endosome lumen The volume enclosed by the membrane of an endosome. 88408 0 0 67120 9 phragmoplast Fibrous structure (light microscope view) that arises between the daughter nuclei at telophase and within which the initial partition (cell plate), dividing the mother cell in two (cytokinesis), is formed. Appears at first as a spindle connected to the two nuclei, but later spreads laterally in the form of a ring. Consists of microtubules. 88409 0 0 67121 9 DNA replication preinitiation complex A protein-DNA complex assembled at eukaryotic DNA replication origins immediately prior to the initiation of DNA replication. The preinitiation complex is formed by the assembly of additional proteins onto an existing prereplicative complex. In budding yeast, the additional proteins include Cdc45p, Sld2p, Sld3p, Dpb11p, DNA polymerases, and others; in fission yeast the GINS complex is present. 88410 0 0 67122 9 myosin XV complex A myosin complex containing a class XV myosin heavy chain and associated light chains. Myosin XV is single headed, and has a large extension (1200aa) at the N-terminus of the motor domain, two IQ motifs and a tail with a similar domain structure to that of the tail of myosin VII. 88413 0 0 76523 46 row_number \N 209420 0 0 67123 9 chromatophore ribulose bisphosphate carboxylase complex A complex, located in the chromatophore, containing either both large and small subunits or just small subunits which carries out the activity of producing 3-phosphoglycerate from carbon dioxide and ribulose-1,5-bisphosphate. 88414 0 0 67124 9 type II intermediate filament associated protein (obsolete GO:0001723) OBSOLETE. High molecular weight (100-300 kDa) proteins that associate with intermediate filaments to cross-link them into loose networks. 88415 1 0 67125 9 midbody A thin cytoplasmic bridge formed between daughter cells at the end of cytokinesis. The midbody forms where the contractile ring constricts, and may persist for some time before finally breaking to complete cytokinesis. 88416 0 0 67126 9 RSF complex A chromatin remodeling complex that mediates nucleosome deposition and generates regularly spaced nucleosome arrays. In humans, the complex is composed of the ATPase hSNF2H and the HBXAP protein (RSF-1). 88417 0 0 67127 9 actin rod A cellular structure consisting of parallel, hexagonally arranged actin tubules, comprising filamentous actin and associated proteins. Found in the germinating spores of Dictyostelium discoideum. 88419 0 0 67128 9 extrinsic to plastid thylakoid membrane Loosely bound to one surface of a plastid thylakoid membrane, but not integrated into the hydrophobic region. 88420 0 0 67129 9 virion part Any constituent part of a virion, a complete fully infectious extracellular virus particle. 88421 0 0 67130 9 equatorial microtubule organizing center A microtubule organizing center formed by a band of gamma-tubulin that is recruited to a circumferential band of F-actin at the midpoint of a cell and which nucleates microtubules from the cell division site at the end of mitosis. 88422 0 0 67131 9 alpha9-beta1 integrin-tenascin complex A protein complex that consists of an alpha9-beta1 integrin complex bound to the extracellular matrix protein tenascin. 88424 0 0 67132 9 cell septum A structure composed of peptidoglycan and often chitin in addition to other materials. It usually forms perpendicular to the long axis of a cell or hypha and grows centripetally from the cell wall to the center of the cell and often functions in the compartmentalization of a cell into two daughter cells. 88426 0 0 67133 9 3-phenylpropionate dioxygenase complex Enzyme complex consisting of four proteins: the two subunits of the hydroxylase component (hcaE and hcaF), a ferredoxin (hcaC) and a ferredoxin reductase (hcaD). Converts 3-phenylpropionic acid (PP) into cis-3-(3-carboxyethyl)-3,5-cyclohexadiene-1,2-diol (PP-dihydrodiol). 88427 0 0 67134 9 nuclear condensin complex A multisubunit protein complex that plays a central role in the condensation of chromosomes that remain in the nucleus. 88430 0 0 67135 9 collagen type XVIII A collagen homotrimer of alpha1(XVIII) chains. 88431 0 0 67136 9 alphaV-beta3 integrin-gelsolin complex A protein complex that consists of an alphaV-beta3 integrin complex bound to gelsolin. 88432 0 0 67137 9 integral to external side of plasma membrane Penetrating at least one phospholipid bilayer of the plasma membrane, with the bulk of the gene product located on the side opposite to the side that faces the cytoplasm. 88434 0 0 67138 9 aleurone grain A membrane-bounded storage granule found in cells of the aleurone layer in plants; contains either a protein matrix, protein-carbohydrate bodies and/or globoids. Aleurone grains are formed by the vacuole, rough endoplasmic reticulum and dictyosomes. 88435 0 0 67139 9 procollagen-proline 4-dioxygenase complex, alpha(II) type A procollagen-proline 4-dioxygenase complex that contains alpha subunits of the type II isoform; its activity is inhibited by poly(L-proline) only at high concentrations. 88438 0 0 67140 9 secretory granule lumen The volume enclosed by the membrane of a secretory granule. 88440 0 0 67455 9 thylakoid part Any constituent part of a thylakoid, a sac-like vesicle that bears the photosynthetic pigments in photosynthetic organisms. 88937 0 0 67141 9 CUGBP1-eIF2 complex A protein complex that contains the eukaryotic translation initiation factor 2 complex (EIF2), CUG binding protein 1, and several endoplasmic reticulum proteins; the complex is involved in the regulation of translation. 88441 0 0 67142 9 hyphal septin ring A tight ring-shaped structure that forms in the division plane within hyphae of filamentous fungi at sites where a septum will form; composed of septins as well as septin-associated proteins. 88443 0 0 67143 9 Doa10p ubiquitin ligase complex A multiprotein complex that recognizes and ubiquitinates membranes proteins with misfolded cytosolic domains during ER-associated protein degradation (ERAD). In S. cerevisiae, this complex contains the ubiquitin ligase Ssm4p/Doa10p. 88444 0 0 67144 9 prefoldin complex A multisubunit chaperone that acts to delivers unfolded proteins to cytosolic chaperonin. In humans, the complex is a heterohexamer of two PFD-alpha and four PFD-beta type subunits. 88445 0 0 67145 9 aster An array of microtubules emanating from a spindle pole MTOC that do not connect to kinetochores. 88448 0 0 67146 9 protein-N(PI)-phosphohistidine-sugar phosphotransferase complex An enzyme complex that catalyzes the transfer of a phosphate from protein N(PI)-phosphohistidine to a sugar molecule. It is enzyme II of the phosphotransferase system. 88449 0 0 67147 9 synaptobrevin 2-SNAP-25-syntaxin-3 complex A SNARE complex that contains synaptobrevin 2 (VAMP2), SNAP-25, and syntaxin 3 (or orthologs thereof). 88450 0 0 67148 9 interleukin-12-interleukin-12 receptor complex A protein complex that is formed by the association of a heterodimeric interleukin-12 receptor complex with an interleukin-12 heterodimer. 88451 0 0 67149 9 angiogenin-PRI complex A stable heterodimer of angiogenin and placental ribonuclease inhibitor; interaction between angiogenin and PRI prevents angiogenin binding to its receptor to stimulate angiogenesis. 88453 0 0 67150 9 mTOR-FKBP12-rapamycin complex A protein complex that contains the mTOR (mammalian target of rapamycin) serine/threonine kinase, the peptidyl-prolyl cis-trans isomerase FKBP12 (FKBP1A) and rapamycin (sirolimus). 88456 0 0 67151 9 nuclear DNA-directed RNA polymerase complex A protein complex, located in the nucleus, that possesses DNA-directed RNA polymerase activity. 88459 0 0 67152 9 ER-Golgi transport vesicle (obsolete GO:0005805) OBSOLETE (was not defined before being made obsolete). 88460 1 0 67153 9 Y chromosome The sex chromosome present in males of species in which the male is the heterogametic sex; generally, the sex chromosome that pairs with the X chromosome in the heterogametic sex. The Y chromosome is absent from the cells of females and present in one copy in the somatic cells of males. 88461 0 0 67155 9 non-segmented viral genome A viral genome that consists of one continuous nucleic acid molecule. 88464 0 0 67156 9 desmosome A cell-cell junction in which: on the cytoplasmic surface of each interacting plasma membrane is a dense plaque composed of a mixture of intracellular anchor proteins; a bundle of keratin intermediate filaments is attached to the surface of each plaque; transmembrane adhesion proteins of the cadherin family bind to the plaques and interact through their extracellular domains to hold the adjacent membranes together by a Ca2+-dependent mechanism. 88465 0 0 67157 9 axonal growth cone The migrating motile tip of a growing nerve cell axon. 88466 0 0 67158 9 nitrogenase complex An enzyme complex composed of two proteins, dinitrogenase and nitrogenase reductase; dinitrogenase is tetrameric with an alpha2-beta2 structure and nitrogenase reductase is a homodimer, and both are associated with metal ions, which differ between species. Both proteins are required for the enzyme activity of the complex, the formation of oxidized ferredoxin and ammonia from reduced ferredoxin and nitrogen. 88467 0 0 67159 9 translocon complex A protein complex that constitutes a specific site of protein translocation across the endoplasmic reticulum, which involves the signal recognition particle receptor. The complex contains a core heterotrimer of alpha, beta and gamma subunits, and may contain additional proteins. 88470 0 0 67160 9 I-kappaB/NF-kappaB complex A protein complex containing an I-kappaB protein and one or more copies of an NF-kappaB protein; mediates regulation of NF-kappaB activity by I-kappaB. 88475 0 0 67161 9 methanol-CoM methyltransferase complex A heterotrimeric protein complex composed of a methanol methyltransferase subunit, a corrinoid protein and a methanol-specific corrinoid:coenzyme M methyltransferase subunit. Catalyzes the transfer of a methyl group from methanol to coenzyme M as part of the pathway of methanogenesis from methanol. 88477 0 0 67162 9 myosin III complex A myosin complex containing a class III myosin heavy chain and associated light chains; myosin III is monomeric myosin that serves as a link between the cytoskeleton and the signaling complex involved in phototransduction, and differs from all other myosins in having an N-terminal kinase domain. 88481 0 0 67163 9 nuclear heterochromatin A condensed form of chromatin, occurring in the nucleus during interphase, that stains strongly with basophilic dyes. The DNA of heterochromatin is typically replicated at a later stage in the cell-division cycle than euchromatin. 88482 0 0 67164 9 NLS-dependent protein nuclear import complex A protein complex which usually consists of three components, e.g. in Xenopus, the importin alpha and beta-subunits and any protein which has a nuclear localization sequence (NLS). The complex acts to import proteins with an NLS into the nucleus through a nuclear pore. 88483 0 0 67165 9 gas vesicle A hollow structure made of protein, which usually has the form of a cylindrical tube closed by conical end caps. By regulating their relative gas vesicle content aquatic microbes are able to perform vertical migrations. 88485 0 0 67166 9 replication fork The Y-shaped region of a replicating DNA molecule, resulting from the separation of the DNA strands and in which the synthesis of new strands takes place. Also includes associated protein complexes. 88487 0 0 67167 9 Vps55/Vps68 complex A membrane-associated protein complex that is required for a late stage of endosomal transport. In budding yeast, this complex consists of Vps55p and Vps68p proteins. 88488 0 0 67168 9 intrinsic to fungal-type vacuolar membrane Located in the fungal-type vacuolar membrane such that some covalently attached portion of the gene product, for example part of a peptide sequence or some other covalently attached group such as a GPI anchor, spans or is embedded in one or both leaflets of the membrane. 88490 0 0 67170 9 mitochondrial ribosome A ribosome found in the mitochondrion of a eukaryotic cell; contains a characteristic set of proteins distinct from those of cytosolic ribosomes. 88493 0 0 67171 9 FACIT collagen Any collagen polymer associated with collagen fibrils and in which the collagen monomers contain two or more relatively short triple-helical domains connected by non-triple-helical sequences; the acronym FACIT stands for fibril-associated collagen with interrupted triple helix. 88494 0 0 67172 9 transport vesicle Any of the vesicles of the constitutive secretory pathway, which carry cargo from the endoplasmic reticulum to the Golgi, between Golgi cisternae, or to destinations within or outside the cell. 88496 0 0 67173 9 viral replication complex Specific locations and structures in the virus infected cell involved in replicating the viral genome. 88497 0 0 67174 9 alphaIIb-beta3 integrin-talin complex A protein complex that consists of an alphaIIb-beta3 integrin complex bound to talin. 88498 0 0 67175 9 assemblon Antigenically dense structures located at the periphery of nuclei, close to but not abutting nuclear membranes. Assemblons contain the proteins for immature-capsid assembly; they are located at the periphery of a diffuse structure composed of proteins involved in DNA synthesis, which overlaps only minimally with the assemblons. More than one site can be present simultaneously. 88500 0 0 67176 9 ssRNA viral genome A viral genome composed of single stranded RNA of either positive or negative sense. 88502 0 0 67177 9 lamellipodium membrane The portion of the plasma membrane surrounding a lamellipodium. 88503 0 0 67178 9 nuclear proteasome regulatory particle, base subcomplex The subunits of the regulatory particle that directly associate with the core complex of a proteasome located in the nucleus of a cell. 88504 0 0 67179 9 vesicular fraction Any of the small, heterogeneous, artifactual, vesicular particles that are formed when some cells are homogenized. 88505 0 0 67180 9 glycine cleavage complex A protein complex that catalyzes the reversible oxidation of glycine. In E. coli, it has four components: dihydrolipoamide dehydrogenase, glycine dehydrogenase (decarboxylating), lipoyl-GcvH-protein and aminomethyltransferase, also known as L, P, H, and T. 88506 0 0 67181 9 activin responsive factor complex A transcriptionally active complex that binds to an activin response element (ARE) in the promoter of target genes, and is composed of two SMAD2 proteins, one SMAD4 protein and a Forkhead activin signal transducer (FAST) transcription factor. 88510 0 0 67182 9 bacterial-type flagellar cytoplasm All of the contents of a bacterial-type flagellum, excluding the plasma membrane surrounding the flagellum. 88513 0 0 67183 9 karyopherin docking complex A subcomplex of the nuclear pore complex that interacts with karyopherin-cargo complexes; a well-characterized example in Saccharomyces contains Asm4p, Nup53p, and Nup170p. 88514 0 0 67212 9 host cell nuclear inner membrane The inner, i.e. lumen-facing, lipid bilayer of the host nuclear envelope. 88558 0 0 67213 9 signal recognition particle A complex of protein and RNA which facilitates translocation of proteins across membranes. 88559 0 0 67184 9 cleavage body A nuclear body that contains proteins involved in pre-mRNA 3'-end cleavage and polyadenylation, such as DDX1, CSTF2 and CPSFs, as well as the transcription factors TFIIE and TFIIF. Cleavage bodies are localized adjacent to Cajal bodies and are involved in mRNA3'-end processing. 88517 0 0 67185 9 histamine-gated chloride channel complex A protein complex that forms a transmembrane channel through which chloride ions may pass in response to histamine binding to the channel complex or one of its constituent parts. 88521 0 0 67186 9 integral to plastid outer membrane Penetrating at least one phospholipid bilayer of a plastid outer membrane. May also refer to the state of being buried in the bilayer with no exposure outside the bilayer. 88522 0 0 67188 9 translation release factor complex A heterodimeric complex involved in the release of a nascent polypeptide chain from a ribosome. 88524 0 0 67189 9 cell-cell contact zone Extended zone of intimate apposition between two cells containing one or more types of intercellular junctions, e.g., the intercalated disk of muscle. 88525 0 0 67190 9 alpha3-beta1 integrin-CD151 complex A protein complex that consists of an alpha3-beta1 integrin complex bound to the tetraspanin CD151. 88527 0 0 67191 9 inhibitory synapse A synapse in which an action potential in the presynaptic cell reduces the probability of an action potential occurring in the postsynaptic cell. 88529 0 0 67192 9 cytoplasmic dynein complex Any dynein complex that catalyzes movement along a cytoplasmic microtubule; cytoplasmic dynein complexes participates in many transport activities in eukaryotes, such as mRNA localization, intermediate filament transport, nuclear envelope breakdown, apoptosis, transport of centrosomal proteins, mitotic spindle assembly, virus transport, kinetochore functions, and movement of signaling and spindle checkpoint proteins. Subunits associated with the dynein heavy chain mediate association between dynein heavy chain and cargoes,and may include light chains and light intermediate chains. 88530 0 0 67193 9 nucleotide-excision repair complex Any complex formed of proteins that act in nucleotide-excision repair. 88532 0 0 67194 9 late endosome membrane The lipid bilayer surrounding a late endosome. 88533 0 0 67195 9 chitosan layer of spore wall The second outermost layer of the spore wall, as described in Saccharomyces. 88534 0 0 67196 9 interleukin-9 receptor complex A protein complex that binds interleukin-9; comprises an alpha and a beta subunit. The alpha chain is specific to the interleukin-9 receptor, whereas the beta chain is shared with the receptors for several other interleukins. 88535 0 0 67197 9 cell septum part Any constituent part of a cell septum, a structure composed of peptidoglycan and often chitin in addition to other materials. It usually forms perpendicular to the long axis of a cell or hypha and grows centripetally from the cell wall to the center of the cell and often functions in the compartmentalization of a cell into two daughter cells. 88537 0 0 67198 9 penta-snRNP complex A ribonucleoprotein complex formed by the association of the U1, U2, U4/U6 and U5 small nuclear ribonucleoproteins. 88538 0 0 67199 9 BAK complex An oligomeric protein complex consisting of BAK, a member of the Bcl-2 family of anti- and proapoptotic regulators. 88541 0 0 67229 9 interleukin-27 complex A protein complex that is composed of an interleukin-27p28 subunit (product of the IL27 gene) and an EBI3 subunit and is secreted into the extracellular space. 88585 0 0 67258 9 chloroplast proton-transporting ATP synthase complex A proton-transporting ATP synthase complex found in the chloroplast thylakoid membrane; it catalyzes the phosphorylation of ADP to ATP during photo-phosphorylation. 88632 0 0 67200 9 myosin complex A protein complex, formed of one or more myosin heavy chains plus associated light chains and other proteins, that functions as a molecular motor; uses the energy of ATP hydrolysis to move actin filaments or to move vesicles or other cargo on fixed actin filaments; has magnesium-ATPase activity and binds actin. Myosin classes are distinguished based on sequence features of the motor, or head, domain, but also have distinct tail regions that are believed to bind specific cargoes. 88542 0 0 67201 9 photosynthetic membrane A membrane enriched in complexes formed of reaction centers, accessory pigments and electron carriers, in which photosynthetic reactions take place. 88544 0 0 67202 9 cellular_component The part of a cell or its extracellular environment in which a gene product is located. A gene product may be located in one or more parts of a cell and its location may be as specific as a particular macromolecular complex, that is, a stable, persistent association of macromolecules that function together. 88545 0 0 67203 9 replication fork protection complex A protein complex conserved in eukaryotes and associated with the replication fork; the complex stabilizes stalled replication forks and is thought to be involved in coordinating leading- and lagging-strand synthesis and in replication checkpoint signaling. 88547 0 0 67204 9 insoluble fraction That fraction of cells, prepared by disruptive biochemical methods, that is not soluble in water. 88548 0 0 67205 9 extrinsic to endoplasmic reticulum membrane Loosely bound to one surface of the endoplasmic reticulum membrane, but not integrated into the hydrophobic region. 88549 0 0 67206 9 filamentous actin A two-stranded helical polymer of the protein actin. 88550 0 0 67207 9 host cell perinuclear region of cytoplasm The host cell cytoplasm situated near, or occurring around, the host nucleus. 88551 0 0 67208 9 other organism presynaptic membrane A presynaptic membrane that is part of another organism, i.e. a secondary organism with which the first organism is interacting. A presynaptic membrane is specialized area of membrane of the axon terminal that faces the plasma membrane of the neuron or muscle fiber with which the axon terminal establishes a synaptic junction; many synaptic junctions exhibit structural presynaptic characteristics, such as conical, electron-dense internal protrusions, that distinguish it from the remainder of the axon plasma membrane. 88552 0 0 67209 9 methane monooxygenase complex A protein complex that possesses methane monooxygenase activity; dimeric and trimeric complexes have been characterized. 88553 0 0 67210 9 lytic vacuole A vacuole that is maintained at an acidic pH and which contains degradative enzymes, including a wide variety of acid hydrolases. 88555 0 0 67211 9 plasma membrane respiratory chain complex IV A part of the respiratory chain located in the plasma membrane, containing the 13 polypeptide subunits of cytochrome c oxidase, including cytochrome a and cytochrome a3. Catalyzes the oxidation of reduced cytochrome c by dioxygen (O2). Examples of this component are found in Bacterial species. 88556 0 0 67969 9 gas vesicle shell The proteinaceous structure surrounding a gas vesicle. 89676 0 0 67214 9 type Is terminal button Terminal inflated portion of the axon of a glutamatergic neuron, containing the specialized apparatus necessary for the phasic release neurotransmitters that will induce the contraction of muscle. Type Is terminal buttons are smaller than type Ib terminal buttons. 88560 0 0 67215 9 ATR-ATRIP complex A protein complex that contains the protein kinase ATR and ATR-interacting protein (ATRIP) and binds single-stranded DNA; ssDNA binding affinity is increased in the presence of replication protein A. 88561 0 0 67216 9 meiotic cohesin complex A cohesin complex that mediates sister chromatid cohesion during meiosis; has a subunit composition distinct from that of the mitotic cohesin complex. 88563 0 0 67217 9 acetolactate synthase complex A dimeric (a large and a small chain) or tetrameric (two large and two small chains) enzyme complex. Catalyzes the formation of acetolactate from pyruvate. 88564 0 0 67218 9 alphaIIb-beta3 integrin-CD47-Src complex A protein complex that consists of an alphaIIb-beta3 integrin complex bound to the cell surface antigen CD47 and the kinase c-Src. 88568 0 0 67219 9 RNA polymerase I upstream activating factor complex A complex required for the transcription of rDNA by RNA polymerase I. In yeast the complex consists of Rrrn5p, Rrn9p, Rrn10p, histones H3 and H4, and Uaf30p. 88570 0 0 67220 9 CD19-Vav-PIK3R1 complex A protein complex that contains the cell surface signaling molecule CD19, the Ras guanine nucleotide exchange factor Vav, and the regulatory subunit alpha of phosphatidylinositol 3-kinase (PI3K). 88572 0 0 67221 9 myosin VII complex A myosin complex containing a dimer of class VII myosin heavy chains and associated light chains. Myosin VII (240 kDa) is predicted to be a dimeric molecule with 5 IQ motifs and a tail region with a short stretch of coiled coil followed by two myosin-tail homology (MyTH4) domains, two talin-binding (FERM) domains and an SH3-domain. 88574 0 0 67222 9 MAML3-RBP-Jkappa-ICN4 complex A protein complex that consists of the intracellular domain of Notch4 (ICN4), the DNA-binding transcription factor RBP-Jkappa, and the transcriptional coactivator Mastermind-like-3 (MAML3); the complex is involved in transcriptional activation in response to Notch-mediated signaling. 88575 0 0 67223 9 organellar chromatophore intermembrane space The region between the inner and outer lipid bilayers that surround an organellar chromatophore. 88576 0 0 67224 9 germination pore A small pore in the outer wall of a mycelial spore through which the germ tube exits upon germination. It can be apical or eccentric in its location. 88577 0 0 67225 9 cytochrome complex A protein complex in which at least one of the proteins is a cytochrome, i.e. a heme-containing protein involved in catalysis of redox reactions. 88579 0 0 67226 9 Mei2 nuclear dot A nuclear body that forms during meiotic prophase in a fixed position in the horsetail nucleus; contains Mei2 and meiRNA. May play a role in the progression of meiosis I. 88580 0 0 67227 9 endoplasmic reticulum lumen The volume enclosed by the membranes of the endoplasmic reticulum. 88582 0 0 67228 9 host cell smooth endoplasmic reticulum membrane The lipid bilayer surrounding the host cell smooth endoplasmic reticulum. 88584 0 0 70646 14 BO.03 late boot stage The flag leaf sheath swollen. 92930 0 0 67230 9 Piccolo NuA4 histone acetyltransferase complex A heterotrimeric H4/H2A histone acetyltransferase complex with a substrate preference of chromatin over free histones. It contains a subset of the proteins found in the larger NuA4 histone acetyltransferase complex; for example, the S. cerevisiae complex contains Esa1p, Yng2p, and Epl1p. 88587 0 0 67231 9 Kv4.3-DPP10 channel complex A voltage-gated potassium channel complex that contains the peptidase-related protein DPP10 associated with the channel via interaction with the Kv alpha subunit 4.3. 88590 0 0 67232 9 host cell nucleoplasm That part of a host cell's nuclear content other than the chromosomes or the nucleolus. The host is the larger of the organisms involved in a symbiotic interaction. 88591 0 0 67233 9 Tor2-Mei2-Ste11 complex A protein complex that contains the transcription factor Ste11 and the RNA binding protein Mei2; involved in regulation of conjugation in fission yeast. 88592 0 0 67234 9 photosynthetic electron transport chain (obsolete GO:0009502) OBSOLETE. A series of membrane-linked oxidation-reduction reactions in which electrons are transferred from an initial electron donor through a series of intermediates to a final electron acceptor (usually oxygen). 88594 1 0 67235 9 mitochondrial respiratory chain complex III A protein complex located in the mitochondrial inner membrane that forms part of the mitochondrial respiratory chain. Contains about 10 polypeptide subunits including four redox centers: cytochrome b/b6, cytochrome c1 and an 2Fe-2S cluster. Catalyzes the oxidation of ubiquinol by oxidized cytochrome c1. 88596 0 0 67236 9 alphaV-beta3 integrin-EGFR complex A protein complex that consists of an alphaV-beta3 integrin complex bound to epidermal growth factor receptor. 88598 0 0 67237 9 FHF complex A protein complex that is composed of AKTIP/FTS, FAM160A2/p107FHIP, and one or more members of the Hook family of proteins, HOOK1, HOOK2, and HOOK3. The complex is thought to promote vesicle trafficking and/or fusion, and associates with the homotypic vesicular sorting complex (the HOPS complex). 88600 0 0 67238 9 protein kinase CK2 complex A protein complex that possesses protein serine/threonine kinase activity, and contains two catalytic alpha subunits and two regulatory beta subunits. Protein kinase CK2 complexes are found in nearly every subcellular compartment, and can phosphorylate many protein substrates in addition to casein. 88602 0 0 67239 9 alpha6-beta4 integrin-laminin 5 complex A protein complex that consists of an alpha6-beta4 integrin complex bound to laminin 5. 88604 0 0 67240 9 integral to endoplasmic reticulum membrane Penetrating at least one phospholipid bilayer of an endoplasmic reticulum membrane. May also refer to the state of being buried in the bilayer with no exposure outside the bilayer. 88605 0 0 67241 9 myosin XII complex A myosin complex containing one or more class XII myosin heavy chains and associated light chains; myosin XII contains a large tail region with two MyTH4 domains and a short region of coiled coil. 88606 0 0 67242 9 mRNA editing complex A protein complex that posttranscriptionally catalyzes insertion, deletion or substitution of nucleotides at multiple sites within nascent mRNA transcripts to produce mature mRNAs in eukaryotes. 88607 0 0 67243 9 GARP complex A quatrefoil tethering complex required for retrograde traffic from the early endosome back to the late Golgi and biogenesis of cytoplasmic vesicles. 88611 0 0 67802 9 chromosome, telomeric region The terminal region of a linear chromosome that includes the telomeric DNA repeats and associated proteins. 89435 0 0 67244 9 tertiary granule A secretory granule that contains cathepsin and gelatinase and is readily exocytosed upon cell activation; found primarily in mature neutrophil cells. 88615 0 0 67245 9 host peribacteroid membrane A host-derived membrane that surrounds one or more bacteroids (such as nitrogen-fixing bacteroids within legume root nodule cells). 88617 0 0 67566 9 alpha9-beta1 integrin-ADAM1 complex A protein complex that consists of an alpha9-beta1 integrin complex bound to the transmembrane metallopeptidase ADAM1. 89088 0 0 67246 9 senescence-associated heterochromatin focus A transcriptionally-silent heterochromatin structure present in senescent cells. Contains the condensed chromatin of one chromosome and is enriched for histone modifications. Thought to repress expression of proliferation-promoting genes. 88618 0 0 67247 9 cytoplasmic vesicle membrane The lipid bilayer surrounding a cytoplasmic vesicle. 88619 0 0 67248 9 female pronucleus The pronucleus originating from the ovum that is being fertilized. 88620 0 0 67249 9 cyclin B3-CDK2 complex A protein complex consisting of cyclin B3 and cyclin-dependent kinase 2 (CDK2). Cyclins are characterized by periodicity in protein abundance throughout the cell cycle. Cyclin-dependent kinases represent a family of serine/threonine protein kinases that become active upon binding to a cyclin regulatory partner. 88621 0 0 67250 9 chloroplast A chlorophyll-containing plastid with thylakoids organized into grana and frets, or stroma thylakoids, and embedded in a stroma. 88622 0 0 67251 9 SMAD3-SMAD4 protein complex A heteromeric SMAD protein complex that contains SMAD3 and SMAD4. 88623 0 0 67252 9 cone cell pedicle A specialized axon terminus which is produced by retinal cone cells. Pedicles are large, conical, flat end-feet (8-10 micrometers diameter) of the retinal cone axon that lie more or less side by side on the same plane at the outer edge of the outer plexiform layer (OPL). 88624 0 0 67253 9 T cell receptor complex A protein complex that contains a disulfide-linked heterodimer of T cell receptor (TCR) chains, which are members of the immunoglobulin superfamily, and mediates antigen recognition, ultimately resulting in T cell activation. The TCR heterodimer is associated with the CD3 complex, which consists of the nonpolymorphic polypeptides gamma, delta, epsilon, zeta, and, in some cases, eta (an RNA splice variant of zeta) or Fc epsilon chains. 88627 0 0 67254 9 mitochondrial inner membrane The inner, i.e. lumen-facing, lipid bilayer of the mitochondrial envelope. It is highly folded to form cristae. 88628 0 0 67256 9 cyanelle thylakoid A thylakoid found in a cyanelle, which is a type of plastid found in certain algae. The cyanelle contains a photosynthetic membrane resembling that of cyanobacteria. 88630 0 0 67257 9 host intracellular membrane-bounded organelle Organized structure of distinctive morphology and function, as found in host cells, bounded by a single or double lipid bilayer membrane and occurring within the cell. Includes the nucleus, mitochondria, plastids, vacuoles, and vesicles. Excludes the plasma membrane. The host is defined as the larger of the organisms involved in a symbiotic interaction. 88631 0 0 69601 13 rachilla of sessile spikelet of tassel The axis of the tassel sessile spikelet, above the glumes. 91773 0 0 67260 9 photosystem I A photosystem that contains an iron-sulfur reaction center associated with accessory pigments and electron carriers. In cyanobacteria and chloroplasts, photosystem I functions as a light-dependent plastocyanin-ferredoxin oxidoreductase, transferring electrons from plastocyanin to ferredoxin; in photosynthetic bacteria that have only a single type I photosystem, such as the green sulfur bacteria, electrons can go either to ferredoxin (Fd) -> NAD+ or to menaquinone (MK) -> Cytb/FeS -> Cytc555 -> photosystem I (cyclic photophosphorylation). 88634 0 0 67261 9 platelet alpha granule A secretory organelle found in blood platelets, which is unique in that it exhibits further compartmentalization and acquires its protein content via two distinct mechanisms: (1) biosynthesis predominantly at the megakaryocyte (MK) level (with some vestigial platelet synthesis) (e.g. platelet factor 4) and (2) endocytosis and pinocytosis at both the MK and circulating platelet levels (e.g. fibrinogen (Fg) and IgG). 88636 0 0 67262 9 melanosome lumen The volume enclosed by the melanosome membrane. 88637 0 0 67263 9 SWI/SNF-type complex A chromatin remodeling complex that contains an ortholog of the Saccharomyces ATPase Swi2/Snf2 as one of the core components. 88638 0 0 67264 9 mitochondrial inner membrane peptidase complex Protease complex of the mitochondrial inner membrane, consisting of at least two subunits, involved in processing of both nuclear- and mitochondrially-encoded proteins targeted to the intermembrane space. 88640 0 0 67265 9 plastid thylakoid lumen The volume enclosed by a plastid thylakoid membrane. 88642 0 0 67266 9 proton-transporting two-sector ATPase complex, catalytic domain A protein complex that forms part of a proton-transporting two-sector ATPase complex and catalyzes ATP hydrolysis or synthesis. The catalytic domain (F1, V1, or A1) comprises a hexameric catalytic core and a central stalk, and is peripherally associated with the membrane when the two-sector ATPase is assembled. 88643 0 0 67267 9 sodium channel complex An ion channel complex through which sodium ions pass. 88644 0 0 67268 9 host cell endosome membrane The lipid bilayer surrounding a host cell endosome. 88645 0 0 67269 9 transcription-activating factor, 30kD (obsolete GO:0005670) OBSOLETE (was not defined before being made obsolete). 88646 1 0 67270 9 extrachromosomal circular DNA Circular DNA structures that are not part of a chromosome. 88647 0 0 67271 9 ribosomal-protein-alanine N-acetyltransferase complex An enzyme complex that catalyzes the transfer of an acetyl group to ribosomal-protein alanine, forming ribosomal-protein acetylalanine. 88648 0 0 67272 9 cytoplasmic mRNA processing body A focus in the cytoplasm where mRNAs may become inactivated by decapping or some other mechanism. mRNA processing and binding proteins are localized to these foci. 88649 0 0 67273 9 Type IV site-specific deoxyribonuclease complex A complex consisting of two proteins which acts as an endonuclease in DNA sequences containing a specific modified recognition site. Modifications may include methylation, hydroxymethylation, and glucosyl-hydroxymethylation. 88651 0 0 67274 9 preribosome, large subunit precursor A preribosomal complex consisting of 27SA, 27SB, and/or 7S pre-rRNA, 5S rRNA, ribosomal proteins including late-associating large subunit proteins, and associated proteins; a precursor of the eukaryotic cytoplasmic large ribosomal subunit. 88652 0 0 67478 9 light-harvesting complex, core complex Light harvesting complex associated with the reaction complex of photosynthetic purple bacteria. 88966 0 0 77134 41 subtaxa authority \N 210037 0 0 67275 9 LYSP100-associated nuclear domain A nuclear body that is enriched in the lymphoid cell-specific protein LYSp100B; LANDs are globular, electron-dense structures and are morphologically distinct from the annular structures characteristic of PML bodies. 88653 0 0 67276 9 endoplasmic reticulum chaperone complex A protein complex that is located in the endoplasmic reticulum and is composed of chaperone proteins, including BiP, GRP94; CaBP1, protein disulfide isomerase (PDI), ERdj3, cyclophilin B, ERp72, GRP170, UDP-glucosyltransferase, and SDF2-L1. 88654 0 0 67277 9 flagellar membrane The portion of the plasma membrane surrounding the flagellum. 88656 0 0 67278 9 mesosome An intracellular, often complex, membranous structure, sometimes with additional membranous lamellae inside, found in bacteria. They are associated with synthesis of DNA and secretion of proteins. 88657 0 0 67279 9 central plaque of spindle pole body One of three laminate structures that form the spindle pole body; the central plaque is embedded in the nuclear envelope. 88658 0 0 67280 9 extracellular space That part of a multicellular organism outside the cells proper, usually taken to be outside the plasma membranes, and occupied by fluid. 88659 0 0 67281 9 NELF complex A complex of five proteins, designated NELF-A, -B, -C, -D, and -E in human, that can physically associate with RNP polymerase II to induce transcriptional pausing. 88660 0 0 67282 9 synaptic vesicle A secretory organelle, some 50 nm in diameter, of presynaptic nerve terminals; accumulates in high concentrations of neurotransmitters and is secreted these into the synaptic cleft by fusion with the 'active zone' of the presynaptic plasma membrane. 88662 0 0 67283 9 spore wall The specialized envelope lying outside the cell membrane of a spore. 88663 0 0 67284 9 interleukin-3 receptor complex A protein complex that binds interleukin-3; comprises an alpha and a beta subunit. The alpha chain is specific to the interleukin-3 receptor, whereas the beta chain is shared with the receptors for granulocyte-macrophage colony-stimulating factor and interleukin-5. 88664 0 0 67285 9 mitochondrial pyruvate dehydrogenase complex Complex that carries out the oxidative decarboxylation of pyruvate to form acetyl-CoA in eukaryotes; includes subunits possessing three catalytic activities: pyruvate dehydrogenase (E1), dihydrolipoamide S-acetyltransferase (E2), and dihydrolipoamide dehydrogenase (E3). The This Eukaryotic form usually contains more subunits than its bacterial counterpart; for example, one known complex contains 30 E1 dimers, 60 E2 monomers, and 6 E3 dimers as well as a few copies of pyruvate dehydrogenase kinase and pyruvate dehydrogenase phosphatase. 88665 0 0 67286 9 protein complex Any macromolecular complex composed of two or more polypeptide subunits, which may or may not be identical. Protein complexes may have other associated non-protein prosthetic groups, such as nucleotides, metal ions or other small molecules. 88666 0 0 67287 9 rDNA protrusion Any of the tandem arrays of rDNA localized at the periphery of the nucleus and protruding into the nucleolus, and associated proteins. May be visible as a single or double spot by DAPI staining. 88667 0 0 67962 9 extrinsic to organelle membrane Loosely bound to one surface of an organelle membrane, but not integrated into the hydrophobic region. 89665 0 0 67288 9 BLOC-3 complex A protein complex required for the biogenesis of specialized organelles of the endosomal-lysosomal system, such as melanosomes and platelet dense granules. The human complex contains the Hps1 and Hps4 proteins. 88669 0 0 67289 9 clathrin coat of trans-Golgi network vesicle A clathrin coat found on a vesicle of the trans-Golgi network. 88671 0 0 67290 9 icosahedral viral capsid The protein coat that surrounds the infective nucleic acid in some virus particles; the subunits are arranged to form an icosahedron, a solid with 20 faces and 12 vertices. Tobacco satellite necrosis virus has such a capsid structure. 88672 0 0 67291 9 basal lamina A thin sheet of proteoglycans and glycoproteins, especially laminin, secreted by cells as an extracellular matrix. 88673 0 0 67292 9 SUMO-targeted ubiquitin ligase complex A nuclear ubiquitin ligase complex that specifically targets SUMOylated proteins; the complex is formed of homodimers or heterodimers of RNF4 family ubiquitin ligases and is conserved in eukaryotes. 88674 0 0 67293 9 SLIK (SAGA-like) complex A SAGA-type histone acetyltransferase complex that contains Rtg2 and a smaller form of Spt7 than the fungal SAGA complex, and lacks Spt8. The complex is involved in the yeast retrograde response pathway, which is important for gene expression changes during mitochondrial dysfunction. 88677 0 0 67294 9 autophagic vacuole membrane The lipid bilayer surrounding an autophagic vacuole, a double-membrane-bounded vesicle in which endogenous cellular material is sequestered. 88680 0 0 67295 9 clathrin sculpted acetylcholine transport vesicle A clathrin sculpted lipid bilayer membrane-enclosed vesicle after clathrin release and containing acetylcholine. 88681 0 0 67296 9 sodium ion-transporting F-type ATPase complex A sodium ion-transporting two-sector ATPase complex that catalyzes the phosphorylation of ADP to ATP. The complex comprises a membrane sector (F0) that carries out proton transport and a cytoplasmic compartment sector (F1) that catalyzes ATP synthesis by a rotational mechanism. 88682 0 0 67297 9 phosphatidylinositol 3-kinase complex I A protein complex that posseses phosphatidylinositol 3-kinase activity and is involved in autophagy. In budding yeast, this complex consists of Vps30p, Vps34p, Atg14p and Vps15p. 88684 0 0 67298 9 chloroplast starch grain Plant storage body for amylose and amylopectin, 1-100um in diameter, and located in chloroplasts. Also contains small amounts of enzymes, amino acids, lipids and nucleic acids. The shape of the grain varies widely amongst species, but is often spherical or disk-shaped. 88687 0 0 67299 9 ATP-binding cassette (ABC) transporter complex A complex for the transport of metabolites into and out of the cell, typically comprised of four domains; two membrane-associated domains and two ATP-binding domains at the intracellular face of the membrane, that form a central pore through the plasma membrane. Each of the four core domains may be encoded as a separate polypeptide or the domains can be fused in any one of a number of ways into multidomain polypeptides. In Bacteria and Archaebacteria, ABC transporters also include substrate binding proteins to bind substrate external to the cytoplasm and deliver it to the transporter. 88688 0 0 67300 9 granular component A structure found in the nucleolus, which contains nearly completed preribosomal particles destined for the cytoplasm. 88693 0 0 67301 9 transcription factor TFIIE complex A transcription factor which in humans consists of a complex of two alpha and two beta chains. Recruits TFIIH to the initiation complex and helps activate both RNA polymerase II and TFIIH. 88694 0 0 67357 9 carotenoid vesicle A tissue-specific cytoplasmic vesicle surrounded by a membrane half-leaflet within which carotenoid pigments are stored. Carotenoid vescicles are synthesized in xanthophores and erythrophore cells and are yellow, orange or red in appearance. 88777 0 0 67302 9 SMN-Sm protein complex A protein complex formed by the association of several methylated Sm proteins with the SMN complex; the latter contains the survival motor neuron (SMN) protein and at least eight additional integral components, including the Gemin2-8 and unrip proteins; additional proteins, including galectin-1 and galectin-3, are also found in the SMN-SM complex. The SMN-Sm complex is involved in spliceosomal snRNP assembly in the cytoplasm. 88696 0 0 67303 9 IgE immunoglobulin complex, circulating A protein complex composed of two identical immunoglobulin heavy chains of the IgE isotype and two identical immunoglobulin light chains, held together by disulfide bonds, and present in the extracellular space, in mucosal areas or other tissues, or circulating in the blood or lymph. 88698 0 0 67304 9 nucleoplasm That part of the nuclear content other than the chromosomes or the nucleolus. 88699 0 0 67305 9 cytosolic proteasome core complex, beta-subunit complex The proteasome core subcomplex that constitutes the two inner rings of the cytosolic proteasome core complex. 88700 0 0 67306 9 condensin core heterodimer The core heterodimer of a condensin complex, a multisubunit protein complex that plays a central role in chromosome condensation. 88701 0 0 67307 9 host cell cytoplasmic vesicle membrane The lipid bilayer surrounding a host cell cytoplasmic vesicle. 88703 0 0 67308 9 host cell cytoplasm The cytoplasm of a host cell. 88704 0 0 67309 9 alphav-beta3 integrin-vitronectin complex A protein complex that consists of an alphav-beta3 integrin complex bound to vitronectin. 88705 0 0 67310 9 dendritic spine Protrusion from a dendrite. Spines are specialised subcellular compartments involved in the synaptic transmission. They are linked to the dendritic shaft by a restriction. Because of their bulb shape, they function as a biochemical and an electrical compartment. Spine remodeling is though to be involved in synaptic plasticity. 88707 0 0 67311 9 dystrobrevin complex A protein complex comprising alpha- and beta-dystrobrevin; forms part of the dystrophin glycoprotein complex. 88708 0 0 67312 9 dense core granule Electron-dense organelle with a granular internal matrix; contains proteins destined to be secreted. 88709 0 0 67313 9 ion channel complex A protein complex that spans a membrane and forms a water-filled channel across the phospholipid bilayer allowing selective ion transport down its electrochemical gradient. 88711 0 0 67314 9 MPP7-DLG1-LIN7 complex A heterotrimeric protein complex formed by the association of MMP7, DLG1 and either LIN7A or LIN7C; regulates the stability and localization of DLG1 to cell junctions. 88712 0 0 67453 9 biotin carboxylase complex An enzyme complex that catalyzes the formation of carboxybiotin-carboxyl-carrier protein from biotin-carboxyl-carrier protein and carbon dioxide (CO2). 88935 0 0 67315 9 U12-type precatalytic spliceosome A spliceosomal complex that is formed by the recruitment of the preassembled U4atac/U6atac.U5 tri-snRNP to the U12-type prespliceosome. Although all 5 snRNPs are present, the precatalytic spliceosome is catalytically inactive. The precatalytic spliceosome includes many proteins in addition to those found in the U11, U12 and U4atac/U6atac.U5 snRNPs. 88713 0 0 67316 9 proton-transporting ATP synthase complex, coupling factor F(o) All non-F1 subunits of a hydrogen-transporting ATP synthase, including integral and peripheral membrane proteins. 88714 0 0 67317 9 microbody lumen The volume enclosed by the membranes of a microbody. 88715 0 0 67318 9 alphav-beta3 integrin-PKCalpha complex A protein complex that consists of an alphav-beta3 integrin complex bound to protein kinase C alpha. 88716 0 0 67319 9 host cell late endosome A prelysosomal endocytic organelle differentiated from host early endosomes by lower lumenal pH and different protein composition. Host late endosomes are more spherical than early endosomes and are mostly juxtanuclear, being concentrated near the microtubule organizing center. 88717 0 0 67320 9 pilus part Any constituent part of a pilus, a proteinaceous hair-like appendage on the surface of bacteria ranging from 2-8 nm in diameter. 88718 0 0 67321 9 APC-tubulin-IQGAP1 complex A protein complex that contains the tumor suppressor protein adenomatous polyposis coli (APC), alpha-tubulin, gamma-tubulin, and the Rac1 and Cdc42 effector IQGAP1; may play a role in cytoskeleton organization. 88719 0 0 67322 9 SNARE complex A protein complex involved in membrane fusion; a stable ternary complex consisting of a four-helix bundle, usually formed from one R-SNARE and three Q-SNAREs with an ionic layer sandwiched between hydrophobic layers. One well-characterized example is the neuronal SNARE complex formed of synaptobrevin 2, syntaxin 1a, and SNAP-25. 88721 0 0 67323 9 methylosome A large (20 S) protein complex that possesses protein arginine methyltransferase activity and modifies specific arginines to dimethylarginines in the arginine- and glycine-rich domains of several spliceosomal Sm proteins, thereby targeting these proteins to the survival of motor neurons (SMN) complex for assembly into small nuclear ribonucleoprotein (snRNP) core particles. Proteins found in the methylosome include the methyltransferase JBP1 (PRMT5), pICln (CLNS1A), MEP50 (WDR77), and unmethylated forms of SM proteins that have RG domains. 88722 0 0 67324 9 polytene chromosome, telomeric region The terminal region of a polytene chromosome. 88725 0 0 67325 9 plastid ADPG pyrophosphorylase complex An ADPG pyrophosphorylase complex found in a plastid. 88726 0 0 67326 9 alphaIIb-beta3 integrin-CD47-FAK complex A protein complex that consists of an alphaIIb-beta3 integrin complex bound to the cell surface antigen CD47 and the kinase FAK. 88727 0 0 67327 9 condensed chromosome kinetochore A multisubunit complex that is located at the centromeric region of a condensed chromosome and provides an attachment point for the spindle microtubules. 88728 0 0 67328 9 intrinsic to mitochondrial inner membrane Located in the mitochondrial inner membrane such that some covalently attached portion of the gene product, for example part of a peptide sequence or some other covalently attached group such as a GPI anchor, spans or is embedded in one or both leaflets of the membrane. 88729 0 0 67329 9 zonula adherens A cell-cell adherens junction which forms a continuous belt near the apex of epithelial cells. 88730 0 0 67330 9 tRNA (m2G10) methyltransferase complex A protein complex required for the methylation of the guanosine nucleotide at position 10 (m2G10) in tRNA. In S. cerevisiae, this complex consists of at least two subunits, Trm11p and Trm112p. 88731 0 0 77135 56 published date \N 210038 0 0 67358 9 contractile vacuole A specialized vacuole of eukaryotic cells, especially Protozoa, that fills with water from the cytoplasm and then discharges this externally by the opening of contractile vacuole pores. Its function is probably osmoregulatory. 88778 0 0 67331 9 intrinsic to internal side of cell outer membrane Located in the outer membrane of the cell such that some covalently attached portion of the gene product, for example part of a peptide sequence or some other covalently attached group such as a GPI anchor, spans or is embedded in one or both leaflets of the membrane, with the bulk of the gene product located on the side that faces the periplasm. 88733 0 0 67332 9 COPII vesicle coat One of two multimeric complexes that forms a membrane vesicle coat. COPII is best characterized in S. cerevisiae, where the subunits are called Sar1p, Sec13p, Sec31p, Sec23p, and Sec24p. Vesicles with COPII coats are found associated with endoplasmic reticulum (ER) membranes at steady state. 88734 0 0 67333 9 COMA complex A multiprotein complex in yeast consisting of Ctf19p, Okp1p, Mcm21p, and Ame1p. This complex bridges the subunits that are in contact with centromeric DNA and the subunits bound to microtubules during kinetochore assembly. 88735 0 0 67334 9 CD95 death-inducing signaling complex A protein complex formed upon binding of Fas/CD95/APO-1 to its ligand. The complex includes FADD/Mort1, procaspase-8/10 and c-FLIP in addition to the ligand-bound receptor. 88737 0 0 67335 9 growth cone membrane The portion of the plasma membrane surrounding a growth cone. 88738 0 0 67336 9 neuron projection membrane The portion of the plasma membrane surrounding a neuron projection. 88739 0 0 67337 9 laminin complex A large, extracellular glycoprotein complex composed of three different polypeptide chains, alpha, beta and gamma. Provides an integral part of the structural scaffolding of basement membranes. 88740 0 0 67338 9 MAML2-RBP-Jkappa-ICN2 complex A protein complex that consists of the intracellular domain of Notch2 (ICN2), the DNA-binding transcription factor RBP-Jkappa, and the transcriptional coactivator Mastermind-like-2 (MAML2); the complex is involved in transcriptional activation in response to Notch-mediated signaling. 88742 0 0 67339 9 catalytic step 1 spliceosome A spliceosomal complex that is formed by the displacement of the two snRNPs from the precatalytic spliceosome; three snRNPs including U5 remain associated with the mRNA. This complex, sometimes called the activated spliceosome, is the catalytically active form of the spliceosome, and includes many proteins in addition to those found in the associated snRNPs. 88743 0 0 67340 9 PSII associated light-harvesting complex II, core complex The pigment-protein complex primarily associated to PSII in higher plants, green algae and cyanobacteria that directly transfers electrons to the reaction center. 88744 0 0 67454 9 cell-substrate adherens junction An adherens junction which connects a cell to the extracellular matrix. 88936 0 0 67341 9 Nup107-160 complex A subcomplex of the nuclear pore complex (NPC) involved in mRNA export and NPC assembly. Contains conserved nucleoporins and other proteins; for example, the Saccharomyces complex contains Nup84p, Nup85p, Nup120p, Nup145p-C, Seh1p, Sec13p, and Nup133p. 88745 0 0 67342 9 mitosome A double-membrane-bounded organelle that functions in iron-sulfur protein maturation; evolutionarily derived from mitochondria. 88749 0 0 67343 9 Mre11 complex Trimeric protein complex that possesses endonuclease activity; involved in meiotic recombination, DNA repair and checkpoint signaling. In Saccharomyces cerevisiae, the complex comprises Mre11p, Rad50p, and Xrs2p; complexes identified in other species generally contain proteins orthologous to the Saccharomyces cerevisiae proteins. 88752 0 0 67344 9 centromere (obsolete GO:0005698) OBSOLETE. The region of a eukaryotic chromosome that is attached to the spindle during nuclear division. It is defined genetically as the region of the chromosome that always segregates at the first division of meiosis; the region of the chromosome in which no crossing over occurs. At the start of M phase, each chromosome consists of two sister chromatids with a constriction at a point which forms the centromere. During late prophase two kinetochores assemble on each centromere, one kinetochore on each sister chromatid. 88755 1 0 67345 9 intracellular ferritin complex A ferritin complex located in the cell. Intracellular ferritin complexes contain 24 subunits, in a mixture of L (light) chains and H (heavy) chains. 88756 0 0 67346 9 intrinsic to chloroplast outer membrane Located in the chloroplast outer membrane such that some covalently attached portion of the gene product, for example part of a peptide sequence or some other covalently attached group such as a GPI anchor, spans or is embedded in one or both leaflets of the membrane. 88757 0 0 67347 9 condensed nuclear chromosome outer kinetochore The region of a condensed nuclear chromosome kinetochore most external to centromeric DNA; this outer region mediates kinetochore-microtubule interactions. 88758 0 0 67348 9 main axon The main axonal trunk, as opposed to the collaterals. 88760 0 0 67349 9 meiotic chromosome (obsolete GO:0005711) OBSOLETE. A chromosome involved in the process of meiosis. 88762 1 0 67350 9 synaptic cleft The narrow gap that separates the presynaptic and postsynaptic membranes, into which neurotransmitter is released. 88763 0 0 67351 9 cytoplasmic dynein intermediate light chain (obsolete GO:0001689) OBSOLETE (was not defined before being made obsolete). 88765 1 0 67352 9 trans-Golgi network transport vesicle membrane The lipid bilayer surrounding a vesicle transporting substances between the trans-Golgi network and other parts of the cell. 88766 0 0 67353 9 exon-exon junction complex A multi-subunit complex deposited by the spliceosome upstream of messenger RNA exon-exon junctions. The exon-exon junction complex provides a binding platform for factors involved in mRNA export and nonsense-mediated mRNA decay. 88767 0 0 67354 9 cysteine synthase complex Cysteine synthase is a multienzyme complex made up, in E. coli, of the heteromeric hexamer serine acetyltransferase and the homodimer O-acetylserine (thiol)-lyase A. 88770 0 0 67355 9 aminoacyl-tRNA synthetase multienzyme complex A multienzyme complex found in all multicellular eukaryotes composed of eight proteins with aminoacyl-tRNA synthetase activities (abbreviated as: ArgRS, AspRS, GluProRS, GlnRS, IleRS, LeuRS, LysRS, MetRS where RS is the enzyme, preceded by the amino acid it uses as a substrate) as well as three non-synthetase proteins (p43, p38, and p18) with diverse functions. Several of these subunits are known dimers, so the total polypeptide count in the multisynthetase complex is at least fifteen. All of the enzymes in this assembly catalyze the same reaction, the covalent attachment of an amino acid to either the 2'- or 3'-hydroxyl of the 3'-terminal adenosine of tRNA, but using different substrates. 88772 0 0 77136 56 protocol type \N 210039 0 0 67356 9 invertasome A complex formed by a recombinase, a regulatory protein, and the DNA sequences bound by each protein; catalyzes a reversible site-specific recombination reaction that results in the alternate expression of one or more genes in various contexts. 88774 0 0 67359 9 PSI associated light-harvesting complex I, LHCIb subcomplex A pigment protein complex that forms part of the photosystem I associated light-harvesting complex I; contains two proteins (usually about 20 kDa); has a fluorescence maximum of 730 nm. 88779 0 0 67360 9 proteasome storage granule A multisubunit proteasome complex that localizes in the cytoplasm as dot-like structures when cells are in a quiescent state. 88780 0 0 67361 9 RCAF complex A protein complex that facilitates the assembly of nucleosomes on to newly synthesized DNA. In Drosophila, the complex comprises ASF1 and histones H3 and H4. 88782 0 0 67362 9 FHL2-CREB complex A protein complex that contains CREB and FHL2, and is involved in transcriptional regulation. 88784 0 0 67363 9 periplasmic flagellum Flagellar filaments located in the periplasmic space; characterized in spirochetes, in which they are essential for shape and motility. Composed of a core surrounded by two sheath layers, the flagella rotate to allow migration of the cell through viscous media, which would not be possible using external flagella. 88785 0 0 67364 9 MHC class II protein complex A transmembrane protein complex composed of an MHC class II alpha and MHC class II beta chain, and with or without a bound peptide or polysaccharide antigen. 88788 0 0 67365 9 PAN complex A complex that possesses poly(A)-specific ribonuclease activity; catalyzes the message-specific shortening of mRNA poly(A) tails. Contains at least two subunits, known as Pan2p and Pan3p in Saccharomyces. 88789 0 0 67366 9 alphav-beta1 integrin-osteopontin complex A protein complex that consists of an alphav-beta1 integrin complex bound to osteopontin. 88791 0 0 67367 9 laminin-4 complex A laminin complex composed of alpha2, beta2 and gamma1 polypeptide chains. 88793 0 0 67368 9 inter-Golgi transport vesicle A vesicle that mediates transport of cargo within the Golgi complex (for example, between cisternae of the Golgi stack). 88794 0 0 67369 9 UDP-N-acetylglucosamine-lysosomal-enzyme N-acetylglucosaminephosphotransferase complex A protein complex that possesses UDP-N-acetylglucosamine-lysosomal-enzyme N-acetylglucosaminephosphotransferase activity; the bovine complex contains disulfide-linked homodimers of 166- and 51-kDa subunits and two identical, noncovalently associated 56-kDa subunits. 88796 0 0 67370 9 inaD signaling complex A complex of proteins that are involved in phototransduction and attached to the transient receptor potential (TRP) channel. The protein connections are mediated through inaD. 88798 0 0 67371 9 protocadherin-alpha-v4-protocadherin-gamma-a1 complex A protein complex that contains the cell adhesion molecules protocadherin-alpha-v4 and protocadherin-gamma-a1, and is involved in the regulation of protein localization to the plasma membrane. 88801 0 0 67372 9 SWI/SNF complex A SWI/SNF-type complex that contains nine or more proteins, including both conserved (core) and nonconserved components; the Swi2/Snf2 ATPase is one of the core components. 88802 0 0 67373 9 insulin-like growth factor binding protein complex A complex of proteins which includes the insulin-like growth factor (IGF) and a number of IGF-binding proteins. The complex plays a role in growth and development. 88803 0 0 67374 9 nascent polypeptide-associated complex A heterodimeric protein complex that can reversibly bind to ribosomes, and is located in direct proximity to newly synthesized polypeptide chains as they emerge from the ribosome. 88804 0 0 67375 9 nuclear cap binding complex A conserved heterodimeric protein complex that binds to the 5' terminal cap structure m7G(5')ppp(5')N of nascent eukaryotic RNA polymerase II transcripts such as pre-mRNA and U snRNA. The consists of proteins known as CBP20 and CBP80, binds to cap structures in the nucleus, and is involved in pre-mRNA splicing, 3'-end formation, and RNA nuclear export. 88807 0 0 67376 9 ISW1 complex A protein complex that contains an ISWI-family ATPase such as Saccharomyces Isw1p, and acts to modify chromatin structure. 88809 0 0 67377 9 macropinocytic cup A cell projection that forms at the site of macropinocytosis, a form of endocytosis that results in the uptake of relatively large amounts of extracellular fluid. The macropinocytic cup membrane selectively excludes certain proteins, such as H36 or PM4C4 in Dictyostelium, and the underlying cytoskeleton is enriched in F-actin and coronin. 88811 0 0 67378 9 rough endoplasmic reticulum membrane The lipid bilayer surrounding the rough endoplasmic reticulum. 88815 0 0 67379 9 Golgi cis cisterna The Golgi cisterna closest to the endoplasmic reticulum; the first processing compartment through which proteins pass after export from the ER. 88816 0 0 67380 9 hexameric IgM immunoglobulin complex A circulating form of IgM consisting of a hexamer of IgM core units with a single J chain polypeptide. 88817 0 0 67381 9 cell hair A long, thin cell projection that contains F-actin and tubulin, with microtubules centrally located and F-actin peripherally located. 88818 0 0 67382 9 HslUV protease complex A protein complex that possesses ATP-dependent protease activity; consists of an ATPase large subunit with homology to other Clp family ATPases and a peptidase small subunit related to the proteasomal beta-subunits of eukaryotes. In the E. coli complex, six identical subunits of both the ATPase, ClpY, and the protease, ClpQ, self-assemble into an oligomeric ring, and two rings of each subunit, two ClpQ rings surrounded by single ClpY rings, form a dumbbell-shaped complex. 88820 0 0 67383 9 endosomal scaffold complex A protein complex that contains MAPKSP1 (MP1, Map2k1ip1) and ROBLD3 (p14, Mapbpip), is anchored to late endosomes, and is involved in selective activation of the ERK1 in ERK/MAPK signaling. 88822 0 0 67384 9 cyanelle thylakoid membrane The lipid bilayer membrane of any thylakoid within a cyanelle. 88826 0 0 67385 9 oligosaccharyltransferase I complex An oligosaccharyltransferase (OST) complex that contains at least seven polypeptides and is the major OST complex in mammalian cells. Of the three forms of mammalian OST complex identified, the OSTI complex has the weakest affinity for ribosomes. 88827 0 0 67386 9 dihydrolipoyl dehydrogenase complex (obsolete GO:0009352) OBSOLETE. Complex that possesses dihydrolipoyl dehydrogenase activity. 88828 1 0 67387 9 organelle envelope lumen The region between the inner and outer lipid bilayers of an organelle envelope. 88829 0 0 67388 9 B cell receptor accessory molecule complex (obsolete GO:0019816) OBSOLETE (was not defined before being made obsolete). 88830 1 0 67479 9 proplastid nucleoid The region of a proplastid to which the DNA is confined. 88967 0 0 67389 9 syntrophin complex A protein complex that includes alpha-, beta1-, beta2-syntrophins and syntrophin-like proteins; the syntrophin complex binds to the second half of the carboxy-terminal domain of dystrophin; also associates with neuronal nitric oxide synthase. 88831 0 0 67390 9 mitochondrial degradosome A mitochondrial protein complex with 3' to 5' exoribonuclease activity that participates in intron-independent turnover and processing of mitochondrial transcripts. In humans, the mitochondrial degradosome is a pentameric complex, and in yeast it exists as a heterodimer. 88832 0 0 67391 9 mitotic septin complex A heterooligomeric septin complex that acts during mitotic cell division. 88835 0 0 67392 9 Myb complex A multisubunit complex consisting of Myb and other proteins that regulates site specific DNA replication, gene amplification and transcriptional repression. 88836 0 0 67393 9 ISWI complex Any chromatin remodeling complex that contains an ATPase subunit of the ISWI family. 88839 0 0 67394 9 actomyosin contractile ring A cytoskeletal structure composed of actin filaments and myosin that forms beneath the plasma membrane of many cells, including animal cells and yeast cells, in a plane perpendicular to the axis of the spindle, i.e. the cell division plane. Ring contraction is associated with centripetal growth of the membrane that divides the cytoplasm of the two daughter cells. In animal cells, the contractile ring is located inside the plasma membrane at the location of the cleavage furrow. In budding fungal cells, e.g. mitotic S. cerevisiae cells, the contractile ring forms beneath the plasma membrane at the mother-bud neck before mitosis. 88840 0 0 67395 9 eukaryotic translation initiation factor 3 complex, eIF3m An eukaryotic translation initiation factor 3 complex that contains the PCI-domain protein eIF3m. 88843 0 0 67396 9 TRAMP complex A multiprotein complex having distributive polyadenylation activity of a variety of RNA substrates including hypomodified and incorrectly folded tRNAs, pre-snRNAs, pre-snoRNAs, incorrectly spliced or processed pre-mRNAs, cryptic unstable transcripts (CUTs), pre-rRNAs and rRNA fragments released as part of rRNA processing. In S. cerevisiae, the complex consists of either Pap2 (also known as Trf4) or Trf5, Air1 or Air2, and Mtr4, and is involved in RNA 3'-end processing and in RNA surveillance and quality control. 88844 0 0 67397 9 centromeric heterochromatin A region of heterochromatin located near the centromere of a chromosome. 88846 0 0 67398 9 female germ cell nucleus The nucleus of the female germ cell, a reproductive cell in females. 88848 0 0 67399 9 Rpd3S complex A eukaryotically conserved histone deacetylase complex which deacetylates histones preferentially in promoter regions. Composed of a catalytic histone deacetylase subunit, a chromodomain protein, a SIN3 family co-repressor, and a WD repeat protein (Clr6p, Alp13p, Pst2p, and Prw1p respectively in Schizosaccharomyces; Rpd3p, Sin3p, Ume1p, Rco1p and Eaf3 in Saccharomyces; homologs thereof in other species). 88851 0 0 67400 9 gamma-tubulin ring complex A multiprotein complex composed of gamma-tubulin and other non-tubulin proteins that forms a flexible open ring structure thought to be the unit of nucleation at the minus end of a microtubule. 88855 0 0 67401 9 alphav-beta6 integrin complex An integrin complex that comprises one alphav subunit and one beta6 subunit. 88856 0 0 67402 9 nuclear meiotic cohesin complex A cohesin complex that mediates sister chromatid cohesion in the nucleus during meiosis; has a subunit composition distinct from that of the meiotic cohesin complex. 88857 0 0 67403 9 fibrinogen gamma chain (obsolete GO:0005974) OBSOLETE (was not defined before being made obsolete). 88858 1 0 67404 9 mitochondrial derivative The major and minor mitochondrial derivatives are the mitochondria of the sperm tail and derive by the unfolding of the Nebenkern during flagellum elongation. 88860 0 0 67405 9 capsomere Any of the protein subunits that comprise the closed shell or coat (capsid) of certain viruses. 88861 0 0 67406 9 Maurer's cleft A disk-like structure that appears at the periphery of a red blood cell infected by an apicomplexan parasite, characterized by a translucent lumen and an electron-dense coat of variable thickness; often appears to be tethered to the host cell membrane by fibrous connections with the erythrocyte cytoskeleton. 88862 0 0 67407 9 intrinsic to endoplasmic reticulum membrane Located in the endoplasmic reticulum membrane such that some covalently attached portion of the gene product, for example part of a peptide sequence or some other covalently attached group such as a GPI anchor, spans or is embedded in one or both leaflets of the membrane. 88864 0 0 67408 9 mitochondrial inner membrane presequence translocase complex The protein transport machinery of the mitochondrial inner membrane that contains three essential Tim proteins: Tim17 and Tim23 are thought to build a preprotein translocation channel while Tim44 interacts transiently with the matrix heat-shock protein Hsp70 to form an ATP-driven import motor. 88865 0 0 67409 9 glial fibrillary acidic protein (obsolete GO:0045101) OBSOLETE. Glial fibrillary acidic protein forms filaments in the glial cells that surround neurons and in astrocytes. 88867 1 0 67410 9 lysosomal membrane The lipid bilayer surrounding the lysosome and separating its contents from the cell cytoplasm. 88868 0 0 67411 9 chloroplast ADPG pyrophosphorylase complex An ADPG pyrophosphorylase complex found in the chloroplast. 88869 0 0 67412 9 platelet dense granule Electron-dense granule occurring in blood platelets that stores and secretes adenosine nucleotides and serotonin. They contain a highly condensed core consisting of serotonin, histamine, calcium, magnesium, ATP, ADP, pyrophosphate and membrane lysosomal proteins. 88870 0 0 67413 9 autosome Any chromosome other than a sex chromosome. 88872 0 0 67414 9 yolk plasma Discrete structures that partition the water-soluble portion of the yolk of oocytes and ova, which may or may not be membrane enclosed. 88873 0 0 67415 9 nuclear mitotic chromosome (obsolete GO:0000230) OBSOLETE. A chromosome found in the nucleus during mitosis. 88875 1 0 67416 9 organelle inner membrane The inner, i.e. lumen-facing, lipid bilayer of an organelle envelope; usually highly selective to most ions and metabolites. 88876 0 0 67417 9 symmetric synapse A type of synapse occurring primarily on dendrite shafts and neuronal cell bodies. Symmetric synapses involve axons containing clusters of predominantly flattened or elongated vesicles and do not contain a prominent postsynaptic density. 88877 0 0 67803 9 smooth muscle contractile fiber The contractile fiber of smooth muscle cells. 89436 0 0 67480 9 clathrin sculpted vesicle A clathrin sculpted lipid bilayer membrane-enclosed vesicle after clathrin release. 88968 0 0 76524 36 backcross population \N 209421 0 0 67418 9 ER membrane insertion complex A protein complex that is involved in the post-translational delivery of tail-anchored (TA) membrane proteins to the endoplasmic reticulum. TA membrane proteins, also called type II transmembrane proteins, contain a single C-terminal transmembrane region. Some ER membrane insertion complex subunits are conserved between different species such as mammals and budding yeast. 88878 0 0 67419 9 clathrin-coated endocytic vesicle membrane The lipid bilayer surrounding a clathrin-coated endocytic vesicle. 88880 0 0 67420 9 clathrin sculpted monoamine transport vesicle lumen The volume enclosed by the membrane of the clathrin sculpted monoamine transport vesicle. 88881 0 0 67421 9 alphaV-beta3 integrin-NOV complex A protein complex that consists of an alphaV-beta3 integrin complex bound to the extracellular matrix protein NOV. 88882 0 0 67422 9 sarcoplasmic reticulum membrane The lipid bilayer surrounding the sarcoplasmic reticulum. 88884 0 0 67423 9 DNA-directed RNA polymerase I complex RNA polymerase I, one of three nuclear DNA-directed RNA polymerases found in all eukaryotes, is a multisubunit complex; typically it produces rRNAs. Two large subunits comprise the most conserved portion including the catalytic site and share similarity with other eukaryotic and bacterial multisubunit RNA polymerases. The remainder of the complex is composed of smaller subunits (generally ten or more), some of which are also found in RNA polymerase III and others of which are also found in RNA polymerases II and III. Although the core is competent to mediate ribonucleic acid synthesis, it requires additional factors to select the appropriate template. 88885 0 0 67424 9 sphere organelle A nuclear body that is found in the germinal vesicles of amphibian oocytes, and consist of three major parts: a remarkably spherical body about 5-10 pm in diameter, smaller spherical or nearly spherical granules on the surface, and inclusions of various sizes that strongly resemble the surface granules. The parts of the sphere organelle have distinct compositions, including splicing snRNAs and proteins. 88886 0 0 67425 9 pre-autophagosomal structure membrane A cellular membrane associated with the pre-autophagosomal structure. 88889 0 0 67426 9 cellular bud neck split septin rings Two separate septin rings that are formed from the septin collar at the time of cytokinesis in cells that divide by budding. These two rings are thought to delineate a special compartment in which factors involved in cytokinesis are concentrated. 88892 0 0 69699 13 fruit dehiscence zone A dehiscence zone that is part of a fruit. 91892 0 0 67428 9 mitochondrial intermembrane space protein transporter complex Soluble complex of the mitochondrial intermembrane space composed of various combinations of small Tim proteins; acts as a protein transporter to guide proteins to the Tim22 complex for insertion into the mitochondrial inner membrane. 88894 0 0 67429 9 alpha5-beta1 integrin-tissue transglutaminase complex A protein complex that consists of an alpha5-beta1 integrin complex bound to tissue transglutaminase. 88896 0 0 67430 9 lateral loop Non-compact myelin located adjacent to the nodes of Ranvier in a myelin segment. These non-compact regions include cytoplasm from the cell responsible for synthesizing the myelin. Lateral loops are found in the paranodal region adjacent to the nodes of Ranvier, while Schmidt-Lantermann clefts are analogous structures found within the compact myelin internode. 88897 0 0 67431 9 BAT3 complex An ER membrane insertion complex that acts by facilitating tail-anchored protein capture by ASNA1/TRC40. In mammals the complex contains Bat3, TRC35 and Ubl4A. 88898 0 0 67432 9 elaioplast stroma The space enclosed by the double membrane of an elaioplast. 88899 0 0 67433 9 stromule Thin filamentous structure extending from the surface of all plastid types examined so far, including chloroplast, proplastid, etioplast, leucoplast, amyloplast, and chromoplast. In general, stromules are more abundant in tissues containing non-green plastids, and in cells containing smaller plastids. The primary function of stromules is still unresolved, although the presence of stromules markedly increases the plastid surface area, potentially increasing transport to and from the cytosol. Other functions of stromules, such as transfer of macromolecules between plastids and starch granule formation in cereal endosperm, may be restricted to particular tissues and cell types. 88900 0 0 67434 9 anchoring junction A cell junction that mechanically attaches a cell (and its cytoskeleton) to neighboring cells or to the extracellular matrix. 88904 0 0 67435 9 tripartite ATP-independent periplasmic transporter complex A complex consisting of two membrane proteins and one extracytoplasmic solute receptor. Such transporters transport a variety of substrates without direct ATP power, instead using energy from ion gradients. 88905 0 0 67436 9 condensed chromosome inner kinetochore The region of a condensed chromosome kinetochore closest to centromeric DNA; in mammals the CREST antigens (CENP proteins) are found in this layer; this layer may help define underlying centromeric chromatin structure and position of the kinetochore on the chromosome. 88906 0 0 67437 9 pigment granule A small, subcellular membrane-bounded vesicle containing pigment and/or pigment precursor molecules. Pigment granule biogenesis is poorly understood, as pigment granules are derived from multiple sources including the endoplasmic reticulum, coated vesicles, lysosomes, and endosomes. 88908 0 0 67438 9 meiotic recombination initiation complex A protein complex that initiates the formation of double-strand breaks (DSBs) required for meiotic recombination. Consists of a protein that catalyses formation of the double-strand breaks (Spo11 in S. cerevisiae and Rec12 in S. pombe), and a number of accessory proteins. 88909 0 0 67439 9 polar ring of apical complex An electron dense ring at the most anterior position of the apical complex, from which the conoid fibers originate; formed during an invasive life cycle stage of an apicomplexan parasite. 88913 0 0 67440 9 type I intermediate filament associated protein (obsolete GO:0001722) OBSOLETE. Low molecular weight (10-45 kDa) proteins that associate with intermediate filaments by lateral binding of the filaments and have the effect of creating tight macrofilament aggregates. 88914 1 0 67441 9 MIS12/MIND type complex A multiprotein kinetochore subcomplex that binds to centromeric chromatin and forms part of the inner kinetochore. It helps to recruit outer kinetochore subunits that will bind to microtubules. In humans, it consists of MIS12, DSN1, NSL1 and PMF1. 88915 0 0 67535 9 NOXA-BCL-xl complex A heterodimeric protein complex consisting of NOXA and BCL-xl, members of the Bcl-2 family of anti- and proapoptotic regulators. 89048 0 0 67442 9 acetate CoA-transferase complex A heterotetrameric enzyme complex made up of two alpha subunits and two beta subunits. Part of the acetyl-CoA carboxylase complex. Catalyzes the transfer of a carboxyl group to form malonyl-CoA. 88917 0 0 67443 9 sucrase-isomaltase complex A protein complex that possesses oligo-1,6-glucosidase activity; the complex is a heterodimer located in the cell membrane, and is formed by proteolytic cleavage of a single precursor polypeptide. The two subunits have different substrate specificities. 88920 0 0 67444 9 anaphase-promoting complex A ubiquitin ligase complex that degrades mitotic cyclins and anaphase inhibitory protein, thereby triggering sister chromatid separation and exit from mitosis. Substrate recognition by APC occurs through degradation signals, the most common of which is termed the Dbox degradation motif, originally discovered in cyclin B. 88922 0 0 67445 9 external side of cell wall The side of the cell wall that is opposite to the side that faces the cell and its contents. 88924 0 0 67446 9 endospore coat The layer in a bacterial endospore that lies under the exosporium, and is impermeable to many toxic molecules. The coat may also contain enzymes that are involved in endospore germination. 88925 0 0 67447 9 sex chromosome A chromosome involved in sex determination. 88926 0 0 67448 9 E.F.G complex A protein complex that comprises three core spliceosomal proteins, designated E, F, and G. Formation of the E.F.G complex is essential but not sufficient for the formation of a stable U1 snRNP complex. 88927 0 0 67449 9 gamma-tubulin small complex A complex usually comprising two gamma-tubulin molecules and two conserved non-tubulin proteins. Some gamma-tubulin small complexes are thought to be the repeating unit making up the core of the gamma-tubulin ring complex. 88929 0 0 67451 9 activin receptor complex A protein complex that acts as an activin receptor. Heterodimeric activin receptors, comprising one Type I activin receptor and one Type II receptor polypeptide, and heterotrimeric receptors have been observed. 88932 0 0 67452 9 plasma membrane respiratory chain A respiratory chain located in the plasma membrane of a cell; made up of the protein complexes that form the mitochondrial electron transport system (the respiratory chain), associated with the plasma membrane. The respiratory chain complexes transfer electrons from an electron donor to an electron acceptor and are associated with a proton pump to create a transmembrane electrochemical gradient. 88934 0 0 67996 9 cytostome Stable, specialized structure for the ingestion of food by the cell into phagosomes. 89715 0 0 67456 9 apical complex A group of cytoskeletal structures and associated membrane-bounded organelles found at the anterior end of adult obligate intracellular protozoan parasites in the phylum Apicomplexa. The apical complex is involved in attachment to and penetration of the host cell, and in parasite proliferation. 88938 0 0 67457 9 alphaV-beta3 integrin-LPP3 complex A protein complex that consists of an alphaV-beta3 integrin complex bound to lipid phosphate phosphohydrolase-3. 88939 0 0 67458 9 germ tube septin ring A tight ring-shaped structure that forms in the division plane within the germ tube of filamentous fungi at sites where a septum will form; composed of septins as well as septin-associated proteins. 88940 0 0 67459 9 Golgi-vacuole transport vesicle (obsolete GO:0005809) OBSOLETE (was not defined before being made obsolete). 88941 1 0 67460 9 neuronal cell body membrane The plasma membrane of a neuron cell body - excludes the plasma membrane of cell projections such as axons and dendrites. 88942 0 0 67461 9 type II polyketide synthase complex A polyketide synthase complex that consists of several different polypeptide chains, each of which catalyzes a single reaction. 88943 0 0 67462 9 membrane attack complex protein alphaM chain (obsolete GO:0005580) OBSOLETE (was not defined before being made obsolete). 88944 1 0 67463 9 spherical high-density lipoprotein particle A mature high-density lipoprotein (HDL) particle, converted from discoidal HDL particles following the esterification of cholesterol in the particle by phosphatidylcholine-sterol O-acyltransferase (lecithin cholesterol acyltransferase; LCAT). 88945 0 0 67464 9 chromatin The ordered and organized complex of DNA, protein, and sometimes RNA, that forms the chromosome. 88946 0 0 67465 9 protein-carbohydrate complex A macromolecular complex containing both protein and carbohydrate molecules. 88948 0 0 67466 9 recycling endosome membrane The lipid bilayer surrounding a recycling endosome. 88949 0 0 67467 9 imidazoleglycerol-phosphate synthase complex Complex that possesses imidazoleglycerol-phosphate synthase activity. 88950 0 0 67468 9 extrinsic to endosome membrane Loosely bound to one surface of the endosome membrane, but not integrated into the hydrophobic region. 88951 0 0 67469 9 organelle Organized structure of distinctive morphology and function. Includes the nucleus, mitochondria, plastids, vacuoles, vesicles, ribosomes and the cytoskeleton, and prokaryotic structures such as anammoxosomes and pirellulosomes. Excludes the plasma membrane. 88952 0 0 67470 9 endoplasmic reticulum exit site An endoplasmic reticulum part at which COPII-coated vesicles are produced. 88953 0 0 67471 9 zeta DNA polymerase complex A heterodimeric DNA polymerase complex that catalyzes error-prone DNA synthesis in contexts such as translesion synthesis and double-stranded break repair. First characterized in Saccharomyces, in which the subunits are Rev3p and Rev7p; a third protein, Rev1p, is often associated with the polymerase dimer. 88956 0 0 67472 9 P4 peroxisome A subform of peroxisome that corresponds to an intermediate in a peroxisome assembly pathway, which operates by conversion of peroxisomal subforms in the direction P1, P2 -> P3 -> P4 -> P5 -> P6. P4 peroxisomes are distinguished from the other subforms on the bases of buoyant density and protein content. 88959 0 0 67473 9 BAD-BCL-xl complex A heterodimeric protein complex consisting of BAD and BCL-xl, members of the Bcl-2 family of anti- and proapoptotic regulators. 88960 0 0 67536 9 ectoplasm Granule free cytoplasm, lying immediately below the plasma membrane. 89049 0 0 67474 9 azurophil granule lumen The volume enclosed by the membrane of an azurophil granule, a primary lysosomal granule found in neutrophil granulocytes that contains a wide range of hydrolytic enzymes and is released into the extracellular fluid. 88961 0 0 67475 9 telomeric heterochromatin Heterochromatic regions of the chromosome found at the telomeres. 88962 0 0 67476 9 invadopodium membrane The portion of the plasma membrane surrounding an invadopodium. 88963 0 0 67477 9 Pwp2p-containing subcomplex of 90S preribosome A protein complex that forms a subcomplex of the 90S preribosome and can interact directly with the 5' External Transcribed Spacer (ETS) of the full length pre-rRNA transcript. In S. cerevisiae, it sediments at 25-30 S and is composed of Pwp2p, Dip2p, Utp21p, Utp13p, Utp18p, and Utp6p. 88964 0 0 76525 36 f2 population \N 209422 0 0 67481 9 collagen type II A collagen homotrimer of alpha1(II) chains; type II collagen triple helices associate to form fibrils. 88969 0 0 67482 9 3-methylcrotonyl-CoA carboxylase complex, mitochondrial A heterodimeric complex having 3-methylcrotonyl-CoA carboxylase activity. The alpha subunit has a covalently bound biotin essential for the ATP-dependent carboxylation. The beta subunit possess carboxyltransferase activity which presumably is essential for binding to 3-methylcrotonyl-CoA. 88970 0 0 67483 9 endoplasmic reticulum-Golgi intermediate compartment A complex system of membrane-bounded compartments located between endoplasmic reticulum (ER) and the Golgi complex, with a distinctive membrane protein composition; involved in ER-to-Golgi transport. 88972 0 0 67484 9 plasma membrane fumarate reductase complex A membrane-bound flavoenzyme complex consisting of four subunits, A, B, C, and D. A and B comprise the membrane-extrinsic catalytic domain and C (InterPro:IPR003510; InterPro:IPR00224) and D (InterPro:IPR003418) link the catalytic centers to the electron-transport chain. In some species, the complex has only three subunits, and in these cases, there is only one membrane anchor instead of two. This family consists of the 13 kDa hydrophobic subunit D. This component may be required to anchor the catalytic components of the fumarate reductase complex to the cytoplasmic membrane. Fumarate reductase couples the reduction of fumarate to succinate to the oxidation of quinol to quinone, in a reaction opposite to that catalyzed by the related complex II of the respiratory chain (succinate dehydrogenase-(ubiquinone)). Examples of this component are found in Bacterial species. 88973 0 0 67485 9 nuclear periphery The portion of the nuclear lumen proximal to the inner nuclear membrane. 88974 0 0 75497 19 validated An attribute to describe a feature that has been proven. 98898 0 0 67486 9 UDP-N-acetylglucosamine transferase complex A multienzyme, heterooligomeric complex involved in dolichyl-linked oligosaccharide synthesis. In yeast the complex is composed of Alg7p, which catalyzes the first step (GlcNAc1-PP-Dol from dolichol-phosphate and UDP-GlcNAc), and Alg13p plus Alg14p, the catalytic and anchoring subunits respectively, which together catalyze the second step (GlcNAc2-PP-dolichol from GlcNAc1-PP-Dol and UDP-GlcNAc) of dolichyl-linked oligosaccharide synthesis. 88975 0 0 67487 9 Set3 complex A histone deacetylase complex that is involved in transcriptional regulation. In S. cerevisiae, this complex consists of Set3p, Snt1p, Hos4p, Sif2p, Cpr1p, Hos2p, and Hst1p. 88977 0 0 67488 9 insulin control element activator complex Transcription factor complex that binds to the insulin control element (ICE), a DNA sequence element found within the 5'-flanking region of the insulin gene, and activates ICE-mediated transcription. 88979 0 0 67489 9 cell surface The external part of the cell wall and/or plasma membrane. 88981 0 0 67490 9 TEAD-4-YAP complex A transcription factor complex that is composed of the DNA biding protein TEAD-4 and the transcriptional coactivator YAP. 88984 0 0 67491 9 nuclear envelope lumen The region between the two lipid bilayers of the nuclear envelope; 20-40 nm wide. 88985 0 0 67492 9 post-spliceosomal complex A spliceosomal complex that is formed following the second splicing event and contains the spliced product, the excised intron, and three snRNPs, including U5. 88987 0 0 67493 9 major mitochondrial derivative The larger of the two mitochondrial derivatives that arise by the unfolding of the Nebenkern during flagellum elongation; the major mitochondrial derivative is ovoid and darker than the minor derivative. 88988 0 0 67494 9 cytosolic large ribosomal subunit The large subunit of a ribosome located in the cytosol. 88990 0 0 67495 9 Kv4.2-KChIP4 channel complex A voltage-gated potassium channel complex that contains the Kv channel interacting protein KChIP4 associated with the channel via interaction with the Kv alpha subunit 4.2. 88995 0 0 67496 9 alpha9-beta1 integrin-thrombospondin-1 complex A protein complex that consists of an alpha9-beta1 integrin complex bound to thrombospondin-1. 88996 0 0 67497 9 other organism part Any constituent part of a secondary organism with which the first organism is interacting. 88998 0 0 67498 9 laminin-6 complex A laminin complex composed of alpha3, beta1 and gamma1 polypeptide chains. 88999 0 0 67499 9 multipartite viral genome A segmented viral genome consisting of more than three sub-genomic nucleic acids but each nucleic acid is packaged into a different virion. 89000 0 0 67500 9 PSI associated light-harvesting complex I Protein-pigment complex associated with photosystem I. 89001 0 0 67501 9 Grb2-SHP-2 complex A protein complex that contains the receptor adaptor proteins Grb2 and SHP-2, and is involved signaling via the PDGFR signaling pathway. 89002 0 0 67502 9 mitochondrial proton-transporting ATP synthase, stator stalk One of two stalks that connect the catalytic core of the hydrogen-transporting ATP synthase to the mitochondrial membrane-associated F0 proteins; is thought to prevent futile rotation of the catalytic core. 89003 0 0 67503 9 pyruvate dehydrogenase (lipoamide) phosphatase complex A complex of a regulatory and catalytic subunit that catalyzes the dephosphorylation and concomitant reactivation of the alpha subunit of the E1 component of the pyruvate dehydrogenase complex. 89004 0 0 67504 9 collagen type XII A collagen homotrimer of alpha1(XII) chains; type XII collagen triple helices may link sheet-forming or fibrillar collagens to other structures. 89006 0 0 67505 9 type III intermediate filament A type of intermediate filament, typically made up of one or more of the proteins vimentin, desmin, glial fibrillary acidic protein (GFAP), and peripherin. Unlike the keratins, the type III proteins can form both homo- and heteropolymeric IF filaments. 89007 0 0 67506 9 trailing edge The area of a motile cell opposite to the direction of movement. 89008 0 0 67507 9 translation initiation ternary complex A ribonucleoprotein complex that contains aminoacylated initiator methionine tRNA, GTP, and initiation factor 2 (either eIF2 in eukaryotes, or IF2 in prokaryotes). In prokaryotes, fMet-tRNA (initiator) is used rather than Met-tRNA (initiator). 89009 0 0 67508 9 ER proteasome regulatory particle, lid subcomplex The subunits that form the peripheral lid of the regulatory particle of a proteasome located in the endoplasmic reticulum of a cell. 89010 0 0 67509 9 germ cell nucleus The nucleus of a germ cell, a reproductive cell in multicellular organisms. 89011 0 0 67510 9 IgA B cell receptor complex An IgA immunoglobulin complex that is present in the plasma membrane of B cells and is composed of two identical immunoglobulin heavy chains of an IgA isotype and two identical immunoglobulin light chains and a signaling subunit, a heterodimer of the Ig-alpha and Ig-beta proteins. 89013 0 0 67511 9 mitotic checkpoint complex A multiprotein complex that functions as a mitotic checkpoint inhibitor of the anaphase-promoting complex/cyclosome (APC/C). In budding yeast this complex consists of Mad2p, Mad3p, Bub3p and Cdc20p, and in mammalian cells it consists of MAD2, BUBR1, BUB3, and CDC20. 89014 0 0 67512 9 intrinsic to external side of plasma membrane Located in the plasma membrane such that some covalently attached portion of the gene product, for example part of a peptide sequence or some other covalently attached group such as a GPI anchor, spans or is embedded in one or both leaflets of the membrane, with the bulk of the gene product located on the side opposite to the side that faces the cytoplasm. 89019 0 0 67513 9 NatC complex A conserved complex that catalyzes the transfer of an acetyl group to the N-terminal residue of a protein acceptor molecule that has a Met-Ile, Met-Leu, Met-Trp, or Met-Phe N-terminus. In Saccharomyces the complex includes Mak3p, Mak10p, and Mak31p. 89020 0 0 67514 9 host cell PML body A nuclear body that reacts against SP100 auto-antibodies (PML = promyelocytic leukemia) located within a cell of a host organism. 89021 0 0 67515 9 outer acrosomal membrane The acrosomal membrane region that underlies the plasma membrane of the sperm. This membrane fuses with the sperm plasma membrane as part of the acrosome reaction. 89022 0 0 67516 9 Mad-Max complex A transcriptional repressor complex that consists of a heterodimer of the bHLH-ZIP proteins Mad and Max. 89023 0 0 69853 13 primary root elongation zone A root elongation zone that is part of a primary root tip. 92078 0 0 67517 9 host cell chloroplast thylakoid membrane Any sac-like membranous structures (cisternae) in a chloroplast found in host cells, combined into stacks (grana) and present singly in the stroma (stroma thylakoids or frets) as interconnections between grana. The host is defined as the larger of the organisms involved in a symbiotic interaction. 89025 0 0 67518 9 RC-1 DNA recombination complex A protein complex that contains DNA ligase III, DNA polymerase epsilon, a 5'-3' exonuclease, and the SMC1 and SMC2 proteins, and is involved in recombinational repair of deletions and gaps in DNA. 89026 0 0 67519 9 anchoring collagen Any collagen polymer which links one collagen assembly, such as a collagen fibril or sheet, to other structures. 89029 0 0 67520 9 cyanelle stroma The space enclosed by the double membrane of a cyanelle. 89030 0 0 67521 9 myofibril The contractile element of skeletal and cardiac muscle; a long, highly organized bundle of actin, myosin, and other proteins that contracts by a sliding filament mechanism. 89031 0 0 67522 9 cyclin-dependent protein kinase holoenzyme complex Cyclin-dependent protein kinases (CDKs) are heterodimeric enzymes that contain a kinase catalytic subunit associated with a regulatory cyclin partner. 89032 0 0 67523 9 small ribosomal subunit The smaller of the two subunits of a ribosome. 89034 0 0 67524 9 alpha4-beta1 integrin-paxillin complex A protein complex that consists of an alpha4-beta1 integrin complex bound to paxillin. 89035 0 0 67525 9 prepilin peptidase complex (obsolete GO:0009367) OBSOLETE. An enzyme complex that catalyzes the cleavage of a Gly-Phe bond to release an N-terminal, basic peptide of 5-8 residues from type IV prepilin, and then N-methylates the new N-terminal amino group. 89037 1 0 67526 9 nuclear proteasome regulatory particle, lid subcomplex The subunits that form the peripheral lid of the regulatory particle of a proteasome located in the nucleus of a cell. 89038 0 0 67527 9 formate dehydrogenase complex An enzyme complex that catalyzes the dehydrogenation of formate to produce carbon dioxide (CO2). 89039 0 0 67528 9 glycine reductase complex Complex that possesses glycine reductase activity; usually comprises three subunits, of which two are selenoproteins; the subunits are typically designated selenoprotein A, selenoprotein B and protein C. 89040 0 0 67529 9 prospore septin ring A tight ring-shaped structure that forms in the division plane at the site of cytokinesis in a prospore; composed of septins as well as septin-associated proteins. 89042 0 0 67530 9 integral to thylakoid membrane Penetrating at least one phospholipid bilayer of a thylakoid membrane. May also refer to the state of being buried in the bilayer with no exposure outside the bilayer. 89043 0 0 67531 9 alphaX-beta2 integrin complex An integrin complex that comprises one alphaX subunit and one beta2 subunit. 89044 0 0 67532 9 plastid-encoded plastid RNA polymerase complex B A plastid-encoded DNA-directed RNA polymerase complex that resembles eubacterial multisubunit RNA polymerases with a core composed of alpha, beta, and beta-prime subunits. An additional subunit, a sigma factor, is required for promoter recognition. PEP-B is distinguished from PEP-A by its sensitivity to the antibiotic rifampicin. PEP-B is found in both etioplasts and chloroplasts, but is the predominate form in etioplasts. It forms the core of the PEP-A form; the conversion from PEP-B to PEP-A occurs during chloroplast maturation. 89045 0 0 67533 9 chromoplast membrane Either of the lipid bilayers that surround a chromoplast and form the chromoplast envelope. 89046 0 0 67534 9 tRNA-intron endonuclease complex A protein complex that catalyzes the endonucleolytic cleavage of pre-tRNA, producing 5'-hydroxyl and 2',3'-cyclic phosphate termini, and specifically removing the intron. 89047 0 0 67538 9 PCAF complex A large multiprotein complex that possesses histone acetyltransferase activity and is involved in regulation of transcription. The composition is similar to that of the SAGA complex, but includes fewer Spt and Ada proteins, and more TAFs. 89052 0 0 67539 9 plastid outer membrane The outer, i.e. cytoplasm-facing, lipid bilayer of the plastid envelope. 89053 0 0 67540 9 trailing edge membrane The portion of the plasma membrane surrounding the trailing edge of a motile cell. 89054 0 0 67541 9 BIM-BCL-2 complex A heterodimeric protein complex consisting of BIM and BCL-2, members of the Bcl-2 family of anti- and proapoptotic regulators. 89055 0 0 67542 9 hydrogenosomal membrane The lipid bilayer surrounding a hydrogenosome. 89056 0 0 67543 9 RISC-loading complex A trimeric ribonucleoprotein complex that and is required for the formation of a mature RNA induced silencing complex (RISC). In humans the complex is composed of the endonuclease Dicer (DICER1) and TRBP (TARBP2) in association with the Argonaute protein Ago2 (EIF2C2/AGO2). Within the complex, Dicer and TRBP are required to process precursor miRNAs (pre-miRNAs) to mature miRNAs and then load them onto Ago2. Ago2 bound to the mature miRNA constitutes the minimal RISC and may subsequently dissociate from Dicer and TRBP. 89057 0 0 67544 9 arbuscule Highly branched symbiont haustoria within host root cortex cells, responsible for nutrient exchange. 89059 0 0 67546 9 cell The basic structural and functional unit of all organisms. Includes the plasma membrane and any external encapsulating structures such as the cell wall and cell envelope. 89061 0 0 67547 9 synaptic membrane A specialized area of membrane on either the presynaptic or the postsynaptic side of a synapse, the junction between a nerve fiber of one neuron and another neuron or muscle fiber or glial cell. 89062 0 0 67548 9 organelle subcompartment A compartment that consists of a lumen and an enclosing membrane, and is part of an organelle. 89063 0 0 67549 9 intracellular immature spore A cell or part of the cell that constitutes an early developmental stage of a spore, a small reproductive body that is highly resistant to desiccation and heat and is capable of growing into a new organism, produced especially by certain bacteria, fungi, algae, and nonflowering plants. 89064 0 0 67550 9 DNA ligase III-XRCC1 complex A protein complex that contains DNA ligase III and XRCC1, and is involved in base excision repair. 89065 0 0 67577 9 cytosolic aryl hydrocarbon receptor complex An aryl hydrocarbon receptor complex found in the cytosol, in which the ligand-binding subunit AhR is not bound to ligand; consists of AhR, two molecules of HSP90, the protein kinase c-Src, and the immunophilin XAP2/AIP. 89113 0 0 67551 9 cyclin D3-CDK6 complex A protein complex consisting of cyclin D3 and cyclin-dependent kinase 6 (CDK6). Cyclins are characterized by periodicity in protein abundance throughout the cell cycle. Cyclin-dependent kinases represent a family of serine/threonine protein kinases that become active upon binding to a cyclin regulatory partner. 89068 0 0 67552 9 peripherin (obsolete GO:0045102) OBSOLETE. Peripherin is a type III intermediate filament protein found in neurons of the peripheral nervous system. 89069 1 0 67553 9 bacterial-type flagellum basal body, MS ring One of the rings of the flagellar basal body; a double-flanged ring that anchors the basal body to the cytoplasmic membrane. Examples of this component are found in bacteria. 89070 0 0 67554 9 kinesin II complex A complex consisting of two distinct motor subunits that form a heterodimer complexed with a third non-motor accessory subunit, the kinesin associated protein or KAP; the KIF3 heterodimer interacts via its C-terminal portion with KAP, which is thought to regulate the binding of the motor to cargo membranes. 89072 0 0 67555 9 host cell chloroplast part Any constituent part of a chloroplast as it is found in host cells and which are a chlorophyll-containing plastid with thylakoids organized into grana and frets, or stroma thylakoids, and embedded in a stroma. The host is defined as the larger of the organisms involved in a symbiotic interaction. 89073 0 0 67556 9 Ndc80 complex A protein complex conserved among eukaryotes that forms part of the kinetochore and plays an essential role in forming stable kinetochore-microtubule attachments. The complex contains proteins known in several species, including budding and fission yeasts, as Ndc80p, Nuf2p, Spc24p, and Spc25p. In vertebrates it is part of the outer plate of the kinetochore. 89074 0 0 67557 9 host cell wall The rigid or semi-rigid envelope lying outside the host cell membrane of plant, fungal, and most prokaryotic cells, maintaining their shape and protecting them from osmotic lysis. In plants it is made of cellulose and, often, lignin; in fungi it is composed largely of polysaccharides; in bacteria it is composed of peptidoglycan. 89077 0 0 67558 9 Ig heavy chain-bound endoplasmic reticulum chaperone complex A protein complex that is located in the endoplasmic reticulum (ER) and is formed by the association of an immunoglobulin heavy chain with the proteins of the ER chaperone complex; the latter include BiP, GRP94; CaBP1, protein disulfide isomerase (PDI), ERdj3, cyclophilin B, ERp72, GRP170, UDP-glucosyltransferase, and SDF2-L1. 89078 0 0 67559 9 dendritic spine membrane The portion of the plasma membrane surrounding a dendritic spine. 89079 0 0 67560 9 neurofilament cytoskeleton Intermediate filament cytoskeletal structure that is made up of neurofilaments. Neurofilaments are specialized intermediate filaments found in neurons. 89080 0 0 67561 9 integral to Golgi membrane Located such that some or all of the gene product itself penetrates at least one phospholipid bilayer of the Golgi complex membrane. May also refer to the state of being buried in the bilayer with no exposure outside the bilayer. 89081 0 0 67562 9 fibronectin-tissue transglutaminase complex A protein complex that consists of fibronectin bound to tissue transglutaminase, and is involved in cell adhesion. 89082 0 0 67563 9 intracellular membrane-bounded organelle Organized structure of distinctive morphology and function, bounded by a single or double lipid bilayer membrane and occurring within the cell. Includes the nucleus, mitochondria, plastids, vacuoles, and vesicles. Excludes the plasma membrane. 89083 0 0 67564 9 Mis6-Sim4 complex A protein complex that forms part of the inner centromere, which is involved in the loading of the centromeric histone h3 variant CENP-A onto centromeres and in centromere specific heterochromatin formation. The complex contains about 12 proteins, of which two are known as Mis6 and Sim4 in S. pombe and CENP-I and CENP-H in human. 89084 0 0 67565 9 tubovesicular membrane network A complex, symbiont-induced host-derived organelle that is comprised of multiple protein and lipid domains. 89087 0 0 67567 9 NADH dehydrogenase complex An integral membrane complex that possesses NADH oxidoreductase activity. The complex is one of the components of the electron transport chain. It catalyzes the transfer of a pair of electrons from NADH to a quinone. 89089 0 0 67568 9 interferon regulatory factor 5 complex An interferon regulatory factor complex that consists of a homodimer of interferon regulatory factor 5. 89096 0 0 67569 9 FANCM-MHF complex A protein complex contains the proteins FANCM and MHF, or their orthologs, plays an essential role in DNA remodeling, protects replication forks, and is conserved in eukaryotes. 89098 0 0 67570 9 oncostatin-M receptor complex A heterodimeric receptor for the cytokine oncostatin-M (OSM). In humans the receptor complex is made up of the gene products gp130 and OSMR-beta. 89100 0 0 67571 9 U2-type catalytic step 2 spliceosome A spliceosomal complex that contains the U2, U5 and U6 snRNPs bound to a splicing intermediate in which the first catalytic cleavage of the 5' splice site has occurred. The precise subunit composition differs significantly from that of the catalytic step 1, or activated, spliceosome, and includes many proteins in addition to those found in the U2, U5 and U6 snRNPs. 89102 0 0 67572 9 Elongator holoenzyme complex A heterohexameric protein complex that is involved in tRNA modification, and exerts indirect effects on transcriptional elongation and exocytosis. The complex can associate physically with hyperphosphorylated RNA polymerase II; it contains two discrete heterotrimeric subcomplexes. 89103 0 0 76526 36 mutant population \N 209423 0 0 67573 9 intracellular canaliculus An apical plasma membrane part that forms a narrow enfolded luminal membrane channel, lined with numerous microvilli, that appears to extend into the cytoplasm of the cell. A specialized network of intracellular canaliculi is a characteristic feature of parietal cells of the gastric mucosa in vertebrates. 89107 0 0 67574 9 hyphal septin cap A faint structure formed of septins found at the leading edge of growth in hyphae of fungal cells growing filamentously. This cap of septins colocalizes with a region of the plasma membrane that is rich in ergosterol. 89109 0 0 67575 9 endonuclear canal A membrane-bound structure present in the nucleus of a spermatozoon. There is variation in the number of endonuclear canals between sperm of different organisms, and some species lack these structures altogether. The endonuclear canal may provide a supporting role for the sperm nucleus, and originates during spermiogenesis from an invagination of the nuclear envelope. 89110 0 0 67576 9 Noc2p-Noc3p complex A heterodimer associated with 66S preribosomes; also found throughout the nucleoplasm; involved in ribosomal large subunit biogenesis. 89112 0 0 67578 9 thylakoid (sensu Proteobacteria) (obsolete GO:0030074) OBSOLETE. A thylakoid; as in, but not restricted to, the purple bacteria and relatives (Proteobacteria, ncbi_taxonomy_id:1224). 89116 1 0 67579 9 host cell nuclear envelope The double lipid bilayer enclosing the host nucleus and separating its contents from the rest of the host cytoplasm; includes the intermembrane space, a gap of width 20-40 nm (also called the perinuclear space). 89117 0 0 67580 9 aggresome An inclusion body formed by dynein-dependent retrograde transport of an aggregated protein on microtubules. 89118 0 0 67581 9 presynaptic membrane A specialized area of membrane of the axon terminal that faces the plasma membrane of the neuron or muscle fiber with which the axon terminal establishes a synaptic junction; many synaptic junctions exhibit structural presynaptic characteristics, such as conical, electron-dense internal protrusions, that distinguish it from the remainder of the axon plasma membrane. 89119 0 0 67582 9 checkpoint clamp complex Conserved heterotrimeric complex of PCNA-like proteins that is loaded onto DNA at sites of DNA damage. 89120 0 0 67583 9 Swi5-Swi2 complex A protein complex involved that contains proteins known in Schizosaccharomyces as Swi5 monomers and Swi2, and is involved in mating type switching. 89122 0 0 67584 9 peg and socket contact A cell-cell contact zone that consists of membrane invaginations extending from either cell, which contain tight-, gap-, and adherens junctions. Peg and socket contacts form between endothelial cells and pericytes, and between lens fiber cells. 89124 0 0 67585 9 proteasome core complex A multisubunit barrel shaped endoprotease complex, which is the core of the proteasome complex. 89129 0 0 67586 9 cytoplasmic vesicle A vesicle formed of membrane or protein, found in the cytoplasm of a cell. 89132 0 0 67587 9 clathrin-coated vesicle A vesicle with a coat formed of clathrin connected to the membrane via one of the clathrin adaptor complexes. 89133 0 0 67588 9 myosin XVI complex A myosin complex containing a class XVI myosin heavy chains and associated light chains; myosin XVI heavy chains contain ankyrin repeat. 89134 0 0 67589 9 phosphatidylinositol 3-kinase complex II A protein complex that posseses phosphatidylinositol 3-kinase activity and is involved in vacuolar protein sorting (VPS) via endosomes. In budding yeast, this complex consists of Vps30p, Vps34p, VPS38 and Vps15p. 89135 0 0 67590 9 dendrite A neuron projection that has a short, tapering, often branched, morphology, receives and integrates signals from other neurons or from sensory stimuli, and conducts a nerve impulse towards the axon or the cell body. In most neurons, the impulse is conveyed from dendrites to axon via the cell body, but in some types of unipolar neuron, the impulse does not travel via the cell body. 89136 0 0 67591 9 Delta1 complex A protein complex that consists of homodimer of the Notch ligand Delta1. 89137 0 0 67592 9 Fc-gamma receptor III complex A protein complex composed of an Fc-gamma RIII alpha chain and an Fc-epsilon RI gamma chain dimer with or without an Fc-epsilon RI beta chain and additional signaling components. The complex functions primarily as an activating receptor for IgG. 89138 0 0 67593 9 initial segment Portion of the axon proximal to the neuronal cell body, at the level of the axon hillock. The action potentials that propagate along the axon are generated at the level of this initial segment. 89139 0 0 67594 9 pilus tip The pointed extremity furthest from the cell of a pilus. 89140 0 0 67916 9 host bacteroid-containing symbiosome A symbiosome containing any of various structurally modified bacteria, such as those occurring on the root nodules of leguminous plants, of a host cell. 89599 0 0 67595 9 apoptosome A multisubunit protein complex involved in the activation of apoptosis. In mammals it is typically composed of seven Apaf-1 subunits bound to cytochrome c and caspase-9. A similar complex to promote apoptosis is formed from homologous gene products in other eukaryotic organisms. 89141 0 0 67596 9 basal labyrinth A region in the lower half of some cells formed from extensive infoldings of the basal plasma membrane; includes cytoplasm adjacent to the infolded membrane. 89146 0 0 67597 9 cis-Golgi network membrane The lipid bilayer surrounding any of the compartments that make up the cis-Golgi network. 89148 0 0 67598 9 commitment complex A spliceosomal complex that is formed by association of the U1 snRNP with the 5' splice site of an unspliced intron in an RNA transcript. 89149 0 0 67599 9 GATA2-TAL1-TCF3-Lmo2 complex A protein complex that contains the zinc finger transcription factor GATA2, the LIM domain protein Lmo2 (RBTN2), the basic helix-loop-helix protein TAL1 and its binding partner TCF3. The complex is involved transcriptional regulation in hematopoiesis. 89151 0 0 67600 9 COPII vesicle (obsolete GO:0005800) OBSOLETE (was not defined before being made obsolete). 89152 1 0 67601 9 protocadherin-alpha-v7-protocadherin-gamma-b4 complex A protein complex that contains the cell adhesion molecules protocadherin-alpha-v7 and protocadherin-gamma-b4, and is involved in the regulation of protein localization to the plasma membrane. 89153 0 0 67602 9 host cell endosome lumen The volume enclosed by the membranes of the host cell endosome. 89154 0 0 67603 9 endoplasmic reticulum cisternal network An endoplasmic reticulum part that comprises the membranes with low curvature in cross-section. 89155 0 0 67604 9 SCF complex substrate recognition subunit (obsolete GO:0009839) OBSOLETE. The portion of the SCF ubiquitin ligase complex that contains sites required for recognition (and recruitment) of the substrate to the complex. 89156 1 0 67606 9 membrane coat Any of several different proteinaceous coats that can associate with membranes. Membrane coats include those formed by clathrin plus an adaptor complex, the COPI and COPII complexes, and possibly others. They are found associated with membranes on many vesicles as well as other membrane features such as pits and perhaps tubules. 89159 0 0 67607 9 nuclear SCF ubiquitin ligase complex A ubiquitin ligase complex, located in the nucleus, in which a cullin from the Cul1 subfamily and a RING domain protein form the catalytic core; substrate specificity is conferred by a Skp1 adaptor and an F-box protein. SCF complexes are involved in targeting proteins for degradation by the proteasome. The best characterized complexes are those from yeast and mammals (with core subunits named Cdc53/Cul1, Rbx1/Hrt1/Roc1). 89160 0 0 67608 9 provirus The name given to a viral genome after it has been integrated into the host genome; particularly applies to retroviruses and is a required part of the retroviral replication cycle. 89161 0 0 67609 9 nuclear telomeric heterochromatin Heterochromatic regions of the chromosome found at the telomeres of a chromosome in the nucleus. 89162 0 0 67610 9 retromer complex, outer shell One of two subcomplexes that combine to form the retromer, believed to be peripherally associated with the membrane. The budding yeast complex comprises Vps5p and Vps17p, and may contain multiple copies of a Vps5p/Vps17p dimer. 89163 0 0 67611 9 XY body A structure found in a male mammalian spermatocyte containing an unpaired X chromosome that has become densely heterochromatic, silenced and localized at the nuclear periphery. 89164 0 0 67612 9 C zone A region of the A band in which myosin-binding protein C is located and that can be seen by electron microscopy. This is a functional zone that also includes myosin. 89165 0 0 67613 9 virion The complete fully infectious extracellular virus particle. 89166 0 0 67614 9 endobrevin-SNAP-25-syntaxin-1a complex A SNARE complex that contains endobrevin (VAMP8), SNAP-25, and syntaxin 1a (or orthologs thereof). 89167 0 0 67615 9 intrinsic to membrane Located in a membrane such that some covalently attached portion of the gene product, for example part of a peptide sequence or some other covalently attached group such as a GPI anchor, spans or is embedded in one or both leaflets of the membrane. 89168 0 0 67616 9 podosome An actin-rich adhesion structure characterized by formation upon cell substrate contact and localization at the substrate-attached part of the cell, contain an F-actin-rich core surrounded by a ring structure containing proteins such as vinculin and talin, and have a diameter of 0.5 mm. 89169 0 0 67617 9 cytosolic isocitrate dehydrogenase complex (NAD+) Cytosolic complex that possesses isocitrate dehydrogenase (NAD+) activity. 89172 0 0 67618 9 neuron projection A prolongation or process extending from a nerve cell, e.g. an axon or dendrite. 89173 0 0 67619 9 transcription factor TFIIF complex A general transcription initiation factor which in humans consists of a heterodimer of an alpha and a beta subunit. Helps recruit RNA polymerase II to the initiation complex and promotes translation elongation. 89174 0 0 67620 9 interleukin-13 receptor complex A protein complex that binds interleukin-13; consists of two chains, interleukin-13 receptor alpha1 chain and interleukin-4 receptor alpha chain. 89176 0 0 67621 9 granum Distinct stack of lamellae seen within chloroplasts. Grana contain the pigments, electron transfer compounds, and enzymes essential to the light-dependent reactions of photosynthesis. 89179 0 0 67622 9 host cell part Any constituent part of a host cell. The host is defined as the larger of the organisms involved in a symbiotic interaction. 89180 0 0 67623 9 nucleoplasmic reticulum Long, dynamic tubular channels, formed by invagination of the nuclear envelope, that extend deep into the nucleoplasm. The channels have an underlying lamina and are implicated in functioning in signaling and transport. 89181 0 0 67624 9 chloroplast proton-transporting ATP synthase complex, catalytic core CF(1) The catalytic sector of the mitochondrial hydrogen-transporting ATP synthase; it comprises the catalytic core and central stalk, and is peripherally associated with the chloroplast thylakoid membrane when the entire ATP synthase is assembled. The chloroplast F0 domain contains three alpha, three beta, one gamma, one delta, and one epsilon subunits. 89184 0 0 67625 9 plasmodesmatal endoplasmic reticulum Endoplasmic reticulum found in plasmodesmata, junctions connecting the cytoplasm of adjacent plant cells. 89186 0 0 67626 9 delta DNA polymerase complex A multimeric DNA polymerase enzyme complex which differs in composition amongst species; in humans it is a heterotetramer of four subunits of approximately 125, 50, 68 and 12kDa, while in S. cerevisiae, it has three different subunits which form a heterotrimer, and the active enzyme is a dimer of this heterotrimer. Functions in DNA replication, mismatch repair and excision repair. 89187 0 0 67627 9 microtubule-based flagellar cytoplasm All of the contents of a microtubule-based flagellum, excluding the plasma membrane surrounding the flagellum. 89190 0 0 67628 9 NAD(P)H dehydrogenase complex (plastoquinone) Complex that possesses NAD(P)H dehydrogenase (plastoquinone) activity. The complex is one of the components of the electron transport chain. It is involved in electron transport from an unidentified electron donor, possibly NADH, NADPH or ferredoxin(Fd) to the plastoquinone pool. 89191 0 0 67629 9 centrosomal corona An amorphous structure surrounding the core of the centrosome, from which microtubules are nucleated; contains gamma-tubulin. 89192 0 0 67630 9 telomere-telomerase complex A complex of DNA and protein located at the end of a linear chromosome that enables replication of the telomeric repeat sequences at the end of a linear chromosome. 89193 0 0 67631 9 MAML2-RBP-Jkappa-ICN3 complex A protein complex that consists of the intracellular domain of Notch3 (ICN3), the DNA-binding transcription factor RBP-Jkappa, and the transcriptional coactivator Mastermind-like-2 (MAML2); the complex is involved in transcriptional activation in response to Notch-mediated signaling. 89195 0 0 67632 9 platelet dense granule lumen The volume enclosed by the membrane of the platelet dense granule. 89196 0 0 67633 9 extracellular space of host The space within a host but external to the plasma membrane of host cells, e.g. within host bloodstream. 89197 0 0 67634 9 Shc-Grb2-Sos complex A protein complex that contains Grb2, the adaptor protein Shc and the guanine nucleotide exchange factor Sos (or an ortholog thereof, such as mSos1), and is involved in linking EGFR activation to the p21-Ras pathway. 89198 0 0 67635 9 columella A rod-like element of the sexine and ectexine, supporting either the tectum (the layer of sexine which forms a roof over the columella), or supporting a caput (an architectural element on top of a columella). 89200 0 0 67636 9 cytosolic ribosomal RNA (obsolete GO:0005567) OBSOLETE (was not defined before being made obsolete). 89201 1 0 67637 9 incipient cellular bud site The portion of the budding yeast plasma membrane where a daughter cell will emerge. The yeast marks this spot with bud-site selection proteins before bud emergence occurs. Actin is polarized to this spot just prior to and during bud emergence. 89202 0 0 67638 9 plastid membrane Either of the lipid bilayers that surround a plastid and form the plastid envelope. 89203 0 0 67639 9 host peribacteroid fluid The soluble material inside the peribacteroid membrane, but outside of the bacteroid, within a bacteroid-containing symbiosome of a host cell. 89204 0 0 67640 9 BAD-BCL-2 complex A heterodimeric protein complex consisting of BAD and BCL-2, members of the Bcl-2 family of anti- and proapoptotic regulators. 89205 0 0 67641 9 voltage-gated calcium channel complex A protein complex that forms a transmembrane channel through which calcium ions may pass in response to changes in membrane potential. 89206 0 0 67642 9 integrin complex A protein complex that is composed of one alpha subunit and one beta subunit, both of which are members of the integrin superfamily of cell adhesion receptors; the complex spans the plasma membrane and binds to extracellular matrix ligands, cell-surface ligands, and soluble ligands. 89207 0 0 67643 9 Cdc42 GTPase complex A protein complex formed by the association of the small GTPase Cdc42 with additional proteins. In Schizosaccharomyces the complex contains the Cdc42, Ras1, Scd1, Scd2, andShk1 proteins, and functions in the Ras1-Scd GTPase signalling pathway. 89209 0 0 67644 9 cell wall inner membrane (obsolete GO:0030064) OBSOLETE. The peptidoglycan layer of the cell wall of Gram-negative bacteria. 89213 1 0 67645 9 box H/ACA scaRNP complex A box H/ACA RNP complex that is located in the Cajal body of the nucleoplasm. In higher eukaryotes, box H/ACA RNP located in Cajal bodies mediate pseudouridylation of spliceosomal snRNAs. 89214 0 0 67646 9 HAUS complex A protein complex that localizes to interphase centrosomes and to mitotic spindle tubules and regulates mitotic spindle assembly and centrosome integrity; in human, the complex consists of eight subunits, some of which are homologous to subunits of the Drosophila Augmin complex. 89215 0 0 67647 9 alpha4-beta4 integrin-EMILIN-1 complex A protein complex that consists of an alpha4-beta4 integrin complex bound to EMILIN-1 (ElastinMicrofibril Interface Located ProteIN). 89217 0 0 67648 9 internal side of plasma membrane The side of the plasma membrane that faces the cytoplasm. 89219 0 0 67649 9 ribozyme (obsolete GO:0005559) OBSOLETE (was not defined before being made obsolete). 89220 1 0 67650 9 inhibin B complex Heterodimeric hormone composed of an inhibin alpha subunit complexed with an inhibin beta-B subunit. 89221 0 0 67651 9 pICln-Sm protein complex A protein complex that contains pICln (CLNS1A) and several Sm proteins, including SmD1, SmD2, SmE, SmF, and SmG. 89222 0 0 67652 9 Prp19 complex A protein complex consisting of Prp19 and associated proteins that is involved in the transition from the precatalytic spliceosome to the activated form that catalyzes step 1 of splicing, and which remains associated with the spliceosome through the second catalytic step. It is widely conserved, found in both yeast and mammals, though the exact composition varies. In S. cerevisiae, it contains Prp19p, Ntc20p, Snt309p, Isy1p, Syf2p, Cwc2p, Prp46p, Clf1p, Cef1p, and Syf1p. 89223 0 0 67653 9 clathrin sculpted glutamate transport vesicle lumen The volume enclosed by the membrane of the clathrin sculpted glutamate transport vesicle. 89225 0 0 67654 9 extracellular non-membrane-bounded organelle Organized structure of distinctive morphology and function, not bounded by a lipid bilayer membrane and occurring outside the cell. 89226 0 0 67655 9 kinocilium A nonmotile primary cilium that is found at the apical surface of auditory receptor cells. The kinocilium is surrounded by actin-based stereocilia. 89227 0 0 67711 9 protocadherin-alpha-v7-protocadherin-gamma-a1 complex A protein complex that contains the cell adhesion molecules protocadherin-alpha-v7 and protocadherin-gamma-a1, and is involved in the regulation of protein localization to the plasma membrane. 89306 0 0 67656 9 cellular bud neck septin ring A ring-shaped structure that forms at the site of cytokinesis; composed of members of the conserved family of filament forming proteins called septins as well as septin-associated proteins. In S. cerevisiae, this structure forms at the time of bud emergence and the septins show a high rate of exchange. 89229 0 0 67657 9 endosome to plasma membrane transport vesicle A transport vesicle that mediates transport from the endosome to the plasma membrane, and fuses with the plasma membrane to release various cargo molecules, such as proteins or hormones, by exocytosis. 89230 0 0 67658 9 alpha1-beta1 integrin-tissue transglutaminase complex A protein complex that consists of an alpha1-beta1 integrin complex bound to tissue transglutaminase. 89233 0 0 67659 9 flagellum part Any constituent part of a flagellum, a long whiplike or feathery structure borne either singly or in groups by the motile cells of many bacteria and unicellular eukaryotes and by the motile male gametes of many eukaryotic organisms, which propel the cell through a liquid medium. 89234 0 0 67660 9 proteasome regulatory particle (sensu Bacteria) (obsolete GO:0000504) OBSOLETE. A multisubunit complex that recognizes and unfolds ubiquitinated proteins, and translocates them to the core complex in an ATP dependent manner. As in, but not restricted to, the taxon Bacteria (Bacteria, ncbi_taxonomy_id:2). 89235 1 0 67661 9 porosome A permanent cup-shaped structure at the cell plasma membrane in secretory cells. Following a secretory stimulus, secretory vesicles transiently dock and fuse at the base of porosomes and release intravesicular contents dictated by the turgor pressure generated from the swelling of secretory vesicles. 89236 0 0 67662 9 smooth microsome Vesicular particles formed from disrupted endoplasmic reticulum and plasma membranes without any adhering ribosomes. 89239 0 0 67663 9 TEAD-2-YAP complex A transcription factor complex that is composed of the DNA biding protein TEAD-2 and the transcriptional coactivator YAP. 89240 0 0 67664 9 actomyosin, actin part The actin part of any complex of actin, myosin, and accessory proteins. 89241 0 0 67665 9 nuclear dicing body A small round nuclear body, measuring 0.2-0.8 microns in diameter that is diffusely distributed throughout the nucleoplasm. Several proteins known to be involved in miRNA processing have been localized to these structures. D-bodies are thought to be involved in primary-miRNA processing and/or storage/assembly of miRNA processing complexes. 89242 0 0 76527 36 plant \N 209424 0 0 67666 9 microsporocyte nucleus The nucleus of the microsporocyte. The microsporocyte is a diploid cell in which meiosis will occur, resulting in four microspores. A microspore is a spore that, in vascular plants, gives rise to a male gametophyte. 89244 0 0 67728 9 attachment organelle membrane The lipid bilayer surrounding an attachment organelle. 89327 0 0 67667 9 CORVET complex A multimeric protein complex that acts as an endosomal tethering complex (CORVET = class C core vacuole/endosome tethering) by cooperating with Rab GTPases to capture endosomal vesicles and trap them prior to the action of SNAREs; the complex is involved in endo-lysosomal biogenesis and required for transport between endosome and vacuole. The Saccharomyces cerevisiae complex contains Vps8p, Vps3p, Pep5p, Vps16p, Pep3p, and Vps33p. 89246 0 0 67668 9 stereocilia coupling link A structure involved in coupling stereocilia to one another in sensory hair cells There are four morphologically distinct types: tip links, horizontal top connectors, shaft connectors and ankle links. Tip links and horizontal top connectors are the only inter-stereocilia links associated with mature cochlea, whereas ankle links appear during development of the auditory hair bundle. 89248 0 0 67669 9 cellubrevin-VAMP4-syntaxin-16 complex A SNARE complex that contains cellubrevin (VAMP3), VAMP4, and syntaxin 16 (or orthologs thereof). 89250 0 0 67670 9 nitrite reductase complex [NAD(P)H] Complex that possesses nitrite reductase [NAD(P)H] activity. 89251 0 0 67671 9 inner layer of spore wall Either of the two innermost layers of the spore wall, as described in Saccharomyces. 89252 0 0 67672 9 periplasmic space The region between the inner (cytoplasmic) and outer membrane (Gram-negative Bacteria) or inner membrane and cell wall (Fungi). 89253 0 0 67673 9 Golgi-associated vesicle lumen The volume enclosed by the membrane of a Golgi-associated vesicle. 89255 0 0 67674 9 intraconoid microtubule A microtubule located such that it threads through the conoid and projects through the polar ring. 89256 0 0 67675 9 polar tube A highly specialized structure unique to microsporidia that is required for host cell invasion. In the spore, the polar tube is connected at the anterior end, and then coils around the sporoplasm. Upon appropriate environmental stimulation, the polar tube rapidly discharges out of the spore, pierces a cell membrane and serves as a conduit for sporoplasm passage into the new host cell. 89258 0 0 67676 9 Sec61 translocon complex A translocon complex that contains a core heterotrimer of conserved alpha, beta and gamma subunits, and may contain additional proteins (translocon-associated proteins or TRAPs); in budding yeast the core proteins are Sec61p, Sbh1p, and Sss1p. The Sec61 translocon complex functions in cotranslational and posttranslational translocation events. 89259 0 0 67677 9 intermediate filament cytoskeleton Cytoskeletal structure made from intermediate filaments, typically organized in the cytosol as an extended system that stretches from the nuclear envelope to the plasma membrane. Some intermediate filaments run parallel to the cell surface, while others traverse the cytosol; together they form an internal framework that helps support the shape and resilience of the cell. 89260 0 0 67678 9 exosome (RNase complex) Complex of 3'-5' exoribonucleases. 89261 0 0 67679 9 larval serum protein complex A multisubunit protein complex which, in Drosophila, is a heterohexamer of three subunits, alpha, beta and gamma. The complex is thought to store amino acids for synthesis of adult proteins. 89262 0 0 67680 9 pronucleus The nucleus of either the ovum or the spermatozoon following fertilization. Thus, in the fertilized ovum, there are two pronuclei, one originating from the ovum, the other from the spermatozoon that brought about fertilization; they approach each other, but do not fuse until just before the first cleavage, when each pronucleus loses its membrane to release its contents. 89264 0 0 67681 9 high affinity iron permease complex A protein complex composed of a multicopper ferroxidase that oxidizes Fe(II) to Fe(III), and a ferric iron permease that transports the produced Fe(III) into the cell. 89265 0 0 67712 9 microvillus membrane The portion of the plasma membrane surrounding a microvillus. 89307 0 0 67682 9 CVT vesicle A cytosolic vesicle that is enclosed by a double membrane and is implicated in the cytoplasm to vacuole targeting pathway. These vesicles are found in the yeast S. cerevisiae, and contain vacuolar hydrolases, aminopeptidase I (Ape1p) and alpha-mannosidase (Ams1p). 89268 0 0 67683 9 surface coat of collagen and cuticulin-based cuticle extracellular matrix An electron dense, amorphous envelope that comprises the outermost layer of the cuticle. The surface coat is loosely apposed to the epicuticle, has distinct biochemical properties, is synthesized by cells other than the underlying hypodermis, and is labile. In addition to serving as a lubricant to protect against abrasion and dehydration, the surface coat may also play important roles in infection and immune evasion. An example of this component is found in Caenorhabditis elegans. 89270 0 0 67684 9 mature chylomicron A chylomicron that contains apolipoprotein C2 (APOC2), a cofactor for lipoprotein lipase (LPL) activity, and has a mean diameter of 500 nm and density of 0.95g/ml. Mature chylomicron particles transport exogenous (dietary) lipids from the intestines to other body tissues, via the blood and lymph. 89271 0 0 67685 9 alpha9-beta1 integrin-VEGF-D complex A protein complex that consists of an alpha9-beta1 integrin complex bound to vascular endothelial growth factor D. 89272 0 0 67687 9 proteinaceous extracellular matrix A layer consisting mainly of proteins (especially collagen) and glycosaminoglycans (mostly as proteoglycans) that forms a sheet underlying or overlying cells such as endothelial and epithelial cells. The proteins are secreted by cells in the vicinity. An example of this component is found in Mus musculus. 89274 0 0 67688 9 bacteroid-containing symbiosome A symbiosome containing any of various structurally modified bacteria, such as those occurring on the root nodules of leguminous plants. 89275 0 0 67689 9 mitochondrial creatine kinase complex An octomeric protein complex having creatine kinase activity. 89276 0 0 67690 9 fully spanning plasma membrane Fully spanning both phospholipid bilayers of a plasma membrane. 89278 0 0 67691 9 U2 snRNP A ribonucleoprotein complex that contains small nuclear RNA U2. 89279 0 0 67692 9 endoplasmic reticulum membrane The lipid bilayer surrounding the endoplasmic reticulum. 89280 0 0 67693 9 host cell cytoplasmic vesicle A vesicle formed of membrane or protein, found in the cytoplasm of a host cell. 89281 0 0 67694 9 XRCC2-RAD51D complex A heterodimeric DNA recombinase mediator complex that contains the Rad51 paralogs RAD51D and XRCC2, or orthologs thereof; conserved from fission yeast to human but absent from budding yeast. 89282 0 0 67695 9 protein C inhibitor-acrosin complex A heterodimeric protein complex of protein C inhibitor and acrosin; complex formation inhibits the protease activity of acrosin. 89283 0 0 67696 9 glutamate synthase complex (NADH) A protein complex that in yeast consists of a large and a small subunit. Possesses glutamate synthase (NADH) activity. 89286 0 0 67697 9 nucleotide-excision repair factor 4 complex One of several protein complexes involved in nucleotide-excision repair; possesses DNA damage recognition and DNA-dependent ATPase activities. In S. cerevisiae, it is composed of Rad7p and Rad16p. 89288 0 0 67698 9 mitochondrial respiratory chain complex I, peripheral segment The peripheral segment of respiratory chain complex I located in the mitochondrion. Respiratory chain complex I is an enzyme of the respiratory chain, consisting of at least 34 polypeptide chains. The electrons of NADH enter the chain at this complex. The complete complex is L-shaped, with a horizontal arm lying in the membrane and a vertical arm that projects into the matrix. 89289 0 0 67699 9 cell body fiber A neuron projection that is found in unipolar neurons and corresponds to the region between the cell body and the point at which the single projection branches. 89290 0 0 67700 9 respiratory chain complex I Respiratory chain complex I is an enzyme of the respiratory chain. It consists of at least 34 polypeptide chains and is L-shaped, with a horizontal arm lying in the membrane and a vertical arm that projects into the matrix. The electrons of NADH enter the chain at this complex. 89291 0 0 67701 9 cAMP-dependent protein kinase complex An enzyme complex, composed of regulatory and catalytic subunits, that catalyzes protein phosphorylation. Inactive forms of the enzyme have two regulatory chains and two catalytic chains; activation by cAMP produces two active catalytic monomers and a regulatory dimer. 89293 0 0 67702 9 alpha2-beta1 integrin complex An integrin complex that comprises one alpha2 subunit and one beta1 subunit. 89294 0 0 67703 9 microtubule Any of the long, generally straight, hollow tubes of internal diameter 12-15 nm and external diameter 24 nm found in a wide variety of eukaryotic cells; each consists (usually) of 13 protofilaments of polymeric tubulin, staggered in such a manner that the tubulin monomers are arranged in a helical pattern on the microtubular surface, and with the alpha/beta axes of the tubulin subunits parallel to the long axis of the tubule; exist in equilibrium with pool of tubulin monomers and can be rapidly assembled or disassembled in response to physiological stimuli; concerned with force generation, e.g. in the spindle. 89295 0 0 67704 9 B875 antenna complex Protein complex that surrounds and transfers excitation energy directly to the bacterial reaction center; binds bacteriochlorophyll a and has a single absorption band between 870 and 890 nm. 89296 0 0 67705 9 alpha10-beta1 integrin complex An integrin complex that comprises one alpha10 subunit and one beta1 subunit. 89297 0 0 67706 9 trichocyst A crystalline exocytotic organelle composed of small, acidic proteins existing primarily as disulphide-linked dimers. The trichocyst is an organelle that releases long filamentous proteins that capture predators in "nets" to slow them down when the cell is disturbed. The protein is nontoxic and shaped like a long, striated, fibrous shaft. 89298 0 0 67707 9 esterosome membrane The lipid bilayer surrounding an esterosome. This membrane has characteristics of rough endoplasmic reticulum (RER) membranes. 89301 0 0 67708 9 axonemal dynein intermediate light chain (obsolete GO:0001685) OBSOLETE (was not defined before being made obsolete). 89302 1 0 67709 9 lysosomal lumen The volume enclosed within the lysosomal membrane. 89303 0 0 67710 9 intrinsic to nuclear outer membrane Located in the nuclear outer membrane such that some covalently attached portion of the gene product, for example part of a peptide sequence or some other covalently attached group such as a GPI anchor, spans or is embedded in one or both leaflets of the membrane. 89305 0 0 67713 9 IgM immunoglobulin complex A protein complex composed of two identical immunoglobulin heavy chains of the IgM isotype and two identical immunoglobulin light chains, held together by disulfide bonds, and in its circulating form complexed with J chain in polymeric forms. An IgM immunoglobulin complex may be embedded in the plasma membrane or present in the extracellular space, in mucosal areas or other tissues, or circulating in the blood or lymph. 89308 0 0 67714 9 cytoplasmic membrane-bounded vesicle A membrane-bounded vesicle found in the cytoplasm of the cell. 89309 0 0 67715 9 ferritin complex A protein complex that binds iron and acts as a major iron storage system. Intracellular and extracellular ferritin complexes have different ratios of two types of ferritin monomer, the L (light) chain and H (heavy) chain. 89310 0 0 67716 9 pore complex Any small opening in a membrane that allows the passage of gases and/or liquids. 89311 0 0 67717 9 lateral plasma membrane The membranes on the sides of epithelial cells which lie at the interface of adjacent cells. 89312 0 0 67718 9 cell cortex of cell tip The region directly beneath the plasma membrane at the cell tip. The cell tip is the region at either end of the longest axis of a cylindrical or elongated cell. 89313 0 0 67719 9 H4/H2A histone acetyltransferase complex A multisubunit complex that catalyzes the acetylation of histones H4 and H2A. 89314 0 0 67720 9 bacterial-type flagellum basal body, distal rod, P ring One of the rings of the flagellar basal body; anchors the basal body to the peptidoglycan layer. Examples of this component are found in bacteria. 89315 0 0 67721 9 positive sense viral genome A single stranded RNA genome with the same nucleotide polarity as mRNA. 89316 0 0 67722 9 nuclear lumen The volume enclosed by the nuclear inner membrane. 89317 0 0 67723 9 alphaV-beta3 integrin-laminin alpha-4 complex A protein complex that consists of an alphaV-beta3 integrin complex bound to laminin alpha-4. 89318 0 0 67724 9 chromaffin granule Specialized secretory vesicle found in the cells of adrenal glands and various other organs, which is concerned with the synthesis, storage, metabolism, and secretion of epinephrine and norepinephrine. 89320 0 0 67725 9 alpha5-beta5-fibronectin-SFRP2 complex A protein complex that consists of an alpha5-beta5 integrin complex bound to fibronectin and secreted frizzled-related protein 2. 89323 0 0 67726 9 intraflagellar transport particle A nonmembrane-bound oligomeric protein complex that participates in bidirectional transport of molecules (cargo) along axonemal microtubules. 89325 0 0 67727 9 cortical actin cytoskeleton The portion of the actin cytoskeleton, comprising filamentous actin and associated proteins, that lies just beneath the plasma membrane. 89326 0 0 76528 36 population \N 209425 0 0 67729 9 ribonuclease P complex A ribonucleoprotein complex that catalyzes cleavage of the leader sequence of precursor tRNAs (pre-tRNAs), generating the mature 5' end of tRNAs. 89328 0 0 67730 9 cohesin complex A protein complex that is required for sister chromatid cohesion in eukaryotes. The cohesin complex forms a molecular ring complex, and is composed of structural maintenance of chromosomes (SMC) and kleisin proteins. For example, in yeast, the complex is composed of the SMC proteins Smc1p and Smc3p, and the kleisin protein Scc1p. In vertebrates, the complex is composed of the SMC1 (SMC1A or SMC1B) and SMC3 heterodimer attached via their hinge domains to a kleisin (RAD21, REC8 or RAD21L) which links them, and one STAG protein (STAG1, STAG2 or STAG3). 89329 0 0 67731 9 mitochondrial envelope The double lipid bilayer enclosing the mitochondrion and separating its contents from the cell cytoplasm; includes the intermembrane space. 89333 0 0 67732 9 proplastid The precursor of other plastids. 89334 0 0 67733 9 membrane-bounded organelle Organized structure of distinctive morphology and function, bounded by a single or double lipid bilayer membrane. Includes the nucleus, mitochondria, plastids, vacuoles, and vesicles. Excludes the plasma membrane. 89335 0 0 67734 9 U12 snRNP A ribonucleoprotein complex that contains small nuclear RNA U12. 89336 0 0 67735 9 chromosome, centromeric core region The innermost portion of the centromeric region of a chromosome, encompassing the core region of a chromosome centromere and the proteins that bind to it. 89337 0 0 67736 9 axonemal dynein complex A dynein complex found in eukaryotic cilia and flagella; the motor domain heads interact with adjacent microtubules to generate a sliding force which is converted to a bending motion. May contain two or three dynein heavy chains as well as several light chains. 89338 0 0 67737 9 neuron spine A small membranous protrusion, often ending in a bulbous head and attached to the neuron by a narrow stalk or neck. 89339 0 0 67738 9 NF-kappaB p50/p65 complex A heterodimer of NF-kappa B p50 and p65 subunits. 89342 0 0 67739 9 interphase chromosome (obsolete GO:0005707) OBSOLETE. A chromosome found in the cell during interphase of the cell cycle. Chromosomes are usually decondensed during interphase and each long DNA molecule in a chromosome is divided into a large number of discrete domains that are folded differently. 89346 1 0 67740 9 flagellum Long whiplike or feathery structures borne either singly or in groups by the motile cells of many bacteria and unicellular eukaryotes and by the motile male gametes of many eukaryotic organisms, which propel the cell through a liquid medium. 89347 0 0 67741 9 integral to peroxisomal membrane Penetrating at least one phospholipid bilayer of a peroxisomal membrane. May also refer to the state of being buried in the bilayer with no exposure outside the bilayer. 89350 0 0 67742 9 RNA-directed RNA polymerase complex A protein complex that possesses RNA-directed RNA polymerase activity. 89351 0 0 67743 9 DNA-directed RNA polymerase III complex RNA polymerase III, one of three nuclear DNA-directed RNA polymerases found in all eukaryotes, is a multisubunit complex; typically it produces 5S rRNA, tRNAs and some of the small nuclear RNAs. Two large subunits comprise the most conserved portion including the catalytic site and share similarity with other eukaryotic and bacterial multisubunit RNA polymerases. The remainder of the complex is composed of smaller subunits (generally ten or more), some of which are also found in RNA polymerase I and others of which are also found in RNA polymerases I and II. Although the core is competent to mediate ribonucleic acid synthesis, it requires additional factors to select the appropriate template. 89352 0 0 67744 9 Cul8-RING ubiquitin ligase complex A ubiquitin ligase complex in which a cullin from the Cul8 subfamily and a RING domain protein form the catalytic core. In S. cerevisiae, Mms1p acts as the adaptor protein and substrate specificity is conferred by any of a number of different proteins. 89353 0 0 67745 9 Ddb1-Wdr21 complex A heterodimeric nucleotide-excision repair complex that is involved in transcription-coupled repair. The subunits are known as Ddb1 and Wdr21 in S. pombe; Ddb1 contains a motif called the DDB-box that interacts with adaptor proteins for DDB1/cullin 4 ubiquitin ligases. 89355 0 0 67746 9 APC-IQGAP1-Rac1 complex A protein complex that contains the tumor suppressor protein adenomatous polyposis coli (APC), the small GTPase Rac1, and the Rac1 and Cdc42 effector IQGAP1; may play a role in cytoskeleton organization and cell migration. 89356 0 0 67747 9 host cell endoplasmic reticulum lumen The volume enclosed by the membranes of the host cell endoplasmic reticulum. 89357 0 0 67748 9 mitochondrial inner boundary membrane The portion of the mitochondrial inner membrane that is not invaginated to form cristae. The inner boundary membrane lies parallel to the outer membrane. 89358 0 0 67749 9 methane-oxidizing organelle A cytoplasmic, membrane-bounded compartment found within Methanotrophic bacteria that contains enzymes and electron transfer proteins for methane catabolism. This structure is analogous to the thylakoid of Cyanobacteria and the anammoxosome of anaerobic ammonium oxidation organisms. 89361 0 0 67750 9 storage vacuole A vacuole that functions primarily in the storage of materials, including nutrients, pigments, waste products, and small molecules. 89362 0 0 67751 9 hyphal tip The end, or tip, of a fungal hypha, where polarized growth occurs during hyphal elongation. 89363 0 0 67752 9 subpellicular microtubule Singlet microtubules that lie underneath the inner membrane complex and emanate from the basal ring of the conoid. 89364 0 0 67753 9 photoreceptor connecting cilium A nonmotile primary cilium that has a 9+0 microtubule array and forms the portion of the axoneme traversing the boundary between the photoreceptor inner and outer segments. 89365 0 0 67754 9 fungal-type vacuole lumen The volume enclosed within the vacuolar membrane of a vacuole, the shape of which correlates with cell cycle phase. An example of this structure is found in Saccharomyces cerevisiae. 89368 0 0 67755 9 mitochondrial matrix The gel-like material, with considerable fine structure, that lies in the matrix space, or lumen, of a mitochondrion. It contains the enzymes of the tricarboxylic acid cycle and, in some organisms, the enzymes concerned with fatty acid oxidation. 89369 0 0 67756 9 intracellular organelle part A constituent part of an intracellular organelle, an organized structure of distinctive morphology and function, occurring within the cell. Includes constituent parts of the nucleus, mitochondria, plastids, vacuoles, vesicles, ribosomes and the cytoskeleton but excludes the plasma membrane. 89371 0 0 67757 9 giant axon Extremely large, unmyelinated axon found in invertebrates. Has high conduction speeds and is usually involved in panic or escape responses. 89372 0 0 67758 9 host cell lysosomal membrane The lipid bilayer surrounding the host cell lysosome and separating its contents from the host cell cytoplasm. 89374 0 0 67759 9 organelle-enclosing lipid monolayer A lipid monolayer that surrounds and encloses an organelle. 89375 0 0 67760 9 prospore membrane spindle pole body attachment site The region of the prospore membrane to which the spindle pole body (SPB) is anchored; the prospore membrane extends from the SPB attachment site to surround the spore nucleus. 89376 0 0 67761 9 trans-Golgi network membrane The lipid bilayer surrounding any of the compartments that make up the trans-Golgi network. 89377 0 0 67762 9 coatomer (obsolete GO:0005799) OBSOLETE (was not defined before being made obsolete). 89378 1 0 67763 9 Gram-positive-bacterium-type cell wall A layer of peptidoglycan found outside of the cytoplasmic membrane. The peptidoglycan is relatively thick (20-80nm) and retains the primary stain of the Gram procedure, thus cells appear blue after Gram stain. The cell walls often contain teichoic acids (acidic anionic polysaccharides) bound to the peptidoglycan. Examples of this component are found in Gram-positive bacteria. 89379 0 0 67764 9 chromatoid body A ribonucleoprotein complex found in the cytoplasm of male germ cells, composed of exceedingly thin filaments that are consolidated into a compact mass or into dense strands of varying thickness that branch to form an irregular network. Contains mRNAs, miRNAs, and protein components involved in miRNA processing (such as Argonaute proteins and the endonuclease Dicer) and in RNA decay (such as the decapping enzyme DCP1a and GW182). 89381 0 0 67765 9 ciliary transition zone A region of the cilium between the basal body and proximal segment that is characterized by Y-shaped assemblages that connect axonemal microtubules to the ciliary membrane. The ciliary transition zone appears to function as a gate that controls ciliary membrane composition. 89383 0 0 67766 9 microsome Any of the small, heterogeneous, artifactual, vesicular particles, 50-150 nm in diameter, that are formed when some eukaryotic cells are homogenized and that sediment on centrifugation at 100000 g. 89385 0 0 67767 9 endoplasmic reticulum Sec complex An endoplasmic reticulum membrane-associated complex involved in the translocation of proteins that are targeted to the ER. In yeast, this complex consists of two subcomplexes, namely, the Sec61 complex and the Sec62/Sec63 complex. 89386 0 0 67768 9 myosin II complex A myosin complex containing two class II myosin heavy chains, two myosin essential light chains and two myosin regulatory light chains. Also known as classical myosin or conventional myosin, the myosin II class includes the major muscle myosin of vertebrate and invertebrate muscle, and is characterized by alpha-helical coiled coil tails that self assemble to form a variety of filament structures. 89389 0 0 67769 9 radial spoke stalk Globular portion of the radial spoke that projects towards the central pair of microtubules. 89390 0 0 67770 9 Golgi transport complex A complex of proteins that, in vitro, stimulates intra-Golgi transport; a 13S complex, about 800 kDa in size and consists of at least five polypeptides. In yeast, this complex is called the Sec34/35 complex and is composed of eight subunits (Sec34p, Sec35p, Dor1p, Cod1p, Cod2p, Cod3p, Cod4p, and Cod5p). 89391 0 0 67771 9 alphaIIb-beta3 integrin-CD9 complex A protein complex that consists of an alphaIIb-beta3 integrin complex bound to the cell surface protein CD9. 89393 0 0 67772 9 inhibin-betaglycan-ActRII complex A protein complex that consists of inhibin, type III transforming growth factor beta receptor (also known as betaglycan), and the type II activin receptor ActRII. The complex is thought to negatively regulate the activity of activin B. 89394 0 0 67773 9 MLL5-L complex A protein complex that can methylate lysine-4 of histone H3 and plays an essential role in retinoic-acid-induced granulopoiesis. MLL5 is the catalytic methyltransferase subunit, and the complex also contains serine/threonine kinase 38 (STK38), protein phosphatase 1 catalytic subunits, the host cell factor-1 N-terminal subunit, beta-actin, and O-GlcNAc transferase; the human genes encoding the subunits are MLL5, STK38, PPP1CA, PPP1CB, PPP1CC, HCFC1, ACTB and OGT, respectively. 89396 0 0 67774 9 proton-transporting V-type ATPase, V1 domain A protein complex that forms part of a proton-transporting V-type ATPase and catalyzes ATP hydrolysis. The V1 complex consists of: (1) a globular headpiece with three alternating copies of subunits A and B that form a ring, (2) a central rotational stalk composed of single copies of subunits D and F, and (3) a peripheral stalk made of subunits C, E, G and H. Subunits A and B mediate the hydrolysis of ATP at three reaction sites associated with subunit A. 89398 0 0 67775 9 interleukin-23 receptor complex A protein complex that binds interleukin-23. The complex comprises two subunits, including the same beta subunit found in the interleukin-12 receptor. 89399 0 0 67776 9 internode region of axon An axon part that is located between the nodes of Ranvier and surrounded by compact myelin sheath. 89401 0 0 67777 9 G-protein alpha(i)1-synembrin complex A protein complex formed by the association of the guanine nucleotide exchange factor synembrin with the alpha(i)1 subunit of a heterotrimeric G protein. 89402 0 0 67778 9 cellular bud neck The constriction between the mother cell and daughter cell (bud) in an organism that reproduces by budding. 89403 0 0 67779 9 heterochromatin A compact and highly condensed form of chromatin. 89404 0 0 67780 9 hyaline layer A multilayered extraembryonic matrix that functions as a substrate for cell adhesion through early development. It is thought to protect and lubricate the embryo, stabilize the blastomeres during morphogenesis, and regulate nutrient intake. The major constituent of the hyaline layer is the protein hyalin. This matrix has been found in echinoderms. 89405 0 0 67781 9 Golgi to ER transport vesicle membrane The lipid bilayer surrounding a vesicle transporting substances from the Golgi to the ER. 89409 0 0 67782 9 alpha9-beta1 integrin-ADAM12 complex A protein complex that consists of an alpha9-beta1 integrin complex bound to the transmembrane metallopeptidase ADAM12. 89410 0 0 67783 9 UTP-C complex A protein complex that forms a subcomplex of the 90S preribosome. In S. cerevisiae, it is composed of Rrp7p, Utp22p, Ckb1p, Cka1p, Ckb2p and Cka2p. 89411 0 0 67784 9 microbody membrane The lipid bilayer surrounding a microbody. 89412 0 0 76467 48 trait_minimum trait_minimum 209364 0 0 67785 9 NOS2-CD74 complex A protein complex comprising nitric oxide synthase 2 and CD74. This stable complex formation is thought to prevent CD74 degradation by caspases. 89413 0 0 67786 9 ER proteasome core complex, alpha-subunit complex The subunits forming the outer ring of the core complex of a proteasome located in the endoplasmic reticulum of a cell. 89415 0 0 67787 9 extrinsic to external side of cell outer membrane Loosely bound to the surface of the outer membrane of the cell that faces away from the cytoplasm, but not integrated into the hydrophobic region. 89416 0 0 67788 9 catenin-TCF7L2 complex A protein complex that contains a catenin and TCF7L2 (TCF4), binds to the TCF DNA motif within a promoter element, and is involved in the regulation of WNT target gene transcription. 89417 0 0 67789 9 cerebellar mossy fiber An axon arising from cerebellar projecting cells in the cochlea, vestibular nuclei, spinal cord, reticular formation, cerebellar nuclei and basilar pontine nuclei. Mossy fibers enter through all three cerebellar peduncles and send collaterals to the deep cerebellar nuclei, then branch in the white matter and terminate in the granule cell layer. Through this branching, a given mossy fiber can innervate several folia. Mossy fibers synapse on granule cells. The synaptic contacts are made at enlargements along the length of the mossy fiber called mossy fiber rosettes. The enlargements of the rosettes give the axons as "mossy" appearance in Golgi stained preparations. 89419 0 0 67790 9 foot layer The inner layer of the ectexine. 89421 0 0 67791 9 growing cell tip The region at either end of the longest axis of a cylindrical or elongated cell, where polarized growth occurs. 89422 0 0 67792 9 retrotransposon nucleocapsid A complex of the retrotransposon RNA genome, reverse transcriptase, integrase, and associated molecules required for reproduction and integration of the retrotransposon into the host genome; the main structural molecule of the nucleocapsid is often a gag protein homolog. 89423 0 0 67793 9 bacterial-type flagellum filament cap The proteinaceous structure at the distal tip of the flagellar filament. Examples of this component are found in bacteria. 89425 0 0 67794 9 vesicle coat A membrane coat found on a coated vesicle. 89426 0 0 67795 9 laminin-10 complex A laminin complex composed of alpha5, beta1 and gamma1 polypeptide chains. 89427 0 0 67796 9 guanylate cyclase complex, soluble Complex that possesses guanylate cyclase activity and is not bound to a membrane. 89428 0 0 67797 9 gamma-catenin-TCF7L2 complex A protein complex that contains gamma-catenin and TCF7L2 (TCF4), binds to the TCF DNA motif within a promoter element, and is involved in the regulation of WNT target gene transcription. 89429 0 0 67798 9 DNA helicase A complex A homohexameric protein complex that possesses DNA helicase activity; associates with DNA polymerase alpha-primase and translocates in the 5' to 3' direction. 89430 0 0 67799 9 alpha4-beta1 integrin-CD82 complex A protein complex that consists of an alpha4-beta1 integrin complex bound to membrane protein CD82, a member of the tetraspan family. 89432 0 0 67800 9 PSII associated light-harvesting complex II, peripheral complex Pigment-protein complex primarily associated to PSII in plants, green algae and cyanobacteria. Involved in state transitions that cause migration to PSI under certain environmental conditions such as high light. 89433 0 0 67801 9 symbiont-containing vacuole Membrane-bounded vacuole within a host cell in which a symbiont organism resides. The vacuole membrane is derived from both the host and symbiont. 89434 0 0 67804 9 cytoplasmic replication fork The Y-shaped region of a cytoplasmic replicating DNA molecule, resulting from the separation of the DNA strands and in which the synthesis of new strands takes place. Also includes associated protein complexes. 89437 0 0 67805 9 micro-ribonucleoprotein complex A complex containing both protein and micro-RNA (miRNA) molecules. miRNAs are approximately 22 nucleotide noncoding RNAs derived from endogenous genes; they are processed from the stem of a longer hairpin like structure termed a pre-miRNA. 89438 0 0 67806 9 phosphatidylinositol 3-kinase complex, class III A complex containing a heterodimer of a catalytic Class III phosphoinositide 3-kinase (PI3K) subunit bound to a regulatory (adaptor) subunit. Class III PI3Ks have a substrate specificity restricted to phosphatidylinositol (PI). 89440 0 0 67807 9 cellular bud neck septin collar A tubular structure with flared ends, shaped like an hourglass and composed of highly ordered arrays of septin filaments, that forms at the bud neck of a dividing cell. In S. cerevisiae, this structure is located at the bud neck throughout most of the cell cycle and the septins are fixed within the structure, not exchanging with soluble septins. This septin structure acts as a scaffold for other proteins that function at the bud neck. 89441 0 0 67808 9 mitochondrial sorting and assembly machinery complex A large complex of the mitochondrial outer membrane that mediates sorting of some imported proteins to the outer membrane and their assembly in the membrane; functions after import of incoming proteins by the mitochondrial outer membrane translocase complex. 89442 0 0 67809 9 ESC/E(Z) complex A multimeric protein complex that can methylate lysine-27 and lysine-9 residues of histone H3. In Drosophila the core subunits of the complex include ESC, E(Z), CAF1 (NURF-55) and SU(Z)12. In mammals the core subunits of the complex include EED, EZH2, SUZ12 and RBBP4. 89444 0 0 67810 9 coated pit A part of the endomembrane system in the form of an invagination of a membrane upon which a clathrin coat forms, and that can be converted by vesicle budding into a clathrin-coated vesicle. Coated pits form on the plasma membrane, where they are involved in receptor-mediated selective transport of many proteins and other macromolecules across the cell membrane, in the trans-Golgi network, and on some endosomes. 89448 0 0 67811 9 lipid tube A macromolecular complex that contains a tube of lipid surrounded by a protein coat. 89451 0 0 67812 9 sperm individualization complex A macromolecular complex that cytoskeletal components and part of the cell membrane, forms at the nuclear end of a male germline syncytium, or cyst, and translocates the over the length of the syncytium in the course of sperm individualization. Each complex contains an array of 64 investment cones, one per nucleus, that move synchronously along the spermatogenic cyst. 89452 0 0 67813 9 SL snRNP A ribonucleoprotein complex that contains spliced leader (SL) RNA. 89454 0 0 67930 9 alpha11-beta1 integrin-collagen type I complex A protein complex that consists of an alpha11-beta1 integrin complex bound to a type I collagen. 89618 0 0 67814 9 cyclin A2-CDK1 complex A protein complex consisting of cyclin A2 and cyclin-dependent kinase 1 (CDK1). Cyclins are characterized by periodicity in protein abundance throughout the cell cycle. Cyclin-dependent kinases represent a family of serine/threonine protein kinases that become active upon binding to a cyclin regulatory partner. 89455 0 0 67815 9 actin cap Polarized accumulation of cytoskeletal proteins (including F-actin) and regulatory proteins in a cell. An example of this is the actin cap found in Saccharomyces cerevisiae. 89456 0 0 76529 42 igd number \N 209426 0 0 67816 9 ELL-EAF complex A heterodimeric protein complex that acts as an RNA polymerase II elongation factor; the complex is conserved from yeast to humans, and is present in S. pombe, but absent from S. cerevisiae. 89459 0 0 67817 9 integral to vacuolar membrane Located such that some or all of the gene product itself penetrates at least one phospholipid bilayer of the vacuolar membrane. May also refer to the state of being buried in the bilayer with no exposure outside the bilayer. 89461 0 0 67818 9 aleurone grain membrane The lipid bilayer surrounding an aleurone grain. 89462 0 0 67819 9 CUL4 RING ubiquitin ligase complex A ubiquitin ligase complex in which a cullin from the Cul4 family and a RING domain protein form the catalytic core; substrate specificity is conferred by an adaptor protein. 89463 0 0 67820 9 other organism postsynaptic membrane A postsynaptic membrane that is part of another organism, i.e. a secondary organism with which the first organism is interacting. A postsynaptic membrane is a specialized area of membrane facing the presynaptic membrane on the tip of the nerve ending and separated from it by a minute cleft (the synaptic cleft). Neurotransmitters transmit the signal across the synaptic cleft to the postsynaptic membrane. 89467 0 0 67821 9 cell projection part Any constituent part of a cell projection, a prolongation or process extending from a cell, e.g. a flagellum or axon. 89468 0 0 67822 9 protein-DNA-RNA complex A macromolecular complex containing protein, DNA, and RNA molecules. 89469 0 0 67823 9 basal cortex The region that lies just beneath the plasma membrane on the basal edge of a cell. 89470 0 0 67824 9 polytene chromosome A type of chromosome in a polyploid cell, formed when multiple copies of homologous chromosomes are aligned side by side to give a giant chromosome in which distinct chromosome bands are readily visible. 89471 0 0 67825 9 plastid ribosome A ribosome contained within a plastid. 89472 0 0 67826 9 micronucleus A membrane-bounded organelle of ciliated protozoan cells that contains a diploid copy of the cell's complete genome. Sections of contiguous sequence in the macronucleus are often interrupted by internal eliminated sequences (IES), and may be permuted, in micronuclei. Genic transcription is not found in micronuclei. Some ciliate species may contain multiple micronuclei per cell. 89473 0 0 67827 9 cytoplasmic vesicle part Any constituent part of cytoplasmic vesicle, a vesicle formed of membrane or protein, found in the cytoplasm of a cell. 89474 0 0 67828 9 primary cilium A cilium found on many different cell types that is typically present in a single copy per cell. A primary cilium may have a variable array of axonemal microtubules and may or may not contain molecular motors. 89475 0 0 67829 9 IgE B cell receptor complex An IgE immunoglobulin complex that is present in the plasma membrane of B cells and is composed of two identical immunoglobulin heavy chains of the IgE isotype and two identical immunoglobulin light chains and a signaling subunit, a heterodimer of the Ig-alpha and Ig-beta proteins. 89476 0 0 67886 9 succinate dehydrogenase complex (ubiquinone) The enzyme that catalyzes the oxidation of succinate and ubiquinone to fumarate and ubiquinol; involved in aerobic respiration, repressed in anaerobic respiration. 89554 0 0 67830 9 protein phosphatase type 1 complex A protein complex that possesses magnesium-dependent protein serine/threonine phosphatase (AMD phosphatase) activity, and consists of a catalytic subunit and one or more regulatory subunits that dictates the phosphatase's substrate specificity, function, and activity. 89477 0 0 67831 9 MHC class I peptide loading complex A large, multisubunit complex which consists of the MHC class I-beta 2 microglobulin dimer, the transporter associated with antigen presentation (TAP), tapasin (an MHC-encoded membrane protein), the chaperone calreticulin and the thiol oxidoreductase ERp57. Functions in the assembly of peptides with newly synthesized MHC class I molecules. 89479 0 0 67832 9 ER-mitochondrion membrane contact site A zone of apposition between endoplasmic-reticulum and mitochondrial membranes, structured by bridging complexes. These contact sites are thought to facilitate inter-organelle calcium and phospholipid exchange. 89480 0 0 67833 9 host cell filopodium Thin, stiff protrusion extended by the leading edge of a motile host cell such as a crawling fibroblast or amoeba, or an axonal growth cone; usually approximately 0.1 um wide, 5-10 um long, can be up to 50 um long in axon growth cones; contains a loose bundle of about 20 actin filaments oriented with their plus ends pointing outward. 89481 0 0 67834 9 female germline ring canal outer rim An electron opaque backbone of the insect ovarian ring canal that is a part of or adjacent to the plasma membrane. The outer rim is established as the cleavage furrow is arrested, and contains F-actin, anillin, glycoproteins and at least one a protein with a high content of phosphorylated tyrosine residues. 89482 0 0 67835 9 stress granule A dense aggregation in the cytosol composed of proteins and RNAs that appear when the cell is under stress. 89484 0 0 67836 9 myosin X complex A myosin complex containing one or more class X myosin heavy chains and associated light chains. 89485 0 0 67837 9 perinuclear endoplasmic reticulum The portion of endoplasmic reticulum, the intracellular network of tubules and cisternae, that occurs near the nucleus. The lumen of the perinuclear endoplasmic reticulum is contiguous with the nuclear envelope lumen (also called perinuclear space), the region between the inner and outer nuclear membranes. 89486 0 0 67838 9 TRAIL death-inducing signaling complex A protein complex formed upon binding of TRAIL to its ligand. The complex includes FADD/Mort1 and procaspase-8 addition to the ligand-bound receptor. 89487 0 0 67839 9 nucleolar chromatin The portion of nuclear chromatin associated with the nucleolus; includes the DNA encoding the ribosomal RNA. 89488 0 0 67840 9 platelet dense tubular network lumen The volume enclosed by the membranes of the platelet dense tubular network. 89489 0 0 69907 13 gametophore axillary hair An axillary hair that grows in a leaf axil of a non-vascular leaf. 92139 0 0 67841 9 alpha-beta T cell receptor complex A T cell receptor complex in which the TCR heterodimer comprises alpha and beta chains, associated with the CD3 complex; recognizes a complex consisting of an antigen-derived peptide bound to a class I or class II MHC protein. 89490 0 0 67842 9 transcriptionally active chromatin The ordered and organized complex of DNA and protein that forms regions of the chromosome that are being actively transcribed. 89491 0 0 67843 9 stereocilium bundle An actin-based, cross-linked cellular protrusion on the apical surface of auditory and vestibular hair cells. Stereocilium bundles act as mechanosensory organelles by responding to fluid motion or fluid pressure changes. 89492 0 0 77137 56 protocol unit \N 210040 0 0 67845 9 crystalloid A transient, cytoplasmic organelle found in Plasmodium species that resembles a cytoplasmic inclusion body and whose function is poorly understood. Crystalloids form in ookinetes and disappear after ookinete-to-oocyst transformation. 89495 0 0 67846 9 Kv4.1-DPP10 channel complex A voltage-gated potassium channel complex that contains the peptidase-related protein DPP10 associated with the channel via interaction with the Kv alpha subunit 4.1. 89497 0 0 67847 9 IgD immunoglobulin complex, circulating A protein complex composed of two identical immunoglobulin heavy chains of the IgD isotype and two identical immunoglobulin light chains, held together by disulfide bonds, and present in the extracellular space, in mucosal areas or other tissues, or circulating in the blood or lymph. 89498 0 0 67848 9 endothelial microparticle A blood microparticle that is derived from, and contains membrane receptors as well as other proteins characteristic of, an endothelial cell. 89499 0 0 67849 9 Tle3-Aes complex A transcriptional repressor complex that consists of a heterodimer of the proteins Tle3 (also known as Grg3b) and Aes (Grg5), which are homologs of the Drosophila groucho gene product. 89500 0 0 67850 9 cullin-RING ubiquitin ligase complex Any ubiquitin ligase complex in which the catalytic core consists of a member of the cullin family and a RING domain protein; the core is associated with one or more additional proteins that confer substrate specificity. 89502 0 0 67851 9 Golgi trans cisterna The Golgi cisterna farthest from the endoplasmic reticulum; the final processing compartment through which proteins pass before exiting the Golgi apparatus; the compartment in which N-linked protein glycosylation is completed. 89503 0 0 67852 9 organellar chromatophore A bacteroid-containing symbiosome in which the bacterial component is a genetically highly reduced cyanobacterium that is photosynthetically active and incapable of an independent existence outside its host. The chromatophore functions as a photosynthetic organelle, and has been found and characterized in the amoeba Paulinella chromatophora. 89504 0 0 67853 9 micropyle An external encapsulating structure part of the chorion. A single cone-shaped specialization that forms an opening in the chorion that allows sperm entry into the egg prior to fertilization. 89507 0 0 67854 9 NALP3 inflammasome complex A protein complex that consists of three components, IPAF, NAIP and caspase-1, and includes among its functions the sensing of flagellin derived from Legionella pneumophila, Salmonella typhimurium, Pseudomonas aeruginosa and Shigella flexneri. 89509 0 0 67855 9 thylakoid light-harvesting complex A thylakoid membrane complex of chlorophylls a and b together with chlorophyll a-b binding proteins. In addition, LHCs contain a number of other proteins, the function of which is speculative, together with accessory pigments. The LHCs capture and transfer energy to photosystems I and II. An example of this is found in Arabidopsis thaliana. 89510 0 0 67887 9 importin, alpha-subunit transport factor (obsolete GO:0005650) OBSOLETE (was not defined before being made obsolete). 89555 1 0 67856 9 suberin network An extracellular matrix part that consists of fatty acid-derived polymers, including both aromatic and aliphatic components. The suberin network is found in specialized plant cell walls, where it is laid down between the primary wall and plasmalemma, forms protective and wound-healing layers, and provides a water-impermeable diffusion barrier. 89511 0 0 67857 9 esterosome lumen The volume enclosed by the membrane of an esterosome. 89514 0 0 67858 9 inositol phosphoceramide synthase complex A protein complex that possesses inositol phosphoceramide synthase activity and contains a catalytic subunit and a regulatory subunit (Aur1p and Kei1p, respectively, in Saccharomyces). 89515 0 0 67859 9 ESCRT II complex An endosomal sorting complex required for transport and functions downstream of ESCRT I complex. It consists of the class E vacuolar protein sorting (Vps) proteins and is required for the membrane recruitment of ESCRT III complex and binds to ubiquitinated cargoes. 89517 0 0 67860 9 septin cytoskeleton The part of the cytoskeleton (the internal framework of a cell) composed of septins and associated proteins. Includes septin cytoskeleton-associated complexes. 89518 0 0 67861 9 COPI coated vesicle membrane The lipid bilayer surrounding a COPI-coated vesicle. 89519 0 0 67862 9 CD20-Lck-Lyn-Fyn complex A protein complex that contains the cell-surface protein CD20 and the Src family tyrosine kinases Lck, Lyn and Fyn. 89520 0 0 67863 9 chaperonin-containing T-complex A multisubunit ring-shaped complex that mediates protein folding in the cytosol without a cofactor. 89521 0 0 67864 9 DASH complex A large protein complex, containing around 8-10 subunits in yeast, including Duo1p, Dam1p, Dad1p and Ask1p. The complex forms part of the kinetochore, associates with microtubules when the kinetochore attaches to the spindle, and plays a role in spindle attachment, chromosome segregation and spindle stability. 89523 0 0 67865 9 bacterial-type flagellum A motor complex composed of an extracellular helical protein filament coupled to a rotary motor embedded in the cell envelope. 89528 0 0 67866 9 clathrin coated vesicle membrane The lipid bilayer surrounding a clathrin-coated vesicle. 89530 0 0 67867 9 stereocilia ankle link complex A complex of proteins that connect growing stereocilia in developing cochlear hair cells, composed of Vlgr1, usherin, vezatin, and whirlin. 89531 0 0 67868 9 unlocalized protein complex (obsolete GO:0005941) OBSOLETE. Used as a holding place for cellular components whose precise localization is, as yet, unknown, or has not been determined by GO (the latter is the major reason for nodes to have this parent); this term should not be used for annotation of gene products. 89532 1 0 67869 9 chylomicron A large lipoprotein particle (diameter 75-1200 nm) composed of a central core of triglycerides and cholesterol surrounded by a protein-phospholipid coating. The proteins include one molecule of apolipoprotein B-48 and may include a variety of apolipoproteins, including APOAs, APOCs and APOE. Chylomicrons are found in blood or lymph and carry lipids from the intestines into other body tissues. 89533 0 0 67870 9 TRC complex An ER membrane insertion complex that contains subunits that recognize two types of transmembrane domain signals. In budding yeast the complex contains Get4p, Get5p, Sgt2p, and at least two heat shock proteins (HSPs). 89535 0 0 67871 9 cytosolic creatine kinase complex A dimeric protein complex having creatine kinase activity. 89536 0 0 67872 9 multivesicular body A type of late endosome in which regions of the limiting endosomal membrane invaginate to form internal vesicles; membrane proteins that enter the internal vesicles are sequestered from the cytoplasm. 89538 0 0 76530 51 genotyping_project_name \N 209427 0 0 67873 9 cortical layer of collagen and cuticulin-based cuticle extracellular matrix The cuticle layer that lies directly beneath the lipid-containing epicuticle. The cortical layer contains collagens and insoluble, non-collagenous cuticulins and is characterized by a distinct annular pattern consisting of regularly spaced annular ridges delineated by annular furrows. An example of this component is found in Caenorhabditis elegans. 89540 0 0 67874 9 lipid particle Any particle of coalesced lipids in the cytoplasm of a cell. May include associated proteins. 89541 0 0 67875 9 plasma membrane proton-transporting V-type ATPase, V1 domain The V1 domain of a proton-transporting V-type ATPase found in the plasma membrane. 89542 0 0 67876 9 decaprenyl diphosphate synthase complex A complex that possesses di-trans,poly-cis-decaprenylcistransferase activity; involved in ubiquinone biosynthesis. 89543 0 0 67877 9 extra-invasive hyphal membrane A host-derived membrane surrounding the symbiont invasive hypha during symbiosis. 89544 0 0 67878 9 interferon regulatory factor 3 complex An interferon regulatory factor complex that consists of a homodimer of interferon regulatory factor 3. 89545 0 0 67879 9 cell-cell junction A cell junction that forms a connection between two cells; excludes direct cytoplasmic junctions such as ring canals. 89547 0 0 67880 9 transforming growth factor beta type II receptor complex A receptor complex that consists of two transforming growth factor beta (TGF-beta) type II receptor monomers. TGF-beta type II receptor dimers form in the presence or absence of ligand, and upon ligand binding can associate with TGF-beta type I receptor dimers. 89548 0 0 67881 9 plasma membrane-derived photosystem I A protein complex located in the plasma membrane-derived thylakoid. The photosystem functions as a light-dependent plastocyanin-ferredoxin oxidoreductase, transferring electrons from plastocyanin to ferredoxin. Examples of this complex are found in bacterial species. 89549 0 0 67882 9 chromatin silencing complex Any protein complex that mediates changes in chromatin structure that result in transcriptional silencing. 89550 0 0 67883 9 t-UTP complex A protein complex that forms a subcomplex of the 90S preribosome and is required for the subsequent assembly of the rest of the preribosome. In S. cerevisiae, it is composed of Utp5p, Utp4p, Nan1p, Utp8p, Utp9p, Utp10 and Utp15p. 89551 0 0 67884 9 DNA replication termination region A chromosomal region that contains fork pausing elements influencing the progression and merging of DNA replication forks. 89552 0 0 67885 9 early endosome A membrane-bounded organelle that receives incoming material from primary endocytic vesicles that have been generated by clathrin-dependent and clathrin-independent endocytosis; vesicles fuse with the early endosome to deliver cargo for sorting into recycling or degradation pathways. 89553 0 0 67888 9 core TFIIH complex portion of NEF3 complex The core TFIIH complex when it is part of the nucleotide-excision repair factor 3 (NEF3). In S. cerevisiae, it is composed of Rad3p, Tfb1p, Tfb2p, Ssl1p, and Tfb4p. In humans, it is composed of ERCC2, p62, p55, p44, p34. 89556 0 0 67889 9 sulfite reductase complex (NADPH) A multisubunit iron flavoprotein, which in yeast is composed of 2 alpha and 2 beta subunits. Catalyzes the reduction of sulfite to sulfide. 89557 0 0 67890 9 pollen coat A layer of extracellular matrix deposited onto the surface of the pollen wall upon disintegration of the tapetal layer of the anther wall in the late stages of pollen development. The composition of this material is highly heterogeneous and includes waxes, lipid droplets, small aromatic molecules, and proteins. The pollen coat is proposed to have many functions, such as holding pollen in the anther until dispersal, facilitation of pollen dispersal, protection of pollen from water loss and UV radiation, and facilitation of adhesion of pollen to the stigma. 89559 0 0 67891 9 dense core granule membrane The lipid bilayer surrounding a dense core granule. 89562 0 0 67892 9 cyclin-dependent protein kinase 5 holoenzyme complex A protein complex that activates cyclin-dependent kinase 5; composed of regulatory and catalytic subunits. 89563 0 0 67893 9 prespliceosome A spliceosomal complex that is formed by association of the 5' splice site and the branch point sequence with specific snRNPs. The prespliceosome includes many proteins in addition to those found in the bound snRNPs. Commitment to a given pair of 5' and 3' splice sites occurs at the time of prespliceosome formation. 89565 0 0 67894 9 alphav-beta3 integrin-thrombospondin complex A protein complex that consists of an alphav-beta3 integrin complex bound to thrombospondin. 89566 0 0 67895 9 U7 snRNP A ribonucleoprotein complex that contains the U7 snRNA and is required for the 3'-end processing of replication-dependent histone pre-mRNAs. 89568 0 0 67896 9 interleukin-23 complex A protein complex that is composed of an interleukin-23 alpha (p19, product of the IL23A gene) and an interleukin-12 beta (p40, product of the IL12B gene) subunit and is secreted into the extracellular space. 89570 0 0 67928 9 extracellular isoamylase complex A protein complex whose composition varies amongst species; in rice it probably exists in a homo-tetramer to homo-hexamer form and in Gram negative bacteria as a dimer. Functions in the hydrolysis of alpha-(1,6)-D-glucosidic branch linkages. Isoamylases in animals are localized in the extracellular space. 89615 0 0 67929 9 integrator complex A protein complex that stably associates with the C-terminus of RNA polymerase II and mediates 3'-end processing of small nuclear RNAs generated by RNA polymerase II. 89616 0 0 69908 13 microsporangium tapetum An tapetum that is part of a microsporangium wall. 92140 0 0 67897 9 ribosome An intracellular organelle, about 200 A in diameter, consisting of RNA and protein. It is the site of protein biosynthesis resulting from translation of messenger RNA (mRNA). It consists of two subunits, one large and one small, each containing only protein and RNA. Both the ribosome and its subunits are characterized by their sedimentation coefficients, expressed in Svedberg units (symbol: S). Hence, the prokaryotic ribosome (70S) comprises a large (50S) subunit and a small (30S) subunit, while the eukaryotic ribosome (80S) comprises a large (60S) subunit and a small (40S) subunit. Two sites on the ribosomal large subunit are involved in translation, namely the aminoacyl site (A site) and peptidyl site (P site). Ribosomes from prokaryotes, eukaryotes, mitochondria, and chloroplasts have characteristically distinct ribosomal proteins. 89572 0 0 67898 9 outer endospore membrane The outer membrane around a bacterial endospore, located between the endospore cortex and endospore coat. 89574 0 0 67899 9 M band The midline of aligned thick filaments in a sarcomere; location of specific proteins that link thick filaments. Depending on muscle type the M band consists of different numbers of M lines. 89575 0 0 76531 51 genotyping_user_id \N 209428 0 0 67900 9 meiotic septin complex A heterooligomeric septin complex that acts during meiotic cell division. 89576 0 0 67901 9 host intracellular organelle Organized structure of distinctive morphology and function, occurring within the host cell. Includes the nucleus, mitochondria, plastids, vacuoles, vesicles, ribosomes and the cytoskeleton. Excludes the plasma membrane. The host is defined as the larger of the organisms involved in a symbiotic interaction. 89577 0 0 67902 9 host cell nuclear part Any constituent part of a host cell's nucleus, a membrane-bounded organelle of eukaryotic cells in which chromosomes are housed and replicated. The host is the larger of the organisms involved in a symbiotic interaction. 89578 0 0 67903 9 germline ring canal Germline specific intercellular bridge. During cyst formation in insects, ring canals interconnect the cells of the cyst, facilitating the passage of cytoplasmic components between cells. 89579 0 0 67904 9 chloroplast chromosome A circular DNA molecule containing chloroplast encoded genes. 89581 0 0 67905 9 intine The innermost of the major layers of the pollen grain wall which underlies the exine and borders the cytoplasm. 89582 0 0 67906 9 host cell mitochondrial membrane Either of the lipid bilayers that surround the host cell mitochondrion and form the host cell mitochondrial envelope. 89583 0 0 67907 9 presynaptic active zone A specialized region of the plasma membrane and cell cortex of a presynaptic neuron; encompasses a region of the plasma membrane where synaptic vesicles dock and fuse, synaptic vesicles, and a specialized cortical cytoskeletal matrix. 89584 0 0 67908 9 capsule A protective structure surrounding some fungi and bacteria, attached externally to the cell wall and composed primarily of polysaccharides. Capsules are highly organized structures that adhere strongly to cells and can not be easily removed. Capsules play important roles in pathogenicity, preventing phagocytosis by other cells, adherance, and resistance to dessication. 89585 0 0 67909 9 symbiosome A double-enveloped cell compartment, composed of an endosymbiont with its plasmalemma (as inner envelope) and a non-endosymbiotic outer envelope (the perisymbiontic membrane). 89588 0 0 67910 9 HIR complex A protein complex proposed to be involved in replication-independent nucleosome assembly, by promoting histone deposition onto DNA. For example, in Saccharomyces, the complex contains Hir1p, Hir2p, Hir3p, and Hpc2p. 89589 0 0 67911 9 MPF complex A complex consisting of a Cdc2-class (also known as Cdc28) cyclin-dependent kinase and an M-phase cyclin such as S. pombe Cdc13. The MPF complex phosphorylates and activates the anaphase promoting complex (APC). 89592 0 0 67912 9 investment cone A cytoskeletal part that consists of a microfilament-rich cone that forms round each nucleus in a spermatogenic cyst and translocates the length of the cyst during sperm individualization. 89594 0 0 67913 9 extrinsic to nuclear outer membrane Loosely bound to one surface of the nuclear outer membrane, but not integrated into the hydrophobic region. 89596 0 0 67914 9 extrinsic to intraperoxisomal membrane Loosely bound to the intraperoxisomal surface of the peroxisomal membrane, but not integrated into the hydrophobic region. 89597 0 0 67915 9 cortical microtubule Arrays of microtubules underlying and connected to the plasma membrane in the cortical cytosol. 89598 0 0 67919 9 excitatory synapse A synapse in which an action potential in the presynaptic cell increases the probability of an action potential occurring in the postsynaptic cell. 89602 0 0 67920 9 transport vesicle membrane The lipid bilayer surrounding a transport vesicle. 89603 0 0 67921 9 90S preribosome A large ribonucleoprotein complex considered to be the earliest preribosomal complex. In S. cerevisiae, it has a size of 90S and consists of the 35S pre-rRNA, early-associating ribosomal proteins most of which are part of the small ribosomal subunit, the U3 snoRNA and associated proteins. 89604 0 0 67922 9 Cul2-RING ubiquitin ligase complex A ubiquitin ligase complex in which a cullin from the Cul2 subfamily and a RING domain protein form the catalytic core; substrate specificity is conferred by an elongin-BC adaptor and a SOCS/BC box protein. 89606 0 0 67923 9 steroid hormone aporeceptor complex A protein complex consisting of a steroid receptor associated with nonreceptor proteins, minimally a dimer of Hsp90 and a monomer of hsp56/FKBP59; forms in the absence of bound ligand. 89607 0 0 67924 9 BLOC-1 complex A protein complex required for the biogenesis of specialized organelles of the endosomal-lysosomal system, such as melanosomes and platelet dense granules. Many of the protein subunits are conserved between mouse and human; the mouse complex contains the Pallidin, Muted, Cappuccino, Dysbindin, Snapin, BLOS1, BLOS2, AND BLOS3 proteins. 89609 0 0 67925 9 TEAD-2 multiprotein complex A protein complex that consists of the DNA binding protein TEAD-2 bound to 12 other polypeptides including the transcriptional coactivator YAP, the multi-PDZ domain protein MPDZ (also called MUPP1), a 14-3-3 domain protein, and others. 89610 0 0 67926 9 rhoptry membrane The lipid bilayer surrounding a rhoptry. 89612 0 0 67927 9 mitochondrial respiratory chain complex IV A protein complex located in the mitochondrial inner membrane that forms part of the mitochondrial respiratory chain. Contains the 13 polypeptide subunits of cytochrome c oxidase, including cytochrome a and cytochrome a3. Catalyzes the oxidation of reduced cytochrome c by dioxygen (O2). 89613 0 0 67931 9 centriolar satellite A small (70-100 nm) cytoplasmic granule that contains a number of centrosomal proteins; centriolar satellites traffic toward microtubule minus ends and are enriched near the centrosome. 89620 0 0 67932 9 DRM complex A transcriptional repressor complex that contains the lin-9, lin-35, lin-37, lin-52, lin-53, lin-5is involved in 4-, dpl-1 and efl-1 proteins, and is involved in cell fate specification. 89623 0 0 67933 9 cytoplasmic ubiquitin ligase complex A ubiquitin ligase complex found in the cytoplasm. 89625 0 0 67934 9 positive transcription elongation factor complex b A transcription elongation factor complex that facilitates the transition from abortive to productive elongation by phosphorylating the CTD domain of the large subunit of DNA-directed RNA polymerase II, holoenzyme. Contains cyclin T and a cyclin-dependent protein kinase catalytic subunit. 89626 0 0 67935 9 plasma membrane proton-transporting ATP synthase complex A proton-transporting ATP synthase complex found in the plasma membrane. Examples of this component are found in Bacterial species. 89629 0 0 67936 9 exine The outer layer of the pollen grain wall which is composed primarily of sporopollenin. 89631 0 0 68191 9 nuclear proteasome complex A proteasome found in the nucleus of a cell. 89995 0 0 76533 53 Planning Event \N 209409 0 0 67937 9 host cell smooth endoplasmic reticulum The irregular network of unit membranes, visible only by electron microscopy, that occurs in the host cell cytoplasm of many eukaryotic cells. The membranes form a complex meshwork of tubular channels, which are often expanded into slitlike cavities called cisternae. The host smooth ER has no ribosomes adhering to the outer surface. 89632 0 0 67938 9 infected host cell surface knob Protrusion that develops in the plasma membrane of a parasitized erythrocyte. An example of this component is found in Plasmodium species. 89633 0 0 67939 9 viral nucleocapsid The complete protein-nucleic acid complex that is the packaged form of the genome in a virus particle. 89634 0 0 67940 9 minor mitochondrial derivative The smaller of the two mitochondrial derivatives that arise by the unfolding of the Nebenkern during flagellum elongation. 89636 0 0 67941 9 meprin A complex A protein complex that is located in the cell membrane, and is involved in the metabolism of peptides, including neuropeptides. The complex has metalloendopeptidase activity that catalyzes the hydrolysis of protein and peptide substrates, preferentially on carboxyl side of hydrophobic residues. 89637 0 0 67942 9 cell division site The eventual plane of cell division (also known as cell cleavage or cytokinesis) in a dividing cell. The cleavage apparatus, composed of septin structures and the actomyosin contractile ring, forms along this plane. The mitotic, or meiotic, spindle is aligned perpendicular to the division plane. 89639 0 0 67943 9 PML body A class of nuclear body; they react against SP100 auto-antibodies (PML, promyelocytic leukemia); cells typically contain 10-30 PML bodies per nucleus; alterations in the localization of PML bodies occurs after viral infection. 89641 0 0 67944 9 U11/U12 snRNP A ribonucleoprotein complex formed by the association of the U11 and U12 small nuclear ribonucleoproteins. 89643 0 0 67945 9 etioplast envelope The double lipid bilayer enclosing the etioplast and separating its contents from the rest of the cytoplasm; includes the intermembrane space. 89645 0 0 67946 9 laminin-5 complex A laminin complex composed of alpha3, beta3 and gamma2 polypeptide chains. 89646 0 0 67947 9 protein serine/threonine phosphatase complex A complex, normally consisting of a catalytic and a regulatory subunit, which catalyzes the removal of a phosphate group from a serine or threonine residue of a protein. 89647 0 0 68044 9 cytoplasmic mitotic chromosome (obsolete GO:0000231) OBSOLETE. A chromosome found in the cytoplasm during mitosis. 89778 1 0 67948 9 Kv4.3-KChIP1 channel complex A voltage-gated potassium channel complex that contains the Kv channel interacting protein KChIP1 associated with the channel via interaction with the Kv alpha subunit 4.3. 89648 0 0 67949 9 trimethylamine-N-oxide reductase complex An enzyme complex that catalyzes the reduction of trimethylamine N-oxide to trimethylamine. 89649 0 0 67950 9 mitochondrial outer membrane translocase complex A large complex of the mitochondrial outer membrane that mediates transport of proteins into all mitochondrial compartments. 89650 0 0 67951 9 photosystem II A photosystem that contains a pheophytin-quinone reaction center with associated accessory pigments and electron carriers. In cyanobacteria and chloroplasts, in the presence of light, PSII functions as a water-plastoquinone oxidoreductase, transferring electrons from water to plastoquinone, whereas other photosynthetic bacteria carry out anoxygenic photosynthesis and oxidize other compounds to re-reduce the photoreaction center. 89651 0 0 67952 9 perikaryon The portion of the cell soma (cell body) that excludes the nucleus. 89652 0 0 67953 9 mitochondrial inner membrane protein insertion complex A multi-subunit complex embedded in the mitochondrial inner membrane that mediates insertion of carrier proteins into the inner membrane. 89653 0 0 67954 9 alpha6-beta4 integrin complex An integrin complex that comprises one alpha6 subunit and one beta1 subunit. 89655 0 0 67955 9 rhabdomere membrane The portion of the plasma membrane surrounding the rhabdomere. 89656 0 0 67956 9 mRNA cap methyltransferase complex A protein complex that consists of an RNA 5' triphosphatase and a guanyl transferase (Cet1p and Ceg1p in S. cerevisiae; Pct1 and Ceg1 in S. pombe) and is involved in mRNA capping. 89657 0 0 67957 9 new spindle pole body The spindle pole body that is formed by spindle pole body duplication, and to which proteins involved in mitotic exit signaling (for example, the septation initiation network in fission yeast) localize. 89659 0 0 67958 9 P3 peroxisome A subform of peroxisome that corresponds to an intermediate in a peroxisome assembly pathway, which operates by conversion of peroxisomal subforms in the direction P1, P2 -> P3 -> P4 -> P5 -> P6. P3 peroxisomes are formed by fusion of P1 and P2 peroxisomes, and are distinguished from the other subforms on the bases of buoyant density and protein content. 89661 0 0 67959 9 epicuticle of collagen and cuticulin-based cuticle extracellular matrix A lipid-containing layer of cuticle that lies between the cortical layer and the surface coat. An example of this component is found in Caenorhabditis elegans. 89662 0 0 67960 9 cytosolic tRNA (obsolete GO:0005564) OBSOLETE (was not defined before being made obsolete). 89663 1 0 67961 9 hydrogenosome lumen The volume enclosed by the hydrogenosome membrane. 89664 0 0 67963 9 annulate lamellae Stacks of endoplasmic reticulum (ER) membranes containing a high density of nuclear pores, thought to form from excess nuclear membrane components, that have been described in a number of different cells. Annulate lamellar membranes are continuous with and embedded within the ER. 89666 0 0 67964 9 Scrib-APC complex A protein complex that contains the Scribble protein (a cell polarity determinant) and the tumor suppressor protein adenomatous polyposis coli (APC); may be involved in the control of cell proliferation. 89668 0 0 67965 9 plasma membrane light-harvesting complex A plasma membrane protein-pigment complex that may be closely or peripherally associated to photosynthetic reaction centers that participate in harvesting and transferring radiant energy to the reaction center. Examples of this complex are found in bacterial species. 89669 0 0 67966 9 NDC1 complex A protein complex that forms part of the nuclear pore complex, and contains three transmembrane nucleoporins, encoded in S. cerevisiae by Ndc1p, Pom152p and Pom34p. 89670 0 0 67967 9 polkadots A punctate, filamentous structure composed of Bcl10 that appears in the cytoplasm of T-cells shortly after T-cell receptor stimulation. Polkadots stands for Punctate Oligomeric Killing and Activating DOmains Transducing Signals. 89672 0 0 67968 9 laminin-1 complex A laminin complex composed of alpha1, beta1 and gamma1 polypeptide chains. 89675 0 0 76534 53 Planting Event \N 209429 0 0 67970 9 terminal cisterna lumen The region between the inner and outer lipid bilayers of the terminal cisterna envelope. This space is enriched in calsequestrin. 89677 0 0 67971 9 activin B complex A nonsteroidal regulator, composed of two covalently linked inhibin beta-B subunits (sometimes known as activin beta-B or activin/inhibin beta-B). 89678 0 0 67972 9 exportin (obsolete GO:0005651) OBSOLETE (was not defined before being made obsolete). 89680 1 0 67973 9 CVT complex A protein complex that is involved in the CVT pathway. In budding yeast, the CVT complex consists of multimers of preApe1p. 89681 0 0 67974 9 XPC complex A nucleotide-excision repair complex that is involved in damage sensing during global genome nucleotide excision repair (GG-NER). It is part of the pre-incision (or initial recognition) complex bound to sites of DNA damage. In human, it is composed of XPC, RAD23B and CETN2. 89682 0 0 67975 9 isocitrate dehydrogenase complex (NAD+) Complex that possesses isocitrate dehydrogenase (NAD+) activity. 89686 0 0 67976 9 alpha1-beta1 integrin-tyrosine-protein phosphatase non-receptor type 2 complex A protein complex that consists of an alpha1-beta1 integrin complex bound to tyrosine-protein phosphatase non-receptor type 2. 89687 0 0 67977 9 host cell envelope An envelope that surrounds a bacterial host cell and includes the host cytoplasmic membrane and everything external, encompassing the host periplasmic space, host cell wall, and host outer membrane if present. 89689 0 0 67978 9 G-protein beta/gamma-subunit complex The heterodimer formed by the beta and gamma subunits of a heterotrimeric G protein, which dissociates from the alpha subunit upon guanine nuclotide exchange. 89690 0 0 67979 9 platelet alpha granule membrane The lipid bilayer surrounding the platelet alpha granule. 89691 0 0 67980 9 ferredoxin:thioredoxin reductase complex A protein complex that possesses ferredoxin:thioredoxin reductase activity. 89692 0 0 67981 9 potassium channel complex An ion channel complex through which potassium ions pass. 89693 0 0 67982 9 plastid part Any constituent part of a plastid, a member of a family of organelles found in the cytoplasm of plants and some protists, which are membrane-bounded and contain DNA. Plant plastids develop from a common type, the proplastid. 89694 0 0 67983 9 transforming growth factor beta type I receptor complex A receptor complex that consists of two transforming growth factor beta (TGF-beta) type I receptor monomers. TGF-beta type I receptor dimers form in the presence or absence of ligand, and can associate with ligand-bound TGF-beta type II receptor dimers. 89695 0 0 67984 9 DNA-dependent protein kinase complex A protein complex that is involved in the repair of DNA double-strand breaks and, in mammals, V(D)J recombination events. It consists of the DNA-dependent protein kinase catalytic subunit (DNA-PKcs) and the DNA end-binding heterodimer Ku. 89696 0 0 67985 9 periarbuscular membrane A host-derived membrane surrounding the symbiont arbuscule during symbiosis. 89697 0 0 67986 9 receptor complex Any protein complex that undergoes combination with a hormone, neurotransmitter, drug or intracellular messenger to initiate a change in cell function. 89698 0 0 67987 9 FAl1-SGD1 complex A protein complex involved in the 18S rRNA biogenesis. In S. cerevisiae this complex consists of Fal1p and Sgd1p and in humans this complex consists of NOM1 and eIF4AIII subunits. 89699 0 0 67988 9 viral assembly compartment A membrane-bounded compartment that forms in the cytoplasm of virus-infected cells, in which virus assembly takes place. 89701 0 0 67989 9 BLOC-2 complex A protein complex required for the biogenesis of specialized organelles of the endosomal-lysosomal system, such as melanosomes and platelet dense granules. The human complex contains the Hps3, Hps5, and Hps6 proteins; the mouse complex contains ru2 and ru. 89702 0 0 67990 9 condensed nuclear chromosome inner kinetochore The region of a condensed nuclear chromosome kinetochore closest to centromeric DNA; this layer may help define underlying centromeric chromatin structure and position of the kinetochore on the chromosome. 89706 0 0 67991 9 PUMA-BCL-2 complex A heterodimeric protein complex consisting of PUMA and BCL-2, members of the Bcl-2 family of anti- and proapoptotic regulators. 89707 0 0 67992 9 DNA topoisomerase IV complex A heterodimeric enzyme, which in most bacterial species is composed of two subunits, ParC and ParE. Functions in chromosome segregation and can relax supercoiled DNA. 89708 0 0 67993 9 spindle The array of microtubules and associated molecules that forms between opposite poles of a eukaryotic cell during mitosis or meiosis and serves to move the duplicated chromosomes apart. 89710 0 0 67994 9 thylakoid (sensu Bacteria) (obsolete GO:0009580) OBSOLETE (was not defined before being made obsolete). 89711 1 0 67995 9 RAVE complex A multisubunit complex that in Saccharomyces is composed of three subunits, Rav1p, Rav2p and Skp1p. Acts transiently to catalyze assembly of cytoplasmic V1, with membrane embedded V0 to form the V-ATPase holoenzyme. 89712 0 0 67997 9 gamma-tubulin small complex, spindle pole body A complex composed of two gamma-tubulin molecules and conserved non-tubulin proteins isolated by fractionation from cells. The complex, approximately 6S-9S, is analogous to the small complex in animal cells but contains fewer subunits, and is not thought to multimerize into larger functional units, like complexes in those organisms. An example of this structure is found in Saccharomyces cerevisiae. 89716 0 0 67998 9 NatB complex A conserved complex that catalyzes the transfer of an acetyl group to the N-terminal residue of a protein acceptor molecule that has a Met-Glu, Met-Asp, Met-Asn, or Met-Met N-terminus. In Saccharomyces the complex includes Nat3p and Mdm20p. 89717 0 0 67999 9 Z chromosome The sex chromosome present in both sexes of species in which the female is the heterogametic sex. Two copies of the Z chromosome are present in each somatic cell of males and one copy is present in females. 89718 0 0 68000 9 type III intermediate filament associated protein (obsolete GO:0001724) OBSOLETE. Proteins that associate with the ends of intermediate filaments and couple the intermediate filaments to the plasma membrane. 89719 1 0 68001 9 holo-[acyl-carrier protein] synthase complex (obsolete GO:0009335) OBSOLETE. An enzyme complex that catalyzes the formation of holo-[acyl-carrier protein] from CoA and apo-[acyl-carrier protein]. 89720 1 0 68002 9 gerontoplast A plastid found in senescing, formerly green tissues that is derived from a chloroplast that undergoes an organized developmental program of senescence. 89721 0 0 68252 9 bacterial-type flagellum hook The portion of the flagellum that connects the filament to the basal body. Examples of this component are found in bacteria. 90086 0 0 68003 9 alphaV-beta3 integrin-CD47-FCER2 complex A protein complex that consists of an alphaV-beta3 integrin complex bound to the cell surface protein CD47 and the low-affinity immunoglobulin epsilon Fc receptor (FCER2). 89724 0 0 68004 9 euchromatin A dispersed and relatively uncompacted form of chromatin. 89726 0 0 68005 9 methyltransferase complex A protein complex that possesses methyltransferase activity. 89727 0 0 68006 9 ACF complex A chromatin-remodeling complex that catalyzes the ATP-dependent assembly of periodic nucleosome arrays. In Drosophila, the complex comprises ACF1 and ISWI. 89728 0 0 68007 9 importin alpha-subunit nuclear export complex A protein complex which usually consists of three components, e.g. in Xenopus, the importin alpha-subunit/CAS/Ran, and which functions to shuttle the importin alpha-subunit out of the nucleus through the nuclear pore. 89730 0 0 68008 9 ADPG pyrophosphorylase complex Complex that possesses ADPG pyrophosphorylase activity. In all organisms where it has been found, the complex is a tetramer. In bacteria, it is a homotetramer. In plants, the complex is a heterotetramer composed small and large subunits. 89731 0 0 68009 9 longitudinal side of cell surface The side of the cell parallel to the zygotic axis. 89733 0 0 68010 9 N-terminal protein acetyltransferase complex A complex that catalyzes the transfer of an acetyl group to the N-terminal residue of a protein acceptor molecule. 89734 0 0 68011 9 Sec62/Sec63 complex A protein complex involved in the posttranslational targeting of proteins to the ER. In yeast, it is a tetrameric complex consisting of Sec62p, Sec63p, Sec71p and Sec72p. 89735 0 0 68012 9 adventitious septum A cell septum whose formation is independent of nuclear division. 89736 0 0 68122 9 amyloplast ADPG pyrophosphorylase complex An ADPG pyrophosphorylase complex found in the amyloplast. 89894 0 0 68013 9 plasma membrane-derived thylakoid ribulose bisphosphate carboxylase complex A complex, located in the plasma membrane-derived thylakoid, containing either both large and small subunits or just small subunits. It carries out the activity of producing 3-phosphoglycerate from carbon dioxide and ribulose-1,5-bisphosphate. 89737 0 0 68014 9 mating projection tip The apex of the mating projection in unicellular fungi exposed to mating pheromone; site of polarized growth. 89738 0 0 68015 9 gamma DNA polymerase complex A DNA polymerase complex consisting of a large subunit, responsible for the catalytic activities, and a small accessory subunit. Functions in the replication and repair of mitochondrial DNA. 89739 0 0 68016 9 synaptobrevin 2-SNAP-25-syntaxin-4 complex A SNARE complex that contains synaptobrevin 2 (VAMP2), SNAP-25, and syntaxin 4 (or orthologs thereof). 89740 0 0 68017 9 proplastid stroma The space enclosed by the double membrane of a proplastid. 89741 0 0 68018 9 condensin complex A multisubunit protein complex that plays a central role in chromosome condensation. 89742 0 0 68019 9 chloroplastic endopeptidase Clp complex A Clp endopeptidase complex located in the chloroplast. 89745 0 0 68020 9 stereocilia tip link A stereocilia link that is formed by a fine filament running more or less vertically upward from the tip of each shorter stereocilium to attach at a higher point on its adjacent taller neighbor. Tilting the bundle puts tension on the filaments, which pull on mechanically gated ion channels in the membrane of the stereocilia. 89746 0 0 68021 9 photosystem A complex located in a photosynthetic membrane that consists of a photoreaction center associated with accessory pigments and electron carriers. Examples of this component are found in Arabidopsis thaliana and in photosynthetic bacterial and archaeal species. 89748 0 0 68022 9 TFIIIC-TOP1-SUB1 complex A protein complex that contains TFIIIC, topoisomerase 1, and Sub1/PC4. Characterized in human, the complex is involved in regulating transcription from RNA polymerase III (Pol III) promoters. Topoisomerase 1 and Sub1 enhance the accuracy of transcription termination, and promote reinitiation by Pol III. 89750 0 0 68023 9 Toc complex Protein translocon complex at the chloroplast outer membrane. 89752 0 0 68024 9 cytosolic proteasome core complex, alpha-subunit complex The proteasome core subcomplex that constitutes the two outer rings of the cytosolic proteasome core complex. 89754 0 0 68025 9 septin patch (obsolete GO:0032167) OBSOLETE. An amorphous-appearing accumulation of septin proteins at the future site of cytokinesis. 89755 1 0 68026 9 GSE complex A conserved protein complex required for protein sorting from endosome to the plasma membrane. In budding yeast, S. cerevisiae, this complex includes Gtr1p, Gtr2p, Slm4p, Meh1p and Ltv1p and it sorts Gap1p. 89756 0 0 68027 9 secretory vesicle membrane (obsolete GO:0005804) OBSOLETE (was not defined before being made obsolete). 89757 1 0 68028 9 plastid type II fatty acid synthase complex (obsolete GO:0031378) OBSOLETE A fatty acid synthase complex in which each polypeptide chain catalyzes a single activity, located in a plastid. 89758 1 0 68031 9 procollagen-proline 4-dioxygenase complex, alpha(I) type A procollagen-proline 4-dioxygenase complex that contains alpha subunits of the type I isoform; its activity is readily inhibited by poly(L-proline). 89761 0 0 68032 9 chromaffin granule membrane The lipid bilayer surrounding a chromaffin granule, a specialized secretory vesicle found in the cells of adrenal glands and various other organs, which is concerned with the synthesis, storage, metabolism, and secretion of epinephrine and norepinephrine. 89762 0 0 68033 9 oligosaccharyltransferase III complex An oligosaccharyltransferase (OST) complex that contains the seven polypeptides found in OST complex I, plus heterotrimeric Sec61alpha-beta-gamma and the tetrameric TRAP complex. Of the three forms of mammalian OST complexes identified, the OSTIII complex has the strongest affinity for ribosomes. 89763 0 0 68034 9 bleb A cell extension characterized by rapid formation, rounded shape, and scarcity of organelles within the protrusions. 89764 0 0 68035 9 heterogeneous nuclear ribonucleoprotein complex Particulate complex of heterogeneous nuclear RNA (hnRNA; a heterogeneous mixture of RNA molecules of high Mr with a rapid turnover rate that occurs in cell nuclei during protein synthesis; it is the form of RNA synthesized in eukaryotes by RNA polymerase II, that which is translated into protein) with protein, which is cell-specific and heterogeneous. The protein component may play a role in the processing of the hnRNA to mRNA. 89765 0 0 68036 9 telomerase RNA (obsolete GO:0005573) OBSOLETE (was not defined before being made obsolete). 89766 1 0 68037 9 dendrite terminus A structure at the distal end of a dendrite adapted to carry out a specific function, e.g. dendriole. 89767 0 0 77138 56 protocol comment \N 210041 0 0 68038 9 GPI-anchor transamidase complex An enzyme complex which in humans and yeast consists of at least five proteins; for example, the complex contains GAA1, GPI8, PIG-S, PIG-U, and PIG-T in human, and Gaa1p, Gab1p, Gpi8p, Gpi16p, and Gpi17p in yeast. Catalyzes the posttranslational attachment of the carboxyl-terminus of a precursor protein to a GPI-anchor. 89768 0 0 68039 9 U4atac/U6atac snRNP A ribonucleoprotein complex that contains base-paired U4atac and U6atac small nuclear RNAs. 89770 0 0 68040 9 transverse filament A structural unit of the synaptonemal complex that spans the regions between the lateral elements and connects them. 89771 0 0 68041 9 extrinsic to internal side of plasma membrane Loosely bound to the surface of the plasma membrane that faces the cytoplasm, but not integrated into the hydrophobic region. 89772 0 0 68042 9 mRNA cleavage and polyadenylation specificity factor complex A multisubunit complex that binds to the canonical AAUAAA hexamer and to U-rich upstream sequence elements on the pre-mRNA, thereby stimulating the otherwise weakly active and nonspecific polymerase to elongate efficiently RNAs containing a poly(A) signal. 89773 0 0 68043 9 Ragulator complex A protein complex that contains MAPKSP1 (MP1, Map2k1ip1), ROBLD3 (p14, Mapbpip), and C11orf59 (p18). The complex is anchored to lipid rafts in late endosome membranes via C11orf59, recruits mTORC1 to lysosomal membranes in amino acid signaling to mTORC1, and is also involved in ERK/MAPK signaling. 89775 0 0 68045 9 RNA polymerase I core factor complex A RNA polymerase I-specific transcription factor complex that is required for the transcription of rDNA by RNA polymerase I. In yeast the complex consists of Rrn6p, Rrn7p, and Rrn11p. 89779 0 0 68046 9 replication compartment Globular nuclear domains where the transcription and replication of the viral genome occurs. More than one site can be present simultaneously. 89781 0 0 68047 9 monolayer-surrounded lipid storage body A subcellular organelle of plant cells surrounded by 'half-unit' or a monolayer membrane instead of the more usual bilayer. The storage body has a droplet of triglyceride surrounded by a monolayer of phospholipids, interacting with the triglycerides and the hydrophilic head groups facing the cytosol, and containing major protein components called oleosins. 89783 0 0 68048 9 SUN-KASH complex A protein complex that spans the nuclear outer and inner membranes, thereby linking the major cytoplasmic cytoskeleton elements to the nuclear lumen; the complex is conserved in eukaryotes and contains proteins with SUN and KASH domains. 89785 0 0 68049 9 myosin XIII complex A myosin complex containing one or more class XIII myosin heavy chains and associated light chains. 89786 0 0 68050 9 dendritic tuft The terminal specialization found in some types of dendrites which consists of numerous small terminal branches, giving the dendrite a tufted appearance. 89787 0 0 68051 9 Golgi to ER transport vesicle A vesicle that mediates transport from the Golgi to the endoplasmic reticulum. 89789 0 0 68052 9 heavy chain immunoglobulin complex A protein complex composed of two identical immunoglobulin heavy chains of the IgNAR isotype held together by disulfide bonds and lacking immunoglobulin light chains. 89790 0 0 68053 9 Ino80 complex A multisubunit protein complex that contains the Ino80p ATPase; exhibits chromatin remodeling activity and 3' to 5' DNA helicase activity. 89793 0 0 68054 9 plasma membrane proton-transporting ATP synthase, central stalk One of two stalks that connect the catalytic core of the hydrogen-transporting ATP synthase to the plasma membrane-associated Fo proteins; rotates within the catalytic core during catalysis. Examples of this component are found in Bacterial species. 89794 0 0 68055 9 septate junction A cell-cell junction that forms a continuous band around each cell in an epithelium; within the septate junction the membranes of adjacent cells maintain a constant distance of approximately 15 nm; found in invertebrates. 89795 0 0 68056 9 complement component C2 complex (obsolete GO:0005603) OBSOLETE (was not defined before being made obsolete). 89796 1 0 68057 9 cyclin E1-CDK2 complex A protein complex consisting of cyclin E1 and cyclin-dependent kinase 2 (CDK2). Cyclins are characterized by periodicity in protein abundance throughout the cell cycle. Cyclin-dependent kinases represent a family of serine/threonine protein kinases that become active upon binding to a cyclin regulatory partner. 89797 0 0 68083 9 terminal button Terminal inflated portion of the axon, containing the specialized apparatus necessary to release neurotransmitters. The axon terminus is considered to be the whole region of thickening and the terminal button is a specialized region of it. 89840 0 0 68058 9 eukaryotic translation elongation factor 1 complex A multisubunit nucleotide exchange complex that binds GTP and aminoacyl-tRNAs, and catalyzes their codon-dependent placement at the A-site of the ribosome. In humans, the complex is composed of four subunits, alpha, beta, delta and gamma. 89799 0 0 68059 9 pellicle The structure enclosing an apicomplexan parasite cell; consists of the cell membrane with its associated infrastructure of microtubules, microfilaments and other organelles. 89801 0 0 68060 9 transcription export complex 2 A protein complex that couples SAGA-dependent gene expression to mRNA export at the inner side of the nuclear pore complex (NPC). The TREX-2 complex is tethered to the inner side of the NPC via the nucleoporins Nup1 and Nup60; in S. cerevisiae it contains Sac3p, Thp1p, Sus1p and Cdc31p. 89802 0 0 68061 9 delta-DNA polymerase cofactor complex (obsolete GO:0005660) OBSOLETE. A complex of proteins that interacts with delta-DNA polymerase, promoting elongation. In humans it is a heteropentamer of subunits of 140/145, 40, 38, 37 and 36.5 kDa, which form a complex with the proliferating cell nuclear antigen (PCNA) in the presence of ATP. 89804 1 0 68062 9 cyclin A2-CDK2 complex A protein complex consisting of cyclin A2 and cyclin-dependent kinase 2 (CDK2). Cyclins are characterized by periodicity in protein abundance throughout the cell cycle. Cyclin-dependent kinases represent a family of serine/threonine protein kinases that become active upon binding to a cyclin regulatory partner. 89805 0 0 68063 9 integral to chloroplast inner membrane Located such that some or all of the gene product itself penetrates at least one phospholipid bilayer of the chloroplast inner membrane. May also refer to the state of being buried in the bilayer with no exposure outside the bilayer. 89806 0 0 68064 9 WASH complex A protein complex that localizes at the surface of endosomes, where it recruits and activates the Arp2/3 complex to induce actin polymerization. In human, the WASH complex is composed of F-actin-capping protein subunits alpha and beta, WASH1, FAM21, KIAA1033, KIAA0196 and CCDC53. 89807 0 0 69408 13 ear floret meristem Apical shoot meristem that gives rise to the organs of a maize ear floret. 91563 0 0 68065 9 tRNA (m1A) methyltransferase complex A protein complex involved in the catalysis of the formation of the modified nucleotide 1-methyladenosine (m1A) in tRNA. In yeast, it is a heterotetramer of two subunits, Gcd10p and Gcd14p, while in bacteria and archaea it is a homotetramer. 89809 0 0 68066 9 respiratory chain complex IV A part of the respiratory chain, containing the 13 polypeptide subunits of cytochrome c oxidase, including cytochrome a and cytochrome a3. Catalyzes the oxidation of reduced cytochrome c by dioxygen (O2). 89811 0 0 68067 9 macrophage migration inhibitory factor receptor complex A protein complex that binds macrophage migration inhibitory factor. Comprises CD74 and CD44 cell surface proteins. 89813 0 0 68068 9 core TFIIH complex portion of holo TFIIH complex The core TFIIH complex when it is part of the general transcription factor TFIIH. In S. cerevisiae, it is composed of Rad3p, Tfb1p, Tfb2p, Ssl1p and Tfb4p. In humans, it is composed of ERCC2, p62, p55, p44, p34. 89815 0 0 68069 9 negative cofactor 2 complex A heterodimeric protein complex that can stably associate with TATA-binding protein on promoters, thereby preventing the assembly of transcription factors TFIIA and TFIIB and leading to repression of RNA polymerase II transcription. The two subunits, NC2alpha (Drap1) and NC2beta (Dr1), dimerize through histone fold domains of the H2A/H2B type present in the amino termini. 89816 0 0 68070 9 ULK1-ATG13-FIP200 complex A protein complex that is essential for mammalian autophagy, and consists of at least 3 proteins: ULK1, ATG13 and RB1CC1(FIP200). This complex is the mammalian counterpart of Atg1-Atg13-Atg17 in yeast. 89818 0 0 68071 9 organelle envelope A double membrane structure enclosing an organelle, including two lipid bilayers and the region between them. In some cases, an organelle envelope may have more than two membranes. 89822 0 0 68072 9 metaphase chromosome (obsolete GO:0005710) OBSOLETE. A chromosome found in the cell during metaphase. Typically, sister chromatids are held together at their centromeres and chromosomes are covered with a large number of molecules, including ribonucleoproteins. 89823 1 0 68073 9 xanthophore A chromatophore containing yellow pigment. 89824 0 0 68074 9 DNA-directed RNA polymerase IV complex RNA polymerase IV is a multisubunit RNA polymerase complex found in the nucleus of plants and involved in accumulation of siRNAs and in DNA methylation-dependent silencing of endogenous repeated sequences. Pol IV is composed of subunits that are paralogous or identical to the 12 subunits of Pol II. The largest and second-largest subunits of Pol IV are the catalytic subunits and share similarity with the corresponding subunits of other eukaryotic and bacterial multisubunit RNA polymerases. The second largest subunit is also found in RNA polymerase V, while the largest subunit is found only in RNAP IV complex. 89825 0 0 68075 9 synapse part Any constituent part of a synapse, the junction between a nerve fiber of one neuron and another neuron or muscle fiber or glial cell. 89829 0 0 68076 9 procollagen-proline 4-dioxygenase complex A protein complex that catalyzes the formation of procollagen trans-4-hydroxy-L-proline and succinate from procollagen L-proline and 2-oxoglutarate, requiring Fe2+ and ascorbate. Contains two alpha subunits that contribute to most parts of the catalytic sites, and two beta subunits that are identical to protein-disulfide isomerase. 89830 0 0 68077 9 protocadherin-alpha-v4-protocadherin-gamma-a3 complex A protein complex that contains the cell adhesion molecules protocadherin-alpha-v4 and protocadherin-gamma-a3, and is involved in the regulation of protein localization to the plasma membrane. 89831 0 0 68078 9 axonemal dynein light chain (obsolete GO:0001686) OBSOLETE (was not defined before being made obsolete). 89832 1 0 68079 9 cyanosome A tissue-specific, membrane-bounded cytoplasmic organelle within which an unknown blue pigment is localized. Cyanosomes are synthesized in cyanophores and are blue in appearance. 89833 0 0 68080 9 Lsd1/2 complex A nucleosome-binding protein complex that comprises two SWIRM domain histone demethylases and two PHD finger proteins. The complex is involved in transcriptional regulation via heterochromatic silencing and the regulation of chromatin boundary formation, and was first identified in fission yeast. 89834 0 0 68081 9 organellar chromatophore thylakoid A thylakoid located in an organellar chromatophore. 89838 0 0 68082 9 PSII associated light-harvesting complex II, core complex, LHCIIc subcomplex (obsolete GO:0030087) OBSOLETE (was not defined before being made obsolete). 89839 1 0 68268 9 myelin sheath abaxonal region The region of the myelin sheath furthest from the axon. 90104 0 0 68084 9 macronucleus A membrane-bounded organelle of ciliated protozoan cells that contains polyploid copies of a portion of the cell's complete genome. Transcription of genes occurs in macronuclei. Some ciliate species may contain multiple macronuclei per cell. 89841 0 0 68085 9 CNTFR-CLCF1 complex A protein complex that is composed of two soluble ciliary neurotrophic factor receptor alpha subunits (product of the CNTFR gene) and two molecules of cardiotrophin-like cytokine factor 1 (product of the CLCF1 gene). The complex is secreted into the extracellular space. 89842 0 0 68086 9 merozoite dense granule membrane The lipid bilayer surrounding a dense granule of the type found in apicomplexan parasites. 89844 0 0 68087 9 laminin-11 complex A laminin complex composed of alpha5, beta2 and gamma1 polypeptide chains. 89845 0 0 68088 9 nucleosomal methylation activator complex A protein complex that contains eight subunits in common with the SWI/SNF complex, plus the ATPase BRG1 (SMARCA4) and the histone methyltransferase CARM1; the complex is involved in regulating nuclear receptor-dependent transcription. 89846 0 0 68089 9 microtubule organizing center attachment site A region of the nuclear envelope to which a microtubule organizing center (MTOC) attaches; protein complexes embedded in the nuclear envelope mediate direct or indirect linkages between the microtubule cytoskeleton and the nuclear envelope. 89848 0 0 68090 9 debranching enzyme (obsolete GO:0005957) OBSOLETE (was not defined before being made obsolete). 89849 1 0 68091 9 Cul4B-RING ubiquitin ligase complex A ubiquitin ligase complex in which a cullin from the Cul4B subfamily and a RING domain protein form the catalytic core; substrate specificity is conferred by unknown subunits. 89850 0 0 68092 9 HA1 clathrin adaptor (obsolete GO:0005907) OBSOLETE (was not defined before being made obsolete). 89851 1 0 68093 9 chromatin remodeling complex Any complex that mediates dynamic changes in eukaryotic chromatin. 89852 0 0 68281 9 viral assembly intermediate Specific locations and structures in the virus infected cell involved in assembling new virions. 90122 0 0 68282 9 root hair tip The tip portion of an outgrowth of a root epidermal cell. 90123 0 0 68094 9 nuclear MIS12/MIND type complex A multiprotein kinetochore subcomplex that binds to centromeric chromatin and forms part of the inner kinetochore of a chromosome in the nucleus. It helps to recruit outer kinetochore subunits that will bind to microtubules. Nuclear localization arises in some organisms because the nuclear envelope is not broken down during mitosis. In S. cerevisiae, it consists of at least four proteins: Mtw1p, Nnf1p, Nsl1p, and Dsn1. 89854 0 0 68095 9 box H + ACA snoRNP protein (obsolete GO:0005735) OBSOLETE (was not defined before being made obsolete). 89855 1 0 68096 9 yolk granule Discrete structures that partition the water-insoluble portion of the yolk of oocytes and ova, which may or may not be membrane enclosed. 89856 0 0 68097 9 cytosolic pyruvate dehydrogenase complex Complex that carries out the oxidative decarboxylation of pyruvate to form acetyl-CoA; comprises subunits possessing three catalytic activities: pyruvate dehydrogenase (E1), dihydrolipoamide S-acetyltransferase (E2), and dihydrolipoamide dehydrogenase (E3). Usually contains fewer subunits than its eukaryotic counterpart; for example, the E. coli complex contains 12 E1 dimers, 8 E2 trimers, and 6 E3 dimers arranged in highly symmetric cubic order. 89858 0 0 68098 9 rod spherule A specialized neuron projection which is the site of synaptic transmission produced by retinal rod cells. Rod spherules are small round enlargements of the axon (3-5 micrometers diameter) or even extensions of the cell body. 89859 0 0 68099 9 mitochondrial prohibitin complex A complex composed of two proteins, prohibitin 1 and prohibitin 2 (PHB1/PHB-1 and PHB2/PHB-2) that is highly conserved amongst eukaryotes and associated with the inner mitochondrial membrane. The mitochondrial prohibitin complex is a macromolecular supercomplex composed of repeating heterodimeric subunits of PHB1 and PHB2. The mitochondrial prohibitin complex plays a role in a number of biological processes, including mitochondrial biogenesis and function, development, replicative senescence, and cell death. 89860 0 0 68100 9 alpha-amino-3-hydroxy-5-methyl-4-isoxazolepropionic acid selective glutamate receptor complex An assembly of four or five subunits which form a structure with an extracellular N-terminus and a large loop that together form the ligand binding domain. The C-terminus is intracellular. The ionotropic glutamate receptor complex itself acts as a ligand gated ion channel; on binding glutamate, charged ions pass through a channel in the center of the receptor complex. The AMPA receptors mediate fast synaptic transmission in the CNS and are composed of subunits GluR1-4, products from separate genes. These subunits have an extracellular N-terminus and an intracellular C-terminus. 89863 0 0 68101 9 primary endosperm nucleus Nucleus resulting from the fusion of the male gamete and two polar nuclei in the central cell of the embryo sac. 89864 0 0 68102 9 yolk The cytoplasmic part that serves as a nutrient reserve or energy source for the developing embryo. 89865 0 0 68103 9 insulin-like growth factor binary complex A complex of two proteins, which in animals is 50kDa and consists of the insulin-like growth factor (IGF) and one of the insulin-like growth factor binding protein-1 (IGFBP-1), -2 (IGFBP-2), -4 (IGFBP-4) and -6 (IGFBP-6). The complex plays a role in growth and development. 89866 0 0 68104 9 myosin VI complex A myosin complex containing one or more class VI myosin heavy chains and associated light chains. Myosin VI has a single IQ motif in the neck and a tail region with a coiled coil domain followed by a unique globular domain; a unique insertion that enables myosin VI to move towards the pointed or minus end of actin filaments. 89867 0 0 68105 9 septin band A diffuse ring composed of a series of septin bars that run parallel to the long axis of the cell. This type of septin structure has been observed in a number of locations associated with polarized grown and/or deposition of new membrane, but not with cytokinesis, such as at the shmoo (mating projection) neck, at the junction between the mother cell and the germ tube (hypha) of a fungal cell growing filamentously. 89868 0 0 68106 9 tertiary granule membrane The lipid bilayer surrounding a tertiary granule. 89869 0 0 68107 9 nuclear inclusion body An intranuclear focus at which aggregated proteins have been sequestered. 89870 0 0 68108 9 cyclin D1-CDK4 complex A protein complex consisting of cyclin D1 and cyclin-dependent kinase 4 (CDK4). Cyclins are characterized by periodicity in protein abundance throughout the cell cycle. Cyclin-dependent kinases represent a family of serine/threonine protein kinases that become active upon binding to a cyclin regulatory partner. 89871 0 0 68109 9 MutSbeta complex A heterodimer involved in binding to and correcting insertion/deletion mutations. In human the complex consists of two subunits, MSH2 and MSH3. 89873 0 0 68135 9 satellite fibril An axoneme part that is found in the flagella of mammalian sperm and is located in the middle piece between the outer dense fibers (on the concave side of outer dense fibers as seen in cross-section). 89914 0 0 68110 9 Tpg-containing telomere binding complex A complex composed of four polypeptides, a telomere-protecting terminal protein (Tpg), a telomere-associated protein (Tap), DNA polymerase (PolA) and topoisomerase I (TopA), that functions in the replication of the telomeric regions of linear chromosomes, plasmids and circular replicons of some bacterial species. 89874 0 0 68111 9 osmiophilic body A membrane-bounded vesicle found predominantly in Plasmodium female gametocytes, that becomes progressively more abundant as the gametocyte reaches full maturity. These vesicles lie beneath the subpellicular membrane of the gametocyte, and the release of their contents into the parasitophorous vacuole has been postulated to aid in the escape of gametocytes from the erythrocyte after ingestion by the mosquito. 89876 0 0 68112 9 collagen type I A collagen trimer containing alpha(I) chains. The most common form of type I collagen is a heterotrimer containing two alpha1(I) chains and one alpha2(I) chain; homotrimers containing three alpha1(I) chains are also found. Type I collagen triple helices associate to form banded fibrils. 89878 0 0 68113 9 outer membrane The external membrane of Gram-negative bacteria or certain organelles such as mitochondria and chloroplasts; freely permeable to most ions and metabolites. 89879 0 0 68114 9 alpha5-beta1 integrin-fibronectin-NOV complex A protein complex that consists of an alpha5-beta1 integrin complex bound to fibronectin and the extracellular matrix protein NOV. 89880 0 0 68115 9 SOSS complex A protein complex that functions downstream of the MRN complex to promote DNA repair and the G2/M checkpoint. The SOSS complex associates with single-stranded DNA at DNA lesions and is composed of SOSS-B (SOSS-B1/OBFC2B or SOSS-B2/OBFC2A), SOSS-A/INTS3 and SOSS-C/C9orf80. 89881 0 0 68283 9 DUBm complex A protein complex that forms part of SAGA-type complexes SAGA and SLIK, and mediates deubiquitination of histone H2B. In S. cerevisiae, the DUBm consists of the proteins Ubp8p, Sgf11p, Sus1p, and Sgf73p. 90125 0 0 68116 9 U12-type spliceosomal complex Any spliceosomal complex that forms during the splicing of a messenger RNA primary transcript to excise an intron; the series of U12-type spliceosomal complexes is involved in the splicing of the majority of introns that contain atypical AT-AC terminal dinucleotides, as well as other non-canonical introns. The entire splice site signal, not just the terminal dinucleotides, is involved in determining which spliceosome utilizes the site. 89883 0 0 68117 9 RGS6-DNMT1-DMAP1 complex A protein complex formed by the association of RGS6, a negative regulator of heterotrimeric G protein signaling, with the DMAP1-Dnmt1 transcriptional repressor complex; in the complex, RGS6 inhibits the transcriptional repressor activity of DMAP1. 89886 0 0 68118 9 GINS complex A heterotetrameric protein complex that associates with replication origins, where it is required for the initiation of DNA replication, and with replication forks. 89888 0 0 68119 9 acrosomal vesicle A structure in the head of a spermatozoon that contains acid hydrolases, and is concerned with the breakdown of the outer membrane of the ovum during fertilization. It lies just beneath the plasma membrane and is derived from the lysosome. 89891 0 0 68120 9 chylomicron remnant A lipoprotein particle that is derived from a mature chylomicron particle by the removal of triglycerides from the chylomicron core by lipoprotein lipase and the subsequent loss of surface components. It characteristically contains apolipoprotein E (APOE) and is cleared from the blood by the liver. 89892 0 0 68121 9 ferredoxin hydrogenase complex An enzyme complex that catalyzes the oxidation of reduced ferredoxin. Hydrogenase contains iron-sulfur clusters, and some contain nickel; it can use molecular hydrogen for the reduction of a variety of substances. 89893 0 0 68123 9 ascospore wall The specialized cell wall of the ascospore (spore), which is the product of meiotic division. Examples of this component are found in Fungi. 89895 0 0 68124 9 plasma membrane-derived thylakoid membrane The pigmented membrane of a plasma membrane-derived thylakoid. 89896 0 0 68125 9 Ssh1 translocon complex A translocon complex that contains a core heterotrimer of alpha, beta and gamma subunits, and may contain additional proteins (translocon-associated proteins or TRAPs); in budding yeast the core proteins are Ssh1p, Sbh2p, and Sss1p. The Ssh1 translocon complex is involved in the cotranslational pathway of protein transport across the ER membrane, and recognizes proteins bearing strongly hydrophobic signal sequences. 89897 0 0 68126 9 mitochondrial proton-transporting ATP synthase, central stalk One of two stalks that connect the catalytic core of the hydrogen-transporting ATP synthase to the mitochondrial membrane-associated F0 proteins; rotates within the catalytic core during catalysis. 89899 0 0 68127 9 glycine-tRNA ligase complex A multimeric enzyme complex which, in bacteria, is usually a tetramer of two alpha and two beta chains and in eukaryotes, is usually a homodimer. Functions in the ligation of glycine and tRNA(Gly) to form glycyl-tRNA(Gly). 89900 0 0 68128 9 nitrate reductase complex An enzyme complex that catalyzes the formation of nitrate from nitrite with the concomitant reduction of an acceptor. 89902 0 0 68129 9 glycocalyx A viscous, carbohydrate rich layer at the outermost periphery of a cell. 89903 0 0 68130 9 1-phosphatidylinositol-4-phosphate 3-kinase, class IB complex A heterodimeric protein complex that possesses 1-phosphatidylinositol-4-phosphate 3-kinase activity; comprises a catalytic Class IB phosphoinositide 3-kinase (PI3K) subunit of 110-120 kDa and an associated regulatory subunit that is larger than, and unrelated to, the p85 proteins present in class IA complexes. Class I PI3Ks phosphorylate phosphatidylinositol [PI], phosphatidylinositol-4-phosphate [PI(4)P] and phosphatidylinositol-4,5-bisphosphate [PI(4,5)P2] and are divided into subclasses A and B according to the type of adaptor subunit with which they associate. Class IB PI3Ks are stimulated by G-proteins and do not interact with the SH2-domain containing adaptors that bind to Class IA PI3Ks. 89904 0 0 68131 9 symbiont-containing vacuolar membrane network Tubular network of extensions from the symbiont-containing vacuole membrane that protrude into the host cytoplasm. 89906 0 0 68132 9 microtubule organizing center A cytoplasmic structure that can catalyze gamma-tubulin-dependent microtubule nucleation and that can anchor microtubules by interacting with their minus ends, plus ends or sides. 89908 0 0 68133 9 transcription factor TFIIA complex A component of the transcription machinery of RNA Polymerase II. In humans, TFIIA is a heterotrimer composed of an alpha (P35), beta (P19) and gamma subunits (P12). 89910 0 0 68134 9 cytoplasmic RNA cap binding complex A protein complex found in the cytoplasm that binds the 5' cap structure of an mRNA, and typically consists of the cap-binding protein eIF4E, the adaptor protein eIF4G, and a multi-factor complex comprising eIF1, eIF2, eIF3 and eIF5. This complex mediates recruitment of the 40S subunit to mRNA. 89912 0 0 68136 9 type III polyketide synthase complex A polyketide synthase complex that consists of two identical ketosynthase polypeptides. 89916 0 0 68137 9 Golgi-plasma membrane transport vesicle (obsolete GO:0005808) OBSOLETE (was not defined before being made obsolete). 89917 1 0 68138 9 P granule A small cytoplasmic, non-membranous RNA/protein complex aggregates in the primordial germ cells of many higher eukaryotes. 89918 0 0 68139 9 ATP-binding cassette (ABC) transporter complex, transmembrane substrate-binding subunit-containing A complex for the transport of metabolites into the cell, consisting of 4 subunits: a transmembrane substrate-binding protein (known as the S component), and an energy-coupling module that comprises two ATP-binding proteins (known as the A and A' components) and a transmembrane protein (known as the T component). Transport of the substrate across the membrane is driven by the hydrolysis of ATP. 89921 0 0 68140 9 IgG B cell receptor complex An IgG immunoglobulin complex that is present in the plasma membrane of B cells and is composed of two identical immunoglobulin heavy chains of an IgG isotype and two identical immunoglobulin light chains and a signaling subunit, a heterodimer of the Ig-alpha and Ig-beta proteins. 89925 0 0 68141 9 cytoplasmic interphase chromosome (obsolete GO:0000233) OBSOLETE. A chromosome found in the cytoplasm during interphase. 89926 1 0 68142 9 U2-type post-spliceosomal complex A spliceosomal complex that is formed following the second splicing event and contains the spliced product, the excised intron, and three snRNPs, including U5. 89927 0 0 68143 9 germ tube septin cap A faint structure formed of septins found at the leading edge of growth in germ tubes of fungal cells growing filamentously. This cap of septins colocalizes with a region of the plasma membrane that is rich in ergosterol. 89928 0 0 69514 13 plant anatomical entity An anatomical entity that is or was part of a plant. 91675 0 0 68144 9 clathrin complex A protein complex that consists of three clathrin heavy chains and three clathrin light chains, organized into a symmetrical three-legged structure called a triskelion. In clathrin-coated vesicles clathrin is the main component of the coat and forms a polymeric mechanical scaffold on the vesicle surface. 89929 0 0 68145 9 chloroplast thylakoid lumen The cavity enclosed within the chloroplast thylakoid membrane. An example of this component is found in Arabidopsis thaliana. 89931 0 0 68146 9 generative cell nucleus The nucleus of the generative cell, a cell contained within the pollen grain that will divide to produce two haploid sperm cells. 89933 0 0 68147 9 cytosolic ribosome A ribosome located in the cytosol. 89934 0 0 68148 9 chaperonin ATPase complex Multisubunit protein complex with 2x7 (Type I, in most cells) or 2x8 (Type II, in Archaea) ATP-binding sites involved in maintaining an unfolded polypeptide structure before folding or to entry into mitochondria and chloroplasts. 89938 0 0 68149 9 outer membrane-bounded periplasmic space The region between the inner (cytoplasmic or plasma) membrane and outer membrane of organisms with two membranes such as Gram negative bacteria. These periplasmic spaces are relatively thick and contain a thin cell wall. 89939 0 0 69127 13 flower nectary A multicellular glandular structure found in the flower secreting a liquid containing organic substances especially sugars. 91234 0 0 68150 9 proton-transporting V-type ATPase, V0 domain A protein complex that forms part of a proton-transporting V-type ATPase and mediates proton transport across a membrane. The V0 complex consists of at least four different subunits (a,c,d and e); six or more c subunits form a proton-binding rotor ring. 89940 0 0 68151 9 cytosol pyruvate dehydrogenase (lipoamide) phosphatase complex A cytosolic complex of a regulatory and catalytic subunit that catalyzes the dephosphorylation and concomitant reactivation of the alpha subunit of the E1 component of the pyruvate dehydrogenase complex. 89941 0 0 68152 9 IkappaB kinase complex A protein serine/threonine kinase that phosphorylates IkappaB, thereby targeting this for proteasomal degradation and allowing the nuclear translocation of kB. Composed of alpha, beta and gamma subunits, the latter not having kinase activity but presumed to play a regulatory role. 89942 0 0 68153 9 ribonuclease MRP complex A ribonucleoprotein complex that contains an RNA molecule of the snoRNA family, and cleaves the rRNA precursor as part of rRNA transcript processing. It also has other roles: In S. cerevisiae it is involved in cell cycle-regulated degradation of daughter cell-specific mRNAs, while in mammalian cells it also enters the mitochondria and processes RNAs to create RNA primers for DNA replication. 89943 0 0 68154 9 nucleosome A complex comprised of DNA wound around a multisubunit core and associated proteins, which forms the primary packing unit of DNA into higher order structures. 89946 0 0 68155 9 telomerase holoenzyme complex Telomerase is a ribonucleoprotein enzyme complex, with a minimal catalytic core composed of a catalytic reverse transcriptase subunit and an RNA subunit that provides the template for telomeric DNA addition. In vivo, the holoenzyme complex often contains additional subunits. 89948 0 0 68156 9 mitochondrial membrane part Any constituent part of a mitochondrial membrane, either of the lipid bilayers that surround the mitochondrion and form the mitochondrial envelope. 89949 0 0 68157 9 importin, beta-subunit (obsolete GO:0005648) OBSOLETE (was not defined before being made obsolete). 89950 1 0 68158 9 alpha6-beta1 integrin-CD151 complex A protein complex that consists of an alpha6-beta1 integrin complex bound to the tetraspanin CD151. 89951 0 0 68159 9 fibril Extracellular matrix material consisting of polysaccharides and protein. 89952 0 0 68160 9 cytoplasmic SCF ubiquitin ligase complex A ubiquitin ligase complex, located in the cytoplasm, in which a cullin from the Cul1 subfamily and a RING domain protein form the catalytic core; substrate specificity is conferred by a Skp1 adaptor and an F-box protein. SCF complexes are involved in targeting proteins for degradation by the proteasome. The best characterized complexes are those from yeast and mammals (with core subunits named Cdc53/Cul1, Rbx1/Hrt1/Roc1). 89953 0 0 68161 9 Grb2-Shc complex A protein complex that contains Grb2 and the adaptor protein Shc, and is involved in linking epidermal growth factor receptor (EGFR) activation to the p21-Ras pathway. 89954 0 0 69960 13 phyllome base The basal part of a phyllome, where it attaches to a shoot axis. 92199 0 0 68183 9 activin A complex A nonsteroidal regulator, composed of two covalently linked inhibin beta-A subunits (sometimes known as activin beta-A or activin/inhibin beta-A). 89985 0 0 75830 19 germline_variant \N 99277 0 0 68162 9 Holliday junction resolvase complex A protein complex that mediates the conversion of a Holliday junction into two separate duplex DNA molecules; the complex includes a single- or multisubunit helicase that catalyzes the extension of heteroduplex DNA by branch migration and a nuclease that resolves the junction by nucleolytic cleavage. 89955 0 0 68163 9 perinuclear theca A condensed cytoplasmic structure that covers the nucleus of mammalian spermatozoa except for a narrow zone around the insertion of the tail. It shows two distinct regions, a subacrosomal layer and, continuing caudally beyond the acrosomic system, the postacrosomal sheath. The perinuclear theca has been considered a cytoskeletal scaffold responsible for maintaining the overall architecture of the mature sperm head; however, recent studies indicate that the bulk of its constituent proteins are not traditional cytoskeletal proteins but rather a variety of cytosolic proteins. 89958 0 0 68164 9 amyloplast envelope The double lipid bilayer enclosing the amyloplast and separating its contents from the rest of the cytoplasm; includes the intermembrane space. 89961 0 0 68165 9 nucleolus A small, dense body one or more of which are present in the nucleus of eukaryotic cells. It is rich in RNA and protein, is not bounded by a limiting membrane, and is not seen during mitosis. Its prime function is the transcription of the nucleolar DNA into 45S ribosomal-precursor RNA, the processing of this RNA into 5.8S, 18S, and 28S components of ribosomal RNA, and the association of these components with 5S RNA and proteins synthesized outside the nucleolus. This association results in the formation of ribonucleoprotein precursors; these pass into the cytoplasm and mature into the 40S and 60S subunits of the ribosome. 89962 0 0 68166 9 glycosome membrane The lipid bilayer surrounding a glycosome. 89963 0 0 68167 9 beta-catenin-TCF7L2 complex A protein complex that contains beta-catenin and TCF7L2 (TCF4), binds to the TCF DNA motif within a promoter element, and is involved in the regulation of WNT target gene transcription. 89964 0 0 76550 16 Storage Root Pulp Color Storage root pulp color 209449 0 0 68168 9 Golgi apparatus A compound membranous cytoplasmic organelle of eukaryotic cells, consisting of flattened, ribosome-free vesicles arranged in a more or less regular stack. The Golgi apparatus differs from the endoplasmic reticulum in often having slightly thicker membranes, appearing in sections as a characteristic shallow semicircle so that the convex side (cis or entry face) abuts the endoplasmic reticulum, secretory vesicles emerging from the concave side (trans or exit face). In vertebrate cells there is usually one such organelle, while in invertebrates and plants, where they are known usually as dictyosomes, there may be several scattered in the cytoplasm. The Golgi apparatus processes proteins produced on the ribosomes of the rough endoplasmic reticulum; such processing includes modification of the core oligosaccharides of glycoproteins, and the sorting and packaging of proteins for transport to a variety of cellular locations. Three different regions of the Golgi are now recognized both in terms of structure and function: cis, in the vicinity of the cis face, trans, in the vicinity of the trans face, and medial, lying between the cis and trans regions. 89967 0 0 68169 9 nucleocytoplasmic shuttling complex Any complex that acts to move proteins or RNAs into or out of the nucleus through nuclear pores. 89968 0 0 68170 9 histone acetyltransferase complex A protein complex that possesses histone acetyltransferase activity. 89969 0 0 68171 9 other organism cell A cell of a secondary organism with which the first organism is interacting. 89970 0 0 68226 9 UBC13-MMS2 complex A heterodimeric ubiquitin conjugating enzyme complex that catalyzes assembly of K63-linked polyubiquitin chains, which act as a signal to promote error-free DNA postreplication repair; in Saccharomyces the complex comprises Ubc13p and Mms2p. 90050 0 0 68172 9 medial layer of collagen and cuticulin-based cuticle extracellular matrix The fluid-filled cuticle layer that lies between the cortical and basal layers and is characterized by the presence of regularly spaced columnar struts that lie on either side of the annular furrows and link the two surrounding layers. In C. elegans, a defined medial layer is found only in adult animals. 89971 0 0 68173 9 plasma membrane proton-transporting ATP synthase complex, coupling factor F(o) All non-F1 subunits of the plasma membrane hydrogen-transporting ATP synthase, including integral and peripheral plasma membrane proteins. 89972 0 0 68174 9 U4atac/U6atac x U5 tri-snRNP complex A ribonucleoprotein complex formed by the association of the U4atac/U6atac and U5 small nuclear ribonucleoproteins. 89973 0 0 68175 9 catalytic step 2 spliceosome A spliceosomal complex that contains three snRNPs, including U5, bound to a splicing intermediate in which the first catalytic cleavage of the 5' splice site has occurred. The precise subunit composition differs significantly from that of the catalytic step 1, or activated, spliceosome, and includes many proteins in addition to those found in the associated snRNPs. 89974 0 0 68176 9 Bcl3/NF-kappaB2 complex A protein complex containing one Bcl protein and one or more copies of NF-kappaB2; formation of complexes of different stoichiometry depends on the Bcl3:NF-kappaB2 ratio, and allow Bcl3 to exert different regulatory effects on NF-kappaB2-dependent transcription. 89975 0 0 68177 9 Hrd1p ubiquitin ligase complex A multiprotein complex that recognizes and ubiquitinates proteins with misfolded luminal and membrane domains during ER-associated protein degradation (ERAD). In S. cerevisiae, this complex contains the ubiquitin ligase Hrd1p. 89976 0 0 68178 9 contact site Sites of close apposition of the inner and outer mitochondrial membrane. 89977 0 0 68179 9 U12-type catalytic step 1 spliceosome A spliceosomal complex that is formed by the displacement of the U11 and U4atac snRNPs from the precatalytic spliceosome; the U12, U5 and U6atac snRNPs remain associated with the mRNA. This complex, sometimes called the activated spliceosome, is the catalytically active form of the spliceosome, and includes many proteins in addition to those found in the U12, and U5 and U6atac snRNPs. 89979 0 0 68180 9 collagen and cuticulin-based cuticle extracellular matrix A collagen and cuticulin-based noncellular, multilayered structure that is synthesized by an underlying ectodermal (hypodermal) cell layer. The cuticle serves essential functions in body morphology, locomotion, and environmental protection. An example of this component is found in Caenorhabditis elegans. 89980 0 0 68181 9 actin filament bundle An assembly of actin filaments that are on the same axis but may be oriented with the same or opposite polarities and may be packed with different levels of tightness. 89981 0 0 68182 9 segmented viral genome A viral genome that is divided into two or more physically separate molecules of nucleic acid and packaged into a single virion. 89984 0 0 68184 9 endobrevin-synaptobrevin 2-alpha-SNAP-NSF-syntaxin-4 complex A SNARE complex that contains endobrevin (VAMP8), synaptobrevin 2 (VAMP2), alpha-SNAP, NSF, and syntaxin 4 (or orthologs thereof). 89987 0 0 68185 9 external side of cell outer membrane The side of the outer membrane that is opposite to the side that faces the periplasm of the cell. 89989 0 0 68186 9 host cytoskeleton Any of the various filamentous elements that form the internal framework of host cells, and typically remain after treatment of the cells with mild detergent to remove membrane constituents and soluble components of the host cytoplasm. The term embraces intermediate filaments, microfilaments, microtubules, the microtrabecular lattice, and other structures characterized by a polymeric filamentous nature and long-range order within the host cell. The various elements of the host cytoskeleton not only serve in the maintenance of host cellular shape but also have roles in other host cellular functions, including cellular movement, cell division, endocytosis, and movement of organelles. 89990 0 0 68187 9 intrinsic to plasma membrane Located in the plasma membrane such that some covalently attached portion of the gene product, for example part of a peptide sequence or some other covalently attached group such as a GPI anchor, spans or is embedded in one or both leaflets of the membrane. 89991 0 0 68188 9 nucleolar ribonuclease P complex A ribonuclease P complex located in the nucleolus of a eukaryotic cell, where it catalyzes the 5' endonucleolytic cleavage of precursor tRNAs to yield mature tRNAs. Eukaryotic nucleolar ribonuclease P complexes generally contain a single RNA molecule that is necessary but not sufficient for catalysis, and several protein molecules. 89992 0 0 68189 9 axonemal heterotrimeric kinesin-II complex A kinesin complex found in eukaryotic axonemes that contains two distinct plus end-directed kinesin motor proteins and at least one accessory subunit, and that functions in the anterograde transport of molecules (cargo) from the basal body to the distal tip of the axoneme. 89993 0 0 68190 9 G-protein alpha(q)-synembrin complex A protein complex formed by the association of the guanine nucleotide exchange factor synembrin with the alpha(q) subunit of a heterotrimeric G protein. 89994 0 0 68192 9 methionine adenosyltransferase complex A multimeric enzyme complex composed of variable numbers of catalytic alpha subunits, and noncatalytic beta subunits. The beta subunits are believed to have a regulatory function. The enzyme complex catalyzes the synthesis of S-adenosylmethionine (AdoMet), which is the major methyl group donor, participating in the methylation of proteins, DNA, RNA, phospholipids, and other small molecules. 89996 0 0 68193 9 iridosome A tissue-specific, membrane-bounded cytoplasmic organelle within which purines crystalize in reflective stacks. Iridosomes are synthesized in iridophore cells and are silver, gold or iridescent in appearance. 89997 0 0 68194 9 endomembrane system A collection of membranous structures involved in transport within the cell. The main components of the endomembrane system are endoplasmic reticulum, Golgi bodies, vesicles, cell membrane and nuclear envelope. Members of the endomembrane system pass materials through each other or though the use of vesicles. 89998 0 0 68195 9 clathrin coat of synaptic vesicle A clathrin coat found on a synaptic vesicle. 90000 0 0 68377 9 plastid envelope The double lipid bilayer enclosing a plastid and separating its contents from the rest of the cytoplasm; includes the intermembrane space. 90272 0 0 68196 9 micropexophagy-specific membrane apparatus A membrane-bounded flattened sac that is formed during micropexophagy between the membrane tips of an engulfing vacuole, completing the engulfment and sequestration of peroxisomes from the cytosol, and forming a micropexophagic body within the lumen of the vacuole. 90001 0 0 68197 9 lamina reticularis A layer of the basal lamina that contains collagen fibrils and connects the basal lamina to the underlying connective tissue. 90003 0 0 68198 9 protein (obsolete GO:0003675) OBSOLETE (was not defined before being made obsolete). 90004 1 0 68199 9 tRNA methyltransferase complex A multimeric protein complex involved in the methylation of specific nucleotides in tRNA. 90005 0 0 68200 9 food vacuole Vacuole within a parasite used for digestion of the host cell cytoplasm. An example of this component is found in the Apicomplexa. 90006 0 0 68201 9 interleukin-1 receptor complex A protein complex that binds interleukin-1; comprises an alpha and a beta subunit. 90008 0 0 68202 9 intrinsic to plastid membrane Located in a plastid membrane such that some covalently attached portion of the gene product, for example part of a peptide sequence or some other covalently attached group such as a GPI anchor, spans or is embedded in one or both leaflets of the membrane. 90010 0 0 68203 9 COPI vesicle coat One of two multimeric complexes that forms a membrane vesicle coat. The mammalian COPI subunits are called alpha-, beta-, beta'-, gamma-, delta-, epsilon- and zeta-COP. Vesicles with COPI coats are found associated with Golgi membranes at steady state. 90011 0 0 68204 9 intracellular part Any constituent part of the living contents of a cell; the matter contained within (but not including) the plasma membrane, usually taken to exclude large vacuoles and masses of secretory or ingested material. In eukaryotes it includes the nucleus and cytoplasm. 90013 0 0 68205 9 integral to endosome membrane Located such that some or all of the gene product itself penetrates at least one phospholipid bilayer of the endosome membrane. May also refer to the state of being buried in the bilayer with no exposure outside the bilayer. 90014 0 0 68206 9 manchette A conical shaped array of microtubules that completely covers the nucleus of a spermatid, thought to be involved in sperm head elongation. 90015 0 0 68207 9 spindle pole Either of the ends of a spindle, where spindle microtubules are organized; usually contains a microtubule organizing center and accessory molecules, spindle microtubules and astral microtubules. 90017 0 0 68208 9 fatty acid elongase complex A tetrameric complex of four different subunits which catalyzes the elongation of fatty acids chains 2 carbon units at a time in the synthesis of very long chain fatty acids. 90019 0 0 68300 9 outer plaque of spindle pole body One of three laminate structures that form the spindle pole body; the outer plaque is in the cytoplasm. 90153 0 0 68240 9 extrinsic to stromal side of plastid inner membrane Loosely bound to the surface of a plastid inner membrane that faces the stroma, but not integrated into the hydrophobic region. 90070 0 0 68209 9 condensed nuclear chromosome kinetochore A multisubunit complex that is located at the centromeric region of a condensed chromosome in the nucleus and provides an attachment point for the spindle microtubules. 90020 0 0 68210 9 farnesyl-diphosphate farnesyl transferase complex (obsolete GO:0008051) OBSOLETE. A complex that possesses farnesyl-diphosphate farnesyl transferase activity. 90021 1 0 68211 9 MHC class I protein complex A transmembrane protein complex composed of a MHC class I alpha chain and an invariant beta2-microglobin chain, and with or without a bound peptide antigen. Class I here refers to classical class I molecules. 90022 0 0 68212 9 cellulose synthase complex The multimeric protein complex, organized in a rosette, which catalyzes the biosynthesis of cellulose for the plant cell wall. 90023 0 0 68213 9 alphav-beta5 integrin-osteopontin complex A protein complex that consists of an alphav-beta5 integrin complex bound to osteopontin. 90025 0 0 68214 9 protein storage vacuole A storage vacuole that contains a lytic vacuole; identified in plants. 90026 0 0 68215 9 old spindle pole body The spindle pole body that exists in a cell prior to spindle pole body duplication. An old spindle pole body segregates to the daughter cell upon mitosis, and lacks active proteins involved in signaling exit from mitosis. 90028 0 0 68216 9 cytoneme A long, thin, polarized cell projection that contains actin and can extend for distances many times the diameter of the cell. Cytonemes represent extensions of cell cytoplasm and typically have a diameter of approximately 0.2um. 90029 0 0 68217 9 transcription factor TFTC complex A protein complex that does not contain either a TATA-binding protein (TBP) or a TBP-like factor, but is composed of several TAFIIs and other proteins, including a histone acetyltransferase. This complex is able to nucleate transcription initiation by RNA polymerase II, can mediate transcriptional activation, and has histone acetyltransferase activity. 90030 0 0 68218 9 telosome A nuclear telomere cap complex that is formed by the association of telomeric ssDNA- and dsDNA-binding proteins with telomeric DNA, and is involved in telomere protection and recruitment of telomerase. The complex contains TRF1, TRF2, POT1, RAP1, TIN2 and TPP1 in mammalian cells, and Pot1, Tpz1, Ccq1, Poz1, and Rap1 in Schizosaccharomyces. Taz1 and Rap1 (or their mammalian equivalents) form a dsDNA-binding subcomplex, Pot1 and Tpz1 form an ssDNA-binding subcomplex, and the two subcomplexes are bridged by Poz1. 90033 0 0 68219 9 intracellular The living contents of a cell; the matter contained within (but not including) the plasma membrane, usually taken to exclude large vacuoles and masses of secretory or ingested material. In eukaryotes it includes the nucleus and cytoplasm. 90036 0 0 68220 9 cyanelle thylakoid lumen The volume enclosed by a cyanelle thylakoid membrane. 90037 0 0 68221 9 early endosome membrane The lipid bilayer surrounding an early endosome. 90038 0 0 68222 9 repairosome (obsolete GO:0000108) OBSOLETE. A stable complex of proteins that carry out the DNA damage recognition and incision reactions characteristic of nucleotide excision repair (NER), such as DNA damage recognition, DNA helix unwinding, and endonucleolytic cleavage at sites flanking damaged DNA; includes TFIIH subunits and additional polypeptides; may form in the absence of DNA damage. 90039 1 0 68223 9 calyx of Held The terminal specialization of a calyciferous axon which forms large synapses in the mammalian auditory central nervous system. 90042 0 0 68224 9 SUMO activating enzyme complex A conserved heterodimeric complex with SUMO activating enzyme activity. 90045 0 0 68225 9 actin capping protein of dynactin complex A heterodimer consisting of alpha and beta subunits that binds to and caps the barbed ends of actin filaments, nucleates the polymerization of actin monomers but does not sever actin filaments, and which is a part of the dynactin complex. 90047 0 0 68227 9 intermediate filament A cytoskeletal structure that forms a distinct elongated structure, characteristically 10 nm in diameter, that occurs in the cytoplasm of eukaryotic cells. Intermediate filaments form a fibrous system, composed of chemically heterogeneous subunits and involved in mechanically integrating the various components of the cytoplasmic space. Intermediate filaments may be divided into five chemically distinct classes: Type I, acidic keratins; Type II, basic keratins; Type III, including desmin, vimentin and others; Type IV, neurofilaments and related filaments; and Type V, lamins. 90052 0 0 68228 9 eukaryotic 43S preinitiation complex A protein complex composed of the 40S ribosomal subunit plus eIF1A, eIF3, and eIF2-GTP-bound methionyl-initiator methionine tRNA. 90054 0 0 68229 9 plastid thylakoid membrane The lipid bilayer membrane of any thylakoid within a plastid. 90055 0 0 68230 9 endocytic vesicle lumen The volume enclosed by the membrane of an endocytic vesicle. 90056 0 0 68231 9 i-AAA complex Protease complex of the mitochondrial inner membrane whose catalytic residues lie on the intermembrane space side of the inner membrane; involved in mitochondrial protein turnover. Contains a subunit belonging to the AAA family of ATP-dependent metalloproteases. 90057 0 0 68232 9 soluble fraction That fraction of cells, prepared by disruptive biochemical methods, that is soluble in water. 90060 0 0 68233 9 MAML2-RBP-Jkappa-ICN1 complex A protein complex that consists of the intracellular domain of Notch1 (ICN1), the DNA-binding transcription factor RBP-Jkappa, and the transcriptional coactivator Mastermind-like-2 (MAML2); the complex is involved in transcriptional activation in response to Notch-mediated signaling. 90061 0 0 68234 9 dihydrolipoamide S-succinyltransferase complex (obsolete GO:0009354) OBSOLETE. An enzyme complex that catalyzes the transfer of succinyl-CoA to dihydrolipoamide to form S-succinyldihydrolipoamide. The enzyme is a component of the multienzyme 2-oxoglutarate dehydrogenase complex. 90062 1 0 68235 9 alpha9-beta1 integrin-vascular cell adhesion molecule-1 complex A protein complex that consists of an alpha9-beta1 integrin complex bound to vascular cell adhesion molecule-1. 90063 0 0 68236 9 plastid stroma The proteinaceous ground substance of plastids. 90065 0 0 68237 9 hydrogen-transporting ATP synthase, coupling factor CF(0) (obsolete GO:0005755) OBSOLETE (was not defined before being made obsolete). 90067 1 0 68238 9 ascus epiplasm An extracellular part that consist of ascus cytoplasm that is not packaged into ascospores. 90068 0 0 68239 9 phagocytic vesicle membrane The lipid bilayer surrounding a phagocytic vesicle. 90069 0 0 76468 48 trait_maximum trait_maximum 209365 0 0 68241 9 1-alkyl-2-acetylglycerophosphocholine esterase complex An enzyme complex composed of two catalytic alpha subunits, which form a catalytic dimer, and a non-catalytic, regulatory beta subunit; the catalytic dimer may be an alpha1/alpha1 or alpha2/alpha2 homodimer, or an alpha1/alpha2 heterodimer. Modulates the action of platelet-activating factor (PAF). 90071 0 0 68242 9 transcription factor TFIID complex A complex composed of TATA binding protein (TBP) and TBP associated factors (TAFs); the total mass is typically about 800 kDa. Most of the TAFs are conserved across species. In TATA-containing promoters for RNA polymerase II (Pol II), TFIID is believed to recognize at least two distinct elements, the TATA element and a downstream promoter element. TFIID is also involved in recognition of TATA-less Pol II promoters. Binding of TFIID to DNA is necessary but not sufficient for transcription initiation from most RNA polymerase II promoters. 90073 0 0 68243 9 fibrinogen beta chain (obsolete GO:0005973) OBSOLETE (was not defined before being made obsolete). 90076 1 0 68244 9 protein-lipid complex A macromolecular complex containing both protein and lipid molecules. 90078 0 0 68245 9 alphaPDGFR-PLC-gamma-1-PI3K-SHP-2 complex A protein complex that contains the platelet-derived growth factor alpha receptor (alphaPDGFR; PDGFRA), phospholipase C-gamma-1 (PLC-gamma-1), phosphatidylinositol 3-kinase (PI3K) and the adaptor protein SHP-2, and is involved signaling via the PDGFR signaling pathway. 90079 0 0 68246 9 autophagic vacuole A double-membrane-bounded compartment in which endogenous cellular material is sequestered; known as autophagosome in yeast. 90080 0 0 68247 9 Tea1 cell-end complex A high molecular weight complex characterized in S. pombe containing the cell-end anchoring protein Tea1. This complex is transported to the cell ends by microtubules and is involved in bipolar growth and the maintennce of normal cell polarity. 90081 0 0 68248 9 glutamate-cysteine ligase complex An enzyme complex that catalyzes the ligation of glutamate to cysteine, forming glutamylcysteine. 90082 0 0 68249 9 uropod membrane The portion of the plasma membrane surrounding a uropod. 90083 0 0 68250 9 host cell lysosome A small lytic vacuole that has cell cycle-independent morphology and is found in most host animal cells and that contains a variety of hydrolases, most of which have their maximal activities in the pH range 5-6. The contained enzymes display latency if properly isolated. About 40 different lysosomal hydrolases are known and host cell lysosomes have a great variety of morphologies and functions. 90084 0 0 68251 9 phosphorylase kinase complex An enzyme complex that catalyzes the phosphorylation of phosphorylase b to form phosphorylase a. 90085 0 0 68253 9 Ku70:Ku80 complex Heterodimeric protein complex composed of a 70 kDa and a 80 kDa subunit, binds DNA through a channel formed by the heterodimer. Functions in DNA double stranded break repair, chromosome maintenance, transcription regulation, V(D)J recombination, and activation of DNA-PK. 90087 0 0 68254 9 secretory IgA immunoglobulin complex A polymeric IgA immunoglobulin complex that is complexed with one chain of secretory component (SC). Polymeric IgA is present in mucosal areas, having been transported via a transcytosis mechanism in mucosal epithelial cells relying on the polymeric Ig receptor, a portion of which then remains bound to the polymeric IgA as secretory component. 90089 0 0 68255 9 alpha4-beta1 integrin-CD63 complex A protein complex that consists of an alpha4-beta1 integrin complex bound to membrane protein CD63, a member of the tetraspan family. 90090 0 0 68256 9 B cell receptor complex An immunoglobulin complex that is present in the plasma membrane of B cells and that in its canonical form is composed of two identical immunoglobulin heavy chains and two identical immunoglobulin light chains and a signaling subunit, a heterodimer of the Ig-alpha and Ig-beta proteins. 90091 0 0 68257 9 polytene chromosome puff A swelling at a site along the length of a polytene chromosome, thought to be the site of active transcription. 90093 0 0 68258 9 host Any organism in which another organism, especially a parasite or symbiont, spends part or all of its life cycle and from which it obtains nourishment and/or protection. 90094 0 0 68259 9 leucoplast stroma The space enclosed by the double membrane of a leucoplast. 90095 0 0 68260 9 sodium ion-transporting two-sector ATPase complex A large protein complex that catalyzes the synthesis or hydrolysis of ATP by a rotational mechanism, coupled to the transport of sodium ions across a membrane. The complex comprises a membrane sector (F0 or V0) that carries out ion transport and a cytoplasmic compartment sector (F1 or V1) that catalyzes ATP synthesis or hydrolysis. 90096 0 0 68261 9 nucleus-vacuole junction An organelle membrane contact site formed between the vacuole membrane and the outer nuclear membrane. In S. cerevisiae these contacts are mediated through direct physical interaction between Vac8p and Nvj1p. 90097 0 0 68262 9 membrane-bounded vesicle Any small, fluid-filled, spherical organelle enclosed by a lipid bilayer. 90098 0 0 68263 9 Golgi cisterna Any of the thin, flattened membrane-bounded compartments that form the central portion of the Golgi complex. 90099 0 0 68264 9 polar microtubule Any of the spindle microtubules that come from each pole and overlap at the spindle midzone. This interdigitating structure consisting of antiparallel microtubules is responsible for pushing the poles of the spindle apart. 90100 0 0 68265 9 integral to contractile vacuolar membrane Located such that some or all of the gene product itself penetrates at least one phospholipid bilayer of the contractile vacuolar membrane. May also refer to the state of being buried in the bilayer with no exposure outside the bilayer. 90101 0 0 68266 9 phagolysosome A membrane-bounded intracellular vesicle formed by maturation of an early phagosome following the ingestion of particulate material by phagocytosis; during maturation, phagosomes acquire markers of late endosomes and lysosomes. 90102 0 0 68267 9 cyclin A1-CDK2 complex A protein complex consisting of cyclin A1 and cyclin-dependent kinase 2 (CDK2). Cyclins are characterized by periodicity in protein abundance throughout the cell cycle. Cyclin-dependent kinases represent a family of serine/threonine protein kinases that become active upon binding to a cyclin regulatory partner. 90103 0 0 68331 9 host cell nuclear membrane Either of the lipid bilayers that surround the host nucleus and form the nuclear envelope; excludes the intermembrane space. 90205 0 0 68269 9 contractile ring A cytoskeletal structure composed of filamentous protein that forms beneath the membrane of many cells or organelles, in the plane of cell or organelle division. Ring contraction is associated with centripetal growth of the membrane that divides the cytoplasm of the two daughter cells or organelles. 90105 0 0 68270 9 clathrin sculpted glutamate transport vesicle membrane The lipid bilayer surrounding a clathrin sculpted glutamate transport vesicle. 90110 0 0 68271 9 COPI-coated vesicle A vesicle with a coat formed of the COPI coat complex proteins. COPI-coated vesicles are found associated with Golgi membranes at steady state, are involved in Golgi to endoplasmic reticulum (retrograde) vesicle transport, and possibly also in intra-Golgi transport. 90111 0 0 68272 9 plant-type vacuole membrane The lipid bilayer surrounding a vacuole that retains the same shape regardless of cell cycle phase. The membrane separates its contents from the cytoplasm of the cell. An example of this component is found in Arabidopsis thaliana. 90112 0 0 68273 9 3-methyl-2-oxobutanoate dehydrogenase (lipoamide) complex A protein complex that catalyzes the reaction 3-methyl-2-oxobutanoate + lipoamide = S-(2-methylpropanoyl)-dihydrolipoamide + carbon dioxide (CO2). This requires thiamine diphosphate; the enzyme also acts on (S)-3-methyl-2-oxopentanoate and 4-methyl-2-oxo-pentanoate. 90113 0 0 68274 9 endoplasmic reticulum part Any constituent part of the endoplasmic reticulum, the irregular network of unit membranes, visible only by electron microscopy, that occurs in the cytoplasm of many eukaryotic cells. The membranes form a complex meshwork of tubular channels, which are often expanded into slitlike cavities called cisternae. 90115 0 0 68275 9 phosphatidylinositol 3-kinase complex A complex containing a heterodimer of a catalytic subunit and a regulatory (adaptor) subunit of any phosphatidylinositol 3-kinase (PI3K). 90116 0 0 68276 9 lysosome A small lytic vacuole that has cell cycle-independent morphology and is found in most animal cells and that contains a variety of hydrolases, most of which have their maximal activities in the pH range 5-6. The contained enzymes display latency if properly isolated. About 40 different lysosomal hydrolases are known and lysosomes have a great variety of morphologies and functions. 90117 0 0 68277 9 retromer complex A conserved multimeric membrane-associated complex involved in retrograde transport from endosomes to the Golgi apparatus. For example, the budding yeast retromer comprises Vps35p, Vps29p, Vps26p, Vps5p, and Vps17p. 90118 0 0 68278 9 alpha-heterochromatin A small, compact region of heterochromatin located in the middle of the polytene chromosome chromocenter, which undergoes little or no replication during polytenization. 90119 0 0 68279 9 alpha9-beta1 integrin-ADAM2 complex A protein complex that consists of an alpha9-beta1 integrin complex bound to the transmembrane metallopeptidase ADAM2. 90120 0 0 68280 9 Kv4.2-Kv4.3 channel complex A voltage-gated potassium channel complex that contains the Kv alpha subunits 4.2 and 4.3. 90121 0 0 68284 9 cellulosome An extracellular multi-enzyme complex containing up to 11 different enzymes aligned on a non-catalytic scaffolding glycoprotein. Functions to hydrolyze cellulose. 90128 0 0 68285 9 cell septum surface The extracellular (rather than the intracellular) exterior of a dividing septum; this surface is usually composed of cell wall material, for example, lineal (1,3)-beta-D-glucan in S. pombe. 90130 0 0 68286 9 synaptonemal complex A proteinaceous scaffold found between homologous chromosomes during meiosis. 90131 0 0 68287 9 plasmodesmatal plasma membrane The portion of the plasma membrane surrounding a plasmodesma. 90133 0 0 68288 9 brush border membrane The portion of the plasma membrane surrounding the brush border. 90134 0 0 68289 9 Dbf4-dependent protein kinase complex A heterodimeric protein complex required for the activation of DNA replication origins; comprises a catalytic subunit and a regulatory subunit (in Saccharomyces, Cdc7p and Dbf4p, respectively); complexes identified in other species generally contain proteins related to the Saccharomyces proteins. 90135 0 0 68290 9 TAT protein transport complex A complex of three proteins integral to the cytoplasmic membrane of bacteria and membranes of organelles derived from bacteria (chloroplasts and mitochondria) involved in membrane transport of folded proteins. 90137 0 0 68291 9 Gemin3-Gemin4-Gemin5 complex A protein complex that contains Gemin3 (DDX20), Gemin4, and Gemin5, and can bind to snRNAs; may be an intermediate in SMN complex assembly. 90138 0 0 68292 9 TORC2 complex A protein complex that contains the TOR (target of rapamycin) serine/threonine kinase and mediates spatial control of cell growth via regulation of actin cytoskeleton polarization. In Saccharomyces, the complex contains Avo1p, Avo2p, Tsc11p, Lst8p, Bit61p, Slm1p, Slm2p, and Tor2p; in mammals the complex contains orthologs of the yeast proteins. 90139 0 0 68293 9 U6atac snRNP A ribonucleoprotein complex that contains small nuclear RNA U6atac. 90141 0 0 68294 9 interleukin-12 complex A protein complex that is composed of an interleukin-12 alpha (p35, product of the IL12A gene) and an interleukin-12 beta subunit (p40, product of the IL12B gene) and is secreted into the extracellular space. 90142 0 0 68295 9 peroxisome targeting signal receptor complex (obsolete GO:0005781) OBSOLETE (was not defined before being made obsolete). 90145 1 0 68296 9 alpha3-beta1 integrin-tissue transglutaminase complex A protein complex that consists of an alpha3-beta1 integrin complex bound to tissue transglutaminase. 90146 0 0 68297 9 DNA polymerase III, proofreading complex A subcomplex of DNA polymerase III composed of the epsilon subunit which has proofreading activity, and the theta subunit which enhances the epsilon subunit's proofreading activity. 90147 0 0 68298 9 Golgi membrane The lipid bilayer surrounding any of the compartments of the Golgi apparatus. 90151 0 0 68299 9 collagen type XIII A collagen homotrimer of alpha1(XIII) chains; type X collagen triple helices span lipid bilayer membranes. 90152 0 0 68301 9 mitochondrial pyruvate dehydrogenase (lipoamide) phosphatase complex A mitochondrial complex of a regulatory and catalytic subunit that catalyzes the dephosphorylation and concomitant reactivation of the alpha subunit of the E1 component of the pyruvate dehydrogenase complex. An example of this component is found in Mus musculus. 90154 0 0 68302 9 host symbiosome A double-enveloped cell compartment, composed of the endosymbiont with its plasmalemma (as inner envelope) and an outer envelope (the perisymbiontic membrane) derived from the host cell. 90155 0 0 68303 9 actin cortical patch A discrete actin-containing structure found at the plasma membrane in cells, at sites of endocytosis; formed of networks of branched actin filaments that lie just beneath the plasma membrane and assemble, move, and disassemble rapidly. An example of this is the actin cortical patch found in Saccharomyces cerevisiae. 90156 0 0 68304 9 mitochondrial rRNA (obsolete GO:0005568) OBSOLETE (was not defined before being made obsolete). 90158 1 0 68305 9 male germ cell nucleus The nucleus of a male germ cell, a reproductive cell in males. 90159 0 0 68306 9 cytoplasmic DNA replication factor C complex A cytoplasmic complex of two polypeptides that loads the DNA polymerase processivity factor proliferating cell nuclear antigen (PCNA) onto DNA, thereby permitting processive DNA synthesis catalyzed by DNA polymerase. Examples of this component are found in prokaryotic species. 90162 0 0 68307 9 sodium:potassium-exchanging ATPase complex Sodium:potassium-exchanging ATPases are tetrameric proteins, consisting of two large alpha subunits and two smaller beta subunits. The alpha subunits bear the active site and penetrate the membrane, while the beta subunits carry oligosaccharide groups and face the cell exterior. 90163 0 0 68308 9 Noc4p-Nop14p complex A heterodimer associated with precursors of the eukaryotic small ribosomal subunit, including the 90S preribosome; involved in small subunit biogenesis. 90164 0 0 68309 9 platelet dense granule membrane The lipid bilayer surrounding the platelet dense granule. 90165 0 0 68310 9 interleukin-4 receptor complex A protein complex that binds interleukin-4 (IL-4) and consists of an alpha chain that binds IL-4 with high affinity and a gamma common chain that also forms part of the interleukin-2 receptor. 90166 0 0 68311 9 creatine kinase complex A protein complex having creatine kinase activity. 90168 0 0 68312 9 eisosome Any of the large immobile protein assemblies at the plasma membrane that mark endocytic sites. In yeast, S. cerevisiae, these structures are primarily composed of Pil1p and Lsp1p. 90169 0 0 68313 9 semaphorin receptor complex A stable binary complex of a neurophilin and a plexin, together forming a functional semaphorin receptor. 90171 0 0 68314 9 membrane raft Any of the small (10-200 nm), heterogeneous, highly dynamic, sterol- and sphingolipid-enriched membrane domains that compartmentalize cellular processes. Small rafts can sometimes be stabilized to form larger platforms through protein-protein and protein-lipid interactions. 90175 0 0 68315 9 macropinosome A membrane-bounded, uncoated intracellular vesicle formed by the process of macropinocytosis. 90176 0 0 68316 9 pollen tube A tubular cell projection that is part of a pollen tube cell and extends from a pollen grain. 90177 0 0 68317 9 exodeoxyribonuclease VII complex An enzyme complex that catalyzes exonucleolytic cleavage in either 5' to 3' or 3' to 5' direction to yield nucleoside 5'-phosphates; it prefers single-stranded DNA. 90178 0 0 68349 9 chloroplast intermembrane space The region between the inner and outer lipid bilayers of a chloroplast envelope. 90234 0 0 76600 16 PlntShp_Est_1to4 \N 209499 0 0 68318 9 HULC complex A ubiquitin-conjugating enzyme complex that contains two RING finger proteins, which have ubiquitin ligase activity, in addition to a protein with ubiquitin-conjugating enzyme activity; catalyzes the ubiquitination of histone H2B at lysine 119 (or the equivalent residue). In Schizosaccharomyces the subunits are Rhp1, Brl2/Rfp1 and Brl1/Rfp2. 90179 0 0 68319 9 short-chain collagen Any assembly of collagen in which the collagen chains are relatively short compared to the fibrillar collagens. 90182 0 0 68320 9 PSII associated light-harvesting complex II, core complex, LHCIId subcomplex (obsolete GO:0030088) OBSOLETE (was not defined before being made obsolete). 90183 1 0 68321 9 Snt2C complex A histone deacetylase complex that is part of the chromatin remodeling machinery. In Saccharomyces cerevisiae this complex contains Snt2p, Ecm5p and Rpd3p. 90184 0 0 68322 9 transforming growth factor beta1-type II receptor complex A protein complex that consists of a dimeric transforming growth factor beta (TGF-beta) type II receptor bound to a TGF-beta1 dimer. 90185 0 0 68323 9 exocyst A protein complex peripherally associated with the plasma membrane that determines where vesicles dock and fuse. At least eight complex components are conserved between yeast and mammals. 90187 0 0 68324 9 attachment organelle A membrane-bounded extension of the cell, originally characterized in Mycoplasma species, that contains an electron-dense core that is part of the cytoskeleton and is oriented lengthwise and ends distally in a bulbous knob (terminal button). Required for adherence to host cells and involved in gliding motility and cell division. 90188 0 0 68325 9 paraferritin complex A cytoplasmic protein complex that contains integrin, mobilferrin and a flavin monooxygenase, is capable of reducing Fe(III) to Fe(II) utilizing NADPH, and is involved in iron transport. Fe(II) is required in the cell as the substrate for ferrochelatase in the synthesis of heme. 90192 0 0 68326 9 Rpd3L complex A histone deacetylase complex which deacetylates histones across gene coding regions. Composed of a catalytic histone deacetylase subunit, an Sds-3 family protein, a SIN3 family co-repressor, a WD repeat protein, and a zf- PHD finger (Clr6, Sds3, Pst1, Prw1, Png2 in Schizosaccharomyces pombe; Rpd3p, Sin3p, Ume1p, Pho23p, Sap30p, Sds3p, Cti6p, Rxt2p, Rxt3p, Dep1p, Ume6p and Ash1p in Saccharomyces cerevisiae). 90195 0 0 68327 9 PBAF complex A SWI/SNF-type complex that contains the ATPase product of the mammalian BAF180 gene. 90197 0 0 68328 9 SMN complex A protein complex that contains the survival motor neuron (SMN) protein and at least eight additional integral components, including the Gemin2-8 and Unrip proteins; the complex is found in the cytoplasm and in nuclear Gems, and is involved in spliceosomal snRNP assembly in the cytoplasm and in pre-mRNA splicing in the nucleus. 90199 0 0 68329 9 pilus A proteinaceous hair-like appendage on the surface of bacteria ranging from 2-8 nm in diameter. 90202 0 0 68330 9 alphaIIb-beta3 integrin-ICAM-4 complex A protein complex that consists of an alphaIIb-beta3 integrin complex bound to the cell adhesion molecule ICAM-4. 90203 0 0 68332 9 ATP-sensitive potassium channel complex A protein complex that comprises four pore-forming (Kir6.x) and four regulatory sulphonylurea receptor (SURx) subunits and forms a transmembrane channel through which ions may pass. The opening and closing of the channel is regulated by ATP: binding of ATP to the Kir6.2 subunit inhibits channel activity, whereas binding of Mg2+-complexed ATP or ADP to the SUR1 subunit stimulates channel activity. 90206 0 0 68333 9 SMAD3 protein complex A protein complex that consists of a SMAD3 homotrimer. 90209 0 0 68334 9 Rad51B-Rad51C-Rad51D-XRCC2 complex A DNA recombinase mediator complex that contains the Rad51 paralogs RAD51B, RAD51C, RAD51D, and XRCC2, or orthologs thereof. 90210 0 0 68335 9 ubiquitin ligase complex A protein complex that includes a ubiquitin-protein ligase and other proteins that may confer substrate specificity on the complex. 90211 0 0 68336 9 fatty acid synthase complex A multienzyme complex that catalyses the synthesis of fatty acids from acetyl CoA. 90213 0 0 68337 9 alpha3-beta1 integrin complex An integrin complex that comprises one alpha3 subunit and one beta1 subunit. 90216 0 0 68338 9 chromatin accessibility complex A multisubunit complex that uses ATP to increase the general accessibility of DNA in chromatin. Unlike other known chromatin remodeling complexes, CHRAC can also function during chromatin assembly; it uses ATP to convert irregular chromatin into a regular array of nucleosomes with even spacing. 90217 0 0 68339 9 viral capsid The protein coat that surrounds the infective nucleic acid in some virus particles. It comprises numerous regularly arranged subunits, or capsomeres. 90220 0 0 68340 9 conoid A spiral cytoskeletal structure located at the apical end of the apical complex in some apicomplexan parasites. Fibers form a left-handed spiral, and are comprised of tubulin protofilaments organized in a ribbon-like structure that differs from the conventional tubular structure characteristic of microtubules. 90222 0 0 68341 9 Kv4.2-DPP6 channel complex A voltage-gated potassium channel complex that contains the peptidase-related protein DPP6 associated with the channel via interaction with the Kv alpha subunit 4.2. 90224 0 0 68342 9 mannosome A specialised tubular organelle, assembled in hexagonal bundles within an external membrane. Mannosomes are specific to molluscs and are thought to be involved in a general stress reaction. 90225 0 0 68343 9 plasmodesma A fine cytoplasmic channel, found in all higher plants, that connects the cytoplasm of one cell to that of an adjacent cell. 90228 0 0 68344 9 endexine The inner part of the exine, which stains. 90229 0 0 68345 9 chloroplast photosystem II An integral chloroplast membrane complex containing the P680 reaction center. In the light, PSII functions as a water-plastoquinone oxidoreductase, transferring electrons from water to plastoquinone. 90230 0 0 68346 9 striated muscle myosin thick filament Bipolar filaments formed of polymers of a muscle-specific myosin II isoform, found in the middle of sarcomeres in myofibrils. 90231 0 0 68376 9 protocadherin-alpha-v7-protocadherin-gamma-a3 complex A protein complex that contains the cell adhesion molecules protocadherin-alpha-v7 and protocadherin-gamma-a3, and is involved in the regulation of protein localization to the plasma membrane. 90271 0 0 68348 9 IgA immunoglobulin complex, circulating A protein complex composed of two identical immunoglobulin heavy chains of an IgA isotype and two identical immunoglobulin light chains, held together by disulfide bonds, sometimes complexed with J chain or J chain and secretory component, and present in the extracellular space, in mucosal areas or other tissues, or circulating in the blood or lymph. 90233 0 0 76601 16 Moisture Content Storage root moisture content 209500 0 0 68350 9 myosin XVII complex A myosin complex containing one or more class XVII myosin heavy chains and associated light chains. 90235 0 0 68351 9 cytoplasmic cyclin-dependent protein kinase holoenzyme complex Cyclin-dependent protein kinase (CDK) complex found in the cytoplasm. 90236 0 0 68352 9 mitochondrial nucleoid The region of a mitochondrion to which the DNA is confined. 90237 0 0 68353 9 photosystem I reaction center A photochemical system containing P700, the chlorophyll a dimer that functions as a primary electron donor. Functioning as a light-dependent plastocyanin-ferredoxin oxidoreductase, it transfers electrons from plastocyanin to ferredoxin. 90238 0 0 68354 9 polar nucleus Either of two nuclei located centrally in a flowering plant embryo sac that eventually fuse to form the endosperm nucleus. 90239 0 0 68355 9 thylakoid membrane The pigmented membrane of any thylakoid. 90240 0 0 68356 9 type Ib terminal button Terminal inflated portion of the axon of a glutamatergic neuron, containing the specialized apparatus necessary for the tonic release neurotransmitters that will induce the contraction of muscle. Type Ib terminal buttons are larger than type Is terminal buttons. 90241 0 0 68357 9 plasma membrane respiratory chain complex II A part of the respiratory chain located in the plasma membrane, containing the four polypeptide subunits of succinate dehydrogenase, flavin-adenine dinucleotide and iron-sulfur. Catalyzes the oxidation of succinate by ubiquinone. Connects the TCA cycle with the respiratory chain. Examples of this component are found in Bacterial species. 90242 0 0 68358 9 microtubule-based flagellum part Any constituent part of a microtubule-based flagellum, a long, whiplike protrusion from the surface of a eukaryotic cell, whose undulations drive the cell through a liquid medium; similar in structure to a cilium. The flagellum is based on a 9+2 arrangement of microtubules. Examples of this component are found in Mus musculus. 90243 0 0 68359 9 intermediate-density lipoprotein particle A triglyceride-rich lipoprotein particle that typically contains APOB100, APOE and APOCs and has a density of 1.006-1.019 g/ml and a diameter of between 25-30 nm. IDL particles are found in blood and are formed by the delipidation of very-low-density lipoprotein particles (VLDL). IDL particles are removed from blood by the liver, following binding to the APOE receptor, or are converted to low-density lipoprotein (LDL). 90244 0 0 68417 9 chromosomal part Any constituent part of a chromosome, a structure composed of a very long molecule of DNA and associated proteins (e.g. histones) that carries hereditary information. 90338 0 0 68528 9 extrinsic to lumenal side of plastid thylakoid membrane Loosely bound to the surface of a plastid thylakoid membrane that faces the lumen but not integrated into the hydrophobic region. 90487 0 0 68360 9 fibrinogen complex A highly soluble, elongated protein complex found in blood plasma and involved in clot formation. It is converted into fibrin monomer by the action of thrombin. In the mouse, fibrinogen is a hexamer, 46 nm long and 9 nm maximal diameter, containing two sets of nonidentical chains (alpha, beta, and gamma) linked together by disulfide bonds. 90245 0 0 68361 9 host cell chloroplast A chlorophyll-containing plastid as found within host cells with thylakoids organized into grana and frets, or stroma thylakoids, and embedded in a stroma. The host is defined as the larger of the organisms involved in a symbiotic interaction. 90246 0 0 68362 9 mitochondrial mRNA editing complex An mRNA editing complex found in the mitochondrion. The best characterized example is that of Trypanosoma brucei, which catalyzes the insertion and deletion of uridylates. 90247 0 0 68363 9 TFIIK complex A transcription factor complex that forms part of the holo TFIIH complex. In Saccharomyces, TFIIK contains Ccl1p, Tfb3p and Kin2p. 90248 0 0 68364 9 helical viral capsid The protein coat that surrounds the infective nucleic acid in some virus particles; the subunits are arranged to form a protein helix with the genetic material contained within. Tobacco mosaic virus has such a capsid structure. 90250 0 0 68365 9 interleukin-2 receptor complex A protein complex that binds interleukin-2; comprises alpha, beta, and gamma subunits. 90251 0 0 68366 9 tubulin complex A heterodimer of tubulins alpha and beta that constitutes the protomer for microtubule assembly. 90254 0 0 68367 9 signal recognition particle, chloroplast targeting A complex consisting of a protein and RNA component which binds the signal sequence of some proteins and facilitates their export to the chloroplast. 90255 0 0 68368 9 pyruvate dehydrogenase complex Complex that carries out the oxidative decarboxylation of pyruvate to form acetyl-CoA; comprises subunits possessing three catalytic activities: pyruvate dehydrogenase (E1), dihydrolipoamide S-acetyltransferase (E2), and dihydrolipoamide dehydrogenase (E3). 90257 0 0 68369 9 cytosolic proteasome regulatory particle, lid subcomplex The subcomplex of the cytosolic proteasome regulatory particle that forms the peripheral lid, which is added on top of the base subcomplex. 90259 0 0 68370 9 extracellular organelle Organized structure of distinctive morphology and function, occurring outside the cell. Includes, for example, extracellular membrane vesicles (EMVs) and the cellulosomes of anaerobic bacteria and fungi. 90260 0 0 68371 9 mannosyltransferase complex A complex that posseses mannosyltransferase activity. 90262 0 0 68372 9 TSC1-TSC2 complex A heterodimeric protein complex consisting of tumerin and hamartin; its formation may regulate hamartin homomultimer formation. The complex acts as a GTPase activating protein (GAP) for the small GTPase (Rheb), and inhibits the TOR signaling pathway. 90263 0 0 68373 9 cellubrevin-VAMP4-endobrevin-syntaxin-6 complex A SNARE complex that contains cellubrevin (VAMP3), VAMP4, endobrevin (VAMP8), and syntaxin 6 (or orthologs thereof). 90267 0 0 68374 9 acrosomal membrane The membrane that surrounds the acrosomal lumen. The acrosome is a special type of lysosome in the head of a spermatozoon that contains acid hydrolases and is concerned with the breakdown of the outer membrane of the ovum during fertilization. 90268 0 0 68375 9 ER to Golgi transport vesicle A vesicle that mediates transport from the endoplasmic reticulum to the Golgi complex; bears a coat formed of the COPII coat complex proteins; such vesicles found associated with endoplasmic reticulum (ER) membranes at steady state, and are involved in ER to Golgi (anterograde) vesicle transport. 90269 0 0 68379 9 thioglucosidase complex A large (200-800 kDa) multiprotein complex formed by 70-kDa and 5-kDa myrosinases, myrosinase- binding proteins (MBPs), MBP-related proteins and myrosinase-associated proteins. The complex has been identified in Brassica napus seeds. 90276 0 0 69135 13 prickle A portion of epidermis that is a sclerified outgrowth. 91247 0 0 68380 9 pirellulosome A cytoplasmic structure found in bacterial phyla Planctomycetes and Verrucomicrobia containing a condensed nucleoid and ribosomes and surrounded by an intracytoplasmic membrane. It is surrounded by ribosome-free cytoplasm, in a compartment called the paryphoplasm. 90278 0 0 68381 9 lytic vacuole within protein storage vacuole A membrane-bounded compartment containing crystals of phytic acid and proteins characteristic of a lytic vacuole, found within a storage vacuole. 90280 0 0 68382 9 mitochondrial membrane Either of the lipid bilayers that surround the mitochondrion and form the mitochondrial envelope. 90282 0 0 68383 9 central vacuole A membrane-enclosed sac that takes up most of the volume of a mature plant cell. Functions include storage, separation of toxic byproducts, and cell growth determination. 90283 0 0 68384 9 chitosome An intracellular membrane-bounded particle found in fungi and containing chitin synthase; it synthesizes chitin microfibrils. Chitin synthase activity exists in chitosomes and they are proposed to act as a reservoir for regulated transport of chitin synthase enzymes to the division septum. 90286 0 0 68385 9 microtubule associated complex Any multimeric complex connected to a microtubule. 90288 0 0 68386 9 pericanalicular vesicle A membrane-bounded vesicle found near the apical, or pericanalicular, membrane of a hepatocyte; contains proteins involved in bile salt transport and other fluid and solute transport processes. 90289 0 0 68387 9 Noc1p-Noc2p complex A heterodimer associated with 90S and 66S preribosomes in the nucleolus; involved in ribosomal large subunit biogenesis. 90292 0 0 68388 9 meiotic spindle pole body The microtubule organizing center on a spindle that forms as part of meiosis; functionally homologous to the animal cell centrosome. 90293 0 0 68389 9 collagen type XI A collagen heterotrimer containing type XI alpha chains in alpha1(XI)alpha2(XI)alpha3(XI) trimers; type XI collagen triple helices associate to form fibrils. 90295 0 0 68390 9 photoreceptor inner segment The inner segment of a vertebrate photoreceptor containing mitochondria, ribosomes and membranes where opsin molecules are assembled and passed to be part of the outer segment discs. 90296 0 0 68391 9 PcG protein complex A chromatin-associated multiprotein complex containing Polycomb Group proteins. In Drosophila, Polycomb group proteins are involved in the long-term maintenance of gene repression, and PcG protein complexes associate with Polycomb group response elements (PREs) in target genes to regulate higher-order chromatin structure. 90298 0 0 68525 9 dendrite membrane The portion of the plasma membrane surrounding a dendrite. 90484 0 0 68392 9 new growing cell tip A cell tip that was newly formed at the last cell division, and that has started to grow after the cell has activated bipolar cell growth (i.e. in which new end take-off, NETO, has taken place). New end take-off is when monopolar cells initiate bipolar growth. 90300 0 0 68393 9 PSI associated light-harvesting complex I, LHCIa subcomplex A pigment protein complex that forms part of the photosystem I associated light-harvesting complex I; contains two proteins (usually about 24 and 21.5 kDa); has a fluorescence maximum between 680 and 690 nm. 90302 0 0 68394 9 radial spokehead Protein complex forming part of eukaryotic flagellar apparatus. 90303 0 0 68395 9 Fc-alpha receptor I complex A protein complex composed of an Fc-alpha R alpha chain and an Fc-epsilon RI gamma chain dimer with or without additional signaling components. The complex functions primarily as an activating receptor for IgA. 90304 0 0 68396 9 translation preinitiation complex A ribonucleoprotein complex that contains the small ribosomal subunit, a translation initiation ternary complex (i.e. an initiator tRNA, GTP, and an IF2 or eIF2 complex), and an mRNA. 90306 0 0 68397 9 spot adherens junction A small junction assembled during the cellularization stage of insect embyrogenesis; spot adherens junctions later fuse to form the zonula adherens. 90307 0 0 68398 9 peripheral to membrane of membrane fraction Peripheral to that fraction of cells, prepared by disruptive biochemical methods, that includes the plasma and other membranes; can be extracted from membrane fraction with high concentrations of salt or high pH. 90308 0 0 68399 9 U2-type catalytic step 1 spliceosome A spliceosomal complex that is formed by the displacement of the U1 and U4 snRNPs from the precatalytic spliceosome; the U2, U5 and U6 snRNPs remain associated with the mRNA. This complex, sometimes called the activated spliceosome, is the catalytically active form of the spliceosome, and includes many proteins in addition to those found in the U2, and U5 and U6 snRNPs. 90309 0 0 68400 9 interferon regulatory factor 7 complex An interferon regulatory factor complex that consists of a homodimer of interferon regulatory factor 7. 90310 0 0 68401 9 HOPS complex A multimeric protein complex that associates with the vacuolar membrane and is involved in homotypic vacuole fusion and vacuole protein sorting. For example, the Saccharomyces complex contains Vps41p, Vam6p, Pep5p, Vps16p, Pep3p, and Vps33p. 90312 0 0 68402 9 alphav-beta5 integrin complex An integrin complex that comprises one alphav subunit and one beta5 subunit. 90314 0 0 68403 9 alpha9-beta1 integrin-osteopontin complex A protein complex that consists of an alpha9-beta1 integrin complex bound to osteopontin. 90315 0 0 68404 9 Nrd1 complex A complex that functions in transcription termination of RNA polymerase II transcribed non-coding RNAs. This complex interacts with the carboxy-terminal domain (CTD) of PolII and the terminator sequences in the nascent RNA transcript. In yeast this complex consists of Nrd1p, Nab3p, and Sen1p. 90316 0 0 68405 9 RNA granule A non-membranous macromolecular complex containing proteins and translationally silenced mRNAs. RNA granules contain proteins that control the localization, stability, and translation of their RNA cargo. Different types of RNA granules (RGs) exist, depending on the cell type and cellular conditions. 90320 0 0 68406 9 PR-DUB complex A multimeric protein complex that removes monoubiquitin from histone H2A. In Drosophila and mammals, the core of the complex is composed of Calypso/BAP1 and Asx/ASXL1, respectively. 90323 0 0 68462 9 collagen and cuticulin-based cuticle extracellular matrix part Any constituent part of the collagen and cuticulin-based cuticle extracellular matrix, a collagen and cuticulin-based noncellular, multilayered structure that is synthesized by an underlying ectodermal (hypodermal) cell layer. 90397 0 0 68407 9 ecdysone receptor holocomplex A heterodimeric complex containing the products of the insect genes Ecdysone receptor (EcR) and ultraspiracle (usp). Binding of ecdysone promotes association between the two subunits, and the receptor complex then initiates molting and metamorphosis by binding DNA and regulating the transcription of target genes. 90324 0 0 68408 9 old cell tip after activation of bipolar cell growth A cell tip which has existed for at least one complete cell cycle, and at which polarized growth occurs, which is part of a cell that has activated bipolar cell growth (i.e. in which new end take-off, NETO, has taken place). For example, in fission yeast the cell end that existed prior to cell division grows immediately after division, and contains a distinctive complement of proteins including actin cytoskeletal structures. 90326 0 0 68409 9 IgZ immunoglobulin complex A protein complex composed of two identical immunoglobulin heavy chains of the IgZ isotype and two identical immunoglobulin light chains, held together by disulfide bonds. The IgZ isotype is also known as the IgT isotype in certain species of fish. 90327 0 0 68410 9 shmoo (obsolete GO:0005936) OBSOLETE. The characteristic projection formed in response to mating pheromone by cells of Saccharomyces and other fungi with similar life cycles. Named after the Al Capp cartoon character, whose shape it resembles. 90328 1 0 68411 9 chromoplast inner membrane The inner, i.e. lumen-facing, lipid bilayer of the chromoplast envelope; also faces the chromoplast stroma. 90329 0 0 68412 9 macropinocytic cup cytoskeleton The part of the cortical actin cytoskeleton that forms part of a macropinocytic cup. 90330 0 0 68413 9 RNA-induced silencing complex A ribonucleoprotein complex that contains members of the Argonaute family of proteins, small interfering RNAs (siRNAs) or microRNAs (miRNAs), and miRNA or siRNA-complementary mRNAs, in addition to a number of accessory factors. The RISC complex is involved in posttranscriptional repression of gene expression through downregulation of translation or induction of mRNA degradation. 90331 0 0 68414 9 alpha9-beta1 integrin-ADAM9 complex A protein complex that consists of an alpha9-beta1 integrin complex bound to the transmembrane metallopeptidase ADAM9. 90334 0 0 68415 9 STAGA complex A large multiprotein complex that possesses histone acetyltransferase and is involved in regulation of transcription. The composition is similar to that of the SAGA complex; for example, the human complex contains the transcription-transformation cofactor TRRAP, hGCN5L acetylase, novel human ADA-like and SPT-like cofactors, and a subset of TAFs. 90335 0 0 68416 9 APC-IQGAP1-Cdc42 complex A protein complex that contains the tumor suppressor protein adenomatous polyposis coli (APC), the small GTPase Cdc42, and the Rac1 and Cdc42 effector IQGAP1; may play a role in cytoskeleton organization and cell migration. 90337 0 0 68418 9 MAML1-RBP-Jkappa- ICN1 complex A protein complex that consists of the intracellular domain of Notch1 (ICN1), the DNA-binding transcription factor RBP-Jkappa, and the transcriptional coactivator Mastermind-like-1 (MAML1); the complex is involved in transcriptional activation in response to Notch-mediated signaling. 90339 0 0 68419 9 apical junction complex A functional unit located near the cell apex at the points of contact between epithelial cells, which in vertebrates is composed of the tight junction, the zonula adherens, and desmosomes and in invertebrates is composed of the subapical complex (SAC), the zonula adherens and the septate junction. Functions in the regulation of cell polarity, tissue integrity and intercellular adhesion and permeability. 90342 0 0 68420 9 host thylakoid A membranous cellular structure within the host cell that bears the photosynthetic pigments in plants, algae, and cyanobacteria. In cyanobacteria thylakoids are of various shapes and are attached to, or continuous with, the host plasma membrane. In eukaryotic host cells they are flattened, membrane-bounded disk-like structures located in the chloroplasts; in the chloroplasts of higher plants the thylakoids form dense stacks called grana. Isolated thylakoid preparations can carry out photosynthetic electron transport and the associated phosphorylation. 90344 0 0 68421 9 late endosome lumen The volume enclosed by the membrane of a late endosome. 90345 0 0 68422 9 interleukin4-interleukin-4 receptor complex A protein complex that is formed by the association of a heterodimeric interleukin-4 receptor complex with an interleukin-4 molecule. 90346 0 0 68423 9 IgD immunoglobulin complex, GPI-anchored A protein complex composed of two identical immunoglobulin heavy chains of the IgD isotype and two identical immunoglobulin light chains, held together by disulfide bonds, and bound via a GPI-anchor to the plasma membrane of B cells. 90347 0 0 68424 9 mitochondrial glutamate synthase complex (NADH) A protein complex, found in the mitochondria, that in yeast consists of a large and a small subunit. Possesses glutamate synthase (NADH) activity. 90348 0 0 68425 9 aleurone grain lumen The volume enclosed by the membrane of an aleurone grain. 90349 0 0 68426 9 contractile fiber part Any constituent part of a contractile fiber, a fiber composed of actin, myosin, and associated proteins, found in cells of smooth or striated muscle. 90350 0 0 68427 9 host caveola A small pit, depression, or invagination, such as any of the minute pits or incuppings of the host cell membrane formed during pinocytosis, that communicates with the outside of a host cell and extends inward, indenting the host cytoplasm and the host cell membrane. Such caveolae may be pinched off to form free vesicles within the host cytoplasm. The host is defined as the larger of the organisms involved in a symbiotic interaction. 90351 0 0 68428 9 nuclear inner membrane The inner, i.e. lumen-facing, lipid bilayer of the nuclear envelope. 90352 0 0 68429 9 hyphal septin band A septin band, i.e. a diffuse ring composed of a series of septin bars running parallel to the long axis of the cell, located at the junction between the mother cell and the germ tube (hypha) of a fungal cell growing filamentously. 90353 0 0 68430 9 secretory vesicle (obsolete GO:0005803) OBSOLETE. A small subcellular vesicle, or granule, surrounded by a single-layered membrane; formed from the Golgi apparatus and contains a highly concentrated protein destined for secretion. 90354 1 0 68431 9 mating projection tip polarisome Protein complex that has a role in determining cell polarity, found at the tip of the mating projection in unicellular fungi exposed to mating pheromone. 90355 0 0 68432 9 mitochondrial oxoglutarate dehydrogenase complex A complex of multiple copies of three enzymatic components: oxoglutarate dehydrogenase (lipoamide) ; EC:1.2.4.2 (E1), dihydrolipoamide S-succinyltransferase ; EC:2.3.1.61 (E2) and dihydrolipoamide dehydrogenase ; EC:1.8.1.4 (E3); catalyzes the overall conversion of 2-oxoglutarate to succinyl-CoA and carbon dioxide (CO2) within the mitochondrial matrix. An example of this complex is found in Mus musculus. 90356 0 0 68433 9 interphotoreceptor matrix A specialized extracellularc matrix that surrounds the photoreceptors of the retina and lies between them and the apical surface of the retinal pigment epithelium. The IPM has been implicated in several important activities required for photoreceptor function and maintenance. 90357 0 0 77139 46 accession number \N 210042 0 0 68434 9 axon The long process of a neuron that conducts nerve impulses, usually away from the cell body to the terminals and varicosities, which are sites of storage and release of neurotransmitter. 90361 0 0 68435 9 ER proteasome core complex The core complex of a proteasome located in the endoplasmic reticulum of a cell. 90362 0 0 68436 9 cell junction A plasma membrane part that forms a specialized region of connection between two cells or between a cell and the extracellular matrix. At a cell junction, anchoring proteins extend through the plasma membrane to link cytoskeletal proteins in one cell to cytoskeletal proteins in neighboring cells or to proteins in the extracellular matrix. 90363 0 0 68437 9 HA2 clathrin adaptor (obsolete GO:0005908) OBSOLETE (was not defined before being made obsolete). 90364 1 0 68438 9 Golgi stack lumen The volume enclosed by any of the membranes of the thin, flattened cisternae that form the central portion of the Golgi complex. 90365 0 0 68439 9 extrinsic to plasma membrane Loosely bound to one surface of the plasma membrane, but not integrated into the hydrophobic region. 90366 0 0 68440 9 transcription export complex The transcription export (TREX) complex couples transcription elongation by RNA polymerase II to mRNA export. The complex associates with the polymerase and travels with it along the length of the transcribed gene. TREX is composed of the THO transcription elongation complex as well as other proteins that couple THO to mRNA export proteins. The TREX complex is known to be found in a wide range of eukaryotes, including S. cerevisiae and metazoans. 90368 0 0 68441 9 plastid large ribosomal subunit The larger of the two subunits of a plastid ribosome. Two sites on the ribosomal large subunit are involved in translation: the aminoacyl site (A site) and peptidyl site (P site). 90369 0 0 68442 9 NADH dehydrogenase complex (plastoquinone) An NADH dehydrogenase complex that catalyzes the transfer of electrons to plastoquinone. The complex is involved in the non-photochemical reduction of plastoquinones and the cyclic electron transport around photosystem I, and is found in plastid thylakoids. 90370 0 0 68526 9 linear element A proteinaceous scaffold associated with S. pombe chromosomes during meiotic prophase. Linear elements have a structure related to but not equivalent to the synaptonemal complex. 90485 0 0 68443 9 intrinsic to cell outer membrane Located in the cell outer membrane such that some covalently attached portion of the gene product, for example part of a peptide sequence or some other covalently attached group such as a GPI anchor, spans or is embedded in one or both leaflets of the membrane. 90372 0 0 68444 9 apical lamina of hyaline layer A fibrous network that is part of the hyalin layer extracellular matrix. The apical lamina is thought to be principally composed of the glycoproteins fibropellins. This matrix has been found in echinoderms. 90373 0 0 68445 9 plasma membrane-derived chromatophore membrane The lipid bilayer associated with a plasma membrane-derived chromatophore; surrounds chromatophores that form complete vesicles. 90377 0 0 68446 9 clathrin sculpted gamma-aminobutyric acid transport vesicle lumen The volume enclosed by the membrane of the clathrin sculpted gamma-aminobutyric acid transport vesicle. 90378 0 0 68447 9 mating projection base The region where the mating projection meets the bulk of the cell, in unicellular fungi exposed to mating pheromone. 90379 0 0 68448 9 perinuclear region of cytoplasm Cytoplasm situated near, or occurring around, the nucleus. 90380 0 0 68449 9 microfibril Extracellular matrix components occurring independently or along with elastin. Thought to have force-bearing functions in tendon. In addition to fibrillins, microfibrils may contain other associated proteins. 90381 0 0 68450 9 cell projection A prolongation or process extending from a cell, e.g. a flagellum or axon. 90383 0 0 68451 9 collagen Any of the various assemblies in which collagen chains form a left-handed triple helix; may assemble into higher order structures. 90384 0 0 68452 9 telomere cap complex A complex of DNA and protein located at the end of a linear chromosome that protects and stabilizes a linear chromosome. 90385 0 0 68453 9 septin collar A tubular, hourglass-shaped structure composed of highly ordered arrays of septin filaments; in budding yeast cells, the septin collar forms from the initial septin ring by expanding into the daughter cell. 90386 0 0 68454 9 ornithine carbamoyltransferase complex A homotrimeric protein complex that catalyzes the transfer of a carbamoyl group to ornithine, forming citrulline. 90387 0 0 68455 9 medial cortex A medial cortical band overlaying the nucleus which acts as a landmark for contractile ring positioning and plays a role in cell cycle regulation. 90388 0 0 68456 9 recycling endosome lumen The volume enclosed by the membranes of a recycling endosome. 90390 0 0 68457 9 nematocyst An organelle found in cnidoblast (nematoblast) cells. When matured, these stinging organelles store toxins and can deliver them when the cnidocil (a short extension of the cnidocyst) is stimulated by a prey or another stimulus. 90391 0 0 68458 9 proteasome regulatory particle A multisubunit complex, which caps one or both ends of the proteasome core complex. This complex recognizes and unfolds ubiquitinated proteins, and translocates them to the proteasome core complex. 90393 0 0 68459 9 histone methyltransferase complex A multimeric complex that is able to catalyze the addition of methyl groups to histone proteins. 90394 0 0 68460 9 U12-type post-spliceosomal complex A spliceosomal complex that is formed following the second splicing event and contains the spliced product, the excised intron, and three snRNPs, including U5. 90395 0 0 68461 9 monolayer-surrounded lipid storage body outer lipid monolayer The single layer of phopholipids surrounding a lipid storage body. 90396 0 0 68463 9 thylakoid lumen The volume enclosed by a thylakoid membrane. 90398 0 0 69274 13 pericycle cell A ground tissue cell that is part of a portion of pericycle. 91414 0 0 68464 9 IgD immunoglobulin complex A protein complex composed of two identical immunoglobulin heavy chains of the IgD isotype and two identical immunoglobulin light chains, held together by disulfide bonds. An IgD immunoglobulin complex may be embedded in the plasma membrane or present in the extracellular space, in mucosal areas or other tissues, or circulating in the blood or lymph. 90399 0 0 68465 9 glyoxysome A specialized form of peroxisome that contains the enzymes of the glyoxylate pathway. The glyoxysome is found in some plant cells, notably the cells of germinating seeds. 90400 0 0 68466 9 ISGF3 complex A transcription factor complex that consists of a Stat1-Stat2 heterodimer and the IRF9 protein. 90401 0 0 68467 9 cytoplasmic chromatin The ordered and organized complex of DNA, protein, and sometimes RNA, that forms the chromosome in the cytoplasm. 90403 0 0 68468 9 viral portal complex A multimeric ring of proteins through which the DNA enters and exits the viral capsid. 90404 0 0 68469 9 mitotic chromosome (obsolete GO:0005708) OBSOLETE. A chromosome involved in the process of mitosis. 90406 1 0 68470 9 cytosolic tricarboxylic acid cycle enzyme complex Any of the heteromeric enzymes, located in the cytosol, that act in the tricarboxylic acid (TCA) cycle. 90407 0 0 68471 9 chloroplast proton-transporting ATP synthase complex, coupling factor CF(o) All non-F1 subunits of the chloroplast hydrogen-transporting ATP synthase, including integral and peripheral chloroplast thylakoid membrane proteins. 90408 0 0 68472 9 extrahaustorial matrix The space between the symbiont plasma membrane and the extrahaustorial membrane of the host. 90409 0 0 68473 9 unconventional myosin complex A portmanteau term for myosins other than myosin II. 90410 0 0 68474 9 symplast The interconnected cell membranes and intracellular regions of a plant. The interconnections occur via the plasmodesmata. 90412 0 0 68475 9 mitochondrial respiratory chain complex I A protein complex located in the mitochondrial inner membrane that forms part of the mitochondrial respiratory chain. It contains about 25 different polypeptide subunits, including NADH dehydrogenase (ubiquinone), flavin mononucleotide and several different iron-sulfur clusters containing non-heme iron. The iron undergoes oxidation-reduction between Fe(II) and Fe(III), and catalyzes proton translocation linked to the oxidation of NADH by ubiquinone. 90413 0 0 68476 9 chromaffin granule lumen The volume enclosed by the membrane of a chromaffin granule. 90415 0 0 68527 9 membrane Double layer of lipid molecules that encloses all cells, and, in eukaryotes, many organelles; may be a single or double lipid bilayer; also includes associated proteins. 90486 0 0 69961 13 leaf adaxial pavement cell A leaf pavement cell that is part of a leaf adaxial epidermis. 92200 0 0 68477 9 Slx1-Slx4 complex A heterodimeric protein complex that possesses an endonuclease activity that specifically cleaves certain types of branched DNA structures; because such structures often form during the replication ribosomal DNA (rDNA) repeats, the complex plays a role in the maintenance of rDNA. The subunits are known as Slx1 and Slx 4 in budding and fission yeasts, and are conserved in eukaryotes. 90416 0 0 68478 9 nuclear proteasome regulatory particle The regulatory subcomplex of a proteasome located in the nucleus of a cell. 90418 0 0 68479 9 Hrd1p ubiquitin ligase ERAD-L complex A multiprotein complex that recognizes and ubiquitinates proteins with misfolded luminal domains during ER-associated protein degradation (ERAD). In S. cerevisiae, this complex contains the ubiquitin ligase Hrd1p. 90419 0 0 68480 9 small cytoplasmic ribonucleoprotein complex A complex composed of RNA of the small cytoplasmic RNA (scRNA) class and protein, found in the cytoplasm. 90420 0 0 68481 9 NALP1 inflammasome complex A protein complex that consists of three components, NALP3, PYCARD and caspase-1, and includes among its functions the sensing of various stimuli including anti-viral compounds R837 and R848, bacterial mRNA, gout-associated crystals, bacterial toxins derived from Listeria monocytogenes, Staphylococcus aureus and Shigella flexneri. 90421 0 0 68482 9 coated vesicle membrane The lipid bilayer surrounding a coated vesicle. 90422 0 0 68483 9 type I protein secretion system complex A complex of three secretory proteins that carry out secretion in the type I secretion system: an inner membrane transport ATPase (termed ABC protein for ATP-binding cassette), which provides the energy for protein secretion; an outer membrane protein, which is exported via the sec pathway; and a membrane fusion protein, which is anchored in the inner membrane and spans the periplasmic space. 90423 0 0 68484 9 nucleolar part Any constituent part of a nucleolus, a small, dense body one or more of which are present in the nucleus of eukaryotic cells. It is rich in RNA and protein, is not bounded by a limiting membrane, and is not seen during mitosis. 90424 0 0 68485 9 stereocilia ankle link A stereocilia coupling link that is composed of a fine filament present in developing stereocilia that couples the bases of individual stereocilia to one another. They are not present in mature stereocilia. 90425 0 0 68486 9 CAAX-protein geranylgeranyltransferase complex A heterodimeric enzyme, composed of an alpha and a beta subunit. Participates in the post-translational C-terminal modification of several small GTPases, allowing their targeting to the membrane. 90427 0 0 68487 9 primary plasmodesma A plasmodesma that consists of a simple, single channel; found predominantly in young tissue and formed as a function of cell plate formation during cytokinesis. 90429 0 0 68488 9 polyhedral organelle An organelle found in bacteria consisting of a proteinaceous coat containing metabolic enzymes whose purpose is the sequestration or concentration of metabolites and which has the appearance of a polygonal granule by electron microscopy. 90430 0 0 68489 9 mitochondrion A semiautonomous, self replicating organelle that occurs in varying numbers, shapes, and sizes in the cytoplasm of virtually all eukaryotic cells. It is notably the site of tissue respiration. 90433 0 0 68490 9 SAGA-type complex A histone acetyltransferase complex that acetylates nucleosomal H3 and H2B and is required for the expression of a subset of Pol II-transcribed genes. The budding yeast complex includes the acetyltransferase Gcn5p, several proteins of the Spt and Ada families, and several TBP-associate proteins (TAFs); analogous complexes in other species have analogous compositions, and usually contain homologs of the yeast proteins. 90434 0 0 68491 9 organellar chromatophore membrane Either of the lipid bilayers that surround an organellar chromatophore. 90435 0 0 68492 9 mitochondrial small ribosomal subunit The smaller of the two subunits of a mitochondrial ribosome. 90436 0 0 68567 9 cell tip The region at either end of the longest axis of a cylindrical or elongated cell. 90536 0 0 68493 9 propanediol degradation polyhedral organelle An organelle found in bacteria consisting of a proteinaceous coat containing enzymes for the degradation of 1,2-propanediol whose purpose is the protection of the rest of the cell from the toxic propionaldehyde product of the enzyme diol dehydratase. 90437 0 0 68494 9 cilium A specialized eukaryotic organelle that consists of a filiform extrusion of the cell surface. Each cilium is bounded by an extrusion of the cytoplasmic membrane, and contains a regular longitudinal array of microtubules, anchored basally in a centriole. 90438 0 0 69136 13 ninth order inflorescence axis An inflorescence branch arising from an eighth order inflorescence axis. 91248 0 0 68495 9 fungal-type cell wall A rigid yet dynamic structure surrounding the plasma membrane that affords protection from stresses and contributes to cell morphogenesis, consisting of extensively cross-linked glycoproteins and carbohydrates. The glycoproteins may be modified with N- or O-linked carbohydrates, or glycosylphosphatidylinositol (GPI) anchors; the polysaccharides are primarily branched glucans, including beta-linked and alpha-linked glucans, and may also include chitin and other carbohydrate polymers, but not cellulose or pectin. Enzymes involved in cell wall biosynthesis are also found in the cell wall. Note that some forms of fungi develop a capsule outside of the cell wall under certain circumstances; this is considered a separate structure. 90439 0 0 68496 9 spindle envelope An organelle envelope that surrounds the chromosomes and the central part of the spindle apparatus during mitosis and meiosis; observed in many invertebrates. The spindle envelope consists of membrane layers, called parafusorial membranes, derived from endoplasmic reticulum membrane; in male meiosis it forms during prometaphase and persists until early in the ensuing interphase. 90444 0 0 68497 9 Sin3-type complex Any of a number of evolutionarily conserved histone deacetylase complexes (HDACs) containing a core consisting of a paired amphipathic helix motif protein (e.g. Sin3p in S. cerevisiae, Pst1 in S. pombe or Sin3A in mammals) at least one class I histone deacetylase (e.g. Rpd3p in S. cerevisiae, Clr6 in S. pombe, or HDAC1 and HDAC2 in mammals), and at least one WD40 repeat protein (e.g. Ume1p in S. cerevisiae, Prw1 in S. pombe, or RbAp46 and RbAp48 in mammals). These complexes also contain a variable number of other proteins that direct histone binding, DNA binding, or add other functionality to the complex. 90447 0 0 68498 9 pleated septate junction A septate junction in which regular arrays of electron-dense septae span the intermembrane space. 90450 0 0 68499 9 A band The dark-staining region of a sarcomere, in which myosin thick filaments are present; the center is traversed by the paler H zone, which in turn contains the M line. 90451 0 0 70153 13 Poaceae micropyle A micropyle at the apex of a grass ovule. 92407 0 0 68500 9 SSL2-core TFIIH complex portion of holo TFIIH complex The SSL2-core TFIIH complex when it is part of the general transcription factor TFIIH. It is composed of the tightly associated five subunit core TFIIH subcomplex plus one additional, less tighly associated subunit. The subunits are well conserved from yeast to humans. In S. cerevisiae, the 5-subunit core is composed of Rad3, Tfb1, Tfb2, Ssl1, Tfb4 and the loosely associated subunit is Ssl2p (also called Rad25). In humans, the 5 subunit core is composed of ERCC2, p62, p55, p44, p34 and the loosely associated subunit is XPB. 90452 0 0 68501 9 pyrophosphate-dependent phosphofructokinase complex Heterodimeric complex that catalyzes the pyrophosphate-dependent phosphorylation of D-fructose 6-phosphate into D-fructose 1,6-bisphosphate. 90453 0 0 68502 9 phagocytic vesicle lumen The volume enclosed by the membrane of a phagocytic vesicle. 90454 0 0 68503 9 mitochondrial crista Any of the inward folds of the mitochondrial inner membrane. Their number, extent, and shape differ in mitochondria from different tissues and organisms. They appear to be devices for increasing the surface area of the mitochondrial inner membrane, where the enzymes of electron transport and oxidative phosphorylation are found. Their shape can vary with the respiratory state of the mitochondria. 90455 0 0 68504 9 costamere Regular periodic sub membranous arrays of vinculin in skeletal and cardiac muscle cells, these arrays link Z-discs to the sarcolemma and are associated with links to extracellular matrix. 90456 0 0 68505 9 alpha DNA polymerase:primase complex A complex of four polypeptides, comprising large and small DNA polymerase alpha subunits and two primase subunits, which catalyzes the synthesis of an RNA primer on the lagging strand of replicating DNA; the smaller of the two primase subunits alone can catalyze oligoribonucleotide synthesis. 90458 0 0 68506 9 Casparian strip Region of plant cell wall specialised to act as a seal to prevent back leakage of secreted material (analogous to tight junction between epithelial cells). Found particularly where root parenchymal cells secrete solutes into xylem vessels. The barrier is composed of suberin; a fatty substance, containing long chain fatty acids and fatty esters, also found in the cell walls of cork cells (phellem) in higher plants. 90459 0 0 68507 9 host cell membrane pore complex Any small opening in a host cell membrane that allows the passage of gases and/or liquids, composed of host proteins. 90460 0 0 68508 9 chromosome, centromeric outer repeat region The portion of the centromeric region of a chromosome that flanks the core region, encompassing repeated regions of a chromosome centromere and the proteins that bind to it. 90461 0 0 68509 9 rough endoplasmic reticulum lumen The volume enclosed by the membranes of the rough endoplasmic reticulum. 90462 0 0 68510 9 lamellipodium A thin sheetlike process extended by the leading edge of a crawling fibroblast; contains a dense meshwork of actin filaments. 90463 0 0 68511 9 dimeric positive transcription elongation factor complex b A positive transcription elongation factor complex b that comprises two subunits; an example is the budding yeast complex containing Svg1p (also called Bur1p) and Bur2p. 90464 0 0 68512 9 homodimeric decaprenyl diphosphate synthase complex A homodimeric complex that possesses di-trans,poly-cis-decaprenylcistransferase activity; involved in ubiquinone biosynthesis. 90465 0 0 68513 9 prothylakoid Underdeveloped thylakoids found in etioplasts, lacking competent photosynthetic membranes. Rapidly develop into mature thylakoids in the presence of light. 90466 0 0 68514 9 integral to cell outer membrane Located such that some or all of the gene product itself penetrates at least one phospholipid bilayer of the external outer membrane of the cell. May also refer to the state of being buried in the bilayer with no exposure outside the bilayer. 90468 0 0 68515 9 smooth septate junction A septate junction that lacks the regular arrays of electron-dense septae found in pleated septate junctions. 90469 0 0 68568 9 alphaIIb-beta3 integrin complex An integrin complex that comprises one alphaIIb subunit and one beta3 subunit. 90537 0 0 68516 9 lignin network An extracellular matrix part that consists of lignin in the form of a three-dimensional polymeric network. Lignins are complex racemic aromatic heteropolymers derived from a variety of phenylpropane monomers coupled together by an assortment of carbon-carbon and ether linkages. Lignin is crucial for structural integrity of the cell wall and stiffness and strength of the stem. In addition, lignin waterproofs the cell wall, enabling transport of water and solutes through the vascular system, and plays a role in protecting plants against pathogens. 90470 0 0 69137 13 aerial tuber axillary bud meristem A tuber axillary bud meristem that is part of an aerial tuber. 91249 0 0 68517 9 succinate dehydrogenase complex A multimeric complex which consists of flavoprotein (subunit A ; InterPro:IPR003952), iron-sulfur protein (subunit B) and membrane-bound cytochrome b560 (subunit C; InterPro:IPR000701). In some Archaea, the membrane-bound subunits (C or C and D) do not necessarily contain heme. Membrane-bound subunits can bind or react with quinones. 90473 0 0 68518 9 U1 snRNP A ribonucleoprotein complex that contains small nuclear RNA U1. 90474 0 0 68519 9 aminoadipate-semialdehyde dehydrogenase complex (obsolete GO:0005949) OBSOLETE. A heterodimeric enzyme composed of an alpha and beta subunit. Catalyzes the formation of L-2-aminoadipate from L-2-aminoadipate 6-semialdehyde. 90475 1 0 68520 9 filopodium membrane The portion of the plasma membrane surrounding a filopodium. 90476 0 0 68521 9 chromosome passenger complex A eukaryotically conserved protein complex that localizes to kinetochores in early mitosis, the spindle mid-zone in anaphase B and to the telophase midbody. It has been proposed that the passenger complex coordinates various events based on its location to different structures during the course of mitosis. Complex members include the BIR-domain-containing protein Survivin, Aurora B kinase, INCENP and Borealin. 90477 0 0 68522 9 mitochondrial proton-transporting ATP synthase complex, catalytic core F(1) The catalytic sector of the mitochondrial hydrogen-transporting ATP synthase; it comprises the catalytic core and central stalk, and is peripherally associated with the mitochondrial inner membrane when the entire ATP synthase is assembled. 90480 0 0 68523 9 chloroplast outer membrane translocon The protein transport machinery of the chloroplast outer membrane that contains at least three components Toc159, Toc75 and Toc34, interacts with precursor proteins which are imported into the chloroplast in a GTP dependant manner. 90481 0 0 68524 9 bacterial-type flagellum basal body, distal rod, L ring One of the rings of the flagellar basal body; anchors the basal body to the outer membrane. Examples of this component are found in bacteria. 90483 0 0 68529 9 motile cilium A cilium which has a variable arrangement of axonemal microtubules, contains molecular motors, and beats with a characteristic whip-like pattern that promotes cell motility or transport of fluids and other cells across a cell surface. Motile cilia are typically found in multiple copies on epithelial cells that line the lumenal ducts of various tissues. Motile cilia may also function as sensory organelles. 90488 0 0 68530 9 calcium channel complex An ion channel complex through which calcium ions pass. 90489 0 0 68531 9 cytosolic DNA-directed RNA polymerase complex The eubacterial DNA-directed RNA polymerase is a multisubunit complex with a core composed of the essential subunits beta-prime, beta, and two copies of alpha and a fifth nonessential subunit called omega. An additional subunit, a sigma factor, is required for promoter recognition and specificity. 90490 0 0 68532 9 interchromatin granule A class of nuclear body measuring 20-25 nm in diameter and distributed throughout the interchromatin space, linked together by thin fibrils. They are believed to be storage centers for various snRNAs, snRNPs, serine/arginine-rich proteins and RNA polymerase II. A typical mammalian cell contains 25-50 clusters of interchromatin granules. Interchromatin granule clusters do not contain the heterogeneous nuclear RNA-binding proteins (hnRNPs). 90492 0 0 68533 9 DNA-directed RNA polymerase II, core complex RNA polymerase II, one of three nuclear DNA-directed RNA polymerases found in all eukaryotes, is a multisubunit complex; typically it produces mRNAs, snoRNAs, and some of the snRNAs. Two large subunits comprise the most conserved portion including the catalytic site and share similarity with other eukaryotic and bacterial multisubunit RNA polymerases. The largest subunit of RNA polymerase II contains an essential carboxyl-terminal domain (CTD) composed of a variable number of heptapeptide repeats (YSPTSPS). The remainder of the complex is composed of smaller subunits (generally ten or more), some of which are also found in RNA polymerases I and III. Although the core is competent to mediate ribonucleic acid synthesis, it requires additional factors to select the appropriate template. 90493 0 0 68534 9 cell wall inner membrane (obsolete GO:0009280) OBSOLETE. In Gram-negative bacteria the membrane that separates the cytoplasm from the murein sacculus. 90494 1 0 68535 9 cortical cytoskeleton The portion of the cytoskeleton that lies just beneath the plasma membrane. 90495 0 0 68536 9 G-protein beta/gamma-Raf-1 complex A protein complex formed by the association of the serine-threonine protein kinase Raf-1 with the beta and gamma subunits of a heterotrimeric G protein. 90496 0 0 68537 9 male pronucleus The pronucleus originating from the spermatozoa that was involved in fertilization. 90498 0 0 68538 9 proteasome complex A large multisubunit complex which catalyzes protein degradation. This complex consists of the barrel shaped proteasome core complex and one or two associated proteins or complexes that act in regulating entry into or exit from the core. 90499 0 0 68539 9 CLRC ubiquitin ligase complex An active cullin-dependent E3 ubiquitin ligase complex essential for heterochromatin assembly by RNAi and histone H3K9 methylation. 90500 0 0 68540 9 nucleoid The region of a bacterial cell, mitochondrion or chloroplast to which the DNA is confined. 90503 0 0 69124 13 lower glume of ear spikelet The proximal/basal of the two glumes in the ear spikelet. 91231 0 0 68541 9 nBAF complex A SWI/SNF-type complex that is found in post-mitotic neurons, and in human contains actin and proteins encoded by the ARID1A/BAF250A or ARID1B/BAF250B, SMARCD1/BAF60A, SMARCD3/BAF60C, SMARCA2/BRM/BAF190B, SMARCA4/BRG1/BAF190A, SMARCB1/BAF47, SMARCC1/BAF155, SMARCE1/BAF57, SMARCC2/BAF170, DPF1/BAF45B, DPF3/BAF45C, ACTL6B/BAF53B genes. The nBAF complex along with CREST plays a role regulating the activity of genes essential for dendrite growth. 90505 0 0 68542 9 late recombination nodule An electron dense structure that is associated with meiotic chromosomes in pachytene during meiosis I. 90506 0 0 68543 9 Type III site-specific deoxyribonuclease complex A heterodimeric enzyme complex composed of two subunits, Res and Mod, that functions as an endonuclease and cleaves DNA. Cleavage will only occur when there are two un-methylated copies of a specific recognition site in an inverse orientation on the DNA. Cleavage occurs at a specific distance away from one of the recognition sites. The Mod subunit can act alone as a methyltansferase. DNA restriction systems such as this are used by bacteria to defend against phage and other foreign DNA that may enter a cell. 90507 0 0 68544 9 bacterial-type flagellum filament The long (approximately 20 nm), thin external structure of the flagellum, which acts as a propeller. Examples of this component are found in bacteria. 90508 0 0 69138 13 Poaceae integument epidermis The epidermis of an integument in a grass ovule. 91250 0 0 68545 9 host cell Cajal body A class of nuclear body in the eukaryotic host cell, first seen after silver staining by Ramon y Cajal in 1903, enriched in small nuclear ribonucleoproteins, and certain general RNA polymerase II transcription factors; ultrastructurally, they appear as a tangle of coiled, electron-dense threads roughly 0.5 micrometers in diameter; involved in aspects of snRNP biogenesis; the protein coilin serves as a marker for Cajal bodies. Some argue that Cajal bodies are the sites for preassembly of transcriptosomes, unitary particles involved in transcription and processing of RNA. The host is the larger of the organisms involved in a symbiotic interaction. 90509 0 0 68546 9 axonemal microtubule A microtubule in the axoneme of a cilium or flagellum; an axoneme contains nine modified doublet microtubules surrounding a pair of single microtubules. 90510 0 0 68547 9 transcription factor TFIIIB-alpha complex A transcription factor TFIIIB-beta complex that contains the TATA-binding protein (TBP), B'' and a specialized homolog of the conserved subunit BRF referred to as BRFU or TFIIIB50, which found in human but not conserved in yeast; the complex is involved in the regulation of transcription from type 3 (upstream) RNA polymerase III promoters. 90511 0 0 68548 9 P1 peroxisome A subform of peroxisome that corresponds to an intermediate in a peroxisome assembly pathway, which operates by conversion of peroxisomal subforms in the direction P1, P2 -> P3 -> P4 -> P5 -> P6. P1 peroxisomes are distinguished from the other subforms on the bases of buoyant density and protein content; they contain fewer peroxisomal proteins than the other subforms. 90512 0 0 69147 13 rhizoid meristematic apical cell A gametophyte meristematic apical cell that is part of a rhizoid. 91263 0 0 69148 13 tassel floret Flowers of the spikelets of maize tassel. 91264 0 0 69153 13 spikelet meristem An inflorescence apical meristem that gives rise to the two or more florets of a grass inflorescence. 91271 0 0 70211 13 embryo sac A megagametophyte that is located in an ovule in an ovary. 92468 0 0 68549 9 climbing fiber The axon of inferior olive neuron that projects to the cerebellar cortex, largely via the inferior cerebellar peduncle. They range in diameter from 1-3 um and are myelinated until they enter the granule cell layer. They give off collaterals to the deep cerebellar nuclei. They synapse extensively with the dendrites of Purkinje cells in the molecular layer, where each fiber branches repeatedly to "climb" along the Purkinje cell dendritic tree. Each Purkinje cell is innervated by only a single climbing fiber. 90513 0 0 68550 9 dystrophin-associated glycoprotein complex A multiprotein complex that forms a strong mechanical link between the cytoskeleton and extracellular matrix; typical of, but not confined to, muscle cells. The complex is composed of transmembrane, cytoplasmic, and extracellular proteins, including dystrophin, sarcoglycans, dystroglycan, dystrobrevins, syntrophins, sarcospan, caveolin-3, and NO synthase. 90515 0 0 68551 9 zymogen granule membrane The lipid bilayer surrounding a zymogen granule. 90516 0 0 68552 9 U11 snRNP A ribonucleoprotein complex that contains small nuclear RNA U11. 90517 0 0 68553 9 alphav-beta3 integrin-HMGB1 complex A protein complex that consists of an alphav-beta3 integrin complex bound to high mobility group box 1 protein. 90518 0 0 68554 9 alphav-beta3 integrin-collagen alpha3(VI) complex A protein complex that consists of an alphav-beta3 integrin complex bound to the alpha3 chain of type VI collagen; the integrin binds most strongly to unfolded collagen. 90520 0 0 68555 9 organellar chromatophore thylakoid lumen The volume enclosed by an organellar chromatophore thylakoid membrane. 90521 0 0 68556 9 perichromatin fibrils Structures of variable diameter visible in the nucleoplasm by electron microscopy, mainly observed near the border of condensed chromatin. The fibrils are enriched in RNA, and are believed to be sites of pre-mRNA splicing and polyadenylylation representing the in situ form of nascent transcripts. 90522 0 0 68557 9 cellular bud A protuberance from a cell of an organism that reproduces by budding, which will grow larger and become a separate daughter cell after nuclear division, cytokinesis, and cell wall formation (when appropriate). The daughter cell may completely separate from the mother cell, or the mother and daughter cells may remain associated. 90524 0 0 68558 9 integral to fungal-type vacuolar membrane Located such that some or all of the gene product itself penetrates at least one phospholipid bilayer of the fungal-type vacuolar membrane. May also refer to the state of being buried in the bilayer with no exposure outside the bilayer. 90525 0 0 68559 9 plasma membrane proton-transporting V-type ATPase, V0 domain The V0 domain of a proton-transporting V-type ATPase found in the plasma membrane. 90526 0 0 68560 9 alkyl hydroperoxide reductase complex An enzyme complex, usually a homodimer, which directly reduces cellular levels of organic hydroperoxides. 90527 0 0 68561 9 lateral part of motile cell The area of a motile cell perpendicular to the direction of movement. 90530 0 0 68562 9 EGFR-Grb2-Sos complex A protein complex that contains the epidermal growth factor receptor (EGFR), Grb2 and the guanine nucleotide exchange factor Sos (or an ortholog thereof, such as mSos1), and is involved in linking EGFR activation to the p21-Ras pathway. 90531 0 0 68563 9 DNA helicase complex A protein complex that possesses DNA helicase activity. 90532 0 0 68564 9 clathrin-coated endocytic vesicle A clathrin-coated, membrane-bounded intracellular vesicle formed by invagination of the plasma membrane around an extracellular substance. 90533 0 0 68565 9 CVT vesicle membrane The double lipid bilayer surrounding a CVT vesicle. 90534 0 0 68566 9 metaxin (obsolete GO:0018998) OBSOLETE (was not defined before being made obsolete). 90535 1 0 68569 9 tight junction An occluding cell-cell junction that is composed of a branching network of sealing strands that completely encircles the apical end of each cell in an epithelial sheet; the outer leaflets of the two interacting plasma membranes are seen to be tightly apposed where sealing strands are present. Each sealing strand is composed of a long row of transmembrane adhesion proteins embedded in each of the two interacting plasma membranes. 90538 0 0 68570 9 alphaV-beta3 integrin-CD98 complex A protein complex that consists of an alphaV-beta3 integrin complex bound to the cell surface antigen CD98. 90539 0 0 68571 9 transcription factor TFIIIB complex A transcription factor complex that is involved in regulating transcription from RNA polymerase III (Pol III) promoters. TFIIIB contains the TATA-binding protein (TBP) and two Pol III-specific proteins, B'' and BRF. 90541 0 0 68572 9 basic/neutral keratin (obsolete GO:0045097) OBSOLETE. A type of intermediate filament. 90542 1 0 77140 46 PUI \N 210043 0 0 68573 9 SRF-myogenin-E12 complex A transcription factor complex that contains the serum response factor (SRF) and the basic helix-loop-helix proteins myogenin and E12, and is involved in activating transcription of muscle-specific genes. 90543 0 0 68574 9 secretory dimeric IgA immunoglobulin complex A dimeric form of secretory IgA immunoglobulin complex. 90545 0 0 68575 9 transcription factor TFIIIE complex A transcription factor complex that is involved in regulating transcription from RNA polymerase III (Pol III) promoters. TFIIIE contains a specific subset of ribosomal proteins. 90546 0 0 68576 9 mitochondrial DNA-directed RNA polymerase complex A DNA-directed RNA polymerase complex located in the mitochondrion. Mitochondrial RNA polymerase is composed of two subunits, a catalytic core, which resembles the enzymes from bacteriophage T7 and T3, and a specificity factor required for promoter recognition, which is similar to members of the eubacterial sigma factor family. In S. cerevisiae, these are encoded by the nuclear genes RPO41 and MTF1 and the specificity factor, required for promoter recognition and initiation, is not present in the elongating form. 90548 0 0 68577 9 spectrin Membrane associated dimeric protein (240 and 220 kDa) of erythrocytes. Forms a complex with ankyrin, actin and probably other components of the membrane cytoskeleton, so that there is a mesh of proteins underlying the plasma membrane, potentially restricting the lateral mobility of integral proteins. 90550 0 0 68578 9 box H/ACA RNP complex A ribonucleoprotein complex that contains an RNA of the box H/ACA type, a subtype of the small nucleolar RNA (snoRNA) family. RNA pseudouridylation (isomerization of uridine to pseudouridine) is the major, and most likely the ancestral, function of H/ACA RNPs, although some have evolved other functions. Pseudouridylation targets include both large and small ribosomal RNAs (rRNAs), and on U2 small nuclear RNA (U2 snRNA). 90551 0 0 68579 9 immunoglobulin complex, circulating An immunoglobulin complex that is secreted into extracellular space and found in mucosal areas or other tissues or circulating in the blood or lymph. In its canonical form, a circulating immunoglobulin complex is composed of two identical heavy chains and two identical light chains, held together by disulfide bonds. Some forms of are polymers of the basic structure and contain additional components such as J-chain and the secretory component. 90552 0 0 68580 9 proton-transporting ATP synthase, catalytic core The hexamer that possesses the catalytic activity of the mitochondrial hydrogen-transporting ATP synthase. 90553 0 0 68581 9 intrinsic to plastid outer membrane Located in a plastid outer membrane such that some covalently attached portion of the gene product, for example part of a peptide sequence or some other covalently attached group such as a GPI anchor, spans or is embedded in one or both leaflets of the membrane. 90554 0 0 68582 9 gamma-delta T cell receptor complex A T cell receptor complex in which the TCR heterodimer comprises gamma and delta chains, associated with the CD3 complex; recognizes antigen directly, without a requirement for processing and presentation by an MHC protein. 90555 0 0 68583 9 asymmetric synapse A type of synapse occurring between an axon and a dendritic spine or dendritic shaft. Asymmetric synapses, the most abundant synapse type in the central nervous system, involve axons that contain predominantly spherical vesicles and contain a thickened postsynaptic density. 90556 0 0 68584 9 very-low-density lipoprotein particle A triglyceride-rich lipoprotein particle that is typically composed of APOB100, APOE and APOCs and has a density of about 1.006 g/ml and a diameter of between 20-80 nm. It is found in blood and transports endogenous products (newly synthesized cholesterol and triglycerides) from the liver. 90557 0 0 68585 9 pre-B cell receptor complex An immunoglobulin-like complex that is present in at least the plasma membrane of pre-B cells, and that is composed of two identical immunoglobulin heavy chains and two surrogate light chains, each composed of the lambda-5 and VpreB proteins, and a signaling subunit, a heterodimer of the Ig-alpha and Ig-beta proteins. 90558 0 0 68586 9 prothylakoid membrane The membrane of prothylakoids, underdeveloped thylakoids found in etioplasts, lacking competent photosynthetic membranes. 90561 0 0 68587 9 peroxisomal part Any constituent part of a peroxisome, a small, membrane-bounded organelle that uses dioxygen (O2) to oxidize organic molecules; contains some enzymes that produce and others that degrade hydrogen peroxide (H2O2). 90562 0 0 68588 9 Gram-negative-bacterium-type cell wall The peptidoglycan layer of the Gram-negative cell envelope. In Gram-negative cells the peptidoglycan is relatively thin (1-2nm) and is linked to the outer membrane by lipoproteins. In Gram-negative cells the peptidoglycan is too thin to retain the primary stain in the Gram staining procedure and therefore cells appear red after Gram stain. 90563 0 0 68589 9 Nup82 complex A protein complex that forms part of the nuclear pore complex. It forms a subcomplex with Nup159p and Nsp1p, interacts with Nup116p, and is required for proper localization of Nup116p. In Saccharomyces cerevisiae this complex contains Nup82p, Nsp1p, Nup159p, Nup116p, and Gle2p. 90564 0 0 68590 9 Seh1-associated complex A protein complex that associates dynamically with the vacuolar membrane, and is proposed to have a role in membrane-associated trafficking or regulatory processes. In S. cerevisiae the complex contains Seh1p, Sec13p, Npr2p, Npr3p, Iml1p, Mtc5p, Rtc1p, and Sea4p. 90565 0 0 68591 9 lysosomal multienzyme complex A protein complex found in the lysosome that contains beta-galactosidase, cathepsin A, alpha-neuraminidase and N-acetylgalactosamine-6-sulfate sulfatase, and is involved in glycosaminoglycan catabolism. 90566 0 0 69125 13 dehiscent fruit (obsolete PO:0020064) OBSOLETE. Fruit that breaks open at maturity to release the contents. 91232 1 0 68592 9 pre-autophagosomal structure A punctate structure localized in the vicinity of the vacuole that is required for the formation of autophagosomes. 90568 0 0 68593 9 uropod A membrane projection with related cytoskeletal components at the trailing edge of a cell in the process of migrating or being activated, found on the opposite side of the cell from the leading edge or immunological synapse, respectively. 90572 0 0 68594 9 BRCA1-C complex A protein complex that contains the BRCA1-BARD1 heterodimer, CtIP and Mre11/Rad50/NBS1 (M/R/N) complex, and binds to DNA at DNA damage sites. BRCA1-C binding ta damaged DNA is required for DNA damage-induced Chk1 phosphorylation and the G2/M transition checkpoint. 90573 0 0 68595 9 extrinsic to plastid inner membrane Loosely bound to one surface of a plastid inner membrane, but not integrated into the hydrophobic region. 90575 0 0 68596 9 intracellular non-membrane-bounded organelle Organized structure of distinctive morphology and function, not bounded by a lipid bilayer membrane and occurring within the cell. Includes ribosomes, the cytoskeleton and chromosomes. 90576 0 0 68597 9 urease complex A multiprotein nickel-containing complex that possesses urease activity (catalysis of the hydrolysis of urea to ammonia and carbon dioxide). 90577 0 0 68598 9 ER proteasome regulatory particle The regulatory subcomplex of a proteasome located in the endoplasmic reticulum of a cell. 90580 0 0 68599 9 DNA topoisomerase complex (ATP-hydrolyzing) Complex that possesses DNA topoisomerase (ATP-hydrolyzing) activity. 90581 0 0 68600 9 synaptotagmin-synaptobrevin 2-SNAP-25-syntaxin-1a-syntaxin-1b-Rab3a-complexin II complex A SNARE complex that contains synaptotagmin, synaptobrevin 2 (VAMP2), SNAP-25, syntaxin 1a, syntaxin1b, Rab3a, and complexin II (or orthologs thereof). 90582 0 0 68601 9 U4/U6 x U5 tri-snRNP complex A ribonucleoprotein complex formed by the association of the U4/U6 and U5 small nuclear ribonucleoproteins. 90583 0 0 68602 9 viral RNA-directed RNA polymerase complex A virus-specific protein complex that possesses RNA-dependent RNA polymerase activity and replicates the genome of an RNA virus. 90585 0 0 68603 9 polyphosphate kinase complex A protein complex that possesses polyphosphate kinase activity. 90588 0 0 68604 9 tricarboxylic acid cycle enzyme complex Any of the heteromeric enzymes that act in the TCA cycle. 90589 0 0 68605 9 host cell endoplasmic reticulum membrane The lipid bilayer surrounding the host cell endoplasmic reticulum. 90590 0 0 69149 13 stipule spine A stipule that is sclerified and pointed. 91265 0 0 69150 13 chloronema A portion of protonema tissue that consists of only chloronema cells. 91267 0 0 68606 9 mucus layer An extracellular region part that consists of a protective layer of mucus secreted by epithelial cells lining tubular organs of the body such as the colon. Mucus is a viscous slimy secretion consisting of mucins and various inorganic salts dissolved in water, with suspended epithelial cells and leukocytes. 90591 0 0 68607 9 nuclear cohesin complex A cohesin complex required for cohesion between sister chromatids that remain in the nucleus. 90592 0 0 68608 9 collagen type VI A collagen heterotrimer containing type VI alpha chains in alpha1(VI)alpha2(VI)alpha3(VI) trimers; type VI collagen triple helices associate to form beaded fibrils. 90593 0 0 68609 9 alpha7-beta1 integrin-CD151 complex A protein complex that consists of an alpha7-beta1 integrin complex bound to the tetraspanin CD151. 90594 0 0 68610 9 non-growing cell tip A cell tip at which no growth takes place. For example, in fission yeast the cell end newly formed by cell division does not grow immediately upon its formation, and lacks actin cytoskeletal structures. 90595 0 0 68611 9 histone deacetylase complex A protein complex that possesses histone deacetylase activity. 90596 0 0 68612 9 barrier septum A septum which spans a cell and does not allow exchange of organelles or cytoplasm between compartments. 90597 0 0 68613 9 membrane attack complex protein beta2 chain (obsolete GO:0008008) OBSOLETE (was not defined before being made obsolete). 90598 1 0 68614 9 AP-3 adaptor complex A heterotetrameric AP-type membrane coat adaptor complex that consists of beta3, delta, mu3 and sigma3 subunits and is found associated with endosomal membranes. AP-3 does not appear to associate with clathrin in all organisms. In at least humans, the AP-3 complex can be heterogeneric due to the existence of multiple subunit isoforms encoded by different genes (beta3A and beta3B, mu3A and mu3B, and sigma3A and sigma3B). 90599 0 0 68615 9 synapse The junction between a nerve fiber of one neuron and another neuron or muscle fiber or glial cell; the site of interneuronal communication. As the nerve fiber approaches the synapse it enlarges into a specialized structure, the presynaptic nerve ending, which contains mitochondria and synaptic vesicles. At the tip of the nerve ending is the presynaptic membrane; facing it, and separated from it by a minute cleft (the synaptic cleft) is a specialized area of membrane on the receiving cell, known as the postsynaptic membrane. In response to the arrival of nerve impulses, the presynaptic nerve ending secretes molecules of neurotransmitters into the synaptic cleft. These diffuse across the cleft and transmit the signal to the postsynaptic membrane. 90600 0 0 68616 9 external encapsulating structure part Any constituent part of an external encapsulating structure, a structure that lies outside the plasma membrane and surrounds the entire cell. 90601 0 0 68617 9 iron-iron nitrogenase complex An enzyme complex containing an iron-iron cluster found in species such as the photosynthetic bacterium Rhodobacter capsulatus. It is composed of two main subunits, dinitrogenase and nitrogenase reductase. Dinitrogenase, the iron-iron containing subunit, has an alpha1-beta2 or alpha2-beta2 structure, and the nitrogenase reductase subunit is a homodimer. Functions in the catalysis of the formation of oxidized ferredoxin and ammonia from reduced ferredoxin and nitrogen. 90602 0 0 68618 9 collagen type XVII A collagen homotrimer of alpha1(XVII) chains; type XVII collagen triple helices associate with hemidesmosomes and the basal lamina. 90604 0 0 68619 9 triglyceride-rich lipoprotein particle A plasma lipoprotein particle that has a hydrophobic core enriched in triglycerides surrounded by an amphipathic monolayer of phospholipids, cholesterol and apolipoproteins. Triglyceride-rich lipoproteinparticles transport lipids, which are non-covalently associated with the particles, in the blood. 90605 0 0 68620 9 proteasome core complex, alpha-subunit complex The proteasome core subcomplex that constitutes the two outer rings of the proteasome core complex. An example of this component is found in Mus musculus. 90606 0 0 68621 9 1,3-beta-D-glucan synthase complex A protein complex that catalyzes the transfer of a glucose group from UDP-glucose to a 1,3-beta-D-glucan chain. 90607 0 0 68622 9 alpha5-beta1 integrin-fibronectin-tissue transglutaminase complex A protein complex that consists of an alpha5-beta1 integrin complex bound to fibronectin and tissue transglutaminase. 90608 0 0 68623 9 alphaM-beta2 integrin complex An integrin complex that comprises one alphaM subunit and one beta2 subunit. 90609 0 0 68624 9 CCAAT-binding factor complex A heteromeric transcription factor complex that binds to the CCAAT-box upstream of promoters; in Saccharomyces it activates the transcription of genes in response to growth in a nonfermentable carbon source; consists of four known subunits: HAP2, HAP3, HAP4 and HAP5. 90610 0 0 68625 9 ruffle membrane The portion of the plasma membrane surrounding a ruffle. 90612 0 0 68626 9 endosome membrane The lipid bilayer surrounding an endosome. 90613 0 0 68627 9 host cell mitochondrial intermembrane space The region between the inner and outer lipid bilayers of the host cell mitochondrial envelope. 90614 0 0 69725 13 fruit storage parenchyma A portion of storage parenchyma that is part of a fruit. 91923 0 0 68628 9 prospore membrane leading edge The region of the prospore membrane that extends to surround the spore nucleus; coated with specific proteins that are thought to play a role in prospore membrane organization. 90615 0 0 68629 9 alpha1-beta1 integrin complex An integrin complex that comprises one alpha1 subunit and one beta1 subunit. 90616 0 0 68630 9 viral tegument A structure lying between the capsid and envelope of a virus, varying in thickness and often distributed asymmetrically. 90617 0 0 68631 9 extracellular matrix part Any constituent part of the extracellular matrix, the structure lying external to one or more cells, which provides structural support for cells or tissues; may be completely external to the cell (as in animals) or be part of the cell (as often seen in plants). 90618 0 0 68632 9 host cell plasma membrane The plasma membrane surrounding a host cell. 90619 0 0 68633 9 intrinsic to external side of cell outer membrane Located in the outer membrane of the cell such that some covalently attached portion of the gene product, for example part of a peptide sequence or some other covalently attached group such as a GPI anchor, spans or is embedded in one or both leaflets of the membrane, with the bulk of the gene product located on the side opposite to the side that faces the periplasm. 90620 0 0 69151 13 Poaceae functional megaspore The megaspore that forms the embryo sac in grasses. 91268 0 0 69152 13 seed as dispersal unit (obsolete PO:0020081) OBSOLETE. 91269 1 0 68634 9 integral to mitochondrial outer membrane Located such that some or all of the gene product itself penetrates at least one phospholipid bilayer of the mitochondrial outer membrane. May also refer to the state of being buried in the bilayer with no exposure outside the bilayer. 90621 0 0 68635 9 lamina densa The electron-dense layer of the basal lamina; lies just below the lamina lucida. 90622 0 0 68636 9 virion transport vesicle A vesicle used to transport the partial or complete virion between cellular compartments. 90623 0 0 68637 9 cell envelope Sec protein transport complex A transmembrane protein complex involved in the translocation of proteins across the cytoplasmic membrane. In Gram-negative bacteria, Sec-translocated proteins are subsequently secreted via the type II, IV, or V secretion systems. Sec complex components include SecA, D, E, F, G, Y and YajC. 90625 0 0 68638 9 inter-Golgi transport vesicle membrane The lipid bilayer surrounding a vesicle transporting substances within the Golgi. 90627 0 0 68639 9 plasma lipoprotein particle A spherical particle with a hydrophobic core of triglycerides and/or cholesterol esters, surrounded by an amphipathic monolayer of phospholipids, cholesterol and apolipoproteins. Plasma lipoprotein particles transport lipids, which are non-covalently associated with the particles, in the blood or lymph. 90628 0 0 68640 9 photoreceptor outer segment The outer segment of a vertebrate photoreceptor that contains discs of photoreceptive membranes. 90629 0 0 68641 9 bridge contact site Site of contact between the inner and outer mitochondrial membrane found in neuronal mitochondria; may play a role in maintaining the structural integrity of the inner and outer boundary membranes. 90630 0 0 69105 13 flower A determinate reproductive shoot system that has as part at least one carpel or at least one stamen and does not contain any other determinate shoot system as a part. 91198 0 0 69106 13 megasporangium wall \N 91201 0 0 69107 13 xylem fiber A fiber in xylem. 91202 0 0 69108 13 Poaceae floret meristem A floral meristem that is part of a spikelet. 91203 0 0 69109 13 lemma In a grass floret, the lower of two bracts enclosing a flower. 91206 0 0 69110 13 juice sac As found in citrus the mature juice sac is a swollen sac with a slender stalk and a sac wall lined with layers of tightly arranged cells. It develops from a single cell of the endocarp. Endocarp develops from the carpellary inner epidermis. 91209 0 0 69111 13 stereome A portion of ground tissue that has as parts stereid cells and no other cell types. 91211 0 0 69112 13 shoot axis vascular system A vascular system that includes the totality of the portions of vascular tissue in their specific arrangement in a shoot axis. 91213 0 0 69113 13 megasporocyte A diploid (2n) cell that undergoes meiosis and produces four haploid (1n) megaspores. 91214 0 0 69114 13 mesocotyl A shoot internode that is the part of an embryo axis or the stem of a seedling above the scutellum and below the coleoptile. 91215 0 0 69115 13 cotyledonary node A stem node from which one or more cotyledons grow. 91217 0 0 69116 13 integument epidermis A portion epidermis that is part of an integument. 91218 0 0 69117 13 shoot axis stele A stele that is part of a shoot axis. 91219 0 0 69118 13 gametophore axis meristematic apical cell A shoot axis meristematic apical cell at the tip of a gametophore axis. 91220 0 0 69119 13 prophyll margin The margin of a prophyll. 91223 0 0 69120 13 silk scar The silk scar is composed of the shrivelled remains of the intercalary region of the silk, together with the base of the silk which is the true stylar tissue of the silk arising from the distal end of the developing kernel (caryopsis). 91224 0 0 69121 13 archegonium neck canal cell A plant cell that is one of the axial row of cells in an immature archegonium neck. 91226 0 0 69122 13 flower bract A bract subtending a flower. 91227 0 0 69123 13 peripheral zone Organogenic region of the meristem, B characterized by higher rates of cell division. 91228 0 0 69128 13 replum (obsolete PO:0005016) A false septum formed by the ingrowth from the placenta of an ovary rather than from the carpel walls. This is formed post fertilization. 91236 1 0 69129 13 plant anatomical space An anatomical space that is part of a plant. 91239 0 0 69130 13 inner integument The innermost of the two layers of tissue that usually cover the ovule, contiguous to the nucellus and usually contributing to the formation of the micropyle at the apex. 91241 0 0 69131 13 Zea megaspore The larger, in general, of the two kinds of spores produced after meiosis in the life cycle of a maize plant, and on germination giving rise to the female gametophyte (embryo sac). 91242 0 0 69132 13 upper glume of ear spikelet TThe apical/distal of the two glumes in the ear spikelet. 91243 0 0 69133 13 calyptra perianth A perianth that is composed of fused perianth parts and located on top of a gynoecium that contains an inferior ovary. 91244 0 0 69134 13 meristem L1 The outermost layer of a shoot apical meristem that gives rise to a shoot epidermis. 91245 0 0 69141 13 leaf lamina vascular system A vascular system that includes the totality of the portions of vascular tissue in their specific arrangement in a leaf lamina. 91254 0 0 69142 13 shoot axis trichome A trichome that is part of a shoot axis epidermis. 91255 0 0 69143 13 root cap of primary root A root cap that is part of a primary root tip. 91257 0 0 69144 13 integument One of the layers of tissue that usually covers an ovule, enveloping a nucellus and forming the micropyle at the apex. 91258 0 0 69145 13 cigar leaf lamina abaxial epidermis A portion of leaf lamina abaxial epidermis that covers the abaxial surface of a cigar leaf. 91259 0 0 69146 13 cultured plant cell A plant cell that is grown or maintained in vitro. 91261 0 0 69154 13 aerenchyma A portion of parenchyma tissue containing particularly large intercellular spaces of schizogenous or lysigenous origin. 91272 0 0 69155 13 trichome branch (obsolete PO:0008031) The branch on a trichome. 91274 1 0 69156 13 fruit placenta A portion of placenta tissue that is part of a fruit and to which seeds are attached. 91276 0 0 69157 13 germination pore (obsolete PO:0020018) OBSOLETE: Area through which the pollen imports the nutrition during its development, at the time of pollen germination, the pollen tube emerges through it. 91277 1 0 69158 13 scutellar epithelium A continuous layer of cylindrical cells covering the endosperm side of the scutellum. Thought to act as a secretory and absortive organ. 91278 0 0 69159 13 storage parenchyma A portion of parenchyma specialized for carbohydrate storage. 91279 0 0 69160 13 Poaceae stigma The apical part of a carpel of a grass floret on which the pollen germinates. 91280 0 0 69161 13 guard mother cell A shoot epidermal cell that divides to produce the guard cells. 91281 0 0 69162 13 seed and fruit wall as dispersal unit (obsolete PO:0020085) OBSOLETE. 91282 1 0 69163 13 placenta A portion of plant tissue to which ovules or seeds are attached. 91283 0 0 69164 13 vascular bundle A unit strand of the vascular system containing the vascular tissues, xylem and phloem. In addition vascular cambium is often present. 91285 0 0 69165 13 L3 (obsolete PO:0006305) OBSOLETE. The innermost layer of the tunica. 91286 1 0 69166 13 angular collenchyma (obsolete PO:0005621) OBSOLETE. A form of collenchyma in which the primary wall thickening is most prominent in the angles where three or more cells are joined. 91287 1 0 69167 13 somatic plant embryo A plant embryo that arises from previously differentiated somatic cells, rather than from fused gametes, i.e. the zygote. 91288 0 0 69168 13 Poaceae connective The part of the stamen of a grass floret, that connects the microsporangia/pollen sacs. 91289 0 0 69169 13 subterranean tuber epidermis A tuber epidermis that is part of a subterranean tuber. 91290 0 0 69170 13 tapetum A portion of ground tissue that is the inner-most layer of a sporangium wall. 91291 0 0 69171 13 glandular trichome A B trichome that secretes or sequesters a portion of plant substance. 91294 0 0 69172 13 gametophore axillary hair base A axillary hair base that is the basal part of a gametophore axillary hair, below the gametophore axillary hair terminal cell. 91295 0 0 69173 13 root syncytium cell Multinucleate cell developed by a series of events involving fusion with the neighboring dividing cells. The events are induced by cyst nematodes (e.g. Heterodera schachtii) entering the feeding cells (any cells) of the root vascular system. 91296 0 0 69174 13 hypanthium A cup- or tube-shaped cardinal organ part, bearing perianth and stamens on its rim, so these arise above the base, and often above the top, of the ovary. 91298 0 0 69175 13 embryo hypophysis A plant cell that is the uppermost cell of a suspensor and from which part of the root and root cap in a plant embryo of angiosperms are derived. 91300 0 0 69275 13 paraphysis A slender, usually uniseriate multicellular trichome that grows intermixed with the gametangia. 91415 0 0 69176 13 plerome A meristem forming the core of the axis composed of the primary vascular tissues and associated ground tissue, such as pith and interfascicular regions. 91301 0 0 69177 13 bract tip A phyllome tip that is part of a bract apex. 91303 0 0 69178 13 organ margin The edge of an organ and the area immediately internally adjacent to it. 91304 0 0 69179 13 Zea stigma The apical part of a carpel of a maize floret on which the pollen germinates. 91305 0 0 69180 13 peristome A single or double circle of peristome teeth inside a sporangium mouth. 91306 0 0 69181 13 microphyll (obsolete PO:0020053) OBSOLETE. Literally a small leaf, a leaf of any size in which any vascular trace supplying it does not interrupt the central vascular cylinder when it departs, i.e. there are no leaf gaps. 91307 1 0 69182 13 primordium A portion of plant tissue that differentiates and develops from meristem tissue into a new plant structure. 91308 0 0 69183 13 palea of upper floret of pedicellate spikelet of tassel The upper of the two bracts enclosing a flower in a maize tassel pedicellate spikelet upper floret. 91309 0 0 69184 13 venter A cardinal organ part that is the enlarged basal part of an archegonium and has an archegonium egg cell located in it. 91310 0 0 69185 13 petiole vascular system A vascular system that includes the totality of the portions of vascular tissue in their specific arrangement in a leaf petiole. 91311 0 0 69186 13 endotegmen That part of the seed coat that develops from the inner epidermis of the inner integument. 91312 0 0 69189 13 lemma of lower floret of pedicellate spikelet of tassel The lower of the two bracts enclosing a flower in a maize tassel pedicellate spikelet lower floret. 91315 0 0 69190 13 terminal inflorescence bud A terminal reproductive bud develops into an inflorescence. 91316 0 0 69191 13 seed obturator An outgrowth of the seed funicle, that forms a bridge between the seed micropyle and other tissues. It is also a remnant form of the obturator found in the ovular funicle. 91317 0 0 69192 13 exotesta That part of the seed coat that develops from the outer surface of the outer integument. 91318 0 0 69193 13 root apical meristem An apical meristem of the root system. 91319 0 0 69194 13 tracheid In the xylem, a dead elongated water-conducting cell in which at least the middle lamella of the end walls remains intact. 91321 0 0 69195 13 bulliform cell An enlarged more or less thin-walled leaf pavement cell, present, with other similar cells, in longitudinal rows in leaves of monocots. 91322 0 0 69196 13 growth ring A growth layer of secondary xylem or secondary phloem as seen in transection of stem or root; may be an annual ring or a false annual ring. 91323 0 0 69197 13 anther wall exothecium An microsporangium exothecium that is part of an anther wall. 91324 0 0 76469 48 trait_details trait_details 209366 0 0 69354 13 leaf sheath adaxial epidermis A portion of leaf sheath epidermis that covers the adaxial/upper surface of a leaf sheath. 91504 0 0 69199 13 upper floret of sessile spikelet of ear One of the two florets placed above the lower floret on the sessile spikelet rachilla of a maize ear. This floret usually develops into a functional one. 91327 0 0 69200 13 Poaceae androecium Collectively the stamens of one grass floret. 91328 0 0 69201 13 portion of vascular tissue A portion of plant tissue that has parts xylem and phloem. 91329 0 0 69202 13 root hair cell A root epidermal cell with a simple extension that is concerned with absorption of soil solution. 91330 0 0 69203 13 seta meristematic apical cell A shoot axis meristematic apical cell at the tip of a seta. 91331 0 0 69204 13 exothecium A portion of epidermis that is the outermost layer of a sporangium wall. 91332 0 0 69205 13 shoot procambium A portion of procambium tissue that is part of a shoot system. 91333 0 0 69206 13 Zea anther The pollen-bearing part of a stamen of a maize floret. 91334 0 0 69207 13 fertile lemma A lemma that encloses a functional flower, with androecium, gynoecium or both. 91335 0 0 69208 13 tassel spikelet meristem Apical meristem that gives rise to the upper and lower florets of the maize tassel spikelets. 91337 0 0 69209 13 subterranean tuber pith A portion of tuber pith that is part of a subterranean tuber storage parenchyma. 91338 0 0 69210 13 sepal primordium A phyllome primordium that will devlop into a sepal. 91340 0 0 69211 13 lemma of upper floret of pedicellate spikelet of ear The lower of the two bracts enclosing a flower in a maize ear pedicellate spikelet upper floret. 91341 0 0 69212 13 gynoecium of lower floret of sessile spikelet of ear Collectively the carpels of a lower floret of sessile spikelet of maize ear. 91342 0 0 69213 13 cambial initial An initial cell that is part of the vascular or cork cambium and by periclinal divisions produce cells to the outside or inside of the cambial axis. 91343 0 0 69214 13 cigar leaf A leaf near the apex of a stem that is still rolled into a cylinder. 91345 0 0 69215 13 anther A cardinal organ part that is the pollen-bearing part of a stamen. 91346 0 0 69216 13 lodicule of tassel floret In a tassel floret, one of two or three tiny scales or flaps of tissue outside the stamens, possibly representing reduced perianth segments. 91347 0 0 69217 13 inflorescence lateral meristem The meristem which gives rise to the lateral structures of the inflorescence and contributes to their apical growth. 91348 0 0 69218 13 rhizome A swollen shoot axis that grows horizontally at or below the substrate surface and produces shoots above and roots or rhizoids below. 91350 0 0 69219 13 fruit nucellus A nucellus in the grass caryopsis. 91351 0 0 69220 13 xylem A portion of vascular tissue that has as parts xylem elements. 91353 0 0 69221 13 sporangium wall endothecium A portion of ground tissue that is the sub-epidermal layer of a sporangium wall. 91354 0 0 69222 13 gynoecium of upper floret of pedicellate spikelet of ear Collectively the carpels of a upper floret of pedicellate spikelet of maize ear. 91355 0 0 69223 13 cuticle A layer of fatty material, cutin, rather impervious to water, located on the outer walls of epidermal cells. 91356 0 0 69276 13 procambial cell A meristematic cell that is part of a portion of procambium. 91417 0 0 69224 13 obsolete primary root elongation zone (obsolete PO:0003003) A zone of small, densely cytoplasmic cells that are dividing and expanding in size located behind the zone of cell division in the primary root. 91357 1 0 69225 13 wood parenchyma cell Parenchyma cell occurring within secondary xylem. 91358 0 0 69226 13 megasporangium A sporangium in which megaspores are produced. 91359 0 0 69227 13 subterranean tuber A tuber that is below ground. 91361 0 0 69228 13 peduncle trichome A shoot axis trichome that is part of a peduncle epidermis. 91362 0 0 69229 13 root epidermis A portion of epidermis that is part of a root system. 91363 0 0 69230 13 filament epidermis A portion of stamen epidermis that is part of a filament. 91365 0 0 69231 13 columella A portion of plant tissue that forms the central axis of a plant structure such as a fruit or moss capsule. 91366 0 0 69232 13 root prickle A prickle that is part of a root. 91367 0 0 69233 13 stalk A cardinal organ part that is elongated and sub-cylindrical to cylindrical and supports another cardinal organ part. 91368 0 0 69234 13 protective layer A portion of plant tissue composed of a layer of cells that is part of the abscission zone that have lignin and suberin depositions and are found on the axial side of the break or exposed surface of abscission. 91369 0 0 69235 13 lemma of lower floret of sessile spikelet of tassel The lower of the two bracts enclosing a flower in a maize tassel sessile spikelet lower floret. 91371 0 0 69236 13 tepal abaxial epidermis A portion of tepal epidermis that covers the abaxial/lower surface of a tepal. 91372 0 0 69239 13 lateral root epidermis (obsolete PO:0006209) OBSOLETE. The outer most cell layer of the lateral roots. 91377 1 0 69240 13 palmate leaf A once-compound leaf divided into several leaflets which arise at the same point, there being no rachis. 91378 0 0 69241 13 bract trichome A phyllome trichome that is part of a bract epidermis. 91379 0 0 69242 13 companion cell A specialized parenchyma cell associated with a sieve-tube member in angiosperm phloem and arising from the same mother cell as the sieve-tube member. 91380 0 0 69243 13 obsolete pollen sac (obsolete PO:0009070) A microsporangium in an angiosperm that is a cavity in an anther that contains pollen grains. 91381 1 0 69244 13 chalazal cyst A portion of plant tissue that is the part of the endosperm nearest the chalazal region of the ovule and forming a cyst-like structure. 91382 0 0 69245 13 petiole parenchyma A portion of parenchyma tissue that is part of a petiole. 91383 0 0 69406 13 petal adaxial epidermis A portion of petal epidermis that covers the adaxial/upper surface of a petal. 91561 0 0 69246 13 short tassel branch meristem The meristem present on either or both the long lateral branch and central spike of a maize tassel that gives rise to short tassel branch. 91384 0 0 70154 13 gynoecium of ear floret Collectively the carpels of a maize ear floret. 92408 0 0 69247 13 ovary wall A wall of an ovary that is composed of abaxial (outer) and adaxial (inner) epidermis and a middle layer, B composed of mesophyll cells and a distinct subepidermal adaxial cell layer (as found in Arabidopsis). 91385 0 0 69248 13 sepal adaxial epidermis A portion of sepal epidermis that covers the adaxial/upper surface of a sepal. 91387 0 0 69249 13 stigma vascular system A vascular system that includes the totality of the portions of vascular tissue in their specific arrangement in a stigma. 91388 0 0 69250 13 vascular system A plant structure that includes the totality of the portions of vascular tissue in their specific arrangement in a whole plant or in a constituent part thereof. 91389 0 0 69251 13 tenth or higher order infructescence axis An infructescence branch arising from a ninth or higher order infructescence axis. 91390 0 0 69252 13 gametophyte (obsolete PO:0009004) A plant structure that arises through meiosis and may produce gametes by mitosis. 91391 1 0 69253 13 carpel trichome A phyllome trichome that is part of a bract epidermis. 91392 0 0 69254 13 sexine (obsolete PO:0020012) OBSOLETE: The outer, sculptured layer of the exine, which lies above the nexine. 91393 1 0 69255 13 Poaceae carpel A megasporophyll at the center of a grass floret enclosing the ovule. 91394 0 0 69256 13 locule A plant anatomical space that is a cavity a reproductive structure. 91395 0 0 69257 13 root aerenchyma Parenchyma tissue containing particularly large intercellular spaces in the tissue of roots. 91396 0 0 69258 13 columella root cap initial cell A root initial cell that produces columella cells in the root cap. In direct contact with quiescent center. 91397 0 0 69259 13 inflorescence branch pulvinus Pulvinus of an inflorescence branch. 91398 0 0 69260 13 anther septum A septum that is present in an anther dehiscence zone. 91399 0 0 69261 13 anther primordium A primordium that will develop into anther. 91400 0 0 69262 13 leaf abaxial pavement cell A leaf pavement cell that is part of a leaf abaxial epidermis. 91401 0 0 69263 13 stipel Stipule-like appendage(s) at the base of a leaflet (in unifoliolate or simple leaves, found at the top of the petiole). 91402 0 0 69264 13 parenchyma sheath A single layered, parenchymatous bundle sheath characterized by presence of large quantity of starch. 91403 0 0 69265 13 embryo root A root that is initiated in a developing embryo. 91404 0 0 69266 13 phyllome stomatal pore A stomatal pore that is part of a phyllome stomatal complex. 91405 0 0 69267 13 leaf vein A strand of vascular tissue in the leaf blade. 91406 0 0 69268 13 root differentiation zone A plant axis differentiation zone that is the part of a root and is located behind a root elongation zone. 91407 0 0 69269 13 central root cap of lateral root A central root cap that is part of a root cap of lateral root. 91409 0 0 69270 13 leaf lamina stomatal complex A leaf stomatal complex that is part of a leaf lamina. 91410 0 0 69271 13 trichoblast A root epidermal cell that is the smaller cell produced by the asymmetric division of an epidermal intial and gives rise to a root hair. 91411 0 0 69272 13 palea of lower floret of sessile spikelet of tassel The upper of the two bracts enclosing a flower in a maize tassel sessile spikelet lower floret. 91412 0 0 69273 13 epicotyl The first stem internode above a hypocotyl. 91413 0 0 69280 13 passage cell A ground tissue cell that is part of an exodermis or an endodermis and remains thin walled when the associated cells develop thick secondary walls. 91422 0 0 69281 13 stereid A ground tissue cell with thickened cell walls. 91423 0 0 69282 13 axillary hair base A portion of plant tissue that is the basal part of an axillary hair, below the axillary hair terminal cell. 91424 0 0 69283 13 inflorescence node A shoot node that is part of an inflorescence axis and where a spikelet, flower, floret or inflorescence branch is attached. 91425 0 0 69284 13 leaf lamina adaxial epidermis A portion of leaf lamina epidermis that covers the adaxial/upper surface of a leaf lamina. 91426 0 0 69285 13 fifth order infructescence axis An infructescence branch arising from a forth order infructescence axis. 91427 0 0 69286 13 pistillode A sterile pistil, often rudimentary. 91428 0 0 69288 13 axil A plant anatomical space that is the space between a shoot axis and a leaf, bract, or branch that branches from the shoot axis. 91432 0 0 69289 13 anther wall outer secondary parietal cell layer An anther wall secondary parietal cell layer formed towards the outside after an anther wall primary parietal cell layer undergoes a periclinal division. 91433 0 0 69290 13 indeterminate nodule A root nodule characterized by a persistent meristem, presence of vascular transfer cells, and cell division in the inner cortex with non-dividing infected cells and bacteria. 91435 0 0 69291 13 plant sperm cell A gamete produced by an antheridium or a microgametophyte. 91437 0 0 69292 13 obsolete lateral root elongation zone (obsolete PO:0003014) The portion of the lateral root located behind the zone of cell division that includes small, densely cytoplasmic cells that are dividing and expanding in size. 91439 1 0 69293 13 lower glume of pedicellate spikelet of tassel The proximal/basal of the two glumes in the tassel pedicellate spikelet. 91440 0 0 69294 13 pollen tube (obsolete PO:0006345) A tubular cell extension formed by the germinating pollen grain; carries the male gametes into the ovule. 91441 1 0 69295 13 lower floret of sessile spikelet of tassel The lower of the two florets of the sessile spikelet of a maize tassel. 91442 0 0 69296 13 leaflet margin The margin of the leaflet. 91443 0 0 69297 13 seedling (obsolete PO:0008037) A young plant derived from a newly germinated seed. 91444 1 0 69298 13 embryo hypocotyl-root junction A hypocotyl-root junction that is part of an embryo axis. 91445 0 0 69299 13 lateral meristem A meristem containing cells along the stem or root that first differentiate and function as members of a mature tissue system but then again take up meristematic activity. 91446 0 0 70155 13 epidermal cell A plant cell that is part of a portion of epidermis. 92409 0 0 69304 13 synergid Cell, usually two in number, in the micropylar end of the embryo sac of angiosperms associated with the egg in the egg apparatus. 91453 0 0 69305 13 elaiosome An appendage of a seed, usually rich in oil, attractive to animals, especially ants. 91454 0 0 69306 13 seed A propagating organ formed in the reproductive cycle of gymnosperms and angiosperms, derived from the ovule and enclosing an embryo. 91455 0 0 69307 13 persistent tepal A phyllome that develops from a tepal and remains attached to a fruit at maturity. 91456 0 0 69308 13 abscission zone A portion of plant tissue that is part of a plant structure that has as parts a separation layer and a protective layer and is involved in the abscission of the structure. 91457 0 0 69309 13 chloronema meristematic apical cell A protonema meristematic apical cell that is part of a chloronema. 91458 0 0 69310 13 collenchyma Living tissue composed of more or less elongated cells with thick non-lignified primary cell walls. 91459 0 0 69311 13 sepal base A phyllome base that is part of a sepal. 91460 0 0 69312 13 leaf abaxial epidermis A portion of leaf epidermis that covers the abaxial/lower surface of a leaf. 91461 0 0 69313 13 columella (obsolete PO:0020014) OBSOLETE: A rod-like element of the sexine/ectexine, either supporting the tectum or a caput. 91462 1 0 69314 13 mucilage cell (obsolete PO:0000373) OBSOLETE. Cell containing mucilages or gums or similar carbohydrate material characterized by the property of swelling in water. 91463 1 0 69315 13 Poaceae funicle A stalk that attaches an ovule to a placenta in a grass carpel. 91464 0 0 69316 13 tuber cortex A portion of stem cortex that is part of a tuber storage parenchyma. 91465 0 0 69317 13 alar cell A plant cell located at the base of a non-vascular leaf adjacent to where the leaf attaches to the stem. 91466 0 0 69318 13 sheath cell Cell on the margin of, and tending to form a sheath around, the procumbent cells of a multi-seriate ray as seen in tangential section. 91467 0 0 69319 13 ear floret Small flowers of the spikelets of maize ear. 91468 0 0 69320 13 gametophyte meristematic apical cell An apical cell that is part of a whole plant in the gametophytic phase. 91469 0 0 69321 13 leaf-derived cultured plant cell A cultured plant cell that was derived from leaf tissue. 91470 0 0 69322 13 cotyledon abaxial epidermis The abaxial/lower epidermal cell layer of the cotyledon. 91471 0 0 69323 13 androecium of upper floret of sessile spikelet of ear Collectively the stamens of upper floret of a sessile spikelet of maize ear inflorescence. 91472 0 0 69324 13 gametophore stem A stem that is part of a gametophore. 91473 0 0 69325 13 antheridium head A disk-shaped cardinal organ part that is the apical portion of an antheridiophore and bears antheridia. 91474 0 0 69326 13 adventitious root nodule Enlargement or swelling at position of dormant adventitious root primordium (on the stem), inhabited by nitrogen-fixing bacteria. 91475 0 0 69327 13 lateral root cap A portion of root parenchyma tissue that is part of a root cap and is parallel to the sides of a root axis. 91476 0 0 69330 13 lodicule A phyllome that is part of a grass floret and is one of two or three tiny scales or flaps of tissue outside the stamens. 91480 0 0 69331 13 ear spikelet pair meristem A meristem that produces two spikelet meristems, each of which produces two floral meristems in a maize ear. 91481 0 0 69332 13 tassel pedicellate spikelet Ultimate inflorescence branch of the maize tassel with a pedicel, developing from the spikelet pair meristem. 91482 0 0 69333 13 cortex A maximal portion of ground tissue between the vascular system and the epidermis in a plant. 91483 0 0 69334 13 petal mesophyll The chloroplast-containing, photosynthetic parenchymatous tissue situated between the two epidermal layers of the petal. 91484 0 0 69335 13 embryo epicotyl An epicotyl that is part of a plant embryo. 91485 0 0 69336 13 transfer cell A cell with wall ingrowths (or invaginations) that increase the surface of the plasmalemma. 91486 0 0 69337 13 leaf procambial cell A procambial cell that is part of a leaf procambium. 91487 0 0 69338 13 Poaceae hull A collective phyllome structure that encloses a fruit of the Poaceae (caryopsis) and develops from the dried lemma and palea. 91488 0 0 69339 13 stamen A microsporophyll bearing one or more microsporangia. 91489 0 0 69340 13 gametophyte perianth A collective phyllome structure that consists of two or more of the most distal perichaetal bracts on a gametophore axis and surround a capsule. 91490 0 0 69341 13 Zea nucellus Subepidermal tissue in the ovule of a maize plant surrounding the megasporocyte. 91491 0 0 69342 13 bract base A phyllome base that is part of a bract. 91492 0 0 69343 13 connective The part of the stamen that connects the microsporangia/pollen sacs. 91493 0 0 69344 13 petal parenchyma A portion of parenchyma tissue that is part of a petal. 91494 0 0 69345 13 embryo mesocotyl A mesocotyl that is part of a plant embryo. 91495 0 0 69346 13 aerial tuber perimedullary zone A tuber perimedullary zone that is part of an aerial tuber pith. 91496 0 0 69347 13 petal vascular system A phyllome vascular system that includes the totality of the portions of vascular tissue in their specific arrangement in a petal. 91497 0 0 69348 13 portion of transmitting tissue A portion of ground tissue in the style of a carpel through which the pollen tube grows; it connects the stigma and the inside of ovary. 91498 0 0 69349 13 lemma of upper floret of sessile spikelet of tassel The lower of the two bracts enclosing a flower in a maize tassel sessile spikelet upper floret. 91499 0 0 69350 13 central cell The largest cell of the mature embryo sac. Contains two polar nuclei, which (after double fertilization) will develop into the endosperm. 91500 0 0 69351 13 petiole lamina A lamina that is part of a petiole. 91501 0 0 69352 13 seed chalaza A remnant of the ovular chalaza that is part of the seed. 91502 0 0 69353 13 articulated laticifer cell A laticifer cell in which the walls between contiguous cells may partly or completely disappear. 91503 0 0 69355 13 tassel meristem Meristem that gives rise to the apical and lateral structures of the tassel inflorescence in maize. 91505 0 0 69356 13 branch procambium A portion of shoot axis procambium gives rise to the primary vascular tissue of a branch. 91506 0 0 77141 46 donor \N 210044 0 0 69357 13 mericarp (obsolete PO:0020075) OBSOLETE. One segment of a fruit of a schizocarp consisting of pericarp plus seed(s). 91507 1 0 69358 13 exodermal passage cell A short cell in the dimorphic type of exodermis with cell wall that remains non-thickened. 91508 0 0 69359 13 nucellar projection A portion of plant tissue that is the morphologically distinct portion of the nucellus overlying the vascular strands in the grass caryopsis. 91510 0 0 69360 13 root primordium A primordium that will develop into a root. 91511 0 0 69361 13 Zea exothecium The epidermis of an anther sac of a maize stamen. 91512 0 0 69362 13 tetrad of microspores A portion of plant tissue consisting of four microspores that remained joined together shortly after meiosis. Each cell will give rise to a male gametophyte. 91513 0 0 69363 13 accessory transfusion tissue (obsolete PO:0006086) OBSOLETE. The accessory tissue extending laterally into the mesophyll rather than remaining associated with the vascular bundles. 91514 1 0 69364 13 palea of upper floret of pedicellate spikelet of ear The upper of the two bracts enclosing a flower in a maize ear pedicellate spikelet upper floret. 91515 0 0 69365 13 root nodule meristem A root meristem that gives rise to a root nodule. 91516 0 0 69366 13 spore capsule valve A valve that is a part of a spore capsule that splits apart when the spore capsule dehisces. 91518 0 0 69367 13 Zea microspore The smaller, in general, of the two kinds of spores produced in the life cycle of a maize plant. It gives rise to the male gametophyte. 91519 0 0 69368 13 libriform fiber A xylem fiber commonly with thick walls and simple pits. 91520 0 0 69369 13 phyllome stomatal complex A stomatal complex that is part of a phyllome. 91521 0 0 69370 13 petiole canal A canal that is part of a petiole. 91522 0 0 69371 13 phyllome tip The apical most portion of a phyllome apex. 91523 0 0 69372 13 abaxial epidermis of ovary The epidermal cell layer of the abaxial/outer surface of the ovary. 91524 0 0 69373 13 septate fiber A fiber with thin transverse walls (septa), which are formed after the cell develops a secondary wall thickening. 91525 0 0 69374 13 obsolete basal endosperm transfer layer (obsolete PO:0009019) A cell layer found in basal endosperm transfer cell. 91526 1 0 69375 13 glume A "bract" in the inflorescence of a grass, sedge or similar plant. 91527 0 0 69376 13 spore capsule annulus A dehiscence zone that is part of a spore capsule. 91529 0 0 69377 13 proliferation tissue (obsolete PO:0006087) OBSOLETE. Tissue that develops from phloem parenchyma in the outer portion of the inner bark accommodating the expansion in circumference. 91530 1 0 69378 13 shoot system A collective plant structure that produces shoot apical meristems and the plant structures that arise from them. 91531 0 0 69379 13 exocarp A portion of plant tissue that is the outer layer of a pericarp. 91532 0 0 69380 13 floral epidermis (obsolete PO:0008043) A portion of shoot epidermis that is part of the floral organs. 91535 1 0 69381 13 meristematic cell A plant cell synthesizing protoplasm and producing new cells by division and with only a primary cell wall. 91536 0 0 69382 13 nectary parenchyma A portion of parenchyma tissue that is part of a nectary. 91537 0 0 69383 13 reproductive shoot system A shoot system in the sporophytic phase that has as part at least one sporangium. 91538 0 0 69384 13 fifth order inflorescence axis An inflorescence branch arising from a forth order inflorescence axis. 91539 0 0 69385 13 gynoecium of lower floret of pedicellate spikelet of tassel Collectively the carpels of a lower floret of pedicellate spikelet of maize tassel. 91540 0 0 69386 13 ear apical meristem An inflorescence apical meristem that gives rise to the maize ear. 91541 0 0 69387 13 bract margin The margin of a bract. 91542 0 0 69388 13 axillary strobilus bud An axillary reproductive bud that develops into a strobilus. 91543 0 0 69389 13 corolla A collective phyllome structure composed of two or more petals. 91544 0 0 69390 13 seed micropyle A plant anatomical space that is enclosed by and forms an opening in a seed coat at the apex of a seed and is the remnant of a micropyle. 91545 0 0 69391 13 bracteole A small leaf or leaves borne singly or in pairs on the pedicel, the prophyll(s) of the flower-shoot (pedicel plus flower). 91546 0 0 69392 13 branch epidermis A portion of shoot axis epidermis that is part of a branch. 91547 0 0 69393 13 antiraphe A cardinal organ part that is the part of an ovule on the opposite side from a raphe. 91548 0 0 69394 13 subterranean tuber perimedullary zone A tuber perimedullary zone that is part of a subterranean tuber pith. 91549 0 0 69395 13 petiole proximal end The region of the petiole proximal to its stem attachment site. 91550 0 0 69396 13 root-borne shoot system A shoot system that is initiated from a root. 91551 0 0 69397 13 vascular leaf A leaf in a vascular plant. 91552 0 0 69398 13 stomatal initial An epidermal initial that undergoes several rounds of uneven division, each time giving rise to a larger daughter cell that differentiates into an epidermal ground cell and a smaller daughter cell that remains meristematic, until the meristematic cell differentiates into a guard mother cell. 91553 0 0 69399 13 heartwood The inner layers of secondary xylem that have largely ceased to function in storage and conduction and in which reserve materials have been removed or converted into heartwood substances; generally darker colored than the functioning sapwood. 91554 0 0 69400 13 bract adaxial epidermis A portion of bract epidermis that covers the adaxial/upper surface of a bract. 91555 0 0 70156 13 whole plant A plant structure which is a whole organism. 92410 0 0 69401 13 Poaceae style An elongated part of a carpel between the ovary and the stigma of a grass floret, through which the pollen tube grows. 91556 0 0 69402 13 phyllome vascular system A vascular system that includes the totality of the portions of vascular tissue in their specific arrangement in a phyllome. 91557 0 0 69403 13 branch trichome A shoot axis trichome that is part of a branch epidermis. 91558 0 0 69404 13 hypocotyl A stem internode that is the part of a stem below the cotyledonary node and transitional to a root. 91559 0 0 69405 13 Poaceae filament The stalk of the stamen of a grass floret. 91560 0 0 69773 13 seta A plant axis that holds up a spore capsule. 91975 0 0 69409 13 meristematic apical cell A single meristematic cell at the tip of a plant structure where apical growth occurs. 91564 0 0 69410 13 spikelet pedicel Inflorescence branch that terminates in a spikelet. 91565 0 0 69411 13 long lateral tassel branch The long branch that B arise from the central spike of tassel in maize. 91566 0 0 69412 13 cotyledon A leaf formed at the first node of a sporophyte. 91567 0 0 69413 13 embryo apical cell A meristematic apical cell that is part of a plant embryo and is the uppermost cell formed after the first division of a zygote. 91568 0 0 69414 13 tassel spikelet Ultimate inflorescence branch of the maize tassel. 91569 0 0 69415 13 central zone of the leaf lamina Region that includes the widest or majority portion of leaf lamina and that does not include leaf apex and leaf lamina base. 91570 0 0 69416 13 non-articulated laticifer A structure consisting of long multinucleate tubes in which latex is found, having no cross walls. 91571 0 0 69417 13 central zone of the petiole Regions of the petiole that does not include petiole distal end and petiole proximal end. 91572 0 0 69418 13 root vascular system A vascular system that includes the totality of the portions of vascular tissue in their specific arrangement in a root. 91573 0 0 69419 13 anther dehiscence zone A dehiscence zone that is part of an anther. 91574 0 0 69420 13 fiber tracheid A fiber-like tracheid in the secondary xylem; commonly thick walled, with pointed ends and bordered pits that have lenticular to slit-like apertures. 91575 0 0 69421 13 androecium of upper floret of pedicellate spikelet of ear Collectively the stamens of upper floret of a pedicellate spikelet of maize ear inflorescence. 91576 0 0 69422 13 tunica (obsolete PO:0006302) OBSOLETE. The outermost layer or layers in the shoot apical meristem of the Angiosperms in which the plane of division is almost anticlinal. This layer contributes to surface growth. 91577 1 0 69423 13 Zea carpel A megasporophyll at the center of a maize floret enclosing the ovule. 91578 0 0 69424 13 Poaceae transmitting tissue Tissue in the style of a grass carpel, through which the pollen tube grows; it connects the stigma and the inside of ovary. 91579 0 0 69427 13 hilum groove A cardinal organ part that forms a longitudinal groove in the testa through the prominent hilum of a seed. 91582 0 0 69428 13 portion of embryo plant tissue A portion of plant tissue that is part of a plant embryo. 91583 0 0 69429 13 protonema sub-apical initial An initial cell that is produced by longitudinal division of a sub-apical cell of a protonema. 91584 0 0 69431 13 helobial endosperm An endosperm in which the first karyokinetic event is accompanied by the formation of a horizontal wall which divides the central cell into unequal regions. The larger one is the micropylar chamber in which cytokinesis does not occur and the smaller one is the chalazal chamber. 91586 0 0 69432 13 seed operculum A plug-like structure formed in the micropylar region of the seed coat. 91587 0 0 69433 13 organogenic callus A cultured plant callus that is capable of forming plant organs. 91589 0 0 69434 13 embryo coleoptile A coleoptile that is part of a plant embryo. 91590 0 0 69435 13 bark All tissues outside the vascular cambium or the xylem; in older trees may be divided into dead outer bark and living inner bark, which consists of secondary phloem. 91591 0 0 69436 13 chloronema cell A chlorenchyma cell that is part of a chloronema and has cross walls of adjacent cells that are perpendicular to the protonema axis. 91592 0 0 69437 13 secondary vein Second order veins in the leaf blade. 91593 0 0 69438 13 funicle A stalk that attaches an ovule to a placenta. 91594 0 0 69439 13 upper glume of sessile spikelet of ear The apical/distal of the two glumes in the sessile spikelet. 91595 0 0 69440 13 salt gland A specialized tissue where excess salt absorbed in water from the soil is concentrated, being stores or excreted. 91596 0 0 69441 13 shoot internode differentiation zone A plant axis differentiation zone that is part of a shoot axis. 91597 0 0 69442 13 stamen vascular system A phyllome vascular system that includes the totality of the portions of vascular tissue in their specific arrangement in a stamen. 91598 0 0 69443 13 sepal epidermis A portion of phyllome epidermis that is part of a sepal. 91599 0 0 69444 13 fleshy fruit (obsolete PO:0020066) OBSOLETE. The fruit may be derived from monocarpellate or multicarpellate gynoecia. Their walls may consist of the pericarp or of pericarp fused with extracarpellary tissue. The outer part of the fruit wall or the entire fruit wall may become fleshy by differentiating into soft, succulent parenchyma. Parts other than the wall such as placentae and partitions in multilocular ovaries may become fleshy. 91600 1 0 69445 13 zygotic plant embryo A plant embryo that forms as a result of the fusion of gametes. 91601 0 0 69446 13 primary root apical meristem A root apical meristem that is part of a primary root. 91602 0 0 69447 13 eighth order inflorescence axis An inflorescence branch arising from a seventh order inflorescence axis. 91603 0 0 69448 13 androecium of upper floret of sessile spikelet of tassel Collectively the stamens of upper floret of a sessile spikelet of tassel inflorescence of maize. 91604 0 0 69450 13 Zea microsporocyte A diploid (2n) cell that undergoes meiosis and produces four haploid (1n) microspores in a maize plant. 91606 0 0 69452 13 petiole abaxial epidermis A portion of petiole epidermis that covers the abaxial/lower surface of a petiole. 91608 0 0 69453 13 androecium of tassel floret Collectively the stamens of one floret of a tassel inflorescence of maize. 91609 0 0 69454 13 plant embryo A whole plant in the early part of a sporophytic phase after the first cell division. 91610 0 0 69455 13 aerial tuber storage parenchyma A portion of tuber storage parenchyma that is part of an aerial tuber. 91611 0 0 69456 13 archegonium stalk A stalk that the basal part of an archegonium. 91612 0 0 69457 13 spore A plant cell that arises through meiosis and develops into a gametophyte. 91613 0 0 69458 13 antipodal cell Cell, commonly three in number as in the eight-nucleate embryo sac, located at the other end of the embryo sac from the egg cell. 91614 0 0 69459 13 outer vascular cambium Cambium at the outer margin of the xylem cylinder. 91615 0 0 69460 13 caruncle An outgrowth from the surface of a seed, usually near the hilum or micropyle. 91616 0 0 77142 46 donor institute \N 210045 0 0 69461 13 sapwood Outer part of the wood of stem or root containing living cells and reserves and in which conduction of water takes place. Generally lighter colored than the heartwood. 91617 0 0 69462 13 amphithecium A portion of plant tissue that is the outer layer or layers of a sporangium early in sporangium development. 91618 0 0 69463 13 endotesta That part of the seed coat that develops from the inner epidermis of the outer integument. 91619 0 0 69464 13 tuber epidermis A portion of shoot axis epidermis that is part of a tuber. 91620 0 0 69465 13 in vitro plant structure A plant structure that is grown or maintained in vitro. 91621 0 0 69466 13 embryo radicle A radicle that is part of a plant embryo. 91622 0 0 69467 13 determinate nodule A root nodule characterized by a dividing infected cells and bacteria, vascular transfer cells absent and cell division is in the outer cortex. 91623 0 0 69468 13 promeristem (obsolete PO:0005752) OBSOLETE. Meristematic tissue consisting of apical initials, together with cells derived from them and which are still close to the initial. 91624 1 0 69469 13 carpel anlagen A portion of meristem tissue that is a presumptive region on a floral meristem where carpel primordia would initiate. 91625 0 0 69470 13 secondary xylem A portion of xylem tissue that develops from a vascular cambium. 91627 0 0 69471 13 tegmen That part of the seed coat that develops from the inner integument. 91629 0 0 69472 13 ovary placenta A portion of placenta tissue that is part of an ovary and to which ovules are attached. 91630 0 0 69473 13 stem base The basal part of stem. 91631 0 0 69474 13 cultured plant callus A plant callus grown or maintained in vitro. 91632 0 0 69475 13 palea of lower floret of pedicellate spikelet of tassel The upper of the two bracts enclosing a flower in a maize tassel pedicellate spikelet lower floret. 91633 0 0 69476 13 upper glume of sessile spikelet of tassel The apical/distal of the two glumes in a tassel sessile spikelet. 91634 0 0 69477 13 multicellular trichome branch cell A trichome cell that forms a branch of a multicellular trichome. 91635 0 0 69479 13 peduncle A shoot axis that extends from the last foliage leaf on a stem or branch until the next distal node. 91637 0 0 69480 13 hydrome A portion of plant tissue that has as parts hydroid cells and cells of no other types. 91639 0 0 69481 13 shoot system vascular system A vascular system that is part of a shoot system. 91640 0 0 69482 13 bud An undeveloped shoot system. 91641 0 0 69483 13 aerial tuber periderm A portion of tuber periderm that is part of an aerial tuber. 91642 0 0 69484 13 basal axillary shoot A branch that forms from a leaf at the very base of the shoot. 91643 0 0 69485 13 reproductive shoot apex A shoot apex that has as part a reproductive shoot apical meristem. 91644 0 0 69486 13 embryo hypocotyl A hypocotyl that is part of a plant embryo. 91645 0 0 69487 13 plant callus A portion of plant tissue that consists of mass of undifferentiated plant cells. 91646 0 0 69488 13 leaf sheath pulvinus A more or less abrupt swelling, especially at the apex or base of a leaf sheath. 91647 0 0 69489 13 megasporophyll A structure upon which (or in the axil of which) one or more megasporangia are borne; in flowering plants, a carpel. 91648 0 0 69490 13 middle layer of ovary wall A portion of chlorencyma tissue that is composed of one or more mesophyll layers. It may have a distinct subepidermal adaxial cell layer (as found in Arabidopsis). 91649 0 0 69491 13 aerial tuber cortex A portion of tuber cortex that is part of an aerial tuber storage parenchyma. 91650 0 0 69492 13 seed raphe A cardinal organ part that is a ridge on a seed that develops from a raphe. 91651 0 0 69493 13 pollen sperm cell A plant sperm cell that is produced by and located in a pollen grain. 91652 0 0 69494 13 micropyle A plant anatomical space that is enclosed by and forms an opening in an integument at the apex of an ovule. 91654 0 0 69495 13 vascular cambium A lateral meristem, the cells of which give rise to secondary xylem and phloem, leading to an increase in girth. 91656 0 0 69496 13 adaxial nucellar projection A portion of plant tissue that is the adaxial/upper portion of the nucellus overlying the vascular strands in the grass caryopsis. 91657 0 0 69497 13 Poaceae microsporocyte A diploid (2n) cell that undergoes meiosis and produces four haploid (1n) microspores in a grass plant. 91658 0 0 69498 13 awn A long bristle-like appendage found on the tip or back of various parts of the grass spikelet. 91659 0 0 69499 13 sclerenchyma A supporting tissue composed of fibers or sclereids. 91660 0 0 69500 13 long shoot Shoot system in which all or most of the internodes elongate. 91661 0 0 76470 48 trait_categories trait_categories 209367 0 0 69503 13 inflorescence apical meristem A reproductive shoot apical meristem that gives rise to the apical growth of the inflorescence. It develops from the shoot apical meristem (SAM) after it undergoes transition from vegetative to reproductive phase. 91664 0 0 69504 13 sepal A member of the (usually green) outer whorl of non-fertile parts surrounding the fertile organs of a flower. 91665 0 0 69505 13 vegetative cell A plant cell that is the larger cell of a male gametophyte in seed plants. It does not divide further and develops into a pollen tube cell. 91666 0 0 69506 13 Zea tapetum Innermost part of the anther wall, involved in the nutrition of the pollen in maize. 91667 0 0 69507 13 Zea ovary placenta The region within an ovary to which ovules are attached in a maize carpel. 91668 0 0 69508 13 pseudopodium A gametophore axis that is a leafless extension of a gametophore stem or branch on which a sporophyte is borne. 91669 0 0 69509 13 exodermis The sub-epidermal layer or layers of cells of the root similar in structure and cytochemical characteristics of B the endodermis, the outermost layer or layers of cells of the cortex. 91670 0 0 69510 13 sporophyte foot A plant organ that is the base of a whole plant in the sporophytic phase and attaches it to the gametophore. 91671 0 0 69511 13 petiole A stalk of a leaf. 91672 0 0 69512 13 compound leaf A leaf having two or more distinct leaflets that are evident as such from early in development. 91673 0 0 69513 13 cardinal organ part A plant structure that is a proper part of an organ and includes portions of tissues of at least two different types. 91674 0 0 69515 13 chalaza Region in the ovule where the integuments and the nucellus join with the funiculus. 91677 0 0 69516 13 anther wall inner secondary parietal cell layer An anther wall secondary parietal cell layer that is formed towards the inside after the cells of an anther wall primary parietal cell layer undergo a periclinal division. 91678 0 0 69517 13 petal tip A phyllome tip that is part of a petal apex. 91679 0 0 69518 13 cultured somatic plant embryo A somatic plant embryo grown and maintained in vitro. 91680 0 0 69519 13 leptoid A plant that resembles in structure the sieve elements of vascular plants. 91681 0 0 69520 13 transition zone A region of the root between the meristem and the region of rapid elongation in which isodiametric growth (cell expansion) occurs. 91683 0 0 69521 13 interfascicular region A portion of ground tissue located between vascular bundles in a shoot axis. 91686 0 0 69522 13 central zone An area of densely packed cells in the shoot apex that divide infrequently. 91687 0 0 69523 13 third order inflorescence axis An inflorescence branch arising from a second order inflorescence axis. 91688 0 0 69525 13 ligule A membranous or hairy appendage on the adaxial/upper surface of a leaf, at the junction between sheath and blade, especially in grasses. 91690 0 0 69526 13 laticiferous cell (obsolete PO:0004005) OBSOLETE. A specialized cells or ducts resembling vessels; they form branched networks of latex-secreting cells in the phloem and other parts of plants. 91691 1 0 69528 13 subterranean tuber cortex A portion of tuber cortex that is part of a subterranean tuber storage parenchyma. 91694 0 0 69529 13 shoot epidermal cell An epidermal cell that is part of a shoot epidermis. 91695 0 0 69530 13 leaf endodermis A portion of endodermis that is part of a vascular leaf. 91696 0 0 69531 13 plant ontology (obsolete PO:0009075) OBSOLETE. A controlled vocabulary to describe the various plant parts and the growth and developmental stages. 91697 1 0 69532 13 epidermal initial An initial cell that is part of an epidermis and gives rise to specialized cell types of the epidermis. 91698 0 0 69533 13 hypocotyl-root junction A cardinal organ part that is the part of a plant axis where a radicle joins a hypocotyl. 91699 0 0 69534 13 ovary replum A portion of ovary placenta tissue that divides an ovary into two or more chambers and develops from contact of the placental tissue from opposite sides of the ovary early in gynoecium development. 91701 0 0 69535 13 spikelet rachilla The axis of the spikelet, above the glumes. 91703 0 0 69536 13 endosperm A maximal portion of nutritive plant tissue in a seed. 91704 0 0 69537 13 plant egg cell A gamete produced by an archegonium or an embryo sac. 91705 0 0 69538 13 reproductive structures (obsolete PO:0009083) OBSOLETE. Aggregation of gamete producing structures. 91706 1 0 69539 13 primary root tip The portion of the primary root including the meristem and root cap. 91707 0 0 69540 13 non-vascular leaf meristematic apical cell A leaf meristematic apical cell that is part of a leaf apex of a non-vascular leaf. 91708 0 0 69541 13 fruit replum A portion of fruit placenta tissue that divides a fruit into two or more chambers and develops from a replum. 91710 0 0 69542 13 leaf collar A thin band of intercalary meristematic tissue at the junction of a leaf blade (lamina) and a leaf sheath found in grasses. 91711 0 0 69543 13 axial cell A vascular cell derived from the fusiform cambial initial and oriented with its longest diameter parallel with the main axis of stem or root. 91712 0 0 69544 13 Zea stamen A microsporophyll bearing four microsporangia in a maize floret. 91713 0 0 69545 13 secondary phloem A portion of phloem tissue formed by the activity of the vascular cambium. 91714 0 0 69546 13 leaf tip A phyllome tip that is part of a leaf apex. 91715 0 0 69547 13 root cortex-endodermis initial cell A root initial cell that produces root cortex and endodermis. In direct contact with quiescent center. 91716 0 0 69548 13 axillary bud meristem A shoot meristem formed in the axil of the leaf. 91717 0 0 69549 13 palea of upper floret of sessile spikelet of tassel The upper of the two bracts enclosing a flower in a maize tassel sessile spikelet upper floret. 91718 0 0 69550 13 root parenchyma A portion of parenchyma tissue that is part of a root. 91719 0 0 69551 13 archesporial cell A plant cell that divides to gives rise to a sporocyte and is part of a sporangium. 91720 0 0 69552 13 archesporium A portion of plant tissue that is the internal part of a sporangium, bounded by the sporangium wall, and has as parts archesporial cells. 91721 0 0 69553 13 Zea anther wall A multicellular layer with outer epidermis and an inner endothecium of an anther of a maize stamen. 91723 0 0 69554 13 adult leaf Adult leaves are characterized by particular anatomical traits namely, wax and trichome distribution, presence or absence of epidermal cell types, cell wall shape and biochemistry. 91724 0 0 69555 13 protonemal side branch rhizoid initial A protonema side branch initial that gives rise to a protonemal rhizoid. 91725 0 0 69556 13 wood parenchyma Parenchymatous tissue occurring in the wood. 91726 0 0 69557 13 primary root A root that develops directly from an embryonic radicle. 91727 0 0 69558 13 Poaceae megaspore The larger, in general, of the two kinds of spores produced after meiosis in the life cycle of a grass plant, and on germination giving rise to the female gametophyte (embryo sac). 91729 0 0 69559 13 anther wall A microsporangium wall that is part of an anther. 91730 0 0 69560 13 leaf axil An axil that is the space between a shoot axis and a leaf that branches from the shoot axis. 91731 0 0 69561 13 leaf intercalary meristem An intercalary meristem in the primary body of the leaf separated from the apical meristem by non-meristematic tissues. 91732 0 0 69562 13 silica cell Cells with deposits of silica in them. One of the two types of short cells in the epidermis of grasses and bamboos. It is usually paired with epidermal cork cell. 91733 0 0 69563 13 lateral root cap of lateral root A lateral root cap that is part of a root cap of lateral root. 91734 0 0 69564 13 infructescence axis A shoot axis that is part of an infructescence. 91735 0 0 69565 13 plant gametangium A plant organ that produces one or more gametes that are located in it and is part of a whole plant in the gametophytic phase. 91736 0 0 77143 46 donor PUI \N 210046 0 0 69566 13 inflorescence bract of ear The leaf subtending an ear of corn and acting as outer envelope of the ear. 91737 0 0 69567 13 first order inflorescence axis An inflorescence axis that is the primary or main axis of an inflorescence. 91738 0 0 69568 13 leptome A portion of plant tissue that has as parts leptoid cells and cells of no other types. 91739 0 0 69569 13 stomatal complex A portion of shoot epidermis that has as parts two guard cells and a stomatal pore. May also contain subsidiary cells. 91740 0 0 69570 13 leaf meristematic apical cell A shoot meristematic apical cell that is part of a leaf apex. 91741 0 0 69571 13 quaternary vein A leaf vein arising from a tertiary vein. 91742 0 0 69572 13 inflorescence bract A bract subtending a branch of the inflorescence or borne on the inflorescence axis below any branches or flowers. 91743 0 0 69574 13 embryo leaf A vascular leaf that is part of a plant embryo and is one of the first few leaves to develop from the embryonic shoot apical meristem. 91745 0 0 69575 13 Poaceae stamen A microsporophyll, bearing four microsporangia in a grass floret. 91746 0 0 69576 13 portion of transfusion tissue Tissue consisting of tracheids and parenchyma cells, associated with the vascular bundle. 91747 0 0 69577 13 ovary epidermis A portion of epidermis that is part of an ovary. 91748 0 0 69578 13 fascicular cambium Vascular cambium B originating from procambium within vascular bundles or fascicles. 91749 0 0 69579 13 stem internode differentiation zone A shoot internode differentiation zone that is part of a stem internode. 91750 0 0 69580 13 inflorescence bud A bud that develops into an inflorescence. 91752 0 0 69581 13 upper floret of pedicellate spikelet of ear The uppermost of the two florets of the pedicellate spikelet rachilla of a maize ear. The upper floret on the ear usually develops into a functional one. 91753 0 0 69582 13 root system A collective plant structure that produces root apical meristems and the plant structures that arise from them. 91754 0 0 69583 13 contact cell (obsolete PO:0004002) OBSOLETE. An axial parenchyma or a ray cell physiologically associated with a tracheary element. Also a cell next to a stoma. 91755 1 0 69584 13 primary phloem A portion of phloem tissue of the primary plant body. 91756 0 0 69585 13 late wood The secondary xylem formed in the later part of a growth ring; denser and composed of smaller cells than the early wood. 91757 0 0 69586 13 Poaceae stigma epidermis The epidermal cell layer of the grass stigma. 91758 0 0 69587 13 exine (obsolete PO:0020008) OBSOLETE: The outer layer of the pollen grain wall, highly resistant to strong acids and bases, and composed primarily of sporopollenin. 91759 1 0 69588 13 subterranean tuber interfascicular region A tuber interfascicular region that is part of a subterranean tuber storage parenchyma. 91760 0 0 69589 13 petiole adaxial epidermis A portion of petiole epidermis that covers the adaxial/upper surface of a petiole. 91761 0 0 69590 13 root initial cell An initial cell that is part of a root apical meristem and by division gives rise to two cells, one of which remains in the meristem, while the other is produces different root cells. 91762 0 0 69591 13 protoxylem A portion of xylem tissue composed of any of the first formed elements of the primary xylem. 91763 0 0 69592 13 long lateral tassel branch meristem The meristem that gives rise to the long lateral branch in the maize tassel. 91764 0 0 69593 13 palea of tassel floret In a maize tassel floret, the upper of the two bracts enclosing a flower. 91765 0 0 69594 13 microspore-derived cultured plant embryo A cultured somatic plant embryo that develops from isolated microspores. 91766 0 0 69595 13 peduncle epidermis A portion of branch epidermis that is part of a peduncle. 91767 0 0 69596 13 reproductive bud A bud that develops into a reproductive shoot system. 91768 0 0 69597 13 primary vascular tissue (obsolete PO:0006078) OBSOLETE. The vascular tissue of the primary plant body at the embryonic stage. 91769 1 0 69598 13 Zea chalaza Region in the maize ovule where the integuments and the nucellus merge with the funiculus. 91770 0 0 69602 13 lateral root A root that develops from a lateral root primordium located in the pericycle layer of a primary root. 91774 0 0 70318 13 petal stomatal complex A phyllome stomatal complex that is part of a petal. 92579 0 0 69603 13 primary endosperm cell Cell produced by the fusion of sperm cell nucleus and two polar nuclei of the central cell (or diploid secondary endosperm nucleus, in cases where two polar nuclei fuse together before double fertilization). The first cell of the endosperm, often tripoid. 91775 0 0 69604 13 fruit operculum A collective organ part structure that is the apical part of a circumsessile capsular fruit that separates from the rest of the capsule during dehiscence. 91776 0 0 69605 13 cellular endosperm Endosperm in which the first karyokinesis event is accompanied by cytokinesis. 91777 0 0 69606 13 scale leaf A phyllome that is reduced in size relative to a vascular leaf on the same plant and is often associated with a perennating or dormant bud or a vegetatively propagating organ such as a rhizome. 91778 0 0 69607 13 outer integument epidermis The epidermis of the outer integument in an ovule. 91779 0 0 69608 13 leaf guard cell A phyllome guard cell that is part of a leaf stomatal complex. 91780 0 0 69609 13 gametophore A shoot system that consists of the shoot axes and non-vascular leaves of a plant in the gametophytic phase. 91781 0 0 69610 13 leaf lamina base The region of the leaf lamina proximal to the stem and usually connected to it by means of a petiole. 91782 0 0 69611 13 shoot axis epidermis A portion of shoot epidermis that is part of a shoot axis. 91783 0 0 69612 13 rachilla of pedicellate spikelet of tassel The axis of the tassel pedicellate spikelet, above the glumes. 91784 0 0 69613 13 included phloem A portion of phloem tissue produced by included vascular cambium. 91785 0 0 69614 13 axillary flower bud An axillary bud that develops into a flower. 91786 0 0 69615 13 phelloderm A portion of ground tissue often resembling cortical parenchyma produced centripetally by the cork cambium. 91787 0 0 69616 13 portion of ground tissue Any portion of plant tissue other than epidermis or vascular tissue. 91788 0 0 69617 13 carpel stomatal complex A phyllome stomatal complex that is part of a carpel. 91789 0 0 69618 13 protonema A portion of chlorenchyma tissue that develops directly from a spore and grows by division of an apical cell to form filaments that are one cell wide and dicotomously branching. 91790 0 0 69619 13 microsporangium exothecium An exothecium that is part of a microsporangium wall. 91791 0 0 69620 13 plant axis elongation zone A cardinal organ part that is part of a plant axis that is located directly behind an apical meristem, in which the cells are undergoing longitudinal expansion. 91792 0 0 69621 13 leaf stomatal pore A phyllome stomatal pore that is part of a leaf stomatal complex. 91793 0 0 69623 13 meristem A portion of plant tissue in which cells have retained their embryonic characteristics, or have reverted to them secondarily, and that divide to produce new cells that can undergo differentiation to form mature tissues, i.e. they have a capacity for morphogenesis and growth. 91795 0 0 69624 13 collective plant structure A plant structure that is a proper part of a plant and is composed of two or more organs and any associated portions of plant tissue. 91796 0 0 69625 13 egg apparatus A cardinal organ part that has as parts an egg cell and two synergids and is located at the micropylar end of the embryo sac. 91797 0 0 69626 13 fruit valve A valve that is a part of a fruit that splits apart when the fruit dehisces. 91798 0 0 69627 13 Poaceae anther wall A multicellular layer with outer epidermis and an inner endothecium of an anther of a grass stamen. 91799 0 0 69628 13 bract epidermis A portion of phyllome epidermis that is part of a bract. 91800 0 0 69629 13 arilloid A cardinal organ part that is a fleshy outgrowth of a seed and does not cover the entire seed and develops from a part of the seed other than a funicle. 91801 0 0 69630 13 tmema A portion of plant tissue that has as parts tmema cells. 91803 0 0 69631 13 antheridium jacket layer A portion of plant tissue that is a single layer of cells on the outside of an antheridium. 91804 0 0 69632 13 ear peduncle A peduncle of a maize ear, below the lowest ear node. 91805 0 0 69633 13 fruit A collective plant structure containing one or more embryos, which as a whole, develops from a gynoecium. 91806 0 0 69634 13 megasporangium tapetum An tapetum that is part of a megasporangium wall. 91824 0 0 69635 13 statolith (obsolete PO:0020134) OBSOLETE. Solid cell inclusion of starch containing plastids occurring in root cap cells. 91825 1 0 69636 13 aerial tuber interfascicular region A tuber interfascicular region that is part of an aerial tuber storage parenchyma. 91826 0 0 69637 13 palea of lower floret of sessile spikelet of ear The upper of the two bracts enclosing a flower in a maize ear sessile spikelet lower floret. 91827 0 0 69638 13 pedicel of tassel spikelet This is the ultimate branch of the pedicellate tassel spikelet. 91828 0 0 69639 13 ear lateral meristem The meristem that gives rise to the lateral structures of a maize ear. 91829 0 0 69640 13 plumule A somewhat differentiated terminal bud above the cotyledonary node, in which one or more internodes and leaves or scales can be discerned in a primordial stage. 91830 0 0 69641 13 adventitious root epidermis A portion of root epidermis that is part of an adventitious root. 91831 0 0 69642 13 thorn A branch that is a sclerified, pointed outgrowth. 91833 0 0 69643 13 lemma of upper floret of sessile spikelet of ear The lower of the two bracts enclosing a flower in a maize ear sessile spikelet upper floret. 91834 0 0 69644 13 adaxial side of leaf primordium A portion of phyllome primordium tissue that is the adaxial/inner side of the leaf primordium develops into the adaxial/upper leaf blade. 91835 0 0 69645 13 mature dispersal unit (obsolete PO:0009091) OBSOLETE. provisional term 91836 1 0 69646 13 degenerate megaspore In monosporic and bisporic megasporogenesis: the megaspore(s) that would not participate in megagametogenesis. 91837 0 0 69700 13 ovary A plant structure that is the basal portion of a carpel or group of fused carpels and encloses the ovule(s). 91893 0 0 69701 13 seed trichome A trichome that develops from seed coat epidermis and is often long with putative dispersal function. 91894 0 0 69647 13 leaf vascular system A phyllome vascular system that includes the totality of the portions of vascular tissue in their specific arrangement in a leaf. 91838 0 0 69648 13 palisade mesophyll Parenchyma containing closely packed elongated chlorenchymatous cells oriented perpendicular to the leaf surface and which are active in photosynthesis. 91839 0 0 69649 13 collenchyma cell An elongated plant cell with unevenly thickened non-lignified primary walls that is alive at maturity. 91840 0 0 69650 13 ear spikelet Ultimate inflorescence branch of the maize ear. 91841 0 0 69651 13 portion of plant tissue A plant structure that consists predominantly of similarly specialized cells of one or more types. 91842 0 0 69652 13 endexine (obsolete PO:0020010) OBSOLETE: The inner part of the exine, which stains. 91843 1 0 69653 13 Poaceae tapetum Innermost part of the anther wall, involved in the nutrition of the pollen in grasses. 91844 0 0 69654 13 starch sheath cell (obsolete PO:0000020) OBSOLETE. Cells characterized by conspicuous and rather stable accumulation of starch. 91845 1 0 69655 13 Poaceae exothecium The epidermis of an anther sac of a grass stamen. 91847 0 0 69656 13 leaf abaxial trichome A leaf trichome that is part of a leaf abaxial epidermis. 91848 0 0 69657 13 leaf primordium A phyllome primordium that will develop into a leaf. 91849 0 0 69658 13 perigynium Sac-like bract subtending the pistillate flower, as in Carex. 91850 0 0 69659 13 receptacle A cardinal organ part that is the region at the distal end of either a peduncle or a pedicel where the floral appendages (e.g.: sepals, petals, stamens and pistils) are attached. 91851 0 0 69660 13 ray wood parenchyma cell Parenchyma cell of a ray in secondary xylem. 91852 0 0 69661 13 stipule A phyllome that is one of (usually) a pair of appendages at a leaf base. 91853 0 0 69662 13 foot layer (obsolete PO:0020016) OBSOLETE: The inner layer of the ectexine. 91854 1 0 69663 13 pinnate leaf A once-compound leaf with leaflets borne along a rachis. 91855 0 0 69664 13 shoot-borne shoot system A shoot system that is initiated from a shoot. 91856 0 0 69665 13 rachilla of pedicellate spikelet of ear The axis of the ear pedicellate spikelet, above the glumes. 91857 0 0 69666 13 lamellar collenchyma (obsolete PO:0005633) OBSOLETE. A collenchyma in which cell wall thickenings are deposited mainly on tangential walls. 91858 1 0 69667 13 primary parietal cell It is formed by the division of a archesporial cell. 91859 0 0 69671 13 ear sessile spikelet Ultimate sessile inflorescence branch of the maize ear that develops from the spikelet pair meristem. 91863 0 0 69672 13 carpel septum (obsolete PO:0005009) A thin partition or membrane that divides multilocular ovary. Often found in species with syncarpous (multiple carpels fused) pistil. 91864 1 0 69673 13 thallus A whole plant in the gametophytic phase that has a flat growth form and no distinct organs. 91865 0 0 69674 13 ninth order infructescence axis An infructescence branch arising from an eight order infructescence axis. 91867 0 0 69675 13 pedicel cortex A portion of ground tissue that is part of a cortex and part of a pedicel. 91868 0 0 69676 13 paraphyllium A portion of epidermal tissue that is an outgrowth from the epidermis between the leaves of a gametophore axis. 91869 0 0 69677 13 tassel spikelet rachilla The axis of the tassel spikelet, above the glumes. 91870 0 0 69678 13 root cap A portion of parenchyma tissue that is part of the root tip and covers the root apical meristem. 91871 0 0 69679 13 stem epidermis A portion of shoot axis epidermis that is part of a stem. 91872 0 0 69680 13 leaf sheath epidermis A portion of leaf epidermis that is part of a leaf sheath. 91873 0 0 69681 13 pseudostem A collective organ part structure that forms a cylindrical false stem composed concentric leaf sheaths. 91874 0 0 69682 13 valve A cardinal organ part that is a part of a plant structure that splits apart when the structure dehisces. 91875 0 0 69683 13 flower primordium A primordium that will develop into a flower. 91876 0 0 69684 13 filiform apparatus (obsolete PO:0000024) OBSOLETE: A complex of cell wall invaginations in a synergid cell similar to those in transfer cells. 91877 1 0 69685 13 meristem L2 A cell layer directly beneath a meristem L1 layer in a shoot apical meristem which gives rise to subepidermal tissue. 91878 0 0 69686 13 infructescence A reproductive shoot system that develops from an inflorescence and has as parts all of the shoot axes distal to the most distal foliage leaf of a shoot axis and all of the fruits borne by those axes. 91879 0 0 69687 13 bud scale leaf A scale leaf that surrounds a dormant or perennating bud. 91880 0 0 69688 13 shoot axis hypodermis A portion of hypodermis that is part of a shoot axis cortex. 91881 0 0 69689 13 abaxial nucellar projection A portion of plant tissue that is the abaxial/lower portion of the nucellus overlying the vascular strands in the grass caryopsis. 91882 0 0 69690 13 plant protoplast A cultured plant cell from which the entire plant cell wall has been removed. 91883 0 0 69691 13 stem node A shoot node that is part of a stem. 91884 0 0 69692 13 strobilus bud A bud that develops into a strobilus. 91885 0 0 69693 13 epiblast A portion of plant tissue that is a flap-like projection of the coleorhiza, inserted opposite the scutellum. 91886 0 0 69694 13 leaf papilla cell A papilla cell that is part of a leaf epidermis. 91887 0 0 69695 13 pericarp vascular bundle A vascular bundle that is part of a pericarp. 91888 0 0 69696 13 elongation zone (obsolete PO:0020125) The portion of the root that includes small, densely cytoplasmic cells that are dividing and expanding in size. 91889 1 0 69697 13 Poaceae ovule A stalked or sessile structure in a grass carpel within which one or more megaspores are formed and later the female gametophyte or embryo sac develops. 91890 0 0 69698 13 hydroid A plant cell that is dead at maturity, lacks specialized wall thickenings or lignin, and has tapered ends that are thin and partially hydrolyzed. 91891 0 0 69702 13 embryo basal cell A plant cell that is the lower-most cell formed after the first division of the zygote and is part of an embryo. 91895 0 0 69703 13 sepal parenchyma A portion of parenchyma tissue that is part of a sepal. 91896 0 0 69704 13 indehiscent fruit (obsolete PO:0020065) OBSOLETE. Fruit that does not open at maturity. 91897 1 0 69705 13 upper glume of pedicellate spikelet of ear The apical/distal of the two glumes in the pedicellate spikelet. 91898 0 0 69706 13 leaf whorl (obsolete PO:0008034) A cluster of leaves in crowded circles or spirals arising basally from a crown. 91899 1 0 69707 13 style epidermis A portion of carpel epidermis that is part of a style. 91900 0 0 69708 13 sporangium locule A locule that is a cavity in a sporangium or several fused sporangia. 91901 0 0 69709 13 nodal root Adventitious root that forms at a shoot node. 91903 0 0 69710 13 obsolete plant structure (obsolete PO:0006300) OBSOLETE. The instances of this parent term are those anatomical terms which have become obsolete. 91907 1 0 69711 13 mesocarp A portion of plant tissue that is the middle layer of a pericarp. 91908 0 0 69712 13 stomatal pore A plant anatomical space that forms an opening in an epidermis, flanked by two guard cells. 91909 0 0 69713 13 petiole stomatal complex A leaf stomatal complex that is part of a petiole. 91910 0 0 69714 13 tuber axillary bud meristem An axillary bud meristem that is part of a tuber. 91911 0 0 69715 13 root procambium A portion of procambium tissue that undergoes differentiation to form the primary vascular tissue of a root. 91912 0 0 69716 13 embryo coleorhiza A coleorhiza that is part of a plant embryo. 91913 0 0 69717 13 inflorescence vascular system A shoot system vascular system that includes the totality of the portions of vascular tissue in their specific arrangement in an inflorescence. 91914 0 0 69718 13 Zea ovary The basal portion of a carpel that encloses the ovule(s) in a maize floret. 91915 0 0 69719 13 protonemal rhizoid A rhizoid that is part of a protonema and develops from a protonemal side branch rhizoid initial. 91916 0 0 69722 13 collective phyllome structure A collective plant structure that consists of two or more phyllomes originating from the same node or from one or more adjacent nodes with compressed internodes. 91919 0 0 69723 13 Poaceae nucellus Subepidermal tissue in the ovule of a grass plant surrounding the megasporocyte. 91921 0 0 69724 13 gynoecium of tassel floret Collectively the carpels of a maize tassel floret. 91922 0 0 77144 46 seed source \N 210047 0 0 69726 13 fused collective tepal structure A collective tepal structure that has as parts at least two fused tepals. 91924 0 0 69727 13 anther wall middle layer A portion of ground tissue directly internal to an anther endothecium that develops from an anther wall parietal cell layer. 91926 0 0 69728 13 third order infructescence axis An infructescence branch arising from a second order infructescence axis. 91927 0 0 69729 13 Zea connective The part of the stamen of a maize floret, that connects the microsporangia or pollen sacs. 91928 0 0 69730 13 archegonium A plant gametangium that produces an archegonium egg cell that is located in it. 91929 0 0 69731 13 leaf aerenchyma A portion of parenchyma tissue containing particularly large intercellular spaces in the leaf mesophyll. 91930 0 0 69732 13 phellem A portion of ground issue centrifugally derived from cork cambium, non-living at maturity, and having suberized walls. 91931 0 0 69733 13 stele A cardinal organ part that is the central column of a plant axis that consists of the primary vascular tissue and associated ground tissue. 91933 0 0 69734 13 stamen epidermis A portion of phyllome epidermis that is part of a stamen. 91934 0 0 69735 13 ovule A stalked or sessile structure in a seed plant within which one or more megaspores are formed and later the female gametophyte or embryo sac develops. 91935 0 0 69736 13 bract apex A phyllome apex that is part of a bract. 91936 0 0 69737 13 epithem cell A parenchyma cell of the mesophyll of a hydathode found between the xylem endings and the epidermis. 91937 0 0 69738 13 phyllome A lateral plant organ produced by a shoot apical meristem. 91939 0 0 69739 13 hyperphyll The unifacial terete apical portion of a monocot cotyledon, sometimes also visible on other leaves. 91940 0 0 69740 13 spore capsule calyptra A cardinal organ part that develops from the wall of an archegonium and surrounds a sporangium. 91941 0 0 69741 13 ovule primordium A primordium that will develop into an ovule. 91942 0 0 69742 13 sterile lemma A bract in the position of a lemma, but not enclosing floral organs. 91943 0 0 69743 13 inflorescence axis A shoot axis that is part of an inflorescence. 91945 0 0 69744 13 sepal stomatal complex A phyllome stomatal complex that is part of a sepal. 91946 0 0 69745 13 tepal adaxial epidermis A portion of tepal epidermis that covers the adaxial/upper surface of a tepal. 91947 0 0 69746 13 sporophyll A leaf-like organ on which one or more sporangia are borne. 91948 0 0 69747 13 petiole cortex A portion of ground tissue that is part of a cortex and part of the petiole. 91949 0 0 69748 13 generative cell A cell of the male gametophyte of angiosperms that divides to produce two male gametes or sperm cells. 91950 0 0 69749 13 seedling mesocotyl A mesocotyl that develops from an embryonic mesocotyl. 91951 0 0 69750 13 spongy mesophyll Leaf mesophyll parenchyma characterized by little elongated cells, that are not closely packed and have conspicuous intercellular spaces. 91952 0 0 69751 13 antheridium A plant gametangium that produces antheridium sperm cells that are located in it. 91953 0 0 69799 13 sepal trichome A phyllome trichome that is part of a sepal epidermis. 92003 0 0 69800 13 sporophyte (obsolete PO:0009003) A plant structure that is a product of fertilization and produces spores through meiosis. 92004 1 0 76117 19 proximal_promoter_element \N 99596 0 0 69752 13 central endosperm A portion of plant tissue that is the central region of an endosperm, composed of cells that are significantly larger than those at the periphery, especially the aleurone and sub-aleurone layers. 91954 0 0 69753 13 androecium of lower floret of pedicellate spikelet of tassel Collectively the stamens of lower floret of a pedicellate spikelet of tassel inflorescence of maize. 91955 0 0 69754 13 nexine (obsolete PO:0020011) OBSOLETE: The inner, non-sculptured part of the exine which lies below the sexine. 91956 1 0 69755 13 plant organ A plant structure that is a functional unit, is a proper part of a plant, and includes portions of tissues of at least two different types that derive from a common developmental path. 91957 0 0 69756 13 short tassel branch The very short branch that may arise from either or both the long lateral branch and the central spike of tassel in maize. 91958 0 0 69757 13 embryo vascular system Vascular system of embryo. 91959 0 0 69758 13 Zea filament The stalk of the stamen of a maize floret. 91960 0 0 69759 13 palisade mesophyll cell Elongated chlorenchymatous cell oriented perpendicular to the leaf surface and which is active in photosynthesis. 91961 0 0 69760 13 phelloid cell (obsolete PO:0004007) OBSOLETE. B A cell within the phellem (cork) but distinct from the cork cell in having no suberin in its walls. 91962 1 0 69761 13 gynoecium of upper floret of sessile spikelet of ear Collectively the carpels of a upper floret of sessile spikelet of maize ear. 91963 0 0 69762 13 tracheary element General term for any water conducting cell, tracheid or vessel member. 91964 0 0 69763 13 obsolete apical cell (obsolete PO:0004000) An embryonic plant cell that is the uppermost cell formed after the first division of the zygote. 91965 1 0 69764 13 tmema cell A plant cell at the base of a gemma or adjacent to a brachycyte that breaks down to allow abscission of the gemma or brachycyte. 91966 0 0 69765 13 stomium A plant anatomical space that is a slit in an anther lobe formed from when a dehiscence zone dehisces. 91967 0 0 69766 13 root nodule A cardinal organ part that is an outgrowth of a root and is inhabited by nitrogen-fixing bacteria. 91968 0 0 69767 13 transition leaf A leaf that is part of an heteroblastic series, and is characterized by anatomical features that are intermediate between juvenile and adult leaves. 91969 0 0 69768 13 leaf sheath abaxial epidermis A portion of leaf sheath epidermis that covers the abaxial/lower surface of a leaf sheath. 91970 0 0 69770 13 lenticel A portion of ground tissue composed of a loosely-packed mass of cork cells occurring especially in the young stem, bark or even leaf of a plant, visible on the surface as a raised, often powdery-appearing spot. 91972 0 0 69771 13 lemma of lower floret of sessile spikelet of ear The lower of the two bracts enclosing a flower in a maize ear sessile spikelet lower floret. 91973 0 0 69772 13 terminal vegetative bud A terminal bud that develops into a long or short shoot. 91974 0 0 77145 46 institute code \N 210048 0 0 69774 13 lateral root-cap-epidermal initial cell A root initial cell that produces lateral root-cap cells and root epidermis. 91976 0 0 69775 13 axial wood parenchyma cell Parenchyma cell in the axial system of secondary xylem. 91977 0 0 69776 13 Poaceae degenerate megaspore The megaspores in a grass plant that would not participate in megagametogenesis. 91978 0 0 69777 13 lower floret of pedicellate spikelet of ear The lower of the two florets of the pedicellate spikelet rachilla of a maize ear. 91979 0 0 69778 13 central root cap A portion of root parenchyma tissue that is the central part of a root cap in which the cells are arranged in longitudinal files. 91980 0 0 69779 13 hypocotyl endodermis A portion of endodermis that is part of a hypocotyl. 91981 0 0 69780 13 aril A cardinal organ part that is a fleshy outgrowth of the funicle, covering all or most of the seed. 91982 0 0 69781 13 leaf abaxial stomatal complex A leaf stomatal complex that is part of a leaf abaxial epidermis. 91983 0 0 69782 13 casparian strip (obsolete PO:0000023) OBSOLETE: A band-like wall formation within primary walls that contains suberin and lignin; typical of endodermal cells in roots, in which it occurs in radial and transverse anticlinal walls. 91984 1 0 69783 13 outer integument One of the two layers of tissue that usually cover the ovule, contiguous to the inner integument and usually involved in forming the micropyle at the apex. 91985 0 0 69784 13 Zea megasporocyte A diploid (2n) cell that undergoes meiosis and produces four haploid (1n) megaspores in a maize plant. 91986 0 0 69785 13 shoot lateral meristem A shoot meristem located parallel to the sides of the axis. 91987 0 0 69786 13 seedling coleorhiza A coleorhiza that develops from an embryonic coleorhiza. 91988 0 0 69787 13 pollen sac A microsporangium that is located in a sporophyll and where the pollen grains developed and are located after they develop. 91989 0 0 69788 13 cotyledon epidermis A leaf epidermis that is part of a cotyledon. 91990 0 0 69789 13 Poaceae ovary epidermis The epidermal cell layer of the ovary of a grass carpel. 91991 0 0 69790 13 sieve tube member One of the series of cells that make up a sieve tube; it shows a more or less pronounced differentiation between sieve plates (wide pores) and lateral sieve areas (narrow pores). 91992 0 0 69791 13 branch axil An axil that is the space between a shoot axis and a branch that branches from the shoot axis. 91994 0 0 69792 13 vegetative shoot apex A shoot apex that has as part a vegetative shoot apical meristem. 91995 0 0 69793 13 spore capsule mouth A plant anatomical space that is the opening on the apical end of a spore capsule. 91996 0 0 69794 13 shoot axis prickle A prickle that is part of a shoot axis. 91997 0 0 69795 13 seed storage parenchyma A portion of storage parenchyma that is part of a seed. 91998 0 0 69796 13 fruit proximal end The stem end of the fruit. 91999 0 0 69797 13 microgametophyte A whole plant in the gametophytic phase that produces only sperm cells. 92001 0 0 69798 13 stem aerenchyma A portion of aerenchyma that is part of a stem. 92002 0 0 69802 13 primary root differentiation zone A root differentiation zone that is part of a primary root. 92006 0 0 69803 13 pollen wall (obsolete PO:0020059) OBSOLETE: Complex wall surrounding the micrsopore. 92007 1 0 69804 13 ear spikelet rachilla The axis of the ear spikelet, above the glumes. 92008 0 0 69805 13 shoot axis periderm A portion of periderm that is part of a shoot axis. 92009 0 0 69806 13 microsporocyte A diploid (2n) cell that undergoes meiosis and produces four haploid (1n) microspores. 92010 0 0 69807 13 palea In a grass floret, the upper of the two bracts enclosing a flower. 92012 0 0 69808 13 gynoecium of lower floret of sessile spikelet of tassel Collectively the carpels of a lower floret of sessile spikelet of maize tassel. 92013 0 0 69809 13 stamen trichome A phyllome trichome that is part of a stamen epidermis. 92014 0 0 69810 13 root meristem A meristem that is part of a root system. 92015 0 0 69811 13 growth ring boundary Boundary between two growth rings. 92017 0 0 69812 13 procambium A portion of meristem tissue that undergoes differentiation to form the primary vascular tissue. 92018 0 0 69813 13 inflorescence A reproductive shoot system that has as parts all of the shoot axes distal to the most distal foliage leaf of a shoot axis and all of the flowers borne by those axes. Must have two or more flowers as parts. 92019 0 0 69814 13 phyllome primordium A primordium that will develop into a phyllome. 92033 0 0 69815 13 tassel apical meristem An inflorescence apical meristem that gives rise to the maize tassel. 92034 0 0 69816 13 anther locule A sporangium locule that is part of an anther and is a cavity within a single pollen sac or two or more fused pollen sacs. 92035 0 0 69817 13 primary sporogenous cell It is formed by the division of the male archesporial initial. After several mitotic divisions these cells differentiate into pollen mother cells. 92036 0 0 69818 13 anther vascular system A vascular system that includes the totality of the portions of vascular tissue in their specific arrangement in a anther. 92038 0 0 69821 13 micropylar endosperm A portion of plant tissue that is the region of the endosperm closest to the micropyle of the seed. 92041 0 0 69822 13 lower glume of tassel spikelet The proximal/basal of the two glumes in the tassel spikelet. 92042 0 0 69823 13 extrafloral nectary A multicellular glandular structure found in places other than flower secreting a liquid containing organic substances especially sugar. 92043 0 0 69824 13 portion of secretory tissue Tissues that form specialized structures producing a secretion. 92044 0 0 69825 13 myrosin cell A cell containing glucosinolates ("mustard oil glucosides") and myrosinases, enzymes hydrolyzing the glucosinolates. 92045 0 0 69826 13 resin canal A duct of schizogenous origin lined with resin-secreting cells and containing resin. 92046 0 0 69827 13 leaf epidermis A portion of phyllome epidermis that is part of a leaf. 92047 0 0 69828 13 axillary hair basal cell A trichome cell that is part of an axillary hair base. 92048 0 0 69829 13 cotyledonary node rhizoid An epidermal rhizoid that grows form a cotyledonary node. 92049 0 0 69830 13 scutellum epidermis A portion of shoot epidermis that is part of the scutellum. 92052 0 0 69831 13 trichome A unicellular or multicellular plant structure that forms a non-sclerified outgrowth from the epidermis. 92053 0 0 69832 13 xylem element A cell making up xylem tissue. 92055 0 0 69833 13 Zea gynoecium ridge A Poaceae gynoecium ridge that is a gynoecium of an ear floret in the early stages of development and is characterized as a ridge on the abaxial surface of the ear floret. 92056 0 0 69834 13 tassel The functionally-staminate flowering structure that terminates the stem of a Zea mays plant. 92057 0 0 69835 13 collective leaf structure A collective phyllome structure composed of two or more leaves. 92058 0 0 69836 13 spikelet pair meristem The meristem that produces two spikelet meristems, each of which produces two floral meristems. 92059 0 0 69837 13 stem A shoot axis that is the primary axis of a plant. 92060 0 0 69838 13 central spike of ear A first order inflorescence axis that is the central axis of an ear. 92061 0 0 69839 13 pyrene (obsolete PO:0020084) OBSOLETE. The 'stone' or 'pit' (endocarp plus seed) of a succulent fruit. 92062 1 0 69840 13 megaphyll (obsolete PO:0020052) OBSOLETE. Literally a large leaf, a leaf of any size whose vascular supply leaves one or more gaps as it departs from the stem vascular tissue. 92063 1 0 69841 13 protophloem The first-formed elements of the primary phloem. 92064 0 0 69842 13 pith A maximal portion of parenchyma in the center of a shoot axis or root. 92065 0 0 69843 13 sporangium A plant organ in which spores are produced. 92067 0 0 69844 13 megagametophyte A whole plant in the gametophytic phase that produces only egg cells. 92069 0 0 69845 13 shoot axis meristematic apical cell A shoot meristematic apical cell that is part of a shoot apex. 92070 0 0 69846 13 trichome cell A plant cell that is part of a trichome. 92071 0 0 69847 13 prop root Adventitious root formed at stem nodes above the ground and growing directly into the soil. 92072 0 0 69848 13 ground tissue cell A plant cell that is part of a portion of ground tissue. 92073 0 0 69849 13 root-derived cultured plant cell A cultured plant cell that was derived from root tissue. 92074 0 0 69850 13 tassel sessile spikelet Ultimate inflorescence branch of the maize tassel without a pedicel, developing from the spikelet pair meristem. 92075 0 0 69851 13 shoot node A cardinal organ part of a shoot axis where one or more spikelet, flower, floret, branch, bud, or leaf may arise. 92076 0 0 69852 13 stigma papilla cell A papilla cell that is part of a stigma epidermis. 92077 0 0 69854 13 plant structure An anatomical structure that is or was part of a plant, or was derived from a part of a plant. 92079 0 0 69855 13 paraclade An inflorescence branch that ends in an inflorescence that repeats the main inflorescence. 92081 0 0 69856 13 strobilus A reproductive shoot system consisting of a number of modified leaves (sporophylls) or ovule-bearing scales grouped terminally on a stem. 92082 0 0 69857 13 obsolete shoot procambium (obsolete PO:0006306) A derivative of the apical meristem which undergoes differentiation to form the primary vascular tissue of a shoot. 92083 1 0 69858 13 leaf prickle A prickle that is part of a leaf. 92084 0 0 69859 13 non-vascular leaf A leaf in a non-vascular plant. 92085 0 0 69860 13 coleorhiza A plant organ that surrounds a radicle. 92086 0 0 69861 13 anther wall tapetum A microsporangium tapetum that is part of an anther wall. 92089 0 0 69862 13 free tepal A tepal that is separate from all other tepals. 92090 0 0 69863 13 embryo endodermis A portion of endodermis that is part of an embryo. 92091 0 0 69864 13 lateral root elongation zone A root elongation zone that is part of a lateral root tip. 92092 0 0 69865 13 caulonema meristematic apical cell A protonema meristematic apical cell that is part of a caulonema. 92093 0 0 69866 13 branch stele A shoot axis stele that is part of a branch. 92094 0 0 69867 13 pericarp A wall of a fruit, developed from the ovary or carpel wall. 92095 0 0 69868 13 inflorescence internode A shoot internode that is part of an inflorescence axis. 92096 0 0 69869 13 hilum A cardinal organ part that is a scar on a seed at the place where it was attached to a funicle. 92097 0 0 69870 13 anther pore A plant anatomical space that is a pore at the apex of an anther. 92098 0 0 69871 13 endosperm parenchyma A portion of seed storage parenchyma that is part of an endopserm. 92099 0 0 69872 13 mesophyll The chloroplast-containing, photosynthetic parenchymatous tissue situated between the two epidermal layers of the leaf or leaf like organs. 92100 0 0 69873 13 suspensor An embryonic plant structure at the base of a plant embryo that develops from an embryonic basal cell and connects an embryo proper to the wall of a megagametophyte. 92101 0 0 69874 13 interfascicular cambium Vascular cambium arising between vascular bundles or fascicles, in the interfascicular parenchyma or pith. 92103 0 0 69875 13 periblem A portion of meristem tissue that forms the cortex. 92104 0 0 69876 13 sporangium theca A cardinal organ part that is the main body of a sporangium and has spores located in it. 92106 0 0 69877 13 central strand A portion of plant tissue that is an axial strand in the center of a gametophore axis or seta and has as part a hydrome or a leptome. 92107 0 0 69878 13 subterranean tuber axillary vegetative bud A tuber axillary vegetative bud that is part of a subterranean tuber. 92108 0 0 69879 13 Zea endothecium The hypodermis of an anther sac of a maize stamen with distinctively thickened walls and involved in its dehiscence. 92109 0 0 69880 13 petal base A phyllome base that is part of a petal. 92110 0 0 69881 13 sculpture elements (obsolete PO:0020015) OBSOLETE: Third layer of sexine. 92111 1 0 69882 13 bundle sheath A layer or layers of cells surrounding the vascular bundles of leaves. It may consist of parenchyma or sclerenchyma. 92112 0 0 69883 13 lemma of ear floret The lower of the two bracts enclosing a flower in a maize ear floret. 92113 0 0 69884 13 persistent stamen A phyllome that develops from a stamen and remains attached to a fruit at maturity. 92114 0 0 69885 13 glume of tassel spikelet A bract in the tassel inflorescence of a maize plant, subtending two florets. 92115 0 0 77146 46 institute name \N 210049 0 0 69886 13 Poaceae microsporangium Sporangium in the anther of a grass stamen producing microspores, usually many in number. 92116 0 0 69887 13 lateral root differentiation zone A root differentiation zone that is part of a lateral root. 92117 0 0 69888 13 tenth or higher order inflorescence axis An inflorescence branch arising from a ninth or higher order inflorescence axis. 92118 0 0 69889 13 petal margin The margin of a petal. 92119 0 0 69890 13 carpel margin The margin of a carpel. 92120 0 0 69891 13 gametophore bud A vegetative bud that develops into a gametophore. 92121 0 0 69892 13 Poaceae integument One of the layers of tissue that covers the ovule of a grass carpel, enveloping the nucellus and forming the micropyle at the apex. 92122 0 0 69893 13 Poaceae inner integument The innermost of the two layers of tissue that cover the ovule of a grass, contiguous to the nucellus and usually involved in forming the micropyle at the apex. 92123 0 0 69894 13 microsporangium wall \N 92124 0 0 69895 13 embryogenic callus A cultured plant callus that is capable of forming somatic embryos. 92125 0 0 69896 13 scutellar vascular system A vascular system in a scutellum. 92126 0 0 69897 13 silk The style of a maize floret. 92127 0 0 69898 13 phyllome epidermis A portion of shoot epidermis that is part of a phyllome. 92128 0 0 69899 13 socket cell A shoot epidermal cell that surrounds a trichome and provides its support. 92129 0 0 69900 13 sepal margin The margin of a sepal. 92131 0 0 69901 13 antheridium jacket layer cell A plant cell that is part of an antheridium jacket layer. 92133 0 0 69902 13 subterranean tuber axillary bud meristem A tuber axillary bud meristem that is part of a subterranean tuber. 92134 0 0 69903 13 shoot apical meristem A shoot meristem formed in the apex of the shoot, including meristems originating as axillary shoot meristems. 92135 0 0 69904 13 terminal strobilus bud A terminal reproductive bud that develops into a strobilus. 92136 0 0 69905 13 inner integument epidermis The epidermis of the inner integument in an ovule. 92137 0 0 69906 13 Poaceae placentoid An inpushing of the anther wall of a grass stamen. 92138 0 0 69909 13 early wood The wood formed in first part of a growth ring and characterized by a lower density and larger cells than the late wood. 92141 0 0 69910 13 androecium of ear floret Collectively the stamens of maize ear floret. 92142 0 0 75934 19 chloroplast_DNA \N 99388 0 0 69911 13 fusiform initial An elongated cambial initial cell with approximately wedge-shaped ends that is part of the vascular cambium and gives rise to axial cells. 92143 0 0 69912 13 sixth order inflorescence axis An inflorescence branch arising from a fifth order inflorescence axis. 92145 0 0 69913 13 sepal mesophyll The chloroplast-containing, photosynthetic parenchymatous tissue situated between the two epidermal layers of the sepal. 92146 0 0 69914 13 fruit distal end The end distal from the fruit pedicel. 92147 0 0 69915 13 spore capsule columella A columella that forms the central axis of a spore capsule. 92148 0 0 69916 13 collective organ part structure A plant structure composed of two or more cardinal organ parts from adjacent organs and any associated portions of plant tissue. 92149 0 0 69917 13 tuber storage parenchyma A portion of storage parenchyma that is part of a tuber. 92150 0 0 69918 13 seed funicle A stalk that is attached to a seed and is the remnants of a funicle. 92151 0 0 69919 13 sepal abaxial epidermis A portion of sepal epidermis that covers the abaxial/lower surface of a sepal. 92152 0 0 69920 13 xylem pole pericycle cell A pericycle cell that is adjacent to the protoxylem of a vascular bundle. 92153 0 0 69921 13 Poaceae ovary The basal portion of a carpel that encloses the ovule(s) in a grass floret. 92155 0 0 69922 13 terminal bud A bud that develops from a shoot apical meristem. 92156 0 0 69923 13 chlorenchyma Chloroplast-containing parenchyma tissue. 92157 0 0 69924 13 ground tissue (obsolete PO:0009016) OBSOLETE. Tissues other than the vascular tissues, epidermis and the periderm. 92158 1 0 69927 13 prophyll A phyllome that is the first organ or one of the first two organs formed at the base of an axillary shoot, often smaller and/or in a distinctively different position from leaves formed subsequently. 92161 0 0 69928 13 flower abscission zone Zone at base of the flower that contains an abscission (or separation) layer and a protective layer, both involved in the abscission of the flower and its parts. 92162 0 0 69929 13 branch internode A shoot internode that is part of a branch. 92163 0 0 69930 13 periderm A peripheral portion of ground tissue in a plant axis that is composed of phellogen, phellem, and phelloderm. 92164 0 0 69931 13 tectum (obsolete PO:0020013) OBSOLETE: The layer of sexine, which forms a roof over the columellae, granules or other infratectal elements. 92165 1 0 69932 13 Poaceae ovary placenta The region within an ovary to which ovules are attached in a grass carpel. 92166 0 0 69933 13 obsolete microgametophyte (obsolete PO:0020091) A gametophyte that produces pollen sperm cells. 92167 1 0 69934 13 sclerenchyma cell Usually dead cell variable in form and size, with more or less thick, often lignified, secondary walls. 92169 0 0 69935 13 megasporangium endothecium An endothecium that is part of a megasporangium wall. 92170 0 0 69936 13 Zea ovule A stalked or sessile structure in a maize carpel within which one or more megaspores are formed and later the female gametophyte or embryo sac develops. 92171 0 0 69937 13 gynoecium of upper floret of pedicellate spikelet of tassel Collectively the carpels of a upper floret of pedicellate spikelet of maize tassel. 92172 0 0 69938 13 intercalary meristem A shoot meristem separated from the apical meristem in the primary body by more or less mature tissues. 92173 0 0 69939 13 axillary bud A bud that develops from an axillary bud meristem. 92174 0 0 69940 13 filament A stalk of a stamen. 92175 0 0 69941 13 flag leaf The last mature leaf before the inflorescence in a cereal crop plant. 92176 0 0 69942 13 auricle Outgrowth at the base of a leaf blade that may wrap around the stem. 92177 0 0 69995 13 stem trichome A shoot axis trichome that is part of a stem epidermis. 92239 0 0 69943 13 carpel vascular system A phyllome vascular system that includes the totality of the portions of vascular tissue in their specific arrangement in a carpel. 92178 0 0 69944 13 first order infructescence axis An infructescence axis that is the primary or main axis of an infructescence. 92179 0 0 69945 13 articulated laticifer A structure consisting of long multinucleate tubes in which latex is found, having cross walls (articulated). 92180 0 0 69946 13 Poaceae floret A floret that is part of a spikelet. 92181 0 0 69947 13 root meristematic apical cell A sporophyte meristematic apical cell that is part of a root tip. 92183 0 0 69948 13 tepal vascular system A phyllome vascular system that includes the totality of the portions of vascular tissue in their specific arrangement in a tepal. 92184 0 0 69949 13 pollen tube cell A plant cell that develops from a vegetative cell and forms a tubular extension of the pollen grain. 92185 0 0 69950 13 root perimedullary zone A perimedullary zone that is part of a root pith. 92186 0 0 69951 13 adaxial epidermis of ovary The epidermal cell layer of the adaxial/inner surface of the ovary. 92187 0 0 69952 13 subterranean tuber axillary shoot An axillary shoot that develops from a subterranean tuber axillary bud. 92188 0 0 69953 13 spikelet Ultimate and congested inflorescence branch of the grasses. 92189 0 0 69954 13 tuber An enlarged storage branch. 92190 0 0 69955 13 placentoid A portion of parenchyma tissue that is part of a connective and projects into a pollen sac. 92191 0 0 69956 13 portion of plant substance A portion of organism substance that is or was part of a plant. 92193 0 0 69957 13 lamina A regional part of an anatomical structure that is enlarged through lateral growth. 92195 0 0 69958 13 tassel lateral meristem The meristem that gives rise to the long lateral branch, short branch and spikelets in maize tassel. 92197 0 0 69959 13 tassel floret meristem Apical meristem that gives rise to the organs of a maize tassel floret. 92198 0 0 70263 13 guard cell One of a pair of cells flanking the stomatal pore. 92523 0 0 69962 13 tepal A phyllome that is part of a perianth in which all parts are similar in appearance and are neither petals nor sepals. 92201 0 0 69963 13 cotyledon margin The margin of a cotyledon. 92202 0 0 69964 13 nucellus A megasporangium in a seed plant, composed of fleshy subepidermal tissue that is located in an ovule and surrounding a megasporocyte. 92203 0 0 69965 13 higher order vein A leaf vein arising from a quaternary or higher vein order. 92204 0 0 69966 13 shoot epidermis A portion of epidermis that is part of a shoot system. 92205 0 0 69967 13 primary thickening meristem A meristem that develops from a peripheral zone of a shoot apical meristem and is responsible for the primary increase in thickness of a shoot axis. 92206 0 0 69968 13 Poaceae theca A part of the anther of a grass stamen consisting of paired sporangia that dehisce down a common slit. 92208 0 0 69969 13 phloem mother cell A cambial initial cell which is destined to differentiate into secondary phloem. 92209 0 0 69970 13 non-articulated laticifer cell A laticifer cell that elongates indefinitely and grows intrusively between the walls of meristematic cells. 92210 0 0 69971 13 separation layer A portion of plant tissue that is part of an abscission zone and contains cells that develop an abnormal wall chemistry and swelling resulting in their easily being pulled apart along the pectin-rich middle lamella. 92212 0 0 69972 13 pedicel vascular system A shoot axis vascular system that includes the totality of the portions of vascular tissue in their specific arrangement in a pedicel. 92213 0 0 69973 13 shoot axis perimedullary zone A perimedullary zone that is part of a shoot axis pith. 92214 0 0 69974 13 basal endosperm transfer cell A transfer cell that is part of a basal endosperm transfer layer. 92215 0 0 69975 13 gynoecium of lower floret of pedicellate spikelet of ear Collectively the carpels of a lower floret of pedicellate spikelet of a maize ear. 92216 0 0 69976 13 archegoniophore A plant axis that bears two or more archegonia on an archegonial head. 92217 0 0 69977 13 lateral root primordium A root primordium that is derived from a root pericycle and will develop into a lateral root. 92218 0 0 69978 13 epidermal rhizoid A rhizoid that develops from an epidermal rhizoid initial. 92219 0 0 69979 13 shoot internode elongation zone A plant axis elongation zone that is part of a shoot axis internode. 92221 0 0 69980 13 gynoecium ridge of lower floret of pedicellate spikelet of ear A Zea gynoecium ridge that is a gynoecium of a lower floret of a pedicellate spikelet of ear in the early stages of development. 92222 0 0 69981 13 shoot axis procambium A portion of shoot procambium that is part of a shoot apical meristem and gives rise to the primary vascular tissue of a shoot axis. 92223 0 0 69982 13 exotegmen That part of the seed coat that develops from the outer surface of the inner integument. 92224 0 0 69983 13 subsidiary cell An epidermal cell associated with a stoma and at least morphologically distinguishable from the other epidermal cells. 92225 0 0 69984 13 stem procambium A portion of shoot axis procambium gives rise to the primary vascular tissue of a stem. 92228 0 0 69985 13 seedling epicotyl A epicotyl that develops from an embryonic epicotyl. 92229 0 0 69986 13 involucre A collective phyllome structure composed of two or more involucral bracts at the base of a cluster of flowers, as found in Asteraceae or Compositae. 92230 0 0 69987 13 lower floret of pedicellate spikelet of tassel The lower of the two florets of the pedicellate spikelet of a maize tassel. 92231 0 0 69988 13 ovary septum A septum that divides a multilocular ovary. 92232 0 0 69989 13 nucellar plant embryo A somatic plant embryo derived directly from nucellus cells. 92233 0 0 69990 13 branch A shoot axis that develops from an axillary meristem or from equal divisions of the shoot apical meristem. 92234 0 0 69991 13 sixth order infructescence axis An infructescence branch arising from a fifth order infructescence axis. 92235 0 0 69992 13 seminal root A root formed within the scutellar node of the embryo in some monocotyledonous plants. 92236 0 0 69993 13 tepal epidermis A portion of phyllome epidermis that is part of a tepal. 92237 0 0 69994 13 tuber axillary shoot An axillary shoot that develops from a tuber axillary bud. 92238 0 0 69996 13 sporophyte meristematic apical cell A meristematic apical cell that is part of a whole plant in the sporophytic phase. 92240 0 0 69997 13 radicle An embryonic root that is the basal continuation of a hypocotyl. 92241 0 0 69998 13 hypocotyl vascular system Vascular system of the hypocotyl. 92242 0 0 69999 13 columella root cap cell Cell that constitutes the central part of the root cap, arranged in longitudinal files. 92243 0 0 70000 13 gametophore axillary hair basal cell An axillary hair basal cell that is part of a gametophore axillary hair base. 92245 0 0 70001 13 atrichoblast A root epidermal cell that is formed after asymmetric division of an epidermal initial and does not give rise to a root hair. 92246 0 0 70002 13 adventitious root apical meristem A root apical meristem that is part of an adventitious root. 92247 0 0 70003 13 axillary hair terminal cell A trichome cell that is the long terminal cell of an axillary hair. 92248 0 0 70004 13 central root cap of primary root A central root cap that is part of a root cap of primary root. 92249 0 0 70005 13 leaf procambium A portion of shoot procambium tissue that is part of a leaf. 92250 0 0 70006 13 cultured zygote-derived plant embryo A zygotic plant embryo that is grown or maintained in vitro. 92251 0 0 70007 13 rib zone The region of the shoot apical meristem that lies below the central zone and is flanked by the peripheral zone. 92252 0 0 70008 13 cauline leaf Leaf or pairs/whorls of leaves borne on the stem. 92253 0 0 70009 13 leaflet One of the ultimate segments of a compound leaf. 92254 0 0 70010 13 floret Small flowers, especially of the spikelets of Poaceae and Cyperaceae. 92255 0 0 70011 13 floral guard cell (obsolete PO:0008045) One of a pair of cells flanking the stomatal pore of floral organs. 92256 1 0 70212 13 tuber periderm A portion of shoot periderm that is part of a tuber. 92469 0 0 70012 13 gynoecium of upper floret of sessile spikelet of tassel Collectively the carpels of a upper floret of sessile spikelet of maize tassel. 92257 0 0 70013 13 gametophore bud initial A protonema sub-apical initial hat gives rise to a gametophore bud. 92258 0 0 70014 13 root cap of lateral root A root cap that is part of a lateral root tip. 92259 0 0 70015 13 carpel epidermis A portion of phyllome epidermis that is part of a carpel. 92260 0 0 70016 13 glume of ear spikelet A bract in the ear inflorescence of a maize plant, subtending two florets. 92261 0 0 70017 13 staminode Sterile stamen. 92262 0 0 70018 13 Poaceae gynoecium A gynoecium that is part of a Poaceae floret. 92263 0 0 70019 13 petiolule A stalk of a leaflet. 92266 0 0 70020 13 dehiscence zone A portion of plant tissue that is part of a plant structure and consists of a narrow band of cells that undergoes dehiscence upon maturation of the structure. 92267 0 0 70021 13 ray initial A cambial initial cell that gives rise to ray cells of the secondary xylem and secondary phloem. 92268 0 0 70022 13 caulonema A portion of protonema tissue that consists of only caulonema cells. 92269 0 0 70024 13 palea of lower floret of pedicellate spikelet of ear The upper of the two bracts enclosing a flower in a maize ear pedicellate spikelet lower floret. 92272 0 0 70025 13 strophiole An outgrowth occurring on the raphe. 92273 0 0 70026 13 shoot meristem A meristem that is part of a shoot system. 92274 0 0 70027 13 lateral vein An unbranched second order vein of the grass leaf blade. 92275 0 0 70028 13 tile B cell Empty upright ray cell of approximately the same height as the procumbent ray cell and occurring in indeterminate horizontal series usually B interspersed among the procumbent cells. 92276 0 0 70029 13 velamen A multiseriate epidermis found in aerial roots of some monocots. Most of its cells are dead and store water like a sponge. 92277 0 0 70030 13 hydathode pore A plant anatomical space that is an opening in a hydathode. 92278 0 0 70031 13 central spike of tassel A first order inflorescence axis that is the central axis of a tassel. 92280 0 0 70032 13 Zea ear The distal part of a lateral (axillary) branch in Zea that bears the functionally-carpellate florets in a highly contracted inflorescence. 92281 0 0 70033 13 tracheid bar A distinct ring-like structure, composed of tracheid cells, which surrounds the hilum of some taxa e.g., Phaseolus, and forms a groove in the surface of the pericarp (immediately adjacent to the hilum). 92282 0 0 70034 13 floral stomatal complex (obsolete PO:0008044) An opening pore on the epidermis of floral organs bordered by two guard cells and serving in gas exchange. 92283 1 0 70035 13 lower glume of pedicellate spikelet of ear The proximal/basal of the two glumes in the ear pedicellate spikelet. 92284 0 0 70036 13 gynoecium ridge of upper floret of sessile spikelet of ear A Zea gynoecium ridge that is a gynoecium of an upper floret of sessile spikelet of ear in the early stages of development. 92285 0 0 70037 13 metaxylem A portion of xylem tissue that is part of the primary xylem and differentiates after the protoxylem and before the secondary xylem, if any of the latter is formed. 92286 0 0 70038 13 tuber axillary vegetative bud An axillary vegetative bud that is part of a tuber. 92287 0 0 70039 13 gametophore branch A branch that is part of a gametophore. 92288 0 0 70040 13 pollen tube tip (obsolete PO:0000028) Tip portion of the pollen tube that is rapidly growing. 92289 1 0 70041 13 gynoecium ridge of upper floret of pedicellate spikelet of ear A Zea gynoecium ridge that is a gynoecium of an upper floret of pedicellate spikelet of ear in the early stages of development. 92290 0 0 70042 13 androecium of lower floret of pedicellate spikelet of ear Collectively the stamens of lower floret of a pedicellate spikelet of maize ear inflorescence. 92291 0 0 70043 13 microsporangium endothecium An endothecium that is part of a microsporangium wall. 92292 0 0 70044 13 costa A portion of plant tissue that is a single or double strand in the center of a non-vascular leaf and has as part hydrome or leptome. 92293 0 0 70045 13 palea of ear floret In a maize ear floret, the upper of the two bracts enclosing a flower. 92294 0 0 70046 13 aerial tuber epidermis A portion of tuber epidermis that is part of an aerial tuber. 92295 0 0 70047 13 scale leaf margin The margin of a scale leaf. 92296 0 0 77147 46 biological status of accession code \N 210050 0 0 70048 13 spore capsule operculum A cardinal organ part that is the apical part of a spore capsule that separates from the rest of the capsule during dehiscence. 92297 0 0 70049 13 archegonium neck A cardinal organ part that is the elongated apical part of an archegonium. 92298 0 0 70050 13 persistent sepal A phyllome that develops from a sepal and remains attached to a fruit at maturity. 92299 0 0 70051 13 Zea integument One of the layers of tissue that covers the ovule of a maize carpel, enveloping the nucellus and forming the micropyle at the apex. 92300 0 0 70052 13 gamete A plant cell that has half the chromosome complement of the sporophyte and is capable of fertilization to create a zygote. 92301 0 0 70053 13 cotyledon adaxial epidermis The adaxial/upper epidermal cell layer of the cotyledon. 92302 0 0 70054 13 Zea funicle A stalk that attaches an ovule to a placenta in a maize carpel. 92303 0 0 70055 13 microgametophytic cell (obsolete PO:0025027) A plant cell that is part of a male gametophyte. 92304 1 0 70056 13 carpel primordium A phyllome primordium that develops into a carpel. It initiates from the carpel anlagen region of the floral meristem. 92305 0 0 70057 13 gametophore axillary hair terminal cell An axillary hair terminal cell that is the long terminal cell of a gametophore axillary hair. 92306 0 0 70058 13 L2 (obsolete PO:0006304) OBSOLETE. The second layer of the tunica. 92307 1 0 70059 13 testa That part of the seed coat that develops from the outer integument, or from the single integument when there is only one. 92308 0 0 70060 13 leaf mesophyll The chloroplast-containing, photosynthetic parenchymatous tissue situated between the two epidermal layers of the foliage leaf. 92309 0 0 70061 13 male archesporial cell An archesporial cell that is part of a microsporangium and divides to gives rise to a microsporocyte. 92310 0 0 70062 13 calyx A collective phyllome structure composed of two or more sepals. 92311 0 0 70063 13 lodicule of ear floret In a Maize ear floret, one of two or three tiny scales or flaps of tissue, possibly representing reduced perianth segments. 92312 0 0 70064 13 adventitious root primordium A root primordium that will develop into an adventitious root. 92313 0 0 70065 13 lemma of lower floret of pedicellate spikelet of ear The lower of the two bracts enclosing a flower in a maize ear pedicellate spikelet lower floret. 92314 0 0 70066 13 terminal flower bud A terminal bud that develops into a flower. 92315 0 0 70067 13 coma A portion of seed coat epidermis that consists of multiple seed trichomes at the micropyle. 92316 0 0 70068 13 sporocyte A diploid (2n) cell that undergoes meiosis and produces four haploid (1n) spores. 92317 0 0 70069 13 fruit pedicel An infructescence branch that supports an individual fruit. 92318 0 0 70070 13 epidermal cork cell One of the two types of short cells in the epidermis of grasses and bamboos. It is usually paired with silica cell. 92319 0 0 70071 13 aerial tuber pith A portion of tuber pith that is part of an aerial tuber storage parenchyma. 92320 0 0 70072 13 vascular shoot axis meristematic apical cell A shoot axis meristematic apical cell at the tip of a shoot apex in a shoot system that has as part vascular tissue. 92321 0 0 70073 13 brachycyte A plant cell that develops from a cell in a protonema and has a thick cell wall. 92322 0 0 70076 13 tetrad of megaspores A portion of plant tissue consisting of four megaspores that remained joined together shortly after meiosis. One cell will give rise to a female gametophyte. 92325 0 0 70077 13 tassel branch Any branch forming from the primary or higher order tassel axes. 92326 0 0 70078 13 short shoot Shoot system in which the internodes elongate little or at all, bearing reproductive structures and/or leaves. 92327 0 0 70079 13 Poaceae stomium A stomium that is part of an anther wall (sensu Poaceae). 92328 0 0 70080 13 axillary hair A multicellular trichome that has as parts a long terminal cell atop a basal stalk and grows in a leaf axil. 92329 0 0 70081 13 cultured plant embryo A plant embryo that is grown or maintained in vitro. 92330 0 0 70082 13 gynophore A shoot axis that is an elongation of the floral axis that supports the carpels. 92331 0 0 70083 13 anther wall secondary parietal cell layer A portion of ground tissue that is part of an anther wall and develops from an anther wall primary parietal cell layer. 92333 0 0 70084 13 cork cambium Lateral meristem which produces the phellem (cork) and the phelloderm. 92334 0 0 70085 13 anther wall primary parietal cell layer A portion of ground tissue that is part of an anther wall and has as parts a primary parietal cell and adjacent cells. 92335 0 0 70086 13 Zea theca A part of the anther of a maize stamen consisting of paired sporangia that dehisce down a common slit. 92336 0 0 70087 13 bract abaxial epidermis A portion of bract epidermis that covers the abaxial/lower surface of a bract. 92337 0 0 70088 13 laticifer cell A ground tissue cell that contains latex. 92338 0 0 70089 13 bract stomatal complex A phyllome stomatal complex that is part of a bract. 92339 0 0 70090 13 microsporophyll A structure on which one or more microsporangia are borne; in flowering plants, the stamen. 92340 0 0 70091 13 involucral bract Equals inflorescence bract of an involucre, as in Asteraceae or Compositeae. 92341 0 0 70092 13 leaf lamina epidermis A portion of leaf epidermis that is part of a leaf lamina. 92342 0 0 70093 13 obturator An outgrowth of the funicle, that forms a bridge between the micropyle and other tissues. 92343 0 0 70094 13 protoderm A portion of meristem tissue that develops from the outer layer of an apical meristem and gives rise to a portion of epidermis. 92344 0 0 70095 13 nucellar epidermis A portion of plant tissue that is the morphologically distinct outer layer of the nucellus. 92345 0 0 70096 13 tepal base A phyllome base that is part of a tepal. 92346 0 0 70097 13 rhizome internode A shoot axis internode that is part of a rhizome. 92347 0 0 70098 13 obsolete fruit septum (obsolete PO:0005008) A thin partition or membrane that divides a cavity or a mass of tissue in the fruit that is derived from the carpel septum. 92348 1 0 70099 13 spongy mesophyll cell Irregularly-shaped, chlorenchymatous cell, separated by large air spaces. 92349 0 0 70202 13 tepal stomatal complex A phyllome stomatal complex that is part of a tepal. 92459 0 0 70203 13 plant axis An axial plant organ. 92460 0 0 70100 13 microspore The smaller, in general, of the two kinds of spores produced after meiosis in the life cycle of a heterosporous plant, and on germination giving rise to the male gametophyte. 92350 0 0 70101 13 archegonium egg cell A plant egg cell that is produced by and located in an archegonium. 92351 0 0 70102 13 ear pedicellate spikelet Ultimate pedicellate inflorescence branch of the maize ear that develops from the spikelet pair meristem. 92352 0 0 70103 13 sepal vascular system A phyllome vascular system that includes the totality of the portions of vascular tissue in their specific arrangement in a sepal. 92353 0 0 70104 13 archegonium head An umbrella-shaped cardinal organ part that is the apical portion of an archegoniophore and bears archegonia. 92354 0 0 70105 13 Zea placentoid An inpushing of the anther wall of a maize stamen. 92355 0 0 70106 13 corpus (obsolete PO:0006301) OBSOLETE. Group of cells located beneath anticlinally dividing peripheral layers (tunica) and dividing in many planes. In apical shoot meristem. Such division cause the increase in the volume of shoot. 92356 1 0 70107 13 ear meristem The meristem which gives rise to the female inflorescence or ear in maize. 92357 0 0 70108 13 endothelium A portion of plant tissue composed of cells of the inner epidermis of the inner (or only) integument of the ovule that are radially elongated and metabolically very active. 92358 0 0 70109 13 anther theca A collective organ part structure that is part of an anther and consists of paired sporangia that dehisce down a common slit. 92359 0 0 70110 13 phyllome guard cell A guard cell that is part of a phyllome stomatal complex. 92360 0 0 70111 13 filament vascular system A vascular system that includes the totality of the portions of vascular tissue in their specific arrangement in a filament. 92361 0 0 70112 13 bundle sheath extension A strip of ground tissue present along the leaf veins and extending from the bundle sheath to the epidermis. It may be present on one or both sides of the vein and may consist of parenchyma or sclerenchyma. 92362 0 0 70113 13 root epidermal cell An epidermal cell that is part of a root epidermis. 92363 0 0 70114 13 shoot axis endodermis A portion of endodermis that is part of a shoot axis cortex. 92364 0 0 70115 13 leaf sheath Any tubular portion of the leaf surrounding the stem, as in the Poaceae. 92365 0 0 70116 13 leaf A phyllome that is not associated with a reproductive structure. 92366 0 0 70117 13 rosette leaf One of multiple leaves borne in a rosette - a group of leaves, generally borne at the base of the plant, that are separated by very short internodes. 92367 0 0 70118 13 root giant cell Multinucleate cell developed by a series of events involving kayokinesis but not cytokinesis of the initial feeding cell. The events are induced by root knot nematodes (e.g., Meloidogyne sp. ) entering the feeding cells (any cells) of the root vascular system. 92368 0 0 70119 13 paleal apiculus A short, abrupt, flexible point present at the apex of the palea. 92369 0 0 70120 13 mesophyll cell A chlorenchyma cell that is part of a mesophyll. 92370 0 0 70222 13 sporangium wall A cardinal organ part that is composed of the outer layers of a sporangium and bounds the archesporium or spores. 92479 0 0 70121 13 gynoecium ridge of lower floret of sessile spikelet of ear A Zea gynoecium ridge that is a gynoecium of a lower floret of sessile spikelet of ear in the early stages of development. 92371 0 0 70122 13 lateral root tip The portion of the lateral root including the meristem and root cap. 92372 0 0 70123 13 primary shoot The shoot developing from the embryonic shoot apical meristem. 92373 0 0 70124 13 seed coat A portion of plant tissue that is the covering of a seed derived from ovular - mainly integumentary - tissue. 92374 0 0 70125 13 petiole margin The margin of a flattened petiole. 92375 0 0 70126 13 stem internode A shoot internode that is part of a stem. 92376 0 0 70127 13 abaxial side of leaf primordium A portion of phyllome primordium tissue that is the abaxial/outer side of a leaf primordium and develops into the abaxial/lower leaf blade. 92377 0 0 70128 13 vessel member One of the cellular components of a vessel, a dead cell with the wall between adjacent members being variously perforated and the walls that persist variously thickened. 92378 0 0 70129 13 scutellar node A stem node that is the part of an embryo axis directly above the radicle where the scutellum is attached. 92379 0 0 70130 13 chlorenchyma cell A parenchyma cell containing chloroplasts; a component of leaf mesophyll and other green parenchyma tissue. 92380 0 0 70131 13 fruit septum A septum that divides a cavity or mass of tissue in a fruit and develops from an ovary septum. 92381 0 0 70132 13 Poaceae megasporocyte A diploid (2n) cell that undergoes meiosis and produces four haploid (1n) megaspores in a grass plant. 92382 0 0 70133 13 stigma epidermis A portion of carpel epidermis that is part of a stigma. 92383 0 0 70134 13 petal A member of the corolla, the inner whorl of non-fertile parts surrounding the fertile organs of a flower, usually soft and colored conspicuously. 92385 0 0 70135 13 metaphloem Part of the primary phloem that differentiates after the protophloem and before the secondary phloem, if any of the latter is formed. 92386 0 0 70136 13 cambium-like transitional zone (obsolete PO:0006067) OBSOLETE. A cup-shaped region in the shoot apical meristem found between the central mother cell and the rib and peripheral zone. The cells of this zone are derived from the corpus intials, but in some cases they arise also from tunica initials. 92387 1 0 70137 13 archegonium neck canal A canal in the center of an archegonium neck. 92388 0 0 70138 13 gynoecium primordium A primordium that will develop into a gynoecium. 92389 0 0 70139 13 leaf base A phyllome base that is part of a leaf. 92390 0 0 70140 13 megagametophyte cell A plant cell that is part of an embryo sac. 92391 0 0 70141 13 shoot-borne root A post-embryonic root that develops from shoot tissue. 92392 0 0 70142 13 stem intercalary meristem An intercalary meristem in the primary body of stem separated from the apical meristem by more or less mature tissues. 92395 0 0 70143 13 pulvinus A cardinal organ part at the apex or base of a petiole, petiolule, leaf sheath, or branch that is differentiated from the remaining organ parts by its enlarged cross section. 92396 0 0 70418 14 2 formation of axillary shoot The stage at which the axillary shoots are forming. 92694 0 0 70144 13 inflorescence branch crown A shoot system that forms the basal part of an inflorescence to which the pedicels are attached and in which the internodes do not elongate, giving the appearance of a ridge of raised tissue. 92397 0 0 70145 13 lacunar collenchyma (obsolete PO:0005632) OBSOLETE. A collenchyma characterized by intercellular spaces and cell wall thickenings facing the intercellular spaces. 92398 1 0 70146 13 papillae (obsolete PO:0002001) A soft protuberance on an epidermal cell of the stigma. 92399 1 0 70147 13 endodermis A portion of ground tissue that is the inner most layer of a cortex and has a casparian strip in its anticlinal cell walls. 92400 0 0 70148 13 phyllome apex The apical portion of a phyllome. 92402 0 0 70149 13 flower bud A bud that develops into a flower. 92403 0 0 70150 13 root pith A portion of pith that is part of a root. 92404 0 0 70151 13 secondary vascular tissue (obsolete PO:0006080) OBSOLETE. The vascular tissue derived from the vascular cambium because of the secondary growth. 92405 1 0 70152 13 callus parenchyma cell A parenchyma cell that is part of a plant callus. 92406 0 0 70157 13 androecium of lower floret of sessile spikelet of ear Collectively the stamens of lower floret of a sessile spikelet of maize ear inflorescence. 92411 0 0 70158 13 forth order infructescence axis An infructescence branch arising from a third order infructescence axis. 92412 0 0 70159 13 L1 (obsolete PO:0006303) OBSOLETE. The outer layer of the tunica. 92413 1 0 70160 13 nectary A multicellular glandular structure secreting a liquid containing organic substances especially sugars. 92414 0 0 70161 13 seventh order inflorescence axis An inflorescence branch arising from a sixth order inflorescence axis. 92415 0 0 70162 13 phyllome trichome A trichome that is part of a phyllome epidermis. 92416 0 0 70163 13 nectary epidermis A portion of shoot epidermis that is part of a nectary. 92417 0 0 70165 13 leaf abscission zone Zone at base of the leaf that contains an abscission (or separation) layer and a protective layer, both involved in the abscission of the leaf. 92419 0 0 70166 13 root A plant axis that is part of a root system. 92420 0 0 70167 13 seventh order infructescence axis An infructescence branch arising from a sixth order infructescence axis. 92422 0 0 70168 13 aleurone layer A portion of plant tissue that is the outermost layer of endosperm in a seed, its cells being characterized by presence of protein bodies containing seed storage proteins. 92423 0 0 70169 13 Zea androecium Collectively the stamens of one floret of a maize plant. 92425 0 0 70170 13 tassel spikelet pair meristem The meristem present on short tassel branch that produces two spikelet meristems, each of which produces two floral meristems in a maize tassel. 92426 0 0 70171 13 infructescence branch An infructescence axis that is a branch from a primary or higher order infructescence axis. 92427 0 0 70172 13 scutellum An embryonic plant structure that is a more or less shield-shaped and absorptive portion of a plant embryo of Poaceae. 92428 0 0 70173 13 upper floret of pedicellate spikelet of tassel One of the two florets placed above the lower floret on the pedicellate spikelet rachilla of a maize tassel. 92429 0 0 70174 13 androecium of lower floret of sessile spikelet of tassel Collectively the stamens of lower floret of a sessile spikelet of tassel inflorescence of maize. 92430 0 0 70175 13 short cell An isodiametric leaf pavement cell. 92431 0 0 70176 13 obsolete procambium (obsolete PO:0006074) A portion of primary cambium that undergoes differentiation to form the primary vascular tissue. 92432 1 0 70177 13 tassel peduncle A peduncle of a maize tassel, below the lowest tassel node. 92433 0 0 70178 13 tuber pith A portion of pith that is part of a tuber storage parenchyma. 92434 0 0 70179 13 included vascular cambium Cambium occurring within xylem. 92435 0 0 70180 13 branch internode elongation zone A shoot axis internode elongation zone that is part of a branch internode. 92436 0 0 70181 13 lower glume of sessile spikelet of ear The proximal/basal of the two glumes in the ear sessile spikelet. 92437 0 0 70182 13 seedling hypocotyl A hypocotyl that develops from an embryonic hypocotyl. 92438 0 0 70183 13 protonema meristematic apical cell A gametophyte meristematic apical cell that is part of a protonema. 92439 0 0 70184 13 epidermal pavement cell A shoot epidermal cell that is relatively unspecialized at maturity. 92440 0 0 70185 13 antheridiophore A plant axis that bears two or more antheridia on an antheridial head. 92441 0 0 70186 13 zygote Diploid cell produced by the fusion of sperm cell nucleus and egg cell. 92442 0 0 70187 13 petiole distal end The region of the petiole distal to its stem attachment site or proximal to the leaf lamina. 92443 0 0 70188 13 leaf rachis A stalk that is the main axis of a pinnate or more highly compound leaf, that bears leaflets or divisions of the axis. 92444 0 0 70189 13 petal epidermis A portion of phyllome epidermis that is part of a petal. 92445 0 0 70190 13 lower glume of sessile spikelet of tassel The proximal/basal of the two glumes in the tassel sessile spikelet. 92446 0 0 70191 13 laticifer A secretory structure that produces latex. 92447 0 0 70192 13 sporophyll margin The margin of a sporophyll. 92448 0 0 70193 13 palea of upper floret of sessile spikelet of ear The upper of the two bracts enclosing a flower in a maize ear sessile spikelet upper floret. 92449 0 0 70194 13 schizo-lysigenous aerenchyma (obsolete PO:0005349) OBSOLETE. Aerenchyma, originating by a combination of two processes, separation and degradation of cell walls. 92450 1 0 70195 13 subterranean tuber periderm A portion of tuber periderm that is part of a subterranean tuber. 92451 0 0 70196 13 obsolete megagametophyte (obsolete PO:0020092) A gametophyte that produces female gametes. 92452 1 0 70197 13 root elongation zone A plant axis elongation zone that is part of a root tip and located directly behind the root apical meristem. 92454 0 0 70198 13 simple leaf A leaf in which the lamina is undivided. 92455 0 0 70199 13 cambium A lateral meristem, the cells of which divide mostly periclinally. 92456 0 0 70200 13 epicomic shoot Shoot developing from a trunk. 92457 0 0 70201 13 multicellular trichome A portion of plant tissue that forms a non-sclerified outgrowth from the epidermis. 92458 0 0 70204 13 procumbent wood ray parenchyma cell Ray cell within secondary xylem having its longest axis in radial direction. 92461 0 0 70205 13 lysigenous aerenchyma (obsolete PO:0005706) OBSOLETE. Aerenchyma originating by dissolution of cells. 92462 1 0 70206 13 protosporangium endothecium A portion of ground tissue that is the tissue internal to an amphithecium early in sporangium development. 92463 0 0 70207 13 gametophore meristematic apical cell A shoot meristematic apical cell that is part of a gametophore. 92464 0 0 70208 13 coleoptile A phyllome that surrounds the plumule of an embryo or the emerging shoot apex of a seedling. 92465 0 0 70209 13 antheridium microgametophyte A microgametophyte that has as parts one or more antheridia. 92466 0 0 70213 13 stem internode elongation zone A shoot internode elongation zone that is part of a stem internode. 92470 0 0 70214 13 shoot internode A cardinal organ part that is the part of a shoot axis between two nodes of the axis. 92471 0 0 70215 13 pedicel An inflorescence branch that supports an individual flower in an inflorescence that contains more than one flower. 92472 0 0 70216 13 intine (obsolete PO:0020017) OBSOLETE: The innermost of the major layers of the pollen grain wall, underlies the exine and borders the cytoplasm, not acetolysis resistant and is therefore absent in conventionally prepared palynological material. 92473 1 0 70217 13 apical hook Hook-like structure which develops at the apical part of the hypocotyl in dark-grown seedlings in dicots. 92474 0 0 70218 13 epicalyx A collective phyllome structure composed of two or more phyllomes immediately outside the calyx. 92475 0 0 70219 13 midvein The central, and usually the most prominent, vein of a leaf or leaf-like organ. 92476 0 0 70220 13 perigonial bract A bract that subtends an antheridium. 92477 0 0 70224 13 gynoecium ridge A gynoecium in the early stages of development, characterized as a ridge on the abaxial surface of the floral meristem that develops from a gynoecium primordium. 92481 0 0 70225 13 parenchyma cell A relatively unspecialized ground tissue cell with a nucleate protoplast. 92482 0 0 70226 13 tepal apex A phyllome apex that is part of a tepal. 92483 0 0 70227 13 petal apex A phyllome apex that is part of a petal. 92484 0 0 70228 13 ray wood parenchyma Radially oriented parenchyma tissue in secondary xylem. 92485 0 0 70229 13 internal phloem Primary phloem tissue positioned internal to the primary xylem. 92486 0 0 70230 13 leaf lamina A lamina that is part of a leaf, usually dorsiventrally flattened and expanded. 92487 0 0 70231 13 tepal trichome A phyllome trichome that is part of a tepal epidermis. 92488 0 0 70232 13 stamen primordium A phyllome primordium that will develop into a stamen. 92489 0 0 70233 13 idioblast A plant cell that markedly differs in form, size, or contents from other cells in the same tissue. 92490 0 0 70234 13 axillary shoot system A shoot-borne shoot system that develops from an axillary vegetative bud. 92491 0 0 70235 13 root stele A stele that is part of a root. 92492 0 0 70236 13 ear spikelet meristem Apical meristem that gives rise to the upper and lower florets of the maize ear spikelet. 92494 0 0 70237 13 modified aleurone A morphologically distinct aleurone layer located adjacent to the nucellar projection. 92495 0 0 70238 13 upright wood ray parenchyma cell Ray cell in secondary xylem oriented axially (vertically in the axis) with its longest dimension. 92496 0 0 70239 13 paraclade cortex A portion of ground tissue that is part of a cortex and part of a paraclade. 92497 0 0 70240 13 petal primordium A phyllome primordium that will develop into a petal. 92498 0 0 70241 13 microsporangium A sporangium in which microspores are produced. 92499 0 0 70242 13 bract axil An axil that is the space between a shoot axis and a bract that branches from the shoot axis. 92500 0 0 70243 13 Zea microsporangium Sporangium in the anther of a maize stamen producing microspores, usually many in number . 92501 0 0 70244 13 female archesporial cell An archesporial cell that is part of a megasporangium and divides to give rise to a megasporocyte. 92502 0 0 70245 13 second order inflorescence axis An inflorescence branch arising from a first order inflorescence axis. 92503 0 0 70246 13 Poaceae gynoecium ridge A gynoecium ridge that is a Poaceae gynoecium in the early stages of development and is characterized as a ridge on the abaxial surface of the Poaceae floret meristem. 92504 0 0 70247 13 shoot axis cortex A portion of ground tissue that is part of a cortex and part of a shoot axis. 92506 0 0 70248 13 thallus meristematic apical cell A gametophyte apical cell that is part of a thallus. 92507 0 0 70249 13 shoot axis pith A portion of pith that is part of a shoot axis. 92508 0 0 70250 13 canal A plant anatomical space that is either a groove on the surface or a tube in the interior of a plant structure. 92509 0 0 70251 13 pericycle A portion of ground tissue that is part of a root stele located between the phloem and endodermis. 92510 0 0 70252 13 Poaceae microspore The smaller, in general, of the two kinds of spores produced in the life cycle of a grass plant. It gives rise to the male gametophyte. 92511 0 0 70253 13 epithelium cell (obsolete PO:0004004) OBSOLETE. A compact layer of cells, often secretory in function, covering a free surface or lining a cavity. 92512 1 0 70254 13 petiole epidermis A portion of leaf epidermis that is part of a petiole. 92513 0 0 70255 13 stamen margin The margin of a stamen. 92514 0 0 70256 13 antheridium stalk A stalk that is the basal part of an antheridium. 92515 0 0 70257 13 epidermal rhizoid initial An epidermal initial that gives rise to an epidermal rhizoid. 92516 0 0 70258 13 seedling hypocotyl-root junction A hypocotyl-root junction that develops from an embryonic hypocotyl-root junction. 92518 0 0 70259 13 carpel A megasporophyll, almost always at the center of a flower, its margins more or less fused together or with other carpels to enclose the ovule(s). 92519 0 0 70260 13 aerial tuber A tuber that is above ground. 92520 0 0 70261 13 meristem L3 A multicellular layer beneath a mersistem L2 layer in a shoot apical meristem which gives rise to internal tissues of leaf and stem. 92521 0 0 70262 13 hydathode A cardinal organ part that releases water through a hydathode pore. 92522 0 0 70265 13 upper floret of sessile spikelet of tassel One of the two florets placed above the lower floret on the sessile spikelet rachilla of a maize tassel. 92525 0 0 70266 13 root tip The portion of the root including the meristem and root cap. 92526 0 0 70267 13 polar nucleus (obsolete PO:0020095) OBSOLETE: Usually two nuclei in the center of the eight-nucleate embryo sac that fuse, and subsequently fuse with one of the male gametes to produce the endosperm. 92527 1 0 70268 13 phloem pole pericycle cell A pericycle cell that is adjacent to the protophloem of a vascular bundle. 92528 0 0 70269 13 aerial tuber axillary vegetative bud A tuber axillary vegetative bud that is part of an aerial tuber. 92529 0 0 70270 13 rhizome scale leaf A scale leaf that grows from a rhizome. 92530 0 0 70271 13 rhizoid A plant structure that is a uniseriate filament with positive geotropism that grows from an epidermis or protonema. 92531 0 0 70272 13 basal endosperm transfer layer A portion of plant tissue that is part of an endosperm and is composed of basal endosperm transfer cells. 92532 0 0 70273 13 embryo sac egg cell A plant egg cell that is produced by and located in an embryo sac. 92533 0 0 70274 13 ovary locule A locule that is a cavity in an ovary. 92534 0 0 70277 13 septum A collective organ part structure composed of two or more layers of various tissues that is a partition that divides a cavity formed by the fusion of two or more organs. 92537 0 0 70278 13 sporangium base A cardinal organ part that is the basal (distal) part of a sporangium. 92538 0 0 70279 13 leaf margin The margin of any flattened part of a leaf. 92539 0 0 70280 13 oil gland A gland or a cavity lined with cells that secrete oils. 92540 0 0 70281 13 upper glume of tassel spikelet The apical/distal of the two glumes in the tassel spikelet. 92541 0 0 70282 13 vegetative shoot apical meristem A shoot apical meristem that gives rise to the apical growth of vegetative tissues and organs. 92542 0 0 70283 13 inflorescence branch An inflorescence axis that is a branch forming from a primary or higher order inflorescence axis. 92543 0 0 70284 13 functional megaspore The megaspore(s) that forms the embryo sac. 92544 0 0 70285 13 haustorial root (obsolete PO:0003004) OBSOLETE. The root of particular parasitic plants that becomes cemented to the host axis and intrudes into the tissues of the host. 92545 1 0 70286 13 style An elongated part of a carpel or group of fused carpels between the ovary and the stigma, and through which the pollen tube grows. 92546 0 0 70287 13 tertiary vein A leaf vein arising from a secondary vein. 92547 0 0 70288 13 root lateral meristem Meristem of the root located parallel to the sides of the axis. 92548 0 0 70289 13 photosynthetic cell (obsolete PO:0004008) OBSOLETE. A chloroplast-containing cell engaged in photosynthesis. 92549 1 0 70290 13 androecium of upper floret of pedicellate spikelet of tassel Collectively the stamens of upper floret of a pedicellate spikelet of tassel inflorescence of maize. 92550 0 0 70291 13 lemma of upper floret of pedicellate spikelet of tassel The lower of the two bracts enclosing a flower in a maize tassel pedicellate spikelet upper floret. 92551 0 0 70292 13 branch node A shoot node that is part of a branch. 92552 0 0 70293 13 fused tepal A tepal that is fused to another tepal. 92553 0 0 70294 13 second order infructescence axis An infructescence branch arising from a first order infructescence axis. 92554 0 0 70295 13 endocarp A portion of plant tissue that is the innermost differentiated layer of a pericarp. 92555 0 0 70296 13 raphe A cardinal organ part that is a ridge on an ovule where a funicle is or was fused to the ovule. 92557 0 0 70297 13 stigma Part of a carpel or group of fused carpels on which the pollen germinates, usually apical. 92558 0 0 70298 13 leaf lamina abaxial epidermis A portion of leaf lamina epidermis that covers the abaxial/lower surface of a leaf lamina. 92559 0 0 70299 13 leaf adaxial epidermis A portion of shoot epidermis that covers the adaxial/upper surface of a leaf. 92560 0 0 70300 13 hypodermis A portion of ground tissue that is the outermost layer of a portion of cortex. 92561 0 0 70301 13 abaxial protoderm The outermost layer of the shoot apical meristem which gives rise to the abaxial/lower leaf epidermis. 92562 0 0 70302 13 long cell A more or less rectangular leaf pavement cell in which the proximo-distal dimension is several times longer than the transverse dimension. 92563 0 0 70303 13 phloem fiber A fiber in phloem. 92564 0 0 70304 13 cauline axillary shoot An axillary branch that forms from a leaf above the very base of the shoot. 92565 0 0 70305 13 flower meristem A portion of meristem tissue that gives rise to the floral organs. 92566 0 0 70306 13 second order infructescence A reproductive shoot system that is part of an infructescence and has as parts a second order infructescence axis and any infructescence axes and fruits that arise from it. 92567 0 0 70307 13 embryo proper An embryonic plant structure that is the body of a developing plant embryo attached to the maternal tissue in an ovule by a suspensor. 92568 0 0 70308 13 subterranean tuber storage parenchyma A portion of tuber storage parenchyma that is part of a subterranean tuber. 92569 0 0 70309 13 flower vascular system A shoot system vascular system that includes the totality of the portions of vascular tissue in their specific arrangement in a flower. 92570 0 0 70310 13 fruit abscission zone Zone at base of the fruit that contains an abscission (or separation) layer and a protective layer, both involved in the abscission of the fruit. 92571 0 0 70311 13 aerial tuber axillary shoot An axillary shoot that develops from an aerial tuber axillary bud. 92572 0 0 70312 13 tuber interfascicular region An interfascicular region that is part of a tuber storage parenchyma. 92573 0 0 70313 13 vegetative bud A bud that develops into a shoot system that has as organ parts only vegetative organs. 92574 0 0 70314 13 Poaceae anther The pollen-bearing part of a stamen of a grass floret. 92575 0 0 70315 13 second order inflorescence A reproductive shoot system that is part of an inflorescence and has as parts a second order inflorescence branch and any shoot axes and flowers that arise from that branch. 92576 0 0 70316 13 multiple fruit (obsolete PO:0020086) OBSOLETE. Fruit on a common axis derived from the ovaries of several flowers. 92577 1 0 70317 13 branch internode differentiation zone A shoot internode differentiation zone that is part of a branch internode. 92578 0 0 70319 13 parenchyma A portion of ground tissue composed of polyhedral cells typically with thin, non-lignified cellulosic cell walls and nucleate, living protoplasts. 92580 0 0 70320 13 plant axis differentiation zone A cardinal organ part that is part of a plant axis and is located behind the elongation zone and contains cells that are differentiating into their final form and function. 92581 0 0 70321 13 sepal tip A phyllome tip that is part of a sepal apex. 92582 0 0 70322 13 vascular leaf meristematic apical cell A leaf meristematic apical cell that is part of the leaf apex of a vascular leaf. 92583 0 0 70323 13 Poaceae style epidermis The epidermal cell layer of the style of a grass carpel. 92586 0 0 70324 13 lower floret of sessile spikelet of ear The lower of the two florets on the sessile spikelet of a maize ear. 92587 0 0 70325 13 Poaceae chalaza Region in the grass ovule where the integuments and the nucellus merge with the funiculus. 92588 0 0 70326 13 papilla cell An epidermal pavement cell with a short protuberance. 92589 0 0 70327 13 lodicule primordium A primordium that will develop into a lodicule. 92590 0 0 70328 13 upper glume The apical/distal of the two glumes. 92591 0 0 70329 13 bract A phyllome that subtends a reproductive structure. 92594 0 0 70330 13 upper glume of pedicellate spikelet of tassel The apical/distal of the two glumes in a tassel pedicellate spikelet. 92595 0 0 70331 13 embryo shoot apical meristem A vegetative shoot apical meristem at the apex of the embryonic axis. 92596 0 0 70332 13 adaxial protoderm The outermost layer of the shoot apical meristem which gives rise to the adaxial/upper leaf epidermis. 92597 0 0 70333 13 leaf adaxial stomatal complex A leaf stomatal complex that is part of a leaf adaxial epidermis. 92598 0 0 70334 13 anther wall endothecium An microsporangium endothecium that part of an anther wall. 92599 0 0 70335 13 leaf spine A leaf that is a sclerified and pointed and lacks a lamina. 92600 0 0 70336 13 quiescent center A portion of meristem tissue that is part of a root apical meristem and consists of mitotically and metabolically inactive cells and is positioned behind the root protoderm. 92601 0 0 70337 13 free nuclear endosperm An endosperm in which at least the first karyokinesis is not followed by cytokinesis. 92602 0 0 70338 13 primary xylem A portion of xylem tissue of the primary plant body. 92603 0 0 70339 13 leaf stomatal complex A phyllome stomatal complex that is part of a leaf. 92604 0 0 70340 13 megaspore The larger, in general, of the two kinds of spores produced after meiosis in the life cycle of a heterosporous plant, and on germination giving rise to the female gametophyte (embryo sac). 92605 0 0 70341 13 shoot apex A shoot axis that is the most distal part of a shoot system and has as parts a shoot apical meristem and the youngest leaf primordia. 92606 0 0 70342 13 perisperm Diploid nutritive tissue in an angiosperm seed derived from nucellar tissue. 92607 0 0 70343 13 plant cell A cell which is a plant structure. 92609 0 0 70344 13 initial cell A meristematic cell that by division gives rise to two cells, one of which remains meristematic, while the other is added to the plant body. 92611 0 0 70345 13 seedling radicle A radicle that develops from an embryonic radicle. 92613 0 0 70346 13 abaxial petiole canal A petiole canal on the abaxial surface of a petiole. 92614 0 0 70347 13 fruit vascular system A vascular system that includes the totality of the portions of vascular tissue in their specific arrangement in a fruit. 92615 0 0 70348 13 dermal tissue (obsolete PO:0009014) A portion of plant tissue that covers the surface of the plant. 92616 1 0 70349 13 petal abaxial epidermis A portion of petal epidermis that covers the abaxial/lower surface of a petal. 92617 0 0 70350 13 lemma of tassel floret The lower of the two bracts enclosing a flower in a maize tassel floret. 92618 0 0 70351 13 mestome sheath The inner endodermal sheath of a two layered bundle sheath. The cells are smaller in diameter compared to those in outer wall (starch sheath). The cell B walls are thick and contain suberized lamellae. They are analogous to endodermis. 92619 0 0 70352 13 reproductive shoot apical meristem A shoot apical meristem that gives rise to the apical growth of reproductive tissues and organs. 92620 0 0 70353 13 rachilla of sessile spikelet of ear The axis of the ear sessile spikelet, above the glumes. 92621 0 0 70354 13 Poaceae outer integumet One of the two layers of tissue that usually covers the ovule of a grass, contiguous to the inner integument and usually involved in forming the micropyle at the apex. 92622 0 0 70355 13 stolon A branch that is slender, prostrate or trailing and above-ground and produces roots and sometimes erect shoots at its nodes. 92623 0 0 70356 13 petiole pulvinus Pulvinus of the petiole. 92624 0 0 70357 13 axillary inflorescence bud An axillary reproductive bud that develops into an inflorescence. 92625 0 0 70358 13 ectexine (obsolete PO:0020009) OBSOLETE: The outer part of the exine, which stains positively with basic fuchsin in optical microscopy and has higher electron density in conventionally prepared TEM sections. 92626 1 0 70359 13 cotyledon vascular system A vascular system that is part of a cotyledon. 92627 0 0 70360 13 endodermal passage cell Cell in the endodermal layer of the root with cell wall that remains non-thickened. 92628 0 0 70361 13 megasporangium exothecium An exothecium that is part of a megasporangium wall. 92629 0 0 75498 19 A_to_T_transversion A transversion from adenine to thymine. 98899 0 0 70362 13 Poaceae endothecium The hypodermis of an anther sac of a grass stamen with distinctively thickened walls and involved in its dehiscence. 92630 0 0 70363 13 juvenile leaf Distinct from adult leaves, being characterized by particular anatomical traits namely, wax and trichome distribution, presence or absence of epidermal cell types, cell wall shape and biochemistry. 92631 0 0 75384 19 assortment_derived_deficiency (obsolete SO:0000052) \N 98769 1 0 70414 14 FL.00 first flower(s) open The stage at which the first flower(s) open. 92689 0 0 70364 13 epiphragm A portion of parenchyma tissue that forms a circular membrane extending from a spore capsule columella and attached to the ends of the peristome teeth that covers a spore capsule mouth. 92632 0 0 70365 13 perimedullary zone A portion of parenchyma that is the outer layer of a portion of pith. 92633 0 0 70366 13 lateral root apical meristem A root apical meristem found that is part of a lateral root. 92634 0 0 70367 13 axillary reproductive bud An axillary bud that develops into a reproductive structure. 92636 0 0 70368 13 epidermis A portion of plant tissue composed of epidermal cells that develops from the protoderm and covers the surface of a plant structure. 92637 0 0 70369 13 caulonema cell A chlorenchyma cell that is part of a caulonema and has cross walls of adjacent cells that are oblique to the protonema axis. 92638 0 0 70370 13 basal root A root that arises from a part of the hypocotyl. 92639 0 0 70373 13 non-vascular leaf initial An initial cell that is part of a gametophore and gives rise to a non-vascular leaf. 92642 0 0 70374 13 leaf lamina margin The margin of a leaf lamina. 92643 0 0 70375 10 DEVELOPS_FROM \N 92644 0 1 70376 14 SE.12 twelve nodes or internodes visible The stage at which twelve nodes or twelve internodes are visible. 92645 0 0 70377 14 stamen primordium visible Stage of androecium development that begins when the stamens or petal-stamen primordia arise. 92646 0 0 70378 14 root vascular cylinder differentiation The stage at which the root vascular cylinder becomes evident. 92647 0 0 70379 14 FR.02 mid stage of fruit ripening The stage when fruit ripening is midway. 92648 0 0 70380 14 1 main shoot growth The stage at which vegetative structures are being produced by SAM. 92650 0 0 70381 14 leaf development stages Stages of development of a leaf defined by characteristic morphological, structural, histological or other visible features. 92651 0 0 70382 14 specialization zone formation (obsolete PO:0001030) OBSOLETE. The cells develop their characteristic morphology. 92654 1 0 70383 14 inflorescence initiation stage Stage of inflorescence development marked by the formation of the inflorescence meristem on a vegetative branch. 92655 0 0 70384 14 LP.20 twenty or more leaves whorls visible The stage at which leaves at twenty or more nodes, other than the cotyledonary node, are visible above ground. 92657 0 0 70385 14 establishment of initial cells (obsolete PO:0007523) OBSOLETE. The root initial cells are established. 92658 1 0 70386 14 FR.03 late stage of fruit ripening The late stage of fruit ripening. 92659 0 0 70387 14 calyx developmental stages Stages of development of the calyx defined by characteristic morphological, structural, histological or other visible features. 92660 0 0 70388 14 SE.99 maximum stem length reached The stage at which maximum stem length is reached. 92661 0 0 70389 14 inflorescence emergence from flag leaf sheath The stage at which the inflorescence emerges from the flag leaf sheath. 92662 0 0 70390 14 B reproductive growth Stage of growth when reproductive structures are being produced. 92663 0 0 70391 14 C globular stage During this stage the embryo proper retains radial symmetry (increasing in diameter), and three main tissue systems are established. 92664 0 0 70392 14 developing seed stage Stage of seed development characterized by seed growth and differentiation. 92665 0 0 70393 14 K second mitotic division stage Stage of microgametophyte development during which the generative cell undergoes mitotic division to form two male gametes, the sperm cells. 92666 0 0 70394 14 A2.3 founder cell derivatives of lateral root (obsolete PO:0007530) OBSOLETE. Radial expansion followed by subsequent periclinal divisions forms the isodiametric founder cell tissues. 92667 1 0 70395 14 1 root primordium formation The stage at which root primordium originates and develops at specific locations in embryonic and post embryonic roots. 92668 0 0 70396 14 formation of aleurone and starchy layers Differentiation of aleurone layer, the outermost endosperm tissue, and the internal starchy tissue. 92669 0 0 70397 14 petal differentiation and expansion stage Stage of corolla development defined by differentiation and expansion of petal. 92670 0 0 70398 14 LP.02 two leaves visible The stage at which leaves at two nodes, other than the cotyledonary node, are visible above ground. 92671 0 0 70399 14 leaf production The stage at which the leaves produced by SAM are visible above the ground in a seedling or mature plant. 92672 0 0 70400 14 B formation of primary parietal and sporogenous cells Stage during which the primary parietal and primary sporogenous layers are derived from archesporial cells. 92673 0 0 70401 14 pollen developmental stages Stages of development of the pollen defined by characteristic morphological, cytological, histological or other visible features. 92674 0 0 70402 14 crown root emergence The stage at which the crown root emerges. 92675 0 0 70403 14 0 germination The resumption of growth by the embryo in a seed. 92676 0 0 70404 14 meristamtic zone formation (obsolete PO:0001027) OBSOLETE. The meristematic zone is formed 92677 1 0 70405 14 root development stages Stages of development of a root defined by characteristic morphological, structural, histological or other visible features. 92678 0 0 70406 14 fully expanded lemma Stage of lemma development when lemma is fully expanded. 92680 0 0 70407 14 5.04 40% of inflorescence emerged (obsolete PO:0007102) OBSOLETE 92681 1 0 70410 14 7-8 fruit formation and maturation (obsolete PO:0007035) OBSOLETE: This stage refers to the developmental and physiological changes that occur in the whole plant after fertilization and during fruit development, maturation, and provisioning. 92685 1 0 70411 14 protonema phase A whole plant growth stage that is a sub-phase of a gametophytic phase in which protonema tissue is produced. 92686 0 0 70412 14 rapid elongation of leaf blade Stage of leaf development during which a rapid elongation of the leaf blade occurs; the elongation of the leaf sheath has not started, as in Poaceae. 92687 0 0 70413 14 root epidermal differentiation The stage at which the root epidermis becomes evident. 92688 0 0 70415 14 epicotyl emergence Emergence of the epicotyl above ground. 92690 0 0 70416 14 2 leaf expansion stage Stage of leaf development which begins when cell differentiation and cell expansion occurs and finishes when the leaf reaches its full size. 92692 0 0 70417 14 formation of ligule primordium Stage of leaf development when conical P3 leaf completely encloses SAM, and the ligule primordium is visible, as in Poaceae. 92693 0 0 77148 46 country of origin \N 210051 0 0 70419 14 ovule differentiation and expansion Stage of ovule development defined by differentiation and expansion of ovules. 92695 0 0 70420 14 true leaf formation During this stage, the protrusion of the first leaf primordia takes place in succession. 92696 0 0 70421 14 androecium developmental stages Stages of development of the androecium defined by characteristic morphological, structural, histological or other visible features. 92697 0 0 70422 14 SE.09 nine nodes or internodes visible The stage at which nine nodes or nine internodes are visible. 92698 0 0 70423 14 whole plant growth stage The succession of changes during the growth of the whole plant. 92699 0 0 70424 14 IL.02 1/2 inflorescence length reached The stage when 1/2 Inflorescence is visible. 92700 0 0 70425 14 elongation zone formation (obsolete PO:0001028) OBSOLETE. The cells of root primordium undergo elonagtion 92701 1 0 70426 14 SE.03 three nodes or internodes visible The stage at which three nodes or three internodes are visible. 92702 0 0 70427 14 BO.02 mid boot stage The flag leaf sheath is just visibly swollen. 92703 0 0 70428 14 stem elongation The stage at which the internodes elongate. 92704 0 0 70429 14 2 root meristem formation The stage at which the root meristem becomes evident. 92705 0 0 70430 14 C senescence The processes that occur near the end of a plant's active life that are associated with the dismantling of cell components and membranes, loss of functional chloroplasts, and an overall decline in metabolism. 92706 0 0 70431 14 lodicule primordia visible Stage of lodicule development that begins when the lodicule primordia arise. 92707 0 0 70432 14 2.06 main shoot and axillary shoots visible at six nodes The stage at which main shoot and axillary shoots at six nodes are visible. 92708 0 0 70433 14 3 flower organ development stages Stages of development of floral organs defined by characteristic morphological, structural, histological or other visible features. 92709 0 0 70434 14 2.07 main shoot and axillary shoots visible at seven nodes The stage at which main shoot and axillary shoots at seven nodes are visible. 92710 0 0 70435 14 integument initiation stage Stage of ovule development that begins when the integument primordia are visible. 92711 0 0 70436 14 6 ripening Maturation of the fruit. 92712 0 0 70437 14 SE.10 ten nodes or internodes visible The stage at which ten nodes or ten internodes are visible. 92713 0 0 70438 14 B2 lateral root meristem formation (obsolete PO:0007539) OBSOLETE. The stage at which the meristem of the lateral root becomes evident. 92714 1 0 70439 14 6.03 30% of flowers open (obsolete PO:0007124) OBSOLETE 92715 1 0 70440 14 flower development stages Stages of development of a flower defined by characteristic morphological, structural, histological or other visible features. 92716 0 0 70441 14 A vegetative growth Stage of growth when vegetative structures are being produced. 92717 0 0 70442 14 shoot emergence Shoot or leaf breaks through soil surface. 92718 0 0 70443 14 lemma primordia visible Stage of lemma development that begins when the lemma primordia arise. 92719 0 0 70444 14 4 anthesis The phase of a flower when pollen is presented and/or the stigma is receptive. 92720 0 0 70445 14 stigma cell differentiation Epidermal cells at the top of developing style differentiate stigma. 92722 0 0 70446 14 crown root primordium formation The stage at which the initial cells of crown root primordium are formed in the innermost ground meristem cells by one or two periclinal divisions. 92723 0 0 70447 14 FF.03 fruit size 70% The stage when the size of the fruit is about 70% of final fruit size. 92724 0 0 70448 14 4 flowering The stage at which any flower(s) on the plant are open. 92725 0 0 70449 14 SE.05 five nodes or internodes visible The stage at which five nodes or five internodes are visible. 92726 0 0 70450 14 sepal primordium visible Stage of calyx development that begins when the sepal primordia arise. 92727 0 0 70451 14 D megaspore degeneration The stage of megagametophyte development when non-functional megaspores degenerate. 92728 0 0 70452 14 coleoptilar stage The coleoptilar primordium, SAM and radicle are formed in the embryo of grasses. 92729 0 0 70453 14 fully expanded lodicule Stage of lodicule development when lodicule is fully expanded. 92730 0 0 70454 14 LP.03 three leaves visible The stage at which leaves at three nodes, other than the cotyledonary node, are visible above ground. 92731 0 0 70455 14 2.08 main shoot and axillary shoots visible at eight nodes The stage at which main shoot and axillary shoots at eight nodes are visible. 92732 0 0 70456 14 SE.08 eight nodes or internodes visible The stage at which eight nodes or eight internodes are visible. 92733 0 0 70457 14 LP.12 twelve leaves visible The stage at which leaves at twelve nodes, other than the cotyledonary node, are visible above ground. 92734 0 0 70458 14 A2.2 root initials differentiation of lateral roots (obsolete PO:0007528) OBSOLETE. Radial expansion followed by subsequent periclinal divisions forms the pericycle-derived tissues. 92735 1 0 70460 14 LP.19 nineteen leaves visible The stage at which leaves at nineteen nodes, other than the cotyledonary node, are visible above ground. 92737 0 0 70461 14 5.02 20% of inflorescence emerged. (obsolete PO:0007075) OBSOLETE 92738 1 0 76115 19 chromosomal_variation_attribute \N 99594 0 0 70462 14 F2 root hair elongation (obsolete PO:0007526) OBSOLETE. The stage at which the root hairs are fully elongated. 92739 1 0 70650 14 embryo development stages Stages of development of the embryo. 92935 0 0 70463 14 SE.11 eleven nodes or internodes visible The stage at which eleven nodes or eleven internodes are visible. 92740 0 0 70464 14 LP.01 one leaf visible The stage at which leaves at one node, other than the cotyledonary node, are visible above ground. 92741 0 0 70465 14 H anther senescence Stage during which the senescence of anther and stamen occurs. Shrinkage of cells and anther structure takes place. 92742 0 0 70466 14 D pollen mother cell meiosis stage Stage during which pollen mother cells undergo meiosis to form tetrads of microspores. 92743 0 0 70467 14 root cortex differentiation The stage at which the root cortex becomes evident. 92744 0 0 70468 14 calyx relationship (obsolete PO:0021003) OBSOLETE. The stages of development of the calyx with respect to the rest of the bud 92745 1 0 77455 61 FPKM FPKM. 212616 0 0 70469 14 palea developmental stages Stages of development of the palea defined by characteristic morphological, structural, histological or other visible features. 92746 0 0 70470 14 FF.02 fruit size 50% The stage when the size of the fruit is about 50% of final fruit size. 92747 0 0 70471 14 IL.01 1/4 inflorescence length reached The stage when 1/4 Inflorescence is visible. 92748 0 0 70472 14 A2.4 root initials differentiation of crown roots (obsolete PO:0007534) OBSOLETE. Initial cells of crown root primordium divide anticlinally and periclinally to form epidermis-endodermis initial, vascular-cylinder initial and root cap initial. 92749 1 0 70473 14 3 inflorescence visible The stage at which plant is producing inflorescence(s). 92750 0 0 70474 14 M germinated pollen stage The final stage in the life cycle of the male gametophyte. Upon rehydration, mature pollen grain forms a tubular outgrowth, the pollen tube, which carries the male gametes. 92751 0 0 70475 14 IE.04 inflorescence fully emerged from flag leaf sheath The stage at which the inflorescence has fully emerged from the flag leaf sheath. 92752 0 0 70476 14 2 flower meristem notched Stage of floral development that begins when the floral meristem becomes demarcated from the inflorescence meristem by a slight indentation. 92753 0 0 70477 14 seed development stages Stages of seed development, from fertilization to the dry or quiescent state. 92754 0 0 70478 14 G eight nucleate megagametophyte The stage of megagametophyte development when there are eight nuclei. 92755 0 0 70479 14 ovule primordium visible Stage of ovule development that begins when the ovule primordia arise. 92756 0 0 70480 14 2.03 main shoot and axillary shoots visible at three nodes The stage at which main shoot and axillary shoots at three nodes are visible. 92757 0 0 70481 14 J bicellular pollen stage Stage of microgametophyte development during which the small generative cell moves inward, becoming completely surrounded by the cytoplasm of the vegetative cell. 92758 0 0 70482 14 A microsporogenous mass stage An initial stage during which the archesporial cells divide to give rise to primary parietal and sporogenous cells. 92759 0 0 70483 14 root cap formation The stage at which the root cap becomes evident. 92760 0 0 70484 14 3 leaf fully expanded Stage of leaf development when leaf is fully expanded. 92761 0 0 70485 14 anther developmental stages Stages of development of the anther defined by characteristic morphological, cytological, histological or other visible features. 92762 0 0 70486 14 IE.03 3/4 of inflorescence emerged from flag leaf sheath The stage at which 3/4 of inflorescence has emerged from flag leaf sheath. 92763 0 0 70487 14 seed maturation stage Stage during which the seed storage products (storage proteins, lipids and starch) are being accumulated, either in the cotyledons or in the endosperm. Also, LEA proteins are accumulated and subsequentially, desiccation tolerant state is reached at the end of this stage. 92764 0 0 70488 14 E tapetum degeneration initiated Stage during which degeneration of the tapetum is initiated, as the deposition on the surface of the microspore primexine proceeds. 92765 0 0 70489 14 chalazal and micropylar domain establishment The initial stage of endosperm development during which the chalazal and micropilar domains are established. 92766 0 0 70490 14 gynoecium differentiation and expansion Stage of gynoecium development defined by differentiation and expansion of carpels. 92767 0 0 70491 14 sepals 50% of final size (obsolete PO:0007609) OBSOLETE. 50% of the absolute size of the sepals. 92768 1 0 70492 14 FF.04 final fruit size The stage when the size of the fruit has reached the final fruit size. 92769 0 0 70493 14 sepals enclosing flower bud Stage of calyx development that begins when the sepals enclose the floral bud. 92770 0 0 70494 14 SE.14 fourteen nodes or internodes visible The stage at which fourteen nodes or fourteen internodes are visible. 92771 0 0 70495 14 root emergence The stage at which the fully formed root emerges. 92772 0 0 70496 14 3 establishment of tissue systems The stage at which distinct tissues become organized. 92773 0 0 70497 14 formation of the leaf founder cells The initial stage of leaf development when cells in the SAM are already determined to form a leaf primordium, but the primordium itself is not distinguishable morphologically. 92774 0 0 70498 14 FF.01 fruit size 30% The stage when the size of the fruit is about 30% of final fruit size. 92775 0 0 70499 14 carpel primordium visible Stage of gynoecium development that begins when the carpel primordia arise. 92776 0 0 70500 14 B proembryo stage Early embryo development from two cell stage to a multicellular globular stage before three main tissue systems are differentiated. 92777 0 0 70501 14 F bilocular anther stage Stage during which anther becomes bilocular, after degeneration and breakage of septum below stomium. 92778 0 0 70502 14 imbibition Absorption of water by the seed. 92779 0 0 70503 14 rapid elongation of leaf sheath Stage of leaf development during which a rapid elongation of the leaf sheath occurs, as in Poaceae. 92780 0 0 70504 14 SE.04 four nodes or internodes visible The stage at which four nodes or four internodes are visible. 92781 0 0 70505 14 7.08 fruit size 80% (obsolete PO:0007129) OBSOLETE 92782 1 0 70506 14 2.02 main shoot and axillary shoots visible at two nodes The stage at which main shoot and axillary shoots at two nodes are visible. 92783 0 0 70507 14 root primordium visible (obsolete PO:0007536) OBSOLETE. the root primordium is visbile 92784 1 0 70508 14 BO.00 booting begins Booting has just begun. 92785 0 0 70509 14 SE.06 six nodes or internodes visible The stage at which six nodes or six internodes are visible. 92786 0 0 70510 14 SE.16 sixteen or more nodes or internodes visible The stage at which sixteen nodes or more, or sixteen internodes or more are visible. 92787 0 0 70511 14 E two nucleate megagametophyte The stage of megagametophyte development when there are two nuclei. 92788 0 0 70512 14 SE.13 thirteen nodes or internodes visible The stage at which thirteen nodes or thirteen internodes are visible. 92789 0 0 70513 14 booting Stage characterized by a swelling of the flag leaf sheath, caused by an increase in the size of the inflorescence as it grows up the leaf sheath. 92790 0 0 70514 14 N second mitotic division stage in germinating pollen Stage of microgametophyte development during which the generative cell undergoes a mitotic division to form two male gametes, the sperm cells. 92791 0 0 70515 14 inflorescence bifurcation stage Stage of inflorescence development marked by the formation of two, oftern equal-sized, inflorescence meristems from one inflorescence meristem. 92792 0 0 70516 14 fully expanded palea Stage of palea development when palea is fully expanded. 92793 0 0 70517 14 obsolete plant growth and development terms (obsolete PO:0007532) \N 92794 1 0 70518 14 LP.17 seventeen leaves visible The stage at which leaves at seventeen nodes, other than the cotyledonary node, are visible above ground. 92795 0 0 70519 14 formation of leaf primordium Stage of leaf development when leaf primordium is formed as a small protrusion on the flank of SAM. 92796 0 0 70520 14 H late unicellular microspore stage Stage of microgametophyte development during which a large vacuole is formed in each microspore causing a rapid increase in size and a displacement of the nucleus to one side. 92797 0 0 70521 14 sporophyte phase A whole plant growth stage that begins with fertilization or apogamy. 92798 0 0 70522 14 B enlarged microsporocyte stage Stage during which the microsporocytes become conspicuous. 92799 0 0 70523 14 ovule developmental stages Stages of development of the ovule defined by characteristic morphological, structural, histological or other visible features. 92800 0 0 70524 14 formation of starchy endosperm (obsolete PO:0001098) OBSOLETE. Stage of endosperm development during wich the formation of starchy endosperm occurs. 92801 1 0 70525 14 hypocotyl emergence Emergence of the hypocotyl above ground. 92802 0 0 70526 14 corolla developmental stages Stages of development of the corolla defined by characteristic morphological, structural, histological or other visible features. 92803 0 0 70527 14 LP.16 sixteen leaves visible The stage at which leaves at sixteen nodes, other than the cotyledonary node, are visible above ground. 92804 0 0 70528 14 LP.09 nine leaves visible The stage at which leaves at nine nodes, other than the cotyledonary node, are visible above ground. 92805 0 0 70529 14 I first mitotic division stage Stage of microgametophyte development during which the asymmetric, first mitotic division of the microspores occurs producing a large vegetative cell and small generative cell, located near pollen wall. 92806 0 0 70530 14 F mature embryo stage Stage at which the embryo is fully developed. 92807 0 0 70531 14 obsolete growth and development terms (obsolete PO:0007060) \N 92808 1 0 70532 14 1 pattern formation Trichome initiation stage that determine numbers of trichome are formed. 92809 0 0 70533 14 3 rapid growth stage (obsolete PO:0007004) OBSOLETE.The stage at which the plant grows rapidly by either or both stem elongation and expansion of the rosette/foliage. 92810 1 0 70534 14 5 root hair formation The stage at which the root hairs becomes evident. 92811 0 0 70535 14 cotyledon emergence Emergence of cotyledons above ground. 92812 0 0 70536 14 SE.97 flag leaf visible The stage at which the flag leaf is visible. 92814 0 0 70537 14 LP.08 eight leaves visible The stage at which leaves at eight nodes, other than the cotyledonary node, are visible above ground. 92815 0 0 70538 14 FF.00 fruit size 10% The stage when the size of the fruit is about 10% of final fruit size. 92816 0 0 70539 14 6.04 40% of flowers open (obsolete PO:0007125) OBSOLETE 92817 1 0 70540 14 1 leaf initiation stage The earliest histological evidence of leaf initiation, i.e, a change in the orientation of cell division both in the epidermis and in internal layers of the shoot meristem occurs at this stage (Poethig S, 1997, Plant Cell 9:1077-1087). 92818 0 0 70541 14 LP.13 thirteen leaves visible The stage at which leaves at thirteen nodes, other than the cotyledonary node, are visible above ground. 92820 0 0 70542 14 primary endosperm cell stage One cell stage that takes place following the fertilization, produced by the fusion of sperm cell nucleus and one or more polar nuclei. 92821 0 0 70543 14 leaf trichome development stage Stages of development of a trichome defined by characteristic morphological, structural, histological or other visible features. 92822 0 0 70544 14 functional specialization of the endosperm Stage of endosperm development during which the functional specialization of the maturing endosperm occurs. 92823 0 0 70545 14 SE.15 fifteen nodes or internodes visible The stage at which fifteen nodes or fifteen internodes are visible. 92824 0 0 70546 14 early rosette growth Rosette has reached approximately 20% of its final diameter. 92825 0 0 70547 14 BO.04 flag leaf sheath opening The flag leaf sheath starts opening. 92826 0 0 70548 14 sepals 100% of final size (obsolete PO:0007610) OBSOLETE. 100% of the absolute size of the sepals. 92827 1 0 75725 19 stop_codon_redefinition_as_pyrrolysine (obsolete SO:1001270) \N 99159 1 0 70549 14 G anther dehiscence Stage during which the dehiscence of anthers occurs. Anther breaks along stomium and pollen is released. 92828 0 0 70550 14 gynoecium developmental stages Stages of development of the gynoecium defined by characteristic morphological, structural, histological or other visible features. 92829 0 0 70551 14 meristem eloboration (obsolete PO:0001000) OBSOLETE. the root meristem gets organized 92830 1 0 70552 14 5 fruit formation Formation of the seed-bearing structure after flowering. 92831 0 0 70553 14 LP.05 five leaves visible The stage at which leaves at five nodes, other than the cotyledonary node, are visible above ground. 92832 0 0 70554 14 L mature pollen stage Stage of microgametophyte development during which the pollen reaches mature stage and desiccates. 92833 0 0 70555 14 F1 root hair initiation (obsolete PO:0007531) OBSOLETE. The stage at which the roots hairs are initiated. 92834 1 0 70556 14 1 flower meristem visible Stage of flower development marked by the emergence of the floral meristem on the flank of the inflorescence meristem. 92835 0 0 70559 14 D locules established Stage during which the four clearly defined locules are established. All anther cell types present and microspore mother cells appear. 92838 0 0 70560 14 FL.02 1/2 of flowers open The stage at which 1/2 of flowers open. 92839 0 0 70561 14 LP.06 six leaves visible The stage at which leaves at six nodes, other than the cotyledonary node, are visible above ground. 92840 0 0 70562 14 coleoptile emergence Emergence of coleoptile above ground. 92841 0 0 70563 14 FR.00 beginning of fruit ripening The stage at which fruit maturation begins. 92842 0 0 70564 14 LP.10 ten leaves visible The stage at which leaves at ten nodes, other than the cotyledonary node, are visible above ground. 92843 0 0 70565 14 B meiosis of megaspore mother cell The stage of megagametophyte development when the megaspore mother cell undergoes meiosis. 92844 0 0 70566 14 megagametophyte developmental stages Stages of development of the megagametophyte. 92845 0 0 70567 14 2.09 main shoot and axillary shoots visible at nine or more nodes The stage at which main shoot and axillary shoots at nine nodes or more are visible. 92846 0 0 70568 14 7.04 fruit size 40% (obsolete PO:0007127) OBSOLETE 92847 1 0 70569 14 endosperm development stages Stages of development of the endosperm. 92848 0 0 70570 14 2.04 main shoot and axillary shoots visible at four nodes The stage at which main shoot and axillary shoots at four nodes are visible. 92849 0 0 70571 14 E tetrad stage Stage immediately following meiosis, during which the tetrads of microspores are still hold together, enclosed by the callose wall. 92850 0 0 70572 14 FL.01 1/4 of flowers open The stage at which 1/4 of flowers open. 92851 0 0 70573 14 lateral root emergence The stage at which the lateral root emerges. 92852 0 0 70574 14 4 root elongation The stage at which root is elongating. 92853 0 0 70575 14 BO.05 flag leaf sheath opened The first awns are visible and the flag leaf sheath has opened. 92855 0 0 70576 14 IE.00 inflorescence tip just visible above flag leaf sheath The stage at which the inflorescence tip is just visible above flag leaf sheath. 92856 0 0 70577 14 SE.02 two nodes or internodes visible The stage at which two nodes or two internodes are visible. 92857 0 0 70578 14 lemma differentiation and expansion stage Stage of lemma development defined by differentiation and expansion of lemma. 92858 0 0 70579 14 C3.1 metaxylem differentiation of root. (obsolete PO:0007521) OBSOLETE. Differentiation begins with the enlargement and vacuolation of the tracheary elements of the metaxylem. 92859 1 0 70580 14 hood-shaped primordium Stage of leaf development when a hood-shaped primordium is formed, partially enclosing P1 and SAM, as in Poaceae. 92860 0 0 70581 14 BO.01 early boot stage The flag leaf sheath has started to extend. 92861 0 0 70582 14 IL.00 inflorescence just visible Inflorescence just visible to the naked eye. 92862 0 0 70583 14 D bilateral stage Change from radial to bilateral symmetry takes place during this embryonic stage. 92863 0 0 70584 14 sepal differentiation and expansion stage Stage of calyx development defined by differentiation and expansion of sepal. 92866 0 0 70585 14 LP.07 seven leaves visible The stage at which leaves at seven nodes, other than the cotyledonary node, are visible above ground. 92867 0 0 70586 14 petal primordium visible Stage of corolla development that begins when the petal or petal-stamen primordia arise. 92868 0 0 70587 14 C callose wall formation in pollen mother cells Stage during which diploid pollen mother cells become separated from each other and from tapetum by a callose wall. 92869 0 0 70588 14 fruit development stages Stages of development of a fruit defined by characteristic morphological, structural, histological or other visible features. 92870 0 0 70589 14 LP.04 four leaves visible The stage at which leaves at four nodes, other than the cotyledonary node, are visible above ground. 92871 0 0 70590 14 3 branch formation The stage trichome develops branches. 92872 0 0 70591 14 7.06 fruit size 60% (obsolete PO:0007128) OBSOLETE 92873 1 0 70592 14 2.00 main shoot only (obsolete PO:0007061) OBSOLETE 92874 1 0 70593 14 sepals enclosing meristem Stage of calyx development that begins when the developing sepals overlie the floral meristem. 92875 0 0 70594 14 LP.11 eleven leaves visible The stage at which leaves at eleven nodes, other than the cotyledonary node, are visible above ground. 92876 0 0 70595 14 2.05 main shoot and axillary shoots visible at five nodes The stage at which main shoot and axillary shoots at five nodes are visible. 92877 0 0 70596 14 primary root primordium formation The stage at which a group of cells or initials that will differentiate into the primary root become organized in the embryo . 92878 0 0 70597 14 A1 root initials formation stage (obsolete PO:0007535) OBSOLETE. After the formation of the apical-basal axis in the young embryo, the central and basal portion give rise to the root meristem. 92879 1 0 76475 36 tissue_sample \N 209372 0 0 70598 14 calyx absolute size (obsolete PO:0021002) OBSOLETE. The proportion of the absolute size reached by the calyx 92880 1 0 70599 14 gametophyte phase A whole plant growth stage that begins with meiosis or apospory. 92881 0 0 70600 14 FR.01 early stage of fruit ripening The early stage in fruit ripening. 92882 0 0 70601 14 B3 crown root meristem formation (obsolete PO:0007514) OBSOLETE. The stage at which the meristem of the crown root becomes evident. 92883 1 0 70602 14 plant structure development stage The succession of changes during the development of plant parts. 92884 0 0 70603 14 F four nucleate megagametophyte The stage of megagametophyte development when there are four nuclei. 92885 0 0 70604 14 F microspore release stage Stage of microgametophyte development during which the callose wall between the tetrads breaks down and haploid microspores are released and lie freely in locules. 92886 0 0 70605 14 mid rosette growth Rosette has reached approximately 50% of its final diameter. 92887 0 0 70606 14 FL.04 end of flowering The stage at which flowering is complete. 92888 0 0 70609 14 2.01 main shoot and axillary shoots visible at one node The stage at which main shoot and axillary shoot(s) at one node is (are) visible. 92891 0 0 70610 14 5 post anthesis The phase of a flower after the pollen is presented and/or the stigma is receptive. 92892 0 0 70611 14 IE.02 1/2 of inflorescence emerged from flag leaf sheath The stage at which 1/2 of inflorescence has emerged from flag leaf sheath. 92893 0 0 70612 14 4 leaf senescence stage The final stage of leaf development when the leaf ceases metabolic activity and senesces. 92894 0 0 70613 14 palea primordia visible Stage of palea development that begins when the palea primordia arise. 92895 0 0 70614 14 4 growth directionality The stage involved in the directionality of expansion growth. 92896 0 0 70687 16 stigma color Visual scoring of stigma color with 1 = white, 2 = orange, 3 = green, 4 = red, and 5 = purple. 92976 0 0 70615 14 A2.1 root intials differntiation of primary roots (obsolete PO:0007503) OBSOLETE. The root initials divide repeatedly and add more cells 92897 1 0 70616 14 E expanded cotyledon stage The stage during which embryo axis and cotyledons rapidly elongate as a result of cell division and cell expansion. 92898 0 0 70617 14 fertilized ovule stage The earliest stage of seed development immediately following double fertilization. 92900 0 0 70618 14 A megaspore mother cell enlarges The stage of megagametophyte development when the megaspore mother cell enlarges. 92901 0 0 70619 14 late rosette growth Rosette has reached approximately 70% of its final diameter. 92902 0 0 70620 14 FL.03 3/4 of flowers open The stage at which 3/4 of flowers open. 92903 0 0 70621 14 closure of carpel(s) Stage of gynoecium development defined by the closure of the carpel(s). 92904 0 0 70622 14 B1 primary root meristem formation (obsolete PO:0007524) OBSOLETE. The stage at which the meristem of the primary root becomes evident. 92905 1 0 70623 14 plant growth and development stage The succession of changes leading from the zygote to the mature plant. 92906 0 0 70624 14 E emerged root elongation (obsolete PO:0007529) OBSOLETE. The stage at which the emerged root starts to elongate. 92907 1 0 70625 14 7.02 fruit size 20% (obsolete PO:0007126) OBSOLETE 92908 1 0 70626 14 LP.15 fifteen leaves visible The stage at which leaves at fifteen nodes, other than the cotyledonary node, are visible above ground. 92909 0 0 70627 14 SE.01 one node or internode visible The stage at which one node or one internode is visible. 92910 0 0 70628 14 C3.3 maturation of protoxylem elements in root. (obsolete PO:0007533) OBSOLETE. The first protoxylem elements next to the pericycle develop secondary walls and mature. 92911 1 0 70629 14 C four anther lobes formed Stage during which the four-lobed anther pattern with two developing stomium regions (notch) are formed. 92912 0 0 70630 14 LP.18 eighteen leaves visible The stage at which leaves at eighteen nodes, other than the cotyledonary node, are visible above ground. 92913 0 0 70631 14 lodicule differentiation and expansion stage Stage of lodicule development defined by differentiation and expansion of lodicule. 92914 0 0 70632 14 SE.00 stem elongation begins The stage at which the internodes begin to elongate. 92915 0 0 70633 14 C3.2 maturation of phloem elements in root. (obsolete PO:0007537) OBSOLETE. The first phloem elements matures. 92916 1 0 70634 14 A2 root initials differentiation stage (obsolete PO:0007512) OBSOLETE. The root initials differentiate by cell division and cell expansion. 92917 1 0 70635 14 rosette growth Stages of growth based on expansion of the rosette in Arabidopsis. 92918 0 0 70636 14 rosette growth complete Stage at which rosette no longer increases in diameter, its leaf growth and expansion having ceased. 92919 0 0 70637 14 palea differentiation and expansion stage Stage of palea development defined by differentiation and expansion of palea. 92920 0 0 70638 14 radicle emergence The stage at which the radicle or root emerges from seed. 92921 0 0 70639 14 lemma developmental stages Stages of development of the lemma defined by characteristic morphological, structural, histological or other visible features. 92923 0 0 70640 14 seedling growth Growth of embryo after imbibition up to the development of the first adult leaves. 92924 0 0 70641 14 inflorescence development stages Stages of development of an inflorescence defined by characteristic morphological, structural, histological or other visible features. 92925 0 0 70642 14 plant life cycle phase (obsolete PO:0028001) A plant growth and development phase that begins with either meiosis or fertilization. 92926 1 0 70643 14 2 endoreduplication The stage trichome nuclei continue to replicate their DNA after mitosis and cytokinesis have ceased, and as a consequence have a DNA content much greater than 2C. 92927 0 0 70644 14 LP.14 fourteen leaves visible The stage at which leaves at fourteen nodes, other than the cotyledonary node, are visible above ground. 92928 0 0 70645 14 G early unicellular microspore stage Stage of microgametophyte development during which the microspores round up and small vacuoles appear in their cytoplasm. The microspore walls thicken due to the formation of the exine. 92929 0 0 70647 14 formation of leaflet primordia Stage at which leaflet primordia are initiated on the leaf primordium of a compound leaf. 92931 0 0 70648 14 IE.01 1/4 of inflorescence emerged from flag leaf sheath The stage at which 1/4 of inflorescence has emerged from flag leaf sheath. 92932 0 0 70649 14 dry seed stage Mature seed with low moisture content. 92933 0 0 70651 14 lateral root primordium formation This stage at which the transverse divisions in pericycle cells form the initials of the lateral root primordium. 92937 0 0 70652 14 SE.07 seven nodes or internodes visible The stage at which seven nodes or seven internodes are visible. 92938 0 0 70653 14 A archesporial cells visible An initial stage during which archesporial cells arise in four corners of L2 layer. Change in shape of primordia to more oval. 92939 0 0 70654 14 C tetrad of megaspores The product of meiosis of the megaspore mother cell. 92940 0 0 70657 14 lodicule developmental stages Stages of development of the lodicule defined by characteristic morphological, structural, histological or other visible features. 92943 0 0 70658 14 6.01 10% of flowers open (obsolete PO:0007121) OBSOLETE 92944 1 0 70662 16 seed color Visual scoring of seed color with 1 = brown, 2 = grey, 3 = mottled, 4 = black, and 5 = dark brown. 92950 0 0 70665 16 petiole insertion angle Visual rating of orientation or angle between the branch and petiole with 0 = no petiole, 3 = 15-30 degrees, 5 = 45-70 degrees, and 7 = 75-90 degrees. 92953 0 0 70667 16 root position Visual rating root position in the soil with 1 = tending toward vertical, 2 = tending toward horizontal, and 3 = irregular. 92955 0 0 70670 16 caruncle color Visual scoring of caruncle color with 1 = white or cream, 2 = pink or red, and 3 = purple. 92958 0 0 70679 16 storage root shape Visual rating of storage root shape with 1 = conical, 2 = conical-cylindrical, 3 = cylindrical, and 4 = fusiform. 92968 0 0 70680 16 root surface texture Visual rating of storage root texture with 3 = smooth, 5 = intermediate, and 7 = rough. 92969 0 0 70684 16 root surface color Visual rating of storage root surface color with 1 = white or cream, 2 =light brown, and 3 = dark brown. 92973 0 0 70689 16 ovary color Visual scoring of ovary color with 1 = white, 2 = orange, 3 = green, 4 = red, and 5 = purple. 92978 0 0 70693 16 apical branching Number of weeks from planting to first apical branching associated with the formation of inflorescence. 92982 0 0 70698 16 disc color Visual scoring of floral disc color with 1 = white, 2 = orange, 3 = green, 4 = red, and 5 = purple. 92988 0 0 70699 16 storage root pulp color Visual rating of most frequent pulp color with 1 = white or cream, 2 = yellow, and 3 = pink. 92989 0 0 70702 16 leaf scar prominence Visual rating of prominence leaf scars (measured on fresh scars) with 3 = little prominence, 5 = moderately prominent, and 7 = prominent. 92992 0 0 70703 16 storage root peduncle Visual rating of root peduncle length using a scale of 0 = sessile, 3 = pedunculate, and 5 = mixed. 92993 0 0 70704 16 leaf lobe number Most common number of leaf lobes assessed on five leaves from the middle of the plant at six months after planting. 92994 0 0 70710 16 petiole length Visual rating of petiole length with 0 = petiole absent, 3 = short (5-10cm), 5 = medium (15-20cm), and 7 = long (25-30cm). 93000 0 0 70713 16 flower Visual rating of flowers (50%) in plant with 0 = absent and 1 = present. 93003 0 0 70717 16 anther color Visual scoring of anther color with 1 = cream, 2 = yellow, and 3 = other. 93007 0 0 70718 16 root neck length Visual rating of root neck length with 0 = absent or sessile, 3 = short, 5 = intermediate, and 7 = long. 93008 0 0 70719 16 abiotic stress trait Response in terms of resistance or sensitivity to abiotic stress. 93009 0 0 70721 16 storage root constriction Visual scoring of mature root constrictions recorded as 0= absent and 1=present. 93011 0 0 70722 16 plant architecture Plant architecture on a 1-5 scale with 1 = excellent, 2 good, 3 = fair, 4 = bad, and 5 = very bad. 93012 0 0 70724 16 leaf lobe position Visual rating of the position leaf lobes are held with 1 = erect, 2 = horizontal, 3 = deflexed, and 4 = retorse. 93014 0 0 70726 16 petiole color Visual rating of the petiole color with 3 = light green, 5 = dark green, 7 = green-purple, 8 = red, and 9 = purple. 93016 0 0 70733 16 young stem pubescence Visual rating of young stem pubescence with 0 = absent or glabrous, 3 = little pubescence, 5 = moderate pubescence, and 7 = high pubescence. 93023 0 0 70734 16 ease of peeling root cortex Visual rating of ease of peeling root cortex with 3 = easy and 7 = difficult. 93024 0 0 70735 16 viral disease Traits related to incidence and severity of cassava response to viral pathogens. 93025 0 0 70737 16 first fully expanded leaf color Visual rating of first fully expanded leaf color with 3 = light green, 5 = dark green, 7 = green-purple, and 9 = purple. 93027 0 0 70738 16 bacterial disease Traits related to incidence and severity of cassava response to bacterial pathogens. 93028 0 0 70742 16 ploidy level Ploidy level (n = 1,2,3,4 ) (by morphological characteristics). 93032 0 0 70743 16 apical pubescence Visual rating of young leaf pubescence with 0 = absent or glabrous, 3 = little pubescence, 5 = moderate pubescence, and 7 = high pubescence. 93033 0 0 70745 16 young stem growth habit Visual rating of growth habit of young stem with 1= straight and 2 = zig-zag. 93035 0 0 70751 16 first apical branch height Height of first apical branch (ground level to point of first Apical branch, 9 months after planting) in cm. 93041 0 0 70753 16 leaf vein color Visual scoring of leaf vein color with 3 = light green, 5 = dark green, 7 = green-purple, and 9 = purple. 93043 0 0 70755 16 hydrogen cyanide potential enzymatic method Cyanogenic potential is an indicator of the potential production of hydrogen cyanide in cassava storage roots with less than 5mg/100g fresh weight of root = low, 5-10mg/100g fresh weight of root = medium, and 10mg/100g fresh weight of root = high. 93046 0 0 70757 16 sepal color Visual scoring of sepal color with 1 = white, 2 = orange, 3 = green, 4 = red, and 5 = purple. 93048 0 0 70759 16 central leaf shape Shape of central leaf taken from a mid-height position rated from 1 = ovoid, 2 = elliptic-lanceolate, 3 = obovate-lanceolate, 4 = oblong-lanceolate, 5 = lanceolate, 6 = straight or linear, 7 = pandurate, 8 = linear-piramidal, 9 = linear-pandurate, and 10 = linear-hostatilobalate. 93050 0 0 70763 16 unexpanded apical leaf color Visual rating of unexpanded apical leaf color with 3 = light green, 5 = dark green, 7 = green-purple, and 9 = purple. 93055 0 0 70764 16 branching angle Visual rating of a measured angle between vertical plane and first primary branching with 0 = non branching, 3 = 15-30 degrees, 5 = 45-60 degrees, and 7 = 75-90 degrees. 93056 0 0 70766 16 biotic stress trait Response in terms of resistance, susceptibility or tolerance to biotic stress. 93058 0 0 70770 16 stem color Visual scoring of stem color with 1 = silver green, 2 = light brown or orange, 3 = dark brown, and 4 = dark green. 93062 0 0 70772 16 storage root diameter Visual rating of storage root diameter with 3 = short, 5 = medium and 7 = long. 93064 0 0 70777 16 fungal disease Traits related to incidence and severity of cassava response to fungal pathogens. 93069 0 0 70778 16 storage root size Visual rating of storage root size with 3 = short, 5 = medium, and 7 = long. 93070 0 0 74369 19 engineered_foreign_transposable_element A transposable_element that is engineered and foreign. 97567 0 0 74370 19 five_prime_terminal_inverted_repeat \N 97569 0 0 74574 19 paternally_imprinted_gene A gene that is paternally imprinted. 97835 0 0 74307 19 snRNA A small nuclear RNA molecule involved in pre-mRNA splicing and processing. 97483 0 0 74308 19 H3K36_dimethylation_site A kind of histone modification site, whereby the 36th residue (a lysine), from the start of the H3 histone protein is dimethylated. 97486 0 0 74309 19 intronic_regulatory_region A regulatory region that is part of an intron. 97488 0 0 74310 19 transmembrane_helix A region that traverses the lipid bilayer and adopts a helical secondary structure. 97489 0 0 74311 19 mRNA_read A sequencer read of an mRNA substrate. 97491 0 0 74312 19 match_part A part of a match, for example an hsp from blast is a match_part. 97492 0 0 74313 19 elongated_polypeptide A sequence variant with in the CDS that causes elongation of the resulting polypeptide sequence. 97493 0 0 74314 19 partially_characterised_chromosomal_mutation \N 97494 0 0 76476 37 tissue_sample_of \N 209373 0 0 77456 61 atm One atmosphere. 212617 0 0 74316 19 intergenic_variant A sequence variant located in the intergenic region, between genes. 97496 0 0 74317 19 three_prime_repeat_recoding_signal A recoding stimulatory signal, downstream sequence important for recoding that contains repetitive elements. 97497 0 0 74318 19 invalidated An attribute describing a feature that is invalidated. 97499 0 0 74319 19 template_region A region of a guide_RNA that specifies the insertions and deletions of bases in the editing of a target mRNA. 97500 0 0 74320 19 gene_with_transcript_with_translational_frameshift A gene encoding a transcript that has a translational frameshift. 97502 0 0 74321 19 proline_tRNA_primary_transcript A primary transcript encoding prolyl tRNA (SO:0000268). 97504 0 0 74322 19 autosynaptic_chromosome An autosynaptic chromosome is the aneuploid product of recombination between a pericentric inversion and a cytologically wild-type chromosome. 97505 0 0 74323 19 ncRNA_gene \N 97507 0 0 74324 19 five_prime_EST An EST read from the 5' end of a transcript that usually codes for a protein. These regions tend to be conserved across species and do not change much within a gene family. 97508 0 0 74325 19 conserved \N 97510 0 0 74326 19 asx_turn_right_handed_type_two Right handed type II (dihedral angles):- Residue(i): -140 degrees < chi (1) -120 degrees < -20 degrees, +80 degrees < psi +120 degrees < +180 degrees. Residue(i+1): +20 degrees < phi < +140 degrees, -40 degrees < psi < +90 degrees. 97511 0 0 74327 19 chromosome_arm A region of the chromosome between the centromere and the telomere. Human chromosomes have two arms, the p arm (short) and the q arm (long) which are separated from each other by the centromere. 97515 0 0 74328 19 rRNA_cleavage_snoRNA_primary_transcript A primary transcript encoding an rRNA cleavage snoRNA. 97517 0 0 74329 19 substitute (obsolete SO:0000048) To substitute a subsection of sequence for another. 97518 1 0 74330 19 sequence_variant_causing_amino_acid_substitution (obsolete SO:1000093) The replacement of a single amino acid by another. 97519 1 0 74331 19 monocistronic_transcript A transcript that is monocistronic. 97521 0 0 74332 19 repeat_fragment A portion of a repeat, interrupted by the insertion of another element. 97522 0 0 74333 19 partially_processed_cDNA_clone A cDNA invalidated clone by partial processing. 97523 0 0 74334 19 DCE_SIII A sub element of the DCE core promoter element with consensus sequence AGC. 97524 0 0 74335 19 satellite_DNA The many tandem repeats (identical or related) of a short basic repeating unit; many have a base composition or other property different from the genome average that allows them to be separated from the bulk (main band) genomic DNA. 97525 0 0 74336 19 cloned_genomic_insert A clone insert made from genomic DNA. 97526 0 0 74337 19 stop_codon_redefined_as_selenocysteine A stop codon redefined to be the new amino acid, selenocysteine. 97527 0 0 74338 19 insert_AU (obsolete SO:0000927) An edit to insert a AU dinucleotide. 97528 1 0 74339 19 nuclear_rim_localization_signal A polypeptide region that targets a polypeptide to the nuclear rim. 97529 0 0 74340 19 assortment_derived_variation A chromosome variation derived from an event during meiosis. 97530 0 0 74341 19 transcription_variant A variant that changes alters the transcription of a transcript with respect to a reference sequence. 97531 0 0 74342 19 pedigree_specific_variant \N 97532 0 0 74471 19 NDM3_motif A non directional promoter motif with consensus sequence GAAAGCT. 97709 0 0 74343 19 synthetic_sequence An attribute to decide a sequence of nucleotides, nucleotide analogs, or amino acids that has been designed by an experimenter and which may, or may not, correspond with any natural sequence. 97533 0 0 74871 19 intron_variant A transcript variant occurring within an intron. 98186 0 0 74344 19 internal_Shine_Dalgarno_sequence A Shine-Dalgarno sequence that stimulates recoding through interactions with the anti-Shine-Dalgarno in the RNA of small ribosomal subunits of translating ribosomes. The signal is only operative in Bacteria. 97535 0 0 74345 19 tRNA_encoding \N 97536 0 0 74346 19 integrase_coding_region (obsolete SO:0000369) \N 97537 1 0 74347 19 supported_by_EST_or_cDNA An attribute to describe a feature that has been predicted using sequence similarity to EST or cDNA data. 97538 0 0 74348 19 insert_G (obsolete SO:0000923) An edit to insert a G. 97539 1 0 74349 19 five_prime_noncoding_exon Non-coding exon in the 5' UTR. 97540 0 0 74350 19 rRNA_23S A large polynucleotide in Bacteria and Archaea, which functions as the large subunit of the ribosome. 97541 0 0 74351 19 retron Sequence coding for a short, single-stranded, DNA sequence via a retrotransposed RNA intermediate; characteristic of some microbial genomes. 97542 0 0 74352 19 ligand_binding_site A binding site that, in the molecule, interacts selectively and non-covalently with a small molecule such as a drug, or hormone. 97543 0 0 74353 19 modified_L_arginine A post translationally modified arginine amino acid feature. 97544 0 0 74354 19 UAA_stop_codon_signal A stop codon signal for a UAA stop codon redefinition. 97545 0 0 74355 19 silencer A regulatory region which upon binding of transcription factors, suppress the transcription of the gene or genes they control. 97546 0 0 74356 19 sequence_variant_affecting_translational_product (obsolete SO:1000088) A sequence variant causing a change in primary translation product of a transcript. 97547 1 0 74357 19 modified_uridine \N 97550 0 0 74358 19 sequence_uncertainty Describes the positions in a sequence where the authors are unsure about the sequence assignment. 97551 0 0 74359 19 pseudogene A sequence that closely resembles a known functional gene, at another locus within a genome, that is non-functional as a consequence of (usually several) mutations that prevent either its transcription or translation (or both). In general, pseudogenes result from either reverse transcription of a transcript of their "normal" paralog (SO:0000043) (in which case the pseudogene typically lacks introns and includes a poly(A) tail) or from recombination (SO:0000044) (in which case the pseudogene is typically a tandem duplication of its "normal" paralog). 97554 0 0 75953 19 phage_sequence The nucleotide sequence of a virus that infects bacteria. 99410 0 0 74360 19 N6_methyl_N6_threonylcarbamoyladenosine N6_methyl_N6_threonylcarbamoyladenosine is a modified adenosine. 97556 0 0 74361 19 strand_attribute \N 97558 0 0 74363 19 leucyl_tRNA A tRNA sequence that has a leucine anticodon, and a 3' leucine binding region. 97560 0 0 74364 19 polycistronic_primary_transcript A primary transcript encoding for more than one gene product. 97561 0 0 74365 19 conjugative_transposon A transposon that encodes function required for conjugation. 97562 0 0 74366 19 post_translationally_regulated_by_protein_modification An attribute describing a gene sequence where the resulting protein is modified to regulate it. 97564 0 0 74367 19 sequence_variant_causing_cryptic_splice_donor_activation (obsolete SO:1000186) \N 97565 1 0 74368 19 bidirectional_promoter \N 97566 0 0 74371 19 elongated_out_of_frame_polypeptide_N_terminal A sequence variant with in the CDS that causes out of frame elongation of the resulting polypeptide sequence at the N terminus. 97570 0 0 74372 19 DPE_motif A sequence element characteristic of some RNA polymerase II promoters; Positioned from +28 to +32 with respect to the TSS (+1). Experimental results suggest that the DPE acts in conjunction with the INR_motif to provide a binding site for TFIID in the absence of a TATA box to mediate transcription of TATA-less promoters. Consensus sequence (A|G)G(A|T)(C|T)(G|A|C). 97571 0 0 74373 19 reagent A sequence used in experiment. 97573 0 0 74374 19 N6_2_prime_O_dimethyladenosine N6_2prime_O_dimethyladenosine is a modified adenosine. 97574 0 0 74375 19 DJ_gene Genomic DNA of immunoglobulin/T-cell receptor gene in partially rearranged genomic DNA including D-J-region with 5' UTR and 3' UTR, also designated as D-J-segment. 97575 0 0 74376 19 nested_transposon A transposon that is disrupted by the insertion of another element. 97576 0 0 74377 19 nucleotide_to_protein_binding_site A binding site that, in the nucleotide molecule, interacts selectively and non-covalently with polypeptide residues. 97577 0 0 74378 19 LTR_retrotransposon A retrotransposon flanked by long terminal repeat sequences. 97578 0 0 74379 19 splice_junction The boundary between an intron and an exon. 97579 0 0 74380 19 asparaginyl_tRNA A tRNA sequence that has an asparagine anticodon, and a 3' asparagine binding region. 97580 0 0 74381 19 bound_by_protein An attribute describing a sequence that is bound by a protein. 97581 0 0 74382 19 RNase_P_RNA The RNA component of Ribonuclease P (RNase P), a ubiquitous endoribonuclease, found in archaea, bacteria and eukarya as well as chloroplasts and mitochondria. Its best characterized activity is the generation of mature 5 prime ends of tRNAs by cleaving the 5 prime leader elements of precursor-tRNAs. Cellular RNase Ps are ribonucleoproteins. RNA from bacterial RNase Ps retains its catalytic activity in the absence of the protein subunit, i.e. it is a ribozyme. Isolated eukaryotic and archaeal RNase P RNA has not been shown to retain its catalytic function, but is still essential for the catalytic activity of the holoenzyme. Although the archaeal and eukaryotic holoenzymes have a much greater protein content than the bacterial ones, the RNA cores from all the three lineages are homologous. Helices corresponding to P1, P2, P3, P4, and P10/11 are common to all cellular RNase P RNAs. Yet, there is considerable sequence variation, particularly among the eukaryotic RNAs. 97582 0 0 74383 19 heritable_phenotypic_marker A biological_region characterized as a single heritable trait in a phenotype screen. The heritable phenotype may be mapped to a chromosome but generally has not been characterized to a specific gene locus. 97584 0 0 74384 19 V_spacer 12 or 23 nucleotide spacer between the V-heptamer and the V-nonamer of a V-gene recombination feature of an immunoglobulin/T-cell receptor gene. 97586 0 0 74385 19 five_prime_cis_splice_site Intronic 2 bp region bordering the exon, at the 5' edge of the intron. A splice_site that is downstream_adjacent_to exon and starts intron. 97587 0 0 74386 19 positively_autoregulated_gene A gene that is positively autoregulated. 97589 0 0 74387 19 insert_U (obsolete SO:0000917) An edit to insert a U. 97590 1 0 74388 19 two_thiocytidine 2-thiocytidine is a modified cytidine. 97591 0 0 74389 19 topology_attribute \N 97592 0 0 74390 19 CpG_island Regions of a few hundred to a few thousand bases in vertebrate genomes that are relatively GC and CpG rich; they are typically unmethylated and often found near the 5' ends of genes. 97593 0 0 74391 19 U12_intron A type of spliceosomal intron spliced by the U12 spliceosome, that includes U11, U12, U4atac/U6atac and U5 snRNAs. 97595 0 0 74392 19 transcribed_fragment An experimental region, defined by a tiling array experiment to be transcribed at some level. 97597 0 0 74393 19 editing_domain Edited mRNA sequence mediated by two or more overlapping guide RNAs (SO:0000602). 97598 0 0 74394 19 schellmann_loop_six Common Type: A motif of six consecutive residues that contains two H-bonds in which: the main-chain CO of residue(i) is H-bonded to the main-chain NH of residue(i+5) the main-chain CO of residue(i+1) is H-bonded to the main-chain NH of residue(i+4). 97600 0 0 74395 19 recombinationally_rearranged_gene A gene that is recombinationally rearranged. 97602 0 0 74396 19 elongated_out_of_frame_polypeptide_C_terminal A sequence variant with in the CDS that causes out of frame elongation of the resulting polypeptide sequence at the C terminus. 97603 0 0 74397 19 long_terminal_repeat A sequence directly repeated at both ends of a defined sequence, of the sort typically found in retroviruses. 97604 0 0 74398 19 helitron A rolling circle transposon. Autonomous helitrons encode a 5'-to-3' DNA helicase and nuclease/ligase similar to those encoded by known rolling-circle replicons. 97605 0 0 74399 19 A_minor_RNA_motif A region forming a motif, composed of adenines, where the minor groove edges are inserted into the minor groove of another helix. 97607 0 0 74400 19 biochemical_region_of_peptide A region of a peptide that is involved in a biochemical function. 97608 0 0 74401 19 frameshift_sequence_variation (obsolete SO:1000065) A mutation causing a disruption of the translational reading frame, because the number of nucleotides inserted or deleted is not a multiple of three. 97609 1 0 74402 19 sonicate_fragment A DNA fragment generated by sonication. Sonication is a technique used to sheer DNA into smaller fragments. 97610 0 0 74403 19 complex_change_of_translational_product_variant \N 97611 0 0 74404 19 linear_single_stranded_DNA_chromosome Structural unit composed of a self-replicating, single-stranded, linear DNA molecule. 97612 0 0 74405 19 expressed_sequence_match A match to an EST or cDNA sequence. 97613 0 0 75174 19 intrachromosomal_duplication A duplication that occurred within a chromosome. 98518 0 0 74406 19 adaptive_island An adaptive island is a genomic island that provides an adaptive advantage to the host. 97614 0 0 74407 19 intron A region of a primary transcript that is transcribed, but removed from within the transcript by splicing together the sequences (exons) on either side of it. 97615 0 0 74408 19 hydroxywybutosine Hydroxywybutosine is a modified guanosine base feature. 97616 0 0 74581 19 gene_with_mRNA_with_frameshift A gene that encodes an mRNA with a frameshift. 97843 0 0 74409 19 attL_site A region that results from recombination between attP_site and attB_site, composed of the 5' portion of attB_site and the 3' portion of attP_site. 97617 0 0 74410 19 gene_with_trans_spliced_transcript A gene with a transcript that is trans-spliced. 97619 0 0 74411 19 transposable_element_attribute (obsolete SO:0000780) \N 97620 1 0 74412 19 five_prime_coding_exon_coding_region The sequence of the five_prime_coding_exon that codes for protein. 97621 0 0 74413 19 tmRNA_acceptor_piece The acceptor region of a two-piece tmRNA that when mature is charged at its 3' end with alanine. The tmRNA gene undergoes circular permutation in some groups of bacteria; processing of the transcripts from such a gene leaves the mature tmRNA in two pieces, base-paired together. 97622 0 0 74414 19 Phage_RNA_Polymerase_Promoter A region (DNA) to which Bacteriophage RNA polymerase binds, to begin transcription. 97625 0 0 74415 19 exon_loss A sequence variant whereby an exon is lost from the transcript. 97627 0 0 74416 19 duplication One or more nucleotides are added between two adjacent nucleotides in the sequence; the inserted sequence derives from, or is identical in sequence to, nucleotides adjacent to insertion point. 97628 0 0 74417 19 heptamer_of_recombination_feature_of_vertebrate_immune_system_gene Seven nucleotide recombination site (e.g. CACAGTG), part of V-gene, D-gene or J-gene recombination feature of an immunoglobulin or T-cell receptor gene. 97629 0 0 74418 19 enhanceosome (obsolete SO:0001057) \N 97630 1 0 74419 19 homo_compound_chromosome A compound chromosome whereby two copies of the same chromosomal arm attached to a common centromere. The chromosome is diploid for the arm involved. 97631 0 0 74420 19 5KB_upstream_variant A sequence variant located within 5KB 5' of a gene. 97632 0 0 74421 19 golden_path A set of subregions selected from sequence contigs which when concatenated form a nonredundant linear sequence. 97633 0 0 74422 19 undermodified_hydroxywybutosine Undermodified_hydroxywybutosine is a modified guanosine base feature. 97635 0 0 74423 19 UTR_region A region of UTR. 97636 0 0 74424 19 blunt_end_restriction_enzyme_cleavage_site \N 97637 0 0 74425 19 five_prime_three_prime_overlap An attribute to describe a gene when the five prime region overlaps with another gene's 3' region. 97638 0 0 74426 19 Robertsonian_fusion A non reciprocal translocation whereby the participating chromosomes break at their centromeres and the long arms fuse to form a single chromosome with a single centromere. 97639 0 0 74601 19 ss_oligo A single stranded oligonucleotide. 97868 0 0 74472 19 circular_single_stranded_DNA_chromosome Structural unit composed of a self-replicating, single-stranded, circular DNA molecule. 97711 0 0 76266 19 exon_region A region of an exon. 99762 0 0 74427 19 inverted_insertional_duplication An insertional duplication where a copy of the segment between the first two breaks listed is inserted at the third break; the insertion is in cytologically inverted orientation with respect to its flanking segments. 97641 0 0 74428 19 polypeptide_repeat A polypeptide_repeat is a single copy of an internal sequence repetition. 97643 0 0 74429 19 five_prime_D_heptamer 7 nucleotide recombination site (e.g. CACTGTG), part of a 5' D-recombination signal sequence (SO:0000556) of an immunoglobulin/T-cell receptor gene. 97645 0 0 74430 19 splice_enhancer Region of a transcript that regulates splicing. 97646 0 0 74431 19 sequence_variant_causing_terminator_codon_change_in_transcript (obsolete SO:1000063) The nucleotide change in the codon triplet changes the stop codon, causing an elongated transcript sequence. 97647 1 0 74432 19 polypeptide_iron_ion_contact_site A binding site that, in the polypeptide molecule, interacts selectively and non-covalently with iron ions. 97648 0 0 74433 19 promoter_trap_construct A promoter trap construct is a type of engineered plasmid which is designed to integrate into a genome and express a reporter when inserted in close proximity to a promoter element. Promoter traps typically do not contain promoter elements and are mutagenic. 97651 0 0 74434 19 polypeptide_domain A structurally or functionally defined protein region. In proteins with multiple domains, the combination of the domains determines the function of the protein. A region which has been shown to recur throughout evolution. 97653 0 0 74435 19 delete (obsolete SO:0000045) To remove a subsection of sequence. 97657 1 0 74436 19 maxicircle A maxicircle is a replicon, part of a kinetoplast, that contains open reading frames and replicates via a rolling circle method. 97658 0 0 74437 19 aspartic_acid_tRNA_primary_transcript A primary transcript encoding aspartyl tRNA (SO:0000257). 97661 0 0 74438 19 RNase_MRP_RNA_gene A gene that encodes a RNase_MRP_RNA. 97662 0 0 74439 19 rescue_mini_gene A mini_gene that rescues. 97663 0 0 74440 19 allele An allele is one of a set of coexisting sequence variants of a gene. 97664 0 0 74441 19 terminal_inverted_repeat_element A DNA transposable element defined as having termini with perfect, or nearly perfect short inverted repeats, generally 10 - 40 nucleotides long. 97666 0 0 74442 19 polypeptide_turn_motif A reversal in the direction of the backbone of a protein that is stabilized by hydrogen bond between backbone NH and CO groups, involving no more than 4 amino acid residues. 97668 0 0 74443 19 cyanelle_sequence \N 97671 0 0 74444 19 SL8_acceptor_site A SL2_acceptor_site which appends the SL8 RNA leader sequence to the 5' end of an mRNA. SL8 acceptor sites occur in genes in internal segments of polycistronic transcripts. 97672 0 0 74445 19 DJ_J_C_cluster Genomic DNA in rearranged configuration including at least one D-J-GENE, one J-GENE and one C-GENE. 97674 0 0 74446 19 sequence_variant_affecting_level_of_translational_product (obsolete SO:1000102) \N 97675 1 0 74447 19 vertebrate_immunoglobulin_T_cell_receptor_segment \N 97676 0 0 74448 19 downstream_gene_variant A sequence variant located 3' of a gene. 97677 0 0 74449 19 level_of_transcript_variant A sequence variant which alters the level of a transcript. 97678 0 0 74450 19 possible_assembly_error A region of sequence where there may have been an error in the assembly. 97679 0 0 74451 19 glycyl_tRNA A tRNA sequence that has a glycine anticodon, and a 3' glycine binding region. 97680 0 0 74452 19 isoleucine \N 97681 0 0 74575 19 ds_DNA_viral_sequence A ds_DNA_viral_sequence is a viral_sequence that is the sequence of a virus that exists as double stranded DNA. 97836 0 0 74453 19 U14_snoRNA U14 small nucleolar RNA (U14 snoRNA) is required for early cleavages of eukaryotic precursor rRNAs. In yeasts, this molecule possess a stem-loop region (known as the Y-domain) which is essential for function. A similar structure, but with a different consensus sequence, is found in plants, but is absent in vertebrates. 97682 0 0 74454 19 micronuclear_sequence \N 97686 0 0 74455 19 exon_of_single_exon_gene An exon that is the only exon in a gene. 97687 0 0 74456 19 protein_coding_gene \N 97689 0 0 74457 19 catalytic_residue Amino acid involved in the activity of an enzyme. 97690 0 0 74458 19 immature_peptide_region An immature_peptide_region is the extent of the peptide after it has been translated and before any processing occurs. 97692 0 0 74459 19 transcriptionally_induced An inducer molecule is required for transcription to occur. 97694 0 0 74460 19 beta_bulge_loop_six A motif of three residues within a beta-sheet consisting of two H-bonds in which: the main-chain NH of residue(i) is H-bonded to the main-chain CO of residue(i+5), the main-chain CO of residue i is H-bonded to the main-chain NH of residue(i+4), these loops have an RL nest at residues i+3 and i+4. 97695 0 0 74461 19 site (obsolete SO:0000408) The interbase position where something (eg an aberration) occurred. 97697 1 0 74462 19 assortment_derived_duplication A multi-chromosome duplication aberration generated by reassortment of other aberration components. 97698 0 0 74463 19 five_methyluridine 5_methyluridine is a modified uridine base feature. 97700 0 0 74464 19 five_carbamoylmethyluridine 5_carbamoylmethyluridine is a modified uridine base feature. 97701 0 0 74465 19 V_D_DJ_C_cluster Genomic DNA of immunoglobulin/T-cell receptor gene in rearranged configuration including at least one V-gene, one D-gene, one DJ-gene and one C-gene. 97702 0 0 74466 19 unique_variant A physical quality which inheres to the variant by virtue of the number instances of the variant within a population. 97703 0 0 74467 19 capped An attribute describing when a sequence, usually an mRNA is capped by the addition of a modified guanine nucleotide at the 5' end. 97704 0 0 74468 19 regional_centromere_central_core A conserved region within the central region of a modular centromere, where the kinetochore is formed. 97705 0 0 74469 19 fusion \N 97707 0 0 74470 19 transversion Change of a pyrimidine nucleotide, C or T, into a purine nucleotide, A or G, or vice versa. 97708 0 0 74473 19 cryptic_splice_site_variant A sequence variant causing a new (functional) splice site. 97712 0 0 74474 19 5_prime_UTR_variant A UTR variant of the 5' UTR. 97713 0 0 74475 19 terminal_inverted_repeat An inverted repeat (SO:0000294) occurring at the termini of a DNA transposon. 97714 0 0 74476 19 variant_origin A quality inhering in a variant by virtue of its origin. 97715 0 0 74477 19 CDS_supported_by_sequence_similarity_data A CDS that is supported by sequence similarity data. 97717 0 0 74478 19 pre_miRNA The 60-70 nucleotide region remain after Drosha processing of the primary transcript, that folds back upon itself to form a hairpin sructure. 97718 0 0 74479 19 beta_turn_left_handed_type_one Left handed type I:A motif of four consecutive residues that may contain one H-bond, which, if present, is between the main-chain CO of the first residue and the main-chain NH of the fourth. It is characterized by the dihedral angles:- Residue(i+1): -140 degrees > phi > -20 degrees, -90 degrees > psi > +40 degrees. Residue(i+2): -140 degrees > phi > -20 degrees, -90 degrees > psi > +40 degrees. 97719 0 0 74480 19 transcript_variant A sequence variant that changes the structure of the transcript. 97721 0 0 74481 19 non_LTR_retrotransposon_polymeric_tract A polymeric tract, such as poly(dA), within a non_LTR_retrotransposon. 97722 0 0 74482 19 flanked An attribute describing a region that is bounded either side by a particular kind of region. 97723 0 0 74483 19 encodes_1_polypeptide A gene that is alternately spliced, but encodes only one polypeptide. 97724 0 0 74484 19 RNA_6S A small (184-nt in E. coli) RNA that forms a hairpin type structure. 6S RNA associates with RNA polymerase in a highly specific manner. 6S RNA represses expression from a sigma70-dependent promoter during stationary phase. 97725 0 0 74485 19 overlapping_EST_set A continous experimental result region extending the length of multiple overlapping EST's. 97727 0 0 74486 19 minor_TSS \N 97728 0 0 74487 19 SRP_RNA_gene \N 97729 0 0 74488 19 sequence_motif A sequence motif is a nucleotide or amino-acid sequence pattern that may have biological significance. 97730 0 0 74489 19 diplotype A diplotype is a pair of haplotypes from a given individual. It is a genotype where the phase is known. 97732 0 0 74490 19 trinucleotide_repeat_microsatellite_feature \N 97733 0 0 74491 19 polycistronic_transcript A transcript that is polycistronic. 97734 0 0 74492 19 ultracontig An ordered and oriented set of scaffolds based on somewhat weaker sets of inferential evidence such as one set of mate pair reads together with supporting evidence from ESTs or location of markers from SNP or microsatellite maps, or cytogenetic localization of contained markers. 97735 0 0 74493 19 deficient_interchromosomal_transposition An interchromosomal transposition whereby a translocation in which one of the four broken ends loses a segment before re-joining. 97737 0 0 74494 19 five_hydroxyuridine 5_hydroxyuridine is a modified uridine base feature. 97738 0 0 74495 19 translational_frameshift The region of mRNA (not divisible by 3 bases) that is skipped during the process of translational frameshifting (GO:0006452), causing the reading frame to be different. 97739 0 0 74496 19 stop_gained A sequence variant whereby at least one base of a codon is changed, resulting in a premature stop codon, leading to a shortened transcript. 97740 0 0 74497 19 direct_repeat A repeat where the same sequence is repeated in the same direction. Example: GCTGA-----GCTGA. 97741 0 0 74498 19 missense_codon A sequence variant whereby at least one base of a codon is changed resulting in a codon that encodes for a different amino acid. 97742 0 0 74499 19 UST An EST spanning part or all of the untranslated regions of a protein-coding transcript. 97743 0 0 74500 19 threonine \N 97744 0 0 74501 19 aneuploid A kind of chromosome variation where the chromosome complement is not an exact multiple of the haploid number. 97745 0 0 74502 19 ribosome_entry_site Region in mRNA where ribosome assembles. 97746 0 0 74503 19 exemplar An attribute describing a sequence is representative of a class of similar sequences. 97747 0 0 74504 19 sequence_rearrangement_feature \N 97748 0 0 74505 19 gene_with_stop_codon_redefined_as_selenocysteine A gene encoding an mRNA that has the stop codon redefined as selenocysteine. 97749 0 0 74506 19 endosomal_localization_signal A polypeptide region that targets a polypeptide to the endosome. 97750 0 0 74507 19 maxicircle_gene A mitochondrial gene located in a maxicircle. 97751 0 0 74508 19 polypeptide_DNA_contact A binding site that, in the polypeptide molecule, interacts selectively and non-covalently with DNA. 97752 0 0 74509 19 scRNA_encoding \N 97753 0 0 74510 19 apicoplast_gene A gene from apicoplast sequence. 97754 0 0 74511 19 DNA_aptamer DNA molecules that have been selected from random pools based on their ability to bind other molecules. 97755 0 0 74512 19 C_cluster Genomic DNA of immunoglobulin/T-cell receptor gene including more than one C-gene. 97757 0 0 74513 19 beta_turn_type_six_a A motif of four consecutive peptide residues, of which the i+2 residue is proline, and that may contain one H-bond, which, if present, is between the main-chain CO of the first residue and the main-chain NH of the fourth and is characterized by the dihedral angles: Residue(i+1): phi ~ -60 degrees, psi ~ 120 degrees. Residue(i+2): phi ~ -90 degrees, psi ~ 0 degrees. 97758 0 0 74514 19 modified_L_aspartic_acid A post translationally modified aspartic acid amino acid feature. 97760 0 0 74515 19 chromosome_fission A chromosome that occurred by the division of a larger chromosome. 97761 0 0 74516 19 A_to_G_transition A transition of an adenine to a guanine. 97762 0 0 74517 19 reading_frame A nucleic acid sequence that when read as sequential triplets, has the potential of encoding a sequential string of amino acids. It need not contain the start or stop codon. 97763 0 0 75060 19 recombination_feature_of_rearranged_gene \N 98396 0 0 74518 19 purine_to_pyrimidine_transversion Change of a purine nucleotide, A or G , into a pyrimidine nucleotide C or T. 97765 0 0 74519 19 mini_exon_donor_RNA A primary transcript that donates the spliced leader to other mRNA. 97766 0 0 74520 19 N6_methyladenosine N6_methyladenosine is a modified adenosine. 97767 0 0 74521 19 plasmid_vector \N 97768 0 0 74522 19 non_synonymous_codon A sequence variant, where the change may be longer than 3 bases, and at least one base of a codon is changed resulting in a codon that encodes for a different amino acid or stop codon. 97769 0 0 74523 19 lambda_vector The lambda bacteriophage is the vector for the linear lambda clone. The genes involved in the lysogenic pathway are removed from the from the viral DNA. Up to 25 kb of foreign DNA can then be inserted into the lambda genome. 97772 0 0 74524 19 promoter A regulatory_region composed of the TSS(s) and binding sites for TF_complexes of the basal transcription machinery. 97774 0 0 74525 19 miRNA_target_site A miRNA target site is a binding site where the molecule is a micro RNA. 97776 0 0 74526 19 inversion_derived_deficiency_plus_aneuploid A chromosomal deletion whereby a chromosome generated by recombination between two inversions; has a deficiency at one end and presumed to have a deficiency or duplication at the other end of the inversion. 97778 0 0 74527 19 promoter_region (obsolete SO:0000832) A region of sequence which is part of a promoter. 97780 1 0 74528 19 polymerase_synthesis_read A read produced by the polymerase based sequence by synthesis method. 97781 0 0 74529 19 minus_12_signal A conserved region about 12-bp upstream of the start point of bacterial transcription units, involved with sigma factor 54. 97782 0 0 74530 19 five_carboxyhydroxymethyl_uridine_methyl_ester 5_carboxyhydroxymethyl_uridine_methyl_ester is a modified uridine base feature. 97784 0 0 74531 19 TF_binding_site A region of a nucleotide molecule that binds a Transcription Factor or Transcription Factor complex [GO:0005667]. 97785 0 0 74532 19 BAC Bacterial Artificial Chromosome, a cloning vector that can be propagated as mini-chromosomes in a bacterial host. 97786 0 0 74533 19 post_translationally_regulated An attribute describing a gene that is regulated after it has been translated. 97787 0 0 74534 19 cDNA_match A match against cDNA sequence. 97788 0 0 74535 19 selenocysteine_tRNA_primary_transcript A primary transcript encoding seryl tRNA (SO:000269). 97789 0 0 74562 19 elongated_in_frame_polypeptide_C_terminal A sequence variant with in the CDS that causes in frame elongation of the resulting polypeptide sequence at the C terminus. 97821 0 0 74563 19 nuclear_gene A gene from nuclear sequence. 97822 0 0 74536 19 st_turn_right_handed_type_two The peptide twists in an clockwise, right handed manner. The dihedral angles for this turn are: Residue(i): -140 degrees < chi(1) -120 degrees < -20 degrees, +80 degrees psi +120 degrees < +180 degrees, residue(i+1): +20 degrees < phi < +140 degrees, -40 < psi < +90 degrees. 97790 0 0 74537 19 alternatively_spliced_transcript_encoding_greater_than_1_polypeptide_different_start_codon_different_stop_codon_coding_regions_non_overlapping (obsolete SO:1001244) \N 97792 1 0 74538 19 splicing_feature (obsolete SO:0000682) \N 97793 1 0 74539 19 circular_single_stranded_RNA_chromosome Structural unit composed of a self-replicating, single-stranded, circular DNA molecule. 97794 0 0 74576 19 five_prime_open_reading_frame \N 97837 0 0 74577 19 plastid_gene A gene from plastid sequence. 97838 0 0 74578 19 polypeptide_structural_motif Motif is a three-dimensional structural element within the chain, which appears also in a variety of other molecules. Unlike a domain, a motif does not need to form a stable globular unit. 97839 0 0 74579 19 inversion_site A region specifically recognised by a recombinase, which inverts the region flanked by a pair of sites. 97841 0 0 77149 46 type of germplasm storage code \N 210052 0 0 74540 19 SRP_RNA The signal recognition particle (SRP) is a universally conserved ribonucleoprotein. It is involved in the co-translational targeting of proteins to membranes. The eukaryotic SRP consists of a 300-nucleotide 7S RNA and six proteins: SRPs 72, 68, 54, 19, 14, and 9. Archaeal SRP consists of a 7S RNA and homologues of the eukaryotic SRP19 and SRP54 proteins. In most eubacteria, the SRP consists of a 4.5S RNA and the Ffh protein (a homologue of the eukaryotic SRP54 protein). Eukaryotic and archaeal 7S RNAs have very similar secondary structures, with eight helical elements. These fold into the Alu and S domains, separated by a long linker region. Eubacterial SRP is generally a simpler structure, with the M domain of Ffh bound to a region of the 4.5S RNA that corresponds to helix 8 of the eukaryotic and archaeal SRP S domain. Some Gram-positive bacteria (e.g. Bacillus subtilis), however, have a larger SRP RNA that also has an Alu domain. The Alu domain is thought to mediate the peptide chain elongation retardation function of the SRP. The universally conserved helix which interacts with the SRP54/Ffh M domain mediates signal sequence recognition. In eukaryotes and archaea, the SRP19-helix 6 complex is thought to be involved in SRP assembly and stabilizes helix 8 for SRP54 binding. 97795 0 0 74541 19 single_stranded_DNA_chromosome Structural unit composed of a self-replicating, single-stranded DNA molecule. 97797 0 0 74542 19 H3K27_trimethylation_site A kind of histone modification site, whereby the 27th residue (a lysine), from the start of the H3 histone protein is tri-methylated. 97798 0 0 74543 19 deficient_intrachromosomal_transposition An intrachromosomal transposition whereby a translocation in which one of the four broken ends loses a segment before re-joining. 97800 0 0 74544 19 VJ_J_cluster Genomic DNA of immunoglobulin/T-cell receptor gene in rearranged configuration including at least one VJ-gene and one J-gene. 97801 0 0 74545 19 non_synonymous \N 97802 0 0 74546 19 sequence_variant_affecting_transcript_secondary_structure (obsolete SO:1000126) A sequence variant that affects the secondary structure (folding) of the RNA transcript molecule. 97803 1 0 74547 19 V_D_J_C_cluster Genomic DNA of immunoglobulin/T-cell receptor gene in germline configuration including at least one V-gene, one D-gene and one J-gene and one C-gene. 97804 0 0 74548 19 glutamine \N 97805 0 0 74549 19 autoregulated The gene product is involved in its own transcriptional regulation. 97806 0 0 74700 19 mutation_causing_out_of_frame_polypeptide_N_terminal_elongation (obsolete SO:1000107) \N 97982 1 0 74550 19 mini_gene By definition, minigenes are short open-reading frames (ORF), usually encoding approximately 9 to 20 amino acids, which are expressed in vivo (as distinct from being synthesized as peptide or protein ex vivo and subsequently injected). The in vivo synthesis confers a distinct advantage: the expressed sequences can enter both antigen presentation pathways, MHC I (inducing CD8+ T- cells, which are usually cytotoxic T-lymphocytes (CTL)) and MHC II (inducing CD4+ T-cells, usually 'T-helpers' (Th)); and can encounter B-cells, inducing antibody responses. Three main vector approaches have been used to deliver minigenes: viral vectors, bacterial vectors and plasmid DNA. 97807 0 0 74551 19 inverted_intrachromosomal_transposition An intrachromosomal transposition whereby the segment between the first two breaks listed is removed and inserted at the third break; the insertion is in cytologically inverted orientation with respect to its flanking segments. 97809 0 0 74552 19 remark A comment about the sequence. 97810 0 0 74553 19 polyadenylation_variant A sequence variant that changes polyadenylation with respect to a reference sequence. 97811 0 0 74554 19 alteration_attribute \N 97812 0 0 74555 19 three_prime_LTR_component \N 97813 0 0 74556 19 minus_2_frameshift A frameshift caused by deleting two bases. 97814 0 0 74557 19 ds_RNA_viral_sequence A ds_RNA_viral_sequence is a viral_sequence that is the sequence of a virus that exists as double stranded RNA. 97815 0 0 74558 19 tRNA Transfer RNA (tRNA) molecules are approximately 80 nucleotides in length. Their secondary structure includes four short double-helical elements and three loops (D, anti-codon, and T loops). Further hydrogen bonds mediate the characteristic L-shaped molecular structure. Transfer RNAs have two regions of fundamental functional importance: the anti-codon, which is responsible for specific mRNA codon recognition, and the 3' end, to which the tRNA's corresponding amino acid is attached (by aminoacyl-tRNA synthetases). Transfer RNAs cope with the degeneracy of the genetic code in two manners: having more than one tRNA (with a specific anti-codon) for a particular amino acid; and 'wobble' base-pairing, i.e. permitting non-standard base-pairing at the 3rd anti-codon position. 97816 0 0 74559 19 VJ_gene Rearranged genomic DNA of immunoglobulin/T-cell receptor gene including L-part1, V-intron and V-J-exon, with the 5'UTR (SO:0000204) and 3'UTR (SO:0000205). 97818 0 0 74560 19 lysosomal_localization_signal A polypeptide region that targets a polypeptide to the lysosome. 97819 0 0 74561 19 TATA_box A conserved AT-rich septamer found about 25-bp before the start point of many eukaryotic RNA polymerase II transcript units; may be involved in positioning the enzyme for correct initiation; consensus=TATA(A|T)A(A|T). 97820 0 0 74668 19 nc_transcript_variant A transcript variant of a non coding RNA gene. 97947 0 0 74564 19 V_heptamer 7 nucleotide recombination site (e.g. CACAGTG), part of V-gene recombination feature of an immunoglobulin/T-cell receptor gene. 97823 0 0 74565 19 maternal_variant \N 97824 0 0 74566 19 rearranged_at_DNA_level An attribute to describe the sequence of a feature, where the DNA is rearranged. 97825 0 0 74567 19 high_quality_draft The status of a whole genome sequence, where overall coverage represents at least 90 percent of the genome. 97826 0 0 74568 19 sequence_conflict Different sources report differing sequences. 97828 0 0 74569 19 small_subunit_rRNA Ribosomal RNA transcript that structures the small subunit of the ribosome. 97830 0 0 74570 19 transcript An RNA synthesized on a DNA or RNA template by an RNA polymerase. 97831 0 0 74571 19 S_GNA_oligo An oligo composed of (S)-GNA residues. 97832 0 0 74572 19 transcript_bound_by_nucleic_acid A transcript that is bound by a nucleic acid. 97833 0 0 74573 19 foreign An attribute to describe a region from another species. 97834 0 0 74582 19 tasiRNA The sequence of a 21 nucleotide double stranded, polyadenylated non coding RNA, transcribed from the TAS gene. 97844 0 0 74583 19 protein_protein_contact A binding site that, in the protein molecule, interacts selectively and non-covalently with polypeptide residues. 97846 0 0 74584 19 trans_spliced An attribute describing transcript sequence that is created by splicing exons from diferent genes. 97849 0 0 74585 19 status An attribute describing the status of a feature, based on the available evidence. 97850 0 0 74586 19 ARS A sequence that can autonomously replicate, as a plasmid, when transformed into a bacterial host. 97851 0 0 74587 19 interchromosomal_mutation A chromosomal structure variation whereby more than one chromosome is involved. 97852 0 0 74588 19 group_IIB_intron \N 97853 0 0 74589 19 beta_turn_right_handed_type_two Right handed type II:A motif of four consecutive residues that may contain one H-bond, which, if present, is between the main-chain CO of the first residue and the main-chain NH of the fourth. It is characterized by the dihedral angles: Residue(i+1): -140 degrees < phi < -20 degrees, +80 degrees < psi < +180 degrees. Residue(i+2): +20 degrees < phi < +140 degrees, -40 degrees < psi < +90 degrees. 97854 0 0 74590 19 clip Part of the primary transcript that is clipped off during processing. 97856 0 0 74591 19 regulated An attribute to describe a sequence that is regulated. 97857 0 0 74592 19 junction A sequence_feature with an extent of zero. 97858 0 0 74593 19 three_two_prime_O_dimethyluridine 3_2prime_O_dimethyluridine is a modified uridine base feature. 97859 0 0 74594 19 gene_class (obsolete SO:0000009) \N 97860 1 0 74595 19 membrane_peptide_loop Polypeptide region localized within the lipid bilayer where both ends traverse the same membrane. 97861 0 0 74596 19 N2_N2_dimethylguanosine N2_N2_dimethylguanosine is a modified guanosine base feature. 97863 0 0 74597 19 gene_silenced_by_histone_deacetylation A gene that is silenced by histone deacetylation. 97864 0 0 74598 19 RNApol_I_promoter A DNA sequence in eukaryotic DNA to which RNA polymerase I binds, to begin transcription. 97865 0 0 74599 19 three_prime_EST An EST read from the 3' end of a transcript. They are more likely to fall within non-coding, or untranslated regions(UTRs). 97866 0 0 74600 19 modified_L_phenylalanine A post translationally modified phenylalanine amino acid feature. 97867 0 0 74602 19 recursive_splice_site A recursive splice site is a splice site which subdivides a large intron. Recursive splicing is a mechanism that splices large introns by sub dividing the intron at non exonic elements and alternate exons. 97869 0 0 74603 19 five_methoxycarbonylmethyl_two_prime_O_methyluridine Five_methoxycarbonylmethyl_2_prime_O_methyluridine is a modified uridine base feature. 97871 0 0 74604 19 alanine \N 97872 0 0 74605 19 inframe_variant A sequence variant which does not cause a disruption of the translational reading frame. 97873 0 0 74606 19 transgene_attribute (obsolete SO:0000452) \N 97874 1 0 74607 19 transition Change of a pyrimidine nucleotide, C or T, into an other pyrimidine nucleotide, or change of a purine nucleotide, A or G, into an other purine nucleotide. 97875 0 0 74608 19 engineered_episome An episome that is engineered. 97876 0 0 74609 19 polypeptide_post_translational_processing_variant A sequence variant that causes a change in post translational processing of the peptide with respect to a reference sequence. 97877 0 0 74610 19 DNA_transposon A transposon where the mechanism of transposition is via a DNA intermediate. 97878 0 0 74611 19 protein_hmm_match A match to a protein HMM such as pfam. 97879 0 0 74612 19 H2B_ubiquitination_site A histone modification site on H2B where ubiquitin may be added. 97880 0 0 74613 19 negative_sense_ssRNA_viral_sequence A negative_sense_RNA_viral_sequence is a ss_RNA_viral_sequence that is the sequence of a single stranded RNA virus that is complementary to mRNA and must be converted to positive sense RNA by RNA polymerase before translation. 97881 0 0 74614 19 five_prime_UTR A region at the 5' end of a mature transcript (preceding the initiation codon) that is not translated into a protein. 97882 0 0 74615 19 allelically_excluded_gene A gene that is allelically_excluded. 97883 0 0 74616 19 engineered_rescue_region A rescue region that is engineered. 97884 0 0 74617 19 recoding_stimulatory_region A site in an mRNA sequence that stimulates the recoding of a region in the same mRNA. 97885 0 0 74618 19 J_spacer 12 or 23 nucleotide spacer between the J-nonamer and the J-heptamer of a J-gene recombination feature of an immunoglobulin/T-cell receptor gene. 97887 0 0 74619 19 plastid_sequence \N 97888 0 0 74620 19 three_prime_intron \N 97889 0 0 74621 19 DNA_sequence_secondary_structure A folded DNA sequence. 97890 0 0 74846 19 V_VJ_cluster Genomic DNA of immunoglobulin/T-cell receptor gene in rearranged configuration including at least one V-gene and one VJ-gene. 98155 0 0 74622 19 class_II_RNA Small non-coding RNA (59-60 nt long) containing 5' and 3' ends that are predicted to come together to form a stem structure. Identified in the social amoeba Dictyostelium discoideum and localized in the cytoplasm. 97891 0 0 74623 19 phenylalanine \N 97893 0 0 74624 19 modified_L_valine A post translationally modified valine amino acid feature. 97894 0 0 74625 19 codon_variant A sequence variant that changes at least one base in a codon. 97895 0 0 74626 19 modified_L_threonine A post translationally modified threonine amino acid feature. 97896 0 0 74627 19 nuclear_sequence \N 97897 0 0 74628 19 U4_snRNA U4 small nuclear RNA (U4 snRNA) is a component of the major U2-dependent spliceosome. It forms a duplex with U6, and with each splicing round, it is displaced from U6 (and the spliceosome) in an ATP-dependent manner, allowing U6 to refold and create the active site for splicing catalysis. A recycling process involving protein Prp24 re-anneals U4 and U6. 97898 0 0 74629 19 non_protein_coding \N 97900 0 0 74630 19 possible_base_call_error A region of sequence where the validity of the base calling is questionable. 97901 0 0 74631 19 recoded_codon A codon that has been redefined at translation. The redefinition may be as a result of translational bypass, translational frameshifting or stop codon readthrough. 97902 0 0 74632 19 polypeptide_binding_motif A polypeptide binding motif is a short (up to 20 amino acids) polypeptide region of biological interest that contains one or more amino acids experimentally shown to bind to a ligand. 97903 0 0 74633 19 pericentric_inversion A chromosomal inversion that includes the centromere. 97904 0 0 74634 19 consensus_region \N 97905 0 0 77150 46 entry number \N 210053 0 0 74635 19 phenylalanine_tRNA_primary_transcript A primary transcript encoding phenylalanyl tRNA (SO:0000267). 97906 0 0 74636 19 predicted An attribute describing an unverified region. 97907 0 0 74637 19 RNA_polymerase_III_TATA_box A TATA box core promoter of a gene transcribed by RNA polymerase III. 97908 0 0 74638 19 three_methylcytidine 3-methylcytidine is a modified cytidine. 97909 0 0 74639 19 paternal_uniparental_disomy Uniparental disomy is a sequence_alteration where a diploid individual receives two copies for all or part of a chromosome from the father and no copies of the same chromosome or region from the mother. 97910 0 0 74640 19 non_coding_exon_variant A sequence variant that changes non-coding exon sequence. 97912 0 0 74641 19 metabolic_island A transmissible element containing genes involved in metabolism, analogous to the pathogenicity islands of gram negative bacteria. 97913 0 0 74642 19 arginine \N 97914 0 0 74643 19 prolyl_tRNA A tRNA sequence that has a proline anticodon, and a 3' proline binding region. 97915 0 0 74644 19 right_handed_peptide_helix A right handed helix is a region of peptide where the coiled conformation turns in a clockwise, right handed screw. 97916 0 0 74645 19 gene_to_gene_feature \N 97918 0 0 74646 19 complex_change_in_transcript A transcript variant with a complex INDEL- Insertion or deletion that spans an exon/intron border or a coding sequence/UTR border. 97919 0 0 74647 19 sequence_variant_obs (obsolete SO:0000109) A sequence_variant is a non exact copy of a sequence_feature or genome exhibiting one or more sequence_alteration. 97921 1 0 74648 19 inversion_derived_bipartite_duplication A chromosome generated by recombination between two inversions; there is a duplication at each end of the inversion. 97922 0 0 77346 61 Wb Weber. Unit of magnetic flux. 212507 0 0 74649 19 targeting_vector An engineered vector that is able to take part in homologous recombination in a host with the intent of introducing site specific genomic modifications. 97923 0 0 74650 19 histone_ubiqitination_site A histone modification site where ubiquitin may be added. 97926 0 0 74651 19 U4atac_snRNA An snRNA required for the splicing of the minor U12-dependent class of eukaryotic nuclear introns. It forms a base paired complex with U6atac_snRNA (SO:0000397). 97927 0 0 74652 19 external_transcribed_spacer_region Non-coding regions of DNA that precede the sequence that codes for the ribosomal RNA. 97929 0 0 74653 19 non_capped_primary_transcript (obsolete SO:0000106) \N 97930 1 0 74654 19 catmat_left_handed_four A motif of 4 consecutive residues with dihedral angles as follows: res i: phi -90 bounds -120 to -60, res i psi -10 bounds -50 to 30, res i+1: phi -90 bounds -120 to -60, res i+1: psi -10 bounds -50 to 30, res i+2: phi -75 bounds -100 to -50, res i+2: psi 140 bounds 110 to 170. The extra restriction of the length of the O to O distance is similar, that it be less than 5 Angstrom. In this case these two Oxygen atoms are the main chain carbonyl oxygen atoms of residues i-1 and i+2. 97931 0 0 74655 19 DHU_loop Non-base-paired sequence of nucleotide bases in tRNA. It contains several dihydrouracil residues. 97932 0 0 74656 19 H3K79_trimethylation_site A kind of histone modification site, whereby the 79th residue (a lysine), from the start of the H3 histone protein is tri-methylated. 97934 0 0 74657 19 insertion_breakpoint The point within a chromosome where a insertion begins or ends. 97935 0 0 74658 19 snoRNA_primary_transcript A primary transcript encoding a small nucleolar mRNA (SO:0000275). 97936 0 0 74659 19 replicon A region containing at least one unique origin of replication and a unique termination site. 97937 0 0 74660 19 transcription_regulatory_region A regulatory region that is involved in the control of the process of transcription. 97939 0 0 74661 19 stop_codon_readthrough (obsolete SO:1001267) \N 97940 1 0 74662 19 silenced_by_histone_deacetylation An attribute describing an epigenetic process where a gene is inactivated by histone deacetylation. 97941 0 0 74663 19 silent_mutation A sequence variant that does not affect protein function. Silent mutations may occur in genic ( CDS, UTR, intron etc) and intergenic regions. Silent mutations may have affects on processes such as splicing and regulation. 97942 0 0 74664 19 transcript_sequence_variant (obsolete SO:0001579) \N 97943 1 0 74665 19 orphan \N 97944 0 0 74666 19 specific_recombination_site \N 97945 0 0 74667 19 sequence_secondary_structure A folded sequence. 97946 0 0 74669 19 centromere_DNA_Element_III A centromere DNA Element I (CDEI) is a conserved region, part of the centromere, consisting of a consensus region that consists of a 25-bp which enables binding by the centromere DNA binding factor 3 (CBF3) complex. 97948 0 0 74670 19 H3K79_methylation_site A kind of histone modification site, whereby the 79th residue (a lysine), from the start of the H3 histone protein is methylated. 97950 0 0 74671 19 RNApol_III_promoter_type_2 \N 97951 0 0 74672 19 PAC_clone (obsolete SO:0000762) \N 97952 1 0 74673 19 tmRNA_encoding \N 97953 0 0 74674 19 sequence_variant_causing_amino_acid_coding_codon_change_in_transcript (obsolete SO:1000056) The DNA mutation affects the amino acid coding sequence of a gene; this region includes both the initiator and terminator codons. 97954 1 0 74675 19 clone_end A read from an end of the clone sequence. 97955 0 0 74676 19 inverted A quality of an insertion where the insert is in a cytologically inverted orientation. 97956 0 0 74679 19 conformational_switch A region of a polypeptide, involved in the transition from one conformational state to another. 97959 0 0 74680 19 chromosome_structure_variation \N 97960 0 0 74681 19 sequence_alteration A sequence_alteration is a sequence_feature whose extent is the deviation from another sequence. 97961 0 0 74682 19 status_of_coding_sequence (obsolete SO:1001255) \N 97964 1 0 74683 19 genomic_DNA_read A sequencer read of a genomic DNA substrate. 97965 0 0 74684 19 tRNA_region A region of a tRNA. 97966 0 0 74685 19 plasmid_clone (obsolete SO:0000759) \N 97967 1 0 74686 19 operator A regulatory element of an operon to which activators or repressors bind thereby effecting translation of genes in that operon. 97968 0 0 74687 19 sequence_variant_decreasing_transcript_stability (obsolete SO:1000084) Sequence variant decreases the stability (half-life) of the transcript. 97969 1 0 74688 19 compensatory_transcript_secondary_structure_variant A secondary structure variant that compensate for the change made by a previous variant. 97970 0 0 74689 19 class_I_RNA Small non-coding RNA (55-65 nt long) containing highly conserved 5' and 3' ends (16 and 8 nt, respectively) that are predicted to come together to form a stem structure. Identified in the social amoeba Dictyostelium discoideum and localized in the cytoplasm. 97971 0 0 74690 19 nested_transposon (obsolete SO:0001053) \N 97972 1 0 74691 19 low_complexity \N 97973 0 0 74692 19 RNApol_III_promoter_type_3 \N 97974 0 0 74693 19 nuclease_binding_site A binding site that, of a nucleotide molecule, that interacts selectively and non-covalently with polypeptide residues of a nuclease. 97975 0 0 74694 19 trans_splice_junction The boundary between the spliced leader and the first exon of the mRNA. 97976 0 0 74695 19 polyA_signal_sequence The recognition sequence necessary for endonuclease cleavage of an RNA transcript that is followed by polyadenylation; consensus=AATAAA. 97977 0 0 74696 19 sequence_variant_affecting_splice_donor (obsolete SO:1000072) A sequence_variant_effect that changes the splice donor sequence. 97978 1 0 74697 19 mitochondrial_DNA \N 97979 0 0 74698 19 viral_sequence The region of nucleotide sequence of a virus, a submicroscopic particle that replicates by infecting a host cell. 97980 0 0 74699 19 trans_splice_acceptor_site The 3' splice site of the acceptor primary transcript. 97981 0 0 74701 19 scRNA_gene \N 97983 0 0 74702 19 finished_genome The status of a whole genome sequence, with less than 1 error per 100,000 base pairs. 97984 0 0 74703 19 alternate_sequence_site Description of sequence variants produced by alternative splicing, alternative promoter usage, alternative initiation and ribosomal frameshifting. 97985 0 0 74704 19 core_promoter_element \N 97988 0 0 74705 19 predicted_ab_initio_computation (obsolete SO:0000310) \N 97989 1 0 74706 19 five_hydroxymethylcytidine 5-hydroxymethylcytidine is a modified cytidine. 97990 0 0 74707 19 sequence_variant_affecting_polypeptide_amino_acid_sequence (obsolete SO:1000105) \N 97991 1 0 74708 19 selenocysteinyl_tRNA A tRNA sequence that has a selenocysteine anticodon, and a 3' selenocysteine binding region. 97992 0 0 74709 19 plus_1_frameshift A frameshift caused by inserting one base. 97993 0 0 74710 19 active_peptide Active peptides are proteins which are biologically active, released from a precursor molecule. 97994 0 0 74711 19 primer An oligo to which new deoxyribonucleotides can be added by DNA polymerase. 97996 0 0 74712 19 anchor_binding_site \N 97997 0 0 74713 19 N2_2_prime_O_dimethylguanosine N2_2prime_O_dimethylguanosine is a modified guanosine base feature. 97998 0 0 74714 19 glutamine_tRNA_primary_transcript A primary transcript encoding glutamyl tRNA (SO:0000260). 97999 0 0 74715 19 amino_acid A sequence feature that corresponds to a single amino acid residue in a polypeptide. 98000 0 0 74716 19 splice_donor_5th_base_variant A sequence variant that causes a change at the 5th base pair after the start of the intron in the orientation of the transcript. 98001 0 0 74717 19 DJ_J_cluster Genomic DNA of immunoglobulin/T-cell receptor gene in rearranged configuration including at least one DJ-gene, and one J-gene. 98002 0 0 74718 19 clone_insert_start The start of the clone insert. 98003 0 0 74719 19 clone A piece of DNA that has been inserted in a vector so that it can be propagated in a host bacterium or some other organism. 98004 0 0 74720 19 sequence_variant_causing_polypeptide_elongation (obsolete SO:1000099) The extension of the translational product at either (or both) the N-terminus and/or the C-terminus. 98005 1 0 74721 19 antisense_RNA Antisense RNA is RNA that is transcribed from the coding, rather than the template, strand of DNA. It is therefore complementary to mRNA. 98006 0 0 74847 19 serine \N 98156 0 0 76478 39 date \N 209375 0 0 74722 19 three_prime_stem_loop_structure A recoding stimulatory region, the stem-loop secondary structural element is downstream of the redefined region. 98007 0 0 74723 19 DPE1_motif A promoter motif with consensus sequence CGGACGT. 98008 0 0 74724 19 V_VDJ_cluster Genomic DNA of immunoglobulin/T-cell receptor gene in rearranged configuration including at least one V-gene and one VDJ-gene. 98009 0 0 74725 19 sequence_variant_causing_synonymous_codon_change_in_transcript (obsolete SO:1000057) The changed codon has the same translation product as the original codon. 98010 1 0 74726 19 repetitive_element (obsolete SO:0000292) \N 98011 1 0 74727 19 restriction_enzyme_recognition_site The nucleotide region (usually a palindrome) that is recognized by a restriction enzyme. This may or may not be equal to the restriction enzyme binding site. 98012 0 0 74728 19 plus_1_translational_frameshift The region of mRNA 1 base long that is skipped during the process of translational frameshifting (GO:0006452), causing the reading frame to be different. 98013 0 0 74729 19 oriC An origin of bacterial chromosome replication. 98014 0 0 74730 19 retinoic_acid_responsive_element A transcription factor binding site of variable direct repeats of the sequence PuGGTCA spaced by five nucleotides (DR5) found in the promoters of retinoic acid-responsive genes, to which retinoic acid receptors bind. 98015 0 0 74731 19 reverse_Hoogsteen_base_pair A type of non-canonical base-pairing. 98016 0 0 74732 19 morpholino_backbone An attribute describing a sequence composed of nucleobases bound to a morpholino backbone. A morpholino backbone consists of morpholine (CHEBI:34856) rings connected by phosphorodiamidate linkages. 98017 0 0 74733 19 linear_single_stranded_RNA_chromosome Structural unit composed of a self-replicating, single-stranded, linear RNA molecule. 98018 0 0 74734 19 intronic_splice_enhancer Sequences within the intron that modulate splice site selection for some introns. 98019 0 0 74735 19 mRNA_attribute An attribute describing an mRNA feature. 98020 0 0 74736 19 U3_five_prime_LTR_region \N 98021 0 0 74737 19 polypeptide_fusion A sequence variant that causes a fusion of two polypeptide sequences. 98022 0 0 74738 19 antisense_primary_transcript The reverse complement of the primary transcript. 98023 0 0 74911 19 aspartyl_tRNA A tRNA sequence that has an aspartic acid anticodon, and a 3' aspartic acid binding region. 98229 0 0 74739 19 serine_threonine_turn A motif of three consecutive residues and one H-bond in which: residue(i) is Serine (S) or Threonine (T), the side-chain O of residue(i) is H-bonded to the main-chain NH of residue(i+2). 98024 0 0 74740 19 variant_phenotype A quality inhering in a variant by virtue of its phenotype. 98026 0 0 74741 19 H3K14_acetylation_site A kind of histone modification site, whereby the 14th residue (a lysine), from the start of the H3 histone protein is acylated. 98027 0 0 74742 19 mirtron A de-branched intron which mimics the structure of pre-miRNA and enters the miRNA processing pathway without Drosha mediated cleavage. 98028 0 0 74743 19 pseudogenic_transcript A non functional descendant of a transcript, part of a pseudogene. 98030 0 0 74744 19 DNA_motif A motif that is active in the DNA form of the sequence. 98031 0 0 74745 19 mRNA_by_polyadenylation_status (obsolete SO:0000245) \N 98032 1 0 74746 19 minicircle_gene \N 98033 0 0 74747 19 matrix_attachment_site A DNA region that is required for the binding of chromatin to the nuclear matrix. 98034 0 0 74748 19 loss_of_heterozygosity \N 98035 0 0 74749 19 increased_transcription_rate_variant A sequence variant that increases the rate of transcription with respect to a reference sequence. 98036 0 0 74750 19 haplotype A haplotype is one of a set of coexisting sequence variants of a haplotype block. 98037 0 0 74751 19 rho_independent_bacterial_terminator \N 98038 0 0 74752 19 three_prime_UTR_intron An intron located in the 3' UTR. 98039 0 0 74753 19 VDJ_J_cluster Genomic DNA of immunoglobulin/T-cell receptor gene in rearranged configuration including at least one VDJ-gene and one J-gene. 98040 0 0 74754 19 protein_binding_site A binding site that, in the molecule, interacts selectively and non-covalently with polypeptide molecules. 98041 0 0 74755 19 gene_subarray A subarray is, by defintition, a member of a gene array (SO:0005851); the members of a subarray may differ substantially in sequence, but are closely related in function. 98042 0 0 74756 19 imprinted Imprinted genes are epigenetically modified genes that are expressed monoallelically according to their parent of origin. 98043 0 0 74757 19 five_methoxycarbonylmethyluridine Five_methoxycarbonylmethyluridine is a modified uridine base feature. 98044 0 0 74758 19 gene_trap_construct A gene trap construct is a type of engineered plasmid which is designed to integrate into a genome and produce a fusion transcript between exons of the gene into which it inserts and a reporter element in the construct. Gene traps contain a splice acceptor, do not contain promoter elements for the reporter, and are mutagenic. Gene traps may be bicistronic with the second cassette containing a promoter driving an a selectable marker. 98045 0 0 74759 19 primer_binding_site Non-covalent primer binding site for initiation of replication, transcription, or reverse transcription. 98046 0 0 74760 19 flanking_region The sequences extending on either side of a specific region. 98047 0 0 74761 19 histone_modification Histone modification is a post translationally modified region whereby residues of the histone protein are modified by methylation, acetylation, phosphorylation, ubiquitination, sumoylation, citrullination, or ADP-ribosylation. 98048 0 0 74762 19 UGA_stop_codon_signal A stop codon signal for a UGA stop codon redefinition. 98050 0 0 74763 19 sarcin_like_RNA_motif A loop in ribosomal RNA containing the sites of attack for ricin and sarcin. 98051 0 0 74764 19 polycistronic_mRNA An mRNA that encodes multiple proteins from at least two non-overlapping regions. 98053 0 0 74802 19 encodes_overlapping_peptides A gene that is alternately spliced, and encodes more than one polypeptide, that have overlapping peptide sequences. 98100 0 0 74803 19 five_prime_recoding_site The recoding stimulatory signal located upstream of the recoding site. 98101 0 0 74765 19 H_ACA_box_snoRNA Members of the box H/ACA family contain an ACA triplet, exactly 3 nt upstream from the 3' end and an H-box in a hinge region that links two structurally similar functional domains of the molecule. Both boxes are important for snoRNA biosynthesis and function. A few box H/ACA snoRNAs are involved in rRNA processing; most others are known or predicted to participate in selection of uridine nucleosides in rRNA to be converted to pseudouridines. Site selection is mediated by direct base pairing of the snoRNA with rRNA through one or both targeting domains. 98054 0 0 74766 19 polyA_primed_cDNA_clone A cDNA clone invalidated by polyA priming. 98056 0 0 74767 19 PCR_product A region amplified by a PCR reaction. 98057 0 0 74768 19 codon A set of (usually) three nucleotide bases in a DNA or RNA sequence, which together code for a unique amino acid or the termination of translation and are contained within the CDS. 98058 0 0 74769 19 DRE_motif A sequence element characteristic of some RNA polymerase II promoters, usually located between -10 and -60 relative to the TSS. Consensus sequence is WATCGATW. 98060 0 0 74770 19 coding_start The first base to be translated into protein. 98062 0 0 74771 19 macronuclear_sequence \N 98063 0 0 74772 19 edited_transcript_feature A locatable feature on a transcript that is edited. 98064 0 0 74773 19 plasmid_gene A gene from plasmid sequence. 98065 0 0 74774 19 direct_tandem_duplication A tandem duplication where the individual regions are in the same orientation. 98066 0 0 74775 19 allopolyploid A polyploid where the multiple chromosome set was derived from a different organism. 98067 0 0 74776 19 inverted_interchromosomal_transposition An interchromosomal transposition whereby a copy of the segment between the first two breaks listed is inserted at the third break; the insertion is in cytologically inverted orientation with respect to its flanking segment. 98068 0 0 74777 19 asx_turn_left_handed_type_two Left handed type II (dihedral angles):- Residue(i): -140 degrees < chi (1) -120 degrees < -20 degrees, +80 degrees < psi +120 degrees < +180 degrees. Residue(i+1): +20 degrees < phi < +140 degrees, -40 degrees < psi < +90 degrees. 98069 0 0 74778 19 V_VJ_C_cluster Genomic DNA of immunoglobulin/T-cell receptor gene in rearranged configuration including at least one V-gene, one VJ-gene and one C-gene. 98071 0 0 74779 19 assembly_error_correction A region of sequence where the final nucleotide assignment differs from the original assembly due to an improvement that replaces a mistake. 98072 0 0 74912 19 transcript_stability_variant A variant that changes the stability of a transcript with respect to a reference sequence. 98230 0 0 74780 19 vault_RNA A family of RNAs are found as part of the enigmatic vault ribonucleoprotein complex. The complex consists of a major vault protein (MVP), two minor vault proteins (VPARP and TEP1), and several small untranslated RNA molecules. It has been suggested that the vault complex is involved in drug resistance. 98073 0 0 74781 19 parallel_beta_strand A peptide region which hydrogen bonded to another region of peptide running in the oposite direction (both running N-terminal to C-terminal). This orientation is slightly less stable because it introduces nonplanarity in the inter-strand hydrogen bonding pattern. Hydrogen bonding occurs between every other C=O from one strand to every other N-H on the adjacent strand. In this case, if two atoms C-alpha (i)and C-alpha (j) are adjacent in two hydrogen-bonded beta strands, then they do not hydrogen bond to each other; rather, one residue forms hydrogen bonds to the residues that flank the other (but not vice versa). For example, residue i may form hydrogen bonds to residues j - 1 and j + 1; this is known as a wide pair of hydrogen bonds. By contrast, residue j may hydrogen-bond to different residues altogether, or to none at all. The dihedral angles (phi, psi) are about (-120 degrees, 115 degrees) in parallel sheets. 98075 0 0 74782 19 SRP_RNA_primary_transcript A primary transcript encoding a signal recognition particle RNA. 98077 0 0 74783 19 beta_bulge A motif of three residues within a beta-sheet in which the main chains of two consecutive residues are H-bonded to that of the third, and in which the dihedral angles are as follows: Residue(i): -140 degrees < phi(l) -20 degrees , -90 degrees < psi(l) < 40 degrees. Residue (i+1): -180 degrees < phi < -25 degrees or +120 degrees < phi < +180 degrees, +40 degrees < psi < +180 degrees or -180 degrees < psi < -120 degrees. 98078 0 0 74784 19 sequence_variation_increasing_level_of_transcript (obsolete SO:1000087) A sequence_variation that causes an increase in the level of mature, spliced and processed RNA, resulting from a change in the corresponding DNA sequence. 98080 1 0 74785 19 double_stranded_cDNA \N 98081 0 0 74786 19 sequence_variant_causing_cryptic_splice_activation (obsolete SO:1000074) A sequence variant causing a new (functional) splice site. 98082 1 0 74787 19 RNApol_III_promoter_type_2_region (obsolete SO:0000846) A region of sequence which is a promoter for RNA polymerase III type 2. 98083 1 0 74788 19 GcvB_RNA A small untranslated RNA involved in expression of the dipeptide and oligopeptide transport systems in Escherichia coli. 98084 0 0 74789 19 transposable_element_flanking_region The region of sequence surrounding a transposable element. 98086 0 0 74790 19 two_methylthio_N6_cis_hydroxyisopentenyl_adenosine 2_methylthio_N6_cis_hydroxyisopentenyl_adenosine is a modified adenosine. 98087 0 0 74791 19 vertebrate_immune_system_gene_recombination_spacer \N 98088 0 0 74792 19 cleaved_peptide_region The cleaved_peptide_regon is the a region of peptide sequence that is cleaved during maturation. 98089 0 0 74793 19 guide_RNA_region A region of guide RNA. 98090 0 0 74794 19 membrane_structure Arrangement of the polypeptide with respect to the lipid bilayer. 98091 0 0 74795 19 free_ring_duplication A ring chromosome which is a copy of another chromosome. 98093 0 0 74796 19 H4K5_acylation_site A kind of histone modification site, whereby the 5th residue (a lysine), from the start of the H4 histone protein is acylated. 98094 0 0 74797 19 fosmid A cloning vector that utilizes the E. coli F factor. 98095 0 0 74798 19 cyanelle_chromosome A chromosome originating in a cyanelle. 98096 0 0 74799 19 internal_ribosome_entry_site Sequence element that recruits a ribosomal subunit to internal mRNA for translation initiation. 98097 0 0 74800 19 RNA_sequence_secondary_structure A folded RNA sequence. 98098 0 0 74801 19 three_prime_D_spacer A 12 or 23 nucleotide spacer between the 3'D-HEPTAMER and 3'D-NONAMER of a 3'D-RS. 98099 0 0 74804 19 PAC The P1-derived artificial chromosome are DNA constructs that are derived from the DNA of P1 bacteriophage. They can carry large amounts (about 100-300 kilobases) of other sequences for a variety of bioengineering purposes. It is one type of vector used to clone DNA fragments (100- to 300-kb insert size; average, 150 kb) in Escherichia coli cells. 98102 0 0 74805 19 N2_7_dimethylguanosine N2_7_dimethylguanosine is a modified guanosine base feature. 98104 0 0 74806 19 gene_with_dicistronic_primary_transcript A gene that encodes a dicistronic primary transcript. 98105 0 0 74807 19 transcript_edited_by_U_insertion/deletion (obsolete SO:0000597) The insertion and deletion of uridine (U) residues, usually within coding regions of mRNA transcripts of cryptogenes in the mitochondrial genome of kinetoplastid protozoa. 98106 1 0 74808 19 inversion_derived_deficiency_plus_duplication A chromosome deletion whereby a chromosome is generated by recombination between two inversions; there is a deficiency at one end of the inversion and a duplication at the other end of the inversion. 98108 0 0 74942 19 plus_1_translationally_frameshifted An attribute describing a translational frameshift of +1. 98264 0 0 74809 19 unoriented_intrachromosomal_transposition An intrachromosomal transposition whereby the segment between the first two breaks listed is removed and inserted at the third break; the orientation of the insertion with respect to its flanking segments is not recorded. 98109 0 0 74810 19 reference_genome A collection of sequences (often chromosomes) taken as the standard for a given organism and genome assembly. 98110 0 0 74811 19 polypeptide_sequencing_information Incompatibility in the sequence due to some experimental problem. 98111 0 0 74812 19 H3K9_monomethylation_site A kind of histone modification site, whereby the 9th residue (a lysine), from the start of the H3 histone protein is mono-methylated. 98113 0 0 74813 19 two_prime_O_methylpseudouridine 2prime_O_methylpseudouridine is a modified uridine base feature. 98114 0 0 74814 19 restriction_enzyme_single_strand_overhang A terminal region of DNA sequence where the end of the region is not blunt ended. 98115 0 0 74815 19 nucleomorphic_sequence \N 98116 0 0 74816 19 G_to_C_transversion A transversion from guanine to cytidine. 98117 0 0 74817 19 polypeptide_catalytic_motif A polypeptide catalytic motif is a short (up to 20 amino acids) polypeptide region that contains one or more active site residues. 98118 0 0 74818 19 repeat_family (obsolete SO:0000187) A group of characterized repeat sequences. 98119 1 0 74819 19 kozak_sequence A kind of ribosome entry site, specific to Eukaryotic organisms that overlaps part of both 5' UTR and CDS sequence. 98120 0 0 77151 46 acquisition date \N 210054 0 0 74820 19 mobile_intron An intron (mitochondrial, chloroplast, nuclear or prokaryotic) that encodes a double strand sequence specific endonuclease allowing for mobility. 98121 0 0 74821 19 linkage_group A group of loci that can be grouped in a linear order representing the different degrees of linkage among the genes concerned. 98122 0 0 74822 19 rescue_region A region that rescues. 98124 0 0 74823 19 stem_loop A double-helical region of nucleic acid formed by base-pairing between adjacent (inverted) complementary sequences. 98125 0 0 74824 19 MNP A multiple nucleotide polymorphism with alleles of common length > 1, for example AAA/TTT. 98127 0 0 74825 19 SL4_acceptor_site A SL2_acceptor_site which appends the SL4 RNA leader sequence to the 5' end of an mRNA. SL4 acceptor sites occur in genes in internal segments of polycistronic transcripts. 98129 0 0 74870 19 compound_chromosome A chromosome structure variant where a monocentric element is caused by the fusion of two chromosome arms. 98185 0 0 74826 19 GNA An attribute describing a sequence consisting of nucleobases attached to a repeating unit made of an acyclic three-carbon propylene glycol connected to a phosphate backbone. It has two enantiomeric forms, (R)-GNA and (S)-GNA. 98130 0 0 74827 19 group_III_intron Group III introns are introns found in the mRNA of the plastids of euglenoid protists. They are spliced by a two step transesterification with bulged adenosine as initiating nucleophile. 98132 0 0 74828 19 lysine \N 98133 0 0 74829 19 gRNA_gene \N 98134 0 0 74830 19 J_heptamer 7 nucleotide recombination site (e.g. CACAGTG), part of a J-gene recombination feature of an immunoglobulin/T-cell receptor gene. 98135 0 0 74831 19 inverted_ring_chromosome \N 98136 0 0 74832 19 edited_transcript A transcript that is edited. 98137 0 0 74833 19 prophage A phage genome after it has established in the host genome in a latent/immune state either as a plasmid or as an integrated "island". 98138 0 0 74834 19 five_carboxymethyluridine 5_carboxymethyluridine is a modified uridine base feature. 98139 0 0 74835 19 nuclear_localization_signal A polypeptide region that targets a polypeptide to the nucleus. 98140 0 0 74836 19 C_to_G_transversion \N 98141 0 0 74837 19 intramembrane_polypeptide_region Polypeptide region present in the lipid bilayer. 98142 0 0 74838 19 sequence_feature_locating_method (obsolete SO:0000308) \N 98144 1 0 74839 19 inverted_repeat The sequence is complementarily repeated on the opposite strand. It is a palindrome, and it may, or may not be hyphenated. Examples: GCTGATCAGC, or GCTGA-----TCAGC. 98145 0 0 74840 19 double \N 98146 0 0 74841 19 pseudogenic_gene_segment A gene segment which when incorporated by somatic recombination in the final gene transcript results in a nonfunctional product. 98147 0 0 74842 19 sequence_variant_causing_plus_1_frameshift_mutation (obsolete SO:1000066) A mutation causing a disruption of the translational reading frame, due to the insertion of a nucleotide. 98149 1 0 74843 19 aptamer DNA or RNA molecules that have been selected from random pools based on their ability to bind other molecules. 98150 0 0 74844 19 serine_threonine_staple_motif A motif of four or five consecutive residues and one H-bond in which: residue(i) is Serine (S) or Threonine (T), the side-chain OH of residue(i) is H-bonded to the main-chain CO of residue(i3) or (i4), Phi angles of residues(i1), (i2) and (i3) are negative. 98152 0 0 74845 19 molecular_contact_region A region that is involved a contact with another molecule. 98154 0 0 75131 19 DNA_chromosome Structural unit composed of a self-replicating, DNA molecule. 98469 0 0 74848 19 recombinationally_rearranged_vertebrate_immune_system_gene A recombinationally rearranged gene of the vertebrate immune system. 98157 0 0 74849 19 chromosomal_duplication An extra chromosome. 98158 0 0 74850 19 deletion The point at which one or more contiguous nucleotides were excised. 98159 0 0 74851 19 fosmid_clone (obsolete SO:0000763) \N 98161 1 0 74852 19 non_LTR_retrotransposon A retrotransposon without long terminal repeat sequences. 98162 0 0 74853 19 Hoogsteen_base_pair A type of non-canonical base-pairing. This is less energetically favourable than watson crick base pairing. Hoogsteen GC base pairs only have two hydrogen bonds. 98163 0 0 74854 19 microsatellite A repeat_region containing repeat_units (2 to 4 bp) that is repeated multiple times in tandem. 98165 0 0 74855 19 N4_acetylcytidine N4-acetylcytidine is a modified cytidine. 98167 0 0 74943 19 introgressed_chromosome_region \N 98265 0 0 74856 19 unoriented_insertional_duplication An insertional duplication where a copy of the segment between the first two breaks listed is inserted at the third break; the orientation of the insertion with respect to its flanking segments is not recorded. 98168 0 0 74857 19 silenced An attribute describing an epigenetic process where a gene is inactivated at transcriptional or translational level. 98169 0 0 74858 19 non_canonical_five_prime_splice_site A 5' splice site which does not have the sequence "GT". 98170 0 0 74859 19 peroxywybutosine Peroxywybutosine is a modified guanosine base feature. 98171 0 0 74860 19 nuclear_chromosome A chromosome originating in a nucleus. 98172 0 0 74861 19 transcriptionally_constitutive Expressed in relatively constant amounts without regard to cellular environmental conditions such as the concentration of a particular substrate. 98173 0 0 74862 19 exon_junction The boundary between two exons in a processed transcript. 98174 0 0 74863 19 rescue_gene A gene that rescues. 98175 0 0 74864 19 RprA_RNA Translational regulation of the stationary phase sigma factor RpoS is mediated by the formation of a double-stranded RNA stem-loop structure in the upstream region of the rpoS messenger RNA, occluding the translation initiation site. Clones carrying rprA (RpoS regulator RNA) increased the translation of RpoS. The rprA gene encodes a 106 nucleotide regulatory RNA. As with DsrA Rfam:RF00014, RprA is predicted to form three stem-loops. Thus, at least two small RNAs, DsrA and RprA, participate in the positive regulation of RpoS translation. Unlike DsrA, RprA does not have an extensive region of complementarity to the RpoS leader, leaving its mechanism of action unclear. RprA is non-essential. 98176 0 0 74865 19 kinetoplast A kinetoplast is an interlocked network of thousands of minicircles and tens of maxi circles, located near the base of the flagellum of some protozoan species. 98178 0 0 74866 19 rRNA_cleavage_RNA An ncRNA that is part of a ribonucleoprotein that cleaves the primary pre-rRNA transcript in the process of producing mature rRNA molecules. 98180 0 0 74867 19 insertional_duplication A chromosome duplication involving the insertion of a duplicated region (as opposed to a free duplication). 98182 0 0 74868 19 polyploid A kind of chromosome variation where the chromosome complement is an exact multiple of the haploid number and is greater than the diploid number. 98183 0 0 74869 19 splice_site Consensus region of primary transcript bordering junction of splicing. A region that overlaps exactly 2 base and adjacent_to splice_junction. 98184 0 0 75385 19 proplastid_gene A gene from proplastid sequence. 98770 0 0 74872 19 alanyl_tRNA A tRNA sequence that has an alanine anticodon, and a 3' alanine binding region. 98187 0 0 74873 19 uninverted_intrachromosomal_transposition An intrachromosomal transposition whereby the segment between the first two breaks listed is removed and inserted at the third break; the insertion is in cytologically the same orientation as its flanking segments. 98188 0 0 74874 19 conformational_change_variant A sequence variant in the CDS region that causes a conformational change in the resulting polypeptide sequence. 98189 0 0 74875 19 tryptophanyl_tRNA A tRNA sequence that has a tryptophan anticodon, and a 3' tryptophan binding region. 98190 0 0 74876 19 clone_insert_end The end of the clone insert. 98191 0 0 74877 19 pyrosequenced_read A read produced by pyrosequencing technology. 98192 0 0 74878 19 chromosome_breakage_sequence A sequence within the micronuclear DNA of ciliates at which chromosome breakage and telomere addition occurs during nuclear differentiation. 98193 0 0 74879 19 enhancer_trap_construct An enhancer trap construct is a type of engineered plasmid which is designed to integrate into a genome and express a reporter when the expression from a basic minimal promoter is enhanced by genomic enhancer elements. Enhancer traps contain promoter elements and are not usually mutagenic. 98194 0 0 74880 19 gene_with_polyadenylated_mRNA A gene that encodes a polyadenylated mRNA. 98195 0 0 74881 19 sequence_variation_affecting_reading_frame (obsolete SO:1000064) An umbrella term for terms describing an effect of a sequence variation on the frame of translation. 98196 1 0 74882 19 DNA An attribute describing a sequence consisting of nucleobases bound to a repeating unit made of a 2-deoxy-D-ribose ring connected to a phosphate backbone. 98197 0 0 74883 19 5KB_downstream_variant A sequence variant located within 5 KB of the end of a gene. 98198 0 0 74884 19 edited_mRNA An mRNA that is edited. 98199 0 0 74885 19 attC_site An attC site is a sequence required for the integration of a DNA of an integron. 98200 0 0 74886 19 cap A structure consisting of a 7-methylguanosine in 5'-5' triphosphate linkage with the first nucleotide of an mRNA. It is added post-transcriptionally, and is not encoded in the DNA. 98201 0 0 74887 19 nonamer_of_recombination_feature_of_vertebrate_immune_system_gene \N 98203 0 0 74888 19 disruptive_decrease_in_CDS_length An inframe_decrease_in_cds_length that deletes bases from the coding sequence starting within an existing codon. 98204 0 0 76479 39 operator \N 209376 0 0 74889 19 supported_by_sequence_similarity An attribute to describe a feature that has been predicted using sequence similarity techniques. 98205 0 0 74890 19 valyl_tRNA A tRNA sequence that has a valine anticodon, and a 3' valine binding region. 98206 0 0 74891 19 mRNA_with_minus_1_frameshift An mRNA with a minus 1 frameshift. 98207 0 0 74892 19 non_conservative_amino_acid_substitution A sequence variant of a codon causing the substitution of a non conservative amino acid for another in the resulting polypeptide. 98208 0 0 74893 19 nested_region (obsolete SO:0001051) \N 98209 1 0 74894 19 variant_collection A collection of one or more sequences of an individual. 98210 0 0 74895 19 modified_amino_acid_feature A post translationally modified amino acid feature. 98211 0 0 74941 19 frame_restoring_sequence_variant (obsolete SO:1000110) A mutation that reverts the sequence of a previous frameshift mutation back to the initial frame. 98263 1 0 74944 19 dicistronic_transcript A transcript that is dicistronic. 98266 0 0 74896 19 tmRNA A tmRNA liberates a mRNA from a stalled ribosome. To accomplish this part of the tmRNA is used as a reading frame that ends in a translation stop signal. The broken mRNA is replaced in the ribosome by the tmRNA and translation of the tmRNA leads to addition of a proteolysis tag to the incomplete protein enabling recognition by a protease. Recently a number of permuted tmRNAs genes have been found encoded in two parts. TmRNAs have been identified in eubacteria and some chloroplasts but are absent from archeal and Eukaryote nuclear genomes. 98212 0 0 74897 19 polypeptide_copper_ion_contact_site A binding site that, in the polypeptide molecule, interacts selectively and non-covalently with copper ions. 98214 0 0 74898 19 aberrant_processed_transcript A transcript that has been processed "incorrectly", for example by the failure of splicing of one or more exons. 98216 0 0 74899 19 A_box_type_2 An A box within an RNA polymerase III type 2 promoter. 98217 0 0 74900 19 ds_oligo A double stranded oligonucleotide. 98218 0 0 74901 19 inverted_tandem_duplication A tandem duplication where the individual regions are not in the same orientation. 98219 0 0 74902 19 pseudogene_by_unequal_crossing_over A pseudogene caused by unequal crossing over at recombination. 98220 0 0 74903 19 alternately_spliced_gene_encoding_greater_than_one_transcript (obsolete SO:0000543) \N 98221 1 0 74904 19 gene_sensu_your_favorite_organism (obsolete SO:0000008) \N 98222 1 0 74905 19 sequence_variant_decreasing_level_of_translation_product (obsolete SO:1000103) \N 98223 1 0 74906 19 insert_AA (obsolete SO:0000928) An edit to insert a AA dinucleotide. 98224 1 0 74907 19 insert_GC (obsolete SO:0000924) An edit to insert a GC dinucleotide. 98225 1 0 74908 19 experimentally_determined Attribute to describe a feature that has been experimentally verified. 98226 0 0 74909 19 assortment_derived_deficiency_plus_duplication A multi-chromosome aberration generated by reassortment of other aberration components; presumed to have a deficiency and a duplication. 98227 0 0 74910 19 DCE_SII A sub element of the DCE core promoter element with consensus sequence CTGT. 98228 0 0 75115 19 non_transcribed_region A region of the gene which is not transcribed. 98452 0 0 74913 19 retrotransposed An attribute of a feature that occurred as the product of a reverse transcriptase mediated event. 98231 0 0 74914 19 untranslated_region_polycistronic_mRNA The untranslated sequence separating the 'cistrons' of multicistronic mRNA. 98233 0 0 74915 19 small_regulatory_ncRNA A non-coding RNA, usually with a specific secondary structure, that acts to regulate gene expression. 98234 0 0 74916 19 engineered_tag A tag that is engineered. 98235 0 0 74917 19 coding_exon An exon whereby at least one base is part of a codon (here, 'codon' is inclusive of the stop_codon). 98236 0 0 74918 19 H3K36_trimethylation_site A kind of histone modification site, whereby the 36th residue (a lysine), from the start of the H3 histone protein is tri-methylated. 98237 0 0 74919 19 epigenetically_modified_region A biological region implicated in inherited changes caused by mechanisms other than changes in the underlying DNA sequence. 98238 0 0 74920 19 pyrrolysine \N 98240 0 0 74921 19 UAG_stop_codon_signal A stop codon signal for a UAG stop codon redefinition. 98241 0 0 74922 19 lysyl_tRNA A tRNA sequence that has a lysine anticodon, and a 3' lysine binding region. 98242 0 0 74923 19 chimeric_cDNA_clone A cDNA clone invalidated because it is chimeric. 98243 0 0 74924 19 monocistronic_primary_transcript A primary transcript encoding for one gene product. 98244 0 0 74925 19 sequence_variant_causing_non_synonymous_codon_change_in_transcript (obsolete SO:1000058) A DNA point mutation that causes a substitution of an amino acid by an other. 98245 1 0 74926 19 C_to_T_transition_at_pCpG_site The transition of cytidine to thymine occurring at a pCpG site as a consequence of the spontaneous deamination of 5'-methylcytidine. 98246 0 0 74927 19 SL7_acceptor_site A SL2_acceptor_site which appends the SL7 RNA leader sequence to the 5' end of an mRNA. SL7 acceptor sites occur in genes in internal segments of polycistronic transcripts. 98247 0 0 74928 19 tryptophan_tRNA_primary_transcript A primary transcript encoding tryptophanyl tRNA (SO:000271). 98248 0 0 74929 19 deletion_junction The space between two bases in a sequence which marks the position where a deletion has occurred. 98249 0 0 74930 19 transposable_element_insertion_site The junction in a genome where a transposable_element has inserted. 98250 0 0 74931 19 isoleucine_tRNA_primary_transcript A primary transcript encoding isoleucyl tRNA (SO:0000263). 98251 0 0 74932 19 cross_link (obsolete SO:0001087) Posttranslationally formed amino acid bonds. 98252 1 0 74933 19 modified_L_tryptophan A post translationally modified tryptophan amino acid feature. 98254 0 0 76480 36 training population \N 209377 0 0 74934 19 VJ_C_cluster Genomic DNA of immunoglobulin/T-cell receptor gene in rearranged configuration including at least one VJ-gene and one C-gene. 98255 0 0 74935 19 H4K16_acylation_site A kind of histone modification site, whereby the 16th residue (a lysine), from the start of the H4 histone protein is acylated. 98256 0 0 74936 19 N6_hydroxynorvalylcarbamoyladenosine N6_hydroxynorvalylcarbamoyladenosine is a modified adenosine. 98257 0 0 74937 19 terminator The sequence of DNA located either at the end of the transcript that causes RNA polymerase to terminate transcription. 98258 0 0 74938 19 SECIS_element The incorporation of selenocysteine into a protein sequence is directed by an in-frame UGA codon (usually a stop codon) within the coding region of the mRNA. Selenoprotein mRNAs contain a conserved secondary structure in the 3' UTR that is required for the distinction of UGA stop from UGA selenocysteine. The selenocysteine insertion sequence (SECIS) is around 60 nt in length and adopts a hairpin structure which is sufficiently well-defined and conserved to act as a computational screen for selenoprotein genes. 98259 0 0 74939 19 rRNA_28S A component of the large ribosomal subunit. 98261 0 0 74946 19 cassette_pseudogene A cassette pseudogene is a kind of gene in an inactive form which may recombine at a telomeric locus to form a functional copy. 98268 0 0 74947 19 polypeptide_variation_site A site of sequence variation (alteration). Alternative sequence due to naturally occuring events such as polymorphisms and altermatve splicing or experimental methods such as site directed mutagenesis. 98269 0 0 74948 19 internal_guide_sequence A purine-rich sequence in the group I introns which determines the locations of the splice sites in group I intron splicing and has catalytic activity. 98271 0 0 74949 19 cyanelle_gene A gene from cyanelle sequence. 98272 0 0 74950 19 overlapping An attribute describing a gene that has a sequence that overlaps the sequence of another gene. 98273 0 0 74951 19 mobile An attribute describing a feature that has either intra-genome or intracellular mobility. 98274 0 0 74952 19 coding_end The last base to be translated into protein. It does not include the stop codon. 98275 0 0 74953 19 gene_by_transcript_attribute (obsolete SO:0000064) \N 98276 1 0 74954 19 sequence_variant_causing_complex_change_of_translational_product (obsolete SO:1000092) Any sequence variant effect that is known at nucleotide level but cannot be explained by using other key terms. 98277 1 0 74955 19 three_prime_UST A UST located in the 3'UTR of a protein-coding transcript. 98278 0 0 74956 19 silenced_by_RNA_interference An attribute describing an epigenetic process where a gene is inactivated by RNA interference. 98279 0 0 74957 19 recoded An attribute describing an mRNA sequence that has been reprogrammed at translation, causing localized alterations. 98280 0 0 74958 19 peptide_collection A collection of peptide sequences. 98281 0 0 74959 19 modified_L_serine A post translationally modified serine amino acid feature. 98283 0 0 74960 19 D_gene_recombination_feature \N 98284 0 0 74961 19 centromere_DNA_Element_I A centromere DNA Element I (CDEI) is a conserved region, part of the centromere, consisting of a consensus region composed of 8-11bp which enables binding by the centromere binding factor 1(Cbf1p). 98285 0 0 74962 19 U6atac_snRNA U6atac_snRNA is an snRNA required for the splicing of the minor U12-dependent class of eukaryotic nuclear introns. It forms a base paired complex with U4atac_snRNA (SO:0000394). 98286 0 0 74963 19 five_prime_clip 5' most region of a precursor transcript that is clipped off during processing. 98288 0 0 74964 19 reciprocal \N 98289 0 0 75291 19 methylated_A A modified RNA base in which adenine has been methylated. 98657 0 0 74965 19 polypeptide_nest_motif A motif of two consecutive residues with dihedral angles. Nest should not have Proline as any residue. Nests frequently occur as parts of other motifs such as Schellman loops. 98290 0 0 74966 19 antisense A region sequence that is complementary to a sequence of messenger RNA. 98292 0 0 74967 19 splicing_variant A sequence variant that changes the process of splicing. 98293 0 0 74968 19 blocked_reading_frame A reading_frame that is interrupted by one or more stop codons; usually identified through intergenomic sequence comparisons. 98294 0 0 74969 19 disulfide_bond (obsolete SO:0001088) The covalent bond between sulfur atoms that binds two peptide chains or different parts of one peptide chain and is a structural determinant in many protein molecules. 98295 1 0 74970 19 intein A region of a peptide that is able to excise itself and rejoin the remaining portions with a peptide bond. 98297 0 0 74971 19 dexstrosynaptic_chromosome An autosynaptic chromosome carrying the two right (D = dextro) telomeres. 98298 0 0 74972 19 clone_insert The region of sequence that has been inserted and is being propagated by the clone. 98300 0 0 74973 19 engineered An attribute to describe a region that was modified in vitro. 98301 0 0 74974 19 genome A genome is the sum of genetic material within a cell or virion. 98302 0 0 74975 19 five_prime_LTR \N 98303 0 0 74976 19 inframe An attribute describing a sequence that contains a mutation involving the deletion or insertion of one or more bases, where this number is divisible by 3. 98304 0 0 74977 19 telomerase_RNA_gene A telomerase RNA gene is a non coding RNA gene the RNA product of which is a component of telomerase. 98305 0 0 74978 19 ligation_based_read A read produced by ligation based sequencing technologies. 98306 0 0 74979 19 reverse_primer A single stranded oligo used for polymerase chain reaction. 98307 0 0 74980 19 intermediate An attribute to describe a feature between stages of processing. 98309 0 0 74981 19 PAC_end A region of sequence from the end of a PAC clone that may provide a highly specific marker. 98310 0 0 74982 19 homologous_region A region that is homologous to another region. 98312 0 0 74983 19 KEN_box A conserved polypeptide motif that can be recognized by FZR/Cdh1-activated anaphase-promoting complex/cyclosome (APC/C) and targets a protein for ubiquitination and subsequent degradation by the APC/C. The consensus sequence is KENXXXN. 98313 0 0 74984 19 sequence_variant_causing_gain_of_function_of_polypeptide (obsolete SO:1000125) \N 98317 1 0 74985 19 incomplete_terminal_codon_variant A sequence variant where at least one base of the final codon of an incompletely annotated transcript is changed. 98318 0 0 74986 19 two_prime_O_methyladenosine 2prime_O_methyladenosine is a modified adenosine. 98319 0 0 74987 19 spliced_leader_RNA \N 98320 0 0 74988 19 encodes_overlapping_peptides_different_start A gene that is alternately spliced, and encodes more than one polypeptide, that have overlapping peptide sequences, but use different start codons. 98321 0 0 74989 19 nucleotide_match A match against a nucleotide sequence. 98322 0 0 74990 19 bacterial_RNApol_promoter_region (obsolete SO:0000843) A region which is part of a bacterial RNA polymerase promoter. 98323 1 0 74991 19 CDS_supported_by_EST_or_cDNA_data A CDS that is supported by similarity to EST or cDNA data. 98324 0 0 74992 19 guide_RNA A short 3'-uridylated RNA that can form a duplex (except for its post-transcriptionally added oligo_U tail (SO:0000609)) with a stretch of mature edited mRNA. 98325 0 0 74994 19 non_synonymous_variant A sequence_variant which is predicted to change the protein encoded in the coding sequence. 98327 0 0 74995 19 non_canonical_start_codon A start codon that is not the usual AUG sequence. 98328 0 0 74996 19 translationally_regulated An attribute describing a gene that is regulated as it is translated. 98329 0 0 74997 19 T7_RNA_Polymerase_Promoter A region (DNA) to which the T7 RNA polymerase binds, to begin transcription. 98330 0 0 74998 19 translational_product_structure_variant A sequence variant within the transcript that changes the structure of the translational product. 98331 0 0 74999 19 polypeptide_motif A sequence motif is a short (up to 20 amino acids) region of biological interest. Such motifs, although they are too short to constitute functional domains, share sequence similarities and are conserved in different proteins. They display a common function (protein-binding, subcellular location etc.). 98332 0 0 75000 19 enhancer_binding_site A binding site that, in the enhancer region of a nucleotide molecule, interacts selectively and non-covalently with polypeptide residues. 98334 0 0 75001 19 sequence_length_variation \N 98335 0 0 75002 19 H3K27_monomethylation_site A kind of histone modification site, whereby the 27th residue (a lysine), from the start of the H3 histone protein is mono-methylated. 98336 0 0 75003 19 minus_2_frameshift_variant \N 98337 0 0 75004 19 initiator_codon_change A codon variant that changes at least one base of the first codon of a transcript. 98338 0 0 75005 19 sequence_variant_causing_compensatory_transcript_secondary_structure_mutation (obsolete SO:1000127) \N 98339 1 0 75006 19 sequence_variant_causing_inactive_ligand_binding_site (obsolete SO:1000119) \N 98340 1 0 75007 19 direction_attribute \N 98341 0 0 75008 19 complex_substitution When no simple or well defined DNA mutation event describes the observed DNA change, the keyword "complex" should be used. Usually there are multiple equally plausible explanations for the change. 98342 0 0 75009 19 gene_silenced_by_DNA_methylation A gene that is silenced by DNA methylation. 98343 0 0 75010 19 reverse Reverse is an attribute of the feature, where the feature is in the 3' to 5' direction. Again could be applied to primer. 98344 0 0 75011 19 transgenic_transposable_element TE that has been modified in vitro, including insertion of DNA derived from a source other than the originating TE. 98345 0 0 75012 19 improved_high_quality_draft The status of a whole genome sequence, where additional work has been performed, using either manual or automated methods, such as gap resolution. 98346 0 0 75013 19 J_gene Germline genomic DNA of an immunoglobulin/T-cell receptor gene including J-region with 5' UTR (SO:0000204) and 3' UTR (SO:0000205), also designated as J-segment. 98347 0 0 75014 19 six_cutter_restriction_site (obsolete SO:0000249) \N 98348 1 0 75015 19 mature_miRNA_variant A transcript variant located with the sequence of the mature miRNA. 98349 0 0 75016 19 uncharacterised_chromosomal_mutation \N 98350 0 0 75017 19 conserved_region Region of sequence similarity by descent from a common ancestor. 98351 0 0 75018 19 vertebrate_immunoglobulin_T_cell_receptor_rearranged_gene_cluster \N 98352 0 0 75019 19 rRNA_primary_transcript_region A region of an rRNA primary transcript. 98353 0 0 75020 19 gene_by_genome_location (obsolete SO:0000085) \N 98354 1 0 75021 19 intrachromosomal \N 98355 0 0 75022 19 fragment_assembly A fragment assembly is a genome assembly that orders overlapping fragments of the genome based on landmark sequences. The base pair distance between the landmarks is known allowing additivity of lengths. 98356 0 0 75023 19 H3K36_methylation_site A kind of histone modification site, whereby the 36th residue (a lysine), from the start of the H3 histone protein is methylated. 98357 0 0 75024 19 decreased_translational_product_level A sequence variant which decreases the translational product level with respect to a reference sequence. 98358 0 0 75025 19 CRISPR Clustered Palindromic Repeats interspersed with bacteriophage derived spacer sequences. 98359 0 0 75026 19 H3K23_acylation site A kind of histone modification, whereby the 23rd residue (a lysine), from the start of the H3 histone protein is acylated. 98361 0 0 75027 19 C_gene Genomic DNA of immunoglobulin/T-cell receptor gene including C-region (and introns if present) with 5' UTR (SO:0000204) and 3' UTR (SO:0000205). 98362 0 0 75028 19 end_overlapping_gene (obsolete SO:0000072) \N 98363 1 0 75029 19 D_gene Germline genomic DNA including D-region with 5' UTR and 3' UTR, also designated as D-segment. 98364 0 0 75030 19 five_two_prime_O_dimethylcytidine 5,2'-O-dimethylcytidine is a modified cytidine. 98365 0 0 75031 19 stRNA_gene \N 98366 0 0 75032 19 proviral_gene A gene from proviral sequence. 98367 0 0 75033 19 sequence_variant_affecting_copy_number (obsolete SO:0001020) \N 98368 1 0 75129 19 unequally_crossed_over (obsolete SO:0000901) An attribute describing a pseudogene that was created by tandem duplication and unequal crossing over during recombination. 98467 1 0 75034 19 SL11_acceptor_site A SL2_acceptor_site which appends the SL11 RNA leader sequence to the 5' end of an mRNA. SL11 acceptor sites occur in genes in internal segments of polycistronic transcripts. 98369 0 0 75035 19 RNAi_reagent A double stranded RNA duplex, at least 20bp long, used experimentally to inhibit gene function by RNA interference. 98370 0 0 75036 19 NDM2_motif A non directional promoter motif with consensus CGMYGYCR. 98371 0 0 75037 19 gene_silenced_by_histone_modification A gene that is silenced by histone modification. 98372 0 0 75038 19 p_element A P_element is a DNA transposon responsible for hybrid dysgenesis. 98373 0 0 75039 19 replication_regulatory_region A regulatory region that is involved in the control of the process of nucleotide replication. 98374 0 0 75040 19 conservative_increase_in_CDS_length An inframe_increase_in_cds_length that inserts one or more codons into the coding sequence between existing codons. 98375 0 0 75041 19 base_pair \N 98376 0 0 75042 19 one_methylinosine 1-methylinosine is a modified insosine. 98377 0 0 75043 19 chloroplast_sequence \N 98378 0 0 75044 19 gap A gap in the sequence of known length. The unknown bases are filled in with N's. 98379 0 0 75045 19 transcript_with_readthrough_stop_codon (obsolete SO:0000117) \N 98380 1 0 75046 19 miRNA_primary_transcript_region A part of an miRNA primary_transcript. 98381 0 0 75047 19 pyrimidine_to_purine_transversion Change of a pyrimidine nucleotide, C or T, into a purine nucleotide, A or G. 98382 0 0 75048 19 A_box A variably distant linear promoter region recognized by TFIIIC, with consensus sequence TGGCnnAGTGG. 98383 0 0 75049 19 metal_binding_site A binding site that, in the molecule, interacts selectively and non-covalently with metal ions. 98384 0 0 75050 19 asparagine_tRNA_primary_transcript A primary transcript encoding asparaginyl tRNA (SO:0000256). 98385 0 0 75051 19 splice_donor_variant A splice variant that changes the2 base region at the 5' end of an intron. 98386 0 0 75052 19 beta_turn A motif of four consecutive residues that may contain one H-bond, which, if present, is between the main-chain CO of the first residue and the main-chain NH of the fourth. It is characterized by the dihedral angles of the second and third residues, which are the basis for sub-categorization. 98387 0 0 75053 19 nuclear_mt_pseudogene A nuclear pseudogene of either coding or non-coding mitochondria derived sequence. 98389 0 0 75054 19 DMv4_motif A sequence element characteristic of some RNA polymerase II promoters, located immediately upstream of some TATA box elements with respect to the TSS (+1). Consensus sequence is YGGTCACACTR. Marked spatial preference within core promoter; tend to occur near the TSS, although not as tightly as INR (SO:0000014). 98390 0 0 75055 19 five_carbamoylmethyl_two_prime_O_methyluridine 5_carbamoylmethyl_2_prime_O_methyluridine is a modified uridine base feature. 98391 0 0 75056 19 V_D_DJ_cluster Genomic DNA of immunoglobulin/T-cell receptor gene in rearranged configuration including at least one V-gene, one D-gene, one DJ-gene. 98392 0 0 75057 19 N6_N6_dimethyladenosine N6_N6_dimethyladenosine is a modified adenosine. 98393 0 0 75058 19 central_hydrophobic_region_of_signal_peptide The central, hydrophobic region of the signal peptide (approx 7-15 aa). 98394 0 0 75059 19 chromosomal_regulatory_element \N 98395 0 0 75061 19 gene_with_dicistronic_transcript A gene that encodes a dicistronic transcript. 98397 0 0 75062 19 sequence_operation (obsolete SO:0000041) An operation that can be applied to a sequence, that results in a change. 98398 1 0 75063 19 inversion_derived_bipartite_deficiency A chromosomal deletion whereby a chromosome generated by recombination between two inversions; has a deficiency at each end of the inversion. 98399 0 0 75064 19 vertebrate_immunoglobulin_T_cell_receptor_gene_cluster \N 98400 0 0 75065 19 seven_aminomethyl_seven_deazaguanosine 7_aminomethyl_7_deazaguanosine is a modified 7-deazoguanosine. 98401 0 0 75066 19 piRNA_gene A gene that encodes for an piwi associated RNA. 98402 0 0 75116 19 stRNA_encoding \N 98453 0 0 75067 19 leucine_tRNA_primary_transcript A primary transcript encoding leucyl tRNA (SO:0000264). 98403 0 0 75068 19 non_conservative_missense_codon A sequence variant whereby at least one base of a codon is changed resulting in a codon that encodes for an amino acid with different biochemical properties. 98404 0 0 75069 19 INR1_motif A promoter motif with consensus sequence TCATTCG. 98405 0 0 75070 19 c_terminal_region The more polar, carboxy-terminal region of the signal peptide (approx 3-7 aa). 98406 0 0 75071 19 sequence_variant_causing_conservative_missense_codon_change_in_transcript (obsolete SO:1000060) The amino acid change following from the codon change does not change the gross properties (size, charge, hydrophobicity) of the amino acid at that position. 98407 1 0 75072 19 tetraloop A base-paired stem with loop of 4 non-hydrogen bonded nucleotides. 98408 0 0 75073 19 modified_L_tyrosine A post translationally modified tyrosine amino acid feature. 98409 0 0 75074 19 primary_transcript_attribute (obsolete SO:0000144) \N 98410 1 0 75075 19 rRNA_25S A large polynucleotide which functions as part of the large subunit of the ribosome in some eukaryotes. 98411 0 0 75076 19 modified_L_selenocysteine A post translationally modified selenocysteine amino acid feature. 98412 0 0 75077 19 stop_lost A sequence variant where at least one base of the terminator codon (stop) is changed, resulting in an elongated transcript. 98413 0 0 75078 19 C_D_box_snoRNA_encoding \N 98414 0 0 75079 19 fingerprint_map A fingerprint_map is a physical map composed of restriction fragments. 98415 0 0 75080 19 fragmentary An attribute to describe a feature that is incomplete. 98416 0 0 75081 19 chromosomally_aberrant_genome \N 98417 0 0 75082 19 beta_turn_type_six_a_one \N 98418 0 0 75083 19 chromosome_band A cytologically distinguishable feature of a chromosome, often made visible by staining, and usually alternating light and dark. 98419 0 0 75084 19 sequence_variant_causing_plus_2_frameshift (obsolete SO:1000068) A mutation causing a disruption of the translational reading frame, due to the insertion of two nucleotides. 98420 1 0 75085 19 glutamic_acid_tRNA_primary_transcript A primary transcript encoding glutaminyl tRNA (SO:0000260). 98421 0 0 75086 19 random_sequence A sequence of nucleotides or amino acids which, by design, has a "random" order of components, given a predetermined input frequency of these components. 98422 0 0 75087 19 mitochondrial_targeting_signal A polypeptide region that targets a polypeptide to the mitochondrion. 98423 0 0 75088 19 five_taurinomethyluridine 5_taurinomethyluridine is a modified uridine base feature. 98424 0 0 75089 19 ISRE An ISRE is a transcriptional cis regulatory region, containing the consensus region: YAGTTTC(A/T)YTTTYCC, responsible for increased transcription via interferon binding. 98425 0 0 75090 19 consensus \N 98427 0 0 75139 19 H3K9_dimethylation_site A kind of histone modification site, whereby the 9th residue (a lysine), from the start of the H3 histone protein may be dimethylated. 98478 0 0 75091 19 cyclic_translocation A chromosomal translocation whereby three breaks occurred in three different chromosomes. The centric segment resulting from the first break listed is joined to the acentric segment resulting from the second, rather than the third. 98428 0 0 75092 19 INR_motif A sequence element characteristic of some RNA polymerase II promoters required for the correct positioning of the polymerase for the start of transcription. Overlaps the TSS. The mammalian consensus sequence is YYAN(T|A)YY; the Drosophila consensus sequence is TCA(G|T)t(T|C). In each the A is at position +1 with respect to the TSS. Functionally similar to the TATA box element. 98429 0 0 75093 19 D_DJ_C_cluster Genomic DNA of immunoglobulin/T-cell receptor gene in rearranged configuration including at least one D-gene, one DJ-gene and one C-gene. 98430 0 0 75094 19 T_loop Non-base-paired sequence of three nucleotide bases in tRNA. It has sequence T-Psi-C. 98431 0 0 75095 19 H3K79_dimethylation_site A kind of histone modification site, whereby the 79th residue (a lysine), from the start of the H3 histone protein is di-methylated. 98432 0 0 75096 19 edited An attribute describing a sequence that is modified by editing. 98433 0 0 75097 19 dicistronic An attribute describing a sequence that contains the code for two gene products. 98434 0 0 75098 19 chromosomal_inversion An interchromosomal mutation where a region of the chromosome is inverted with respect to wild type. 98435 0 0 75099 19 N6_glycinylcarbamoyladenosine N6_glycinylcarbamoyladenosine is a modified adenosine. 98436 0 0 75100 19 dihydrouridine A modified RNA base in which the 5,6-dihydrouracil is bound to the ribose ring. 98437 0 0 75101 19 RNApol_III_promoter A DNA sequence in eukaryotic DNA to which RNA polymerase III binds, to begin transcription. 98438 0 0 75102 19 five_prime_LTR_component \N 98439 0 0 75103 19 assortment_derived_deficiency A multi-chromosome deficiency aberration generated by reassortment of other aberration components. 98440 0 0 75104 19 maternal_uniparental_disomy Uniparental disomy is a sequence_alteration where a diploid individual receives two copies for all or part of a chromosome from the mother and no copies of the same chromosome or region from the father. 98441 0 0 75105 19 inframe_decrease_in_CDS_length An inframe_non_synonymous_variant that deletes bases from the coding sequence. 98442 0 0 75106 19 three_prime_five_prime_overlap An attribute to describe a gene when the 3' region overlaps with another gene's 5' region. 98443 0 0 75107 19 base A base is a sequence feature that corresponds to a single unit of a nucleotide polymer. 98444 0 0 75108 19 N2_N2_2_prime_O_trimethylguanosine N2_N2_2prime_O_trimethylguanosine is a modified guanosine base feature. 98445 0 0 75109 19 operon_member \N 98446 0 0 75110 19 chromosome_number_variation A kind of chromosome variation where the chromosome complement is not an exact multiple of the haploid number. 98447 0 0 75111 19 cassette_array_member \N 98448 0 0 75112 19 V_DJ_J_C_cluster Genomic DNA of immunoglobulin/T-cell receptor gene in rearranged configuration including at least one V-gene, one DJ-gene, one J-gene and one C-gene. 98449 0 0 75113 19 dispersed_repeat A repeat that is located at dispersed sites in the genome. 98450 0 0 75114 19 five_prime_UST An UST located in the 5'UTR of a protein-coding transcript. 98451 0 0 75117 19 pseudogene_attribute (obsolete SO:0000042) An attribute of a pseudogene (SO:0000336). 98454 1 0 75118 19 sequence_variant_causing_amino_acid_insertion (obsolete SO:1000096) The insertion of one or more amino acids from the polypeptide, without affecting the surrounding sequence. 98455 1 0 75119 19 deletion_breakpoint The point within a chromosome where a deletion begins or ends. 98456 0 0 75120 19 four_bp_start_codon A non-canonical start codon with 4 base pairs. 98457 0 0 75121 19 five_methylaminomethyl_two_thiouridine 5_methylaminomethyl_2_thiouridine is a modified uridine base feature. 98458 0 0 75122 19 tetranucleotide_repeat_microsatellite_feature \N 98459 0 0 75123 19 recombination_feature \N 98460 0 0 75124 19 cryptic_splice_donor A sequence variant whereby a new splice site is created due to the activation of a new donor. 98461 0 0 75125 19 queuosine Queuosine is a modified 7-deazoguanosine. 98462 0 0 75126 19 snRNA_primary_transcript A primary transcript encoding a small nuclear RNA (SO:0000274). 98463 0 0 75127 19 transposon_fragment A portion of a transposon, interrupted by the insertion of another element. 98464 0 0 75128 19 QTL A quantitative trait locus (QTL) is a polymorphic locus which contains alleles that differentially affect the expression of a continuously distributed phenotypic trait. Usually it is a marker described by statistical association to quantitative variation in the particular phenotypic trait that is thought to be controlled by the cumulative action of alleles at multiple loci. 98465 0 0 75132 19 non_canonical_splice_site (obsolete SO:0000674) A splice site where the donor and acceptor sites differ from the canonical form. 98470 1 0 75133 19 Shine_Dalgarno_sequence A region in the 5' UTR that pairs with the 16S rRNA during formation of the preinitiation complex. 98471 0 0 75134 19 threonine_tRNA_primary_transcript A primary transcript encoding threonyl tRNA (SO:000270). 98473 0 0 75135 19 cysteine \N 98474 0 0 75136 19 increased_transcript_level_variant A sequence variant that increases the level of mature, spliced and processed RNA with respect to a reference sequence. 98475 0 0 75137 19 maternally_imprinted_gene A gene that is maternally_imprinted. 98476 0 0 75138 19 insert_GU (obsolete SO:0000925) An edit to insert a GU dinucleotide. 98477 1 0 75141 19 polypeptide_secondary_structure A region of peptide with secondary structure has hydrogen bonding along the peptide chain that causes a defined conformation of the chain. 98480 0 0 75142 19 edit_operation (obsolete SO:0000916) \N 98482 1 0 75143 19 telomeric_repeat The telomeric repeat is a repeat region, part of the chromosome, which in yeast, is a G-rich terminal sequence of the form (TG(1-3))n or more precisely ((TG)(1-6)TG(2-3))n. 98483 0 0 75144 19 internal_eliminated_sequence A sequence eliminated from the genome of ciliates during nuclear differentiation. 98485 0 0 75145 19 translocaton_attribute \N 98486 0 0 75146 19 stop_codon_redefinition_as_selenocysteine (obsolete SO:1001266) \N 98487 1 0 75147 19 pseudouridylation_guide_snoRNA A snoRNA that specifies the site of pseudouridylation in an RNA molecule by base pairing with a short sequence around the target residue. 98488 0 0 75148 19 DMv2_motif A sequence element characteristic of some RNA polymerase II promoters, usually located between -60 and -45 relative to the TSS. Consensus sequence is MKSYGGCARCGSYSS. Tends to co-occur with DMv3 (SO:0001160). Tends to not occur with DPE motif (SO:0000015) or MTE (SO:0001162). 98489 0 0 75149 19 five_methyl_2_thiouridine 5_methyl_2_thiouridine is a modified uridine base feature. 98490 0 0 75150 19 mitochondrial_sequence \N 98491 0 0 75151 19 transcript_region A region of a transcript. 98492 0 0 75152 19 attR_site A region that results from recombination between attP_site and attB_site, composed of the 5' portion of attP_site and the 3' portion of attB_site. 98493 0 0 75153 19 V_J_cluster Genomic DNA of immunoglobulin/T-cell receptor gene in germline configuration including at least one V-gene and one J-gene. 98494 0 0 75154 19 S_GNA An attribute describing a GNA sequence in the (S)-GNA enantiomer. 98495 0 0 75155 19 enhancer_bound_by_factor An enhancer bound by a factor. 98497 0 0 75156 19 mt_gene A gene located in mitochondrial sequence. 98498 0 0 75157 19 mutaton_causing_inframe_polypeptide_C_terminal_elongation (obsolete SO:1000108) \N 98499 1 0 75158 19 population_specific_variant \N 98500 0 0 75159 19 gene_fragment \N 98501 0 0 75160 19 pre_edited_mRNA \N 98502 0 0 75161 19 Bruno_response_element A cis-acting element found in the 3' UTR of some mRNA which is bound by the Drosophila Bruno protein and its homologs. 98503 0 0 75162 19 restriction_enzyme_cut_site (obsolete SO:0000168) A specific nucleotide sequence of DNA at or near which a particular restriction enzyme cuts the DNA. 98504 1 0 75163 19 amino_acid_insertion A sequence variant within a CDS resulting in the gain of an amino acid to the resulting polypeptide. 98505 0 0 75164 19 two_prime_O_methylguanosine 2prime_O_methylguanosine is a modified guanosine base feature. 98506 0 0 75165 19 independently_known Attribute to describe a feature that is independently known - not predicted. 98507 0 0 75166 19 nucleic_acid An attribute describing a sequence consisting of nucleobases bound to repeating units. The forms found in nature are deoxyribonucleic acid (DNA), where the repeating units are 2-deoxy-D-ribose rings connected to a phosphate backbone, and ribonucleic acid (RNA), where the repeating units are D-ribose rings connected to a phosphate backbone. 98508 0 0 75167 19 operon A group of contiguous genes transcribed as a single (polycistronic) mRNA from a single regulatory region. 98510 0 0 75168 19 quantitative_variant \N 98511 0 0 75169 19 nucleomorph_gene A gene from nucleomorph sequence. 98512 0 0 75170 19 minus_1_frameshift A frameshift caused by deleting one base. 98513 0 0 75171 19 polypeptide_nest_left_right_motif A motif of two consecutive residues with dihedral angles: Residue(i): +20 degrees < phi < +140 degrees, -40 degrees < psi < +90 degrees. Residue(i+1): -140 degrees < phi < -20 degrees, -90 degrees < psi < +40 degrees. 98514 0 0 75172 19 assortment_derived_duplication (obsolete SO:0000437) \N 98516 1 0 75173 19 complex_chromosomal_mutation A chromosome structure variant with 4 or more breakpoints. 98517 0 0 77152 2 uri \N 210055 0 0 75175 19 RNase_P_RNA_gene A gene that encodes an RNase P RNA. 98519 0 0 75176 19 polypeptide_metal_contact A binding site that, in the polypeptide molecule, interacts selectively and non-covalently with metal ions. 98520 0 0 75177 19 complex_structural_alteration A structural sequence alteration where there are multiple equally plausible explanations for the change. 98522 0 0 75178 19 nuclease_sensitive_site A region of nucleotide sequence targeted by a nuclease enzyme. 98523 0 0 75179 19 biomaterial_region A region which is intended for use in an experiment. 98524 0 0 75180 19 archaeal_intron An intron characteristic of Archaeal tRNA and rRNA genes, where intron transcript generates a bulge-helix-bulge motif that is recognised by a splicing endoribonuclease. 98525 0 0 75181 19 five_methylaminomethyluridine 5_methylaminomethyluridine is a modified uridine base feature. 98527 0 0 75182 19 GC_rich_promoter_region A conserved GC-rich region located upstream of the start point of eukaryotic transcription units which may occur in multiple copies or in either orientation; consensus=GGGCGG. 98528 0 0 75183 19 nucleotide_motif A region of nucleotide sequence corresponding to a known motif. 98529 0 0 75184 19 gene_silenced_by_RNA_interference A gene that is silenced by RNA interference. 98530 0 0 75185 19 alternatively_spliced_gene_encoding_greater_than_1_polypeptide_coding_regions_overlapping (obsolete SO:1001194) \N 98531 1 0 75186 19 gene_array An array includes two or more genes, or two or more gene subarrays, contiguously arranged where the individual genes, or subarrays, are either identical in sequence, or essentially so. 98532 0 0 75187 19 C_box An RNA polymerase III type 1 promoter with consensus sequence CAnnCCn. 98533 0 0 75188 19 two_prime_O_ribosyladenosine_phosphate 2prime_O_ribosyladenosine_phosphate is a modified adenosine. 98534 0 0 75189 19 polymorphic_sequence_variant A sequence variant that is segregating in one or more natural populations of a species. 98535 0 0 75190 19 four_demethylwyosine 4_demethylwyosine is a modified guanosine base feature. 98536 0 0 75191 19 gene_cassette A gene that can be substituted for a related gene at a different site in the genome. 98537 0 0 75192 19 schellmann_loop_seven Wild type: A motif of seven consecutive residues that contains two H-bonds in which: the main-chain CO of residue(i) is H-bonded to the main-chain NH of residue(i+6), the main-chain CO of residue(i+1) is H-bonded to the main-chain NH of residue(i+5). 98539 0 0 75193 19 D_J_C_cluster Genomic DNA of immunoglobulin/T-cell receptor gene in germline configuration including at least one D-gene, one J-gene and one C-gene. 98541 0 0 75194 19 U2_snRNA U2 is a small nuclear RNA (snRNA) component of the spliceosome (involved in pre-mRNA splicing). Complementary binding between U2 snRNA (in an area lying towards the 5' end but 3' to hairpin I) and the branchpoint sequence (BPS) of the intron results in the bulging out of an unpaired adenine, on the BPS, which initiates a nucleophilic attack at the intronic 5' splice site, thus starting the first of two transesterification reactions that mediate splicing. 98542 0 0 75195 19 decreased_transcription_rate_variant A sequence variant that decreases the rate of transcription with respect to a reference sequence. 98544 0 0 75196 19 plasmid A self replicating, using the hosts cellular machinery, often circular nucleic acid molecule that is distinct from a chromosome in the organism. 98545 0 0 75197 19 peptide_coil Irregular, unstructured regions of a protein's backbone, as distinct from the regular region (namely alpha helix and beta strand - characterised by specific patterns of main-chain hydrogen bonds). 98546 0 0 75198 19 gene_with_dicistronic_mRNA A gene that encodes a polycistronic mRNA. 98547 0 0 75199 19 unedited_region The region of an edited transcript that will not be edited. 98548 0 0 75200 19 cryptic_gene A gene that is not transcribed under normal conditions and is not critical to normal cellular functioning. 98549 0 0 75201 19 engineered_plasmid A plasmid that is engineered. 98550 0 0 75202 19 MicF_RNA A non-translated 93 nt antisense RNA that binds its target ompF mRNA and regulates ompF expression by inhibiting translation and inducing degradation of the message. 98551 0 0 75203 19 engineered_foreign_transposable_element_gene A transposable_element that is engineered and foreign. 98553 0 0 75204 19 lipoprotein_signal_peptide A peptide that acts as a signal for both membrane translocation and lipid attachment in prokaryotes. 98554 0 0 75386 19 organelle_sequence \N 98771 0 0 75244 19 sequence_variant A sequence_variant is a non exact copy of a sequence_feature or genome exhibiting one or more sequence_alteration. 98598 0 0 75245 19 rho_dependent_bacterial_terminator \N 98599 0 0 76267 19 chromosome_part A region of a chromosome. 99763 0 0 75205 19 C_D_box_snoRNA Most box C/D snoRNAs also contain long (>10 nt) sequences complementary to rRNA. Boxes C and D, as well as boxes C' and D', are usually located in close proximity, and form a structure known as the box C/D motif. This motif is important for snoRNA stability, processing, nucleolar targeting and function. A small number of box C/D snoRNAs are involved in rRNA processing; most, however, are known or predicted to serve as guide RNAs in ribose methylation of rRNA. Targeting involves direct base pairing of the snoRNA at the rRNA site to be modified and selection of a rRNA nucleotide a fixed distance from box D or D'. 98555 0 0 75206 19 circular_double_stranded_DNA_chromosome Structural unit composed of a self-replicating, double-stranded, circular DNA molecule. 98556 0 0 75207 19 X_element The X element is a conserved region, of the telomere, of ~475 bp that contains an ARS sequence and in most cases an Abf1p binding site. 98557 0 0 75208 19 oligo A short oligonucleotide sequence, of length on the order of 10's of bases; either single or double stranded. 98558 0 0 75209 19 bacterial_terminator A terminator signal for bacterial transcription. 98559 0 0 75210 19 translationally_regulated_gene A gene that is translationally regulated. 98560 0 0 75211 19 FRT_flanked An attribute to describe sequence that is flanked by the FLP recombinase recognition site, FRT. 98561 0 0 75212 19 copy_number_gain A sequence alteration whereby the copy number of a given regions is greater than the reference sequence. 98562 0 0 75213 19 maternally_imprinted The maternal copy of the gene is modified, rendering it transcriptionally silent. 98563 0 0 75214 19 asparagine \N 98564 0 0 77153 2 datatype \N 210056 0 0 75215 19 probe A DNA sequence used experimentally to detect the presence or absence of a complementary nucleic acid. 98565 0 0 75216 19 DsrA_RNA DsrA RNA regulates both transcription, by overcoming transcriptional silencing by the nucleoid-associated H-NS protein, and translation, by promoting efficient translation of the stress sigma factor, RpoS. These two activities of DsrA can be separated by mutation: the first of three stem-loops of the 85 nucleotide RNA is necessary for RpoS translation but not for anti-H-NS action, while the second stem-loop is essential for antisilencing and less critical for RpoS translation. The third stem-loop, which behaves as a transcription terminator, can be substituted by the trp transcription terminator without loss of either DsrA function. The sequence of the first stem-loop of DsrA is complementary with the upstream leader portion of RpoS messenger RNA, suggesting that pairing of DsrA with the RpoS message might be important for translational regulation. 98566 0 0 75217 19 sequence_variant_affecting_splice_acceptor (obsolete SO:1000073) A sequence_variant_effect that changes the splice acceptor sequence. 98568 1 0 75218 19 nc_conserved_region Non-coding region of sequence similarity by descent from a common ancestor. 98569 0 0 75265 19 sequence_variant_causing_polypeptide_post_translational_processing_change (obsolete SO:1000122) \N 98622 1 0 75219 19 Y_RNA Y RNAs are components of the Ro ribonucleoprotein particle (Ro RNP), in association with Ro60 and La proteins. The Y RNAs and Ro60 and La proteins are well conserved, but the function of the Ro RNP is not known. In humans the RNA component can be one of four small RNAs: hY1, hY3, hY4 and hY5. These small RNAs are predicted to fold into a conserved secondary structure containing three stem structures. The largest of the four, hY1, contains an additional hairpin. 98570 0 0 75220 19 predicted_by_ab_initio_computation An attribute describing a feature that is predicted by a computer program that did not rely on sequence similarity. 98572 0 0 75221 19 symmetric_RNA_internal_loop An internal RNA loop where the extent of the loop on both stands is the same size. 98573 0 0 75222 19 DNA_invertase_target_sequence (obsolete SO:0000660) \N 98574 1 0 75223 19 free_chromosome_arm A chromosome structure variation whereby an arm exists as an individual chromosome element. 98575 0 0 75224 19 translation_regulatory_region A regulatory region that is involved in the control of the process of translation. 98576 0 0 75225 19 polypeptide_structural_region Region of polypeptide with a given structural property. 98577 0 0 75226 19 mRNA Messenger RNA is the intermediate molecule between DNA and protein. It includes UTR and coding sequences. It does not contain introns. 98579 0 0 75227 19 DCE_SI A sub element of the DCE core promoter element, with consensus sequence CTTC. 98580 0 0 75228 19 V_gene Germline genomic DNA including L-part1, V-intron and V-exon, with the 5' UTR and 3' UTR. 98581 0 0 75229 19 annotation_directed_improved_draft The status of a whole genome sequence,where annotation, and verification of coding regions has occurred. 98582 0 0 75230 19 intein_containing An attribute of protein-coding genes where the initial protein product contains an intein. 98583 0 0 75231 19 autocatalytically_spliced_intron A self spliced intron. 98584 0 0 75232 19 topologically_defined_region A region that is defined according to its relations with other regions within the same sequence. 98585 0 0 75233 19 paternally_imprinted The paternal copy of the gene is modified, rendering it transcriptionally silent. 98586 0 0 75234 19 tag A nucleotide sequence that may be used to identify a larger sequence. 98587 0 0 75235 19 IRRinv_site Component of the inversion site located at the right of a region susceptible to site-specific inversion. 98588 0 0 75236 19 inosine A modified RNA base in which hypoxanthine is bound to the ribose ring. 98590 0 0 75237 19 coding_variant_quality \N 98591 0 0 75238 19 transcript_secondary_structure_variant A sequence variant within a transcript that changes the secondary structure of the RNA product. 98592 0 0 75239 19 H3K9_methylation_site A kind of histone modification site, whereby the 9th residue (a lysine), from the start of the H3 histone protein is methylated. 98593 0 0 75240 19 direct A quality of an insertion where the insert is not in a cytologically inverted orientation. 98594 0 0 75241 19 forward_primer A single stranded oligo used for polymerase chain reaction. 98595 0 0 75242 19 single_strand_restriction_enzyme_cleavage_site A restriction enzyme cleavage site whereby only one strand is cut. 98596 0 0 75243 19 uridine_five_oxyacetic_acid Uridine_5_oxyacetic_acid is a modified uridine base feature. 98597 0 0 75246 19 non_adjacent_residues Indicates that two consecutive residues in a fragment sequence are not consecutive in the full-length protein and that there are a number of unsequenced residues between them. 98600 0 0 75247 19 start_codon First codon to be translated by a ribosome. 98602 0 0 75248 19 regulon A group of genes, whether linked as a cluster or not, that respond to a common regulatory signal. 98603 0 0 75249 19 match A region of sequence, aligned to another sequence with some statistical significance, using an algorithm such as BLAST or SIM4. 98604 0 0 75250 19 asx_motif A motif of five consecutive residues and two H-bonds in which: Residue(i) is Aspartate or Asparagine (Asx), side-chain O of residue(i) is H-bonded to the main-chain NH of residue(i+2) or (i+3), main-chain CO of residue(i) is H-bonded to the main-chain NH of residue(i+3) or (i+4). 98605 0 0 75251 19 RNA_polymerase_promoter A region (DNA) to which RNA polymerase binds, to begin transcription. 98607 0 0 75252 19 seven_methylguanine A modified RNA base in which guanine is methylated at the 7- position. 98608 0 0 75253 19 leucoplast_chromosome A chromosome with origin in a leucoplast. 98609 0 0 75254 19 G_to_T_transversion A transversion from guanine to thymine. 98610 0 0 75255 19 V_D_J_cluster Genomic DNA of immunoglobulin/T-cell receptor gene in germline configuration including at least one V-gene, one D-gene and one J-gene. 98611 0 0 75256 19 gene_not_polyadenylated (obsolete SO:0000438) \N 98612 1 0 75257 19 st_turn_left_handed_type_one The peptide twists in an anticlockwise, left handed manner. The dihedral angles for this turn are: Residue(i): -140 degrees < chi(1) -120 degrees < -20 degrees, -90 degrees psi +120 degrees < +40 degrees, residue(i+1): -140 degrees < phi < -20 degrees, -90 < psi < +40 degrees. 98613 0 0 75258 19 vacuolar_sorting_signal A polypeptide region that targets a polypeptide to the vacuole. 98615 0 0 75259 19 anticodon_loop A sequence of seven nucleotide bases in tRNA which contains the anticodon. It has the sequence 5'-pyrimidine-purine-anticodon-modified purine-any base-3. 98616 0 0 75260 19 mutation_causing_inframe_polypeptide_N_terminal_elongation (obsolete SO:1000106) \N 98617 1 0 75261 19 tandem \N 98618 0 0 75262 19 region A sequence_feature with an extent greater than zero. A nucleotide region is composed of bases and a polypeptide region is composed of amino acids. 98619 0 0 75263 19 group_1_intron_homing_endonuclease_target_region A region of intronic nucleotide sequence targeted by a nuclease enzyme. 98620 0 0 75264 19 DNAzyme A DNA sequence with catalytic activity. 98621 0 0 75266 19 nuclear_export_signal A polypeptide region that targets a polypeptide to he cytoplasm. 98623 0 0 75267 19 tandem_repeat Two or more adjcent copies of a region (of length greater than 1). 98624 0 0 75268 19 V_VDJ_J_cluster Genomic DNA of immunoglobulin/T-cell receptor gene in rearranged configuration including at least one V-gene, one VDJ-gene and one J-gene. 98625 0 0 75269 19 sequence_variant_affecting_splicing (obsolete SO:1000071) A sequence_variant_effect where the way in which the primary transcriptional product is processed to form the mature transcript, specifically by the removal (splicing) of intron sequences is changed. 98626 1 0 75270 19 dCAPS_primer A primer with one or more mis-matches to the DNA template corresponding to a position within a restriction enzyme recognition site. 98627 0 0 75272 19 sequence_variant_increasing_transcript_stability (obsolete SO:1000083) Sequence variant increases the stability (half-life) of the transcript. 98630 1 0 75273 19 assortment_derived_aneuploid (obsolete SO:0000058) \N 98631 1 0 75274 19 rolling_circle (obsolete SO:0000969) \N 98632 1 0 75275 19 databank_entry The sequence referred to by an entry in a databank such as Genbank or SwissProt. 98633 0 0 75276 19 rRNA_5_8S 5_8S ribosomal RNA (5. 8S rRNA) is a component of the large subunit of the eukaryotic ribosome. It is transcribed by RNA polymerase I as part of the 45S precursor that also contains 18S and 28S rRNA. Functionally, it is thought that 5.8S rRNA may be involved in ribosome translocation. It is also known to form covalent linkage to the p53 tumour suppressor protein. 5_8S rRNA is also found in archaea. 98634 0 0 75277 19 X_element_combinatorial_repeat An X element combinatorial repeat is a repeat region located between the X element and the telomere or adjacent Y' element. 98636 0 0 75278 19 DArT_marker A genetic marker, discovered using Diversity Arrays Technology (DArT) technology. 98638 0 0 75279 19 tiling_path_fragment A piece of sequence that makes up a tiling_path (SO:0000472). 98639 0 0 75280 19 stop_codon_redefined_as_pyrrolysine A stop codon redefined to be the new amino acid, pyrrolysine. 98640 0 0 75281 19 elongated_polypeptide_N_terminal A sequence variant with in the CDS that causes elongation of the resulting polypeptide sequence at the N terminus. 98641 0 0 75282 19 endonuclease_spliced_intron An intron that spliced via endonucleolytic cleavage and ligation rather than transesterification. 98642 0 0 75283 19 polypeptide_zinc_ion_contact_site A binding site that, in the polypeptide molecule, interacts selectively and non-covalently with zinc ions. 98643 0 0 75284 19 outron A region of a primary transcript, that is removed via trans splicing. 98645 0 0 75285 19 five_prime_coding_exon_noncoding_region The sequence of the 5' exon preceding the start codon. 98647 0 0 75286 19 noncoding_region_of_exon The maximal intersection of exon and UTR. 98648 0 0 75287 19 unitary_pseudogene A pseudogene, deactivated from original state by mutation, fixed in a population. 98649 0 0 75288 19 U_box An U-box is a conserved T-rich region upstream of a retroviral polypurine tract that is involved in PPT primer creation during reverse transcription. 98651 0 0 75289 19 archaeosine Archaeosine is a modified 7-deazoguanosine. 98655 0 0 75382 19 intrachromosomal_mutation A chromosomal structure variation within a single chromosome. 98766 0 0 75290 19 regional_centromere_outer_repeat_region The heterochromatic outer repeat region of a modular centromere. These repeats exist in tandem arrays on both chromosome arms. 98656 0 0 75292 19 integrated_plasmid A plasmid sequence that is integrated within the host chromosome. 98658 0 0 75293 19 signal_peptide The signal_peptide is a short region of the peptide located at the N-terminus that directs the protein to be secreted or part of membrane components. 98659 0 0 75294 19 gene_fusion A sequence variant whereby a two genes have become joined. 98661 0 0 75295 19 gene_subarray_member \N 98662 0 0 75296 19 type_II_enzyme_restriction_site (obsolete SO:0000304) The recognition site is either palindromic, partially palindromic or an interrupted palindrome. Cleavage occurs within the recognition site. 98663 1 0 75297 19 sequencing_primer \N 98665 0 0 75298 19 three_prime_terminal_inverted_repeat \N 98666 0 0 75299 19 modified_L_isoleucine A post translationally modified isoleucine amino acid feature. 98667 0 0 75300 19 sequence_variant_causing_polypeptide_truncation (obsolete SO:1000098) The translational product is truncated at its C-terminus, usually a result of a nonsense codon change in transcript (SO:1000062). 98668 1 0 75301 19 proviral_region A viral sequence which has integrated into a host genome. 98669 0 0 75302 19 low_complexity_region \N 98670 0 0 75303 19 eight_cutter_restriction_site (obsolete SO:0000251) \N 98671 1 0 75304 19 transcript_function_variant A sequence variant which alters the functioning of a transcript with respect to a reference sequence. 98672 0 0 75305 19 H4K8_acylation site A kind of histone modification site, whereby the 8th residue (a lysine), from the start of the H4 histone protein is acylated. 98673 0 0 75306 19 disease_causing_variant \N 98675 0 0 75307 19 tasiRNA_primary_transcript A primary transcript encoding a tasiRNA. 98676 0 0 75308 19 inframe_codon_loss A sequence variant which loses a codon, and does not cause a disruption of the translational reading frame. 98677 0 0 75309 19 riboswitch A riboswitch is a part of an mRNA that can act as a direct sensor of small molecules to control their own expression. A riboswitch is a cis element in the 5' end of an mRNA, that acts as a direct sensor of metabolites. 98678 0 0 75310 19 methylwyosine Methylwyosine is a modified guanosine base feature. 98680 0 0 75311 19 ring_chromosome A ring chromosome is a chromosome whose arms have fused together to form a ring, often with the loss of the ends of the chromosome. 98681 0 0 75312 19 capped_mRNA An mRNA that is capped. 98683 0 0 75313 19 quality_value An experimental feature attribute that defines the quality of the feature in a quantitative way, such as a phred quality score. 98684 0 0 75314 19 mobile_genetic_element A nucleotide region with either intra-genome or intracellular moblity, of varying length, which often carry the information necessary for transfer and recombination with the host genome. 98685 0 0 75315 19 circular A quality of a nucleotide polymer that has no terminal nucleotide residues. 98687 0 0 75316 19 N4_2_prime_O_dimethylcytidine N4,2'-O-dimethylcytidine is a modified cytidine. 98688 0 0 75317 19 clone_insert_start (obsolete SO:0000767) \N 98689 1 0 75318 19 rasiRNA A 17-28-nt, small interfering RNA derived from transcripts of repetitive elements. 98690 0 0 75319 19 alternatively_spliced_transcript A transcript that is alternatively spliced. 98692 0 0 75320 19 promoter_element \N 98693 0 0 75321 19 stRNA_primary_transcript A primary transcript encoding a small temporal mRNA (SO:0000649). 98694 0 0 75322 19 clone_attribute (obsolete SO:0000787) \N 98695 1 0 75323 19 UTR Messenger RNA sequences that are untranslated and lie five prime or three prime to sequences which are translated. 98696 0 0 75324 19 iron_responsive_element A regulatory sequence found in the 5' and 3' UTRs of many mRNAs which encode iron-binding proteins. It has a hairpin structure and is recognized by trans-acting proteins known as iron-regulatory proteins. 98697 0 0 75325 19 polyA_sequence Sequence of about 100 nucleotides of A added to the 3' end of most eukaryotic mRNAs. 98698 0 0 75326 19 defective_conjugative_transposon An island that contains genes for integration/excision and the gene and site for the initiation of intercellular transfer by conjugation. It can be complemented for transfer by a conjugative transposon. 98699 0 0 75327 19 point_mutation A single nucleotide change which has occurred at the same position of a corresponding nucleotide in a reference sequence. 98701 0 0 75328 19 foreign_gene A gene that is foreign. 98702 0 0 75329 19 U3_three_prime_LTR_region \N 98703 0 0 75330 19 500B_downstream_variant A sequence variant located within a half KB of the end of a gene. 98704 0 0 75331 19 intermediate_element A core promoter region of RNA polymerase III type 1 promoters. 98705 0 0 75332 19 N4_acetyl_2_prime_O_methylcytidine N4-acetyl-2'-O-methylcytidine is a modified cytidine. 98706 0 0 75333 19 mature_protein_region The polypeptide sequence that remains when the cleaved peptide regions have been cleaved from the immature peptide. 98707 0 0 75334 19 branch_site A pyrimidine rich sequence near the 3' end of an intron to which the 5'end becomes covalently bound during nuclear splicing. The resulting structure resembles a lariat. 98709 0 0 75335 19 sequence_variant_affecting_3D_structure_of_polypeptide (obsolete SO:1000111) A mutation that changes the amino acid sequence of the peptide in such a way that it changes the 3D structure of the molecule. 98710 1 0 75336 19 H2BK5_monomethylation_site A kind of histone modification site, whereby the 5th residue (a lysine), from the start of the H2B protein is methylated. 98713 0 0 75383 19 wobble_base_pair A type of non-canonical base pairing, most commonly between G and U, which is important for the secondary structure of RNAs. It has similar thermodynamic stability to the Watson-Crick pairing. Wobble base pairs only have two hydrogen bonds. Other wobble base pair possibilities are I-A, I-U and I-C. 98767 0 0 75387 19 insertion The sequence of one or more nucleotides added between two adjacent nucleotides in the sequence. 98772 0 0 75477 19 sequence_variant_causes_exon_loss (obsolete SO:1000184) A sequence variant affecting splicing and causes an exon loss. 98876 1 0 75337 19 antiparallel_beta_strand A peptide region which hydrogen bonded to another region of peptide running in the oposite direction (one running N-terminal to C-terminal and one running C-terminal to N-terminal). Hydrogen bonding occurs between every other C=O from one strand to every other N-H on the adjacent strand. In this case, if two atoms C-alpha (i) and C-alpha (j) are adjacent in two hydrogen-bonded beta strands, then they form two mutual backbone hydrogen bonds to each other's flanking peptide groups; this is known as a close pair of hydrogen bonds. The peptide backbone dihedral angles (phi, psi) are about (-140 degrees, 135 degrees) in antiparallel sheets. 98714 0 0 75338 19 one_methyl_three_three_amino_three_carboxypropyl_pseudouridine 1_methyl_3_3_amino_3_carboxypropyl_pseudouridine is a modified uridine base feature. 98716 0 0 75339 19 sequence_variant_affecting_transcript_processing (obsolete SO:1000070) Sequence variant affects the way in which the primary transcriptional product is processed to form the mature transcript. 98717 1 0 75340 19 selenocysteine \N 98718 0 0 75341 19 regional_centromere_inner_repeat_region The inner repeat region of a modular centromere. This region is adjacent to the central core, on each chromosome arm. 98719 0 0 75342 19 sequence_variant_increasing_level_of_translation_product (obsolete SO:1000104) \N 98720 1 0 75343 19 left_handed_peptide_helix A left handed helix is a region of peptide where the coiled conformation turns in an anticlockwise, left handed screw. 98721 0 0 75344 19 loxP_site \N 98723 0 0 75345 19 natural_transposable_element TE that exists (or existed) in nature. 98724 0 0 75346 19 dicistronic_primary_transcript A primary transcript that has the quality dicistronic. 98725 0 0 75347 19 attCtn_site An attachment site located on a conjugative transposon and used for site-specific integration of a conjugative transposon. 98726 0 0 75348 19 vertebrate_immune_system_feature (obsolete SO:0000937) \N 98727 1 0 75349 19 epigenetically_modified This attribute describes a gene where heritable changes other than those in the DNA sequence occur. These changes include: modification to the DNA (such as DNA methylation, the covalent modification of cytosine), and post-translational modification of histones. 98728 0 0 75350 19 computed_feature_by_similarity (obsolete SO:0000311) . 98729 1 0 75351 19 forward Forward is an attribute of the feature, where the feature is in the 5' to 3' direction. 98730 0 0 75406 19 five_carboxymethylaminomethyluridine 5_carboxymethylaminomethyluridine is a modified uridine base feature. 98796 0 0 77154 2 code \N 210057 0 0 75352 19 gene A region (or regions) that includes all of the sequence elements necessary to encode a functional transcript. A gene may include regulatory regions, transcribed regions and/or other functional sequence regions. 98731 0 0 75353 19 hammerhead_ribozyme A small catalytic RNA motif that catalyzes self-cleavage reaction. Its name comes from its secondary structure which resembles a carpenter's hammer. The hammerhead ribozyme is involved in the replication of some viroid and some satellite RNAs. 98732 0 0 75354 19 translated_nucleotide_match A match against a translated sequence. 98734 0 0 75355 19 score The score of an experimentally derived feature such as a p-value. 98735 0 0 75356 19 inside_intron_antiparallel An attribute to describe a gene when it is located within the intron of another gene and on the opposite strand. 98736 0 0 75358 19 serine_threonine_motif A motif of five consecutive residues and two hydrogen bonds in which: residue(i) is Serine (S) or Threonine (T), the side-chain O of residue(i) is H-bonded to the main-chain NH of residue(i+2) or (i+3) , the main-chain CO group of residue(i) is H-bonded to the main-chain NH of residue(i+3) or (i+4). 98738 0 0 75359 19 disease_associated_variant \N 98740 0 0 75360 19 ribozyme An RNA with catalytic activity. 98741 0 0 75361 19 beta_turn_type_six_a_two \N 98742 0 0 75362 19 modified_L_lysine A post translationally modified lysine amino acid feature. 98743 0 0 75363 19 tmRNA_gene \N 98744 0 0 75364 19 polypeptide_tungsten_ion_contact_site A binding site that, in the polypeptide molecule, interacts selectively and non-covalently with tungsten ions. 98745 0 0 75365 19 engineered_region A region that is engineered. 98747 0 0 75366 19 wild_type_rescue_gene A gene that rescues. 98748 0 0 75367 19 deficient_inversion A chromosomal deletion whereby three breaks occur in the same chromosome; one central region is lost, and the other is inverted. 98749 0 0 75368 19 seven_cyano_seven_deazaguanosine 7_cyano_7_deazaguanosine is a modified 7-deazoguanosine. 98750 0 0 75369 19 increased_translational_product_level A sequence variant which increases the translational product level with respect to a reference sequence. 98751 0 0 75370 19 capped_primary_transcript A primary transcript that is capped. 98752 0 0 75371 19 pyrrolysine_tRNA_primary_transcript A primary transcript encoding pyrrolysyl tRNA (SO:0000766). 98753 0 0 75372 19 DDB_box A conserved polypeptide motif that mediates protein-protein interaction and defines adaptor proteins for DDB1/cullin 4 ubiquitin ligases. 98754 0 0 75373 19 splice_acceptor_variant A splice variant that changes the 2 base region at the 3' end of an intron. 98756 0 0 75374 19 enzymatic An attribute describing the sequence of a transcript that has catalytic activity with or without an associated ribonucleoprotein. 98757 0 0 75375 19 modified_L_glutamine A post translationally modified glutamine amino acid feature. 98758 0 0 75376 19 attenuator A sequence segment located within the five prime end of an mRNA that causes premature termination of translation. 98759 0 0 75377 19 polymorphic_variant \N 98760 0 0 75378 19 floxed An attribute describing sequence that is flanked by Lox-P sites. 98761 0 0 75379 19 peptide_localization_signal A region of peptide sequence used to target the polypeptide molecule to a specific organelle. 98762 0 0 75380 19 three_prime_RACE_clone A three prime RACE (Rapid Amplification of cDNA Ends) clone is a cDNA clone copied from the 3' end of an mRNA (using a poly-dT primer to capture the polyA tail and a gene-specific or randomly primed 5' primer), and spliced into a vector for propagation in a suitable host. 98763 0 0 75381 19 miRNA_loop The loop of the hairpin loop formed by folding of the pre-miRNA. 98765 0 0 75567 19 distal_promoter_element \N 98975 0 0 75388 19 VD_gene Genomic DNA of immunoglobulin/T-cell receptor gene in partially rearranged genomic DNA including L-part1, V-intron and V-D-exon, with the 5' UTR (SO:0000204) and 3' UTR (SO:0000205). 98774 0 0 75389 19 seven_methylguanosine 7_methylguanosine is a modified guanosine base feature. 98775 0 0 75390 19 vertebrate_immune_system_gene_recombination_feature \N 98776 0 0 75391 19 polypeptide_manganese_ion_contact_site A binding site that, in the polypeptide molecule, interacts selectively and non-covalently with manganese ions. 98777 0 0 75392 19 cosmid A cloning vector that is a hybrid of lambda phages and a plasmid that can be propagated as a plasmid or packaged as a phage,since they retain the lambda cos sites. 98779 0 0 75393 19 D_cluster Genomic DNA of immunoglobulin/T-cell receptor gene in germline configuration including more than one D-gene. 98780 0 0 75394 19 pseudogenic_region A non-functional descendent of a functional entity. 98781 0 0 75395 19 T_to_A_transversion A transversion from T to A. 98782 0 0 75396 19 U6_snRNA U6 snRNA is a component of the spliceosome which is involved in splicing pre-mRNA. The putative secondary structure consensus base pairing is confined to a short 5' stem loop, but U6 snRNA is thought to form extensive base-pair interactions with U4 snRNA. 98783 0 0 75397 19 transit_peptide The transit_peptide is a short region at the N-terminus of the peptide that directs the protein to an organelle (chloroplast, mitochondrion, microbody or cyanelle). 98784 0 0 75398 19 methylinosine A modified RNA base in which methylhypoxanthine is bound to the ribose ring. 98786 0 0 75399 19 natural_variant_site Describes the natural sequence variants due to polymorphisms, disease-associated mutations, RNA editing and variations between strains, isolates or cultivars. 98787 0 0 75400 19 histidine_tRNA_primary_transcript A primary transcript encoding histidyl tRNA (SO:0000262). 98789 0 0 75401 19 natural An attribute describing a feature that occurs in nature. 98790 0 0 75402 19 centromere_DNA_Element_II A centromere DNA Element II (CDEII) is part a conserved region of the centromere, consisting of a consensus region that is AT-rich and ~ 75-100 bp in length. 98791 0 0 75403 19 chromoplast_gene A gene from chromoplast_sequence. 98792 0 0 75404 19 conservative_missense_codon A sequence variant whereby at least one base of a codon is changed resulting in a codon that encodes for a different but similar amino acid. These variants may or may not be deleterious. 98793 0 0 75405 19 epitope A binding site that, in the molecule, interacts selectively and non-covalently with antibodies, B cells or T cells. 98794 0 0 77155 57 country_name \N 210058 0 0 75407 19 cryptic_prophage A remnant of an integrated prophage in the host genome or an "island" in the host genome that includes phage like-genes. 98797 0 0 75408 19 H3K27_methylation_site A kind of histone modification site, whereby the 27th residue (a lysine), from the start of the H3 histone protein is methylated. 98798 0 0 75409 19 CDS_independently_known A CDS with the evidence status of being independently known. 98799 0 0 75410 19 five_prime_D_recombination_signal_sequence Recombination signal of an immunoglobulin/T-cell receptor gene, including the 5' D-nonamer (SO:0000497), 5' D-spacer (SO:0000498), and 5' D-heptamer (SO:0000396) in 5' of the D-region of a D-gene, or in 5' of the D-region of DJ-gene. 98800 0 0 75411 19 trans_spliced_mRNA An mRNA that is trans-spliced. 98801 0 0 75412 19 post_translationally_regulated_by_protein_stability An attribute describing a gene sequence where the resulting protein is regulated by the stability of the resulting protein. 98802 0 0 75413 19 terminal_codon_variant A codon variant that changes at least one base of the last codon of the transcript. 98803 0 0 75414 19 coiled_coil A coiled coil is a structural motif in proteins, in which alpha-helices are coiled together like the strands of a rope. 98804 0 0 75415 19 GAGA_motif A non directional promoter motif with consensus sequence GAGAGCG. 98806 0 0 75416 19 minus_1_frameshift_variant A sequence variant which causes a disruption of the translational reading frame, by shifting one base ahead. 98807 0 0 75417 19 iDNA Genomic sequence removed from the genome, as a normal event, by a process of recombination. 98809 0 0 75418 19 gene_segment A gene component region which acts as a recombinational unit of a gene whose functional form is generated through somatic recombination. 98810 0 0 75419 19 inside_intron_parallel An attribute to describe a gene when it is located within the intron of another gene and on the same strand. 98811 0 0 75420 19 V_VJ_J_cluster Genomic DNA of immunoglobulin/T-cell receptor gene in rearranged configuration including at least one V-gene, one VJ-gene and one J-gene. 98812 0 0 75421 19 canonical_splice_site (obsolete SO:0000675) The major class of splice site with dinucleotides GT and AG for donor and acceptor sites, respectively. 98813 1 0 75422 19 interior_exon An exon that is bounded by 5' and 3' splice sites. 98814 0 0 75423 19 genotype A genotype is a variant genome, complete or incomplete. 98816 0 0 75424 19 RNApol_II_promoter_region (obsolete SO:0000844) A region of sequence which is a promoter for RNA polymerase II. 98817 1 0 75425 19 tRNA_primary_transcript A primary transcript encoding a transfer RNA (SO:0000253). 98818 0 0 75426 19 N4_methylcytidine N4-methylcytidine is a modified cytidine. 98819 0 0 75427 19 morpholino_oligo Morpholino oligos are synthesized from four different Morpholino subunits, each of which contains one of the four genetic bases (A, C, G, T) linked to a 6-membered morpholine ring. Eighteen to 25 subunits of these four subunit types are joined in a specific order by non-ionic phosphorodiamidate intersubunit linkages to give a Morpholino. 98820 0 0 75428 19 synonymous_variant \N 98822 0 0 75429 19 H3K4_dimethylation_site A kind of histone modification site, whereby the 4th residue (a lysine), from the start of the H3 histone protein is di-methylated. 98823 0 0 75430 19 mRNA_not_polyadenylated (obsolete SO:0000247) \N 98824 1 0 75431 19 H_pseudoknot A pseudoknot which contains two stems and at least two loops. 98825 0 0 75432 19 transcribed_spacer_region Part of an rRNA transcription unit that is transcribed but discarded during maturation, not giving rise to any part of rRNA. 98827 0 0 75433 19 N6_isopentenyladenosine N6_isopentenyladenosine is a modified adenosine. 98829 0 0 75434 19 retrogene \N 98830 0 0 75435 19 one_methyladenosine 1_methyladenosine is a modified adenosine. 98831 0 0 75436 19 rRNA_encoding \N 98832 0 0 75437 19 sequence_replication_mode (obsolete SO:0000968) \N 98833 1 0 75438 19 enhancer A cis-acting sequence that increases the utilization of (some) eukaryotic promoters, and can function in either orientation and in any location (upstream or downstream) relative to the promoter. 98834 0 0 75439 19 threonyl_tRNA A tRNA sequence that has a threonine anticodon, and a 3' threonine binding region. 98835 0 0 75440 19 CHiP_seq_region A region of sequence identified by CHiP seq technology to contain a protein binding site. 98836 0 0 75441 19 T_to_C_transition \N 98837 0 0 75442 19 plus_2_frameshift variant \N 98838 0 0 75443 19 variant_genome A collection of sequences (often chromosomes) of an individual. 98839 0 0 75444 19 five_prime_D_spacer 12 or 23 nucleotide spacer between the 5' D-heptamer (SO:0000496) and 5' D-nonamer (SO:0000497) of a 5' D-recombination signal sequence (SO:0000556) of an immunoglobulin/T-cell receptor gene. 98840 0 0 75445 19 homologous Similarity due to common ancestry. 98841 0 0 75446 19 genomic_island A genomic island is an integrated mobile genetic element, characterized by size (over 10 Kb). It that has features that suggest a foreign origin. These can include nucleotide distribution (oligonucleotides signature, CG content etc.) that differs from the bulk of the chromosome and/or genes suggesting DNA mobility. 98842 0 0 75447 19 SL6_acceptor_site A SL2_acceptor_site which appends the SL6 RNA leader sequence to the 5' end of an mRNA. SL6 acceptor sites occur in genes in internal segments of polycistronic transcripts. 98843 0 0 75448 19 elongated_polypeptide_C_terminal A sequence variant with in the CDS that causes elongation of the resulting polypeptide sequence at the C terminus. 98844 0 0 75449 19 H3K9_acetylation_site A kind of histone modification site, whereby the 9th residue (a lysine), from the start of the H3 histone protein is acylated. 98845 0 0 75450 19 mRNA_recoded_by_codon_redefinition A recoded_mRNA that was modified by an alteration of codon meaning. 98846 0 0 75451 19 histidyl_tRNA A tRNA sequence that has a histidine anticodon, and a 3' histidine binding region. 98847 0 0 75452 19 BAC_end A region of sequence from the end of a BAC clone that may provide a highly specific marker. 98848 0 0 75453 19 negatively_autoregulated The gene product is involved in its own transcriptional regulation where it decreases transcription. 98849 0 0 75454 19 plasmid_location \N 98850 0 0 75455 19 pseudogenic_rRNA A non functional descendent of an rRNA. 98851 0 0 77156 57 country_code \N 210059 0 0 75456 19 PIP_box A polypeptide region that mediates binding to PCNA. The consensus sequence is QXX(hh)XX(aa), where (h) denotes residues with moderately hydrophobic side chains and (a) denotes residues with highly hydrophobic aromatic side chains. 98852 0 0 75457 19 noncontiguous_finished The status of a whole genome sequence, where the assembly is high quality, closure approaches have been successful for most gaps, misassemblies and low quality regions. 98854 0 0 75458 19 sequence_assembly A sequence of nucleotides that has been algorithmically derived from an alignment of two or more different sequences. 98855 0 0 75459 19 H3K27_acylation_site A kind of histone modification site, whereby the 27th residue (a lysine), from the start of the H3 histone protein is acylated. 98856 0 0 75460 19 pseudouridine A modified RNA base in which the 5- position of the uracil is bound to the ribose ring instead of the 4- position. 98857 0 0 75461 19 Y_prime_element A Y' element is a repeat region (SO:0000657) located adjacent to telomeric repeats or X element combinatorial repeats, either as a single copy or tandem repeat of two to four copies. 98858 0 0 75462 19 complex_3D_structural_variant A sequence variant that changes the resulting polypeptide structure. 98860 0 0 75463 19 catmat_right_handed_three A motif of 3 consecutive residues with dihedral angles as follows: res i: phi -90 bounds -120 to -60, res i: psi -10 bounds -50 to 30, res i+1: phi -75 bounds -100 to -50, res i+1: psi 140 bounds 110 to 170. An extra restriction of the length of the O to O distance would be useful, that it be less than 5 Angstrom. More precisely these two oxygens are the main chain carbonyl oxygen atoms of residues i-1 and i+1. 98861 0 0 75464 19 edited_by_C_to_U_substitution (obsolete SO:0000599) \N 98862 1 0 75465 19 insulator_binding_site A binding site that, in an insulator region of a nucleotide molecule, interacts selectively and non-covalently with polypeptide residues. 98863 0 0 75466 19 insert_dinucleotide (obsolete SO:0000921) An edit to insert a dinucleotide. 98864 1 0 75467 19 nested_repeat (obsolete SO:0001052) \N 98865 1 0 75468 19 gene_part (obsolete SO:0000050) A part of a gene, that has no other route in the ontology back to region. This concept is necessary for logical inference as these parts must have the properties of region. It also allows us to associate all the parts of genes with a gene. 98866 1 0 75469 19 transgene A transgene is a gene that has been transferred naturally or by any of a number of genetic engineering techniques from one organism to another. 98867 0 0 75470 19 cysteinyl_tRNA A tRNA sequence that has a cysteine anticodon, and a 3' cysteine binding region. 98868 0 0 75471 19 wild_type An attribute describing sequence with the genotype found in nature and/or standard laboratory stock. 98869 0 0 75472 19 chromosome_variation \N 98870 0 0 75473 19 engineered_fusion_gene A fusion gene that is engineered. 98871 0 0 75474 19 chromosome_breakpoint \N 98872 0 0 75475 19 chloroplast_chromosome A chromosome originating in a chloroplast. 98874 0 0 75476 19 floxed_gene A transgene that is floxed. 98875 0 0 77347 61 sq dm Square decimeter. 212508 0 0 75571 19 RST_match A match against an RST sequence. 98979 0 0 75478 19 insertion_sequence A terminal_inverted_repeat_element that is bacterial and only encodes the functions required for its transposition between these inverted repeats. 98877 0 0 75479 19 internal_UTR A UTR bordered by the terminal and initial codons of two CDSs in a polycistronic transcript. Every UTR is either 5', 3' or internal. 98878 0 0 75480 19 interior_intron \N 98879 0 0 75481 19 conservative_decrease_in_CDS_length An inframe_decrease_in_cds_length that deletes one or more entire codons from the coding sequence but does not change any remaining codons. 98880 0 0 75482 19 MITE A highly repetitive and short (100-500 base pair) transposable element with terminal inverted repeats (TIR) and target site duplication (TSD). MITEs do not encode proteins. 98881 0 0 75483 19 hydrophobic_region_of_peptide Hydrophobic regions are regions with a low affinity for water. 98883 0 0 75484 19 minus_1_translationally_frameshifted An attribute describing a translational frameshift of -1. 98884 0 0 75485 19 lethal_variant \N 98885 0 0 75486 19 polypeptide_cobalt_ion_contact_site A binding site that, in the polypeptide molecule, interacts selectively and non-covalently with cobalt ions. 98886 0 0 75487 19 decreased_transcript_stability_variant A sequence variant that decreases transcript stability with respect to a reference sequence. 98888 0 0 75488 19 D_DJ_J_cluster Genomic DNA of immunoglobulin/T-cell receptor gene in rearranged configuration including at least one D-gene, one DJ-gene, and one J-gene. 98889 0 0 75489 19 recombinationally_inverted_gene A recombinationally rearranged gene by inversion. 98890 0 0 75490 19 stop_codon_signal A recoding stimulatory signal that is a stop codon and has effect on efficiency of recoding. 98891 0 0 75491 19 insert_C (obsolete SO:0000920) An edit to insert a cytidine. 98892 1 0 75492 19 seryl_tRNA A tRNA sequence that has a serine anticodon, and a 3' serine binding region. 98893 0 0 75493 19 dif_site A site at which replicated bacterial circular chromosomes are decatenated by site specific resolvase. 98894 0 0 75494 19 conservative_amino_acid_substitution A sequence variant of a codon causing the substitution of a similar amino acid for another in the resulting polypeptide. 98895 0 0 75495 19 CTG_start_codon A non-canonical start codon of sequence CTG. 98896 0 0 75496 19 sequence_variant_affecting_editing (obsolete SO:1000075) Sequence variant affects the editing of the transcript. 98897 1 0 75499 19 read_pair One of a pair of sequencing reads in which the two members of the pair are related by originating at either end of a clone insert. 98900 0 0 75500 19 genomically_contaminated_cDNA_clone A cDNA clone invalidated by genomic contamination. 98901 0 0 75501 19 insulator A transcriptional cis regulatory region that when located between a CM and a gene's promoter prevents the CRM from modulating that genes expression. 98902 0 0 75502 19 one_two_prime_O_dimethylinosine 1,2'-O-dimethylinosine is a modified inosine. 98903 0 0 75503 19 genomic_clone A clone of a DNA region of a genome. 98904 0 0 75504 19 five_prime_UTR_intron An intron located in the 5' UTR. 98905 0 0 75547 19 wybutosine Wybutosine is a modified guanosine base feature. 98954 0 0 75505 19 WC_base_pair The canonical base pair, where two bases interact via WC edges, with glycosidic bonds oriented cis relative to the axis of orientation. 98906 0 0 75506 19 target_site_duplication A sequence of the target DNA that is duplicated when a transposable element or phage inserts; usually found at each end the insertion. 98907 0 0 75507 19 RNApol_II_core_promoter The minimal portion of the promoter required to properly initiate transcription in RNA polymerase II transcribed genes. 98909 0 0 75508 19 two_prime_O_methyluridine 2prime_O_methyluridine is a modified uridine base feature. 98910 0 0 75509 19 gene_with_start_codon_CUG A gene with a translational start codon of CUG. 98911 0 0 75510 19 rRNA_gene A gene that encodes for ribosomal RNA. 98913 0 0 75511 19 TNA_oligo An oligo composed of TNA residues. 98914 0 0 75512 19 minus_10_signal A conserved region about 10-bp upstream of the start point of bacterial transcription units which may be involved in binding RNA polymerase; consensus=TAtAaT. This region is associated with sigma factor 70. 98915 0 0 75513 19 silenced_by_DNA_methylation An attribute describing an epigenetic process where a gene is inactivated by DNA methylation, resulting in repression of transcription. 98916 0 0 75514 19 intron_attribute (obsolete SO:0000661) \N 98917 1 0 75515 19 modified_L_proline A post translationally modified proline amino acid feature. 98918 0 0 75516 19 methylated_C A methylated deoxy-cytosine. 98919 0 0 75517 19 homing_endonuclease_binding_site The binding site (recognition site) of a homing endonuclease. The binding site is typically large. 98920 0 0 75518 19 U2_intron A major type of spliceosomal intron spliced by the U2 spliceosome, that includes U1, U2, U4/U6 and U5 snRNAs. 98921 0 0 75519 19 nc_primary_transcript A primary transcript that is never translated into a protein. 98922 0 0 75520 19 spliceosomal_intron_region A region within an intron. 98923 0 0 75521 19 nuclear_mitochondrial (obsolete SO:0000899) An attribute describing a nuclear pseudogene of a mitochndrial gene. 98924 1 0 75522 19 polycistronic An attribute describing a sequence that contains the code for more than one gene product. 98925 0 0 75523 19 one_two_prime_O_dimethyladenosine 1,2'-O-dimethyladenosine is a modified adenosine. 98926 0 0 75524 19 H3K79_monomethylation_site A kind of histone modification site, whereby the 79th residue (a lysine), from the start of the H3 histone protein is mono- methylated. 98927 0 0 75525 19 sequence_variation_decreasing_level_of_transcript (obsolete SO:1000086) A sequence variation that causes a decrease in the level of mature, spliced and processed RNA, resulting from a change in the corresponding DNA sequence. 98928 1 0 75568 19 pre_edited_region The region of a transcript that will be edited. 98976 0 0 75526 19 sequence_variant_causing_minus_1_frameshift (obsolete SO:1000067) A mutation causing a disruption of the translational reading frame, due to the deletion of a nucleotide. 98929 1 0 75527 19 alternatively_spliced An attribute describing a situation where a gene may encode for more than 1 transcript. 98930 0 0 75528 19 five_formylcytidine 5-formylcytidine is a modified cytidine. 98931 0 0 75529 19 group_II_intron Group II introns are found in rRNA, tRNA and mRNA of organelles in fungi, plants and protists, and also in mRNA in bacteria. They are large self-splicing ribozymes and have 6 structural domains (usually designated dI to dVI). A subset of group II introns also encode essential splicing proteins in intronic ORFs. The length of these introns can therefore be up to 3kb. Splicing occurs in almost identical fashion to nuclear pre-mRNA splicing with two transesterification steps. The 2' hydroxyl of a bulged adenosine in domain VI attacks the 5' splice site, followed by nucleophilic attack on the 3' splice site by the 3' OH of the upstream exon. Protein machinery is required for splicing in vivo, and long range intron-intron and intron-exon interactions are important for splice site positioning. Group II introns are further sub-classified into groups IIA and IIB which differ in splice site consensus, distance of bulged A from 3' splice site, some tertiary interactions, and intronic ORF phylogeny. 98932 0 0 75530 19 LNA_oligo An oligo composed of LNA residues. 98934 0 0 75531 19 three_prime_recoding_site The recoding stimulatory signal located downstream of the recoding site. 98935 0 0 75532 19 reciprocal_chromosomal_translocation A chromosomal translocation with two breaks; two chromosome segments have simply been exchanged. 98936 0 0 75533 19 U12_snRNA The U12 small nuclear (snRNA), together with U4atac/U6atac, U5, and U11 snRNAs and associated proteins, forms a spliceosome that cleaves a divergent class of low-abundance pre-mRNA introns. 98937 0 0 75534 19 SL3_acceptor_site A SL2_acceptor_site which appends the SL3 RNA leader sequence to the 5' end of an mRNA. SL3 acceptor sites occur in genes in internal segments of polycistronic transcripts. 98939 0 0 75535 19 designed_sequence \N 98940 0 0 75536 19 increased_polyadenylation_variant A transcript processing variant whereby polyadenylation of the encoded transcript is increased with respect to the reference. 98941 0 0 75537 19 five_prime_flanking_region A flanking region located five prime of a specific region. 98942 0 0 75538 19 intrinsically_unstructured_polypeptide_region A region of polypeptide chain with high conformational flexibility. 98944 0 0 75539 19 sequence_variant_causing_missense_codon_change_in_transcript (obsolete SO:1000059) The nucleotide change in the codon leads to a new codon coding for a new amino acid. 98945 1 0 75540 19 extramembrane_polypeptide_region Polypeptide region that is localized outside of a lipid bilayer. 98946 0 0 75541 19 intrachromosomal_transposition A chromosome structure variation whereby a transposition occurred within a chromosome. 98948 0 0 75542 19 V_J_C_cluster Genomic DNA of immunoglobulin/T-cell receptor gene in germline configuration including at least one V-gene, one J-gene and one C-gene. 98949 0 0 75543 19 LINE_element A dispersed repeat family with many copies, each from 1 to 6 kb long. New elements are generated by retroposition of a transcribed copy. Typically the LINE contains 2 ORF's one of which is reverse transcriptase, and 3'and 5' direct repeats. 98950 0 0 75544 19 post_translationally_regulated_gene A gene that is post translationally regulated. 98951 0 0 75545 19 three_prime_LTR \N 98952 0 0 75546 19 bipartite_inversion A chromosomal inversion caused by three breaks in the same chromosome; both central segments are inverted in place (i.e., they are not transposed). 98953 0 0 75548 19 endogenous_retroviral_gene A proviral gene with origin endogenous retrovirus. 98955 0 0 75549 19 deficient_translocation A chromosomal deletion whereby a translocation occurs in which one of the four broken ends loses a segment before re-joining. 98956 0 0 75550 19 computed_feature (obsolete SO:0000309) \N 98957 1 0 75551 19 monocistronic An attribute describing a sequence that contains the code for one gene product. 98958 0 0 75552 19 gene_with_non_canonical_start_codon A gene with a start codon other than AUG. 98959 0 0 75553 19 interband A light region between two darkly staining bands in a polytene chromosome. 98960 0 0 75554 19 Sequence_Ontology (obsolete SO:0000000) \N 98961 1 0 75555 19 blunt_end_restriction_enzyme_cleavage_junction A restriction enzyme cleavage site where both strands are cut at the same position. 98962 0 0 75556 19 sequence variant_affecting_transcript_stability (obsolete SO:1000082) Sequence variant affects the stability of the transcript. 98963 1 0 75557 19 attP_site An integration/excision site of a phage chromosome at which a recombinase acts to insert the phage DNA at a cognate integration/excision site on a bacterial chromosome. 98964 0 0 75558 19 BAC_clone (obsolete SO:0000764) \N 98965 1 0 75559 19 syntenic_region A region in which two or more pairs of homologous markers occur on the same chromosome in two or more species. 98966 0 0 75560 19 five_methoxycarbonylmethyl_two_thiouridine 5_methoxycarbonylmethyl_2_thiouridine is a modified uridine base feature. 98968 0 0 75561 19 C_D_box_snoRNA_primary_transcript A primary transcript encoding a small nucleolar RNA of the box C/D family. 98969 0 0 75562 19 substitute_A_to_I (obsolete SO:0000919) An edit to substitute an I for an A. 98970 1 0 75563 19 member_of_regulon \N 98971 0 0 75564 19 minus_35_signal A conserved hexamer about 35-bp upstream of the start point of bacterial transcription units; consensus=TTGACa or TGTTGACA. This region is associated with sigma factor 70. 98972 0 0 75565 19 dye_terminator_read A read produced by the dye terminator method of sequencing. 98973 0 0 75566 19 D_loop Displacement loop; a region within mitochondrial DNA in which a short stretch of RNA is paired with one strand of DNA, displacing the original partner DNA strand in this region; also used to describe the displacement of a region of one strand of duplex DNA by a single stranded invader in the reaction catalyzed by RecA protein. 98974 0 0 75569 19 STS_map An STS map is a physical map organized by the unique STS landmarks. 98977 0 0 75570 19 inversion_attribute \N 98978 0 0 75572 19 bound_by_factor An attribute describing a sequence that is bound by another molecule. 98980 0 0 75573 19 T3_RNA_Polymerase_Promoter A DNA sequence to which the T3 RNA polymerase binds, to begin transcription. 98981 0 0 75574 19 polypeptide_truncation A sequence variant of the CD that causes a truncation of the resulting polypeptide. 98982 0 0 75575 19 foldback_element A transposable element with extensive secondary structure, characterized by large modular imperfect long inverted repeats. 98983 0 0 75576 19 assembly A region of the genome of known length that is composed by ordering and aligning two or more different regions. 98984 0 0 75577 19 ribozymic An attribute describing the sequence of a transcript that has catalytic activity even without an associated ribonucleoprotein. 98985 0 0 75578 19 galactosyl_queuosine Galactosyl_queuosine is a modified 7-deazoguanosine. 98986 0 0 75579 19 transcriptional_cis_regulatory_region A regulatory_region that modulates the transcription of a gene or genes. 98987 0 0 75580 19 RST A tag produced from a single sequencing read from a RACE product; typically a few hundred base pairs long. 98988 0 0 75581 19 H_ACA_box_snoRNA_encoding \N 98989 0 0 75582 19 haplotype_block A region of the genome which is co-inherited as the result of the lack of historic recombination within it. 98990 0 0 75583 19 compositionally_biased_region_of_peptide Polypeptide region that is rich in a particular amino acid or homopolymeric and greater than three residues in length. 98991 0 0 75584 19 five_prime_restriction_enzyme_junction The restriction enzyme cleavage junction on the 5' strand of the nucleotide sequence. 98993 0 0 75585 19 tiling_path_clone A clone which is part of a tiling path. A tiling path is a set of sequencing substrates, typically clones, which have been selected in order to efficiently cover a region of the genome in preparation for sequencing and assembly. 98994 0 0 75586 19 cDNA_clone Complementary DNA; A piece of DNA copied from an mRNA and spliced into a vector for propagation in a suitable host. 98995 0 0 75587 19 restriction_fragment A region of polynucleotide sequence produced by digestion with a restriction endonuclease. 98996 0 0 75588 19 centromere A region of chromosome where the spindle fibers attach during mitosis and meiosis. 98997 0 0 76486 41 organism_synonym \N 209385 0 0 75589 19 N2_N2_7_trimethylguanosine N2_N2_7_trimethylguanosine is a modified guanosine base feature. 98998 0 0 75590 19 cytoplasmic_polypeptide_region Polypeptide region that is localized inside the cytoplasm. 98999 0 0 75682 19 laevosynaptic_chromosome LS is an autosynaptic chromosome carrying the two left (L = levo) telomeres. 99110 0 0 75591 19 SL10_accceptor_site A SL2_acceptor_site which appends the SL10 RNA leader sequence to the 5' end of an mRNA. SL10 acceptor sites occur in genes in internal segments of polycistronic transcripts. 99001 0 0 75592 19 miRNA_primary_transcript A primary transcript encoding a micro RNA. 99002 0 0 75593 19 gene_by_organelle_of_genome (obsolete SO:0000086) \N 99003 1 0 75594 19 invalidated_by_genomic_contamination An attribute to describe a feature that is invalidated due to genomic contamination. 99004 0 0 75595 19 CDS A contiguous sequence which begins with, and includes, a start codon and ends with, and includes, a stop codon. 99005 0 0 75596 19 non_processed_pseudogene A pseudogene that arose from a means other than retrotransposition. 99006 0 0 75597 19 V_DJ_C_cluster Genomic DNA of immunoglobulin/T-cell receptor gene in rearranged configuration including at least one V-gene, one DJ-gene and one C-gene. 99007 0 0 75598 19 polypeptide_region Biological sequence region that can be assigned to a specific subsequence of a polypeptide. 99008 0 0 75882 19 repeat_unit The simplest repeated component of a repeat region. A single repeat. 99333 0 0 75599 19 regional_centromere A regional centromere is a large modular centromere found in fission yeast and higher eukaryotes. It consist of a central core region flanked by inverted inner and outer repeat regions. 99012 0 0 75600 19 mating_type_region A specialized region in the genomes of some yeast and fungi, the genes of which regulate mating type. 99014 0 0 75601 19 mathematically_defined_repeat A mathematically defined repeat (MDR) is a experimental feature that is determined by querying overlapping oligomers of length k against a database of shotgun sequence data and identifying regions in the query sequence that exceed a statistically determined threshold of repetitiveness. 99015 0 0 75602 19 SL1_acceptor_site A trans_splicing_acceptor_site which appends the 22nt SL1 RNA leader sequence to the 5' end of most mRNAs. 99017 0 0 75603 19 DMv3_motif A sequence element characteristic of some RNA polymerase II promoters, usually located between -30 and +15 relative to the TSS. Consensus sequence is KNNCAKCNCTRNY. Tends to co-occur with DMv2 (SO:0001161). Tends to not occur with DPE motif (SO:0000015) or MTE (0001162). 99018 0 0 75604 19 frame_restoring_variant A sequence variant that reverts the sequence of a previous frameshift mutation back to the initial frame. 99019 0 0 75605 19 RRE_RNA The Rev response element (RRE) is encoded within the HIV-env gene. Rev is an essential regulatory protein of HIV that binds an internal loop of the RRE leading, encouraging further Rev-RRE binding. This RNP complex is critical for mRNA export and hence for expression of the HIV structural proteins. 99020 0 0 75606 19 st_turn_left_handed_type_two The peptide twists in an anticlockwise, left handed manner. The dihedral angles for this turn are: Residue(i): -140 degrees < chi(1) -120 degrees < -20 degrees, +80 degrees psi +120 degrees < +180 degrees, residue(i+1): +20 degrees < phi < +140 degrees, -40 < psi < +90 degrees. 99022 0 0 75607 19 protein_coding_primary_transcript A primary transcript that, at least in part, encodes one or more proteins. 99024 0 0 75608 19 mutation_causing_out_of_frame_polypeptide_C_terminal_elongation (obsolete SO:1000109) \N 99025 1 0 75609 19 polypeptide_calcium_ion_contact_site A binding site that, in the polypeptide molecule, interacts selectively and non-covalently with calcium ions. 99026 0 0 75610 19 modified_RNA_base_feature A post_transcriptionally modified base. 99028 0 0 75611 19 insertion_attribute A quality of a chromosomal insertion,. 99029 0 0 75612 19 coding_region_of_exon The region of an exon that encodes for protein sequence. 99030 0 0 75613 19 sequence_feature An extent of biological sequence. 99031 0 0 75614 19 glutaminyl_tRNA A tRNA sequence that has a glutamine anticodon, and a 3' glutamine binding region. 99032 0 0 75615 19 J_C_cluster Genomic DNA of immunoglobulin/T-cell receptor gene in germline configuration including at least one J-gene and one C-gene. 99033 0 0 75616 19 STS Short (typically a few hundred base pairs) DNA sequence that has a single occurrence in a genome and whose location and base sequence are known. 99034 0 0 75617 19 SINE_element A repetitive element, a few hundred base pairs long, that is dispersed throughout the genome. A common human SINE is the Alu element. 99036 0 0 75618 19 sequence_variant_causing_gene_fusion (obsolete SO:1000181) A sequence_variant_effect that changes the gene structure by causing a fusion to another gene. 99037 1 0 75619 19 gene_with_recoded_mRNA A gene that encodes an mRNA that is recoded. 99038 0 0 75620 19 gene_with_polycistronic_transcript A gene that encodes a polycistronic transcript. 99039 0 0 75621 19 cross_genome_match A nucleotide match against a sequence from another organism. 99040 0 0 75622 19 N4_N4_2_prime_O_trimethylcytidine N4_N4_2_prime_O_trimethylcytidine is a modified cytidine. 99041 0 0 75623 19 ct_gene A gene from chloroplast sequence. 99042 0 0 75624 19 processed_transcript A transcript for which no open reading frame has been identified and for which no other function has been determined. 99043 0 0 75625 19 natural_plasmid A plasmid that occurs naturally. 99045 0 0 75626 19 C_to_A_transversion A transversion from cytidine to adenine. 99046 0 0 75627 19 interior_coding_exon \N 99047 0 0 75628 19 H_ACA_box_snoRNA_primary_transcript A primary transcript encoding a small nucleolar RNA of the box H/ACA family. 99048 0 0 75629 19 beta_turn_right_handed_type_one Right handed type I:A motif of four consecutive residues that may contain one H-bond, which, if present, is between the main-chain CO of the first residue and the main-chain NH of the fourth. It is characterized by the dihedral angles: Residue(i+1): -140 degrees < phi < -20 degrees, -90 degrees < psi < +40 degrees. Residue(i+2): -140 degrees < phi < -20 degrees, -90 degrees < psi < +40 degrees. 99049 0 0 75630 19 validated_cDNA_clone A cDNA clone that has been validated. 99051 0 0 75631 19 two_methylthio_N6_methyladenosine 2_methylthio_N6_methyladenosine is a modified adenosine. 99052 0 0 75632 19 J_nonamer 9 nucleotide recombination site (e.g. GGTTTTTGT), part of a J-gene recombination feature of an immunoglobulin/T-cell receptor gene. 99053 0 0 75633 19 sequence_collection A collection of discontinuous sequences. 99054 0 0 75637 19 YAC Yeast Artificial Chromosome, a vector constructed from the telomeric, centromeric, and replication origin sequences needed for replication in yeast cells. 99058 0 0 75638 19 snoRNA_gene \N 99059 0 0 75639 19 translational_product_function_variant A sequence variant that affects the functioning of a translational product with respect to a reference sequence. 99060 0 0 75640 19 no_output An experimental region wherean analysis has been run and not produced any annotation. 99061 0 0 75641 19 expressed_sequence_assembly A sequence assembly derived from expressed sequences. 99062 0 0 75642 19 sequence_variant_causing_amino_acid_deletion (obsolete SO:1000097) The deletion of one or more amino acids from the polypeptide, without affecting the surrounding sequence. 99063 1 0 75643 19 hyperploid A kind of chromosome variation where the chromosome complement is not an exact multiple of the haploid number as extra chromosomes are present. 99064 0 0 75644 19 synonymous \N 99065 0 0 75645 19 glutamic_acid \N 99066 0 0 75646 19 nuclease_hypersensitive_site \N 99067 0 0 75647 19 translational_product_level_variant A functional variant that changes the translational product level with respect to a reference sequence. 99068 0 0 75648 19 episome A plasmid that may integrate with a chromosome. 99069 0 0 75649 19 MTE A sequence element characteristic of some RNA polymerase II promoters, usually located between +20 and +30 relative to the TSS. Consensus sequence is CSARCSSAACGS. Tends to co-occur with INR motif (SO:0000014). Tends to not occur with DPE motif (SO:0000015) or DMv5 (SO:0001159). 99070 0 0 75650 19 biological_region A region defined by its disposition to be involved in a biological process. 99071 0 0 75651 19 rRNA_large_subunit_primary_transcript A primary transcript encoding a large ribosomal subunit RNA. 99072 0 0 75652 19 two_thio_two_prime_O_methyluridine 2_thio_2prime_O_methyluridine is a modified uridine base feature. 99073 0 0 75653 19 double_stranded_RNA_chromosome Structural unit composed of a self-replicating, double-stranded RNA molecule. 99074 0 0 75654 19 sequence_variant_causing_complex_3D_structural_change (obsolete SO:1000115) \N 99075 1 0 75655 19 two_methylthio_N6_hydroxynorvalyl_carbamoyladenosine 2_methylthio_N6_hydroxynorvalyl_carbamoyladenosine is a modified adenosine. 99076 0 0 75656 19 arginyl_tRNA A tRNA sequence that has an arginine anticodon, and a 3' arginine binding region. 99077 0 0 75657 19 DNA_constraint_sequence A double-stranded DNA used to control macromolecular structure and function. 99078 0 0 75658 19 sequence_variant_affecting_polyadenylation (obsolete SO:0001432) \N 99079 1 0 75659 19 cysteine_tRNA_primary_transcript A primary transcript encoding cysteinyl tRNA (SO:0000258). 99080 0 0 75660 19 nested_tandem_repeat An NTR is a nested repeat of two distinct tandem motifs interspersed with each other. 99081 0 0 75661 19 linear_double_stranded_DNA_chromosome Structural unit composed of a self-replicating, double-stranded, linear DNA molecule. 99083 0 0 75662 19 inversion_site_part A region located within an inversion site. 99084 0 0 75663 19 UTR_intron Intron located in the untranslated region. 99085 0 0 75664 19 stop_retained_variant A sequence variant where at least one base in the terminator codon is changed, but the terminator remains. 99086 0 0 75794 19 three_methyluridine 3_methyluridine is a modified uridine base feature. 99234 0 0 75665 19 tmRNA_coding_piece The region of a two-piece tmRNA that bears the reading frame encoding the proteolysis tag. The tmRNA gene undergoes circular permutation in some groups of bacteria. Processing of the transcripts from such a gene leaves the mature tmRNA in two pieces, base-paired together. 99087 0 0 75666 19 microarray_oligo \N 99089 0 0 75667 19 E_box_motif A sequence element characteristic of some RNA polymerase II promoters, usually located between -60 and +1 relative to the TSS. Consensus sequence is AWCAGCTGWT. Tends to co-occur with DMv2 (SO:0001161). Tends to not occur with DPE motif (SO:0000015). 99090 0 0 75668 19 beta_bulge_loop_five A motif of three residues within a beta-sheet consisting of two H-bonds in which: the main-chain NH of residue(i) is H-bonded to the main-chain CO of residue(i+4), the main-chain CO of residue i is H-bonded to the main-chain NH of residue(i+3), these loops have an RL nest at residues i+2 and i+3. 99091 0 0 75669 19 N6_threonylcarbamoyladenosine N6_threonylcarbamoyladenosine is a modified adenosine. 99093 0 0 75670 19 encodes_alternate_transcription_start_sites \N 99094 0 0 75671 19 canonical_five_prime_splice_site The canonical 5' splice site has the sequence "GT". 99095 0 0 75672 19 splice_site_variant A sequence variant that changes the first two or last two bases of an intron, or the 5th base from the start of the intron in the orientation of the transcript. 99096 0 0 75673 19 twintron An intron within an intron. Twintrons are group II or III introns, into which another group II or III intron has been transposed. 99097 0 0 75674 19 RNA_motif A motif that is active in RNA sequence. 99100 0 0 75675 19 mature_transcript A transcript which has undergone the necessary modifications, if any, for its function. In eukaryotes this includes, for example, processing of introns, cleavage, base modification, and modifications to the 5' and/or the 3' ends, other than addition of bases. In bacteria functional mRNAs are usually not modified. 99101 0 0 75676 19 U14_snoRNA_primary_transcript The primary transcript of an evolutionarily conserved eukaryotic low molecular weight RNA capable of intermolecular hybridization with both homologous and heterologous 18S rRNA. 99102 0 0 75723 19 transcript_processing_variant A sequence variant that affects the post transcriptional processing of a transcript with respect to a reference sequence. 99156 0 0 75724 19 non_covalent_binding_site (obsolete SO:0001091) Binding site for any chemical group (co-enzyme, prosthetic group, etc.). 99157 1 0 75677 19 binding_site A biological_region of sequence that, in the molecule, interacts selectively and non-covalently with other molecules. A region on the surface of a molecule that may interact with another molecule. When applied to polypeptides: Amino acids involved in binding or interactions. It can also apply to an amino acid bond which is represented by the positions of the two flanking amino acids. 99104 0 0 75678 19 paralogous_region A homologous_region that is paralogous to another region. 99106 0 0 75679 19 gene_group_regulatory_region \N 99107 0 0 75680 19 histone_acetylation_site A histone modification where the modification is the acylation of the residue. 99108 0 0 75684 19 H3K9_trimethylation_site A kind of histone modification site, whereby the 9th residue (a lysine), from the start of the H3 histone protein is tri-methylated. 99112 0 0 75685 19 duplicated_pseudogene A pseudogene that arose via gene duplication. Generally duplicated pseudogenes have the same structure as the original gene, including intron-exon structure and some regulatory sequence. 99113 0 0 75686 19 RNA_junction_loop \N 99114 0 0 75687 19 encodes_overlapping_polypeptides_different_start_and_stop A gene that is alternately spliced, and encodes more than one polypeptide, that have overlapping peptide sequences, but use different start and stop codons. 99115 0 0 75688 19 contig_collection A collection of contigs. 99116 0 0 75689 19 gene_cassette_array An array of non-functional genes whose members, when captured by recombination form functional genes. 99117 0 0 75690 19 duplication_attribute \N 99118 0 0 75691 19 sequence_variant_causes_intron_gain (obsolete SO:1000185) A sequence variant effect, causing an intron to be gained by the processed transcript; usually a result of a donor acceptor mutation (SO:1000072). 99119 1 0 75692 19 five_isopentenylaminomethyl_two_prime_O_methyluridine 5_isopentenylaminomethyl_2prime_O_methyluridine is a modified uridine base feature. 99120 0 0 75693 19 uridine_five_oxyacetic_acid_methyl_ester Uridine_5_oxyacetic_acid_methyl_ester is a modified uridine base feature. 99121 0 0 75694 19 gene_array_member \N 99122 0 0 75695 19 common_variant \N 99123 0 0 75696 19 YAC_end A region of sequence from the end of a YAC clone that may provide a highly specific marker. 99124 0 0 75697 19 compound_chromosome_arm \N 99125 0 0 75698 19 three_ten_helix The 3-10 helix has 3 residues per turn with a translation of 2.0 angstroms (=0.2 nm) along the helical axis. The N-H group of an amino acid forms a hydrogen bond with the C=O group of the amino acid three residues earlier. 99126 0 0 75699 19 sequence_variant_causing_minus_2_frameshift (obsolete SO:1000069) A mutation causing a disruption of the translational reading frame, due to the deletion of two nucleotides. 99128 1 0 75700 19 lambda_clone (obsolete SO:0000160) A linear clone derived from lambda bacteriophage. The genes involved in the lysogenic pathway are removed from the from the viral DNA. Up to 25 kb of foreign DNA can then be inserted into the lambda genome. 99129 1 0 75701 19 macronuclear_chromosome A chromosome originating in a macronucleus. 99130 0 0 75702 19 allelically_excluded Allelic exclusion is a process occurring in diploid organisms, where a gene is inactivated and not expressed in that cell. 99131 0 0 75703 19 A_to_C_transversion A transversion from adenine to cytidine. 99132 0 0 75704 19 three_prime_D_heptamer 7 nucleotide recombination site like CACAGTG, part of a 3' D-recombination signal sequence of an immunoglobulin/T-cell receptor gene. 99133 0 0 75705 19 V_VDJ_J_C_cluster Genomic DNA of immunoglobulin/T-cell receptor gene in rearranged configuration including at least one V-gene, one VDJ-gene, one J-gene and one C-gene. 99134 0 0 76268 19 modified_guanosine \N 99764 0 0 75706 19 polinton A kind of DNA transposon that populates the genomes of protists, fungi, and animals, characterized by a unique set of proteins necessary for their transposition, including a protein-primed DNA polymerase B, retroviral integrase, cysteine protease, and ATPase. Polintons are characterized by 6-bp target site duplications, terminal-inverted repeats that are several hundred nucleotides long, and 5'-AG and TC-3' termini. Polintons exist as autonomous and nonautonomous elements. 99135 0 0 75707 19 sequence_variant_affecting_transcription (obsolete SO:1000076) Mutation affects the process of transcription, its initiation, progression or termination. 99137 1 0 75708 19 N6_N6_2_prime_O_trimethyladenosine N6_N6_2prime_O_trimethyladenosine is a modified adenosine. 99138 0 0 75709 19 invalidated_by_chimeric_cDNA A cDNA clone constructed from more than one mRNA. Usually an experimental artifact. 99139 0 0 75710 19 modified_L_methionine A post translationally modified methionine amino acid feature. 99140 0 0 75711 19 IRLinv_site Component of the inversion site located at the left of a region susceptible to site-specific inversion. 99141 0 0 75712 19 inframe_increase_in_CDS_length An inframe_non_synonymous_variant that inserts bases into in the coding sequence. 99142 0 0 75713 19 five_methylaminomethyl_two_selenouridine 5_methylaminomethyl_2_selenouridine is a modified uridine base feature. 99143 0 0 75714 19 octamer_motif A sequence element characteristic of some RNA polymerase II promoters with sequence ATTGCAT that binds Pou-domain transcription factors. 99144 0 0 75715 19 encodes_different_polypeptides_different_stop A gene that is alternately spliced, and encodes more than one polypeptide, that have overlapping peptide sequences, but use different stop codons. 99146 0 0 75716 19 oligo_U_tail The string of non-encoded U's at the 3' end of a guide RNA (SO:0000602). 99147 0 0 75717 19 three_prime_restriction_enzyme_junction \N 99149 0 0 75718 19 engineered_insert A clone insert that is engineered. 99150 0 0 75719 19 seven_deazaguanosine 7-deazaguanosine is a moddified guanosine. 99151 0 0 75720 19 polypeptide_nickel_ion_contact_site A binding site that, in the polypeptide molecule, interacts selectively and non-covalently with nickel ions. 99152 0 0 75721 19 functional_variant A sequence variant in which the function of a gene product is altered with respect to a reference. 99154 0 0 75722 19 RAPD RAPD is a 'PCR product' where a sequence variant is identified through the use of PCR with random primers. 99155 0 0 75726 19 interchromosomal_duplication A chromosome duplication involving an insertion from another chromosome. 99160 0 0 75727 19 mature_transcript_region A region of a mature transcript. 99161 0 0 75728 19 macronucleus_destined_segment A sequence that is conserved, although rearranged relative to the micronucleus, in the macronucleus of a ciliate genome. 99162 0 0 75729 19 five_aminomethyl_two_thiouridine 5_aminomethyl_2_thiouridine is a modified uridine base feature. 99163 0 0 75730 19 ASPE_primer "A primer containing an SNV at the 3' end for accurate genotyping. 99164 0 0 75731 19 PNA_oligo Peptide nucleic acid, is a chemical not known to occur naturally but is artificially synthesized and used in some biological research and medical treatments. The PNA backbone is composed of repeating N-(2-aminoethyl)-glycine units linked by peptide bonds. The purine and pyrimidine bases are linked to the backbone by methylene carbonyl bonds. 99166 0 0 75732 19 chromosome Structural unit composed of a nucleic acid molecule which controls its own replication through the interaction of specific proteins at one or more origins of replication. 99167 0 0 75733 19 miRNA_stem The stem of the hairpin loop formed by folding of the pre-miRNA. 99168 0 0 75734 19 predicted_gene \N 99169 0 0 75735 19 five_taurinomethyl_two_thiouridine 5_taurinomethyl_2_thiouridineis a modified uridine base feature. 99170 0 0 75736 19 encodes_alternately_spliced_transcripts A gene that encodes more than one transcript. 99171 0 0 75737 19 R_GNA_oligo An oligo composed of (R)-GNA residues. 99172 0 0 75738 19 tyrosyl_tRNA A tRNA sequence that has a tyrosine anticodon, and a 3' tyrosine binding region. 99173 0 0 75739 19 methylation_guide_snoRNA_primary_transcript A primary transcript encoding a methylation guide small nucleolar RNA. 99174 0 0 75740 19 H3K4_trimethylation A kind of histone modification site, whereby the 4th residue (a lysine), from the start of the H3 protein is tri-methylated. 99175 0 0 75741 19 recoded_mRNA The sequence of a mature mRNA transcript, modified before translation or during translation, usually by special cis-acting signals. 99176 0 0 75742 19 three_prime_D_recombination_signal_sequence Recombination signal of an immunoglobulin/T-cell receptor gene, including the 3' D-heptamer (SO:0000493), 3' D-spacer, and 3' D-nonamer (SO:0000494) in 3' of the D-region of a D-gene. 99178 0 0 75743 19 kinetoplast_gene A gene located in kinetoplast sequence. 99179 0 0 75744 19 mutation_causing_polypeptide_N_terminal_elongation (obsolete SO:1000100) . 99180 1 0 75745 19 sequence_variation_affecting_transcript_sequence (obsolete SO:1000079) \N 99181 1 0 75746 19 repeat_component A region of a repeated sequence. 99182 0 0 75747 19 methionyl_tRNA A tRNA sequence that has a methionine anticodon, and a 3' methionine binding region. 99183 0 0 75748 19 CDS_fragment \N 99184 0 0 75749 19 orphan_CDS A CDS whose predicted amino acid sequence is unsupported by any experimental evidence or by any match with any other known sequence. 99185 0 0 75750 19 polycistronic_gene (obsolete SO:0000477) A gene that is polycistronic. 99186 1 0 75751 19 UPD Uniparental disomy is a sequence_alteration where a diploid individual receives two copies for all or part of a chromosome from one parent and no copies of the same chromosome or region from the other parent. 99187 0 0 75793 19 three_prime_three_prime_overlap An attribute to describe a gene when the 3' region overlaps with another gene's 3' region. 99233 0 0 75831 19 polyA_site The site on an RNA transcript to which will be added adenine residues by post-transcriptional polyadenylation. The boundary between the UTR and the polyA sequence. 99278 0 0 75752 19 gamma_turn_classic Gamma turns, defined for 3 residues i, i+1, i+2 if a hydrogen bond exists between residues i and i+2 and the phi and psi angles of residue i+1 fall within 40 degrees: phi(i+1)=75.0 - psi(i+1)=-64.0. 99189 0 0 75753 19 match_set (obsolete SO:0000038) A collection of match parts. 99191 1 0 75754 19 cloned_cDNA (obsolete SO:0000792) \N 99192 1 0 75755 19 translocation A region of nucleotide sequence that has translocated to a new position. 99193 0 0 75756 19 polymer_attribute An attribute to describe the kind of biological sequence. 99194 0 0 75757 19 five_isopentenylaminomethyl_uridine 5_isopentenylaminomethyl_uridine is a modified uridine base feature. 99195 0 0 75758 19 inside_intron An attribute to describe a gene when it is located within the intron of another gene. 99196 0 0 75759 19 five_carboxymethylaminomethyl_two_prime_O_methyluridine 5_carboxymethylaminomethyl_2_prime_O_methyluridine is a modified uridine base feature. 99197 0 0 75760 19 eukaryotic_terminator \N 99198 0 0 75761 19 five_prime_D_nonamer 9 nucleotide recombination site (e.g. GGTTTTTGT), part of a five_prime_D-recombination signal sequence (SO:0000556) of an immunoglobulin/T-cell receptor gene. 99199 0 0 75762 19 symbiosis_island A transmissible element containing genes involved in symbiosis, analogous to the pathogenicity islands of gram negative bacteria. 99200 0 0 75763 19 two_prime_O_methylcytidine 2'-O-methylcytidine is a modified cytidine. 99201 0 0 75764 19 three_prime_coding_exon The coding exon that is most 3-prime on a given transcript. 99202 0 0 75765 19 V_gene_recombination_feature Recombination signal including V-heptamer, V-spacer and V-nonamer in 3' of V-region of a V-gene or V-sequence of an immunoglobulin/T-cell receptor gene. 99203 0 0 75766 19 wyosine Wyosine is a modified guanosine base feature. 99204 0 0 75767 19 translocation_element A chromosomal translocation whereby the chromosomes carrying non-homologous centromeres may be recovered independently. These chromosomes are described as translocation elements. This occurs for some translocations, particularly but not exclusively, reciprocal translocations. 99205 0 0 75768 19 amino_acid_deletion A sequence variant within a CDS resulting in the loss of an amino acid from the resulting polypeptide. 99206 0 0 75769 19 CAAT_signal Part of a conserved sequence located about 75-bp upstream of the start point of eukaryotic transcription units which may be involved in RNA polymerase binding; consensus=GG(C|T)CAATCT. 99207 0 0 75770 19 solo_LTR A recombination product between the 2 LTR of the same element. 99208 0 0 75771 19 sequence_variant_causing_cryptic_splice_acceptor_activation (obsolete SO:1001186) \N 99209 1 0 75852 19 modified_adenosine A modified adenine is an adenine base feature that has been altered. 99301 0 0 75853 19 exemplar_mRNA An exemplar is a representative cDNA sequence for each gene. The exemplar approach is a method that usually involves some initial clustering into gene groups and the subsequent selection of a representative from each gene group. 99302 0 0 75772 19 rRNA_5S 5S ribosomal RNA (5S rRNA) is a component of the large ribosomal subunit in both prokaryotes and eukaryotes. In eukaryotes, it is synthesised by RNA polymerase III (the other eukaryotic rRNAs are cleaved from a 45S precursor synthesised by RNA polymerase I). In Xenopus oocytes, it has been shown that fingers 4-7 of the nine-zinc finger transcription factor TFIIIA can bind to the central region of 5S RNA. Thus, in addition to positively regulating 5S rRNA transcription, TFIIIA also stabilizes 5S rRNA until it is required for transcription. 99210 0 0 75773 19 gene_variant A sequence variant where the structure of the gene is changed. 99212 0 0 75774 19 group_I_intron Group I catalytic introns are large self-splicing ribozymes. They catalyze their own excision from mRNA, tRNA and rRNA precursors in a wide range of organisms. The core secondary structure consists of 9 paired regions (P1-P9). These fold to essentially two domains, the P4-P6 domain (formed from the stacking of P5, P4, P6 and P6a helices) and the P3-P9 domain (formed from the P8, P3, P7 and P9 helices). Group I catalytic introns often have long ORFs inserted in loop regions. 99213 0 0 75775 19 linear A quality of a nucleotide polymer that has a 3'-terminal residue and a 5'-terminal residue. 99215 0 0 75776 19 RNA_aptamer RNA molecules that have been selected from random pools based on their ability to bind other molecules. 99216 0 0 75777 19 AU_rich_element A cis-acting element found in the 3' UTR of some mRNA which is rich in AUUUA pentamers. Messenger RNAs bearing multiple AU-rich elements are often unstable. 99217 0 0 75778 19 reagent_attribute (obsolete SO:0000786) \N 99218 1 0 75779 19 edited_transcript_by_A_to_I_substitution A transcript that has been edited by A to I substitution. 99219 0 0 75780 19 leucine \N 99220 0 0 75781 19 de_novo_variant \N 99221 0 0 75824 19 sequence_variant_causing_nonconservative_amino_acid_substitution (obsolete SO:1000095) \N 99271 1 0 77157 57 abbreviation \N 210060 0 0 75782 19 base_call_error_correction A region of sequence where the final nucleotide assignment is different from that given by the base caller due to an improvement that replaces a mistake. 99222 0 0 75783 19 frameshift_variant A sequence variant which causes a disruption of the translational reading frame, because the number of nucleotides inserted or deleted is not a multiple of three. 99223 0 0 75784 19 structural_alteration \N 99224 0 0 75785 19 attI_site A region within an integron, adjacent to an integrase, at which site specific recombination involving an attC_site takes place. 99225 0 0 75786 19 chromosomal_translocation An interchromosomal mutation. Rearrangements that alter the pairing of telomeres are classified as translocations. 99226 0 0 75787 19 translationally_frameshifted Recoding by frameshifting a particular site. 99227 0 0 75788 19 three_methylpseudouridine 3_methylpseudouridine is a modified uridine base feature. 99228 0 0 75789 19 minus_24_signal A conserved region about 12-bp upstream of the start point of bacterial transcription units, involved with sigma factor 54. 99229 0 0 75790 19 isowyosine Isowyosine is a modified guanosine base feature. 99230 0 0 75791 19 pyrimidine_transition A substitution of a pyrimidine, C or T, for another pyrimidine. 99231 0 0 75792 19 contig A contiguous sequence derived from sequence assembly. Has no gaps, but may contain N's from unavailable bases. 99232 0 0 75795 19 RNA_internal_loop A region of double stranded RNA where the bases do not conform to WC base pairing. The loop is closed on both sides by canonical base pairing. If the interruption to base pairing occurs on one strand only, it is known as a bulge. 99235 0 0 75796 19 PSE_motif A sequence element characteristic of the promoters of snRNA genes transcribed by RNA polymerase II or by RNA polymerase III. Located between -45 and -60 relative to the TSS. The human PSE_motif consensus sequence is TCACCNTNA(C|G)TNAAAAG(T|G). 99236 0 0 75797 19 snRNA_encoding \N 99237 0 0 75798 19 theta_replication (obsolete SO:0000970) \N 99238 1 0 75799 19 alternately_spliced_gene_encodeing_one_transcript (obsolete SO:0000503) \N 99239 1 0 75800 19 schellmann_loop A motif of six or seven consecutive residues that contains two H-bonds. 99240 0 0 75801 19 U1_snRNA U1 is a small nuclear RNA (snRNA) component of the spliceosome (involved in pre-mRNA splicing). Its 5' end forms complementary base pairs with the 5' splice junction, thus defining the 5' donor site of an intron. There are significant differences in sequence and secondary structure between metazoan and yeast U1 snRNAs, the latter being much longer (568 nucleotides as compared to 164 nucleotides in human). Nevertheless, secondary structure predictions suggest that all U1 snRNAs share a 'common core' consisting of helices I, II, the proximal region of III, and IV. 99242 0 0 75802 19 terminator_of_type_2_RNApol_III_promoter A terminator signal for RNA polymerase III transcription. 99244 0 0 75803 19 modified_cytidine A modified cytidine is a cytidine base feature which has been altered. 99245 0 0 75804 19 polypeptide_conserved_region A subsection of sequence with biological interest that is conserved in different proteins. They may or may not have functional or structural significance within the proteins in which they are found. 99246 0 0 75805 19 alanine_tRNA_primary_transcript A primary transcript encoding alanyl tRNA. 99247 0 0 75806 19 silenced_by_histone_modification An attribute describing an epigenetic process where a gene is inactivated by histone modification. 99248 0 0 75807 19 anchor_region A region of a guide_RNA that base-pairs to a target mRNA. 99249 0 0 75808 19 R_three_prime_LTR_region \N 99250 0 0 75809 19 signal_anchor A signal sequence that is not cleaved from the polypeptide. Anchors a Type II membrane protein to the membrane. 99251 0 0 75810 19 inversion_derived_duplication_plus_aneuploid A chromosome generated by recombination between two inversions; has a duplication at one end and presumed to have a deficiency or duplication at the other end of the inversion. 99253 0 0 75854 19 cleaved_for_gpi_anchor_region The C-terminal residues of a polypeptide which are exchanged for a GPI-anchor. 99303 0 0 75855 19 retrotransposon A transposable element that is incorporated into a chromosome by a mechanism that requires reverse transcriptase. 99305 0 0 75811 19 OxyS_RNA A small untranslated RNA which is induced in response to oxidative stress in Escherichia coli. Acts as a global regulator to activate or repress the expression of as many as 40 genes, including the fhlA-encoded transcriptional activator and the rpoS-encoded sigma(s) subunit of RNA polymerase. OxyS is bound by the Hfq protein, that increases the OxyS RNA interaction with its target messages. 99254 0 0 75812 19 engineered_foreign_gene A gene that is engineered and foreign. 99256 0 0 75813 19 sequence_variant_causing_no_change_in_transcript (obsolete SO:1000050) No effect on the state of the RNA. 99257 1 0 75814 19 unoriented_interchromosomal_transposition An interchromosomal transposition whereby a copy of the segment between the first two breaks listed is inserted at the third break; the orientation of the insertion with respect to its flanking segments is not recorded. 99258 0 0 75815 19 DCE A discontinuous core element of RNA polymerase II transcribed genes, situated downstream of the TSS. It is composed of three sub elements: SI, SII and SIII. 99259 0 0 75816 19 attB_site An integration/excision site of a bacterial chromosome at which a recombinase acts to insert foreign DNA containing a cognate integration/excision site. 99260 0 0 75817 19 polypeptide_localization_variant A sequence variant which changes the localization of a polypeptide with respect to a reference sequence. 99261 0 0 75818 19 rRNA_small_subunit_primary_transcript A primary transcript encoding a small ribosomal subunit RNA. 99262 0 0 75819 19 SRP_RNA_encoding \N 99263 0 0 75820 19 polypeptide A sequence of amino acids linked by peptide bonds which may lack appreciable tertiary structure and may not be liable to irreversible denaturation. 99264 0 0 75821 19 non_cytoplasmic_polypeptide_region Polypeptide region that is localized outside of a lipid bilayer and outside of the cytoplasm. 99266 0 0 75822 19 asx_turn A motif of three consecutive residues and one H-bond in which: residue(i) is Aspartate or Asparagine (Asx), the side-chain O of residue(i) is H-bonded to the main-chain NH of residue(i+2). 99268 0 0 75823 19 histone_acylation_region A histone modification, whereby the histone protein is acylated at multiple sites in a region. 99270 0 0 75883 19 dinucleotide_repeat_microsatellite_feature \N 99334 0 0 75825 19 sequence_variant_causing_nonconservative_missense_codon_change_in_transcript (obsolete SO:1000061) The amino acid change following from the codon change changes the gross properties (size, charge, hydrophobicity) of the amino acid in that position. 99272 1 0 75826 19 integration_excision_site A region specifically recognised by a recombinase, which inserts or removes another region marked by a distinct cognate integration/excision site. 99273 0 0 75827 19 elongated_in_frame_polypeptide_N_terminal_elongation A sequence variant with in the CDS that causes in frame elongation of the resulting polypeptide sequence at the N terminus. 99274 0 0 75828 19 catmat_right_handed_four A motif of 4 consecutive residues with dihedral angles as follows: res i: phi -90 bounds -120 to -60, res i: psi -10 bounds -50 to 30, res i+1: phi -90 bounds -120 to -60, res i+1: psi -10 bounds -50 to 30, res i+2: phi -75 bounds -100 to -50, res i+2: psi 140 bounds 110 to 170. The extra restriction of the length of the O to O distance is similar, that it be less than 5 Angstrom. In this case these two Oxygen atoms are the main chain carbonyl oxygen atoms of residues i-1 and i+2. 99275 0 0 76320 19 GNA_oligo An oligo composed of GNA residues. 99821 0 0 75832 19 five_prime_RST A tag produced from a single sequencing read from a 5'-RACE product; typically a few hundred base pairs long. 99280 0 0 75833 19 site_specific_recombination_target_region \N 99281 0 0 75834 19 tmRNA_region A region of a tmRNA. 99282 0 0 75835 19 unigene_cluster A kind of transcribed_cluster defined by a set of transcribed sequences from the a unique gene. 99283 0 0 75836 19 cryptic_splice_acceptor A sequence variant whereby a new splice site is created due to the activation of a new acceptor. 99284 0 0 75837 19 engineered_foreign_region A region that is engineered and foreign. 99285 0 0 75838 19 sequence_variant_causing_polypeptide_localization_change (obsolete SO:1000121) \N 99286 1 0 75839 19 cis_splice_site Intronic 2 bp region bordering exon. A splice_site that adjacent_to exon and overlaps intron. 99287 0 0 75840 19 RNApol_II_promoter A DNA sequence in eukaryotic DNA to which RNA polymerase II binds, to begin transcription. 99288 0 0 75841 19 processed_pseudogene A pseudogene where by an mRNA was retrotransposed. The mRNA sequence is transcribed back into the genome, lacking introns and promoters, but often including a polyA tail. 99289 0 0 75842 19 BAC_cloned_genomic_insert \N 99290 0 0 75843 19 modified_base A modified nucleotide, i.e. a nucleotide other than A, T, C. G. 99291 0 0 75844 19 anticodon A sequence of three nucleotide bases in tRNA which recognizes a codon in mRNA. 99292 0 0 75845 19 ambisense_ssRNA_viral_sequence A ambisense_RNA_virus is a ss_RNA_viral_sequence that is the sequence of a single stranded RNA virus with both messenger and anti messenger polarity. 99293 0 0 75846 19 repeat_region A region of sequence containing one or more repeat units. 99294 0 0 75847 19 proplastid_sequence \N 99295 0 0 75848 19 nucleomorphic_chromosome A chromosome originating in a nucleomorph. 99296 0 0 75849 19 sequence_variant_causing_polypeptide_fusion (obsolete SO:1000134) \N 99297 1 0 75850 19 ncRNA An RNA transcript that does not encode for a protein rather the RNA molecule is the gene product. 99298 0 0 75851 19 propeptide_cleavage_site The propeptide_cleavage_site is the arginine/lysine boundary on a propeptide where cleavage occurs. 99299 0 0 75856 19 copy_number_variation A variation that increases or decreases the copy number of a given region. 99306 0 0 75857 19 golden_path_fragment One of the pieces of sequence that make up a golden path. 99307 0 0 75860 19 transgenic Attribute describing sequence that has been integrated with foreign sequence. 99310 0 0 75861 19 polyadenylated A attribute describing the addition of a poly A tail to the 3' end of a mRNA molecule. 99311 0 0 75862 19 variant_frequency A physical quality which inheres to the variant by virtue of the number instances of the variant within a population. 99312 0 0 75863 19 miRNA_encoding \N 99313 0 0 75864 19 experimentally_defined_binding_region A region that has been implicated in binding although the exact coordinates of binding may be unknown. 99314 0 0 75865 19 mutated_variant_site Site which has been experimentally altered. 99315 0 0 75866 19 transcriptionally_regulated An attribute describing a gene that is regulated at transcription. 99317 0 0 75867 19 G_to_A_transition A transition of a guanine to an adenine. 99318 0 0 75868 19 nucleotide_binding_site A binding site that, in the molecule, interacts selectively and non-covalently with nucleotide residues. 99319 0 0 75869 19 rate_of_transcription_variant A sequence variant that changes the rate of transcription with respect to a reference sequence. 99320 0 0 75870 19 phagemid A plasmid which carries within its sequence a bacteriophage replication origin. When the host bacterium is infected with "helper" phage, a phagemid is replicated along with the phage DNA and packaged into phage capsids. 99321 0 0 75871 19 oriT A region of a DNA molecule where transfer is initiated during the process of conjugation or mobilization. 99322 0 0 75872 19 sequence_variant_affecting_regulatory_region (obsolete SO:0000053) A sequence_variant_effect which changes the regulatory region of a gene. 99323 1 0 75873 19 benign_variant \N 99324 0 0 75874 19 ribothymidine A modified RNA base in which thymine is bound to the ribose ring. 99325 0 0 75875 19 paracentric \N 99326 0 0 75876 19 VJ_J_C_cluster Genomic DNA of immunoglobulin/T-cell receptor gene in rearranged configuration including at least one VJ-gene, one J-gene and one C-gene. 99327 0 0 75877 19 pseudoknot A tertiary structure in RNA where nucleotides in a loop form base pairs with a region of RNA downstream of the loop. 99328 0 0 75878 19 SNP SNPs are single base pair positions in genomic DNA at which different sequence alternatives exist in normal individuals in some population(s), wherein the least frequent variant has an abundance of 1% or greater. 99329 0 0 75879 19 V_nonamer 9 nucleotide recombination site (e.g. ACAAAAACC), part of V-gene recombination feature of an immunoglobulin/T-cell receptor gene. 99330 0 0 75880 19 silenced_by_histone_methylation An attribute describing an epigenetic process where a gene is inactivated by histone methylation. 99331 0 0 75881 19 editing_block Edited mRNA sequence mediated by a single guide RNA (SO:0000602). 99332 0 0 75884 19 intron_gain A sequence variant whereby an intron is gained by the processed transcript; usually a result of an alteration of the donor or acceptor. 99335 0 0 75885 19 three_prime_coding_exon_coding_region The sequence of the three_prime_coding_exon that codes for protein. 99336 0 0 75886 19 J_gene_recombination_feature Recombination signal including J-heptamer, J-spacer and J-nonamer in 5' of J-region of a J-gene or J-sequence. 99337 0 0 75887 19 polypeptide_magnesium_ion_contact_site A binding site that, in the polypeptide molecule, interacts selectively and non-covalently with magnesium ions. 99338 0 0 77457 61 kWh One kilowatt-hour. 212618 0 0 75888 19 snoRNA A snoRNA (small nucleolar RNA) is any one of a class of small RNAs that are associated with the eukaryotic nucleus as components of small nucleolar ribonucleoproteins. They participate in the processing or modifications of many RNAs, mostly ribosomal RNAs (rRNAs) though snoRNAs are also known to target other classes of RNA, including spliceosomal RNAs, tRNAs, and mRNAs via a stretch of sequence that is complementary to a sequence in the targeted RNA. 99340 0 0 75889 19 whole_genome_sequence_status The status of whole genome sequence. 99341 0 0 75890 19 leucoplast_gene A plastid gene from leucoplast sequence. 99342 0 0 75891 19 five_methoxyuridine 5_methoxyuridine is a modified uridine base feature. 99343 0 0 75892 19 chromosomal_deletion An incomplete chromosome. 99344 0 0 75893 19 restriction_enzyme_binding_site A binding site that, in the nucleotide molecule, interacts selectively and non-covalently with polypeptide residues of a restriction enzyme. 99345 0 0 75894 19 cDNA DNA synthesized by reverse transcriptase using RNA as a template. 99346 0 0 75895 19 intron_domain \N 99347 0 0 75896 19 recombination_regulatory_region A regulatory region that is involved in the control of the process of recombination. 99348 0 0 75897 19 intergenic_region A region containing or overlapping no genes that is bounded on either side by a gene, or bounded by a gene and the end of the chromosome. 99349 0 0 75898 19 helix_turn_helix A motif comprising two helices separated by a turn. 99350 0 0 75899 19 K_turn_RNA_motif The kink turn (K-turn) is an RNA structural motif that creates a sharp (~120 degree) bend between two continuous helices. 99352 0 0 75900 19 mRNA_region A region of an mRNA. 99353 0 0 75901 19 purine_transition A substitution of a purine, A or G, for another purine. 99354 0 0 75902 19 RNApol_III_promoter_type_1_region (obsolete SO:0000845) A region of sequence which is a promoter for RNA polymerase III type 1. 99355 1 0 75903 19 modified_L_leucine A post translationally modified leucine amino acid feature. 99356 0 0 75904 19 B_box A variably distant linear promoter region recognized by TFIIIC, with consensus sequence AGGTTCCAnnCC. 99357 0 0 75905 19 SP6_RNA_Polymerase_Promoter A region (DNA) to which the SP6 RNA polymerase binds, to begin transcription. 99358 0 0 75906 19 D_J_cluster Genomic DNA of immunoglobulin/T-cell receptor gene in germline configuration including at least one D-gene and one J-gene. 99359 0 0 75956 19 gene_with_mRNA_recoded_by_translational_bypass A gene with mRNA recoded by translational bypass. 99413 0 0 75907 19 positively_autoregulated The gene product is involved in its own transcriptional regulation, where it increases transcription. 99360 0 0 75908 19 sticky_end_restriction_enzyme_cleavage_site \N 99361 0 0 75909 19 valine_tRNA_primary_transcript A primary transcript encoding valyl tRNA (SO:000273). 99362 0 0 75910 19 cloned (obsolete SO:0000788) \N 99363 1 0 75911 19 polypeptide_partial_loss_of_function A sequence variant that causes some but not all loss of polypeptide function with respect to a reference sequence. 99364 0 0 75912 19 H3K27_dimethylation_site A kind of histone modification site, whereby the 27th residue (a lysine), from the start of the H3 histone protein is di-methylated. 99365 0 0 75913 19 polypeptide_molybdenum_ion_contact_site A binding site that, in the polypeptide molecule, interacts selectively and non-covalently with molybdenum ions. 99366 0 0 75914 19 enhancer_attribute (obsolete SO:0000402) \N 99368 1 0 75915 19 sequence_variation_affecting_level_of_transcript (obsolete SO:1000085) A sequence variation that causes a change in the level of mature, spliced and processed RNA, resulting from a change in the corresponding DNA sequence. 99369 1 0 75916 19 one_methylpseudouridine 1_methylpseudouridine is a modified uridine base feature. 99370 0 0 75917 19 tiling_path A set of regions which overlap with minimal polymorphism to form a linear sequence. 99371 0 0 75918 19 orthologous_region A homologous_region that is orthologous to another region. 99372 0 0 75919 19 SNV SNVs are single nucleotide positions in genomic DNA at which different sequence alternatives exist. 99373 0 0 75920 19 hetero_compound_chromosome A compound chromosome whereby two arms from different chromosomes are connected through the centromere of one of them. 99374 0 0 75921 19 EST A tag produced from a single sequencing read from a cDNA clone or PCR product; typically a few hundred base pairs long. 99375 0 0 75922 19 primer_match A nucleotide match to a primer sequence. 99376 0 0 75923 19 SL9_acceptor_site A SL2_acceptor_site which appends the SL9 RNA leader sequence to the 5' end of an mRNA. SL9 acceptor sites occur in genes in internal segments of polycistronic transcripts. 99377 0 0 75924 19 five_prime_coding_exon The 5' most coding exon. 99378 0 0 75925 19 standard_draft The status of a whole genome sequence, where the data is minimally filtered or un-filtered, from any number of sequencing platforms, and is assembled into contigs. Genome sequence of this quality may harbour regions of poor quality and can be relatively incomplete. 99379 0 0 75926 19 inactive_catalytic_site A sequence variant that causes the inactivation of a catalytic site with respect to a reference sequence. 99380 0 0 75927 19 D_DJ_cluster Genomic DNA of immunoglobulin/T-cell receptor gene in rearranged configuration including at least one D-gene and one DJ-gene. 99381 0 0 75928 19 virtual_sequence A continuous piece of sequence similar to the 'virtual contig' concept of the Ensembl database. 99382 0 0 75929 19 chromoplast_chromosome A chromosome originating in a chromoplast. 99383 0 0 75930 19 invalidated_by_partial_processing An attribute to describe a feature that is invalidated due to partial processing. 99384 0 0 77158 57 location_type \N 210061 0 0 75932 19 structural_variant A sequence variant that changes one or more sequence features. 99386 0 0 75933 19 CDS_region A region of a CDS. 99387 0 0 75935 19 propeptide Part of a peptide chain which is cleaved off during the formation of the mature protein. 99389 0 0 75936 19 two_methylthio_N6_isopentenyladenosine 2_methylthio_N6_isopentenyladenosine is a modified adenosine. 99391 0 0 75937 19 experimental_result_region A region of sequence implicated in an experimental result. 99392 0 0 75938 19 edited_by_C_insertion_and_dinucleotide_insertion (obsolete SO:0000598) \N 99393 1 0 75939 19 mRNA_with_minus_2_frameshift A mRNA with a minus 2 frameshift. 99394 0 0 75940 19 polypeptide_loss_of_function_variant A sequence variant that causes the loss of a polypeptide function with respect to a reference sequence. 99395 0 0 75941 19 decreased_transcript_level_variant A sequence variant that increases the level of mature, spliced and processed RNA with respect to a reference sequence. 99396 0 0 75942 19 U5_five_prime_LTR_region \N 99397 0 0 75943 19 apicoplast_chromosome A chromosome originating in an apicoplast. 99398 0 0 75944 19 beta_strand A beta strand describes a single length of polypeptide chain that forms part of a beta sheet. A single continuous stretch of amino acids adopting an extended conformation of hydrogen bonds between the N-O and the C=O of another part of the peptide. This forms a secondary protein structure in which two or more extended polypeptide regions are hydrogen-bonded to one another in a planar array. 99399 0 0 75945 19 sequence_variant_causing_no_3D_structural_change (obsolete SO:1000112) \N 99401 1 0 75946 19 four_thiouridine 4_thiouridine is a modified uridine base feature. 99402 0 0 75947 19 V_cluster Genomic DNA of immunoglobulin/T-cell receptor gene in germline configuration including more than one V-gene. 99403 0 0 75948 19 siRNA A small RNA molecule that is the product of a longer exogenous or endogenous dsRNA, which is either a bimolecular duplex or very long hairpin, processed (via the Dicer pathway) such that numerous siRNAs accumulate from both strands of the dsRNA. SRNAs trigger the cleavage of their target molecules. 99404 0 0 75949 19 DMv1_motif A promoter motif with consensus sequence CARCCCT. 99406 0 0 75950 19 leucoplast_sequence \N 99407 0 0 75951 19 phosphorylation_site A post-translationally modified region in which residues of the protein are modified by phosphorylation. 99408 0 0 75952 19 DNA_binding_site A binding site that, in the molecule, interacts selectively and non-covalently with DNA. 99409 0 0 75954 19 increased_transcript_stability_variant A sequence variant that increases transcript stability with respect to a reference sequence. 99411 0 0 75957 19 free The quality of a duplication where the new region exists independently of the original. 99414 0 0 75958 19 centromeric_repeat A repeat region found within the modular centromere. 99415 0 0 75959 19 H4K20_monomethylation_site A kind of histone modification site, whereby the 20th residue (a lysine), from the start of the H34histone protein is mono-methylated. 99416 0 0 75960 19 polypeptide_ligand_contact Residues which interact with a ligand. 99417 0 0 75961 19 polypyrimidine_tract The polypyrimidine tract is one of the cis-acting sequence elements directing intron removal in pre-mRNA splicing. 99419 0 0 75962 19 exon A region of the transcript sequence within a gene which is not removed from the primary RNA transcript by RNA splicing. 99421 0 0 75963 19 bacterial_RNApol_promoter A DNA sequence to which bacterial RNA polymerase binds, to begin transcription. 99422 0 0 75964 19 R_five_prime_LTR_region \N 99423 0 0 75965 19 vertebrate_immunoglobulin_T_cell_receptor_rearranged_segment \N 99424 0 0 75966 19 N2_7_2prirme_O_trimethylguanosine N2_7_2prirme_O_trimethylguanosine is a modified guanosine base feature. 99425 0 0 75967 19 n_terminal_region The amino-terminal positively-charged region of a signal peptide (approx 1-5 aa). 99426 0 0 75968 19 phenylalanyl_tRNA A tRNA sequence that has a phenylalanine anticodon, and a 3' phenylalanine binding region. 99427 0 0 75969 19 UTR_variant A transcript variant that is located within the UTR. 99428 0 0 75970 19 H4K_acylation_region A region of the H4 histone whereby multiple lysines are acylated. 99429 0 0 75971 19 peptide_helix A helix is a secondary_structure conformation where the peptide backbone forms a coil. 99430 0 0 75972 19 transcribed_region (obsolete SO:0000502) A region of sequence that is transcribed. This region may cover the transcript of a gene, it may emcompas the sequence covered by all of the transcripts of a alternately spliced gene, or it may cover the region transcribed by a polycistronic transcript. A gene may have 1 or more transcribed regions and a transcribed_region may belong to one or more genes. 99432 1 0 75973 19 asx_turn_right_handed_type_one Right handed type I (dihedral angles):- Residue(i): -140 degrees < chi (1) -120 degrees < -20 degrees, -90 degrees < psi +120 degrees < +40 degrees. Residue(i+1): -140 degrees < phi < -20 degrees, -90 degrees < psi < +40 degrees. 99433 0 0 75974 19 syntenic Attribute describing sequence regions occurring in same order on chromosome of different species. 99435 0 0 75975 19 DMv5_motif A sequence element characteristic of some RNA polymerase II promoters, usually located between -50 and -10 relative to the TSS. Consensus sequence is KTYRGTATWTTT. Tends to co-occur with DMv4 (SO:0001157) . Tends to not occur with DPE motif (SO:0000015) or MTE (SO:0001162). 99436 0 0 75976 19 polypeptide_gain_of_function_variant A sequence variant which causes gain of polypeptide function with respect to a reference sequence. 99437 0 0 75977 19 distant_three_prime_recoding_signal A recoding signal that is found many hundreds of nucleotides 3' of a redefined stop codon. 99438 0 0 75978 19 gene_with_stop_codon_read_through A gene that encodes a transcript with stop codon readthrough. 99439 0 0 75979 19 read A sequence obtained from a single sequencing experiment. Typically a read is produced when a base calling program interprets information from a chromatogram trace file produced from a sequencing machine. 99440 0 0 75980 19 RNA_replication_mode (obsolete SO:0000972) \N 99441 1 0 75981 19 proline \N 99442 0 0 75982 19 variant_quality A dependent entity that inheres in a bearer, a sequence variant. 99443 0 0 76023 19 stRNA Non-coding RNAs of about 21 nucleotides in length that regulate temporal development; first discovered in C. elegans. 99492 0 0 75983 19 gamma_turn_inverse Gamma turns, defined for 3 residues i, i+1, i+2 if a hydrogen bond exists between residues i and i+2 and the phi and psi angles of residue i+1 fall within 40 degrees: phi(i+1)=-79.0 - psi(i+1)=69.0. 99444 0 0 75984 19 three_prime_coding_exon_noncoding_region The sequence of the 3' exon that is not coding. 99446 0 0 75985 19 CsrB_RsmB_RNA An enterobacterial RNA that binds the CsrA protein. The CsrB RNAs contain a conserved motif CAGGXXG that is found in up to 18 copies and has been suggested to bind CsrA. The Csr regulatory system has a strong negative regulatory effect on glycogen biosynthesis, glyconeogenesis and glycogen catabolism and a positive regulatory effect on glycolysis. In other bacteria such as Erwinia caratovara the RsmA protein has been shown to regulate the production of virulence determinants, such extracellular enzymes. RsmA binds to RsmB regulatory RNA which is also a member of this family. 99447 0 0 75986 19 telomerase_RNA The RNA component of telomerase, a reverse transcriptase that synthesizes telomeric DNA. 99449 0 0 75987 19 single \N 99451 0 0 75988 19 mitochondrial_chromosome A chromosome originating in a mitochondria. 99452 0 0 75989 19 tRNA_gene \N 99453 0 0 75990 19 stop_codon In mRNA, a set of three nucleotides that indicates the end of information for protein synthesis. 99454 0 0 75991 19 U5_three_prime_LTR_region \N 99455 0 0 75992 19 transcript_feature (obsolete SO:0000115) \N 99456 1 0 75993 19 piRNA A small non coding RNA, part of a silencing system that prevents the spreading of selfish genetic elements. 99457 0 0 75994 19 experimental_feature_attribute An attribute of an experimentally derived feature. 99458 0 0 75995 19 destruction_box A conserved polypeptide motif that can be recognized by both Fizzy/Cdc20- and FZR/Cdh1-activated anaphase-promoting complex/cyclosome (APC/C) and targets a protein for ubiquitination and subsequent degradation by the APC/C. The consensus sequence is RXXLXXXXN. 99459 0 0 75996 19 mRNA_with_plus_2_frameshift An mRNA with a plus 2 frameshift. 99462 0 0 75997 19 rRNA_16S A large polynucleotide in Bacteria and Archaea, which functions as the small subunit of the ribosome. 99463 0 0 76045 19 V_DJ_J_cluster Genomic DNA of immunoglobulin/T-cell receptor gene in rearranged configuration including at least one V-gene, one DJ-gene and one J-gene. 99518 0 0 76087 19 tRNA_intron An intron found in tRNA that is spliced via endonucleolytic cleavage and ligation rather than transesterification. 99564 0 0 75998 19 beta_turn_type_six_b A motif of four consecutive peptide residues, of which the i+2 residue is proline, and that may contain one H-bond, which, if present, is between the main-chain CO of the first residue and the main-chain NH of the fourth and is characterized by the dihedral angles: Residue(i+1): phi ~ -120 degrees, psi ~ 120 degrees. Residue(i+2): phi ~ -60 degrees, psi ~ 0 degrees. 99464 0 0 75999 19 tryptophan \N 99465 0 0 76000 19 overlapping_feature_set A continuous region of sequence composed of the overlapping of multiple sequence_features, which ultimately provides evidence for another sequence_feature. 99466 0 0 76001 19 TNA An attribute describing a sequence consisting of nucleobases attached to a repeating unit made of threose rings connected to a phosphate backbone. 99467 0 0 76002 19 five_methyldihydrouridine 5_methyldihydrouridine is a modified uridine base feature. 99469 0 0 76003 19 LNA An attribute describing a sequence consisting of nucleobases attached to a repeating unit made of 'locked' deoxyribose rings connected to a phosphate backbone. The deoxyribose unit's conformation is 'locked' by a 2'-C,4'-C-oxymethylene link. 99470 0 0 76004 19 tyrosine \N 99472 0 0 76005 19 origin_of_replication The origin of replication; starting site for duplication of a nucleic acid molecule to give two identical copies. 99473 0 0 76006 19 insert_CU (obsolete SO:0000926) An edit to insert a CU dinucleotide. 99474 1 0 76007 19 polypeptide_post_translational_processing_affected (obsolete SO:1000123) \N 99475 1 0 76008 19 bacterial_RNApol_promoter_sigma_70 \N 99476 0 0 76009 19 polyadenylated_mRNA An mRNA that is polyadenylated. 99477 0 0 76010 19 three_prime_cis_splice_site Intronic 2 bp region bordering the exon, at the 3' edge of the intron. A splice_site that is upstream_adjacent_to exon and finishes intron. 99478 0 0 76011 19 peptidyl An attribute describing the nature of a proteinaceous polymer, where by the amino acid units are joined by peptide bonds. 99479 0 0 76012 19 PNA An attribute describing a sequence composed of peptide nucleic acid (CHEBI:48021), a chemical consisting of nucleobases bound to a backbone composed of repeating N-(2-aminoethyl)-glycine units linked by peptide bonds. The purine and pyrimidine bases are linked to the backbone by methylene carbonyl bonds. 99480 0 0 76013 19 open_chromatin_region A DNA sequence that in the normal state of the chromosome corresponds to an unfolded, un-complexed stretch of double-stranded DNA. 99481 0 0 76014 19 primary_transcript A transcript that in its initial state requires modification to be functional. 99482 0 0 76015 19 bound_by_nucleic_acid An attribute describing a sequence that is bound by a nucleic acid. 99483 0 0 76016 19 chromosomal_transposition A chromosome structure variant whereby a region of a chromosome has been transferred to another position. Among interchromosomal rearrangements, the term transposition is reserved for that class in which the telomeres of the chromosomes involved are coupled (that is to say, form the two ends of a single DNA molecule) as in wild-type. 99484 0 0 76017 19 gene_component_region \N 99485 0 0 76018 19 epigenetically_modified_gene A gene that is epigenetically modified. 99486 0 0 76019 19 three_prime_flanking_region A flanking region located three prime of a specific region. 99487 0 0 76020 19 U11_snRNA U11 snRNA plays a role in splicing of the minor U12-dependent class of eukaryotic nuclear introns, similar to U1 snRNA in the major class spliceosome it base pairs to the conserved 5' splice site sequence. 99488 0 0 76021 19 five_formyl_two_prime_O_methylcytidine 5-formyl-2'-O-methylcytidine is a modified cytidine. 99490 0 0 76022 19 paracentric_inversion A chromosomal inversion that does not include the centromere. 99491 0 0 77348 61 mL Milliliter. One-thousandth of a Liter. 212509 0 0 76024 19 nested_repeat A repeat that is disrupted by the insertion of another element. 99494 0 0 76025 19 TSS The first base where RNA polymerase begins to synthesize the RNA transcript. 99495 0 0 77572 47 heterosis_trial \N 212733 0 0 76026 19 sequence_variation_affecting_transcript (obsolete SO:1000049) Any change in mature, spliced and processed, RNA that results from a change in the corresponding DNA sequence. 99496 1 0 76027 19 uninverted_insertional_duplication An insertional duplication where a copy of the segment between the first two breaks listed is inserted at the third break; the insertion is in cytologically the same orientation as its flanking segments. 99499 0 0 76028 19 two_methylthio_N6_threonyl_carbamoyladenosine 2_methylthio_N6_threonyl_carbamoyladenosine is a modified adenosine. 99500 0 0 76029 19 two_prime_O_ribosylguanosine_phosphate 2prime_O_ribosylguanosine_phosphate is a modified guanosine base feature. 99501 0 0 76030 19 modified_L_glutamic_acid \N 99502 0 0 76031 19 transcript_attribute \N 99503 0 0 76032 19 RFLP_fragment A DNA fragment used as a reagent to detect the polymorphic genomic loci by hybridizing against the genomic DNA digested with a given restriction enzyme. 99504 0 0 76033 19 gene_with_edited_transcript A gene that encodes a transcript that is edited. 99505 0 0 76034 19 phagemid_clone (obsolete SO:0000761) \N 99506 1 0 76035 19 histidine \N 99507 0 0 76036 19 negatively_autoregulated_gene A gene that is negatively autoreguated. 99508 0 0 76037 19 gene_member_region A region of a gene. 99509 0 0 76038 19 rRNA_21S A component of the large ribosomal subunit in mitochondrial rRNA. 99510 0 0 76039 19 aneuploid_chromosome A chromosome structural variation whereby either a chromosome exists in addition to the normal chromosome complement or is lacking. 99511 0 0 76040 19 T_to_G_transversion A transversion from T to G. 99512 0 0 76041 19 2KB_upstream_variant A sequence variant located within 2KB 5' of a gene. 99513 0 0 76042 19 insertional \N 99514 0 0 76043 19 transposable_element A transposon or insertion sequence. An element that can insert in a variety of DNA sequences. 99515 0 0 76044 19 indel A sequence alteration which included an insertion and a deletion, affecting 2 or more bases. 99517 0 0 76046 19 inversion_cum_translocation A chromosomal translocation whereby the first two breaks are in the same chromosome, and the region between them is rejoined in inverted order to the other side of the first break, such that both sides of break one are present on the same chromosome. The remaining free ends are joined as a translocation with those resulting from the third break. 99519 0 0 76047 19 VDJ_gene Rearranged genomic DNA of immunoglobulin/T-cell receptor gene including L-part1, V-intron and V-D-J-exon, with the 5'UTR (SO:0000204) and 3'UTR (SO:0000205). 99520 0 0 76048 19 RH_map A radiation hybrid map is a physical map. 99521 0 0 76049 19 recoding_pseudoknot The pseudoknots involved in recoding are unique in that, as they play their role as a structure, they are immediately unfolded and their now linear sequence serves as a template for decoding. 99522 0 0 76050 19 exonic_splice_enhancer Exonic splicing enhancers (ESEs) facilitate exon definition by assisting in the recruitment of splicing factors to the adjacent intron. 99524 0 0 76051 19 frameshift An attribute describing a sequence that contains a mutation involving the deletion or insertion of one or more bases, where this number is not divisible by 3. 99525 0 0 76052 19 BREu_motif A sequence element characteristic of some RNA polymerase II promoters, located immediately upstream of some TATA box elements at -37 to -32 with respect to the TSS (+1). Consensus sequence is (G|C)(G|C)(G|A)CGCC. Binds TFIIB. 99526 0 0 76053 19 AFLP_fragment A PCR product obtained by applying the AFLP technique, based on a restriction enzyme digestion of genomic DNA and an amplification of the resulting fragments. 99527 0 0 76054 19 two_prime_O_methylinosine 2'-O-methylinosine is a modified inosine. 99529 0 0 76055 19 miRNA Small, ~22-nt, RNA molecule that is the endogenous transcript of a miRNA gene. Micro RNAs are produced from precursor molecules (SO:0000647) that can form local hairpin structures, which ordinarily are processed (via the Dicer pathway) such that a single miRNA molecule accumulates from one arm of a hairpin precursor molecule. Micro RNAs may trigger the cleavage of their target molecules or act as translational repressors. 99530 0 0 76056 19 tmRNA_primary_transcript A primary transcript encoding a tmRNA (SO:0000584). 99531 0 0 76057 19 type_I_enzyme_restriction_site (obsolete SO:0000284) The recognition site is bipartite and interrupted. 99532 1 0 76058 19 recombination_signal_sequence A region recognized by a recombinase. 99533 0 0 76059 19 vertebrate_immune_system_gene_recombination_signal_feature \N 99534 0 0 76060 19 RR_tract A polypurine tract within an LTR_retrotransposon. 99535 0 0 76061 19 lysine_tRNA_primary_transcript A primary transcript encoding lysyl tRNA (SO:0000265). 99536 0 0 76062 19 insert (obsolete SO:0000046) To insert a subsection of sequence. 99537 1 0 76063 19 circular_double_stranded_RNA_chromosome Structural unit composed of a self-replicating, double-stranded, circular RNA molecule. 99538 0 0 76064 19 cloned_cDNA_insert A clone insert made from cDNA. 99539 0 0 76065 19 pseudogenic_exon A non functional descendant of an exon, part of a pseudogene. 99540 0 0 76066 19 extrachromosomal_mobile_genetic_element An MGE that is not integrated into the host chromosome. 99541 0 0 76067 19 catmat_left_handed_three A motif of 3 consecutive residues with dihedral angles as follows: res i: phi -90 bounds -120 to -60, res i: psi -10 bounds -50 to 30, res i+1: phi -75 bounds -100 to -50, res i+1: psi 140 bounds 110 to 170. An extra restriction of the length of the O to O distance would be useful, that it be less than 5 Angstrom. More precisely these two oxygens are the main chain carbonyl oxygen atoms of residues i-1 and i+1. 99542 0 0 76114 19 editing_variant A transcript processing variant whereby the process of editing is disrupted with respect to the reference. 99593 0 0 76116 19 mutation_causing_polypeptide_C_terminal_elongation (obsolete SO:1000101) . 99595 1 0 76068 19 inversion_derived_aneuploid_chromosome A chromosome may be generated by recombination between two inversions; presumed to have a deficiency or duplication at each end of the inversion. 99543 0 0 76069 19 cryptogene A maxicircle gene so extensively edited that it cannot be matched to its edited mRNA sequence. 99544 0 0 76070 19 H3K36_monomethylation_site A kind of histone modification site, whereby the 36th residue (a lysine), from the start of the H3 histone protein is mono-methylated. 99545 0 0 77571 47 storage_trial \N 212732 0 0 76071 19 isoleucyl_tRNA A tRNA sequence that has an isoleucine anticodon, and a 3' isoleucine binding region. 99546 0 0 76072 19 two_thiouridine 2_thiouridine is a modified uridine base feature. 99547 0 0 76073 19 resolution_site A region specifically recognised by a recombinase, which separates a physically contiguous circle of DNA into two physically separate circles. 99548 0 0 76074 19 processed (obsolete SO:0000900) An attribute describing a pseudogene where by an mRNA was retrotransposed. The mRNA sequence is transcribed back into the genome, lacking introns and promotors, but often including a polyA tail. 99549 1 0 76075 19 orthologous An attribute describing a kind of homology where divergence occured after a speciation event. 99550 0 0 76076 19 pyrrolysyl_tRNA A tRNA sequence that has a pyrrolysine anticodon, and a 3' pyrrolysine binding region. 99551 0 0 76077 19 three_prime_noncoding_exon Non-coding exon in the 3' UTR. 99552 0 0 76078 19 serine_tRNA_primary_transcript A primary transcript encoding seryl tRNA (SO:000269). 99553 0 0 76079 19 modified_L_alanine A post translationally modified alanine amino acid feature. 99554 0 0 76080 19 scRNA A small non coding RNA sequence, present in the cytoplasm. 99555 0 0 76081 19 substitute_C_to_U (obsolete SO:0000922) An edit to substitute an U for a C. 99556 1 0 76082 19 pi_helix The pi helix has 4.1 residues per turn and a translation of 1.15 (=0.115 nm) along the helical axis. The N-H group of an amino acid forms a hydrogen bond with the C=O group of the amino acid five residues earlier. 99557 0 0 76083 19 spot_42_RNA A 109-nucleotide RNA of E. coli that seems to have a regulatory role on the galactose operon. Changes in Spot 42 levels are implicated in affecting DNA polymerase I levels. 99559 0 0 76084 19 V_VJ_J_C_cluster Genomic DNA of immunoglobulin/T-cell receptor gene in rearranged configuration including at least one V-gene, one VJ-gene, one J-gene and one C-gene. 99561 0 0 76085 19 processed_transcript_attribute (obsolete SO:0000082) \N 99562 1 0 76086 19 pseudogenic_tRNA A non functional descendent of a tRNA. 99563 0 0 76089 19 mRNA_recoded_by_translational_bypass A recoded_mRNA where translation was suspended at a particular codon and resumed at a particular non-overlapping downstream codon. 99566 0 0 76090 19 gRNA_encoding A non-protein_coding gene that encodes a guide_RNA. 99567 0 0 76091 19 rRNA_primary_transcript A primary transcript encoding a ribosomal RNA. 99568 0 0 76092 19 splicing_regulatory_region A regulatory_region that modulates splicing. 99569 0 0 76093 19 ss_RNA_viral_sequence A ss_RNA_viral_sequence is a viral_sequence that is the sequence of a virus that exists as single stranded RNA. 99570 0 0 76094 19 sequence_variant_affecting_polypeptide_function (obsolete SO:1000117) \N 99571 1 0 76095 19 snRNA_gene \N 99572 0 0 76096 19 enzymatic_RNA An RNA sequence that has catalytic activity with or without an associated ribonucleoprotein. 99573 0 0 76097 19 sequence_variant_decreasing_rate_of_transcription (obsolete SO:1000078) A sequence variation that decreases the rate a which transcription of the sequence occurs. 99574 1 0 76098 19 canonical_three_prime_splice_site The canonical 3' splice site has the sequence "AG". 99575 0 0 76099 19 assortment_derived_aneuploid A multi-chromosome aberration generated by reassortment of other aberration components; presumed to have a deficiency or a duplication. 99576 0 0 76100 19 chromoplast_sequence \N 99577 0 0 76101 19 trans_spliced_transcript A transcript that is trans-spliced. 99578 0 0 76102 19 fixed_variant \N 99579 0 0 76103 19 sequence_variation_affecting_coding_sequence (obsolete SO:1000054) Any of the amino acid coding triplets of a gene are affected by the DNA mutation. 99580 1 0 76104 19 amino_acid_substitution A sequence variant of a codon resulting in the substitution of one amino acid for another in the resulting polypeptide. 99581 0 0 76105 19 transcriptionally_repressed A repressor molecule is required for transcription to stop. 99582 0 0 76106 19 invalidated_cDNA_clone A cDNA clone that is invalid. 99583 0 0 76107 19 lincRNA A multiexonic non-coding RNA transcribed by RNA polymerase II. 99584 0 0 76108 19 disruptive_increase_in_CDS_length An inframe_increase_in_cds_length that inserts one or more codons into the coding sequence within an existing codon. 99586 0 0 76109 19 miRNA_antiguide A region of the pri miRNA that basepairs with the guide to form the hairpin. 99587 0 0 76110 19 sequence_location \N 99588 0 0 76111 19 paired_end_fragment An assembly region that has been sequenced from both ends resulting in a read_pair (mate_pair). 99589 0 0 76112 19 trans_splice_site Primary transcript region bordering trans-splice junction. 99590 0 0 76113 19 U3_snoRNA U3 snoRNA is a member of the box C/D class of small nucleolar RNAs. The U3 snoRNA secondary structure is characterised by a small 5' domain (with boxes A and A'), and a larger 3' domain (with boxes B, C, C', and D), the two domains being linked by a single-stranded hinge. Boxes B and C form the B/C motif, which appears to be exclusive to U3 snoRNAs, and boxes C' and D form the C'/D motif. The latter is functionally similar to the C/D motifs found in other snoRNAs. The 5' domain and the hinge region act as a pre-rRNA-binding domain. The 3' domain has conserved protein-binding sites. Both the box B/C and box C'/D motifs are sufficient for nuclear retention of U3 snoRNA. The box C'/D motif is also necessary for nucleolar localization, stability and hypermethylation of U3 snoRNA. Both box B/C and C'/D motifs are involved in specific protein interactions and are necessary for the rRNA processing functions of U3 snoRNA. 99591 0 0 77349 61 viscosity 212510 0 0 76118 19 RNA_chromosome Structural unit composed of a self-replicating, RNA molecule. 99597 0 0 76119 19 five_two_prime_O_dimethyluridine 5_2_prime_O_dimethyluridine is a modified uridine base feature. 99598 0 0 76120 19 N2_methylguanosine N2_methylguanosine is a modified guanosine base feature. 99599 0 0 76121 19 five_prime_intron \N 99600 0 0 76122 19 silenced_gene A gene that is silenced. 99601 0 0 76123 19 monocistronic_mRNA An mRNA with either a single protein product, or for which the regions encoding all its protein products overlap. 99602 0 0 76124 19 protein_coding \N 99603 0 0 76125 19 histone_methylation_site A histone modification site where the modification is the methylation of the residue. 99604 0 0 76126 19 polypeptide_nest_right_left_motif A motif of two consecutive residues with dihedral angles: Residue(i): -140 degrees < phi < -20 degrees, -90 degrees < psi < +40 degrees. Residue(i+1): +20 degrees < phi < +140 degrees, -40 degrees < psi < +90 degrees. 99605 0 0 76127 19 H3K4_methylation_site A kind of histone modification, whereby the 4th residue (a lysine), from the start of the H3 protein is methylated. 99607 0 0 76128 19 modified_L_histidine A post translationally modified histidie amino acid feature. 99608 0 0 76129 19 SAGE_tag A short diagnostic sequence tag, serial analysis of gene expression (SAGE), that allows the quantitative and simultaneous analysis of a large number of transcripts. 99609 0 0 76130 19 gene_rearranged_at_DNA_level An epigenetically modified gene, rearranged at the DNA level. 99611 0 0 76131 19 micronuclear_chromosome A chromosome originating in a micronucleus. 99612 0 0 76132 19 CDS_supported_by_domain_match_data A CDS that is supported by domain similarity. 99613 0 0 76133 19 spliceosomal_intron An intron which is spliced by the spliceosome. 99614 0 0 76134 19 positive_sense_ssRNA_viral_sequence A positive_sense_RNA_viral_sequence is a ss_RNA_viral_sequence that is the sequence of a single stranded RNA virus that can be immediately translated by the host. 99615 0 0 76135 19 invert (obsolete SO:0000047) To invert a subsection of sequence. 99616 1 0 76136 19 non_canonical_three_prime_splice_site A 3' splice site that does not have the sequence "AG". 99617 0 0 76139 19 ORF The in-frame interval between the stop codons of a reading frame which when read as sequential triplets, has the potential of encoding a sequential string of amino acids. TER(NNN)nTER. 99620 0 0 76140 19 modified_L_cysteine A post translationally modified cysteine amino acid feature. 99621 0 0 76141 19 3_prime_UTR_variant A UTR variant of the 3' UTR. 99622 0 0 76142 19 gene_silenced_by_histone_methylation A gene that is silenced by histone methylation. 99623 0 0 76143 19 silenced_by_DNA_modification An attribute describing an epigenetic process where a gene is inactivated by DNA modifications, resulting in repression of transcription. 99624 0 0 76144 19 TSS_region The region of a gene from the 5' most TSS to the 3' TSS. 99625 0 0 76145 19 dicistronic_mRNA An mRNA that has the quality dicistronic. 99627 0 0 76146 19 internal_transcribed_spacer_region Non-coding regions of DNA sequence that separate genes coding for the 28S, 5.8S, and 18S ribosomal RNAs. 99628 0 0 76147 19 decayed_exon A non-functional descendant of an exon. 99629 0 0 76148 19 regulatory_region A region of sequence that is involved in the control of a biological process. 99630 0 0 76149 19 gene_group A collection of related genes. 99631 0 0 76150 19 five_isopentenylaminomethyl_two_thiouridine 5_isopentenylaminomethyl_2_thiouridine is a modified uridine base feature. 99632 0 0 76151 19 three_prime_clip 3'-most region of a precursor transcript that is clipped off during processing. 99633 0 0 76152 19 alpha_beta_motif A motif of five consecutive residues and two H-bonds in which: H-bond between CO of residue(i) and NH of residue(i+4), H-bond between CO of residue(i) and NH of residue(i+3),Phi angles of residues(i+1), (i+2) and (i+3) are negative. 99634 0 0 76153 19 post_translationally_modified_region A region where a transformation occurs in a protein after it has been synthesized. This which may regulate, stabilize, crosslink or introduce new chemical functionalities in the protein. 99635 0 0 76154 19 three_prime_D_nonamer A 9 nucleotide recombination site (e.g. ACAAAAACC), part of a 3' D-recombination signal sequence of an immunoglobulin/T-cell receptor gene. 99637 0 0 76155 19 proviral_location \N 99638 0 0 76156 19 free_duplication A chromosome structure variation whereby the duplicated sequences are carried as a free centric element. 99639 0 0 76157 19 RNA_hook_turn \N 99640 0 0 76158 19 recombinationally_rearranged \N 99641 0 0 76159 19 V_D_DJ_J_C_cluster Genomic DNA of immunoglobulin/T-cell receptor gene in rearranged configuration including at least one V-gene, one D-gene, one DJ-gene, one J-gene and one C-gene. 99642 0 0 76160 19 regulatory_region_variant A sequence variant located within a regulatory region. 99643 0 0 76161 19 3D_polypeptide_structure_variant A sequence variant that changes the resulting polypeptide structure. 99644 0 0 76162 19 integron A region encoding an integrase which acts at a site adjacent to it (attI_site) to insert DNA which must include but is not limited to an attC_site. 99645 0 0 76163 19 polypeptide_function_variant A sequence variant which changes polypeptide functioning with respect to a reference sequence. 99646 0 0 76164 19 regulatory_promoter_element A promoter element that is not part of the core promoter, but provides the promoter with a specific regulatory region. 99647 0 0 76165 19 five_carboxyhydroxymethyl_uridine 5_carboxyhydroxymethyl_uridine is a modified uridine base feature. 99648 0 0 76166 19 beta_turn_type_six A motif of four consecutive peptide resides of type VIa or type VIb and where the i+2 residue is cis-proline. 99649 0 0 76167 19 YAC_clone (obsolete SO:0000760) \N 99650 1 0 76168 19 transcription_end_site The base where transcription ends. 99651 0 0 76169 19 CRM A regulatory_region where more than 1 TF_binding_site together are regulatorily active. 99652 0 0 76170 19 autopolyploid A polyploid where the multiple chromosome set was derived from the same organism. 99654 0 0 76171 19 SL12_acceptor_site A SL2_acceptor_site which appends the SL12 RNA leader sequence to the 5' end of an mRNA. SL12 acceptor sites occur in genes in internal segments of polycistronic transcripts. 99655 0 0 76172 19 i_motif A cytosine rich domain whereby strands associate both inter- and intramolecularly at moderately acidic pH. 99656 0 0 76173 19 single_stranded_RNA_chromosome Structural unit composed of a self-replicating, single-stranded RNA molecule. 99658 0 0 76174 19 RNA_polymerase_II_TATA_box A TATA box core promoter of a gene transcribed by RNA polymerase II. 99659 0 0 76175 19 RNApol_III_promoter_type_1 \N 99660 0 0 76176 19 U5_snRNA U5 RNA is a component of both types of known spliceosome. The precise function of this molecule is unknown, though it is known that the 5' loop is required for splice site selection and p220 binding, and that both the 3' stem-loop and the Sm site are important for Sm protein binding and cap methylation. 99661 0 0 76177 19 apicoplast_sequence \N 99663 0 0 76178 19 experimental_feature A region which is the result of some arbitrary experimental procedure. The procedure may be carried out with biological material or inside a computer. 99664 0 0 76179 19 sequence_variant_affecting_rate_of_transcription (obsolete SO:1000081) A mutation that alters the rate a which transcription of the sequence occurs. 99665 1 0 76180 19 three_three_amino_three_carboxypropyl_uridine 3_3_amino_3_carboxypropyl_uridine is a modified uridine base feature. 99666 0 0 76181 19 interchromosomal_transposition A chromosome structure variation whereby a transposition occurred between chromosomes. 99667 0 0 76182 19 rRNA_18S A large polynucleotide in eukaryotes, which functions as the small subunit of the ribosome. 99668 0 0 76183 19 cointegrated_plasmid A MGE region consisting of two fused plasmids resulting from a replicative transposition event. 99669 0 0 76184 19 encodes_disjoint_polypeptides A gene that is alternately spliced, and encodes more than one polypeptide, that do not have overlapping peptide sequences. 99671 0 0 76185 19 mRNA_with_frameshift An mRNA with a frameshift. 99672 0 0 76487 46 stock_synonym \N 209386 0 0 76186 19 rRNA RNA that comprises part of a ribosome, and that can provide both structural scaffolding and catalytic activity. 99673 0 0 76187 19 restriction_enzyme_cleavage_junction The boundary at which a restriction enzyme breaks the nucleotide sequence. 99674 0 0 76188 19 rescue An attribute describing a region's ability, when introduced to a mutant organism, to re-establish (rescue) a phenotype. 99675 0 0 76189 19 SL2_acceptor_site A trans_splicing_acceptor_site which appends the 22nt SL2 RNA leader sequence to the 5' end of mRNAs. SL2 acceptor sites occur in genes in internal segments of polycistronic transcripts. 99676 0 0 76190 19 hypoploid A kind of chromosome variation where the chromosome complement is not an exact multiple of the haploid number as some chromosomes are missing. 99677 0 0 76191 19 inversion_breakpoint The point within a chromosome where an inversion begins or ends. 99678 0 0 76192 19 U3_LTR_region \N 99679 0 0 76193 19 promoter_targeting_sequence A transcriptional_cis_regulatory_region that restricts the activity of a CRM to a single promoter and which functions only when both itself and an insulator are located between the CRM and the promoter. 99680 0 0 76194 19 mannosyl_queuosine Mannosyl_queuosine is a modified 7-deazoguanosine. 99681 0 0 76195 19 G_quartet G-quartets are unusual nucleic acid structures consisting of a planar arrangement where each guanine is hydrogen bonded by hoogsteen pairing to another guanine in the quartet. 99682 0 0 76196 19 transcribed_cluster A region defined by a set of transcribed sequences from the same gene or expressed pseudogene. 99684 0 0 76197 19 point_centromere A point centromere is a relatively small centromere (about 125 bp DNA) in discrete sequence, found in some yeast including S. cerevisiae. 99685 0 0 76198 19 V_D_DJ_J_cluster Genomic DNA of immunoglobulin/T-cell receptor gene in rearranged configuration including at least one V-gene, one D-gene, one DJ-gene and one J-gene. 99686 0 0 76199 19 asx_turn_left_handed_type_one Left handed type I (dihedral angles):- Residue(i): -140 degrees < chi (1) -120 degrees < -20 degrees, -90 degrees < psi +120 degrees < +40 degrees. Residue(i+1): -140 degrees < phi < -20 degrees, -90 degrees < psi < +40 degrees. 99687 0 0 76200 19 sequence_variant_causing_inactive_catalytic_site (obsolete SO:1000120) \N 99689 1 0 76201 19 cloned_region \N 99690 0 0 76202 19 snoRNA_encoding \N 99691 0 0 76203 19 contig_read A DNA sequencer read which is part of a contig. 99692 0 0 76204 19 mRNA_contig A contig composed of mRNA_reads. 99693 0 0 76205 19 invalidated_by_genomic_polyA_primed_cDNA An attribute to describe a feature that is invalidated due to polyA priming. 99694 0 0 76206 19 upstream_gene_variant A sequence variant located 5' of a gene. 99695 0 0 76207 19 genetic_marker A measurable sequence feature that varies within a population. 99696 0 0 76208 19 sequence_difference A region where the sequence differs from that of a specified sequence. 99698 0 0 76209 19 glutamyl_tRNA A tRNA sequence that has a glutamic acid anticodon, and a 3' glutamic acid binding region. 99699 0 0 76210 19 shadow_enhancer \N 99700 0 0 76211 19 interchromosomal \N 99701 0 0 76212 19 transgenic_insertion An insertion that derives from another organism, via the use of recombinant DNA technology. 99702 0 0 76213 19 transposable_element_gene A gene encoded within a transposable element. For example gag, int, env and pol are the transposable element genes of the TY element in yeast. 99703 0 0 76317 19 gene_silenced_by_DNA_modification A gene that is silenced by DNA modification. 99817 0 0 76214 19 sequence_variant_causing_no_change_of_translational_product (obsolete SO:1000089) The sequence variant at RNA level does not lead to any change in polypeptide. 99704 1 0 77458 61 mg/g Milligrams per gram. 212619 0 0 76215 19 double_stranded_DNA_chromosome Structural unit composed of a self-replicating, double-stranded DNA molecule. 99705 0 0 76216 19 amplification_origin An origin_of_replication that is used for the amplification of a chromosomal nucleic acid sequence. 99706 0 0 76217 19 lincRNA_gene A gene that encodes large intervening non-coding RNA. 99707 0 0 76218 19 RNA An attribute describing a sequence consisting of nucleobases bound to a repeating unit made of a D-ribose ring connected to a phosphate backbone. 99708 0 0 76219 19 major_TSS \N 99709 0 0 76220 19 linear_double_stranded_RNA_chromosome Structural unit composed of a self-replicating, double-stranded, linear RNA molecule. 99710 0 0 76221 19 sequence_variant_causing_loss_of_function_of_polypeptide (obsolete SO:1000118) \N 99711 1 0 76222 19 high_identity_region An experimental feature with high sequence identity to another sequence. 99712 0 0 76223 19 telomere A specific structure at the end of a linear chromosome, required for the integrity and maintenance of the end. 99713 0 0 76224 19 splice_region_variant A sequence variant in which a change has occurred within the region of the splice site, either within 1-3 bases of the exon or 3-8 bases of the intron. 99714 0 0 76225 19 coding_conserved_region Coding region of sequence similarity by descent from a common ancestor. 99715 0 0 77570 47 genetic_gain_trial \N 212731 0 0 76226 19 sequence_variant_affecting_gene_structure (obsolete SO:1000180) A sequence_variant_effect that changes the gene structure. 99716 1 0 76227 19 terminator_codon_variant A sequence variant whereby at least one of the bases in the terminator codon is changed. 99717 0 0 76228 19 cleaved_initiator_methionine The initiator methionine that has been cleaved from a mature polypeptide sequence. 99718 0 0 76229 19 decreased_polyadenylation_variant A transcript processing variant whereby polyadenylation of the encoded transcript is decreased with respect to the reference. 99720 0 0 76230 19 R_LTR_region \N 99721 0 0 76231 19 gene_attribute \N 99722 0 0 76232 19 ER_retention_signal A C-terminal tetrapeptide motif that mediates retention of a protein in (or retrieval to) the endoplasmic reticulum. In mammals the sequence is KDEL, and in fungi HDEL or DDEL. 99723 0 0 76233 19 integrated_mobile_genetic_element An MGE that is integrated into the host chromosome. 99726 0 0 76492 45 vector_constructs \N 209391 0 0 76234 19 trans_splice_donor_site The 5' five prime splice site region of the donor RNA. 99727 0 0 76235 19 codon_redefined An attribute describing the alteration of codon meaning. 99728 0 0 76236 19 substitution A sequence alteration where the length of the change in the variant is the same as that of the reference. 99729 0 0 76237 19 CDS_predicted A CDS that is predicted. 99730 0 0 76238 19 plus_2_framshift A frameshift caused by inserting two bases. 99731 0 0 76239 19 modified_L_asparagine A post translationally modified asparagine amino acid feature. 99732 0 0 76240 19 transcript_bound_by_protein A transcript that is bound by a protein. 99733 0 0 76241 19 copy_number_change A sequence variant where copies of a feature (CNV) are either increased or decreased. 99734 0 0 76242 19 beta_turn_left_handed_type_two Left handed type II: A motif of four consecutive residues that may contain one H-bond, which, if present, is between the main-chain CO of the first residue and the main-chain NH of the fourth. It is characterized by the dihedral angles: Residue(i+1): -140 degrees > phi > -20 degrees, +80 degrees > psi > +180 degrees. Residue(i+2): +20 degrees > phi > +140 degrees, -40 degrees > psi > +90 degrees. 99735 0 0 76243 19 edited_by_G_addition (obsolete SO:0000601) \N 99737 1 0 76244 19 cryptic_splice_site A splice site that is in part of the transcript not normally spliced. They occur via mutation or transcriptional error. 99738 0 0 76245 19 mRNA_with_plus_1_frameshift An mRNA with a plus 1 frameshift. 99739 0 0 76246 19 valine \N 99740 0 0 76247 19 sequence_variant_causing_conformational_change (obsolete SO:1000116) \N 99741 1 0 76248 19 sequence_variant_causing_partial_loss_of_function_of_polypeptide (obsolete SO:1000124) \N 99742 1 0 76249 19 sequence_variant_effect (obsolete SO:1000132) The effect of a change in nucleotide sequence. 99743 1 0 76250 19 edited_by_A_to_I_substitution (obsolete SO:0000600) \N 99744 1 0 76251 19 cryptic A feature_attribute describing a feature that is not manifest under normal conditions. 99745 0 0 76252 19 pericentric \N 99746 0 0 76253 19 cosmid_clone (obsolete SO:0000765) \N 99747 1 0 76254 19 cis_regulatory_frameshift_element A structural region in an RNA molecule which promotes ribosomal frameshifting of cis coding sequence. 99748 0 0 76255 19 aspartic_acid \N 99749 0 0 76256 19 encodes_greater_than_1_polypeptide A gene that is alternately spliced, and encodes more than one polypeptide. 99750 0 0 76257 19 V_VDJ_C_cluster Genomic DNA of immunoglobulin/T-cell receptor gene in rearranged configuration including at least one V-gene, one VDJ-gene and one C-gene. 99751 0 0 76258 19 minicircle A minicircle is a replicon, part of a kinetoplast, that encodes for guide RNAs. 99752 0 0 76259 19 synthetic_oligo An oligo composed of synthetic nucleotides. 99754 0 0 76260 19 plus_2_translational_frameshift The region of mRNA 2 bases long that is skipped during the process of translational frameshifting (GO:0006452), causing the reading frame to be different. 99755 0 0 76261 19 inframe_change_in_CDS_length \N 99756 0 0 76262 19 engineered_transposable_element TE that has been modified by manipulations in vitro. 99757 0 0 76263 19 tandem_duplication A duplication consisting of 2 identical adjacent regions. 99758 0 0 76264 19 scRNA_primary_transcript The primary transcript of any one of several small cytoplasmic RNA molecules present in the cytoplasm and sometimes nucleus of a eukaryote. 99759 0 0 76265 19 CCA_tail Base sequence at the 3' end of a tRNA. The 3'-hydroxyl group on the terminal adenosine is the attachment point for the amino acid. 99761 0 0 76269 19 bipartite_duplication An interchromosomal mutation whereby the (large) region between the first two breaks listed is lost, and the two flanking segments (one of them centric) are joined as a translocation to the free ends resulting from the third break. 99765 0 0 76270 19 transmembrane_polypeptide_region Polypeptide region traversing the lipid bilayer. 99766 0 0 76271 19 modified_inosine A modified inosine is an inosine base feature that has been altered. 99769 0 0 76272 19 five_prime_five_prime_overlap An attribute to describe a gene when the five prime region overlaps with another gene's five prime region. 99770 0 0 76273 19 glycine_tRNA_primary_transcript A primary transcript encoding glycyl tRNA (SO:0000263). 99771 0 0 76274 19 D_DJ_J_C_cluster Genomic DNA of immunoglobulin/T-cell receptor gene in rearranged configuration including at least one D-gene, one DJ-gene, one J-gene and one C-gene. 99772 0 0 76275 19 recombination_hotspot A region in a genome which promotes recombination. 99773 0 0 76276 19 edited_CDS A CDS that is edited. 99774 0 0 76277 19 transcript_with_translational_frameshift A transcript with a translational frameshift. 99775 0 0 76278 19 A_box_type_1 An A box within an RNA polymerase III type 1 promoter. 99776 0 0 76279 19 beta_bulge_loop A motif of three residues within a beta-sheet consisting of two H-bonds. Beta bulge loops often occur at the loop ends of beta-hairpins. 99777 0 0 76280 19 genomic_DNA \N 99780 0 0 76281 19 asymmetric_RNA_internal_loop An internal RNA loop where one of the strands includes more bases than the corresponding region on the other strand. 99781 0 0 76282 19 somatic_variant \N 99782 0 0 76284 19 three_prime_UTR A region at the 3' end of a mature transcript (following the stop codon) that is not translated into a protein. 99784 0 0 76285 19 C_to_T_transition A transition of a cytidine to a thymine. 99785 0 0 76286 19 coding_sequence_variant A sequence variant that changes the coding sequence. 99786 0 0 76439 39 organism_sequencing_metadata metadata about this organism's sequencing status 209336 0 0 76287 19 polypeptide_conserved_motif A conserved motif is a short (up to 20 amino acids) region of biological interest that is conserved in different proteins. They may or may not have functional or structural significance within the proteins in which they are found. 99787 0 0 76288 19 beta_turn_type_eight A motif of four consecutive peptide residues that may contain one H-bond, which, if present, is between the main-chain CO of the first residue and the main-chain NH of the fourth and is characterized by the dihedral angles: Residue(i+1): phi ~ -60 degrees, psi ~ -30 degrees. Residue(i+2): phi ~ -120 degrees, psi ~ 120 degrees. 99788 0 0 76289 19 methionine_tRNA_primary_transcript A primary transcript encoding methionyl tRNA (SO:0000266). 99789 0 0 76290 19 V_DJ_cluster Genomic DNA of immunoglobulin/T-cell receptor gene in rearranged configuration including at least one V-gene and one DJ-gene. 99790 0 0 76291 19 supported_by_domain_match An attribute to describe a feature that has been predicted using sequence similarity of a known domain. 99791 0 0 76292 19 N6_acetyladenosine N6_acetyladenosine is a modified adenosine. 99792 0 0 76293 19 five_carboxymethylaminomethyl_two_thiouridine 5_carboxymethylaminomethyl_2_thiouridine is a modified uridine base feature. 99793 0 0 76294 19 J_cluster Genomic DNA of immunoglobulin/T-cell receptor gene in germline configuration including more than one J-gene. 99794 0 0 76295 19 engineered_foreign_repetitive_element A repetitive element that is engineered and foreign. 99795 0 0 76296 19 exon_variant A sequence variant that changes exon sequence. 99796 0 0 76297 19 copy_number_loss A sequence alteration whereby the copy number of a given region is less than the reference sequence. 99797 0 0 76298 19 sequence_variant_causing_conservative_amino_acid_substitution (obsolete SO:1000094) \N 99798 1 0 76299 19 insertion_site The junction where an insertion occurred. 99799 0 0 76300 19 NMD_transcript_variant A variant in a transcript that is the target of NMD. 99800 0 0 76301 19 BREd_motif A core TRNA polymerase II promoter element with consensus (G/A)T(T/G/A)(T/A)(G/T)(T/G)(T/G). 99801 0 0 76302 19 VDJ_C_cluster Genomic DNA of immunoglobulin/T-cell receptor gene in rearranged configuration including at least one VDJ-gene and one C-gene. 99802 0 0 76303 19 translocation_breakpoint The point within a chromosome where a translocation begins or ends. 99803 0 0 76304 19 supercontig One or more contigs that have been ordered and oriented using end-read information. Contains gaps that are filled with N's. 99804 0 0 76305 19 feature_attribute An attribute describing a located_sequence_feature. 99805 0 0 76306 19 arginine_tRNA_primary_transcript A primary transcript encoding arginyl tRNA (SO:0000255). 99806 0 0 76307 19 fusion_gene A gene that is a fusion. 99807 0 0 76308 19 methionine \N 99808 0 0 76309 19 sequence_variant_causing_nonsense_codon_change_in_transcript (obsolete SO:1000062) The nucleotide change in the codon triplet creates a terminator codon. 99809 1 0 76310 19 sugar_edge_base_pair A type of non-canonical base-pairing. 99810 0 0 76311 19 methylated_base_feature A nucleotide modified by methylation. 99811 0 0 76312 19 four_cutter_restriction_site (obsolete SO:0000244) \N 99812 1 0 76313 19 consensus_mRNA \N 99813 0 0 76314 19 one_two_prime_O_dimethylguanosine 1_2prime_O_dimethylguanosine is a modified guanosine base feature. 99814 0 0 76315 19 LTR_component \N 99815 0 0 76316 19 assortment_derived_deficiency_plus_duplication (obsolete SO:0000554) \N 99816 1 0 76318 19 alpha_helix The helix has 3.6 residues per turn which corersponds to a translation of 1.5 angstroms (= 0.15 nm) along the helical axis. Every backbone N-H group donates a hydrogen bond to the backbone C=O group of the amino acid four residues earlier. 99818 0 0 76319 19 endogenous_retroviral_sequence \N 99820 0 0 77459 61 power 212620 0 0 76321 19 three_prime_RST A tag produced from a single sequencing read from a 3'-RACE product; typically a few hundred base pairs long. 99822 0 0 76322 19 minisatellite A repeat region containing tandemly repeated sequences having a unit length of 10 to 40 bp. 99823 0 0 76323 19 translocate (obsolete SO:0000049) To translocate a subsection of sequence. 99824 1 0 76324 19 paternal_variant \N 99825 0 0 76325 19 miRNA_gene \N 99826 0 0 76326 19 methylation_guide_snoRNA A snoRNA that specifies the site of 2'-O-ribose methylation in an RNA molecule by base pairing with a short sequence around the target residue. 99827 0 0 76327 19 tyrosine_tRNA_primary_transcript A primary transcript encoding tyrosyl tRNA (SO:000272). 99828 0 0 76328 19 histone_binding_site A binding site that, in the nucleotide molecule, interacts selectively and non-covalently with polypeptide residues of a histone. 99829 0 0 76329 19 uninverted_interchromosomal_transposition An interchromosomal transition where the segment between the first two breaks listed is removed and inserted at the third break; the insertion is in cytologically the same orientation as its flanking segments. 99830 0 0 76330 19 st_turn_right_handed_type_one The peptide twists in an clockwise, right handed manner. The dihedral angles for this turn are: Residue(i): -140 degrees < chi(1) -120 degrees < -20 degrees, -90 degrees psi +120 degrees < +40 degrees, residue(i+1): -140 degrees < phi < -20 degrees, -90 < psi < +40 degrees. 99831 0 0 76331 19 recoded_by_translational_bypass Recoded mRNA where a block of nucleotides is not translated. 99833 0 0 76332 19 two_methyladenosine 2_methyladenosine is a modified adenosine. 99834 0 0 76333 19 non_terminal_residue The residue at an extremity of the sequence is not the terminal residue. 99835 0 0 76441 35 field_layout \N 209339 0 0 76432 35 genotyping_experiment \N 209329 0 0 76477 35 genotyping_layout \N 209374 0 0 76391 35 phenotyping_experiment \N 99899 0 0 77573 47 health_status_trial \N 212734 0 0 76334 19 RNase_MRP_RNA The RNA molecule essential for the catalytic activity of RNase MRP, an enzymatically active ribonucleoprotein with two distinct roles in eukaryotes. In mitochondria it plays a direct role in the initiation of mitochondrial DNA replication. In the nucleus it is involved in precursor rRNA processing, where it cleaves the internal transcribed spacer 1 between 18S and 5.8S rRNAs. 99837 0 0 76335 19 sequence_variant_causing_initiator_codon_change_in_transcript (obsolete SO:1000055) The DNA mutation changes, usually destroys, the first coding triplet of a gene. Usually prevents translation although another initiator codon may be used. 99839 1 0 76336 19 covalent_binding_site (obsolete SO:0001090) Binding involving a covalent bond. 99840 1 0 76337 19 inactive_ligand_binding_site A sequence variant that causes the inactivation of a ligand binding site with respect to a reference sequence. 99842 0 0 76338 19 R_GNA An attribute describing a GNA sequence in the (R)-GNA enantiomer. 99843 0 0 76339 19 DJ_C_cluster Genomic DNA of immunoglobulin/T-cell receptor gene in rearranged configuration including at least one DJ-gene and one C-gene. 99845 0 0 76340 19 TF_binding_site_variant A sequence variant located within a transcription factor binding site. 99846 0 0 76341 19 FRT_site An inversion site found on the Saccharomyces cerevisiae 2 micron plasmid. 99848 0 0 76342 19 flanking_three_prime_quadruplet_recoding_signal Four base pair sequence immediately downstream of the redefined region. The redefined region is a frameshift site. The quadruplet is 2 overlapping codons. 99849 0 0 76343 19 plus_1_frameshift_variant A sequence variant which causes a disruption of the translational reading frame, by shifting one base backward. 99850 0 0 76344 19 pathogenic_island Mobile genetic elements that contribute to rapid changes in virulence potential. They are present on the genomes of pathogenic strains but absent from the genomes of non pathogenic members of the same or related species. 99851 0 0 76345 19 noncoding_exon An exon that does not contain any codons. 99852 0 0 76346 19 locus_control_region A DNA region that includes DNAse hypersensitive sites located 5' to a gene that confers the high-level, position-independent, and copy number-dependent expression to that gene. 99853 0 0 76347 19 delete_U (obsolete SO:0000918) An edit to delete a uridine. 99854 1 0 76348 19 gamma_turn Gamma turns, defined for 3 residues i,( i+1),( i+2) if a hydrogen bond exists between residues i and i+2 and the phi and psi angles of residue i+1 fall within 40 degrees. 99855 0 0 76349 19 large_subunit_rRNA Ribosomal RNA transcript that structures the large subunit of the ribosome. 99857 0 0 76350 19 VDJ_J_C_cluster Genomic DNA of immunoglobulin/T-cell receptor gene in rearranged configuration including at least one VDJ-gene, one J-gene and one C-gene. 99858 0 0 76351 19 vector_replicon A replicon that has been modified to act as a vector for foreign sequence. 99859 0 0 76352 19 primary_transcript_region A part of a primary transcript. 99860 0 0 76353 19 H3K18_acetylation_site A kind of histone modification site, whereby the 14th residue (a lysine), from the start of the H3 histone protein is acylated. 99861 0 0 76354 19 upstream_AUG_codon A start codon upstream of the ORF. 99862 0 0 76355 19 gene_with_stop_codon_redefined_as_pyrrolysine A gene encoding an mRNA that has the stop codon redefined as pyrrolysine. 99863 0 0 76356 19 SL5_acceptor_site A SL2_acceptor_site which appends the SL5 RNA leader sequence to the 5' end of an mRNA. SL5 acceptor sites occur in genes in internal segments of polycistronic transcripts. 99864 0 0 76357 19 DNAseI_hypersensitive_site \N 99865 0 0 76358 19 polypeptide_sequence_variant A sequence variant with in the CDS that causes a change in the resulting polypeptide sequence. 99866 0 0 76359 19 H3K4_monomethylation_site A kind of histone modification, whereby the 4th residue (a lysine), from the start of the H3 protein is mono-methylated. 99867 0 0 76360 19 inversion A continuous nucleotide sequence is inverted in the same position. 99868 0 0 76361 19 synonymous_codon A sequence variant whereby a base of a codon is changed, but there is no resulting change to the encoded amino acid. 99869 0 0 76362 19 oriV An origin of vegetative replication in plasmids and phages. 99870 0 0 76363 19 inframe_codon_gain A sequence variant which gains a codon, and does not cause a disruption of the translational reading frame. 99871 0 0 76364 19 paralogous An attribute describing a kind of homology where divergence occurred after a duplication event. 99872 0 0 76365 19 N6_cis_hydroxyisopentenyl_adenosine N6_cis_hydroxyisopentenyl_adenosine is a modified adenosine. 99873 0 0 76366 19 assembly_component A region of known length which may be used to manufacture a longer region. 99874 0 0 76367 19 MEMBER_OF \N 99875 0 1 76368 19 GUIDED_BY \N 99876 0 1 76369 19 NON_FUNCTIONAL_HOMOLOG_OF \N 99877 0 1 76370 19 VARIANT_OF \N 99878 0 1 76371 19 OVERLAPS \N 99879 0 1 76392 36 accession \N 99900 0 0 76393 36 plot \N 99901 0 0 76394 37 plot_of \N 99902 0 0 76395 38 project year \N 99903 0 0 76396 39 visible_to_role \N 99904 0 0 76400 40 no rank \N 99906 0 0 76401 40 superkingdom \N 99907 0 0 76402 40 subkingdom \N 99908 0 0 76403 40 kingdom \N 99909 0 0 76404 40 superphylum \N 99910 0 0 76405 40 phylum \N 99911 0 0 76406 40 subphylum \N 99912 0 0 76407 40 superclass \N 99913 0 0 76408 40 class \N 99914 0 0 76409 40 subclass \N 99915 0 0 76410 40 infraclass \N 99916 0 0 76411 40 cohort \N 99917 0 0 76412 40 subcohort \N 99918 0 0 76413 40 superorder \N 99919 0 0 76414 40 order \N 99920 0 0 76488 36 vector_construct \N 209387 0 0 76440 38 breeding_program \N 209338 0 0 76448 52 breeding_program_trial_relationship \N 209346 0 0 76497 37 cross_relationship \N 209396 0 0 76504 38 trial_folder \N 209401 0 0 76505 39 sp_person_id \N 209402 0 0 76506 37 plant_of \N 209403 0 0 76507 53 Fertilizer Event \N 209404 0 0 76508 53 Genotyping Event \N 209405 0 0 70663 16 ash content in percentage Residue left behind after all organic matter has been burnt off, a measure of total mineral salts in a food estimated in percentage (%). 92951 0 0 70672 16 plant stands harvested counting A count of the number of plant stands at harvest. 92960 0 0 70673 16 Cassava mosaic disease incidence Proportion of plants within a plot showing symptoms of cassava mosaic disease 92961 0 0 70674 16 plant height measurement in cm Vertical height of plants from the ground to top of the canopy measured in centimeter (cm). 92962 0 0 70690 16 Bemesia tabaci adult by counting Number of Bemesia tabaci adult white flies on the top five leaves. 92979 0 0 70692 16 abscisic acid content of leaf ug/g Abscisic acid content of leaf sample. 92981 0 0 70705 16 leaf retention : visual rating 1-5 Visual rating of leaf longevity using a scale of 1 =(very poor retention) to 5 = (outstanding leaf retention). 92995 0 0 70712 16 suitability for intercropping visual rating 0&1 Qualitative rating of compatibility for use in intercropping with 0 = unsuitable and 1 = suitable. 93002 0 0 70711 16 beta carotene content ug/g Concentration of beta carotene extracted from root samples and estimated by HPLC expressed in ug per gram fresh weight. 93001 0 0 70714 16 Cassava bacterial blight severity Severity of bacterial blight disease caused by Xanthomonas axonopodis pv. Manihotis 93004 0 0 70716 16 Stress trait A characteristic related to plant functioning in the presence of a biotic or abiotic challenge to normal or optimal growing conditions. 93006 0 0 70720 16 Cassava brown streak disease root severity Cassava brown streak disease root symptoms severity 93010 0 0 76608 16 Caruncle Color Color of caruncle 209507 0 0 77350 61 umol Micromolar. 1E-6 Molar. 212511 0 0 70725 16 fruit set visual rating 0&1 Visual rating of cassava fruit set with 0 = absent and 1 = present. 93015 0 0 70727 16 dry yield Dry weight of harvested roots derived by multiplying fresh storage root yield by dry matter content expressed in tons per hectares (t/ha). 93017 0 0 70736 16 protein content in percentage Percentage (%) of protein content in cassava storage root. 93026 0 0 70741 16 dry matter content percentage Percentage dry matter storage root. 93031 0 0 70750 16 Quality trait A characteristic or distinguishing feature of cassava related to its utilization after harvest. 93040 0 0 70752 16 amylose amylopectin root content ratio The amylose content of a cassava root sample divided by the amylopectin content of the same sample. 93042 0 0 70765 16 initial vigor assessment 1-7 Visual assessment of plant vigor during establishment scored one month after planting. 93057 0 0 70775 16 anthocyanin pigmentation visual rating 0-3 Visual rating of distribution of anthocyanin pigmentation with 0 = absent, 1 = top part, 2 = central part, 3 = totally pigmented. 93067 0 0 70780 16 spiraling whitefly severity : visual 1-5 Visual rating of damage caused by spiraling white fly, Aleurodicus dispersus. Symptoms rated from 1 = (clean, no damage) to 5 = (extremely severe, severely damaged). 93072 0 0 70781 16 female staminoids assessment 0&1 Visual observation of female cassava flowers without rudimentary stamen scored as 0 = absent and 1 = present. 93073 0 0 70668 16 harvest index variable Proportion of fresh root weight in total biomass. 92956 0 0 70669 16 gari content g/kg Percentage (%) gari processed from fresh storage roots. 92957 0 0 70683 16 Physiological trait Characteristics related to the functioning of living cassava. 92972 0 0 70696 16 red spider mite severity : visual 1-5 Visual rating of damage caused by red spider mite, Oligonychus gossypii and Tetranychus spp. Symptoms rated from 1 = (clean, no infection) to 5 = (extremely severe, severely damaged). 92985 0 0 70700 16 sprouting proportion Proportion of stakes germinated scored one month after planting. 92990 0 0 70701 16 frog skin disease : visual 1-5 Visual rating of symptoms caused by unknown causal agent. Symptoms rated from 1 = (clean, no infection) to 5 = (extremely severe, severely diseased). 92991 0 0 70706 16 root number counting A count of the total number of storage roots harvested per plot. 92996 0 0 70723 16 Bemesia tabaci nymphs by counting Number of Bemesia tabaci nymphs white flies on the14th leaf. 93013 0 0 70744 16 fibre content estimation in percentage Part of tuber root that cannot be digested by humans estimated in percentage (%). 93034 0 0 70746 16 starch content percentage Percentage (%) of complex carbohydrate found in cassava storage root. 93036 0 0 70747 16 root constriction Visual ratings of root constrcitions (1 = few, 2 = intermediate, 3 = many) as being evaluated by CIAT. 93037 0 0 70754 16 fufu content in g/kg Percentage (%) fufu processed from fresh storage roots. 93044 0 0 70758 16 cassava mealy bug severity by visual rating 1-5 Visual rating of damage caused by cassava mealy-bug, Phenacoccus Manihoti. Symptoms rated from 1 = (clean, no infection) to 5 = (extremely severe, severely diseased). 93049 0 0 70769 16 storage root cortex color Visual rating of the color of outer surface of storage root cortex (inner skin color) with 1 = white or cream, 2 = yellow, 3 = pink, 4 = purple. 93061 0 0 70771 16 total carotenoid content in ug/g Total extracted carotenoids in cassava storage root as estimated by spectrophotometer and expressed in ug per gram fresh weight. 93063 0 0 70776 16 Morphological trait Physical attributes that describe the shape or form of cassava plant. 93068 0 0 70664 16 red spider mite incidence by proportion Proportion of plants within a plot showing evidence of colonization by red spider mite. 92952 0 0 70666 16 fresh root weight Total fresh weight of storage roots harvested per plot measured in kilogram (kg). 92954 0 0 70675 16 proportion lodged plants in percentage Proportion of lodged plants (>45 degrees) in a plot. 92963 0 0 70677 16 iron content in roots by ppm (mg/kg) Estimation of total iron content in cassava storage roots expressed in part per million or milligram per kilogram. 92966 0 0 70685 16 storage root periderm color Visual rating of the color of outer surface of storage root periderm (outer skin color) with 1 = white or cream, 2 = yellow, 3 = light brown, 4 = dark brown. 92974 0 0 70686 16 poundability assessment 0-4 Mealiness of boiled cassava storage root rating as 0 = Non poundable, 1 = slightly poundable, 2 = poundable, 3 = very poundable. 92975 0 0 76549 16 sprout count discrete counting A count of the number of stakes germinated, after planting. 209448 0 0 70688 16 total carotenoid retention percentage The percentage (%) of total carotene content in a prepared food product compared to the nutrient content in the raw food. 92977 0 0 70697 16 post-harvest physiological deterioration variable 0-10 Internal root discoloration or vascular streaking that renders cassava roots unfit for human or animal consumption.nA number of root samples are cut into 7 slices and each slice is scored on a 0-10 scale. 92986 0 0 70708 16 Cassava brown streak disease root incidence Proportion of plants within a plot showing root symptoms of cassava brown streak disease 92998 0 0 70715 16 rotted storage root A count of the number of rotted storage roots per plot at the time of harvest. 93005 0 0 70729 16 Cassava anthracnose disease incidence Proportion of plants within a plot showing symptoms of cassava anthracnose disease 93019 0 0 70732 16 moisture content in percentage Percentage (%) of water contained in cassava storage root. 93022 0 0 70739 16 ascorbic acid in root percentage Antioxidant and water soluble vitamin of cassava storage root. 93029 0 0 70740 16 fruit exocarp texture assessment 1-7 Sensory assessment of the texture of outer most layer of the cassava fruit scored as 3 = smooth and 7 = rough. 93030 0 0 70761 16 amylopectin content ug/g in percentage Estimation of amylopectin content of cassava roots in percentage(%). 93053 0 0 70767 16 Cassava green mite severity Severity of the damage caused by cassava green mite 93059 0 0 70773 16 fresh shoot weight measurement in kg Total fresh weight of harvested foliage and stems in kilograms per plot. 93065 0 0 76653 16 Harvest index \N 209553 0 0 70774 16 Cassava brown streak disease leaf incidence Proportion of plants within a plot showing symptoms of cassava brown streak disease 93066 0 0 70659 16 leaf life span in days Measures leaf life span estimated as days. 92945 0 0 70660 16 zinc content in storage root ug/g Total zinc content in cassava storage root. 92948 0 0 70671 16 Cassava brown streak disease leaf severity Severity of the symptoms on leaf caused by cassava brown streak virus in the family of Potyviridae and genus Ipomovirus 92959 0 0 70676 16 amylose content in ug/g percentage Estimation of amylose content of cassava roots in percentage (%). 92964 0 0 70678 16 Agronomic trait A characteristic in a cassava plant that will add economic value to agricultural production. 92967 0 0 70681 16 top yield Total fresh weight of harvested foliage and stems expressed in tons per hectare (t/ha). 92970 0 0 70682 16 boiled tuberous root color visual 1-3 Colour of boiled tuberous roots with 1 = white , 2 = cream , 3 = yellow. 92971 0 0 70691 16 fresh root yield Fresh weight of harvested roots expressed in tons per hectares (t/ha) per plant. 92980 0 0 70694 16 hydrogen cyanide potential picrate method 1-9 Estimate of storage root cyanide content by picrate test with 1 = not detectable and 9 = very high. 92983 0 0 70695 16 taste of boiled root rating 1-3 Taste of boiled root rating as 1 = bland, 2 = sweet, and 3 = bitter. 92984 0 0 70707 16 Cassava anthracnose disease severity Severity of the Cassava anthracnose disease caused by Colletotrichum gloeosporioides f. sp. 92997 0 0 70709 16 sugar content in percentage Estimation of sugar content in cassava storage root expressed in percentage (%). 92999 0 0 70728 16 lafun content g/kg Percentage (%) lafun processed from fresh storage roots. 93018 0 0 70731 16 Cassava bacterial blight incidence Incidence of the cassava bacterial blight 93021 0 0 70730 16 male sterile visual rating 0&1 Cassava plants that do no produce viable pollen. 93020 0 0 70748 16 beta carotene retention percentage The percentage (%) of beta carotene content in a prepared food product compared to the nutrient content in the raw food. 93038 0 0 70749 16 stipule length visual rating 1-7 A qualitative scoring of the length of the leaflike appendage at the base of the leaf with 3= short, 5 = medium, and 7 = long. 93039 0 0 70760 16 CGIAR cassava trait ontology controlled vocabulary to describe each trait as a distinguishable, characteristic, quality or phenotypic feature of a developing or mature cassava plant. 93052 0 0 70762 16 Cassava mosaic disease severity Severity of the symptoms caused by the cassava mosaic virus, in the family Geminiviridae and genus Begomovirus 93054 0 0 70768 16 spiraling whitefly incidence by proportion Proportion of plants within a plot showing evidence of colonization by spiraling whitefly. 93060 0 0 70779 16 cassava mealy bug incidence by ratio Proportion of plants within a plot showing symptoms of cassava mealy-bug damage. 93071 0 0 76535 16 stem weight measurement in kg Fresh weight of plantable portion of the plant excluding the leaves, and stump. 209434 0 0 76536 16 cassava green mite incidence first evaluation Proportion of plants within a plot affected by cassava green mite, Mononychellus tanajoa evaluated at the peak of dry season. 209435 0 0 76537 16 gari weight after drying weight of cassava in kilogram per gram (kg/g) after drying using the frying pan. 209436 0 0 76538 16 root color Visual rating of storage root surface color with 1 = white , 2 = intermediate, and 3 = dark brown, as being evaluated by CIAT. 209437 0 0 76539 16 Ash Content Ash content 209438 0 0 76540 16 Plant Architecture Plant architecture 209439 0 0 76541 16 Number of Bemesia tabaci nymphs Number of Bemesia tabaci nymphs white flies 209440 0 0 76542 16 plant height with leaf in cm Portion of the stem with leaves measured as the distance in centimeter from the point of attachment of the oldest leaf to the youngest leaf (apical leaf portion). 209441 0 0 76543 16 Color Of Boiled Tuberous Roots Color of boiled tuberous roots 209442 0 0 76544 16 male flower number A count of the number male flowers after the buds appears, matures, and grows in size to become distinctive at the first, second, and third branch levels. 209443 0 0 76545 16 Number of stakes Number of plantable stakes 209444 0 0 76546 16 Stem weight Weight of harvested plant biomass excluding leaves 209445 0 0 76547 16 root weight in air Weight of cassava root samples usually between 4-5kg of each of the harvested plots in a trial for the purpose of determining the dry matter by specific gravity. 209446 0 0 76548 16 percentage leaf retention at 6 months after planting An estimation of the percentage stem length with retained leaf measured in percentage (%) using a representative plant stand in a plot, between 6 to 7 months after planting. 209447 0 0 76551 16 b Cryptoxanthin estimation in percentage Estimation of B-cryptoxanthin (carotenoid that has hydroxyl group with 50% activity). 209450 0 0 76552 16 Proportion of female flower Proportion of female flower 209451 0 0 76553 16 Days to first anthesis Exposing of the pistil per plot of any female flower 209452 0 0 76554 16 Number of flowering stalks Number of stalks carrying buds 209453 0 0 76555 16 ease of harvest assessment 1-3 An assessment of the difficulty in pulling the plants from the ground during harvesting with 1 = easy, 2= intermediate, 3 = difficult. 209454 0 0 76556 16 Number of fruits Number of fruits 209455 0 0 76557 16 Bemesia tabaci nymphs yellow Number of yellow bemesia tabaci nymphs on 14th leaf 209456 0 0 76558 16 sooty mould : visual 1-5 Percentage of black mould on the lower leave caused by green mite, aphid, whitefly on cassava leaves with 1 = none, 2 = mild sooty mould on <5% of leaves, 3 = mild sooty mould on 5-20% of leaves, 4 = moderate sooty mould on >20% of leaves; mild leaf curling, 5 = heavy sooty mould on 20-50% of leaves; strong leaf curling of lower leaves; stunted growth of bottom half of plant. 209457 0 0 76559 16 cassava mosaic disease incidence 9-month evaluation Proportion of plants within a plot showing symptoms of cassava mosaic disease, evaluated between seven and nine months after planting. 209458 0 0 76560 16 sprout count at nine-month A count of the number of stakes germinated, nine months after planting. 209459 0 0 76561 16 Amylose Amylopectin Ratio Amylopectin:amylose ratio 209460 0 0 76562 16 Branching Angle Angle of branching (Angle between vertical plane and first branches) 209461 0 0 76563 16 Lafun Content Lafu weight 209462 0 0 76565 16 stem rot counting per plot A count of the number of rotted stems per plot at the time of harvest. 209464 0 0 76566 16 Spiraling Whitefly Incidence Proportion of plants within a plot showing evidence of colonization by spiraling whitefly. 209465 0 0 76567 16 number of stakes counting An estimated number of plantable stakes (about 20cm long, with approximately six nodes) that can be made out of the total number of stems in a plot. 209466 0 0 76568 16 Weight of mashed cassava cake Weight of mashed cassava cake 209467 0 0 76569 16 gari starch Assessment of the starch content of gari 209468 0 0 76570 16 PetOrt_Est_1to7 \N 209469 0 0 76571 16 Root Surface Texture Storage root surface texture 209470 0 0 76572 16 Stump weight Weight of stump 209471 0 0 76573 16 cassava anthractnose disease incidence in 6-month Proportion of plants within a plot showing symptoms of cassava anthracnose disease evaluated between four and six months after planting (6MAP). 209472 0 0 76574 16 cassava brown streak disease leaf severity 9-month evaluation Visual rating of leaf symptoms caused by cassava brown streak virus between seven and nine months after planting, in the family Potyviridae and genus Ipomovirus. Symptoms rated from 1 = (clean, no infection) to 5 = (extremely severe, severely diseased). 209473 0 0 76575 16 number of planted stakes counting The total number of stakes planted per plot. 209474 0 0 76576 16 cassava green mite severity first evaluation Visual rating of damage caused by cassava green mite, Mononychellus tanajoa. Symptoms rated from 1 = (clean, no infection) to 5 = (extremely severe, severely diseased), evaluated at the early period of the peak of dry season. 209475 0 0 76577 16 Total Carotenoid Retention Total caroteneoid content after cooking 209476 0 0 76578 16 cassava bacterial blight severity 9-month evaluation Visual rating of symptoms in response to the bacterial blight disease caused by Xanthonomas axonopodis pv. Manihotis symptoms rated from 1 = (clean, no infection) to 5 = (extremely severe, severely diseased) evaluated between seven and nine months after planting. 209477 0 0 76579 16 Bemesia tabaci nymphs severity Severity of the chlorotic blotches on leaf caused by the nymphs of Bemesia tabaci 209478 0 0 76580 16 stem yield estimation Fresh weight in kilogram (kg) of above ground harvested plant biomass excluding the leaves. 209479 0 0 76581 16 Ploidy Ploidy level (n = 1,2,3,4 ) (by morphological characteristics) 209480 0 0 76582 16 Gari Content Gari content 209481 0 0 76583 16 Stem Color Stem color 209482 0 0 76584 16 Hairiness Hairiness 209483 0 0 76585 16 Female Stamenoids Presence of stamen in female cassava flowers 209484 0 0 76586 16 Fresh Shoot Weight Total fresh weight of harvested foliage and stems 209485 0 0 76587 16 plant yield Average yield per plant in a plot measured in kilogram (kg). It is estimated by dividing the total weight of roots by the number of plants harvested. 209486 0 0 76588 16 Iron Content Iron content. 209487 0 0 76589 16 Peel weight Peel weight 209488 0 0 76590 16 Bemesia tabaci nymphs severity : visual 1-5 Visual rating of chlorotic blotches infestation on leaves, caused by whitefly on a rating of 1 = none, 2 = mild chlorotic blotches on <10% of leaves, 3 = damage moderate chlorotic blotches on 10-30% of leaves, 4 = chlorosis on 30-50% of leaves, 5 = chlorosis on >50% of leaves. 209489 0 0 76591 16 Leaf weight Weight of leaf 209490 0 0 76592 16 total carotenoid by iCheck method Measurement of total carotenoid content in a given cassava storage root sample using iCheck kit or device. 209491 0 0 76593 16 Sprouting Proportion of stakes germinated 209492 0 0 76594 16 marketable root number counting Count of the number of storage root sizes visually adjudged to be big and weigh above one (1) kilogram. 209493 0 0 76595 16 percentage leaf retention at 7 months after planting An estimation of the percentage stem length with retained leaf measured in percentage (%) using a representative plant stand in a plot, between 7 to 8 months after planting. 209494 0 0 76596 16 Leaf Lobes Number Number of leaf lobes 209495 0 0 76597 16 Proportion of plant with inflorescence Proportion of plants per plot that have an inflorescence at varying growth stages. Plant with pollinated and unpollinated flowers are all counted together 209496 0 0 76598 16 staygreen visual scale 1-3 Visual rating of leaf longevity using a scale of 1 = poor (50% of the leaves are live and green); 2 = moderately good (50-74% of the leaves are live and green); 3 = very good (>75% of the leaves are live and green). 209497 0 0 76599 16 cassava anthractnose disease incidence in12-month Proportion of plants within a plot showing symptoms of cassava anthracnose disease evaluated between ten and twelve months after planting (12MAP). 209498 0 0 76602 16 Fruit Exocarp Texture Texture of the outer most layer of the cassava fruit 209501 0 0 76603 16 Root Neck Length Root neck length 209502 0 0 76604 16 branching habit Visual observation of the lowest or first branching on a scale of 1 = erect, 2 = dichotomous, 3 = trichotomous, 4 = tetrachotomous. The most frequent occurence on the plot is recorded. 209503 0 0 76605 16 cassava mosaic disease incidence 12-month evaluation Proportion of plants within a plot showing symptoms of cassava mosaic disease, evaluated between ten and twelve months after planting. 209504 0 0 76606 16 Root Number Number of harvested marketable storage roots 209505 0 0 76607 16 Young Stem Growth Habit Growth habit of young stem 209506 0 0 76609 16 Days to first inflorescence Time to reach the first inflorescence 209508 0 0 76610 16 Tip shoot weight Tip shoot weight 209509 0 0 76611 16 cassava anthractnose disease incidence in 9-month Proportion of plants within a plot showing symptoms of cassava anthracnose disease evaluated between seven and nine months after planting (9MAP). 209510 0 0 76612 16 Number of planted stakes Total number of stakes planted 209511 0 0 76613 16 Number of terminal branches with inflorescence Number of terminal branches with inflorescence 209512 0 0 76801 16 Stem height Plant height without leaf corresponding to the stem portion without leaf 209701 0 0 76614 16 percentage leaf retention at 5 months after planting An estimation of the percentage stem length with retained leaf measured in percentage (%) using a representative plant stand in a plot, between 5 to 6 months after planting. 209513 0 0 76615 16 yield per year Annual root yield estimated in tonnes per hectare (t/ha) using yield per hectare as a function of the crop duration. Trait description provided by Hernan Ceballos in CIAT 209514 0 0 76616 16 Apical Branching Time to first apical branching (associated with formation of inflorescence) 209515 0 0 76618 16 cassava brown streak disease leaf severity 3-month evaluation Visual rating of leaf symptoms caused by cassava brown streak virus evaluated between two and three months after planting, in the family Potyviridae and genus Ipomovirus. Symptoms rated from 1 = (clean, no infection) to 5 = (extremely severe, severely diseased). 209517 0 0 76619 16 cassava anthractnose disease severity in12-month Visual rating of symptoms in response to the anthracnose disease caused by Colletotrichum gloeosporioides f. sp. Symptoms rated from 1 = (clean, no infection) to 5 = (extremely severe, severely diseased), evaluated between ten and twelve months after planting (12MAP). 209518 0 0 76620 16 stalk length evaluation Visual assessment of the average length of the stalks (1=short; 2=intermediate; 3=long) 209519 0 0 76621 16 number of fruits Number of fruit observed at all levels of branching per plot. 209520 0 0 76622 16 sprout count at six-month A count of the number of stakes germinated, six months after planting. 209521 0 0 76623 16 Petiole Insertion Angle Angle between branch and petiole 209522 0 0 76624 16 assessment of apical pubescence Assessment of the young leaf pubescence . Record the most frequent occurrence scored as 0 = Absent, 1 = Present. 209523 0 0 76625 16 Sepal Color Color of sepals 209524 0 0 76626 16 Initial Vigor Initial plant vigor at one month after planting 209525 0 0 76627 16 Leaf Retention Leaf retention (stay green) 209526 0 0 76628 16 Stem cortex color Color of stem cortex 209527 0 0 76629 16 Protein Content Protein content 209528 0 0 76630 16 cassava brown streak disease leaf incidence 1-month evaluation Proportion of plants within a plot showing leaf symptoms of cassava brown streak disease, evaluated between one and six weeks after planting. 209529 0 0 76631 16 Root constrictions number Number of constrictions on the storage root 209530 0 0 76632 16 Number of fruitset Number of fruits formed after pollination 209531 0 0 76633 16 specific gravity Estimated value obtained by weighing 4-5 kilogram of cassava root in air, and in water. 209532 0 0 76634 16 cassava mosaic disease severity 3-month evaluation Visual rating of symptoms caused by cassava mosaic virus,in the family Geminiviridae and genus Begomovirus , evalutaed between two and three months after planting. Symptoms rated from 1 = (clean, no infection) to 5 = (extremely severe, severely diseased. 209533 0 0 76635 16 cassava anthractnose disease incidence in 3-month Proportion of plants within a plot showing symptoms of cassava anthracnose disease evaluated between two and three months after planting. 209534 0 0 76636 16 days to first inflorescence Visual observation (actual date in the format of dd/mm/yyyy from the date of planting) of the appearance of a developing inflorescence on a plant or plot. 209535 0 0 76637 16 Number of forks Number of branches 209536 0 0 76638 16 PollenPrsnc_Est_0or1 \N 209537 0 0 76639 16 Branching habit Branching habit 209538 0 0 76640 16 Root Yield Tuberous root yield 209539 0 0 76641 16 Leaf Lobe Position Position in which leaf lobes are held 209540 0 0 76642 16 number of flowering stalks per branch level A count of the number of stalks carrying the buds at every point of branching, where inflorescence starts. 209541 0 0 76643 16 staygreen visual scale 1-9 Visual rating of leaf longevity using a scale of 1 = Normal plant with full canopy, retaining most formed leaves which are green, turgid and photosynthetically active. 3 = 30% of the leaves have dropped , less than 50% of the remaining leaves are droppy, partially wilted and practically dry, most of the young leaves have reduced greenness or are yellowing. 5 = 50% reduction of the leaf number compared to full canopy; most of the older leaves are droppy, wilted and practically dry; most of the young leaves have reduced greeness or are yellowing. 7 = 80% reduction of the leaf number compareed to full canopy; more than 75% of the remaining old leaves are wilted or brown; young leaves have reduced greeness or are yellowing". 9 = Complete defoliation of the stem with candlestick appearance; dieback is also evident on the stem. 209542 0 0 76644 16 Marketable root weight Marketable root weight 209544 0 0 76645 16 Days to first anthesis : visual observation Visual observation of when (actual date in the format of dd/mm/yyyy from the date of planting) any female flower opens up to expose the pistil per plot. 209545 0 0 76646 16 flowering ability presence of flowers (0=none; 1=little; 2=intermediate; 3=many). 209546 0 0 76647 16 stem diameter measurement in cm Measurement of stem diameter taken on the middle of the plant in centimeter (cm) using the vernier caliper. 209547 0 0 76648 16 germination count Count of the number of emerging seedlings from each family in the pre-nursery done on a daily basis until its ready for transplanting. 209548 0 0 76649 16 Petiole Color Petiole color 209549 0 0 76650 16 Non marketable root weight Weight of non-marketable root- i.e., small sized root 209550 0 0 76651 16 Days to 50% anthesis 50% of the female flower opened to expose the pistils per plot 209551 0 0 76652 16 gari weight after grinding in kilograms The weight of grated cassava in kilogram (kg) before fermentation in jute bags . 209552 0 0 76654 16 non marketable root number counting Count of the number of storage root sizes visually adjudged to be small and less than one (1) kilogram. 209554 0 0 76655 16 shoot apices Structure/arrangement of shoot apices. 209555 0 0 76656 16 Frog Skin Disease Severity of the Frog skin disease caused by unknown causal agent 209556 0 0 76657 16 Tuberous root cyanide content Cyanide content in storage roots 209557 0 0 76800 16 Storage Root Cortex Color Color of outer surface of storage root cortex (inner skin) 209700 0 0 76658 16 cassava bacterial blight incidence 3-month evaluation Proportion of plants within a plot showing symptoms of cassava bacterial blight, evaluated between two and three months after planting. 209558 0 0 76659 16 cassava green mite incidence second evaluation Proportion of plants within a plot affected by cassava green mite, Mononychellus tanajoa evaluated at the peak of dry season. 209559 0 0 76660 16 cassava brown streak disease root severity 12-month evaluation Visual rating of root symptoms caused by cassava brown streak virus at twelve months after planting, in the family Potyviridae and genus Ipomovirus. Symptoms rated from 1 = (clean, no infection) to 5 = (extremely severe, severely diseased). 209560 0 0 76661 16 Leaf lobe width Width of middle finger or lobe of matured leaf 209561 0 0 76662 16 cassava mosaic disease incidence 1-month evaluation Proportion of plants within a plot showing symptoms of cassava mosaic disease, evaluated between one and six weeks after planting. 209562 0 0 76663 16 Seed Color Main color of seed 209563 0 0 76664 16 Bemesia tabaci nymphs yellow : counting Number of yellow Bemesia tabaci whitefly nymphs on fourteenth leaf of the same tallest shoot. 209564 0 0 76665 16 cassava mosaic disease incidence 3-month evaluation Proportion of plants within a plot showing symptoms of cassava mosaic disease, evaluated two and three months after planting. 209565 0 0 76666 16 Leaf Vein Color Color of leaf vein 209566 0 0 76667 16 cassava brown streak disease leaf incidence 9-month evaluation Proportion of plants within a plot showing leaf symptoms of cassava brown streak disease, evaluated between seven and nine months after planting. 209567 0 0 76668 16 Poundability Poundability (mealiness of boiled roots) 209568 0 0 76669 16 selected variety boolean 0&1 Selected variety (1=yes; 0=no) 209569 0 0 76670 16 stipule margin visual observation 1&2 Observe from the upper third of plant and record the most frequent occurence. No intermediates is allowed. Scored as 1 = entire, 2 = split or forked. 209570 0 0 76671 16 root weight after washing This is the weight of fresh roots cassava washed in water.It is measured in kilogram (kg) using weighing pan and suspended salter scale; usually for gari preparation. 209571 0 0 76672 16 Amylose Content Amylose content 209572 0 0 76673 16 root evaluation scaled 1-5 An evaluation of the integration of root shape, size, diameter, constriction, neck length on a scale of 1-5 with 1=very good; 5=very bad. Before scoring the roots, the field technician walks the harvested plot to get an idea of the average root type of the trial which will then be used as a score of 3. Genotypes better than average will be scored 2 and 1 in that order. Similiar genotype that are certainly worse compared to the average score are rated 4 and 5 in that order. Trait description is provided by Hernan Ceballos of CIAT. 209573 0 0 76674 16 Stock weight Fresh weight of the planted part anchoring the storage root 209574 0 0 76675 16 initial plant vigor assessment 1-5 Visual assessment of plant vigor during establishment (1=very little vigor, and 5 = very vigorous). as being evaluated by CIAT. 209575 0 0 76676 16 Gari weight after grinding Weight after grinding 209576 0 0 76677 16 Leaf Life span Leaf life span 209577 0 0 76678 16 dry matter content by specific gravity method Percentage dry matter content estimated from the specific gravity value of weighted cassava (4-5kg). 209578 0 0 76679 16 leaf scar level The height of the plant measured in centimeter (cm), from the ground level to the lowest retained leaf on the main stem. 209579 0 0 76680 16 Plant Height Height of plant at harvest from ground level to top of canopy 209580 0 0 76681 16 Storage root weight Weight of harvested storage root 209581 0 0 76682 16 leaf lobe width Measurement of the width of middle finger or lobe of a matured leaf in centimeter (cm). 209582 0 0 76683 16 Storage Root Periderm Color Color of outer surface of storage root periderm (outer skin) 209583 0 0 76684 16 Ease Of Peeling Root Cortex Ease of root cortex removal 209584 0 0 76685 16 compactness of shoot apices visual 1-3 Visual assessment of the compactness of shoot apices based on how closely the shoot apices are; with 1 = loose, 2 = moderately compact, 3 = compact. 209585 0 0 76686 16 Suitability for Intercropping Compatibility for use in intercroping. 209586 0 0 76687 16 days to 50% branching Visual observation of when (actual date in the format of dd/mm/yyyy from the date of planting) fifty percent of the plant stand per plot branches. 209587 0 0 76688 16 cis 9 isomer activity in percentage Estimation of isomer activity with 50% proVitamin A in percentage (%). 209588 0 0 76689 16 Number of rotten stem Number of rotten stem 209589 0 0 76690 16 Taste Of Boiled Roots Taste of boiled roots 209590 0 0 76691 16 Branching Levels Number of levels of branching (Actual number of levels (at harvest)) 209591 0 0 76692 16 sprout count at three-month A count of the number of stakes germinated, three months after planting. 209592 0 0 76693 16 StEpidCol_Est_1to4 \N 209593 0 0 76694 16 cassava brown streak disease leaf incidence 3-month evaluation Proportion of plants within a plot showing leaf symptoms of cassava brown streak disease, evaluated between two and three months after planting. 209594 0 0 76695 16 Rotted Storage Roots Number of rotted storage roots 209595 0 0 76696 16 Stalk length Stalk length 209596 0 0 76697 16 leaf lobe length Measurement of the length of the middle finger or lobe of a matured leaf in centimeter (cm). 209597 0 0 76698 16 Leaf lobe margin leaf lobe margin 209598 0 0 76699 16 Cassava Mealy Bug Severity Severity of the damage caused by Cassava mealy bug (Phenacoccus Manihoti) 209599 0 0 76700 16 Young Stem Pubescence Pubescence of young stem 209600 0 0 76744 16 Bemesia tabaci nymphs black : counting Number of black Bemesia tabaci whitefly nymphs on fourteenth leaf of the same tallest shoot. 209644 0 0 76701 16 cassava anthractnose disease severity in 3-month Visual rating of symptoms in response to the anthracnose disease caused by Colletotrichum gloeosporioides f. sp. Symptoms rated from 1 = (clean, no infection) to 5 = (extremely severe, severely diseased), evaluated between two and three months after planting. 209601 0 0 76702 16 max number of terminal branches with inflorescence The maximum number of terminal branches with inflorescence observed at all levels of branching in a plot. 209602 0 0 76703 16 Cassava Mealy Bug Incidence Proportion of plants within a plot showing symptoms of cassava mealy-bug damage (Phenacoccus Manihoti) 209603 0 0 76704 16 Central Leaf Shape Shape of central leaf taken from a mid-height position. 209604 0 0 76705 16 cassava anthractnose disease severity in 9-month Visual rating of symptoms in response to the anthracnose disease caused by Colletotrichum gloeosporioides f. sp. Symptoms rated from 1 = (clean, no infection) to 5 = (extremely severe, severely diseased), evaluated between seven and nine months after planting (9MAP). 209605 0 0 76706 16 Storage Root Size Storage root length 209606 0 0 76707 16 Seedling number Number of emerging seedlings 209607 0 0 76708 16 Leaf scar distance Distance between leaf scar 209608 0 0 76709 16 Root Position Position of roots 209609 0 0 76710 16 Apical Pubescence Pubescence of young leaves 209610 0 0 76711 16 Leaf scar height Height from ground to leaf scar 209611 0 0 76712 16 Sooty Mould Balck mould 209612 0 0 76713 16 Anther Color Color of anthers 209613 0 0 76714 16 StCtxCol_Est_1to3 \N 209614 0 0 76756 16 gari shaft weight in kg Weight of residue in kilogram (kg) after sieving the roasted gari. 209656 0 0 76715 16 cassava brown streak disease leaf severity 6-month evaluation Visual rating of leaf symptoms caused by cassava brown streak virus between four and months after planting, in the family Potyviridae and genus Ipomovirus. Symptoms rated from 1 = (clean, no infection) to 5 = (extremely severe, severely diseased). 209615 0 0 76716 16 PetLng_Av_cm \N 209616 0 0 76717 16 storage root neck length Visual rating of root neck length with 1 = short, 2 = intermediate, 3 = long, as being evaluated by CIAT. 209617 0 0 76718 16 gari taste : culinary assessment 1-3 Taste of gari. 1 = normal, 2 = sweet, and 3 = sour 209618 0 0 76719 16 Male flower number Number of male flowers after the buds appear 209619 0 0 76720 16 post-harvest physiological deterioration Internal root discoloration or vascular streaking that renders cassava roots unfit for human or animal consumption. 209620 0 0 76721 16 Ease of Harvest Ease of plant harvest 209621 0 0 76722 16 Bemesia tabaci nymphs black Number of black bemesia tabaci nymphs on 14th leaf 209622 0 0 76723 16 stump weight measurement in kg Fresh weight (measured in kilogram) of plant parts at the soil level from the neck of the root to the beginning of the plantable stems. 209623 0 0 76724 16 Stem epidermis color Color of stem epidermis 209624 0 0 76725 16 plant height without leaf Portion of stem with no leaf measured in centimeter (cm) by deducting plant height with leaf from plant height. 209625 0 0 76726 16 gari fibre gari fibre 209626 0 0 76727 16 Branch height Branch height 209627 0 0 76728 16 hairiness The level of pubescence on the growing part. It is a proportion of tissue covered by hair on the tip leaves. 1 = Glaborous (No hair) 2 = scatter hair on the edges of tip leaves and bracts, 3 = moderate hair on the edges of tip leaves and bract, 4 = about 50% - 70% hair cover the tip leaves, 5 = 75% - 100% of hair cover the tip leaves. 209628 0 0 76729 16 Marketable root number Number of big or more than 1kg root size 209629 0 0 76730 16 Non marketable root number Number of small or less than 1kg root size 209630 0 0 76731 16 cassava mosaic disease severity 9-month evaluation Visual rating of symptoms caused by cassava mosaic virus,in the family Geminiviridae and genus Begomovirus , evaluated between seven and nine months after planting. Symptoms rated from 1 = (clean, no infection) to 5 = (extremely severe, severely diseased. 209631 0 0 76732 16 cassava mosaic disease severity 12-month evaluation Visual rating of symptoms caused by cassava mosaic virus,in the family Geminiviridae and genus Begomovirus , evalutaed between ten and twelve months after planting. Symptoms rated from 1 = (clean, no infection) to 5 = (extremely severe, severely diseased. 209632 0 0 76733 16 Red Spider Mite Incidence Proportion of plants within a plot showing evidence of colonization by red spider mite. 209633 0 0 76734 16 Fibre Content Fibre content 209634 0 0 76735 16 female flower evaluation Visual rating of the count of the number of female flowers present at all branching levels on a plant stand on per plot basis; with 0 = absence of flower, 1 = low number of female flowers [below 5], 2 = [Medium] 5 to 15 female flowers present, 3 = [High] above 15 female flowers present). 209635 0 0 76736 16 Sprout count Number of germinated stakes 209636 0 0 76737 16 sprout count at twelve-month A count of the number of stakes germinated, twelve months after planting. 209637 0 0 76738 16 non marketable root weight measurement in kg Weight of small sized roots that do not attract any market value, measured in kilogram (kg). 209638 0 0 76739 16 gari swelling capacity by visual rating 1-3 Visual assessment of the increment in quantity when water is added to the gari. 1 = Less than its original volume, 2 = twice the original volume and 3 =thrice the original volume 209639 0 0 76740 16 cassava mosaic disease severity 1-month evaluation Visual rating of symptoms caused by cassava mosaic virus,in the family Geminiviridae and genus Begomovirus , evalutaed between one to six weeks after planting. Symptoms rated from 1 = (clean, no infection) to 5 = (extremely severe, severely diseased. 209640 0 0 76741 16 Gari swelling capacity Swelling capacity of gari sample 209641 0 0 76742 16 Storage Root Constrictions Presence of constrictions on the storage root 209642 0 0 76743 16 cassava bacterial blight incidence 6-month evaluation Proportion of plants within a plot showing symptoms of cassava bacterial blight, evaluated between four and six months after planting. 209643 0 0 76798 16 Leaf scar number Number of leaf scars 209698 0 0 76745 16 days to 50% anthesis Visual observation of when (actual date in the format of dd/mm/yyyy from the date of planting) fifty percent of the female flower opens up to expose the pistil per plot. 209645 0 0 76746 16 number of forks Number of branches at every branching level. 209646 0 0 76747 16 cassava bacterial blight severity 12-month evaluation Visual rating of symptoms in response to the bacterial blight disease caused by Xanthonomas axonopodis pv. Manihotis symptoms rated from 1 = (clean, no infection) to 5 = (extremely severe, severely diseased) evaluated bewteen ten and twelve months after planting. 209647 0 0 76748 16 cassava brown streak disease root incidence 12-month evaluation Proportion of plants within a plot showing root symptoms of cassava brown streak disease at twelve months after planting. 209648 0 0 76749 16 B crypto activity b-cryptoxanthin (carotenoid that has hydroxyl group with 50% activity) content 209649 0 0 76750 16 leaf scar number A count of the number of leaf scars on the main stem, where a leaf scar is a node without a leaf. 209650 0 0 76751 16 Fufu Content Fufu weight 209651 0 0 76752 16 trans 9 beta carotene activity in percentage Estimation of beta carotenoid components with 100% proVitamin A activity. 209652 0 0 76753 16 size of shoot apices assessment 1-3 Visual assessment of shoot apices based on how large or small the shoot apices are and categorised on a scale of 1-3 where 1 = small 2= medium and 3 = large. 209653 0 0 76754 16 Leaf Scar Prominence Prominence of fresh leaf scars 209654 0 0 76755 16 marketable root weight measurement in kg Weight of harvested cassava roots in kilogram (kg), visually classified as large sized and medium sized roots excluding the small sized roots. 209655 0 0 76757 16 Stigma Color Color of stigma 209657 0 0 76758 16 Beta Carotenoid Retention Beta carotene content after cooking 209658 0 0 76759 16 Trans-9 activity Activity of trans 9 beta carotene 209659 0 0 76760 16 average stem length Total stem length per plot or per number of plant stands, measure in centimeter (cm). 209660 0 0 76761 16 root weight after peel This is weight of the peeled washed cassava roots in kilogram (kg) using salter scale and weighing pan. 209661 0 0 76762 16 Root Dry Matter Content Dry matter content of storage roots 209662 0 0 76763 16 Days to 50% branching Time to reach 50% of the plants at the branching stage 209663 0 0 76764 16 Plant shape Shape of plant 209664 0 0 76765 16 Gari weight after drying Weight after drying cassava flakes 209665 0 0 76766 16 Abscisic Acid Content Abscisic acid content of leaf sample 209666 0 0 76767 16 Plant Stands Harvested Number of plant stands harvested 209667 0 0 76768 16 Petiole length petiole length 209668 0 0 76769 16 Ascorbic Acid Ascorbic acid content 209669 0 0 76770 16 Flowering Abundance of flower 209670 0 0 76771 16 Plantable stem length Plantable stem length 209671 0 0 76772 16 Beta carotene beta-carotene (ug/g fresh wt) 209672 0 0 76773 16 cassava bacterial blight severity 3-month evaluation Visual rating of symptoms in response to the bacterial blight disease caused by Xanthonomas axonopodis pv. Manihotis symptoms rated from 1 = (clean, no infection) to 5 = (extremely severe, severely diseased) evaluated between two and three months after planting. 209673 0 0 76774 16 Presence of pollen Presence of pollen 209674 0 0 76775 16 root flesh color Visual rating of root pulp color with 1 = white, 2 = cream, 3 = yellow, as being evaluated by CIAT. 209675 0 0 76776 16 number of fruitset A count of the number of fruits formed from the seeds after pollination. 209676 0 0 76777 16 gari sample weight g/kg Sample of gari measured in kilogram per gram (kg/g) before and after frying usually for experimental purposes 209677 0 0 76778 16 Zinc Content Zinc content 209678 0 0 76779 16 rotten root percentage Number of rotten storage root relative to the storage root harvested in a plot estimated in percentage (%). 209679 0 0 76780 16 stem number counting A count of the number of stems per plot. 209680 0 0 76781 16 Cis 9 activity Cis 9 isomer activity 209681 0 0 76782 16 LfScrDist_Est_1to7 \N 209682 0 0 76783 16 branching Visual rating of branch height on a scale of 0 = no branching, 1 = low branching (<0.5m), 2 = medium branching (>0.5m <= 1m), 3 = high branching (>= 1). 209683 0 0 76784 16 Root evaluation Evaluation of various root properties 209684 0 0 76785 16 cassava anthractnose disease severity in 6-month Visual rating of symptoms in response to the anthracnose disease caused by Colletotrichum gloeosporioides f. sp. Symptoms rated from 1 = (clean, no infection) to 5 = (extremely severe, severely diseased), evaluated between four and six months after planting (6MAP). 209685 0 0 76786 16 peel weight measurement in kg The weight of the peels (outer and inner skin) removed from the fresh root cassava; using salter scale. It is measured in Kilogram (kg). 209686 0 0 76787 16 Storage Root Peduncle Storage Root Peduncle 209687 0 0 76788 16 Typhlodromalus aripo Presence of Typhlodromalus aripo 209688 0 0 76789 16 Number of Bemesia tabaci adult Number of Bemesia tabaci adult white flies 209689 0 0 76790 16 Stipules Length Length of stipules 209690 0 0 76791 16 Red Spider Mite Severity Red spider mite severity 209691 0 0 76792 16 root length evaluation scaled 1-3 Visual assessment of the root length on a scale of 1, 2, 3 (1=short; 2= intermediate; 3=long) 209692 0 0 76793 16 Leaf lobe length Length of middle finger or lobe of matured leaf 209693 0 0 76794 16 Gari shaft weight Shaft weight 209694 0 0 76795 16 Leaf color Leaf color 209695 0 0 76796 16 leaf weight measurement in kg Weight of fresh foliage leaf (the above ground biomass excluding the stem), measured in kilogram 209696 0 0 76797 16 Starch Content Starch content 209697 0 0 76845 16 Stipule margin Observation of stipule's margin 209745 0 0 76846 16 Selected variety Selected variety 209746 0 0 76930 54 Gustation :Taste Of Boiled Roots_method Rating of the taste of boiled root 209830 0 0 76799 16 gari fibre by sensory assessment 0-3 Sensory assessment of the fibre content. This is done locally by sieving the fried gari, milled locally, and prepared as eba (A popular food in Nigeria). 0 = none, 1 = moderately fibrous, 2 = fibrous, 3 = highly fibrous. 209699 0 0 77460 61 cd One candela. 212621 0 0 76802 16 cassava bacterial blight incidence 12-month evaluation Proportion of plants within a plot showing symptoms of cassava bacterial blight, evaluated between ten and twelve months after planting. 209702 0 0 76803 16 gari taste Taste of gari 209703 0 0 76804 16 cassava mosaic disease severity 6-month evaluation Visual rating of symptoms caused by cassava mosaic virus,in the family Geminiviridae and genus Begomovirus , evalutaed between four and six months after planting. Symptoms rated from 1 = (clean, no infection) to 5 = (extremely severe, severely diseased. 209704 0 0 76805 16 Petiole orientation petiole orientation 209705 0 0 76806 16 Rotten root proportion Proportion of rotten root 209706 0 0 76807 16 Disc Color Color of disc 209707 0 0 76808 16 total carotenoid by chart 1-8 Assessment of the level of yellowness in cassava storage root pulp using the tc chart on a scale of : 1 = white, 2 = light cream, 3 = cream, 4 = light yellow, 5 = yellow, 6 = deep yellow, 7 = orange, 8 = pink. 209708 0 0 76809 16 Number of seeds sown Number of seeds sown per family 209709 0 0 76810 16 cassava brown streak disease leaf incidence 6-month evaluation Proportion of plants within a plot showing leaf symptoms of cassava brown streak disease, evaluated between four and six months after planting. 209710 0 0 76811 16 Anthocyanin Pigmentation Distribution of anthocyanin pigmentation 209711 0 0 76812 16 cassava mosaic disease incidence 6-month evaluation Proportion of plants within a plot showing symptoms of cassava mosaic disease, evaluated between four and six months after planting. 209712 0 0 76813 16 Fruit set presence Fruit set 209713 0 0 76814 16 Ovary Color Color of ovary 209714 0 0 76815 16 leaf retention at harvest An estimation of the percentage stem length with retained leaf measured in percentage (%) using a representative plant stand in a plot, at harvest. 209715 0 0 76816 16 number of seed sown counting Count of the number of seeds sown per family in the pre-nursery or directly in the nursery bed. 209716 0 0 76817 16 Male Sterile Cassava plants that do no produce viable pollen. 209717 0 0 76818 16 Stem number Number of stem 209718 0 0 76819 16 percentage leaf retention An estimation of the percentage stem length with retained leaf measured in percentage (%) using a representative plant stand in a plot. 209719 0 0 76820 16 plantable stem assessment Portion of stems (matured and disease free) from few centimeter (cm) above the stump comprising the hardwood, semi hardwood upper shoot portion but excluding the immature greenish shoot portion. 209720 0 0 76821 16 gari sampled weight gari sampled weight 209721 0 0 76822 16 Female flower number Number of female flowers after the buds appear 209722 0 0 76823 16 Storage Root Diameter Storage root diameter 209723 0 0 76824 16 Root length Root length 209724 0 0 76825 16 sprout count at one-month A count of the number of stakes germinated, one month after planting. 209725 0 0 76826 16 flowering incidence Proportion of the number of female flowers in a plot to the number of plant stand in the plot. 209726 0 0 76827 16 root weight in water Weight obtained by suspending same root sample initially weighed in air, in water for the purpose of determining the sample dry matter by specific gravity method. 209727 0 0 76828 16 weight of mashed cassava cake in kg Weight of cassava cake after pressing and dehydrating using hydraulic press. Measured in kilogram (kg) 209728 0 0 76829 16 Proportion of Lodged Plants Proportion of lodged plants (>45deg) 209729 0 0 76830 16 Typhlodromalus aripo : visual 1/0 Visual observation of the presence of T. aripo with 1 = present, 0 = absence. 209730 0 0 76831 16 tip shoot weight measurement in kg Weight of the tip shoot portion of the stem measured in kilogram (kg). 209731 0 0 76832 16 Cassava green mite incidence Proportion of plants affected by cassava green mite 209732 0 0 76833 16 Sugar Content Sugar content 209733 0 0 76834 16 stock weight measurement in kg Measurement of fresh weight of the planted part anchoring the storage roots, and measured in kilogram (kg) 209734 0 0 76835 16 plant number with inflorescence Proportion of plants per plot that have an inflorescence at varying growth stages. Plant with pollinated and unpollinated flowers are all counted together. 209735 0 0 76836 16 Root Surface Color Storage root surface color 209736 0 0 76837 16 Storage Root Shape Storage root shape 209737 0 0 76838 16 cassava bacterial blight severity 6-month evaluation Visual rating of symptoms in response to the bacterial blight disease caused by Xanthonomas axonopodis pv. Manihotis symptoms rated from 1 = (clean, no infection) to 5 = (extremely severe, severely diseased) evaluated four and six months after planting. 209738 0 0 76839 16 Spiraling Whitefly Severity Spiraling whitefly severity 209739 0 0 76840 16 Carotenoid content Cassava storage root pulp carotenoid content 209740 0 0 76841 16 cassava brown streak disease leaf severity 1-month evaluation Visual rating of leaf symptoms caused by cassava brown streak virus evaluated between one and six weeks after planting, in the family Potyviridae and genus Ipomovirus. Symptoms rated from 1 = (clean, no infection) to 5 = (extremely severe, severely diseased). 209741 0 0 76842 16 female flower number A count of the number female flowers after the buds appears, matures, and grows in size to become distinctive at the first, second, and third branch levels. 209742 0 0 76843 16 Amylopectin Content Amylopectin content 209743 0 0 76844 16 cassava bacterial blight incidence 9-month evaluation Proportion of plants within a plot showing symptoms of cassava bacterial blight, evaluated between seven and nine months after planting. 209744 0 0 76847 16 cassava green mite severity second evaluation Visual rating of damage caused by cassava green mite, Mononychellus tanajoa. Symptoms rated from 1 = (clean, no infection) to 5 = (extremely severe, severely diseased), evaluated late into the peak of dry season. 209747 0 0 76887 54 Counting:Spiraling Whitefly Incidence_method A ratio of infected plants with spiraling whitefly to total plant stands. 209787 0 0 77126 45 populations \N 210029 0 0 77127 45 numbers \N 210030 0 0 76970 54 Visual Rating :Anthocyanin Pigmentation_method Visual rating of distribution of anthocyanin pigmentation 209870 0 0 76848 16 gari starch percentage Percentage of starch compostion of gari. This is done locally by using hydraulic jerk to press the gari while it is fresh after grating. 209748 0 0 76849 16 VARIABLE_OF \N 209749 0 1 76850 54 Counting:cassava bacterial blight incidence 6-month evalution_method A ratio of infected plants with cassava bacterial blight to total plant stands scored at four to six months after planting 209750 0 0 76851 54 Estimation :Zinc Content_method Measured total zinc content in cassava storage roots. 209751 0 0 76852 54 Measurement :Fresh Shoot Weight_method Weigh foliage and stems per plot at harvest 209752 0 0 76853 54 Visual Rating:Storage Root Periderm Color_method Visual rating of root periderm colour 209753 0 0 76854 54 Measurement :leaf weight_method Measure weight of fresh foliage leaf with above ground biomass excuding the stem 209754 0 0 76855 54 Estimation :Abscisic Acid Content_method Abscisic acid content of leaf sample. 209755 0 0 76856 54 Visual Observation:cassava mosaic disease severity 1-month evaluation_method Symptoms of infection by cassava mosaic virus is scored between one to six weeks after planting. Symptoms rated from 1=(clean,no infection) to 5=(extremely severe, severely diseased) 209756 0 0 76857 54 Estimation :Protein Content_method Measured Percentage of protein content in cassava storage roots. 209757 0 0 76858 54 Visual Rating :Fruit Exocarp Texture_method Visual rating of texture of the outer most layer of the cassava fruit 209758 0 0 76859 54 Visual Observation:cassava brown streak disease root severity 12-month evaluation_method Visual rating of root symptoms caused by cassava brown streak virus at twelve months after planting, in the family of Potyviridae and genus Ipomovirus. Symptoms rated from 1=(clean,no infection) to 5=(extremely severe, severely diseased) 209759 0 0 76860 54 Estimation :Total Carotenoid Content_method Total extracted carotenoids in cassava storage root as estimated by spectrophotometer 209760 0 0 76861 54 Estimation :plant yield_method Average yield per plant in a plot. It is estimated by dividing the total weight of roots by the number of plants harvested. 209761 0 0 76862 54 Visual Rating:Staygreen_method Visual rating of leaf retention or longevity 209762 0 0 76863 54 Visual Rating:Root Neck Length_method Visual rating of the root neck length 209763 0 0 76864 54 Counting:number of stakes_method An estimated number of plantable stakes (about 20cm long, with approximately six nodes) that can be made out of the total number of stems in a plot 209764 0 0 76865 54 Visual Observation:cassava mosaic disease severity 6-month evaluation_method Symptoms of infection by cassava mosaic virus is scored between four and six months after planting. Symptoms rated from 1=(clean,no infection) to 5=(extremely severe, severely diseased) 209765 0 0 76866 54 Visual Observation:cassava green mite severity first evaluation_method Visual rating of damage caused by cassava green mite,Mononychellus tanajoa. Symptoms rated from 1=(clean,no infection) to 5=(extremely severe, severely diseased), evaluated at the early period of the peak of dry season 209766 0 0 76867 54 Visual Rating :Petiole Color_method Visual rating of petiole color 209767 0 0 76868 54 Visual Observation:cassava anthractnose disease severity in 12-months_method Cassava anthracnose stem lesion severity is scored at different times after planting to coincide with typically high symptom expression. Symptoms are rated on a scale from 1 (= no symptoms) to 5 (= extremely severe stem lesions and dieback of stem) 209768 0 0 76869 54 Measurement :petiole length_method Observe from the middle third of the plant. Measure two leaves per plant. Expressed in centimeter (cm) 209769 0 0 76870 54 Measurement :stump weight_method Measured fresh weight of plant parts at soil level from the neck of the root to the beginning of the plantable stem 209770 0 0 76871 54 Counting:cassava anthractnose disease incidence in 12-months_method A ratio of the number of plants showing sysmptoms of cassava anthracnose disease to total plant stands at ten to twelve months after planting 209771 0 0 76872 54 Measurement:Stem diameter_method \N 209772 0 0 76873 54 Visual Rating :Disc Color_method Visual rating of floral disc color 209773 0 0 76874 54 Counting:sprout count at one-month_method Count of the number of stakes germinated, one month after planting 209774 0 0 76875 54 Visual Scoring :Branching Angle_method Visual rating of the angle between a vertical plane and first primary branch. 0 = no branching, 3 = 15-30 degree, 5 = 45-60 degree, 7 = 75-90 degree 209775 0 0 76876 54 Estimation :Beta Carotenoid Retention_method Measured percentage of beta carotene content in a prepared food product compared to the nutrient content in the raw food. 209776 0 0 76877 54 Visual Observation:cassava brown streak disease leaf severity 9-month evaluation_method Severity on leaf symptoms caused by cassava brown streak virus, in the family Potyviridae and genus Ipomovirus and rated on a scale from 1 (= no symptom) to 5 (= extremely severe) 209777 0 0 76878 54 Visual Rating :Petiole Insertion Angle_method Trait monitored by observing the angle between branch and petiole 209778 0 0 76879 54 Counting:number of fruitset_method Count of number of fruits formed from the seeds after pollination 209779 0 0 76880 54 Counting:stem number_method Count of the number of stems per plot 209780 0 0 76881 54 Counting:cassava green mite incidence second evaluation_method A ratio of the number of plants showing cassava green might symtoms to total plant stands at the peak of the dry season 209781 0 0 76882 54 Measurement :leaf lobe length_method Measured length of the middle finger or lobe of matured leaf 209782 0 0 76883 54 Measurement :plantable stem_method Measured stem portion above the stump comprising the hardwood,semi hardwood upper shoot portion but excluding the immature greenish shoot portion 209783 0 0 76884 54 Visual Rating:Leaf Vein Color_method Trait monitored by observing the color of leaf vein 209784 0 0 76885 54 Visual Observation:plant shape_method Visual assessment of the shape of plant. Record the most observed shape on the plot. 209785 0 0 76886 54 Visual Observation:cassava bacterial blight severity 12-month evaluation_method The trait is scored at ten to twelve months after planting as severity of cassava bacterial blight symptoms caused by Xanthomonas axonopodis pv. Manihotis and rated on a scale from 1 (= no symptom) to 5 (= extremely severe) 209786 0 0 77128 38 folder_for_trials \N 210031 0 0 77129 38 folder_for_crosses \N 210032 0 0 76888 54 Visual Observation :days to first anthesis_method Duration from planting to first anthesis derived as the date of observation of the first female flower to expose pistil is visually observed minus the date of planting 209788 0 0 76889 54 Estimation :Total Carotenoid Retention_method Measured percentage of total carotene content in a prepared food product compared to the nutrient content in the raw food. 209789 0 0 76890 54 Visual Observation:cassava anthractnose disease severity in 3-months_method Cassava anthracnose stem lesion severity is scored at different times after planting to coincide with typically high symptom expression. Symptoms are rated on a scale from 1 (= no symptoms) to 5 (= extremely severe stem lesions and dieback of stem) 209790 0 0 76891 54 Estimation :Amylose Content_method Measured amylose content of cassava roots. 209791 0 0 76892 54 Measurement :non marketable root weight_method Measured weight of harvested cassava roots (small sized roots) 209792 0 0 76893 54 Counting:cassava brown streak disease leaf incidence 9-month evaluation_method Ratio of the number of plants showing leaf symptoms from cassava brown streak disease out of the total plant stands 209793 0 0 76564 16 LfPub_VisClsn_0or1 (obsolete CO:0000275) \N 209463 1 0 76894 54 Counting:Rotted Storage Roots _method Count the number of rotted storage roots per plot at the time of harvest. 209794 0 0 76895 54 Visual Observation:cassava bacterial blight severity 6-month evalution_method The trait is scored at four to six months after planting as severity of cassava bacterial blight symptoms caused by Xanthomonas axonopodis pv. Manihotis and rated on a scale from 1 (= no symptom) to 5 (= extremely severe) 209795 0 0 76896 54 Visual Rating :Young Stem Pubescence_method Visual rating of young stem pubescence 209796 0 0 76897 54 Counting:number of fruits _method Count of the number of fruits observed at all levels of branching per plot 209797 0 0 76898 54 Measurement :weight of mashed cassava cake_method Weigh the cassava cake after pressing and dehydrating using hydraulic press 209798 0 0 76899 54 Counting:cassava brown streak disease leaf incidence 6-month evaluation_method Ratio of the number of plants showing leaf symptoms from cassava brown streak disease out of the total plant stands 209799 0 0 76900 54 Visual Observation:cassava mosaic disease severity 9-month evaluation_method Symptoms of infection by cassava mosaic virus is scored between seven and nine months after planting. Symptoms rated from 1=(clean,no infection) to 5=(extremely severe, severely diseased) 209800 0 0 76901 54 Visual Observation :days to 50% branching_method Visual observation at 50% of the plant stand per plot branches(dd/mm/yyyy) 209801 0 0 76902 54 Measurement:Stem weight_method Measured stem weight excluding leaves and stump. 209802 0 0 76903 54 Visual Observation:cassava brown streak disease leaf severity 3-month evaluation_method Severity on leaf symptoms caused by cassava brown streak virus, in the family Potyviridae and genus Ipomovirus and rated on a scale from 1 (= no symptom) to 5 (= extremely severe) 209803 0 0 76904 54 Counting:number of planted stakes_method Count of the number of stakes planted per plot 209804 0 0 76905 54 Visual Observation:presence of pollen_method Visual rating of the presence of pollen at the same time of flowering 209805 0 0 76906 54 Counting:number of terminal branches with inflorescence_method The maximum number of terminal branches with inflorescence observed at all levels of branching in a plot 209806 0 0 76907 54 Estimation :total carotenoid by icheck method_method Measurement of total carotenoid content in a giving cassava storage root sample using icheck kits or device 209807 0 0 76908 54 Visual Observation:bemesia tabaci nymphs severity_method Visual rating of chlorotic blotches infestation on leaves caused by white fly 209808 0 0 76909 54 Measurement :stock weight_method Measurement of the fresh weight of the planted part anchoring the storage root(kg) 209809 0 0 76910 54 Estimation :Ascorbic Acid_method Antioxidant and water soluble vitamin of cassava storage root. 209810 0 0 76911 54 Counting:cassava green mite incidence first evaluation_method A ratio of the number of plants showing cassava green might symtoms to total plant stands at the peak of the dry season 209811 0 0 76912 54 Measurement :gari shaft weight_method Weighing of the residues after sieving the roasted gari 209812 0 0 76913 54 Counting:Sprouting_method The number of germinated stakes divided by the total number of planted stakes scored one month after planting 209813 0 0 76914 54 Visual Rating:Leaf Retention_method Visual scoring of leaf retention or longevity 209814 0 0 76915 54 Visual Rating :Leaf Scar Prominence_method Visual rating of prominence leaf scars 209815 0 0 76916 54 Counting:Bemesia tabaci nymphs_method Counting of the number of Bemesia tabaci nymphs white flies on the 14th leaf. 209816 0 0 76917 54 Counting:stem yield_method Measurement of the fresh weight of harvested plant biomass excluding leaves 209817 0 0 76918 54 measurement: plant height with leaf_method \N 209818 0 0 76919 54 Estimation :Amylopectin Content_method Measured amylopectin content of cassava roots. 209819 0 0 76920 54 Visual Rating:stalk average length evaluation_method Visual assessment of the average length of the stalks 209820 0 0 76921 54 Visual Rating:branching_method Visual scoring of the height of the branches 209821 0 0 76922 54 Visual Rating:Fruit Set _method Visual rating of presence of fruit set 209822 0 0 76923 54 Visual Rating :Suitability for Intercropping_method Qualitative rating of compatibility for use in intercroping 209823 0 0 76924 54 Counting:sprout count at nine-month_method Count of the number of stakes germinated, nine months after planting 209824 0 0 76925 54 Measurement :root weight after peel_method This is the weight of peeled cassava roots using a pan suspended to a weighing scale 209825 0 0 76926 54 Visual Scoring :stem epidermis color_method Visual scoring of stem color. Peel epidermis back and look at underside of epidermis(skin). 209826 0 0 76927 54 Counting:number of seeds sown_method Count of the number of seeds sown per family in the pre-nursery or directly in the nursery bed 209827 0 0 76928 54 Visual Rating :Stigma Color_method Visual rating of sigma color 209828 0 0 77461 61 N One Newton. 212622 0 0 76929 54 Visual Observation:cassava anthractnose disease severity in 9-months_method Cassava anthracnose stem lesion severity is scored at different times after planting to coincide with typically high symptom expression. Symptoms are rated on a scale from 1 (= no symptoms) to 5 (= extremely severe stem lesions and dieback of stem) 209829 0 0 76931 54 Counting:male flower number_method Count of the number of male flowers after the buds appear,mature, and grow in size to become distinctive at first,second and third branch levels 209831 0 0 76932 54 Visual Rating :Petiole Length_method Visual rating of the petiole length 209832 0 0 76933 54 Estimation :cis 9_method Estimation of isomer activity with 50% proVitamin A 209833 0 0 76934 54 Visual Rating :Female Stamenoids_method Visual rating of female flowers without rudimentory stamen 209834 0 0 76935 54 Visual Rating:initial plant vigor_method Visual assessment of plant vigor during establishment as evaluated by CIAT 209835 0 0 76936 54 Measurement :leaf scar level_method Measured height from ground level to the lowest retained leaf on the main stem 209836 0 0 76617 16 LfRet_VisSc_1to9 (obsolete CO:0000273) \N 209516 1 0 76937 54 Visual Rating:root flesh color_method Visual rating of root pulp color as evaluated by CIAT 209837 0 0 76938 54 Counting:Branching Levels_method Count of the actual number of levels of branching at harvest. 209838 0 0 76939 54 Measurement :root weight in water_method As part of the dry matter determination method by specific gravimetry, suspend in water the root sample initially weighed in air and then weigh. 209839 0 0 76940 54 Sensory Assesment :gari fibre_method Sensory assessment of the fibre content after the fried gary is locally sieved and milled and then prepared as eba (a popular dish in Nigeria). 209840 0 0 76941 54 Visual Rating :Caruncle Color_method Visual rating of the caruncle color 209841 0 0 76942 54 Visual Rating:Leaf Lobes Number_method Most common number of leaf lobes assessed on five leaves from the middle of the plant at six months after planting. 209842 0 0 76943 54 Counting:cassava bacterial blight incidence 12-month evaluation_method A ratio of infected plants with cassava bacterial blight to total plant stands scored at ten to twelve months after planting 209843 0 0 76944 54 Counting:female flower number_method Count of the number of female flowers after the buds appear,mature, and grow in size to become distinctive at first,second and third branch levels 209844 0 0 76945 54 Visual Rating:Storage Root Pulp Color _method Visual rating of root pulp colour immediately after roots are cut 209845 0 0 76946 54 Visual Rating :Ploidy_method Visual rating of the ploidy level 209846 0 0 76947 54 Counting:cassava brown streak disease leaf incidence 3-month evaluation_method Ratio of the number of plants showing leaf symptoms from cassava brown streak disease out of the total plant stands 209847 0 0 76948 54 Visual Rating :Sepal Color_method Visual rating of sepal color 209848 0 0 76949 54 Visual Observation:assessment of presence of leaf pubescence_method Assessment of the young leaf pubescence . Record whether apical leaves most frequently have or do not have hairs. 209849 0 0 76950 54 Visual Rating:Initial Vigor_method Trait monitored by observing plant vigor one month after planting 209850 0 0 76951 54 Estimation :percentage leaf retention at 6 months after planting_method An estimation of the percentage stem length with retained leaf measured in percentage (%) using a representative plant stand in a plot, between 6 to 7 months after planting 209851 0 0 76952 54 Counting:cassava brown streak disease root incidence 12-month evaluation_method A ratio of the number of plants showing root symptoms from cassava brown streak disease as a proportion of total plant stands 209852 0 0 76953 54 Selection:selected variety_method Report whether the variety has been selected or not 209853 0 0 76954 54 Visual Observation:Cassava Mealy Bug Severity_method Severity of cassava mealy bug symptoms caused by mealybug, Phenacoccus Manihoti 209854 0 0 76955 54 Visual Rating:total carotenoid by chart_method Assessment of the level of yellowness in cassava storage root pulp using the tc chart 209855 0 0 76956 54 Counting:cassava bacterial blight incidence 9-month evalution_method A ratio of infected plants with cassava bacterial blight to total plant stands scored at seven to nine months after planting 209856 0 0 76957 54 Measurement :gari weight after drying_method Weight of cassava after drying using the frying pan 209857 0 0 76958 54 Measurement :Plant Height_method Measured as height from ground level to the top of canopy at harvest 209858 0 0 76959 54 Estimation :percentage leaf retention at 5 months after planting_method An estimation of the percentage stem length with retained leaf measured in percentage (%) using a representative plant stand in a plot, between 5 to 6 months after planting 209859 0 0 76960 54 Visual Rating :Central Leaf Shape_method Trait monitored by observing the leaf shape from a middle-height position. 209860 0 0 76961 54 Counting:Root Number_method Count the number of storage root per plot harvest 209861 0 0 76962 54 Visual Rating:Storage Root Size_method Visual scoring of root length 209862 0 0 76963 54 Visual Rating :Anther Color_method Visual rating of anthers color 209863 0 0 76964 54 Sensory Assesment :Ease of Harvest_method Rating of the difficulty in pulling the plants from the ground during harvesting 209864 0 0 76965 54 Counting:flowering incidence_method Proportion of the number of female flowers in a plot to the number of plant stand in the plot 209865 0 0 76966 54 Visual Observation:typhlodromalus aripo_method Visual observation of the presence of t.aripo 209866 0 0 76967 54 Counting:bemesia tabaci nymphs black_method Count of the number of number of black bemesia tabaci nymphs on 14th leaf on the same tallest shoot 209867 0 0 76968 54 Counting:cassava mosaic disease incidence 6-month evaluation_method The ratio of plants showing symptoms of cassava mosaic disease as a proportion of the total plant stands scored at four to six months after planting 209868 0 0 76969 54 Measurement :gari weight after grinding_method Weighing of the grated cassava before fermentation in jute bags 209869 0 0 76971 54 Visual Rating:Storage Root Peduncle_method Visual rating of root peduncle length of the plant 209871 0 0 76972 54 Visual Rating:First Fully Expanded Leaf Color_method Trait monitored by observing the color of first fully expanded leaves 209872 0 0 76973 54 Visual Rating:leaf scar distance_method Scoring of the distance between leaf scars. Measured from the middle of stem on the middle third of the plant, where the scars are not flat. Make a measurement along the stem then divide the distance by the number of nodes in the measured part. Avoid taking measurement on mealy bug infected plants. 209873 0 0 76974 54 Visual Rating :Storage Root Diameter_method Visual rating of root diameter 209874 0 0 76975 54 Visual Observation:Spiraling Whitefly Severity_method The trait is scored for severity of cassava spiraling whitefly symptoms caused by Aleurodicus dispersus 209875 0 0 76976 54 Visual Rating:compactness of shoot apices_method \N 209876 0 0 76977 54 Estimation :Fibre Content_method Measured part of tuber root that cannot be digested by humans. 209877 0 0 76978 54 Visual Observation:cassava mosaic disease severity 3-month evaluation_method Symptoms of infection by cassava mosaic virus is scored between two and three months after planting. Symptoms rated from 1=(clean,no infection) to 5=(extremely severe, severely diseased) 209878 0 0 76979 54 Estimation :yield per year_method Annual root yield using yield per hectare as a function of the crop duration. 209879 0 0 76980 54 Estimation :Hydrogen cyanide potential picrate method_method Visual scoring of the root cyanide content estimated using the sodium picrate test. This test consist is applying sodium picrate on the tuberous root and observing the reacting colour 209880 0 0 76981 54 Measurement :plant height without leaf_method Measured stem portion without leaf in centimeter 209881 0 0 76982 54 Counting:Proportion of Lodged Plants_method Proportion of plants lodged at greater than 45 degrees in a plot 209882 0 0 76983 54 Visual Observation:Sooty Mould_method Rating of the proportion of black mould on the lower leaves 209883 0 0 76984 54 Visual Rating:Unexpanded Apical Leaves Colors_method Visual rating of unexpanded apical leaf color. 209884 0 0 76985 54 Estimation :Ash Content_method Residue left behind after all organic matter has been burnt off, a measure of total mineral salts in a food 209885 0 0 76986 54 Visual Observation:Frog Skin Disease_method Visual scoring of the severity of frog skin disease symptoms caused by unknown causal agent 209886 0 0 76987 54 Visual Observation:stipule margin_method Observe the shape of the stipule margin shapes from the upper third of the plants and record the most frequent occurence. No intermediates is allowed. 209887 0 0 76988 54 Visual Rating:Apical Pubescence_method Visual rating of the young leaves pubescence 209888 0 0 76989 54 Estimation :Starch Content _method Estimated percentage of complex carbohydrates or start after extraction from cassava storage root 209889 0 0 76990 54 Counting:Red Spider Mite Incidence_method A ratio of infected plants with red spider mite to total plant stands. 209890 0 0 76991 54 Estimation :Fufu Content_method Measured percentage fufu processed from fresh storage roots. 209891 0 0 76992 54 Counting:Sprout count _method A count of the number of germinated stakes 209892 0 0 76993 54 Visual Observation :days to first inflorescence_method Observation of the appearance of developing inflorescence on a plant or plot 209893 0 0 76994 54 Counting:Plant Stands Harvested_method Count the number of plant stands that are harvested in a plot 209894 0 0 76995 54 Visual Observation:cassava brown streak disease leaf severity 1-month evaluation_method Severity on leaf symptoms caused by cassava brown streak virus, in the family Potyviridae and genus Ipomovirus and rated on a scale from 1 (= no symptom) to 5 (= extremely severe) 209895 0 0 76996 54 Calculation :Leaf Life _method Measures leaf life span estimated as days. 209896 0 0 76997 54 Measurement :gari sampled weight_method Sample of gari weighed before and after frying usually for experimental purposes 209897 0 0 76998 54 Visual Rating:Storage Root Cortex Color_method Visual rating of root cortex colour 209898 0 0 76999 54 Visual Rating:staygreen_method Visual rating of leaf retention or longevity 209899 0 0 77000 54 Visual Rating:root neck length_method Visual rating of root neck length as evaluated by CIAT 209900 0 0 77001 54 Visual Rating:Root Surface Color_method Visual rating of root surface color 209901 0 0 77002 54 Measurement :tip shoot weight_method Measured weight of tip shoot portion of the stem 209902 0 0 77003 54 Visual Rating:swelling capacity_method Visual assessment of the increment in quantity when water is added to the gari 209903 0 0 77004 54 Counting:sprout count at twelve-month_method Count of the number of stakes germinated, twelve months after planting 209904 0 0 77005 54 Visual Rating :Young Stem Growth Habit_method Visual rating of growth habit of young stem 209905 0 0 77006 54 Estimation :Beta carotene_method Concentration of beta carotene extracted from root samples and estimated by HPLC expressed in ug per gram fresh weight. 209906 0 0 77007 54 Visual Observation:leaf lobe margin_method Observe from the middle third of the plant. Record the most frequently observed leaf margin shape 209907 0 0 77008 54 Estimation :percentage leaf retention at 7 months after planting_method An estimation of the percentage stem length with retained leaf measured in percentage (%) using a representative plant stand in a plot, between 7 to 8 months after planting 209908 0 0 77009 54 Estimation :Sugar Content_method Sugar content in cassava storage root. 209909 0 0 77047 54 Visual Rating :Apical Branching_method Count the number of weeks from planting to first apical branching associated with the formation of inflorescence. 209947 0 0 77010 54 Counting:cassava mosaic disease incidence 1-month evaluation_method The ratio of plants showing symptoms of cassava mosaic disease as a proportion of the total plant stands scored at one to six weeks after planting 209910 0 0 77088 54 Visual Rating :Seed Color_method Trait monitored by observing the color of the seed 209988 0 0 77199 59 maleic acid A butenedioic acid in which the double bond has cis- (Z)-configuration. 210262 0 0 77011 54 Counting:cassava anthractnose disease incidence in 9-months_method A ratio of the number of plants showing sysmptoms of cassava anthracnose disease to total plant stands at seven to nine months after planting 209911 0 0 77012 54 Visual Rating :branching habit_method Rating of the branching habit of the lowest branching 209912 0 0 77013 54 Visual Observation:cassava brown streak disease leaf severity 6-month evaluation_method Severity on leaf symptoms caused by cassava brown streak virus, in the family Potyviridae and genus Ipomovirus and rated on a scale from 1 (= no symptom) to 5 (= extremely severe) 209913 0 0 77014 54 Measurement :Fresh Weight of Storage Root_method Weigh harvested storage roots per plot at harvest 209914 0 0 77015 54 Counting:Cassava Mealy Bug Incidence_method A ratio of plants showing symptoms of cassava mealy bug damage divided by the total number of plant stands 209915 0 0 77130 38 active \N 210033 0 0 77131 38 breeding_program_abbreviation \N 210034 0 0 77016 54 Measurement :root weight in air_method Measured weight of cassava root samples (kg) between 4 - 5kg of each of the harvested plot to determine the dry matter by specific gravity 209916 0 0 77056 54 Visual Observation:cassava green mite severity second evaluation_method Visual rating of damage caused by cassava green mite,Mononychellus tanajoa. Symptoms rated from 1=(clean,no infection) to 5=(extremely severe, severely diseased), evaluated at the early period of the peak of dry season 209956 0 0 77017 54 Visual Rating:root evaluation_method An evaluation of the integration of root shape, size, diameter, constriction, neck length on a scale. Before scoring the roots, the field technician walks the harvested plot to get an idea of the average root type of the trial which will then be used as the middle level of the scale. Genotypes better than average will be scored with scale levels lower than the middle level. Similiar genotype that are certainly worse compared to the average score are rated with levels higher than the middle level. Trait description is provided by Hernan Ceballos of CIAT 209917 0 0 77018 54 Visual Rating :Male Sterile_method Visual rating of presence of male pollen 209918 0 0 77019 54 Visual Scoring :Stem Color_method Visual rating of stem color nine months after planting 209919 0 0 77020 54 Counting:sprout count at six-month_method Count of the number of stakes germinated, six months after planting 209920 0 0 77021 54 Visual Scoring :Ease Of Peeling Root Cortex_method Qualitative rating of the ease of peeling root cortex 209921 0 0 77022 54 Visual Observation :days to 50% anthesis_method Duration from planting to first anthesis derived as the date of observation of 50% of the female flowers exposing pistil minus the date of planting 209922 0 0 77023 54 Estimation :Lafun Content_method Measured percentage Lafun processed from fresh storage roots. 209923 0 0 77024 54 Visual Rating:female flower evaluation_method Visual rating of the abundance of female flowers present at all branching levels on a plant stand on per plot basis 209924 0 0 77025 54 Counting:sprout count at three-month_method Count of the number of stakes germinated, three months after planting 209925 0 0 77026 54 Counting:Bemesia tabaci adult_method Counting of the number of Bemesia tabaci adult white flies on the top five leaves. 209926 0 0 77027 54 Visual Observation:cassava mosaic disease severity 12-month evaluation_method Symptoms of infection by cassava mosaic virus is scored between ten and twelve months after planting. Symptoms rated from 1=(clean,no infection) to 5=(extremely severe, severely diseased) 209927 0 0 77028 54 Visual Scoring :stem cortex color_method Visual scoring of stem color. Observe from the middle third of the plant. Make a small shallow cut and peel back the epidermis 209928 0 0 77029 54 Visual rating:root constriction_method Visual rating of root constrictions, as evaluated by CIAT 209929 0 0 77030 54 Counting:bemesia tabaci nymphs yellow_method Count of the number of number of yellow bemesia tabaci nymphs on 14th leaf on the same tallest shoot 209930 0 0 77031 54 Counting:number of flowering stalks per branch level _method Count of the number of stalks carrying the buds at every point of branching where inflorescence starts 209931 0 0 77032 54 Counting:leaf scar number_method Count of the leaf scars on the main stem 209932 0 0 77033 54 Calculation :Amylose Amylopectin Ratio_method The amylose content of a cassava root sample divided by the amylopectin content of the same sample 209933 0 0 77034 54 Visual Rating:Stipules Length_method A qualitative scoring of the length of the leaflike appendage at the base of the leaf 209934 0 0 77035 54 Calculation: percent of rotten roots_method Number of rotten storage root relative to the storage root harvested in a plot estimated in percentage (%) 209935 0 0 77036 54 Measurement :Average stem length_method Measured total stem length per plot or per number of plant stands 209936 0 0 77037 54 Visual Rating:Storage Root Shape_method Visual rating of root shape 209937 0 0 77038 54 Counting:cassava anthractnose disease incidence in 6-months_method A ratio of the number of plants showing sysmptoms of cassava anthracnose disease to total plant stands at four to six months after planting 209938 0 0 77039 54 Measurement :specific gravity_method Estimated value obtained by weighing 4-5kg of cassava in air and in water 209939 0 0 77040 54 Counting:marketable root number_method Count of the number of big or more than 1kg root size 209940 0 0 77041 54 Counting:cassava anthractnose disease incidence in 3-months_method A ratio of the number of plants showing sysmptoms of cassava anthracnose disease to total plant stands at four to six months after planting 209941 0 0 77042 54 Visual Rating:Plant Architecture_method Visual scoring of the plant architecture 209942 0 0 77043 54 Sensory Assesment :Poundability_method Mealiness of boiled cassava storage roots determined qualitatively by applying pressure to boiled roots 209943 0 0 77044 54 Calculation :Fresh Root Yield_method Calculated as weight of fresh storage roots expressed in tons per hectares per plant at harvest 209944 0 0 77045 54 Visual Rating :Ovary Color_method Visual rating of ovary color 209945 0 0 77046 54 Estimation :hydrogen cyanide potential enzymatic method_method Visual scoring of the root cyanide content evaluated using the enzymatic method 209946 0 0 77048 54 Counting:number of forks_method A count of the number of branches at every branching level 209948 0 0 77358 61 pL Picoliter. 1E-12 of a Liter. 212519 0 0 77049 54 Visual Observation:Red Spider Mite Severity_method The trait is scored for severity of red spider mite symptoms caused by Oligonychus gossypii and Tetranychus spp. 209949 0 0 77050 54 Estimation: post-harvest physiological deterioration method Estimation of post-harvest physiological deterioration by slicing the roots. 209950 0 0 77051 54 Estimation :trans 9_method Estimation of beta carotenoid components with 100% proVitamin A activity 209951 0 0 77052 54 Estimation :Root Dry Matter Content_method Estimated root dry matter estimated by multiplying 100 times the ratio of dry root weight after oven drying to constant weight divided by the weight of an approximately 100 gram sample of fresh roots 209952 0 0 77053 54 Counting:cassava mosaic disease incidence 12-month evaluation_method The ratio of plants showing symptoms of cassava mosaic disease as a proportion of the total plant stands scored at ten to twelve months after planting 209953 0 0 77054 54 Counting:Stem rot_method Count of the rotted stems per plot at the time of harvest 209954 0 0 77055 54 Visual Rating:Storage Root Constrictions_method Visual rating of mature root constrictions 209955 0 0 77057 54 Visual Observation:Petiole orientation_method Visual observation of petiole orientation. Observe from the middle of the plant, take a general picture across the row. No intermediates allowed. 209957 0 0 77058 54 Measurement :peel weight_method The weight of the peels (outer and inner skin) removed from the fresh root cassava using salter scale. 209958 0 0 77059 54 Visual Rating:root length evaluation_method Visual assessment of the root length 209959 0 0 77060 54 Measurement :First Apical Branch Height_method Measured as height from ground level to point of first apical branch 209960 0 0 77061 54 Estimation :Moisture Content_method Measured percentage of water contained in cassava storage roots at harvest usually estimated as one minus the dry matter content 209961 0 0 77062 54 Counting:cassava bacterial blight incidence 3-month evalution_method A ratio of infected plants with cassava bacterial blight to total plant stands scored at two to three months after planting 209962 0 0 77063 54 Calculation :Dry Yield_method Dry weight of harvested roots derived by multiplying fresh storage root yield by dry matter content expressed in tons per hectares. 209963 0 0 77064 54 Visual Rating:Leaf Lobe Position_method Trait monitored by observing the position in which leaf lobes are held 209964 0 0 77065 54 Counting:cassava mosaic disease incidence 3-month evaluation_method The ratio of plants showing symptoms of cassava mosaic disease as a proportion of the total plant stands scored at two to three months after planting 209965 0 0 77066 54 Estimation :gari starch_method Percentage of starch compostion of gari. This is done locally by using hydraulic jerk to press the gari while it is fresh after grating. 209966 0 0 77067 54 Visual Observation:Hairiness_method Rating of the level of pubescence on the growing part. It is a proportion of tissue covered by hair on the tip leaves. 209967 0 0 77068 54 Visual Rating:Root Surface Texture_method Visual rating of root surface texture 209968 0 0 77069 54 Counting:non marketable root number_method Count of the number of small or less than 1kg root size 209969 0 0 77070 54 Measurement :Gari Content_method Measured gari content of fresh root tubers 209970 0 0 77071 54 Estimation :dry matter content by specific gravity method_method Estimated dry matter content from the specific gravity value weighted cassava (4-5kg) 209971 0 0 77072 54 Visual Rating :Root Position_method Visual rating of root position in the soil 209972 0 0 77073 54 Measurement :leaf lobe width_method Measured width of the middle finger or lobe of matured leaf 209973 0 0 77074 54 Visual Observation:cassava bacterial blight severity 3-month evalution_method The trait is scored at two to three months after planting as severity of cassava bacterial blight symptoms caused by Xanthomonas axonopodis pv. Manihotis and rated on a scale from 1 (= no symptom) to 5 (= extremely severe) 209974 0 0 77075 54 Counting:cassava mosaic disease incidence 9-month evaluation_method The ratio of plants showing symptoms of cassava mosaic disease as a proportion of the total plant stands scored at seven to nine months after planting 209975 0 0 77076 54 Measurement :marketable root weight_method Measured weight of harvested cassava roots usually classified as large size and medium size excluding small sized roots 209976 0 0 77077 54 Measurement: root weight after washing_method Fresh cassava roots are washed in water and weighed on a pan suspended to a weighing scale 209977 0 0 77078 54 Gustation :gari taste_method Culinary assessment of the taste of gari 209978 0 0 77079 54 Visual Observation:cassava bacterial blight severity 9-month evalution_method The trait is scored at seven to nine months after planting as severity of cassava bacterial blight symptoms caused by Xanthomonas axonopodis pv. Manihotis and rated on a scale from 1 (= no symptom) to 5 (= extremely severe) 209979 0 0 77080 54 Visual Rating:root color_method Visual rating of storage root surface color as evaluated by CIAT 209980 0 0 77081 54 Estimation :leaf retention at harvest_method An estimation of the percentage stem length with retained leaf measured in percentage (%) using a representative plant stand in a plot, at harvest 209981 0 0 77082 54 Visual Rating :Color Of Boiled Tuberous Roots_method Visual rating of boiled roots 209982 0 0 77083 54 Estimation :percentage leaf retention_method An estimation of the percentage stem length with retained leaf measured in percentage (%) using a representative plant stand in a plot 209983 0 0 77084 54 Estimation :b crypto_method Estimation of b-cryptoxanthin (carotenoid that has hydroxyl group with 50% activity 209984 0 0 77085 54 Visual Observation:cassava anthractnose disease severity in 6-months_method Cassava anthracnose stem lesion severity is scored at different times after planting to coincide with typically high symptom expression. Symptoms are rated on a scale from 1 (= no symptoms) to 5 (= extremely severe stem lesions and dieback of stem) 209985 0 0 77351 61 sq mm Square millimeter. 212512 0 0 77086 54 Counting:cassava brown streak disease leaf incidence 1-month evaluation_method Ratio of the number of plants showing leaf symptoms from cassava brown streak disease out of the total plant stands 209986 0 0 77087 54 Visual Rating:size of shoot apices_method \N 209987 0 0 77089 54 Counting:germination count_method Count of the number of emerging seedlings from each family in the pre-nursery done on a daily bases until its ready for transplanting 209989 0 0 77090 54 Counting:plant number with inflorescence_method Proportion of plant per plot with inflorescence at varying growth stages including pollinated and unpollinated flowers 209990 0 0 77091 54 Visual Observation:flowering_method Rate the abundance of flowers on a plant 209991 0 0 77092 54 Calculation :Top Yield_method Calculated as weight of foliage and stems expressed in tons per hectares per plot at harvest 209992 0 0 77093 54 Estimation :Iron Content_method Measured total iron content in cassava storage roots. 209993 0 0 77094 16 METHOD_OF \N 209994 0 1 77102 38 project_has_plant_entries \N 210003 0 0 77103 46 plant_number \N 210005 0 0 77104 46 plant_index_number \N 210006 0 0 76464 47 Seedling Nursery seedling 209361 0 0 77105 47 Variety Release Trial \N 210007 0 0 77106 47 Clonal Evaluation \N 210008 0 0 76514 47 Advanced Yield Trial \N 209411 0 0 77107 16 fieldbook_image \N 210009 0 0 77123 51 number_of_progeny \N 210026 0 0 77124 45 dataset \N 210027 0 0 77125 45 crosses \N 210028 0 0 77159 57 annual_total_precipitation \N 210062 0 0 77160 57 continent \N 210063 0 0 77161 57 annual_mean_temperature \N 210064 0 0 77162 57 adm1 \N 210065 0 0 77163 57 adm2 \N 210066 0 0 77164 57 adm3 \N 210067 0 0 77165 57 local_name \N 210068 0 0 77166 57 region \N 210069 0 0 77167 57 alternative_name \N 210070 0 0 77168 58 cass storage root 210071 0 0 77169 58 cass_tissues \N 210072 0 0 77170 58 cass source leaf 210073 0 0 77171 58 cass lower stem bark 210074 0 0 77172 58 cass upper stem Green and not woody. 210075 0 0 77173 58 cass lower stem 210076 0 0 77174 58 cass lower stem whole 210077 0 0 77175 58 cass stem 210078 0 0 77176 58 cass lower leaf 210079 0 0 77177 58 cass leaf 210080 0 0 77178 58 cass pre-storage root Potential storage root. 210081 0 0 77179 58 cass root 210082 0 0 77180 58 cass sink leaf 210083 0 0 77181 58 cass fibrous root 210084 0 0 77182 59 threonine An alpha-amino acid in which one of the hydrogens attached to the alpha-carbon of glycine is substituted by a 1-hydroxyethyl group. 210085 0 0 77183 60 EXACT IUPAC_NAME \N 210086 0 0 77186 59 dehydroascorbic acid A tetrahydrofuranone that has formula C6H6O6. 210096 0 0 77187 60 EXACT \N 210097 0 0 77188 60 RELATED SMILES \N 210098 0 0 77189 60 RELATED InChI \N 210099 0 0 77190 60 RELATED InChIKey \N 210100 0 0 77359 61 rpm Revolutions per minute. 212520 0 0 77191 59 O-acetyl-L-serine An acetyl-L-serine where the acetyl group is attached to the side-chain oxygen. It is an intermediate in the biosynthesis of the amino acid cysteine in bacteria. 210125 0 0 77192 59 benzoic acid A compound comprising a benzene ring core carrying a carboxylic acid substituent. 210146 0 0 77193 59 iron atom An iron group element atom that has atomic number 26. 210190 0 0 77194 59 aspartic acid An alpha-amino acid that consists of succinic acid bearing a single alpha-amino substituent 210202 0 0 77195 59 histidine An alpha-amino acid that is propanoic acid bearing an amino substituent at position 2 and a 1H-imidazol-4-yl group at position 3. 210211 0 0 77196 59 D-galactonic acid A galactonic acid compound having D-configuration. 210224 0 0 77197 59 fructose A ketohexose that is an isomer of glucose. 210237 0 0 77198 59 ADP alpha-D-glucoside An ADP-aldose having alpha-D-glucopyranose as the sugar moiety. 210245 0 0 77200 59 tyrosine An alpha-amino acid that is phenylalanine bearing a hydroxy substituent at position 4 on the phenyl ring. 210305 0 0 77201 59 2-oxoglutarate(1-) A dicarboxylic acid monoanion resulting from selective deprotonation of the 1-carboxy group of 2-oxoglutaric acid. 210316 0 0 77202 59 pyruvate A 2-oxo monocarboxylic acid anion that is the conjugate base of pyruvic acid, arising from deprotonation of the carboxy group. 210321 0 0 77203 59 diphosphate(2-) A divalent inorganic anion obtained by removal of both protons from diphosphoric acid. 210339 0 0 77204 59 ADP A purine ribonucleoside 5'-diphosphate having adenine as the nucleobase. 210345 0 0 77205 59 rhamnose A deoxymannose sugar that is the 6-deoxy derivative of hexose. 210381 0 0 77206 59 phosphorus atom A pnictogen that has formula P. 210384 0 0 77207 59 D-galactono-1,4-lactone A galactonolactone derived from D-galactonic acid. 210392 0 0 77208 59 sucrose Sucrose is a disaccharide formed by glucose and fructose units joined by an acetal oxygen bridge from hemiacetal of glucose to the hemiketal of the fructose. 210404 0 0 77209 59 xylose An aldopentose, found in the embryos of most edible plants and used in medicine to test for malabsorption by administration in water to the patient. 210472 0 0 77210 59 methionine A sulfur-containing amino acid that is butyric acid bearing an amino substituent at position 2 and a methylthio substituent at position 4. 210480 0 0 77211 59 linamarin \N 210496 0 0 77212 60 RELATED MONOISOTOPIC_MASS \N 210497 0 0 77213 60 RELATED MASS \N 210498 0 0 77214 59 chebi_compounds \N 210505 0 0 77215 59 valine A branched-chain amino acid that consists of glycine in which one of the hydrogens attached to the alpha-carbon is substituted by an isopropyl group. 210506 0 0 77216 59 3-phosphoglyceric acid A monophosphoglyceric acid having the phospho group at the 3-position. It is an intermediate in metabolic pathways like glycolysis and calvin cycle. 210515 0 0 77217 59 leucine A branched-chain amino acid that consists of glycine in which one of the hydrogens attached to the alpha-carbon is substituted by an isobutyl group. 210539 0 0 77218 59 glyceric acid A trionic acid that consists of propionic acid substituted at positions 2 and 3 by hydroxy groups. 210548 0 0 77219 59 glucose An aldohexose used as a source of energy and metabolic intermediate. 210562 0 0 77220 59 xylulose 5-phosphate A xylulose phosphate carrying a phospahte group at position 5. It is an intermediate metabolite in the pentose phosphate pathway. 210570 0 0 77221 59 sulfate A sulfur oxoanion obtained by deprotonation of both OH groups of sulfuric acid. 210573 0 0 77222 59 aldehydo-D-mannose 6-phosphate A D-mannose 6-phosphate that has formula C6H13O9P. 210684 0 0 77223 59 trans-4-coumaric acid The trans-isomer of 4-coumaric acid. 210686 0 0 77224 59 nicotinic acid A pyridinemonocarboxylic acid that is pyridine in which the hydrogen at position 3 is replaced by a carboxy group. 210706 0 0 77225 60 RELATED INN \N 210707 0 0 77226 59 alpha-D-galactosyl-(1->3)-1D-myo-inositol An alpha-D-galactoside having a 1D-myo-inositol substituent at the anomeric position. 210779 0 0 77227 59 proline An alpha-amino acid that is pyrrolidine bearing a carboxy substituent at position 2. 210793 0 0 77228 59 alanine An alpha-amino acid that consists of propionic acid bearing an amino substituent at position 2. 210806 0 0 77229 59 tryptophan An alpha-amino acid that is alanine bearing an indol-3-yl substituent at position 3. 210818 0 0 77333 61 hours Number of hours. 212494 0 0 77334 61 cu mi Cubic mile. 212495 0 0 77230 59 fumaric acid A butenedioic acid in which the C=C double bond has E geometry. It is an intermediate metabolite in the citric acid cycle. 210830 0 0 77231 59 D-fructose 6-phosphate A ketohexose monophosphate that is D-fructose having a phospahte substituent at position 6. It is an important intermediate in the carbohydrate metabolism. 210856 0 0 77232 59 ribulose 5-phosphate A ribulose phosphate in which the phosphate group is attached at position 5. 210858 0 0 77233 59 calcium atom An alkaline earth metal atom that has formula Ca. 210862 0 0 77234 59 alpha,alpha-trehalose A trehalose in which both glucose residues have alpha-configuration at the anomeric carbon. 210867 0 0 77235 59 D-fructose 1,6-bisphosphate A ketohexose bisphosphate that is D-fructose substituted by phosphate groups at positions 1 and 6. It is an intermediate in the glycolysis metabolic pathway. 210906 0 0 77236 59 sulfur atom A chalcogen that has formula S. 210909 0 0 77237 59 N-acetyl-L-serine An N-acetyl-L-amino acid in which the amino acid specified is L-serine. Metabolite observed in cancer metabolism. 210915 0 0 77285 59 zinc atom A zinc group element atom that has formula Zn. 211745 0 0 77238 59 D-ribose 5-phosphate A ribose monophosphate that is D-ribose substituted at position 5 by a phosphate group. It is an intermediate in the pentose phosphate pathway. 210930 0 0 77452 61 pressure 212613 0 0 77360 61 P One Poise. 212521 0 0 77361 61 km Kilometer. One thousand meters. 212522 0 0 77239 59 isocitric acid A tricarboxylic acid that is propan-1-ol with a hydrogen at each of the 3 carbon positions substituted with a carboxy group. 210932 0 0 77240 59 L-threonic acid The L-enantiomer of threonic acid. 210960 0 0 77241 59 potassium atom An alkali metal atom that has formula K. 210974 0 0 77242 59 magnesium atom An alkaline earth metal atom that has formula Mg. 210979 0 0 77243 59 diphosphate ion \N 210985 0 0 77244 59 lysine A diamino acid that is caproic (hexanoic) acid bearing two amino substituents at positions 2 and 6. 210988 0 0 77245 59 arginine An alpha-amino acid that is glycine in which the alpha-is substituted by a 3-guanidinopropyl group. 210996 0 0 77246 59 4-hydroxyproline A monohydroxyproline where the hydroxy group is located at the 4-position. It is found in fibrillar collagen. 211005 0 0 77247 59 sn-glycerol 3-phosphate An sn-glycerol 3-phosphate having unsubstituted hydroxy groups. 211011 0 0 77377 61 H Henry. Unit of electrical inductance. 212538 0 0 77248 59 chlorogenic acid A cinnamate ester obtained by formal condensation of the carboxy group of trans-caffeic acid with the 3-hydroxy group of quinic acid. It is an intermediate metabolite in the biosynthesis of lignin. 211028 0 0 77249 59 erythritol The meso-diastereomer of butane-1,2,3,4-tetrol. 211052 0 0 77250 59 ion A molecular entity having a net electric charge. 211093 0 0 77251 59 D-mannose 6-phosphate A mannose phosphate in which the phosphate group is attached to position 6. 211094 0 0 77252 59 NAD Abbreviation for nicotinamide-adenine dinucleotide when its oxidation state is unknown or unspecified. It is used in metabolic pathways like glycolysis and citric acid cycle. 211099 0 0 77253 59 protein A biological macromolecule minimally consisting of one polypeptide chain synthesized at the ribosome. 211102 0 0 77254 59 2-oxoglutaric acid An oxo dicarboxylic acid that consists of glutaric acid bearing an oxo substituent at position 2. It is an intermediate metabolite in Krebs cycle. 211105 0 0 77255 59 starch The most important reserve polysaccharide found in plants. It is a glucan consisting of amylose and amylopectin. 211140 0 0 77256 59 glycolic acid A 2-hydroxy monocarboxylic acid that is acetic acid where the methyl group has been hydroxylated. 211149 0 0 77257 59 urea A carbonyl group with two C-bound amine groups. 211193 0 0 77258 59 5-oxoproline An oxoproline having the oxo group placed at the 5-position. It is an intermediate metabolite in the glutathione cycle. 211236 0 0 77259 59 alpha-D-glucose 1-phosphate A D-glucopyranose 1-phosphate in which the anomeric centre has alpha-configuration. 211247 0 0 77260 59 myo-inositol An inositol having myo- configuration. 211266 0 0 77261 59 maltose A glycosylglucose consisting of two D-glucopyranose units connected by an alpha-(1->4)-linkage. 211327 0 0 77262 59 gamma-aminobutyric acid A gamma-amino acid that is butanoic acid with the amino substituent located at C-4. 211355 0 0 77263 59 D-erythronic acid An erythronic acid that has formula C4H8O5. 211395 0 0 77264 59 AMP A purine ribonucleoside 5'-monophosphate having adenine as the nucleobase. 211397 0 0 77265 59 cis-caffeic acid The cis-isomer of caffeic acid. 211445 0 0 77266 59 chemical entity A chemical entity is a physical entity of interest in chemistry including molecular entities, parts thereof, and chemical substances. 211472 0 0 77267 59 sedoheptulose 1,7-bisphosphate A sedoheptulose derivative that has formula C7H16O13P2. 211473 0 0 77268 59 cobalt atom A cobalt group element atom that has atomic number 27. 211481 0 0 77269 59 diphosphate(1-) A monovalent inorganic anion obtained by deprotonation of one of the phosphate OH groups in diphosphoric acid. 211491 0 0 77270 59 phenylalanine An aromatic amino acid that is alanine in which one of the methyl hydrogens is substituted by a phenyl group. 211493 0 0 77271 59 quinic acid A cyclitol carboxylic acid. 211503 0 0 77272 59 fucose Any deoxygalactose that is deoxygenated at the 6-position. 211506 0 0 77273 59 malic acid A 2-hydroxydicarboxylic acid that is succinic acid in which one of the hydrogens attached to a carbon is replaced by a hydroxy group. 211512 0 0 77274 59 asparagine An alpha-amino acid in which one of the hydrogens attached to the alpha-carbon of glycine is substituted by a 2-amino-2-oxoethyl group. 211527 0 0 77275 59 D-glucose 6-phosphate A D-glucose monophosphate in which the phosphate group is attached to position 6. 211534 0 0 77276 59 D-erythrose 4-phosphate An erythrose phosphate that is D-erythrose carrying a phosphate group at position 4. It is an intermediate in the pentose phosphate pathway and Calvin cycle. 211535 0 0 77277 59 glutamine An alpha-amino acid that consists of butyric acid bearing an amino substituent at position 2 and a carbamoyl substituent at position 4. 211559 0 0 77335 61 nJ Nanojoule. 1E-9 of a Joule. 212496 0 0 77278 59 sedoheptulose 7-phosphate A ketoheptose phosphate consisting of sedoheptulose having a phosphate group at the 7-position. It is an intermediate metabolite in the pentose phosphate pathway. 211571 0 0 77279 59 D-ribulose 1,5-bisphosphate A ribulose phosphate that is D-ribulose attached to phosphate groups at positions 1 and 5. It is an intermediate in photosynthesis. 211587 0 0 77280 59 manganese atom A manganese group element atom that has formula Mn. 211602 0 0 77281 59 phosphoenolpyruvic acid A monocarboxylic acid that is acrylic acid substituted by a phosphonooxy group at position 2. It is a metabolic intermediate in pathways like glycolysis and gluconeogenesis. 211610 0 0 77282 59 putrescine A four-carbon alkane-alpha,omega-diamine. It is obtained by the breakdown of amino acids and is responsible for the foul odour of putrefying flesh. 211637 0 0 77283 59 ATP An adenosine 5'-phosphate in which the 5'-phosphate is a triphosphate group. It is involved in the transportation of chemical energy during metabolic pathways. 211678 0 0 77284 59 raffinose A trisaccharide composed of alpha-D-galactopyranose, alpha-D-glucopyranose and beta-D-fructofuranose joined in sequence by 1->6 and 1<->2 glycosidic linkages, respectively. 211714 0 0 77286 59 isoleucine A 2-amino-3-methylpentanoic acid having either (2R,3R)- or (2S,3S)-configuration. 211752 0 0 77362 61 Units \N 212523 0 0 77287 59 UDP-N-acetyl-alpha-D-glucosamine A UDP-amino sugar having N-acetyl-alpha-D-glucosamine as the amino sugar component. 211757 0 0 77288 59 glycine The simplest (and the only achiral) proteinogenic amino acid, with a hydrogen atom as its side chain. 211784 0 0 77289 59 citric acid A tricarboxylic acid that is propane-1,2,3-tricarboxylic acid bearing a hydroxy substituent at position 2. It is an important metabolite in the pathway of all aerobic organisms. 211868 0 0 77290 59 ornithine An alpha-amino acid that is pentanoic acid bearing two amino substituents at positions 2 and 5. 211925 0 0 77291 59 molecular entity Any constitutionally or isotopically distinct atom, molecule, ion, ion pair, radical, radical ion, complex, conformer etc., identifiable as a separately distinguishable entity. 211936 0 0 77292 59 UDP-D-glucose A UDP-sugar having D-glucose as the sugar component. 211937 0 0 77293 59 UDP A pyrimidine ribonucleoside 5'-diphosphate that has formula C9H14N2O12P2. 211946 0 0 77294 59 glycerol A triol with a structure of propane substituted at positions 1, 2 and 3 by hydroxy groups. 211969 0 0 77295 59 2-phosphoglycolic acid The O-phospho derivative of glycolic acid. 212038 0 0 77296 59 beta-alanine A naturally-occurring beta-amino acid comprising propionic acid with the amino group in the 3-position. 212047 0 0 77297 59 D-glucose 1,6-bisphosphate A D-glucose bisphosphate that has formula C6H14O12P2. 212096 0 0 77298 59 1-pyrroline-2-carboxylic acid The product resulting from formal oxidation of DL-proline by loss of hydrogen from the nitrogen and from the carbon alpha to the carboxylic acid, with the formation of a C=N bond. 212102 0 0 77299 59 NADP Abbreviation for nicotinamide-adenine dinucleotide phosphate when its oxidation state is unknown or unspecified. 212110 0 0 77300 59 rac-lactic acid A racemate comprising equimolar amounts of (R)- and (S)-lactic acid. 212111 0 0 77301 59 aluminide(1-) A monoatomic aluminium that has formula Al. 212124 0 0 77302 59 phosphoric acid A phosphorus oxoacid that consits of one oxo and three hydroxy groups joined covalently to a central phosphorus atom. 212126 0 0 77303 59 fumarate(1-) A hydrogen butenedioate obtained by deprotonation of one of the carboxy groups of fumaric acid. 212147 0 0 77304 59 succinic acid An alpha,omega-dicarboxylic acid resulting from the formal oxidation of each of the terminal methyl groups of butane to the corresponding carboxy group. It is an intermediate metabolite in the citric acid cycle. 212151 0 0 77305 59 shikimic acid A cyclohexenecarboxylic acid that is cyclohex-1-ene-1-carboxylic acid substituted by hydroxy groups at positions 3, 4 and 5 (the 3R,4S,5R stereoisomer). It is an intermediate metabolite in plants and microorganisms. 212183 0 0 77306 59 ammonium An onium cation obtained by protonation of ammonia. 212208 0 0 77307 59 glutamic acid An alpha-amino acid that is glutaric acid bearing a single amino substituent at position 2. 212239 0 0 77308 59 glycerone phosphate A member of the class of glycerone phosphates that consists of glycerone bearing a single phospho substituent. 212256 0 0 77309 59 monoatomic anion \N 212279 0 0 77310 59 ascorbic acid \N 212280 0 0 77311 59 copper atom A copper group element atom that has formula Cu. 212281 0 0 77312 59 sucrose 6(F)-phosphate A disaccharide phosphate that has formula C12H23O14P. 212289 0 0 77313 59 halide anion A monoatomic monoanion resulting from the addition of an electron to any halogen atom. 212299 0 0 77314 59 alpha,alpha-trehalose 6-phosphate A trehalose phosphate that has formula C12H23O14P. 212303 0 0 77315 59 nitrate A nitrogen oxoanion formed by loss of a proton from nitric acid. Principal species present at pH 7.3. 212315 0 0 77316 59 homoserine An alpha-amino acid that is glycine substituted at the alpha-position by a 2-hydroxyethyl group. 212342 0 0 77317 59 monoatomic ion \N 212348 0 0 77318 59 monoatomic monoanion \N 212349 0 0 77319 59 succinate(1-) A dicarboxylic acid monoanion resulting from the removal of a proton from one of the carboxy groups of succinic acid. 212350 0 0 77320 59 phosphate(3-) A phosphate ion that is the conjugate base of hydrogenphosphate. 212354 0 0 77321 59 serine An alpha-amino acid that is alanine substituted at position 3 by a hydroxy group. 212424 0 0 77322 59 trans-caffeic acid The trans-isomer of caffeic acid. 212437 0 0 77323 59 pyruvic acid A 2-oxo monocarboxylic acid that is the 2-keto derivative of propionic acid. It is a metabolite obtained during glycolysis. 212452 0 0 77324 59 HAS_FUNCTIONAL_PARENT \N 212485 0 1 77325 59 IS_CONJUGATE_ACID_OF \N 212486 0 1 77326 59 IS_CONJUGATE_BASE_OF \N 212487 0 1 77327 61 acceleration 212488 0 0 77328 61 dyn One dyne. 212489 0 0 77329 61 cm Centimeter. One hundredth of a meter. 212490 0 0 77330 61 ng/g Nanograms per gram. 212491 0 0 77331 61 ac Acre. 212492 0 0 77332 61 pmol Picomolar. 1E-12 Molar. 212493 0 0 77336 61 sq cm Square centimeter. 212497 0 0 77337 61 St One Stoke. 212498 0 0 77338 61 pg/g Picograms per gram. 212499 0 0 77339 61 frequencyb 212500 0 0 77340 61 W One Watt. 212501 0 0 77341 61 fmol Femtomolar. 1E-15 Molar. 212502 0 0 77342 61 m One meter. 212503 0 0 77343 61 Ohm Ohm. Unit of electrical resistance. 212504 0 0 77352 61 energy 212513 0 0 77353 61 J One Joule. 212514 0 0 77354 61 Ep One Plank energy. 212515 0 0 77355 61 cu in Cubic inch. 212516 0 0 77356 61 electromagnetic 212517 0 0 77357 61 CMO Cubic mile of oil. 212518 0 0 77363 61 rna seq Terms used to quantify rna seq expression values. 212524 0 0 77364 61 psi One pound per square inch. 212525 0 0 77365 61 m/s2 Meter per second per second. 212526 0 0 77366 61 V Volt. Unit of electrical potential. 212527 0 0 77367 61 TPM TPM. Transcripts per million reads. 212528 0 0 77368 61 Hz One Hertz. 212529 0 0 77369 61 mmol Millimolar. One thousandth of a Molar. 212530 0 0 77370 61 illuminanceb 212531 0 0 77371 61 K One Kelvin. 212532 0 0 77372 61 hp One horsepower. 212533 0 0 77373 61 lb One pound mass. 212534 0 0 77374 61 dpi Dots per inch. 212535 0 0 77375 61 cSt Centistoke. One hundredth of a Stoke. 212536 0 0 77376 61 eV Electronvolt. 212537 0 0 77378 61 mass Terms used to measure a quantity of mass. 212539 0 0 77379 61 cord A cord is the amount of wood that occupies a volume of 128 cubic feet (3.62 m3). 212540 0 0 77380 61 ppi Pixels per inch. 212541 0 0 77381 61 nL Nanoliter. 1E-9 of a Liter. 212542 0 0 77382 61 g/mL Grams per milliliter. 212543 0 0 77383 61 mg Milligram. One thousandth of a gram. 212544 0 0 77384 61 lx One lux. 212545 0 0 77385 61 kg Kilogram. One thousand grams. 212546 0 0 77386 61 angle 212547 0 0 77387 61 sq m Square meter. 212548 0 0 77388 61 rad Angle in radians. 212549 0 0 77389 61 uL Microliter. 1E-6 of a Liter. 212550 0 0 77390 61 sq ft Square feet. 212551 0 0 77391 61 length Terms used to measure a distance between points in space. 212552 0 0 77392 61 kcal Kilocalorie. One thousand calories. 212553 0 0 77393 61 time Terms used to quantify time. 212554 0 0 77394 61 ng Nanogram. 1E-9 of a gram. 212555 0 0 77395 61 fl oz One fluid ounce. 212556 0 0 77396 61 lbf One pound force. 212557 0 0 77397 61 pm Picometer. 1E-12 of a meter. 212558 0 0 77398 61 uJ Microjoule. 1E-6 of a Joule. 212559 0 0 77399 61 RPKM RPKM. 212560 0 0 77400 61 mol One Molar. 212561 0 0 77401 61 velocity 212562 0 0 77402 61 erg One erg. 212563 0 0 77403 61 days Number of days. 212564 0 0 77404 61 cu ft Cubic feet. 212565 0 0 77405 61 sq mile Square mile. 212566 0 0 77406 61 fL Femtoliter. 1E-15 of a Liter. 212567 0 0 77407 61 mm Millimeter. One thousandth of a meter. 212568 0 0 77408 61 force 212569 0 0 77409 61 Pa One Pascal. 212570 0 0 77410 61 cal One calorie. 212571 0 0 77411 61 area Terms used to measure a quantity of a two dimensional surface. 212572 0 0 77412 61 ug/g Micrograms per gram. 212573 0 0 77413 61 dm Decimeter. One tenth of a meter. 212574 0 0 77414 61 temperature 212575 0 0 77415 61 fg Femtogram. 1E-15 of a gram. 212576 0 0 77416 61 bar One bar. 212577 0 0 77417 61 cL Centiliter. One-hundredth of a Liter. 212578 0 0 77418 61 cu yd Cubic yard. 212579 0 0 77419 61 pf One Plank force. 212580 0 0 77420 61 g Gram. One gram. 212581 0 0 77421 61 C One Celcius. 212582 0 0 77422 61 nmol Nanomolar. 1E-9 Molar. 212583 0 0 77423 61 fg/g Femtograms per gram. 212584 0 0 77424 61 months Number of months. 212585 0 0 77425 61 mile One mile. 212586 0 0 77426 61 fm Femtometer. 212587 0 0 77427 61 um Micrometer. 1E-6 of a meter. 212588 0 0 77428 61 volume Terms used to measure a quantity of bounded three dimensional space. 212589 0 0 77429 61 sq in Square inch. 212590 0 0 77430 61 g/L Grams per liter. 212591 0 0 77431 61 lm One Lumen. 212592 0 0 77432 61 nm Nanometer. 1E-9 of a meter. 212593 0 0 77433 61 density 212594 0 0 77434 61 L Liter. One Liter. 212595 0 0 77435 61 g/kg Grams per kilogram. 212596 0 0 77436 61 yd One yard. 212597 0 0 77437 61 BOE Barrel of oil equivalent. 212598 0 0 77438 61 F One Fahrenheit. 212599 0 0 77439 61 A Ampere. Unit of electric current. 212600 0 0 77440 61 deg Angle in degrees. 212601 0 0 77441 61 ha Hectare. 212602 0 0 77442 61 in One inch. 212603 0 0 77443 61 gal One US gallon. 212604 0 0 77444 61 ug Microgram. 1E-6 of a gram. 212605 0 0 77445 61 concentration Terms used to quantify a quantity of proportional abundance. 212606 0 0 77446 61 earth mass Mass of the planet Earth. 212607 0 0 77447 61 pg Picogram. 1E-12 of a gram. 212608 0 0 77448 61 m/s Meter per second. 212609 0 0 77449 61 kL Kilo-liter. One thousand Liters. 212610 0 0 77450 61 dL Deciliter. One-tenth of a Liter. 212611 0 0 77451 61 sq km Square kilometer. 212612 0 0 77453 61 T Tesla. Unit of strength of magnetic field. 212614 0 0 77454 61 cP Centipoise. One hundredth of a Poise. 212615 0 0 77462 61 S Siemens. Unit of electrical conductance. 212623 0 0 77463 61 weeks Number of weeks. 212624 0 0 77464 62 week 13 212625 0 0 77465 62 week 35 212626 0 0 77466 62 Time \N 212627 0 0 77467 62 week 11 212628 0 0 77468 62 week 17 212629 0 0 77469 62 week 12 212630 0 0 77470 62 week 54 212631 0 0 77471 62 week 25 212632 0 0 77472 62 week 45 212633 0 0 77473 62 month 8 212634 0 0 77474 62 month 4 212635 0 0 77475 62 month 7 212636 0 0 77476 62 week 50 212637 0 0 77477 62 week 53 212638 0 0 77478 62 end of night Half an hour before sunrise. 212639 0 0 77479 62 week 20 212640 0 0 77480 62 week 23 212641 0 0 77481 62 mid day Between 11:00 in the morning and 14:00 in the afternoon. 212642 0 0 77482 62 week 32 212643 0 0 77483 62 week 37 212644 0 0 77484 62 week 22 212645 0 0 77485 62 week 16 212646 0 0 77486 62 week 40 212647 0 0 77487 62 week 2 212648 0 0 77488 62 week 6 212649 0 0 77489 62 month 6 212650 0 0 77490 62 week 4 212651 0 0 77491 62 week 14 212652 0 0 77492 62 week 26 212653 0 0 77493 62 week 49 212654 0 0 77494 62 week 3 212655 0 0 77495 62 week 7 212656 0 0 77496 62 cycle 3 Third cycle. 212657 0 0 77497 62 week 31 212658 0 0 77498 62 week 21 212659 0 0 77499 62 month 10 212660 0 0 77500 62 week 47 212661 0 0 77501 62 generation Categorical plant generations. 212662 0 0 77502 62 month 3 212663 0 0 77503 62 week 52 212664 0 0 77504 62 week 42 212665 0 0 77505 62 week 18 212666 0 0 77506 62 month 12 212667 0 0 77507 62 week 1 212668 0 0 77508 62 week 29 212669 0 0 77509 62 week 27 212670 0 0 77510 62 cycle 1 First cycle. 212671 0 0 77511 62 time of year Weeks and months. 212672 0 0 77512 62 week 9 212673 0 0 77513 62 week 43 212674 0 0 77514 62 week 33 212675 0 0 77515 62 week 48 212676 0 0 77516 62 week 46 212677 0 0 77517 62 week 19 212678 0 0 77518 62 cycle 2 Second cycle. 212679 0 0 77519 62 week 24 212680 0 0 77520 62 month 11 212681 0 0 77521 62 month 5 212682 0 0 77522 62 week 5 212683 0 0 77523 62 week 30 212684 0 0 77524 62 week 39 212685 0 0 77525 62 week 8 212686 0 0 77526 62 month 1 212687 0 0 77527 62 week 36 212688 0 0 77528 62 week 34 212689 0 0 77529 62 month 9 212690 0 0 77530 62 week 41 212691 0 0 77531 62 week 28 212692 0 0 77532 62 week 44 212693 0 0 77533 62 week 51 212694 0 0 77534 62 time of day Categorical day periods. 212695 0 0 77535 62 week 15 212696 0 0 77536 62 end of day Late afternoon daylight. 212697 0 0 77537 62 week 38 212698 0 0 77538 62 month 2 212699 0 0 77539 62 week 10 212700 0 0 77540 63 trait_ontology \N 212701 0 0 77541 63 composed_trait_ontology \N 212702 0 0 77542 63 object_ontology \N 212703 0 0 77543 63 attribute_ontology \N 212704 0 0 77544 63 method_ontology \N 212705 0 0 77545 63 unit_ontology \N 212706 0 0 77546 63 time_ontology \N 212707 0 0 77547 64 Composed traits \N 212708 0 0 77548 64 cass source leaf|3-phosphoglyceric acid|ug/g|week 16 \N 212709 0 0 77549 64 cass source leaf|ADP|ug/g|week 16 \N 212710 0 0 77550 64 cass storage root|ADP alpha-D-glucoside|ug/g|week 16 \N 212711 0 0 77551 64 cass storage root|ADP|ug/g|week 16 \N 212712 0 0 77552 64 cass storage root|3-phosphoglyceric acid|ug/g|week 16 \N 212713 0 0 77553 64 cass source leaf|ADP alpha-D-glucoside|ug/g|week 16 \N 212714 0 0 77554 64 cass upper stem|ADP alpha-D-glucoside|ug/g|week 16 \N 212715 0 0 77555 64 cass upper stem|ADP|ug/g|week 16 \N 212716 0 0 77556 64 cass sink leaf|ADP|ug/g|week 16 \N 212717 0 0 77557 64 cass sink leaf|ADP alpha-D-glucoside|ug/g|week 16 \N 212718 0 0 77558 64 cass upper stem|3-phosphoglyceric acid|ug/g|week 16 \N 212719 0 0 77559 64 cass sink leaf|3-phosphoglyceric acid|ug/g|week 16 \N 212720 0 0 77560 35 seedlot_experiment \N 212721 0 0 77561 37 collection_of \N 212722 0 0 77562 37 seed transaction \N 212723 0 0 77563 36 seedlot \N 212724 0 0 77564 45 plants \N 212725 0 0 77565 38 phenotypes_fully_uploaded \N 212726 0 0 76495 38 project_harvest_date \N 209394 0 0 76496 38 project_planting_date \N 209395 0 0 77566 45 seedlots \N 212727 0 0 77567 35 treatment_experiment \N 212728 0 0 77568 52 trial_treatment_relationship \N 212729 0 0 77569 51 number_of_seeds_distributed \N 212730 0 0 77574 36 subplot \N 212735 0 0 77575 38 project_has_subplot_entries \N 212736 0 0 77576 46 subplot_index_number \N 212737 0 0 77577 45 subplots \N 212738 0 0 77578 37 subplot_of \N 212739 0 0 77579 37 plant_of_subplot \N 212740 0 0 77580 46 current_count \N 212741 0 0 77582 37 female_plot_of \N 212743 0 0 77583 37 male_plot_of \N 212744 0 0 77584 36 grafted_accession \N 212745 0 0 77585 35 grafting_experiment \N 212746 0 0 77586 47 crossing_trial \N 212747 0 0 77587 47 grafting_trial \N 212748 0 0 77588 47 pollinating_trial \N 212749 0 0 77589 37 rootstock_of \N 212750 0 0 77590 37 scion_of \N 212751 0 0 76472 47 phenotyping_trial phenotyping_trial 209369 0 0 76473 47 genotyping_trial genotyping_trial 209370 0 0 77591 38 trial_layout_json \N 212752 0 0 77581 46 crossing_metadata_json \N 212742 0 0 77592 46 genome_structure \N 212753 0 0 77593 46 ploidy_level \N 212754 0 0 77594 46 introgression_parent \N 212755 0 0 77595 46 introgression_backcross_parent \N 212756 0 0 77596 46 introgression_map_version \N 212757 0 0 77597 46 introgression_chromosome \N 212758 0 0 77598 46 introgression_start_position_bp \N 212759 0 0 77599 46 introgression_end_position_bp \N 212760 0 0 77600 46 notes \N 212761 0 0 77601 46 variety \N 212762 0 0 77602 46 state \N 212763 0 0 77603 45 label_design \N 212764 0 0 77604 46 plot_geo_json \N 212765 0 0 77605 65 phenotype_outlier \N 212766 0 0 77606 38 project_has_tissue_sample_entries \N 212767 0 0 77607 46 tissue_sample_index_number \N 212768 0 0 77608 46 is_blank \N 212769 0 0 77609 46 concentration \N 212770 0 0 77610 46 volume \N 212771 0 0 77611 46 dna_person \N 212772 0 0 77612 46 extraction \N 212773 0 0 77613 46 tissue_type \N 212774 0 0 77614 46 ncbi_taxonomy_id \N 212775 0 0 77615 38 genotyping_facility \N 212776 0 0 77616 38 genotyping_facility_status \N 212777 0 0 77617 38 genotyping_facility_submitted \N 212778 0 0 77618 38 genotyping_plate_format \N 212779 0 0 77619 38 genotyping_plate_sample_type \N 212780 0 0 77620 38 genotyping_facility_plate_id \N 212781 0 0 77621 46 current_weight_gram \N 212782 0 0 77622 45 tissue_samples \N 212783 0 0 77625 51 number_of_fruits \N 212785 0 0 77626 51 number_of_seeds_planted \N 210021 0 0 77627 51 number_of_seedlings_transplanted \N 212786 0 0 77628 47 Seed Multiplication \N 212787 0 0 77629 47 Screen House \N 212788 0 0 77630 45 genotyping_trials \N 212789 0 0 77631 52 field_trial_from_field_trial \N 212790 0 0 77632 52 genotyping_trial_from_field_trial \N 212791 0 0 77633 52 crossing_trial_from_field_trial \N 212792 0 0 77634 38 plot_width \N 212793 0 0 77635 38 plot_length \N 212794 0 0 77636 38 field_size \N 212795 0 0 77637 38 field_trial_is_planned_to_be_genotyped \N 212796 0 0 77638 38 field_trial_is_planned_to_cross \N 212797 0 0 77639 37 female_plant_of \N 212798 0 0 77640 37 male_plant_of \N 212799 0 0 77641 38 data_agreement \N 212800 0 0 77642 47 crossing_block_trial \N 212801 0 0 77643 38 folder_for_genotyping_trials \N 212802 0 0 77644 56 vcf_map_details \N 212803 0 0 77645 42 vcf_snp_genotyping \N 212804 0 0 77646 45 markers \N 212805 0 0 77648 45 identifier_generation \N 212807 0 0 77649 45 odk_ona_forms \N 212808 0 0 77650 38 raw_data_link \N 212809 0 0 77651 38 management_factor_date \N 212810 0 0 77652 38 management_factor_type \N 212811 0 0 77653 46 cross_combination \N 212812 0 0 77654 45 family_names \N 212813 0 0 77647 36 family_name \N 212806 0 0 77655 52 drone_run_on_field_trial \N 212814 0 0 77656 52 drone_run_band_on_drone_run \N 212815 0 0 77657 66 raw_drone_imagery \N 212816 0 0 77658 66 stitched_drone_imagery \N 212817 0 0 77659 66 denoised_stitched_drone_imagery \N 212818 0 0 77660 66 cropped_stitched_drone_imagery \N 212819 0 0 77661 66 rotated_stitched_drone_imagery \N 212820 0 0 77662 66 rotated_stitched_temporary_drone_imagery \N 212821 0 0 77663 66 fourier_transform_stitched_drone_imagery \N 212822 0 0 77664 66 contours_stitched_drone_imagery \N 212823 0 0 77665 66 observation_unit_polygon_bw_imagery \N 212824 0 0 77666 66 observation_unit_polygon_rgb_imagery \N 212825 0 0 77667 66 observation_unit_polygon_rgb_imagery_channel_1 \N 212826 0 0 77668 66 observation_unit_polygon_rgb_imagery_channel_2 \N 212827 0 0 77669 66 observation_unit_polygon_rgb_imagery_channel_3 \N 212828 0 0 77670 66 observation_unit_polygon_nrn_imagery \N 212829 0 0 77671 66 observation_unit_polygon_nren_imagery \N 212830 0 0 77672 66 observation_unit_polygon_blue_imagery \N 212831 0 0 77673 66 observation_unit_polygon_green_imagery \N 212832 0 0 77674 66 observation_unit_polygon_red_imagery \N 212833 0 0 77675 66 observation_unit_polygon_red_edge_imagery \N 212834 0 0 77676 66 observation_unit_polygon_nir_imagery \N 212835 0 0 77677 66 observation_unit_polygon_mir_imagery \N 212836 0 0 77678 66 observation_unit_polygon_fir_imagery \N 212837 0 0 77679 66 observation_unit_polygon_tir_imagery \N 212838 0 0 77680 66 observation_unit_polygon_bw_background_removed_threshold_imagery \N 212839 0 0 77681 66 observation_unit_polygon_rgb_background_removed_threshold_imagery_channel_1 \N 212840 0 0 77682 66 observation_unit_polygon_rgb_background_removed_threshold_imagery_channel_2 \N 212841 0 0 77683 66 observation_unit_polygon_rgb_background_removed_threshold_imagery_channel_3 \N 212842 0 0 77684 66 observation_unit_polygon_blue_background_removed_threshold_imagery \N 212843 0 0 77685 66 observation_unit_polygon_green_background_removed_threshold_imagery \N 212844 0 0 78531 62 day 269 213690 0 0 77686 66 observation_unit_polygon_red_background_removed_threshold_imagery \N 212845 0 0 77687 66 observation_unit_polygon_red_edge_background_removed_threshold_imagery \N 212846 0 0 77688 66 observation_unit_polygon_nir_background_removed_threshold_imagery \N 212847 0 0 77689 66 observation_unit_polygon_mir_background_removed_threshold_imagery \N 212848 0 0 77690 66 observation_unit_polygon_fir_background_removed_threshold_imagery \N 212849 0 0 77691 66 observation_unit_polygon_tir_background_removed_threshold_imagery \N 212850 0 0 77692 66 observation_unit_polygon_tgi_imagery \N 212851 0 0 77693 66 observation_unit_polygon_vari_imagery \N 212852 0 0 77694 66 observation_unit_polygon_ndvi_imagery \N 212853 0 0 77695 66 observation_unit_polygon_ndre_imagery \N 212854 0 0 77696 66 observation_unit_polygon_background_removed_tgi_imagery \N 212855 0 0 77697 66 observation_unit_polygon_background_removed_vari_imagery \N 212856 0 0 77698 66 observation_unit_polygon_background_removed_ndvi_imagery \N 212857 0 0 77699 66 observation_unit_polygon_background_removed_ndre_imagery \N 212858 0 0 77700 66 observation_unit_polygon_original_background_removed_tgi_mask_imagery \N 212859 0 0 77701 66 observation_unit_polygon_original_background_removed_tgi_mask_imagery_channel_1 \N 212860 0 0 77702 66 observation_unit_polygon_original_background_removed_tgi_mask_imagery_channel_2 \N 212861 0 0 77703 66 observation_unit_polygon_original_background_removed_tgi_mask_imagery_channel_3 \N 212862 0 0 77704 66 observation_unit_polygon_original_background_removed_vari_mask_imagery \N 212863 0 0 77705 66 observation_unit_polygon_original_background_removed_vari_mask_imagery_channel_1 \N 212864 0 0 77706 66 observation_unit_polygon_original_background_removed_vari_mask_imagery_channel_2 \N 212865 0 0 77707 66 observation_unit_polygon_original_background_removed_vari_mask_imagery_channel_3 \N 212866 0 0 77708 66 observation_unit_polygon_original_nrn_background_removed_ndvi_mask_imagery \N 212867 0 0 77709 66 observation_unit_polygon_original_nrn_background_removed_ndvi_mask_imagery_channel_1 \N 212868 0 0 77710 66 observation_unit_polygon_original_nrn_background_removed_ndvi_mask_imagery_channel_2 \N 212869 0 0 77711 66 observation_unit_polygon_original_nren_background_removed_ndre_mask_imagery \N 212870 0 0 77712 66 observation_unit_polygon_original_nren_background_removed_ndre_mask_imagery_channel_1 \N 212871 0 0 77713 66 observation_unit_polygon_original_nren_background_removed_ndre_mask_imagery_channel_2 \N 212872 0 0 77714 66 observation_unit_polygon_original_background_removed_thresholded_tgi_mask_imagery \N 212873 0 0 77715 66 observation_unit_polygon_original_background_removed_thresholded_tgi_mask_imagery_channel_1 \N 212874 0 0 77716 66 observation_unit_polygon_original_background_removed_thresholded_tgi_mask_imagery_channel_2 \N 212875 0 0 77717 66 observation_unit_polygon_original_background_removed_thresholded_tgi_mask_imagery_channel_3 \N 212876 0 0 77718 66 observation_unit_polygon_original_background_removed_thresholded_vari_mask_imagery \N 212877 0 0 77719 66 observation_unit_polygon_original_background_removed_thresholded_vari_mask_imagery_channel_1 \N 212878 0 0 77720 66 observation_unit_polygon_original_background_removed_thresholded_vari_mask_imagery_channel_2 \N 212879 0 0 77721 66 observation_unit_polygon_original_background_removed_thresholded_vari_mask_imagery_channel_3 \N 212880 0 0 77722 66 observation_unit_polygon_original_nrn_background_removed_thresholded_ndvi_mask_imagery \N 212881 0 0 77723 66 observation_unit_polygon_original_nrn_background_removed_thresholded_ndvi_mask_imagery_channel_1 \N 212882 0 0 77724 66 observation_unit_polygon_original_nrn_background_removed_thresholded_ndvi_mask_imagery_channel_2 \N 212883 0 0 77725 66 observation_unit_polygon_original_nren_background_removed_thresholded_ndre_mask_imagery \N 212884 0 0 77726 66 observation_unit_polygon_original_nren_background_removed_thresholded_ndre_mask_imagery_channel_1 \N 212885 0 0 77727 66 observation_unit_polygon_original_nren_background_removed_thresholded_ndre_mask_imagery_channel_2 \N 212886 0 0 77728 66 observation_unit_polygon_fourier_transform_hpf20_bgr_denoised_stitched_image_channel_1 \N 212887 0 0 77729 66 observation_unit_polygon_fourier_transform_hpf30_bgr_denoised_stitched_image_channel_1 \N 212888 0 0 77730 66 observation_unit_polygon_fourier_transform_hpf40_bgr_denoised_stitched_image_channel_1 \N 212889 0 0 77731 66 observation_unit_polygon_fourier_transform_hpf20_bgr_denoised_stitched_image_channel_2 \N 212890 0 0 77732 66 observation_unit_polygon_fourier_transform_hpf30_bgr_denoised_stitched_image_channel_2 \N 212891 0 0 77733 66 observation_unit_polygon_fourier_transform_hpf40_bgr_denoised_stitched_image_channel_2 \N 212892 0 0 77734 66 observation_unit_polygon_fourier_transform_hpf20_bgr_denoised_stitched_image_channel_3 \N 212893 0 0 77735 66 observation_unit_polygon_fourier_transform_hpf30_bgr_denoised_stitched_image_channel_3 \N 212894 0 0 77736 66 observation_unit_polygon_fourier_transform_hpf40_bgr_denoised_stitched_image_channel_3 \N 212895 0 0 77737 66 observation_unit_polygon_fourier_transform_hpf20_bw_denoised_stitched_image_channel_1 \N 212896 0 0 77738 66 observation_unit_polygon_fourier_transform_hpf30_bw_denoised_stitched_image_channel_1 \N 212897 0 0 77739 66 observation_unit_polygon_fourier_transform_hpf40_bw_denoised_stitched_image_channel_1 \N 212898 0 0 77740 66 observation_unit_polygon_fourier_transform_hpf20_blue_denoised_stitched_image_channel_1 \N 212899 0 0 77741 66 observation_unit_polygon_fourier_transform_hpf30_blue_denoised_stitched_image_channel_1 \N 212900 0 0 77742 66 observation_unit_polygon_fourier_transform_hpf40_blue_denoised_stitched_image_channel_1 \N 212901 0 0 77743 66 observation_unit_polygon_fourier_transform_hpf20_green_denoised_stitched_image_channel_1 \N 212902 0 0 77744 66 observation_unit_polygon_fourier_transform_hpf30_green_denoised_stitched_image_channel_1 \N 212903 0 0 77745 66 observation_unit_polygon_fourier_transform_hpf40_green_denoised_stitched_image_channel_1 \N 212904 0 0 77746 66 observation_unit_polygon_fourier_transform_hpf20_red_denoised_stitched_image_channel_1 \N 212905 0 0 77747 66 observation_unit_polygon_fourier_transform_hpf30_red_denoised_stitched_image_channel_1 \N 212906 0 0 77748 66 observation_unit_polygon_fourier_transform_hpf40_red_denoised_stitched_image_channel_1 \N 212907 0 0 77749 66 observation_unit_polygon_fourier_transform_hpf20_rededge_denoised_stitched_image_channel_1 \N 212908 0 0 77750 66 observation_unit_polygon_fourier_transform_hpf30_rededge_denoised_stitched_image_channel_1 \N 212909 0 0 77751 66 observation_unit_polygon_fourier_transform_hpf40_rededge_denoised_stitched_image_channel_1 \N 212910 0 0 77752 66 observation_unit_polygon_fourier_transform_hpf20_nir_denoised_stitched_image_channel_1 \N 212911 0 0 77753 66 observation_unit_polygon_fourier_transform_hpf30_nir_denoised_stitched_image_channel_1 \N 212912 0 0 77754 66 observation_unit_polygon_fourier_transform_hpf40_nir_denoised_stitched_image_channel_1 \N 212913 0 0 77755 66 observation_unit_polygon_fourier_transform_hpf20_mir_denoised_stitched_image_channel_1 \N 212914 0 0 77756 66 observation_unit_polygon_fourier_transform_hpf30_mir_denoised_stitched_image_channel_1 \N 212915 0 0 77757 66 observation_unit_polygon_fourier_transform_hpf40_mir_denoised_stitched_image_channel_1 \N 212916 0 0 77758 66 observation_unit_polygon_fourier_transform_hpf20_fir_denoised_stitched_image_channel_1 \N 212917 0 0 77759 66 observation_unit_polygon_fourier_transform_hpf30_fir_denoised_stitched_image_channel_1 \N 212918 0 0 77760 66 observation_unit_polygon_fourier_transform_hpf40_fir_denoised_stitched_image_channel_1 \N 212919 0 0 77761 66 observation_unit_polygon_fourier_transform_hpf20_tir_denoised_stitched_image_channel_1 \N 212920 0 0 77762 66 observation_unit_polygon_fourier_transform_hpf30_tir_denoised_stitched_image_channel_1 \N 212921 0 0 77763 66 observation_unit_polygon_fourier_transform_hpf40_tir_denoised_stitched_image_channel_1 \N 212922 0 0 77764 66 observation_unit_polygon_fourier_transform_hpf20_bgr_calculate_tgi_drone_imagery_channel_1 \N 212923 0 0 77765 66 observation_unit_polygon_fourier_transform_hpf30_bgr_calculate_tgi_drone_imagery_channel_1 \N 212924 0 0 77766 66 observation_unit_polygon_fourier_transform_hpf40_bgr_calculate_tgi_drone_imagery_channel_1 \N 212925 0 0 77767 66 observation_unit_polygon_fourier_transform_hpf20_bgr_calculate_vari_drone_imagery_channel_1 \N 212926 0 0 77768 66 observation_unit_polygon_fourier_transform_hpf30_bgr_calculate_vari_drone_imagery_channel_1 \N 212927 0 0 77769 66 observation_unit_polygon_fourier_transform_hpf40_bgr_calculate_vari_drone_imagery_channel_1 \N 212928 0 0 77770 66 observation_unit_polygon_fourier_transform_hpf20_nrn_calculate_ndvi_drone_imagery_channel_1 \N 212929 0 0 77771 66 observation_unit_polygon_fourier_transform_hpf30_nrn_calculate_ndvi_drone_imagery_channel_1 \N 212930 0 0 77772 66 observation_unit_polygon_fourier_transform_hpf40_nrn_calculate_ndvi_drone_imagery_channel_1 \N 212931 0 0 77773 66 observation_unit_polygon_fourier_transform_hpf20_nren_calculate_ndre_drone_imagery_channel_1 \N 212932 0 0 77774 66 observation_unit_polygon_fourier_transform_hpf30_nren_calculate_ndre_drone_imagery_channel_1 \N 212933 0 0 77775 66 observation_unit_polygon_fourier_transform_hpf40_nren_calculate_ndre_drone_imagery_channel_1 \N 212934 0 0 77776 66 observation_unit_polygon_fourier_transform_hpf20_bgr_calculate_thresholded_tgi_drone_imagery_channel_1 \N 212935 0 0 77777 66 observation_unit_polygon_fourier_transform_hpf30_bgr_calculate_thresholded_tgi_drone_imagery_channel_1 \N 212936 0 0 77778 66 observation_unit_polygon_fourier_transform_hpf40_bgr_calculate_thresholded_tgi_drone_imagery_channel_1 \N 212937 0 0 77779 66 observation_unit_polygon_fourier_transform_hpf20_bgr_calculate_thresholded_vari_drone_imagery_channel_1 \N 212938 0 0 77780 66 observation_unit_polygon_fourier_transform_hpf30_bgr_calculate_thresholded_vari_drone_imagery_channel_1 \N 212939 0 0 77781 66 observation_unit_polygon_fourier_transform_hpf40_bgr_calculate_thresholded_vari_drone_imagery_channel_1 \N 212940 0 0 77782 66 observation_unit_polygon_fourier_transform_hpf20_nrn_calculate_thresholded_ndvi_drone_imagery_channel_1 \N 212941 0 0 77783 66 observation_unit_polygon_fourier_transform_hpf30_nrn_calculate_thresholded_ndvi_drone_imagery_channel_1 \N 212942 0 0 77784 66 observation_unit_polygon_fourier_transform_hpf40_nrn_calculate_thresholded_ndvi_drone_imagery_channel_1 \N 212943 0 0 77785 66 observation_unit_polygon_fourier_transform_hpf20_nren_calculate_thresholded_ndre_drone_imagery_channel_1 \N 212944 0 0 77786 66 observation_unit_polygon_fourier_transform_hpf30_nren_calculate_thresholded_ndre_drone_imagery_channel_1 \N 212945 0 0 77787 66 observation_unit_polygon_fourier_transform_hpf40_nren_calculate_thresholded_ndre_drone_imagery_channel_1 \N 212946 0 0 77788 66 observation_unit_polygon_fourier_transform_hpf20_bgr_denoised_background_threshold_removed_image_channel_1 \N 212947 0 0 77789 66 observation_unit_polygon_fourier_transform_hpf30_bgr_denoised_background_threshold_removed_image_channel_1 \N 212948 0 0 77790 66 observation_unit_polygon_fourier_transform_hpf40_bgr_denoised_background_threshold_removed_image_channel_1 \N 212949 0 0 77791 66 observation_unit_polygon_fourier_transform_hpf20_bgr_denoised_background_threshold_removed_image_channel_2 \N 212950 0 0 77792 66 observation_unit_polygon_fourier_transform_hpf30_bgr_denoised_background_threshold_removed_image_channel_2 \N 212951 0 0 77793 66 observation_unit_polygon_fourier_transform_hpf40_bgr_denoised_background_threshold_removed_image_channel_2 \N 212952 0 0 77794 66 observation_unit_polygon_fourier_transform_hpf20_bgr_denoised_background_threshold_removed_image_channel_3 \N 212953 0 0 77795 66 observation_unit_polygon_fourier_transform_hpf30_bgr_denoised_background_threshold_removed_image_channel_3 \N 212954 0 0 77796 66 observation_unit_polygon_fourier_transform_hpf40_bgr_denoised_background_threshold_removed_image_channel_3 \N 212955 0 0 77797 66 observation_unit_polygon_fourier_transform_hpf20_blue_denoised_background_threshold_removed_image_channel_1 \N 212956 0 0 77798 66 observation_unit_polygon_fourier_transform_hpf30_blue_denoised_background_threshold_removed_image_channel_1 \N 212957 0 0 77799 66 observation_unit_polygon_fourier_transform_hpf40_blue_denoised_background_threshold_removed_image_channel_1 \N 212958 0 0 77800 66 observation_unit_polygon_fourier_transform_hpf20_bw_denoised_background_threshold_removed_image_channel_1 \N 212959 0 0 77801 66 observation_unit_polygon_fourier_transform_hpf30_bw_denoised_background_threshold_removed_image_channel_1 \N 212960 0 0 77802 66 observation_unit_polygon_fourier_transform_hpf40_bw_denoised_background_threshold_removed_image_channel_1 \N 212961 0 0 77803 66 observation_unit_polygon_fourier_transform_hpf20_green_denoised_background_threshold_removed_image_channel_1 \N 212962 0 0 77804 66 observation_unit_polygon_fourier_transform_hpf30_green_denoised_background_threshold_removed_image_channel_1 \N 212963 0 0 77805 66 observation_unit_polygon_fourier_transform_hpf40_green_denoised_background_threshold_removed_image_channel_1 \N 212964 0 0 77806 66 observation_unit_polygon_fourier_transform_hpf20_red_denoised_background_threshold_removed_image_channel_1 \N 212965 0 0 77807 66 observation_unit_polygon_fourier_transform_hpf30_red_denoised_background_threshold_removed_image_channel_1 \N 212966 0 0 77808 66 observation_unit_polygon_fourier_transform_hpf40_red_denoised_background_threshold_removed_image_channel_1 \N 212967 0 0 77809 66 observation_unit_polygon_fourier_transform_hpf20_rededge_denoised_background_threshold_removed_image_channel_1 \N 212968 0 0 77810 66 observation_unit_polygon_fourier_transform_hpf30_rededge_denoised_background_threshold_removed_image_channel_1 \N 212969 0 0 77811 66 observation_unit_polygon_fourier_transform_hpf40_rededge_denoised_background_threshold_removed_image_channel_1 \N 212970 0 0 77812 66 observation_unit_polygon_fourier_transform_hpf20_nir_denoised_background_threshold_removed_image_channel_1 \N 212971 0 0 77813 66 observation_unit_polygon_fourier_transform_hpf30_nir_denoised_background_threshold_removed_image_channel_1 \N 212972 0 0 77814 66 observation_unit_polygon_fourier_transform_hpf40_nir_denoised_background_threshold_removed_image_channel_1 \N 212973 0 0 77815 66 observation_unit_polygon_fourier_transform_hpf20_mir_denoised_background_threshold_removed_image_channel_1 \N 212974 0 0 77816 66 observation_unit_polygon_fourier_transform_hpf30_mir_denoised_background_threshold_removed_image_channel_1 \N 212975 0 0 77817 66 observation_unit_polygon_fourier_transform_hpf40_mir_denoised_background_threshold_removed_image_channel_1 \N 212976 0 0 77818 66 observation_unit_polygon_fourier_transform_hpf20_fir_denoised_background_threshold_removed_image_channel_1 \N 212977 0 0 77819 66 observation_unit_polygon_fourier_transform_hpf30_fir_denoised_background_threshold_removed_image_channel_1 \N 212978 0 0 77820 66 observation_unit_polygon_fourier_transform_hpf40_fir_denoised_background_threshold_removed_image_channel_1 \N 212979 0 0 77821 66 observation_unit_polygon_fourier_transform_hpf20_tir_denoised_background_threshold_removed_image_channel_1 \N 212980 0 0 77822 66 observation_unit_polygon_fourier_transform_hpf30_tir_denoised_background_threshold_removed_image_channel_1 \N 212981 0 0 77823 66 observation_unit_polygon_fourier_transform_hpf40_tir_denoised_background_threshold_removed_image_channel_1 \N 212982 0 0 77824 66 observation_unit_polygon_fourier_transform_hpf20_bgr_denoised_background_removed_tgi_mask_channel_1 \N 212983 0 0 77825 66 observation_unit_polygon_fourier_transform_hpf30_bgr_denoised_background_removed_tgi_mask_channel_1 \N 212984 0 0 77826 66 observation_unit_polygon_fourier_transform_hpf40_bgr_denoised_background_removed_tgi_mask_channel_1 \N 212985 0 0 77827 66 observation_unit_polygon_fourier_transform_hpf20_bgr_denoised_background_removed_tgi_mask_channel_2 \N 212986 0 0 77828 66 observation_unit_polygon_fourier_transform_hpf30_bgr_denoised_background_removed_tgi_mask_channel_2 \N 212987 0 0 77829 66 observation_unit_polygon_fourier_transform_hpf40_bgr_denoised_background_removed_tgi_mask_channel_2 \N 212988 0 0 77830 66 observation_unit_polygon_fourier_transform_hpf20_bgr_denoised_background_removed_tgi_mask_channel_3 \N 212989 0 0 77831 66 observation_unit_polygon_fourier_transform_hpf30_bgr_denoised_background_removed_tgi_mask_channel_3 \N 212990 0 0 77832 66 observation_unit_polygon_fourier_transform_hpf40_bgr_denoised_background_removed_tgi_mask_channel_3 \N 212991 0 0 77833 66 observation_unit_polygon_fourier_transform_hpf20_bgr_denoised_background_removed_thresholded_tgi_mask_channel_1 \N 212992 0 0 77834 66 observation_unit_polygon_fourier_transform_hpf30_bgr_denoised_background_removed_thresholded_tgi_mask_channel_1 \N 212993 0 0 77835 66 observation_unit_polygon_fourier_transform_hpf40_bgr_denoised_background_removed_thresholded_tgi_mask_channel_1 \N 212994 0 0 77836 66 observation_unit_polygon_fourier_transform_hpf20_bgr_denoised_background_removed_thresholded_tgi_mask_channel_2 \N 212995 0 0 77837 66 observation_unit_polygon_fourier_transform_hpf30_bgr_denoised_background_removed_thresholded_tgi_mask_channel_2 \N 212996 0 0 77838 66 observation_unit_polygon_fourier_transform_hpf40_bgr_denoised_background_removed_thresholded_tgi_mask_channel_2 \N 212997 0 0 77839 66 observation_unit_polygon_fourier_transform_hpf20_bgr_denoised_background_removed_thresholded_tgi_mask_channel_3 \N 212998 0 0 77840 66 observation_unit_polygon_fourier_transform_hpf30_bgr_denoised_background_removed_thresholded_tgi_mask_channel_3 \N 212999 0 0 77841 66 observation_unit_polygon_fourier_transform_hpf40_bgr_denoised_background_removed_thresholded_tgi_mask_channel_3 \N 213000 0 0 77842 66 observation_unit_polygon_fourier_transform_hpf20_bgr_denoised_background_removed_vari_mask_channel_1 \N 213001 0 0 77843 66 observation_unit_polygon_fourier_transform_hpf30_bgr_denoised_background_removed_vari_mask_channel_1 \N 213002 0 0 77844 66 observation_unit_polygon_fourier_transform_hpf40_bgr_denoised_background_removed_vari_mask_channel_1 \N 213003 0 0 77845 66 observation_unit_polygon_fourier_transform_hpf20_bgr_denoised_background_removed_vari_mask_channel_2 \N 213004 0 0 77846 66 observation_unit_polygon_fourier_transform_hpf30_bgr_denoised_background_removed_vari_mask_channel_2 \N 213005 0 0 77847 66 observation_unit_polygon_fourier_transform_hpf40_bgr_denoised_background_removed_vari_mask_channel_2 \N 213006 0 0 77848 66 observation_unit_polygon_fourier_transform_hpf20_bgr_denoised_background_removed_vari_mask_channel_3 \N 213007 0 0 77849 66 observation_unit_polygon_fourier_transform_hpf30_bgr_denoised_background_removed_vari_mask_channel_3 \N 213008 0 0 77850 66 observation_unit_polygon_fourier_transform_hpf40_bgr_denoised_background_removed_vari_mask_channel_3 \N 213009 0 0 77851 66 observation_unit_polygon_fourier_transform_hpf20_bgr_denoised_background_removed_thresholded_vari_mask_channel_1 \N 213010 0 0 77852 66 observation_unit_polygon_fourier_transform_hpf30_bgr_denoised_background_removed_thresholded_vari_mask_channel_1 \N 213011 0 0 77853 66 observation_unit_polygon_fourier_transform_hpf40_bgr_denoised_background_removed_thresholded_vari_mask_channel_1 \N 213012 0 0 77915 66 calculate_phenotypes_orb_drone_imagery_tgi \N 213074 0 0 77854 66 observation_unit_polygon_fourier_transform_hpf20_bgr_denoised_background_removed_thresholded_vari_mask_channel_2 \N 213013 0 0 77855 66 observation_unit_polygon_fourier_transform_hpf30_bgr_denoised_background_removed_thresholded_vari_mask_channel_2 \N 213014 0 0 77856 66 observation_unit_polygon_fourier_transform_hpf40_bgr_denoised_background_removed_thresholded_vari_mask_channel_2 \N 213015 0 0 77857 66 observation_unit_polygon_fourier_transform_hpf20_bgr_denoised_background_removed_thresholded_vari_mask_channel_3 \N 213016 0 0 77858 66 observation_unit_polygon_fourier_transform_hpf30_bgr_denoised_background_removed_thresholded_vari_mask_channel_3 \N 213017 0 0 77859 66 observation_unit_polygon_fourier_transform_hpf40_bgr_denoised_background_removed_thresholded_vari_mask_channel_3 \N 213018 0 0 77860 66 observation_unit_polygon_fourier_transform_hpf20_nrn_denoised_background_removed_ndvi_mask_channel_1 \N 213019 0 0 77861 66 observation_unit_polygon_fourier_transform_hpf30_nrn_denoised_background_removed_ndvi_mask_channel_1 \N 213020 0 0 77862 66 observation_unit_polygon_fourier_transform_hpf40_nrn_denoised_background_removed_ndvi_mask_channel_1 \N 213021 0 0 77863 66 observation_unit_polygon_fourier_transform_hpf20_nrn_denoised_background_removed_ndvi_mask_channel_2 \N 213022 0 0 77864 66 observation_unit_polygon_fourier_transform_hpf30_nrn_denoised_background_removed_ndvi_mask_channel_2 \N 213023 0 0 77865 66 observation_unit_polygon_fourier_transform_hpf40_nrn_denoised_background_removed_ndvi_mask_channel_2 \N 213024 0 0 77866 66 observation_unit_polygon_fourier_transform_hpf20_nrn_denoised_background_removed_thresholded_ndvi_mask_channel_1 \N 213025 0 0 77867 66 observation_unit_polygon_fourier_transform_hpf30_nrn_denoised_background_removed_thresholded_ndvi_mask_channel_1 \N 213026 0 0 77868 66 observation_unit_polygon_fourier_transform_hpf40_nrn_denoised_background_removed_thresholded_ndvi_mask_channel_1 \N 213027 0 0 77869 66 observation_unit_polygon_fourier_transform_hpf20_nrn_denoised_background_removed_thresholded_ndvi_mask_channel_2 \N 213028 0 0 77870 66 observation_unit_polygon_fourier_transform_hpf30_nrn_denoised_background_removed_thresholded_ndvi_mask_channel_2 \N 213029 0 0 77871 66 observation_unit_polygon_fourier_transform_hpf40_nrn_denoised_background_removed_thresholded_ndvi_mask_channel_2 \N 213030 0 0 77872 66 observation_unit_polygon_fourier_transform_hpf20_nren_denoised_background_removed_ndre_mask_channel_1 \N 213031 0 0 77873 66 observation_unit_polygon_fourier_transform_hpf30_nren_denoised_background_removed_ndre_mask_channel_1 \N 213032 0 0 77874 66 observation_unit_polygon_fourier_transform_hpf40_nren_denoised_background_removed_ndre_mask_channel_1 \N 213033 0 0 77875 66 observation_unit_polygon_fourier_transform_hpf20_nren_denoised_background_removed_ndre_mask_channel_2 \N 213034 0 0 77876 66 observation_unit_polygon_fourier_transform_hpf30_nren_denoised_background_removed_ndre_mask_channel_2 \N 213035 0 0 77877 66 observation_unit_polygon_fourier_transform_hpf40_nren_denoised_background_removed_ndre_mask_channel_2 \N 213036 0 0 77878 66 observation_unit_polygon_fourier_transform_hpf20_nren_denoised_background_removed_thresholded_ndre_mask_channel_1 \N 213037 0 0 77879 66 observation_unit_polygon_fourier_transform_hpf30_nren_denoised_background_removed_thresholded_ndre_mask_channel_1 \N 213038 0 0 77880 66 observation_unit_polygon_fourier_transform_hpf40_nren_denoised_background_removed_thresholded_ndre_mask_channel_1 \N 213039 0 0 77881 66 observation_unit_polygon_fourier_transform_hpf20_nren_denoised_background_removed_thresholded_ndre_mask_channel_2 \N 213040 0 0 77882 66 observation_unit_polygon_fourier_transform_hpf30_nren_denoised_background_removed_thresholded_ndre_mask_channel_2 \N 213041 0 0 77883 66 observation_unit_polygon_fourier_transform_hpf40_nren_denoised_background_removed_thresholded_ndre_mask_channel_2 \N 213042 0 0 77884 66 threshold_background_removed_stitched_drone_imagery_blue \N 213043 0 0 77885 66 threshold_background_removed_stitched_drone_imagery_green \N 213044 0 0 77886 66 threshold_background_removed_stitched_drone_imagery_red \N 213045 0 0 77887 66 threshold_background_removed_stitched_drone_imagery_red_edge \N 213046 0 0 77888 66 threshold_background_removed_stitched_drone_imagery_nir \N 213047 0 0 77889 66 threshold_background_removed_stitched_drone_imagery_mir \N 213048 0 0 77890 66 threshold_background_removed_stitched_drone_imagery_fir \N 213049 0 0 77891 66 threshold_background_removed_stitched_drone_imagery_tir \N 213050 0 0 77892 66 threshold_background_removed_stitched_drone_imagery_bw \N 213051 0 0 77893 66 threshold_background_removed_stitched_drone_imagery_rgb_channel_1 \N 213052 0 0 77894 66 threshold_background_removed_stitched_drone_imagery_rgb_channel_2 \N 213053 0 0 77895 66 threshold_background_removed_stitched_drone_imagery_rgb_channel_3 \N 213054 0 0 77896 66 threshold_background_removed_temporary_stitched_drone_imagery \N 213055 0 0 77897 66 threshold_background_removed_tgi_stitched_drone_imagery \N 213056 0 0 77898 66 threshold_background_removed_vari_stitched_drone_imagery \N 213057 0 0 77899 66 threshold_background_removed_ndvi_stitched_drone_imagery \N 213058 0 0 77900 66 threshold_background_removed_ndre_stitched_drone_imagery \N 213059 0 0 77901 66 denoised_background_removed_tgi_mask_original \N 213060 0 0 77902 66 denoised_background_removed_vari_mask_original \N 213061 0 0 77903 66 denoised_background_removed_ndvi_mask_original \N 213062 0 0 77904 66 denoised_background_removed_ndre_mask_original \N 213063 0 0 77905 66 denoised_background_removed_thresholded_tgi_mask_original \N 213064 0 0 77906 66 denoised_background_removed_thresholded_vari_mask_original \N 213065 0 0 77907 66 denoised_background_removed_thresholded_ndvi_mask_original \N 213066 0 0 77908 66 denoised_background_removed_thresholded_ndre_mask_original \N 213067 0 0 77909 66 calculate_phenotypes_sift_drone_imagery \N 213068 0 0 77910 66 calculate_phenotypes_sift_drone_imagery_tgi \N 213069 0 0 77911 66 calculate_phenotypes_sift_drone_imagery_vari \N 213070 0 0 77912 66 calculate_phenotypes_sift_drone_imagery_ndvi \N 213071 0 0 77913 66 calculate_phenotypes_sift_drone_imagery_ndre \N 213072 0 0 77914 66 calculate_phenotypes_orb_drone_imagery \N 213073 0 0 77916 66 calculate_phenotypes_orb_drone_imagery_vari \N 213075 0 0 77917 66 calculate_phenotypes_orb_drone_imagery_ndvi \N 213076 0 0 77918 66 calculate_phenotypes_orb_drone_imagery_ndre \N 213077 0 0 77919 66 calculate_phenotypes_surf_drone_imagery \N 213078 0 0 77920 66 calculate_phenotypes_surf_drone_imagery_tgi \N 213079 0 0 77921 66 calculate_phenotypes_surf_drone_imagery_vari \N 213080 0 0 77922 66 calculate_phenotypes_surf_drone_imagery_ndvi \N 213081 0 0 77923 66 calculate_phenotypes_surf_drone_imagery_ndre \N 213082 0 0 77924 66 calculate_phenotypes_fourier_transform_drone_imagery \N 213083 0 0 77925 66 calculate_tgi_drone_imagery \N 213084 0 0 77926 66 calculate_tgi_temporary_drone_imagery \N 213085 0 0 77927 66 calculate_vari_drone_imagery \N 213086 0 0 77928 66 calculate_vari_temporary_drone_imagery \N 213087 0 0 77929 66 calculate_ndvi_drone_imagery \N 213088 0 0 77930 66 calculate_ndvi_temporary_drone_imagery \N 213089 0 0 77931 66 calculate_ndre_drone_imagery \N 213090 0 0 77932 66 calculate_ndre_temporary_drone_imagery \N 213091 0 0 77933 66 calculate_fourier_transform_hpf20_bgr_denoised_stitched_image_channel_1 \N 213092 0 0 77934 66 calculate_fourier_transform_hpf30_bgr_denoised_stitched_image_channel_1 \N 213093 0 0 77935 66 calculate_fourier_transform_hpf40_bgr_denoised_stitched_image_channel_1 \N 213094 0 0 77936 66 calculate_fourier_transform_hpf20_bgr_denoised_stitched_image_channel_2 \N 213095 0 0 77937 66 calculate_fourier_transform_hpf30_bgr_denoised_stitched_image_channel_2 \N 213096 0 0 77938 66 calculate_fourier_transform_hpf40_bgr_denoised_stitched_image_channel_2 \N 213097 0 0 77939 66 calculate_fourier_transform_hpf20_bgr_denoised_stitched_image_channel_3 \N 213098 0 0 77940 66 calculate_fourier_transform_hpf30_bgr_denoised_stitched_image_channel_3 \N 213099 0 0 77941 66 calculate_fourier_transform_hpf40_bgr_denoised_stitched_image_channel_3 \N 213100 0 0 77942 66 calculate_fourier_transform_hpf20_blue_denoised_stitched_image_channel_1 \N 213101 0 0 77943 66 calculate_fourier_transform_hpf30_blue_denoised_stitched_image_channel_1 \N 213102 0 0 77944 66 calculate_fourier_transform_hpf40_blue_denoised_stitched_image_channel_1 \N 213103 0 0 77945 66 calculate_fourier_transform_hpf20_green_denoised_stitched_image_channel_1 \N 213104 0 0 77946 66 calculate_fourier_transform_hpf30_green_denoised_stitched_image_channel_1 \N 213105 0 0 77947 66 calculate_fourier_transform_hpf40_green_denoised_stitched_image_channel_1 \N 213106 0 0 77948 66 calculate_fourier_transform_hpf20_red_denoised_stitched_image_channel_1 \N 213107 0 0 77949 66 calculate_fourier_transform_hpf30_red_denoised_stitched_image_channel_1 \N 213108 0 0 77950 66 calculate_fourier_transform_hpf40_red_denoised_stitched_image_channel_1 \N 213109 0 0 77951 66 calculate_fourier_transform_hpf20_rededge_denoised_stitched_image_channel_1 \N 213110 0 0 77952 66 calculate_fourier_transform_hpf30_rededge_denoised_stitched_image_channel_1 \N 213111 0 0 77953 66 calculate_fourier_transform_hpf40_rededge_denoised_stitched_image_channel_1 \N 213112 0 0 77954 66 calculate_fourier_transform_hpf20_nir_denoised_stitched_image_channel_1 \N 213113 0 0 77955 66 calculate_fourier_transform_hpf30_nir_denoised_stitched_image_channel_1 \N 213114 0 0 77956 66 calculate_fourier_transform_hpf40_nir_denoised_stitched_image_channel_1 \N 213115 0 0 77957 66 calculate_fourier_transform_hpf20_mir_denoised_stitched_image_channel_1 \N 213116 0 0 77958 66 calculate_fourier_transform_hpf30_mir_denoised_stitched_image_channel_1 \N 213117 0 0 77959 66 calculate_fourier_transform_hpf40_mir_denoised_stitched_image_channel_1 \N 213118 0 0 77960 66 calculate_fourier_transform_hpf20_fir_denoised_stitched_image_channel_1 \N 213119 0 0 77961 66 calculate_fourier_transform_hpf30_fir_denoised_stitched_image_channel_1 \N 213120 0 0 77962 66 calculate_fourier_transform_hpf40_fir_denoised_stitched_image_channel_1 \N 213121 0 0 77963 66 calculate_fourier_transform_hpf20_tir_denoised_stitched_image_channel_1 \N 213122 0 0 77964 66 calculate_fourier_transform_hpf30_tir_denoised_stitched_image_channel_1 \N 213123 0 0 77965 66 calculate_fourier_transform_hpf40_tir_denoised_stitched_image_channel_1 \N 213124 0 0 77966 66 calculate_fourier_transform_hpf20_bw_denoised_stitched_image_channel_1 \N 213125 0 0 77967 66 calculate_fourier_transform_hpf30_bw_denoised_stitched_image_channel_1 \N 213126 0 0 77968 66 calculate_fourier_transform_hpf40_bw_denoised_stitched_image_channel_1 \N 213127 0 0 77969 66 calculate_fourier_transform_hpf20_blue_threshold_background_removed_stitched_drone_imagery_channel_1 \N 213128 0 0 77970 66 calculate_fourier_transform_hpf30_blue_threshold_background_removed_stitched_drone_imagery_channel_1 \N 213129 0 0 77971 66 calculate_fourier_transform_hpf40_blue_threshold_background_removed_stitched_drone_imagery_channel_1 \N 213130 0 0 77972 66 calculate_fourier_transform_hpf20_green_threshold_background_removed_stitched_drone_imagery_channel_1 \N 213131 0 0 77973 66 calculate_fourier_transform_hpf30_green_threshold_background_removed_stitched_drone_imagery_channel_1 \N 213132 0 0 77974 66 calculate_fourier_transform_hpf40_green_threshold_background_removed_stitched_drone_imagery_channel_1 \N 213133 0 0 77975 66 calculate_fourier_transform_hpf20_red_threshold_background_removed_stitched_drone_imagery_channel_1 \N 213134 0 0 77976 66 calculate_fourier_transform_hpf30_red_threshold_background_removed_stitched_drone_imagery_channel_1 \N 213135 0 0 77977 66 calculate_fourier_transform_hpf40_red_threshold_background_removed_stitched_drone_imagery_channel_1 \N 213136 0 0 77978 66 calculate_fourier_transform_hpf20_rededge_threshold_background_removed_stitched_drone_imagery_channel_1 \N 213137 0 0 77979 66 calculate_fourier_transform_hpf30_rededge_threshold_background_removed_stitched_drone_imagery_channel_1 \N 213138 0 0 77980 66 calculate_fourier_transform_hpf40_rededge_threshold_background_removed_stitched_drone_imagery_channel_1 \N 213139 0 0 77981 66 calculate_fourier_transform_hpf20_nir_threshold_background_removed_stitched_drone_imagery_channel_1 \N 213140 0 0 78093 38 drone_run_band_rotate_angle \N 213252 0 0 78532 62 day 295 213691 0 0 77982 66 calculate_fourier_transform_hpf30_nir_threshold_background_removed_stitched_drone_imagery_channel_1 \N 213141 0 0 77983 66 calculate_fourier_transform_hpf40_nir_threshold_background_removed_stitched_drone_imagery_channel_1 \N 213142 0 0 77984 66 calculate_fourier_transform_hpf20_mir_threshold_background_removed_stitched_drone_imagery_channel_1 \N 213143 0 0 77985 66 calculate_fourier_transform_hpf30_mir_threshold_background_removed_stitched_drone_imagery_channel_1 \N 213144 0 0 77986 66 calculate_fourier_transform_hpf40_mir_threshold_background_removed_stitched_drone_imagery_channel_1 \N 213145 0 0 77987 66 calculate_fourier_transform_hpf20_fir_threshold_background_removed_stitched_drone_imagery_channel_1 \N 213146 0 0 77988 66 calculate_fourier_transform_hpf30_fir_threshold_background_removed_stitched_drone_imagery_channel_1 \N 213147 0 0 77989 66 calculate_fourier_transform_hpf40_fir_threshold_background_removed_stitched_drone_imagery_channel_1 \N 213148 0 0 77990 66 calculate_fourier_transform_hpf20_tir_threshold_background_removed_stitched_drone_imagery_channel_1 \N 213149 0 0 77991 66 calculate_fourier_transform_hpf30_tir_threshold_background_removed_stitched_drone_imagery_channel_1 \N 213150 0 0 77992 66 calculate_fourier_transform_hpf40_tir_threshold_background_removed_stitched_drone_imagery_channel_1 \N 213151 0 0 77993 66 calculate_fourier_transform_hpf20_bw_threshold_background_removed_stitched_drone_imagery_channel_1 \N 213152 0 0 77994 66 calculate_fourier_transform_hpf30_bw_threshold_background_removed_stitched_drone_imagery_channel_1 \N 213153 0 0 77995 66 calculate_fourier_transform_hpf40_bw_threshold_background_removed_stitched_drone_imagery_channel_1 \N 213154 0 0 77996 66 calculate_fourier_transform_hpf20_bgr_threshold_background_removed_stitched_drone_imagery_channel_1 \N 213155 0 0 77997 66 calculate_fourier_transform_hpf30_bgr_threshold_background_removed_stitched_drone_imagery_channel_1 \N 213156 0 0 77998 66 calculate_fourier_transform_hpf40_bgr_threshold_background_removed_stitched_drone_imagery_channel_1 \N 213157 0 0 77999 66 calculate_fourier_transform_hpf20_bgr_threshold_background_removed_stitched_drone_imagery_channel_2 \N 213158 0 0 78000 66 calculate_fourier_transform_hpf30_bgr_threshold_background_removed_stitched_drone_imagery_channel_2 \N 213159 0 0 78001 66 calculate_fourier_transform_hpf40_bgr_threshold_background_removed_stitched_drone_imagery_channel_2 \N 213160 0 0 78002 66 calculate_fourier_transform_hpf20_bgr_threshold_background_removed_stitched_drone_imagery_channel_3 \N 213161 0 0 78003 66 calculate_fourier_transform_hpf30_bgr_threshold_background_removed_stitched_drone_imagery_channel_3 \N 213162 0 0 78004 66 calculate_fourier_transform_hpf40_bgr_threshold_background_removed_stitched_drone_imagery_channel_3 \N 213163 0 0 78005 66 calculate_fourier_transform_hpf20_bgr_threshold_background_removed_tgi_stitched_drone_imagery_channel_1 \N 213164 0 0 78006 66 calculate_fourier_transform_hpf30_bgr_threshold_background_removed_tgi_stitched_drone_imagery_channel_1 \N 213165 0 0 78007 66 calculate_fourier_transform_hpf40_bgr_threshold_background_removed_tgi_stitched_drone_imagery_channel_1 \N 213166 0 0 78008 66 calculate_fourier_transform_hpf20_bgr_threshold_background_removed_vari_stitched_drone_imagery_channel_1 \N 213167 0 0 78009 66 calculate_fourier_transform_hpf30_bgr_threshold_background_removed_vari_stitched_drone_imagery_channel_1 \N 213168 0 0 78010 66 calculate_fourier_transform_hpf40_bgr_threshold_background_removed_vari_stitched_drone_imagery_channel_1 \N 213169 0 0 78011 66 calculate_fourier_transform_hpf20_nrn_threshold_background_removed_ndvi_stitched_drone_imagery_channel_1 \N 213170 0 0 78012 66 calculate_fourier_transform_hpf30_nrn_threshold_background_removed_ndvi_stitched_drone_imagery_channel_1 \N 213171 0 0 78013 66 calculate_fourier_transform_hpf40_nrn_threshold_background_removed_ndvi_stitched_drone_imagery_channel_1 \N 213172 0 0 78014 66 calculate_fourier_transform_hpf20_nren_threshold_background_removed_ndre_stitched_drone_imagery_channel_1 \N 213173 0 0 78015 66 calculate_fourier_transform_hpf30_nren_threshold_background_removed_ndre_stitched_drone_imagery_channel_1 \N 213174 0 0 78016 66 calculate_fourier_transform_hpf40_nren_threshold_background_removed_ndre_stitched_drone_imagery_channel_1 \N 213175 0 0 78017 66 calculate_fourier_transform_hpf20_bgr_denoised_background_removed_tgi_mask_original_channel_1 \N 213176 0 0 78018 66 calculate_fourier_transform_hpf30_bgr_denoised_background_removed_tgi_mask_original_channel_1 \N 213177 0 0 78019 66 calculate_fourier_transform_hpf40_bgr_denoised_background_removed_tgi_mask_original_channel_1 \N 213178 0 0 78020 66 calculate_fourier_transform_hpf20_bgr_denoised_background_removed_tgi_mask_original_channel_2 \N 213179 0 0 78021 66 calculate_fourier_transform_hpf30_bgr_denoised_background_removed_tgi_mask_original_channel_2 \N 213180 0 0 78022 66 calculate_fourier_transform_hpf40_bgr_denoised_background_removed_tgi_mask_original_channel_2 \N 213181 0 0 78023 66 calculate_fourier_transform_hpf20_bgr_denoised_background_removed_tgi_mask_original_channel_3 \N 213182 0 0 78024 66 calculate_fourier_transform_hpf30_bgr_denoised_background_removed_tgi_mask_original_channel_3 \N 213183 0 0 78025 66 calculate_fourier_transform_hpf40_bgr_denoised_background_removed_tgi_mask_original_channel_3 \N 213184 0 0 78026 66 calculate_fourier_transform_hpf20_bgr_denoised_background_removed_vari_mask_original_channel_1 \N 213185 0 0 78027 66 calculate_fourier_transform_hpf30_bgr_denoised_background_removed_vari_mask_original_channel_1 \N 213186 0 0 78028 66 calculate_fourier_transform_hpf40_bgr_denoised_background_removed_vari_mask_original_channel_1 \N 213187 0 0 78029 66 calculate_fourier_transform_hpf20_bgr_denoised_background_removed_vari_mask_original_channel_2 \N 213188 0 0 78030 66 calculate_fourier_transform_hpf30_bgr_denoised_background_removed_vari_mask_original_channel_2 \N 213189 0 0 78031 66 calculate_fourier_transform_hpf40_bgr_denoised_background_removed_vari_mask_original_channel_2 \N 213190 0 0 78032 66 calculate_fourier_transform_hpf20_bgr_denoised_background_removed_vari_mask_original_channel_3 \N 213191 0 0 78033 66 calculate_fourier_transform_hpf30_bgr_denoised_background_removed_vari_mask_original_channel_3 \N 213192 0 0 78034 66 calculate_fourier_transform_hpf40_bgr_denoised_background_removed_vari_mask_original_channel_3 \N 213193 0 0 78035 66 calculate_fourier_transform_hpf20_nrn_denoised_background_removed_ndvi_mask_original_channel_1 \N 213194 0 0 78529 62 hour 12 213688 0 0 78036 66 calculate_fourier_transform_hpf30_nrn_denoised_background_removed_ndvi_mask_original_channel_1 \N 213195 0 0 78037 66 calculate_fourier_transform_hpf40_nrn_denoised_background_removed_ndvi_mask_original_channel_1 \N 213196 0 0 78038 66 calculate_fourier_transform_hpf20_nrn_denoised_background_removed_ndvi_mask_original_channel_2 \N 213197 0 0 78039 66 calculate_fourier_transform_hpf30_nrn_denoised_background_removed_ndvi_mask_original_channel_2 \N 213198 0 0 78040 66 calculate_fourier_transform_hpf40_nrn_denoised_background_removed_ndvi_mask_original_channel_2 \N 213199 0 0 78041 66 calculate_fourier_transform_hpf20_nren_denoised_background_removed_ndre_mask_original_channel_1 \N 213200 0 0 78042 66 calculate_fourier_transform_hpf30_nren_denoised_background_removed_ndre_mask_original_channel_1 \N 213201 0 0 78043 66 calculate_fourier_transform_hpf40_nren_denoised_background_removed_ndre_mask_original_channel_1 \N 213202 0 0 78044 66 calculate_fourier_transform_hpf20_nren_denoised_background_removed_ndre_mask_original_channel_2 \N 213203 0 0 78045 66 calculate_fourier_transform_hpf30_nren_denoised_background_removed_ndre_mask_original_channel_2 \N 213204 0 0 78046 66 calculate_fourier_transform_hpf40_nren_denoised_background_removed_ndre_mask_original_channel_2 \N 213205 0 0 78047 66 calculate_fourier_transform_hpf20_bgr_denoised_background_removed_thresholded_tgi_mask_original_channel_1 \N 213206 0 0 78048 66 calculate_fourier_transform_hpf30_bgr_denoised_background_removed_thresholded_tgi_mask_original_channel_1 \N 213207 0 0 78049 66 calculate_fourier_transform_hpf40_bgr_denoised_background_removed_thresholded_tgi_mask_original_channel_1 \N 213208 0 0 78050 66 calculate_fourier_transform_hpf20_bgr_denoised_background_removed_thresholded_tgi_mask_original_channel_2 \N 213209 0 0 78051 66 calculate_fourier_transform_hpf30_bgr_denoised_background_removed_thresholded_tgi_mask_original_channel_2 \N 213210 0 0 78052 66 calculate_fourier_transform_hpf40_bgr_denoised_background_removed_thresholded_tgi_mask_original_channel_2 \N 213211 0 0 78053 66 calculate_fourier_transform_hpf20_bgr_denoised_background_removed_thresholded_tgi_mask_original_channel_3 \N 213212 0 0 78054 66 calculate_fourier_transform_hpf30_bgr_denoised_background_removed_thresholded_tgi_mask_original_channel_3 \N 213213 0 0 78055 66 calculate_fourier_transform_hpf40_bgr_denoised_background_removed_thresholded_tgi_mask_original_channel_3 \N 213214 0 0 78056 66 calculate_fourier_transform_hpf20_bgr_denoised_background_removed_thresholded_vari_mask_original_channel_1 \N 213215 0 0 78057 66 calculate_fourier_transform_hpf30_bgr_denoised_background_removed_thresholded_vari_mask_original_channel_1 \N 213216 0 0 78058 66 calculate_fourier_transform_hpf40_bgr_denoised_background_removed_thresholded_vari_mask_original_channel_1 \N 213217 0 0 78059 66 calculate_fourier_transform_hpf20_bgr_denoised_background_removed_thresholded_vari_mask_original_channel_2 \N 213218 0 0 78060 66 calculate_fourier_transform_hpf30_bgr_denoised_background_removed_thresholded_vari_mask_original_channel_2 \N 213219 0 0 78061 66 calculate_fourier_transform_hpf40_bgr_denoised_background_removed_thresholded_vari_mask_original_channel_2 \N 213220 0 0 78062 66 calculate_fourier_transform_hpf20_bgr_denoised_background_removed_thresholded_vari_mask_original_channel_3 \N 213221 0 0 78063 66 calculate_fourier_transform_hpf30_bgr_denoised_background_removed_thresholded_vari_mask_original_channel_3 \N 213222 0 0 78064 66 calculate_fourier_transform_hpf40_bgr_denoised_background_removed_thresholded_vari_mask_original_channel_3 \N 213223 0 0 78065 66 calculate_fourier_transform_hpf20_nrn_denoised_background_removed_thresholded_ndvi_mask_original_channel_1 \N 213224 0 0 78066 66 calculate_fourier_transform_hpf30_nrn_denoised_background_removed_thresholded_ndvi_mask_original_channel_1 \N 213225 0 0 78067 66 calculate_fourier_transform_hpf40_nrn_denoised_background_removed_thresholded_ndvi_mask_original_channel_1 \N 213226 0 0 78068 66 calculate_fourier_transform_hpf20_nrn_denoised_background_removed_thresholded_ndvi_mask_original_channel_2 \N 213227 0 0 78069 66 calculate_fourier_transform_hpf30_nrn_denoised_background_removed_thresholded_ndvi_mask_original_channel_2 \N 213228 0 0 78070 66 calculate_fourier_transform_hpf40_nrn_denoised_background_removed_thresholded_ndvi_mask_original_channel_2 \N 213229 0 0 78071 66 calculate_fourier_transform_hpf20_nren_denoised_background_removed_thresholded_ndre_mask_original_channel_1 \N 213230 0 0 78072 66 calculate_fourier_transform_hpf30_nren_denoised_background_removed_thresholded_ndre_mask_original_channel_1 \N 213231 0 0 78073 66 calculate_fourier_transform_hpf40_nren_denoised_background_removed_thresholded_ndre_mask_original_channel_1 \N 213232 0 0 78074 66 calculate_fourier_transform_hpf20_nren_denoised_background_removed_thresholded_ndre_mask_original_channel_2 \N 213233 0 0 78075 66 calculate_fourier_transform_hpf30_nren_denoised_background_removed_thresholded_ndre_mask_original_channel_2 \N 213234 0 0 78076 66 calculate_fourier_transform_hpf40_nren_denoised_background_removed_thresholded_ndre_mask_original_channel_2 \N 213235 0 0 78077 66 calculate_fourier_transform_hpf20_bgr_calculate_tgi_drone_imagery_channel_1 \N 213236 0 0 78078 66 calculate_fourier_transform_hpf30_bgr_calculate_tgi_drone_imagery_channel_1 \N 213237 0 0 78079 66 calculate_fourier_transform_hpf40_bgr_calculate_tgi_drone_imagery_channel_1 \N 213238 0 0 78080 66 calculate_fourier_transform_hpf20_bgr_calculate_vari_drone_imagery_channel_1 \N 213239 0 0 78081 66 calculate_fourier_transform_hpf30_bgr_calculate_vari_drone_imagery_channel_1 \N 213240 0 0 78082 66 calculate_fourier_transform_hpf40_bgr_calculate_vari_drone_imagery_channel_1 \N 213241 0 0 78083 66 calculate_fourier_transform_hpf20_nrn_calculate_ndvi_drone_imagery_channel_1 \N 213242 0 0 78084 66 calculate_fourier_transform_hpf30_nrn_calculate_ndvi_drone_imagery_channel_1 \N 213243 0 0 78085 66 calculate_fourier_transform_hpf40_nrn_calculate_ndvi_drone_imagery_channel_1 \N 213244 0 0 78086 66 calculate_fourier_transform_hpf20_nren_calculate_ndre_drone_imagery_channel_1 \N 213245 0 0 78087 66 calculate_fourier_transform_hpf30_nren_calculate_ndre_drone_imagery_channel_1 \N 213246 0 0 78088 66 calculate_fourier_transform_hpf40_nren_calculate_ndre_drone_imagery_channel_1 \N 213247 0 0 78089 38 project_start_date \N 213248 0 0 78090 38 drone_run_project_type \N 213249 0 0 78091 38 drone_run_camera_type \N 213250 0 0 78092 38 drone_run_band_project_type \N 213251 0 0 78094 38 drone_run_band_cropped_polygon \N 213253 0 0 78095 38 drone_run_band_background_removed_tgi_threshold \N 213254 0 0 78096 38 drone_run_band_background_removed_vari_threshold \N 213255 0 0 78097 38 drone_run_band_background_removed_ndvi_threshold \N 213256 0 0 78098 38 drone_run_band_background_removed_ndre_threshold \N 213257 0 0 78099 38 drone_run_band_background_removed_tgi_mask_original_threshold \N 213258 0 0 78100 38 drone_run_band_background_removed_vari_mask_original_threshold \N 213259 0 0 78101 38 drone_run_band_background_removed_ndvi_mask_original_threshold \N 213260 0 0 78102 38 drone_run_band_background_removed_ndre_mask_original_threshold \N 213261 0 0 78103 38 drone_run_band_background_removed_thresholded_tgi_mask_original_threshold \N 213262 0 0 78104 38 drone_run_band_background_removed_thresholded_vari_mask_original_threshold \N 213263 0 0 78105 38 drone_run_band_background_removed_thresholded_ndvi_mask_original_threshold \N 213264 0 0 78106 38 drone_run_band_background_removed_thresholded_ndre_mask_original_threshold \N 213265 0 0 78107 38 drone_run_band_background_removed_threshold \N 213266 0 0 78108 38 drone_run_band_plot_polygons \N 213267 0 0 78109 38 drone_run_standard_process_in_progress \N 213268 0 0 78110 38 drone_run_standard_process_completed \N 213269 0 0 78111 38 drone_run_standard_process_extended_completed \N 213270 0 0 78112 38 drone_run_standard_process_vi_completed \N 213271 0 0 78113 38 drone_run_standard_process_phenotype_calculation_in_progress \N 213272 0 0 78114 66 phenotype_spreadsheet_associated_images \N 213273 0 0 78115 66 image_analysis_contours \N 213274 0 0 78116 66 image_analysis_sift \N 213275 0 0 78117 66 image_analysis_largest_contour \N 213276 0 0 78118 66 image_analysis_necrosis_solomon_nsumba \N 213277 0 0 78119 66 image_analysis_white_fly_count_solomon_nsumba \N 213278 0 0 78120 56 vcf_map_details_markers \N 213279 0 0 78121 56 vcf_map_details_markers_array \N 213280 0 0 78122 46 sequencing_project_info \N 213281 0 0 78123 47 Specialty Trial \N 213282 0 0 78124 38 drone_run_averaged_temperature_growing_degree_days \N 213283 0 0 78125 38 drone_run_related_time_cvterms_json \N 213284 0 0 78126 57 noaa_station_id \N 213285 0 0 78127 38 trial_stock_type \N 213286 0 0 78128 56 trained_keras_cnn_model_trait \N 213287 0 0 78129 56 trained_keras_cnn_model_type \N 213288 0 0 78130 67 trained_keras_cnn_model \N 213289 0 0 78131 35 trained_keras_cnn_model_experiment \N 213290 0 0 78132 66 observation_unit_polygon_raster_dsm_imagery \N 213291 0 0 78133 66 threshold_background_removed_stitched_drone_imagery_raster_dsm \N 213292 0 0 78134 66 observation_unit_polygon_raster_dsm_background_removed_threshold_imagery \N 213293 0 0 78135 66 raw_boundaries_top_left_drone_imagery \N 213294 0 0 78136 66 raw_boundaries_top_right_drone_imagery \N 213295 0 0 78137 66 raw_boundaries_bottom_left_drone_imagery \N 213296 0 0 78138 66 raw_boundaries_bottom_right_drone_imagery \N 213297 0 0 78139 38 drone_run_raw_images_saved_micasense_stacks \N 213298 0 0 78140 38 drone_run_band_plot_polygons_partial \N 213299 0 0 78141 68 Silk DAP [days] Number of days after planting that 50% of plants in the plot had visible silks. 213300 0 0 78142 68 G2F \N 213301 0 0 78143 68 Pixel Standard Deviation The standard deviation over all pixel values. 213302 0 0 78144 68 Plant height plant5 [cm] Plant height to flag leaf for fifth plant in plot. 213303 0 0 78145 68 Ear height plant10 [cm] Ear height measurement for tenth plant in plot. 213304 0 0 78146 68 Median Pixel Value The median pixel value. 213305 0 0 78147 68 Majority Pixel Value The pixel value that is observed the most number of times. 213306 0 0 78148 68 PLTHT tassel [cm] Plant height to the tip of the tassel. 213307 0 0 78149 68 Ear height plant9 [cm] Ear height measurement for ninth plant in plot. 213308 0 0 78150 68 Plant Height [cm] Measured as the distance between the base of a plant and the ligule of the flag leaf. 213309 0 0 78151 68 Ear height plant3 [cm] Ear height measurement for third plant in plot. 213310 0 0 78152 68 Ear height plant6 [cm] Ear height measurement for sixth plant in plot. 213311 0 0 78153 68 Ear height plant4 [cm] Ear height measurement for fourth plant in plot. 213312 0 0 78154 68 Mean Pixel Value The arithmetic mean of all pixel values. 213313 0 0 78155 68 Nonzero Pixel Count Total number of pixels that have a non-zero pixel value i.e. they are not completely black or empty. 213314 0 0 78156 68 Ear Height [cm] Measured as the distance from the ground to the primary ear bearing node. 213315 0 0 78157 68 Ear height plant7 [cm] Ear height measurement for seventh plant in plot. 213316 0 0 78158 68 Grain Moisture [percent] Water content in grain at harvest. 213317 0 0 78159 68 Harmonic Mean Pixel Value The harmonic mean of all pixel values. 213318 0 0 78160 68 Root Lodging [plants] Number of plants that show root lodging per plot, i.e., those stems that lean substantially to one side (> 15% from vertical). Count includes bgooseneckedb plants that have bstraightened upb after becoming lodged earlier in the season. 213319 0 0 78161 68 Minimum Pixel Value The minimum pixel value observed. 213320 0 0 78162 68 Agronomic Traits \N 213321 0 0 78163 68 Plant height plant3 [cm] Plant height to flag leaf for third plant in plot. 213322 0 0 78164 68 Damaged Plants [count] Number of plants in plot damaged by hogs. 213323 0 0 78165 68 Minority Pixel Count The number of times that the least observed pixel value is observed. 213324 0 0 78166 68 Plant height plant1 [cm] Plant height to flag leaf for first plant in plot. 213325 0 0 78167 68 Minority Pixel Value The pixel value that is observed the least number of times. 213326 0 0 78168 68 Test Weight [lbs/bu] Shelled grain weight per bushel. 213327 0 0 78169 68 Ear height plant1 [cm] Ear height measurement for first plant in plot. 213328 0 0 78170 68 Stand Count [plants] Number of plants per plot at harvest. 213329 0 0 78171 68 Silking [date] Date of silking in MM/DD/YY format. 213330 0 0 78172 68 Plant height plant4 [cm] Plant height to flag leaf for fourth plant in plot. 213331 0 0 78173 68 Pixel Group Count The number of unique pixel values that are observed. 213332 0 0 78174 68 Ear height plant8 [cm] Ear height measurement for eighth plant in plot. 213333 0 0 78175 68 Pollen DAP [days] Number of days after planting that 50% of plants in the plot began shedding pollen. 213334 0 0 78176 68 Majority Pixel Count The number of times that the most observed pixel is observed. 213335 0 0 78177 68 Grain Yield [bu/acre] Grain yield in bushels per acre at 15.5% grain moisture assuming 56lbs per bushel and usin plot area without alley. 213336 0 0 78178 68 Stalk Lodging [plants] Number of plants broken between ground level and top ear node at harvest. 213337 0 0 78179 68 Plant height plant2 [cm] Plant height to flag leaf for second plant in plot. 213338 0 0 78180 68 Pixel Population Standard Deviation The population standard deviation over all pixel values. 213339 0 0 78181 68 Percent Northern Leaf Blight (%) Percent northern leaf blight. 213340 0 0 78182 68 Ear height plant2 [cm] Ear height measurement for second plant in plot. 213341 0 0 78183 68 Total Pixel Sum Total sum of all pixel values. 213342 0 0 78184 68 Pixel Variance The variance over all pixel values. 213343 0 0 78185 68 Maximum Pixel Value The maximum pixel value observed. 213344 0 0 78186 68 Plot Weight [lbs] Shelled grain weight per plot. 213345 0 0 78187 68 Anthesis [date] Date of anthesis in MM/DD/YY format. 213346 0 0 78188 68 Ear height plant5 [cm] Ear height measurement for fifth plant in plot. 213347 0 0 78189 68 Zonal Statistics Traits \N 213348 0 0 78191 69 Fourier Transform High Pass Filter 30 Thresholded Red Image From RGB Color Denoised Image 213350 0 0 78192 69 Fourier Transform High Pass Filter 20 Blue Image from Denoised RGB Color Image 213351 0 0 78193 69 Fourier Transform High Pass Filter 30 Red Image From 3 Channel Merged NRN Denoised NDVI Vegetative Index Masked Image 213352 0 0 78194 69 NIR Image from Merged 3 Channels NRN Image Masked with Thresholded NDVI Vegetative Index Image 213353 0 0 78195 69 Blue Image From RGB Denoised Original Image 213354 0 0 78196 69 Fourier Transform High Pass Filter 20 Red Image From 3 Channel Merged NRN Denoised Thresholded NDVI Vegetative Index Masked Image 213355 0 0 78197 69 Fourier Transform High Pass Filter 30 Thresholded TGI Vegetative Index Image 213356 0 0 78198 69 Fourier Transform High Pass Filter 40 NDVI Vegetative Index Image 213357 0 0 78199 69 Blue Image from RGB Color Image Masked with TGI Vegetative Index Image 213358 0 0 78200 69 Fourier Transform High Pass Filter 40 Thresholded MIR Denoised Image 213359 0 0 78201 69 Fourier Transform High Pass Filter 40 Thresholded Blank and White Denoised Image 213360 0 0 78202 69 Fourier Transform High Pass Filter 30 NIR Image From 3 Channel Merged NReN Denoised NDRE Vegetative Index Masked Image 213361 0 0 78203 69 Red Edge (690-750nm) A single channel image capturing the red edge spectrum between 690 to 750 nm 213362 0 0 78204 69 Fourier Transform High Pass Filter 30 Thresholded NDVI Vegetative Index Image 213363 0 0 78205 69 Thresholded MIR Denoised Original Image 213364 0 0 78206 69 VARI Vegetative Index Image 213365 0 0 78207 69 Fourier Transform High Pass Filter 30 Red Image From RGB Color Denoised VARI Vegetative Index Masked Image 213366 0 0 78208 69 Fourier Transform High Pass Filter 40 Red Image From RGB Color Denoised Thresholded VARI Vegetative Index Masked Image 213367 0 0 78209 69 Fourier Transform High Pass Filter 20 Blue Image From RGB Color Denoised TGI Vegetative Index Masked Image 213368 0 0 78210 69 Fourier Transform High Pass Filter 20 Thresholded Blank and White Denoised Image 213369 0 0 78211 69 Fourier Transform High Pass Filter 20 Red Image from Denoised RGB Color Image 213370 0 0 78212 69 Fourier Transform High Pass Filter 40 Red Denoised Image 213371 0 0 78213 69 Green Denoised Original Image 213372 0 0 78214 69 Fourier Transform High Pass Filter 40 Red Image from Denoised RGB Color Image 213373 0 0 78215 69 Fourier Transform High Pass Filter 40 Green Image From RGB Color Denoised VARI Vegetative Index Masked Image 213374 0 0 78216 69 Fourier Transform High Pass Filter 20 Thresholded TGI Vegetative Index Image 213375 0 0 78217 69 Merged 3 Channels NRN Image Masked with Thresholded NDVI Vegetative Index Image 213376 0 0 78218 69 Fourier Transform High Pass Filter 20 NIR Denoised Image 213377 0 0 78219 69 Fourier Transform High Pass Filter 20 FIR Denoised Image 213378 0 0 78220 69 Fourier Transform High Pass Filter 40 Thresholded NIR Denoised Image 213379 0 0 78221 69 Fourier Transform High Pass Filter 20 NIR Image From 3 Channel Merged NReN Denoised NDRE Vegetative Index Masked Image 213380 0 0 78222 69 Thresholded VARI Vegetative Index Image 213381 0 0 78223 69 RGB Color Image A three channel image where the channels are red, green, blue 213382 0 0 78224 69 Fourier Transform High Pass Filter 40 Thresholded Blue Denoised Image 213383 0 0 78225 69 Fourier Transform High Pass Filter 30 Thresholded FIR Denoised Image 213384 0 0 78226 69 Fourier Transform High Pass Filter 30 Green Denoised Image 213385 0 0 78227 69 Fourier Transform High Pass Filter 40 Red Image From 3 Channel Merged NRN Denoised NDVI Vegetative Index Masked Image 213386 0 0 78228 69 Fourier Transform High Pass Filter 30 Thresholded Red Edge Denoised Image 213387 0 0 78229 69 Merged 3 Bands NRN Denoised Image 213388 0 0 78230 69 Fourier Transform High Pass Filter 20 Green Image from Denoised RGB Color Image 213389 0 0 78231 69 Fourier Transform High Pass Filter 40 Green Image From RGB Color Denoised Thresholded VARI Vegetative Index Masked Image 213390 0 0 78232 69 FIR (50000-1000000nm) A single channel image capturing the far infrared spectrum between 50000 to 1000000 nm 213391 0 0 78533 62 day 54 213692 0 0 78534 62 day 347 213693 0 0 78233 69 Fourier Transform High Pass Filter 30 Red Image From RGB Color Denoised Thresholded VARI Vegetative Index Masked Image 213392 0 0 78234 69 Thermal IR (9000-14000nm) A single channel image capturing the thermal infrared spectrum between 9000 to 14000 nm 213393 0 0 78235 69 ISOL \N 213394 0 0 78236 69 Fourier Transform High Pass Filter 40 Thresholded Green Image From RGB Color Denoised Image 213395 0 0 78237 69 Fourier Transform High Pass Filter 20 Green Image From RGB Color Denoised Thresholded VARI Vegetative Index Masked Image 213396 0 0 78238 69 Fourier Transform High Pass Filter 40 Thresholded NDRE Vegetative Index Image 213397 0 0 78239 69 FIR Denoised Original Image 213398 0 0 78240 69 Fourier Transform High Pass Filter 30 Red Edge Image From 3 Channel Merged NReN Denoised Thresholded NDRE Vegetative Index Masked Image 213399 0 0 78241 69 Fourier Transform High Pass Filter 20 Red Image From 3 Channel Merged NRN Denoised NDVI Vegetative Index Masked Image 213400 0 0 78242 69 Fourier Transform High Pass Filter 30 NIR Image From 3 Channel Merged NRN Denoised NDVI Vegetative Index Masked Image 213401 0 0 78243 69 Blue Image from RGB Color Image Masked with VARI Vegetative Index Image 213402 0 0 78244 69 Green Image from of RGB Color Image Masked with Thresholded VARI Vegetative Index Image 213403 0 0 78245 69 Merged 3 Bands BGR Created a 3 band image by merging 3 single channel bands in the following order, Blue, Green, Red for band 1, band 2, and band 3, respectively. 213404 0 0 78246 69 Fourier Transform High Pass Filter 20 Green Image From RGB Color Denoised TGI Vegetative Index Masked Image 213405 0 0 78247 69 NIR Denoised Original Image 213406 0 0 78248 69 Red Image From RGB Denoised Original Image 213407 0 0 78249 69 Fourier Transform High Pass Filter 20 TGI Vegetative Index Image 213408 0 0 78250 69 Fourier Transform High Pass Filter 20 NIR Image From 3 Channel Merged NRN Denoised NDVI Vegetative Index Masked Image 213409 0 0 78251 69 Green Image from of RGB Color Image Masked with Thresholded TGI Vegetative Index Image 213410 0 0 78252 69 Fourier Transform High Pass Filter 30 Green Image From RGB Color Denoised Thresholded TGI Vegetative Index Masked Image 213411 0 0 78253 69 Fourier Transform High Pass Filter 20 Green Image From RGB Color Denoised VARI Vegetative Index Masked Image 213412 0 0 78254 69 Fourier Transform High Pass Filter 30 Blue Image From RGB Color Denoised Thresholded TGI Vegetative Index Masked Image 213413 0 0 78255 69 Red Image from RGB Color Image Masked with TGI Vegetative Index Image 213414 0 0 78256 69 Fourier Transform High Pass Filter 20 MIR Denoised Image 213415 0 0 78257 69 Fourier Transform High Pass Filter 20 Green Image From RGB Color Denoised Thresholded TGI Vegetative Index Masked Image 213416 0 0 78258 69 Fourier Transform High Pass Filter 30 Red Edge Denoised Image 213417 0 0 78259 69 Thresholded Red Edge Denoised Original Image 213418 0 0 78260 69 Fourier Transform High Pass Filter 40 Red Image From RGB Color Denoised TGI Vegetative Index Masked Image 213419 0 0 78261 69 Red Edge Image from Merged 3 Channels NReN Image Masked with NDRE Vegetative Index Image 213420 0 0 78262 69 RGB Color Image Masked with Thresholded TGI Vegetative Index Image 213421 0 0 78263 69 Red (600-690nm) A single channel image capturing the red spectrum between 600 to 690 nm 213422 0 0 78264 69 Fourier Transform High Pass Filter 30 Thresholded VARI Vegetative Index Image 213423 0 0 78265 69 Fourier Transform High Pass Filter 30 Blue Image From RGB Color Denoised VARI Vegetative Index Masked Image 213424 0 0 78266 69 Merged 3 Bands NReN Created a 3 band image by merging 3 single channel bands in the following order, NIR, Red Edge, NIR for band 1, band 2, and band 3, respectively. 213425 0 0 78267 69 Fourier Transform High Pass Filter 30 Blue Image From RGB Color Denoised TGI Vegetative Index Masked Image 213426 0 0 78268 69 Fourier Transform High Pass Filter 30 Thresholded MIR Denoised Image 213427 0 0 78269 69 Green (515-600nm) A single channel image capturing the green spectrum between 515 to 600 nm 213428 0 0 78270 69 Fourier Transform High Pass Filter 20 Red Image From RGB Color Denoised VARI Vegetative Index Masked Image 213429 0 0 78271 69 Red Image from RGB Color Image Masked with Thresholded TGI Vegetative Index Image 213430 0 0 78272 69 Thresholded NIR Denoised Original Image 213431 0 0 78273 69 Fourier Transform High Pass Filter 20 Thresholded Red Edge Denoised Image 213432 0 0 78274 69 Fourier Transform High Pass Filter 40 Thermal IR Denoised Image 213433 0 0 78275 69 NIR (780-3000nm) A single channel image capturing the near infrared (NIR) spectrum between 780 to 3000 nm 213434 0 0 78276 69 MIR (3000-50000nm) A single channel image capturing the mid infrared (MIR) spectrum between 3000 to 50000 nm 213435 0 0 78277 69 Fourier Transform High Pass Filter 20 Thresholded Blue Denoised Image 213436 0 0 78278 69 Fourier Transform High Pass Filter 40 NIR Image From 3 Channel Merged NRN Denoised NDVI Vegetative Index Masked Image 213437 0 0 78279 69 Fourier Transform High Pass Filter 40 Thresholded Red Denoised Image 213438 0 0 78280 69 Fourier Transform High Pass Filter 20 Red Image From RGB Color Denoised Thresholded VARI Vegetative Index Masked Image 213439 0 0 78281 69 Fourier Transform High Pass Filter 30 Red Image From 3 Channel Merged NRN Denoised Thresholded NDVI Vegetative Index Masked Image 213440 0 0 78282 69 Fourier Transform High Pass Filter 40 Black and White Denoised Image 213441 0 0 78283 69 Thresholded TGI Vegetative Index Image 213442 0 0 78284 69 Fourier Transform High Pass Filter 20 Thresholded Blue Image From RGB Color Denoised Image 213443 0 0 78285 69 Red Edge Denoised Original Image 213444 0 0 78286 69 Fourier Transform High Pass Filter 20 NDVI Vegetative Index Image 213445 0 0 78287 69 Fourier Transform High Pass Filter 30 Green Image from Denoised RGB Color Image 213446 0 0 78288 69 Fourier Transform High Pass Filter 30 Red Image from Denoised RGB Color Image 213447 0 0 78289 69 Fourier Transform High Pass Filter 20 NDRE Vegetative Index Image 213448 0 0 78290 69 Fourier Transform High Pass Filter 40 NDRE Vegetative Index Image 213449 0 0 78291 69 RGB Color Image Masked with VARI Vegetative Index Image 213450 0 0 78292 69 Fourier Transform High Pass Filter 40 MIR Denoised Image 213451 0 0 78293 69 Fourier Transform High Pass Filter 30 Black and White Denoised Image 213452 0 0 78294 69 Red Image from Merged 3 Channels NRN Image Masked with NDVI Vegetative Index Image 213453 0 0 78295 69 Fourier Transform High Pass Filter 30 Red Image From RGB Color Denoised TGI Vegetative Index Masked Image 213454 0 0 78296 69 Thermal IR Denoised Original Image 213455 0 0 78297 69 Fourier Transform High Pass Filter 30 Red Denoised Image 213456 0 0 78298 69 Fourier Transform High Pass Filter 40 Green Image From RGB Color Denoised TGI Vegetative Index Masked Image 213457 0 0 78299 69 Thresholded Blue Image from RGB Color Denoised Original Image 213458 0 0 78300 69 Fourier Transform High Pass Filter 40 Blue Image from Denoised RGB Color Image 213459 0 0 78301 69 Thresholded Green Denoised Original Image 213460 0 0 78302 69 Fourier Transform High Pass Filter 20 Red Image From RGB Color Denoised Thresholded TGI Vegetative Index Masked Image 213461 0 0 78303 69 Fourier Transform High Pass Filter 20 Thresholded Red Image From RGB Color Denoised Image 213462 0 0 78304 69 Fourier Transform High Pass Filter 30 Blue Denoised Image 213463 0 0 78305 69 Fourier Transform High Pass Filter 40 Red Edge Image From 3 Channel Merged NReN Denoised Thresholded NDRE Vegetative Index Masked Image 213464 0 0 78306 69 NIR Image from Merged 3 Channels NReN Image Masked with Thresholded NDRE Vegetative Index Image 213465 0 0 78307 69 Fourier Transform High Pass Filter 40 Red Image From RGB Color Denoised VARI Vegetative Index Masked Image 213466 0 0 78308 69 RGB Color Image Masked with TGI Vegetative Index Image 213467 0 0 78309 69 Fourier Transform High Pass Filter 40 Red Edge Image From 3 Channel Merged NReN Denoised NDRE Vegetative Index Masked Image 213468 0 0 78310 69 Green Image from RGB Color Image Masked with VARI Vegetative Index Image 213469 0 0 78311 69 Fourier Transform High Pass Filter 30 NIR Denoised Image 213470 0 0 78312 69 Fourier Transform High Pass Filter 30 TGI Vegetative Index Image 213471 0 0 78313 69 RGB Color Image Masked with Thresholded VARI Vegetative Index Image 213472 0 0 78314 69 Fourier Transform High Pass Filter 20 Thresholded Red Denoised Image 213473 0 0 78315 69 Fourier Transform High Pass Filter 30 Thresholded Red Denoised Image 213474 0 0 78316 69 Fourier Transform High Pass Filter 20 Red Image From RGB Color Denoised TGI Vegetative Index Masked Image 213475 0 0 78317 69 Fourier Transform High Pass Filter 20 NIR Image From 3 Channel Merged NReN Denoised Thresholded NDRE Vegetative Index Masked Image 213476 0 0 78318 69 Blue Denoised Original Image 213477 0 0 78319 69 Fourier Transform High Pass Filter 20 Thresholded Green Image From RGB Color Denoised Image 213478 0 0 78320 69 TGI Vegetative Index Image 213479 0 0 78321 69 Fourier Transform High Pass Filter 20 NIR Image From 3 Channel Merged NRN Denoised Thresholded NDVI Vegetative Index Masked Image 213480 0 0 78322 69 Thresholded Green Image from RGB Color Denoised Original Image 213481 0 0 78323 69 Fourier Transform High Pass Filter 40 Red Edge Denoised Image 213482 0 0 78324 69 Fourier Transform High Pass Filter 20 Thresholded NDVI Vegetative Index Image 213483 0 0 78325 69 Raster DSM Denoised Original Image 213484 0 0 78326 69 Raster DSM A single channel image capturing the elevation map from a digital surface map (DSM) as a raster 213485 0 0 78327 69 Fourier Transform High Pass Filter 40 Blue Image From RGB Color Denoised Thresholded VARI Vegetative Index Masked Image 213486 0 0 78328 69 Thresholded Red Image from RGB Color Denoised Original Image 213487 0 0 78329 69 Fourier Transform High Pass Filter 40 Thresholded FIR Denoised Image 213488 0 0 78330 69 Fourier Transform High Pass Filter 40 NIR Image From 3 Channel Merged NReN Denoised NDRE Vegetative Index Masked Image 213489 0 0 78331 69 Blue Image from RGB Color Image Masked with Thresholded TGI Vegetative Index Image 213490 0 0 78332 69 Merged 3 Channels NReN Image Masked with Thresholded NDRE Vegetative Index Image 213491 0 0 78333 69 Fourier Transform High Pass Filter 30 Blue Image From RGB Color Denoised Thresholded VARI Vegetative Index Masked Image 213492 0 0 78334 69 Fourier Transform High Pass Filter 20 Thresholded FIR Denoised Image 213493 0 0 78335 69 Fourier Transform High Pass Filter 40 Red Image From 3 Channel Merged NRN Denoised Thresholded NDVI Vegetative Index Masked Image 213494 0 0 78336 69 Fourier Transform High Pass Filter 30 Thresholded Blank and White Denoised Image 213495 0 0 78337 69 Thresholded NDVI Vegetative Index Image 213496 0 0 78338 69 Thresholded Raster DSM Denoised Original Image 213497 0 0 78339 69 Fourier Transform High Pass Filter 40 Thresholded Blue Image From RGB Color Denoised Image 213498 0 0 78340 69 Fourier Transform High Pass Filter 30 Green Image From RGB Color Denoised VARI Vegetative Index Masked Image 213499 0 0 78341 69 Fourier Transform High Pass Filter 40 Thresholded Red Image From RGB Color Denoised Image 213500 0 0 78342 69 Fourier Transform High Pass Filter 40 Green Denoised Image 213501 0 0 78343 69 Fourier Transform High Pass Filter 20 Blue Image From RGB Color Denoised Thresholded VARI Vegetative Index Masked Image 213502 0 0 78344 69 Fourier Transform High Pass Filter 20 Red Edge Denoised Image 213503 0 0 78345 69 Fourier Transform High Pass Filter 20 Thresholded NIR Denoised Image 213504 0 0 78346 69 Fourier Transform High Pass Filter 40 Thresholded Green Denoised Image 213505 0 0 78347 69 Fourier Transform High Pass Filter 30 NIR Image From 3 Channel Merged NRN Denoised Thresholded NDVI Vegetative Index Masked Image 213506 0 0 78348 69 Merged 3 Channels NRN Image Masked with NDVI Vegetative Index Image 213507 0 0 78349 69 Thresholded Red Denoised Original Image 213508 0 0 78350 69 Blue (450-520nm) A single channel image capturing the blue spectrum between 450 to 520 nm 213509 0 0 78351 69 Fourier Transform High Pass Filter 40 Green Image From RGB Color Denoised Thresholded TGI Vegetative Index Masked Image 213510 0 0 78352 69 Fourier Transform High Pass Filter 30 Thresholded NDRE Vegetative Index Image 213511 0 0 78353 69 Green Image From RGB Denoised Original Image 213512 0 0 78354 69 Fourier Transform High Pass Filter 30 VARI Vegetative Index Image 213513 0 0 78355 69 Fourier Transform High Pass Filter 20 Green Denoised Image 213514 0 0 78356 69 Red Edge Image from Merged 3 Channels NReN Image Masked with Thresholded NDRE Vegetative Index Image 213515 0 0 78357 69 NDVI Vegetative Index Image 213516 0 0 78358 69 MIR Denoised Original Image 213517 0 0 78359 69 NDRE Vegetative Index Image 213518 0 0 78360 69 Fourier Transform High Pass Filter 30 Thresholded Thermal IR Denoised Image 213519 0 0 78361 69 Black and White Denoised Original Image 213520 0 0 78362 69 Merged 3 Bands NRN Created a 3 band image by merging 3 single channel bands in the following order, NIR, Red, NIR for band 1, band 2, and band 3, respectively. 213521 0 0 78363 69 Fourier Transform High Pass Filter 40 TGI Vegetative Index Image 213522 0 0 78364 69 Thresholded Blue Denoised Original Image 213523 0 0 78365 69 NIR Image from Merged 3 Channels NReN Image Masked with NDRE Vegetative Index Image 213524 0 0 78366 69 Plot Polygon Image Pre-Process Type \N 213525 0 0 78367 69 Fourier Transform High Pass Filter 40 Blue Image From RGB Color Denoised TGI Vegetative Index Masked Image 213526 0 0 78368 69 Fourier Transform High Pass Filter 30 Thresholded Green Image From RGB Color Denoised Image 213527 0 0 78369 69 Fourier Transform High Pass Filter 20 Thresholded Thermal IR Denoised Image 213528 0 0 78370 69 Fourier Transform High Pass Filter 20 Thresholded MIR Denoised Image 213529 0 0 78371 69 Fourier Transform High Pass Filter 30 Thresholded Blue Denoised Image 213530 0 0 78372 69 Fourier Transform High Pass Filter 40 VARI Vegetative Index Image 213531 0 0 78373 69 Thresholded NDRE Vegetative Index Image 213532 0 0 78374 69 Fourier Transform High Pass Filter 40 Thresholded TGI Vegetative Index Image 213533 0 0 78375 69 Green Image from of RGB Color Image Masked with TGI Vegetative Index Image 213534 0 0 78376 69 Fourier Transform High Pass Filter 30 NDVI Vegetative Index Image 213535 0 0 78377 69 Merged 3 Channels NReN Image Masked with NDRE Vegetative Index Image 213536 0 0 78378 69 Red Image from RGB Color Image Masked with VARI Vegetative Index Image 213537 0 0 78379 69 Fourier Transform High Pass Filter 20 Thresholded NDRE Vegetative Index Image 213538 0 0 78380 69 Fourier Transform High Pass Filter 30 Thermal IR Denoised Image 213539 0 0 78381 69 Fourier Transform High Pass Filter 20 Blue Image From RGB Color Denoised Thresholded TGI Vegetative Index Masked Image 213540 0 0 78382 69 Thresholded FIR Denoised Original Image 213541 0 0 78383 69 Fourier Transform High Pass Filter 30 Green Image From RGB Color Denoised Thresholded VARI Vegetative Index Masked Image 213542 0 0 78384 69 Thresholded Black and White Denoised Original Image 213543 0 0 78385 69 Fourier Transform High Pass Filter 20 Blue Denoised Image 213544 0 0 78386 69 Fourier Transform High Pass Filter 40 Thresholded NDVI Vegetative Index Image 213545 0 0 78387 69 Fourier Transform High Pass Filter 30 MIR Denoised Image 213546 0 0 78388 69 NIR Image from Merged 3 Channels NRN Image Masked with NDVI Vegetative Index Image 213547 0 0 78389 69 Fourier Transform High Pass Filter 40 Thresholded VARI Vegetative Index Image 213548 0 0 78390 69 Fourier Transform High Pass Filter 20 Black and White Denoised Image 213549 0 0 78391 69 Fourier Transform High Pass Filter 30 NIR Image From 3 Channel Merged NReN Denoised Thresholded NDRE Vegetative Index Masked Image 213550 0 0 78392 69 Fourier Transform High Pass Filter 30 Thresholded Green Denoised Image 213551 0 0 78393 69 Spectral Band Type \N 213552 0 0 78394 69 Blue Image from RGB Color Image Masked with Thresholded VARI Vegetative Index Image 213553 0 0 78395 69 Fourier Transform High Pass Filter 30 Thresholded Blue Image From RGB Color Denoised Image 213554 0 0 78396 69 RGB Denoised Original Image 213555 0 0 78397 69 Red Image from RGB Color Image Masked with Thresholded VARI Vegetative Index Image 213556 0 0 78398 69 Fourier Transform High Pass Filter 40 Blue Image From RGB Color Denoised VARI Vegetative Index Masked Image 213557 0 0 78399 69 Fourier Transform High Pass Filter 30 Thresholded NIR Denoised Image 213558 0 0 78400 69 Fourier Transform High Pass Filter 40 Thresholded Red Edge Denoised Image 213559 0 0 78401 69 Fourier Transform High Pass Filter 30 Red Edge Image From 3 Channel Merged NReN Denoised NDRE Vegetative Index Masked Image 213560 0 0 78402 69 Fourier Transform High Pass Filter 20 Thresholded Green Denoised Image 213561 0 0 78403 69 Fourier Transform High Pass Filter 20 Red Denoised Image 213562 0 0 78404 69 Fourier Transform High Pass Filter 30 FIR Denoised Image 213563 0 0 78405 69 Fourier Transform High Pass Filter 40 Blue Image From RGB Color Denoised Thresholded TGI Vegetative Index Masked Image 213564 0 0 78406 69 Fourier Transform High Pass Filter 30 Blue Image from Denoised RGB Color Image 213565 0 0 78407 69 Fourier Transform High Pass Filter 20 Red Edge Image From 3 Channel Merged NReN Denoised Thresholded NDRE Vegetative Index Masked Image 213566 0 0 78408 69 Fourier Transform High Pass Filter 30 Red Image From RGB Color Denoised Thresholded TGI Vegetative Index Masked Image 213567 0 0 78409 69 Fourier Transform High Pass Filter 40 FIR Denoised Image 213568 0 0 78410 69 Fourier Transform High Pass Filter 20 Red Edge Image From 3 Channel Merged NReN Denoised NDRE Vegetative Index Masked Image 213569 0 0 78411 69 Fourier Transform High Pass Filter 40 NIR Denoised Image 213570 0 0 78412 69 Fourier Transform High Pass Filter 30 NDRE Vegetative Index Image 213571 0 0 78413 69 Fourier Transform High Pass Filter 40 Thresholded Thermal IR Denoised Image 213572 0 0 78414 69 Fourier Transform High Pass Filter 20 Blue Image From RGB Color Denoised VARI Vegetative Index Masked Image 213573 0 0 78530 62 day 279 213689 0 0 78415 69 Red Image from Merged 3 Channels NRN Image Masked with Thresholded NDVI Vegetative Index Image 213574 0 0 78416 69 Fourier Transform High Pass Filter 40 NIR Image From 3 Channel Merged NReN Denoised Thresholded NDRE Vegetative Index Masked Image 213575 0 0 78417 69 Fourier Transform High Pass Filter 20 Thermal IR Denoised Image 213576 0 0 78418 69 Fourier Transform High Pass Filter 20 Thresholded VARI Vegetative Index Image 213577 0 0 78419 69 Thresholded Thermal IR Denoised Original Image 213578 0 0 78420 69 Fourier Transform High Pass Filter 40 Red Image From RGB Color Denoised Thresholded TGI Vegetative Index Masked Image 213579 0 0 78421 69 Fourier Transform High Pass Filter 40 NIR Image From 3 Channel Merged NRN Denoised Thresholded NDVI Vegetative Index Masked Image 213580 0 0 78422 69 Merged 3 Bands NReN Denoised Image 213581 0 0 78423 69 Black and White Image A gray scale, single channel, black and white image of unknown spectrum 213582 0 0 78424 69 Fourier Transform High Pass Filter 40 Blue Denoised Image 213583 0 0 78425 69 Fourier Transform High Pass Filter 30 Green Image From RGB Color Denoised TGI Vegetative Index Masked Image 213584 0 0 78426 69 Red Denoised Original Image 213585 0 0 78427 69 Fourier Transform High Pass Filter 20 VARI Vegetative Index Image 213586 0 0 78428 69 Fourier Transform High Pass Filter 40 Green Image from Denoised RGB Color Image 213587 0 0 78429 62 day 43 213588 0 0 78430 62 day 29 213589 0 0 78431 62 day 22 213590 0 0 78432 62 day 309 213591 0 0 78433 62 day 204 213592 0 0 78434 62 day 165 213593 0 0 78435 62 day 76 213594 0 0 78436 62 hour 15 213595 0 0 78437 62 day 307 213596 0 0 78438 62 hour 11 213597 0 0 78439 62 day 183 213598 0 0 78440 62 day 21 213599 0 0 78441 62 day 317 213600 0 0 78442 62 day 234 213601 0 0 78443 62 day 327 213602 0 0 78444 62 day 126 213603 0 0 78445 62 day 215 213604 0 0 78446 62 day 228 213605 0 0 78447 62 day 93 213606 0 0 78448 62 day 169 213607 0 0 78449 62 day 107 213608 0 0 78450 62 day 254 213609 0 0 78451 62 hour 7 213610 0 0 78452 62 day 135 213611 0 0 78453 62 day 100 213612 0 0 78454 62 day 44 213613 0 0 78455 62 at pre-flowering 213614 0 0 78456 62 day 114 213615 0 0 78457 62 day 343 213616 0 0 78458 62 day 102 213617 0 0 78459 62 day 358 213618 0 0 78460 62 day 230 213619 0 0 78461 62 day 70 213620 0 0 78462 62 day 166 213621 0 0 78463 62 day 160 213622 0 0 78464 62 hour 23 213623 0 0 78465 62 day 38 213624 0 0 78466 62 hour 19 213625 0 0 78467 62 day 143 213626 0 0 78468 62 day 122 213627 0 0 78469 62 day 212 213628 0 0 78470 62 day 248 213629 0 0 78471 62 day 94 213630 0 0 78472 62 at post-harvesting post harvesting stage 213631 0 0 78473 62 day 224 213632 0 0 78474 62 at flowering flowering (shooting is here equivalent to flowering) stage where the whole inflorescence comes from the neck of the pseudostem at the switch from vegetative to reproductive development 213633 0 0 78475 62 day 170 213634 0 0 78476 62 day 311 213635 0 0 78477 62 hour 2 213636 0 0 78478 62 hour 6 213637 0 0 78479 62 day 86 213638 0 0 78480 62 day 255 213639 0 0 78481 62 minute 15 213640 0 0 78482 62 hour 17 213641 0 0 78483 62 day 112 213642 0 0 78484 62 day 154 213643 0 0 78485 62 day 167 213644 0 0 78486 62 day 36 213645 0 0 78487 62 day 9 213646 0 0 78488 62 minute 30 213647 0 0 78489 62 day 276 213648 0 0 78490 62 day 24 213649 0 0 78491 62 day 232 213650 0 0 78492 62 day 363 213651 0 0 78493 62 day 53 213652 0 0 78494 62 day 200 213653 0 0 78495 62 hour 10 213654 0 0 78496 62 hour 20 213655 0 0 78497 62 day 145 213656 0 0 78498 62 day 147 213657 0 0 78499 62 day 85 213658 0 0 78500 62 day 364 213659 0 0 78501 62 day 273 213660 0 0 78502 62 day 267 213661 0 0 78503 62 day 310 213662 0 0 78504 62 day 163 213663 0 0 78505 62 day 222 213664 0 0 78506 62 day 329 213665 0 0 78507 62 day 168 213666 0 0 78508 62 day 335 213667 0 0 78509 62 day 37 213668 0 0 78510 62 day 67 213669 0 0 78511 62 day 105 213670 0 0 78512 62 day 362 213671 0 0 78513 62 day 134 213672 0 0 78514 62 day 313 213673 0 0 78515 62 day 236 213674 0 0 78516 62 at planting \N 213675 0 0 78517 62 day 68 213676 0 0 78518 62 hour 3 213677 0 0 78519 62 day 96 213678 0 0 78520 62 day 199 213679 0 0 78521 62 day 289 213680 0 0 78522 62 day 72 213681 0 0 78523 62 day 296 213682 0 0 78524 62 day 151 213683 0 0 78525 62 day 121 213684 0 0 78526 62 day 196 213685 0 0 78527 62 day 90 213686 0 0 78528 62 day 189 213687 0 0 78535 62 after harvest 213694 0 0 78536 62 day 179 213695 0 0 78537 62 day 180 213696 0 0 78538 62 day 103 213697 0 0 78539 62 day 257 213698 0 0 78540 62 day 28 213699 0 0 78541 62 day 237 213700 0 0 78542 62 day 260 213701 0 0 78543 62 day 271 213702 0 0 78544 62 day 268 213703 0 0 78545 62 day 91 213704 0 0 78546 62 day 278 213705 0 0 78547 62 day 108 213706 0 0 78548 62 day 138 213707 0 0 78549 62 day 303 213708 0 0 78550 62 day 318 213709 0 0 78551 62 day 205 213710 0 0 78552 62 day 293 213711 0 0 78553 62 day 281 213712 0 0 78554 62 day 330 213713 0 0 78555 62 day 97 213714 0 0 78556 62 day 290 213715 0 0 78557 62 day 190 213716 0 0 78558 62 day 331 213717 0 0 78559 62 day 328 213718 0 0 78560 62 day 186 213719 0 0 78561 62 day 12 213720 0 0 78562 62 day 195 213721 0 0 78563 62 day 140 213722 0 0 78564 62 day 131 213723 0 0 78565 62 hour 16 213724 0 0 78566 62 day 340 213725 0 0 78567 62 day 262 213726 0 0 78568 62 day 240 213727 0 0 78569 62 day 264 213728 0 0 78570 62 day 238 213729 0 0 78571 62 day 156 213730 0 0 78572 62 day 71 213731 0 0 78573 62 day 78 213732 0 0 78574 62 day 74 213733 0 0 78575 62 day 56 213734 0 0 78576 62 day 356 213735 0 0 78577 62 day 81 213736 0 0 78578 62 day 213 213737 0 0 78579 62 day 55 213738 0 0 78580 62 day 171 213739 0 0 78581 62 day 332 213740 0 0 78582 62 day 188 213741 0 0 78583 62 day 157 213742 0 0 78584 62 day 52 213743 0 0 78585 62 day 339 213744 0 0 78586 62 day 155 213745 0 0 78587 62 day 245 213746 0 0 78588 62 day 177 213747 0 0 78589 62 day 125 213748 0 0 78590 62 day 185 213749 0 0 78591 62 day 250 213750 0 0 78592 62 day 247 213751 0 0 78593 62 day 83 213752 0 0 78594 62 day 48 213753 0 0 78595 62 day 47 213754 0 0 78596 62 day 63 213755 0 0 78597 62 day 129 213756 0 0 78598 62 day 261 213757 0 0 78599 62 day 300 213758 0 0 78600 62 day 217 213759 0 0 78601 62 day 25 213760 0 0 78602 62 day 152 213761 0 0 78603 62 day 341 213762 0 0 78604 62 day 139 213763 0 0 78605 62 day 193 213764 0 0 78606 62 day 270 213765 0 0 78607 62 day 349 213766 0 0 78608 62 day 337 213767 0 0 78609 62 day 75 213768 0 0 78610 62 day 31 213769 0 0 78611 62 day 77 213770 0 0 78612 62 day 18 213771 0 0 78613 62 hour 24 213772 0 0 78614 62 day 306 213773 0 0 78615 62 day 277 213774 0 0 78616 62 day 346 213775 0 0 78617 62 day 233 213776 0 0 78618 62 day 322 213777 0 0 78619 62 day 133 213778 0 0 78620 62 day 231 213779 0 0 78621 62 day 118 213780 0 0 78622 62 day 321 213781 0 0 78623 62 day 104 213782 0 0 78624 62 day 89 213783 0 0 78625 62 day 211 213784 0 0 78626 62 day 172 213785 0 0 78627 62 day 40 213786 0 0 78628 62 day 148 213787 0 0 78629 62 day 113 213788 0 0 78630 62 day 361 213789 0 0 78631 62 day 80 213790 0 0 78632 62 hour 5 213791 0 0 78633 62 day 98 213792 0 0 78634 62 day 208 213793 0 0 78635 62 day 82 213794 0 0 78636 62 day 299 213795 0 0 78637 62 day 2 213796 0 0 78638 62 day 252 213797 0 0 78639 62 day 11 213798 0 0 78640 62 day 20 213799 0 0 78641 62 day 256 213800 0 0 78642 62 day 283 213801 0 0 78643 62 day 33 213802 0 0 78644 62 day 352 213803 0 0 78645 62 day 223 213804 0 0 78646 62 day 92 213805 0 0 78647 62 day 158 213806 0 0 78648 62 day 153 213807 0 0 78649 62 day 246 213808 0 0 78650 62 day 316 213809 0 0 78651 62 day 301 213810 0 0 78652 62 day 115 213811 0 0 78653 62 day 298 213812 0 0 78654 62 day 345 213813 0 0 78655 62 day 357 213814 0 0 78656 62 day 159 213815 0 0 78657 62 day 244 213816 0 0 78658 62 day 235 213817 0 0 78659 62 day 5 213818 0 0 78660 62 before harvest 213819 0 0 78661 62 day 84 213820 0 0 78662 62 day 178 213821 0 0 78663 62 day 312 213822 0 0 78664 62 day 150 213823 0 0 78665 62 day 136 213824 0 0 78666 62 day 23 213825 0 0 78667 62 day 197 213826 0 0 78668 62 day 3 213827 0 0 78669 62 hour 9 213828 0 0 78670 62 day 19 213829 0 0 78671 62 minute 60 213830 0 0 78672 62 day 294 213831 0 0 78673 62 day 342 213832 0 0 78674 62 day 127 213833 0 0 78675 62 day 308 213834 0 0 78676 62 day 243 213835 0 0 78677 62 at harvesting harvesting stage 213836 0 0 78678 62 day 239 213837 0 0 78679 62 day 210 213838 0 0 78680 62 day 241 213839 0 0 78681 62 day 58 213840 0 0 78682 62 day 265 213841 0 0 78683 62 day 284 213842 0 0 78684 62 day 225 213843 0 0 78685 62 day 202 213844 0 0 78686 62 day 305 213845 0 0 78687 62 day 34 213846 0 0 78688 62 day 314 213847 0 0 78689 62 day 123 213848 0 0 78690 62 day 291 213849 0 0 78691 62 day 6 213850 0 0 78692 62 day 16 213851 0 0 78693 62 day 216 213852 0 0 78694 62 day 7 213853 0 0 78695 62 hour 14 213854 0 0 78696 62 day 242 213855 0 0 78697 62 day 333 213856 0 0 78698 62 hour 8 213857 0 0 78699 62 day 353 213858 0 0 78700 62 day 220 213859 0 0 78701 62 day 73 213860 0 0 78702 62 day 116 213861 0 0 78703 62 day 109 213862 0 0 78704 62 day 164 213863 0 0 78705 62 day 141 213864 0 0 78706 62 day 365 213865 0 0 78707 62 day 128 213866 0 0 78708 62 day 35 213867 0 0 78709 62 day 258 213868 0 0 78710 62 day 175 213869 0 0 78711 62 day 30 213870 0 0 78712 62 day 198 213871 0 0 78713 62 day 272 213872 0 0 78714 62 day 62 213873 0 0 78715 62 day 263 213874 0 0 78716 62 day 26 213875 0 0 78717 62 day 351 213876 0 0 78718 62 day 101 213877 0 0 78719 62 day 218 213878 0 0 78720 62 day 32 213879 0 0 78721 62 day 187 213880 0 0 78722 62 day 192 213881 0 0 78723 62 day 249 213882 0 0 78724 62 day 149 213883 0 0 78725 62 day 286 213884 0 0 78726 62 day 182 213885 0 0 78727 62 day 315 213886 0 0 78728 62 day 207 213887 0 0 78729 62 day 350 213888 0 0 78730 62 day 120 213889 0 0 78731 62 day 359 213890 0 0 78732 62 day 302 213891 0 0 78733 62 day 282 213892 0 0 78734 62 day 201 213893 0 0 78735 62 day 87 213894 0 0 78736 62 date of date of data collection (dd/mm/yyyy) 213895 0 0 78737 62 hour 1 213896 0 0 78738 62 hour 22 213897 0 0 78739 62 day 51 213898 0 0 78740 62 hour 21 213899 0 0 78741 62 day 292 213900 0 0 78742 62 day 288 213901 0 0 78743 62 day 194 213902 0 0 78744 62 day 49 213903 0 0 78745 62 day 344 213904 0 0 78746 62 day 144 213905 0 0 78747 62 day 39 213906 0 0 78748 62 day 325 213907 0 0 78749 62 day 69 213908 0 0 78750 62 day 253 213909 0 0 78751 62 minute 45 213910 0 0 78752 62 day 319 213911 0 0 78753 62 day 57 213912 0 0 78754 62 day 110 213913 0 0 78755 62 day 4 213914 0 0 78756 62 day 360 213915 0 0 78757 62 day 50 213916 0 0 78758 62 day 184 213917 0 0 78759 62 day 206 213918 0 0 78760 62 day 27 213919 0 0 78761 62 day 266 213920 0 0 78762 62 day 124 213921 0 0 78763 62 day 142 213922 0 0 78764 62 day 229 213923 0 0 78765 62 day 106 213924 0 0 78766 62 day 174 213925 0 0 78767 62 day 259 213926 0 0 78768 62 at post-flowering 213927 0 0 78769 62 "categorical plant stage" . 213928 0 0 78770 62 day 66 213929 0 0 78771 62 day 146 213930 0 0 78772 62 day 65 213931 0 0 78773 62 day 8 213932 0 0 78774 62 day 304 213933 0 0 78775 62 day 348 213934 0 0 78776 62 day 221 213935 0 0 78777 62 day 117 213936 0 0 78778 62 hour 18 213937 0 0 78779 62 day 338 213938 0 0 78780 62 day 41 213939 0 0 78781 62 day 287 213940 0 0 78782 62 day 42 213941 0 0 78783 62 hour 13 213942 0 0 78784 62 day 13 213943 0 0 78785 62 day 95 213944 0 0 78786 62 day 226 213945 0 0 78787 62 day 60 213946 0 0 78788 62 day 285 213947 0 0 78789 62 day 323 213948 0 0 78790 62 day 336 213949 0 0 78791 62 day 64 213950 0 0 78792 62 day 46 213951 0 0 78793 62 day 119 213952 0 0 78794 62 day 227 213953 0 0 78795 62 day 61 213954 0 0 78796 62 Event relations Terms that can be linked with other time terms to specify their relation to breeding events 213955 0 0 78797 62 day 1 213956 0 0 78798 62 day 176 213957 0 0 78799 62 day 10 213958 0 0 78800 62 day 209 213959 0 0 78801 62 day 45 213960 0 0 78802 62 day 214 213961 0 0 78803 62 day 280 213962 0 0 78804 62 day 181 213963 0 0 78805 62 day 320 213964 0 0 78806 62 day 334 213965 0 0 78807 62 day 15 213966 0 0 78808 62 day 274 213967 0 0 78809 62 day 79 213968 0 0 78810 62 hour 4 213969 0 0 78811 62 day 203 213970 0 0 78812 62 day 99 213971 0 0 78813 62 day 354 213972 0 0 78814 62 day 297 213973 0 0 78815 62 day 326 213974 0 0 78816 62 day 324 213975 0 0 78817 62 after planting 213976 0 0 78818 62 day 219 213977 0 0 78819 62 day 14 213978 0 0 78820 62 day 173 213979 0 0 78821 62 day 161 213980 0 0 78822 62 day 275 213981 0 0 78823 62 day 130 213982 0 0 78824 62 day 162 213983 0 0 78825 62 day 132 213984 0 0 78826 62 day 251 213985 0 0 78827 62 day 88 213986 0 0 78828 62 day 137 213987 0 0 78829 62 day 17 213988 0 0 78830 62 day 191 213989 0 0 78831 62 day 59 213990 0 0 78832 62 day 355 213991 0 0 78833 62 day 111 213992 0 0 78834 35 analysis_experiment \N 213993 0 0 78835 38 analysis_project \N 213994 0 0 78836 38 project_sp_person_id \N 213995 0 0 78837 38 analysis_metadata_json \N 213996 0 0 78838 37 analysis_of \N 213997 0 0 78839 36 analysis_instance \N 213998 0 0 78840 67 trained_keras_mask_r_cnn_model \N 213999 0 0 78841 67 sommer_grm_spatial_genetic_blups \N 214000 0 0 78842 67 lmer_germplasmname_replicate \N 214001 0 0 78843 66 observation_unit_polygon_keras_autoencoder_decoded \N 214002 0 0 78844 35 analysis_model_experiment \N 214003 0 0 78845 56 analysis_model_properties \N 214004 0 0 78846 46 tissue_culture_data_json \N 214005 0 0 78847 69 Keras Predicted KerasCNNMLPExample Keras Predicted using KerasCNNMLPExample model 214006 0 0 78848 69 Keras Predicted KerasCNNInceptionResNetV2 Keras Predicted using KerasCNNInceptionResNetV2 model 214007 0 0 78849 69 Standard 4 Image Montage Standard 4 Image Montage of RGB, NRN, NReN, NIR background removed with threshold images 214008 0 0 78850 69 Keras Predicted KerasCNNDenseNet121ImageNetWeights Keras Predicted using KerasCNNDenseNet121ImageNetWeights model 214009 0 0 78851 69 Keras Predicted SimpleKerasTunerCNNSequentialSoftmaxCategorical Keras Predicted using SimpleKerasTunerCNNSequentialSoftmaxCategorical model 214010 0 0 78852 69 Keras Predicted KerasCNNInceptionResNetV2ImageNetWeights Keras Predicted using KerasCNNInceptionResNetV2ImageNetWeights model 214011 0 0 78853 69 Keras Tensorflow Models \N 214012 0 0 78854 69 Keras Predicted KerasTunerCNNSequentialSoftmaxCategorical Keras Predicted using KerasTunerCNNSequentialSoftmaxCategorical model 214013 0 0 78855 69 Keras Autoencoder 64_32_Conv_16_Latent Keras Autoencoder 64_32_Conv_16_Latent model 214014 0 0 78856 69 Keras Predicted KerasCNNSequentialSoftmaxCategorical Keras Predicted using KerasCNNSequentialSoftmaxCategorical model 214015 0 0 78857 69 Keras Predicted KerasCNNLSTMDenseNet121ImageNetWeights Keras Predicted using KerasCNNLSTMDenseNet121ImageNetWeights model 214016 0 0 78858 70 Univariate linear mixed model genetic BLUPs using germplasmName computed using LMER R \N 214017 0 0 78859 70 Multivariate linear mixed model genetic BLUPs using genetic relationship matrix and row and column spatial effects computed using Sommer R \N 214018 0 0 78860 70 SGNSTAT \N 214019 0 0 78861 66 observation_unit_polygon_keras_trained \N 214020 0 0 78862 67 sommer_grm_temporal_random_regression_dap_genetic_blups \N 214021 0 0 78863 67 sommer_grm_temporal_random_regression_gdd_genetic_blups \N 214022 0 0 78864 38 drone_run_raw_images_saved_gps_pixel_positions \N 214023 0 0 78865 38 drone_run_raw_images_saved_micasense_stacks_rotated \N 214024 0 0 78866 66 standard_process_interactive_match_temporary_drone_imagery \N 214025 0 0 78867 66 standard_process_interactive_align_temporary_drone_imagery \N 214026 0 0 78868 70 Multivariate linear mixed model genetic BLUPs using genetic relationship matrix and temporal Legendre polynomial random regression on growing degree days computed using Sommer R \N 214027 0 0 78869 70 Multivariate linear mixed model permanent environment BLUPs using genetic relationship matrix and temporal Legendre polynomial random regression on days after planting computed using Sommer R \N 214028 0 0 78870 70 Multivariate linear mixed model genetic BLUPs using genetic relationship matrix and temporal Legendre polynomial random regression on days after planting computed using Sommer R \N 214029 0 0 78871 70 Multivariate linear mixed model permanent environment BLUPs using genetic relationship matrix and temporal Legendre polynomial random regression on growing degree days computed using Sommer R \N 214030 0 0 78872 70 Multivariate linear mixed model 2D spline spatial BLUPs using genetic relationship matrix and row and column spatial effects computed using Sommer R \N 214031 0 0 78873 71 cycle 6 Sixth cycle (or ratoon six). 214032 0 0 78874 71 cycle 3 main plant Third cycle (ratoon three-main plant). 214033 0 0 78875 71 cycle 3 Third cycle (or ratoon three). 214034 0 0 78876 71 Plant_cycle \N 214035 0 0 78877 71 cycle 1 tallest sucker First cycle (ratoon one-tallest sucker). 214036 0 0 78878 71 cycle 2 main plant Second cycle (ratoon two-main plant). 214037 0 0 78879 71 cycle 4 main plant Fourth cycle (ratoon four-main plant). 214038 0 0 78880 71 cycle 4 tallest sucker Fourth cycle (ratoon four-tallest sucker). 214039 0 0 78881 71 cycle 4 Fourth cycle (or ratoon four). 214040 0 0 78882 71 cycle 2 tallest sucker Second cycle (ratoon two-tallest sucker). 214041 0 0 78883 71 cycle 2 Second cycle (or ratoon two). 214042 0 0 78884 71 cycle 1 First cycle (or ratoon one). 214043 0 0 78885 71 cycle 3 tallest sucker Third cycle (ratoon three-tallest sucker). 214044 0 0 78886 71 cycle 5 Fifth cycle (or ratoon five). 214045 0 0 78887 71 cycle 1 main plant First cycle (ratoon one-main plant). 214046 0 0 78888 72 1st most distal hand rank Record the most distal hand rand 214047 0 0 78889 72 leaf rank 25 Twenty fifth standing leaf, counting the rank by starting with youngest completly unrolled leaf as 1 and moving downwards. 214048 0 0 78890 72 leaf rank 02 Second standing leaf, counting the rank by starting with youngest completly unrolled leaf as 1 and moving downwards. 214049 0 0 78891 72 hand rank 20 Record the twentieth rank hand 214050 0 0 78892 72 leaf rank 08 First standing leaf, counting the rank by starting with youngest completly unrolled leaf as 1 and moving downwards. 214051 0 0 78893 72 leaf rank 19 Nineteenth standing leaf, counting the rank by starting with youngest completly unrolled leaf as 1 and moving downwards. 214052 0 0 78894 72 leaf rank 22 Twenty second standing leaf, counting the rank by starting with youngest completly unrolled leaf as 1 and moving downwards. 214053 0 0 78895 72 leaf rank 18 Eighteenth standing leaf, counting the rank by starting with youngest completly unrolled leaf as 1 and moving downwards. 214054 0 0 78896 72 leaf rank 29 Twenty ninth standing leaf, counting the rank by starting with youngest completly unrolled leaf as 1 and moving downwards. 214055 0 0 78897 72 hand rank 07 Record the seventh rank hand 214056 0 0 78898 72 hand rank 11 Record the eleventh rank hand 214057 0 0 78899 72 Plant_level \N 214058 0 0 78900 72 leaf rank 28 Twenty eighth standing leaf, counting the rank by starting with youngest completly unrolled leaf as 1 and moving downwards. 214059 0 0 78901 72 leaf rank 05 Fifth standing leaf, counting the rank by starting with youngest completly unrolled leaf as 1 and moving downwards. 214060 0 0 78902 72 leaf rank 16 Sixteenth standing leaf, counting the rank by starting with youngest completly unrolled leaf as 1 and moving downwards. 214061 0 0 78903 72 leaf rank 21 Twenty first standing leaf, counting the rank by starting with youngest completly unrolled leaf as 1 and moving downwards. 214062 0 0 78904 72 hand rank 10 Record the tenth rank hand 214063 0 0 78905 72 hand rank 02 Record the second rank hand 214064 0 0 78906 72 hand rank 26 Record the twenty sixth rank hand 214065 0 0 78907 72 leaf rank 04 Fourth standing leaf, counting the rank by starting with youngest completly unrolled leaf as 1 and moving downwards. 214066 0 0 78908 72 hand rank 19 Record the nineteenth rank hand 214067 0 0 78909 72 hand rank 16 Record the sixteenth rank hand 214068 0 0 78910 72 hand rank 15 Record the fifteenth rank hand 214069 0 0 78911 72 hand rank 08 Record the height rank hand 214070 0 0 78912 72 hand rank 17 Record the seventeenth rank hand 214071 0 0 78913 72 leaf rank 20 First standing leaf, counting the rank by starting with youngest completly unrolled leaf as 1 and moving downwards. 214072 0 0 78914 72 hand rank 25 Record the twenty fifth rank hand 214073 0 0 78915 72 leaf rank 03 Third standing leaf, counting the rank by starting with youngest completly unrolled leaf as 1 and moving downwards. 214074 0 0 78916 72 leaf rank 10 Tenth standing leaf, counting the rank by starting with youngest completly unrolled leaf as 1 and moving downwards. 214075 0 0 78917 72 hand rank 06 Record the sixth rank hand 214076 0 0 78918 72 hand rank 28 Record the twenty eighth rank hand 214077 0 0 78919 72 leaf rank 27 Twenty seventh standing leaf, counting the rank by starting with youngest completly unrolled leaf as 1 and moving downwards. 214078 0 0 78920 72 leaf level Categorical leaf levels. 214079 0 0 78921 72 leaf rank 07 Seventh standing leaf, counting the rank by starting with youngest completly unrolled leaf as 1 and moving downwards. 214080 0 0 78922 72 leaf rank 26 Twenty fourth standing leaf, counting the rank by starting with youngest completly unrolled leaf as 1 and moving downwards. 214081 0 0 78923 72 leaf rank 17 First standing leaf, counting the rank by starting with youngest completly unrolled leaf as 1 and moving downwards. 214082 0 0 78924 72 leaf rank 09 Ninth standing leaf, counting the rank by starting with youngest completly unrolled leaf as 1 and moving downwards. 214083 0 0 78925 72 hand rank 04 Record the fourth rank hand 214084 0 0 78926 72 hand rank 27 Record the twenty seventh rank hand 214085 0 0 78927 72 hand rank 22 Record the twenty second rank hand 214086 0 0 78928 72 2nd distal hand rank Record the second most distal hand rand 214087 0 0 78929 72 leaf rank 14 Fourteenth standing leaf, counting the rank by starting with youngest completly unrolled leaf as 1 and moving downwards. 214088 0 0 78930 72 leaf rank 11 Eleventh standing leaf, counting the rank by starting with youngest completly unrolled leaf as 1 and moving downwards. 214089 0 0 78931 72 hand rank 29 Record the twenty ninth rank hand 214090 0 0 78932 72 leaf rank 30 Thirtiest standing leaf, counting the rank by starting with youngest completly unrolled leaf as 1 and moving downwards. 214091 0 0 78933 72 hand rank 23 Record the twenty third rank hand 214092 0 0 78934 72 leaf rank 01 First standing leaf, counting the rank by starting with youngest completly unrolled leaf as 1 and moving downwards. 214093 0 0 78935 72 hand rank 24 Record the twenty fourth rank hand 214094 0 0 78936 72 hand rank 09 Record the ninth rank hand 214095 0 0 78937 72 generation Categorical plant generations. 214096 0 0 78938 72 hand rank 21 Record the twenty first rank hand 214097 0 0 78939 72 hand rank 01 Record the first rank hand 214098 0 0 78940 72 leaf rank 06 Sixth standing leaf, counting the rank by starting with youngest completly unrolled leaf as 1 and moving downwards. 214099 0 0 78941 72 leaf rank 15 Fifteenth standing leaf, counting the rank by starting with youngest completly unrolled leaf as 1 and moving downwards. 214100 0 0 78942 72 hand rank 03 Record the third rank hand 214101 0 0 78943 72 leaf rank 24 Twenty fourth standing leaf, counting the rank by starting with youngest completly unrolled leaf as 1 and moving downwards. 214102 0 0 78944 72 hand rank Record the rank (order) of a hand in the bunch, starting with the hand at the proximal end (closest to the pseudostem) of the bunch as 1 and continuing to the hand at the most distal end (closest to the male bud). 214103 0 0 78945 72 hand rank 12 Record the twelfth rank hand 214104 0 0 78946 72 hand rank 13 Record the thirteenth rank hand 214105 0 0 78947 72 hand rank 05 Record the fifth rank hand 214106 0 0 78948 72 leaf rank 23 Twenty third standing leaf, counting the rank by starting with youngest completly unrolled leaf as 1 and moving downwards. 214107 0 0 78949 72 hand rank 14 Record the fourteenth rank hand 214108 0 0 78950 72 hand rank 18 Record the eighteenth rank hand 214109 0 0 78951 72 hand rank 30 Record the thirtieth rank hand 214110 0 0 78952 72 leaf rank 13 Thirteenth standing leaf, counting the rank by starting with youngest completly unrolled leaf as 1 and moving downwards. 214111 0 0 78953 72 leaf rank 12 Twelfth standing leaf, counting the rank by starting with youngest completly unrolled leaf as 1 and moving downwards. 214112 0 0 78954 73 grated boiled \N 214113 0 0 78955 73 Plant treatment \N 214114 0 0 78956 73 boiled \N 214115 0 0 78957 73 raw \N 214116 0 0 78958 73 mashed raw \N 214117 0 0 78959 73 grated raw \N 214118 0 0 78960 73 grated dried \N 214119 0 0 78961 73 mashed dried \N 214120 0 0 78962 73 mashed boiled \N 214121 0 0 78963 73 fried \N 214122 0 0 78964 73 dried \N 214123 0 0 78965 73 grated fried \N 214124 0 0 78966 73 mashed fried \N 214125 0 0 78967 74 cube 3 \N 214126 0 0 78968 74 slice 2 \N 214127 0 0 78969 74 cube 2 slice 3 \N 214128 0 0 78970 74 cube 4 slice 1 \N 214129 0 0 78971 74 cube 3 slice 2 \N 214130 0 0 78972 74 cube 1 \N 214131 0 0 78973 74 cube 3 slice 5 \N 214132 0 0 78974 74 cube 2 slice 5 \N 214133 0 0 78975 74 cube 4 slice 4 \N 214134 0 0 78976 74 cube 3 slice 1 \N 214135 0 0 78977 74 cube 2 slice 4 \N 214136 0 0 78978 74 cube 4 slice 2 \N 214137 0 0 78979 74 cube 2 slice 2 \N 214138 0 0 78980 74 cube 5 slice 1 \N 214139 0 0 78981 74 cube 5 slice 2 \N 214140 0 0 78982 74 cube 5 slice 5 \N 214141 0 0 78983 74 slice 1 \N 214142 0 0 78984 74 cube 1 slice 5 \N 214143 0 0 78985 74 cube 2 slice 1 \N 214144 0 0 78986 74 Tuber cut \N 214145 0 0 78987 74 slice 4 \N 214146 0 0 78988 74 cube 1 slice 4 \N 214147 0 0 78989 74 cube 4 \N 214148 0 0 78990 74 cube 2 \N 214149 0 0 78991 74 cube 4 slice 3 \N 214150 0 0 78992 74 slice 3 \N 214151 0 0 78993 74 cube 5 slice 4 \N 214152 0 0 78994 74 cube 4 slice 5 \N 214153 0 0 78995 74 slice 5 \N 214154 0 0 78996 74 cube 5 \N 214155 0 0 78997 74 cube 3 slice 4 \N 214156 0 0 78998 74 cube 1 slice 3 \N 214157 0 0 78999 74 cube 3 slice 3 \N 214158 0 0 79000 74 cube 1 slice 1 \N 214159 0 0 79001 74 cube 1 slice 2 \N 214160 0 0 79002 74 cube 5 slice 3 \N 214161 0 0 79003 46 seedlot_quality \N 214162 0 0 79004 38 drone_run_is_raw_images \N 214163 0 0 79005 38 drone_run_raw_images_rotation_occuring \N 214164 0 0 79006 38 drone_run_raw_images_saved_micasense_stacks_separated \N 214165 0 0 79007 38 drone_run_band_plot_polygons_separated \N 214166 0 0 79008 35 drone_run_experiment \N 214167 0 0 79009 38 drone_run_ground_control_points \N 214168 0 0 79010 36 imaging_event_vehicle \N 214169 0 0 79011 46 imaging_event_vehicle_json \N 214170 0 0 79012 67 uploaded_generic_analysis_model \N 214171 0 0 79013 70 Multivariate linear mixed model permanent environment BLUPs using genetic relationship matrix and temporal Legendre polynomial random regression on growing degree days computed using BLUPf90 \N 214172 0 0 79014 70 Univariate linear mixed model spatial BLUPs using genetic relationship matrix and separable Ar1xAr1 row and column effect computed using ASReml \N 214173 0 0 79015 70 Multivariate linear mixed model genetic BLUPs using genetic relationship matrix and temporal Legendre polynomial random regression on days after planting computed using BLUPf90 \N 214174 0 0 79016 70 Univariate linear mixed model genetic BLUPs using genetic relationship matrix and separable Ar1xAr1 row and column effect computed using ASReml \N 214175 0 0 79017 70 Multivariate linear mixed model genetic BLUPs using genetic relationship matrix and temporal Legendre polynomial random regression on growing degree days computed using BLUPf90 \N 214176 0 0 79018 70 Multivariate linear mixed model permanent environment BLUPs using genetic relationship matrix and temporal Legendre polynomial random regression on days after planting computed using BLUPf90 \N 214177 0 0 79019 67 waves_nirs_spectral_predictions \N 214178 0 0 79020 67 blupf90_grm_random_regression_gdd_blups \N 214179 0 0 79021 67 blupf90_grm_random_regression_dap_blups \N 214180 0 0 79022 70 Support vector machine (SVM) with radial kernel as implemented with the kernLab package in R \N 214181 0 0 79023 70 Partial least squares regression (PLSR) as implemented with the pls package in R \N 214182 0 0 79024 70 Random Forest Regression (RF) as implemented with the RandomForest package in R \N 214183 0 0 79025 70 Support vector machine (SVM) with linear kernel as implemented with the kernLab package in R \N 214184 0 0 79026 70 Multivariate linear mixed model genetic BLUPs using genetic relationship matrix and temporal Legendre polynomial random regression on days after planting computed using AIREMLf90 \N 214185 0 0 79027 70 Multivariate linear mixed model permanent environment BLUPs using genetic relationship matrix and temporal Legendre polynomial random regression on days after planting computed using AIREMLf90 \N 214186 0 0 79028 70 Multivariate linear mixed model permanent environment BLUPs using genetic relationship matrix and temporal Legendre polynomial random regression on growing degree days computed using AIREMLf90 \N 214187 0 0 79029 70 Multivariate linear mixed model genetic BLUPs using genetic relationship matrix and temporal Legendre polynomial random regression on growing degree days computed using AIREMLf90 \N 214188 0 0 79030 67 airemlf90_grm_random_regression_dap_blups \N 214189 0 0 79031 67 airemlf90_grm_random_regression_gdd_blups \N 214190 0 0 79032 67 sommer_grm_genetic_only_random_regression_dap_genetic_blups \N 214191 0 0 79033 67 sommer_grm_genetic_only_random_regression_gdd_genetic_blups \N 214192 0 0 79034 70 Two-dimension numerical first derivative across rows and columns \N 214193 0 0 79035 70 Two-dimension numerical second derivative across rows and columns \N 214194 0 0 79036 37 cross_member_of \N 214195 0 0 79037 37 family_female_parent_of \N 214196 0 0 79038 37 family_male_parent_of \N 214197 0 0 79039 38 drone_run_averaged_precipitation_sum \N 214198 0 0 79040 67 sommer_grm_genetic_blups \N 214199 0 0 79041 70 Multivariate genetic BLUPs using genetic relationship matrix computed using Sommer R \N 214200 0 0 79042 70 Adjusted means using LMER R \N 214201 0 0 79043 38 genotyping_vendor_order_id \N 214202 0 0 79044 67 mixed_model_lmer \N 214203 0 0 79045 38 product_profile_json \N 214204 0 0 79046 70 Multivariate linear mixed model residual using genetic relationship matrix and 2D spline row and column spatial effects computed using Sommer R \N 214205 0 0 79047 70 Multivariate linear mixed model residual using genetic relationship matrix and temporal Legendre polynomial random regression on growing degree days computed using BLUPf90 \N 214206 0 0 79048 70 Multivariate linear mixed model residual using genetic relationship matrix and temporal Legendre polynomial random regression on days after planting computed using Sommer R \N 214207 0 0 79049 70 Multivariate linear mixed model residual using genetic relationship matrix and temporal Legendre polynomial random regression on days after planting computed using BLUPf90 \N 214208 0 0 79050 70 Phenotypic BLUPs using LMER R \N 214209 0 0 79051 70 Univariate linear mixed model residual using genetic relationship matrix and separable Ar1xAr1 row and column effect computed using ASReml \N 214210 0 0 79052 70 Multivariate linear mixed model residual using genetic relationship matrix and temporal Legendre polynomial random regression on growing degree days computed using Sommer R \N 214211 0 0 79053 70 Phenotypic BLUEs using LMER R \N 214212 0 0 79054 70 Adjusted means from BLUPs using LMER R \N 214213 0 0 79055 70 Adjusted means from BLUEs using LMER R \N 214214 0 0 79056 70 Multivariate linear mixed model residual using genetic relationship matrix and temporal Legendre polynomial random regression on growing degree days computed using AIREMLf90 \N 214215 0 0 79057 70 Multivariate linear mixed model residual using genetic relationship matrix and temporal Legendre polynomial random regression on days after planting computed using AIREMLf90 \N 214216 0 0 \. -- -- Data for Name: cvterm_dbxref; Type: TABLE DATA; Schema: public; Owner: postgres -- COPY public.cvterm_dbxref (cvterm_dbxref_id, cvterm_id, dbxref_id, is_for_definition) FROM stdin; 1 1 3 0 2 1 4 1 3 3 6 0 4 4 8 1 5 5 10 0 6 6 12 0 7 6 4 1 8 7 14 0 9 8 16 0 10 8 4 1 11 9 18 0 12 9 4 1 13 10 20 0 14 10 4 1 15 11 22 0 16 11 4 1 17 12 24 0 18 13 26 0 19 13 4 1 20 14 28 0 21 15 30 0 22 15 4 1 23 16 32 0 24 17 34 0 25 18 36 0 26 19 38 0 27 20 40 0 28 21 42 0 29 21 4 1 30 22 44 0 31 22 4 1 32 23 46 0 33 24 48 0 34 24 4 1 35 25 50 0 36 25 4 1 37 26 52 0 38 26 4 1 39 27 54 0 40 27 4 1 58005 33980 41271 0 58006 33980 41272 0 58007 33980 40785 1 58008 33980 41273 1 104059 61373 78032 0 104060 61373 40785 1 110875 65622 41091 1 110876 65622 43319 1 110877 65623 40877 1 110878 65623 86072 1 110879 65624 40765 1 110880 65625 40765 1 110881 65625 86075 1 110882 65625 74447 1 110883 65626 40765 1 110884 65626 40933 1 110885 65627 40765 1 110886 65628 40796 1 110887 65629 40768 1 110888 65630 40963 1 110889 65630 86081 1 110890 65630 86082 1 110891 65631 40799 1 110892 65631 86084 1 110893 65632 86086 1 110894 65633 40783 1 110895 65633 86088 1 110896 65634 86090 1 110897 65635 40765 1 110898 65635 86092 1 110899 65635 86093 1 110900 65636 86095 1 110901 65637 86097 0 110902 65637 40765 1 110903 65637 40933 1 110904 65638 40783 1 110905 65638 40777 1 110906 65639 40765 1 110907 65640 40765 1 110908 65641 40870 1 110909 65642 86103 1 110910 65643 86105 1 110911 65644 41091 1 110912 65644 41149 1 110913 65645 41091 1 110914 65645 41149 1 110915 65646 40794 1 110916 65646 86109 1 110917 65647 86111 1 110918 65647 86112 1 110919 65647 86113 1 110920 65647 86114 1 110921 65648 86103 1 110922 65649 40783 1 110923 65650 40765 1 110924 65651 40765 1 110925 65652 40765 1 110926 65653 49388 1 110927 65654 86122 1 110928 65655 41091 1 110929 65655 86124 1 110930 65655 86125 1 110931 65656 40933 1 110932 65657 86128 1 110933 65658 40877 1 110934 65659 40870 1 110935 65659 40799 1 110936 65660 86132 1 110937 65661 82933 1 110938 65661 40990 1 110939 65661 40765 1 110940 65661 41527 1 110941 65661 86134 1 110942 65661 86135 1 110943 65662 40765 1 110944 65663 40785 1 110945 65664 40780 1 110946 65664 40783 1 110947 65664 40865 1 110948 65664 41724 1 110949 65664 46349 1 110950 65665 40765 1 110951 65666 86141 1 110952 65667 40777 1 110953 65668 41239 1 110954 65669 41269 1 110955 65670 86146 1 110956 65671 40783 1 110957 65672 41239 1 110958 65672 86149 1 110959 65673 86151 0 110960 65673 41499 1 110961 65674 40799 1 110962 65674 51994 1 110963 65675 41212 1 110964 65675 86154 1 110965 65675 86155 1 110966 65676 65715 1 110967 65676 65716 1 110968 65677 40777 1 110969 65678 44631 1 110970 65678 40799 1 110971 65678 41499 1 110972 65679 41233 1 110973 65679 86160 1 110974 65680 40765 1 110975 65681 40765 1 110976 65682 40777 1 110977 65682 86164 1 110978 65683 40796 1 110979 65683 86166 1 110980 65684 41136 1 110981 65684 86168 1 110982 65685 86170 1 110983 65685 86171 1 110984 65686 40990 1 110985 65686 40765 1 110986 65687 86174 1 110987 65688 40780 1 110988 65688 40783 1 110989 65688 42736 1 110990 65689 40765 1 110991 65689 83255 1 110992 65690 40765 1 110993 65691 40765 1 110994 65691 40772 1 110995 65691 86179 1 110996 65692 86181 1 110997 65693 86183 0 110998 65693 40783 1 110999 65694 41456 1 111000 65694 40799 1 111001 65695 40765 1 111002 65695 40772 1 111003 65695 86186 1 111004 65695 86187 1 111005 65696 40765 1 111006 65696 40961 1 111007 65697 40783 1 111008 65697 40799 1 111009 65697 86190 1 111010 65698 40765 1 111011 65699 40765 1 111012 65699 86193 1 111013 65700 40806 1 111014 65700 86195 1 111015 65700 86196 1 111016 65700 51138 1 111017 65701 40799 1 111018 65701 40777 1 111019 65702 41099 1 111020 65703 86200 1 111021 65704 40765 1 111022 65704 86202 1 111023 65705 40805 1 111024 65705 86204 1 111025 65705 86205 1 111026 65706 40990 1 111027 65707 40785 1 111028 65707 40777 1 111029 65708 40805 1 111030 65708 86209 1 111031 65709 40783 1 111032 65710 86212 1 111033 65711 40780 1 111034 65711 42736 1 111035 65711 86214 1 111036 65712 40805 1 111037 65712 86216 1 111038 65713 40765 1 111039 65713 86218 1 111040 65713 86219 1 111041 65713 86220 1 111042 65714 40765 1 111043 65715 86223 1 111044 65716 40783 1 111045 65716 86225 1 111046 65717 86227 1 111047 65718 40768 1 111048 65718 86229 1 111049 65718 86230 1 111050 65719 86232 1 111051 65720 40765 1 111052 65721 41149 1 111053 65721 86235 1 111054 65722 40783 1 111055 65723 86238 1 111056 65723 86239 1 111057 65724 41463 1 111058 65724 86241 1 111059 65725 40765 1 111060 65725 86243 1 111061 65725 86244 1 111062 65726 86246 1 111063 65726 86247 1 111064 65727 51724 1 111065 65727 86249 1 111066 65728 40783 1 111067 65729 40783 1 111068 65729 86252 1 111069 65729 86253 1 111070 65730 41092 1 111071 65730 86255 1 111072 65730 86256 1 111073 65731 40990 1 111074 65731 86258 1 111075 65731 86259 1 111076 65732 40768 1 111077 65732 41149 1 111078 65732 86261 1 111079 65733 40990 1 111080 65733 40765 1 111081 65734 41463 1 111082 65735 86265 1 111083 65736 40783 1 111084 65737 40805 1 111085 65737 40963 1 111086 65737 86268 1 111087 65738 40765 1 111088 65739 40765 1 111089 65739 41212 1 111090 65739 86271 1 111091 65740 82933 1 111092 65740 40990 1 111093 65740 40765 1 111094 65740 86273 1 111095 65740 86135 1 111096 65741 86275 1 111097 65742 41284 1 111098 65743 41091 1 111099 65744 40783 1 111100 65745 40765 1 111101 65746 40783 1 111102 65747 40870 1 111103 65747 61037 1 111104 65747 61038 1 111105 65748 40818 1 111106 65749 40799 1 111107 65749 86146 1 111108 65750 40765 1 111109 65751 40765 1 111110 65752 86287 1 111111 65752 86288 1 111112 65753 41136 1 111113 65753 40765 1 111114 65754 40765 1 111115 65755 40765 1 111116 65756 41149 1 111117 65756 86235 1 111118 65757 40765 1 111119 65757 40799 1 111120 65758 40765 1 111121 65759 40765 1 111122 65759 86296 1 111123 65760 43648 1 111124 65761 86299 1 111125 65762 86301 1 111126 65763 86303 1 111127 65764 41456 1 111128 65765 40780 1 111129 65765 42736 1 111130 65766 40765 1 111131 65767 86308 1 111132 65768 40765 1 111133 65768 86193 1 111134 65768 86310 1 111135 65769 41284 1 111136 65769 86312 1 111137 65769 86313 1 111138 65770 86315 1 111139 65771 40794 1 111140 65771 40765 1 111141 65771 86317 1 111142 65771 86318 1 111143 65772 40765 1 111144 65772 59601 1 111145 65773 67136 1 111146 65774 41818 1 111147 65774 86322 1 111148 65775 40768 1 111149 65775 41149 1 111150 65775 86261 1 111151 65776 86103 1 111152 65777 86326 0 111153 65777 86327 0 111154 65777 86328 0 111155 65777 86329 0 111156 65777 40799 1 111157 65778 41463 1 111158 65779 40765 1 111159 65779 40799 1 111160 65780 86333 1 111161 65781 86335 1 111162 65782 40765 1 111163 65782 86337 1 111164 65783 86339 1 111165 65784 40768 1 111166 65784 41463 1 111167 65785 40765 1 111168 65786 40783 1 111169 65786 86343 1 111170 65786 86344 1 111171 65787 86346 1 111172 65787 67309 1 111173 65787 86347 1 111174 65788 41212 1 111175 65788 86349 1 111176 65788 86350 1 111177 65789 86352 1 111178 65789 43552 1 111179 65790 40783 1 111180 65791 86355 1 111181 65792 86357 1 111182 65792 86358 1 111183 65793 40783 1 111184 65793 86360 1 111185 65794 86362 1 111186 65794 86363 1 111187 65794 86364 1 111188 65795 86366 1 111189 65796 40799 1 111190 65797 86369 1 111191 65797 86370 1 111192 65798 40765 1 111193 65798 40777 1 111194 65798 86372 1 111195 65799 41091 1 111196 65800 86375 0 111197 65800 40990 1 111198 65800 40799 1 111199 65800 86376 1 111200 65800 51716 1 111201 65801 86299 1 111202 65802 40765 1 111203 65802 40799 1 111204 65803 40765 1 111205 65803 86380 1 111206 65803 86381 1 111207 65803 86382 1 111208 65804 40783 1 111209 65805 86385 0 111210 65805 41818 1 111211 65805 86386 1 111212 65806 86388 1 111213 65806 86389 1 111214 65806 86390 1 111215 65807 40765 1 111216 65807 45028 1 111217 65808 41499 1 111218 65809 40765 1 111219 65809 40772 1 111220 65809 40777 1 111221 65810 86395 1 111222 65810 86396 1 111223 65811 40799 1 111224 65811 52763 1 111225 65812 40777 1 111226 65813 40805 1 111227 65813 86400 1 111228 65814 86402 1 111229 65815 40961 1 111230 65816 40933 1 111231 65817 41499 1 111232 65818 86407 1 111233 65819 40783 1 111234 65819 41153 1 111235 65820 86410 1 111236 65821 73849 1 111237 65821 86412 1 111238 65822 40796 1 111239 65823 40783 1 111240 65823 86415 1 111241 65823 86416 1 111242 65824 56615 1 111243 65825 41136 1 111244 65826 40783 1 111245 65827 40765 1 111246 65828 40765 1 111247 65829 40765 1 111248 65829 86423 1 111249 65830 86425 1 111250 65830 86426 1 111251 65831 86103 1 111252 65832 86429 1 111253 65833 41212 1 111254 65833 86431 1 111255 65834 86433 1 111256 65835 40814 1 111257 65835 41745 1 111258 65836 40805 1 111259 65836 41499 1 111260 65837 86437 0 111261 65837 40933 1 111262 65838 86439 1 111263 65838 86440 1 111264 65838 86441 1 111265 65839 40765 1 111266 65839 40772 1 111267 65840 73849 1 111268 65840 86444 1 111269 65841 67487 1 111270 65842 40785 1 111271 65843 86448 1 111272 65843 86449 1 111273 65843 86450 1 111274 65844 40990 1 111275 65844 86452 1 111276 65845 86303 1 111277 65846 40783 1 111278 65846 86455 1 111279 65847 40785 1 111280 65847 40933 1 111281 65848 40961 1 111282 65849 64032 1 111283 65850 40774 1 111284 65851 40806 1 111285 65851 86461 1 111286 65852 40765 1 111287 65852 86463 1 111288 65853 40765 1 111289 65853 51815 1 111290 65853 86465 1 111291 65854 40765 1 111292 65855 40765 1 111293 65856 40783 1 111294 65857 40814 1 111295 65857 41463 1 111296 65857 86470 1 111297 65858 40777 1 111298 65858 41745 1 111299 65858 40933 1 111300 65859 86473 1 111301 65859 40783 1 111302 65860 73849 1 111303 65860 86412 1 111304 65861 82933 1 111305 65861 40990 1 111306 65861 40765 1 111307 65861 86273 1 111308 65861 86135 1 111309 65862 40799 1 111310 65862 86477 1 111311 65863 40777 1 111312 65864 86480 1 111313 65865 40990 1 111314 65865 86482 1 111315 65865 86483 1 111316 65865 86484 1 111317 65866 86486 1 111318 65867 40765 1 111319 65868 86489 0 111320 65868 40799 1 111321 65868 41499 1 111322 65869 40780 1 111323 65869 42736 1 111324 65869 86491 1 111325 65870 40794 1 111326 65870 86493 1 111327 65870 86494 1 111328 65871 40783 1 111329 65871 86496 1 111330 65871 86497 1 111331 65872 86499 1 111332 65873 86501 1 111333 65873 40765 1 111334 65874 41818 1 111335 65875 41239 1 111336 65876 40788 1 111337 65877 40783 1 111338 65878 40765 1 111339 65878 40799 1 111340 65879 48534 1 111341 65880 40783 1 111342 65880 86509 1 111343 65881 40870 1 111344 65882 86512 1 111345 65882 86513 1 111346 65882 86514 1 111347 65883 86315 1 111348 65883 86516 1 111349 65883 86517 1 111350 65884 67136 1 111351 65885 40783 1 111352 65886 40780 1 111353 65886 42736 1 111354 65886 86521 1 111355 65887 40805 1 111356 65887 86209 1 111357 65888 40765 1 111358 65888 51815 1 111359 65888 86465 1 111360 65889 40783 1 111361 65890 40933 1 111362 65891 40783 1 111363 65891 40933 1 111364 65892 48534 1 111365 65893 86529 1 111366 65894 40783 1 111367 65894 86531 1 111368 65895 40783 1 111369 65895 86533 1 111370 65895 86534 1 111371 65896 40765 1 111372 65896 86536 1 111373 65897 40765 1 111374 65897 51747 1 111375 65898 86539 1 111376 65899 86333 1 111377 65900 86542 1 111378 65900 86543 1 111379 65901 40765 1 111380 65901 86545 1 111381 65901 86546 1 111382 65902 40765 1 111383 65903 40774 1 111384 65904 86550 1 111385 65905 40777 1 111386 65906 86553 1 111387 65907 41499 1 111388 65908 40785 1 111389 65908 40950 1 111390 65908 61709 1 111391 65909 86557 1 111392 65910 40794 1 111393 65910 40765 1 111394 65910 40795 1 111395 65910 86559 1 111396 65910 86560 1 111397 65911 86562 1 111398 65912 40870 1 111399 65912 40799 1 111400 65913 40990 1 111401 65913 86565 1 111402 65914 40765 1 111403 65914 86567 1 111404 65915 40777 1 111405 65916 73849 1 111406 65916 86444 1 111407 65917 86480 1 111408 65918 41054 1 111409 65919 40783 1 111410 65919 86573 1 111411 65919 86574 1 111412 65920 40765 1 111413 65920 86567 1 111414 65921 58590 1 111415 65922 42879 1 111416 65923 86579 0 111417 65923 40783 1 111418 65923 40765 1 111419 65923 86580 1 111420 65923 86581 1 111421 65923 86582 1 111422 65924 40785 1 111423 65925 86585 1 111424 65925 86586 1 111425 65926 86588 1 111426 65927 86590 1 111427 65927 40783 1 111428 65927 86591 1 111429 65927 86592 1 111430 65928 40765 1 111431 65929 40783 1 111432 65929 41153 1 111433 65929 40933 1 111434 65930 40783 1 111435 65931 86597 1 111436 65932 40783 1 111437 65933 86600 1 111438 65934 40765 1 111439 65934 86602 1 111440 65935 40799 1 111441 65935 86604 1 111442 65935 86605 1 111443 65935 86606 1 111444 65936 40933 1 111445 65937 69171 1 111446 65938 41499 1 111447 65939 59601 1 111448 65940 86132 1 111449 65941 86613 1 111450 65941 86614 1 111451 65942 57419 1 111452 65942 40765 1 111453 65943 40963 1 111454 65943 86617 1 111455 65944 86619 1 111456 65945 86621 1 111457 65946 86623 1 111458 65947 40785 1 111459 65948 52687 1 111460 65948 86626 1 111461 65948 86627 1 111462 65949 40780 1 111463 65949 40865 1 111464 65949 41724 1 111465 65950 41456 1 111466 65951 40814 1 111467 65952 86632 0 111468 65952 40765 1 111469 65952 41184 1 111470 65952 42299 1 111471 65953 40765 1 111472 65953 86634 1 111473 65954 40765 1 111474 65954 86636 1 111475 65955 40765 1 111476 65955 86638 1 111477 65956 40783 1 111478 65957 40794 1 111479 65957 86641 1 111480 65958 86643 1 111481 65959 40765 1 111482 65960 86646 1 111483 65961 40780 1 111484 65961 86648 1 111485 65961 86649 1 111486 65962 40785 1 111487 65963 86652 1 111488 65963 86653 1 111489 65964 40783 1 111490 65965 40799 1 111491 65965 41212 1 111492 65966 40777 1 111493 65966 52444 1 111494 65967 41463 1 111495 65968 42294 1 111496 65968 41212 1 111497 65968 86659 1 111498 65968 86660 1 111499 65969 40772 1 111500 65969 86662 1 111501 65969 86663 1 111502 65970 40783 1 111503 65970 86088 1 111504 65971 86666 1 111505 65972 40783 1 111506 65973 40765 1 111507 65973 86669 1 111508 65973 86670 1 111509 65974 40783 1 111510 65975 86543 1 111511 65976 40774 1 111512 65977 40783 1 111513 65978 40783 1 111514 65979 40772 1 111515 65979 41527 1 111516 65979 86677 1 111517 65979 86678 1 111518 65980 41136 1 111519 65980 86680 1 111520 65981 40774 1 111521 65982 86683 1 111522 65983 40774 1 111523 65983 43120 1 111524 65984 40796 1 111525 65985 40961 1 111526 65986 40765 1 111527 65987 40870 1 111528 65987 40799 1 111529 65988 86690 1 111530 65989 86692 0 111531 65989 41227 1 111532 65989 40933 1 111533 65990 40783 1 111534 65990 86694 1 111535 65991 40933 1 111536 65992 86103 1 111537 65993 41091 1 111538 65994 41136 1 111539 65995 48534 1 111540 65996 86701 0 111541 65996 40818 1 111542 65996 86702 1 111543 65997 41284 1 111544 65998 40783 1 111545 65998 41184 1 111546 65998 86216 1 111547 65999 43552 1 111548 65999 86706 1 111549 66000 40765 1 111550 66000 86708 1 111551 66001 86710 1 111552 66001 75014 1 111553 66002 40990 1 111554 66002 86482 1 111555 66002 86483 1 111556 66002 86484 1 111557 66003 40765 1 111558 66003 86634 1 111559 66003 86713 1 111560 66004 40765 1 111561 66005 41456 1 111562 66005 42734 1 111563 66006 41233 1 111564 66007 86718 1 111565 66007 86719 1 111566 66007 86720 1 111567 66008 86722 1 111568 66009 40768 1 111569 66010 73339 1 111570 66010 84719 1 111571 66011 40963 1 111572 66011 86726 1 111573 66011 86727 1 111574 66011 86728 1 111575 66012 86730 1 111576 66013 86732 1 111577 66014 44631 1 111578 66014 49388 1 111579 66015 86735 0 111580 66015 86736 1 111581 66016 40765 1 111582 66017 41091 1 111583 66018 86740 1 111584 66019 41284 1 111585 66019 86742 1 111586 66020 40765 1 111587 66020 86744 1 111588 66021 86746 0 111589 66021 40933 1 111590 66022 40805 1 111591 66023 40780 1 111592 66023 42736 1 111593 66024 86750 1 111594 66025 43866 1 111595 66026 40780 1 111596 66026 42736 1 111597 66026 86214 1 111598 66027 44631 1 111599 66027 41456 1 111600 66028 40765 1 111601 66028 43830 1 111602 66028 42671 1 111603 66028 86755 1 111604 66029 40765 1 111605 66030 40814 1 111606 66030 86758 1 111607 66031 86760 1 111608 66031 40814 1 111609 66032 40783 1 111610 66033 74693 1 111611 66034 40783 1 111612 66035 40765 1 111613 66035 41099 1 111614 66036 86766 1 111615 66036 86767 1 111616 66037 41136 1 111617 66037 40765 1 111618 66037 86769 1 111619 66037 86770 1 111620 66038 86772 1 111621 66039 40806 1 111622 66039 86774 1 111623 66040 86776 1 111624 66040 86777 1 111625 66041 40785 1 111626 66042 40794 1 111627 66042 42626 1 111628 66042 86780 1 111629 66043 40805 1 111630 66043 86782 1 111631 66044 40765 1 111632 66044 41499 1 111633 66044 86784 1 111634 66045 40799 1 111635 66045 86604 1 111636 66045 86605 1 111637 66045 86606 1 111638 66046 41212 1 111639 66046 86787 1 111640 66047 40765 1 111641 66048 40765 1 111642 66048 40799 1 111643 66049 86791 1 111644 66050 43760 1 111645 66050 86793 1 111646 66050 86794 1 111647 66051 82933 1 111648 66051 40990 1 111649 66051 40765 1 111650 66051 41527 1 111651 66051 86134 1 111652 66051 86135 1 111653 66052 40765 1 111654 66053 40814 1 111655 66053 40799 1 111656 66053 86798 1 111657 66053 86799 1 111658 66054 86801 1 111659 66055 40765 1 111660 66056 40765 1 111661 66057 86805 1 111662 66058 86807 1 111663 66058 86808 1 111664 66058 86809 1 111665 66058 86810 1 111666 66058 86811 1 111667 66059 40765 1 111668 66060 40765 1 111669 66061 40794 1 111670 66061 40876 1 111671 66061 40814 1 111672 66061 42867 1 111673 66061 86815 1 111674 66061 86816 1 111675 66061 86817 1 111676 66062 86819 1 111677 66063 86821 1 111678 66064 41091 1 111679 66064 41149 1 111680 66065 40805 1 111681 66065 86216 1 111682 66066 41091 1 111683 66067 40990 1 111684 66067 86565 1 111685 66068 42879 1 111686 66068 40799 1 111687 66069 40765 1 111688 66069 86075 1 111689 66069 74447 1 111690 66070 86829 1 111691 66071 40783 1 111692 66071 86831 1 111693 66071 86832 1 111694 66072 40765 1 111695 66073 41463 1 111696 66074 86836 1 111697 66075 83257 1 111698 66076 86839 1 111699 66076 86840 1 111700 66076 86841 1 111701 66076 86842 1 111702 66077 40777 1 111703 66078 40785 1 111704 66078 86845 1 111705 66078 86846 1 111706 66079 40805 1 111707 66079 86848 1 111708 66080 40765 1 111709 66080 41499 1 111710 66081 41273 1 111711 66082 40765 1 111712 66082 40772 1 111713 66082 86852 1 111714 66082 86853 1 111715 66083 40765 1 111716 66083 40772 1 111717 66083 86855 1 111718 66083 86856 1 111719 66083 86857 1 111720 66084 40765 1 111721 66084 40799 1 111722 66085 40785 1 111723 66086 82933 1 111724 66086 40990 1 111725 66086 40765 1 111726 66086 41527 1 111727 66086 86134 1 111728 66086 86861 1 111729 66087 40765 1 111730 66087 86146 1 111731 66088 86864 1 111732 66089 40785 1 111733 66090 86867 1 111734 66090 86868 1 111735 66091 40783 1 111736 66092 40783 1 111737 66093 41463 1 111738 66094 40765 1 111739 66094 86873 1 111740 66095 40783 1 111741 66095 86875 1 111742 66095 86876 1 111743 66096 40765 1 111744 66096 60215 1 111745 66097 40765 1 111746 66098 41227 1 111747 66098 41136 1 111748 66098 41499 1 111749 66099 86881 1 111750 66100 40765 1 111751 66100 41284 1 111752 66101 77363 1 111753 66101 86884 1 111754 66102 86886 1 111755 66102 86887 1 111756 66103 83371 1 111757 66104 40765 1 111758 66105 42879 1 111759 66106 57477 1 111760 66106 50086 1 111761 66107 41239 1 111762 66108 40933 1 111763 66109 86895 1 111764 66109 86896 1 111765 66109 86897 1 111766 66109 86898 1 111767 66110 40765 1 111768 66111 86901 1 111769 66112 86903 1 111770 66112 86904 1 111771 66112 58985 1 111772 66112 86905 1 111773 66113 40765 1 111774 66113 86907 1 111775 66113 86908 1 111776 66113 86909 1 111777 66114 40783 1 111778 66115 40990 1 111779 66115 86258 1 111780 66115 86259 1 111781 66116 86913 1 111782 66116 86914 1 111783 66117 40788 1 111784 66118 83175 1 111785 66118 81222 1 111786 66118 40783 1 111787 66119 40805 1 111788 66119 86918 1 111789 66120 67487 1 111790 66121 40765 1 111791 66121 41099 1 111792 66121 86921 1 111793 66122 40785 1 111794 66123 59601 1 111795 66124 41149 1 111796 66124 86925 1 111797 66125 40963 1 111798 66125 86927 1 111799 66126 41212 1 111800 66126 86929 1 111801 66127 40765 1 111802 66128 40783 1 111803 66129 41091 1 111804 66130 40783 1 111805 66130 42879 1 111806 66131 40783 1 111807 66132 40799 1 111808 66132 86315 1 111809 66133 41756 1 111810 66134 43667 1 111811 66134 41149 1 111812 66134 40765 1 111813 66135 40990 1 111814 66135 40765 1 111815 66135 86452 1 111816 66136 40990 1 111817 66136 40799 1 111818 66137 40777 1 111819 66138 48534 1 111820 66139 40990 1 111821 66139 86565 1 111822 66139 86452 1 111823 66140 41092 1 111824 66140 86944 1 111825 66141 40990 1 111826 66141 40765 1 111827 66142 41530 1 111828 66143 40765 1 111829 66143 86465 1 111830 66144 40814 1 111831 66145 40783 1 111832 66145 86950 1 111833 66145 86951 1 111834 66146 86953 1 111835 66147 86955 1 111836 66148 40933 1 111837 66149 40788 1 111838 66150 86103 1 111839 66151 41239 1 111840 66152 40870 1 111841 66153 86962 0 111842 66153 40765 1 111843 66153 40799 1 111844 66154 40799 1 111845 66154 86964 1 111846 66155 40765 1 111847 66155 86966 1 111848 66156 40785 1 111849 66157 40785 1 111850 66158 86970 1 111851 66158 86971 1 111852 66159 44422 1 111853 66160 86974 1 111854 66161 40796 1 111855 66162 86977 1 111856 66163 40765 1 111857 66164 86980 1 111858 66164 86981 1 111859 66165 86983 1 111860 66165 86984 1 111861 66165 86985 1 111862 66165 86986 1 111863 66166 42582 1 111864 66166 86988 1 111865 66167 41284 1 111866 66167 86990 1 111867 66167 86991 1 111868 66168 86993 1 111869 66168 86994 1 111870 66169 86996 0 111871 66169 40765 1 111872 66169 86997 1 111873 66169 86998 1 111874 66170 40765 1 111875 66170 87000 1 111876 66171 87002 1 111877 66172 40814 1 111878 66172 49388 1 111879 66173 40794 1 111880 66173 43469 1 111881 66173 40765 1 111882 66173 41426 1 111883 66173 40795 1 111884 66174 41499 1 111885 66175 40765 1 111886 66176 41139 1 111887 66176 87008 1 111888 66176 87009 1 111889 66177 87011 1 111890 66178 41092 1 111891 66178 87013 1 111892 66179 40783 1 111893 66179 41153 1 111894 66179 87015 1 111895 66180 40765 1 111896 66180 87017 1 111897 66181 40765 1 111898 66182 40961 1 111899 66183 73849 1 111900 66183 86412 1 111901 66184 41499 1 111902 66185 40814 1 111903 66185 87023 1 111904 66186 41084 1 111905 66186 87025 1 111906 66186 87026 1 111907 66187 40799 1 111908 66187 86604 1 111909 66187 86606 1 111910 66188 42879 1 111911 66189 86333 1 111912 66190 42349 1 111913 66190 87031 1 111914 66190 87032 1 111915 66191 40783 1 111916 66191 40777 1 111917 66192 87035 1 111918 66193 40783 1 111919 66194 40765 1 111920 66195 40780 1 111921 66195 40865 1 111922 66196 40783 1 111923 66196 40799 1 111924 66197 41463 1 111925 66198 40765 1 111926 66199 41233 1 111927 66199 40963 1 111928 66199 87043 1 111929 66200 40785 1 111930 66201 41818 1 111931 66201 40765 1 111932 66202 40928 1 111933 66202 41149 1 111934 66202 87047 1 111935 66202 87048 1 111936 66203 40780 1 111937 66203 41499 1 111938 66203 42789 1 111939 66203 40865 1 111940 66204 73849 1 111941 66204 86412 1 111942 66205 87052 1 111943 66206 40765 1 111944 66207 84405 1 111945 66208 41463 1 111946 66209 40783 1 111947 66209 40765 1 111948 66210 87058 1 111949 66211 40765 1 111950 66211 40772 1 111951 66211 87060 1 111952 66212 40814 1 111953 66212 40799 1 111954 66213 40765 1 111955 66213 87063 1 111956 66213 87064 1 111957 66213 87065 1 111958 66213 87066 1 111959 66214 40777 1 111960 66215 41745 1 111961 66215 40933 1 111962 66216 40783 1 111963 66216 87070 1 111964 66217 40765 1 111965 66217 40772 1 111966 66218 40870 1 111967 66218 40799 1 111968 66219 87074 1 111969 66220 40785 1 111970 66221 40765 1 111971 66221 40870 1 111972 66221 75168 1 111973 66222 40765 1 111974 66223 40774 1 111975 66224 40765 1 111976 66225 41173 1 111977 66225 40799 1 111978 66225 40777 1 111979 66226 77363 1 111980 66226 86884 1 111981 66227 40765 1 111982 66228 40777 1 111983 66229 40783 1 111984 66230 41463 1 111985 66231 87087 1 111986 66232 87089 1 111987 66233 40777 1 111988 66234 69171 1 111989 66235 40780 1 111990 66235 42736 1 111991 66236 41921 1 111992 66237 87095 1 111993 66238 87097 1 111994 66239 40765 1 111995 66240 41091 1 111996 66241 40765 1 111997 66241 72289 1 111998 66242 40765 1 111999 66243 41091 1 112000 66244 40780 1 112001 66244 42736 1 112002 66245 87105 1 112003 66246 59601 1 112004 66247 73339 1 112005 66248 40768 1 112006 66249 74302 1 112007 66250 40970 1 112008 66250 40768 1 112009 66250 40796 1 112010 66251 41233 1 112011 66251 40765 1 112012 66252 87113 1 112013 66252 87114 1 112014 66252 87115 1 112015 66253 53519 1 112016 66254 87118 1 112017 66255 87120 0 112018 66255 40765 1 112019 66255 40799 1 112020 66256 86402 1 112021 66257 87123 1 112022 66258 73849 1 112023 66258 86444 1 112024 66258 87125 1 112025 66259 87127 1 112026 66260 40783 1 112027 66261 87058 1 112028 66262 40799 1 112029 66263 41284 1 112030 66263 87132 1 112031 66264 87134 0 112032 66264 40765 1 112033 66264 40933 1 112034 66265 40765 1 112035 66265 87136 1 112036 66266 40990 1 112037 66266 40765 1 112038 66266 86452 1 112039 66267 40783 1 112040 66268 40780 1 112041 66268 87140 1 112042 66269 40785 1 112043 66270 40765 1 112044 66270 87143 1 112045 66270 87144 1 112046 66271 79214 1 112047 66272 40816 1 112048 66272 40933 1 112049 66273 40765 1 112050 66274 71558 1 112051 66275 40806 1 112052 66275 87150 1 112053 66276 40765 1 112054 66277 87153 1 112055 66278 87155 1 112056 66279 59601 1 112057 66280 75837 1 112058 66280 87158 1 112059 66280 87159 1 112060 66281 42734 1 112061 66282 40765 1 112062 66282 87162 1 112063 66283 41499 1 112064 66284 40959 1 112065 66285 41756 1 112066 66286 40765 1 112067 66287 87168 1 112068 66288 87170 1 112069 66289 40870 1 112070 66289 41453 1 112071 66290 87173 1 112072 66290 40765 1 112073 66290 87174 1 112074 66291 86369 1 112075 66292 40765 1 112076 66292 69171 1 112077 66292 87177 1 112078 66293 40765 1 112079 66294 43648 1 112080 66295 83493 1 112081 66296 40990 1 112082 66296 40765 1 112083 66296 87182 1 112084 66297 87184 1 112085 66298 87186 1 112086 66299 40785 1 112087 66300 40765 1 112088 66300 87189 1 112089 66301 40990 1 112090 66302 40765 1 112091 66303 40765 1 112092 66303 87193 1 112093 66304 87195 1 112094 66305 40990 1 112095 66305 40765 1 112096 66305 40914 1 112097 66306 41269 1 112098 66306 87198 1 112099 66307 87200 1 112100 66308 87202 1 112101 66309 87204 1 112102 66309 87205 1 112103 66309 87206 1 112104 66309 87207 1 112105 66310 40772 1 112106 66310 86179 1 112107 66311 40768 1 112108 66312 40765 1 112109 66312 51815 1 112110 66312 87211 1 112111 66313 40774 1 112112 66314 41527 1 112113 66314 86677 1 112114 66315 87215 0 112115 66315 68451 1 112116 66316 86410 1 112117 66317 40765 1 112118 66317 87063 1 112119 66317 87064 1 112120 66317 87065 1 112121 66317 87218 1 112122 66318 87220 1 112123 66318 87221 1 112124 66319 80572 1 112125 66319 87223 1 112126 66320 40799 1 112127 66320 86146 1 112128 66321 87226 1 112129 66322 40765 1 112130 66323 40990 1 112131 66324 48534 1 112132 66325 87231 0 112133 66325 40877 1 112134 66325 43552 1 112135 66325 41499 1 112136 66326 40765 1 112137 66326 86075 1 112138 66326 87233 1 112139 66327 86333 1 112140 66328 40788 1 112141 66329 40785 1 112142 66329 87237 1 112143 66330 87239 1 112144 66331 40805 1 112145 66332 40765 1 112146 66332 40799 1 112147 66333 40765 1 112148 66333 40799 1 112149 66334 40765 1 112150 66335 40783 1 112151 66336 43648 1 112152 66337 87247 1 112153 66337 87248 1 112154 66338 42651 1 112155 66339 40765 1 112156 66339 40772 1 112157 66339 86193 1 112158 66339 87251 1 112159 66340 40765 1 112160 66341 87254 1 112161 66342 40765 1 112162 66342 87256 1 112163 66342 87000 1 112164 66343 41239 1 112165 66344 87259 1 112166 66344 87260 1 112167 66345 41173 1 112168 66345 40870 1 112169 66345 87262 1 112170 66346 86480 1 112171 66347 41284 1 112172 66348 87266 1 112173 66349 87268 1 112174 66350 40990 1 112175 66350 40765 1 112176 66350 41527 1 112177 66351 40765 1 112178 66351 87271 1 112179 66351 87272 1 112180 66351 87273 1 112181 66352 40777 1 112182 66353 87276 1 112183 66354 40777 1 112184 66355 40799 1 112185 66355 87279 1 112186 66356 87089 1 112187 66357 87282 1 112188 66358 40785 1 112189 66359 41212 1 112190 66359 87285 1 112191 66360 40777 1 112192 66361 41136 1 112193 66362 52017 1 112194 66362 87289 1 112195 66362 87290 1 112196 66363 44631 1 112197 66363 40799 1 112198 66363 87292 1 112199 66364 87294 1 112200 66365 40805 1 112201 66366 41187 1 112202 66366 40765 1 112203 66366 87297 1 112204 66366 87298 1 112205 66367 44066 1 112206 66367 87300 1 112207 66368 52687 1 112208 66368 87302 1 112209 66369 40785 1 112210 66370 40877 1 112211 66370 40933 1 112212 66371 40788 1 112213 66372 40877 1 112214 66372 87307 1 112215 66373 40765 1 112216 66374 41463 1 112217 66375 40765 1 112218 66375 87311 1 112219 66376 40783 1 112220 66377 40783 1 112221 66378 40768 1 112222 66378 40783 1 112223 66379 69171 1 112224 66380 40796 1 112225 66381 87318 1 112226 66381 87319 1 112227 66382 41499 1 112228 66383 87322 1 112229 66383 87323 1 112230 66383 87324 1 112231 66384 40765 1 112232 66384 87326 1 112233 66384 87221 1 112234 66385 40765 1 112235 66386 40783 1 112236 66387 86646 1 112237 66388 40799 1 112238 66389 40765 1 112239 66390 40765 1 112240 66391 40765 1 112241 66391 87334 1 112242 66392 81631 1 112243 66393 87307 1 112244 66394 40783 1 112245 66394 87338 1 112246 66394 53259 1 112247 66395 40783 1 112248 66395 40799 1 112249 66395 41212 1 112250 66395 87340 1 112251 66396 40765 1 112252 66396 40799 1 112253 66397 40765 1 112254 66398 40816 1 112255 66398 87344 1 112256 66399 58590 1 112257 66400 40780 1 112258 66400 40794 1 112259 66400 87347 1 112260 66401 40794 1 112261 66401 87349 1 112262 66402 86993 1 112263 66402 86994 1 112264 66403 40765 1 112265 66404 40765 1 112266 66404 43171 1 112267 66404 87353 1 112268 66405 41091 1 112269 66406 40777 1 112270 66407 87357 1 112271 66407 87358 1 112272 66408 40765 1 112273 66409 40783 1 112274 66410 86333 1 112275 66411 69171 1 112276 66412 40799 1 112277 66412 40777 1 112278 66413 40806 1 112279 66413 87365 1 112280 66414 44422 1 112281 66415 87368 1 112282 66416 87370 1 112283 66416 87371 1 112284 66417 41149 1 112285 66417 40765 1 112286 66418 40765 1 112287 66419 86315 1 112288 66420 40783 1 112289 66420 87376 1 112290 66421 87378 1 112291 66422 40933 1 112292 66423 40799 1 112293 66424 40990 1 112294 66424 40765 1 112295 66424 41527 1 112296 66425 40990 1 112297 66425 86452 1 112298 66426 41149 1 112299 66426 87384 1 112300 66427 87386 1 112301 66428 87388 1 112302 66429 40772 1 112303 66429 87390 1 112304 66430 87392 1 112305 66431 40990 1 112306 66431 86258 1 112307 66431 86259 1 112308 66432 50938 1 112309 66432 40783 1 112310 66433 41136 1 112311 66434 40765 1 112312 66434 40961 1 112313 66435 40814 1 112314 66435 41745 1 112315 66436 86200 1 112316 66437 87400 1 112317 66437 87401 1 112318 66437 87402 1 112319 66438 40794 1 112320 66438 43469 1 112321 66438 40765 1 112322 66438 40795 1 112323 66439 40768 1 112324 66440 40783 1 112325 66440 87406 1 112326 66441 87408 0 112327 66441 87409 0 112328 66441 87410 0 112329 66441 87411 0 112330 66441 40799 1 112331 66441 41499 1 112332 66442 40765 1 112333 66442 40870 1 112334 66443 86193 1 112335 66444 40768 1 112336 66444 42206 1 112337 66445 86362 1 112338 66445 86363 1 112339 66445 87416 1 112340 66446 40805 1 112341 66446 40783 1 112342 66446 40765 1 112343 66446 41284 1 112344 66446 43171 1 112345 66446 40772 1 112346 66447 40783 1 112347 66447 43171 1 112348 66448 40794 1 112349 66448 43469 1 112350 66448 40765 1 112351 66448 40795 1 112352 66449 86369 1 112353 66449 86370 1 112354 66449 87421 1 112355 66450 87423 1 112356 66450 71754 1 112357 66450 40765 1 112358 66451 87425 1 112359 66451 87426 1 112360 66452 40990 1 112361 66452 86134 1 112362 66453 40814 1 112363 66453 41463 1 112364 66453 87429 1 112365 66453 87430 1 112366 66453 87431 1 112367 66454 40765 1 112368 66455 40783 1 112369 66455 40772 1 112370 66455 87434 1 112371 66456 40768 1 112372 66456 41463 1 112373 66457 67487 1 112374 66458 40877 1 112375 66458 87438 1 112376 66459 40765 1 112377 66460 40783 1 112378 66460 86088 1 112379 66461 40765 1 112380 66461 87442 1 112381 66462 41756 1 112382 66462 87444 1 112383 66463 41091 1 112384 66463 40765 1 112385 66463 40772 1 112386 66464 40783 1 112387 66464 86360 1 112388 66465 40765 1 112389 66465 40877 1 112390 66465 87448 1 112391 66465 46819 1 112392 66466 40765 1 112393 66467 40783 1 112394 66468 40765 1 112395 66468 41499 1 112396 66468 87452 1 112397 66469 75837 1 112398 66469 87454 1 112399 66470 40933 1 112400 66471 87457 1 112401 66472 40783 1 112402 66472 87459 1 112403 66472 87460 1 112404 66473 87462 1 112405 66474 87464 1 112406 66475 87466 1 112407 66476 87392 1 112408 66477 86249 1 112409 66478 86103 1 112410 66479 87471 0 112411 66479 87472 0 112412 66479 41269 1 112413 66479 40799 1 112414 66479 86084 1 112415 66479 87473 1 112416 66480 87475 1 112417 66480 87476 1 112418 66481 40848 1 112419 66481 40849 1 112420 66482 40765 1 112421 66483 40783 1 112422 66484 42651 1 112423 66485 41092 1 112424 66485 40765 1 112425 66485 87482 1 112426 66486 42294 1 112427 66487 40783 1 112428 66487 87485 1 112429 66488 40765 1 112430 66489 40768 1 112431 66489 41149 1 112432 66489 86261 1 112433 66490 40805 1 112434 66490 87489 1 112435 66490 87490 1 112436 66490 87491 1 112437 66490 40990 1 112438 66490 87492 1 112439 66490 87493 1 112440 66490 87494 1 112441 66491 41370 1 112442 66492 41212 1 112443 66493 40990 1 112444 66493 86482 1 112445 66493 86483 1 112446 66493 86484 1 112447 66494 40799 1 112448 66494 86146 1 112449 66495 86993 1 112450 66495 86994 1 112451 66496 87501 1 112452 66496 87502 1 112453 66497 40765 1 112454 66498 40783 1 112455 66499 41091 1 112456 66499 87506 1 112457 66500 40877 1 112458 66501 87509 1 112459 66502 41139 1 112460 66502 67849 1 112461 66502 40876 1 112462 66502 40814 1 112463 66502 87511 1 112464 66503 87513 1 112465 66504 53519 1 112466 66505 40765 1 112467 66505 87516 1 112468 66506 40777 1 112469 66507 86128 1 112470 66508 40765 1 112471 66509 40765 1 112472 66509 40799 1 112473 66510 40805 1 112474 66511 87523 1 112475 66512 87525 0 112476 66512 40928 1 112477 66513 41284 1 112478 66513 87527 1 112479 66513 87528 1 112480 66514 41530 1 112481 66514 87530 1 112482 66515 40783 1 112483 66516 40799 1 112484 66516 86333 1 112485 66517 40765 1 112486 66518 87535 1 112487 66519 40780 1 112488 66519 42736 1 112489 66519 86214 1 112490 66520 87538 1 112491 66520 87539 1 112492 66520 87540 1 112493 66521 40783 1 112494 66522 87543 1 112495 66522 87544 1 112496 66523 48534 1 112497 66524 40765 1 112498 66525 87548 1 112499 66526 40785 1 112500 66526 40777 1 112501 66527 40765 1 112502 66528 41292 1 112503 66529 40765 1 112504 66530 40774 1 112505 66531 40956 1 112506 66532 87556 1 112507 66533 87558 1 112508 66533 87559 1 112509 66534 41921 1 112510 66534 53577 1 112511 66535 87562 1 112512 66536 41269 1 112513 66537 86227 1 112514 66538 86486 1 112515 66539 87567 1 112516 66539 87568 1 112517 66540 40765 1 112518 66541 40783 1 112519 66542 40765 1 112520 66542 40799 1 112521 66542 43866 1 112522 66543 41818 1 112523 66544 87574 1 112524 66545 41463 1 112525 66546 41818 1 112526 66546 87577 1 112527 66547 41499 1 112528 66548 87319 1 112529 66549 41136 1 112530 66549 87581 1 112531 66549 87582 1 112532 66550 40765 1 112533 66550 87584 1 112534 66551 40799 1 112535 66551 86604 1 112536 66551 86605 1 112537 66551 86606 1 112538 66552 40765 1 112539 66552 87587 1 112540 66553 41084 1 112541 66553 46242 1 112542 66553 87589 1 112543 66554 87591 1 112544 66555 86480 1 112545 66556 41054 1 112546 66557 86315 1 112547 66558 40765 1 112548 66559 40783 1 112549 66560 86740 1 112550 66561 40788 1 112551 66562 40774 1 112552 66563 40765 1 112553 66563 86567 1 112554 66564 87602 1 112555 66564 87603 1 112556 66565 87605 1 112557 66565 87606 1 112558 66565 87607 1 112559 66566 40783 1 112560 66567 41463 1 112561 66568 40768 1 112562 66568 41149 1 112563 66568 86261 1 112564 66569 87612 1 112565 66570 87614 1 112566 66571 40794 1 112567 66571 40783 1 112568 66571 87616 1 112569 66571 87617 1 112570 66572 87619 1 112571 66573 40768 1 112572 66574 40765 1 112573 66574 87622 1 112574 66575 87624 1 112575 66576 40814 1 112576 66576 40799 1 112577 66577 73849 1 112578 66577 86444 1 112579 66578 86619 1 112580 66579 40783 1 112581 66580 55332 1 112582 66580 87630 1 112583 66581 44089 1 112584 66581 87632 1 112585 66581 87633 1 112586 66582 40805 1 112587 66582 40963 1 112588 66582 86268 1 112589 66583 40870 1 112590 66584 40877 1 112591 66584 87637 1 112592 66585 40765 1 112593 66585 41499 1 112594 66585 86135 1 112595 66586 73274 1 112596 66587 40783 1 112597 66588 67487 1 112598 66589 87643 1 112599 66589 87644 1 112600 66590 83318 1 112601 66590 87646 1 112602 66590 87647 1 112603 66591 40794 1 112604 66591 87649 1 112605 66592 87651 1 112606 66593 40783 1 112607 66594 87654 1 112608 66594 87655 1 112609 66594 87656 1 112610 66594 86553 1 112611 66594 87657 1 112612 66594 87658 1 112613 66595 40783 1 112614 66595 40765 1 112615 66595 87660 1 112616 66596 46819 1 112617 66597 40870 1 112618 66598 87664 1 112619 66599 40765 1 112620 66599 44051 1 112621 66600 40765 1 112622 66600 87667 1 112623 66601 40765 1 112624 66601 70789 1 112625 66602 40765 1 112626 66602 40777 1 112627 66603 87671 1 112628 66603 87672 1 112629 66604 87612 1 112630 66605 40870 1 112631 66606 87676 1 112632 66607 41092 1 112633 66607 40765 1 112634 66607 87678 1 112635 66608 41187 1 112636 66608 87680 1 112637 66609 40765 1 112638 66610 40783 1 112639 66611 41818 1 112640 66611 87684 1 112641 66612 87686 1 112642 66612 86543 1 112643 66613 40956 1 112644 66614 87689 0 112645 66614 43552 1 112646 66614 86477 1 112647 66615 40794 1 112648 66615 40765 1 112649 66615 87691 1 112650 66616 40765 1 112651 66616 86805 1 112652 66617 40783 1 112653 66618 40783 1 112654 66619 40877 1 112655 66619 40933 1 112656 66620 87697 0 112657 66620 41091 1 112658 66621 41456 1 112659 66622 87260 1 112660 66623 77858 1 112661 66623 40765 1 112662 66624 40765 1 112663 66624 87702 1 112664 66625 40765 1 112665 66626 40765 1 112666 66627 40796 1 112667 66628 41463 1 112668 66629 40765 1 112669 66629 87708 1 112670 66629 87709 1 112671 66630 40765 1 112672 66631 73849 1 112673 66631 86412 1 112674 66632 86299 1 112675 66633 57477 1 112676 66633 50086 1 112677 66634 86103 1 112678 66635 40783 1 112679 66635 73849 1 112680 66636 41184 1 112681 66637 87718 1 112682 66637 85842 1 112683 66638 41499 1 112684 66639 87721 1 112685 66640 40768 1 112686 66641 40765 1 112687 66641 42734 1 112688 66642 41456 1 112689 66643 61170 1 112690 66644 87727 1 112691 66645 40772 1 112692 66645 40933 1 112693 66646 87730 1 112694 66647 40765 1 112695 66648 86407 1 112696 66649 87734 1 112697 66650 40783 1 112698 66651 41091 1 112699 66652 43552 1 112700 66653 40805 1 112701 66653 41499 1 112702 66654 40783 1 112703 66654 87740 1 112704 66655 40783 1 112705 66655 87742 1 112706 66656 40765 1 112707 66657 43648 1 112708 66658 41239 1 112709 66659 40765 1 112710 66660 40933 1 112711 66661 40783 1 112712 66662 87750 1 112713 66662 87751 1 112714 66663 87753 1 112715 66664 40814 1 112716 66664 40799 1 112717 66664 87755 1 112718 66665 73849 1 112719 66665 86444 1 112720 66666 87758 1 112721 66666 87759 1 112722 66666 87760 1 112723 66667 41284 1 112724 66668 40765 1 112725 66669 40765 1 112726 66669 87764 1 112727 66669 87765 1 112728 66670 40783 1 112729 66671 87768 1 112730 66671 87769 1 112731 66672 40805 1 112732 66672 87771 1 112733 66673 40785 1 112734 66674 41269 1 112735 66675 40788 1 112736 66676 40772 1 112737 66677 86103 1 112738 66678 40765 1 112739 66679 40794 1 112740 66679 86988 1 112741 66680 87780 1 112742 66681 40794 1 112743 66681 61600 1 112744 66682 41456 1 112745 66683 87784 0 112746 66683 40788 1 112747 66684 41818 1 112748 66684 86386 1 112749 66685 40796 1 112750 66686 73849 1 112751 66686 86444 1 112752 66687 87789 0 112753 66687 87400 1 112754 66687 87401 1 112755 66687 87402 1 112756 66688 87791 1 112757 66689 40765 1 112758 66690 40877 1 112759 66690 87637 1 112760 66691 87795 0 112761 66691 87796 0 112762 66691 87797 1 112763 66691 87798 1 112764 66691 87799 1 112765 66692 41269 1 112766 66692 87801 1 112767 66693 40765 1 112768 66693 40799 1 112769 66694 40765 1 112770 66694 40933 1 112771 66695 40783 1 112772 66696 73849 1 112773 66696 86412 1 112774 66697 40765 1 112775 66697 40961 1 112776 66698 40777 1 112777 66699 86200 1 112778 66700 87810 1 112779 66700 87811 1 112780 66701 41227 1 112781 66702 82933 1 112782 66702 40990 1 112783 66702 40765 1 112784 66702 87814 1 112785 66702 86135 1 112786 66703 40765 1 112787 66704 87817 1 112788 66705 87819 1 112789 66706 40765 1 112790 66706 86146 1 112791 66707 40783 1 112792 66708 40765 1 112793 66709 87824 1 112794 66710 41136 1 112795 66710 40765 1 112796 66710 41499 1 112797 66711 86103 1 112798 66712 87828 1 112799 66713 40783 1 112800 66713 40765 1 112801 66714 41227 1 112802 66714 40772 1 112803 66714 49228 1 112804 66715 87832 1 112805 66716 81222 1 112806 66716 40783 1 112807 66717 87835 1 112808 66718 40783 1 112809 66719 40765 1 112810 66720 40780 1 112811 66720 42736 1 112812 66720 86521 1 112813 66721 41745 1 112814 66722 59601 1 112815 66723 40765 1 112816 66723 40933 1 112817 66724 73731 1 112818 66725 87844 1 112819 66726 40783 1 112820 66726 40933 1 112821 66727 40877 1 112822 66728 40785 1 112823 66729 87849 1 112824 66730 40870 1 112825 66730 40799 1 112826 66731 87852 1 112827 66732 86821 1 112828 66733 40783 1 112829 66733 87855 1 112830 66734 40783 1 112831 66735 40765 1 112832 66736 40990 1 112833 66736 86258 1 112834 66736 86259 1 112835 66737 40963 1 112836 66737 87860 1 112837 66738 40794 1 112838 66738 40765 1 112839 66738 41865 1 112840 66739 41212 1 112841 66739 86154 1 112842 66739 86155 1 112843 66740 40805 1 112844 66740 86918 1 112845 66741 40777 1 112846 66742 40990 1 112847 66742 40765 1 112848 66742 86452 1 112849 66743 86333 1 112850 66743 87797 1 112851 66743 87798 1 112852 66744 86486 1 112853 66745 40765 1 112854 66745 87869 1 112855 66746 40765 1 112856 66746 86634 1 112857 66747 40765 1 112858 66747 87872 1 112859 66748 40765 1 112860 66749 40799 1 112861 66749 86146 1 112862 66750 40783 1 112863 66750 42879 1 112864 66751 40799 1 112865 66752 40785 1 112866 66753 87879 1 112867 66754 41284 1 112868 66754 87881 1 112869 66754 87882 1 112870 66755 87884 1 112871 66756 87886 1 112872 66757 40783 1 112873 66758 87889 0 112874 66758 40765 1 112875 66758 87890 1 112876 66758 59102 1 112877 66759 87892 0 112878 66759 87893 0 112879 66759 83175 1 112880 66759 40783 1 112881 66760 69717 1 112882 66761 87896 0 112883 66761 41499 1 112884 66762 40765 1 112885 66762 87898 1 112886 66763 40765 1 112887 66763 87676 1 112888 66764 40814 1 112889 66765 40783 1 112890 66765 41184 1 112891 66766 40777 1 112892 66767 41284 1 112893 66768 40783 1 112894 66769 40772 1 112895 66769 44200 1 112896 66769 44201 1 112897 66770 87907 1 112898 66770 49262 1 112899 66771 40765 1 112900 66772 59601 1 112901 66773 41499 1 112902 66774 40870 1 112903 66774 87912 1 112904 66775 40774 1 112905 66776 40799 1 112906 66777 69171 1 112907 66778 86953 1 112908 66779 58590 1 112909 66780 87202 1 112910 66781 87920 1 112911 66782 41091 1 112912 66783 40806 1 112913 66783 86774 1 112914 66784 40799 1 112915 66785 40774 1 112916 66786 40990 1 112917 66786 86452 1 112918 66787 40990 1 112919 66787 40765 1 112920 66788 40765 1 112921 66789 40783 1 112922 66790 43648 1 112923 66791 87931 1 112924 66792 86223 1 112925 66792 87933 1 112926 66793 65726 1 112927 66794 87936 1 112928 66795 87938 0 112929 66795 40783 1 112930 66795 40765 1 112931 66796 40765 1 112932 66796 87940 1 112933 66796 87941 1 112934 66797 87943 0 112935 66797 72639 1 112936 66797 41499 1 112937 66797 51815 1 112938 66798 40765 1 112939 66798 55510 1 112940 66799 87946 1 112941 66800 40928 1 112942 66800 87948 1 112943 66801 40765 1 112944 66802 40765 1 112945 66803 40780 1 112946 66803 42736 1 112947 66804 40794 1 112948 66804 87953 1 112949 66805 40777 1 112950 66805 41745 1 112951 66806 41092 1 112952 66806 87956 1 112953 66807 40805 1 112954 66807 40794 1 112955 66807 40795 1 112956 66807 87958 1 112957 66807 87959 1 112958 66807 87960 1 112959 66808 87962 1 112960 66809 40765 1 112961 66810 87965 1 112962 66811 87097 1 112963 66811 86258 1 112964 66811 86259 1 112965 66812 57419 1 112966 66812 40765 1 112967 66813 41463 1 112968 66814 40799 1 112969 66814 41499 1 112970 66815 40794 1 112971 66815 40765 1 112972 66815 87971 1 112973 66816 86993 1 112974 66816 86994 1 112975 66817 87974 1 112976 66818 41212 1 112977 66818 87976 1 112978 66819 87978 0 112979 66819 40785 1 112980 66819 86243 1 112981 66820 87980 1 112982 66821 40780 1 112983 66821 40865 1 112984 66821 87982 1 112985 66821 87983 1 112986 66822 40783 1 112987 66822 40799 1 112988 66823 53519 1 112989 66824 62863 1 112990 66824 87987 1 112991 66825 41499 1 112992 66826 40765 1 112993 66826 87000 1 112994 66827 40794 1 112995 66827 40765 1 112996 66827 40795 1 112997 66827 87991 1 112998 66828 41269 1 112999 66828 86084 1 113000 66829 40794 1 113001 66829 87994 1 113002 66830 59601 1 113003 66831 40765 1 113004 66831 51815 1 113005 66831 86465 1 113006 66832 87998 1 113007 66832 87999 1 113008 66833 40990 1 113009 66834 40765 1 113010 66835 40765 1 113011 66836 40780 1 113012 66836 42736 1 113013 66836 86521 1 113014 66837 88005 1 113015 66838 88007 1 113016 66839 40765 1 113017 66840 86602 1 113018 66841 86809 1 113019 66842 40933 1 113020 66843 40765 1 113021 66843 88013 1 113022 66844 87388 1 113023 66844 88015 1 113024 66845 40765 1 113025 66846 40777 1 113026 66847 40765 1 113027 66847 86164 1 113028 66848 40765 1 113029 66849 40765 1 113030 66849 43830 1 113031 66849 42671 1 113032 66849 86755 1 113033 66850 40765 1 113034 66851 40814 1 113035 66851 49388 1 113036 66852 88024 1 113037 66852 40765 1 113038 66853 41212 1 113039 66853 88026 1 113040 66853 88027 1 113041 66854 40765 1 113042 66855 41269 1 113043 66855 40933 1 113044 66856 41745 1 113045 66857 87052 1 113046 66858 40765 1 113047 66858 86465 1 113048 66859 88034 1 113049 66860 40765 1 113050 66860 88036 1 113051 66861 40805 1 113052 66861 88038 1 113053 66861 88039 1 113054 66862 41815 1 113055 66863 40765 1 113056 66863 44351 1 113057 66864 88043 1 113058 66865 40765 1 113059 66866 40928 1 113060 66866 41149 1 113061 66866 87047 1 113062 66866 87048 1 113063 66867 40799 1 113064 66867 86604 1 113065 66867 86606 1 113066 66868 40796 1 113067 66868 88048 1 113068 66868 88049 1 113069 66869 40780 1 113070 66869 42736 1 113071 66870 88052 1 113072 66871 40783 1 113073 66871 40799 1 113074 66872 40765 1 113075 66872 88055 1 113076 66872 88056 1 113077 66873 88058 1 113078 66873 88059 1 113079 66873 88060 1 113080 66874 40765 1 113081 66875 86103 1 113082 66876 88064 1 113083 66876 88065 1 113084 66877 40765 1 113085 66877 41284 1 113086 66878 88068 1 113087 66879 40765 1 113088 66880 41091 1 113089 66881 88072 1 113090 66882 40805 1 113091 66883 88075 1 113092 66884 40765 1 113093 66884 86907 1 113094 66884 86908 1 113095 66884 86909 1 113096 66885 40765 1 113097 66886 86174 1 113098 66887 40765 1 113099 66888 40765 1 113100 66888 88081 1 113101 66889 88083 0 113102 66889 67354 1 113103 66889 71850 1 113104 66890 58590 1 113105 66891 40765 1 113106 66892 88087 1 113107 66893 40990 1 113108 66893 86452 1 113109 66894 88090 1 113110 66894 88091 1 113111 66895 40765 1 113112 66895 86075 1 113113 66896 88094 1 113114 66897 40765 1 113115 66897 88081 1 113116 66898 82933 1 113117 66898 40990 1 113118 66898 40765 1 113119 66898 88097 1 113120 66898 86861 1 113121 66899 40777 1 113122 66900 40783 1 113123 66900 88100 1 113124 66901 86766 1 113125 66901 86767 1 113126 66902 41054 1 113127 66903 88104 0 113128 66903 40774 1 113129 66903 40970 1 113130 66903 40768 1 113131 66903 40796 1 113132 66904 40765 1 113133 66905 40777 1 113134 66905 87606 1 113135 66905 88107 1 113136 66906 86146 1 113137 66907 40765 1 113138 66907 40799 1 113139 66907 86146 1 113140 66908 41499 1 113141 66909 40765 1 113142 66909 40799 1 113143 66910 88113 1 113144 66911 40765 1 113145 66911 87143 1 113146 66911 87144 1 113147 66912 86486 1 113148 66913 40794 1 113149 66913 88117 1 113150 66913 88118 1 113151 66914 88120 1 113152 66915 40765 1 113153 66916 40870 1 113154 66916 41453 1 113155 66917 40805 1 113156 66917 40765 1 113157 66917 40772 1 113158 66917 88124 1 113159 66917 88125 1 113160 66918 41815 1 113161 66919 82933 1 113162 66919 40990 1 113163 66919 40765 1 113164 66919 41527 1 113165 66919 86134 1 113166 66919 86861 1 113167 66920 88129 1 113168 66921 40765 1 113169 66922 86402 1 113170 66923 40765 1 113171 66924 88134 1 113172 66925 71558 1 113173 66925 88136 1 113174 66926 41463 1 113175 66927 40814 1 113176 66928 40765 1 113177 66928 72289 1 113178 66929 41212 1 113179 66929 88141 1 113180 66930 40765 1 113181 66930 40772 1 113182 66930 86855 1 113183 66930 86856 1 113184 66930 86857 1 113185 66931 44565 1 113186 66932 40765 1 113187 66932 85928 1 113188 66933 40768 1 113189 66933 42206 1 113190 66934 59601 1 113191 66935 41284 1 113192 66935 88148 1 113193 66935 88149 1 113194 66935 88150 1 113195 66935 88151 1 113196 66936 40783 1 113197 66937 40780 1 113198 66937 88154 1 113199 66938 40783 1 113200 66938 86088 1 113201 66939 40765 1 113202 66940 42879 1 113203 66941 45945 1 113204 66941 88159 1 113205 66941 86410 1 113206 66942 41269 1 113207 66943 40768 1 113208 66944 40765 1 113209 66944 87193 1 113210 66945 40765 1 113211 66945 40799 1 113212 66945 86604 1 113213 66945 86606 1 113214 66946 40799 1 113215 66946 40777 1 113216 66947 40783 1 113217 66948 88167 1 113218 66948 86529 1 113219 66949 40783 1 113220 66949 40799 1 113221 66950 40765 1 113222 66950 40933 1 113223 66951 88171 1 113224 66951 88172 1 113225 66952 88174 1 113226 66952 87326 1 113227 66952 52257 1 113228 66953 40785 1 113229 66954 40783 1 113230 66954 40799 1 113231 66955 40794 1 113232 66955 40765 1 113233 66955 40956 1 113234 66955 47508 1 113235 66956 40783 1 113236 66957 88180 1 113237 66958 40765 1 113238 66959 40783 1 113239 66959 88183 1 113240 66960 88185 1 113241 66961 40772 1 113242 66961 41037 1 113243 66962 40765 1 113244 66962 88188 1 113245 66963 40877 1 113246 66964 86836 1 113247 66965 40777 1 113248 66966 40768 1 113249 66967 41499 1 113250 66968 40765 1 113251 66969 40765 1 113252 66970 88197 1 113253 66970 88198 1 113254 66971 88200 0 113255 66971 40990 1 113256 66971 40765 1 113257 66971 86565 1 113258 66971 86452 1 113259 66972 87619 1 113260 66973 40788 1 113261 66974 40765 1 113262 66975 42651 1 113263 66976 87226 1 113264 66977 40765 1 113265 66977 40799 1 113266 66978 41818 1 113267 66979 88209 1 113268 66979 88210 1 113269 66979 88211 1 113270 66980 40765 1 113271 66980 86582 1 113272 66980 88036 1 113273 66981 40990 1 113274 66982 40765 1 113275 66982 88215 1 113276 66983 40774 1 113277 66984 40785 1 113278 66985 40765 1 113279 66985 86634 1 113280 66985 86713 1 113281 66986 40783 1 113282 66987 50793 1 113283 66988 88222 1 113284 66989 40783 1 113285 66990 40865 1 113286 66990 49903 1 113287 66991 40765 1 113288 66992 40765 1 113289 66993 40783 1 113290 66993 40777 1 113291 66994 40765 1 113292 66994 88229 1 113293 66995 40933 1 113294 66996 87202 1 113295 66997 88233 1 113296 66998 87087 1 113297 66999 40768 1 113298 67000 88237 1 113299 67001 86303 1 113300 67002 40765 1 113301 67003 86480 1 113302 67004 40783 1 113303 67004 88242 1 113304 67004 88243 1 113305 67005 40765 1 113306 67005 87000 1 113307 67006 41499 1 113308 67007 88247 1 113309 67008 86993 1 113310 67008 86994 1 113311 67009 88250 1 113312 67009 88251 1 113313 67010 86477 1 113314 67011 73849 1 113315 67011 86444 1 113316 67012 40765 1 113317 67012 87516 1 113318 67013 40765 1 113319 67013 86364 1 113320 67014 40765 1 113321 67014 88257 1 113322 67015 44422 1 113323 67016 69171 1 113324 67017 40777 1 113325 67018 86103 1 113326 67019 69346 1 113327 67020 40765 1 113328 67021 86174 1 113329 67022 88266 1 113330 67023 40805 1 113331 67023 43082 1 113332 67023 88268 1 113333 67023 88269 1 113334 67024 42879 1 113335 67025 40785 1 113336 67026 40780 1 113337 67026 40865 1 113338 67027 75837 1 113339 67027 88274 1 113340 67028 88276 0 113341 67028 40799 1 113342 67028 86084 1 113343 67029 88278 1 113344 67029 88279 1 113345 67030 86619 1 113346 67031 86200 1 113347 67032 41463 1 113348 67033 41233 1 113349 67034 40765 1 113350 67035 40765 1 113351 67035 40961 1 113352 67036 40777 1 113353 67037 59601 1 113354 67038 88289 1 113355 67039 40765 1 113356 67039 88291 1 113357 67040 40765 1 113358 67041 88294 1 113359 67041 88295 1 113360 67042 40765 1 113361 67042 88297 1 113362 67042 40777 1 113363 67043 40990 1 113364 67043 88299 1 113365 67043 88300 1 113366 67043 86565 1 113367 67044 41136 1 113368 67044 88302 1 113369 67044 88303 1 113370 67045 44631 1 113371 67045 41456 1 113372 67046 75837 1 113373 67046 88306 1 113374 67046 88307 1 113375 67046 88308 1 113376 67047 40765 1 113377 67047 88310 1 113378 67048 40788 1 113379 67049 40780 1 113380 67049 40865 1 113381 67050 40783 1 113382 67050 86088 1 113383 67051 40870 1 113384 67051 40799 1 113385 67052 75837 1 113386 67052 88316 1 113387 67052 88317 1 113388 67052 88318 1 113389 67053 40783 1 113390 67053 87771 1 113391 67054 40765 1 113392 67054 43830 1 113393 67054 42671 1 113394 67054 86755 1 113395 67055 40783 1 113396 67056 40990 1 113397 67056 40799 1 113398 67057 40799 1 113399 67057 40933 1 113400 67058 40788 1 113401 67059 40783 1 113402 67059 49556 1 113403 67060 41136 1 113404 67061 40774 1 113405 67062 40783 1 113406 67063 40772 1 113407 67063 88330 1 113408 67063 88331 1 113409 67064 40774 1 113410 67065 42135 1 113411 67065 88334 1 113412 67065 88335 1 113413 67066 40783 1 113414 67066 41499 1 113415 67067 40765 1 113416 67067 40799 1 113417 67068 41212 1 113418 67068 87285 1 113419 67069 88340 1 113420 67070 40780 1 113421 67070 40765 1 113422 67071 40768 1 113423 67072 73849 1 113424 67072 86412 1 113425 67073 86103 1 113426 67074 88346 0 113427 67074 40799 1 113428 67074 40777 1 113429 67075 41140 1 113430 67075 88348 1 113431 67075 88349 1 113432 67076 40765 1 113433 67077 48534 1 113434 67078 41091 1 113435 67079 88354 1 113436 67079 87279 1 113437 67080 88356 0 113438 67080 40765 1 113439 67081 59601 1 113440 67082 44422 1 113441 67083 41091 1 113442 67084 40785 1 113443 67085 88362 1 113444 67085 40765 1 113445 67086 40783 1 113446 67087 40783 1 113447 67087 40799 1 113448 67087 88365 1 113449 67088 40785 1 113450 67088 40950 1 113451 67088 61709 1 113452 67089 88368 0 113453 67089 40765 1 113454 67089 40799 1 113455 67090 40765 1 113456 67091 40785 1 113457 67091 86164 1 113458 67092 88372 1 113459 67093 87097 1 113460 67094 41463 1 113461 67095 41239 1 113462 67095 40799 1 113463 67096 40877 1 113464 67097 40785 1 113465 67098 40805 1 113466 67098 86918 1 113467 67099 73849 1 113468 67099 86444 1 113469 67100 41212 1 113470 67101 40780 1 113471 67101 42736 1 113472 67101 86521 1 113473 67102 88383 1 113474 67102 88384 1 113475 67103 88386 1 113476 67104 86122 1 113477 67105 88389 1 113478 67105 87058 1 113479 67106 88391 1 113480 67106 87043 1 113481 67107 40765 1 113482 67108 42626 1 113483 67108 40765 1 113484 67108 88394 1 113485 67109 40777 1 113486 67109 40933 1 113487 67110 41099 1 113488 67111 41463 1 113489 67112 40768 1 113490 67113 41092 1 113491 67114 41099 1 113492 67115 82933 1 113493 67115 40765 1 113494 67115 88402 1 113495 67115 88403 1 113496 67116 88405 1 113497 67117 40765 1 113498 67118 67753 1 113499 67119 40765 1 113500 67120 44422 1 113501 67121 40772 1 113502 67121 88411 1 113503 67121 88412 1 113504 67122 69171 1 113505 67123 40870 1 113506 67123 40799 1 113507 67124 55332 1 113508 67124 87630 1 113509 67125 40933 1 113510 67126 88418 1 113511 67127 42294 1 113512 67128 40805 1 113513 67129 40783 1 113514 67130 88423 1 113515 67131 88425 1 113516 67132 41269 1 113517 67132 87198 1 113518 67133 40783 1 113519 67133 88428 1 113520 67133 88429 1 113521 67134 41091 1 113522 67135 59601 1 113523 67136 88433 1 113524 67137 40765 1 113525 67138 88436 1 113526 67138 88437 1 113527 67139 87844 1 113528 67139 88439 1 113529 67140 41463 1 113530 67141 88442 1 113531 67142 40990 1 113532 67142 40765 1 113533 67142 86452 1 113534 67143 41091 1 113535 67143 87506 1 113536 67144 40783 1 113537 67144 88446 1 113538 67144 88447 1 113539 67145 41269 1 113540 67146 75950 1 113541 67147 86303 1 113542 67148 88452 1 113543 67149 88454 1 113544 67149 88455 1 113545 67150 40816 1 113546 67150 88457 1 113547 67150 88458 1 113548 67151 40799 1 113549 67152 40785 1 113550 67153 40765 1 113551 67153 42734 1 113552 67154 40765 1 113553 67154 88463 1 113554 67155 46470 1 113555 67156 40765 1 113556 67156 40877 1 113557 67156 46819 1 113558 67157 40783 1 113559 67158 71558 1 113560 67158 88468 1 113561 67158 88469 1 113562 67159 88471 0 113563 67159 40765 1 113564 67159 88472 1 113565 67159 88473 1 113566 67159 88474 1 113567 67160 40765 1 113568 67160 88476 1 113569 67161 88478 1 113570 67161 88479 1 113571 67161 88480 1 113572 67162 40783 1 113573 67162 69171 1 113574 67163 40777 1 113575 67164 40783 1 113576 67164 87742 1 113577 67164 88484 1 113578 67165 88486 1 113579 67166 40765 1 113580 67166 41499 1 113581 67167 88489 1 113582 67168 40765 1 113583 67169 88492 0 113584 67169 41745 1 113585 67170 40765 1 113586 67170 40777 1 113587 67171 88495 1 113588 67172 40765 1 113589 67173 42651 1 113590 67174 88499 1 113591 67175 88501 1 113592 67176 48534 1 113593 67177 40765 1 113594 67178 40765 1 113595 67179 40783 1 113596 67180 88507 0 113597 67180 88508 0 113598 67180 40765 1 113599 67180 88509 1 113600 67181 88511 1 113601 67181 88512 1 113602 67182 40794 1 113603 67183 88515 1 113604 67183 88516 1 113605 67184 88518 1 113606 67184 88519 1 113607 67184 88520 1 113608 67185 40765 1 113609 67186 40765 1 113610 67187 40774 1 113611 67188 41499 1 113612 67189 88526 1 113613 67190 87513 1 113614 67190 88528 1 113615 67191 40768 1 113616 67191 40876 1 113617 67192 40765 1 113618 67192 88531 1 113619 67193 87097 1 113620 67194 40961 1 113621 67195 67487 1 113622 67196 40765 1 113623 67196 88536 1 113624 67197 40783 1 113625 67198 40765 1 113626 67198 88539 1 113627 67198 88540 1 113628 67199 73849 1 113629 67199 86412 1 113630 67200 40765 1 113631 67200 69171 1 113632 67200 88543 1 113633 67201 41173 1 113634 67201 40765 1 113635 67202 88546 0 113636 67202 40785 1 113637 67203 49725 1 113638 67204 41239 1 113639 67205 41227 1 113640 67206 40765 1 113641 67207 41463 1 113642 67208 40765 1 113643 67209 88554 1 113644 67209 40765 1 113645 67210 40990 1 113646 67211 88557 0 113647 67211 40799 1 113648 67211 41499 1 113649 67212 40783 1 113650 67213 40870 1 113651 67214 40768 1 113652 67215 40765 1 113653 67215 88562 1 113654 67216 40765 1 113655 67216 87334 1 113656 67217 88565 1 113657 67217 40783 1 113658 67217 88566 1 113659 67217 88567 1 113660 67218 88569 1 113661 67219 88571 1 113662 67220 88573 1 113663 67221 69171 1 113664 67222 86486 1 113665 67223 40765 1 113666 67224 88578 1 113667 67225 40765 1 113668 67226 88581 1 113669 67227 88583 0 113670 67227 41499 1 113671 67228 40783 1 113672 67229 40780 1 113673 67229 88586 1 113674 67229 86648 1 113675 67230 88588 1 113676 67230 88589 1 113677 67231 87260 1 113678 67232 41136 1 113679 67233 40772 1 113680 67233 88593 1 113681 67234 43407 1 113682 67234 88595 1 113683 67235 88597 0 113684 67235 40799 1 113685 67235 41499 1 113686 67236 88599 1 113687 67237 82933 1 113688 67237 40765 1 113689 67237 88601 1 113690 67238 40765 1 113691 67238 88603 1 113692 67239 40765 1 113693 67239 87378 1 113694 67240 40765 1 113695 67241 69171 1 113696 67242 88608 1 113697 67242 88609 1 113698 67242 88610 1 113699 67243 41269 1 113700 67243 42349 1 113701 67243 88612 1 113702 67243 88613 1 113703 67243 88614 1 113704 67244 40794 1 113705 67244 40765 1 113706 67244 40795 1 113707 67244 88616 1 113708 67245 41054 1 113709 67246 40769 1 113710 67246 48089 1 113711 67246 48090 1 113712 67247 40765 1 113713 67248 41818 1 113714 67248 40777 1 113715 67249 73849 1 113716 67249 86444 1 113717 67250 44422 1 113718 67251 40765 1 113719 67251 86567 1 113720 67252 88625 1 113721 67252 88626 1 113722 67253 40765 1 113723 67253 40865 1 113724 67254 40774 1 113725 67255 40796 1 113726 67256 41456 1 113727 67256 40765 1 113728 67256 40799 1 113729 67257 40788 1 113730 67258 40799 1 113731 67258 40914 1 113732 67258 51815 1 113733 67259 86736 1 113734 67260 41173 1 113735 67260 40765 1 113736 67260 53519 1 113737 67260 88635 1 113738 67261 86638 1 113739 67262 41463 1 113740 67263 40765 1 113741 67263 88639 1 113742 67264 88641 1 113743 67264 42618 1 113744 67265 40765 1 113745 67266 40765 1 113746 67266 86146 1 113747 67267 40765 1 113748 67268 40783 1 113749 67269 40783 1 113750 67270 40774 1 113751 67271 77479 1 113752 67272 41269 1 113753 67272 88650 1 113754 67273 73339 1 113755 67274 86619 1 113756 67275 56931 1 113757 67275 56932 1 113758 67276 88655 1 113759 67277 40765 1 113760 67277 42879 1 113761 67278 40777 1 113762 67278 41745 1 113763 67279 67487 1 113764 67280 41499 1 113765 67281 88661 1 113766 67282 41587 1 113767 67283 40765 1 113768 67283 41756 1 113769 67284 87709 1 113770 67285 40799 1 113771 67285 43830 1 113772 67285 42671 1 113773 67286 40785 1 113774 67287 88668 1 113775 67288 88670 1 113776 67289 40765 1 113777 67290 40777 1 113778 67290 40836 1 113779 67291 41499 1 113780 67292 40772 1 113781 67292 88675 1 113782 67292 88676 1 113783 67293 88678 1 113784 67293 88679 1 113785 67293 88015 1 113786 67294 41273 1 113787 67295 40768 1 113788 67296 40765 1 113789 67296 88683 1 113790 67297 41212 1 113791 67297 88685 1 113792 67297 88686 1 113793 67298 40783 1 113794 67298 40777 1 113795 67299 88689 0 113796 67299 88690 0 113797 67299 40783 1 113798 67299 40799 1 113799 67299 88691 1 113800 67299 88692 1 113801 67300 86821 1 113802 67301 40783 1 113803 67301 88695 1 113804 67302 88697 1 113805 67302 86884 1 113806 67303 40780 1 113807 67303 42736 1 113808 67304 41239 1 113809 67304 43552 1 113810 67305 40765 1 113811 67305 40799 1 113812 67306 88702 0 113813 67306 41091 1 113814 67307 41463 1 113815 67308 40765 1 113816 67309 88706 1 113817 67310 43648 1 113818 67311 86766 1 113819 67311 86767 1 113820 67312 88710 1 113821 67313 40765 1 113822 67313 40836 1 113823 67314 40794 1 113824 67314 71625 1 113825 67315 82933 1 113826 67315 40990 1 113827 67315 40765 1 113828 67315 86861 1 113829 67316 86146 1 113830 67317 40765 1 113831 67318 40794 1 113832 67318 42626 1 113833 67318 76026 1 113834 67319 40783 1 113835 67320 40788 1 113836 67321 88720 1 113837 67322 58492 1 113838 67323 88723 1 113839 67323 88724 1 113840 67324 40805 1 113841 67325 40765 1 113842 67326 88569 1 113843 67327 41091 1 113844 67328 40765 1 113845 67329 86477 1 113846 67330 88732 1 113847 67331 40765 1 113848 67331 40799 1 113849 67332 40970 1 113850 67332 40768 1 113851 67332 40765 1 113852 67332 40796 1 113853 67332 87890 1 113854 67333 52017 1 113855 67333 88736 1 113856 67334 87543 1 113857 67334 87544 1 113858 67335 40765 1 113859 67336 40765 1 113860 67337 40783 1 113861 67337 88741 1 113862 67337 86088 1 113863 67338 86486 1 113864 67339 82933 1 113865 67339 40990 1 113866 67339 40765 1 113867 67339 86273 1 113868 67339 86135 1 113869 67340 41456 1 113870 67341 88746 1 113871 67341 88747 1 113872 67341 88748 1 113873 67342 88750 1 113874 67342 88751 1 113875 67343 40765 1 113876 67343 40772 1 113877 67343 88753 1 113878 67343 88754 1 113879 67344 40777 1 113880 67345 40783 1 113881 67345 40765 1 113882 67345 85928 1 113883 67346 40765 1 113884 67347 41269 1 113885 67347 88759 1 113886 67348 88761 1 113887 67349 40774 1 113888 67350 40783 1 113889 67350 88764 1 113890 67351 40783 1 113891 67352 40774 1 113892 67353 88768 1 113893 67353 88769 1 113894 67354 71134 1 113895 67354 88771 1 113896 67355 40783 1 113897 67355 88773 1 113898 67356 88775 1 113899 67356 88776 1 113900 67357 41099 1 113901 67358 40783 1 113902 67358 58590 1 113903 67359 87817 1 113904 67360 41212 1 113905 67360 88781 1 113906 67361 40805 1 113907 67361 88783 1 113908 67362 87523 1 113909 67363 40814 1 113910 67363 41463 1 113911 67363 88786 1 113912 67363 88787 1 113913 67364 40780 1 113914 67364 40783 1 113915 67364 72278 1 113916 67364 41724 1 113917 67365 88790 1 113918 67366 88792 1 113919 67367 40783 1 113920 67367 86088 1 113921 67368 88795 0 113922 67368 40765 1 113923 67369 40765 1 113924 67369 88797 1 113925 67370 41233 1 113926 67370 88799 1 113927 67370 88800 1 113928 67371 86200 1 113929 67372 40765 1 113930 67372 86984 1 113931 67373 40783 1 113932 67374 88805 1 113933 67374 88806 1 113934 67375 88808 1 113935 67376 40765 1 113936 67376 88810 1 113937 67377 88812 1 113938 67377 88813 1 113939 67377 88814 1 113940 67378 40765 1 113941 67379 40933 1 113942 67380 40780 1 113943 67380 42736 1 113944 67380 86214 1 113945 67381 88819 1 113946 67382 88821 1 113947 67383 88823 1 113948 67383 88824 1 113949 67383 88825 1 113950 67384 40765 1 113951 67385 86988 1 113952 67386 40765 1 113953 67387 40765 1 113954 67388 40783 1 113955 67390 88833 1 113956 67390 88834 1 113957 67391 40990 1 113958 67391 86565 1 113959 67392 88837 1 113960 67392 88838 1 113961 67393 40765 1 113962 67393 88810 1 113963 67394 88841 0 113964 67394 88842 1 113965 67394 44089 1 113966 67394 86366 1 113967 67394 40933 1 113968 67395 86223 1 113969 67395 87933 1 113970 67396 41188 1 113971 67396 44143 1 113972 67396 41190 1 113973 67396 58229 1 113974 67396 88845 1 113975 67396 61953 1 113976 67396 44144 1 113977 67396 63294 1 113978 67396 43373 1 113979 67396 41191 1 113980 67397 88847 1 113981 67398 88849 0 113982 67398 88850 1 113983 67398 41818 1 113984 67399 88852 0 113985 67399 40772 1 113986 67399 88853 1 113987 67399 88854 1 113988 67400 41269 1 113989 67400 86084 1 113990 67401 86103 1 113991 67402 40765 1 113992 67403 88859 0 113993 67403 40783 1 113994 67404 41239 1 113995 67405 40777 1 113996 67406 88863 1 113997 67407 40765 1 113998 67408 67940 1 113999 67408 88866 1 114000 67409 41745 1 114001 67410 40774 1 114002 67411 40765 1 114003 67412 40783 1 114004 67412 42277 1 114005 67412 88871 1 114006 67412 54803 1 114007 67413 40765 1 114008 67414 40768 1 114009 67414 40796 1 114010 67414 88874 1 114011 67415 40765 1 114012 67416 40765 1 114013 67417 40928 1 114014 67417 40876 1 114015 67418 40765 1 114016 67418 62598 1 114017 67418 88879 1 114018 67419 40765 1 114019 67420 86740 1 114020 67421 88883 1 114021 67422 41463 1 114022 67423 40990 1 114023 67423 40799 1 114024 67424 88887 1 114025 67424 88888 1 114026 67425 40765 1 114027 67425 41463 1 114028 67425 88890 1 114029 67425 88891 1 114030 67426 40990 1 114031 67426 86565 1 114032 67427 86103 1 114033 67428 88895 1 114034 67429 87619 1 114035 67430 40928 1 114036 67431 40765 1 114037 67431 40806 1 114038 67431 62598 1 114039 67432 40765 1 114040 67433 88901 1 114041 67433 88902 1 114042 67433 88903 1 114043 67434 46819 1 114044 67435 40870 1 114045 67436 41269 1 114046 67436 88907 1 114047 67436 87801 1 114048 67437 40814 1 114049 67437 41099 1 114050 67438 40772 1 114051 67438 88910 1 114052 67438 88911 1 114053 67438 88912 1 114054 67439 42879 1 114055 67439 87702 1 114056 67440 55332 1 114057 67440 87630 1 114058 67441 40990 1 114059 67441 88736 1 114060 67441 88916 1 114061 67442 40783 1 114062 67442 88918 1 114063 67442 88919 1 114064 67443 88921 1 114065 67444 41092 1 114066 67444 40772 1 114067 67444 66872 1 114068 67444 88923 1 114069 67445 40799 1 114070 67445 40796 1 114071 67446 40870 1 114072 67447 41091 1 114073 67448 88928 1 114074 67449 88930 1 114075 67449 86084 1 114076 67450 40765 1 114077 67451 88933 1 114078 67451 78463 1 114079 67452 41227 1 114080 67452 40765 1 114081 67452 41499 1 114082 67453 75219 1 114083 67454 41233 1 114084 67455 40783 1 114085 67456 42879 1 114086 67456 87702 1 114087 67457 88007 1 114088 67458 40990 1 114089 67458 86452 1 114090 67459 40785 1 114091 67460 40783 1 114092 67461 45550 1 114093 67461 40765 1 114094 67461 87587 1 114095 67462 40783 1 114096 67463 40794 1 114097 67463 43469 1 114098 67463 40765 1 114099 67463 40795 1 114100 67464 88947 0 114101 67464 41091 1 114102 67464 43319 1 114103 67465 40765 1 114104 67466 40814 1 114105 67466 41463 1 114106 67466 87429 1 114107 67466 87430 1 114108 67466 87431 1 114109 67467 40765 1 114110 67468 40765 1 114111 67469 40785 1 114112 67470 88954 1 114113 67470 88955 1 114114 67471 88957 1 114115 67471 88958 1 114116 67472 86299 1 114117 67473 73849 1 114118 67473 86412 1 114119 67474 40805 1 114120 67474 87771 1 114121 67475 40765 1 114122 67476 40765 1 114123 67477 40990 1 114124 67477 88965 1 114125 67478 41456 1 114126 67479 40783 1 114127 67480 40768 1 114128 67481 59601 1 114129 67482 41818 1 114130 67482 88971 1 114131 67483 43171 1 114132 67483 87353 1 114133 67484 40799 1 114134 67484 87718 1 114135 67484 85842 1 114136 67485 40990 1 114137 67485 40765 1 114138 67486 42349 1 114139 67486 88976 1 114140 67487 41173 1 114141 67487 88978 1 114142 67488 88980 1 114143 67489 88982 0 114144 67489 88983 0 114145 67489 40783 1 114146 67489 40799 1 114147 67489 40844 1 114148 67490 40765 1 114149 67490 87516 1 114150 67491 88986 0 114151 67491 40774 1 114152 67492 40990 1 114153 67492 40765 1 114154 67492 41527 1 114155 67492 86134 1 114156 67493 40765 1 114157 67493 88989 1 114158 67494 88991 0 114159 67494 88992 0 114160 67494 88993 0 114161 67494 88994 0 114162 67494 40799 1 114163 67495 86402 1 114164 67496 88997 1 114165 67497 40783 1 114166 67498 40783 1 114167 67498 86088 1 114168 67499 48534 1 114169 67500 41456 1 114170 67501 40765 1 114171 67501 86744 1 114172 67502 40799 1 114173 67502 86146 1 114174 67503 89005 1 114175 67504 59601 1 114176 67505 41745 1 114177 67506 41756 1 114178 67507 40783 1 114179 67508 40765 1 114180 67509 89012 1 114181 67509 40785 1 114182 67510 40780 1 114183 67510 42736 1 114184 67510 86521 1 114185 67511 89015 1 114186 67511 89016 1 114187 67511 89017 1 114188 67511 89018 1 114189 67512 40765 1 114190 67513 86433 1 114191 67514 40794 1 114192 67514 40783 1 114193 67515 40768 1 114194 67515 86230 1 114195 67516 89024 1 114196 67517 40788 1 114197 67518 89027 1 114198 67518 89028 1 114199 67519 59601 1 114200 67520 41463 1 114201 67521 40933 1 114202 67522 40990 1 114203 67522 89033 1 114204 67523 40765 1 114205 67524 89036 1 114206 67525 78063 1 114207 67526 40765 1 114208 67527 75469 1 114209 67528 40765 1 114210 67528 89041 1 114211 67529 40990 1 114212 67529 40765 1 114213 67529 86452 1 114214 67530 40765 1 114215 67531 86103 1 114216 67532 88129 1 114217 67533 40774 1 114218 67533 40765 1 114219 67534 75170 1 114220 67535 73849 1 114221 67535 86412 1 114222 67536 41227 1 114223 67536 89050 1 114224 67537 40765 1 114225 67538 87388 1 114226 67539 41456 1 114227 67540 40765 1 114228 67541 73849 1 114229 67541 86412 1 114230 67542 40774 1 114231 67543 82933 1 114232 67543 89058 1 114233 67544 40788 1 114234 67545 40805 1 114235 67546 40785 1 114236 67547 40794 1 114237 67547 43198 1 114238 67548 40765 1 114239 67548 40961 1 114240 67549 40783 1 114241 67549 41153 1 114242 67550 89066 1 114243 67550 89067 1 114244 67551 73849 1 114245 67551 86444 1 114246 67552 41745 1 114247 67553 89071 0 114248 67553 40799 1 114249 67553 86604 1 114250 67553 86606 1 114251 67554 88094 1 114252 67555 40788 1 114253 67556 89075 1 114254 67556 89076 1 114255 67557 41463 1 114256 67558 88655 1 114257 67559 40765 1 114258 67560 40768 1 114259 67561 40785 1 114260 67562 87619 1 114261 67563 40785 1 114262 67564 40772 1 114263 67564 89085 1 114264 67564 89086 1 114265 67565 40788 1 114266 67566 87058 1 114267 67567 89090 0 114268 67567 89091 0 114269 67567 89092 0 114270 67567 89093 0 114271 67567 89094 0 114272 67567 89095 0 114273 67567 40765 1 114274 67568 75837 1 114275 67568 87454 1 114276 67568 89097 1 114277 67569 40765 1 114278 67569 40772 1 114279 67569 89099 1 114280 67570 40783 1 114281 67570 89101 1 114282 67571 82933 1 114283 67571 40990 1 114284 67571 40765 1 114285 67571 41527 1 114286 67571 86134 1 114287 67571 86273 1 114288 67571 86135 1 114289 67572 89104 0 114290 67572 40765 1 114291 67572 89105 1 114292 67572 89106 1 114293 67573 40765 1 114294 67573 41184 1 114295 67573 89108 1 114296 67574 40990 1 114297 67574 86452 1 114298 67575 40805 1 114299 67575 89111 1 114300 67576 87294 1 114301 67577 86602 1 114302 67577 89114 1 114303 67577 89115 1 114304 67578 40765 1 114305 67579 40783 1 114306 67580 87162 1 114307 67581 40783 1 114308 67581 40933 1 114309 67582 89121 1 114310 67583 89123 1 114311 67584 56609 1 114312 67584 89125 1 114313 67584 89126 1 114314 67584 89127 1 114315 67584 89128 1 114316 67585 89130 0 114317 67585 41212 1 114318 67585 89131 1 114319 67586 40765 1 114320 67587 40765 1 114321 67587 87890 1 114322 67588 69171 1 114323 67588 87664 1 114324 67589 41212 1 114325 67589 88685 1 114326 67589 88686 1 114327 67590 43667 1 114328 67590 40765 1 114329 67590 43648 1 114330 67590 40777 1 114331 67591 88120 1 114332 67592 40780 1 114333 67592 40865 1 114334 67592 87982 1 114335 67592 87983 1 114336 67593 43648 1 114337 67594 40783 1 114338 67595 89142 1 114339 67595 89143 1 114340 67595 89144 1 114341 67595 89145 1 114342 67596 40765 1 114343 67596 40963 1 114344 67596 89147 1 114345 67597 40765 1 114346 67598 40990 1 114347 67598 41527 1 114348 67598 89150 1 114349 67599 88134 1 114350 67600 40785 1 114351 67601 86200 1 114352 67602 41136 1 114353 67603 40772 1 114354 67603 44200 1 114355 67603 44201 1 114356 67604 72980 1 114357 67604 89157 1 114358 67605 40783 1 114359 67606 40765 1 114360 67607 86993 1 114361 67607 86994 1 114362 67608 48534 1 114363 67609 40774 1 114364 67610 88222 1 114365 67611 41818 1 114366 67612 40877 1 114367 67613 42651 1 114368 67614 86303 1 114369 67615 40765 1 114370 67616 89170 1 114371 67616 89171 1 114372 67617 40765 1 114373 67617 40799 1 114374 67618 40783 1 114375 67618 42695 1 114376 67619 40783 1 114377 67619 89175 1 114378 67620 89177 1 114379 67620 89178 1 114380 67621 88595 1 114381 67622 40788 1 114382 67623 40783 1 114383 67623 89182 1 114384 67623 89183 1 114385 67624 40765 1 114386 67624 40914 1 114387 67624 89185 1 114388 67625 40774 1 114389 67626 89188 0 114390 67626 40783 1 114391 67626 41499 1 114392 67626 47010 1 114393 67626 89189 1 114394 67627 40794 1 114395 67627 53953 1 114396 67628 43530 1 114397 67629 42294 1 114398 67629 40765 1 114399 67630 41426 1 114400 67630 89194 1 114401 67631 86486 1 114402 67632 40765 1 114403 67633 41054 1 114404 67634 40765 1 114405 67634 89199 1 114406 67634 86713 1 114407 67635 86480 1 114408 67636 40774 1 114409 67637 41269 1 114410 67638 40765 1 114411 67639 41054 1 114412 67640 73849 1 114413 67640 86412 1 114414 67641 40765 1 114415 67642 89208 1 114416 67643 40765 1 114417 67643 40772 1 114418 67643 89210 1 114419 67643 89211 1 114420 67643 89212 1 114421 67644 51994 1 114422 67645 40765 1 114423 67645 86677 1 114424 67645 86678 1 114425 67646 89216 1 114426 67647 89218 1 114427 67648 40796 1 114428 67649 40774 1 114429 67650 40783 1 114430 67651 40765 1 114431 67651 88723 1 114432 67652 40990 1 114433 67652 89224 1 114434 67652 86135 1 114435 67653 40768 1 114436 67654 40783 1 114437 67655 40768 1 114438 67655 89228 1 114439 67656 40990 1 114440 67656 86565 1 114441 67657 57419 1 114442 67657 40765 1 114443 67657 89231 1 114444 67657 89232 1 114445 67658 87619 1 114446 67659 40783 1 114447 67660 41212 1 114448 67661 89237 1 114449 67661 89238 1 114450 67662 40777 1 114451 67663 40765 1 114452 67663 87516 1 114453 67664 40785 1 114454 67665 89243 1 114455 67666 89245 0 114456 67666 40818 1 114457 67666 45805 1 114458 67667 89247 1 114459 67668 89249 1 114460 67669 87089 1 114461 67670 40765 1 114462 67671 67487 1 114463 67672 89254 0 114464 67672 40785 1 114465 67673 40765 1 114466 67674 40765 1 114467 67674 89257 1 114468 67674 87702 1 114469 67675 86839 1 114470 67675 86840 1 114471 67675 86842 1 114472 67676 40765 1 114473 67676 88473 1 114474 67677 41745 1 114475 67678 87087 1 114476 67679 40783 1 114477 67679 89263 1 114478 67680 40777 1 114479 67681 41530 1 114480 67681 89266 1 114481 67681 89267 1 114482 67682 41212 1 114483 67682 89269 1 114484 67683 40768 1 114485 67683 41149 1 114486 67683 86261 1 114487 67684 40794 1 114488 67684 43469 1 114489 67684 40765 1 114490 67684 40795 1 114491 67685 87186 1 114492 67686 40774 1 114493 67687 40799 1 114494 67687 41499 1 114495 67688 41054 1 114496 67689 89277 1 114497 67690 41136 1 114498 67691 40990 1 114499 67691 40765 1 114500 67692 40765 1 114501 67693 41463 1 114502 67694 40765 1 114503 67694 40772 1 114504 67694 87143 1 114505 67695 89284 1 114506 67695 89285 1 114507 67696 40783 1 114508 67696 89287 1 114509 67697 87097 1 114510 67698 40814 1 114511 67698 40799 1 114512 67698 87755 1 114513 67699 43667 1 114514 67699 40765 1 114515 67700 89292 0 114516 67700 40814 1 114517 67700 87755 1 114518 67701 83101 1 114519 67701 40777 1 114520 67702 86103 1 114521 67703 67487 1 114522 67704 44631 1 114523 67705 86103 1 114524 67706 40814 1 114525 67706 41463 1 114526 67706 89299 1 114527 67706 89300 1 114528 67707 41136 1 114529 67707 86168 1 114530 67708 40783 1 114531 67709 40783 1 114532 67709 89304 1 114533 67710 40765 1 114534 67711 86200 1 114535 67712 40765 1 114536 67713 40780 1 114537 67713 42736 1 114538 67713 86214 1 114539 67714 40774 1 114540 67714 40765 1 114541 67715 40765 1 114542 67715 85928 1 114543 67716 40777 1 114544 67717 41233 1 114545 67718 40774 1 114546 67719 40765 1 114547 67720 40799 1 114548 67720 86604 1 114549 67720 86606 1 114550 67721 48534 1 114551 67722 40765 1 114552 67722 40961 1 114553 67723 89319 1 114554 67724 40783 1 114555 67724 89321 1 114556 67724 89322 1 114557 67725 89324 1 114558 67726 41149 1 114559 67726 86235 1 114560 67727 40765 1 114561 67728 41136 1 114562 67729 40765 1 114563 67729 87000 1 114564 67730 89330 0 114565 67730 89331 0 114566 67730 40806 1 114567 67730 89332 1 114568 67731 40774 1 114569 67731 40961 1 114570 67732 86333 1 114571 67733 40785 1 114572 67734 40990 1 114573 67734 40765 1 114574 67735 40765 1 114575 67735 40772 1 114576 67736 40933 1 114577 67737 89340 1 114578 67737 89341 1 114579 67738 89343 1 114580 67738 89344 1 114581 67738 89345 1 114582 67739 40774 1 114583 67739 40933 1 114584 67740 89348 0 114585 67740 89349 1 114586 67741 40765 1 114587 67742 40765 1 114588 67743 40990 1 114589 67743 40799 1 114590 67744 40990 1 114591 67744 89354 1 114592 67745 44565 1 114593 67746 86836 1 114594 67747 40783 1 114595 67748 41284 1 114596 67748 89359 1 114597 67748 89360 1 114598 67749 41139 1 114599 67750 40990 1 114600 67751 41284 1 114601 67752 42879 1 114602 67753 89366 1 114603 67753 89367 1 114604 67754 40990 1 114605 67754 40799 1 114606 67755 89370 0 114607 67755 80916 1 114608 67755 40777 1 114609 67756 40783 1 114610 67757 40783 1 114611 67757 89373 1 114612 67758 40783 1 114613 67759 40765 1 114614 67760 40765 1 114615 67760 44987 1 114616 67761 40765 1 114617 67762 40785 1 114618 67763 40870 1 114619 67763 89380 1 114620 67763 41453 1 114621 67764 89382 1 114622 67765 41149 1 114623 67765 89384 1 114624 67766 40777 1 114625 67767 40799 1 114626 67767 89387 1 114627 67767 89388 1 114628 67768 69171 1 114629 67768 88543 1 114630 67769 41818 1 114631 67770 40990 1 114632 67770 89392 1 114633 67771 86339 1 114634 67772 40794 1 114635 67772 89395 1 114636 67773 40765 1 114637 67773 89397 1 114638 67774 40765 1 114639 67774 51815 1 114640 67774 86465 1 114641 67775 40794 1 114642 67775 40765 1 114643 67775 89400 1 114644 67776 40765 1 114645 67776 41099 1 114646 67777 40765 1 114647 67777 88081 1 114648 67778 40765 1 114649 67779 41091 1 114650 67780 89406 1 114651 67780 89407 1 114652 67780 89408 1 114653 67781 40774 1 114654 67782 88389 1 114655 67783 40765 1 114656 67783 88310 1 114657 67784 40765 1 114658 67785 40794 1 114659 67785 89414 1 114660 67786 40765 1 114661 67787 40765 1 114662 67787 40799 1 114663 67788 40794 1 114664 67788 40956 1 114665 67788 89418 1 114666 67789 89420 1 114667 67790 86480 1 114668 67791 40765 1 114669 67792 41269 1 114670 67792 89424 1 114671 67793 40799 1 114672 67793 86604 1 114673 67793 86606 1 114674 67794 40765 1 114675 67795 40783 1 114676 67795 86088 1 114677 67796 40765 1 114678 67797 40794 1 114679 67797 40956 1 114680 67797 89418 1 114681 67798 89431 1 114682 67799 86529 1 114683 67800 41456 1 114684 67801 40783 1 114685 67801 42879 1 114686 67802 41091 1 114687 67803 40765 1 114688 67804 40783 1 114689 67804 40799 1 114690 67805 40805 1 114691 67805 89439 1 114692 67806 40805 1 114693 67806 67354 1 114694 67807 40990 1 114695 67807 86565 1 114696 67808 89443 1 114697 67809 40805 1 114698 67809 40806 1 114699 67809 89445 1 114700 67809 89446 1 114701 67809 89447 1 114702 67810 40765 1 114703 67810 40777 1 114704 67810 89449 1 114705 67810 89450 1 114706 67811 40970 1 114707 67811 40768 1 114708 67811 40796 1 114709 67812 40963 1 114710 67812 89453 1 114711 67812 50976 1 114712 67813 40990 1 114713 67813 86134 1 114714 67814 73849 1 114715 67814 86444 1 114716 67815 89457 0 114717 67815 40765 1 114718 67815 89458 1 114719 67816 89460 1 114720 67817 40765 1 114721 67818 41136 1 114722 67819 89464 1 114723 67819 89465 1 114724 67819 89466 1 114725 67820 41136 1 114726 67821 40783 1 114727 67822 41365 1 114728 67823 40805 1 114729 67824 40777 1 114730 67825 40818 1 114731 67826 46632 1 114732 67827 40783 1 114733 67828 41227 1 114734 67828 87047 1 114735 67828 87048 1 114736 67829 40780 1 114737 67829 42736 1 114738 67830 40765 1 114739 67830 89478 1 114740 67831 40783 1 114741 67831 86344 1 114742 67832 40783 1 114743 67832 86742 1 114744 67833 40783 1 114745 67834 89483 1 114746 67834 88210 1 114747 67835 54466 1 114748 67836 69171 1 114749 67837 40805 1 114750 67837 40765 1 114751 67837 41284 1 114752 67837 43171 1 114753 67837 40772 1 114754 67838 87543 1 114755 67838 87544 1 114756 67839 40765 1 114757 67840 40765 1 114758 67840 87676 1 114759 67841 40765 1 114760 67841 40865 1 114761 67842 40963 1 114762 67842 87860 1 114763 67843 41136 1 114764 67843 88302 1 114765 67843 88303 1 114766 67844 41136 1 114767 67844 89494 1 114768 67845 40783 1 114769 67845 89496 1 114770 67846 87260 1 114771 67847 40780 1 114772 67847 42736 1 114773 67847 86491 1 114774 67848 40794 1 114775 67848 40765 1 114776 67848 41865 1 114777 67849 40765 1 114778 67849 89501 1 114779 67850 86993 1 114780 67850 86994 1 114781 67851 40933 1 114782 67852 89505 1 114783 67852 89506 1 114784 67853 41542 1 114785 67853 40765 1 114786 67853 89508 1 114787 67854 40780 1 114788 67854 40794 1 114789 67854 87347 1 114790 67855 40799 1 114791 67855 41499 1 114792 67856 40814 1 114793 67856 40765 1 114794 67856 89512 1 114795 67856 89513 1 114796 67857 41463 1 114797 67858 40765 1 114798 67858 89516 1 114799 67859 41212 1 114800 67859 86154 1 114801 67859 86155 1 114802 67860 40765 1 114803 67861 40765 1 114804 67862 40765 1 114805 67862 88188 1 114806 67863 44089 1 114807 67863 89522 1 114808 67864 89524 0 114809 67864 89525 0 114810 67864 40783 1 114811 67864 89526 1 114812 67864 89527 1 114813 67865 45892 1 114814 67865 40799 1 114815 67865 89529 1 114816 67866 40765 1 114817 67867 89249 1 114818 67868 41239 1 114819 67869 40783 1 114820 67869 40795 1 114821 67869 62384 1 114822 67869 89534 1 114823 67870 40765 1 114824 67870 88879 1 114825 67871 89537 1 114826 67872 89539 1 114827 67873 40768 1 114828 67873 41149 1 114829 67873 86261 1 114830 67874 40765 1 114831 67875 40765 1 114832 67876 40765 1 114833 67876 86955 1 114834 67877 40788 1 114835 67878 75837 1 114836 67878 44269 1 114837 67878 43671 1 114838 67878 89546 1 114839 67879 40928 1 114840 67879 41233 1 114841 67879 40765 1 114842 67880 87764 1 114843 67881 40814 1 114844 67881 40799 1 114845 67882 40765 1 114846 67883 40765 1 114847 67883 88310 1 114848 67884 41284 1 114849 67884 43171 1 114850 67884 52756 1 114851 67885 40765 1 114852 67885 86164 1 114853 67886 44631 1 114854 67886 41499 1 114855 67887 40783 1 114856 67888 40990 1 114857 67888 86258 1 114858 67888 86259 1 114859 67889 89558 1 114860 67889 40783 1 114861 67890 40765 1 114862 67890 41463 1 114863 67890 89560 1 114864 67890 89561 1 114865 67891 40765 1 114866 67892 89564 1 114867 67893 82933 1 114868 67893 40990 1 114869 67893 40765 1 114870 67893 87814 1 114871 67893 86135 1 114872 67894 89567 1 114873 67895 89569 1 114874 67896 40780 1 114875 67896 89571 1 114876 67896 88586 1 114877 67897 89573 0 114878 67897 40777 1 114879 67898 40870 1 114880 67899 40877 1 114881 67899 40777 1 114882 67899 40933 1 114883 67900 40990 1 114884 67900 86565 1 114885 67901 40788 1 114886 67902 41136 1 114887 67903 40799 1 114888 67903 86174 1 114889 67903 89580 1 114890 67904 40783 1 114891 67905 86480 1 114892 67906 40783 1 114893 67907 41139 1 114894 67907 67849 1 114895 67907 40876 1 114896 67907 40814 1 114897 67907 88349 1 114898 67908 89586 0 114899 67908 89587 0 114900 67908 40870 1 114901 67909 41054 1 114902 67910 41091 1 114903 67910 40765 1 114904 67910 89590 1 114905 67910 89591 1 114906 67911 89593 1 114907 67912 40963 1 114908 67912 89595 1 114909 67912 50976 1 114910 67913 40765 1 114911 67914 40765 1 114912 67915 40799 1 114913 67916 41054 1 114914 67917 41456 1 114915 67918 40783 1 114916 67919 40768 1 114917 67919 40876 1 114918 67920 40765 1 114919 67921 89605 1 114920 67921 86112 1 114921 67921 86113 1 114922 67922 86993 1 114923 67922 86994 1 114924 67923 89608 1 114925 67924 87247 1 114926 67925 89611 1 114927 67925 40765 1 114928 67925 87516 1 114929 67926 40765 1 114930 67927 89614 0 114931 67927 40799 1 114932 67927 41499 1 114933 67928 40818 1 114934 67929 89617 1 114935 67930 89619 1 114936 67931 40794 1 114937 67931 89621 1 114938 67931 89622 1 114939 67932 89624 1 114940 67933 40765 1 114941 67934 89627 1 114942 67934 87326 1 114943 67934 52257 1 114944 67934 87221 1 114945 67934 89628 1 114946 67935 89630 0 114947 67935 40765 1 114948 67935 40799 1 114949 67935 41499 1 114950 67936 86480 1 114951 67937 40783 1 114952 67938 42879 1 114953 67939 89635 0 114954 67939 42048 1 114955 67940 40765 1 114956 67940 88989 1 114957 67941 72641 1 114958 67941 40765 1 114959 67941 89638 1 114960 67942 40990 1 114961 67942 46632 1 114962 67942 88299 1 114963 67942 89640 1 114964 67943 41239 1 114965 67943 89642 1 114966 67944 40765 1 114967 67944 89644 1 114968 67945 40765 1 114969 67946 40783 1 114970 67946 86088 1 114971 67947 40805 1 114972 67948 86402 1 114973 67949 69188 1 114974 67950 88895 1 114975 67951 41173 1 114976 67951 40765 1 114977 67951 49388 1 114978 67951 88635 1 114979 67952 40783 1 114980 67953 89654 1 114981 67954 86103 1 114982 67955 40765 1 114983 67956 40772 1 114984 67956 89658 1 114985 67957 40765 1 114986 67957 40772 1 114987 67957 89660 1 114988 67958 86299 1 114989 67959 40768 1 114990 67959 41149 1 114991 67959 86261 1 114992 67960 40774 1 114993 67961 41463 1 114994 67962 40765 1 114995 67963 89667 1 114996 67964 86539 1 114997 67965 40765 1 114998 67965 40799 1 114999 67966 40765 1 115000 67966 89671 1 115001 67967 89673 1 115002 67967 89674 1 115003 67968 40783 1 115004 67968 86088 1 115005 67969 41136 1 115006 67970 40877 1 115007 67971 89679 0 115008 67971 40785 1 115009 67972 40783 1 115010 67973 41212 1 115011 67973 60585 1 115012 67974 89683 1 115013 67974 89684 1 115014 67974 89685 1 115015 67975 40765 1 115016 67976 89688 1 115017 67977 41463 1 115018 67978 40765 1 115019 67979 40765 1 115020 67979 86638 1 115021 67980 40765 1 115022 67981 40765 1 115023 67982 40783 1 115024 67983 87765 1 115025 67984 40765 1 115026 67984 86580 1 115027 67984 86581 1 115028 67985 40788 1 115029 67986 40785 1 115030 67987 41212 1 115031 67987 89700 1 115032 67988 40794 1 115033 67988 86109 1 115034 67989 89703 1 115035 67989 89704 1 115036 67989 89705 1 115037 67990 41269 1 115038 67990 88907 1 115039 67990 88759 1 115040 67991 73849 1 115041 67991 86412 1 115042 67992 40783 1 115043 67992 89709 1 115044 67993 41499 1 115045 67994 40785 1 115046 67995 89713 1 115047 67995 89714 1 115048 67996 58590 1 115049 67997 40799 1 115050 67997 86084 1 115051 67998 86433 1 115052 67999 40765 1 115053 67999 45028 1 115054 68000 55332 1 115055 68000 87630 1 115056 68001 83734 1 115057 68002 89722 1 115058 68002 89723 1 115059 68003 89725 1 115060 68004 41091 1 115061 68005 40765 1 115062 68006 40805 1 115063 68006 89729 1 115064 68007 40783 1 115065 68007 87742 1 115066 68007 88484 1 115067 68008 40796 1 115068 68008 89732 1 115069 68009 40799 1 115070 68009 40844 1 115071 68010 40765 1 115072 68011 65170 1 115073 68011 89388 1 115074 68012 41269 1 115075 68012 87198 1 115076 68013 40870 1 115077 68013 40799 1 115078 68014 41284 1 115079 68015 40783 1 115080 68015 86225 1 115081 68016 86303 1 115082 68017 40783 1 115083 68018 89743 0 115084 68018 89744 0 115085 68018 41091 1 115086 68019 40765 1 115087 68020 89747 1 115088 68021 89749 0 115089 68021 41173 1 115090 68021 40765 1 115091 68021 53519 1 115092 68021 88635 1 115093 68022 89751 1 115094 68023 89753 1 115095 68024 40765 1 115096 68024 40799 1 115097 68025 86565 1 115098 68026 41212 1 115099 68026 86431 1 115100 68027 40785 1 115101 68028 40765 1 115102 68028 43830 1 115103 68028 42671 1 115104 68028 86755 1 115105 68029 43648 1 115106 68030 86141 1 115107 68031 87844 1 115108 68031 88439 1 115109 68032 40783 1 115110 68033 86988 1 115111 68034 66207 1 115112 68034 66208 1 115113 68035 40777 1 115114 68036 40990 1 115115 68037 40783 1 115116 68037 86533 1 115117 68038 40783 1 115118 68038 41212 1 115119 68038 89769 1 115120 68039 40765 1 115121 68039 86463 1 115122 68040 41091 1 115123 68041 40765 1 115124 68042 89774 1 115125 68043 89776 1 115126 68043 89777 1 115127 68044 40765 1 115128 68045 89780 1 115129 68046 89782 1 115130 68047 89784 0 115131 68047 40799 1 115132 68047 83414 1 115133 68048 40765 1 115134 68048 55567 1 115135 68049 69171 1 115136 68050 89788 1 115137 68051 40765 1 115138 68052 40780 1 115139 68052 42736 1 115140 68052 89791 1 115141 68052 89792 1 115142 68053 41092 1 115143 68054 40799 1 115144 68054 86146 1 115145 68055 46819 1 115146 68055 87189 1 115147 68056 40765 1 115148 68057 73849 1 115149 68057 86444 1 115150 68057 89798 1 115151 68058 40783 1 115152 68058 89800 1 115153 68059 40765 1 115154 68059 42879 1 115155 68060 41187 1 115156 68060 40765 1 115157 68060 89803 1 115158 68061 40783 1 115159 68062 73849 1 115160 68062 86444 1 115161 68063 40765 1 115162 68064 40806 1 115163 68064 89808 1 115164 68065 89810 1 115165 68065 76170 1 115166 68066 89812 0 115167 68066 41499 1 115168 68067 40794 1 115169 68067 47089 1 115170 68067 89814 1 115171 68068 40990 1 115172 68068 86258 1 115173 68068 86259 1 115174 68069 89817 1 115175 68070 89819 1 115176 68070 89820 1 115177 68070 89821 1 115178 68071 40765 1 115179 68071 40961 1 115180 68072 40774 1 115181 68073 41153 1 115182 68074 89826 0 115183 68074 40990 1 115184 68074 40799 1 115185 68074 89827 1 115186 68074 89828 1 115187 68074 86376 1 115188 68074 51716 1 115189 68075 40783 1 115190 68076 87844 1 115191 68076 88439 1 115192 68077 86200 1 115193 68078 40783 1 115194 68079 41099 1 115195 68080 40772 1 115196 68080 89835 1 115197 68080 89836 1 115198 68080 89837 1 115199 68081 40765 1 115200 68082 40765 1 115201 68083 40768 1 115202 68083 43648 1 115203 68084 46632 1 115204 68085 40794 1 115205 68085 89843 1 115206 68086 40765 1 115207 68086 40799 1 115208 68087 40783 1 115209 68087 86088 1 115210 68088 40765 1 115211 68088 89847 1 115212 68089 40765 1 115213 68089 55567 1 115214 68090 40783 1 115215 68091 86993 1 115216 68091 86994 1 115217 68092 40785 1 115218 68093 89853 0 115219 68093 40765 1 115220 68094 40990 1 115221 68094 52017 1 115222 68094 88736 1 115223 68095 40765 1 115224 68096 40783 1 115225 68096 89857 1 115226 68096 88874 1 115227 68097 40799 1 115228 68097 43830 1 115229 68097 42671 1 115230 68098 88625 1 115231 68099 41149 1 115232 68099 89861 1 115233 68099 89862 1 115234 68100 40876 1 115235 68101 44422 1 115236 68102 40768 1 115237 68102 40796 1 115238 68102 88874 1 115239 68103 40783 1 115240 68103 86531 1 115241 68104 69171 1 115242 68105 40990 1 115243 68105 86452 1 115244 68106 40794 1 115245 68106 40765 1 115246 68106 40795 1 115247 68106 88616 1 115248 68107 40783 1 115249 68108 73849 1 115250 68108 86444 1 115251 68108 89872 1 115252 68109 86623 1 115253 68110 89875 1 115254 68111 40783 1 115255 68111 89877 1 115256 68112 40765 1 115257 68112 40816 1 115258 68112 59601 1 115259 68113 40785 1 115260 68114 88883 1 115261 68115 89882 1 115262 68116 40990 1 115263 68116 40765 1 115264 68116 89884 1 115265 68116 89885 1 115266 68117 40765 1 115267 68117 89887 1 115268 68118 42349 1 115269 68118 89889 1 115270 68118 46871 1 115271 68118 89890 1 115272 68119 43552 1 115273 68119 40777 1 115274 68120 40794 1 115275 68120 43469 1 115276 68120 40765 1 115277 68120 40795 1 115278 68121 72894 1 115279 68122 40765 1 115280 68123 40772 1 115281 68123 67487 1 115282 68124 40765 1 115283 68124 40799 1 115284 68125 40765 1 115285 68125 89898 1 115286 68125 88474 1 115287 68126 40799 1 115288 68126 86146 1 115289 68127 77900 1 115290 68127 40783 1 115291 68127 89901 1 115292 68128 84787 1 115293 68129 40870 1 115294 68129 86477 1 115295 68130 89905 0 115296 68130 67354 1 115297 68130 71850 1 115298 68131 40783 1 115299 68131 89907 1 115300 68132 40933 1 115301 68132 89909 1 115302 68133 40783 1 115303 68133 89911 1 115304 68134 89913 1 115305 68135 40765 1 115306 68135 40816 1 115307 68135 89915 1 115308 68136 45550 1 115309 68136 87587 1 115310 68137 40785 1 115311 68138 89919 0 115312 68138 40768 1 115313 68138 41149 1 115314 68138 89920 1 115315 68139 89922 1 115316 68139 89923 1 115317 68139 89924 1 115318 68140 40780 1 115319 68140 42736 1 115320 68141 40765 1 115321 68142 40990 1 115322 68142 40765 1 115323 68142 41527 1 115324 68142 86134 1 115325 68143 40990 1 115326 68143 86452 1 115327 68144 40765 1 115328 68144 89930 1 115329 68145 40799 1 115330 68145 89932 1 115331 68146 40818 1 115332 68147 89935 0 115333 68147 89936 0 115334 68147 89937 0 115335 68147 40799 1 115336 68148 85788 1 115337 68149 40870 1 115338 68149 40799 1 115339 68150 40765 1 115340 68150 51815 1 115341 68150 86465 1 115342 68151 40799 1 115343 68151 89005 1 115344 68152 41239 1 115345 68153 44089 1 115346 68153 44035 1 115347 68153 89944 1 115348 68153 89945 1 115349 68154 89947 0 115350 68154 41091 1 115351 68155 87457 1 115352 68156 40783 1 115353 68157 40783 1 115354 68158 88528 1 115355 68159 64444 1 115356 68160 86993 1 115357 68160 86994 1 115358 68161 40765 1 115359 68161 86634 1 115360 68162 89956 1 115361 68162 89957 1 115362 68163 89959 1 115363 68163 89960 1 115364 68164 40765 1 115365 68165 40777 1 115366 68166 40774 1 115367 68167 40794 1 115368 68167 40795 1 115369 68167 89965 1 115370 68167 89966 1 115371 68168 40777 1 115372 68169 40765 1 115373 68170 40765 1 115374 68171 40783 1 115375 68172 40768 1 115376 68172 41149 1 115377 68172 86261 1 115378 68173 40765 1 115379 68173 40799 1 115380 68173 86146 1 115381 68174 40765 1 115382 68174 86861 1 115383 68175 82933 1 115384 68175 40990 1 115385 68175 40765 1 115386 68175 41527 1 115387 68175 86134 1 115388 68175 86273 1 115389 68175 86135 1 115390 68176 40765 1 115391 68176 88476 1 115392 68177 41091 1 115393 68177 87506 1 115394 68178 89978 1 115395 68179 82933 1 115396 68179 40990 1 115397 68179 40765 1 115398 68179 41527 1 115399 68179 86134 1 115400 68179 86861 1 115401 68180 40768 1 115402 68180 41149 1 115403 68180 86261 1 115404 68181 89982 0 115405 68181 89983 0 115406 68181 40765 1 115407 68182 48534 1 115408 68183 89986 0 115409 68183 40785 1 115410 68184 89988 1 115411 68185 40870 1 115412 68185 40799 1 115413 68186 41463 1 115414 68187 40765 1 115415 68188 40765 1 115416 68188 87000 1 115417 68189 41149 1 115418 68189 86235 1 115419 68190 40765 1 115420 68190 88081 1 115421 68191 40765 1 115422 68192 70818 1 115423 68192 40814 1 115424 68192 70819 1 115425 68193 41099 1 115426 68194 89999 1 115427 68195 40765 1 115428 68196 90002 1 115429 68197 40933 1 115430 68198 40774 1 115431 68199 40783 1 115432 68200 90007 0 115433 68200 42879 1 115434 68201 40765 1 115435 68201 90009 1 115436 68202 40765 1 115437 68203 90012 0 115438 68203 40765 1 115439 68203 87890 1 115440 68204 40783 1 115441 68205 40765 1 115442 68206 90016 1 115443 68207 90018 0 115444 68207 41269 1 115445 68208 40796 1 115446 68209 41091 1 115447 68210 40765 1 115448 68211 40780 1 115449 68211 40783 1 115450 68211 72278 1 115451 68211 40865 1 115452 68212 90024 1 115453 68213 88792 1 115454 68214 90027 1 115455 68215 40765 1 115456 68215 40772 1 115457 68215 89660 1 115458 68216 50009 1 115459 68216 50010 1 115460 68217 90031 1 115461 68217 90032 1 115462 68218 90034 1 115463 68218 40765 1 115464 68218 40772 1 115465 68218 90035 1 115466 68219 40777 1 115467 68220 40765 1 115468 68221 40961 1 115469 68222 90040 1 115470 68222 90041 1 115471 68223 90043 1 115472 68223 90044 1 115473 68224 90046 1 115474 68225 40783 1 115475 68225 90048 1 115476 68225 90049 1 115477 68226 40765 1 115478 68226 90051 1 115479 68227 90053 1 115480 68227 40777 1 115481 68228 41818 1 115482 68228 86386 1 115483 68229 40814 1 115484 68229 41463 1 115485 68230 41426 1 115486 68231 90058 1 115487 68231 90059 1 115488 68232 41239 1 115489 68233 86486 1 115490 68234 76267 1 115491 68235 90064 1 115492 68236 90066 1 115493 68237 40785 1 115494 68238 46955 1 115495 68239 40765 1 115496 68240 40805 1 115497 68241 40783 1 115498 68241 90072 1 115499 68242 40990 1 115500 68242 40765 1 115501 68242 90074 1 115502 68242 90075 1 115503 68243 90077 0 115504 68243 40783 1 115505 68244 40765 1 115506 68245 40765 1 115507 68245 86744 1 115508 68246 41499 1 115509 68246 52452 1 115510 68247 51143 1 115511 68248 75002 1 115512 68249 40765 1 115513 68250 40783 1 115514 68251 68322 1 115515 68252 40799 1 115516 68252 86604 1 115517 68252 86606 1 115518 68253 90088 1 115519 68254 40780 1 115520 68254 42736 1 115521 68254 86521 1 115522 68255 86529 1 115523 68256 90092 0 115524 68256 40780 1 115525 68256 40865 1 115526 68257 40805 1 115527 68257 86918 1 115528 68258 40777 1 115529 68259 40765 1 115530 68260 40765 1 115531 68260 88683 1 115532 68261 41530 1 115533 68261 57141 1 115534 68261 88183 1 115535 68262 40765 1 115536 68263 40765 1 115537 68264 40933 1 115538 68265 41756 1 115539 68266 40765 1 115540 68266 86337 1 115541 68267 73849 1 115542 68267 86444 1 115543 68268 40794 1 115544 68268 61600 1 115545 68269 40765 1 115546 68269 90106 1 115547 68269 90107 1 115548 68269 90108 1 115549 68269 90109 1 115550 68270 40768 1 115551 68271 40765 1 115552 68271 87890 1 115553 68272 40799 1 115554 68272 44422 1 115555 68273 90114 0 115556 68273 67119 1 115557 68274 40783 1 115558 68275 40805 1 115559 68276 40765 1 115560 68276 40777 1 115561 68277 88222 1 115562 68278 87811 1 115563 68279 87058 1 115564 68280 86402 1 115565 68281 42651 1 115566 68282 90124 1 115567 68283 90126 1 115568 68283 90127 1 115569 68284 40783 1 115570 68284 90129 1 115571 68285 40785 1 115572 68286 90132 0 115573 68286 41091 1 115574 68287 40765 1 115575 68288 40765 1 115576 68289 90136 1 115577 68290 40788 1 115578 68291 40765 1 115579 68291 87193 1 115580 68292 41092 1 115581 68292 90140 1 115582 68292 87013 1 115583 68293 40990 1 115584 68293 40765 1 115585 68294 40780 1 115586 68294 42626 1 115587 68294 40765 1 115588 68294 90143 1 115589 68294 90144 1 115590 68295 40765 1 115591 68296 87619 1 115592 68297 90148 1 115593 68297 90149 1 115594 68297 90150 1 115595 68298 40765 1 115596 68299 59601 1 115597 68300 67487 1 115598 68301 40799 1 115599 68301 89005 1 115600 68302 41054 1 115601 68303 90157 0 115602 68303 40765 1 115603 68303 40772 1 115604 68303 67487 1 115605 68303 43866 1 115606 68303 40849 1 115607 68304 40774 1 115608 68305 90160 0 115609 68305 90161 1 115610 68305 41818 1 115611 68305 40799 1 115612 68306 40799 1 115613 68306 86516 1 115614 68306 86517 1 115615 68307 40777 1 115616 68308 87294 1 115617 68309 40765 1 115618 68310 90167 1 115619 68311 41818 1 115620 68312 90170 1 115621 68313 41818 1 115622 68313 90172 1 115623 68313 90173 1 115624 68313 90174 1 115625 68314 42299 1 115626 68315 50086 1 115627 68316 40796 1 115628 68316 88048 1 115629 68316 88049 1 115630 68317 76185 1 115631 68318 40765 1 115632 68318 90180 1 115633 68318 90181 1 115634 68319 88495 1 115635 68320 40765 1 115636 68321 41212 1 115637 68321 87285 1 115638 68322 90186 1 115639 68323 44098 1 115640 68324 90189 1 115641 68324 90190 1 115642 68324 90191 1 115643 68325 40765 1 115644 68325 41463 1 115645 68325 90193 1 115646 68325 90194 1 115647 68326 90196 0 115648 68326 40772 1 115649 68326 88854 1 115650 68327 40765 1 115651 68327 88639 1 115652 68327 90198 1 115653 68328 90200 1 115654 68328 90201 1 115655 68329 40788 1 115656 68330 90204 1 115657 68331 40783 1 115658 68332 90207 1 115659 68332 90208 1 115660 68333 40765 1 115661 68333 86567 1 115662 68334 40765 1 115663 68334 87143 1 115664 68334 87144 1 115665 68335 90212 1 115666 68336 90214 0 115667 68336 90215 0 115668 68336 41426 1 115669 68336 44089 1 115670 68336 59144 1 115671 68337 86103 1 115672 68338 90218 0 115673 68338 40805 1 115674 68338 90219 1 115675 68339 90221 0 115676 68339 40799 1 115677 68339 40777 1 115678 68340 90223 1 115679 68340 89257 1 115680 68340 87702 1 115681 68341 87259 1 115682 68341 87260 1 115683 68342 40783 1 115684 68342 90226 1 115685 68342 90227 1 115686 68343 40777 1 115687 68344 86480 1 115688 68345 40814 1 115689 68345 40799 1 115690 68346 40877 1 115691 68346 40933 1 115692 68347 40765 1 115693 68347 86567 1 115694 68348 40780 1 115695 68348 42736 1 115696 68348 86521 1 115697 68349 40765 1 115698 68350 69171 1 115699 68351 40990 1 115700 68352 40783 1 115701 68353 44631 1 115702 68353 49388 1 115703 68354 49556 1 115704 68355 40783 1 115705 68356 40768 1 115706 68357 40799 1 115707 68357 41499 1 115708 68358 40783 1 115709 68358 40799 1 115710 68359 40794 1 115711 68359 43469 1 115712 68359 40765 1 115713 68359 40795 1 115714 68360 41499 1 115715 68361 40788 1 115716 68362 40765 1 115717 68362 88610 1 115718 68363 40765 1 115719 68363 90249 1 115720 68364 40836 1 115721 68365 40765 1 115722 68365 90252 1 115723 68365 90253 1 115724 68366 41745 1 115725 68367 90256 1 115726 68368 90258 0 115727 68368 42671 1 115728 68369 40765 1 115729 68369 40799 1 115730 68370 40783 1 115731 68370 90261 1 115732 68371 40765 1 115733 68372 90264 1 115734 68372 90265 1 115735 68372 90266 1 115736 68373 87089 1 115737 68374 40768 1 115738 68375 90270 0 115739 68375 40970 1 115740 68375 40768 1 115741 68375 40765 1 115742 68375 40796 1 115743 68375 87890 1 115744 68376 86200 1 115745 68377 44994 1 115746 68378 90274 0 115747 68378 90275 0 115748 68378 40765 1 115749 68379 90277 1 115750 68380 41139 1 115751 68380 90279 1 115752 68381 90281 1 115753 68382 40765 1 115754 68383 90284 1 115755 68383 90285 1 115756 68384 40777 1 115757 68384 90287 1 115758 68385 40783 1 115759 68386 90290 1 115760 68386 90291 1 115761 68387 87294 1 115762 68388 40772 1 115763 68388 90294 1 115764 68389 59601 1 115765 68390 40780 1 115766 68390 90297 1 115767 68391 90299 1 115768 68392 86501 1 115769 68392 40765 1 115770 68392 90301 1 115771 68393 87817 1 115772 68394 41818 1 115773 68395 40780 1 115774 68395 40865 1 115775 68395 90305 1 115776 68396 41818 1 115777 68396 40765 1 115778 68397 87189 1 115779 68398 87946 1 115780 68399 82933 1 115781 68399 40990 1 115782 68399 40765 1 115783 68399 41527 1 115784 68399 86134 1 115785 68399 86273 1 115786 68399 86135 1 115787 68400 75837 1 115788 68400 87158 1 115789 68400 90311 1 115790 68401 90313 1 115791 68402 86103 1 115792 68403 87612 1 115793 68404 41092 1 115794 68404 90317 1 115795 68404 90318 1 115796 68404 90319 1 115797 68405 40806 1 115798 68405 90321 1 115799 68405 90322 1 115800 68406 42095 1 115801 68407 40805 1 115802 68407 90325 1 115803 68408 86501 1 115804 68408 40765 1 115805 68409 40780 1 115806 68409 42736 1 115807 68410 40765 1 115808 68410 41284 1 115809 68411 40961 1 115810 68412 40765 1 115811 68413 90332 1 115812 68413 90333 1 115813 68414 87058 1 115814 68415 90336 1 115815 68416 86836 1 115816 68417 40783 1 115817 68418 90340 1 115818 68418 90341 1 115819 68419 40785 1 115820 68419 90343 1 115821 68419 46859 1 115822 68420 41463 1 115823 68421 40765 1 115824 68422 40765 1 115825 68422 90167 1 115826 68423 40780 1 115827 68423 42736 1 115828 68423 86491 1 115829 68424 40783 1 115830 68424 89287 1 115831 68425 41463 1 115832 68426 40783 1 115833 68427 41463 1 115834 68428 41239 1 115835 68429 40990 1 115836 68429 40765 1 115837 68429 86452 1 115838 68430 41499 1 115839 68431 45945 1 115840 68432 40799 1 115841 68432 88354 1 115842 68432 87279 1 115843 68433 90358 1 115844 68433 90359 1 115845 68433 90360 1 115846 68434 43648 1 115847 68434 40777 1 115848 68435 40765 1 115849 68436 40765 1 115850 68436 88297 1 115851 68436 40777 1 115852 68437 40785 1 115853 68438 40765 1 115854 68439 90367 0 115855 68439 41227 1 115856 68440 40990 1 115857 68440 86483 1 115858 68441 41284 1 115859 68442 90371 1 115860 68442 40765 1 115861 68443 40765 1 115862 68443 40799 1 115863 68444 41136 1 115864 68444 90374 1 115865 68444 90375 1 115866 68444 90376 1 115867 68445 40783 1 115868 68445 40765 1 115869 68445 41153 1 115870 68445 87015 1 115871 68446 40768 1 115872 68447 41284 1 115873 68448 40814 1 115874 68449 90382 1 115875 68450 40783 1 115876 68450 42695 1 115877 68451 40765 1 115878 68451 59601 1 115879 68452 41091 1 115880 68453 40990 1 115881 68453 86565 1 115882 68453 86452 1 115883 68454 72403 1 115884 68454 40765 1 115885 68455 40772 1 115886 68455 90389 1 115887 68455 86852 1 115888 68456 41463 1 115889 68457 90392 1 115890 68457 40783 1 115891 68458 40799 1 115892 68458 41212 1 115893 68459 40805 1 115894 68460 40990 1 115895 68460 40765 1 115896 68460 41527 1 115897 68460 86134 1 115898 68461 41463 1 115899 68462 40768 1 115900 68463 40765 1 115901 68463 40961 1 115902 68464 40780 1 115903 68464 42736 1 115904 68464 86491 1 115905 68465 41352 1 115906 68465 53519 1 115907 68466 40765 1 115908 68466 90402 1 115909 68467 41091 1 115910 68467 43319 1 115911 68468 90405 1 115912 68469 40774 1 115913 68470 40765 1 115914 68470 40799 1 115915 68471 40765 1 115916 68472 40788 1 115917 68473 90411 0 115918 68473 41239 1 115919 68474 40799 1 115920 68475 90414 0 115921 68475 40799 1 115922 68475 41499 1 115923 68476 41463 1 115924 68477 50616 1 115925 68477 90417 1 115926 68478 40765 1 115927 68479 41091 1 115928 68479 86335 1 115929 68479 87506 1 115930 68480 40990 1 115931 68480 40765 1 115932 68481 40780 1 115933 68481 40794 1 115934 68481 87347 1 115935 68482 40765 1 115936 68483 86301 1 115937 68484 40783 1 115938 68485 90426 1 115939 68486 90428 1 115940 68487 87614 1 115941 68488 52687 1 115942 68488 90431 1 115943 68488 87302 1 115944 68488 90432 1 115945 68489 40777 1 115946 68490 40765 1 115947 68490 87388 1 115948 68490 88015 1 115949 68491 40765 1 115950 68492 41284 1 115951 68493 52687 1 115952 68493 90431 1 115953 68493 87302 1 115954 68493 90432 1 115955 68494 41149 1 115956 68494 41499 1 115957 68495 41284 1 115958 68495 40799 1 115959 68495 90440 1 115960 68495 90441 1 115961 68495 90442 1 115962 68495 90443 1 115963 68496 40765 1 115964 68496 40963 1 115965 68496 90445 1 115966 68496 90446 1 115967 68497 90448 1 115968 68497 90449 1 115969 68498 87189 1 115970 68499 87307 1 115971 68500 40990 1 115972 68500 86258 1 115973 68500 86259 1 115974 68501 86953 1 115975 68502 43184 1 115976 68503 40777 1 115977 68504 40783 1 115978 68504 40877 1 115979 68504 40777 1 115980 68504 90457 1 115981 68505 40765 1 115982 68505 50100 1 115983 68506 40814 1 115984 68507 41379 1 115985 68508 40765 1 115986 68508 40772 1 115987 68509 40814 1 115988 68510 40933 1 115989 68511 40765 1 115990 68511 87326 1 115991 68511 87221 1 115992 68512 86955 1 115993 68513 40783 1 115994 68513 90467 1 115995 68514 40785 1 115996 68514 40799 1 115997 68515 87189 1 115998 68516 40814 1 115999 68516 40765 1 116000 68516 90471 1 116001 68516 90472 1 116002 68517 44631 1 116003 68517 87292 1 116004 68518 40990 1 116005 68518 40765 1 116006 68519 80588 1 116007 68520 40765 1 116008 68521 40772 1 116009 68521 90478 1 116010 68521 90479 1 116011 68522 40799 1 116012 68522 86146 1 116013 68523 90482 1 116014 68524 40799 1 116015 68524 86604 1 116016 68524 86606 1 116017 68525 40765 1 116018 68526 59346 1 116019 68527 40765 1 116020 68527 40933 1 116021 68528 40805 1 116022 68529 40928 1 116023 68529 41149 1 116024 68529 87047 1 116025 68529 87048 1 116026 68530 40765 1 116027 68531 90491 1 116028 68532 40805 1 116029 68532 86782 1 116030 68533 40990 1 116031 68533 40799 1 116032 68534 41239 1 116033 68535 40765 1 116034 68536 40765 1 116035 68536 90497 1 116036 68537 41818 1 116037 68537 40777 1 116038 68538 41212 1 116039 68539 40772 1 116040 68539 90501 1 116041 68539 90502 1 116042 68540 41239 1 116043 68540 90504 1 116044 68541 40765 1 116045 68541 86092 1 116046 68541 86093 1 116047 68542 41091 1 116048 68543 73339 1 116049 68544 40799 1 116050 68544 86604 1 116051 68544 86606 1 116052 68545 41463 1 116053 68546 40933 1 116054 68547 86193 1 116055 68548 86299 1 116056 68549 90514 1 116057 68550 86766 1 116058 68550 86767 1 116059 68551 40783 1 116060 68552 40990 1 116061 68552 40765 1 116062 68553 40794 1 116063 68553 42626 1 116064 68553 90519 1 116065 68554 87052 1 116066 68555 40765 1 116067 68556 90523 1 116068 68557 44089 1 116069 68558 40765 1 116070 68559 40765 1 116071 68560 90528 1 116072 68560 40783 1 116073 68560 90529 1 116074 68561 41756 1 116075 68562 40765 1 116076 68562 86634 1 116077 68562 86713 1 116078 68563 40765 1 116079 68564 40785 1 116080 68565 41136 1 116081 68566 40783 1 116082 68567 40774 1 116083 68567 40765 1 116084 68568 86103 1 116085 68569 40765 1 116086 68569 46819 1 116087 68570 90540 1 116088 68571 40765 1 116089 68571 86193 1 116090 68572 41745 1 116091 68572 40933 1 116092 68573 90544 1 116093 68574 40780 1 116094 68574 42736 1 116095 68574 86521 1 116096 68575 41530 1 116097 68575 90547 1 116098 68576 40990 1 116099 68576 40765 1 116100 68576 90549 1 116101 68577 41227 1 116102 68577 40933 1 116103 68578 40765 1 116104 68578 40772 1 116105 68578 86677 1 116106 68578 86678 1 116107 68579 40780 1 116108 68579 40865 1 116109 68580 86146 1 116110 68581 40765 1 116111 68582 40765 1 116112 68582 40865 1 116113 68583 40928 1 116114 68583 40876 1 116115 68584 40794 1 116116 68584 43469 1 116117 68584 40765 1 116118 68584 40795 1 116119 68585 40780 1 116120 68585 42736 1 116121 68585 90559 1 116122 68585 90560 1 116123 68586 40783 1 116124 68586 90467 1 116125 68587 40783 1 116126 68588 40870 1 116127 68588 41453 1 116128 68589 41092 1 116129 68589 86255 1 116130 68589 86256 1 116131 68590 41092 1 116132 68590 86944 1 116133 68591 40765 1 116134 68591 90567 1 116135 68592 41091 1 116136 68592 90569 1 116137 68592 90570 1 116138 68592 90571 1 116139 68593 40780 1 116140 68593 40865 1 116141 68593 60460 1 116142 68593 60461 1 116143 68594 40765 1 116144 68594 90574 1 116145 68594 87442 1 116146 68595 40805 1 116147 68596 40785 1 116148 68597 90578 1 116149 68597 90579 1 116150 68598 40765 1 116151 68599 40765 1 116152 68600 87105 1 116153 68601 90584 1 116154 68602 40765 1 116155 68602 90586 1 116156 68602 90587 1 116157 68603 40765 1 116158 68604 40765 1 116159 68605 40783 1 116160 68606 40765 1 116161 68606 86907 1 116162 68606 86908 1 116163 68606 86909 1 116164 68607 41091 1 116165 68608 59601 1 116166 68609 88528 1 116167 68610 86501 1 116168 68610 40765 1 116169 68611 40765 1 116170 68612 41269 1 116171 68613 40783 1 116172 68614 40765 1 116173 68614 86075 1 116174 68614 74447 1 116175 68615 40777 1 116176 68616 40783 1 116177 68617 71558 1 116178 68617 40783 1 116179 68617 90603 1 116180 68618 59601 1 116181 68619 40794 1 116182 68619 40765 1 116183 68619 40795 1 116184 68620 40783 1 116185 68620 40799 1 116186 68620 41212 1 116187 68620 87340 1 116188 68621 77867 1 116189 68622 87619 1 116190 68623 86103 1 116191 68624 90611 1 116192 68625 40765 1 116193 68626 40765 1 116194 68627 41136 1 116195 68628 40765 1 116196 68628 44987 1 116197 68629 86103 1 116198 68630 41184 1 116199 68631 40783 1 116200 68632 42879 1 116201 68633 40765 1 116202 68633 40799 1 116203 68634 40765 1 116204 68635 40933 1 116205 68636 90624 1 116206 68637 40799 1 116207 68637 90626 1 116208 68638 40774 1 116209 68639 40794 1 116210 68639 43469 1 116211 68639 40795 1 116212 68640 41292 1 116213 68641 90631 1 116786 69105 91199 0 116787 69105 91200 1 116788 69107 44422 1 116789 69108 91204 0 116790 69108 91205 1 116791 69109 91207 1 116792 69109 91208 1 116793 69110 91208 1 116794 69110 91210 1 116795 69111 91212 1 116796 69112 91200 1 116797 69113 44422 1 116798 69114 91216 1 116799 69115 91205 1 116800 69116 91208 1 116801 69116 91205 1 116802 69117 91205 1 116803 69118 91221 1 116804 69118 91222 1 116805 69119 91200 1 116806 69120 91225 1 116807 69121 91221 1 116808 69122 91200 1 116809 69123 91229 1 116810 69123 91230 1 116811 69124 91208 1 116812 69125 91207 1 116813 69126 91221 1 116814 69126 91222 1 116815 69127 91235 1 116816 69128 91208 1 116817 69128 91237 1 116818 69128 91238 1 116819 69129 91240 1 116820 69129 91200 1 116821 69130 91207 1 116822 69131 91208 1 116823 69132 91208 1 116824 69133 91200 1 116825 69134 91208 1 116826 69134 91246 1 116827 69135 91200 1 116828 69136 91205 1 116829 69137 91200 1 116830 69138 91208 1 116831 69139 91205 1 116832 69140 91253 1 116833 69141 91205 1 116834 69142 91256 1 116835 69142 91200 1 116836 69143 91205 1 116837 69143 91253 1 116838 69144 91207 1 116839 69145 91260 1 116840 69145 91205 1 116841 69146 91262 1 116842 69147 91200 1 116843 69148 91208 1 116844 69149 91266 1 116845 69149 91200 1 116846 69150 91205 1 116847 69151 91208 1 116848 69152 91270 1 116849 69153 91208 1 116850 69154 91208 1 116851 69154 91273 1 116852 69155 91275 1 116853 69156 91200 1 116854 69157 91208 1 116855 69158 91275 1 116856 69159 91200 1 116857 69160 91208 1 116858 69161 44422 1 116859 69162 91270 1 116860 69163 91284 1 116861 69164 91208 1 116862 69165 91208 1 116863 69166 91208 1 116864 69166 91273 1 116865 69167 91262 1 116866 69168 91208 1 116867 69169 91200 1 116868 69170 91216 1 116869 69170 91292 1 116870 69170 91293 1 116871 69171 91200 1 116872 69172 91222 1 116873 69172 91200 1 116874 69173 91208 1 116875 69173 91297 1 116876 69174 91299 1 116877 69175 44422 1 116878 69176 91302 1 116879 69177 91205 1 116880 69178 91200 1 116881 69179 91208 1 116882 69180 91222 1 116883 69181 91207 1 116884 69182 91200 1 116885 69183 91208 1 116886 69184 91221 1 116887 69185 91205 1 116888 69186 91208 1 116889 69187 91200 1 116890 69187 91253 1 116891 69188 91200 1 116892 69189 91208 1 116893 69190 91200 1 116894 69191 91208 1 116895 69192 91208 1 116896 69193 91208 1 116897 69193 91320 1 116898 69194 91207 1 116899 69195 44422 1 116900 69196 44422 1 116901 69196 91200 1 116902 69197 91325 0 116903 69197 91216 1 116904 69197 91292 1 116905 69198 91200 1 116906 69199 91208 1 116907 69200 91208 1 116908 69201 91207 1 116909 69202 44422 1 116910 69203 91221 1 116911 69203 91200 1 116912 69204 91221 1 116913 69204 91292 1 116914 69205 91205 1 116915 69206 91208 1 116916 69207 91336 1 116917 69208 91208 1 116918 69209 91339 1 116919 69209 91200 1 116920 69210 91200 1 116921 69211 91208 1 116922 69212 91208 1 116923 69213 91344 0 116924 69213 91200 1 116925 69214 91200 1 116926 69215 91207 1 116927 69216 91207 1 116928 69216 91208 1 116929 69217 91208 1 116930 69217 91349 1 116931 69218 91200 1 116932 69219 91352 1 116933 69220 91208 1 116934 69221 91216 1 116935 69221 91292 1 116936 69222 91208 1 116937 69223 44422 1 116938 69224 91253 1 116939 69225 91200 1 116940 69226 91360 1 116941 69227 91200 1 116942 69228 91205 1 116943 69229 91364 0 116944 69229 91273 1 116945 69230 91205 1 116946 69231 91200 1 116947 69232 91200 1 116948 69233 91200 1 116949 69234 91370 1 116950 69235 91208 1 116951 69236 91205 1 116952 69237 91374 0 116953 69237 91375 0 116954 69237 91208 1 116955 69238 91200 1 116956 69239 91208 1 116957 69240 91207 1 116958 69241 91205 1 116959 69242 46499 1 116960 69243 91360 1 116961 69244 91235 1 116962 69244 91230 1 116963 69245 91205 1 116964 69246 91208 1 116965 69246 91349 1 116966 69247 91208 1 116967 69247 91386 1 116968 69248 91205 1 116969 69249 91205 1 116970 69250 91284 1 116971 69250 44422 1 116972 69250 91200 1 116973 69251 91205 1 116974 69252 91200 1 116975 69253 91205 1 116976 69254 91207 1 116977 69255 91208 1 116978 69256 91200 1 116979 69257 91208 1 116980 69258 44422 1 116981 69258 91253 1 116982 69259 91275 1 116983 69260 91275 1 116984 69260 91208 1 116985 69261 91200 1 116986 69262 91205 1 116987 69263 91207 1 116988 69264 91273 1 116989 69265 91253 1 116990 69266 91200 1 116991 69267 91207 1 116992 69268 91408 0 116993 69268 91200 1 116994 69269 91200 1 116995 69269 91253 1 116996 69270 91205 1 116997 69271 44422 1 116998 69272 91208 1 116999 69273 91216 1 117000 69274 91205 1 117001 69275 91416 1 117002 69276 91205 1 117003 69277 91262 1 117004 69278 91420 1 117005 69279 91200 1 117006 69280 44422 1 117007 69281 91221 1 117008 69281 91212 1 117009 69282 91222 1 117010 69283 91208 1 117011 69284 91205 1 117012 69285 91205 1 117013 69286 91207 1 117014 69287 91430 0 117015 69287 91431 1 117016 69287 91200 1 117017 69288 91200 1 117018 69289 91208 1 117019 69289 91292 1 117020 69289 91434 1 117021 69290 91436 1 117022 69290 91200 1 117023 69291 91438 0 117024 69291 91200 1 117025 69292 91253 1 117026 69293 91208 1 117027 69294 44422 1 117028 69295 91208 1 117029 69296 91200 1 117030 69297 91275 1 117031 69298 91205 1 117032 69299 91207 1 117033 69300 91208 1 117034 69300 91200 1 117035 69301 91449 1 117036 69301 91200 1 117037 69301 91450 1 117038 69302 91200 1 117039 69303 91200 1 117040 69304 91431 1 117041 69304 91253 1 117042 69305 91207 1 117043 69306 91207 1 117044 69306 91208 1 117045 69307 91205 1 117046 69308 91235 1 117047 69308 91200 1 117048 69309 91200 1 117049 69310 91208 1 117050 69311 91205 1 117051 69312 91200 1 117052 69313 91207 1 117053 69314 44422 1 117054 69315 91208 1 117055 69316 91200 1 117056 69317 91416 1 117057 69317 91221 1 117058 69317 91222 1 117059 69318 91200 1 117060 69319 91208 1 117061 69320 91200 1 117062 69321 91262 1 117063 69322 91208 1 117064 69323 91208 1 117065 69324 91205 1 117066 69325 91221 1 117067 69326 91253 1 117068 69327 91477 1 117069 69327 91200 1 117070 69328 91253 1 117071 69329 91200 1 117072 69330 91200 1 117073 69331 91208 1 117074 69332 91208 1 117075 69333 91200 1 117076 69334 91208 1 117077 69335 91200 1 117078 69336 44422 1 117079 69337 91205 1 117080 69338 91205 1 117081 69339 91207 1 117082 69340 91221 1 117083 69341 91208 1 117084 69342 91205 1 117085 69343 91207 1 117086 69344 91205 1 117087 69345 91200 1 117088 69346 91200 1 117089 69347 91205 1 117090 69348 91208 1 117091 69348 91273 1 117092 69349 91208 1 117093 69350 91253 1 117094 69351 91200 1 117095 69352 91200 1 117096 69353 44422 1 117097 69353 91253 1 117098 69354 91205 1 117099 69355 91208 1 117100 69356 91205 1 117101 69357 91207 1 117102 69358 91509 1 117103 69358 91253 1 117104 69359 91352 1 117105 69360 91200 1 117106 69361 91208 1 117107 69362 91205 1 117108 69363 91273 1 117109 69364 91208 1 117110 69365 91517 1 117111 69365 91205 1 117112 69366 91205 1 117113 69367 91208 1 117114 69368 91200 1 117115 69369 91205 1 117116 69370 91200 1 117117 69371 91205 1 117118 69372 91208 1 117119 69373 91200 1 117120 69374 91275 1 117121 69375 91528 0 117122 69375 91207 1 117123 69375 91208 1 117124 69376 91200 1 117125 69377 91273 1 117126 69378 91200 1 117127 69379 91533 0 117128 69379 91534 0 117129 69379 91208 1 117130 69380 91275 1 117131 69381 44422 1 117132 69382 91205 1 117133 69383 91200 1 117134 69384 91205 1 117135 69385 91208 1 117136 69386 91208 1 117137 69387 91200 1 117138 69388 91200 1 117139 69389 91200 1 117140 69390 91200 1 117141 69391 91207 1 117142 69392 91205 1 117143 69393 91200 1 117144 69394 91339 1 117145 69394 91200 1 117146 69395 91275 1 117147 69396 91200 1 117148 69397 91200 1 117149 69398 91205 1 117150 69399 44422 1 117151 69399 91200 1 117152 69400 91205 1 117153 69401 91208 1 117154 69402 91205 1 117155 69403 91205 1 117156 69404 91207 1 117157 69405 91208 1 117158 69406 91205 1 117159 69407 91200 1 117160 69408 91208 1 117161 69409 91221 1 117162 69409 91222 1 117163 69410 91270 1 117164 69411 91208 1 117165 69411 91349 1 117166 69412 91207 1 117167 69412 91208 1 117168 69413 44422 1 117169 69413 91293 1 117170 69414 91208 1 117171 69415 91275 1 117172 69416 91207 1 117173 69416 91208 1 117174 69417 91275 1 117175 69418 44422 1 117176 69418 91200 1 117177 69419 91200 1 117178 69420 44422 1 117179 69421 91208 1 117180 69422 91208 1 117181 69422 91235 1 117182 69423 91208 1 117183 69424 91208 1 117184 69425 91205 1 117185 69426 91200 1 117186 69427 91200 1 117187 69428 91200 1 117188 69429 91205 1 117189 69430 91200 1 117190 69431 91273 1 117191 69432 91588 1 117192 69433 91200 1 117193 69434 91200 1 117194 69435 91200 1 117195 69436 91205 1 117196 69437 91208 1 117197 69438 91207 1 117198 69438 91208 1 117199 69439 91208 1 117200 69440 91208 1 117201 69441 91205 1 117202 69442 91205 1 117203 69443 91200 1 117204 69444 91235 1 117205 69445 91200 1 117206 69446 91208 1 117207 69447 91205 1 117208 69448 91208 1 117209 69449 91205 1 117210 69450 91208 1 117211 69451 91205 1 117212 69452 91205 1 117213 69453 91208 1 117214 69454 91200 1 117215 69455 91200 1 117216 69456 91293 1 117217 69457 91200 1 117218 69458 91207 1 117219 69459 91200 1 117220 69460 91207 1 117221 69461 44422 1 117222 69461 91200 1 117223 69462 91221 1 117224 69463 91208 1 117225 69464 91200 1 117226 69465 91200 1 117227 69466 91200 1 117228 69467 91200 1 117229 69468 91208 1 117230 69468 91273 1 117231 69469 91626 1 117232 69470 91628 1 117233 69470 91200 1 117234 69471 91207 1 117235 69471 91273 1 117236 69472 91207 1 117237 69473 91275 1 117238 69474 91200 1 117239 69475 91208 1 117240 69476 91208 1 117241 69477 91200 1 117242 69478 91221 1 117243 69478 91200 1 117244 69479 91638 1 117245 69479 91200 1 117246 69480 91212 1 117247 69481 91205 1 117248 69482 91200 1 117249 69483 91200 1 117250 69484 91352 1 117251 69485 91205 1 117252 69486 91200 1 117253 69487 91208 1 117254 69487 91200 1 117255 69488 91275 1 117256 69489 91207 1 117257 69490 91208 1 117258 69490 91386 1 117259 69491 91200 1 117260 69492 91235 1 117261 69492 91200 1 117262 69493 91653 1 117263 69493 91200 1 117264 69494 91655 1 117265 69495 91208 1 117266 69496 91352 1 117267 69497 91208 1 117268 69498 91207 1 117269 69499 91273 1 117270 69500 91207 1 117271 69501 91200 1 117272 69502 91208 1 117273 69503 91208 1 117274 69503 91349 1 117275 69504 91207 1 117276 69505 91205 1 117277 69506 91208 1 117278 69507 91208 1 117279 69508 91416 1 117280 69508 91221 1 117281 69509 91208 1 117282 69509 91273 1 117283 69510 91416 1 117284 69510 91221 1 117285 69511 91207 1 117286 69511 91208 1 117287 69512 91207 1 117288 69513 91200 1 117289 69514 91676 1 117290 69514 91200 1 117291 69515 91235 1 117292 69516 91208 1 117293 69516 91292 1 117294 69516 91434 1 117295 69517 91205 1 117296 69518 91200 1 117297 69518 91253 1 117298 69519 91212 1 117299 69519 91682 1 117300 69520 91684 1 117301 69520 91685 1 117302 69521 91216 1 117303 69521 91360 1 117304 69522 91229 1 117305 69522 91230 1 117306 69523 91205 1 117307 69524 91200 1 117308 69525 91207 1 117309 69526 91692 1 117310 69527 91200 1 117311 69528 91339 1 117312 69528 91200 1 117313 69529 91200 1 117314 69530 91200 1 117315 69531 91270 1 117316 69532 91230 1 117317 69533 91700 1 117318 69533 91205 1 117319 69534 91702 1 117320 69534 91200 1 117321 69535 91270 1 117322 69536 91207 1 117323 69536 91208 1 117324 69537 91200 1 117325 69538 91270 1 117326 69539 91253 1 117327 69540 91221 1 117328 69540 91709 1 117329 69541 91205 1 117330 69542 91208 1 117331 69542 91273 1 117332 69543 44422 1 117333 69544 91208 1 117334 69545 91370 1 117335 69546 91205 1 117336 69547 91253 1 117337 69548 91230 1 117338 69549 91208 1 117339 69550 91200 1 117340 69551 91293 1 117341 69552 91722 1 117342 69552 91292 1 117343 69553 91208 1 117344 69554 91208 1 117345 69554 91349 1 117346 69555 91200 1 117347 69556 91200 1 117348 69557 91728 0 117349 69557 91370 1 117350 69557 91200 1 117351 69558 91208 1 117352 69559 91216 1 117353 69559 91292 1 117354 69560 91205 1 117355 69561 91208 1 117356 69562 44422 1 117357 69563 91200 1 117358 69563 91253 1 117359 69564 91205 1 117360 69565 91200 1 117361 69566 91208 1 117362 69567 91205 1 117363 69568 91212 1 117364 69569 44422 1 117365 69570 91221 1 117366 69570 91200 1 117367 69571 91275 1 117368 69572 91207 1 117369 69573 44422 1 117370 69573 91205 1 117371 69574 91208 1 117372 69575 91208 1 117373 69576 91273 1 117374 69577 91205 1 117375 69578 91235 1 117376 69579 91751 1 117377 69580 91200 1 117378 69581 91208 1 117379 69582 91200 1 117380 69583 44422 1 117381 69584 91370 1 117382 69585 91200 1 117383 69586 91208 1 117384 69587 91207 1 117385 69588 91339 1 117386 69588 91200 1 117387 69589 91205 1 117388 69590 91253 1 117389 69591 91431 1 117390 69592 91349 1 117391 69593 91208 1 117392 69594 91200 1 117393 69595 91200 1 117394 69596 91200 1 117395 69597 91208 1 117396 69598 91208 1 117397 69599 91208 1 117398 69599 91273 1 117399 69600 91205 1 117400 69601 91208 1 117401 69602 91370 1 117402 69603 91253 1 117403 69604 91200 1 117404 69605 91273 1 117405 69605 91628 1 117406 69606 91273 1 117407 69607 91208 1 117408 69608 91205 1 117409 69609 91221 1 117410 69610 91275 1 117411 69611 91200 1 117412 69612 91208 1 117413 69613 91200 1 117414 69614 91200 1 117415 69615 91273 1 117416 69616 91284 1 117417 69616 91216 1 117418 69617 91205 1 117419 69618 91205 1 117420 69619 91200 1 117421 69620 91200 1 117422 69621 91205 1 117423 69622 91205 1 117424 69623 91207 1 117425 69623 91208 1 117426 69624 91200 1 117427 69625 91205 1 117428 69626 91205 1 117429 69627 91208 1 117430 69628 91205 1 117431 69629 91802 1 117432 69630 91221 1 117433 69630 91222 1 117434 69631 91222 1 117435 69632 91208 1 117436 69633 91807 0 117437 69633 91808 0 117438 69633 91809 0 117439 69633 91810 0 117440 69633 91811 0 117441 69633 91812 0 117442 69633 91813 0 117443 69633 91814 0 117444 69633 91815 0 117445 69633 91816 0 117446 69633 91817 0 117447 69633 91818 0 117448 69633 91819 0 117449 69633 91820 0 117450 69633 91821 0 117451 69633 91822 0 117452 69633 91823 0 117453 69633 91200 1 117454 69634 91200 1 117455 69635 91208 1 117456 69636 91200 1 117457 69637 91208 1 117458 69638 91208 1 117459 69639 91208 1 117460 69640 91207 1 117461 69641 91832 0 117462 69641 91205 1 117463 69642 91200 1 117464 69643 91208 1 117465 69644 91200 1 117466 69645 91270 1 117467 69646 91230 1 117468 69647 91205 1 117469 69648 91208 1 117470 69648 91273 1 117471 69649 44422 1 117472 69650 91208 1 117473 69651 91200 1 117474 69651 91230 1 117475 69652 91207 1 117476 69653 91208 1 117477 69654 91846 1 117478 69655 91208 1 117479 69656 91205 1 117480 69657 91200 1 117481 69658 91208 1 117482 69659 91210 1 117483 69660 91200 1 117484 69661 91200 1 117485 69662 91207 1 117486 69663 91207 1 117487 69664 91200 1 117488 69665 91208 1 117489 69666 91208 1 117490 69666 91273 1 117491 69667 91434 1 117492 69668 91200 1 117493 69669 91205 1 117494 69670 91205 1 117495 69671 91208 1 117496 69672 91275 1 117497 69672 91208 1 117498 69673 91866 1 117499 69674 91205 1 117500 69675 91200 1 117501 69675 91253 1 117502 69676 91221 1 117503 69677 91208 1 117504 69678 91360 1 117505 69678 91200 1 117506 69679 91205 1 117507 69680 91205 1 117508 69681 91205 1 117509 69682 91205 1 117510 69683 91200 1 117511 69684 44422 1 117512 69685 91208 1 117513 69685 91246 1 117514 69686 91205 1 117515 69687 91336 1 117516 69688 91273 1 117517 69688 91200 1 117518 69689 91352 1 117519 69690 91200 1 117520 69691 91207 1 117521 69692 91200 1 117522 69693 91216 1 117523 69694 91200 1 117524 69695 91205 1 117525 69696 91208 1 117526 69697 91208 1 117527 69698 91221 1 117528 69698 91212 1 117529 69699 91200 1 117530 69700 91207 1 117531 69700 91230 1 117532 69701 91200 1 117533 69702 44422 1 117534 69703 91205 1 117535 69704 91207 1 117536 69705 91208 1 117537 69706 91275 1 117538 69707 91205 1 117539 69708 91902 0 117540 69708 91200 1 117541 69709 91904 0 117542 69709 91905 0 117543 69709 91906 1 117544 69710 91208 1 117545 69711 91208 1 117546 69712 91200 1 117547 69713 91205 1 117548 69714 91200 1 117549 69715 91205 1 117550 69716 91200 1 117551 69717 91205 1 117552 69718 91208 1 117553 69719 91221 1 117554 69720 91205 1 117555 69721 91253 1 117556 69722 91920 0 117557 69722 91262 1 117558 69723 91208 1 117559 69724 91208 1 117560 69725 91200 1 117561 69726 91925 1 117562 69727 91292 1 117563 69727 91200 1 117564 69728 91205 1 117565 69729 91208 1 117566 69730 91200 1 117567 69731 91208 1 117568 69731 91205 1 117569 69732 91932 0 117570 69732 44422 1 117571 69732 91200 1 117572 69733 91200 1 117573 69734 91205 1 117574 69735 91207 1 117575 69736 91205 1 117576 69737 44422 1 117577 69737 91938 1 117578 69738 91200 1 117579 69739 91207 1 117580 69740 91221 1 117581 69740 91222 1 117582 69741 91200 1 117583 69742 91944 0 117584 69742 91336 1 117585 69743 91205 1 117586 69744 91205 1 117587 69745 91205 1 117588 69746 91207 1 117589 69747 91200 1 117590 69747 91253 1 117591 69748 91207 1 117592 69749 91200 1 117593 69750 91208 1 117594 69750 91273 1 117595 69751 91200 1 117596 69752 91253 1 117597 69753 91208 1 117598 69754 91207 1 117599 69755 91200 1 117600 69756 91208 1 117601 69756 91349 1 117602 69757 91275 1 117603 69758 91208 1 117604 69759 91208 1 117605 69760 44422 1 117606 69761 91208 1 117607 69762 44422 1 117608 69763 44422 1 117609 69764 91221 1 117610 69765 91200 1 117611 69766 91205 1 117612 69767 91275 1 117613 69768 91205 1 117614 69769 91200 1 117615 69770 44422 1 117616 69771 91208 1 117617 69772 91200 1 117618 69773 91221 1 117619 69773 91200 1 117620 69774 91200 1 117621 69775 91200 1 117622 69776 91208 1 117623 69777 91208 1 117624 69778 91477 1 117625 69778 91200 1 117626 69779 91200 1 117627 69780 91802 1 117628 69781 91205 1 117629 69782 44422 1 117630 69783 91207 1 117631 69784 91208 1 117632 69785 91270 1 117633 69786 91200 1 117634 69787 91200 1 117635 69788 91205 1 117636 69789 91208 1 117637 69790 91993 0 117638 69790 44422 1 117639 69791 91205 1 117640 69792 91205 1 117641 69793 91200 1 117642 69794 91200 1 117643 69795 91200 1 117644 69796 91352 1 117645 69796 92000 1 117646 69797 91200 1 117647 69798 91200 1 117648 69799 91205 1 117649 69800 91200 1 117650 69801 91208 1 117651 69802 91205 1 117652 69802 91253 1 117653 69803 91320 1 117654 69804 91208 1 117655 69805 91200 1 117656 69806 92011 1 117657 69807 91207 1 117658 69807 91208 1 117659 69808 91208 1 117660 69809 91205 1 117661 69810 92016 0 117662 69810 91208 1 117663 69811 91200 1 117664 69812 91216 1 117665 69813 92020 0 117666 69813 92021 0 117667 69813 92022 0 117668 69813 92023 0 117669 69813 92024 0 117670 69813 92025 0 117671 69813 92026 0 117672 69813 92027 0 117673 69813 92028 0 117674 69813 92029 0 117675 69813 92030 0 117676 69813 92031 0 117677 69813 92032 0 117678 69813 91205 1 117679 69814 91205 1 117680 69815 91208 1 117681 69816 91200 1 117682 69817 92037 1 117683 69818 91205 1 117684 69819 91205 1 117685 69820 91205 1 117686 69821 91230 1 117687 69822 91208 1 117688 69823 91235 1 117689 69824 91208 1 117690 69824 91235 1 117691 69825 44422 1 117692 69826 91208 1 117693 69826 91273 1 117694 69827 91200 1 117695 69828 91222 1 117696 69829 92050 1 117697 69829 92051 1 117698 69830 91208 1 117699 69831 92054 0 117700 69831 91200 1 117701 69832 44422 1 117702 69833 91200 1 117703 69834 91349 1 117704 69835 91200 1 117705 69836 91208 1 117706 69837 91200 1 117707 69838 91205 1 117708 69839 91207 1 117709 69840 91207 1 117710 69841 91628 1 117711 69842 92066 1 117712 69843 92068 0 117713 69843 91360 1 117714 69843 91200 1 117715 69844 91200 1 117716 69845 91221 1 117717 69845 91222 1 117718 69846 91200 1 117719 69847 91253 1 117720 69848 91200 1 117721 69849 91200 1 117722 69850 91208 1 117723 69851 91208 1 117724 69851 91200 1 117725 69852 91200 1 117726 69853 91205 1 117727 69854 92080 1 117728 69854 91200 1 117729 69855 91207 1 117730 69855 91299 1 117731 69856 91360 1 117732 69856 91200 1 117733 69857 91208 1 117734 69858 91200 1 117735 69859 91200 1 117736 69860 91216 1 117737 69860 92087 1 117738 69860 92088 1 117739 69861 91216 1 117740 69861 91292 1 117741 69862 91925 1 117742 69863 91449 1 117743 69864 91205 1 117744 69865 91200 1 117745 69866 91205 1 117746 69867 91207 1 117747 69867 91208 1 117748 69867 91230 1 117749 69868 91200 1 117750 69869 91200 1 117751 69870 91205 1 117752 69871 91273 1 117753 69871 91200 1 117754 69872 91208 1 117755 69873 92102 1 117756 69874 91235 1 117757 69875 92105 1 117758 69876 91222 1 117759 69877 91416 1 117760 69877 91221 1 117761 69878 91200 1 117762 69879 91208 1 117763 69880 91205 1 117764 69881 91207 1 117765 69882 91273 1 117766 69883 91208 1 117767 69884 91205 1 117768 69885 91208 1 117769 69886 91208 1 117770 69887 91205 1 117771 69887 91253 1 117772 69888 91205 1 117773 69889 91200 1 117774 69890 91200 1 117775 69891 91222 1 117776 69892 91208 1 117777 69893 91208 1 117778 69895 91200 1 117779 69896 91275 1 117780 69897 91208 1 117781 69898 91200 1 117782 69899 44422 1 117783 69899 92130 1 117784 69900 92132 1 117785 69900 91450 1 117786 69901 91222 1 117787 69902 91200 1 117788 69903 91320 1 117789 69904 91200 1 117790 69905 91208 1 117791 69906 91208 1 117792 69907 91221 1 117793 69907 91222 1 117794 69907 91200 1 117795 69908 91200 1 117796 69909 44422 1 117797 69909 91200 1 117798 69910 91208 1 117799 69911 92144 0 117800 69911 44422 1 117801 69912 91205 1 117802 69913 91208 1 117803 69914 91352 1 117804 69914 92000 1 117805 69915 91205 1 117806 69916 91200 1 117807 69917 91200 1 117808 69918 91200 1 117809 69919 91205 1 117810 69920 92154 1 117811 69921 91208 1 117812 69922 91200 1 117813 69923 91273 1 117814 69924 91208 1 117815 69925 91200 1 117816 69926 91200 1 117817 69927 91200 1 117818 69928 91208 1 117819 69929 91200 1 117820 69930 91235 1 117821 69930 91200 1 117822 69931 91207 1 117823 69932 91208 1 117824 69933 92168 0 117825 69933 91200 1 117826 69934 44422 1 117827 69935 91200 1 117828 69936 91208 1 117829 69937 91208 1 117830 69938 91273 1 117831 69938 91370 1 117832 69939 91200 1 117833 69940 91208 1 117834 69940 91349 1 117835 69941 91208 1 117836 69942 91208 1 117837 69943 91205 1 117838 69944 91205 1 117839 69945 91207 1 117840 69945 91208 1 117841 69946 92182 0 117842 69946 91270 1 117843 69947 91866 1 117844 69947 91200 1 117845 69948 91205 1 117846 69949 91205 1 117847 69950 91200 1 117848 69951 91208 1 117849 69952 91200 1 117850 69953 91207 1 117851 69954 91200 1 117852 69955 92192 1 117853 69956 92194 1 117854 69956 91200 1 117855 69957 92196 1 117856 69958 91349 1 117857 69959 91208 1 117858 69960 91205 1 117859 69961 91205 1 117860 69962 91200 1 117861 69963 91200 1 117862 69964 91200 1 117863 69965 91275 1 117864 69966 91235 1 117865 69966 91200 1 117866 69967 92207 1 117867 69968 91208 1 117868 69969 91200 1 117869 69970 92211 1 117870 69971 91370 1 117871 69972 91256 1 117872 69972 91205 1 117873 69973 91200 1 117874 69974 91205 1 117875 69975 91208 1 117876 69976 91221 1 117877 69977 91200 1 117878 69978 92220 1 117879 69979 91205 1 117880 69980 91200 1 117881 69981 91205 1 117882 69982 91208 1 117883 69983 92226 0 117884 69983 92227 1 117885 69984 91205 1 117886 69985 91200 1 117887 69986 91200 1 117888 69987 91208 1 117889 69988 91200 1 117890 69989 91200 1 117891 69990 91200 1 117892 69991 91205 1 117893 69992 91253 1 117894 69993 91205 1 117895 69994 91200 1 117896 69995 91205 1 117897 69996 91200 1 117898 69997 44422 1 117899 69998 91275 1 117900 69999 92244 1 117901 69999 91253 1 117902 70000 91222 1 117903 70000 91200 1 117904 70001 46628 1 117905 70002 91208 1 117906 70003 91222 1 117907 70004 91200 1 117908 70004 91253 1 117909 70005 91205 1 117910 70006 91200 1 117911 70007 91229 1 117912 70007 91230 1 117913 70008 91253 1 117914 70009 91207 1 117915 70010 91207 1 117916 70011 91275 1 117917 70012 91208 1 117918 70013 91200 1 117919 70014 91205 1 117920 70014 91253 1 117921 70015 91205 1 117922 70016 91208 1 117923 70017 91207 1 117924 70017 91208 1 117925 70018 92264 0 117926 70018 92265 0 117927 70018 91205 1 117928 70019 91207 1 117929 70020 91200 1 117930 70021 44422 1 117931 70022 91205 1 117932 70023 92271 1 117933 70023 91450 1 117934 70024 91208 1 117935 70025 91588 1 117936 70026 91208 1 117937 70027 91208 1 117938 70028 91200 1 117939 70029 91273 1 117940 70030 92279 1 117941 70030 91200 1 117942 70031 91205 1 117943 70032 91349 1 117944 70033 91588 1 117945 70034 91275 1 117946 70035 91208 1 117947 70036 91200 1 117948 70037 91431 1 117949 70038 91200 1 117950 70039 91205 1 117951 70040 91253 1 117952 70041 91200 1 117953 70042 91208 1 117954 70043 91200 1 117955 70044 91212 1 117956 70045 91208 1 117957 70046 91200 1 117958 70047 91200 1 117959 70048 91221 1 117960 70048 91222 1 117961 70049 91221 1 117962 70049 91293 1 117963 70050 91205 1 117964 70051 91208 1 117965 70052 91200 1 117966 70053 91208 1 117967 70054 91208 1 117968 70055 91205 1 117969 70056 91208 1 117970 70056 91200 1 117971 70057 91222 1 117972 70057 91200 1 117973 70058 91208 1 117974 70059 91207 1 117975 70059 91273 1 117976 70060 91208 1 117977 70060 91273 1 117978 70061 50283 1 117979 70061 91200 1 117980 70062 91200 1 117981 70063 91207 1 117982 70063 91208 1 117983 70064 91200 1 117984 70065 91208 1 117985 70066 91200 1 117986 70067 91200 1 117987 70068 91208 1 117988 70069 91205 1 117989 70070 91253 1 117990 70071 91200 1 117991 70072 91866 1 117992 70072 91200 1 117993 70073 91221 1 117994 70073 91420 1 117995 70074 91222 1 117996 70075 91200 1 117997 70076 91205 1 117998 70077 91208 1 117999 70078 91207 1 118000 70079 91205 1 118001 70080 91222 1 118002 70080 91200 1 118003 70081 91200 1 118004 70081 91253 1 118005 70082 92332 1 118006 70083 91208 1 118007 70083 91292 1 118008 70083 91434 1 118009 70084 91273 1 118010 70085 91208 1 118011 70085 91292 1 118012 70085 91434 1 118013 70086 91208 1 118014 70087 91205 1 118015 70088 91200 1 118016 70089 91205 1 118017 70090 91207 1 118018 70091 91207 1 118019 70092 91200 1 118020 70093 91207 1 118021 70094 91235 1 118022 70094 91200 1 118023 70095 91352 1 118024 70096 91205 1 118025 70097 91205 1 118026 70098 91275 1 118027 70099 91208 1 118028 70100 91207 1 118029 70101 91200 1 118030 70102 91208 1 118031 70103 91205 1 118032 70104 91221 1 118033 70105 91208 1 118034 70106 91208 1 118035 70106 91273 1 118036 70107 91349 1 118037 70108 91207 1 118038 70109 91207 1 118039 70110 91200 1 118040 70111 91205 1 118041 70112 91273 1 118042 70113 91200 1 118043 70114 91200 1 118044 70115 91208 1 118045 70116 91200 1 118046 70117 91253 1 118047 70118 91208 1 118048 70118 91297 1 118049 70119 91208 1 118050 70120 91200 1 118051 70120 91253 1 118052 70121 91200 1 118053 70122 91253 1 118054 70123 91320 1 118055 70124 91207 1 118056 70124 91208 1 118057 70124 91230 1 118058 70125 91200 1 118059 70126 91200 1 118060 70127 91200 1 118061 70128 44422 1 118062 70129 91216 1 118063 70130 44422 1 118064 70131 91205 1 118065 70132 91208 1 118066 70133 92384 1 118067 70133 91205 1 118068 70134 91207 1 118069 70135 91628 1 118070 70136 91273 1 118071 70137 91221 1 118072 70138 91200 1 118073 70139 91205 1 118074 70140 91205 1 118075 70141 92393 0 118076 70141 92394 0 118077 70141 91208 1 118078 70141 91253 1 118079 70142 91208 1 118080 70143 91200 1 118081 70144 91200 1 118082 70145 91208 1 118083 70145 91273 1 118084 70146 44422 1 118085 70147 92401 0 118086 70147 91235 1 118087 70147 91200 1 118088 70148 91205 1 118089 70149 91200 1 118090 70150 92066 1 118091 70151 91208 1 118092 70152 91200 1 118093 70153 91208 1 118094 70154 91208 1 118095 70155 91200 1 118096 70156 91200 1 118097 70157 91208 1 118098 70158 91205 1 118099 70159 91208 1 118100 70160 91208 1 118101 70161 91205 1 118102 70162 91205 1 118103 70163 91205 1 118104 70164 91205 1 118105 70164 91320 1 118106 70165 91208 1 118107 70166 92421 0 118108 70166 91200 1 118109 70167 91205 1 118110 70168 92424 0 118111 70168 91208 1 118112 70168 91273 1 118113 70169 91208 1 118114 70170 91208 1 118115 70171 91205 1 118116 70172 91207 1 118117 70172 91216 1 118118 70173 91208 1 118119 70174 91208 1 118120 70175 91200 1 118121 70176 91216 1 118122 70177 91208 1 118123 70178 91200 1 118124 70179 91200 1 118125 70180 91205 1 118126 70181 91208 1 118127 70182 91200 1 118128 70183 91200 1 118129 70184 91200 1 118130 70185 91221 1 118131 70186 91253 1 118132 70187 91275 1 118133 70188 91207 1 118134 70189 91200 1 118135 70190 91208 1 118136 70191 91273 1 118137 70192 91200 1 118138 70193 91208 1 118139 70194 91208 1 118140 70194 91273 1 118141 70195 91200 1 118142 70196 92453 1 118143 70197 91200 1 118144 70198 91270 1 118145 70199 91273 1 118146 70200 91200 1 118147 70201 91200 1 118148 70202 91205 1 118149 70203 91200 1 118150 70204 91200 1 118151 70205 91208 1 118152 70205 91273 1 118153 70206 91221 1 118154 70206 91293 1 118155 70206 91200 1 118156 70207 91221 1 118157 70207 91200 1 118158 70208 91216 1 118159 70208 91638 1 118160 70209 91200 1 118161 70210 91200 1 118162 70211 91200 1 118163 70212 91200 1 118164 70213 91200 1 118165 70214 91200 1 118166 70215 91284 1 118167 70216 91207 1 118168 70217 91253 1 118169 70218 91200 1 118170 70219 91207 1 118171 70220 91222 1 118172 70221 91200 1 118173 70222 91293 1 118174 70223 91205 1 118175 70224 91200 1 118176 70225 44422 1 118177 70226 91205 1 118178 70227 91205 1 118179 70228 91200 1 118180 70229 91370 1 118181 70230 91207 1 118182 70231 91205 1 118183 70232 91200 1 118184 70233 44422 1 118185 70234 91200 1 118186 70235 92493 0 118187 70235 91205 1 118188 70236 91208 1 118189 70237 91352 1 118190 70238 91200 1 118191 70239 91200 1 118192 70239 91253 1 118193 70240 91200 1 118194 70241 91360 1 118195 70242 91205 1 118196 70243 91208 1 118197 70244 50283 1 118198 70244 91200 1 118199 70245 91205 1 118200 70246 92505 1 118201 70247 91235 1 118202 70247 91200 1 118203 70248 91221 1 118204 70249 92066 1 118205 70250 91200 1 118206 70251 91235 1 118207 70252 91208 1 118208 70253 44422 1 118209 70254 91205 1 118210 70254 91253 1 118211 70255 91200 1 118212 70256 91293 1 118213 70257 92517 1 118214 70258 91200 1 118215 70259 91207 1 118216 70260 91200 1 118217 70261 91208 1 118218 70261 91246 1 118219 70262 91216 1 118220 70263 44422 1 118221 70264 91205 1 118222 70265 91208 1 118223 70266 91253 1 118224 70267 91207 1 118225 70268 92154 1 118226 70269 91200 1 118227 70270 91205 1 118228 70271 91221 1 118229 70272 91205 1 118230 70273 91200 1 118231 70274 91200 1 118232 70275 91205 1 118233 70276 91200 1 118234 70277 91200 1 118235 70278 91222 1 118236 70279 91200 1 118237 70280 91208 1 118238 70281 91208 1 118239 70282 91275 1 118240 70283 91270 1 118241 70284 91230 1 118242 70285 91906 1 118243 70286 91207 1 118244 70286 91230 1 118245 70287 91275 1 118246 70288 91235 1 118247 70289 44422 1 118248 70290 91208 1 118249 70291 91208 1 118250 70292 91200 1 118251 70293 91925 1 118252 70294 91205 1 118253 70295 92556 0 118254 70295 91208 1 118255 70296 91235 1 118256 70296 91200 1 118257 70297 91207 1 118258 70297 91230 1 118259 70298 91205 1 118260 70299 91205 1 118261 70300 91200 1 118262 70301 91208 1 118263 70301 91273 1 118264 70302 91200 1 118265 70303 91200 1 118266 70304 91352 1 118267 70305 91208 1 118268 70306 91205 1 118269 70307 91205 1 118270 70308 91200 1 118271 70309 91205 1 118272 70310 91208 1 118273 70311 91200 1 118274 70312 91200 1 118275 70313 91200 1 118276 70314 91208 1 118277 70315 91205 1 118278 70316 91207 1 118279 70317 91205 1 118280 70318 91205 1 118281 70319 91200 1 118282 70320 91200 1 118283 70321 91205 1 118284 70322 92584 1 118285 70322 92585 1 118286 70322 91200 1 118287 70323 91208 1 118288 70324 91208 1 118289 70325 91208 1 118290 70326 91200 1 118291 70327 91200 1 118292 70328 92592 0 118293 70328 92593 0 118294 70328 91208 1 118295 70329 91200 1 118296 70330 91208 1 118297 70331 91208 1 118298 70332 91208 1 118299 70332 91273 1 118300 70333 91205 1 118301 70334 91292 1 118302 70335 91200 1 118303 70336 91370 1 118304 70336 91200 1 118305 70337 91273 1 118306 70337 91628 1 118307 70338 91208 1 118308 70338 91370 1 118309 70338 91628 1 118310 70339 91205 1 118311 70340 91207 1 118312 70341 91200 1 118313 70342 92608 0 118314 70342 91207 1 118315 70343 92610 1 118316 70343 91262 1 118317 70344 92612 0 118318 70344 44422 1 118319 70345 91200 1 118320 70346 91205 1 118321 70347 91352 1 118322 70347 91205 1 118323 70348 91208 1 118324 70348 91370 1 118325 70349 91205 1 118326 70350 91208 1 118327 70351 91273 1 118328 70352 91275 1 118329 70353 91208 1 118330 70354 91208 1 118331 70355 91207 1 118332 70356 91275 1 118333 70357 91200 1 118334 70358 91207 1 118335 70359 91253 1 118336 70360 91253 1 118337 70361 91200 1 118338 70362 91208 1 118339 70363 91208 1 118340 70363 91349 1 118341 70364 91221 1 118342 70365 91216 1 118343 70366 92635 0 118344 70366 91208 1 118345 70367 91200 1 118346 70368 91200 1 118347 70369 91205 1 118348 70370 91200 1 118349 70371 91221 1 118350 70372 91208 1 118351 70373 91709 1 118352 70374 91200 1 118353 70376 91208 1 118354 70377 91200 1 118355 70378 91352 1 118356 70379 91352 1 118357 70379 92649 1 118358 70380 91270 1 118359 70381 92652 0 118360 70381 91200 1 118361 70381 92653 1 118362 70382 91352 1 118363 70383 92656 1 118364 70384 91352 1 118365 70385 91352 1 118366 70386 91352 1 118367 70386 92649 1 118368 70387 91200 1 118369 70388 91352 1 118370 70389 91352 1 118371 70390 91270 1 118372 70391 91253 1 118373 70392 91253 1 118374 70393 91253 1 118375 70394 91352 1 118376 70395 91352 1 118377 70396 91253 1 118378 70397 92656 1 118379 70398 91270 1 118380 70399 91270 1 118381 70400 91253 1 118382 70401 92656 1 118383 70402 91352 1 118384 70403 91352 1 118385 70403 91235 1 118386 70404 91352 1 118387 70405 92679 0 118388 70405 91352 1 118389 70406 92656 1 118390 70407 91352 1 118391 70408 92683 1 118392 70409 91270 1 118393 70410 91270 1 118394 70411 91205 1 118395 70412 91253 1 118396 70413 91352 1 118397 70414 91208 1 118398 70415 91352 1 118399 70415 92691 1 118400 70416 91253 1 118401 70417 91253 1 118402 70418 91270 1 118403 70419 91253 1 118404 70420 91253 1 118405 70421 91200 1 118406 70422 91208 1 118407 70423 91208 1 118408 70424 91352 1 118409 70425 91352 1 118410 70426 91208 1 118411 70427 91352 1 118412 70427 92649 1 118413 70428 91208 1 118414 70429 91352 1 118415 70430 91270 1 118416 70431 92656 1 118417 70432 91352 1 118418 70433 91200 1 118419 70434 91352 1 118420 70435 91200 1 118421 70436 91270 1 118422 70437 91208 1 118423 70438 91352 1 118424 70439 91352 1 118425 70440 91200 1 118426 70441 91270 1 118427 70442 91352 1 118428 70442 92649 1 118429 70443 92656 1 118430 70444 92721 1 118431 70445 91253 1 118432 70446 91352 1 118433 70447 91352 1 118434 70447 92649 1 118435 70448 91270 1 118436 70449 91208 1 118437 70450 91200 1 118438 70451 91200 1 118439 70452 91253 1 118440 70453 92656 1 118441 70454 91352 1 118442 70455 91352 1 118443 70456 91352 1 118444 70457 91352 1 118445 70458 91352 1 118446 70459 91352 1 118447 70460 91352 1 118448 70461 91352 1 118449 70462 91352 1 118450 70463 91208 1 118451 70464 91352 1 118452 70464 91270 1 118453 70465 91253 1 118454 70466 91253 1 118455 70467 91352 1 118456 70468 91200 1 118457 70469 91352 1 118458 70469 92656 1 118459 70470 91352 1 118460 70470 92649 1 118461 70471 91352 1 118462 70472 91352 1 118463 70473 91270 1 118464 70474 91253 1 118465 70475 91352 1 118466 70476 91200 1 118467 70477 91253 1 118468 70478 91200 1 118469 70479 91200 1 118470 70480 91352 1 118471 70481 91253 1 118472 70482 91253 1 118473 70483 91352 1 118474 70484 91253 1 118475 70485 92656 1 118476 70486 91352 1 118477 70487 91253 1 118478 70488 91253 1 118479 70489 91253 1 118480 70490 91253 1 118481 70491 91200 1 118482 70492 91352 1 118483 70492 92649 1 118484 70493 91702 1 118485 70494 91208 1 118486 70495 91352 1 118487 70496 91352 1 118488 70497 91253 1 118489 70498 91352 1 118490 70498 92649 1 118491 70499 91200 1 118492 70500 92721 1 118493 70500 91253 1 118494 70501 91253 1 118495 70502 91352 1 118496 70502 92691 1 118497 70503 91253 1 118498 70504 91208 1 118499 70505 91352 1 118500 70506 91352 1 118501 70507 91352 1 118502 70508 91352 1 118503 70508 92649 1 118504 70509 91208 1 118505 70510 91208 1 118506 70511 91200 1 118507 70512 91208 1 118508 70513 91208 1 118509 70514 91253 1 118510 70515 91200 1 118511 70516 92656 1 118512 70518 91352 1 118513 70519 91253 1 118514 70520 91253 1 118515 70521 91200 1 118516 70522 91253 1 118517 70523 91200 1 118518 70524 91253 1 118519 70525 91352 1 118520 70525 92691 1 118521 70526 91200 1 118522 70527 91352 1 118523 70528 91352 1 118524 70529 91253 1 118525 70530 92721 1 118526 70530 91253 1 118527 70532 91275 1 118528 70533 91352 1 118529 70534 91352 1 118530 70535 92813 0 118531 70535 91352 1 118532 70535 92649 1 118533 70536 91352 1 118534 70537 91352 1 118535 70538 91352 1 118536 70538 92649 1 118537 70539 91352 1 118538 70540 92774 0 118539 70540 92819 1 118540 70541 91352 1 118541 70542 91253 1 118542 70543 91275 1 118543 70544 91253 1 118544 70545 91208 1 118545 70546 91270 1 118546 70547 92649 1 118547 70548 91200 1 118548 70549 91253 1 118549 70550 91200 1 118550 70551 91352 1 118551 70552 91270 1 118552 70553 91352 1 118553 70554 91253 1 118554 70555 91352 1 118555 70556 91200 1 118556 70557 91270 1 118557 70558 91352 1 118558 70559 91253 1 118559 70560 91352 1 118560 70561 91352 1 118561 70562 91352 1 118562 70562 92649 1 118563 70563 91352 1 118564 70563 92649 1 118565 70564 91352 1 118566 70565 91200 1 118567 70566 91200 1 118568 70567 91352 1 118569 70568 91352 1 118570 70569 91253 1 118571 70570 91352 1 118572 70571 91253 1 118573 70572 91352 1 118574 70573 91352 1 118575 70574 92854 1 118576 70575 91352 1 118577 70575 92649 1 118578 70576 91352 1 118579 70577 91208 1 118580 70578 92656 1 118581 70579 91352 1 118582 70580 91253 1 118583 70581 91352 1 118584 70581 92649 1 118585 70582 91270 1 118586 70583 92864 0 118587 70583 92865 0 118588 70583 91253 1 118589 70584 92656 1 118590 70585 91352 1 118591 70586 91200 1 118592 70587 91253 1 118593 70588 91200 1 118594 70589 91352 1 118595 70590 91275 1 118596 70591 91352 1 118597 70592 91352 1 118598 70593 91702 1 118599 70594 91352 1 118600 70595 91352 1 118601 70596 91352 1 118602 70597 91352 1 118603 70598 91200 1 118604 70599 91200 1 118605 70600 91352 1 118606 70600 92649 1 118607 70601 91352 1 118608 70602 91200 1 118609 70603 91200 1 118610 70604 91253 1 118611 70605 91270 1 118612 70606 91352 1 118613 70607 92656 1 118614 70608 91352 1 118615 70608 92649 1 118616 70609 91270 1 118617 70610 91200 1 118618 70611 91352 1 118619 70612 92653 1 118620 70613 92656 1 118621 70614 91275 1 118622 70615 91352 1 118623 70616 92899 0 118624 70616 91253 1 118625 70617 91253 1 118626 70618 91200 1 118627 70619 91270 1 118628 70620 91352 1 118629 70621 91253 1 118630 70622 91352 1 118631 70623 91270 1 118632 70624 91352 1 118633 70625 91352 1 118634 70626 91352 1 118635 70627 91208 1 118636 70628 91352 1 118637 70629 91253 1 118638 70630 91352 1 118639 70631 92656 1 118640 70632 91208 1 118641 70633 91352 1 118642 70634 91352 1 118643 70635 91253 1 118644 70636 91270 1 118645 70637 92656 1 118646 70638 92922 0 118647 70638 91352 1 118648 70638 92649 1 118649 70639 91352 1 118650 70639 92656 1 118651 70640 91270 1 118652 70641 91200 1 118653 70642 91200 1 118654 70643 91275 1 118655 70644 91352 1 118656 70645 91253 1 118657 70646 91352 1 118658 70646 92649 1 118659 70647 91253 1 118660 70648 91352 1 118661 70649 92934 0 118662 70649 91253 1 118663 70650 92936 0 118664 70650 91253 1 118665 70651 91352 1 118666 70652 91208 1 118667 70653 91253 1 118668 70654 91200 1 118669 70655 92656 1 118670 70656 91352 1 118671 70657 91352 1 118672 70657 92656 1 118673 70658 91352 1 120993 74307 97484 1 120994 74307 69853 1 120995 74307 97485 1 120996 74308 97487 1 120997 74309 97487 1 120998 74310 97490 1 120999 74311 97487 1 121000 74312 97487 1 121001 74313 97487 1 121002 74315 97487 1 121003 74316 97487 1 121004 74317 97498 1 121005 74317 97487 1 121006 74318 97487 1 121007 74319 97501 1 121008 74320 97503 1 121009 74321 97487 1 121010 74322 97506 1 121011 74324 97509 1 121012 74326 97512 0 121013 74326 97513 1 121014 74326 97514 1 121015 74327 97516 1 121016 74328 97487 1 121017 74329 97487 1 121018 74330 97520 1 121019 74331 97503 1 121020 74332 97487 1 121021 74333 97503 1 121022 74334 67233 1 121023 74334 97487 1 121024 74335 97484 1 121025 74336 97503 1 121026 74337 97487 1 121027 74338 97487 1 121028 74339 97487 1 121029 74340 97487 1 121030 74341 97487 1 121031 74343 97534 1 121032 74344 97498 1 121033 74344 97487 1 121034 74347 97487 1 121035 74348 97487 1 121036 74349 97487 1 121037 74350 97487 1 121038 74351 97534 1 121039 74352 97487 1 121040 74353 97487 1 121041 74354 97487 1 121042 74355 97487 1 121043 74356 97548 0 121044 74356 97549 0 121045 74356 97520 1 121046 74358 97552 0 121047 74358 97513 1 121048 74358 97553 1 121049 74359 97555 1 121050 74360 97557 1 121051 74363 97487 1 121052 74364 97487 1 121053 74365 97563 1 121054 74366 97487 1 121055 74369 97568 1 121056 74371 97487 1 121057 74372 97572 1 121058 74372 67233 1 121059 74373 97487 1 121060 74374 97557 1 121061 74376 97487 1 121062 74377 97487 1 121063 74378 97487 1 121064 74379 97487 1 121065 74380 97487 1 121066 74381 97487 1 121067 74382 97583 1 121068 74383 97585 1 121069 74385 97555 1 121070 74385 97588 1 121071 74385 97487 1 121072 74386 97503 1 121073 74387 97487 1 121074 74388 97557 1 121075 74390 97594 1 121076 74391 97596 1 121077 74392 97487 1 121078 74393 97599 1 121079 74394 97601 0 121080 74394 97513 1 121081 74394 97514 1 121082 74395 97487 1 121083 74396 97487 1 121084 74397 97484 1 121085 74398 97606 1 121086 74399 97487 1 121087 74400 97513 1 121088 74401 97487 1 121089 74402 97487 1 121090 74404 97534 1 121091 74405 97487 1 121092 74406 97487 1 121093 74407 97484 1 121094 74408 97557 1 121095 74409 97618 1 121096 74410 97503 1 121097 74412 97588 1 121098 74413 97623 1 121099 74413 97624 1 121100 74414 97626 1 121101 74415 97487 1 121102 74416 97520 1 121103 74419 97487 1 121104 74420 97487 1 121105 74421 97634 1 121106 74422 97557 1 121107 74423 97487 1 121108 74425 97487 1 121109 74426 97640 1 121110 74427 97642 1 121111 74428 97644 0 121112 74428 97513 1 121113 74430 97487 1 121114 74431 97487 1 121115 74432 97649 0 121116 74432 97513 1 121117 74432 97650 1 121118 74433 97652 1 121119 74434 97654 0 121120 74434 97655 0 121121 74434 97656 0 121122 74434 97513 1 121123 74435 97487 1 121124 74436 97659 0 121125 74436 97660 1 121126 74437 97487 1 121127 74438 97487 1 121128 74439 97503 1 121129 74440 97665 1 121130 74441 97667 1 121131 74442 97669 0 121132 74442 97513 1 121133 74442 97670 1 121134 74444 97673 1 121135 74448 97487 1 121136 74449 97487 1 121137 74450 97487 1 121138 74451 97487 1 121139 74453 97683 0 121140 74453 97684 1 121141 74453 97685 1 121142 74455 97688 1 121143 74457 97691 0 121144 74457 97513 1 121145 74457 97553 1 121146 74458 97693 0 121147 74458 97513 1 121148 74459 97487 1 121149 74460 97696 0 121150 74460 97513 1 121151 74460 97514 1 121152 74461 97487 1 121153 74462 97699 1 121154 74463 97557 1 121155 74464 97557 1 121156 74466 97487 1 121157 74467 97487 1 121158 74468 97706 1 121159 74470 97520 1 121160 74471 97710 1 121161 74472 97534 1 121162 74473 97520 1 121163 74474 97487 1 121164 74475 97487 1 121165 74476 97716 1 121166 74476 97487 1 121167 74477 97503 1 121168 74478 97487 1 121169 74479 97720 0 121170 74479 97513 1 121171 74479 97514 1 121172 74480 97487 1 121173 74481 97487 1 121174 74482 97487 1 121175 74483 97487 1 121176 74484 97726 1 121177 74485 97487 1 121178 74488 97731 1 121179 74489 97665 1 121180 74491 97503 1 121181 74492 97736 1 121182 74493 97487 1 121183 74494 97557 1 121184 74495 97487 1 121185 74496 97487 1 121186 74497 97487 1 121187 74498 97487 1 121188 74499 97673 1 121189 74501 97487 1 121190 74502 97487 1 121191 74503 97487 1 121192 74505 97503 1 121193 74506 97487 1 121194 74507 97503 1 121195 74508 97513 1 121196 74508 97487 1 121197 74510 97503 1 121198 74511 97756 1 121199 74513 97759 1 121200 74513 97650 1 121201 74514 97487 1 121202 74515 97487 1 121203 74516 97487 1 121204 74517 97764 1 121205 74518 97487 1 121206 74519 97487 1 121207 74520 97557 1 121208 74522 97770 0 121209 74522 97771 1 121210 74522 97487 1 121211 74523 97773 1 121212 74524 97775 1 121213 74525 97777 1 121214 74526 97779 1 121215 74527 97487 1 121216 74528 97487 1 121217 74529 97783 1 121218 74530 97557 1 121219 74531 97487 1 121220 74532 97534 1 121221 74533 97487 1 121222 74534 97487 1 121223 74535 97487 1 121224 74536 97791 0 121225 74536 97513 1 121226 74536 97514 1 121227 74539 97534 1 121228 74540 97796 1 121229 74541 97534 1 121230 74542 97799 1 121231 74543 97642 1 121232 74546 97487 1 121233 74549 97487 1 121234 74550 97808 1 121235 74551 97642 1 121236 74552 97487 1 121237 74553 97487 1 121238 74556 97487 1 121239 74557 97487 1 121240 74558 97817 1 121241 74558 40777 1 121242 74560 97487 1 121243 74561 97484 1 121244 74561 67233 1 121245 74562 97487 1 121246 74563 97503 1 121247 74566 97487 1 121248 74567 97827 1 121249 74568 97829 0 121250 74568 97513 1 121251 74568 97553 1 121252 74569 97487 1 121253 74570 97534 1 121254 74571 97688 1 121255 74572 97503 1 121256 74573 97487 1 121257 74574 97503 1 121258 74575 97487 1 121259 74577 97503 1 121260 74578 97840 0 121261 74578 97513 1 121262 74579 97534 1 121263 74580 97557 1 121264 74581 97503 1 121265 74582 97845 1 121266 74583 97847 0 121267 74583 97513 1 121268 74583 97848 1 121269 74584 97487 1 121270 74585 97487 1 121271 74586 97534 1 121272 74587 97487 1 121273 74589 97855 0 121274 74589 97513 1 121275 74589 97514 1 121276 74590 97487 1 121277 74591 97487 1 121278 74592 97487 1 121279 74593 97557 1 121280 74595 97862 0 121281 74595 97513 1 121282 74595 97650 1 121283 74596 97557 1 121284 74597 97503 1 121285 74598 97487 1 121286 74599 97509 1 121287 74600 97487 1 121288 74601 97487 1 121289 74602 97870 1 121290 74603 97557 1 121291 74605 97487 1 121292 74607 97520 1 121293 74608 97503 1 121294 74609 97487 1 121295 74610 97487 1 121296 74611 97487 1 121297 74612 97487 1 121298 74613 97487 1 121299 74614 97484 1 121300 74615 97503 1 121301 74616 97503 1 121302 74617 97886 1 121303 74621 97487 1 121304 74622 97892 1 121305 74624 97487 1 121306 74625 97487 1 121307 74626 97487 1 121308 74628 97899 1 121309 74630 97487 1 121310 74631 97503 1 121311 74632 97513 1 121312 74633 97642 1 121313 74635 97487 1 121314 74636 97487 1 121315 74637 97487 1 121316 74638 97557 1 121317 74639 97911 1 121318 74640 97487 1 121319 74641 97487 1 121320 74643 97487 1 121321 74644 97917 0 121322 74644 97513 1 121323 74646 97920 1 121324 74647 97487 1 121325 74648 97779 1 121326 74649 97924 1 121327 74649 97925 1 121328 74650 97487 1 121329 74651 97928 1 121330 74652 97487 1 121331 74654 97513 1 121332 74654 97514 1 121333 74655 97933 1 121334 74656 97799 1 121335 74657 97650 1 121336 74658 97487 1 121337 74659 97938 1 121338 74660 97487 1 121339 74662 97688 1 121340 74663 97487 1 121341 74667 97487 1 121342 74668 97487 1 121343 74669 97949 1 121344 74670 97487 1 121345 74674 97520 1 121346 74675 97487 1 121347 74676 97487 1 121348 74677 97557 1 121349 74679 97487 1 121350 74681 97962 0 121351 74681 97963 0 121352 74681 97487 1 121353 74683 97487 1 121354 74684 97688 1 121355 74686 97534 1 121356 74687 97520 1 121357 74688 97487 1 121358 74689 97892 1 121359 74693 97650 1 121360 74694 97487 1 121361 74695 97484 1 121362 74696 97487 1 121363 74698 97487 1 121364 74699 97487 1 121365 74702 97827 1 121366 74703 97986 0 121367 74703 97987 0 121368 74703 97513 1 121369 74703 97553 1 121370 74706 97557 1 121371 74708 97487 1 121372 74709 97487 1 121373 74710 97995 0 121374 74710 97513 1 121375 74710 97553 1 121376 74711 97487 1 121377 74713 97557 1 121378 74714 97487 1 121379 74715 97688 1 121380 74716 97771 1 121381 74718 97487 1 121382 74719 97487 1 121383 74720 97520 1 121384 74721 97487 1 121385 74722 97498 1 121386 74722 97487 1 121387 74723 97710 1 121388 74725 97520 1 121389 74727 97487 1 121390 74728 97487 1 121391 74729 97618 1 121392 74730 69662 1 121393 74730 69663 1 121394 74731 97487 1 121395 74732 97688 1 121396 74733 97534 1 121397 74734 97487 1 121398 74735 97487 1 121399 74737 97487 1 121400 74738 97487 1 121401 74739 98025 0 121402 74739 97513 1 121403 74739 97514 1 121404 74740 97716 1 121405 74740 97487 1 121406 74741 97799 1 121407 74742 98029 1 121408 74742 97534 1 121409 74743 97487 1 121410 74744 97487 1 121411 74747 97534 1 121412 74749 97487 1 121413 74750 97665 1 121414 74752 97487 1 121415 74754 97487 1 121416 74755 97534 1 121417 74756 97487 1 121418 74757 97557 1 121419 74758 97652 1 121420 74759 97484 1 121421 74760 97487 1 121422 74761 98049 1 121423 74762 97487 1 121424 74763 98052 1 121425 74764 97594 1 121426 74765 98055 1 121427 74766 97503 1 121428 74767 97487 1 121429 74768 98059 1 121430 74768 97487 1 121431 74769 98061 1 121432 74770 97487 1 121433 74772 97534 1 121434 74773 97503 1 121435 74774 97487 1 121436 74775 97487 1 121437 74776 97642 1 121438 74777 98070 0 121439 74777 97513 1 121440 74777 97514 1 121441 74779 97487 1 121442 74780 98074 1 121443 74781 98076 0 121444 74781 97513 1 121445 74781 97553 1 121446 74782 97487 1 121447 74783 98079 0 121448 74783 97513 1 121449 74783 97514 1 121450 74784 97487 1 121451 74786 97520 1 121452 74787 97487 1 121453 74788 98085 1 121454 74789 97487 1 121455 74790 97557 1 121456 74792 97513 1 121457 74793 97534 1 121458 74794 98092 0 121459 74794 97513 1 121460 74795 97487 1 121461 74796 97487 1 121462 74797 97534 1 121463 74798 97503 1 121464 74799 97487 1 121465 74800 97487 1 121466 74802 97487 1 121467 74803 97487 1 121468 74804 98103 1 121469 74805 97557 1 121470 74806 97503 1 121471 74807 98107 1 121472 74808 97779 1 121473 74809 97642 1 121474 74810 97487 1 121475 74811 98112 0 121476 74811 97513 1 121477 74812 97487 1 121478 74813 97557 1 121479 74814 97487 1 121480 74816 97487 1 121481 74817 97513 1 121482 74818 97487 1 121483 74819 97487 1 121484 74820 97487 1 121485 74821 98123 1 121486 74822 97503 1 121487 74823 98126 0 121488 74823 97484 1 121489 74824 98128 1 121490 74825 97673 1 121491 74826 98131 1 121492 74827 57886 1 121493 74832 97487 1 121494 74833 40783 1 121495 74834 97557 1 121496 74835 97487 1 121497 74837 98143 0 121498 74837 97513 1 121499 74839 97487 1 121500 74841 98148 1 121501 74842 97487 1 121502 74843 98151 1 121503 74844 98153 0 121504 74844 97513 1 121505 74844 97514 1 121506 74845 97513 1 121507 74848 97503 1 121508 74849 97487 1 121509 74850 98160 0 121510 74850 97487 1 121511 74852 97487 1 121512 74853 98164 1 121513 74854 98166 1 121514 74855 97557 1 121515 74856 97642 1 121516 74857 97487 1 121517 74858 97487 1 121518 74859 97557 1 121519 74860 97503 1 121520 74861 97487 1 121521 74862 97487 1 121522 74863 97503 1 121523 74864 98177 1 121524 74865 98179 0 121525 74865 97660 1 121526 74866 98181 1 121527 74867 97487 1 121528 74868 97487 1 121529 74869 97588 1 121530 74869 97487 1 121531 74870 97487 1 121532 74871 97487 1 121533 74872 97487 1 121534 74873 97642 1 121535 74874 97487 1 121536 74875 97487 1 121537 74876 97487 1 121538 74877 97487 1 121539 74878 97534 1 121540 74879 97652 1 121541 74880 97503 1 121542 74881 97520 1 121543 74882 97688 1 121544 74883 97487 1 121545 74884 97503 1 121546 74885 97618 1 121547 74886 98202 1 121548 74888 97771 1 121549 74889 97487 1 121550 74890 97487 1 121551 74891 97503 1 121552 74892 97487 1 121553 74894 97487 1 121554 74895 97487 1 121555 74896 98213 1 121556 74897 98215 0 121557 74897 97513 1 121558 74897 97650 1 121559 74898 97487 1 121560 74899 97487 1 121561 74900 97487 1 121562 74901 97487 1 121563 74902 97487 1 121564 74906 97487 1 121565 74907 97487 1 121566 74908 97487 1 121567 74909 97699 1 121568 74910 67233 1 121569 74910 97487 1 121570 74911 97487 1 121571 74912 97487 1 121572 74913 98232 0 121573 74913 97487 1 121574 74914 97487 1 121575 74915 97534 1 121576 74916 97503 1 121577 74917 97487 1 121578 74918 97487 1 121579 74919 98239 1 121580 74919 97487 1 121581 74921 97487 1 121582 74922 97487 1 121583 74923 97503 1 121584 74924 97487 1 121585 74925 97520 1 121586 74926 97520 1 121587 74927 97673 1 121588 74928 97487 1 121589 74929 97487 1 121590 74930 97487 1 121591 74931 97487 1 121592 74932 98253 0 121593 74932 97513 1 121594 74932 97553 1 121595 74933 97487 1 121596 74935 97487 1 121597 74936 97557 1 121598 74937 97484 1 121599 74938 98260 1 121600 74939 97487 1 121601 74941 97487 1 121602 74942 97487 1 121603 74944 97487 1 121604 74945 97487 1 121605 74946 97487 1 121606 74947 98270 0 121607 74947 97513 1 121608 74947 97487 1 121609 74948 97650 1 121610 74949 97503 1 121611 74950 97487 1 121612 74951 97688 1 121613 74952 97487 1 121614 74954 97520 1 121615 74955 97673 1 121616 74956 97688 1 121617 74957 97487 1 121618 74958 98282 1 121619 74959 97487 1 121620 74961 97949 1 121621 74962 98287 1 121622 74963 97484 1 121623 74965 98291 0 121624 74965 97513 1 121625 74965 97514 1 121626 74966 97487 1 121627 74967 97487 1 121628 74968 97764 1 121629 74969 98296 0 121630 74969 97513 1 121631 74969 97553 1 121632 74970 97487 1 121633 74971 98299 1 121634 74972 97487 1 121635 74973 97487 1 121636 74974 97665 1 121637 74976 97487 1 121638 74977 97487 1 121639 74978 97487 1 121640 74979 98308 1 121641 74980 97487 1 121642 74981 98311 1 121643 74982 97487 1 121644 74983 98314 1 121645 74983 98315 1 121646 74983 98316 1 121647 74985 97487 1 121648 74986 97557 1 121649 74988 97487 1 121650 74989 97487 1 121651 74990 97487 1 121652 74991 97503 1 121653 74992 98107 1 121654 74993 97487 1 121655 74994 97771 1 121656 74995 97487 1 121657 74996 97487 1 121658 74997 97626 1 121659 74998 97487 1 121660 74999 98333 0 121661 74999 97513 1 121662 74999 97553 1 121663 75000 97487 1 121664 75002 97799 1 121665 75004 97487 1 121666 75008 97520 1 121667 75009 97503 1 121668 75010 97487 1 121669 75011 97568 1 121670 75012 97827 1 121671 75015 97487 1 121672 75017 97487 1 121673 75019 97487 1 121674 75022 97487 1 121675 75023 97487 1 121676 75024 97487 1 121677 75025 98360 1 121678 75026 97487 1 121679 75030 97557 1 121680 75032 97503 1 121681 75034 97673 1 121682 75035 97594 1 121683 75036 97710 1 121684 75037 97503 1 121685 75038 97487 1 121686 75039 97487 1 121687 75040 97771 1 121688 75042 97557 1 121689 75044 97487 1 121690 75046 97487 1 121691 75047 97487 1 121692 75048 97487 1 121693 75049 97650 1 121694 75050 97487 1 121695 75051 97487 1 121696 75052 98388 0 121697 75052 97513 1 121698 75052 97514 1 121699 75053 97503 1 121700 75054 97710 1 121701 75055 97557 1 121702 75057 97557 1 121703 75058 97513 1 121704 75061 97503 1 121705 75062 97487 1 121706 75063 97779 1 121707 75065 97557 1 121708 75066 97487 1 121709 75067 97487 1 121710 75068 97487 1 121711 75069 97710 1 121712 75070 97513 1 121713 75071 97520 1 121714 75072 97487 1 121715 75073 97487 1 121716 75075 97688 1 121717 75076 97487 1 121718 75077 97487 1 121719 75079 97487 1 121720 75080 97487 1 121721 75083 97534 1 121722 75084 97487 1 121723 75085 97487 1 121724 75086 97534 1 121725 75087 97490 1 121726 75088 97557 1 121727 75089 98426 1 121728 75091 97642 1 121729 75092 97572 1 121730 75092 67233 1 121731 75094 97938 1 121732 75095 97799 1 121733 75096 97487 1 121734 75097 97487 1 121735 75098 97487 1 121736 75099 97557 1 121737 75100 97688 1 121738 75101 97487 1 121739 75103 97699 1 121740 75104 97911 1 121741 75105 97771 1 121742 75106 97487 1 121743 75107 97487 1 121744 75108 97557 1 121745 75110 97487 1 121746 75113 97487 1 121747 75114 97673 1 121748 75115 97487 1 121749 75117 97534 1 121750 75118 97520 1 121751 75119 97650 1 121752 75120 97487 1 121753 75121 97557 1 121754 75124 97487 1 121755 75125 97557 1 121756 75126 97487 1 121757 75127 97487 1 121758 75128 98466 1 121759 75129 97487 1 121760 75130 97673 1 121761 75131 97534 1 121762 75132 97487 1 121763 75133 98472 1 121764 75134 97487 1 121765 75136 97487 1 121766 75137 97503 1 121767 75138 97487 1 121768 75139 97487 1 121769 75141 98481 0 121770 75141 97513 1 121771 75143 98484 1 121772 75144 97534 1 121773 75147 40765 1 121774 75147 68012 1 121775 75148 98061 1 121776 75149 97557 1 121777 75151 97487 1 121778 75152 97618 1 121779 75154 98496 1 121780 75155 97503 1 121781 75156 97503 1 121782 75161 79002 1 121783 75162 97534 1 121784 75163 97487 1 121785 75164 97557 1 121786 75165 97487 1 121787 75166 98509 1 121788 75166 97688 1 121789 75167 97534 1 121790 75169 97503 1 121791 75170 97487 1 121792 75171 98515 0 121793 75171 97513 1 121794 75171 97514 1 121795 75173 97642 1 121796 75173 97487 1 121797 75174 97487 1 121798 75175 97487 1 121799 75176 98521 0 121800 75176 97513 1 121801 75176 97650 1 121802 75176 97553 1 121803 75177 97487 1 121804 75178 97534 1 121805 75179 97650 1 121806 75180 98526 1 121807 75180 97534 1 121808 75181 97557 1 121809 75182 97484 1 121810 75183 97487 1 121811 75184 97503 1 121812 75186 97534 1 121813 75187 97487 1 121814 75188 97557 1 121815 75189 97665 1 121816 75190 97557 1 121817 75191 98538 1 121818 75192 98540 0 121819 75192 97513 1 121820 75192 97514 1 121821 75194 98543 1 121822 75195 97487 1 121823 75196 97534 1 121824 75197 97513 1 121825 75198 97503 1 121826 75199 97599 1 121827 75200 97487 1 121828 75201 97503 1 121829 75202 98552 1 121830 75203 97503 1 121831 75204 97513 1 121832 75205 98055 1 121833 75206 97534 1 121834 75208 97534 1 121835 75209 97487 1 121836 75210 97503 1 121837 75211 97487 1 121838 75212 97487 1 121839 75213 97487 1 121840 75215 97534 1 121841 75216 98567 1 121842 75217 97487 1 121843 75218 97487 1 121844 75219 98571 1 121845 75220 97487 1 121846 75221 97487 1 121847 75223 97487 1 121848 75224 97487 1 121849 75225 98578 0 121850 75225 97513 1 121851 75225 97650 1 121852 75226 97534 1 121853 75227 67233 1 121854 75227 97487 1 121855 75229 97827 1 121856 75230 97487 1 121857 75231 97487 1 121858 75232 97650 1 121859 75233 97487 1 121860 75234 97487 1 121861 75235 98589 1 121862 75236 97557 1 121863 75236 97688 1 121864 75238 97487 1 121865 75239 97487 1 121866 75240 97487 1 121867 75241 98308 1 121868 75242 97487 1 121869 75243 97557 1 121870 75244 97487 1 121871 75246 98601 0 121872 75246 97513 1 121873 75246 97553 1 121874 75247 97487 1 121875 75248 40777 1 121876 75249 97487 1 121877 75250 98606 0 121878 75250 97513 1 121879 75250 97514 1 121880 75251 97626 1 121881 75252 97688 1 121882 75253 97503 1 121883 75254 97487 1 121884 75257 98614 0 121885 75257 97513 1 121886 75257 97514 1 121887 75258 97490 1 121888 75259 97938 1 121889 75262 97487 1 121890 75263 97487 1 121891 75264 97650 1 121892 75266 97487 1 121893 75267 97487 1 121894 75269 97520 1 121895 75270 98628 1 121896 75271 97557 1 121897 75272 97520 1 121898 75275 97487 1 121899 75276 98635 1 121900 75277 98637 1 121901 75278 97487 1 121902 75279 97487 1 121903 75280 97487 1 121904 75281 97487 1 121905 75282 97487 1 121906 75283 98644 0 121907 75283 97513 1 121908 75283 97650 1 121909 75284 98646 1 121910 75284 97487 1 121911 75285 97487 1 121912 75286 97487 1 121913 75287 98650 1 121914 75287 97487 1 121915 75288 98652 1 121916 75288 98653 1 121917 75288 98654 1 121918 75289 97557 1 121919 75290 97706 1 121920 75291 97487 1 121921 75292 97487 1 121922 75293 98660 0 121923 75293 97484 1 121924 75294 97487 1 121925 75296 98664 1 121926 75299 97487 1 121927 75300 97520 1 121928 75301 97487 1 121929 75304 97487 1 121930 75305 98674 1 121931 75307 97845 1 121932 75308 97487 1 121933 75309 98679 1 121934 75310 97557 1 121935 75311 98682 1 121936 75312 97503 1 121937 75313 97487 1 121938 75314 98686 1 121939 75315 97650 1 121940 75316 97557 1 121941 75318 98691 1 121942 75319 97503 1 121943 75321 97487 1 121944 75323 97487 1 121945 75324 85323 1 121946 75324 85324 1 121947 75325 97487 1 121948 75326 98700 1 121949 75327 97665 1 121950 75328 97503 1 121951 75330 97487 1 121952 75331 42744 1 121953 75332 97557 1 121954 75333 98708 0 121955 75333 97513 1 121956 75333 97484 1 121957 75333 97650 1 121958 75334 97487 1 121959 75335 98711 0 121960 75335 98712 0 121961 75335 97487 1 121962 75336 97799 1 121963 75337 98715 0 121964 75337 97513 1 121965 75337 97553 1 121966 75338 97557 1 121967 75339 97520 1 121968 75341 97706 1 121969 75343 98722 0 121970 75343 97513 1 121971 75345 97568 1 121972 75346 97503 1 121973 75347 98589 1 121974 75349 97487 1 121975 75350 97534 1 121976 75351 97487 1 121977 75352 97665 1 121978 75353 98733 1 121979 75354 97487 1 121980 75355 97487 1 121981 75356 97487 1 121982 75358 98739 0 121983 75358 97513 1 121984 75358 97514 1 121985 75360 97534 1 121986 75362 97487 1 121987 75364 98746 0 121988 75364 97513 1 121989 75364 97650 1 121990 75365 97503 1 121991 75366 97503 1 121992 75367 97642 1 121993 75367 97487 1 121994 75368 97557 1 121995 75369 97487 1 121996 75370 97503 1 121997 75371 97688 1 121998 75372 44565 1 121999 75372 98755 1 122000 75373 97487 1 122001 75374 97688 1 122002 75375 97487 1 122003 75376 97618 1 122004 75378 97487 1 122005 75379 97487 1 122006 75380 98764 1 122007 75381 97487 1 122008 75382 97487 1 122009 75383 98768 1 122010 75385 97487 1 122011 75387 98773 0 122012 75387 97487 1 122013 75389 97557 1 122014 75391 98778 0 122015 75391 97513 1 122016 75391 97650 1 122017 75392 97534 1 122018 75394 97588 1 122019 75395 97487 1 122020 75396 97899 1 122021 75397 98785 0 122022 75397 97484 1 122023 75398 97688 1 122024 75399 98788 0 122025 75399 97513 1 122026 75399 97553 1 122027 75400 97487 1 122028 75401 97487 1 122029 75402 97949 1 122030 75403 97503 1 122031 75404 97487 1 122032 75405 98795 1 122033 75405 97650 1 122034 75406 97557 1 122035 75407 40783 1 122036 75408 97487 1 122037 75409 97503 1 122038 75411 97503 1 122039 75412 97487 1 122040 75413 97487 1 122041 75414 98805 0 122042 75414 97513 1 122043 75414 97553 1 122044 75415 97710 1 122045 75416 98808 1 122046 75417 97534 1 122047 75418 40780 1 122048 75419 97487 1 122049 75421 97487 1 122050 75422 98815 1 122051 75423 97665 1 122052 75424 97487 1 122053 75425 97487 1 122054 75426 97557 1 122055 75427 98821 1 122056 75429 97487 1 122057 75431 98826 1 122058 75432 98828 1 122059 75433 97557 1 122060 75435 97557 1 122061 75438 97484 1 122062 75439 97487 1 122063 75440 97487 1 122064 75443 97487 1 122065 75445 97487 1 122066 75446 98589 1 122067 75446 97487 1 122068 75447 97673 1 122069 75448 97487 1 122070 75449 97799 1 122071 75450 97534 1 122072 75451 97487 1 122073 75452 97487 1 122074 75453 97487 1 122075 75455 97487 1 122076 75456 98853 1 122077 75457 97827 1 122078 75458 97534 1 122079 75459 97487 1 122080 75460 97688 1 122081 75461 98859 1 122082 75462 97487 1 122083 75463 97513 1 122084 75463 97514 1 122085 75465 97487 1 122086 75466 97487 1 122087 75468 97487 1 122088 75469 97503 1 122089 75470 97487 1 122090 75471 97487 1 122091 75473 97503 1 122092 75474 98873 0 122093 75475 97503 1 122094 75476 97503 1 122095 75477 97487 1 122096 75478 97618 1 122097 75479 97588 1 122098 75481 97771 1 122099 75482 98882 1 122100 75483 97513 1 122101 75484 97487 1 122102 75486 98887 0 122103 75486 97513 1 122104 75486 97650 1 122105 75487 97487 1 122106 75489 97503 1 122107 75490 97498 1 122108 75490 97487 1 122109 75491 97487 1 122110 75492 97487 1 122111 75493 97618 1 122112 75494 97487 1 122113 75495 97487 1 122114 75496 97520 1 122115 75497 97487 1 122116 75498 97487 1 122117 75499 97634 1 122118 75500 97503 1 122119 75501 97775 1 122120 75502 97557 1 122121 75503 97534 1 122122 75504 97487 1 122123 75505 98164 1 122124 75506 98908 1 122125 75507 67233 1 122126 75508 97557 1 122127 75509 98912 1 122128 75510 97487 1 122129 75511 97688 1 122130 75512 97484 1 122131 75513 97487 1 122132 75515 97487 1 122133 75516 97487 1 122134 75517 97487 1 122135 75518 97596 1 122136 75519 97487 1 122137 75520 97487 1 122138 75521 97487 1 122139 75522 97487 1 122140 75523 97557 1 122141 75524 97799 1 122142 75525 97487 1 122143 75526 97487 1 122144 75527 97487 1 122145 75528 97557 1 122146 75529 98933 1 122147 75530 97688 1 122148 75531 97487 1 122149 75532 97642 1 122150 75533 98938 1 122151 75534 97673 1 122152 75536 97487 1 122153 75537 98943 1 122154 75538 97513 1 122155 75539 97520 1 122156 75540 98947 0 122157 75540 97513 1 122158 75540 97650 1 122159 75541 97487 1 122160 75543 97555 1 122161 75544 97503 1 122162 75546 97642 1 122163 75547 97557 1 122164 75548 97503 1 122165 75549 97642 1 122166 75551 97487 1 122167 75552 97503 1 122168 75553 97534 1 122169 75555 97487 1 122170 75556 97520 1 122171 75557 97618 1 122172 75559 98967 1 122173 75560 97557 1 122174 75561 97487 1 122175 75562 97487 1 122176 75564 97484 1 122177 75565 97487 1 122178 75566 97484 1 122179 75568 97599 1 122180 75569 97487 1 122181 75571 97673 1 122182 75572 97487 1 122183 75573 97626 1 122184 75574 97487 1 122185 75575 97667 1 122186 75576 97487 1 122187 75577 97688 1 122188 75578 97557 1 122189 75579 97775 1 122190 75580 97673 1 122191 75582 97534 1 122192 75583 98992 0 122193 75583 97513 1 122194 75583 97553 1 122195 75584 97487 1 122196 75585 97487 1 122197 75586 98202 1 122198 75587 97487 1 122199 75588 97487 1 122200 75589 97557 1 122201 75590 99000 0 122202 75590 97513 1 122203 75590 97650 1 122204 75591 97673 1 122205 75592 97487 1 122206 75594 97487 1 122207 75595 97534 1 122208 75596 97487 1 122209 75598 99009 0 122210 75598 99010 0 122211 75598 99011 1 122212 75598 97487 1 122213 75599 99013 1 122214 75599 97706 1 122215 75600 97487 1 122216 75601 99016 1 122217 75602 97673 1 122218 75603 98061 1 122219 75604 97487 1 122220 75605 99021 1 122221 75606 99023 0 122222 75606 97513 1 122223 75606 97514 1 122224 75607 97487 1 122225 75609 99027 0 122226 75609 97513 1 122227 75610 97487 1 122228 75611 97487 1 122229 75612 97487 1 122230 75613 97487 1 122231 75614 97487 1 122232 75616 99035 1 122233 75617 97487 1 122234 75618 97487 1 122235 75619 97503 1 122236 75620 97503 1 122237 75621 97534 1 122238 75622 97557 1 122239 75623 97503 1 122240 75624 99044 1 122241 75625 97503 1 122242 75626 97487 1 122243 75628 97487 1 122244 75629 99050 0 122245 75629 97513 1 122246 75629 97514 1 122247 75630 97503 1 122248 75631 97557 1 122249 75633 97487 1 122250 75636 97487 1 122251 75637 97534 1 122252 75639 97487 1 122253 75640 97513 1 122254 75641 97487 1 122255 75642 97520 1 122256 75643 97487 1 122257 75647 97487 1 122258 75648 97534 1 122259 75649 98061 1 122260 75649 67233 1 122261 75650 97650 1 122262 75651 97487 1 122263 75652 97557 1 122264 75653 97534 1 122265 75655 97557 1 122266 75656 97487 1 122267 75659 97487 1 122268 75660 99082 1 122269 75661 97534 1 122270 75662 97487 1 122271 75663 97487 1 122272 75664 97487 1 122273 75665 97623 1 122274 75665 97624 1 122275 75665 99088 1 122276 75667 98061 1 122277 75668 99092 0 122278 75668 97513 1 122279 75668 97514 1 122280 75669 97557 1 122281 75671 97487 1 122282 75672 97920 1 122283 75673 99098 1 122284 75673 99099 1 122285 75674 97487 1 122286 75675 97487 1 122287 75676 99103 1 122288 75677 99105 0 122289 75677 97513 1 122290 75677 97487 1 122291 75678 97487 1 122292 75680 97487 1 122293 75681 97487 1 122294 75682 98299 1 122295 75684 97799 1 122296 75685 98650 1 122297 75687 97487 1 122298 75688 97487 1 122299 75689 97534 1 122300 75691 97520 1 122301 75692 97557 1 122302 75693 97557 1 122303 75696 97487 1 122304 75698 99127 0 122305 75698 97513 1 122306 75699 97487 1 122307 75700 97773 1 122308 75701 97503 1 122309 75702 97487 1 122310 75703 97487 1 122311 75706 99136 1 122312 75707 97520 1 122313 75708 97557 1 122314 75709 97534 1 122315 75710 97487 1 122316 75711 98589 1 122317 75712 97771 1 122318 75713 97557 1 122319 75714 41139 1 122320 75714 99145 1 122321 75715 97487 1 122322 75716 99148 1 122323 75718 97503 1 122324 75719 97557 1 122325 75720 99153 0 122326 75720 97513 1 122327 75721 97487 1 122328 75722 98311 1 122329 75723 97487 1 122330 75724 99158 0 122331 75724 97513 1 122332 75726 97487 1 122333 75727 97487 1 122334 75728 97534 1 122335 75729 97557 1 122336 75730 99165 1 122337 75731 97487 1 122338 75732 97534 1 122339 75733 97487 1 122340 75735 97557 1 122341 75736 97487 1 122342 75737 97688 1 122343 75738 97487 1 122344 75739 97487 1 122345 75740 97799 1 122346 75741 99177 1 122347 75743 97503 1 122348 75744 97520 1 122349 75746 97487 1 122350 75747 97487 1 122351 75749 97534 1 122352 75750 97487 1 122353 75751 99188 1 122354 75752 99190 0 122355 75752 97513 1 122356 75752 97514 1 122357 75753 97487 1 122358 75755 97487 1 122359 75756 97487 1 122360 75757 97557 1 122361 75758 97487 1 122362 75759 97557 1 122363 75762 97487 1 122364 75763 97557 1 122365 75764 97534 1 122366 75766 97557 1 122367 75767 97534 1 122368 75768 97487 1 122369 75769 97484 1 122370 75770 97487 1 122371 75772 99211 1 122372 75773 97487 1 122373 75774 99214 1 122374 75775 97650 1 122375 75776 98151 1 122376 75777 81174 1 122377 75779 97487 1 122378 75782 97487 1 122379 75783 97487 1 122380 75785 97618 1 122381 75786 97642 1 122382 75787 97487 1 122383 75788 97557 1 122384 75789 97783 1 122385 75790 97557 1 122386 75791 97487 1 122387 75792 97634 1 122388 75793 97487 1 122389 75794 97557 1 122390 75795 97487 1 122391 75796 97572 1 122392 75800 99241 0 122393 75800 97513 1 122394 75800 97514 1 122395 75801 99243 1 122396 75802 97487 1 122397 75803 97487 1 122398 75804 97513 1 122399 75805 97487 1 122400 75806 97688 1 122401 75807 97501 1 122402 75809 99252 1 122403 75810 97779 1 122404 75811 99255 1 122405 75812 97503 1 122406 75813 97520 1 122407 75814 97642 1 122408 75815 67233 1 122409 75816 97618 1 122410 75817 97487 1 122411 75818 97487 1 122412 75820 99265 0 122413 75820 97534 1 122414 75821 99267 0 122415 75821 97513 1 122416 75821 97650 1 122417 75822 99269 0 122418 75822 97514 1 122419 75823 97487 1 122420 75825 97520 1 122421 75826 97618 1 122422 75827 97487 1 122423 75828 97513 1 122424 75828 97514 1 122425 75831 99279 0 122426 75831 97484 1 122427 75832 97673 1 122428 75834 97650 1 122429 75835 97487 1 122430 75836 97487 1 122431 75837 97503 1 122432 75839 97588 1 122433 75839 97487 1 122434 75840 97487 1 122435 75841 97503 1 122436 75843 97484 1 122437 75844 97688 1 122438 75845 97487 1 122439 75846 97487 1 122440 75848 97503 1 122441 75850 97487 1 122442 75851 99300 0 122443 75851 97513 1 122444 75852 97487 1 122445 75853 98308 1 122446 75854 99304 1 122447 75856 97487 1 122448 75857 97594 1 122449 75860 97487 1 122450 75861 97487 1 122451 75862 97716 1 122452 75862 97487 1 122453 75864 97487 1 122454 75865 99316 0 122455 75865 97513 1 122456 75865 97553 1 122457 75866 97534 1 122458 75867 97487 1 122459 75868 97650 1 122460 75869 97487 1 122461 75870 97534 1 122462 75871 97484 1 122463 75872 97487 1 122464 75874 97688 1 122465 75877 97688 1 122466 75878 97650 1 122467 75880 97688 1 122468 75881 97599 1 122469 75882 97487 1 122470 75884 97520 1 122471 75885 97588 1 122472 75887 99339 0 122473 75887 97513 1 122474 75887 97650 1 122475 75888 98181 1 122476 75889 97827 1 122477 75890 97503 1 122478 75891 97557 1 122479 75892 97487 1 122480 75893 97650 1 122481 75894 97534 1 122482 75896 97487 1 122483 75897 97588 1 122484 75898 99351 0 122485 75898 97513 1 122486 75899 97487 1 122487 75900 97650 1 122488 75901 97487 1 122489 75902 97487 1 122490 75903 97487 1 122491 75904 97487 1 122492 75905 97626 1 122493 75907 97487 1 122494 75909 97487 1 122495 75911 97487 1 122496 75912 97487 1 122497 75913 99367 0 122498 75913 97513 1 122499 75913 97650 1 122500 75915 97487 1 122501 75916 97557 1 122502 75917 97588 1 122503 75918 97487 1 122504 75919 97911 1 122505 75920 97642 1 122506 75920 97487 1 122507 75921 97487 1 122508 75922 97673 1 122509 75923 97673 1 122510 75924 97487 1 122511 75925 97827 1 122512 75926 97487 1 122513 75928 97487 1 122514 75929 97503 1 122515 75930 97487 1 122516 75931 97557 1 122517 75932 97487 1 122518 75933 97650 1 122519 75935 99390 0 122520 75935 97513 1 122521 75936 97557 1 122522 75937 97487 1 122523 75939 97487 1 122524 75940 97487 1 122525 75941 97487 1 122526 75943 97503 1 122527 75944 99400 0 122528 75944 97513 1 122529 75944 97553 1 122530 75946 97557 1 122531 75948 99405 1 122532 75949 97710 1 122533 75951 97490 1 122534 75952 97487 1 122535 75953 97487 1 122536 75954 97487 1 122537 75956 97503 1 122538 75957 97487 1 122539 75958 97487 1 122540 75959 97799 1 122541 75960 99418 0 122542 75960 97513 1 122543 75961 99420 1 122544 75962 97487 1 122545 75963 97487 1 122546 75966 97557 1 122547 75967 97513 1 122548 75968 97487 1 122549 75969 97487 1 122550 75970 97487 1 122551 75971 99431 0 122552 75971 97513 1 122553 75972 97487 1 122554 75973 99434 0 122555 75973 97513 1 122556 75973 97514 1 122557 75974 97487 1 122558 75975 98061 1 122559 75976 97487 1 122560 75977 98826 1 122561 75978 97503 1 122562 75979 97594 1 122563 75982 97716 1 122564 75982 97487 1 122565 75983 99445 0 122566 75983 97513 1 122567 75983 97514 1 122568 75984 97487 1 122569 75985 99448 1 122570 75986 99450 1 122571 75988 97503 1 122572 75990 97487 1 122573 75993 97487 1 122574 75994 97487 1 122575 75995 99460 1 122576 75995 99461 1 122577 75996 97503 1 122578 75997 97487 1 122579 75998 97759 1 122580 75998 97650 1 122581 76000 97487 1 122582 76001 99468 1 122583 76002 97557 1 122584 76003 99471 1 122585 76005 97484 1 122586 76006 97487 1 122587 76009 97503 1 122588 76010 97555 1 122589 76010 97588 1 122590 76010 97487 1 122591 76011 97487 1 122592 76012 97688 1 122593 76013 97650 1 122594 76014 97534 1 122595 76015 97487 1 122596 76016 97642 1 122597 76016 97487 1 122598 76018 97487 1 122599 76019 98943 1 122600 76020 99489 1 122601 76021 97557 1 122602 76022 97642 1 122603 76023 99493 1 122604 76024 97487 1 122605 76025 97487 1 122606 76026 99497 0 122607 76026 99498 0 122608 76026 97520 1 122609 76027 97642 1 122610 76028 97557 1 122611 76029 97557 1 122612 76032 40914 1 122613 76033 97503 1 122614 76036 97503 1 122615 76037 97487 1 122616 76038 97688 1 122617 76039 97487 1 122618 76040 97487 1 122619 76041 97487 1 122620 76043 99516 1 122621 76046 97642 1 122622 76048 97487 1 122623 76049 99523 1 122624 76050 98826 1 122625 76051 97487 1 122626 76052 97572 1 122627 76052 67233 1 122628 76053 99528 1 122629 76054 97557 1 122630 76055 99405 1 122631 76056 97487 1 122632 76057 98664 1 122633 76058 97487 1 122634 76060 97487 1 122635 76061 97487 1 122636 76062 97487 1 122637 76063 97534 1 122638 76064 97503 1 122639 76065 97487 1 122640 76066 97487 1 122641 76067 97513 1 122642 76067 97514 1 122643 76068 97779 1 122644 76069 97534 1 122645 76070 97487 1 122646 76071 97487 1 122647 76072 97557 1 122648 76073 97618 1 122649 76074 97487 1 122650 76075 97487 1 122651 76076 97487 1 122652 76077 97487 1 122653 76078 97487 1 122654 76079 97487 1 122655 76080 97487 1 122656 76081 97487 1 122657 76082 99558 0 122658 76082 97513 1 122659 76083 99560 1 122660 76086 97487 1 122661 76087 97487 1 122662 76089 99177 1 122663 76090 97534 1 122664 76091 97487 1 122665 76092 97487 1 122666 76093 97487 1 122667 76096 97688 1 122668 76097 97487 1 122669 76098 97487 1 122670 76099 97699 1 122671 76101 97503 1 122672 76103 97520 1 122673 76104 97487 1 122674 76105 97487 1 122675 76106 97503 1 122676 76107 99585 1 122677 76107 97487 1 122678 76108 97771 1 122679 76109 97487 1 122680 76111 97487 1 122681 76112 97487 1 122682 76113 99592 1 122683 76114 97487 1 122684 76116 97520 1 122685 76118 97534 1 122686 76119 97557 1 122687 76120 97557 1 122688 76122 97503 1 122689 76123 97594 1 122690 76125 97487 1 122691 76126 99606 0 122692 76126 97513 1 122693 76126 97514 1 122694 76127 97487 1 122695 76128 97487 1 122696 76129 99610 1 122697 76130 97503 1 122698 76131 97503 1 122699 76132 97503 1 122700 76133 97487 1 122701 76134 97487 1 122702 76135 97487 1 122703 76136 97487 1 122704 76137 97487 1 122705 76139 97764 1 122706 76139 97534 1 122707 76140 97487 1 122708 76141 97487 1 122709 76142 97503 1 122710 76143 97487 1 122711 76144 99626 1 122712 76145 97487 1 122713 76146 97487 1 122714 76147 97487 1 122715 76148 97487 1 122716 76149 97534 1 122717 76150 97557 1 122718 76151 97484 1 122719 76152 97513 1 122720 76152 97514 1 122721 76153 99636 0 122722 76153 97513 1 122723 76153 97553 1 122724 76156 97642 1 122725 76160 97487 1 122726 76161 97487 1 122727 76162 97618 1 122728 76163 97487 1 122729 76164 42744 1 122730 76165 97557 1 122731 76166 97650 1 122732 76168 97487 1 122733 76169 99653 1 122734 76170 97487 1 122735 76171 97673 1 122736 76172 99657 1 122737 76173 97534 1 122738 76174 67233 1 122739 76176 99662 1 122740 76178 97650 1 122741 76179 97487 1 122742 76180 97557 1 122743 76181 97487 1 122744 76182 97487 1 122745 76183 99670 1 122746 76184 97487 1 122747 76185 97503 1 122748 76186 97484 1 122749 76186 40777 1 122750 76187 97487 1 122751 76188 97487 1 122752 76189 97673 1 122753 76190 97487 1 122754 76191 97650 1 122755 76193 97775 1 122756 76194 97557 1 122757 76195 99683 1 122758 76196 97487 1 122759 76197 99013 1 122760 76197 97706 1 122761 76199 99688 0 122762 76199 97513 1 122763 76199 97514 1 122764 76203 97487 1 122765 76204 97487 1 122766 76205 97487 1 122767 76206 97487 1 122768 76207 99697 1 122769 76208 97487 1 122770 76209 97487 1 122771 76212 97911 1 122772 76213 97487 1 122773 76214 97520 1 122774 76215 97534 1 122775 76216 97534 1 122776 76217 97487 1 122777 76218 97688 1 122778 76220 97534 1 122779 76222 97487 1 122780 76223 97534 1 122781 76224 97920 1 122782 76225 97487 1 122783 76226 97487 1 122784 76227 97487 1 122785 76228 99719 0 122786 76228 97513 1 122787 76229 97487 1 122788 76232 99724 1 122789 76232 99725 1 122790 76233 97487 1 122791 76234 97487 1 122792 76235 97487 1 122793 76236 97487 1 122794 76237 97487 1 122795 76238 97487 1 122796 76239 97487 1 122797 76240 97503 1 122798 76241 97487 1 122799 76242 99736 0 122800 76242 97513 1 122801 76242 97514 1 122802 76244 97487 1 122803 76245 97487 1 122804 76249 97487 1 122805 76251 97487 1 122806 76254 98360 1 122807 76256 97487 1 122808 76258 99753 0 122809 76258 97660 1 122810 76259 97487 1 122811 76260 97487 1 122812 76262 97568 1 122813 76263 97487 1 122814 76264 99760 1 122815 76265 97938 1 122816 76266 97688 1 122817 76267 97487 1 122818 76269 97642 1 122819 76270 99767 0 122820 76270 97513 1 122821 76270 99768 1 122822 76271 97487 1 122823 76272 97487 1 122824 76273 97487 1 122825 76275 97594 1 122826 76276 97503 1 122827 76277 97503 1 122828 76278 97487 1 122829 76279 99778 0 122830 76279 97513 1 122831 76279 99779 1 122832 76281 97487 1 122833 76283 97503 1 122834 76284 97484 1 122835 76285 97487 1 122836 76286 97487 1 122837 76287 97513 1 122838 76288 97759 1 122839 76288 97650 1 122840 76289 97487 1 122841 76291 97487 1 122842 76292 97557 1 122843 76293 97557 1 122844 76295 97503 1 122845 76296 97487 1 122846 76297 97487 1 122847 76299 97487 1 122848 76300 97487 1 122849 76301 67233 1 122850 76303 97650 1 122851 76304 97634 1 122852 76305 97487 1 122853 76306 97487 1 122854 76307 97503 1 122855 76309 97520 1 122856 76310 98164 1 122857 76311 97487 1 122858 76314 97557 1 122859 76317 97503 1 122860 76318 99819 0 122861 76318 97513 1 122862 76320 97688 1 122863 76321 97673 1 122864 76322 98166 1 122865 76323 97487 1 122866 76326 40765 1 122867 76326 68012 1 122868 76327 97487 1 122869 76328 97487 1 122870 76329 97642 1 122871 76330 99832 0 122872 76330 97513 1 122873 76330 97514 1 122874 76331 97487 1 122875 76332 97557 1 122876 76333 99836 0 122877 76333 97513 1 122878 76333 97553 1 122879 76334 99838 1 122880 76335 97520 1 122881 76336 99841 0 122882 76336 97513 1 122883 76337 97487 1 122884 76338 99844 1 122885 76340 99847 1 122886 76341 97534 1 122887 76342 97498 1 122888 76342 97487 1 122889 76343 98808 1 122890 76344 97487 1 122891 76345 97487 1 122892 76346 97534 1 122893 76347 97487 1 122894 76348 99856 0 122895 76348 97513 1 122896 76348 97514 1 122897 76349 97487 1 122898 76351 97534 1 122899 76352 97487 1 122900 76353 97487 1 122901 76354 97487 1 122902 76355 97503 1 122903 76356 97673 1 122904 76358 97487 1 122905 76359 97799 1 122906 76360 97520 1 122907 76361 97487 1 122908 76362 97618 1 122909 76363 97487 1 122910 76364 97487 1 122911 76365 97557 1 122912 76366 97487 1 122925 70738 92946 1 122926 70668 209430 0 122927 70668 209431 0 122928 70668 92946 1 122929 70668 209432 1 122930 76643 209543 0 122931 70697 92946 1 122932 70697 209433 1 122933 76720 209433 1 122934 70756 92946 1 122935 70777 92946 1 122936 70735 92946 1 122937 77182 210089 0 122938 77182 210090 0 122939 77182 210091 0 122940 77182 210092 0 122941 77182 210093 0 122942 77182 210094 0 122943 77182 210095 0 122944 77186 210101 0 122945 77186 210102 0 122946 77186 210103 0 122947 77186 210104 0 122948 77186 210105 0 122949 77186 210106 0 122950 77186 210107 0 122951 77186 210108 0 122952 77186 210109 0 122953 77186 210110 0 122954 77186 210111 0 122955 77186 210112 0 122956 77186 210113 0 122957 77186 210114 0 122958 77186 210115 0 122959 77186 210116 0 122960 77186 210117 0 122961 77186 210118 0 122962 77186 210119 0 122963 77186 210120 0 122964 77186 210121 0 122965 77186 210122 0 122966 77186 210123 0 122967 77186 210124 0 122968 77191 210126 0 122969 77191 210127 0 122970 77191 210128 0 122971 77191 210129 0 122972 77191 210130 0 122973 77191 210131 0 122974 77191 210132 0 122975 77191 210133 0 122976 77191 210134 0 122977 77191 210135 0 122978 77191 210136 0 122979 77191 210137 0 122980 77191 210138 0 122981 77191 210139 0 122982 77191 210140 0 122983 77191 210141 0 122984 77191 210142 0 122985 77191 210143 0 122986 77191 210144 0 122987 77191 210145 0 122988 77192 210147 0 122989 77192 210148 0 122990 77192 210149 0 122991 77192 210150 0 122992 77192 210151 0 122993 77192 210152 0 122994 77192 210153 0 122995 77192 210154 0 122996 77192 210155 0 122997 77192 210156 0 122998 77192 210157 0 122999 77192 210158 0 123000 77192 210159 0 123001 77192 210160 0 123002 77192 210161 0 123003 77192 210162 0 123004 77192 210163 0 123005 77192 210164 0 123006 77192 210165 0 123007 77192 210166 0 123008 77192 210167 0 123009 77192 210168 0 123010 77192 210169 0 123011 77192 210170 0 123012 77192 210171 0 123013 77192 210172 0 123014 77192 210173 0 123015 77192 210174 0 123016 77192 210175 0 123017 77192 210176 0 123018 77192 210177 0 123019 77192 210178 0 123020 77192 210179 0 123021 77192 210180 0 123022 77192 210181 0 123023 77192 210182 0 123024 77192 210183 0 123025 77192 210184 0 123026 77192 210185 0 123027 77192 210186 0 123028 77192 210187 0 123029 77192 210188 0 123030 77192 210189 0 123031 77193 210191 0 123032 77193 210192 0 123033 77193 210193 0 123034 77193 210194 0 123035 77193 210195 0 123036 77193 210196 0 123037 77193 210197 0 123038 77193 210198 0 123039 77193 210199 0 123040 77193 210200 0 123041 77193 210201 0 123042 77194 210203 0 123043 77194 210204 0 123044 77194 210205 0 123045 77194 210092 0 123046 77194 210206 0 123047 77194 210207 0 123048 77194 210208 0 123049 77194 210209 0 123050 77194 210210 0 123051 77195 210212 0 123052 77195 210213 0 123053 77195 210214 0 123054 77195 210215 0 123055 77195 210092 0 123056 77195 210216 0 123057 77195 210217 0 123058 77195 210218 0 123059 77195 210219 0 123060 77195 210220 0 123061 77195 210221 0 123062 77195 210222 0 123063 77195 210223 0 123064 77196 210225 0 123065 77196 210226 0 123066 77196 210227 0 123067 77196 210228 0 123068 77196 210229 0 123069 77196 210230 0 123070 77196 210231 0 123071 77196 210232 0 123072 77196 210233 0 123073 77196 210234 0 123074 77196 210235 0 123075 77196 210236 0 123076 77197 210238 0 123077 77197 210239 0 123078 77197 210240 0 123079 77197 210241 0 123080 77197 210242 0 123081 77197 210243 0 123082 77197 210244 0 123083 77198 210246 0 123084 77198 210247 0 123085 77198 210248 0 123086 77198 210249 0 123087 77198 210250 0 123088 77198 210251 0 123089 77198 210252 0 123090 77198 210253 0 123091 77198 210254 0 123092 77198 210255 0 123093 77198 210256 0 123094 77198 210257 0 123095 77198 210258 0 123096 77198 210259 0 123097 77198 210260 0 123098 77198 210261 0 123099 77199 210263 0 123100 77199 210264 0 123101 77199 210265 0 123102 77199 210266 0 123103 77199 210267 0 123104 77199 210268 0 123105 77199 210269 0 123106 77199 210270 0 123107 77199 210271 0 123108 77199 210272 0 123109 77199 210273 0 123110 77199 210274 0 123111 77199 210275 0 123112 77199 210276 0 123113 77199 210277 0 123114 77199 210278 0 123115 77199 210279 0 123116 77199 210280 0 123117 77199 210281 0 123118 77199 210282 0 123119 77199 210283 0 123120 77199 210284 0 123121 77199 210285 0 123122 77199 210286 0 123123 77199 210287 0 123124 77199 210288 0 123125 77199 210289 0 123126 77199 210290 0 123127 77199 210291 0 123128 77199 210292 0 123129 77199 210293 0 123130 77199 210294 0 123131 77199 210295 0 123132 77199 210222 0 123133 77199 210296 0 123134 77199 210297 0 123135 77199 210298 0 123136 77199 210299 0 123137 77199 210300 0 123138 77199 210301 0 123139 77199 210302 0 123140 77199 210303 0 123141 77199 210304 0 123142 77200 210306 0 123143 77200 210307 0 123144 77200 210308 0 123145 77200 210309 0 123146 77200 210310 0 123147 77200 210218 0 123148 77200 210311 0 123149 77200 210312 0 123150 77200 210313 0 123151 77200 210314 0 123152 77200 210315 0 123153 77201 210317 0 123154 77201 210318 0 123155 77201 210319 0 123156 77201 210320 0 123157 77202 210322 0 123158 77202 210323 0 123159 77202 210324 0 123160 77202 210325 0 123161 77202 210326 0 123162 77202 210327 0 123163 77202 210328 0 123164 77202 210329 0 123165 77202 210330 0 123166 77202 210331 0 123167 77202 210332 0 123168 77202 210333 0 123169 77202 210218 0 123170 77202 210334 0 123171 77202 210335 0 123172 77202 210336 0 123173 77202 210337 0 123174 77202 210338 0 123175 77203 210340 0 123176 77203 210341 0 123177 77203 210342 0 123178 77203 210343 0 123179 77203 210344 0 123180 77204 210346 0 123181 77204 210347 0 123182 77204 210348 0 123183 77204 210349 0 123184 77204 210350 0 123185 77204 210351 0 123186 77204 210352 0 123187 77204 210353 0 123188 77204 210354 0 123189 77204 210355 0 123190 77204 210356 0 123191 77204 210357 0 123192 77204 210358 0 123193 77204 210359 0 123194 77204 210360 0 123195 77204 210361 0 123196 77204 210362 0 123197 77204 210363 0 123198 77204 210364 0 123199 77204 210365 0 123200 77204 210366 0 123201 77204 210367 0 123202 77204 210368 0 123203 77204 210369 0 123204 77204 210370 0 123205 77204 210371 0 123206 77204 210372 0 123207 77204 210373 0 123208 77204 210374 0 123209 77204 210375 0 123210 77204 210376 0 123211 77204 210377 0 123212 77204 210378 0 123213 77204 210379 0 123214 77204 210380 0 123215 77205 210382 0 123216 77205 210383 0 123217 77206 210385 0 123218 77206 210386 0 123219 77206 210387 0 123220 77206 210388 0 123221 77206 210389 0 123222 77206 210390 0 123223 77206 210391 0 123224 77207 210393 0 123225 77207 210394 0 123226 77207 210395 0 123227 77207 210396 0 123228 77207 210397 0 123229 77207 210398 0 123230 77207 210399 0 123231 77207 210400 0 123232 77207 210401 0 123233 77207 210402 0 123234 77207 210403 0 123235 77208 210405 0 123236 77208 210406 0 123237 77208 210407 0 123238 77208 210408 0 123239 77208 210409 0 123240 77208 210410 0 123241 77208 210411 0 123242 77208 210412 0 123243 77208 210413 0 123244 77208 210153 0 123245 77208 210133 0 123246 77208 210414 0 123247 77208 210415 0 123248 77208 210416 0 123249 77208 210417 0 123250 77208 210418 0 123251 77208 210419 0 123252 77208 210420 0 123253 77208 210421 0 123254 77208 210227 0 123255 77208 210422 0 123256 77208 210423 0 123257 77208 210424 0 123258 77208 210425 0 123259 77208 210426 0 123260 77208 210427 0 123261 77208 210428 0 123262 77208 210429 0 123263 77208 210430 0 123264 77208 210431 0 123265 77208 210432 0 123266 77208 210433 0 123267 77208 210434 0 123268 77208 210435 0 123269 77208 210436 0 123270 77208 210437 0 123271 77208 210438 0 123272 77208 210439 0 123273 77208 210440 0 123274 77208 210441 0 123275 77208 210442 0 123276 77208 210443 0 123277 77208 210444 0 123278 77208 210445 0 123279 77208 210446 0 123280 77208 210447 0 123281 77208 210448 0 123282 77208 210449 0 123283 77208 210450 0 123284 77208 210451 0 123285 77208 210452 0 123286 77208 210453 0 123287 77208 210454 0 123288 77208 210455 0 123289 77208 210456 0 123290 77208 210457 0 123291 77208 210458 0 123292 77208 210459 0 123293 77208 210460 0 123294 77208 210461 0 123295 77208 210462 0 123296 77208 210463 0 123297 77208 210464 0 123298 77208 210465 0 123299 77208 210466 0 123300 77208 210467 0 123301 77208 210468 0 123302 77208 210469 0 123303 77208 210470 0 123304 77208 210471 0 123305 77209 210473 0 123306 77209 210474 0 123307 77209 210475 0 123308 77209 210476 0 123309 77209 210477 0 123310 77209 210478 0 123311 77209 210479 0 123312 77210 210481 0 123313 77210 210482 0 123314 77210 210483 0 123315 77210 210484 0 123316 77210 210485 0 123317 77210 210486 0 123318 77210 210092 0 123319 77210 210487 0 123320 77210 210488 0 123321 77210 210489 0 123322 77210 210490 0 123323 77210 210491 0 123324 77210 210492 0 123325 77210 210493 0 123326 77210 210494 0 123327 77210 210495 0 123328 77211 210499 0 123329 77211 210500 0 123330 77211 210501 0 123331 77211 210502 0 123332 77211 210503 0 123333 77211 210504 0 123334 77215 210507 0 123335 77215 210508 0 123336 77215 210509 0 123337 77215 210510 0 123338 77215 210218 0 123339 77215 210511 0 123340 77215 210512 0 123341 77215 210513 0 123342 77215 210222 0 123343 77215 210514 0 123344 77216 210516 0 123345 77216 210517 0 123346 77216 210518 0 123347 77216 210519 0 123348 77216 210520 0 123349 77216 210153 0 123350 77216 210133 0 123351 77216 210521 0 123352 77216 210522 0 123353 77216 210523 0 123354 77216 210524 0 123355 77216 210525 0 123356 77216 210526 0 123357 77216 210527 0 123358 77216 210528 0 123359 77216 210529 0 123360 77216 210530 0 123361 77216 210531 0 123362 77216 210532 0 123363 77216 210364 0 123364 77216 210533 0 123365 77216 210534 0 123366 77216 210535 0 123367 77216 210536 0 123368 77216 210537 0 123369 77216 210538 0 123370 77217 210540 0 123371 77217 210153 0 123372 77217 210541 0 123373 77217 210542 0 123374 77217 210543 0 123375 77217 210544 0 123376 77217 210545 0 123377 77217 210546 0 123378 77217 210547 0 123379 77218 210549 0 123380 77218 210550 0 123381 77218 210551 0 123382 77218 210153 0 123383 77218 210552 0 123384 77218 210553 0 123385 77218 210554 0 123386 77218 210555 0 123387 77218 210556 0 123388 77218 210557 0 123389 77218 210558 0 123390 77218 210559 0 123391 77218 210560 0 123392 77218 210561 0 123393 77219 210563 0 123394 77219 210564 0 123395 77219 210565 0 123396 77219 210566 0 123397 77219 210567 0 123398 77219 210568 0 123399 77219 210569 0 123400 77220 210571 0 123401 77220 210572 0 123402 77221 210574 0 123403 77221 210575 0 123404 77221 210576 0 123405 77221 210153 0 123406 77221 210577 0 123407 77221 210578 0 123408 77221 210579 0 123409 77221 210580 0 123410 77221 210581 0 123411 77221 210582 0 123412 77221 210583 0 123413 77221 210584 0 123414 77221 210585 0 123415 77221 210586 0 123416 77221 210587 0 123417 77221 210588 0 123418 77221 210589 0 123419 77221 210590 0 123420 77221 210591 0 123421 77221 210592 0 123422 77221 210593 0 123423 77221 210594 0 123424 77221 210595 0 123425 77221 210596 0 123426 77221 210597 0 123427 77221 210598 0 123428 77221 210599 0 123429 77221 210600 0 123430 77221 210601 0 123431 77221 210602 0 123432 77221 210603 0 123433 77221 210604 0 123434 77221 210605 0 123435 77221 210606 0 123436 77221 210607 0 123437 77221 210608 0 123438 77221 210609 0 123439 77221 210610 0 123440 77221 210611 0 123441 77221 210612 0 123442 77221 210613 0 123443 77221 210614 0 123444 77221 210615 0 123445 77221 210616 0 123446 77221 210617 0 123447 77221 210618 0 123448 77221 210619 0 123449 77221 210620 0 123450 77221 210621 0 123451 77221 210622 0 123452 77221 210623 0 123453 77221 210624 0 123454 77221 210625 0 123455 77221 210626 0 123456 77221 210627 0 123457 77221 210628 0 123458 77221 210629 0 123459 77221 210630 0 123460 77221 210631 0 123461 77221 210632 0 123462 77221 210633 0 123463 77221 210634 0 123464 77221 210635 0 123465 77221 210636 0 123466 77221 210637 0 123467 77221 210638 0 123468 77221 210639 0 123469 77221 210640 0 123470 77221 210641 0 123471 77221 210642 0 123472 77221 210643 0 123473 77221 210644 0 123474 77221 210645 0 123475 77221 210646 0 123476 77221 210647 0 123477 77221 210648 0 123478 77221 210649 0 123479 77221 210650 0 123480 77221 210651 0 123481 77221 210652 0 123482 77221 210653 0 123483 77221 210654 0 123484 77221 210655 0 123485 77221 210656 0 123486 77221 210657 0 123487 77221 210658 0 123488 77221 210659 0 123489 77221 210660 0 123490 77221 210661 0 123491 77221 210662 0 123492 77221 210663 0 123493 77221 210664 0 123494 77221 210665 0 123495 77221 210666 0 123496 77221 210667 0 123497 77221 210668 0 123498 77221 210669 0 123499 77221 210670 0 123500 77221 210671 0 123501 77221 210672 0 123502 77221 210673 0 123503 77221 210674 0 123504 77221 210675 0 123505 77221 210676 0 123506 77221 210677 0 123507 77221 210678 0 123508 77221 210679 0 123509 77221 210680 0 123510 77221 210681 0 123511 77221 210682 0 123512 77221 210683 0 123513 77222 210685 0 123514 77223 210687 0 123515 77223 210688 0 123516 77223 210689 0 123517 77223 210690 0 123518 77223 210691 0 123519 77223 210692 0 123520 77223 210693 0 123521 77223 210694 0 123522 77223 210695 0 123523 77223 210696 0 123524 77223 210697 0 123525 77223 210698 0 123526 77223 210699 0 123527 77223 210700 0 123528 77223 210701 0 123529 77223 210702 0 123530 77223 210703 0 123531 77223 210704 0 123532 77223 210705 0 123533 77224 210708 0 123534 77224 210709 0 123535 77224 210710 0 123536 77224 210711 0 123537 77224 210712 0 123538 77224 210713 0 123539 77224 210714 0 123540 77224 210715 0 123541 77224 210716 0 123542 77224 210717 0 123543 77224 210718 0 123544 77224 210719 0 123545 77224 210720 0 123546 77224 210721 0 123547 77224 210722 0 123548 77224 210723 0 123549 77224 210724 0 123550 77224 210725 0 123551 77224 210726 0 123552 77224 210727 0 123553 77224 210728 0 123554 77224 210729 0 123555 77224 210730 0 123556 77224 210731 0 123557 77224 210732 0 123558 77224 210733 0 123559 77224 210734 0 123560 77224 210735 0 123561 77224 210736 0 123562 77224 210737 0 123563 77224 210738 0 123564 77224 210739 0 123565 77224 210740 0 123566 77224 210741 0 123567 77224 210742 0 123568 77224 210743 0 123569 77224 210744 0 123570 77224 210745 0 123571 77224 210746 0 123572 77224 210747 0 123573 77224 210748 0 123574 77224 210749 0 123575 77224 210750 0 123576 77224 210751 0 123577 77224 210752 0 123578 77224 210753 0 123579 77224 210754 0 123580 77224 210755 0 123581 77224 210756 0 123582 77224 210757 0 123583 77224 210758 0 123584 77224 210759 0 123585 77224 210760 0 123586 77224 210761 0 123587 77224 210762 0 123588 77224 210763 0 123589 77224 210764 0 123590 77224 210765 0 123591 77224 210766 0 123592 77224 210767 0 123593 77224 210768 0 123594 77224 210769 0 123595 77224 210770 0 123596 77224 210771 0 123597 77224 210222 0 123598 77224 210772 0 123599 77224 210773 0 123600 77224 210774 0 123601 77224 210775 0 123602 77224 210776 0 123603 77224 210777 0 123604 77224 210778 0 123605 77226 210780 0 123606 77226 210781 0 123607 77226 210782 0 123608 77226 210783 0 123609 77226 210784 0 123610 77226 210785 0 123611 77226 210153 0 123612 77226 210786 0 123613 77226 210787 0 123614 77226 210788 0 123615 77226 210789 0 123616 77226 210790 0 123617 77226 210791 0 123618 77226 210792 0 123619 77227 210794 0 123620 77227 210795 0 123621 77227 210796 0 123622 77227 210797 0 123623 77227 210092 0 123624 77227 210798 0 123625 77227 210799 0 123626 77227 210800 0 123627 77227 210801 0 123628 77227 210802 0 123629 77227 210803 0 123630 77227 210804 0 123631 77227 210805 0 123632 77227 210222 0 123633 77228 210807 0 123634 77228 210808 0 123635 77228 210809 0 123636 77228 210153 0 123637 77228 210092 0 123638 77228 210810 0 123639 77228 210811 0 123640 77228 210812 0 123641 77228 210813 0 123642 77228 210814 0 123643 77228 210815 0 123644 77228 210816 0 123645 77228 210817 0 123646 77229 210819 0 123647 77229 210820 0 123648 77229 210821 0 123649 77229 210153 0 123650 77229 210092 0 123651 77229 210822 0 123652 77229 210823 0 123653 77229 210824 0 123654 77229 210825 0 123655 77229 210826 0 123656 77229 210827 0 123657 77229 210828 0 123658 77229 210829 0 123659 77230 210831 0 123660 77230 210832 0 123661 77230 210833 0 123662 77230 210834 0 123663 77230 210835 0 123664 77230 210836 0 123665 77230 210133 0 123666 77230 210153 0 123667 77230 210837 0 123668 77230 210227 0 123669 77230 210838 0 123670 77230 210839 0 123671 77230 210840 0 123672 77230 210841 0 123673 77230 210842 0 123674 77230 210843 0 123675 77230 210844 0 123676 77230 210845 0 123677 77230 210846 0 123678 77230 210847 0 123679 77230 210371 0 123680 77230 210294 0 123681 77230 210848 0 123682 77230 210849 0 123683 77230 210850 0 123684 77230 210851 0 123685 77230 210852 0 123686 77230 210853 0 123687 77230 210854 0 123688 77230 210855 0 123689 77231 210857 0 123690 77232 210859 0 123691 77232 210860 0 123692 77232 210861 0 123693 77233 210863 0 123694 77233 210864 0 123695 77233 210865 0 123696 77233 210866 0 123697 77234 210868 0 123698 77234 210869 0 123699 77234 210870 0 123700 77234 210871 0 123701 77234 210872 0 123702 77234 210873 0 123703 77234 210874 0 123704 77234 210875 0 123705 77234 210153 0 123706 77234 210876 0 123707 77234 210877 0 123708 77234 210878 0 123709 77234 210879 0 123710 77234 210880 0 123711 77234 210881 0 123712 77234 210882 0 123713 77234 210883 0 123714 77234 210884 0 123715 77234 210885 0 123716 77234 210886 0 123717 77234 210887 0 123718 77234 210888 0 123719 77234 210889 0 123720 77234 210890 0 123721 77234 210891 0 123722 77234 210892 0 123723 77234 210893 0 123724 77234 210445 0 123725 77234 210894 0 123726 77234 210895 0 123727 77234 210896 0 123728 77234 210897 0 123729 77234 210898 0 123730 77234 210899 0 123731 77234 210900 0 123732 77234 210901 0 123733 77234 210902 0 123734 77234 210903 0 123735 77234 210904 0 123736 77234 210905 0 123737 77235 210907 0 123738 77235 210908 0 123739 77236 210910 0 123740 77236 210911 0 123741 77236 210912 0 123742 77236 210913 0 123743 77236 210914 0 123744 77237 210916 0 123745 77237 210917 0 123746 77237 210134 0 123747 77237 210918 0 123748 77237 210919 0 123749 77237 210132 0 123750 77237 210920 0 123751 77237 210921 0 123752 77237 210922 0 123753 77237 210923 0 123754 77237 210924 0 123755 77237 210925 0 123756 77237 210926 0 123757 77237 210927 0 123758 77237 210928 0 123759 77237 210929 0 123760 77238 210931 0 123761 77239 210933 0 123762 77239 210934 0 123763 77239 210935 0 123764 77239 210153 0 123765 77239 210936 0 123766 77239 210937 0 123767 77239 210838 0 123768 77239 210938 0 123769 77239 210939 0 123770 77239 210940 0 123771 77239 210941 0 123772 77239 210942 0 123773 77239 210943 0 123774 77239 210944 0 123775 77239 210945 0 123776 77239 210946 0 123777 77239 210947 0 123778 77239 210532 0 123779 77239 210948 0 123780 77239 210949 0 123781 77239 210950 0 123782 77239 210951 0 123783 77239 210952 0 123784 77239 210294 0 123785 77239 210953 0 123786 77239 210371 0 123787 77239 210954 0 123788 77239 210955 0 123789 77239 210956 0 123790 77239 210957 0 123791 77239 210958 0 123792 77239 210959 0 123793 77240 210961 0 123794 77240 210962 0 123795 77240 210963 0 123796 77240 210964 0 123797 77240 210965 0 123798 77240 210966 0 123799 77240 210967 0 123800 77240 210968 0 123801 77240 210969 0 123802 77240 210970 0 123803 77240 210222 0 123804 77240 210971 0 123805 77240 210972 0 123806 77240 210973 0 123807 77241 210975 0 123808 77241 210976 0 123809 77241 210977 0 123810 77241 210978 0 123811 77242 210980 0 123812 77242 210981 0 123813 77242 210982 0 123814 77242 210983 0 123815 77242 210984 0 123816 77243 210986 0 123817 77243 210987 0 123818 77244 210153 0 123819 77244 210989 0 123820 77244 210990 0 123821 77244 210991 0 123822 77244 210092 0 123823 77244 210992 0 123824 77244 210993 0 123825 77244 210994 0 123826 77244 210995 0 123827 77245 210997 0 123828 77245 210998 0 123829 77245 210999 0 123830 77245 211000 0 123831 77245 211001 0 123832 77245 211002 0 123833 77245 211003 0 123834 77245 211004 0 123835 77246 211006 0 123836 77246 211007 0 123837 77246 211008 0 123838 77246 211009 0 123839 77246 211010 0 123840 77247 211012 0 123841 77247 211013 0 123842 77247 211014 0 123843 77247 211015 0 123844 77247 211016 0 123845 77247 211017 0 123846 77247 211018 0 123847 77247 211019 0 123848 77247 211020 0 123849 77247 211021 0 123850 77247 211022 0 123851 77247 211023 0 123852 77247 211024 0 123853 77247 211025 0 123854 77247 211026 0 123855 77247 211027 0 123856 77248 211029 0 123857 77248 211030 0 123858 77248 211031 0 123859 77248 211032 0 123860 77248 211033 0 123861 77248 211034 0 123862 77248 211035 0 123863 77248 211036 0 123864 77248 211037 0 123865 77248 211038 0 123866 77248 211039 0 123867 77248 211040 0 123868 77248 211041 0 123869 77248 211042 0 123870 77248 211043 0 123871 77248 211044 0 123872 77248 211045 0 123873 77248 211046 0 123874 77248 211047 0 123875 77248 211048 0 123876 77248 210222 0 123877 77248 210182 0 123878 77248 211049 0 123879 77248 211050 0 123880 77248 211051 0 123881 77249 211053 0 123882 77249 211054 0 123883 77249 211055 0 123884 77249 211056 0 123885 77249 211057 0 123886 77249 211058 0 123887 77249 210133 0 123888 77249 211059 0 123889 77249 211060 0 123890 77249 211061 0 123891 77249 211062 0 123892 77249 211063 0 123893 77249 210921 0 123894 77249 211064 0 123895 77249 211065 0 123896 77249 211066 0 123897 77249 211067 0 123898 77249 211068 0 123899 77249 211069 0 123900 77249 211070 0 123901 77249 210229 0 123902 77249 211071 0 123903 77249 211072 0 123904 77249 211073 0 123905 77249 211074 0 123906 77249 211075 0 123907 77249 211076 0 123908 77249 210285 0 123909 77249 211077 0 123910 77249 211078 0 123911 77249 211079 0 123912 77249 211080 0 123913 77249 211081 0 123914 77249 211082 0 123915 77249 211083 0 123916 77249 211084 0 123917 77249 210222 0 123918 77249 211085 0 123919 77249 211086 0 123920 77249 211087 0 123921 77249 211088 0 123922 77249 211089 0 123923 77249 211090 0 123924 77249 211091 0 123925 77249 211092 0 123926 77251 211095 0 123927 77251 211096 0 123928 77251 211097 0 123929 77251 211098 0 123930 77252 211100 0 123931 77252 211101 0 123932 77253 211103 0 123933 77253 211104 0 123934 77254 211106 0 123935 77254 211107 0 123936 77254 211108 0 123937 77254 210153 0 123938 77254 211109 0 123939 77254 211110 0 123940 77254 211111 0 123941 77254 210921 0 123942 77254 210838 0 123943 77254 211112 0 123944 77254 211113 0 123945 77254 211114 0 123946 77254 211115 0 123947 77254 211116 0 123948 77254 211117 0 123949 77254 211118 0 123950 77254 210844 0 123951 77254 211119 0 123952 77254 211120 0 123953 77254 211121 0 123954 77254 211122 0 123955 77254 211123 0 123956 77254 211124 0 123957 77254 211125 0 123958 77254 210235 0 123959 77254 210950 0 123960 77254 211126 0 123961 77254 211127 0 123962 77254 211128 0 123963 77254 211129 0 123964 77254 210294 0 123965 77254 210953 0 123966 77254 211130 0 123967 77254 211131 0 123968 77254 211132 0 123969 77254 211133 0 123970 77254 211134 0 123971 77254 211135 0 123972 77254 211136 0 123973 77254 211137 0 123974 77254 211138 0 123975 77254 211139 0 123976 77255 211141 0 123977 77255 211142 0 123978 77255 211143 0 123979 77255 211144 0 123980 77255 211145 0 123981 77255 211146 0 123982 77255 211147 0 123983 77255 211148 0 123984 77256 211150 0 123985 77256 211151 0 123986 77256 211152 0 123987 77256 211153 0 123988 77256 211154 0 123989 77256 211155 0 123990 77256 211156 0 123991 77256 211157 0 123992 77256 211158 0 123993 77256 211159 0 123994 77256 210838 0 123995 77256 211160 0 123996 77256 210227 0 123997 77256 211161 0 123998 77256 210921 0 123999 77256 211162 0 124000 77256 211163 0 124001 77256 211164 0 124002 77256 211165 0 124003 77256 211166 0 124004 77256 211167 0 124005 77256 211168 0 124006 77256 211169 0 124007 77256 211170 0 124008 77256 211171 0 124009 77256 211172 0 124010 77256 211173 0 124011 77256 211174 0 124012 77256 211175 0 124013 77256 211176 0 124014 77256 211177 0 124015 77256 211178 0 124016 77256 210235 0 124017 77256 211179 0 124018 77256 211180 0 124019 77256 210371 0 124020 77256 211181 0 124021 77256 211182 0 124022 77256 210294 0 124023 77256 211183 0 124024 77256 211184 0 124025 77256 211185 0 124026 77256 211186 0 124027 77256 211187 0 124028 77256 211188 0 124029 77256 211189 0 124030 77256 211190 0 124031 77256 211191 0 124032 77256 211192 0 124033 77257 211194 0 124034 77257 211195 0 124035 77257 211196 0 124036 77257 211197 0 124037 77257 211198 0 124038 77257 211199 0 124039 77257 210133 0 124040 77257 211200 0 124041 77257 211201 0 124042 77257 211202 0 124043 77257 211203 0 124044 77257 211204 0 124045 77257 211205 0 124046 77257 211206 0 124047 77257 211207 0 124048 77257 211208 0 124049 77257 210844 0 124050 77257 211209 0 124051 77257 211117 0 124052 77257 211210 0 124053 77257 211211 0 124054 77257 211212 0 124055 77257 211213 0 124056 77257 211214 0 124057 77257 211215 0 124058 77257 211216 0 124059 77257 211217 0 124060 77257 211218 0 124061 77257 211219 0 124062 77257 211220 0 124063 77257 211221 0 124064 77257 210235 0 124065 77257 211222 0 124066 77257 211223 0 124067 77257 211224 0 124068 77257 211225 0 124069 77257 211226 0 124070 77257 211227 0 124071 77257 211228 0 124072 77257 211229 0 124073 77257 211230 0 124074 77257 210222 0 124075 77257 211231 0 124076 77257 211232 0 124077 77257 211233 0 124078 77257 211234 0 124079 77257 211235 0 124080 77258 211237 0 124081 77258 211238 0 124082 77258 211239 0 124083 77258 211240 0 124084 77258 211241 0 124085 77258 210153 0 124086 77258 211242 0 124087 77258 211243 0 124088 77258 211244 0 124089 77258 211245 0 124090 77258 210222 0 124091 77258 211246 0 124092 77259 211248 0 124093 77259 211249 0 124094 77259 211250 0 124095 77259 211251 0 124096 77259 211252 0 124097 77259 211253 0 124098 77259 211254 0 124099 77259 211255 0 124100 77259 211256 0 124101 77259 211257 0 124102 77259 211258 0 124103 77259 211259 0 124104 77259 211260 0 124105 77259 211261 0 124106 77259 211262 0 124107 77259 211263 0 124108 77259 211264 0 124109 77259 211265 0 124110 77260 211267 0 124111 77260 211268 0 124112 77260 211269 0 124113 77260 211270 0 124114 77260 211271 0 124115 77260 211272 0 124116 77260 211273 0 124117 77260 210153 0 124118 77260 211274 0 124119 77260 211275 0 124120 77260 210133 0 124121 77260 211276 0 124122 77260 211277 0 124123 77260 211278 0 124124 77260 211279 0 124125 77260 211280 0 124126 77260 211281 0 124127 77260 210921 0 124128 77260 211282 0 124129 77260 211283 0 124130 77260 211284 0 124131 77260 211285 0 124132 77260 211286 0 124133 77260 211287 0 124134 77260 211288 0 124135 77260 211289 0 124136 77260 211290 0 124137 77260 211291 0 124138 77260 211292 0 124139 77260 211293 0 124140 77260 211294 0 124141 77260 211295 0 124142 77260 210844 0 124143 77260 211296 0 124144 77260 211297 0 124145 77260 211298 0 124146 77260 211299 0 124147 77260 211300 0 124148 77260 211301 0 124149 77260 211302 0 124150 77260 211303 0 124151 77260 211215 0 124152 77260 211304 0 124153 77260 211305 0 124154 77260 210235 0 124155 77260 211306 0 124156 77260 211307 0 124157 77260 211308 0 124158 77260 211309 0 124159 77260 211310 0 124160 77260 211311 0 124161 77260 211312 0 124162 77260 210371 0 124163 77260 211313 0 124164 77260 211314 0 124165 77260 211315 0 124166 77260 211316 0 124167 77260 211317 0 124168 77260 211086 0 124169 77260 211318 0 124170 77260 211319 0 124171 77260 211320 0 124172 77260 211321 0 124173 77260 211322 0 124174 77260 211323 0 124175 77260 211324 0 124176 77260 211325 0 124177 77260 211326 0 124178 77261 211328 0 124179 77261 211329 0 124180 77261 211330 0 124181 77261 211331 0 124182 77261 211332 0 124183 77261 211333 0 124184 77261 211334 0 124185 77261 211335 0 124186 77261 211336 0 124187 77261 211337 0 124188 77261 211338 0 124189 77261 211339 0 124190 77261 211340 0 124191 77261 211341 0 124192 77261 211342 0 124193 77261 211343 0 124194 77261 211344 0 124195 77261 211345 0 124196 77261 211346 0 124197 77261 211347 0 124198 77261 211348 0 124199 77261 211349 0 124200 77261 211350 0 124201 77261 211351 0 124202 77261 211352 0 124203 77261 211353 0 124204 77261 211354 0 124205 77262 211356 0 124206 77262 211357 0 124207 77262 211358 0 124208 77262 211359 0 124209 77262 211360 0 124210 77262 211361 0 124211 77262 211362 0 124212 77262 211363 0 124213 77262 211364 0 124214 77262 211365 0 124215 77262 210921 0 124216 77262 211366 0 124217 77262 211367 0 124218 77262 211368 0 124219 77262 210159 0 124220 77262 210227 0 124221 77262 211369 0 124222 77262 211370 0 124223 77262 211371 0 124224 77262 211372 0 124225 77262 211373 0 124226 77262 211374 0 124227 77262 211375 0 124228 77262 210445 0 124229 77262 211376 0 124230 77262 211377 0 124231 77262 211378 0 124232 77262 211379 0 124233 77262 211380 0 124234 77262 211381 0 124235 77262 211382 0 124236 77262 211383 0 124237 77262 211384 0 124238 77262 211385 0 124239 77262 210222 0 124240 77262 211386 0 124241 77262 211387 0 124242 77262 211388 0 124243 77262 211389 0 124244 77262 211390 0 124245 77262 211391 0 124246 77262 211392 0 124247 77262 211393 0 124248 77262 211394 0 124249 77263 211396 0 124250 77264 211398 0 124251 77264 211399 0 124252 77264 211400 0 124253 77264 211401 0 124254 77264 211402 0 124255 77264 211403 0 124256 77264 211404 0 124257 77264 211405 0 124258 77264 211406 0 124259 77264 211407 0 124260 77264 211408 0 124261 77264 211409 0 124262 77264 211410 0 124263 77264 211411 0 124264 77264 211412 0 124265 77264 210153 0 124266 77264 211413 0 124267 77264 211414 0 124268 77264 211415 0 124269 77264 211416 0 124270 77264 211417 0 124271 77264 211418 0 124272 77264 211419 0 124273 77264 211420 0 124274 77264 211421 0 124275 77264 211422 0 124276 77264 211423 0 124277 77264 211424 0 124278 77264 211425 0 124279 77264 211426 0 124280 77264 211427 0 124281 77264 211428 0 124282 77264 211429 0 124283 77264 210364 0 124284 77264 211430 0 124285 77264 211431 0 124286 77264 211432 0 124287 77264 210366 0 124288 77264 211433 0 124289 77264 211434 0 124290 77264 210458 0 124291 77264 211435 0 124292 77264 211436 0 124293 77264 211437 0 124294 77264 211438 0 124295 77264 211439 0 124296 77264 211440 0 124297 77264 211441 0 124298 77264 211442 0 124299 77264 211443 0 124300 77264 211444 0 124301 77265 211446 0 124302 77265 211447 0 124303 77265 211448 0 124304 77265 211449 0 124305 77265 211450 0 124306 77265 211451 0 124307 77265 211452 0 124308 77265 210154 0 124309 77265 211453 0 124310 77265 211454 0 124311 77265 211455 0 124312 77265 211456 0 124313 77265 211457 0 124314 77265 211458 0 124315 77265 211459 0 124316 77265 211460 0 124317 77265 211040 0 124318 77265 211461 0 124319 77265 211042 0 124320 77265 211462 0 124321 77265 211463 0 124322 77265 211464 0 124323 77265 211465 0 124324 77265 211466 0 124325 77265 211467 0 124326 77265 210294 0 124327 77265 211468 0 124328 77265 210182 0 124329 77265 211469 0 124330 77265 210181 0 124331 77265 211470 0 124332 77265 211471 0 124333 77267 211474 0 124334 77267 211475 0 124335 77267 211476 0 124336 77267 211477 0 124337 77267 211478 0 124338 77267 211479 0 124339 77267 211480 0 124340 77268 211482 0 124341 77268 211483 0 124342 77268 211484 0 124343 77268 211485 0 124344 77268 211486 0 124345 77268 211487 0 124346 77268 211488 0 124347 77268 211489 0 124348 77268 211490 0 124349 77269 211492 0 124350 77270 211494 0 124351 77270 211495 0 124352 77270 210153 0 124353 77270 211496 0 124354 77270 211497 0 124355 77270 211498 0 124356 77270 210092 0 124357 77270 211499 0 124358 77270 211500 0 124359 77270 211501 0 124360 77270 211502 0 124361 77271 211504 0 124362 77271 211466 0 124363 77271 211505 0 124364 77272 211507 0 124365 77272 211508 0 124366 77272 211509 0 124367 77272 211510 0 124368 77272 211511 0 124369 77273 210153 0 124370 77273 211513 0 124371 77273 211514 0 124372 77273 211515 0 124373 77273 211516 0 124374 77273 211517 0 124375 77273 211518 0 124376 77273 211519 0 124377 77273 210218 0 124378 77273 211520 0 124379 77273 211521 0 124380 77273 211522 0 124381 77273 211523 0 124382 77273 211524 0 124383 77273 211525 0 124384 77273 211526 0 124385 77274 211528 0 124386 77274 210092 0 124387 77274 211529 0 124388 77274 211530 0 124389 77274 211531 0 124390 77274 211532 0 124391 77274 211533 0 124392 77274 210222 0 124393 77276 211536 0 124394 77276 211537 0 124395 77276 211538 0 124396 77276 211539 0 124397 77276 211540 0 124398 77276 211541 0 124399 77276 211542 0 124400 77276 211543 0 124401 77276 211544 0 124402 77276 211545 0 124403 77276 211546 0 124404 77276 211547 0 124405 77276 211548 0 124406 77276 211549 0 124407 77276 210364 0 124408 77276 211550 0 124409 77276 211551 0 124410 77276 211552 0 124411 77276 211553 0 124412 77276 211554 0 124413 77276 211555 0 124414 77276 211556 0 124415 77276 211557 0 124416 77276 211558 0 124417 77277 211560 0 124418 77277 211561 0 124419 77277 211562 0 124420 77277 211563 0 124421 77277 211564 0 124422 77277 211565 0 124423 77277 211566 0 124424 77277 211567 0 124425 77277 211568 0 124426 77277 211569 0 124427 77277 211570 0 124428 77278 211572 0 124429 77278 211573 0 124430 77278 211574 0 124431 77278 211575 0 124432 77278 211576 0 124433 77278 211577 0 124434 77278 211578 0 124435 77278 211579 0 124436 77278 211580 0 124437 77278 211581 0 124438 77278 211582 0 124439 77278 210532 0 124440 77278 211583 0 124441 77278 210364 0 124442 77278 211553 0 124443 77278 211584 0 124444 77278 211585 0 124445 77278 211586 0 124446 77279 211588 0 124447 77279 211589 0 124448 77279 211590 0 124449 77279 211591 0 124450 77279 211592 0 124451 77279 211593 0 124452 77279 211594 0 124453 77279 211595 0 124454 77279 211596 0 124455 77279 211597 0 124456 77279 211598 0 124457 77279 211599 0 124458 77279 211600 0 124459 77279 211601 0 124460 77280 211603 0 124461 77280 211604 0 124462 77280 211605 0 124463 77280 211606 0 124464 77280 211607 0 124465 77280 211608 0 124466 77280 211609 0 124467 77281 211611 0 124468 77281 211612 0 124469 77281 211613 0 124470 77281 211614 0 124471 77281 211615 0 124472 77281 210133 0 124473 77281 211616 0 124474 77281 211617 0 124475 77281 211618 0 124476 77281 211619 0 124477 77281 211620 0 124478 77281 211621 0 124479 77281 211622 0 124480 77281 210532 0 124481 77281 210364 0 124482 77281 211623 0 124483 77281 211624 0 124484 77281 211625 0 124485 77281 211626 0 124486 77281 211627 0 124487 77281 211628 0 124488 77281 211629 0 124489 77281 211630 0 124490 77281 211631 0 124491 77281 211632 0 124492 77281 211633 0 124493 77281 211634 0 124494 77281 211635 0 124495 77281 211636 0 124496 77282 211638 0 124497 77282 211639 0 124498 77282 211640 0 124499 77282 211641 0 124500 77282 210520 0 124501 77282 210133 0 124502 77282 211642 0 124503 77282 211643 0 124504 77282 211644 0 124505 77282 211645 0 124506 77282 211646 0 124507 77282 211647 0 124508 77282 211648 0 124509 77282 211649 0 124510 77282 211650 0 124511 77282 211651 0 124512 77282 211652 0 124513 77282 211653 0 124514 77282 211654 0 124515 77282 211655 0 124516 77282 211656 0 124517 77282 211657 0 124518 77282 211658 0 124519 77282 211659 0 124520 77282 211660 0 124521 77282 211661 0 124522 77282 211662 0 124523 77282 211663 0 124524 77282 210285 0 124525 77282 211664 0 124526 77282 211665 0 124527 77282 211666 0 124528 77282 211667 0 124529 77282 211668 0 124530 77282 211669 0 124531 77282 211670 0 124532 77282 211671 0 124533 77282 211672 0 124534 77282 211673 0 124535 77282 211674 0 124536 77282 211675 0 124537 77282 211676 0 124538 77282 211677 0 124539 77283 211679 0 124540 77283 211680 0 124541 77283 211681 0 124542 77283 211682 0 124543 77283 211683 0 124544 77283 211684 0 124545 77283 211685 0 124546 77283 211686 0 124547 77283 211687 0 124548 77283 211688 0 124549 77283 211689 0 124550 77283 211690 0 124551 77283 211691 0 124552 77283 211692 0 124553 77283 211693 0 124554 77283 210360 0 124555 77283 211694 0 124556 77283 211695 0 124557 77283 211696 0 124558 77283 211697 0 124559 77283 211698 0 124560 77283 211699 0 124561 77283 211700 0 124562 77283 210364 0 124563 77283 211701 0 124564 77283 211702 0 124565 77283 211703 0 124566 77283 211704 0 124567 77283 211705 0 124568 77283 211706 0 124569 77283 211707 0 124570 77283 211708 0 124571 77283 211709 0 124572 77283 211710 0 124573 77283 211711 0 124574 77283 211712 0 124575 77283 211713 0 124576 77284 211715 0 124577 77284 211716 0 124578 77284 211717 0 124579 77284 211718 0 124580 77284 211719 0 124581 77284 211720 0 124582 77284 211721 0 124583 77284 211722 0 124584 77284 210421 0 124585 77284 211723 0 124586 77284 211724 0 124587 77284 211725 0 124588 77284 211726 0 124589 77284 211727 0 124590 77284 211728 0 124591 77284 211729 0 124592 77284 211730 0 124593 77284 211731 0 124594 77284 211732 0 124595 77284 211733 0 124596 77284 211734 0 124597 77284 211735 0 124598 77284 211736 0 124599 77284 211737 0 124600 77284 211738 0 124601 77284 211739 0 124602 77284 211740 0 124603 77284 211741 0 124604 77284 211742 0 124605 77284 211743 0 124606 77284 211744 0 124607 77285 211746 0 124608 77285 211747 0 124609 77285 211748 0 124610 77285 211749 0 124611 77285 211750 0 124612 77285 211751 0 124613 77286 211753 0 124614 77286 210218 0 124615 77286 211754 0 124616 77286 211755 0 124617 77286 211756 0 124618 77287 211758 0 124619 77287 211759 0 124620 77287 211760 0 124621 77287 211761 0 124622 77287 211762 0 124623 77287 211763 0 124624 77287 211764 0 124625 77287 211765 0 124626 77287 211766 0 124627 77287 211767 0 124628 77287 211768 0 124629 77287 211769 0 124630 77287 211770 0 124631 77287 211771 0 124632 77287 211772 0 124633 77287 211773 0 124634 77287 211774 0 124635 77287 211775 0 124636 77287 211776 0 124637 77287 211777 0 124638 77287 211778 0 124639 77287 211779 0 124640 77287 211780 0 124641 77287 211781 0 124642 77287 211782 0 124643 77287 211783 0 124644 77288 211785 0 124645 77288 211786 0 124646 77288 211787 0 124647 77288 211788 0 124648 77288 211789 0 124649 77288 211790 0 124650 77288 211791 0 124651 77288 211792 0 124652 77288 211793 0 124653 77288 211794 0 124654 77288 211795 0 124655 77288 211796 0 124656 77288 210133 0 124657 77288 211797 0 124658 77288 211798 0 124659 77288 211799 0 124660 77288 211800 0 124661 77288 211801 0 124662 77288 211802 0 124663 77288 211803 0 124664 77288 211804 0 124665 77288 211805 0 124666 77288 210159 0 124667 77288 211806 0 124668 77288 210422 0 124669 77288 210227 0 124670 77288 210092 0 124671 77288 211807 0 124672 77288 211808 0 124673 77288 211809 0 124674 77288 211810 0 124675 77288 211811 0 124676 77288 211812 0 124677 77288 211813 0 124678 77288 211814 0 124679 77288 211815 0 124680 77288 211816 0 124681 77288 211817 0 124682 77288 211818 0 124683 77288 211819 0 124684 77288 211820 0 124685 77288 211821 0 124686 77288 211822 0 124687 77288 211823 0 124688 77288 211824 0 124689 77288 211825 0 124690 77288 211826 0 124691 77288 211827 0 124692 77288 211828 0 124693 77288 211829 0 124694 77288 211830 0 124695 77288 211831 0 124696 77288 211832 0 124697 77288 211833 0 124698 77288 211834 0 124699 77288 211377 0 124700 77288 211835 0 124701 77288 211836 0 124702 77288 211837 0 124703 77288 211838 0 124704 77288 211839 0 124705 77288 211840 0 124706 77288 211841 0 124707 77288 211842 0 124708 77288 210235 0 124709 77288 211126 0 124710 77288 211843 0 124711 77288 211844 0 124712 77288 211845 0 124713 77288 211846 0 124714 77288 211847 0 124715 77288 211848 0 124716 77288 211849 0 124717 77288 211850 0 124718 77288 211851 0 124719 77288 211852 0 124720 77288 211853 0 124721 77288 211854 0 124722 77288 210371 0 124723 77288 211855 0 124724 77288 211856 0 124725 77288 211857 0 124726 77288 211858 0 124727 77288 211859 0 124728 77288 211860 0 124729 77288 211861 0 124730 77288 211862 0 124731 77288 211863 0 124732 77288 211864 0 124733 77288 211865 0 124734 77288 211866 0 124735 77288 211867 0 124736 77289 211869 0 124737 77289 211870 0 124738 77289 211871 0 124739 77289 211872 0 124740 77289 210133 0 124741 77289 211873 0 124742 77289 211874 0 124743 77289 211875 0 124744 77289 211876 0 124745 77289 211877 0 124746 77289 210422 0 124747 77289 211878 0 124748 77289 211879 0 124749 77289 210838 0 124750 77289 211880 0 124751 77289 211881 0 124752 77289 211882 0 124753 77289 211883 0 124754 77289 211884 0 124755 77289 211885 0 124756 77289 211886 0 124757 77289 211887 0 124758 77289 211888 0 124759 77289 211889 0 124760 77289 211890 0 124761 77289 211891 0 124762 77289 210844 0 124763 77289 211117 0 124764 77289 211892 0 124765 77289 211893 0 124766 77289 211894 0 124767 77289 211895 0 124768 77289 211896 0 124769 77289 211897 0 124770 77289 211898 0 124771 77289 211899 0 124772 77289 211900 0 124773 77289 211901 0 124774 77289 211902 0 124775 77289 210218 0 124776 77289 211903 0 124777 77289 211904 0 124778 77289 210654 0 124779 77289 211905 0 124780 77289 211906 0 124781 77289 211907 0 124782 77289 211908 0 124783 77289 211909 0 124784 77289 211910 0 124785 77289 211911 0 124786 77289 210294 0 124787 77289 211912 0 124788 77289 211913 0 124789 77289 211914 0 124790 77289 211915 0 124791 77289 211916 0 124792 77289 211917 0 124793 77289 211918 0 124794 77289 211919 0 124795 77289 211920 0 124796 77289 211921 0 124797 77289 211922 0 124798 77289 211923 0 124799 77289 211924 0 124800 77290 211926 0 124801 77290 211927 0 124802 77290 211928 0 124803 77290 211929 0 124804 77290 210092 0 124805 77290 211930 0 124806 77290 211931 0 124807 77290 211932 0 124808 77290 210218 0 124809 77290 211933 0 124810 77290 211934 0 124811 77290 211935 0 124812 77292 211938 0 124813 77292 211939 0 124814 77292 211940 0 124815 77292 211941 0 124816 77292 211942 0 124817 77292 211943 0 124818 77292 211944 0 124819 77292 211945 0 124820 77293 211947 0 124821 77293 211948 0 124822 77293 211949 0 124823 77293 211950 0 124824 77293 211951 0 124825 77293 210133 0 124826 77293 211952 0 124827 77293 211953 0 124828 77293 211954 0 124829 77293 211955 0 124830 77293 211956 0 124831 77293 211957 0 124832 77293 211958 0 124833 77293 211959 0 124834 77293 211960 0 124835 77293 211961 0 124836 77293 211962 0 124837 77293 211963 0 124838 77293 211964 0 124839 77293 211965 0 124840 77293 211966 0 124841 77293 211967 0 124842 77293 211968 0 124843 77294 211970 0 124844 77294 211971 0 124845 77294 211972 0 124846 77294 211973 0 124847 77294 211974 0 124848 77294 210153 0 124849 77294 211975 0 124850 77294 211976 0 124851 77294 211977 0 124852 77294 210133 0 124853 77294 211978 0 124854 77294 211979 0 124855 77294 211980 0 124856 77294 211981 0 124857 77294 210159 0 124858 77294 211982 0 124859 77294 211983 0 124860 77294 211984 0 124861 77294 211985 0 124862 77294 211986 0 124863 77294 211987 0 124864 77294 211988 0 124865 77294 211065 0 124866 77294 211989 0 124867 77294 211990 0 124868 77294 211991 0 124869 77294 211992 0 124870 77294 211993 0 124871 77294 211994 0 124872 77294 211995 0 124873 77294 211996 0 124874 77294 211997 0 124875 77294 211119 0 124876 77294 211998 0 124877 77294 211999 0 124878 77294 212000 0 124879 77294 212001 0 124880 77294 212002 0 124881 77294 212003 0 124882 77294 212004 0 124883 77294 212005 0 124884 77294 212006 0 124885 77294 212007 0 124886 77294 212008 0 124887 77294 212009 0 124888 77294 212010 0 124889 77294 212011 0 124890 77294 212012 0 124891 77294 212013 0 124892 77294 212014 0 124893 77294 212015 0 124894 77294 212016 0 124895 77294 212017 0 124896 77294 212018 0 124897 77294 212019 0 124898 77294 212020 0 124899 77294 210235 0 124900 77294 212021 0 124901 77294 212022 0 124902 77294 211079 0 124903 77294 212023 0 124904 77294 210371 0 124905 77294 211084 0 124906 77294 212024 0 124907 77294 212025 0 124908 77294 212026 0 124909 77294 212027 0 124910 77294 212028 0 124911 77294 212029 0 124912 77294 212030 0 124913 77294 212031 0 124914 77294 212032 0 124915 77294 212033 0 124916 77294 212034 0 124917 77294 212035 0 124918 77294 212036 0 124919 77294 212037 0 124920 77295 212039 0 124921 77295 212040 0 124922 77295 212041 0 124923 77295 212042 0 124924 77295 212043 0 124925 77295 212044 0 124926 77295 212045 0 124927 77295 212046 0 124928 77296 212048 0 124929 77296 212049 0 124930 77296 212050 0 124931 77296 212051 0 124932 77296 210520 0 124933 77296 212052 0 124934 77296 210133 0 124935 77296 212053 0 124936 77296 212054 0 124937 77296 212055 0 124938 77296 212056 0 124939 77296 212057 0 124940 77296 212058 0 124941 77296 212059 0 124942 77296 212060 0 124943 77296 212061 0 124944 77296 212062 0 124945 77296 212063 0 124946 77296 212064 0 124947 77296 212065 0 124948 77296 212066 0 124949 77296 212067 0 124950 77296 212068 0 124951 77296 212069 0 124952 77296 212070 0 124953 77296 212071 0 124954 77296 212072 0 124955 77296 212073 0 124956 77296 212074 0 124957 77296 212075 0 124958 77296 212076 0 124959 77296 212077 0 124960 77296 212078 0 124961 77296 210285 0 124962 77296 212079 0 124963 77296 212080 0 124964 77296 212081 0 124965 77296 212082 0 124966 77296 212083 0 124967 77296 212084 0 124968 77296 212085 0 124969 77296 212086 0 124970 77296 212087 0 124971 77296 212088 0 124972 77296 212089 0 124973 77296 212090 0 124974 77296 212091 0 124975 77296 212092 0 124976 77296 212093 0 124977 77296 212094 0 124978 77296 212095 0 124979 77297 212097 0 124980 77297 212098 0 124981 77297 212099 0 124982 77297 212100 0 124983 77297 212101 0 124984 77298 212103 0 124985 77298 212104 0 124986 77298 212105 0 124987 77298 212106 0 124988 77298 212107 0 124989 77298 212108 0 124990 77298 212109 0 124991 77300 212112 0 124992 77300 212113 0 124993 77300 212114 0 124994 77300 212115 0 124995 77300 212116 0 124996 77300 212117 0 124997 77300 212118 0 124998 77300 212119 0 124999 77300 212120 0 125000 77300 210218 0 125001 77300 212121 0 125002 77300 212122 0 125003 77300 212123 0 125004 77301 212125 0 125005 77302 210153 0 125006 77302 212127 0 125007 77302 212128 0 125008 77302 212129 0 125009 77302 212130 0 125010 77302 212131 0 125011 77302 212132 0 125012 77302 212133 0 125013 77302 212134 0 125014 77302 212135 0 125015 77302 212136 0 125016 77302 211215 0 125017 77302 212137 0 125018 77302 210285 0 125019 77302 212138 0 125020 77302 212139 0 125021 77302 212140 0 125022 77302 212141 0 125023 77302 210371 0 125024 77302 212142 0 125025 77302 212143 0 125026 77302 212144 0 125027 77302 212145 0 125028 77302 212146 0 125029 77303 212148 0 125030 77303 212149 0 125031 77303 212150 0 125032 77304 212152 0 125033 77304 212153 0 125034 77304 212154 0 125035 77304 212155 0 125036 77304 210713 0 125037 77304 210153 0 125038 77304 210133 0 125039 77304 212156 0 125040 77304 212157 0 125041 77304 212158 0 125042 77304 212159 0 125043 77304 212160 0 125044 77304 210838 0 125045 77304 211982 0 125046 77304 211881 0 125047 77304 210159 0 125048 77304 212161 0 125049 77304 212162 0 125050 77304 212163 0 125051 77304 212164 0 125052 77304 210844 0 125053 77304 212165 0 125054 77304 212166 0 125055 77304 212167 0 125056 77304 212168 0 125057 77304 210285 0 125058 77304 212169 0 125059 77304 212170 0 125060 77304 210294 0 125061 77304 210847 0 125062 77304 210458 0 125063 77304 212171 0 125064 77304 212172 0 125065 77304 212173 0 125066 77304 212174 0 125067 77304 212175 0 125068 77304 212176 0 125069 77304 212177 0 125070 77304 212178 0 125071 77304 212179 0 125072 77304 212180 0 125073 77304 212181 0 125074 77304 212182 0 125075 77305 212184 0 125076 77305 212185 0 125077 77305 212186 0 125078 77305 212187 0 125079 77305 212188 0 125080 77305 210154 0 125081 77305 212189 0 125082 77305 212190 0 125083 77305 212191 0 125084 77305 212192 0 125085 77305 212193 0 125086 77305 212194 0 125087 77305 212195 0 125088 77305 212196 0 125089 77305 212197 0 125090 77305 212198 0 125091 77305 212199 0 125092 77305 212200 0 125093 77305 212201 0 125094 77305 212202 0 125095 77305 212203 0 125096 77305 212204 0 125097 77305 212205 0 125098 77305 212206 0 125099 77305 212207 0 125100 77306 212209 0 125101 77306 212210 0 125102 77306 212211 0 125103 77306 212212 0 125104 77306 212213 0 125105 77306 212214 0 125106 77306 212215 0 125107 77306 212216 0 125108 77306 212217 0 125109 77306 212218 0 125110 77306 212219 0 125111 77306 212220 0 125112 77306 212221 0 125113 77306 212222 0 125114 77306 212223 0 125115 77306 212224 0 125116 77306 212225 0 125117 77306 212226 0 125118 77306 212227 0 125119 77306 212228 0 125120 77306 212229 0 125121 77306 212230 0 125122 77306 212231 0 125123 77306 212232 0 125124 77306 212233 0 125125 77306 212234 0 125126 77306 212235 0 125127 77306 212236 0 125128 77306 212237 0 125129 77306 212238 0 125130 77307 212240 0 125131 77307 212241 0 125132 77307 212242 0 125133 77307 212243 0 125134 77307 212244 0 125135 77307 212245 0 125136 77307 212246 0 125137 77307 212247 0 125138 77307 212248 0 125139 77307 212249 0 125140 77307 212250 0 125141 77307 212251 0 125142 77307 210218 0 125143 77307 212252 0 125144 77307 212253 0 125145 77307 212254 0 125146 77307 212255 0 125147 77308 212257 0 125148 77308 212258 0 125149 77308 212259 0 125150 77308 212260 0 125151 77308 212261 0 125152 77308 212262 0 125153 77308 212263 0 125154 77308 212264 0 125155 77308 212265 0 125156 77308 212266 0 125157 77308 212267 0 125158 77308 212268 0 125159 77308 212269 0 125160 77308 212270 0 125161 77308 210532 0 125162 77308 212271 0 125163 77308 212272 0 125164 77308 210364 0 125165 77308 212273 0 125166 77308 212274 0 125167 77308 212275 0 125168 77308 212276 0 125169 77308 212277 0 125170 77308 212278 0 125171 77311 212282 0 125172 77311 212283 0 125173 77311 212284 0 125174 77311 212285 0 125175 77311 212286 0 125176 77311 212287 0 125177 77311 212288 0 125178 77312 212290 0 125179 77312 212291 0 125180 77312 212292 0 125181 77312 212293 0 125182 77312 212294 0 125183 77312 212295 0 125184 77312 212296 0 125185 77312 212297 0 125186 77312 212298 0 125187 77313 212300 0 125188 77313 212301 0 125189 77313 212302 0 125190 77314 212304 0 125191 77314 212305 0 125192 77314 212306 0 125193 77314 212307 0 125194 77314 212308 0 125195 77314 212309 0 125196 77314 212310 0 125197 77314 212311 0 125198 77314 212312 0 125199 77314 212313 0 125200 77314 212314 0 125201 77315 212316 0 125202 77315 212317 0 125203 77315 212318 0 125204 77315 212319 0 125205 77315 212320 0 125206 77315 212321 0 125207 77315 212322 0 125208 77315 212323 0 125209 77315 212324 0 125210 77315 212325 0 125211 77315 212326 0 125212 77315 212327 0 125213 77315 212328 0 125214 77315 212329 0 125215 77315 212330 0 125216 77315 212331 0 125217 77315 212332 0 125218 77315 212333 0 125219 77315 212334 0 125220 77315 212335 0 125221 77315 212336 0 125222 77315 212337 0 125223 77315 212338 0 125224 77315 212339 0 125225 77315 212340 0 125226 77315 212341 0 125227 77316 212343 0 125228 77316 212344 0 125229 77316 210153 0 125230 77316 212345 0 125231 77316 212346 0 125232 77316 212347 0 125233 77319 212351 0 125234 77319 212352 0 125235 77319 212353 0 125236 77320 212355 0 125237 77320 212356 0 125238 77320 212357 0 125239 77320 212358 0 125240 77320 210133 0 125241 77320 212359 0 125242 77320 212360 0 125243 77320 212361 0 125244 77320 212362 0 125245 77320 212363 0 125246 77320 212364 0 125247 77320 212365 0 125248 77320 212366 0 125249 77320 212367 0 125250 77320 212368 0 125251 77320 212369 0 125252 77320 212370 0 125253 77320 212371 0 125254 77320 212372 0 125255 77320 212373 0 125256 77320 212374 0 125257 77320 212375 0 125258 77320 212376 0 125259 77320 210227 0 125260 77320 212377 0 125261 77320 212378 0 125262 77320 212379 0 125263 77320 212380 0 125264 77320 212381 0 125265 77320 212382 0 125266 77320 212383 0 125267 77320 212384 0 125268 77320 212385 0 125269 77320 212386 0 125270 77320 212387 0 125271 77320 212388 0 125272 77320 212389 0 125273 77320 212390 0 125274 77320 212391 0 125275 77320 212392 0 125276 77320 212393 0 125277 77320 212394 0 125278 77320 212395 0 125279 77320 212396 0 125280 77320 212397 0 125281 77320 212398 0 125282 77320 212399 0 125283 77320 212400 0 125284 77320 212401 0 125285 77320 212402 0 125286 77320 212403 0 125287 77320 212404 0 125288 77320 212405 0 125289 77320 212406 0 125290 77320 212407 0 125291 77320 212408 0 125292 77320 212409 0 125293 77320 212410 0 125294 77320 212411 0 125295 77320 212412 0 125296 77320 212413 0 125297 77320 212414 0 125298 77320 212415 0 125299 77320 212416 0 125300 77320 212417 0 125301 77320 212418 0 125302 77320 212419 0 125303 77320 212420 0 125304 77320 212421 0 125305 77320 210677 0 125306 77320 212422 0 125307 77320 212140 0 125308 77320 212423 0 125309 77321 212425 0 125310 77321 212426 0 125311 77321 212427 0 125312 77321 212428 0 125313 77321 212429 0 125314 77321 212430 0 125315 77321 212431 0 125316 77321 212432 0 125317 77321 212433 0 125318 77321 212434 0 125319 77321 212435 0 125320 77321 212436 0 125321 77322 212438 0 125322 77322 212439 0 125323 77322 212440 0 125324 77322 212441 0 125325 77322 212442 0 125326 77322 212443 0 125327 77322 212444 0 125328 77322 212445 0 125329 77322 211455 0 125330 77322 211470 0 125331 77322 211458 0 125332 77322 211471 0 125333 77322 212446 0 125334 77322 212447 0 125335 77322 211469 0 125336 77322 212448 0 125337 77322 212449 0 125338 77322 212450 0 125339 77322 212451 0 125340 77323 212453 0 125341 77323 212454 0 125342 77323 212455 0 125343 77323 212456 0 125344 77323 212457 0 125345 77323 212458 0 125346 77323 210159 0 125347 77323 212459 0 125348 77323 212460 0 125349 77323 211221 0 125350 77323 210364 0 125351 77323 212461 0 125352 77323 210227 0 125353 77323 211215 0 125354 77323 212462 0 125355 77323 212463 0 125356 77323 212464 0 125357 77323 210520 0 125358 77323 210222 0 125359 77323 212465 0 125360 77323 212466 0 125361 77323 210844 0 125362 77323 212467 0 125363 77323 212468 0 125364 77323 211998 0 125365 77323 212469 0 125366 77323 212470 0 125367 77323 210294 0 125368 77323 210838 0 125369 77323 210953 0 125370 77323 212471 0 125371 77323 212472 0 125372 77323 212473 0 125373 77323 212474 0 125374 77323 212475 0 125375 77323 212476 0 125376 77323 212477 0 125377 77323 212478 0 125378 77323 212479 0 125379 77323 212480 0 125380 77323 212481 0 125381 77323 212482 0 125382 77323 212483 0 125383 77323 212484 0 \. -- -- Data for Name: cvterm_relationship; Type: TABLE DATA; Schema: public; Owner: postgres -- COPY public.cvterm_relationship (cvterm_relationship_id, type_id, subject_id, object_id) FROM stdin; 1 10 7 14 2 10 26 15 3 10 6 24 4 10 3 19 5 10 5 14 6 10 20 14 7 10 21 15 8 10 13 15 98424 10 65994 67638 98425 15 65751 66299 98426 10 68292 68204 98427 10 67869 68639 98428 10 65791 67839 98429 10 68196 66610 98430 10 66352 68274 98431 10 67624 65790 98432 15 66283 66805 98433 10 67715 67286 98434 15 67839 65622 98435 10 65867 68491 98436 10 66082 66091 98437 10 67204 66658 98438 10 65846 68204 98439 10 66822 67659 98440 10 66395 67286 98441 10 67613 67202 98442 10 65968 68274 98443 10 65908 66267 98444 10 66647 65989 98445 10 66300 67454 98446 10 67483 66670 98447 10 67400 67028 98448 10 65808 68204 98449 10 68308 66364 98450 10 66015 66986 98451 10 67719 68170 98452 10 67253 66986 98453 10 68265 67817 98454 10 65943 66833 98455 10 67452 66986 98456 15 65936 65929 98457 10 68335 68204 98458 15 68022 67004 98459 10 66988 67286 98460 10 66748 65639 98461 15 67407 67692 98462 10 66139 67860 98463 10 66555 68631 98464 10 65723 67879 98465 10 68225 66329 98466 15 67616 65929 98467 15 67279 65841 98468 10 67408 67286 98469 10 67243 67286 98470 15 66047 68428 98471 10 67284 66986 98472 10 67420 65629 98473 10 67693 67901 98474 10 67813 66350 98475 10 66417 68417 98476 10 65745 66114 98477 10 66964 67286 98478 10 66169 67286 98479 10 65858 68227 98480 10 66667 65905 98481 15 67439 67456 98482 10 66057 65977 98483 10 67725 67286 98484 15 68154 67464 98485 10 67861 68482 98486 10 65773 67947 98487 15 66483 67469 98488 15 68021 67201 98489 10 66699 67286 98490 15 66116 66299 98491 10 66522 67286 98492 15 68639 67280 98493 10 67235 66691 98494 15 68081 67852 98495 10 65711 67713 98496 10 68299 66279 98497 10 67167 67286 98498 10 66604 66986 98499 15 67790 67003 98500 10 66070 67286 98501 15 68249 68593 98502 10 67456 66566 98503 10 66346 68631 98504 10 65730 66114 98505 10 67022 67982 98506 10 66221 68204 98507 15 68273 67755 98508 10 66173 68639 98509 10 66460 67337 98510 10 66385 67756 98511 10 66052 67020 98512 10 68008 67286 98513 10 67556 68417 98514 10 68443 68616 98515 10 68329 68450 98516 10 68468 67129 98517 10 67317 66385 98518 10 68342 66021 98519 10 68353 67455 98520 10 68626 67020 98521 10 66883 66986 98522 10 68535 66044 98523 10 68358 67756 98524 10 65645 65977 98525 10 65803 66986 98526 10 67036 68450 98527 10 68343 67879 98528 10 66859 67286 98529 15 67626 66196 98530 10 66574 68274 98531 10 66497 67585 98532 10 66178 67286 98533 10 68185 65826 98534 10 66819 67283 98535 10 66015 68274 98536 15 66556 67688 98537 15 67573 66701 98538 15 68425 67138 98539 10 67522 67286 98540 10 66973 67622 98541 10 67528 66670 98542 15 66581 67692 98543 10 66786 67860 98544 15 66979 65687 98545 10 68213 66986 98546 10 67210 65701 98547 10 67144 67286 98548 10 68630 67129 98549 10 66054 65826 98550 10 66967 66825 98551 10 66826 67729 98552 10 67185 65665 98553 10 66848 67784 98554 10 68326 68497 98555 10 66232 67322 98556 15 66615 67618 98557 10 68256 66986 98558 10 65631 67449 98559 10 67327 66620 98560 10 65724 66566 98561 10 66258 67522 98562 10 67167 66847 98563 15 68365 66299 98564 10 68597 66670 98565 10 67057 67740 98566 10 67423 67151 98567 10 66640 67480 98568 15 65877 68494 98569 10 67634 66986 98570 15 67875 67117 98571 15 68301 67755 98572 15 67855 65694 98573 10 68016 67322 98574 10 68605 66973 98575 10 67263 68093 98576 10 65985 66225 98577 10 66001 68563 98578 10 67966 67286 98579 10 67806 68275 98580 15 67201 66225 98581 10 66815 68631 98582 10 67536 66670 98583 10 67915 67537 98584 10 67329 66006 98585 10 67950 68156 98586 15 66618 65907 98587 10 67680 66369 98588 10 68368 66670 98589 10 66337 65671 98590 10 66962 66566 98591 10 67509 66369 98592 10 67488 65754 98593 10 67767 67286 98594 10 66006 67879 98595 10 66290 67286 98596 10 67676 67159 98597 10 68449 68159 98598 10 65738 67962 98599 10 65855 68204 98600 10 66576 67260 98601 10 67277 67020 98602 10 68553 66986 98603 10 66416 67286 98604 10 67792 66114 98605 10 66364 67286 98606 10 67143 65993 98607 15 65887 67824 98608 10 67534 66114 98609 15 66827 66299 98610 10 68433 67687 98611 15 68432 67755 98612 15 65958 65841 98613 10 65702 67437 98614 10 68396 66833 98615 10 68421 67119 98616 15 67287 67839 98617 15 66172 66159 98618 15 66568 68180 98619 10 67304 66114 98620 10 67444 67850 98621 10 67832 66959 98622 15 68131 66130 98623 10 67076 67172 98624 15 68484 68165 98625 10 68486 67286 98626 10 66158 66891 98627 10 68048 67286 98628 10 67026 66267 98629 10 66464 65793 98630 10 67038 65964 98631 10 67380 66519 98632 10 66843 67286 98633 10 65898 67286 98634 10 65715 67286 98635 10 65736 67048 98636 10 68152 65671 98637 15 66650 68258 98638 10 67391 66000 98639 10 66566 67202 98640 10 66754 67286 98641 15 68442 65985 98642 10 66908 66409 98643 10 66455 67062 98644 10 68165 68596 98645 15 66455 65929 98646 15 66669 66299 98647 15 66054 67951 98648 10 66306 67132 98649 10 67004 65964 98650 10 68478 66114 98651 10 67500 67855 98652 10 65675 66847 98653 15 68229 65985 98654 10 65651 67512 98655 10 67330 68199 98656 15 67512 65822 98657 10 66237 65790 98658 10 67366 66986 98659 15 67266 66312 98660 10 66520 66091 98661 10 66592 66986 98662 10 68231 68156 98663 10 67504 67171 98664 10 65800 67151 98665 10 67283 65907 98666 10 67436 67286 98667 15 66628 65797 98668 15 67363 67672 98669 10 66475 67821 98670 15 67373 67280 98671 15 67831 67240 98672 10 68125 67159 98673 10 68347 67286 98674 15 65786 67831 98675 10 68317 67286 98676 15 67635 65864 98677 10 68621 67286 98678 10 67986 67286 98679 10 65913 67394 98680 15 67455 66225 98681 10 66740 68417 98682 10 66011 65672 98683 10 67753 66202 98684 10 66972 66986 98685 15 68165 67722 98686 10 65687 67903 98687 10 67974 67193 98688 10 67727 68535 98689 10 66287 66986 98690 10 68241 67286 98691 10 68145 67265 98692 10 67821 66566 98693 15 66004 66831 98694 10 67789 68434 98695 10 67291 68631 98696 15 68023 66627 98697 15 67229 67280 98698 15 67906 65736 98699 10 66582 67712 98700 10 67237 67286 98701 10 67679 66267 98702 10 66185 66053 98703 10 67775 67986 98704 15 68099 67254 98705 15 65750 68236 98706 15 67927 66098 98707 10 67651 67286 98708 15 67063 67109 98709 15 66697 66761 98710 10 66828 66409 98711 10 67178 65965 98712 10 66042 66986 98713 10 67567 65826 98714 10 66993 65671 98715 10 67965 67827 98716 10 66064 65644 98717 10 67034 68426 98718 10 68096 66670 98719 10 68440 67286 98720 10 67663 65754 98721 10 66860 66980 98722 10 66164 68451 98723 10 67709 66846 98724 10 66139 67062 98725 10 67565 67654 98726 10 66526 68564 98727 10 67484 66637 98728 10 68250 67048 98729 10 66710 65826 98730 10 68345 65790 98731 10 67098 68417 98732 10 68453 67062 98733 15 67515 68374 98734 10 66045 66822 98735 10 68161 67286 98736 15 66497 68191 98737 10 66718 68527 98738 15 66981 67778 98739 10 66261 67286 98740 15 67692 66446 98741 10 67160 68204 98742 10 67411 67325 98743 10 67618 68450 98744 10 66951 67286 98745 15 67096 65658 98746 10 68338 68093 98747 10 68533 65964 98748 10 66975 66114 98749 10 66131 67268 98750 10 67299 65826 98751 10 67140 65629 98752 10 66404 67020 98753 10 65849 67286 98754 10 68127 67286 98755 10 65989 67317 98756 10 66436 66699 98757 10 66940 67563 98758 10 66081 67733 98759 15 66410 66587 98760 10 67591 67286 98761 10 67855 65826 98762 10 66262 67286 98763 10 66648 67286 98764 10 68623 67642 98765 10 65847 68596 98766 10 66086 68116 98767 10 68013 66483 98768 15 67304 67722 98769 10 66531 66114 98770 10 67620 66986 98771 15 65718 68374 98772 10 68209 65977 98773 10 67211 66986 98774 10 66941 66091 98775 10 66242 66114 98776 10 67823 66091 98777 10 65963 67286 98778 15 67818 67138 98779 10 67350 68631 98780 10 66090 68093 98781 10 66551 66822 98782 10 66794 67286 98783 10 67640 66631 98784 15 66167 67379 98785 10 66035 66661 98786 10 66370 66986 98787 15 67048 67308 98788 10 66438 68639 98789 10 68105 67062 98790 10 68484 66114 98791 10 67311 67286 98792 10 68147 67897 98793 10 68216 68450 98794 10 66145 67455 98795 10 65742 66767 98796 10 66853 67286 98797 10 66494 65670 98798 10 66847 66670 98799 10 67158 68204 98800 10 67844 66670 98801 10 67442 66670 98802 10 67761 68298 98803 10 67065 67286 98804 15 67579 66328 98805 10 66901 66986 98806 15 68309 67412 98807 10 68286 65977 98808 10 65950 67387 98809 15 66587 68236 98810 15 66073 65922 98811 10 67524 66986 98812 10 66152 67048 98813 15 68124 66977 98814 10 65718 67827 98815 10 66755 67286 98816 10 68360 66267 98817 10 65674 68113 98818 15 66000 67860 98819 10 67086 66483 98820 10 67258 66797 98821 15 67197 67132 98822 10 66186 66658 98823 10 67176 65892 98824 10 67009 67066 98825 10 67925 68204 98826 15 67056 66542 98827 10 66963 67422 98828 10 66530 66610 98829 10 68266 65707 98830 10 65782 65707 98831 10 67894 67286 98832 10 68615 67202 98833 15 66404 67483 98834 10 67904 66410 98835 10 68301 66734 98836 10 67454 67042 98837 15 68075 68615 98838 10 66918 67286 98839 10 66409 66670 98840 10 67574 66893 98841 10 68340 67062 98842 10 67482 67286 98843 10 66681 66566 98844 15 65626 67803 98845 15 66417 67447 98846 15 65820 66340 98847 10 65909 67329 98848 15 67129 67613 98849 10 66913 66986 98850 15 66588 68123 98851 10 68204 66566 98852 10 67678 68204 98853 10 67631 65964 98854 10 66718 65877 98855 10 65670 68204 98856 10 68201 67986 98857 10 66516 65790 98858 10 66682 67638 98859 10 68574 68254 98860 10 67441 68417 98861 10 68274 67756 98862 10 66291 67066 98863 10 67092 66986 98864 10 66734 67756 98865 10 66417 66114 98866 10 67859 65826 98867 10 67733 67469 98868 10 66741 68004 98869 10 68024 68620 98870 10 65691 66114 98871 10 65895 68037 98872 10 68135 67086 98873 10 66480 66097 98874 10 66831 65888 98875 10 66960 67986 98876 10 67404 68489 98877 10 67474 66846 98878 10 66946 66734 98879 15 66422 67145 98880 10 68465 66021 98881 10 66875 67642 98882 10 66021 66233 98883 10 66693 68008 98884 10 67934 65932 98885 10 67414 66670 98886 10 66993 67286 98887 10 68240 68595 98888 10 66201 66670 98889 10 67044 66483 98890 10 68260 67286 98891 10 68559 66986 98892 15 65883 67166 98893 10 68636 67563 98894 10 67550 67286 98895 15 67311 68550 98896 10 66165 68093 98897 10 68639 68244 98898 15 65734 67032 98899 10 68594 67286 98900 10 66862 67286 98901 10 67955 66540 98902 15 66753 65952 98903 10 68245 67286 98904 10 68322 67286 98905 10 66342 67729 98906 10 67788 67286 98907 10 65965 67286 98908 10 68336 65671 98909 10 66607 67286 98910 10 68043 65826 98911 10 66596 67879 98912 10 68179 67339 98913 10 68417 67756 98914 10 66970 66986 98915 10 66755 66566 98916 15 67570 66299 98917 10 66572 67286 98918 10 66257 67286 98919 15 68094 68209 98920 10 67016 68473 98921 10 68355 67201 98922 15 66092 66989 98923 10 66371 67622 98924 15 66796 66185 98925 10 66429 67742 98926 10 68471 65790 98927 10 68633 68443 98928 10 66061 68075 98929 15 67990 68209 98930 10 67435 66566 98931 10 65761 66021 98932 10 65866 67286 98933 10 65658 68274 98934 10 68443 67615 98935 10 66048 68616 98936 10 68578 66424 98937 10 67189 67879 98938 10 68637 66566 98939 10 68611 68093 98940 10 65718 65826 98941 10 66340 68378 98942 10 65748 66487 98943 10 66508 66034 98944 10 67284 67986 98945 10 67295 67480 98946 10 67128 66331 98947 10 67493 67404 98948 10 67147 67322 98949 10 67809 68391 98950 10 67177 66540 98951 10 68514 68443 98952 10 66456 66540 98953 10 66236 67286 98954 10 66986 65826 98955 10 66456 65877 98956 10 66362 68274 98957 10 66138 68182 98958 10 66012 66986 98959 15 66333 67755 98960 10 67106 67821 98961 15 68352 67755 98962 10 68251 67286 98963 10 67529 67043 98964 10 66263 67286 98965 15 67335 65890 98966 15 66831 67410 98967 10 67831 65826 98968 10 66762 66114 98969 10 66867 66822 98970 15 66652 66285 98971 10 66520 67062 98972 10 67586 65696 98973 10 67603 68274 98974 10 67392 67286 98975 10 67454 66251 98976 15 66800 66071 98977 10 67612 68426 98978 15 68627 65736 98979 10 68099 68156 98980 10 66307 68204 98981 10 67531 67642 98982 10 68139 67299 98983 10 66084 65671 98984 10 67557 67622 98985 10 67988 66670 98986 10 65758 67247 98987 10 66410 67982 98988 10 67117 65853 98989 10 66638 65681 98990 10 66663 66670 98991 10 66166 67286 98992 10 65769 66618 98993 15 66763 66606 98994 15 65851 67993 98995 10 68185 68616 98996 10 68064 66670 98997 10 66454 66986 98998 10 66528 67086 98999 10 66397 67247 99000 15 66673 68119 99001 10 65927 67286 99002 15 65736 66675 99003 10 68026 67286 99004 10 65986 67062 99005 10 66904 68204 99006 15 66359 65622 99007 10 66449 66566 99008 10 68162 68204 99009 15 66302 66848 99010 15 66926 66299 99011 10 67567 67286 99012 10 67285 66734 99013 15 66653 67627 99014 10 65934 67986 99015 10 68541 67263 99016 10 66111 67286 99017 15 66901 66036 99018 15 66372 68499 99019 10 66853 66847 99020 10 66774 68129 99021 10 65943 66670 99022 10 67927 68066 99023 10 66360 68385 99024 15 68019 65938 99025 10 67042 67434 99026 10 66497 66114 99027 10 67471 67756 99028 10 66668 68439 99029 10 68182 66506 99030 10 65784 66483 99031 10 67893 66585 99032 10 66809 68298 99033 15 66890 66133 99034 10 65788 68005 99035 10 67482 66734 99036 10 66350 66833 99037 10 66915 67692 99038 10 65830 68417 99039 10 67326 67286 99040 10 68412 66091 99041 15 66320 66153 99042 10 67909 67091 99043 10 67785 67286 99044 10 66864 68204 99045 10 66891 68170 99046 10 67571 66296 99047 15 66731 66196 99048 10 67169 68527 99049 10 68517 68204 99050 10 68463 67455 99051 10 67617 67975 99052 10 66893 67860 99053 10 68411 67533 99054 10 67451 67986 99055 10 67543 66833 99056 10 65692 67062 99057 10 68393 67500 99058 10 67236 66986 99059 10 66521 68236 99060 15 66451 67692 99061 10 66636 67879 99062 10 68365 67986 99063 10 67425 66670 99064 15 67533 66182 99065 10 66611 67286 99066 10 68070 67286 99067 10 68323 66091 99068 10 67599 67286 99069 10 67638 67020 99070 10 68064 67286 99071 10 67102 67286 99072 10 67728 67020 99073 15 66001 68162 99074 10 66310 66369 99075 10 65881 67286 99076 10 66913 67986 99077 10 67121 65964 99078 10 66494 66986 99079 10 66627 67035 99080 10 67699 67618 99081 10 67782 67286 99082 15 67735 65644 99083 10 65790 67982 99084 10 66509 68538 99085 10 68332 67313 99086 10 66059 66921 99087 10 66430 66273 99088 10 66207 67286 99089 15 67346 66627 99090 10 66154 67982 99091 15 68318 67779 99092 10 67539 65681 99093 15 66095 68119 99094 10 65671 66670 99095 10 66687 67286 99096 10 67030 66578 99097 10 66405 65977 99098 10 67842 67464 99099 10 66163 66986 99100 10 67103 67286 99101 10 65785 65901 99102 10 67114 66661 99103 10 68190 68204 99104 15 65729 66299 99105 10 67944 66350 99106 10 66879 66986 99107 10 68289 67286 99108 10 66302 68587 99109 10 67418 65671 99110 10 65652 65829 99111 10 68489 67563 99112 10 68255 67286 99113 10 66672 66530 99114 10 67847 68464 99115 15 68011 67767 99116 10 68131 66610 99117 10 65646 67257 99118 10 66908 68596 99119 10 67912 67062 99120 10 65762 66566 99121 10 68591 67286 99122 10 65633 67337 99123 10 68412 67821 99124 10 67902 66371 99125 10 65654 67286 99126 15 68447 65997 99127 10 68148 67286 99128 10 68505 67286 99129 10 65734 66973 99130 10 65670 65826 99131 10 67497 66267 99132 15 66072 67377 99133 15 68580 66087 99134 10 66938 67337 99135 10 68565 67247 99136 10 66543 65874 99137 10 66062 67286 99138 10 66484 67129 99139 10 67659 67821 99140 10 67812 66566 99141 10 65625 66034 99142 10 67472 66021 99143 10 67365 66670 99144 10 67547 68527 99145 15 67645 66112 99146 10 67595 67286 99147 10 67425 68527 99148 15 66638 66446 99149 15 66772 66184 99150 10 65970 67337 99151 15 67915 65986 99152 10 67203 65977 99153 10 65720 67240 99154 10 68058 67286 99155 15 66740 67824 99156 10 66037 68631 99157 10 67323 68005 99158 10 65727 66006 99159 10 67967 66670 99160 10 66489 68462 99161 10 68494 68450 99162 10 66308 66780 99163 10 66172 66618 99164 10 67257 67901 99165 15 67875 66299 99166 10 66560 67480 99167 10 67087 67549 99168 15 66143 65888 99169 10 66541 66114 99170 10 67484 66986 99171 10 67485 66114 99172 10 67892 67522 99173 10 66540 66986 99174 10 68117 66114 99175 10 66971 66091 99176 10 66519 67713 99177 10 68212 67286 99178 10 67558 67286 99179 10 66772 66934 99180 10 67885 65682 99181 10 67805 66833 99182 10 66133 67827 99183 15 66329 65929 99184 10 66058 65932 99185 10 65627 66847 99186 10 67302 66670 99187 15 68274 67017 99188 10 68148 65671 99189 10 68611 65964 99190 10 66117 68450 99191 10 67278 66986 99192 10 66359 68611 99193 10 68187 66986 99194 10 67730 67286 99195 10 67079 68204 99196 10 66858 68150 99197 15 68462 68180 99198 10 67194 68626 99199 10 68609 67286 99200 10 67935 66797 99201 10 68627 67048 99202 10 66372 68426 99203 10 66680 65964 99204 10 68054 66986 99205 10 66170 67982 99206 10 66130 66530 99207 10 65667 67017 99208 15 67832 67692 99209 10 66589 65977 99210 10 66014 67286 99211 15 67294 68246 99212 10 68441 67982 99213 10 66892 68204 99214 10 68298 66034 99215 10 67656 66971 99216 15 68105 67860 99217 10 68088 68093 99218 10 66387 67286 99219 10 66145 65764 99220 10 67159 67286 99221 10 68128 66566 99222 10 66657 66661 99223 10 66020 66986 99224 10 66390 68204 99225 10 67141 66670 99226 10 67411 65790 99227 10 66793 66986 99228 10 65783 66986 99229 15 67653 66439 99230 10 66450 67286 99231 10 66265 66670 99232 10 67049 66986 99233 15 68166 65922 99234 10 68121 67286 99235 10 67834 66267 99236 10 66909 66048 99237 15 65835 67951 99238 10 65831 67642 99239 15 65624 66161 99240 10 65726 65716 99241 10 68618 66279 99242 15 68633 68185 99243 10 66809 67247 99244 10 67303 66235 99245 10 65664 66986 99246 10 66233 66670 99247 10 67508 68274 99248 10 66298 66986 99249 10 68546 67703 99250 10 68536 66670 99251 15 67787 68185 99252 10 65639 66466 99253 10 66861 67393 99254 10 67962 66795 99255 15 66182 67082 99256 15 67700 66710 99257 10 68380 66670 99258 10 68635 68631 99259 15 66321 66976 99260 10 66981 66991 99261 10 67374 67286 99262 10 66898 68116 99263 10 66351 65826 99264 10 66272 68450 99265 10 66813 66973 99266 10 66315 67286 99267 10 68583 68615 99268 10 66851 66159 99269 15 68286 66066 99270 10 67251 68347 99271 10 67701 68204 99272 10 67864 65977 99273 10 65747 67286 99274 10 66794 66986 99275 10 65820 66941 99276 15 66672 67053 99277 15 66056 67061 99278 10 66939 67286 99279 10 67577 65934 99280 10 65822 66986 99281 10 66868 67821 99282 10 66383 67286 99283 10 67377 68450 99284 10 68127 66670 99285 10 67407 68274 99286 10 66703 67397 99287 10 66953 67827 99288 15 68381 68214 99289 15 68387 67921 99290 10 67206 67062 99291 15 65692 68059 99292 10 66833 66097 99293 15 66941 68378 99294 10 66767 67523 99295 10 68187 67615 99296 10 66268 66986 99297 15 66676 68495 99298 10 66231 66114 99299 10 67768 67200 99300 10 67930 66986 99301 10 65922 66021 99302 10 67094 67622 99303 10 68507 66973 99304 10 66746 67286 99305 10 65816 67703 99306 10 67755 66385 99307 10 67655 68204 99308 15 68144 66758 99309 10 67966 66114 99310 10 67832 68156 99311 10 65806 65689 99312 15 65673 66761 99313 10 68478 68458 99314 10 68291 68204 99315 10 67196 67986 99316 10 66018 67920 99317 15 67776 67348 99318 15 66166 67692 99319 10 67606 66670 99320 15 66250 68276 99321 10 68107 66282 99322 10 66317 65754 99323 10 67568 67027 99324 10 66355 67079 99325 10 67506 66566 99326 10 66345 66434 99327 10 66276 66540 99328 10 67914 68587 99329 10 66298 67286 99330 10 68154 68417 99331 10 66751 68204 99332 15 67306 68018 99333 10 65792 66670 99334 15 68191 67722 99335 10 68191 66114 99336 10 67883 68484 99337 10 66958 66114 99338 10 67116 66986 99339 10 66483 67202 99340 15 68382 67731 99341 15 66181 68384 99342 10 66249 68204 99343 10 66121 66986 99344 10 66514 67286 99345 10 66069 66286 99346 10 67865 67740 99347 10 67704 67827 99348 10 67192 66660 99349 10 68156 65826 99350 15 67341 65673 99351 10 67383 67286 99352 10 67107 68204 99353 15 66031 66185 99354 10 67950 67286 99355 10 66087 67266 99356 10 68154 66802 99357 10 65628 65790 99358 10 66289 65947 99359 10 68110 68452 99360 10 67670 67286 99361 10 67576 66364 99362 15 66231 67722 99363 10 68307 67286 99364 10 66080 68132 99365 15 65817 66710 99366 10 67011 67522 99367 10 66239 67242 99368 15 67098 67824 99369 10 66378 65728 99370 15 68476 67724 99371 10 66373 66735 99372 10 67774 67266 99373 10 67217 66670 99374 10 68283 67286 99375 10 67375 66865 99376 10 65930 67497 99377 15 66450 67755 99378 10 67645 68578 99379 15 68346 66842 99380 15 66913 66299 99381 10 67770 67286 99382 15 68030 66122 99383 10 67827 67756 99384 15 67430 66071 99385 10 67541 66631 99386 10 68464 65688 99387 15 65882 66132 99388 10 66976 65754 99389 10 66540 67821 99390 10 67797 67788 99391 10 67321 66670 99392 10 66729 68417 99393 10 66149 66973 99394 10 66292 68473 99395 10 67766 67179 99396 10 67041 65790 99397 10 68011 67286 99398 15 67913 66638 99399 10 68015 66734 99400 10 65817 68204 99401 10 67641 68530 99402 10 65935 66822 99403 10 68124 66483 99404 10 67862 66566 99405 10 65877 67821 99406 15 68588 66345 99407 10 66085 67615 99408 10 68482 67247 99409 10 68600 67322 99410 10 65899 66516 99411 15 66608 67240 99412 15 65690 66182 99413 10 66630 68156 99414 10 66529 66267 99415 10 66949 66670 99416 10 65787 67286 99417 10 68302 67257 99418 10 66799 65875 99419 10 66897 68204 99420 10 68283 65964 99421 10 67067 65965 99422 10 66180 66986 99423 10 68404 67286 99424 10 68497 65977 99425 15 67035 65628 99426 15 65756 67726 99427 10 67941 67286 99428 10 68151 67503 99429 10 68599 67286 99430 10 65701 66670 99431 15 67127 65929 99432 10 65689 67714 99433 15 65675 68626 99434 10 67441 67286 99435 10 68085 66267 99436 10 68012 67132 99437 10 65882 67286 99438 15 66019 67832 99439 10 68019 65790 99440 10 67239 67286 99441 10 66080 68596 99442 10 66929 67286 99443 10 68567 66009 99444 10 65865 65932 99445 15 67709 68276 99446 10 68294 67286 99447 10 66380 65984 99448 10 65879 68182 99449 10 66210 67286 99450 15 68242 67004 99451 10 68612 67132 99452 10 67314 66986 99453 10 67646 68385 99454 10 66282 68204 99455 10 67197 66566 99456 10 68053 68093 99457 10 67850 68335 99458 10 68551 65758 99459 15 67331 65659 99460 15 67564 67436 99461 10 66733 67286 99462 15 66025 65842 99463 10 66934 68451 99464 10 65681 67020 99465 10 68366 67062 99466 15 65975 65900 99467 10 65964 66114 99468 15 68015 67755 99469 10 65661 66051 99470 10 67376 67393 99471 10 66270 66463 99472 10 66217 68417 99473 10 67565 67048 99474 10 66685 67821 99475 10 67630 66802 99476 10 66338 66114 99477 10 68248 66670 99478 10 68589 66114 99479 10 67233 66114 99480 10 67213 66670 99481 10 65688 67286 99482 10 65664 67286 99483 10 66369 67563 99484 15 68053 65622 99485 10 66046 68417 99486 10 68306 65883 99487 10 68014 68378 99488 10 67209 67286 99489 10 65812 67169 99490 15 67982 67066 99491 15 67844 66940 99492 10 65921 66986 99493 10 67801 66081 99494 15 68631 66529 99495 10 65815 67066 99496 15 66014 67951 99497 10 65754 67286 99498 10 66019 68156 99499 10 68300 66409 99500 10 67899 68426 99501 10 68422 66986 99502 10 66862 65826 99503 10 66836 65886 99504 10 65630 67465 99505 15 67466 66453 99506 15 67340 66005 99507 15 66990 66299 99508 15 68522 66153 99509 10 68312 67286 99510 10 68431 66941 99511 10 66558 66986 99512 10 66653 68358 99513 10 67896 67286 99514 10 68461 67759 99515 10 65999 67286 99516 10 67895 66350 99517 15 68340 67456 99518 10 67468 67962 99519 10 65721 67086 99520 15 67314 67042 99521 10 68580 67286 99522 10 67125 66566 99523 10 66000 66091 99524 10 67707 67247 99525 15 66880 66066 99526 10 65632 68204 99527 10 67560 67677 99528 10 65789 67336 99529 10 66263 66670 99530 15 66500 66325 99531 10 66326 66670 99532 10 65973 67313 99533 10 68426 66483 99534 10 66159 65907 99535 10 68424 67696 99536 10 68211 65664 99537 15 66377 66137 99538 10 67917 65826 99539 10 66989 67048 99540 10 66642 67965 99541 10 67333 65977 99542 10 66932 67715 99543 10 67186 66748 99544 15 66527 68384 99545 10 68142 66296 99546 10 68549 68434 99547 15 67332 66903 99548 10 65825 67825 99549 10 67302 67286 99550 10 67417 68615 99551 10 68634 66056 99552 10 66634 67642 99553 15 67912 67812 99554 10 66536 68132 99555 15 65735 67731 99556 10 67340 67286 99557 10 67653 65629 99558 15 67443 66299 99559 10 68087 67337 99560 15 66842 67521 99561 10 67874 66670 99562 10 66116 67286 99563 10 68452 66802 99564 10 65808 67821 99565 10 67588 68473 99566 10 66932 66267 99567 10 67148 67286 99568 10 67139 68076 99569 15 68360 67280 99570 10 66476 66273 99571 10 67238 67286 99572 10 68531 66301 99573 10 66079 66670 99574 10 68621 66986 99575 10 65798 67286 99576 10 67059 66369 99577 10 65772 68451 99578 10 66630 67962 99579 10 66348 67986 99580 10 66351 67286 99581 10 65851 67286 99582 10 67722 66114 99583 10 68115 67286 99584 10 67281 65932 99585 10 65969 66670 99586 10 66153 66797 99587 10 67695 67827 99588 15 67446 66819 99589 10 67691 66350 99590 15 65760 66122 99591 10 67903 67021 99592 10 67545 66091 99593 10 67225 67286 99594 10 66461 67286 99595 15 68307 66299 99596 10 67265 67982 99597 10 68083 66661 99598 15 66157 66863 99599 15 66437 67004 99600 10 66581 68274 99601 10 66810 67286 99602 10 67982 66670 99603 10 67088 65908 99604 10 66331 67455 99605 10 66553 66986 99606 10 67854 67286 99607 10 66830 65772 99608 10 68263 66034 99609 10 67716 67286 99610 10 67041 67286 99611 10 67258 67455 99612 10 68543 67286 99613 10 67561 65639 99614 10 66468 68204 99615 10 65957 66267 99616 10 68509 67227 99617 10 67692 68274 99618 10 66108 68426 99619 10 68273 66734 99620 10 68098 67618 99621 10 66129 68452 99622 10 68284 67654 99623 10 66264 68450 99624 10 66743 67286 99625 15 67086 65808 99626 15 65691 66310 99627 10 66903 67920 99628 10 67185 66986 99629 10 65910 66833 99630 10 66922 66127 99631 10 67253 67986 99632 10 66389 67286 99633 10 66458 66044 99634 10 68021 67455 99635 10 67371 66699 99636 15 67902 66683 99637 10 66466 67756 99638 10 67062 67756 99639 10 68415 68490 99640 15 66480 68419 99641 10 68081 67827 99642 10 66050 67091 99643 10 67609 67163 99644 10 65829 67286 99645 10 66249 67286 99646 10 65975 67286 99647 10 66297 65977 99648 10 65650 66395 99649 10 67530 66085 99650 10 68023 65826 99651 15 67815 67727 99652 10 66727 67422 99653 10 66357 68204 99654 10 68588 66916 99655 15 66492 68458 99656 15 67235 66098 99657 10 66143 67774 99658 10 66491 67286 99659 15 66230 67945 99660 10 66995 67286 99661 10 68447 67821 99662 10 66278 67286 99663 10 67307 66973 99664 10 66845 67455 99665 10 66287 67286 99666 10 68481 67286 99667 10 65953 66986 99668 10 66279 68451 99669 15 68204 68219 99670 10 65749 66986 99671 10 66881 68274 99672 15 66136 65862 99673 10 66550 67563 99674 15 66567 66325 99675 10 65739 67286 99676 15 67754 66542 99677 10 67880 66669 99678 10 68168 66670 99679 10 68005 68204 99680 10 65750 66595 99681 10 67273 67286 99682 15 66589 65622 99683 15 68247 66941 99684 10 66252 67286 99685 10 68450 66566 99686 10 66678 66986 99687 10 66109 68075 99688 10 66575 67286 99689 10 66384 67934 99690 10 66390 67286 99691 15 68159 67687 99692 10 66987 68132 99693 10 66649 66986 99694 15 67873 68180 99695 10 66419 68417 99696 10 68395 67049 99697 10 67015 66618 99698 10 66422 65816 99699 10 68371 68204 99700 10 67141 67286 99701 15 65726 67193 99702 10 66550 66670 99703 10 66023 65688 99704 10 68249 66540 99705 10 68468 67286 99706 10 65753 68298 99707 10 66724 67113 99708 10 67096 66567 99709 10 65695 66129 99710 10 67627 65959 99711 10 66593 68417 99712 10 66764 66865 99713 10 68344 68631 99714 10 67211 68066 99715 15 67320 68329 99716 10 67633 66267 99717 15 68029 67590 99718 10 67572 67286 99719 10 66076 68204 99720 10 66595 66670 99721 10 66431 67286 99722 15 68163 68448 99723 10 65847 66670 99724 10 66304 67687 99725 15 68394 65999 99726 10 67174 66986 99727 10 66617 65930 99728 10 67205 67962 99729 15 67062 66044 99730 10 67406 67048 99731 10 67301 65754 99732 10 67689 66734 99733 10 66744 65964 99734 15 65674 66345 99735 10 66912 67286 99736 10 66253 67066 99737 10 67825 67982 99738 15 66286 66758 99739 15 67065 66930 99740 10 67781 67861 99741 10 67050 67337 99742 10 67764 68405 99743 10 67671 66618 99744 10 65751 67986 99745 10 66852 68204 99746 15 68288 66272 99747 10 68609 66986 99748 10 65794 68611 99749 10 68102 66670 99750 10 66778 67286 99751 10 67270 68204 99752 10 68178 68156 99753 10 67562 67286 99754 15 66395 67585 99755 15 67979 67261 99756 10 65947 66566 99757 10 66177 67286 99758 10 68183 65908 99759 15 65666 66122 99760 10 67496 66986 99761 10 66441 66637 99762 10 67642 67986 99763 10 67332 67794 99764 10 65711 68256 99765 10 66151 67286 99766 15 66548 67751 99767 10 67463 66173 99768 10 65774 67286 99769 10 67791 68378 99770 15 66814 67452 99771 10 67149 66267 99772 10 67058 66267 99773 10 66039 68138 99774 10 66823 67982 99775 10 65870 68358 99776 10 65766 67827 99777 10 68291 67286 99778 15 67301 67004 99779 10 66135 66971 99780 10 65988 65790 99781 10 68256 67986 99782 10 66212 66483 99783 10 67239 66986 99784 10 66112 65672 99785 10 66554 67286 99786 15 66742 65997 99787 10 66280 67027 99788 10 66365 68596 99789 10 67765 65877 99790 15 66290 67280 99791 15 67756 66156 99792 15 67405 68339 99793 10 66995 68426 99794 15 67837 68448 99795 10 67584 67189 99796 10 66116 66986 99797 10 67933 66670 99798 10 66236 67129 99799 15 67397 65644 99800 10 66109 66670 99801 15 66276 67036 99802 15 66187 66867 99803 10 66047 66541 99804 15 68385 65819 99805 10 67678 67286 99806 15 66767 66100 99807 15 67832 68382 99808 10 66017 65977 99809 10 66479 67400 99810 10 66752 67200 99811 15 65749 66907 99812 10 65819 66044 99813 10 67319 66229 99814 10 66977 68596 99815 10 66678 66758 99816 10 67711 66699 99817 10 67985 66973 99818 15 66030 66185 99819 10 67700 67567 99820 10 68146 66369 99821 15 67432 66504 99822 15 67730 67083 99823 10 67099 67522 99824 10 67667 67286 99825 15 65792 68163 99826 10 68201 66986 99827 10 67028 66828 99828 15 68206 65819 99829 10 66432 66670 99830 10 68570 67286 99831 15 67456 66694 99832 10 67767 65826 99833 10 65824 66358 99834 10 67815 67062 99835 10 67698 68156 99836 15 67632 67412 99837 10 68459 68005 99838 10 67570 67986 99839 10 67153 67447 99840 10 66424 66833 99841 10 67215 67286 99842 10 68322 66986 99843 10 67654 68370 99844 15 67328 67254 99845 10 66315 66670 99846 10 68303 66091 99847 10 67024 68358 99848 10 66618 68616 99849 10 65932 65964 99850 10 68314 65826 99851 10 67659 68204 99852 10 68310 66986 99853 10 66691 67286 99854 10 66873 66081 99855 15 65714 68495 99856 10 66429 66114 99857 10 67514 67902 99858 15 68024 66084 99859 15 67258 65694 99860 10 67191 68615 99861 10 67561 66923 99862 15 67245 67916 99863 10 67621 65790 99864 10 68525 67336 99865 10 68481 68204 99866 15 66457 65841 99867 15 67786 68435 99868 10 68328 67286 99869 10 65876 67257 99870 10 67984 67286 99871 10 66274 67158 99872 10 65659 68616 99873 10 68238 66267 99874 10 66625 67286 99875 10 68420 67048 99876 10 67280 66267 99877 10 66118 68604 99878 10 65686 66350 99879 10 67445 66618 99880 10 67883 67286 99881 10 68021 65826 99882 10 66375 68204 99883 10 67679 67286 99884 10 66590 66670 99885 15 66681 66071 99886 10 68497 68611 99887 10 66188 67277 99888 15 67078 66719 99889 15 67953 67254 99890 10 67148 66986 99891 10 68576 66734 99892 10 68407 65754 99893 10 65766 66992 99894 10 68379 67286 99895 10 66411 68473 99896 10 67743 65964 99897 10 67891 65758 99898 10 66155 67171 99899 10 68249 67540 99900 10 67688 67909 99901 10 67956 68005 99902 15 68277 68194 99903 10 67245 67622 99904 10 67063 67286 99905 10 67394 66091 99906 10 67934 66952 99907 10 67979 65758 99908 10 65781 68274 99909 15 66738 67280 99910 10 66467 67320 99911 15 66752 66358 99912 15 66751 68538 99913 15 66700 66119 99914 10 67066 66670 99915 10 66160 66670 99916 10 67421 67286 99917 10 67729 66833 99918 10 67628 68204 99919 10 66706 65826 99920 10 66147 67876 99921 10 66347 66734 99922 10 67231 66127 99923 10 66888 68204 99924 10 66336 67821 99925 15 66750 67801 99926 10 66161 66682 99927 10 66876 68274 99928 15 68017 67732 99929 10 68431 67821 99930 10 66171 67286 99931 10 66770 67286 99932 10 66220 66566 99933 10 66626 67779 99934 15 67045 66642 99935 15 67904 65856 99936 10 68149 67672 99937 10 67734 66350 99938 10 67526 66492 99939 15 65737 66199 99940 10 66209 67070 99941 10 67987 67286 99942 10 68638 67861 99943 10 66916 65907 99944 10 68043 67286 99945 15 67793 68544 99946 10 66288 65843 99947 10 65835 65826 99948 10 66576 65790 99949 10 68170 67286 99950 15 68587 66021 99951 10 66589 66463 99952 15 66067 67778 99953 10 66847 67756 99954 10 65674 68616 99955 15 68086 66068 99956 10 66391 67730 99957 10 68043 66847 99958 10 68439 66795 99959 15 68616 65947 99960 10 68218 66129 99961 10 66643 67286 99962 10 67624 67455 99963 10 66951 68204 99964 10 67335 66986 99965 10 67289 66034 99966 10 65823 67563 99967 10 65681 68204 99968 10 66328 66973 99969 15 66416 67076 99970 10 67131 66986 99971 10 66817 67286 99972 10 65735 67716 99973 10 68506 66618 99974 10 68112 65772 99975 10 68373 67322 99976 10 66592 67286 99977 10 65902 66080 99978 10 65833 65826 99979 10 68163 66044 99980 15 66698 66066 99981 10 68596 66984 99982 10 65685 66802 99983 10 67133 66566 99984 10 66462 66670 99985 10 67564 68417 99986 15 65790 67250 99987 10 66793 66991 99988 15 66566 67546 99989 15 66459 67282 99990 10 66990 66986 99991 10 67167 65826 99992 10 67817 65639 99993 10 66902 67622 99994 10 66459 67866 99995 10 66948 67286 99996 10 67328 68156 99997 10 68059 66566 99998 10 66659 66395 99999 10 66708 66391 100000 10 66899 67017 100001 10 67200 67286 100002 15 65745 67722 100003 10 68033 66166 100004 10 65701 67563 100005 10 65983 67062 100006 15 68620 67585 100007 10 67264 67286 100008 10 67131 67286 100009 10 65999 67086 100010 10 66511 68563 100011 10 68321 68611 100012 10 68369 65671 100013 10 67416 67020 100014 10 68354 67059 100015 10 66434 66566 100016 10 68488 68596 100017 15 65641 66819 100018 15 67559 67310 100019 15 68259 65780 100020 10 66160 67286 100021 10 68261 66959 100022 15 66466 67020 100023 15 66266 65997 100024 15 67112 68390 100025 10 67010 66251 100026 10 66407 66114 100027 10 67249 67522 100028 10 67964 67286 100029 10 66579 67257 100030 10 66852 67286 100031 10 67465 66097 100032 10 68341 66127 100033 10 68364 68339 100034 10 68093 66114 100035 10 67043 66991 100036 10 67342 66670 100037 10 67616 67062 100038 10 68290 66986 100039 10 67677 66044 100040 10 67246 67779 100041 10 66537 67322 100042 10 67498 67337 100043 10 66108 67062 100044 10 66357 67286 100045 15 68516 66851 100046 10 65682 67563 100047 10 66027 67286 100048 15 67169 66198 100049 10 66683 67257 100050 10 66620 68417 100051 10 65897 67145 100052 10 66088 66986 100053 10 68017 68236 100054 10 68372 65671 100055 10 67037 67171 100056 10 65833 66610 100057 10 68375 65837 100058 10 66334 66748 100059 10 66182 68377 100060 10 66569 66986 100061 15 65918 67688 100062 15 66565 66905 100063 15 68185 65674 100064 10 66866 67828 100065 10 67838 66522 100066 15 68369 65802 100067 15 65768 66339 100068 10 67510 67101 100069 10 66150 67642 100070 10 66373 68187 100071 15 68066 66710 100072 10 65683 67286 100073 10 67749 67563 100074 10 66259 66986 100075 10 68160 66495 100076 10 67130 68132 100077 10 65894 67373 100078 10 68406 68391 100079 15 67673 66508 100080 15 68063 66161 100081 10 66127 67981 100082 10 66643 68439 100083 10 67045 67827 100084 10 66954 67166 100085 10 67858 67286 100086 15 67612 68499 100087 10 67328 66466 100088 10 68597 67286 100089 10 65954 67286 100090 10 67145 67062 100091 15 67867 68485 100092 10 66572 66986 100093 10 66175 66670 100094 10 67984 66114 100095 10 66451 67286 100096 10 68302 67048 100097 10 68038 65826 100098 15 68431 68014 100099 15 67491 66761 100100 15 67026 67280 100101 10 68067 67986 100102 10 67564 67286 100103 15 66082 68455 100104 10 67519 68451 100105 10 65890 68378 100106 15 67305 66084 100107 10 68004 67464 100108 10 66753 66986 100109 10 68367 67213 100110 15 68089 66761 100111 10 67784 66233 100112 10 67106 68274 100113 10 65673 67716 100114 15 66069 66678 100115 10 66365 66670 100116 10 66746 66986 100117 10 67447 66547 100118 10 65646 67048 100119 10 66042 67286 100120 15 66129 66782 100121 10 67044 68204 100122 15 67746 66285 100123 15 66104 67410 100124 10 67586 66156 100125 15 68579 67280 100126 10 66406 65875 100127 10 67150 68204 100128 15 66498 65649 100129 15 66228 67447 100130 15 66297 66703 100131 10 68486 68204 100132 10 67373 67286 100133 10 66820 67286 100134 10 66900 66670 100135 15 67633 68258 100136 10 68528 67128 100137 10 67654 66984 100138 10 68267 67522 100139 15 67808 67061 100140 10 66034 67756 100141 10 66789 67906 100142 10 68197 68631 100143 10 67060 66986 100144 10 68575 65754 100145 10 66323 66114 100146 10 66635 65671 100147 15 66131 67319 100148 15 68569 68419 100149 10 68351 66670 100150 10 65938 65790 100151 10 67881 67260 100152 10 68318 66524 100153 15 68230 67091 100154 10 65764 67286 100155 10 67438 67286 100156 15 67526 68478 100157 10 65841 68132 100158 10 67397 67779 100159 10 67208 66617 100160 10 67132 66566 100161 10 68277 65826 100162 10 67508 66492 100163 10 66321 67286 100164 10 68552 66350 100165 10 67134 68018 100166 10 67752 67703 100167 15 66048 65674 100168 10 66033 66409 100169 10 66440 67286 100170 10 67681 67286 100171 10 66914 67286 100172 10 65644 68417 100173 10 65805 68396 100174 10 68512 67876 100175 10 67746 66670 100176 10 67479 66587 100177 10 67146 66670 100178 10 66814 67700 100179 10 66805 66114 100180 15 68419 67033 100181 10 67469 67202 100182 15 66217 67166 100183 15 65728 67618 100184 10 66945 66822 100185 10 67483 67563 100186 15 66190 68495 100187 10 66673 67709 100188 10 68622 67286 100189 10 66208 67622 100190 10 66904 67286 100191 10 67320 67756 100192 10 68296 67286 100193 10 66649 67286 100194 15 66780 66299 100195 15 66988 68277 100196 15 68443 65674 100197 15 68472 67633 100198 10 66921 65639 100199 10 68485 67668 100200 10 66468 67947 100201 10 65706 66670 100202 10 65898 66670 100203 10 68282 67821 100204 10 66838 67286 100205 15 66704 67800 100206 10 66628 66385 100207 10 67170 66100 100208 10 66833 68204 100209 10 67642 66986 100210 10 66481 68181 100211 10 66018 67866 100212 10 68047 67874 100213 10 66502 68535 100214 10 66332 66986 100215 10 66604 67286 100216 15 66363 68357 100217 10 66492 67286 100218 10 66250 66610 100219 10 67201 68527 100220 10 68076 67286 100221 10 67159 65826 100222 15 67333 68209 100223 15 65753 68263 100224 10 67616 67286 100225 10 68529 68494 100226 10 66329 67286 100227 15 67679 67280 100228 10 67736 66660 100229 10 68231 67286 100230 15 67168 67056 100231 15 66132 66196 100232 10 68412 67062 100233 10 66309 66114 100234 10 67361 68093 100235 10 67005 67729 100236 10 66759 66333 100237 15 67704 67478 100238 10 65973 67986 100239 10 66440 66670 100240 15 68533 67004 100241 10 68271 65837 100242 15 68417 66547 100243 10 65893 67286 100244 10 67569 65964 100245 10 68209 67327 100246 10 68370 67469 100247 10 67003 68631 100248 10 66851 66053 100249 10 66413 67286 100250 15 67394 65929 100251 10 68403 66986 100252 15 67044 67843 100253 10 66014 65826 100254 10 66588 66618 100255 10 67735 68417 100256 10 65862 65701 100257 10 66088 67286 100258 10 66713 66610 100259 15 66470 67291 100260 15 65858 67560 100261 10 65729 66986 100262 10 68239 66397 100263 10 68313 67986 100264 10 68272 66530 100265 10 66896 65901 100266 10 67394 66991 100267 10 65885 68236 100268 15 68491 67852 100269 10 65826 66566 100270 10 66433 66682 100271 10 66190 66618 100272 10 66007 67286 100273 10 68416 66670 100274 10 66201 66833 100275 10 68349 65790 100276 15 65983 67993 100277 10 68273 67286 100278 10 68203 66034 100279 15 67548 67733 100280 10 65803 67286 100281 15 67962 67020 100282 10 66217 66802 100283 10 67310 67821 100284 10 66016 68355 100285 10 66507 68407 100286 10 67969 67827 100287 15 68520 66264 100288 10 66701 66986 100289 10 67333 67286 100290 10 68368 67286 100291 10 66089 66986 100292 10 66073 65989 100293 15 67196 66299 100294 15 65967 68214 100295 15 66352 67378 100296 10 67146 67286 100297 10 66797 68204 100298 10 67710 66541 100299 15 67497 66768 100300 10 68158 67286 100301 10 67446 66618 100302 10 67385 66166 100303 10 66415 66670 100304 15 66907 67935 100305 10 67047 67286 100306 10 67049 67286 100307 10 66943 65689 100308 10 67737 67618 100309 10 67317 66128 100310 15 66624 67456 100311 15 67575 68305 100312 10 67923 65671 100313 10 66569 67286 100314 10 66349 67286 100315 10 67585 68204 100316 10 66278 66670 100317 10 68109 66114 100318 10 66906 68204 100319 10 66900 67563 100320 10 67515 65826 100321 15 66371 66902 100322 10 66782 67802 100323 10 67611 67447 100324 15 67170 67755 100325 10 67201 67455 100326 10 67626 65716 100327 10 65967 66136 100328 10 65856 65790 100329 10 66750 67622 100330 10 66361 67638 100331 15 67695 68374 100332 10 67119 66847 100333 10 68492 66767 100334 10 68413 66616 100335 10 65717 67322 100336 10 68349 65950 100337 10 68444 68631 100338 10 66156 68204 100339 10 66435 67455 100340 15 68426 65847 100341 10 66265 67286 100342 15 65864 67936 100343 10 66895 66326 100344 10 67900 66000 100345 15 67445 67489 100346 15 66326 67606 100347 10 67610 67286 100348 10 67502 65670 100349 10 67017 67563 100350 10 66924 66114 100351 10 66834 66209 100352 10 66203 67716 100353 15 67422 66325 100354 10 66692 67286 100355 10 66239 67982 100356 10 65959 67821 100357 10 67290 68339 100358 10 68011 65826 100359 10 65749 68580 100360 10 66465 67879 100361 10 66607 66670 100362 10 68547 68571 100363 10 68455 66091 100364 10 65963 66670 100365 15 67920 67172 100366 10 67710 66466 100367 10 68265 65766 100368 10 68305 67509 100369 10 66552 67286 100370 10 65851 67062 100371 10 68318 68417 100372 10 66889 68275 100373 10 68195 68075 100374 10 67928 66267 100375 10 67352 67920 100376 10 66418 67442 100377 10 68256 65688 100378 15 66822 67865 100379 10 68490 68170 100380 15 65993 67692 100381 10 67908 68129 100382 10 67369 66610 100383 10 67833 67111 100384 15 68138 66999 100385 10 66320 67316 100386 10 66053 65947 100387 10 66126 67286 100388 10 67732 67066 100389 10 68176 67160 100390 10 67416 68204 100391 10 66348 66986 100392 10 67511 67286 100393 10 67898 66618 100394 10 66754 66059 100395 10 67592 67049 100396 15 68504 67521 100397 10 67056 66530 100398 15 66691 66710 100399 10 68120 67869 100400 15 67969 67165 100401 10 68052 65688 100402 15 67291 66184 100403 15 68401 66530 100404 10 67100 67286 100405 10 65624 66968 100406 10 68191 68538 100407 10 67181 65754 100408 15 68492 67170 100409 10 66305 67982 100410 15 65964 67304 100411 10 68066 67286 100412 10 68230 65629 100413 10 66855 66409 100414 10 66953 68075 100415 10 65859 67059 100416 10 65681 68113 100417 10 65726 65977 100418 10 66876 67286 100419 10 66803 65688 100420 15 67051 65938 100421 10 66536 67821 100422 10 66126 66847 100423 10 66971 67860 100424 10 67384 68229 100425 10 66734 66670 100426 10 68177 65993 100427 10 66886 67903 100428 10 68330 66986 100429 10 66700 67397 100430 10 67336 66540 100431 10 65872 67286 100432 15 68149 66345 100433 15 66629 66299 100434 10 67356 66802 100435 10 66677 67642 100436 10 66936 67286 100437 10 67682 67714 100438 10 66156 67469 100439 15 66915 65667 100440 10 65825 65790 100441 10 66577 67522 100442 10 66240 68417 100443 10 65818 66986 100444 10 65710 65932 100445 15 67834 65687 100446 10 67242 67286 100447 10 67238 68204 100448 10 65622 65977 100449 10 66245 67322 100450 10 67277 68358 100451 10 66632 66021 100452 10 66516 65985 100453 10 66004 66858 100454 15 65699 66339 100455 10 65729 67286 100456 10 66403 66143 100457 10 65918 67827 100458 10 66227 65965 100459 10 65694 68229 100460 10 67342 67563 100461 10 66621 66516 100462 10 65748 65790 100463 10 68200 68266 100464 10 67741 66302 100465 15 68427 66973 100466 10 66996 66780 100467 10 67158 67286 100468 10 68094 65977 100469 10 66214 66670 100470 10 67428 67286 100471 15 65738 67061 100472 10 66303 68204 100473 10 67549 66566 100474 10 67535 66631 100475 15 65994 66854 100476 10 68526 65977 100477 10 67156 67879 100478 15 67866 67587 100479 10 66092 66973 100480 10 68057 67522 100481 10 67487 68611 100482 10 68308 68484 100483 10 66758 67606 100484 10 67337 68631 100485 10 66631 67286 100486 10 65858 66661 100487 10 67687 66529 100488 10 67069 66114 100489 10 66759 66118 100490 10 67857 65629 100491 15 67438 66066 100492 10 65716 68204 100493 10 67871 68311 100494 10 66163 67286 100495 10 66121 67986 100496 10 65635 67263 100497 10 68562 66986 100498 10 67354 67286 100499 15 67043 67860 100500 10 67156 67434 100501 10 67845 68596 100502 15 65670 67316 100503 10 67647 66986 100504 10 67860 66044 100505 10 67358 67714 100506 10 66130 67622 100507 10 67103 66986 100508 15 68068 68500 100509 10 65949 65664 100510 15 66778 68501 100511 10 67983 66669 100512 10 67594 67320 100513 15 66736 67004 100514 10 66499 68177 100515 15 68591 68276 100516 10 66673 67140 100517 10 66141 66350 100518 10 66229 67257 100519 10 66635 67286 100520 15 67479 68017 100521 15 67576 67274 100522 10 67924 66337 100523 10 67013 68611 100524 10 65771 66081 100525 10 67783 68484 100526 10 68233 65964 100527 10 67340 67455 100528 15 68451 67687 100529 10 68586 68229 100530 15 67520 67009 100531 10 66586 66670 100532 15 66605 66819 100533 10 68378 66566 100534 10 68115 66114 100535 15 68239 65707 100536 10 67808 67286 100537 10 66082 66991 100538 10 67318 66986 100539 10 67760 65826 100540 10 67777 67286 100541 10 67022 67563 100542 10 67957 65841 100543 15 66262 66751 100544 10 66072 66540 100545 15 67206 65798 100546 10 67730 68417 100547 10 66840 65934 100548 10 68319 66934 100549 10 68144 67286 100550 10 67518 66114 100551 10 65919 67563 100552 10 68010 66882 100553 10 67825 66100 100554 15 66061 66336 100555 10 66322 68272 100556 10 67287 65977 100557 10 66062 66670 100558 10 66050 65701 100559 10 67461 66552 100560 10 66728 67202 100561 15 66347 67170 100562 10 66056 66466 100563 10 66218 67213 100564 10 67932 66273 100565 10 68132 66670 100566 10 68520 66540 100567 10 67528 67286 100568 10 67662 67766 100569 10 66568 68462 100570 10 66743 67455 100571 10 66952 67286 100572 10 67742 67107 100573 10 67267 66206 100574 10 67494 65905 100575 10 66099 67062 100576 10 67546 67202 100577 10 67929 65964 100578 15 67774 65853 100579 10 67000 66566 100580 10 67285 68368 100581 15 67370 66199 100582 10 65652 66734 100583 15 68424 67755 100584 10 65937 68473 100585 15 67010 66157 100586 15 66610 65701 100587 10 65783 67286 100588 10 67336 66879 100589 10 67881 66483 100590 10 66066 67083 100591 10 66231 67678 100592 10 66143 66610 100593 10 66266 68105 100594 10 68353 65826 100595 10 66997 66986 100596 10 68432 66734 100597 15 68263 65637 100598 10 66251 68436 100599 10 68296 66986 100600 10 65923 66114 100601 10 66907 66986 100602 10 65953 67286 100603 15 66084 66509 100604 10 68508 68417 100605 10 66994 68260 100606 10 66154 68368 100607 10 67116 67286 100608 10 65828 66719 100609 10 65762 67286 100610 10 67996 66986 100611 15 66918 67240 100612 10 66664 68156 100613 15 67747 66579 100614 10 67450 67779 100615 10 67894 66986 100616 10 67990 67436 100617 10 68537 67680 100618 10 67027 67286 100619 10 67945 68377 100620 10 66545 68075 100621 10 67947 67286 100622 10 67977 67622 100623 10 68003 67286 100624 10 66452 66585 100625 10 68405 66670 100626 10 68271 66508 100627 10 68571 65754 100628 10 65840 67522 100629 10 66623 66939 100630 10 67961 66385 100631 10 67402 68607 100632 10 67563 67733 100633 10 66176 66670 100634 10 66470 68631 100635 10 65975 68204 100636 10 67976 66986 100637 10 66795 65826 100638 10 66742 66971 100639 10 67817 66992 100640 10 67624 66087 100641 10 66174 68041 100642 10 68077 66699 100643 15 66788 66526 100644 10 66147 68156 100645 10 67298 65790 100646 10 68229 68355 100647 10 66600 66566 100648 15 67609 66782 100649 10 67647 67286 100650 10 67128 67982 100651 15 65775 67873 100652 15 66617 68171 100653 10 68500 66431 100654 10 68298 67020 100655 10 68227 67286 100656 10 66091 66670 100657 15 66284 67280 100658 10 67554 65901 100659 10 66524 68204 100660 10 68199 66670 100661 10 66602 67286 100662 15 67285 67755 100663 10 68576 66301 100664 10 67738 66639 100665 10 66965 67986 100666 10 67978 67286 100667 10 68531 65671 100668 10 68487 68343 100669 10 66075 67286 100670 10 68207 67062 100671 10 68260 65826 100672 10 67457 67286 100673 10 66610 67756 100674 10 66266 67821 100675 10 66739 67286 100676 10 67513 68010 100677 10 66299 68187 100678 15 65885 67082 100679 10 67240 65639 100680 10 67892 66323 100681 10 66620 67286 100682 15 65743 68286 100683 10 65960 66986 100684 15 68575 67004 100685 10 68558 67817 100686 10 66087 68204 100687 10 65973 66986 100688 10 66098 66710 100689 10 66715 66670 100690 10 65888 66610 100691 15 66946 67755 100692 10 68350 68473 100693 10 68498 68055 100694 10 65780 67066 100695 10 67254 67416 100696 10 67822 66097 100697 10 68385 67062 100698 10 66773 66267 100699 10 67172 67714 100700 10 66222 67286 100701 10 66123 65772 100702 10 68232 66658 100703 10 65853 66312 100704 10 66246 68319 100705 10 66034 66670 100706 10 68189 67086 100707 10 67923 67286 100708 10 67303 68579 100709 10 67553 66822 100710 15 65961 67280 100711 10 66307 67286 100712 10 68636 65696 100713 10 65647 66578 100714 10 67575 66114 100715 10 65675 67286 100716 10 66303 67286 100717 10 66362 66091 100718 10 66920 66305 100719 10 68448 66670 100720 10 65669 67132 100721 10 66049 66986 100722 10 66128 66670 100723 10 68274 66670 100724 10 66262 68204 100725 10 67193 66114 100726 10 67591 66986 100727 10 66242 68335 100728 15 67441 67327 100729 10 67956 66114 100730 10 67306 68417 100731 10 66271 67286 100732 10 66782 65977 100733 15 68565 67682 100734 10 66029 68495 100735 10 68477 67286 100736 10 66637 68204 100737 10 68461 66670 100738 10 67221 68473 100739 10 67779 67464 100740 10 67943 65672 100741 10 68205 65639 100742 15 67327 66064 100743 10 68564 67587 100744 10 65877 67756 100745 15 66659 68435 100746 10 67323 66670 100747 10 66629 66986 100748 15 65712 65998 100749 10 65662 68274 100750 10 67138 67714 100751 10 67173 66114 100752 10 68253 66114 100753 10 67656 66981 100754 10 67967 67286 100755 10 68466 65754 100756 10 66707 65890 100757 10 67800 67455 100758 15 66805 67485 100759 10 66532 68274 100760 15 67228 67937 100761 10 67758 66973 100762 10 66412 66214 100763 10 68124 68445 100764 10 66620 68596 100765 10 66544 65862 100766 10 67163 67779 100767 10 67890 68631 100768 10 65890 67821 100769 10 65715 66670 100770 10 65802 68458 100771 15 66776 66987 100772 10 66552 66670 100773 10 67749 66670 100774 10 67897 66670 100775 10 67566 66986 100776 15 66966 67295 100777 15 65640 67419 100778 10 66914 66986 100779 15 68595 66682 100780 15 66108 65936 100781 10 68085 67286 100782 10 68402 67642 100783 10 66878 68417 100784 10 68163 66670 100785 15 68220 67256 100786 15 66016 68081 100787 10 65928 68156 100788 10 68013 67123 100789 10 66541 65826 100790 10 66906 65826 100791 10 66713 67962 100792 10 68374 65758 100793 15 67857 65684 100794 10 68371 67286 100795 10 66892 67947 100796 10 66017 66240 100797 10 66491 66566 100798 10 66846 66385 100799 10 67222 67286 100800 10 66525 68204 100801 10 67720 66822 100802 10 67262 65629 100803 15 67419 68564 100804 15 68605 66579 100805 10 65985 67548 100806 10 66295 66566 100807 10 65789 66661 100808 10 65752 68170 100809 10 66697 66114 100810 10 67639 67622 100811 10 66030 66618 100812 10 67294 66530 100813 10 68022 65754 100814 10 68536 67286 100815 10 68407 67986 100816 10 66388 67028 100817 10 66608 67286 100818 15 66582 65737 100819 10 65965 68204 100820 10 68255 66986 100821 10 66312 67286 100822 10 66271 68204 100823 10 66731 67286 100824 10 68616 66566 100825 10 66780 67986 100826 10 68264 65816 100827 10 67901 66371 100828 10 67881 66670 100829 10 66074 67286 100830 10 67773 68459 100831 10 65654 66986 100832 10 67198 66350 100833 10 68301 67503 100834 15 66574 67692 100835 10 65817 65826 100836 15 66078 67436 100837 10 66801 67982 100838 10 66349 68204 100839 10 67871 65671 100840 10 66933 65676 100841 10 66333 66734 100842 10 66733 65964 100843 10 66901 67286 100844 10 66776 67028 100845 10 67006 66670 100846 10 68543 66670 100847 10 67840 66385 100848 10 68391 66114 100849 10 68184 67322 100850 15 68203 67861 100851 10 65801 66021 100852 10 68307 66986 100853 10 66053 66529 100854 15 67114 67348 100855 10 66459 68075 100856 15 68509 66899 100857 10 67725 66986 100858 10 65730 67286 100859 10 68258 66768 100860 10 66211 67286 100861 10 66992 66610 100862 10 68480 66833 100863 10 66214 67286 100864 10 67220 67286 100865 10 66930 67993 100866 10 67080 67387 100867 10 67614 67322 100868 10 68133 65754 100869 10 66450 66734 100870 10 66446 68527 100871 10 65848 67539 100872 10 65932 67286 100873 10 68316 68450 100874 15 67270 65850 100875 15 65936 66842 100876 10 66525 67286 100877 10 65628 68377 100878 10 67026 67286 100879 10 68318 68335 100880 10 66706 67286 100881 10 66490 65932 100882 10 67444 66242 100883 10 66213 65754 100884 10 66637 67286 100885 15 67970 66500 100886 10 67188 67286 100887 15 67775 66299 100888 10 67357 67586 100889 10 67089 68616 100890 10 68203 67794 100891 10 67816 65932 100892 10 65920 68347 100893 10 66283 66114 100894 10 66318 66114 100895 10 68247 68385 100896 15 67167 68626 100897 15 67123 66179 100898 10 66024 66986 100899 10 65931 67286 100900 10 66176 67563 100901 10 66327 67066 100902 10 68144 65826 100903 15 66157 66089 100904 10 66717 66734 100905 10 67307 67048 100906 10 67177 66879 100907 10 68390 66566 100908 15 68300 65841 100909 10 66714 67286 100910 15 67058 67633 100911 10 67907 68075 100912 15 66923 68298 100913 15 68513 66327 100914 10 66850 66986 100915 10 68289 68204 100916 15 67007 66967 100917 15 67486 67692 100918 15 66109 67071 100919 15 68593 67506 100920 15 66196 66954 100921 15 68055 68419 100922 15 65935 66867 100923 10 65694 65790 100924 15 66348 66299 100925 10 66277 67286 100926 10 67046 65754 100927 10 67625 68274 100928 10 67216 67730 100929 15 66057 67163 100930 10 65896 67874 100931 10 68051 68271 100932 10 67438 65977 100933 10 65795 66991 100934 10 68011 68274 100935 10 66439 67172 100936 10 68235 66986 100937 10 66738 66267 100938 10 66281 66114 100939 10 66171 65671 100940 15 68444 67780 100941 10 68192 68204 100942 10 68400 67027 100943 10 66984 67469 100944 10 65810 65716 100945 10 67471 65716 100946 10 66848 68587 100947 10 67331 68443 100948 10 67487 65977 100949 10 68563 68204 100950 10 67362 66114 100951 10 67716 65826 100952 10 65700 68335 100953 10 65638 65671 100954 10 66704 67286 100955 10 67992 67286 100956 10 66078 68154 100957 10 67973 66670 100958 10 66404 66670 100959 15 66813 68420 100960 10 66024 67286 100961 10 66880 65977 100962 10 66445 68497 100963 10 67136 66986 100964 10 68641 68156 100965 10 67897 66833 100966 15 67718 68567 100967 10 66375 67286 100968 10 68024 65671 100969 10 67898 68113 100970 10 66921 68156 100971 10 67442 67286 100972 10 67402 67216 100973 10 67051 65881 100974 10 66401 67286 100975 10 67432 68236 100976 10 66040 68434 100977 10 65660 67193 100978 10 66633 65682 100979 15 67383 67194 100980 10 65938 68236 100981 10 68523 65790 100982 10 66358 67062 100983 10 66095 66610 100984 10 66352 67986 100985 10 66542 67750 100986 10 65933 67286 100987 10 66309 67286 100988 15 66361 68164 100989 10 68188 68484 100990 15 68441 67825 100991 10 66730 67299 100992 10 66509 65671 100993 10 67358 65701 100994 10 67843 68596 100995 10 65676 65947 100996 10 68516 68631 100997 10 66410 66719 100998 10 67347 66692 100999 15 67602 66229 101000 10 68248 67286 101001 10 66818 67286 101002 10 65893 66986 101003 10 66838 66986 101004 10 66581 67286 101005 15 66593 67730 101006 10 67801 67048 101007 10 67477 67286 101008 10 65828 66734 101009 10 68511 67934 101010 10 66423 68441 101011 10 67229 66267 101012 10 67844 67020 101013 15 65973 66299 101014 10 65721 67286 101015 10 68489 66670 101016 10 66574 65826 101017 10 67322 65826 101018 10 66887 67194 101019 10 67072 66631 101020 10 68632 66973 101021 10 65767 66114 101022 10 66513 68156 101023 10 66206 67313 101024 15 67929 67004 101025 10 65779 66974 101026 10 66567 67227 101027 10 66702 66296 101028 10 65985 67982 101029 15 66790 67310 101030 15 66670 66825 101031 15 68043 67194 101032 10 67354 66670 101033 10 68560 66670 101034 10 67023 67062 101035 15 68133 67004 101036 10 68625 66540 101037 10 68492 66734 101038 10 67107 67286 101039 15 65724 66449 101040 15 67089 68149 101041 10 68429 68105 101042 10 67378 67692 101043 10 67861 66809 101044 15 67474 67053 101045 15 66415 66285 101046 10 68158 66986 101047 15 66494 68173 101048 10 67001 67322 101049 10 67703 67286 101050 10 66595 67286 101051 10 67068 65622 101052 15 68041 67648 101053 10 68580 65826 101054 10 67137 66299 101055 15 66908 66080 101056 10 66601 66114 101057 15 68122 66253 101058 15 67484 68357 101059 10 67835 68405 101060 10 67953 67286 101061 15 67853 66765 101062 15 67177 68510 101063 15 66077 65819 101064 10 66314 66424 101065 10 66944 68204 101066 10 66407 67286 101067 15 67352 67076 101068 10 66144 67227 101069 10 67756 68204 101070 10 66416 66034 101071 15 67047 67921 101072 10 68071 67756 101073 10 66564 68417 101074 10 67809 68459 101075 10 68607 67730 101076 15 65950 68377 101077 10 67831 68274 101078 10 68126 66906 101079 15 67336 67618 101080 10 67154 67286 101081 10 66523 66506 101082 10 67182 66822 101083 15 66033 66080 101084 15 66370 65812 101085 10 65978 66973 101086 10 66625 66114 101087 10 67120 66670 101088 10 67875 66986 101089 10 66864 67286 101090 15 67487 65622 101091 15 67420 66560 101092 10 65750 67982 101093 10 68275 65671 101094 15 67284 66299 101095 10 67623 66114 101096 10 67748 68156 101097 10 66603 67286 101098 10 68539 68091 101099 10 66662 68276 101100 15 67993 65819 101101 10 65970 66670 101102 15 68456 66453 101103 10 67261 65689 101104 10 68472 66267 101105 10 67791 68567 101106 15 66360 65929 101107 10 67448 66114 101108 10 68116 66585 101109 10 68411 66682 101110 10 66638 65826 101111 10 65724 66209 101112 10 66316 66941 101113 10 67086 68204 101114 10 65875 67204 101115 15 67264 67254 101116 15 66027 66642 101117 15 67410 68276 101118 10 67673 66034 101119 10 67266 65826 101120 10 67595 65671 101121 10 65863 67086 101122 10 66243 66880 101123 15 66823 66327 101124 15 66316 67778 101125 15 66854 67009 101126 10 67778 68378 101127 15 67961 65823 101128 10 66056 68156 101129 10 68533 67151 101130 10 68226 66524 101131 10 68279 66986 101132 15 67905 65911 101133 10 65764 68204 101134 15 66403 66831 101135 10 66060 67119 101136 10 66261 66986 101137 15 68438 65637 101138 10 65861 66296 101139 15 68524 66045 101140 10 66960 65826 101141 10 67149 67286 101142 10 67110 67437 101143 10 66919 68116 101144 10 67142 66971 101145 10 65798 67062 101146 10 66874 66114 101147 10 67339 66585 101148 10 67305 66395 101149 10 67755 66734 101150 15 66311 66640 101151 10 66564 67286 101152 10 66788 67419 101153 10 67846 66127 101154 10 66442 66670 101155 10 68418 67286 101156 10 68214 67750 101157 10 67848 66738 101158 15 68096 68102 101159 10 67325 67982 101160 10 65707 67091 101161 10 68008 66670 101162 10 67507 66670 101163 15 68173 67935 101164 10 65624 65790 101165 10 66606 67563 101166 15 67783 67921 101167 10 66890 66610 101168 10 68483 67286 101169 10 66219 67163 101170 10 68339 67129 101171 10 65988 67286 101172 10 66905 68596 101173 10 66299 66085 101174 10 67538 68490 101175 10 65747 66566 101176 10 68075 67202 101177 10 66044 68596 101178 10 68129 65947 101179 15 68500 66736 101180 10 66912 65964 101181 10 68375 67172 101182 10 67919 68615 101183 10 67643 67286 101184 10 65988 65826 101185 10 67741 65639 101186 10 67788 65671 101187 10 66341 68484 101188 10 67657 66812 101189 10 65940 67193 101190 15 66087 66797 101191 10 66906 67286 101192 15 66903 68375 101193 10 65997 68450 101194 10 67260 68021 101195 10 67368 68271 101196 10 67918 67902 101197 10 66153 68156 101198 10 67383 65826 101199 10 65849 66986 101200 10 68454 66670 101201 10 67453 67286 101202 10 67808 68156 101203 15 65625 67289 101204 10 65742 67982 101205 10 67353 67286 101206 10 68049 68473 101207 10 67084 66047 101208 10 66383 66610 101209 10 66209 66483 101210 10 67396 66114 101211 10 68505 65977 101212 10 67804 66670 101213 10 68113 68527 101214 10 66725 68076 101215 10 67495 66127 101216 10 68074 65964 101217 10 65765 66803 101218 10 67915 66091 101219 10 67589 68275 101220 10 67593 66661 101221 15 66965 66299 101222 15 68197 67291 101223 10 66216 65964 101224 10 67435 67286 101225 10 68168 67563 101226 10 65857 67129 101227 15 68143 65636 101228 10 67652 67286 101229 10 67348 66661 101230 10 68545 67902 101231 10 66800 66566 101232 10 65977 68417 101233 10 67214 67071 101234 10 65792 67062 101235 10 68308 66670 101236 15 67002 68557 101237 10 67889 67286 101238 10 66574 68371 101239 10 68002 67066 101240 15 67468 68626 101241 10 68451 68631 101242 15 65652 67755 101243 10 66947 66936 101244 10 66845 67615 101245 10 65690 65950 101246 10 67579 67902 101247 10 66653 65808 101248 10 66070 66670 101249 10 67607 66242 101250 10 67045 67286 101251 10 68321 65622 101252 10 66225 68204 101253 10 65713 68450 101254 10 67811 68244 101255 15 66953 66459 101256 15 66092 66328 101257 10 67051 65790 101258 10 67387 67756 101259 10 67313 67286 101260 10 65995 67176 101261 15 66541 66697 101262 15 66127 66299 101263 15 65658 66325 101264 10 65883 68417 101265 10 67226 65672 101266 10 68639 66267 101267 10 67502 68156 101268 10 67320 67821 101269 10 65802 65671 101270 10 66699 66986 101271 10 66726 68276 101272 10 68297 68204 101273 10 66877 68495 101274 10 68063 65790 101275 10 67931 66409 101276 10 65845 67322 101277 15 68201 66299 101278 10 65807 67447 101279 10 68606 66267 101280 10 68091 67819 101281 10 66180 67986 101282 10 67308 66371 101283 10 67641 66986 101284 10 66792 65715 101285 10 65926 66986 101286 15 66834 68262 101287 10 67178 66114 101288 10 66466 67615 101289 10 66675 67048 101290 10 67341 66114 101291 10 66447 67048 101292 10 66599 67270 101293 10 67991 66631 101294 15 66661 68434 101295 10 66808 68596 101296 10 65776 67642 101297 10 68066 65826 101298 10 66735 67615 101299 10 67305 65671 101300 10 67372 67263 101301 10 67714 67586 101302 10 67930 67286 101303 10 67507 66833 101304 10 67085 67286 101305 10 65638 67286 101306 10 68195 66055 101307 15 66958 66497 101308 10 65864 68631 101309 15 68357 67452 101310 10 68384 67714 101311 10 66650 68171 101312 10 67426 66139 101313 10 66615 67821 101314 10 67464 68417 101315 10 67382 67286 101316 10 65848 67533 101317 10 68013 66986 101318 10 66597 66670 101319 10 66923 66034 101320 15 67200 65929 101321 10 66804 67286 101322 10 66166 65826 101323 15 68523 66627 101324 10 66707 68037 101325 10 66140 66713 101326 10 68561 66566 101327 10 67929 67286 101328 10 66480 66986 101329 15 67060 66220 101330 15 66657 67348 101331 10 65678 66363 101332 10 67073 67642 101333 10 65786 65826 101334 15 68353 67260 101335 15 68551 66191 101336 10 67940 67404 101337 10 66865 67286 101338 10 67518 67286 101339 15 66678 67810 101340 10 68288 66540 101341 10 66482 67710 101342 10 67254 68382 101343 10 68592 66670 101344 10 68483 66566 101345 10 68208 65826 101346 10 67033 66986 101347 10 66719 66670 101348 10 66055 66758 101349 10 68442 67455 101350 15 66208 68632 101351 10 68219 66566 101352 15 65830 65644 101353 10 67971 65908 101354 10 66601 66833 101355 10 68297 67286 101356 10 66645 66034 101357 10 67664 65798 101358 10 67137 67512 101359 10 66354 66986 101360 10 67576 65964 101361 10 66493 66114 101362 10 66142 66540 101363 10 67104 66986 101364 10 65838 66114 101365 10 66613 66114 101366 10 65675 65826 101367 15 65957 67280 101368 15 66555 65864 101369 10 67796 65671 101370 15 67945 66327 101371 10 67166 68417 101372 10 66333 68604 101373 10 67782 66986 101374 10 66421 66986 101375 10 66061 67062 101376 15 67134 66066 101377 15 67243 67714 101378 10 65876 67048 101379 10 65673 66114 101380 10 66587 67982 101381 10 68114 67286 101382 10 67165 67586 101383 10 67829 68256 101384 10 67118 67286 101385 10 68173 67316 101386 15 65856 65938 101387 10 68106 65758 101388 10 66573 68083 101389 10 66854 68377 101390 10 68470 68604 101391 10 67558 68274 101392 10 68357 66986 101393 15 67113 67692 101394 10 67858 66034 101395 15 66175 66940 101396 10 68031 68076 101397 15 67460 66122 101398 10 68244 66097 101399 10 67443 67286 101400 10 66031 66618 101401 10 66581 65826 101402 10 66157 66986 101403 10 66212 67951 101404 10 65639 66085 101405 15 66512 66800 101406 10 66954 65977 101407 10 67236 67286 101408 10 65832 66986 101409 10 66870 67737 101410 10 65836 65808 101411 10 65837 67714 101412 10 65672 65964 101413 10 65925 67286 101414 10 68063 66334 101415 10 68103 67373 101416 10 66591 67563 101417 10 67571 68175 101418 10 68584 68619 101419 10 67242 66670 101420 10 66739 65826 101421 10 68172 68462 101422 10 67264 68156 101423 10 68387 66364 101424 10 68496 68071 101425 10 66612 67286 101426 10 68122 67325 101427 10 67596 66566 101428 10 68554 67286 101429 10 68626 66847 101430 15 67414 68102 101431 10 68228 68396 101432 15 67387 68071 101433 10 68604 67286 101434 15 66212 66977 101435 10 66839 67286 101436 15 66031 66851 101437 10 67183 67286 101438 10 67667 66847 101439 10 66546 66114 101440 10 66959 66483 101441 10 65813 68391 101442 10 66791 66986 101443 10 68229 67982 101444 10 66421 67286 101445 10 68205 65627 101446 10 67061 65681 101447 10 68145 65790 101448 10 66584 67189 101449 10 68140 66803 101450 15 66203 66299 101451 10 67345 67715 101452 10 66393 68426 101453 10 66781 66661 101454 15 66649 66299 101455 10 66613 66389 101456 10 66748 67982 101457 10 67408 68156 101458 10 68573 65754 101459 10 67503 67286 101460 10 67670 66566 101461 10 67389 67286 101462 10 67443 66986 101463 10 66796 68631 101464 15 68349 65628 101465 10 67196 66986 101466 10 66211 68204 101467 10 66019 67286 101468 10 68629 67642 101469 10 67382 66670 101470 10 67405 67129 101471 10 68169 68204 101472 15 66991 67942 101473 10 65979 68578 101474 15 67140 65689 101475 10 68153 66424 101476 10 67295 67172 101477 10 66868 67791 101478 10 67949 66566 101479 10 67038 66802 101480 15 65710 67004 101481 10 67970 66567 101482 10 67491 66114 101483 10 68111 67714 101484 10 66100 66483 101485 10 68434 67618 101486 15 65855 65797 101487 10 65684 67714 101488 10 67230 67719 101489 10 66115 66114 101490 10 66025 68527 101491 10 67747 67048 101492 10 67810 65826 101493 10 68470 65671 101494 10 68625 66879 101495 10 68039 66350 101496 10 68280 66127 101497 15 66718 68640 101498 15 68208 67692 101499 10 67343 66114 101500 10 67315 65740 101501 10 67101 65688 101502 15 66612 65975 101503 15 67247 67714 101504 10 68101 66369 101505 10 68175 66585 101506 10 68428 67416 101507 10 68189 67286 101508 10 67335 67821 101509 15 67761 66645 101510 10 67705 67642 101511 15 67020 67733 101512 15 65841 68207 101513 10 68569 66596 101514 10 67315 68116 101515 10 67326 66986 101516 10 65666 66009 101517 10 67798 68563 101518 10 66680 67286 101519 10 68309 65758 101520 10 67602 67048 101521 10 66247 67286 101522 10 67714 68262 101523 10 67274 66578 101524 15 67310 67590 101525 10 68558 67168 101526 10 68034 68450 101527 10 67020 66483 101528 10 66985 67286 101529 10 65871 68276 101530 10 66441 68156 101531 15 67781 68051 101532 15 65905 67897 101533 10 66026 66519 101534 10 68117 67286 101535 10 67266 67286 101536 10 67628 67286 101537 10 68377 67982 101538 10 66918 68274 101539 10 67203 67286 101540 10 66890 67286 101541 10 68359 68619 101542 15 68294 67280 101543 10 67350 68075 101544 15 65789 67348 101545 15 66441 66098 101546 15 66052 68262 101547 10 68389 65772 101548 10 66132 65883 101549 10 67728 68204 101550 10 67993 67062 101551 10 65626 68426 101552 10 66339 65754 101553 15 66255 68149 101554 10 67744 67850 101555 10 67396 67286 101556 10 68589 65826 101557 10 67781 67920 101558 10 68394 67286 101559 10 67830 66670 101560 10 67338 67286 101561 15 68038 67240 101562 10 67938 67048 101563 10 66096 67286 101564 10 68476 67140 101565 10 67723 66986 101566 10 67727 67062 101567 10 65640 66055 101568 10 68235 67286 101569 10 65836 65877 101570 10 67426 66981 101571 15 67939 68339 101572 10 66953 65639 101573 10 65668 67286 101574 10 67936 68631 101575 10 66423 65790 101576 15 67100 66751 101577 15 65822 67489 101578 15 66527 65990 101579 15 68638 67368 101580 10 68190 67286 101581 10 67297 68275 101582 15 66388 65841 101583 10 67520 68236 101584 10 68516 66618 101585 10 66820 66670 101586 10 65756 67086 101587 10 67958 66021 101588 10 67424 65672 101589 10 66124 66825 101590 10 67115 68484 101591 15 65888 66530 101592 10 66400 68204 101593 10 67076 67587 101594 10 66517 67200 101595 10 67412 65689 101596 10 67976 67286 101597 10 67695 67286 101598 10 68132 67062 101599 10 68438 66488 101600 15 67941 66085 101601 10 66293 67240 101602 10 66694 66566 101603 10 67656 67043 101604 10 67193 67286 101605 15 66464 66253 101606 10 68457 68596 101607 10 66016 67827 101608 10 68515 68055 101609 10 68041 68204 101610 15 67003 67936 101611 10 67992 66670 101612 10 67043 66091 101613 10 66102 68450 101614 15 66761 68194 101615 10 66074 66670 101616 10 66488 66385 101617 10 68281 66670 101618 10 66535 66670 101619 15 68202 67638 101620 15 65902 68207 101621 10 68427 67622 101622 10 66319 66670 101623 10 66702 67893 101624 10 67832 68274 101625 10 67217 67286 101626 10 68223 66378 101627 10 68550 67286 101628 10 68530 66206 101629 10 66741 65622 101630 10 67544 66117 101631 10 66556 67247 101632 10 68152 67286 101633 10 67157 66661 101634 10 66324 65892 101635 10 66352 65826 101636 10 67856 66618 101637 10 67941 65826 101638 10 68416 67286 101639 10 68518 66350 101640 10 67252 66378 101641 15 68225 66360 101642 10 68399 67339 101643 10 66503 67286 101644 10 65708 68417 101645 10 67053 65689 101646 10 67854 68204 101647 10 65714 67445 101648 10 67999 67447 101649 10 68162 67286 101650 10 67455 68204 101651 10 67866 68482 101652 15 68181 65929 101653 10 68521 68385 101654 10 66378 66661 101655 10 67608 66506 101656 10 66048 66795 101657 10 68546 67086 101658 10 67237 66670 101659 10 66504 67066 101660 10 66234 68473 101661 10 68224 67286 101662 10 65623 67454 101663 10 66515 67622 101664 10 65855 67020 101665 10 68435 67585 101666 10 66010 66670 101667 10 66826 66734 101668 10 65958 66409 101669 10 65900 65716 101670 10 67946 67337 101671 10 66690 66006 101672 10 66736 65754 101673 10 67162 68473 101674 10 66585 66833 101675 10 65944 66578 101676 10 66256 66127 101677 10 67457 66986 101678 15 66667 66100 101679 10 67360 66509 101680 10 67577 65671 101681 15 68009 67489 101682 10 68165 66114 101683 10 68330 67286 101684 10 66086 68175 101685 10 66957 68450 101686 10 67418 67286 101687 15 68446 66640 101688 10 66355 65671 101689 10 65786 67286 101690 10 65869 68464 101691 10 66622 66127 101692 10 66441 67886 101693 15 65746 67212 101694 10 65796 67028 101695 10 67724 65689 101696 10 67218 66986 101697 10 66560 67172 101698 15 66906 66087 101699 10 66047 66466 101700 10 65954 68204 101701 10 66318 67286 101702 15 68037 67590 101703 10 68538 67286 101704 10 68637 67286 101705 10 65838 67286 101706 15 66074 66285 101707 10 67247 66052 101708 10 65971 67322 101709 10 65833 67286 101710 10 68564 67091 101711 15 67596 66863 101712 10 68186 66371 101713 10 68060 66114 101714 10 67933 68335 101715 10 67697 67193 101716 10 66444 65676 101717 10 68123 68495 101718 10 66203 66986 101719 15 67485 67722 101720 15 66064 67083 101721 10 68554 66986 101722 15 68388 66083 101723 15 68270 66439 101724 15 66142 65997 101725 10 67981 66206 101726 10 68236 67982 101727 10 68401 65826 101728 10 66332 65629 101729 10 65941 67286 101730 10 67851 68263 101731 10 66054 67286 101732 10 66229 67048 101733 15 67195 68123 101734 10 65725 68204 101735 10 67355 68204 101736 10 67534 67286 101737 10 66046 67286 101738 10 65950 67982 101739 10 65861 65740 101740 10 66179 66670 101741 10 67673 65629 101742 10 67645 65964 101743 10 67394 67062 101744 10 66311 67866 101745 10 66530 67020 101746 10 67476 66540 101747 15 68221 67885 101748 10 67134 65977 101749 10 67018 67642 101750 10 67922 67850 101751 10 68099 67286 101752 15 67899 68499 101753 10 68593 68450 101754 10 65916 67522 101755 10 67080 66734 101756 10 68013 67455 101757 10 67286 66097 101758 10 66765 65947 101759 10 65817 67286 101760 10 67002 66986 101761 15 66114 66369 101762 15 66346 67936 101763 10 68503 68156 101764 10 66320 68156 101765 10 68070 66670 101766 15 66739 68626 101767 10 66652 68450 101768 10 65668 66670 101769 10 67039 67641 101770 10 66966 67920 101771 10 68208 67286 101772 10 66113 68606 101773 10 66787 66350 101774 10 66651 65977 101775 10 67048 66371 101776 10 66665 67522 101777 10 67220 66986 101778 10 66538 67286 101779 15 68227 67677 101780 15 67760 66025 101781 10 65945 65754 101782 10 68382 66734 101783 15 65955 67261 101784 15 66668 65822 101785 15 67115 67921 101786 10 67701 67286 101787 10 67963 65826 101788 10 66519 68579 101789 10 66453 65682 101790 10 68550 66986 101791 10 66806 66670 101792 15 68374 68119 101793 10 68121 68204 101794 10 67582 67286 101795 10 67082 67066 101796 10 67537 66670 101797 10 67090 66986 101798 15 66405 68286 101799 10 67580 66282 101800 10 68514 66085 101801 10 68563 67286 101802 15 68172 68180 101803 15 68231 67254 101804 10 65961 67286 101805 10 66385 66209 101806 15 67638 68377 101807 10 65622 67464 101808 10 66919 66051 101809 15 67794 68482 101810 10 65763 67322 101811 10 66451 65826 101812 10 66708 68607 101813 10 67089 67512 101814 15 66035 67348 101815 15 68508 65644 101816 10 66660 68385 101817 15 68605 66328 101818 15 67585 68538 101819 10 67309 67286 101820 10 67625 67017 101821 10 68446 65629 101822 10 67209 66566 101823 10 67615 65826 101824 10 68199 68005 101825 10 68217 68490 101826 15 68150 65853 101827 10 68018 68417 101828 10 65827 68187 101829 15 66784 65825 101830 15 65796 67130 101831 15 66858 65888 101832 10 67511 66114 101833 10 66284 66267 101834 10 68023 67286 101835 10 67717 66986 101836 15 66098 67254 101837 15 66845 68355 101838 10 67227 68274 101839 10 67968 67337 101840 10 67223 67827 101841 10 68251 66670 101842 10 66857 66986 101843 10 66910 67286 101844 10 67875 67774 101845 15 66435 67260 101846 10 66387 66986 101847 10 66959 65826 101848 15 67671 68123 101849 10 66097 67202 101850 15 66656 66627 101851 10 67740 66156 101852 10 66807 65754 101853 10 65888 65853 101854 10 68517 67286 101855 10 66435 67286 101856 10 66227 68274 101857 10 68540 68596 101858 10 67119 66385 101859 10 66597 67286 101860 10 66557 67286 101861 15 66779 66399 101862 15 66558 66299 101863 10 68376 66699 101864 10 67980 67286 101865 10 68206 67062 101866 10 67859 67286 101867 10 66248 65629 101868 10 66027 67827 101869 10 67882 68093 101870 10 66170 66342 101871 10 67491 67387 101872 15 67825 68236 101873 10 66069 67827 101874 10 66383 65826 101875 10 66417 66097 101876 10 67105 66986 101877 10 66396 66333 101878 10 68357 65817 101879 10 67872 66824 101880 10 65829 68204 101881 10 67517 66813 101882 10 68221 68626 101883 10 67229 67286 101884 10 67590 67618 101885 15 68013 66977 101886 10 66337 67286 101887 15 66513 67408 101888 10 67501 67286 101889 10 65648 67642 101890 10 65854 68484 101891 10 66544 67210 101892 10 65923 66980 101893 10 67340 65790 101894 10 65993 68274 101895 10 66376 67906 101896 10 67743 67151 101897 10 66510 67962 101898 10 66129 65977 101899 10 67855 65764 101900 15 67502 66320 101901 10 66168 67850 101902 10 67041 65826 101903 10 66722 67519 101904 10 66936 66267 101905 10 67651 66670 101906 10 66237 67286 101907 10 66842 68426 101908 10 67601 66699 101909 10 67052 67286 101910 10 66305 66301 101911 10 67081 68319 101912 10 68387 66670 101913 10 66419 67286 101914 10 68370 66267 101915 10 68454 67286 101916 10 67100 68204 101917 15 68559 67117 101918 15 68308 67030 101919 10 67847 68579 101920 10 65951 68527 101921 15 66055 67866 101922 10 67628 65826 101923 15 68607 66066 101924 10 68358 67659 101925 15 68287 68343 101926 15 66890 65798 101927 15 67540 67506 101928 10 65730 65826 101929 10 65934 68204 101930 10 67853 68616 101931 10 66715 67286 101932 10 67989 66337 101933 10 65835 67455 101934 10 68084 66369 101935 10 67219 65854 101936 10 65891 68276 101937 10 66412 65671 101938 10 66409 67062 101939 10 67681 66986 101940 10 65649 66579 101941 10 67879 68436 101942 15 67159 67378 101943 10 66162 67286 101944 10 66255 68616 101945 10 67247 67827 101946 10 68287 66986 101947 10 66447 67257 101948 10 65811 67132 101949 10 66185 66159 101950 10 66224 66670 101951 10 67876 67286 101952 10 67795 67337 101953 10 68582 67253 101954 15 66049 66668 101955 10 65627 66466 101956 10 65881 66670 101957 10 66878 67286 101958 15 68468 68339 101959 10 67407 66466 101960 10 66780 66986 101961 10 68035 66833 101962 10 66594 68093 101963 15 67041 66161 101964 10 65961 66267 101965 10 65936 67062 101966 15 67289 67352 101967 10 66347 66667 101968 10 67071 68083 101969 10 66664 67286 101970 15 68545 67232 101971 15 66489 67873 101972 15 67128 68229 101973 10 67155 66506 101974 15 65919 67456 101975 10 66998 66670 101976 15 67752 67456 101977 10 66680 65977 101978 10 68442 67567 101979 10 66054 67455 101980 10 68079 67437 101981 10 66911 66463 101982 10 66094 66986 101983 15 66383 66530 101984 10 65850 68204 101985 10 67069 67286 101986 15 66936 67280 101987 10 65735 66734 101988 10 66512 66566 101989 10 67365 67286 101990 10 66192 67286 101991 15 65868 67452 101992 10 67964 66670 101993 10 66510 67982 101994 10 67617 68470 101995 15 66331 68355 101996 10 67233 67286 101997 10 68029 67821 101998 15 66801 65750 101999 15 66151 67755 102000 10 66692 68417 102001 10 68532 65672 102002 15 66960 66085 102003 15 67476 65713 102004 10 68500 65964 102005 15 66502 67907 102006 10 66485 67286 102007 10 68006 66625 102008 15 65947 66198 102009 10 66839 66670 102010 10 68362 66734 102011 10 67704 67286 102012 10 68379 66670 102013 10 66381 67286 102014 15 68278 66119 102015 10 67855 67455 102016 10 67168 66992 102017 10 67086 67821 102018 10 65784 67712 102019 10 65969 67286 102020 10 67429 66986 102021 10 67075 67581 102022 10 66656 65790 102023 10 67888 65731 102024 10 66094 67986 102025 10 65636 66566 102026 10 66096 66670 102027 10 66244 65688 102028 10 66997 67286 102029 10 65767 67286 102030 10 66925 67158 102031 10 67369 67286 102032 10 67790 68631 102033 10 67255 65984 102034 10 66970 67286 102035 10 67961 66670 102036 10 67746 67286 102037 10 68214 65862 102038 15 67917 68626 102039 10 66119 65843 102040 10 68426 66670 102041 10 67419 67866 102042 10 66639 67286 102043 10 66578 66833 102044 15 68083 66378 102045 10 67803 68426 102046 10 67218 67286 102047 15 67259 68343 102048 10 68467 67464 102049 10 68263 67548 102050 10 68277 67286 102051 10 68631 66267 102052 15 66571 67348 102053 10 66939 68204 102054 10 66114 67756 102055 10 67750 65701 102056 10 67572 68204 102057 10 66323 67522 102058 10 66817 66566 102059 15 67610 68277 102060 10 66498 68605 102061 10 66457 66409 102062 10 66189 66670 102063 15 67896 67280 102064 15 68054 66907 102065 10 68019 65829 102066 10 67453 66670 102067 10 68097 68368 102068 10 68414 67286 102069 10 67090 67821 102070 10 67685 66986 102071 10 66935 67286 102072 10 66500 68274 102073 10 66197 67319 102074 10 67563 66156 102075 10 66893 67062 102076 10 65786 68274 102077 15 65965 68458 102078 10 67889 68204 102079 10 66798 67286 102080 15 66227 68598 102081 10 68038 67286 102082 10 68522 66087 102083 10 67381 68450 102084 10 67473 66631 102085 10 65878 66333 102086 10 66503 66986 102087 10 68173 66986 102088 10 66801 67453 102089 15 67881 66977 102090 10 68143 66893 102091 15 66046 67083 102092 10 67095 66833 102093 15 68497 65622 102094 15 67347 68209 102095 10 67478 67965 102096 10 67170 66734 102097 10 67566 67286 102098 10 66586 67286 102099 15 68435 65662 102100 10 65632 67286 102101 15 67712 66957 102102 15 67433 68377 102103 15 65629 67714 102104 10 66294 68615 102105 10 68048 66114 102106 10 67311 66986 102107 15 66325 66967 102108 15 66334 66682 102109 10 66216 67286 102110 15 66094 66299 102111 10 66629 67986 102112 10 67828 68494 102113 10 68634 66921 102114 10 66137 66833 102115 15 68577 67727 102116 10 66874 67703 102117 10 66956 67902 102118 10 65904 67286 102119 10 66980 67286 102120 10 66979 66267 102121 10 68254 65886 102122 10 68360 67286 102123 10 66241 66928 102124 10 65821 66631 102125 10 66975 67286 102126 10 67370 67286 102127 10 66207 66566 102128 15 67090 68014 102129 10 67061 68382 102130 10 65926 67286 102131 10 68124 66986 102132 10 67272 68405 102133 10 66638 66697 102134 10 68381 66610 102135 10 67390 66998 102136 10 66737 67464 102137 10 67243 66034 102138 10 67112 68527 102139 10 68401 66610 102140 10 68089 66114 102141 10 65856 66587 102142 10 67529 66971 102143 10 66966 67866 102144 15 65726 66196 102145 15 67664 66358 102146 10 67559 67336 102147 10 66175 66385 102148 10 66663 67286 102149 10 65645 66064 102150 10 66928 67286 102151 15 66236 68339 102152 10 66627 67539 102153 15 66894 65952 102154 10 68294 66267 102155 10 67452 66710 102156 10 66302 66466 102157 10 68331 66973 102158 10 66161 67035 102159 15 67384 67256 102160 15 65908 67280 102161 10 66946 66214 102162 10 68325 67286 102163 10 68215 65841 102164 10 66615 68405 102165 10 66753 67286 102166 15 66351 66085 102167 10 67228 68605 102168 15 67095 66641 102169 10 67394 68269 102170 10 66978 66641 102171 10 68220 67265 102172 10 66786 67062 102173 10 67322 67286 102174 10 67532 66305 102175 10 66949 66217 102176 10 65905 67756 102177 15 67389 68550 102178 10 66961 66114 102179 10 65992 67642 102180 10 66773 67286 102181 10 67597 68298 102182 10 68467 66670 102183 15 67178 68478 102184 15 67185 66299 102185 10 68524 66822 102186 10 66924 67286 102187 10 66825 68204 102188 10 68409 65688 102189 15 68556 65622 102190 15 68264 68207 102191 10 66602 65671 102192 15 67955 66199 102193 10 66416 67827 102194 10 67347 65977 102195 10 66354 67267 102196 10 67492 66585 102197 15 66664 68475 102198 15 68452 67802 102199 15 67622 66650 102200 10 68181 67062 102201 10 65843 68417 102202 10 68475 67700 102203 10 66402 67850 102204 10 68348 67101 102205 10 67368 67172 102206 10 65716 67286 102207 10 66720 68348 102208 10 65906 68093 102209 10 66381 66566 102210 10 66120 66409 102211 10 67389 66986 102212 10 67585 67286 102213 10 68399 66296 102214 10 68160 67933 102215 10 68523 65826 102216 10 65744 67048 102217 10 66910 66986 102218 10 68142 67492 102219 15 68343 68474 102220 10 65743 65977 102221 10 67550 66114 102222 10 66115 66431 102223 10 66100 67897 102224 10 67359 67500 102225 15 66591 67456 102226 10 67630 68417 102227 10 66644 67270 102228 10 66488 66034 102229 15 67804 66719 102230 10 67205 68274 102231 10 68038 68274 102232 10 66549 67719 102233 10 65796 66991 102234 10 67637 68204 102235 10 66764 68204 102236 10 68432 67079 102237 10 67935 66986 102238 10 67047 68484 102239 10 66331 66795 102240 15 67931 66080 102241 10 67163 65622 102242 10 67353 66114 102243 10 67856 68631 102244 10 67542 67020 102245 15 65978 66447 102246 10 68023 65790 102247 15 68345 65694 102248 15 67891 67312 102249 10 65712 67140 102250 10 68060 67286 102251 10 67993 68596 102252 10 65655 68204 102253 15 67067 65802 102254 15 66036 68550 102255 10 67638 67982 102256 10 68445 67201 102257 10 67316 68204 102258 10 67338 65964 102259 10 68076 68274 102260 10 68055 66596 102261 10 65655 67286 102262 10 66779 67062 102263 10 67793 66822 102264 10 68527 66566 102265 10 68475 68156 102266 10 65759 67947 102267 15 67442 66595 102268 15 67748 67254 102269 10 67620 67986 102270 15 68475 66098 102271 15 67698 68475 102272 10 66679 66166 102273 10 65941 66114 102274 10 66688 67337 102275 15 65781 67227 102276 15 65988 65694 102277 10 66122 66220 102278 10 66055 67794 102279 15 68306 66949 102280 15 66119 67824 102281 15 66701 66694 102282 10 65651 66373 102283 10 66585 66114 102284 10 66919 68293 102285 10 66002 66493 102286 10 65868 66986 102287 10 66869 65688 102288 10 68066 68204 102289 15 67674 67456 102290 10 66982 66114 102291 10 66285 66566 102292 10 66000 67286 102293 10 66098 68156 102294 10 67794 67606 102295 15 68445 66179 102296 15 65659 65674 102297 10 66353 67947 102298 10 66784 65742 102299 10 66788 68239 102300 15 67194 66824 102301 10 68535 66091 102302 10 67870 67418 102303 10 66326 65826 102304 10 67243 67827 102305 15 68257 67824 102306 15 68282 66102 102307 10 68423 68464 102308 15 67959 68180 102309 10 65927 65671 102310 15 65828 68352 102311 15 65890 67618 102312 10 67659 66483 102313 10 66077 66670 102314 10 66204 66631 102315 10 65679 66670 102316 15 67625 66015 102317 10 68065 68199 102318 10 65917 68631 102319 10 65751 66986 102320 10 65699 65754 102321 10 68480 66670 102322 10 68624 65754 102323 10 67192 66670 102324 10 66890 67827 102325 10 68361 65876 102326 10 67427 67642 102327 10 66648 66986 102328 10 67819 67850 102329 10 66885 68563 102330 10 68460 67492 102331 10 66082 67286 102332 10 67551 67522 102333 10 67180 67286 102334 10 65884 68204 102335 10 67527 66566 102336 10 66732 68484 102337 15 68503 67254 102338 10 67150 67286 102339 10 67334 66522 102340 10 66395 68204 102341 10 67122 68473 102342 10 67190 67286 102343 10 67275 65672 102344 10 66296 66585 102345 10 68126 68156 102346 15 66060 67885 102347 15 66479 66855 102348 10 66273 65964 102349 10 66557 68417 102350 10 67537 67703 102351 10 67460 67060 102352 10 67726 67086 102353 15 68310 66299 102354 15 67758 68250 102355 10 68614 66326 102356 10 66038 66891 102357 10 66007 66986 102358 10 67689 68311 102359 15 68260 66085 102360 10 66798 66114 102361 10 66784 65790 102362 10 66183 66631 102363 10 67904 65790 102364 10 65756 67286 102365 10 67658 66986 102366 10 68262 65696 102367 10 68155 66114 102368 10 68603 66566 102369 10 66162 66566 102370 10 65732 68462 102371 10 66926 66986 102372 10 67920 67247 102373 10 66495 67850 102374 10 68456 67119 102375 15 68040 68286 102376 10 68018 67286 102377 15 66723 66198 102378 10 66107 68489 102379 10 68608 67519 102380 10 67852 67688 102381 10 66425 66786 102382 10 68345 67951 102383 10 68607 65977 102384 15 66619 66393 102385 15 68502 65707 102386 10 68581 68202 102387 10 67786 68620 102388 10 66482 65639 102389 10 68396 66670 102390 10 68080 68417 102391 15 67883 67921 102392 10 67174 67286 102393 10 66506 67129 102394 10 67921 66578 102395 15 66582 67955 102396 10 65738 68156 102397 10 68381 67210 102398 10 66071 66566 102399 10 66731 65977 102400 15 67106 66199 102401 10 67135 67519 102402 10 68394 67086 102403 10 67665 65672 102404 10 67804 67166 102405 10 66020 67286 102406 10 65722 67048 102407 10 67736 67086 102408 15 67952 66122 102409 10 66971 67062 102410 15 68471 67258 102411 15 66986 67169 102412 10 67012 65754 102413 10 67363 67865 102414 10 67093 67193 102415 15 68048 68089 102416 10 66704 65790 102417 10 68131 67622 102418 10 65886 68348 102419 10 67421 66986 102420 10 68436 67202 102421 10 66477 67454 102422 15 68555 68081 102423 10 66514 66670 102424 10 66166 68274 102425 10 65746 67902 102426 10 67053 66726 102427 15 67963 66446 102428 15 67256 67009 102429 10 67467 66670 102430 15 68145 66516 102431 15 66706 66312 102432 10 65993 65826 102433 10 66146 67286 102434 10 68419 67879 102435 10 66422 67537 102436 10 66941 67286 102437 15 67451 66299 102438 10 68502 68230 102439 10 66827 67986 102440 10 68155 66833 102441 10 65880 65826 102442 10 68422 67286 102443 10 65887 68417 102444 10 68388 65841 102445 10 65642 67642 102446 10 67014 67947 102447 10 66134 67590 102448 10 67696 66939 102449 10 65854 65754 102450 15 65797 67456 102451 10 68471 67455 102452 10 66689 66556 102453 10 65911 68631 102454 10 66493 67286 102455 10 66808 66670 102456 10 67576 68484 102457 10 68328 68204 102458 10 66545 65629 102459 10 67721 67176 102460 15 66030 66851 102461 10 68385 67286 102462 10 68327 67263 102463 10 67184 65672 102464 10 67587 65837 102465 10 66749 68580 102466 10 67474 67140 102467 10 66063 68484 102468 10 66019 68274 102469 10 67937 66579 102470 10 66882 67286 102471 10 68523 67286 102472 10 67083 66547 102473 10 68458 68204 102474 10 67523 66833 102475 10 67157 65890 102476 10 67693 67048 102477 10 67449 66828 102478 15 65799 68467 102479 10 66252 66986 102480 10 67722 66385 102481 15 66397 67091 102482 10 65986 68535 102483 10 65915 67766 102484 15 68209 65645 102485 10 66704 65826 102486 10 67975 68604 102487 10 66859 66670 102488 10 67966 65826 102489 15 67593 67348 102490 10 67136 67286 102491 15 66576 65694 102492 15 67926 66449 102493 10 65641 66618 102494 10 68452 68417 102495 10 68311 67286 102496 10 67831 67286 102497 10 67802 68417 102498 15 68217 67004 102499 10 66676 66618 102500 15 67727 65929 102501 10 66167 66034 102502 10 68353 67286 102503 10 68458 67286 102504 10 66364 66114 102505 10 68474 67202 102506 10 67419 66397 102507 10 67859 66847 102508 15 65650 66497 102509 10 68074 67151 102510 15 68467 66719 102511 10 66379 68473 102512 10 68365 66986 102513 10 68325 66670 102514 10 67345 68204 102515 10 68570 66986 102516 10 67775 66986 102517 10 68386 67714 102518 10 66230 67638 102519 10 67731 68071 102520 10 65804 66267 102521 10 66814 66986 102522 10 67648 66986 102523 15 66069 65640 102524 10 68196 67548 102525 15 66637 65817 102526 15 67075 67907 102527 15 67827 67586 102528 10 67343 67286 102529 10 66917 68417 102530 10 65797 67563 102531 10 66366 65622 102532 10 66084 67585 102533 10 67104 67286 102534 10 67820 66617 102535 10 66109 67563 102536 10 67690 65826 102537 10 66687 65964 102538 10 68150 66706 102539 10 66890 66986 102540 15 68331 67579 102541 10 67325 65757 102542 10 68425 65629 102543 10 66286 66326 102544 10 67133 67286 102545 10 67990 65977 102546 10 66641 67447 102547 15 67316 66797 102548 10 66273 67286 102549 10 66871 67059 102550 10 67794 67827 102551 10 68046 66114 102552 15 66144 65667 102553 15 68332 66299 102554 10 65629 66834 102555 10 66711 67642 102556 10 65908 67286 102557 10 66561 68329 102558 10 66579 67048 102559 10 67164 68169 102560 10 67165 68596 102561 10 65984 68450 102562 10 68104 68473 102563 10 66813 67048 102564 10 66196 66217 102565 10 67277 66540 102566 10 67952 66566 102567 10 68577 66091 102568 10 68377 68071 102569 10 66202 67828 102570 15 65777 68147 102571 10 65754 65964 102572 10 66824 65682 102573 10 68081 66225 102574 10 66964 66670 102575 10 65678 67886 102576 10 67712 66540 102577 10 66486 67062 102578 15 68387 67274 102579 10 68352 66734 102580 10 67296 68260 102581 10 67849 66273 102582 10 65777 67523 102583 10 66684 66201 102584 10 66802 66097 102585 10 66196 65977 102586 10 66991 66566 102587 15 67606 65951 102588 10 67256 65985 102589 10 68596 66156 102590 15 67529 65842 102591 15 67553 66867 102592 10 66442 67286 102593 10 68638 67920 102594 10 67413 66547 102595 10 67540 66986 102596 10 65818 67286 102597 10 67337 67286 102598 10 66414 66267 102599 10 67020 68527 102600 15 65742 67825 102601 10 66439 67480 102602 10 67769 67286 102603 10 66828 67286 102604 10 67373 66267 102605 10 68053 65977 102606 10 66187 66822 102607 15 68482 65837 102608 10 66195 67049 102609 10 66812 67172 102610 10 67740 68450 102611 10 66709 65672 102612 10 67783 67286 102613 10 67978 66670 102614 10 66474 66986 102615 10 67533 67638 102616 10 66703 67163 102617 10 66969 68204 102618 10 66212 66986 102619 10 66472 66670 102620 10 68035 66114 102621 10 67965 65764 102622 10 66872 67286 102623 10 67777 68204 102624 15 66995 65936 102625 10 67374 66670 102626 10 68517 65826 102627 10 66145 65826 102628 10 65979 68484 102629 15 66381 67751 102630 10 66919 67734 102631 10 65863 67286 102632 10 66192 66734 102633 10 67043 67062 102634 10 66099 65877 102635 10 66982 67286 102636 10 68335 67286 102637 10 65852 66350 102638 10 65661 66296 102639 10 67341 67286 102640 10 68347 68204 102641 10 68080 67286 102642 15 66012 66465 102643 10 66605 66618 102644 10 67581 67547 102645 15 66749 68522 102646 10 68590 67286 102647 10 67279 66409 102648 10 68445 66670 102649 10 66840 66114 102650 10 65959 66670 102651 10 67310 67737 102652 10 68620 67286 102653 10 67886 68517 102654 10 66513 67286 102655 10 67643 66670 102656 15 67840 66606 102657 10 66810 66986 102658 10 66093 66846 102659 10 67013 66273 102660 10 66500 67548 102661 15 66115 66811 102662 10 66587 68540 102663 10 66646 68371 102664 15 66186 65875 102665 10 66487 67286 102666 10 68290 67286 102667 10 68293 66350 102668 10 67626 65977 102669 10 67599 66114 102670 15 65980 67843 102671 10 67754 66846 102672 10 68257 68417 102673 10 67995 67286 102674 15 67707 65684 102675 10 67562 66986 102676 10 67837 68274 102677 10 66653 66670 102678 10 67863 67286 102679 10 65844 66786 102680 15 67494 68147 102681 10 65719 66986 102682 15 68018 67083 102683 10 67942 66566 102684 10 66888 67286 102685 10 66463 66114 102686 10 66031 68631 102687 10 68233 67286 102688 10 66894 67286 102689 15 68526 66066 102690 10 67108 66986 102691 10 66240 67286 102692 10 66030 68631 102693 10 67906 66973 102694 10 65659 65826 102695 15 68164 66253 102696 10 65679 67286 102697 10 66152 67286 102698 15 65731 66431 102699 10 65741 65854 102700 10 67014 65826 102701 15 68156 68382 102702 10 66415 67286 102703 10 66671 67587 102704 10 66897 67286 102705 10 67007 67286 102706 10 67370 67821 102707 10 68026 66847 102708 10 67548 67756 102709 10 66749 68156 102710 10 67423 68484 102711 15 66358 65929 102712 10 65808 66483 102713 10 67004 67286 102714 15 67223 67852 102715 10 68493 68488 102716 15 65671 66432 102717 10 66832 66625 102718 10 67029 65754 102719 10 67916 68302 102720 10 66890 67062 102721 10 67655 66202 102722 10 67019 66670 102723 10 67032 67622 102724 10 66583 68204 102725 10 66811 67193 102726 10 67756 66483 102727 10 68457 66091 102728 10 66455 67286 102729 10 67151 66301 102730 10 68538 68204 102731 15 66620 65644 102732 10 65914 68347 102733 10 65768 65754 102734 10 67364 65664 102735 10 66666 67230 102736 15 67116 66299 102737 10 68310 67986 102738 10 67250 67066 102739 15 66121 66299 102740 10 65968 67286 102741 10 67787 66048 102742 10 67814 67522 102743 10 66394 68276 102744 10 68118 65977 102745 10 66942 65669 102746 10 66496 68204 102747 10 66010 67286 102748 10 67573 66986 102749 15 66281 67485 102750 10 68346 67034 102751 10 66284 67286 102752 10 67458 66971 102753 10 67318 67286 102754 10 66377 67897 102755 10 66392 66670 102756 10 66508 67714 102757 10 66929 66670 102758 10 67505 68227 102759 10 66068 67714 102760 10 68068 65964 102761 10 66766 67547 102762 10 68266 65891 102763 10 66003 67286 102764 10 66637 65826 102765 10 68276 67210 102766 10 67078 66240 102767 10 67121 66802 102768 10 67695 65826 102769 10 67998 68010 102770 10 66583 67286 102771 10 67669 67322 102772 10 68224 66114 102773 10 66057 66616 102774 10 65901 68385 102775 10 68037 67821 102776 15 66949 67804 102777 10 67524 67286 102778 10 68574 66836 102779 15 67659 67740 102780 10 65781 67286 102781 10 67095 66417 102782 10 67241 68473 102783 10 68009 66566 102784 15 68510 66285 102785 10 66639 68204 102786 15 67262 65990 102787 10 67718 66091 102788 15 67080 67731 102789 10 66501 67322 102790 10 67784 67020 102791 10 67130 66991 102792 10 68619 68639 102793 10 65745 66547 102794 10 68599 68204 102795 15 66336 67310 102796 10 68568 67642 102797 15 66850 68567 102798 15 66192 67755 102799 10 68501 67286 102800 10 66763 67020 102801 10 66590 67286 102802 10 66136 66846 102803 10 68562 67286 102804 10 67556 67286 102805 10 65878 67975 102806 10 66712 68434 102807 10 66796 66618 102808 10 67481 65772 102809 10 67175 66114 102810 10 66973 66617 102811 10 68109 66389 102812 15 66713 66530 102813 10 68405 66833 102814 10 67298 65793 102815 10 66858 66610 102816 10 66614 67454 102817 10 67370 68439 102818 15 67630 67802 102819 10 67512 68187 102820 10 67084 65639 102821 15 67307 67693 102822 10 65670 67286 102823 10 68439 66986 102824 10 67078 66670 102825 15 67966 65673 102826 10 68278 67397 102827 10 66670 68204 102828 10 68462 68631 102829 10 67796 67286 102830 10 68491 67247 102831 10 67625 66986 102832 10 66769 68274 102833 10 67951 68021 102834 10 65998 65689 102835 10 67948 66127 102836 10 67949 67286 102837 15 65708 67824 102838 10 66267 67202 102839 10 67126 68093 102840 10 66598 68473 102841 15 66651 65622 102842 10 68269 66566 102843 10 65734 67208 102844 10 66783 68138 102845 10 67598 66296 102846 10 66884 68606 102847 10 67067 65671 102848 15 68461 68047 102849 15 66045 65935 102850 15 65739 67327 102851 15 68458 66751 102852 15 66510 67638 102853 10 65892 66506 102854 10 66420 65689 102855 15 66847 65682 102856 10 65637 66034 102857 10 65739 68417 102858 10 67183 65826 102859 10 67044 66957 102860 15 65996 65938 102861 10 67799 66986 102862 15 66090 65622 102863 10 67881 66986 102864 10 65846 67286 102865 10 65970 66986 102866 10 67836 68473 102867 10 67619 65754 102868 10 67079 67286 102869 10 68093 67286 102870 10 68062 67522 102871 15 66120 65841 102872 10 67346 68581 102873 10 66761 68071 102874 15 66145 68355 102875 15 67545 66694 102876 10 66844 68490 102877 10 67818 67247 102878 15 66690 66584 102879 10 67510 68256 102880 15 66146 68501 102881 10 66948 66986 102882 15 67769 65999 102883 10 68601 66350 102884 15 67477 67921 102885 10 68242 65754 102886 15 67508 68598 102887 10 65832 67286 102888 10 68397 66006 102889 10 66105 66734 102890 10 68144 66670 102891 10 65799 68154 102892 10 68510 68450 102893 10 65907 65947 102894 10 65835 67286 102895 10 66903 68482 102896 10 68114 66986 102897 15 66734 68489 102898 10 68610 68567 102899 15 65627 68626 102900 10 66974 68604 102901 10 67530 67455 102902 15 67597 67109 102903 10 66359 65977 102904 15 68272 65862 102905 15 66692 67327 102906 10 67127 67062 102907 10 67772 66986 102908 15 66180 66299 102909 10 66505 65754 102910 10 68580 68204 102911 10 65880 67286 102912 10 68504 68426 102913 10 66944 67286 102914 10 66931 67193 102915 10 65740 66585 102916 10 67190 66986 102917 15 67936 65911 102918 10 65770 68417 102919 15 66251 66089 102920 10 67145 68596 102921 10 66675 67257 102922 10 66167 68371 102923 10 67154 66114 102924 15 67556 66620 102925 10 67569 67286 102926 15 67583 65622 102927 10 66527 67247 102928 10 66821 67049 102929 10 65929 66044 102930 10 68050 68037 102931 10 67375 68204 102932 10 66593 67286 102933 10 65697 67398 102934 10 68213 67286 102935 10 67867 67286 102936 10 66790 67821 102937 10 68123 67283 102938 10 66716 66118 102939 15 66002 68440 102940 15 66959 67020 102941 15 66449 67456 102942 10 66463 67286 102943 10 66224 67286 102944 10 67477 68484 102945 10 67282 68075 102946 10 67684 67869 102947 10 67516 66273 102948 10 66174 67286 102949 10 68333 68347 102950 10 68069 66273 102951 10 66990 67986 102952 10 67841 67253 102953 10 67206 67286 102954 10 66744 67286 102955 10 65865 66493 102956 10 66413 68204 102957 10 66661 67821 102958 10 66654 65672 102959 15 68499 66842 102960 10 67610 65826 102961 10 66524 67286 102962 10 68471 67316 102963 10 65765 68579 102964 15 67211 67452 102965 10 65779 68470 102966 15 65732 68180 102967 10 67240 67407 102968 10 67863 65671 102969 10 67555 68361 102970 10 67692 67020 102971 10 67470 68274 102972 10 67063 66034 102973 10 65778 66208 102974 10 67824 66547 102975 10 67379 68263 102976 15 65802 66509 102977 10 67288 66337 102978 10 68174 66350 102979 10 65771 68262 102980 10 66443 68571 102981 10 65809 67286 102982 10 66127 66986 102983 10 67346 65790 102984 10 66935 66670 102985 10 67259 66986 102986 15 67728 68324 102987 10 68622 66986 102988 10 67451 66986 102989 10 66777 68473 102990 10 68403 67286 102991 10 68167 67788 102992 15 66520 67727 102993 10 67896 66267 102994 15 68581 67539 102995 10 67873 68462 102996 10 67436 68417 102997 10 67878 67027 102998 10 66533 66114 102999 15 66446 68194 103000 10 67862 67286 103001 10 68453 67860 103002 10 67776 66661 103003 10 68169 67286 103004 10 66367 66524 103005 10 67685 67286 103006 15 66486 67127 103007 10 66205 67286 103008 10 67273 66670 103009 10 65791 67286 103010 10 67123 65881 103011 10 67668 66566 103012 15 66130 67801 103013 15 66147 67254 103014 10 66937 67286 103015 10 66940 66670 103016 10 67398 67509 103017 10 68640 66202 103018 10 67074 67213 103019 10 67437 67714 103020 10 68585 65826 103021 15 65784 67044 103022 10 66398 68631 103023 15 66551 65935 103024 15 67765 66202 103025 15 65798 65929 103026 10 67276 68274 103027 15 67898 66819 103028 10 66478 67642 103029 15 65758 65689 103030 10 68595 66510 103031 10 65869 68256 103032 10 67769 67086 103033 15 66964 66285 103034 15 67014 66446 103035 10 65933 66114 103036 10 66169 66566 103037 15 66128 66233 103038 10 66686 67522 103039 10 67199 66631 103040 10 66750 66483 103041 10 67661 66986 103042 10 66972 67286 103043 10 68128 67286 103044 10 68250 67257 103045 15 66248 67295 103046 10 68246 65701 103047 10 67076 66508 103048 15 68517 65817 103049 15 66133 67358 103050 10 66751 67286 103051 15 65721 67726 103052 10 66353 68204 103053 10 65866 65964 103054 10 67827 66670 103055 10 67629 66409 103056 15 67268 66229 103057 10 68391 67286 103058 10 67807 66981 103059 10 66067 67394 103060 10 66745 68242 103061 10 67698 67286 103062 10 67925 67286 103063 10 66283 68227 103064 10 67606 67286 103065 10 66396 66974 103066 10 67631 67286 103067 10 66104 66713 103068 10 68424 66734 103069 15 65766 66133 103070 10 68587 66128 103071 10 65872 66670 103072 10 67092 67286 103073 10 67627 68358 103074 15 67329 68419 103075 10 67913 67962 103076 10 67040 65901 103077 15 68416 66285 103078 10 66110 66206 103079 10 68156 66734 103080 10 67068 68093 103081 15 67619 67004 103082 10 66485 66034 103083 10 68003 66986 103084 10 66036 66986 103085 15 66475 67590 103086 10 68188 66342 103087 10 66742 67821 103088 10 67683 68462 103089 10 66077 67062 103090 10 65944 68484 103091 10 66768 65804 103092 10 66894 66986 103093 10 68548 66021 103094 10 66816 67850 103095 15 65899 65938 103096 10 66109 66661 103097 15 68195 66459 103098 15 67203 66954 103099 10 67235 68156 103100 10 68108 67522 103101 10 67798 66114 103102 10 66669 66986 103103 10 67959 68462 103104 10 67523 67756 103105 10 66961 66616 103106 10 66326 67286 103107 10 66762 67286 103108 10 67129 67202 103109 10 68557 66566 103110 15 66521 66327 103111 10 66539 65754 103112 10 68369 66492 103113 10 66314 68484 103114 10 66511 66114 103115 10 68032 65758 103116 15 66748 67638 103117 10 66547 68596 103118 15 65977 65745 103119 10 68270 67920 103120 10 65757 68008 103121 10 67232 67902 103122 10 66003 66986 103123 10 67282 67587 103124 10 68602 67742 103125 10 68253 67286 103126 10 68119 65689 103127 10 68479 68177 103128 10 66554 66986 103129 10 65977 66114 103130 15 68298 68194 103131 10 66542 67210 103132 15 68598 65662 103133 15 65769 68495 103134 10 66977 66225 103135 10 67609 67475 103136 15 68071 67733 103137 10 68130 68275 103138 10 67807 67043 103139 10 67771 67286 103140 10 68140 68256 103141 10 68591 66610 103142 10 65860 66631 103143 10 67815 66091 103144 10 68398 65875 103145 10 66366 68611 103146 10 67770 66034 103147 15 67629 66080 103148 10 67434 68436 103149 15 67623 66761 103150 10 68559 68150 103151 15 67703 65819 103152 10 66968 68202 103153 15 66065 65998 103154 10 65955 67140 103155 10 68303 67062 103156 10 66756 67286 103157 10 67268 66973 103158 10 66312 65826 103159 10 68315 66633 103160 10 67433 67982 103161 10 66233 67563 103162 10 68408 65873 103163 10 68083 68075 103164 10 67160 67286 103165 15 68589 65673 103166 10 67085 65671 103167 10 68544 66822 103168 15 66188 67024 103169 15 67620 66299 103170 10 66883 67286 103171 10 66437 67286 103172 10 66985 66986 103173 10 67928 66487 103174 10 68159 68631 103175 10 66624 66566 103176 10 66128 67756 103177 10 66955 67986 103178 10 68495 65907 103179 10 67117 66986 103180 10 66546 67286 103181 10 67355 67286 103182 15 66019 67061 103183 10 66841 65932 103184 15 68625 66652 103185 10 68138 68405 103186 10 67547 68075 103187 10 67113 65826 103188 10 66818 66670 103189 10 66198 66566 103190 10 66268 67286 103191 10 68506 68631 103192 10 68387 68484 103193 15 67369 68276 103194 10 67658 67286 103195 15 65913 65842 103196 10 67352 66809 103197 10 68598 68274 103198 15 66034 68168 103199 15 68297 65900 103200 10 66255 66668 103201 10 67982 67756 103202 10 66698 65977 103203 10 66835 67821 103204 10 67786 68274 103205 10 67864 67286 103206 15 67523 67897 103207 15 68505 66196 103208 10 66538 65964 103209 10 66069 66986 103210 10 68259 68236 103211 10 67102 68204 103212 10 68275 67286 103213 10 67224 68631 103214 10 65650 66114 103215 15 66621 67621 103216 10 66669 67986 103217 10 67161 68005 103218 10 65775 68462 103219 10 67293 68490 103220 10 68010 66670 103221 10 67439 66566 103222 10 67897 68596 103223 10 66184 68631 103224 10 66671 65689 103225 15 67683 68180 103226 10 67314 67286 103227 10 67608 68417 103228 10 65948 68488 103229 10 68045 65854 103230 10 68604 66670 103231 10 66275 68459 103232 15 68043 68314 103233 10 68058 66670 103234 10 66433 66361 103235 10 66012 67286 103236 10 68473 67200 103237 15 66855 66080 103238 15 68344 67936 103239 15 68506 66851 103240 15 66170 67009 103241 10 66696 66631 103242 10 66341 67882 103243 10 65809 65671 103244 15 67265 65985 103245 10 65884 67947 103246 10 66418 67982 103247 10 67468 66847 103248 10 65696 67469 103249 10 66846 66610 103250 10 67539 67638 103251 10 67106 67548 103252 15 68421 66824 103253 10 67807 68453 103254 10 67299 67286 103255 15 65917 65864 103256 10 66829 67263 103257 10 68585 67286 103258 10 67070 67202 103259 10 67410 66530 103260 15 68132 65819 103261 10 67180 66670 103262 10 67007 66670 103263 10 65939 67171 103264 10 66978 65745 103265 15 67428 67080 103266 10 66609 65959 103267 10 68499 68426 103268 10 66006 67042 103269 10 67800 65790 103270 15 67810 68194 103271 10 67632 67140 103272 15 65808 67563 103273 10 67188 66670 103274 10 67312 65689 103275 10 66210 66986 103276 10 66428 68170 103277 10 67763 66916 103278 10 68118 67286 103279 10 66226 67302 103280 10 66319 67286 103281 10 66235 65688 103282 10 66616 66833 103283 10 67812 66097 103284 10 65989 68587 103285 10 68136 66552 103286 10 66559 68331 103287 10 67173 67286 103288 10 67914 67962 103289 10 67430 66566 103290 10 66363 66986 103291 10 67799 67286 103292 10 67393 68093 103293 10 67675 66566 103294 10 65824 68181 103295 10 66565 67759 103296 10 68088 68459 103297 10 65657 68407 103298 10 68124 68355 103299 15 67542 65823 103300 10 68337 67642 103301 10 68180 67687 103302 15 66423 65825 103303 10 68007 68169 103304 10 67031 66699 103305 10 65993 67933 103306 15 66418 65750 103307 10 67988 67563 103308 10 67926 67020 103309 15 65730 65673 103310 10 67867 66566 103311 15 65826 68527 103312 10 66462 67286 103313 10 67489 66566 103314 10 68164 68377 103315 10 66612 68204 103316 10 66332 68463 103317 10 66550 66282 103318 10 67865 68596 103319 15 67183 65673 103320 10 67672 66566 103321 15 67710 66638 103322 10 66471 68155 103323 15 66140 67056 103324 10 66065 65758 103325 15 67864 68209 103326 10 66651 68154 103327 10 65799 66670 103328 10 67183 66114 103329 10 68382 67020 103330 10 68363 65754 103331 10 65990 67437 103332 10 66999 66124 103333 10 68366 67286 103334 10 66729 67286 103335 10 68324 67563 103336 10 66704 67455 103337 10 68054 66906 103338 10 67616 68596 103339 10 68015 65716 103340 10 65982 66242 103341 10 65731 66952 103342 15 67888 66115 103343 15 66093 68246 103344 15 66968 66682 103345 10 67289 66055 103346 10 68005 67286 103347 10 67703 67062 103348 10 66191 65689 103349 10 68227 67062 103350 10 66697 67020 103351 10 68553 67286 103352 10 67995 66670 103353 10 67066 67563 103354 10 67517 67555 103355 10 68100 66780 103356 10 66492 68204 103357 10 68312 66091 103358 10 66426 68426 103359 10 67803 65847 103360 10 67035 65790 103361 10 66321 65964 103362 10 68522 68156 103363 10 65662 68538 103364 10 66526 65707 103365 10 67780 67687 103366 10 68579 66267 103367 10 67490 65754 103368 15 67530 68355 103369 10 65974 68540 103370 10 67113 65874 103371 10 66691 65826 103372 10 67258 65790 103373 10 66036 67286 103374 10 66928 65964 103375 10 65980 67756 103376 15 68085 67280 103377 15 66600 68059 103378 10 67212 68331 103379 10 67800 65826 103380 10 67486 65826 103381 10 66473 66114 103382 10 65793 67982 103383 10 66797 66312 103384 10 66962 67286 103385 15 68412 67377 103386 10 67401 67642 103387 15 68635 67291 103388 10 67692 65826 103389 10 66995 67062 103390 10 67109 66034 103391 10 66656 67186 103392 10 67954 67642 103393 10 67826 66369 103394 15 67416 68071 103395 10 65976 66848 103396 10 66374 67622 103397 10 65942 66812 103398 10 67674 67703 103399 10 66532 67286 103400 10 67714 67563 103401 10 67767 68274 103402 10 66111 66541 103403 10 66998 67678 103404 15 66153 67254 103405 10 66101 67302 103406 10 66563 68347 103407 10 66882 68204 103408 10 67111 67622 103409 10 68351 67522 103410 15 67800 66005 103411 10 65830 67286 103412 15 67436 67327 103413 10 68042 66928 103414 10 67759 67756 103415 10 65625 67827 103416 10 66923 66466 103417 10 67387 67070 103418 15 68363 66736 103419 10 68041 68439 103420 10 68149 68616 103421 10 66259 67286 103422 15 66809 66508 103423 10 67383 66847 103424 15 66609 67590 103425 10 66051 66585 103426 10 66682 67416 103427 10 67182 65959 103428 10 66095 67827 103429 15 66835 66264 103430 10 68628 65826 103431 10 68268 66566 103432 10 66872 66114 103433 10 67845 66670 103434 10 66518 66986 103435 10 67570 66986 103436 10 67877 66973 103437 10 65704 67933 103438 15 67642 66299 103439 10 66103 67286 103440 10 66958 68620 103441 10 67583 65977 103442 10 68560 67286 103443 15 68358 67057 103444 10 66181 67247 103445 10 67392 68417 103446 10 68073 66179 103447 15 68207 67993 103448 10 66655 68169 103449 10 67426 67043 103450 10 65770 67286 103451 10 66075 66670 103452 10 66603 68204 103453 10 66205 66986 103454 15 68303 67727 103455 10 68542 66880 103456 10 68401 67286 103457 15 67453 66595 103458 10 66106 66633 103459 10 67917 66847 103460 10 66719 66547 103461 10 65728 67821 103462 10 68577 67062 103463 15 67914 66848 103464 10 65737 66957 103465 10 66090 65977 103466 10 67034 67768 103467 15 68412 67727 103468 10 67839 65977 103469 10 67726 67286 103470 10 67313 65826 103471 10 67521 65847 103472 10 66474 67286 103473 15 66267 66728 103474 10 67927 68156 103475 10 68323 67286 103476 10 68285 67197 103477 10 67913 66541 103478 10 66980 68204 103479 10 68021 67286 103480 15 67861 68271 103481 10 65625 66286 103482 10 68555 67827 103483 10 67634 67286 103484 15 67324 67824 103485 10 67751 68378 103486 10 66806 67286 103487 10 68348 68579 103488 10 66043 66709 103489 10 67503 66670 103490 15 66630 67254 103491 15 68478 68191 103492 15 66091 66723 103493 10 66952 66114 103494 10 67035 67638 103495 10 66005 67855 103496 10 66247 66670 103497 10 66723 66670 103498 10 67694 66463 103499 10 67713 65688 103500 10 66151 66734 103501 10 67324 67802 103502 10 67200 67062 103503 10 68134 66865 103504 10 67019 67286 103505 10 66277 68274 103506 10 67583 67286 103507 10 67475 67779 103508 10 66350 66114 103509 10 67151 66114 103510 10 65682 66670 103511 10 67171 67519 103512 15 66868 68316 103513 10 68068 65731 103514 10 66837 66986 103515 10 66400 67286 103516 15 66332 66977 103517 10 68362 67242 103518 15 68586 68513 103519 15 66149 68632 103520 10 68071 66434 103521 10 66427 65689 103522 10 66216 65977 103523 10 67800 67286 103524 10 67118 66670 103525 10 66446 65826 103526 10 67522 68204 103527 15 67655 67843 103528 15 67582 66066 103529 10 65904 65964 103530 15 66126 66824 103531 10 67248 67680 103532 15 68268 66071 103533 10 68166 66848 103534 15 68308 67921 103535 10 68131 65826 103536 10 67839 68484 103537 10 67496 67286 103538 10 67395 65715 103539 10 66344 66127 103540 10 68179 68116 103541 10 66518 67286 103542 10 68383 65862 103543 10 67367 67337 103544 10 67910 66625 103545 10 68217 65754 103546 10 66014 67455 103547 10 66594 68459 103548 10 66533 67286 103549 15 65645 66066 103550 10 66756 66670 103551 15 67778 68557 103552 15 67624 67258 103553 10 65952 68314 103554 15 67859 68626 103555 10 66199 68450 103556 15 65816 67993 103557 10 67723 67286 103558 10 68455 66991 103559 10 66330 66724 103560 10 68459 65964 103561 10 65784 68204 103562 10 66575 66986 103563 10 66228 67163 103564 10 66368 68488 103565 10 68107 66114 103566 10 67586 66670 103567 10 66329 67062 103568 10 66125 68204 103569 15 66184 67687 103570 10 67542 66670 103571 10 68053 68563 103572 10 66763 68204 103573 10 68202 67982 103574 10 68020 67668 103575 15 66409 68132 103576 15 66052 68194 103577 10 67362 68563 103578 10 67222 65964 103579 10 67855 65790 103580 10 67527 67286 103581 10 67771 66986 103582 10 66081 68370 103583 10 65874 67286 103584 10 66522 66986 103585 10 66435 65826 103586 10 68441 66667 103587 10 66689 68491 103588 10 67501 66986 103589 10 67008 67819 103590 10 68306 66670 103591 10 65905 66833 103592 10 66827 66986 103593 15 66414 67280 103594 10 67607 66495 103595 10 67213 66833 103596 10 66937 66986 103597 10 66918 65826 103598 10 67939 67129 103599 10 68171 67497 103600 15 66340 68557 103601 10 67526 66114 103602 10 68336 67286 103603 10 67340 65826 103604 10 66739 66847 103605 10 67300 68484 103606 10 68346 66517 103607 10 66238 67193 103608 10 65960 67286 103609 10 67731 66734 103610 10 66451 68274 103611 10 66907 66087 103612 10 67772 67286 103613 10 66454 67986 103614 10 67352 67866 103615 10 65656 68263 103616 10 66610 66670 103617 10 68014 67821 103618 10 66022 67128 103619 10 67091 67714 103620 10 67757 68434 103621 10 67321 67286 103622 10 65868 66691 103623 10 68161 66986 103624 15 66992 66530 103625 15 68126 68522 103626 10 67159 68274 103627 10 66705 66044 103628 10 67306 67286 103629 10 66558 65665 103630 10 68193 67437 103631 10 65814 66127 103632 10 68594 66114 103633 10 66714 66114 103634 15 67716 66085 103635 10 67702 67642 103636 10 65882 65977 103637 10 65952 66986 103638 10 67356 68204 103639 10 65634 66734 103640 10 67622 67497 103641 10 67635 68631 103642 15 67965 66179 103643 10 66194 67286 103644 10 66461 66114 103645 15 66879 66285 103646 10 68270 67866 103647 10 67431 67418 103648 15 67720 66045 103649 10 68352 68540 103650 10 66212 66670 103651 15 67823 66863 103652 10 68317 68204 103653 15 67425 68592 103654 10 66325 67017 103655 10 66469 67027 103656 10 67207 67048 103657 10 66571 66661 103658 10 68047 67563 103659 10 68589 67286 103660 10 67105 67286 103661 10 66992 66466 103662 10 65988 67455 103663 10 68292 67286 103664 10 65683 68204 103665 15 67950 67061 103666 10 67486 68274 103667 10 66534 67129 103668 10 68051 67172 103669 10 66392 67286 103670 10 68579 65688 103671 10 65991 65816 103672 10 67428 66734 103673 10 67830 67947 103674 10 66898 67893 103675 10 68247 66091 103676 10 66873 68262 103677 10 68477 65977 103678 10 67287 68484 103679 10 68334 66463 103680 10 67582 65977 103681 10 67650 66936 103682 10 65665 67313 103683 10 66178 68204 103684 10 67265 68463 103685 10 66988 65826 103686 10 67276 67286 103687 10 67000 67286 103688 10 65873 67791 103689 15 68106 67244 103690 10 67576 66670 103691 15 67639 67916 103692 10 67227 66385 103693 10 66389 68204 103694 10 68603 67286 103695 10 65883 67286 103696 10 66926 67986 103697 10 66083 67993 103698 10 67341 65826 103699 10 66356 67322 103700 10 66779 67821 103701 15 67458 65636 103702 10 67144 65671 103703 10 68252 66822 103704 10 66221 67286 103705 10 65946 66389 103706 10 65987 67672 103707 10 68556 65977 103708 10 65936 68426 103709 15 66354 66299 103710 10 67745 67193 103711 15 67023 67703 103712 10 66927 66728 103713 15 67856 66851 103714 10 67515 67827 103715 10 68356 67071 103716 10 67057 67563 103717 10 66437 65964 103718 10 65912 67299 103719 15 67106 65667 103720 10 67215 66114 103721 10 68094 67441 103722 15 67408 67254 103723 15 65681 68071 103724 10 66770 68204 103725 15 67997 65841 103726 10 68620 68204 103727 10 67911 67522 103728 10 68405 68596 103729 10 66132 65977 103730 10 68460 68116 103731 10 67666 66369 103732 10 65719 67286 103733 15 68559 66299 103734 10 65957 67286 103735 10 66531 66389 103736 10 68208 68274 103737 10 68440 66114 103738 15 65825 65938 103739 10 67113 68274 103740 10 67706 67654 103741 10 65629 67827 103742 15 66454 66299 103743 10 66301 67107 103744 10 66290 66267 103745 15 68014 65997 103746 10 68513 65985 103747 10 66363 68517 103748 10 66570 68343 103749 10 68245 66986 103750 10 66535 67286 103751 10 67467 67286 103752 10 66496 67286 103753 10 66965 66986 103754 10 66338 67286 103755 10 67655 66483 103756 10 67499 68182 103757 10 66033 68385 103758 10 66103 68204 103759 10 67309 66986 103760 15 65986 65819 103761 10 67179 65875 103762 10 68372 67286 103763 10 67244 65689 103764 10 68414 66986 103765 15 66018 66560 103766 10 66133 66530 103767 10 66548 66941 103768 10 68202 66466 103769 10 65794 66273 103770 10 67271 66882 103771 10 66658 66566 103772 10 65705 67263 103773 10 66870 66661 103774 10 67108 67986 103775 10 65703 66699 103776 10 68332 66986 103777 15 66615 65959 103778 15 66545 67282 103779 15 67767 67378 103780 10 65839 66463 103781 10 66619 68426 103782 10 67448 67286 103783 10 68279 67286 103784 10 67195 66618 103785 15 67205 67692 103786 10 66399 68450 103787 10 67606 65826 103788 10 67953 68156 103789 10 68030 66009 103790 10 67997 67449 103791 10 68170 65964 103792 10 67292 66242 103793 10 67480 67587 103794 10 65760 66661 103795 10 66659 68274 103796 15 67108 66299 103797 10 68194 66566 103798 10 67390 66734 103799 10 68192 67286 103800 10 67947 66566 103801 10 68435 68274 103802 10 66863 66566 103803 10 68147 65671 103804 10 65996 65790 103805 10 66066 65745 103806 10 68555 68463 103807 10 66257 66986 103808 15 68032 67724 103809 10 67399 68497 103810 10 66857 67286 103811 10 66761 66114 103812 15 67337 67291 103813 10 65946 66114 103814 10 67021 66267 103815 15 66015 68343 103816 10 65931 66986 103817 15 67145 67993 103818 10 66059 67328 103819 10 67017 66670 103820 10 65706 66833 103821 10 66000 67062 103822 10 68380 67563 103823 15 67821 68450 103824 15 65833 66530 103825 10 67962 67756 103826 10 67422 67692 103827 15 65694 66516 103828 10 67973 67286 103829 15 68628 66025 103830 15 66729 66620 103831 10 66691 68204 103832 10 67980 65790 103833 10 67366 67286 103834 10 66791 67286 103835 10 66009 66566 103836 10 68040 65977 103837 10 65842 67549 103838 15 66909 65659 103839 15 65827 67648 103840 15 66393 66842 103841 10 66177 66986 103842 10 67884 68417 103843 10 67429 67286 103844 15 66887 67872 103845 10 66843 68204 103846 10 66721 68227 103847 10 65834 68010 103848 10 68598 68458 103849 10 66502 68075 103850 10 67077 67176 103851 10 65653 67915 103852 15 67378 66899 103853 10 67316 66706 103854 10 66448 66173 103855 10 68512 66670 103856 10 68392 67791 103857 15 67313 66085 103858 15 67475 67802 103859 10 66672 65758 103860 10 68428 66697 103861 10 67829 66235 103862 10 68617 67158 103863 10 67115 67286 103864 10 66008 67563 103865 15 67186 67539 103866 10 65823 66670 103867 10 65733 66350 103868 10 67466 68626 103869 10 68086 67247 103870 10 66295 67286 103871 10 67486 67286 103872 10 67905 68631 103873 10 70299 69827 103874 10 69346 70210 103875 10 69935 69221 103876 15 70248 69673 103877 15 69519 69568 103878 10 70233 70343 103879 15 69327 69678 103880 10 70203 69755 103881 10 69736 70148 103882 10 70364 70319 103883 10 70101 69537 103884 15 69947 70266 103885 70375 70182 69486 103886 10 69329 69939 103887 10 69749 69114 103888 10 69960 69513 103889 15 69799 69443 103890 15 70065 69777 103891 10 69675 69616 103892 14 69926 69730 103893 10 70113 70155 103894 10 69981 69205 103895 10 70017 70090 103896 10 70093 69651 103897 14 69630 69764 103898 15 70189 70134 103899 10 69259 70143 103900 10 69137 69714 103901 10 69762 69832 103902 15 70163 70160 103903 15 70105 69553 103904 15 70063 69319 103905 10 69572 70329 103906 10 69969 69213 103907 15 69113 69226 103908 15 69353 69945 103909 10 69209 70178 103910 10 70089 69369 103911 10 69278 69429 103912 15 70226 69962 103913 10 69183 69593 103914 10 70346 69370 103915 15 69530 69397 103916 15 70107 70032 103917 10 69880 69960 103918 15 69998 69404 103919 15 69810 69582 103920 10 70343 69854 103921 15 70101 69730 103922 10 70117 69397 103923 15 69953 69813 103924 70375 70259 70056 103925 10 69929 70214 103926 10 69665 69804 103927 15 70082 69105 103928 10 69135 70368 103929 10 69320 69409 103930 10 69340 69722 103931 15 70374 70230 103932 15 69266 69369 103933 15 70354 69892 103934 10 69724 70018 103935 10 69382 70160 103936 10 69574 69397 103937 10 70228 69556 103938 10 69668 69556 103939 10 70218 69722 103940 10 69976 70203 103941 10 69921 69700 103942 15 69187 69143 103943 15 69330 69946 103944 10 70063 69330 103945 10 69228 69142 103946 10 70066 69524 103947 10 70008 69397 103948 10 70272 69651 103949 10 70309 69481 103950 15 69971 69308 103951 10 69558 70340 103952 10 69410 70215 103953 10 69954 69990 103954 10 69615 69616 103955 10 69980 69975 103956 10 69379 69651 103957 70375 69602 69977 103958 15 69205 69378 103959 14 70306 70294 103960 10 69371 69513 103961 15 70061 70241 103962 15 70177 69834 103963 10 69903 70026 103964 70375 69156 69163 103965 15 69779 69404 103966 10 69512 69397 103967 10 69842 70319 103968 14 69686 69633 103969 10 69321 69146 103970 15 69788 69412 103971 10 69399 69470 103972 15 69846 69831 103973 15 69622 69827 103974 10 69515 69651 103975 15 70143 69378 103976 15 69988 69501 103977 10 69791 69288 103978 10 70192 70221 103979 10 69639 70107 103980 15 69716 69454 103981 15 69981 69903 103982 15 70125 69351 103983 10 69217 69785 103984 10 69875 69623 103985 10 69365 69810 103986 15 69640 69454 103987 15 69715 69193 103988 10 70126 70214 103989 15 69387 70329 103990 10 69554 70116 103991 10 69905 69116 103992 10 69539 70266 103993 10 69407 69797 103994 10 69497 69806 103995 15 70356 69511 103996 10 70035 69124 103997 10 69483 70212 103998 15 69137 70260 103999 15 70153 69697 104000 10 69565 69755 104001 15 69116 69144 104002 10 70304 70234 104003 15 69272 69295 104004 10 69404 70126 104005 70375 69735 69741 104006 10 70191 69824 104007 15 69828 69282 104008 10 70275 70171 104009 15 69121 70049 104010 15 69649 69310 104011 10 70355 69990 104012 10 69982 69720 104013 15 69481 69378 104014 15 69346 70071 104015 15 69317 70139 104016 10 70226 70148 104017 10 69435 69651 104018 10 70002 69193 104019 15 69940 69339 104020 10 69466 69997 104021 10 69500 70234 104022 10 69729 69168 104023 10 69385 69724 104024 15 69869 69306 104025 10 69957 69513 104026 10 70317 69441 104027 10 69358 69280 104028 15 69998 69757 104029 10 69418 69250 104030 15 69449 69339 104031 15 69647 69397 104032 10 70347 69250 104033 10 69230 69734 104034 15 69804 69650 104035 15 69886 70314 104036 10 69600 69371 104037 10 69464 69611 104038 10 70220 70329 104039 10 70161 70283 104040 15 70152 69487 104041 10 69955 70319 104042 10 69160 70297 104043 10 69482 69378 104044 10 70213 69979 104045 70375 69338 69109 104046 15 69371 70148 104047 15 69287 69333 104048 15 69679 69837 104049 10 70142 69938 104050 15 69893 69892 104051 15 69631 69751 104052 10 70004 69778 104053 10 70286 69513 104054 10 69145 70298 104055 15 69394 69209 104056 10 69106 70222 104057 10 69764 70343 104058 10 69253 70162 104059 70375 69749 69345 104060 10 69864 70197 104061 10 70353 69804 104062 10 70332 70094 104063 15 69765 69559 104064 10 70217 69513 104065 15 69620 70203 104066 10 70077 70283 104067 15 69123 69903 104068 10 69390 69129 104069 10 70023 69966 104070 15 70352 69485 104071 10 69111 69616 104072 15 70019 70009 104073 10 70215 70283 104074 15 69347 70309 104075 15 69492 69306 104076 10 69195 69622 104077 10 70047 70221 104078 15 70109 69215 104079 10 69576 69651 104080 10 69288 69129 104081 15 69879 69553 104082 15 70154 69319 104083 10 69419 70020 104084 10 69550 70319 104085 15 70119 69807 104086 10 69735 69513 104087 15 70030 70262 104088 15 69816 69215 104089 15 69245 69511 104090 15 70314 69575 104091 15 69929 69990 104092 10 69546 69371 104093 10 69927 69738 104094 10 69330 69738 104095 15 69199 69671 104096 15 69948 70309 104097 10 69628 69898 104098 10 69919 69443 104099 10 69342 69960 104100 15 69425 70189 104101 70375 69740 69730 104102 10 70249 69842 104103 15 70047 69606 104104 15 70279 70116 104105 15 69179 69423 104106 15 70139 70116 104107 15 70222 69843 104108 15 69344 70134 104109 10 69743 70075 104110 15 69112 69117 104111 70375 69339 70232 104112 10 70265 69148 104113 10 69299 69623 104114 15 69391 70215 104115 10 69653 69861 104116 15 69601 69850 104117 70375 70201 70155 104118 15 69577 69247 104119 10 70084 70199 104120 15 69570 70164 104121 15 70004 69143 104122 10 70160 69824 104123 10 69854 69514 104124 10 69915 69231 104125 15 69293 69332 104126 10 69283 69851 104127 10 69503 69801 104128 70375 69307 69962 104129 15 69572 69813 104130 10 69614 70149 104131 10 70069 70171 104132 10 69485 70341 104133 15 69475 69987 104134 70375 69702 70186 104135 15 69522 69903 104136 10 70076 69651 104137 15 69456 69730 104138 10 70131 70277 104139 15 69946 69953 104140 10 69518 69167 104141 15 69747 69511 104142 15 70303 69545 104143 10 69119 70221 104144 70375 70211 70340 104145 10 69804 69535 104146 15 69325 70185 104147 15 69700 69501 104148 10 69671 69650 104149 10 69582 69624 104150 10 69698 70343 104151 15 69711 69867 104152 15 69653 69627 104153 70375 70116 69657 104154 10 69129 69514 104155 10 70337 69536 104156 70375 69615 70084 104157 15 69695 69867 104158 15 69705 70102 104159 10 70263 69529 104160 10 69295 69148 104161 10 69815 69503 104162 10 69509 70300 104163 10 70209 69797 104164 15 70330 69332 104165 15 70269 70260 104166 15 69677 69414 104167 15 70012 70265 104168 10 69178 69513 104169 15 69117 70075 104170 15 69108 69953 104171 15 69283 69743 104172 10 69201 69651 104173 10 69846 70343 104174 10 69247 69513 104175 15 69536 69306 104176 15 69732 69805 104177 10 69316 70247 104178 10 70141 70166 104179 14 70109 69787 104180 10 69844 70156 104181 15 69498 69109 104182 10 70371 70329 104183 10 69142 69831 104184 15 70217 70123 104185 15 70137 70049 104186 15 69628 70329 104187 10 70301 70094 104188 10 69281 69848 104189 15 69819 69837 104190 10 69967 69623 104191 10 69459 69495 104192 10 70232 69814 104193 15 69186 69471 104194 15 70331 69573 104195 10 69211 69883 104196 15 69717 69813 104197 15 69656 69312 104198 10 69816 69708 104199 15 69809 69734 104200 15 70320 70203 104201 10 69384 70283 104202 10 69494 69129 104203 10 69442 69402 104204 10 69883 69109 104205 10 69897 69401 104206 10 69847 69709 104207 10 70225 69848 104208 10 70087 69628 104209 10 70033 69201 104210 10 70276 70208 104211 15 69341 69936 104212 15 70083 69559 104213 10 69562 70175 104214 10 70214 69513 104215 15 69986 69813 104216 10 69118 69845 104217 15 69405 69575 104218 10 69861 69908 104219 10 69440 69824 104220 10 69311 69960 104221 10 70042 69910 104222 70375 69518 69895 104223 10 69341 69723 104224 70375 70258 69298 104225 10 69429 70344 104226 10 69860 69755 104227 10 69610 69513 104228 10 69503 70352 104229 15 69479 69813 104230 10 69748 70343 104231 10 70006 69445 104232 10 69879 70362 104233 15 69491 69455 104234 10 70349 70189 104235 10 69830 70368 104236 15 69511 69397 104237 10 69992 69265 104238 15 70264 69553 104239 70375 69884 69339 104240 10 70338 69220 104241 70375 69786 69716 104242 10 69250 69854 104243 10 69806 70068 104244 10 69153 69503 104245 10 69952 69994 104246 15 69528 70308 104247 10 69267 69201 104248 15 69350 70211 104249 15 69892 69697 104250 10 70241 69843 104251 10 69124 70016 104252 15 70369 70022 104253 10 69315 69438 104254 10 70239 69616 104255 10 70274 69256 104256 10 70032 69813 104257 10 69108 70305 104258 15 69693 69860 104259 10 70291 70350 104260 10 69110 69651 104261 15 69617 70259 104262 1 69321 70116 104263 10 69431 69536 104264 10 69896 69250 104265 10 70115 69513 104266 10 69948 69402 104267 10 69843 69755 104268 15 69896 69757 104269 10 69818 69250 104270 10 70175 69622 104271 15 69808 69295 104272 15 70190 69850 104273 15 69975 69777 104274 15 69982 69471 104275 10 69381 70343 104276 10 69752 69651 104277 15 69417 69511 104278 10 69298 69533 104279 10 70110 70263 104280 15 69311 69504 104281 10 69890 70192 104282 10 69889 70221 104283 15 69204 70222 104284 10 70302 69622 104285 15 69629 69306 104286 15 69497 69886 104287 10 69613 69545 104288 15 70308 69227 104289 10 69132 70016 104290 15 69963 69412 104291 15 69861 69559 104292 70375 69780 69438 104293 15 69355 69834 104294 10 69809 70162 104295 10 70308 69917 104296 10 70292 69851 104297 10 69722 69624 104298 10 69577 70368 104299 10 70352 69903 104300 10 70138 69182 104301 10 70297 69513 104302 10 69493 69291 104303 10 69872 69923 104304 10 69401 70286 104305 70375 69492 70296 104306 10 69944 69564 104307 10 69679 69611 104308 10 69831 69854 104309 10 69596 69383 104310 15 69575 69200 104311 10 69450 69497 104312 10 70050 69738 104313 10 69559 69894 104314 10 69669 70148 104315 15 69701 69720 104316 10 70327 69182 104317 10 70081 69465 104318 10 69770 69616 104319 10 69353 70088 104320 10 70298 69312 104321 10 70328 69375 104322 15 69974 70272 104323 15 69192 70059 104324 10 69618 69923 104325 15 70025 70296 104326 10 70041 69833 104327 15 70174 69295 104328 15 69197 69559 104329 15 70178 69917 104330 10 69742 69109 104331 15 69885 69414 104332 15 69221 70222 104333 15 69784 69341 104334 10 70354 69783 104335 10 69170 69616 104336 15 69477 70201 104337 15 69493 69407 104338 70375 70368 70094 104339 10 70200 69664 104340 10 70208 69738 104341 15 69703 69504 104342 15 69967 69903 104343 10 70244 69551 104344 10 69147 69320 104345 10 69941 69554 104346 15 69637 70324 104347 15 69421 69581 104348 10 69797 70156 104349 70375 70166 69360 104350 10 69596 69482 104351 70375 69543 69911 104352 15 69793 69843 104353 15 69110 70295 104354 10 69533 69513 104355 10 69581 69319 104356 10 69772 70313 104357 10 70273 69537 104358 15 69298 69573 104359 10 69388 70367 104360 15 70096 69962 104361 10 69745 69993 104362 10 69210 69814 104363 14 70306 69633 104364 10 69439 69132 104365 10 70231 70162 104366 10 69495 70199 104367 70375 69719 69555 104368 10 70051 69892 104369 10 70198 69397 104370 10 69891 70313 104371 10 70329 69738 104372 15 70373 69609 104373 10 69784 70132 104374 10 69958 69217 104375 15 69876 69843 104376 15 69769 69633 104377 10 70223 69451 104378 15 69743 69813 104379 10 70288 69810 104380 10 69932 69472 104381 15 69269 70014 104382 15 69601 69671 104383 15 70366 70122 104384 15 70037 70338 104385 10 69212 70154 104386 70375 69806 69817 104387 10 69923 70319 104388 10 69519 70343 104389 10 69134 69623 104390 10 70372 69410 104391 10 69914 69513 104392 15 69964 69735 104393 10 69751 69565 104394 15 70091 69986 104395 10 70280 69824 104396 10 69909 69196 104397 10 69196 69470 104398 10 69356 69981 104399 10 70174 69453 104400 15 69890 70259 104401 10 70363 70116 104402 10 69634 69170 104403 10 69778 69550 104404 10 70079 69765 104405 15 70085 69559 104406 15 69317 69859 104407 15 69315 69921 104408 10 69448 69453 104409 10 70129 69691 104410 10 69855 70283 104411 15 69267 69647 104412 10 69850 69414 104413 10 70284 70340 104414 10 69449 69369 104415 10 70164 70148 104416 10 69472 69163 104417 10 70221 69178 104418 15 69859 69609 104419 15 70293 69726 104420 10 69907 70080 104421 10 69332 69414 104422 10 69886 69787 104423 10 70075 70203 104424 10 69689 69651 104425 10 69405 69940 104426 15 69987 69332 104427 10 69805 69930 104428 70375 69271 69532 104429 10 69796 69513 104430 10 69525 69513 104431 15 69867 69633 104432 10 69862 69962 104433 15 69348 70286 104434 15 70347 69633 104435 15 69979 70214 104436 10 69925 69722 104437 15 70017 69430 104438 15 69486 69454 104439 15 69868 69743 104440 15 70018 69946 104441 70375 69367 69450 104442 10 69112 69250 104443 15 69337 70005 104444 10 69603 70140 104445 15 69109 69946 104446 10 69176 69623 104447 10 70238 69660 104448 10 70036 69761 104449 10 69193 69300 104450 15 69691 69837 104451 15 69734 69339 104452 15 70309 69105 104453 10 69246 69958 104454 10 69661 69738 104455 15 70261 69903 104456 15 69796 69633 104457 10 69959 69108 104458 10 70258 69533 104459 15 70362 69627 104460 10 70031 69567 104461 15 70097 69218 104462 10 70168 69651 104463 10 69692 69596 104464 15 69708 69843 104465 15 70318 70134 104466 10 70090 69746 104467 10 69707 70015 104468 10 69412 69397 104469 10 69199 69319 104470 10 70088 69848 104471 10 70078 70234 104472 10 69536 69651 104473 15 69147 70271 104474 15 69758 69544 104475 10 69986 69722 104476 15 70235 70166 104477 15 69118 69478 104478 15 69661 69397 104479 10 69361 69655 104480 10 69460 69629 104481 10 70173 69148 104482 10 69327 69550 104483 10 69413 69409 104484 10 70290 69453 104485 10 69837 70075 104486 15 69453 69148 104487 10 69594 69518 104488 15 70150 70235 104489 15 69697 69921 104490 15 69295 69850 104491 10 69368 69107 104492 15 69410 69953 104493 15 70256 69751 104494 10 69677 70077 104495 10 69901 70343 104496 10 69257 69154 104497 10 70219 69267 104498 10 69898 69966 104499 10 69685 69623 104500 10 69824 69651 104501 15 70247 69333 104502 15 69907 69609 104503 10 69768 69680 104504 10 69188 69814 104505 15 69770 70075 104506 10 69713 70339 104507 15 69127 69105 104508 10 69132 70328 104509 10 69827 69898 104510 15 69430 69105 104511 15 70135 69584 104512 15 70365 69842 104513 10 69814 69182 104514 15 69185 69647 104515 10 70298 70092 104516 10 69284 70299 104517 15 70333 70299 104518 10 69575 69339 104519 10 69364 70045 104520 10 69616 69651 104521 10 69458 70140 104522 15 69667 70085 104523 10 69873 69527 104524 10 69291 70052 104525 15 69148 69414 104526 15 70170 69756 104527 15 69345 69454 104528 15 69771 70324 104529 10 69163 69651 104530 10 69636 70312 104531 15 70104 69976 104532 15 70142 70126 104533 15 70247 70075 104534 15 69469 70305 104535 70375 69564 69743 104536 15 70342 69306 104537 15 69995 69679 104538 10 70199 69299 104539 10 70010 69105 104540 15 69766 70166 104541 10 70320 69513 104542 15 69806 70241 104543 14 69552 69551 104544 10 69304 70140 104545 15 70310 69633 104546 10 70201 69831 104547 10 70361 69204 104548 10 70189 69898 104549 10 69591 69220 104550 15 69107 69470 104551 15 70060 70116 104552 10 70071 70178 104553 15 69921 69255 104554 10 69560 69288 104555 10 69349 70350 104556 10 69779 70147 104557 10 69335 69273 104558 10 70100 69457 104559 10 69786 69860 104560 15 69830 70172 104561 15 69532 70368 104562 15 69215 69339 104563 10 69950 70365 104564 15 69343 69215 104565 10 70046 69464 104566 15 69169 69227 104567 15 69198 70166 104568 10 69841 69201 104569 10 69823 70160 104570 10 69461 69470 104571 10 70143 69513 104572 10 70266 69513 104573 10 69171 69831 104574 10 69801 69623 104575 10 69993 69898 104576 15 69908 69894 104577 10 69780 69513 104578 10 69825 69848 104579 15 69211 69581 104580 10 69834 69813 104581 14 69567 69479 104582 10 69852 70326 104583 70375 69732 70084 104584 10 69781 70339 104585 10 70060 69872 104586 15 70213 70126 104587 10 69677 69535 104588 15 70134 69389 104589 10 69928 69308 104590 15 69648 70060 104591 10 69744 69369 104592 10 69338 69722 104593 10 69393 69513 104594 15 69106 69226 104595 10 69785 70026 104596 15 70111 69940 104597 70375 69390 69494 104598 15 70024 69777 104599 15 69249 69943 104600 10 69345 69114 104601 15 69955 69343 104602 10 69807 69122 104603 10 70094 69623 104604 70375 70184 69532 104605 10 70234 69664 104606 10 69248 69443 104607 10 69988 70277 104608 10 69802 69268 104609 15 69274 70251 104610 10 69542 69623 104611 10 69619 69204 104612 10 70324 69319 104613 15 69960 69738 104614 15 69818 69215 104615 10 69362 69651 104616 10 69130 69144 104617 15 69625 70211 104618 10 69949 70343 104619 15 69145 69214 104620 10 70254 69827 104621 10 69695 69164 104622 10 69282 69651 104623 10 69524 69922 104624 15 69936 69718 104625 10 69139 69370 104626 10 69516 70083 104627 10 69670 69201 104628 15 69506 69553 104629 10 69822 69885 104630 10 69569 69966 104631 10 69994 70234 104632 10 69912 70283 104633 10 70108 69651 104634 10 69443 69898 104635 10 69261 69182 104636 15 70336 69193 104637 14 69916 69513 104638 10 70082 70075 104639 10 69865 70183 104640 10 69746 69738 104641 10 70256 69233 104642 15 69805 69435 104643 10 69216 69330 104644 1 69849 70166 104645 15 69807 69946 104646 10 69143 69678 104647 10 69723 69964 104648 10 69693 69651 104649 15 69180 69843 104650 15 69621 70339 104651 10 70245 70283 104652 15 70197 70266 104653 10 69937 69724 104654 15 69736 70329 104655 15 70311 70260 104656 10 70350 69109 104657 10 69878 70038 104658 10 70147 69616 104659 15 69604 69633 104660 10 69436 70130 104661 15 70075 69378 104662 10 69728 70171 104663 10 69169 69464 104664 10 69943 69402 104665 10 69922 69482 104666 15 69593 69148 104667 10 69474 69487 104668 10 70081 69454 104669 10 70064 69360 104670 15 69550 70166 104671 10 69231 69651 104672 10 69584 69670 104673 10 69339 70090 104674 10 70133 70015 104675 10 70288 69299 104676 10 70227 70148 104677 10 70184 69529 104678 15 70166 69582 104679 10 69146 69465 104680 10 69570 69126 104681 15 69761 69199 104682 15 70188 69512 104683 15 70147 69333 104684 10 70321 69371 104685 10 70374 70279 104686 10 69812 69623 104687 10 69702 70343 104688 15 69441 70214 104689 70375 69985 69335 104690 10 69187 69327 104691 10 70237 70168 104692 10 69867 69651 104693 15 69259 70283 104694 10 69477 69846 104695 15 70274 69700 104696 10 69884 69738 104697 10 69756 70077 104698 15 70120 69872 104699 10 69894 70222 104700 15 69423 70154 104701 15 69685 69903 104702 14 70076 70340 104703 15 70364 69843 104704 10 70345 69997 104705 10 69323 69910 104706 15 69675 70215 104707 10 69771 69883 104708 10 69441 70320 104709 15 69906 69627 104710 10 69469 69623 104711 10 70054 69315 104712 15 70210 70178 104713 10 69198 69930 104714 27 69221 69204 104715 15 69419 69215 104716 10 69123 69623 104717 15 70350 69148 104718 10 70179 69495 104719 15 69228 69595 104720 10 69337 69276 104721 15 69870 69215 104722 15 69720 70124 104723 10 70330 70281 104724 14 69474 69146 104725 70375 69413 70186 104726 10 69676 70368 104727 15 69219 69633 104728 15 70239 69855 104729 10 69858 69135 104730 10 69651 69854 104731 70375 69412 69188 104732 15 70339 70116 104733 10 69114 70126 104734 10 69408 70107 104735 15 70359 69412 104736 10 70109 69624 104737 10 69428 69527 104738 10 69877 69651 104739 10 70001 70113 104740 10 69300 69623 104741 10 69121 70343 104742 15 69438 69700 104743 10 69391 69927 104744 15 70291 70173 104745 15 69864 70122 104746 10 70204 69660 104747 10 70137 70250 104748 10 70019 69233 104749 10 70326 70184 104750 15 70244 69226 104751 10 70340 69457 104752 15 70164 70116 104753 15 69753 69987 104754 15 69735 69700 104755 10 70045 69807 104756 15 70323 69401 104757 15 69458 70211 104758 10 69892 69144 104759 10 69149 69661 104760 10 70053 69788 104761 10 69682 69513 104762 15 69119 69927 104763 15 70129 69573 104764 10 69564 70075 104765 10 69414 69953 104766 10 70111 69250 104767 15 69173 69418 104768 10 69741 69182 104769 10 70206 69616 104770 10 70070 70175 104771 10 69714 69548 104772 15 69574 69454 104773 10 69913 69872 104774 10 70229 69584 104775 10 70083 69616 104776 15 69434 69454 104777 10 70048 69513 104778 15 69175 69873 104779 15 69281 69111 104780 15 69476 69850 104781 10 69406 70189 104782 15 69509 69287 104783 10 69241 70162 104784 10 69595 69392 104785 15 69376 69843 104786 10 69148 69946 104787 10 69730 69565 104788 10 69592 69958 104789 15 70272 69536 104790 15 69513 69755 104791 14 70067 69701 104792 10 70148 69513 104793 15 69781 69312 104794 10 69920 69274 104795 10 69240 69512 104796 10 69663 69512 104797 10 69229 70368 104798 10 69553 69627 104799 15 69665 70102 104800 15 69905 69130 104801 15 69257 70166 104802 10 69202 70113 104803 15 69247 69700 104804 10 69420 69107 104805 10 69958 69355 104806 10 70135 69201 104807 10 69712 69129 104808 10 69916 69854 104809 10 69204 70368 104810 10 70124 69651 104811 15 69263 70009 104812 10 69998 69250 104813 10 69930 69616 104814 10 69985 69273 104815 10 70356 70143 104816 10 69151 69558 104817 15 70183 69618 104818 15 69375 69953 104819 15 69253 70015 104820 10 69721 69709 104821 10 69182 69651 104822 10 70296 69513 104823 10 69700 69854 104824 10 69222 70154 104825 15 69959 69414 104826 10 69144 69651 104827 15 70002 70141 104828 15 69542 69397 104829 10 69978 70271 104830 10 69177 69371 104831 10 70222 69513 104832 10 69547 69590 104833 10 69968 70109 104834 10 70190 69822 104835 10 69551 70343 104836 10 70065 69883 104837 15 70231 69993 104838 10 69625 69513 104839 10 69926 69844 104840 10 69347 69402 104841 10 69945 70191 104842 15 69448 70265 104843 10 69223 69956 104844 15 69787 70090 104845 10 69455 69917 104846 70375 69362 69806 104847 15 69714 69954 104848 10 70333 70339 104849 15 70160 69378 104850 15 69827 70116 104851 15 69636 69455 104852 10 70344 69381 104853 10 70006 70081 104854 10 70139 69960 104855 15 69304 69625 104856 15 69729 69206 104857 10 70122 70266 104858 15 70172 69454 104859 15 69551 69843 104860 10 70367 69596 104861 15 69451 69827 104862 15 69707 70286 104863 10 69656 69451 104864 15 70023 69404 104865 10 69674 70171 104866 15 69278 69618 104867 15 69287 70166 104868 10 69590 70344 104869 10 69876 69513 104870 70375 69338 69807 104871 10 70130 70225 104872 15 69442 70309 104873 15 69546 70164 104874 15 69529 69966 104875 10 70262 69513 104876 10 70195 70212 104877 15 69932 69921 104878 15 69858 70116 104879 10 69491 69316 104880 10 70247 69616 104881 10 70025 69629 104882 15 70118 69418 104883 10 70066 70149 104884 10 69451 70162 104885 10 69352 69651 104886 15 69588 70308 104887 10 70099 70120 104888 70375 69873 69702 104889 15 70014 70122 104890 10 69133 69925 104891 15 69201 69250 104892 70375 70345 69466 104893 10 70172 69527 104894 10 69646 70340 104895 10 70236 69153 104896 10 69272 69593 104897 10 69131 69558 104898 10 69421 69910 104899 10 69333 69616 104900 15 70148 69738 104901 15 69910 69319 104902 10 70073 70343 104903 15 70062 69925 104904 10 69626 69682 104905 10 69632 69479 104906 70375 69978 70257 104907 10 69388 69692 104908 10 69832 69543 104909 15 69414 69834 104910 10 69186 69720 104911 15 69539 69557 104912 14 69215 69787 104913 15 70046 70260 104914 10 69486 69404 104915 10 70306 69383 104916 10 69269 69778 104917 10 69350 70140 104918 10 69262 69622 104919 70375 69686 69813 104920 10 69718 69921 104921 15 70202 69962 104922 15 70193 69199 104923 10 69138 69116 104924 15 69340 69609 104925 10 69127 70160 104926 10 70224 69501 104927 10 70029 69229 104928 15 70296 69735 104929 10 69487 69651 104930 10 69141 69250 104931 10 69766 69513 104932 70375 69105 69683 104933 10 69810 69623 104934 10 69226 69843 104935 10 69659 69813 104936 70375 69918 69438 104937 70375 69131 69784 104938 70375 70093 69438 104939 15 69525 69397 104940 10 70295 69651 104941 15 70324 69671 104942 10 69415 69513 104943 10 69733 69513 104944 15 70371 69609 104945 15 69915 69843 104946 15 69170 70222 104947 15 69268 70166 104948 15 70007 69903 104949 15 69762 69470 104950 15 69848 69616 104951 10 69425 70162 104952 15 69502 69287 104953 14 69813 69105 104954 15 69678 70266 104955 10 70156 69854 104956 10 69331 69639 104957 10 69647 69402 104958 10 69192 69720 104959 10 69904 69692 104960 10 69489 69746 104961 15 69815 70031 104962 10 70322 69570 104963 15 70003 70080 104964 10 69387 70221 104965 10 70212 69805 104966 15 69473 69837 104967 15 69871 69536 104968 10 69236 69993 104969 10 69963 70221 104970 10 69725 69159 104971 10 69765 69129 104972 10 69136 70283 104973 15 69255 70018 104974 15 69144 69735 104975 15 70266 70166 104976 10 69303 69527 104977 10 69732 69616 104978 15 69845 70341 104979 10 70243 69886 104980 15 69619 69894 104981 10 69829 69978 104982 10 69747 69616 104983 15 69688 70247 104984 10 70015 69898 104985 10 69400 69628 104986 15 69657 70341 104987 10 70014 69678 104988 15 70157 70324 104989 10 69227 69954 104990 15 70042 69777 104991 10 69543 70343 104992 10 70287 69267 104993 15 70057 69907 104994 15 69712 69569 104995 15 69466 69454 104996 15 69969 69545 104997 10 69557 70166 104998 10 69207 69109 104999 10 69887 69268 105000 10 69853 70197 105001 10 69213 70344 105002 15 70074 69180 105003 15 69366 69843 105004 10 69329 70313 105005 10 69673 70156 105006 15 69347 70134 105007 10 70000 69828 105008 15 69302 69962 105009 70375 69988 69247 105010 10 69395 69513 105011 15 69586 69160 105012 70375 69817 70061 105013 15 70077 69834 105014 10 69366 69682 105015 10 69946 70010 105016 15 70131 69633 105017 10 69939 69482 105018 10 69681 69916 105019 70375 70134 70240 105020 10 69264 69882 105021 10 69965 69267 105022 10 70365 70319 105023 15 69600 70226 105024 10 69372 69577 105025 10 70197 69620 105026 15 69795 69306 105027 10 69473 69513 105028 15 69627 69886 105029 15 69232 70166 105030 10 70059 69651 105031 10 69739 69513 105032 15 69244 69536 105033 10 69567 69743 105034 10 70255 70192 105035 10 69999 69848 105036 15 69831 70368 105037 15 70317 69929 105038 10 69979 69620 105039 10 69767 70116 105040 15 70165 69397 105041 10 69498 69513 105042 10 69750 69872 105043 15 69260 69430 105044 15 69887 69602 105045 10 69334 69872 105046 10 70260 69954 105047 10 70334 70043 105048 15 69216 69148 105049 10 69452 70254 105050 10 70154 70018 105051 10 69776 69646 105052 10 69717 69481 105053 15 69853 69539 105054 15 69242 69584 105055 10 70128 69762 105056 15 69120 69867 105057 10 69403 69142 105058 10 70323 69707 105059 10 70009 69513 105060 10 69974 69336 105061 15 70181 69671 105062 10 69523 70283 105063 10 69586 70133 105064 15 69153 69953 105065 10 70036 69833 105066 70375 69609 69891 105067 15 69950 70150 105068 15 69925 69105 105069 10 69845 69126 105070 15 70187 69511 105071 70375 69946 69108 105072 70375 69330 70327 105073 15 69494 69144 105074 10 69962 69738 105075 15 69504 70062 105076 70375 70276 69434 105077 15 70084 69805 105078 15 69222 69581 105079 15 70043 69894 105080 10 69951 69577 105081 15 69878 69227 105082 10 70162 69831 105083 10 69799 70162 105084 15 70071 69455 105085 27 70334 69197 105086 15 70263 69569 105087 10 70342 69651 105088 15 69591 70338 105089 70375 69540 70373 105090 10 69848 70343 105091 15 69789 69921 105092 10 69510 69755 105093 15 70192 69746 105094 15 69382 70319 105095 15 69863 69454 105096 70375 69113 70244 105097 10 70119 69513 105098 10 69396 69378 105099 70375 69557 69997 105100 15 69442 69339 105101 10 69563 69327 105102 15 69598 69936 105103 14 69623 69381 105104 10 69549 69593 105105 15 69611 70075 105106 10 69980 69833 105107 10 69397 70116 105108 10 69790 69543 105109 10 69529 70155 105110 10 70072 69845 105111 10 70259 69489 105112 10 70283 69743 105113 10 69256 69129 105114 10 69373 69107 105115 15 69282 70080 105116 15 69718 69423 105117 15 69402 69481 105118 10 70116 69738 105119 15 69798 69837 105120 10 69233 69513 105121 10 69940 69233 105122 10 70028 70238 105123 10 69219 69964 105124 15 69930 70203 105125 10 70351 69882 105126 10 70039 69990 105127 10 70187 69513 105128 15 69369 69738 105129 10 69789 69577 105130 10 69434 70208 105131 10 69691 69851 105132 10 69232 69135 105133 15 69386 69838 105134 10 70153 69494 105135 10 69476 70281 105136 10 69268 70320 105137 10 69467 69766 105138 10 69462 69651 105139 10 70357 69580 105140 10 70277 69916 105141 10 70281 70328 105142 10 69277 69925 105143 10 69334 69344 105144 10 70180 69979 105145 10 69716 69860 105146 10 69430 69722 105147 15 69675 69333 105148 10 69197 69619 105149 10 69309 70183 105150 15 69517 70227 105151 15 70130 69923 105152 10 69997 69265 105153 15 69655 69627 105154 10 69446 69193 105155 10 69578 69495 105156 15 69241 69628 105157 10 70158 70171 105158 10 69481 69250 105159 10 70114 70147 105160 10 69530 70147 105161 10 69808 69724 105162 15 69579 70126 105163 15 70000 69172 105164 10 69271 70113 105165 15 69349 70265 105166 10 69772 69922 105167 10 69598 70325 105168 10 70018 69501 105169 10 69820 70283 105170 15 69185 69511 105171 15 70009 69512 105172 15 69650 70032 105173 10 69438 69233 105174 10 69637 70045 105175 14 69891 70207 105176 10 69555 69278 105177 10 69959 69355 105178 1 69977 70251 105179 15 70108 69130 105180 10 69215 69624 105181 10 69359 69651 105182 10 70325 69515 105183 10 70369 70130 105184 70375 69899 69532 105185 70375 69558 70132 105186 10 70080 70201 105187 15 70168 69536 105188 10 69813 69383 105189 15 69896 70172 105190 10 70086 70243 105191 10 69649 69848 105192 70375 69215 69261 105193 10 69633 69624 105194 10 69648 69872 105195 70375 70068 69551 105196 15 69229 69582 105197 15 69641 70141 105198 10 69386 70107 105199 15 69702 69454 105200 15 70243 69206 105201 15 69507 69718 105202 10 70022 69618 105203 15 69882 69397 105204 15 70218 69105 105205 10 69639 69217 105206 15 69903 70341 105207 15 69463 70059 105208 15 69564 69686 105209 10 69237 69375 105210 10 70091 69572 105211 10 69194 69762 105212 10 69479 70075 105213 15 70360 70147 105214 10 70056 69814 105215 10 70339 69369 105216 70375 69756 69246 105217 15 69747 69333 105218 10 70314 69215 105219 10 69720 70368 105220 10 69289 70083 105221 10 69484 70234 105222 10 70293 69962 105223 10 70278 69513 105224 15 70372 70102 105225 15 69246 70031 105226 10 69738 69755 105227 15 69725 69633 105228 10 69180 69513 105229 10 69811 69196 105230 10 69630 69651 105231 15 70110 69369 105232 14 69340 70371 105233 10 69217 69801 105234 10 69394 70210 105235 10 69184 69513 105236 15 69581 70102 105237 15 69413 69454 105238 15 70212 69954 105239 10 69913 69703 105240 10 70021 69213 105241 10 69973 70365 105242 10 69541 69156 105243 15 69889 70134 105244 15 70069 69633 105245 15 69276 69812 105246 15 70079 69627 105247 15 69880 70134 105248 10 69471 69651 105249 10 69856 69383 105250 15 70103 69504 105251 15 69439 69671 105252 10 69433 69474 105253 10 69258 69590 105254 10 69644 69814 105255 10 69991 70171 105256 15 69184 69730 105257 70375 69202 69271 105258 10 69910 70169 105259 10 69755 69854 105260 10 69936 69697 105261 15 69935 69106 105262 15 69432 69306 105263 10 69312 69827 105264 15 70054 69718 105265 10 69640 69922 105266 10 69511 69233 105267 10 69968 69886 105268 15 70124 69306 105269 10 69367 70252 105270 10 69518 70081 105271 15 69914 69633 105272 10 69535 70283 105273 10 69167 69454 105274 15 69418 70235 105275 10 70163 69966 105276 15 69455 70260 105277 10 69426 69231 105278 10 69821 69651 105279 15 70095 69964 105280 10 69726 69277 105281 15 69403 69392 105282 15 69883 69319 105283 15 69762 70338 105284 10 69579 69441 105285 10 70246 70224 105286 10 69360 69182 105287 10 70085 69616 105288 10 69871 69795 105289 15 70033 69306 105290 15 70220 69609 105291 27 69727 70334 105292 10 69787 70241 105293 10 70095 70361 105294 10 69324 69837 105295 15 69446 69539 105296 10 69517 69371 105297 10 69423 69255 105298 10 70049 69513 105299 10 69641 69229 105300 10 69709 70141 105301 10 69456 69233 105302 15 69306 69633 105303 10 69708 69256 105304 10 69266 69712 105305 14 69362 70100 105306 15 69644 69657 105307 10 69191 69651 105308 10 70121 69833 105309 70375 69967 69123 105310 70375 69504 69210 105311 15 69389 69925 105312 10 69835 69722 105313 10 69822 69237 105314 14 69510 69336 105315 10 69154 70319 105316 10 69150 69618 105317 15 69750 70060 105318 10 69996 69409 105319 10 69970 70088 105320 10 69416 70191 105321 10 69964 69226 105322 15 69358 69509 105323 10 69524 69596 105324 15 70312 69917 105325 10 69474 69465 105326 15 70273 69625 105327 10 69863 70147 105328 10 69424 69348 105329 10 70121 69212 105330 15 69540 69859 105331 10 69164 69651 105332 15 70048 69843 105333 10 69593 69807 105334 15 70361 69106 105335 70375 70252 69497 105336 14 70315 70245 105337 15 69427 69306 105338 15 69902 69227 105339 15 69676 69478 105340 10 69245 70319 105341 10 69355 69801 105342 10 70210 69973 105343 10 69620 69513 105344 15 69566 70032 105345 10 70118 69848 105346 70375 70050 69504 105347 15 69515 69735 105348 10 69868 70214 105349 15 70099 69750 105350 15 69993 69962 105351 10 70300 69616 105352 15 70254 69511 105353 15 69230 69940 105354 10 70211 69844 105355 10 70096 69960 105356 15 69249 70297 105357 10 69275 70201 105358 10 69893 69130 105359 15 69544 69453 105360 10 69488 70143 105361 10 69417 69513 105362 15 69610 70230 105363 10 69124 69237 105364 10 69740 69513 105365 15 69141 70230 105366 15 69643 69199 105367 10 70155 70343 105368 10 69520 69513 105369 10 69819 69117 105370 10 69193 69810 105371 10 70311 69994 105372 10 70313 69482 105373 15 70026 69378 105374 15 69689 69359 105375 10 70149 69596 105376 10 70242 69288 105377 15 69235 69295 105378 70375 69411 69592 105379 10 70013 69429 105380 15 69805 70075 105381 15 69573 69454 105382 10 69903 69300 105383 15 69794 70075 105384 10 70359 69250 105385 10 70074 69513 105386 10 70183 69320 105387 70375 70217 69404 105388 10 69502 70147 105389 10 69776 69558 105390 10 69480 69651 105391 10 69383 69378 105392 10 69249 69250 105393 15 69603 69536 105394 15 69724 69148 105395 10 69220 69201 105396 10 69705 69132 105397 10 69556 69470 105398 15 69496 69359 105399 10 69307 69738 105400 15 69209 70308 105401 10 69308 69651 105402 15 69324 69609 105403 15 69471 70124 105404 10 69566 69572 105405 10 69690 69146 105406 10 69504 69738 105407 15 69553 70243 105408 70375 69891 70013 105409 15 69436 69150 105410 15 69408 69650 105411 15 69802 69557 105412 15 70103 70309 105413 15 69744 69504 105414 15 69520 70166 105415 10 69411 70077 105416 10 70103 69402 105417 10 69758 69405 105418 10 69900 70221 105419 10 69203 69845 105420 70375 70056 69469 105421 15 69370 69511 105422 10 70305 69623 105423 15 69943 70259 105424 70375 69291 69748 105425 10 70127 69814 105426 15 69873 69454 105427 15 70251 70235 105428 15 69592 70031 105429 10 69815 69355 105430 10 69221 69616 105431 10 69606 69738 105432 10 69522 69623 105433 10 69432 69651 105434 10 69375 69572 105435 15 69723 69697 105436 10 69447 70283 105437 10 69208 69355 105438 10 69238 69291 105439 10 69287 69616 105440 15 69897 69423 105441 15 70031 69834 105442 10 69505 70343 105443 70375 69352 69515 105444 10 69987 69148 105445 10 69966 70368 105446 15 69801 69813 105447 15 70227 70134 105448 15 70292 69990 105449 10 70086 69968 105450 15 70334 69559 105451 15 69464 69954 105452 15 69638 69332 105453 15 69426 69633 105454 15 70039 69609 105455 10 69650 69953 105456 10 70294 70171 105457 10 70236 70107 105458 15 69966 69378 105459 10 70132 69113 105460 10 69507 69932 105461 15 70126 69837 105462 10 69699 70020 105463 15 70230 70116 105464 10 70202 69369 105465 10 69122 70329 105466 15 69561 70116 105467 10 70246 70018 105468 10 69795 69159 105469 15 69143 69539 105470 15 69972 70215 105471 15 69948 69962 105472 10 70007 69623 105473 15 69351 69511 105474 70375 70001 69532 105475 10 69601 69677 105476 10 69234 69651 105477 10 69769 69256 105478 10 70307 69527 105479 10 69305 69629 105480 10 69788 69827 105481 15 69296 70009 105482 10 69351 70230 105483 10 69521 69616 105484 15 70282 69792 105485 10 69657 69814 105486 10 69774 69590 105487 15 69521 70075 105488 10 69205 69812 105489 10 70185 70203 105490 10 69731 69154 105491 10 69826 69824 105492 10 69190 69524 105493 10 69306 70156 105494 10 70043 69221 105495 10 69961 69622 105496 15 69699 69633 105497 10 70373 70344 105498 70375 69999 69258 105499 10 69794 69135 105500 10 69331 69836 105501 10 70068 70343 105502 15 70265 69850 105503 70375 70263 69161 105504 10 69544 69575 105505 10 69849 69146 105506 10 70182 69404 105507 10 69573 70203 105508 15 70249 70075 105509 15 70127 69657 105510 70375 69633 69501 105511 15 70015 70259 105512 15 69443 69504 105513 10 69612 69677 105514 10 70167 70171 105515 10 70261 69623 105516 10 69280 69848 105517 15 70315 69813 105518 10 70318 69369 105519 10 69851 69513 105520 10 69836 69153 105521 10 70367 69939 105522 15 70059 70124 105523 10 70041 69222 105524 10 70177 69479 105525 10 70360 69280 105526 15 69342 70329 105527 70375 70083 70085 105528 10 69580 69596 105529 10 69508 69478 105530 10 69624 69854 105531 10 69270 70339 105532 10 70005 69205 105533 15 69158 70172 105534 10 69995 69142 105535 10 69711 69651 105536 10 69588 70312 105537 10 70120 70130 105538 10 70170 69836 105539 10 69409 69381 105540 15 69983 69569 105541 10 69158 69651 105542 10 69833 70154 105543 10 69885 69375 105544 10 70123 69378 105545 70375 69949 69505 105546 10 69888 70283 105547 15 69335 69454 105548 15 70051 69936 105549 10 70271 69854 105550 10 69623 69651 105551 10 69465 69854 105552 10 69490 69923 105553 10 69759 70120 105554 70375 69727 70083 105555 10 69664 69378 105556 10 70312 69521 105557 10 70152 70225 105558 10 69214 69397 105559 10 70319 69616 105560 10 69938 70026 105561 10 69869 69513 105562 10 69983 69529 105563 15 69323 69199 105564 10 69348 69616 105565 15 69189 69987 105566 10 70166 70203 105567 15 69191 69918 105568 15 69402 69738 105569 10 70240 69814 105570 10 70181 69124 105571 15 69790 69545 105572 10 69571 69267 105573 10 69296 70279 105574 10 69989 69167 105575 10 70003 69846 105576 10 69126 69409 105577 10 69156 69472 105578 10 69174 69513 105579 10 69934 69848 105580 10 69354 69680 105581 15 69713 69511 105582 10 70012 69724 105583 10 69660 69225 105584 15 69395 69511 105585 10 69265 70166 105586 10 70165 69308 105587 15 69126 69378 105588 15 69738 69378 105589 10 69501 69722 105590 15 70068 69843 105591 10 69548 70026 105592 10 69604 69916 105593 10 69427 69513 105594 10 70105 69906 105595 15 69160 69255 105596 10 69622 70184 105597 10 69585 69196 105598 15 69698 69480 105599 14 69624 69755 105600 10 69389 69722 105601 10 70140 70343 105602 10 70251 69616 105603 15 69852 70133 105604 10 70186 70343 105605 10 70281 69885 105606 15 70133 70297 105607 10 70092 69827 105608 10 70169 69200 105609 15 70321 69669 105610 15 69790 69584 105611 10 69244 69651 105612 15 69213 69495 105613 70375 69541 69534 105614 10 69607 69116 105615 15 69962 69277 105616 10 69984 69981 105617 15 69898 69738 105618 10 70193 70045 105619 15 70122 69602 105620 15 69361 69553 105621 10 69496 69651 105622 10 69906 69955 105623 10 69895 69474 105624 15 70114 70247 105625 10 69325 69513 105626 15 69326 70141 105627 15 69777 70102 105628 15 70297 70259 105629 15 69393 69735 105630 10 69107 69832 105631 15 70115 70116 105632 10 70102 69650 105633 10 69492 69513 105634 15 69780 69306 105635 10 69151 70284 105636 15 70239 69333 105637 10 70310 69308 105638 10 70067 69720 105639 10 69370 70250 105640 70375 69766 69365 105641 10 69293 69822 105642 10 69775 69225 105643 15 69851 70075 105644 15 70089 70329 105645 10 69638 69410 105646 15 69339 69430 105647 10 69398 69532 105648 10 69972 69112 105649 15 69174 69659 105650 15 69759 69648 105651 10 69322 69788 105652 10 69175 70343 105653 15 69359 69964 105654 10 69301 69333 105655 10 70020 69651 105656 15 69632 70032 105657 70375 70076 69113 105658 10 69310 69616 105659 10 69115 69691 105660 15 69270 70230 105661 10 69694 70326 105662 15 70259 69501 105663 15 69535 69953 105664 10 69318 70238 105665 10 69475 69593 105666 10 70331 70282 105667 10 69643 69883 105668 10 70282 69903 105669 15 69917 69954 105670 10 70268 69274 105671 15 70295 69867 105672 15 69970 69416 105673 10 70279 70221 105674 15 69134 69903 105675 10 70230 69957 105676 15 69385 69987 105677 10 69866 69117 105678 10 69761 70154 105679 15 69563 70014 105680 10 69454 70156 105681 10 70368 69651 105682 10 69908 69170 105683 15 70132 69723 105684 10 69117 69733 105685 10 70052 70343 105686 15 69694 69827 105687 10 69629 69513 105688 10 69817 70343 105689 15 69238 69751 105690 15 70144 69813 105691 10 69513 69854 105692 15 69156 69633 105693 10 69109 69122 105694 10 69561 69938 105695 10 70207 69126 105696 15 69392 69990 105697 10 69190 69580 105698 15 69142 69611 105699 10 69206 70314 105700 15 70111 69442 105701 10 70252 70100 105702 10 69290 69766 105703 10 69200 69430 105704 10 69947 69996 105705 15 69415 70230 105706 15 69901 69631 105707 10 70027 69437 105708 15 69250 70156 105709 10 69317 70343 105710 15 69737 70262 105711 10 69659 69513 105712 15 69937 70173 105713 10 70026 69623 105714 70375 69503 70282 105715 10 69792 70341 105716 10 69392 69611 105717 15 69559 69215 105718 10 69683 69182 105719 15 69301 69454 105720 15 69608 70339 105721 15 69961 70299 105722 15 69615 69805 105723 10 69276 69381 105724 10 69105 69383 105725 10 70134 69738 105726 10 70024 70045 105727 10 69470 69220 105728 10 69990 70075 105729 10 70125 70279 105730 15 70044 69859 105731 10 69242 70225 105732 10 69208 69153 105733 10 70038 69329 105734 10 69540 69570 105735 10 69655 69197 105736 15 69866 69990 105737 10 69793 69129 105738 10 69697 69735 105739 15 69942 69397 105740 15 69934 69499 105741 15 69590 70336 105742 10 70044 69651 105743 15 69138 69892 105744 10 69173 69848 105745 15 70278 69843 105746 10 69727 69616 105747 70375 69667 70061 105748 10 70112 69616 105749 10 70037 69220 105750 70375 69435 69545 105751 10 69457 70343 105752 10 69116 70368 105753 10 69161 69529 105754 10 69977 69360 105755 15 69364 69581 105756 10 70157 69910 105757 10 69833 70246 105758 10 69534 69472 105759 10 69235 70350 105760 10 69734 69898 105761 10 70315 69383 105762 10 69532 70344 105763 10 69527 69854 105764 10 69608 70110 105765 10 69757 69250 105766 10 69326 69766 105767 15 69450 70243 105768 15 70300 69333 105769 15 69319 69650 105770 10 70107 69801 105771 10 69785 69299 105772 15 70322 69397 105773 15 69680 70115 105774 10 69686 69383 105775 15 69752 69536 105776 14 70209 69751 105777 10 69453 70169 105778 10 70062 69722 105779 10 69159 70319 105780 15 69612 69332 105781 10 69911 69213 105782 15 69727 69559 105783 10 70336 69623 105784 10 69753 69453 105785 15 70173 69332 105786 10 69225 70225 105787 10 69120 69914 105788 15 69112 69481 105789 10 69445 69454 105790 10 69680 69827 105791 10 69838 69567 105792 10 69828 69846 105793 15 69379 69867 105794 10 69882 69616 105795 70375 69831 69532 105796 10 69402 69250 105797 15 69168 70314 105798 10 70030 69129 105799 10 69773 70203 105800 10 69902 69714 105801 15 70286 70259 105802 10 69285 70171 105803 10 69437 69267 105804 10 69113 70068 105805 15 69841 69584 105806 10 69715 69812 105807 15 69472 69700 105808 10 69737 70225 105809 15 69172 69907 105810 15 69669 69504 105811 15 69206 69544 105812 10 70264 70079 105813 15 69141 69647 105814 15 69626 69633 105815 10 69602 70166 105816 10 69251 70171 105817 10 69302 70221 105818 10 69463 69720 105819 10 69343 69513 105820 10 70335 69397 105821 10 70188 69233 105822 10 70016 69375 105823 10 69218 70075 105824 15 70195 69227 105825 10 69992 69709 105826 15 69242 69545 105827 10 70270 69606 105828 10 69953 69383 105829 10 69589 70254 105830 15 69928 69105 105831 10 69971 69651 105832 15 69918 69306 105833 15 69122 69813 105834 15 70045 69319 105835 15 69739 69412 105836 10 69568 69651 105837 10 69621 69266 105838 10 69189 70350 105839 10 69917 69159 105840 15 69501 69105 105841 15 70307 69454 105842 10 70171 69564 105843 10 70144 69378 105844 15 69234 69308 105845 15 69424 69401 105846 10 69859 70116 105847 15 69838 70032 105848 10 69899 69529 105849 10 69798 69154 105850 15 69552 69843 105851 10 69719 70271 105852 10 70057 70003 105853 15 69401 69255 105854 10 69478 70075 105855 15 69352 69306 105856 10 70150 69842 105857 10 70178 70249 105858 10 70235 69733 105859 10 69783 69144 105860 10 69870 69129 105861 70375 69470 69495 105862 15 69490 69247 105863 10 69627 69559 105864 15 70225 70319 105865 10 69975 70154 105866 10 69777 69319 105867 10 69378 69624 105868 10 69336 69848 105869 15 69200 69946 105870 15 69757 69454 105871 15 69183 70173 105872 10 70269 70038 105873 10 69956 69514 105874 10 69678 69550 105875 10 69609 69378 105876 15 69390 70124 105877 15 70288 69602 105878 10 70366 69193 105879 10 69172 69282 105880 10 70104 69513 105881 15 69338 69686 105882 10 69263 69513 105883 15 69262 69312 105884 10 69146 70343 105885 15 69894 70241 105886 15 69778 69678 105887 15 70255 69339 105888 15 69900 69504 105889 15 69316 69917 105890 10 70250 69129 105891 10 69260 70277 105892 10 70061 69551 105893 10 69537 70052 105894 70375 69769 70274 105895 15 70223 70299 105896 15 70306 69686 105897 10 70357 70367 105898 10 69369 69569 105899 10 69179 69160 105900 15 70214 70075 105901 10 69386 69503 105902 10 69617 69369 105903 10 69701 69831 105904 15 70113 69229 105905 15 69634 69106 105906 10 69185 69250 105907 15 69203 69773 105908 10 69874 69495 105909 10 69284 70092 105910 10 70362 70334 105911 10 70170 69958 105912 10 69408 69108 105913 10 70248 69320 105914 15 69212 70324 105915 15 69952 69227 105916 10 69286 69501 105917 10 69918 69233 105918 10 69273 70126 105919 15 69495 69164 105920 10 69688 70300 105921 15 70325 69697 105922 10 69942 69513 105923 15 69731 70116 105924 15 69595 69479 105925 10 69614 70367 105926 10 69168 69343 105927 70375 70131 69988 105928 10 70341 70075 105929 70375 69161 69398 105930 15 69246 69411 105931 10 69255 70259 105932 15 70290 70173 105933 15 70035 70102 105934 70375 69501 70138 105935 70375 69414 70170 105936 15 70016 69650 105937 15 69549 70265 105938 10 69667 70343 105939 10 69376 70020 105940 10 69904 69524 105941 10 70370 70166 105942 10 69344 70319 105943 10 69319 69946 105944 15 70049 69730 105945 15 69607 69783 105946 15 70155 70368 105947 10 69658 69927 105948 15 69818 69442 105949 15 69488 70115 105950 10 69499 69616 105951 10 69703 70319 105952 10 69545 69670 105953 10 69611 69966 105954 10 70201 69651 105955 10 69605 69536 105956 15 69973 70249 105957 10 69687 69606 105958 15 70092 70230 105959 10 69274 69848 105960 10 69631 69651 105961 10 70097 70214 105962 70375 69191 70093 105963 10 69528 69316 105964 10 69552 69651 105965 70375 69846 70155 105966 10 69506 69653 105967 10 69642 69990 105968 10 70303 69543 105969 15 70038 69954 105970 15 69821 69536 105971 15 70180 69929 105972 14 70315 69105 105973 10 70257 69532 105974 10 70471 70473 105975 19 69582 70521 105976 10 70572 70448 105977 10 70469 70433 105978 10 70460 70399 105979 10 70563 70436 105980 10 70604 70401 105981 10 70590 70543 105982 10 70571 70401 105983 10 70426 70428 105984 10 70473 70390 105985 10 70540 70381 105986 10 70617 70477 105987 10 70428 70380 105988 10 70545 70428 105989 10 70602 70623 105990 10 70516 70469 105991 10 70594 70399 105992 10 70453 70657 105993 10 70450 70387 105994 10 70411 70423 105995 10 70554 70401 105996 19 69397 70521 105997 10 70638 70495 105998 10 70518 70399 105999 10 70569 70477 106000 10 70575 70513 106001 10 70566 70523 106002 10 70390 70423 106003 10 70447 70552 106004 10 70589 70399 106005 19 69843 70521 106006 10 70413 70496 106007 10 70470 70552 106008 10 70636 70635 106009 10 70621 70550 106010 10 70603 70566 106011 10 70477 70602 106012 10 70478 70566 106013 10 70648 70389 106014 19 70185 70599 106015 10 70605 70635 106016 10 70562 70442 106017 10 70444 70440 106018 19 69773 70521 106019 10 70434 70418 106020 10 70607 70387 106021 10 70530 70650 106022 10 70420 70650 106023 15 70640 70403 106024 19 69630 70599 106025 10 70489 70569 106026 10 70396 70544 106027 10 70525 70442 106028 19 69454 70521 106029 10 70627 70428 106030 10 70463 70428 106031 10 70547 70513 106032 10 70467 70496 106033 10 70552 70390 106034 15 70638 70640 106035 10 70609 70418 106036 10 70585 70399 106037 10 70527 70399 106038 10 70550 70433 106039 10 70417 70416 106040 10 70433 70440 106041 10 70475 70389 106042 10 70519 70416 106043 10 70454 70399 106044 10 70503 70416 106045 10 70432 70418 106046 10 70632 70428 106047 10 70639 70433 106048 10 70501 70485 106049 10 70414 70448 106050 10 70379 70436 106051 10 70561 70399 106052 10 70534 70405 106053 10 70409 70473 106054 19 69275 70599 106055 10 70384 70399 106056 10 70581 70513 106057 10 70481 70401 106058 10 70647 70416 106059 10 70465 70485 106060 10 70512 70428 106061 10 70641 70602 106062 10 70529 70401 106063 10 70416 70381 106064 10 70586 70526 106065 19 69609 70599 106066 10 70653 70485 106067 10 70376 70428 106068 10 70580 70416 106069 10 70419 70523 106070 10 70479 70523 106071 10 70388 70428 106072 10 70522 70401 106073 15 70502 70403 106074 10 70389 70409 106075 10 70570 70418 106076 19 69565 70599 106077 10 70497 70540 106078 10 70476 70440 106079 10 70495 70574 106080 10 70508 70513 106081 10 70657 70433 106082 10 70441 70423 106083 10 70556 70440 106084 10 70494 70428 106085 10 70401 70421 106086 10 70509 70428 106087 10 70595 70418 106088 19 69740 70599 106089 10 70455 70418 106090 10 70456 70428 106091 10 70606 70448 106092 10 70427 70513 106093 10 70405 70602 106094 10 70418 70441 106095 10 70613 70469 106096 10 70393 70401 106097 10 70451 70566 106098 10 70422 70428 106099 10 70446 70395 106100 10 70599 70423 106101 10 70618 70566 106102 10 70395 70405 106103 10 70643 70543 106104 10 70649 70477 106105 10 70520 70401 106106 10 70383 70641 106107 10 70482 70401 106108 19 69618 70599 106109 10 70549 70485 106110 10 70483 70496 106111 10 70536 70428 106112 10 70504 70428 106113 10 70480 70418 106114 10 70578 70639 106115 10 70424 70473 106116 10 70406 70639 106117 10 70429 70405 106118 10 70515 70641 106119 10 70380 70441 106120 10 70651 70395 106121 15 70411 70599 106122 10 70631 70657 106123 10 70408 70650 106124 10 70619 70635 106125 10 70542 70569 106126 10 70635 70380 106127 10 70560 70448 106128 10 70637 70469 106129 19 69891 70599 106130 10 70626 70399 106131 10 70535 70442 106132 10 70498 70552 106133 10 70630 70399 106134 10 70506 70418 106135 10 70574 70405 106136 10 70611 70389 106137 10 70485 70421 106138 10 70492 70552 106139 10 70499 70550 106140 10 70486 70389 106141 10 70553 70399 106142 10 70600 70436 106143 10 70399 70380 106144 10 70620 70448 106145 10 70402 70495 106146 10 70440 70602 106147 10 70435 70419 106148 10 70532 70543 106149 15 70442 70640 106150 10 70430 70423 106151 10 70487 70477 106152 10 70565 70566 106153 19 69673 70599 106154 10 70543 70381 106155 10 70546 70635 106156 10 70484 70381 106157 10 70538 70552 106158 10 70526 70433 106159 10 70521 70423 106160 10 70610 70440 106161 10 70588 70602 106162 10 70490 70550 106163 10 70644 70399 106164 10 70510 70428 106165 10 70386 70436 106166 10 70464 70399 106167 10 70452 70650 106168 10 70423 70623 106169 10 70513 70409 106170 10 70398 70399 106171 10 70576 70389 106172 10 70493 70584 106173 10 70397 70526 106174 10 70496 70405 106175 19 69510 70521 106176 10 70436 70390 106177 10 70583 70650 106178 10 70474 70401 106179 10 70514 70474 106180 10 70582 70473 106181 10 70587 70401 106182 10 70445 70550 106183 10 70544 70569 106184 10 70577 70428 106185 10 70654 70566 106186 10 70629 70485 106187 10 70391 70650 106188 10 70523 70550 106189 10 70392 70477 106190 10 70652 70428 106191 10 70377 70421 106192 10 70449 70428 106193 10 70646 70513 106194 10 70656 70473 106195 10 70614 70543 106196 10 70528 70399 106197 19 70073 70599 106198 10 70488 70485 106199 10 70415 70442 106200 19 70072 70521 106201 10 70650 70477 106202 10 70537 70399 106203 10 70457 70399 106204 10 70567 70418 106205 10 70412 70416 106206 10 70612 70381 106207 19 69764 70599 106208 10 70541 70399 106209 10 70421 70433 106210 10 70559 70485 106211 10 70381 70602 106212 10 70645 70401 106213 10 70437 70428 106214 10 70400 70485 106215 10 70403 70441 106216 10 70596 70395 106217 10 70655 70526 106218 10 70511 70566 106219 10 70584 70387 106220 10 70616 70650 106221 10 70466 70401 106222 19 69976 70599 106223 10 70593 70584 106224 10 70557 70423 106225 10 70448 70390 106226 10 70500 70650 106227 10 70431 70657 106228 10 70573 70495 106229 10 70378 70496 106230 10 70564 70399 106231 10 70443 70639 106232 10 70387 70433 106233 10 70608 70436 106234 10 70774 70735 106237 10 70673 70735 106240 10 70776 70760 106241 1 70668 70691 106261 10 70707 70777 106265 10 70735 70766 106270 10 70767 70756 106274 10 70762 70735 106285 10 70678 70760 106286 10 70729 70777 106288 10 70683 70760 106298 10 70671 70735 106311 10 70719 70716 106320 1 70668 70681 106327 10 70766 70716 106330 10 70756 70766 106335 10 70750 70760 106343 10 70777 70766 106346 10 70714 70738 106352 10 70708 70735 106356 10 70716 70760 106358 10 70738 70766 106359 10 70731 70738 106360 10 70720 70735 107918 14 75056 75029 107919 14 75255 75228 107920 10 76140 74895 107921 10 74417 76059 107922 10 75126 75519 107923 10 75396 74307 107924 10 75854 74792 107925 10 74816 74518 107926 15 74312 75249 107927 1 74872 75805 107928 14 76290 75228 107929 10 74322 74680 107930 10 75363 74323 107931 10 75829 74715 107932 10 75267 75846 107933 15 74309 74407 107934 10 75884 74967 107935 10 75427 76259 107936 10 75166 75756 107937 76367 76037 75352 107938 10 74587 74680 107939 10 75697 74870 107940 10 75505 75041 107941 15 75499 76111 107942 10 74935 75680 107943 10 74743 75394 107944 10 76246 74715 107945 10 75094 74684 107946 10 75313 75994 107947 10 75128 75650 107948 10 75155 75438 107949 14 76350 76047 107950 15 75777 76284 107951 15 75649 75507 107952 10 75541 75174 107953 10 76114 75723 107954 10 75978 75619 107955 10 75634 76315 107956 10 75852 75610 107957 10 74320 75619 107958 10 76115 74554 107959 10 75906 75064 107960 10 76230 76315 107961 10 76145 74764 107962 10 74650 74761 107963 10 75385 74577 107964 10 75125 75719 107965 10 76069 74507 107966 10 75013 74447 107967 10 75201 75196 107968 10 74779 76208 107969 10 75174 74849 107970 10 74512 75064 107971 10 74517 76178 107972 10 75153 75064 107973 10 75723 75304 107974 1 75506 76043 107975 10 75688 75633 107976 10 75052 74442 107977 14 76159 75228 107978 15 74436 74865 107979 10 75605 74915 107980 10 74374 75852 107981 10 75615 75064 107982 10 76176 74307 107983 10 76301 74704 107984 10 76265 74684 107985 10 75465 74377 107986 10 75111 75635 107987 10 75770 74397 107988 10 76017 75650 107989 10 74858 74385 107990 10 76131 75732 107991 15 75555 74424 107992 10 74564 74417 107993 10 74424 74727 107994 10 76132 74477 107995 10 74908 75497 107996 15 74793 74992 107997 10 76078 75425 107998 10 74862 74592 107999 10 76239 74895 108000 10 75794 74357 108001 10 74892 76104 108002 10 76262 75365 108003 10 74616 75365 108004 10 74767 74373 108005 10 75942 75102 108006 10 74398 74610 108007 10 74793 75727 108008 10 76010 75839 108009 10 75572 76305 108010 10 75994 76305 108011 10 74796 75680 108012 10 76340 76160 108013 10 75688 74568 108014 10 75516 76311 108015 10 74931 75425 108016 10 75622 75803 108017 10 74598 75251 108018 10 75119 75474 108019 10 74586 76005 108020 10 75203 76213 108021 10 75784 74681 108022 10 75080 74585 108023 10 74615 76018 108024 10 75184 76122 108025 10 75711 75662 108026 10 74639 75751 108027 10 75040 75712 108028 10 74791 75390 108029 10 75451 74558 108030 10 75792 75458 108031 10 76288 75052 108032 10 75923 76189 108033 10 76345 75962 108034 10 74617 75900 108035 10 75008 76236 108036 10 74452 74715 108037 10 75459 75680 108038 10 74429 74417 108039 10 75790 76268 108040 10 74961 75017 108041 10 76073 75833 108042 10 75038 74610 108043 10 75734 75352 108044 10 75746 75232 108045 15 75341 75599 108046 10 74457 74715 108047 14 75898 74442 108048 10 74841 75418 108049 10 75848 75732 108050 10 75289 75719 108051 10 75139 75239 108052 10 74344 74617 108053 10 74740 75982 108054 15 75070 75293 108055 15 75000 75438 108056 10 74966 74950 108057 10 75865 74947 108058 10 76082 74644 108059 10 75841 74359 108060 10 75017 76178 108061 10 75380 75586 108062 15 76266 75962 108063 1 74922 76061 108064 10 74477 76237 108065 10 75742 74960 108066 10 75817 76163 108067 10 75503 74719 108068 15 74468 75599 108069 10 75632 74887 108070 10 74704 75320 108071 15 74372 75507 108072 10 76193 75579 108073 10 75248 76149 108074 10 74688 75238 108075 10 75388 75965 108076 10 76089 75741 108077 10 76028 75852 108078 10 75357 75894 108079 10 75759 74357 108080 10 75377 75862 108081 15 75019 76091 108082 10 74581 74456 108083 10 75710 74895 108084 10 76090 74629 108085 10 75876 75018 108086 15 75161 76284 108087 10 75954 74912 108088 14 75615 75013 108089 10 74843 75208 108090 10 76130 76018 108091 10 75068 74498 108092 10 75171 74965 108093 10 76237 75595 108094 10 75509 75552 108095 10 75733 75046 108096 10 74449 75304 108097 10 75712 76261 108098 15 75324 75323 108099 10 75792 76366 108100 10 76244 74869 108101 15 76351 74719 108102 10 74602 75839 108103 14 76045 75228 108104 14 75153 75013 108105 10 75007 76305 108106 10 74678 75862 108107 10 75029 74447 108108 1 76055 75592 108109 10 76142 75037 108110 10 75534 76189 108111 14 74753 76047 108112 10 75058 74792 108113 10 76308 74715 108114 10 76361 74625 108115 10 76076 74558 108116 10 74998 75773 108117 10 76364 75445 108118 10 75557 75826 108119 10 75016 74680 108120 10 75277 75846 108121 10 75874 75610 108122 10 74960 76059 108123 10 75246 74811 108124 10 75540 75225 108125 10 75582 75123 108126 10 76178 75262 108127 10 75965 75390 108128 10 75449 75680 108129 76368 74832 74992 108130 10 74978 75979 108131 10 75259 74684 108132 10 75698 74644 108133 10 74944 74491 108134 10 74328 74658 108135 10 75086 74343 108136 10 75979 76366 108137 10 75797 74629 108138 10 76321 75580 108139 10 74608 75201 108140 10 75676 74658 108141 10 74341 75304 108142 10 76128 74895 108143 10 75788 74357 108144 10 75004 74994 108145 10 75294 75773 108146 10 75795 75674 108147 10 75687 74802 108148 10 75664 74605 108149 10 76065 75394 108150 10 74371 75281 108151 10 75598 75650 108152 15 75834 74896 108153 10 75108 76268 108154 10 74727 75650 108155 10 75607 76014 108156 15 74769 75840 108157 10 74927 76189 108158 10 74352 75677 108159 10 75036 75320 108160 10 75082 74513 108161 10 74949 74577 108162 10 74835 75379 108163 10 75545 74397 108164 10 75727 75151 108165 10 74609 76163 108166 10 75389 76268 108167 10 74882 75166 108168 10 75807 74793 108169 10 74937 74660 108170 10 75552 75352 108171 10 76360 75650 108172 10 74463 74357 108173 10 76162 76233 108174 10 74733 76173 108175 10 75831 74592 108176 10 74404 74541 108177 10 75502 76271 108178 10 75346 74364 108179 10 74683 75979 108180 10 75352 75650 108181 10 75475 75732 108182 10 75194 74307 108183 1 75747 76289 108184 76369 76147 75962 108185 10 75612 76266 108186 10 75706 74441 108187 10 75487 74912 108188 10 76020 74307 108189 10 75964 75102 108190 10 76108 75712 108191 10 75485 74740 108192 10 74723 75320 108193 1 74569 75818 108194 10 74762 75490 108195 10 75147 74765 108196 10 74620 74407 108197 10 75397 75379 108198 10 76224 74967 108199 14 75255 75013 108200 10 75878 75919 108201 10 74521 76351 108202 10 74878 74504 108203 10 74761 74919 108204 10 74525 75868 108205 10 76170 74868 108206 10 75186 76149 108207 10 74399 75674 108208 1 76080 76264 108209 27 75716 74992 108210 10 74612 74650 108211 10 76025 76352 108212 10 74810 74974 108213 10 74804 76351 108214 10 75250 75141 108215 15 74948 75774 108216 10 76021 75803 108217 10 74402 76366 108218 14 75193 75029 108219 10 76261 74605 108220 15 75285 75924 108221 10 75760 74937 108222 10 74712 75151 108223 10 76256 75736 108224 10 76013 75650 108225 10 75932 75244 108226 1 74540 74782 108227 10 76303 75474 108228 10 76332 75852 108229 10 75644 75237 108230 10 74311 75979 108231 10 75578 75719 108232 10 76268 75610 108233 10 74478 75046 108234 10 75948 75850 108235 10 74757 74357 108236 10 74877 75979 108237 10 75543 74852 108238 14 74445 75013 108239 14 75268 75013 108240 10 74472 74541 108241 10 74857 76105 108242 10 75476 75469 108243 10 75420 75018 108244 14 75153 75228 108245 10 75517 74693 108246 10 75828 75141 108247 10 74630 76208 108248 10 74451 74558 108249 10 75908 74727 108250 10 75536 74553 108251 10 74788 75216 108252 10 75739 74658 108253 10 74597 75037 108254 10 75204 74792 108255 10 74318 74585 108256 10 74496 74522 108257 10 74476 75982 108258 10 74758 75201 108259 10 75127 75746 108260 10 74536 74739 108261 10 75563 75694 108262 10 74495 75900 108263 10 75929 75732 108264 10 75741 75226 108265 10 75169 75352 108266 10 74610 76043 108267 76370 74440 75352 108268 10 74487 74323 108269 10 74389 75756 108270 10 74974 75633 108271 15 75789 75955 108272 10 74642 74715 108273 10 74448 75932 108274 15 74759 74378 108275 10 74654 75141 108276 10 75447 76189 108277 10 75518 76133 108278 14 74846 75228 108279 10 74729 76005 108280 10 76276 75595 108281 10 75719 76268 108282 10 75653 76118 108283 10 76314 76268 108284 10 76183 76233 108285 10 76175 75101 108286 10 74364 74491 108287 10 75638 74323 108288 10 74390 75650 108289 10 76110 74993 108290 10 75230 76124 108291 10 76003 75166 108292 10 76008 75963 108293 10 74872 74558 108294 10 75228 74447 108295 10 75999 74715 108296 10 75663 74407 108297 10 75512 74744 108298 10 74354 75490 108299 10 76196 76178 108300 10 74802 76256 108301 10 74825 76189 108302 10 76215 75131 108303 10 75866 74591 108304 10 74319 74793 108305 10 74750 74894 108306 14 75420 74559 108307 10 75847 74619 108308 10 74321 75425 108309 10 74557 74698 108310 10 74989 75249 108311 10 75718 75365 108312 10 74910 74744 108313 10 75276 76349 108314 10 75895 76352 108315 10 75083 76267 108316 10 76150 74357 108317 10 74426 75786 108318 10 74566 75349 108319 10 75537 74760 108320 10 75079 75022 108321 10 76192 76315 108322 10 75425 75519 108323 10 75953 74698 108324 14 75488 74375 108325 10 76160 75932 108326 10 75034 76189 108327 10 75287 75596 108328 10 76174 74561 108329 10 76044 74681 108330 10 74396 75448 108331 10 76273 75425 108332 10 76133 74407 108333 10 76066 75314 108334 10 75060 74666 108335 10 74637 74561 108336 10 75796 74744 108337 10 74414 75251 108338 15 74972 74719 108339 10 75305 75680 108340 10 74337 75636 108341 10 75241 74711 108342 10 75969 74480 108343 10 76046 75098 108344 14 76290 74375 108345 10 75089 75579 108346 14 75876 75013 108347 10 76281 75795 108348 10 75369 75647 108349 15 76301 75507 108350 10 76048 75022 108351 10 76282 74476 108352 15 75831 75675 108353 14 75846 75882 108354 10 75532 75786 108355 10 75860 76305 108356 10 76152 75141 108357 10 74655 74684 108358 10 76149 75650 108359 10 74918 75023 108360 10 75519 76014 108361 10 75522 76031 108362 10 74747 75059 108363 10 74869 76352 108364 1 76209 74714 108365 10 74939 76349 108366 10 75216 74915 108367 10 74376 76043 108368 10 74942 75787 108369 10 74551 75098 108370 10 74621 74667 108371 14 75079 75587 108372 10 75834 75727 108373 15 75900 75226 108374 10 75520 76352 108375 10 75757 74357 108376 10 76106 75586 108377 10 76111 76366 108378 10 75704 74417 108379 14 75112 74375 108380 15 75102 74975 108381 10 75201 75365 108382 15 74529 75955 108383 10 74455 75962 108384 10 74447 75390 108385 10 74349 76345 108386 14 74717 74375 108387 10 75661 76215 108388 10 75703 74518 108389 10 74844 75141 108390 10 75124 74473 108391 10 74865 74974 108392 10 75755 74681 108393 10 74728 74495 108394 10 74751 75209 108395 10 74464 74357 108396 10 75768 76358 108397 10 75379 75598 108398 10 74702 75889 108399 10 75318 75850 108400 10 74493 76181 108401 10 74777 75822 108402 10 74644 75971 108403 10 75639 75721 108404 10 75095 74670 108405 10 74945 74405 108406 10 75614 74558 108407 10 74481 75746 108408 10 74572 74570 108409 10 74528 75979 108410 10 76269 74587 108411 10 74971 74322 108412 10 74571 76320 108413 14 75420 75228 108414 10 75581 76202 108415 10 75482 74441 108416 10 75280 75636 108417 10 75511 76259 108418 10 75411 75226 108419 10 74308 75023 108420 10 74920 74715 108421 10 75331 74704 108422 15 76005 74659 108423 15 76060 74378 108424 10 74665 74636 108425 14 76198 75029 108426 10 75730 74711 108427 1 76326 75739 108428 10 75890 74577 108429 15 75058 75293 108430 10 75651 76091 108431 15 75796 74524 108432 10 74833 75301 108433 10 75112 75018 108434 14 75597 75228 108435 10 75243 74357 108436 10 76136 76010 108437 1 75921 75226 108438 14 74832 74712 108439 10 76236 75650 108440 10 75306 74740 108441 10 75113 75846 108442 10 75715 74802 108443 10 75988 75732 108444 10 75257 74739 108445 10 75952 75868 108446 14 75488 75029 108447 14 75093 75029 108448 76369 74743 74570 108449 15 75333 74458 108450 10 75951 76153 108451 14 75420 75013 108452 10 74313 76358 108453 10 76225 75017 108454 10 74697 75150 108455 10 74775 74868 108456 10 75943 75732 108457 10 75671 74385 108458 10 75077 76227 108459 10 74439 74550 108460 10 76049 75877 108461 10 76093 74698 108462 10 75839 74869 108463 10 76102 75862 108464 14 76159 75013 108465 10 74680 75472 108466 10 74565 74476 108467 10 74832 74570 108468 10 75571 74405 108469 10 74698 74659 108470 10 74947 75598 108471 10 74979 74711 108472 10 75182 75320 108473 10 76304 75458 108474 10 75382 74680 108475 14 75268 75228 108476 10 74864 74915 108477 10 74340 75472 108478 10 75025 74497 108479 10 74956 74857 108480 15 75069 75840 108481 10 74428 75804 108482 10 74485 76000 108483 10 74798 75732 108484 10 76037 75650 108485 10 74522 74994 108486 1 75205 75561 108487 10 75879 74887 108488 10 75452 75979 108489 10 75766 76268 108490 10 76245 76185 108491 14 75112 75027 108492 10 76311 75843 108493 10 74359 75650 108494 10 76269 75174 108495 10 76119 74357 108496 10 75349 76231 108497 10 75960 74845 108498 10 75319 74570 108499 10 74659 75650 108500 15 74457 74817 108501 10 74383 76207 108502 14 76045 74375 108503 10 75373 75672 108504 1 74875 74928 108505 10 75053 75596 108506 15 75603 75840 108507 10 75610 75107 108508 10 76177 74619 108509 10 75486 75176 108510 10 75358 75141 108511 1 75439 75134 108512 10 74764 74491 108513 14 74512 75027 108514 10 74632 74400 108515 10 75333 75598 108516 10 75312 75226 108517 10 76341 74579 108518 14 75705 76047 108519 10 75293 75379 108520 10 75310 76268 108521 10 74559 75965 108522 1 75968 74635 108523 10 75924 74917 108524 10 74542 75408 108525 10 76189 74699 108526 10 76315 75746 108527 10 76218 75166 108528 10 75684 75239 108529 14 75615 75027 108530 10 74866 75850 108531 10 75035 74900 108532 10 75414 74578 108533 10 75211 74482 108534 10 74406 75446 108535 10 76228 74792 108536 10 75549 75892 108537 10 74900 75208 108538 15 74564 75765 108539 14 75927 74375 108540 10 76344 75446 108541 10 75575 74610 108542 14 74445 74375 108543 10 75404 74498 108544 10 75695 75862 108545 10 75975 75320 108546 10 76356 76189 108547 10 75679 74660 108548 15 74669 76197 108549 10 74759 75868 108550 10 76352 75151 108551 10 76083 74915 108552 10 75973 75822 108553 10 74471 75320 108554 10 74434 75225 108555 10 74369 76262 108556 10 75861 74735 108557 10 75664 76227 108558 10 75946 74357 108559 10 74475 74839 108560 10 76039 74680 108561 10 75481 75105 108562 10 76212 75387 108563 10 75591 76189 108564 10 75933 75900 108565 10 75181 74357 108566 10 74596 76268 108567 10 74627 75386 108568 10 75863 74629 108569 10 74868 75110 108570 10 74577 75352 108571 10 76045 75018 108572 10 76285 75791 108573 10 75345 76066 108574 10 75621 74989 108575 10 75716 75650 108576 10 75207 75017 108577 14 75093 75027 108578 10 75325 75650 108579 10 76302 75018 108580 10 74897 75176 108581 10 75877 74667 108582 10 74551 76046 108583 10 74823 74800 108584 10 75986 75850 108585 14 75927 75029 108586 10 75646 75178 108587 10 74623 74715 108588 10 75224 76148 108589 10 76163 75639 108590 10 74732 75166 108591 10 75426 75803 108592 10 74764 75226 108593 10 74395 75352 108594 10 75085 75425 108595 10 75814 76181 108596 10 74771 75386 108597 15 76315 74397 108598 14 74778 75228 108599 10 75461 75846 108600 10 75323 75900 108601 10 74753 75018 108602 10 75090 74585 108603 10 74486 76025 108604 10 75628 74658 108605 10 75091 75786 108606 10 74948 75895 108607 10 75410 74960 108608 10 76220 75653 108609 10 76217 74323 108610 10 74884 74832 108611 10 76018 74919 108612 10 75059 76267 108613 10 74663 75932 108614 10 75626 75047 108615 10 74860 75732 108616 15 75415 75840 108617 10 75109 75694 108618 15 74910 75815 108619 10 75416 75783 108620 10 74695 74660 108621 10 74912 75304 108622 10 76027 74867 108623 27 75325 75226 108624 10 75400 75425 108625 10 75533 74307 108626 10 74822 74373 108627 10 74651 74307 108628 10 74731 75041 108629 10 74544 75018 108630 10 76011 75756 108631 10 74715 75650 108632 10 75233 74756 108633 10 75728 74504 108634 10 75939 76185 108635 10 75812 75837 108636 10 75110 75472 108637 10 76036 75352 108638 10 76053 74767 108639 10 75937 74552 108640 10 74397 75846 108641 10 74847 74715 108642 10 74628 74307 108643 10 76144 76017 108644 76370 74750 75582 108645 10 75088 74357 108646 1 75888 74658 108647 10 74863 75352 108648 10 75780 74715 108649 1 74307 75126 108650 10 74933 74895 108651 10 74667 75650 108652 10 75736 76231 108653 10 74982 75017 108654 10 76259 75208 108655 10 74780 75850 108656 10 76254 74660 108657 10 75911 75940 108658 10 75196 74659 108659 10 74619 75386 108660 10 75143 75846 108661 10 74801 74791 108662 10 76157 75686 108663 10 75208 74373 108664 10 76000 75937 108665 14 76048 75616 108666 10 75840 75251 108667 10 76040 75047 108668 10 76153 74400 108669 10 75717 75242 108670 10 74508 74845 108671 10 75685 75596 108672 10 75842 74336 108673 10 75873 74740 108674 10 74549 75866 108675 10 75836 74473 108676 10 74831 75311 108677 10 74676 75611 108678 10 75223 74680 108679 10 74985 75413 108680 15 75696 75637 108681 10 74936 75852 108682 10 75281 74313 108683 10 75019 76352 108684 10 75597 75018 108685 10 75101 75251 108686 10 74850 75650 108687 15 75474 75732 108688 10 76139 74517 108689 10 74926 76285 108690 10 75656 74558 108691 10 74315 74895 108692 10 74380 74558 108693 15 74481 74852 108694 14 74724 76047 108695 10 75221 75795 108696 10 75018 75390 108697 10 74432 75176 108698 10 76164 75320 108699 15 76352 76014 108700 10 75886 76059 108701 10 75934 75043 108702 10 75619 74456 108703 1 74558 75425 108704 10 74730 74744 108705 10 75065 75719 108706 10 75968 74558 108707 10 75531 74617 108708 10 74770 75933 108709 10 76122 75352 108710 15 75761 75410 108711 10 74465 75018 108712 1 74453 75676 108713 10 74442 75141 108714 10 75003 75783 108715 10 74600 74895 108716 10 75718 74972 108717 10 75611 74554 108718 15 75036 75840 108719 10 75000 74377 108720 10 75037 76122 108721 10 74384 74791 108722 15 75512 76008 108723 10 75073 74895 108724 10 75774 75231 108725 10 74831 75098 108726 10 74422 76268 108727 15 74885 76162 108728 10 76295 75846 108729 10 75302 76178 108730 10 75580 75921 108731 10 75098 75382 108732 10 74423 75900 108733 15 75376 75226 108734 10 75330 74883 108735 10 75673 74407 108736 10 75316 75803 108737 10 75253 75732 108738 10 74952 75933 108739 10 75409 75595 108740 10 75864 76178 108741 10 75077 74605 108742 10 74339 75379 108743 10 75249 76178 108744 10 75845 76093 108745 10 75066 74323 108746 10 76227 75413 108747 10 74469 76305 108748 10 75850 75675 108749 10 74314 75016 108750 10 75326 75446 108751 10 75735 74357 108752 14 74544 74559 108753 10 76051 74735 108754 10 75130 74405 108755 15 76304 74492 108756 10 76338 74826 108757 10 75623 74577 108758 10 76001 75166 108759 15 76278 76175 108760 15 75279 75917 108761 10 76261 74994 108762 10 74819 74502 108763 10 75375 74895 108764 10 74828 74715 108765 10 75960 74352 108766 10 75963 75679 108767 10 75648 75196 108768 15 74478 75592 108769 14 76084 74559 108770 10 76137 76043 108771 10 76180 74357 108772 10 75995 76287 108773 10 75846 75650 108774 10 74768 75933 108775 1 74363 75067 108776 10 76346 76169 108777 10 75116 74629 108778 15 75733 74478 108779 10 75740 76127 108780 10 76186 75850 108781 10 76055 74915 108782 10 76146 75432 108783 10 76258 74659 108784 10 74889 74636 108785 10 75763 75803 108786 10 75538 75225 108787 15 76267 75732 108788 10 75292 76233 108789 10 75888 75850 108790 10 75469 75352 108791 10 74513 76166 108792 10 75051 75672 108793 10 75024 75647 108794 14 76274 75013 108795 10 74307 75850 108796 10 74901 76263 108797 10 75544 75352 108798 15 74334 75815 108799 14 74547 75013 108800 10 74580 75719 108801 10 74364 76014 108802 10 75702 75349 108803 10 74505 75978 108804 10 75498 74518 108805 10 74378 75855 108806 10 75776 74843 108807 10 76068 76039 108808 14 75689 75191 108809 10 75769 74744 108810 10 76112 74869 108811 14 75268 76047 108812 10 75163 76358 108813 14 74465 75228 108814 10 75549 75786 108815 10 75399 74947 108816 10 75670 76231 108817 10 75032 75352 108818 10 75202 74721 108819 14 74445 75027 108820 10 75862 75982 108821 10 75808 74555 108822 10 74679 74400 108823 10 74849 74680 108824 10 75900 75727 108825 10 74681 75613 108826 10 76181 74587 108827 10 74964 75145 108828 10 75054 75320 108829 10 75909 75425 108830 10 75590 75540 108831 10 75674 75183 108832 10 76229 74553 108833 15 75290 75599 108834 10 75295 75694 108835 10 74914 75323 108836 10 74924 74331 108837 10 74965 75141 108838 10 75645 74715 108839 10 74531 74377 108840 10 75584 75242 108841 10 75680 74761 108842 14 75056 75228 108843 10 75001 76236 108844 10 74585 76305 108845 10 74375 75965 108846 10 74611 75681 108847 14 74465 74375 108848 10 74894 75633 108849 10 74458 75598 108850 10 76234 76112 108851 10 76198 75018 108852 10 75043 74619 108853 10 75376 75224 108854 10 75328 75352 108855 10 75800 75141 108856 10 75566 76005 108857 10 74871 74480 108858 10 75321 75592 108859 10 74510 74577 108860 10 75637 76351 108861 10 74875 74558 108862 10 75367 75098 108863 10 75288 75017 108864 76369 74359 75352 108865 10 74626 74895 108866 10 75473 76283 108867 10 74915 75850 108868 15 74862 75675 108869 10 75989 74323 108870 10 74574 76018 108871 10 74601 75208 108872 10 76349 76186 108873 10 74821 75650 108874 10 75393 75064 108875 10 75883 74854 108876 10 75665 75834 108877 10 76207 75650 108878 10 75392 76351 108879 10 74616 74822 108880 10 75652 74357 108881 10 76280 74882 108882 10 75046 76352 108883 10 75901 74607 108884 15 74475 74441 108885 10 75009 76317 108886 10 76295 75837 108887 10 75308 75105 108888 10 75940 76163 108889 10 74588 75529 108890 10 75495 74995 108891 15 74743 74359 108892 10 74711 74601 108893 10 75573 74414 108894 10 75606 74739 108895 10 74693 74377 108896 10 74479 75052 108897 10 74434 75804 108898 15 75520 76133 108899 10 75510 74323 108900 15 74618 75886 108901 10 75262 75613 108902 10 74896 74915 108903 10 76105 75866 108904 10 74453 75205 108905 10 74323 75352 108906 10 76355 75978 108907 10 76327 75425 108908 10 74545 75237 108909 10 76058 74666 108910 14 75488 75013 108911 10 76348 74442 108912 10 74763 76281 108913 10 74456 75352 108914 10 74503 74735 108915 10 75087 75379 108916 10 75121 74357 108917 10 74769 74744 108918 15 74981 74804 108919 10 74480 75773 108920 10 75971 75141 108921 14 76294 75013 108922 10 75490 74617 108923 10 76016 74680 108924 10 76184 76256 108925 10 75851 74792 108926 10 75819 74629 108927 14 74717 75013 108928 10 76251 76305 108929 10 75471 76305 108930 10 75210 75352 108931 10 75255 75018 108932 10 75812 76283 108933 10 74824 76236 108934 10 75301 76233 108935 10 75913 75176 108936 10 75093 75018 108937 15 75452 74532 108938 10 76271 75236 108939 10 75569 75022 108940 10 75345 76043 108941 10 76035 74715 108942 10 75551 76031 108943 10 75324 74423 108944 15 75879 75765 108945 10 75134 75425 108946 10 74540 75850 108947 10 75898 74578 108948 10 75827 75281 108949 15 75288 74378 108950 10 75344 76073 108951 10 75990 74768 108952 10 75284 76352 108953 10 75947 75064 108954 10 74360 75852 108955 15 75564 76008 108956 10 74967 75773 108957 10 74928 75425 108958 10 75131 75732 108959 15 75187 76175 108960 10 76173 76118 108961 1 74911 74437 108962 10 75236 75610 108963 10 75630 75586 108964 10 75666 75215 108965 10 75748 75595 108966 10 75115 76017 108967 14 74778 74559 108968 10 76195 74667 108969 10 75245 75209 108970 10 74874 76161 108971 10 75372 74583 108972 10 74951 76305 108973 10 74785 75894 108974 10 74509 74629 108975 10 74736 75102 108976 10 76210 75438 108977 10 75686 75674 108978 10 75625 75196 108979 10 74994 76286 108980 10 76117 76164 108981 10 76201 74373 108982 10 75304 75721 108983 10 75805 75425 108984 10 74652 75432 108985 10 74582 75850 108986 10 75912 75408 108987 10 75803 75610 108988 10 75737 76320 108989 15 75895 74407 108990 10 75869 74341 108991 10 75401 76305 108992 10 75154 74826 108993 10 74635 75425 108994 10 76022 75098 108995 10 75782 76208 108996 10 74722 75531 108997 10 76317 76122 108998 14 75898 75971 108999 10 75047 74470 109000 10 75102 76315 109001 15 75207 76223 109002 10 74419 74870 109003 14 75569 75616 109004 10 75329 74555 109005 10 76099 74340 109006 15 75127 74376 109007 10 75212 75856 109008 10 74645 76231 109009 10 75530 76259 109010 10 75012 75889 109011 10 74556 76051 109012 10 75955 75963 109013 10 75617 74852 109014 10 75832 75580 109015 10 75875 75570 109016 10 76145 74944 109017 10 74789 74760 109018 10 75891 74357 109019 10 75880 75806 109020 10 74959 74895 109021 10 75444 74791 109022 10 74662 75806 109023 10 75448 74313 109024 10 75056 75018 109025 10 74454 75386 109026 10 74929 74592 109027 10 75996 76185 109028 10 74817 74400 109029 14 75093 74375 109030 10 76098 76010 109031 15 74429 75410 109032 10 75942 75634 109033 1 75492 76078 109034 10 75662 75833 109035 10 75896 76148 109036 10 75370 76014 109037 10 76100 74619 109038 10 75568 74772 109039 10 74643 74558 109040 10 74345 74629 109041 10 75150 75386 109042 10 74551 75541 109043 15 74715 75820 109044 10 75751 74681 109045 10 74958 75633 109046 10 74902 75596 109047 10 76129 75234 109048 10 74347 74889 109049 10 75191 75352 109050 10 74839 75846 109051 10 74543 75541 109052 10 76168 76352 109053 15 75143 76223 109054 10 75180 75282 109055 10 75810 75174 109056 10 74867 74849 109057 10 75353 75674 109058 10 75500 76106 109059 10 74492 75458 109060 10 75480 74407 109061 10 75021 76115 109062 10 76320 76259 109063 10 74386 75352 109064 10 75457 75889 109065 10 75279 76366 109066 10 75455 75394 109067 10 74436 74659 109068 14 76257 75027 109069 10 74761 76153 109070 10 74500 74715 109071 10 75726 74849 109072 15 75235 74579 109073 10 75493 76073 109074 10 75178 74693 109075 15 76049 74617 109076 10 76329 76181 109077 10 75749 76237 109078 10 76056 75519 109079 10 74950 74645 109080 10 75473 76307 109081 10 74327 76267 109082 14 74778 75027 109083 10 75887 75176 109084 10 74980 76305 109085 10 75022 75576 109086 10 74591 76231 109087 10 74519 76014 109088 10 75198 75061 109089 10 76238 76051 109090 10 74946 75596 109091 10 75175 74323 109092 10 75640 75937 109093 10 74552 76178 109094 10 74752 75663 109095 10 74888 75105 109096 1 74708 74535 109097 10 74368 74524 109098 10 75161 74423 109099 10 75775 74389 109100 10 75586 74719 109101 10 75381 75046 109102 14 76159 75027 109103 10 75434 75352 109104 10 76031 76305 109105 10 74656 74670 109106 10 74808 75174 109107 10 74800 74667 109108 15 74637 75101 109109 15 75227 75815 109110 10 75234 75208 109111 10 76328 74377 109112 10 75548 75032 109113 10 74583 74845 109114 15 75347 74365 109115 10 74957 74735 109116 10 75489 74395 109117 10 75270 74711 109118 10 75928 75458 109119 14 76350 75027 109120 10 75802 75760 109121 10 74394 75800 109122 15 74801 75742 109123 10 75816 75826 109124 10 75454 76110 109125 10 75927 75018 109126 10 74508 75952 109127 10 75962 75151 109128 10 75564 74744 109129 10 76096 74570 109130 10 76292 75852 109131 10 74917 75962 109132 10 75231 74407 109133 10 75368 75719 109134 10 74358 74811 109135 14 74846 74559 109136 10 76033 74456 109137 10 75235 75662 109138 10 76296 74480 109139 10 75192 75800 109140 10 76216 76005 109141 10 75689 76149 109142 10 76165 74357 109143 10 75664 75428 109144 14 74934 74559 109145 15 75472 75081 109146 10 75403 74577 109147 10 75720 75176 109148 14 76198 74375 109149 10 76290 75018 109150 10 75340 74715 109151 10 74799 74502 109152 10 76071 74558 109153 10 76284 75323 109154 10 74482 76305 109155 10 74460 76279 109156 10 74603 74357 109157 10 76041 74420 109158 14 74547 75228 109159 15 75151 74570 109160 10 74579 75833 109161 10 75826 75833 109162 10 74379 74592 109163 14 75255 75029 109164 1 75451 75400 109165 10 74963 74590 109166 10 75371 75425 109167 10 74923 76106 109168 10 75524 74670 109169 15 74576 74614 109170 10 74370 74475 109171 10 76067 75141 109172 10 74522 74625 109173 10 75453 74549 109174 10 75229 75889 109175 15 74730 74524 109176 10 74334 74744 109177 10 75857 76366 109178 10 74718 74592 109179 10 75791 74607 109180 10 76043 76233 109181 10 74955 74499 109182 10 75472 74894 109183 10 76190 74501 109184 10 74515 75382 109185 10 74444 76189 109186 10 74694 74592 109187 10 74834 74357 109188 14 75597 74375 109189 10 76191 75474 109190 14 75705 75027 109191 10 76052 74704 109192 10 75247 74768 109193 10 76141 75969 109194 15 75885 75764 109195 10 74529 74744 109196 10 74691 74585 109197 10 74506 75379 109198 10 75145 74554 109199 10 74805 76268 109200 10 75041 74667 109201 10 76148 76037 109202 10 76252 75570 109203 10 75821 75540 109204 1 76071 74931 109205 10 76326 75205 109206 10 74781 75944 109207 10 75069 74744 109208 10 74520 75852 109209 10 75609 75176 109210 15 75148 75840 109211 10 76171 76189 109212 10 75026 75680 109213 10 75061 75620 109214 10 76307 75352 109215 10 74350 76349 109216 10 75777 74423 109217 10 75442 75783 109218 15 75857 74421 109219 10 75853 75226 109220 10 75546 75098 109221 10 75997 74569 109222 10 74409 75826 109223 10 76358 74998 109224 10 76233 75314 109225 10 76018 75352 109226 10 74443 74619 109227 14 74465 75027 109228 10 74668 74480 109229 15 76065 74743 109230 10 74518 74470 109231 10 75987 74361 109232 15 76213 76043 109233 10 75585 74719 109234 10 74797 76351 109235 10 75738 74558 109236 10 74855 75803 109237 10 74365 74610 109238 10 74795 75311 109239 10 75011 76043 109240 15 75984 75764 109241 10 74755 76149 109242 10 74852 75855 109243 10 75678 74982 109244 10 75919 76236 109245 10 75583 75598 109246 14 74465 75029 109247 10 74450 76208 109248 15 74384 75765 109249 10 75721 75244 109250 10 74625 76286 109251 10 76305 74993 109252 10 74412 75612 109253 10 75338 74357 109254 10 74846 75018 109255 10 75327 75919 109256 10 74879 75201 109257 15 75815 75507 109258 15 75444 75410 109259 76371 75320 74531 109260 10 74899 75048 109261 15 75584 75908 109262 10 75966 76268 109263 10 75806 74857 109264 10 76166 75052 109265 10 76267 75650 109266 10 74558 75850 109267 10 75625 76066 109268 10 76334 75850 109269 76369 76065 75962 109270 1 75675 76014 109271 1 75656 76306 109272 10 74550 76139 109273 10 75092 74704 109274 10 75237 75982 109275 10 75781 74476 109276 10 75756 74993 109277 10 74568 74811 109278 14 75112 75013 109279 10 74569 76186 109280 1 76186 76091 109281 14 75542 75027 109282 10 75595 75900 109283 10 74336 74972 109284 10 75765 76059 109285 10 76005 75650 109286 10 74744 75183 109287 14 75906 75013 109288 10 75925 75889 109289 15 75792 76304 109290 10 74484 74915 109291 10 74666 74504 109292 10 75641 75458 109293 10 75894 74882 109294 10 75415 74744 109295 10 76204 75792 109296 10 74599 75921 109297 10 75160 75607 109298 10 74713 76268 109299 10 74988 74802 109300 15 74555 75545 109301 15 75598 75820 109302 14 75705 75013 109303 10 75833 74666 109304 10 75830 74476 109305 10 75479 75323 109306 10 75767 75786 109307 10 75173 74680 109308 10 75616 75234 109309 10 75463 75141 109310 10 75822 74442 109311 10 75596 74359 109312 10 75405 75677 109313 10 75413 74625 109314 10 74850 74681 109315 15 75711 74579 109316 10 74836 75047 109317 10 74532 76351 109318 10 75629 75052 109319 10 75499 75979 109320 10 75474 74592 109321 10 75418 76017 109322 10 75506 74497 109323 15 75714 75840 109324 10 74562 75448 109325 10 75682 74322 109326 10 74309 74660 109327 10 75285 75286 109328 10 75407 75446 109329 10 76235 74957 109330 10 74561 74704 109331 10 74671 75101 109332 10 75158 74476 109333 10 75251 74524 109334 10 75936 75852 109335 10 75383 75041 109336 10 75395 75047 109337 10 74820 75314 109338 10 75984 75286 109339 10 74361 76305 109340 10 75364 75176 109341 10 75801 74307 109342 10 76004 74715 109343 10 75239 76125 109344 10 74634 76178 109345 15 75967 75293 109346 10 75812 75328 109347 10 75743 75156 109348 10 74607 75919 109349 10 75976 76163 109350 10 75624 74570 109351 10 74393 74772 109352 10 75432 75019 109353 10 75271 75803 109354 10 74938 74617 109355 10 75137 76018 109356 10 76109 75046 109357 10 75144 74504 109358 10 75203 75812 109359 10 74541 75131 109360 10 75855 76043 109361 15 74718 74972 109362 10 74724 75018 109363 10 74355 76169 109364 10 75594 74318 109365 15 76258 74865 109366 10 74533 74591 109367 10 75063 75892 109368 10 75423 74894 109369 10 74595 74837 109370 10 75959 76125 109371 10 75232 75262 109372 10 75378 74482 109373 10 74814 75650 109374 10 74795 76156 109375 10 76143 74857 109376 10 75904 74704 109377 10 74543 75892 109378 15 76154 75742 109379 10 75334 75520 109380 1 74451 76273 109381 10 74466 75862 109382 10 75981 74715 109383 10 75561 74658 109384 10 74873 75541 109385 10 75140 75001 109386 10 75570 74554 109387 10 74885 75826 109388 10 75649 74704 109389 10 75188 75852 109390 10 75450 75741 109391 10 75122 74854 109392 10 74539 76173 109393 10 74870 74680 109394 10 76278 75048 109395 10 75297 74711 109396 10 75963 75251 109397 10 75031 74323 109398 10 74649 75365 109399 10 76353 75680 109400 10 74363 74558 109401 10 75508 74357 109402 10 76264 75519 109403 10 76159 75018 109404 10 75402 75017 109405 10 76120 76268 109406 10 75167 76149 109407 10 74578 75225 109408 10 75176 75049 109409 10 75446 76233 109410 10 74913 76305 109411 10 76009 75226 109412 10 76050 74430 109413 10 75779 74832 109414 10 74677 76268 109415 10 76333 74811 109416 10 75439 74558 109417 10 75675 74570 109418 10 74433 75201 109419 10 75513 76143 109420 10 74410 75352 109421 10 75787 74957 109422 10 76351 74659 109423 10 75577 75374 109424 10 74467 76031 109425 10 74563 75352 109426 10 76015 75572 109427 10 75553 76267 109428 10 75785 75826 109429 10 75820 75650 109430 10 75659 75425 109431 10 75042 76271 109432 10 75406 74357 109433 10 74502 75900 109434 10 75168 74740 109435 10 74657 75474 109436 10 74382 75850 109437 10 75811 74915 109438 10 74748 75244 109439 10 74774 76263 109440 15 74814 75908 109441 10 75935 74792 109442 10 75105 76261 109443 10 75983 76348 109444 10 75681 75249 109445 10 75428 76286 109446 10 74489 74894 109447 10 74459 75866 109448 14 76084 75027 109449 15 74397 74378 109450 10 75064 75390 109451 10 74826 75166 109452 10 76121 74407 109453 10 74369 76137 109454 10 75103 74340 109455 10 74553 75723 109456 10 74501 75110 109457 10 75970 75823 109458 10 74714 75425 109459 10 76260 74495 109460 10 76123 75226 109461 10 74531 74660 109462 14 74485 75921 109463 1 76349 75651 109464 10 75722 74767 109465 10 75492 74558 109466 10 75120 74995 109467 10 74351 75650 109468 10 74746 75743 109469 23 75440 74754 109470 10 74783 75141 109471 10 75107 75650 109472 10 76024 75846 109473 10 75104 75751 109474 15 74332 76024 109475 10 74997 74414 109476 14 76084 75013 109477 10 75219 75850 109478 15 74723 75840 109479 10 75835 76196 109480 10 74332 75746 109481 10 75949 75320 109482 10 76266 75151 109483 10 75709 74318 109484 14 76339 74375 109485 10 74734 75520 109486 10 74310 75971 109487 15 74310 76270 109488 10 74470 75919 109489 15 75092 75507 109490 10 75148 75320 109491 10 74331 74570 109492 10 74388 75803 109493 10 74547 75018 109494 10 76357 75646 109495 10 74808 75892 109496 10 75470 74558 109497 10 74555 76315 109498 10 74996 74591 109499 10 74968 74517 109500 10 74995 75247 109501 10 74366 74533 109502 10 76187 74592 109503 10 76084 75018 109504 14 74547 75027 109505 10 76342 75531 109506 10 75242 76187 109507 10 75049 75677 109508 15 75461 76223 109509 10 74756 74591 109510 10 75567 76164 109511 10 75574 76358 109512 10 76077 76345 109513 10 76156 74849 109514 10 74335 75267 109515 10 76113 75205 109516 10 75462 76161 109517 10 74813 74357 109518 10 75238 74480 109519 10 75278 76207 109520 10 76125 74761 109521 15 75831 76284 109522 10 75440 75864 109523 10 75731 76259 109524 10 74970 74792 109525 10 74983 76287 109526 10 75672 74871 109527 10 74921 75490 109528 10 74689 75850 109529 10 75078 76202 109530 10 75460 74357 109531 10 76151 74590 109532 10 75419 75758 109533 10 76283 75352 109534 10 75307 75519 109535 10 74548 74715 109536 10 75579 74660 109537 10 76310 75041 109538 10 75100 74357 109539 10 76185 75226 109540 14 76196 74373 109541 10 75907 74459 109542 10 74669 75017 109543 10 74809 75541 109544 10 75535 74343 109545 10 74736 76192 109546 15 75402 76197 109547 10 74342 74476 109548 10 76101 74570 109549 10 75773 75932 109550 10 76240 74570 109551 10 75438 76169 109552 10 75907 74549 109553 10 75789 74744 109554 10 76219 76025 109555 15 76052 75507 109556 10 75387 74681 109557 10 75762 75446 109558 10 75309 75900 109559 10 75982 74993 109560 10 74922 74558 109561 10 75483 75598 109562 1 75614 75085 109563 10 75926 76337 109564 10 75589 76268 109565 10 74416 75387 109566 10 75892 75382 109567 10 74646 74480 109568 14 76274 74375 109569 14 74753 75013 109570 10 74749 75869 109571 15 75769 75840 109572 10 74827 75231 109573 10 74614 75323 109574 15 74675 74719 109575 10 75809 75293 109576 10 75072 74823 109577 10 74524 75579 109578 10 74803 74617 109579 10 76339 75018 109580 10 76092 74660 109581 10 76127 76125 109582 10 74837 75225 109583 10 76343 75783 109584 10 76362 76005 109585 10 74445 75018 109586 14 75876 74559 109587 10 74686 75679 109588 15 76174 75507 109589 10 76366 76178 109590 10 74773 75352 109591 10 75258 75379 109592 10 75588 75683 109593 10 75690 74554 109594 10 76289 75425 109595 10 76079 74895 109596 15 75844 75259 109597 10 75991 74555 109598 10 74703 74947 109599 10 75977 75531 109600 10 74782 75519 109601 15 75499 75792 109602 10 75701 75732 109603 10 74765 75888 109604 10 74592 75613 109605 10 74499 75921 109606 1 75470 75659 109607 10 74317 75531 109608 10 74760 75232 109609 10 75254 74518 109610 10 76293 74357 109611 10 75039 76148 109612 10 74324 75921 109613 10 74494 74357 109614 10 74640 76296 109615 10 76014 74570 109616 10 74312 76178 109617 10 76126 74965 109618 10 74840 74361 109619 10 74924 76014 109620 10 74462 74340 109621 10 74708 74558 109622 10 75599 75588 109623 10 75647 75639 109624 10 74859 76268 109625 10 75149 74357 109626 10 76188 76305 109627 10 75193 75064 109628 10 74701 74323 109629 10 74706 75803 109630 15 75975 75840 109631 10 75177 75784 109632 10 74575 74698 109633 10 75930 74318 109634 14 75906 75029 109635 10 76064 74972 109636 10 75067 75425 109637 10 74684 75727 109638 10 75170 76051 109639 15 74412 75924 109640 10 75343 75971 109641 1 74582 75307 109642 10 74631 74768 109643 10 76091 75519 109644 10 75314 75650 109645 10 75541 76016 109646 10 75044 76366 109647 15 75785 76162 109648 10 76261 74625 109649 10 75602 74699 109650 15 74899 74671 109651 10 74986 75852 109652 10 76202 74629 109653 10 75361 74513 109654 10 75893 74693 109655 10 75961 75520 109656 10 75311 75382 109657 10 76203 75979 109658 14 76302 76047 109659 10 75683 76267 109660 10 75692 74357 109661 10 76134 76093 109662 10 74377 74754 109663 10 75023 76125 109664 10 75298 74475 109665 10 74848 74395 109666 10 74660 76148 109667 10 76095 74323 109668 10 76088 75529 109669 10 76208 74552 109670 10 74716 75672 109671 10 75002 75408 109672 15 74876 74972 109673 15 75979 75792 109674 1 75820 75595 109675 10 75818 76091 109676 10 74567 75889 109677 10 75941 74449 109678 10 74357 75610 109679 10 76182 74569 109680 14 75056 74375 109681 10 76063 75653 109682 15 75717 75908 109683 10 75133 74502 109684 10 75215 75208 109685 10 75097 75522 109686 10 76360 74681 109687 14 74724 75228 109688 10 75057 75852 109689 15 75851 75935 109690 10 76069 75200 109691 10 74734 74430 109692 10 74792 75598 109693 14 75193 75013 109694 10 75693 74357 109695 10 76123 74331 109696 10 76241 75932 109697 10 75899 76281 109698 10 74772 75151 109699 10 75921 75234 109700 10 75226 75675 109701 76367 75352 76149 109702 10 74474 75969 109703 15 75381 74478 109704 10 75099 75852 109705 10 75998 76166 109706 10 74975 74397 109707 10 74737 76358 109708 10 76294 75064 109709 10 75696 75979 109710 15 75044 75458 109711 10 74413 75834 109712 10 76194 75719 109713 10 75871 76005 109714 10 75761 74887 109715 10 75732 74659 109716 10 75458 75576 109717 10 76086 75394 109718 10 74698 76066 109719 15 74961 76197 109720 10 76300 74480 109721 10 75004 74605 109722 10 74498 74522 109723 10 75916 74357 109724 10 76232 75379 109725 10 75252 75610 109726 10 74909 74340 109727 10 74699 76112 109728 10 75747 74558 109729 10 75793 74950 109730 10 76272 74950 109731 14 76274 75029 109732 10 74530 74357 109733 10 75856 74681 109734 10 74992 75850 109735 10 75882 75650 109736 10 74633 75098 109737 10 74405 74989 109738 10 75837 75365 109739 10 74488 75650 109740 10 74981 75979 109741 15 74471 75840 109742 10 75263 75178 109743 10 76075 75445 109744 14 75947 75228 109745 10 76324 74476 109746 10 76287 74999 109747 10 74916 75234 109748 10 75179 75262 109749 10 75504 75663 109750 10 75993 75850 109751 10 75918 74982 109752 10 74437 75425 109753 10 75347 75826 109754 1 74866 74328 109755 10 74820 74407 109756 10 75206 76215 109757 10 75213 74756 109758 10 74739 74442 109759 10 75411 76101 109760 10 74403 74998 109761 10 74333 76106 109762 10 76297 75856 109763 14 76198 75228 109764 10 74886 75650 109765 10 75261 75611 109766 10 75218 75017 109767 10 75165 74585 109768 10 75050 75425 109769 10 76029 76268 109770 10 75515 74895 109771 10 74692 75101 109772 10 74430 76092 109773 10 74554 76305 109774 10 75881 74772 109775 10 74560 75379 109776 10 75527 76031 109777 10 74883 74448 109778 10 74473 74967 109779 10 74624 74895 109780 10 75905 74414 109781 14 76274 75027 109782 10 76223 75683 109783 10 74490 74854 109784 10 76209 74558 109785 1 75738 76327 109786 10 76087 75282 109787 10 74735 76031 109788 10 76313 75226 109789 10 74641 75446 109790 10 74776 76181 109791 10 74391 76133 109792 10 75555 76187 109793 10 75542 75064 109794 10 74648 75174 109795 10 74794 75225 109796 10 75635 75694 109797 10 74570 76037 109798 10 76286 76296 109799 10 74673 74629 109800 10 75694 76231 109801 10 75804 75598 109802 10 75362 74895 109803 14 76302 75027 109804 10 76330 74739 109805 10 76277 74570 109806 10 75758 74950 109807 10 74865 75633 109808 10 75958 75846 109809 10 75870 76351 109810 10 75075 76349 109811 10 75081 75443 109812 10 75667 74744 109813 10 75585 75279 109814 10 74930 76299 109815 10 74381 75572 109816 10 75220 74636 109817 10 75015 74668 109818 1 74380 75050 109819 10 75655 75852 109820 10 74754 75677 109821 10 75374 76305 109822 10 75332 75803 109823 15 75667 75840 109824 10 75903 74895 109825 10 75964 76230 109826 10 76197 75588 109827 10 74812 75239 109828 14 76159 74375 109829 10 74710 75333 109830 10 75190 76268 109831 10 74658 75519 109832 10 75390 75060 109833 10 76072 74357 109834 10 76255 74715 109835 10 76231 76305 109836 10 74507 75743 109837 10 74742 75895 109838 10 75299 74895 109839 10 76124 76231 109840 10 75677 75650 109841 10 74675 75979 109842 10 74392 76178 109843 10 76206 75932 109844 10 75264 75208 109845 10 74400 74999 109846 10 75366 74863 109847 10 75431 75877 109848 10 76019 74760 109849 10 75669 75852 109850 10 76104 76358 109851 10 76070 75023 109852 10 74629 76231 109853 10 75587 76366 109854 10 75560 74357 109855 15 75277 76223 109856 10 74593 74357 109857 10 76169 75579 109858 10 74898 74570 109859 10 74811 74552 109860 10 76046 75786 109861 10 76337 75940 109862 10 75200 75352 109863 10 74573 76305 109864 10 74325 76305 109865 10 75135 74715 109866 10 75507 75840 109867 10 74618 74791 109868 10 76054 76271 109869 10 76299 74592 109870 10 75412 74533 109871 10 75286 76266 109872 10 75422 75962 109873 10 76283 75365 109874 10 75604 75783 109875 10 74589 75052 109876 10 74976 74735 109877 76370 75423 74974 109878 10 75922 74989 109879 10 75889 74585 109880 10 74741 75680 109881 10 76363 75712 109882 10 75195 75869 109883 10 74876 74592 109884 10 74738 76014 109885 10 75668 76279 109886 10 74636 74585 109887 10 74481 75846 109888 10 75974 74325 109889 10 75772 76349 109890 10 76222 76178 109891 10 74441 74610 109892 10 74353 74895 109893 10 75136 74449 109894 10 75592 75519 109895 1 74890 75909 109896 10 75660 76024 109897 10 75341 75958 109898 10 74919 75650 109899 10 75225 75598 109900 10 76325 74323 109901 10 75159 76017 109902 10 76242 75052 109903 10 75408 76125 109904 10 76060 75017 109905 10 74916 75365 109906 14 76350 75013 109907 10 75391 75176 109908 10 76354 74423 109909 10 76023 75850 109910 10 75398 76271 109911 10 74845 74400 109912 10 74719 74373 109913 10 76213 75352 109914 15 75540 74794 109915 10 76030 74895 109916 10 74884 75226 109917 10 75365 75179 109918 15 76017 75352 109919 10 74504 75123 109920 10 76322 74335 109921 10 75077 74994 109922 10 74576 75900 109923 10 75096 76031 109924 10 75268 75018 109925 15 74837 74794 109926 10 76319 76155 109927 10 75291 76311 109928 10 75920 74870 109929 10 75367 75892 109930 10 75394 75650 109931 10 75445 74325 109932 10 75282 74407 109933 10 74999 75804 109934 10 75106 74950 109935 10 75627 74917 109936 10 75356 75758 109937 10 75429 76127 109938 10 74991 74477 109939 10 75227 74744 109940 10 74326 75822 109941 10 75189 74440 109942 10 75494 76104 109943 14 76144 76025 109944 10 74372 74704 109945 10 75435 75852 109946 10 76291 74889 109947 10 74856 74867 109948 10 75283 75176 109949 10 74649 76351 109950 15 75704 75742 109951 14 76159 75029 109952 15 76354 75323 109953 10 76275 75123 109954 10 75713 74357 109955 10 74407 76352 109956 15 75331 76175 109957 10 76118 75732 109958 10 74756 75349 109959 10 74511 74843 109960 10 74778 75018 109961 10 76042 75145 109962 10 74385 75839 109963 14 75542 75013 109964 10 75453 76105 109965 10 75336 76125 109966 14 76257 75228 109967 10 75114 74499 109968 10 75985 74915 109969 10 74584 76031 109970 10 75967 74792 109971 10 75436 74629 109972 10 74420 76206 109973 10 75152 75826 109974 10 74427 74867 109975 10 74861 75866 109976 10 76306 75425 109977 15 74830 75886 109978 10 74535 75425 109979 10 74977 74323 109980 10 75484 75787 109981 10 75164 76268 109982 10 74806 75061 109983 10 75657 74900 109984 10 75917 75458 109985 10 75070 74792 109986 1 74721 74738 109987 10 75600 76149 109988 10 74491 74570 109989 10 75885 75612 109990 10 75931 75803 109991 10 74670 76125 109992 10 74972 74373 109993 10 75315 74389 109994 10 76257 75018 109995 1 76076 75371 109996 10 75714 74744 109997 10 74854 74335 109998 10 75523 75852 109999 10 75478 74441 110000 10 75650 75262 110001 10 76199 75822 110002 10 75786 74587 110003 10 74717 75018 110004 14 74934 75027 110005 10 74316 75932 110006 10 74613 76093 110007 10 74829 74323 110008 10 75123 75650 110009 10 76359 76127 110010 10 75360 76096 110011 10 76059 75390 110012 10 74987 76352 110013 10 76350 75018 110014 10 75603 75320 110015 14 75542 75228 110016 10 74622 75850 110017 10 75528 75803 110018 10 74369 75837 110019 10 75636 74631 110020 10 75355 75994 110021 10 74605 76286 110022 10 75387 75650 110023 10 75417 75123 110024 15 74792 74458 110025 10 74421 75458 110026 10 75214 74715 110027 10 76181 76016 110028 10 75559 75017 110029 10 76161 74998 110030 10 75705 75018 110031 10 76038 76349 110032 10 75897 75650 110033 15 75293 75935 110034 10 74790 75852 110035 10 74373 75179 110036 10 74516 75901 110037 15 75465 75501 110038 10 74483 75736 110039 15 75309 75226 110040 14 74544 75013 110041 10 75174 75382 110042 15 75949 75840 110043 10 75209 74937 110044 15 75904 74671 110045 10 74895 74715 110046 10 74590 76352 110047 10 74408 76268 110048 14 75112 75228 110049 10 75868 75677 110050 14 75876 75027 110051 10 76061 75425 110052 1 74643 74321 110053 10 75076 74895 110054 10 76331 74957 110055 10 75956 75619 110056 10 74709 76051 110057 15 74684 74558 110058 10 75957 75690 110059 10 75867 75901 110060 14 74547 75029 110061 14 75597 75027 110062 10 75030 75803 110063 10 74943 76267 110064 10 75209 75679 110065 10 75783 76286 110066 10 75151 75650 110067 14 76045 75013 110068 10 74438 74323 110069 10 75643 74501 110070 10 74425 74950 110071 10 76205 74318 110072 10 74583 74754 110073 14 75193 75027 110074 10 75266 75379 110075 10 76032 75587 110076 10 75576 76178 110077 15 76201 74972 110078 10 75183 74488 110079 10 76158 76305 110080 10 75337 75944 110081 10 74721 75850 110082 10 76012 75166 110083 15 75557 75953 110084 10 75187 74704 110085 14 76339 75027 110086 10 75752 76348 110087 10 75844 74684 110088 10 75620 75352 110089 10 75055 74357 110090 10 76313 74634 110091 10 74962 74307 110092 14 76198 75013 110093 10 74880 74456 110094 10 74766 76106 110095 10 76262 76043 110096 10 74523 76351 110097 10 75708 75852 110098 10 74830 74417 110099 10 75320 74744 110100 10 75386 76110 110101 14 76084 75228 110102 10 76279 75141 110103 10 75815 74704 110104 10 74526 75892 110105 10 75354 74989 110106 10 75631 75852 110107 10 75290 75958 110108 10 75205 75888 110109 10 76274 75018 110110 10 74891 76185 110111 10 76047 75965 110112 15 74987 74519 110113 10 75275 74373 110114 10 76147 75394 110115 10 75764 74917 110116 10 74853 75041 110117 76367 75679 76149 110118 10 75729 74357 110119 15 75933 75595 110120 15 75182 75840 110121 10 75351 75007 110122 10 74887 76059 110123 10 76263 74416 110124 10 75565 75979 110125 10 74890 74558 110126 10 76172 74621 110127 10 74604 74715 110128 10 75488 75018 110129 10 75443 74974 110130 10 74608 75648 110131 10 75027 74447 110132 10 75010 75007 110133 15 74937 74570 110134 10 75843 74919 110135 10 76365 75852 110136 10 74415 74967 110137 10 75501 75579 110138 10 75529 75231 110139 10 75156 75352 110140 10 76270 74837 110141 10 75547 76268 110142 10 74344 74799 110143 10 75346 74944 110144 10 76318 74644 110145 10 75456 74583 110146 10 74815 75386 110147 10 74973 76305 110148 10 74534 74405 110149 10 75199 74772 110150 10 75141 75225 110151 10 75197 75141 110152 10 76155 76110 110153 10 74638 75803 110154 15 75632 75886 110155 10 75359 74740 110156 10 75240 75611 110157 10 75497 74585 110158 10 76002 74357 110159 14 75393 75029 110160 10 74468 75017 110161 10 76107 75850 110162 10 75004 74522 110163 10 75048 74704 110164 10 74934 75018 110165 10 75433 75852 110166 10 76211 76115 110167 1 74765 75628 110168 10 75950 74619 110169 10 75176 74845 110170 10 74343 75756 110171 10 75944 75141 110172 10 74514 74895 110173 10 75601 76178 110174 10 75823 74761 110175 10 76080 75850 110176 10 75441 75791 110177 10 74497 75846 110178 10 74911 74558 110179 10 74440 74894 110180 10 76236 74681 110181 10 76154 74887 110182 14 76257 76047 110183 14 75705 75228 110184 76849 76827 76681 110185 10 76818 70678 110186 76849 76841 70671 110187 10 76845 70678 110188 76849 70717 76713 110189 76849 76739 76741 110190 76849 76785 70707 110191 10 76695 70776 110192 76849 76636 76609 110193 10 76627 70683 110194 76849 76667 70774 110195 76849 70746 76797 110196 76849 70682 76543 110197 10 76700 70776 110198 76849 76600 76764 110199 76849 76615 76640 110200 76849 70747 76631 110201 76849 76642 76554 110202 76849 70709 76833 110203 76849 70677 76588 110204 10 76583 70776 110205 76849 70779 76703 110206 10 76569 70750 110207 76849 76779 76806 110208 76849 76664 76557 110209 76849 76714 76628 110210 10 76791 70756 110211 10 76730 70678 110212 76849 70718 76603 110213 76849 76670 76845 110214 10 76703 70756 110215 10 76784 70678 110216 76849 70698 76807 110217 10 76765 70750 110218 76849 70670 76608 110219 76849 70700 76593 110220 76849 70710 76768 110221 76849 76621 76556 110222 10 76807 70776 110223 10 76597 70776 110224 10 76781 70750 110225 76849 76570 76805 110226 10 76554 70776 110227 76849 76538 76836 110228 76849 70693 76616 110229 10 76684 70776 110230 76849 70752 76561 110231 10 76651 70776 110232 76849 76738 76650 110233 76849 76673 76784 110234 76849 70764 76562 110235 76849 70660 76778 110236 10 76727 70776 110237 10 76540 70776 110238 76849 70768 76566 110239 10 76543 70750 110240 76849 70684 76836 110241 76849 70676 76672 110242 10 76584 70776 110243 10 76691 70776 110244 76849 76578 70714 110245 76849 76536 76832 110246 76849 76760 76801 110247 10 76734 70750 110248 76849 76622 76736 110249 76849 70662 76663 110250 76849 70688 76577 110251 76849 76780 76818 110252 10 76690 70750 110253 76849 70712 76686 110254 10 76751 70750 110255 76849 76748 70708 110256 76849 76745 76651 110257 76849 76847 70767 110258 76849 70742 76581 110259 76849 70736 76629 110260 10 76759 70750 110261 10 76823 70776 110262 76849 76808 76840 110263 76849 76555 76721 110264 10 76581 70776 110265 76849 76755 76644 110266 76849 70680 76571 110267 76849 76816 76809 110268 10 76601 70750 110269 76849 70667 76709 110270 76849 70748 76758 110271 10 76794 70750 110272 10 76631 70776 110273 10 76711 70776 110274 76849 76559 70673 110275 10 76833 70750 110276 10 76632 70776 110277 76849 70739 76769 110278 76849 76826 76552 110279 76849 76646 76770 110280 10 76539 70750 110281 10 76726 70750 110282 76849 70679 76837 110283 76849 76697 76793 110284 76849 76558 76712 110285 10 76672 70750 110286 10 76586 70678 110287 10 76572 70678 110288 76849 76792 76824 110289 76849 76662 70673 110290 10 76801 70678 110291 76849 76620 76696 110292 76849 76783 76727 110293 10 76795 70776 110294 76849 76796 76591 110295 76849 70765 76626 110296 10 76722 70756 110297 76849 70751 76727 110298 76849 70705 76627 110299 10 76681 70678 110300 10 76607 70776 110301 76849 76542 76801 110302 76849 76810 70774 110303 76849 76687 76763 110304 10 76729 70678 110305 76849 76753 76655 110306 76849 70692 76766 110307 76849 70722 76540 110308 10 76839 70756 110309 76849 76648 76707 110310 76849 70721 76742 110311 76849 76702 76613 110312 10 76769 70750 110313 76849 70754 76751 110314 10 76689 70678 110315 76849 76838 70714 110316 76849 70669 76582 110317 10 76787 70776 110318 76849 76614 76627 110319 76849 76638 76774 110320 76849 76775 76550 110321 76849 76573 70729 110322 10 76803 70750 110323 76849 76587 76640 110324 10 76606 70678 110325 10 76666 70776 110326 76849 76842 76822 110327 76849 70668 76653 110328 10 76629 70750 110329 10 76840 70750 110330 76849 76544 76719 110331 10 76698 70776 110332 10 76712 70756 110333 76849 76599 70729 110334 76849 76732 70762 110335 76849 70757 76625 110336 76849 70664 76733 110337 10 76674 70678 110338 76849 70672 76767 110339 10 76793 70776 110340 76849 76844 70731 110341 76849 70694 76657 110342 76849 76537 76765 110343 10 76713 70776 110344 76849 70732 76601 110345 76849 70691 76640 110346 10 76741 70750 110347 76849 70706 76606 110348 10 76707 70678 110349 10 76552 70776 110350 76849 76743 70731 110351 76849 76604 76639 110352 10 76824 70678 110353 76849 70775 76811 110354 10 76774 70776 110355 76849 76594 76729 110356 76849 76819 76627 110357 76849 76611 70729 110358 10 76657 70750 110359 76849 76669 76846 110360 76849 70749 76790 110361 76849 76804 70762 110362 76849 76705 70707 110363 76849 70727 76640 110364 76849 70780 76839 110365 76849 70745 76607 110366 76849 70769 76800 110367 10 76616 70776 110368 10 76708 70776 110369 76849 76567 76545 110370 10 76608 70776 110371 10 76721 70678 110372 76849 70690 76789 110373 10 76566 70756 110374 76849 76645 76553 110375 76849 76688 76781 110376 76849 76548 76627 110377 10 76736 70678 110378 76849 70715 76695 110379 76849 76665 70673 110380 10 76800 70776 110381 10 76719 70776 110382 10 76591 70678 110383 76849 76624 76710 110384 10 76699 70756 110385 10 76628 70776 110386 76849 70725 76813 110387 10 76637 70776 110388 10 76798 70776 110389 10 76709 70776 110390 10 76641 70776 110391 10 76811 70678 110392 10 76749 70750 110393 10 76589 70678 110394 76849 70733 76700 110395 10 76788 70756 110396 76849 70772 76823 110397 76849 76659 76832 110398 76849 76740 70762 110399 10 76836 70776 110400 76849 76598 76627 110401 76849 76678 76762 110402 76849 76725 76801 110403 76849 70665 76623 110404 76849 76576 70767 110405 76849 76834 76674 110406 76849 76633 76762 110407 10 76762 70750 110408 76849 76685 76655 110409 10 76602 70678 110410 10 76612 70678 110411 10 76680 70678 110412 10 76805 70776 110413 10 76571 70776 110414 10 76593 70678 110415 10 76733 70756 110416 10 76772 70750 110417 10 76814 70776 110418 76849 70737 76795 110419 76849 76658 70731 110420 76849 70704 76596 110421 10 76757 70776 110422 76849 70781 76585 110423 10 76545 70678 110424 76849 70666 76681 110425 76849 76675 76626 110426 76849 76815 76627 110427 10 76556 70776 110428 76849 76731 70762 110429 76849 76761 76681 110430 10 76644 70678 110431 76849 70695 76690 110432 10 76610 70678 110433 10 76568 70750 110434 10 76640 70678 110435 76849 76728 76584 110436 76849 70697 76720 110437 76849 76590 76579 110438 76849 70770 76583 110439 10 76625 70776 110440 76849 70759 76704 110441 76849 70744 76734 110442 76849 70699 76550 110443 76849 76835 76597 110444 76849 76595 76627 110445 10 76655 70678 110446 10 76585 70678 110447 76849 76635 70729 110448 76849 70743 76710 110449 10 76649 70776 110450 10 76677 70683 110451 76849 76634 70762 110452 76849 76718 76803 110453 10 76553 70776 110454 10 76770 70776 110455 76849 76679 76711 110456 76849 76652 76676 110457 76849 70723 76541 110458 76849 76660 70720 110459 76849 76592 76840 110460 76849 76812 70673 110461 10 76696 70678 110462 10 76790 70678 110463 76849 70696 76791 110464 76849 70753 76666 110465 76849 76560 76736 110466 10 76768 70776 110467 10 76704 70776 110468 76849 76825 76736 110469 76849 76744 76722 110470 10 76822 70776 110471 10 76813 70678 110472 10 76639 70776 110473 10 76653 70678 110474 10 76829 70678 110475 10 76577 70750 110476 10 76541 70756 110477 76849 70687 76757 110478 10 76763 70776 110479 10 76754 70776 110480 10 76832 70756 110481 10 76609 70776 110482 76849 76746 76637 110483 10 76563 70750 110484 76849 76777 76821 110485 76849 70763 76795 110486 10 76546 70678 110487 10 76550 70776 110488 10 76843 70750 110489 76849 70711 76772 110490 76849 70663 76539 110491 76849 76716 76768 110492 10 76623 70776 110493 10 76613 70776 110494 76849 76737 76736 110495 76849 70778 76706 110496 10 76650 70678 110497 10 76758 70750 110498 76849 76723 76572 110499 76849 70713 76770 110500 76849 76619 70707 110501 76849 76799 76726 110502 10 76742 70776 110503 76849 76547 76681 110504 10 76710 70776 110505 76849 76750 76798 110506 10 76766 70683 110507 76849 70724 76641 110508 10 76663 70776 110509 76849 76574 70671 110510 76849 76605 70673 110511 76849 76828 76568 110512 76849 76786 76589 110513 76849 70703 76787 110514 10 76789 70756 110515 76849 76682 76661 110516 10 76579 70756 110517 76849 76692 76736 110518 76849 76693 76724 110519 76849 76752 76759 110520 76849 76654 76730 110521 76849 76549 76736 110522 10 76846 70678 110523 76849 76647 76546 110524 10 76596 70776 110525 76849 70773 76586 110526 10 76683 70776 110527 76849 70661 76691 110528 76849 76848 76569 110529 76849 70758 76699 110530 76849 70771 76840 110531 10 76724 70776 110532 10 76806 70678 110533 10 76668 70750 110534 76849 70686 76668 110535 76849 76802 70731 110536 76849 70741 76762 110537 10 76767 70678 110538 76849 76715 70671 110539 10 76557 70756 110540 76849 76820 76771 110541 10 76656 70735 110542 76849 76630 70774 110543 76849 76735 76822 110544 76849 70726 76649 110545 76849 70689 76814 110546 10 76588 70750 110547 76849 76747 70714 110548 76849 70675 76829 110549 76849 76618 70671 110550 10 76562 70776 110551 76849 76830 76788 110552 10 76676 70750 110553 10 76817 70678 110554 76849 76773 70714 110555 76849 70740 76602 110556 76849 76580 76546 110557 76849 76756 76794 110558 76849 76701 70707 110559 10 76797 70750 110560 76849 76831 76610 110561 10 76706 70776 110562 76849 70728 76563 110563 10 76626 70678 110564 76849 70755 76657 110565 76849 70685 76683 110566 10 76561 70750 110567 76849 76535 76546 110568 76849 70681 76640 110569 10 76686 70678 110570 76849 76717 76603 110571 10 76720 70750 110572 76849 76776 76632 110573 10 76778 70750 110574 10 76582 70750 110575 76849 70701 76656 110576 76849 76671 76681 110577 10 76661 70776 110578 76849 76575 76612 110579 76849 76551 76749 110580 10 76771 70678 110581 10 76837 70776 110582 76849 70674 76680 110583 10 76821 70750 110584 10 76764 70776 110585 76849 70761 76843 110586 76849 70659 76677 110587 10 76603 70776 110588 76849 70702 76754 110589 10 76809 70678 110590 76849 76782 76708 110591 76849 76565 76689 110592 76849 70730 76817 110593 76849 76643 76627 110594 76849 70734 76684 110595 76849 76694 70774 110596 10 77176 77177 110597 10 77175 77169 110598 10 77170 77177 110599 10 77171 77173 110600 10 77177 77169 110601 10 77181 77179 110602 10 77178 77179 110603 10 77179 77169 110604 10 77173 77175 110605 10 77180 77177 110606 10 77168 77179 110607 10 77174 77173 110608 10 77172 77175 110609 10 77287 77214 110610 10 77204 77214 110611 10 77216 77214 110612 10 77279 77214 110613 10 77197 77214 110614 10 77269 77243 110615 10 77301 77214 110616 10 77267 77214 110617 10 77313 77214 110618 10 77215 77214 110619 10 77309 77317 110620 10 77277 77214 110621 10 77258 77214 110622 10 77317 77250 110623 10 77240 77214 110624 10 77255 77214 110625 10 77304 77214 110626 10 77284 77214 110627 10 77264 77214 110628 77324 77226 77260 110629 10 77203 77214 110630 10 77276 77214 110631 10 77239 77214 110632 10 77280 77214 110633 10 77317 77214 110634 10 77254 77214 110635 10 77206 77214 110636 10 77275 77214 110637 10 77194 77214 110638 10 77301 77318 110639 10 77271 77214 110640 10 77243 77214 110641 10 77282 77214 110642 77324 77314 77234 110643 10 77290 77214 110644 10 77268 77214 110645 10 77322 77214 110646 10 77201 77214 110647 10 77191 77214 110648 10 77210 77214 110649 10 77312 77214 110650 10 77223 77214 110651 10 77247 77214 110652 10 77306 77214 110653 10 77300 77214 110654 10 77231 77214 110655 10 77321 77214 110656 10 77292 77214 110657 77324 77216 77218 110658 10 77302 77214 110659 10 77222 77251 110660 10 77199 77214 110661 10 77250 77291 110662 77324 77248 77322 110663 10 77245 77214 110664 10 77226 77214 110665 10 77228 77214 110666 10 77257 77214 110667 10 77318 77309 110668 10 77288 77214 110669 10 77315 77214 110670 10 77234 77214 110671 10 77235 77214 110672 10 77230 77214 110673 10 77293 77214 110674 10 77305 77214 110675 10 77205 77214 110676 10 77314 77214 110677 10 77285 77214 110678 10 77242 77214 110679 10 77229 77214 110680 10 77289 77214 110681 10 77236 77214 110682 10 77272 77214 110683 10 77299 77214 110684 77325 77230 77303 110685 10 77319 77214 110686 10 77295 77214 110687 10 77260 77214 110688 10 77303 77214 110689 77324 77273 77304 110690 10 77193 77214 110691 10 77313 77318 110692 10 77252 77214 110693 77325 77254 77201 110694 10 77253 77214 110695 10 77196 77214 110696 10 77200 77214 110697 77326 77202 77323 110698 10 77263 77214 110699 10 77320 77214 110700 10 77238 77214 110701 77325 77323 77202 110702 10 77265 77214 110703 10 77217 77214 110704 77326 77303 77230 110705 10 77294 77214 110706 10 77203 77243 110707 10 77249 77214 110708 10 77307 77214 110709 10 77246 77214 110710 10 77291 77214 110711 10 77269 77214 110712 10 77281 77214 110713 10 77310 77214 110714 10 77237 77214 110715 10 77298 77214 110716 10 77296 77214 110717 10 77227 77214 110718 10 77233 77214 110719 10 77256 77214 110720 10 77209 77214 110721 10 77283 77214 110722 10 77192 77214 110723 10 77248 77214 110724 10 77224 77214 110725 10 77251 77214 110726 10 77278 77214 110727 10 77220 77214 110728 10 77182 77214 110729 10 77218 77214 110730 77326 77203 77269 110731 77324 77186 77310 110732 10 77261 77214 110733 10 77291 77266 110734 10 77311 77214 110735 10 77274 77214 110736 10 77186 77214 110737 10 77318 77214 110738 10 77208 77214 110739 10 77259 77214 110740 77324 77207 77196 110741 10 77270 77214 110742 10 77219 77214 110743 10 77232 77214 110744 10 77250 77214 110745 77324 77312 77208 110746 10 77207 77214 110747 10 77195 77214 110748 10 77297 77214 110749 10 77211 77214 110750 10 77273 77214 110751 77324 77295 77256 110752 10 77241 77214 110753 10 77323 77214 110754 10 77262 77214 110755 10 77266 77214 110756 10 77309 77214 110757 10 77316 77214 110758 77325 77304 77319 110759 10 77244 77214 110760 10 77221 77214 110761 77324 77247 77294 110762 10 77222 77214 110763 77326 77319 77304 110764 10 77308 77214 110765 77325 77269 77203 110766 77326 77201 77254 110767 10 77286 77214 110768 10 77202 77214 110769 10 77198 77214 110770 10 77390 77411 110771 10 77419 77408 110772 10 77338 77445 110773 10 77422 77445 110774 10 77437 77352 110775 10 77406 77428 110776 10 77459 77362 110777 10 77451 77411 110778 10 77432 77391 110779 10 77443 77428 110780 10 77453 77356 110781 10 77345 77352 110782 10 77393 77362 110783 10 77431 77370 110784 10 77455 77363 110785 10 77335 77352 110786 10 77436 77391 110787 10 77346 77356 110788 10 77381 77428 110789 10 77417 77428 110790 10 77391 77362 110791 10 77327 77362 110792 10 77400 77445 110793 10 77434 77428 110794 10 77439 77356 110795 10 77460 77370 110796 10 77383 77378 110797 10 77328 77408 110798 10 77444 77378 110799 10 77414 77362 110800 10 77334 77428 110801 10 77399 77363 110802 10 77354 77352 110803 10 77374 77433 110804 10 77333 77393 110805 10 77449 77428 110806 10 77351 77411 110807 10 77401 77362 110808 10 77448 77401 110809 10 77349 77362 110810 10 77441 77411 110811 10 77375 77349 110812 10 77458 77445 110813 10 77396 77408 110814 10 77355 77428 110815 10 77384 77370 110816 10 77366 77356 110817 10 77411 77362 110818 10 77457 77352 110819 10 77446 77378 110820 10 77403 77393 110821 10 77363 77362 110822 10 77423 77445 110823 10 77358 77428 110824 10 77442 77391 110825 10 77435 77445 110826 10 77424 77393 110827 10 77372 77459 110828 10 77339 77362 110829 10 77452 77362 110830 10 77389 77428 110831 10 77405 77411 110832 10 77361 77391 110833 10 77330 77445 110834 10 77337 77349 110835 10 77456 77452 110836 10 77332 77445 110837 10 77421 77414 110838 10 77394 77378 110839 10 77413 77391 110840 10 77364 77452 110841 10 77368 77339 110842 10 77430 77433 110843 10 77429 77411 110844 10 77392 77352 110845 10 77418 77428 110846 10 77461 77408 110847 10 77409 77452 110848 10 77385 77378 110849 10 77462 77356 110850 10 77425 77391 110851 10 77369 77445 110852 10 77433 77362 110853 10 77404 77428 110854 10 77415 77378 110855 10 77402 77352 110856 10 77440 77386 110857 10 77382 77433 110858 10 77360 77349 110859 10 77359 77339 110860 10 77373 77378 110861 10 77447 77378 110862 10 77356 77362 110863 10 77407 77391 110864 10 77353 77352 110865 10 77445 77362 110866 10 77438 77414 110867 10 77365 77327 110868 10 77420 77378 110869 10 77398 77352 110870 10 77344 77391 110871 10 77377 77356 110872 10 77426 77391 110873 10 77341 77445 110874 10 77371 77414 110875 10 77342 77391 110876 10 77380 77433 110877 10 77379 77428 110878 10 77428 77362 110879 10 77450 77428 110880 10 77412 77445 110881 10 77410 77352 110882 10 77388 77386 110883 10 77378 77362 110884 10 77336 77411 110885 10 77370 77362 110886 10 77331 77411 110887 10 77340 77459 110888 10 77367 77363 110889 10 77376 77352 110890 10 77350 77445 110891 10 77454 77349 110892 10 77408 77362 110893 10 77386 77362 110894 10 77343 77356 110895 10 77416 77452 110896 10 77348 77428 110897 10 77397 77391 110898 10 77427 77391 110899 10 77387 77411 110900 10 77395 77428 110901 10 77463 77393 110902 10 77329 77391 110903 10 77347 77411 110904 10 77352 77362 110905 10 77357 77352 110907 10 77530 77511 110908 10 77536 77534 110909 10 77484 77511 110910 10 77464 77511 110911 10 77498 77511 110912 10 77483 77511 110913 10 77533 77511 110915 10 77479 77511 110916 10 77497 77511 110917 10 77508 77511 110918 10 77478 77534 110919 10 77500 77511 110920 10 77488 77511 110921 10 77490 77511 110922 10 77513 77511 110923 10 77539 77511 110924 10 77477 77511 110925 10 77502 77511 110926 10 77476 77511 110927 10 77481 77534 110928 10 77526 77511 110929 10 77472 77511 110930 10 77486 77511 110931 10 77474 77511 110932 10 77495 77511 110933 10 77527 77511 110934 10 77503 77511 110936 10 77485 77511 110937 10 77491 77511 110938 10 77494 77511 110939 10 77492 77511 110940 10 77517 77511 110941 10 77538 77511 110942 10 77467 77511 110943 10 77534 77466 110944 10 77471 77511 110945 10 77531 77511 110946 10 77487 77511 110947 10 77504 77511 110948 10 77493 77511 110949 10 77512 77511 110951 10 77499 77511 110952 10 77469 77511 110953 10 77489 77511 110954 10 77529 77511 110955 10 77482 77511 110956 10 77524 77511 110957 10 77511 77466 110958 10 77505 77511 110959 10 77506 77511 110960 10 77528 77511 110961 10 77480 77511 110962 10 77532 77511 110963 10 77468 77511 110964 10 77521 77511 110965 10 77522 77511 110966 10 77475 77511 110967 10 77473 77511 110968 10 77525 77511 110969 10 77537 77511 110970 10 77470 77511 110971 10 77516 77511 110972 10 77523 77511 110973 10 77514 77511 110974 10 77515 77511 110975 10 77509 77511 110976 10 77507 77511 110977 10 77535 77511 110978 10 77520 77511 110979 10 77465 77511 110980 10 77519 77511 110981 10 77548 77547 110982 23 77170 77548 110983 23 77216 77548 110984 23 77412 77548 110985 23 77485 77548 110986 10 77549 77547 110987 23 77170 77549 110988 23 77204 77549 110989 23 77412 77549 110990 23 77485 77549 110991 10 77550 77547 110992 23 77168 77550 110993 23 77198 77550 110994 23 77412 77550 110995 23 77485 77550 110996 10 77551 77547 110997 23 77168 77551 110998 23 77204 77551 110999 23 77412 77551 111000 23 77485 77551 111001 10 77552 77547 111002 23 77168 77552 111003 23 77216 77552 111004 23 77412 77552 111005 23 77485 77552 111006 10 77553 77547 111007 23 77170 77553 111008 23 77198 77553 111009 23 77412 77553 111010 23 77485 77553 111011 10 77554 77547 111012 23 77172 77554 111013 23 77198 77554 111014 23 77412 77554 111015 23 77485 77554 111016 10 77555 77547 111017 23 77172 77555 111018 23 77204 77555 111019 23 77412 77555 111020 23 77485 77555 111021 10 77556 77547 111022 23 77180 77556 111023 23 77204 77556 111024 23 77412 77556 111025 23 77485 77556 111026 10 77557 77547 111027 23 77180 77557 111028 23 77198 77557 111029 23 77412 77557 111030 23 77485 77557 111031 10 77558 77547 111032 23 77172 77558 111033 23 77216 77558 111034 23 77412 77558 111035 23 77485 77558 111036 10 77559 77547 111037 23 77180 77559 111038 23 77216 77559 111039 23 77412 77559 111040 23 77485 77559 111071 10 78189 78142 111075 10 78162 78142 111089 10 78381 78366 111090 10 78320 78366 111091 10 78343 78366 111092 10 78245 78393 111093 10 78369 78366 111094 10 78366 78235 111095 10 78319 78366 111096 10 78362 78393 111097 10 78355 78366 111098 10 78253 78366 111099 10 78301 78366 111100 10 78204 78366 111101 10 78383 78366 111102 10 78243 78366 111103 10 78345 78366 111104 10 78236 78366 111105 10 78378 78366 111106 10 78195 78366 111107 10 78216 78366 111108 10 78329 78366 111109 10 78226 78366 111110 10 78212 78366 111111 10 78271 78366 111112 10 78211 78366 111113 10 78255 78366 111114 10 78267 78366 111115 10 78333 78366 111116 10 78239 78366 111117 10 78330 78366 111118 10 78427 78366 111119 10 78376 78366 111120 10 78210 78366 111121 10 78423 78393 111122 10 78202 78366 111123 10 78282 78366 111124 10 78217 78366 111125 10 78273 78366 111126 10 78364 78366 111127 10 78410 78366 111128 10 78334 78366 111129 10 78242 78366 111130 10 78360 78366 111131 10 78303 78366 111132 10 78317 78366 111133 10 78395 78366 111134 10 78232 78393 111135 10 78380 78366 111136 10 78228 78366 111137 10 78199 78366 111138 10 78225 78366 111139 10 78298 78366 111140 10 78262 78366 111141 10 78256 78366 111142 10 78315 78366 111143 10 78230 78366 111144 10 78277 78366 111145 10 78220 78366 111146 10 78339 78366 111147 10 78231 78366 111148 10 78300 78366 111149 10 78248 78366 111150 10 78398 78366 111151 10 78205 78366 111152 10 78201 78366 111153 10 78250 78366 111154 10 78254 78366 111155 10 78213 78366 111156 10 78379 78366 111157 10 78289 78366 111158 10 78331 78366 111159 10 78276 78393 111160 10 78371 78366 111161 10 78269 78393 111162 10 78413 78366 111163 10 78203 78393 111164 10 78405 78366 111165 10 78391 78366 111166 10 78412 78366 111167 10 78401 78366 111168 10 78411 78366 111169 10 78285 78366 111170 10 78346 78366 111171 10 78306 78366 111172 10 78200 78366 111173 10 78240 78366 111174 10 78415 78366 111175 10 78281 78366 111176 10 78218 78366 111177 10 78392 78366 111178 10 78264 78366 111179 10 78424 78366 111180 10 78261 78366 111181 10 78209 78366 111182 10 78270 78366 111183 10 78222 78366 111184 10 78365 78366 111185 10 78407 78366 111186 10 78399 78366 111187 10 78336 78366 111188 10 78259 78366 111189 10 78215 78366 111190 10 78263 78393 111191 10 78313 78366 111192 10 78420 78366 111193 10 78377 78366 111194 10 78384 78366 111195 10 78344 78366 111196 10 78284 78366 111197 10 78385 78366 111198 10 78403 78366 111199 10 78294 78366 111200 10 78328 78366 111201 10 78237 78366 111202 10 78382 78366 111203 10 78308 78366 111204 10 78363 78366 111205 10 78223 78393 111206 10 78307 78366 111207 10 78335 78366 111208 10 78229 78366 111209 10 78349 78366 111210 10 78238 78366 111211 10 78221 78366 111212 10 78394 78366 111213 10 78251 78366 111214 10 78357 78366 111215 10 78354 78366 111216 10 78318 78366 111217 10 78350 78393 111218 10 78310 78366 111219 10 78233 78366 111220 10 78214 78366 111221 10 78241 78366 111222 10 78373 78366 111223 10 78425 78366 111224 10 78372 78366 111225 10 78408 78366 111226 10 78374 78366 111227 10 78321 78366 111228 10 78246 78366 111229 10 78402 78366 111230 10 78312 78366 111231 10 78191 78366 111232 10 78418 78366 111233 10 78206 78366 111234 10 78386 78366 111235 10 78302 78366 111236 10 78348 78366 111237 10 78193 78366 111238 10 78370 78366 111239 10 78305 78366 111240 10 78275 78393 111241 10 78192 78366 111242 10 78428 78366 111243 10 78227 78366 111244 10 78274 78366 111245 10 78323 78366 111246 10 78299 78366 111247 10 78316 78366 111248 10 78291 78366 111249 10 78292 78366 111250 10 78198 78366 111251 10 78258 78366 111252 10 78324 78366 111253 10 78414 78366 111254 10 78341 78366 111255 10 78359 78366 111256 10 78368 78366 111257 10 78279 78366 111258 10 78404 78366 111259 10 78244 78366 111260 10 78290 78366 111261 10 78419 78366 111262 10 78194 78366 111263 10 78325 78366 111264 10 78304 78366 111265 10 78406 78366 111266 10 78283 78366 111267 10 78280 78366 111268 10 78257 78366 111269 10 78207 78366 111270 10 78224 78366 111271 10 78197 78366 111272 10 78288 78366 111273 10 78252 78366 111274 10 78416 78366 111275 10 78286 78366 111276 10 78249 78366 111277 10 78322 78366 111278 10 78421 78366 111279 10 78296 78366 111280 10 78417 78366 111281 10 78393 78235 111282 10 78332 78366 111283 10 78297 78366 111284 10 78208 78366 111285 10 78367 78366 111286 10 78266 78393 111287 10 78396 78366 111288 10 78340 78366 111289 10 78375 78366 111290 10 78287 78366 111291 10 78278 78366 111292 10 78309 78366 111293 10 78338 78366 111294 10 78387 78366 111295 10 78265 78366 111296 10 78353 78366 111297 10 78247 78366 111298 10 78272 78366 111299 10 78268 78366 111300 10 78361 78366 111301 10 78260 78366 111302 10 78422 78366 111303 10 78295 78366 111304 10 78352 78366 111305 10 78196 78366 111306 10 78356 78366 111307 10 78234 78393 111308 10 78347 78366 111309 10 78219 78366 111310 10 78389 78366 111311 10 78409 78366 111312 10 78293 78366 111313 10 78400 78366 111314 10 78337 78366 111315 10 78326 78393 111316 10 78327 78366 111317 10 78426 78366 111318 10 78342 78366 111319 10 78314 78366 111320 10 78388 78366 111321 10 78311 78366 111322 10 78397 78366 111323 10 78358 78366 111324 10 78351 78366 111325 10 78390 78366 111326 10 78558 77511 111327 10 78529 77511 111328 10 78658 77511 111329 10 78822 77511 111330 10 78780 77511 111331 10 78759 77511 111332 10 78779 77511 111333 10 78729 77511 111334 10 78791 77511 111335 10 78459 77511 111336 10 78654 77511 111337 10 78606 77511 111338 10 78684 77511 111339 10 78453 77511 111340 10 78775 77511 111341 10 78728 77511 111342 10 78575 77511 111343 10 78788 77511 111344 10 78741 77511 111345 10 78538 77511 111346 10 78537 77511 111347 10 78829 77511 111348 10 78827 77511 111349 10 78450 77511 111350 10 78717 77511 111351 10 78828 77511 111352 10 78585 77511 111353 10 78647 77511 111354 10 78641 77511 111355 10 78559 77511 111356 10 78584 77511 111357 10 78705 77511 111358 10 78710 77511 111359 10 78706 77511 111360 10 78550 77511 111361 10 78651 77511 111362 10 78589 77511 111363 10 78645 77511 111364 10 78746 77511 111365 10 78778 77511 111366 10 78764 77511 111367 10 78586 77511 111368 10 78565 77511 111369 10 78652 77511 111370 10 78696 77511 111371 10 78639 77511 111372 10 78571 77511 111373 10 78546 77511 111374 10 78434 77511 111375 10 78810 77511 111376 10 78700 77511 111377 10 78594 77511 111378 10 77496 77511 111379 10 78557 77511 111380 10 78817 78796 111381 10 78762 77511 111382 10 78494 77511 111383 10 78671 77511 111384 10 78739 77511 111385 10 78720 77511 111386 10 78623 77511 111387 10 78624 77511 111388 10 78577 77511 111389 10 78685 77511 111390 10 78508 77511 111391 10 78785 77511 111392 10 78722 77511 111393 10 78795 77511 111394 10 78449 77511 111395 10 78711 77511 111396 10 78693 77511 111397 10 78610 77511 111398 10 78484 77511 111399 10 78721 77511 111400 10 78490 77511 111401 10 78516 78769 111402 10 78460 77511 111403 10 78809 77511 111404 10 78611 77511 111405 10 78519 77511 111406 10 78548 77511 111407 10 78570 77511 111408 10 78783 77511 111409 10 78731 77511 111410 10 78686 77511 111411 10 78483 77511 111412 10 78719 77511 111413 10 78771 77511 111414 10 78747 77511 111415 10 78644 77511 111416 10 78566 77511 111417 10 78475 77511 111418 10 78543 77511 111419 10 78662 77511 111420 10 78488 77511 111421 10 78480 77511 111422 10 78441 77511 111423 10 78768 78769 111424 10 78708 77511 111425 10 78502 77511 111426 10 78482 77511 111427 10 78592 77511 111428 10 78802 77511 111429 10 78825 77511 111430 10 78629 77511 111431 10 78668 77511 111432 10 78506 77511 111433 10 78444 77511 111434 10 78703 77511 111435 10 78621 77511 111436 10 78793 77511 111437 10 78804 77511 111438 10 78723 77511 111439 10 78617 77511 111440 10 78618 77511 111441 10 78772 77511 111442 10 78507 77511 111443 10 78690 77511 111444 10 78429 77511 111445 10 78527 77511 111446 10 78531 77511 111447 10 78681 77511 111448 10 78674 77511 111449 10 78758 77511 111450 10 78818 77511 111451 10 78498 77511 111452 10 78805 77511 111453 10 78556 77511 111454 10 78749 77511 111455 10 78609 77511 111456 10 78599 77511 111457 10 78563 77511 111458 10 78833 77511 111459 10 78774 77511 111460 10 78733 77511 111461 10 78600 77511 111462 10 78714 77511 111463 10 78663 77511 111464 10 78509 77511 111465 10 78730 77511 111466 10 78473 77511 111467 10 78650 77511 111468 10 78541 77511 111469 10 78613 77511 111470 10 78591 77511 111471 10 78622 77511 111472 10 78682 77511 111473 10 78620 77511 111474 10 78525 77511 111475 10 78470 77511 111476 10 78560 77511 111477 10 78724 77511 111478 10 78628 77511 111479 10 78510 77511 111480 10 78456 77511 111481 10 78740 77511 111482 10 78649 77511 111483 10 78461 77511 111484 10 78523 77511 111485 10 78512 77511 111486 10 78474 78769 111487 10 78517 77511 111488 10 78616 77511 111489 10 78530 77511 111490 10 78709 77511 111491 10 78646 77511 111492 10 78633 77511 111493 10 78631 77511 111494 10 78612 77511 111495 10 78794 77511 111496 10 78672 77511 111497 10 78544 77511 111498 10 78540 77511 111499 10 78634 77511 111500 10 78666 77511 111501 10 78769 77466 111502 10 78511 77511 111503 10 78736 78769 111504 10 78712 77511 111505 10 78491 77511 111506 10 78561 77511 111507 10 78437 77511 111508 10 78593 77511 111509 10 78568 77511 111510 10 78489 77511 111511 10 78554 77511 111512 10 78800 77511 111513 10 78806 77511 111514 10 78579 77511 111515 10 78670 77511 111516 10 78448 77511 111517 10 78627 77511 111518 10 78499 77511 111519 10 78608 77511 111520 10 78699 77511 111521 10 78552 77511 111522 10 78664 77511 111523 10 78467 77511 111524 10 78660 78796 111525 10 78614 77511 111526 10 78603 77511 111527 10 78497 77511 111528 10 78687 77511 111529 10 78792 77511 111530 10 78549 77511 111531 10 78676 77511 111532 10 78598 77511 111533 10 78581 77511 111534 10 78576 77511 111535 10 78683 77511 111536 10 78821 77511 111537 10 78431 77511 111538 10 78443 77511 111539 10 78760 77511 111540 10 78763 77511 111541 10 78814 77511 111542 10 78657 77511 111543 10 78564 77511 111544 10 78738 77511 111545 10 78819 77511 111546 10 78677 78769 111547 10 78430 77511 111548 10 78596 77511 111549 10 78745 77511 111550 10 78555 77511 111551 10 78504 77511 111552 10 78732 77511 111553 10 78765 77511 111554 10 78725 77511 111555 10 78465 77511 111556 10 78439 77511 111557 10 78755 77511 111558 10 78689 77511 111559 10 78667 77511 111560 10 78756 77511 111561 10 78479 77511 111562 10 78757 77511 111563 10 78534 77511 111564 10 78569 77511 111565 10 78578 77511 111566 10 78777 77511 111567 10 78642 77511 111568 10 78493 77511 111569 10 78665 77511 111570 10 78635 77511 111571 10 78464 77511 111572 10 78752 77511 111573 10 78799 77511 111574 10 78815 77511 111575 10 78433 77511 111576 10 78751 77511 111577 10 78471 77511 111578 10 78588 77511 111579 10 78803 77511 111580 10 78492 77511 111581 10 78816 77511 111582 10 78505 77511 111583 10 78462 77511 111584 10 78476 77511 111585 10 78520 77511 111586 10 78432 77511 111587 10 78615 77511 111588 10 78457 77511 111589 10 78797 77511 111590 10 78727 77511 111591 10 78669 77511 111592 10 78518 77511 111593 10 78445 77511 111594 10 78750 77511 111595 10 78691 77511 111596 10 78713 77511 111597 10 78447 77511 111598 10 78702 77511 111599 10 78521 77511 111600 10 78454 77511 111601 10 78801 77511 111602 10 78536 77511 111603 10 78607 77511 111604 10 78798 77511 111605 10 78680 77511 111606 10 78659 77511 111607 10 78455 78769 111608 10 78655 77511 111609 10 78675 77511 111610 10 77501 77511 111611 10 78753 77511 111612 10 78466 77511 111613 10 78761 77511 111614 10 78701 77511 111615 10 78567 77511 111616 10 78811 77511 111617 10 78820 77511 111618 10 78737 77511 111619 10 78766 77511 111620 10 78551 77511 111621 10 78704 77511 111622 10 78451 77511 111623 10 78580 77511 111624 10 78436 77511 111625 10 77510 77511 111626 10 78590 77511 111627 10 78661 77511 111628 10 78831 77511 111629 10 78442 77511 111630 10 78707 77511 111631 10 78513 77511 111632 10 78688 77511 111633 10 78626 77511 111634 10 78830 77511 111635 10 78640 77511 111636 10 78604 77511 111637 10 78726 77511 111638 10 78472 78769 111639 10 78602 77511 111640 10 78636 77511 111641 10 78754 77511 111642 10 78695 77511 111643 10 78673 77511 111644 10 78823 77511 111645 10 78782 77511 111646 10 78824 77511 111647 10 78542 77511 111648 10 78485 77511 111649 10 78743 77511 111650 10 78478 77511 111651 10 78582 77511 111652 10 78458 77511 111653 10 78653 77511 111654 10 78463 77511 111655 10 78438 77511 111656 10 78781 77511 111657 10 78553 77511 111658 10 78807 77511 111659 10 78487 77511 111660 10 78790 77511 111661 10 78500 77511 111662 10 78734 77511 111663 10 78547 77511 111664 10 78744 77511 111665 10 78826 77511 111666 10 78446 77511 111667 10 78526 77511 111668 10 78656 77511 111669 10 78698 77511 111670 10 78495 77511 111671 10 78452 77511 111672 10 78643 77511 111673 10 78477 77511 111674 10 78648 77511 111675 10 78718 77511 111676 10 78630 77511 111677 10 78812 77511 111678 10 78813 77511 111679 10 78832 77511 111680 10 78715 77511 111681 10 78694 77511 111682 10 78632 77511 111683 10 78692 77511 111684 10 78532 77511 111685 10 78501 77511 111686 10 78503 77511 111687 10 78595 77511 111688 10 78619 77511 111689 10 78784 77511 111690 10 78776 77511 111691 10 78496 77511 111692 10 78767 77511 111693 10 78605 77511 111694 10 78545 77511 111695 10 78440 77511 111696 10 77518 77511 111697 10 78735 77511 111698 10 78697 77511 111699 10 78796 77466 111700 10 78514 77511 111701 10 78587 77511 111702 10 78573 77511 111703 10 78469 77511 111704 10 78787 77511 111705 10 78486 77511 111706 10 78515 77511 111707 10 78679 77511 111708 10 78535 78796 111709 10 78435 77511 111710 10 78522 77511 111711 10 78533 77511 111712 10 78770 77511 111713 10 78786 77511 111714 10 78789 77511 111715 10 78638 77511 111716 10 78583 77511 111717 10 78678 77511 111718 10 78601 77511 111719 10 78597 77511 111720 10 78742 77511 111721 10 78637 77511 111722 10 78716 77511 111723 10 78748 77511 111724 10 78773 77511 111725 10 78572 77511 111726 10 78574 77511 111727 10 78562 77511 111728 10 78539 77511 111729 10 78625 77511 111730 10 78524 77511 111731 10 78468 77511 111732 10 78481 77511 111733 10 78528 77511 111734 10 78808 77511 111041 76849 78173 78189 111042 76849 78171 78162 111043 76849 78180 78189 111044 76849 78169 78162 111045 76849 78172 78162 111046 76849 78144 78162 111047 76849 78157 78162 111048 76849 78188 78162 111049 76849 78170 78162 111050 76849 78185 78189 111051 76849 78164 78162 111052 76849 78163 78162 111053 76849 78145 78162 111054 76849 78143 78189 111055 76849 78159 78189 111056 76849 78178 78162 111057 76849 78168 78162 111058 76849 78183 78189 111059 76849 78161 78189 111060 76849 78160 78162 111061 76849 78158 78162 111062 76849 78186 78162 111063 76849 78149 78162 111064 76849 78152 78162 111065 76849 78153 78162 111066 76849 78165 78189 111067 76849 78174 78162 111068 76849 78148 78162 111069 76849 78187 78162 111070 76849 78167 78189 111072 76849 78141 78162 111073 76849 78177 78162 111074 76849 78150 78162 111076 76849 78182 78162 111077 76849 78176 78189 111078 76849 78156 78162 111079 76849 78166 78162 111080 76849 78155 78189 111081 76849 78175 78162 111082 76849 78154 78189 111083 76849 78179 78162 111084 76849 78181 78162 111085 76849 78151 78162 111086 76849 78147 78189 111087 76849 78146 78189 111088 76849 78184 78189 111735 10 78850 78853 111736 10 78852 78853 111737 10 78848 78853 111738 10 78854 78853 111739 10 78855 78853 111740 10 78856 78853 111741 10 78847 78853 111742 10 78853 78235 111743 10 78849 78366 111744 10 78857 78853 111745 10 78851 78853 111746 10 78858 78860 111747 10 78859 78860 111748 10 78872 78860 111749 10 78871 78860 111750 10 78869 78860 111751 10 78868 78860 111752 10 78870 78860 111753 10 78878 78876 111754 10 78875 78876 111755 10 78886 78876 111756 10 78884 78876 111757 10 78877 78876 111758 10 78874 78876 111759 10 78883 78876 111760 10 78880 78876 111761 10 78885 78876 111762 10 78879 78876 111763 10 78882 78876 111764 10 78881 78876 111765 10 78873 78876 111766 10 78887 78876 111767 10 78900 78920 111768 10 78911 78944 111769 10 78908 78944 111770 10 78930 78920 111771 10 78891 78944 111772 10 78898 78944 111773 10 78946 78944 111774 10 78905 78944 111775 10 78913 78920 111776 10 78920 78899 111777 10 78928 78944 111778 10 78927 78944 111779 10 78950 78944 111780 10 78939 78944 111781 10 78892 78920 111782 10 78907 78920 111783 10 78951 78944 111784 10 78931 78944 111785 10 78903 78920 111786 10 78949 78944 111787 10 78902 78920 111788 10 78912 78944 111789 10 78915 78920 111790 10 78894 78920 111791 10 78917 78944 111792 10 78940 78920 111793 10 78921 78920 111794 10 78935 78944 111795 10 78916 78920 111796 10 78923 78920 111797 10 78936 78944 111798 10 78941 78920 111799 10 78904 78944 111800 10 78906 78944 111801 10 78932 78920 111802 10 78924 78920 111803 10 78914 78944 111804 10 78919 78920 111805 10 78896 78920 111806 10 78938 78944 111807 10 78945 78944 111808 10 78952 78920 111809 10 78889 78920 111810 10 78888 78944 111811 10 78937 78899 111812 10 78933 78944 111813 10 78901 78920 111814 10 78929 78920 111815 10 78947 78944 111816 10 78922 78920 111817 10 78926 78944 111818 10 78953 78920 111819 10 78910 78944 111820 10 78909 78944 111821 10 78934 78920 111822 10 78948 78920 111823 10 78925 78944 111824 10 78942 78944 111825 10 78918 78944 111826 10 78943 78920 111827 10 78893 78920 111828 10 78897 78944 111829 10 78895 78920 111830 10 78890 78920 111831 10 78944 78899 111832 10 78962 78955 111833 10 78956 78955 111834 10 78959 78955 111835 10 78954 78955 111836 10 78960 78955 111837 10 78964 78955 111838 10 78961 78955 111839 10 78966 78955 111840 10 78965 78955 111841 10 78958 78955 111842 10 78963 78955 111843 10 78957 78955 111844 10 78993 78996 111845 10 78969 78990 111846 10 78991 78989 111847 10 78976 78967 111848 10 78997 78967 111849 10 78982 78996 111850 10 78999 78967 111851 10 78988 78972 111852 10 78989 78986 111853 10 78981 78996 111854 10 79001 78972 111855 10 78980 78996 111856 10 78971 78967 111857 10 78978 78989 111858 10 78984 78972 111859 10 78992 78986 111860 10 78970 78989 111861 10 78968 78986 111862 10 78972 78986 111863 10 78983 78986 111864 10 78990 78986 111865 10 78973 78967 111866 10 78998 78972 111867 10 78967 78986 111868 10 78974 78990 111869 10 78995 78986 111870 10 78975 78989 111871 10 78985 78990 111872 10 78979 78990 111873 10 79000 78972 111874 10 78996 78986 111875 10 78977 78990 111876 10 79002 78996 111877 10 78987 78986 111878 10 78994 78989 111879 10 79016 78860 111880 10 79015 78860 111881 10 79014 78860 111882 10 79017 78860 111883 10 79018 78860 111884 10 79013 78860 111885 10 79022 78860 111886 10 79023 78860 111887 10 79025 78860 111888 10 79024 78860 111889 10 79028 78860 111890 10 79027 78860 111891 10 79029 78860 111892 10 79026 78860 111893 10 79034 78860 111894 10 79035 78860 111895 10 79041 78860 111896 10 79042 78860 111897 10 79051 78860 111898 10 79056 78860 111899 10 79050 78860 111900 10 79054 78860 111901 10 79046 78860 111902 10 79055 78860 111903 10 79057 78860 111904 10 79053 78860 111905 10 79048 78860 111906 10 79047 78860 111907 10 79052 78860 111908 10 79049 78860 \. -- -- Data for Name: cvtermpath; Type: TABLE DATA; Schema: public; Owner: postgres -- COPY public.cvtermpath (cvtermpath_id, type_id, subject_id, object_id, cv_id, pathdistance) FROM stdin; 1792450 76849 76728 76584 16 1 1792451 76849 76584 76728 16 -1 1792452 76849 70747 76631 16 1 1792453 76849 76631 70747 16 -1 1792454 76849 76731 70762 16 1 1792455 76849 70762 76731 16 -1 1792456 76849 76702 76613 16 1 1792457 76849 76613 76702 16 -1 1792458 76849 76544 76719 16 1 1792459 76849 76719 76544 16 -1 1792460 76849 70694 76657 16 1 1792461 76849 76657 70694 16 -1 1792462 76849 76761 76681 16 1 1792463 76849 76681 76761 16 -1 1792464 76849 76559 70673 16 1 1792465 76849 70673 76559 16 -1 1792466 76849 76592 76840 16 1 1792467 76849 76840 76592 16 -1 1792468 76849 76536 76832 16 1 1792469 76849 76832 76536 16 -1 1792470 76849 76819 76627 16 1 1792471 76849 76627 76819 16 -1 1792472 76849 76670 76845 16 1 1792473 76849 76845 76670 16 -1 1792474 76849 70732 76601 16 1 1792475 76849 76601 70732 16 -1 1792476 76849 76660 70720 16 1 1792477 76849 70720 76660 16 -1 1792478 76849 76548 76627 16 1 1792479 76849 76627 76548 16 -1 1792480 76849 76630 70774 16 1 1792481 76849 70774 76630 16 -1 1792482 76849 76678 76762 16 1 1792483 76849 76762 76678 16 -1 1792484 76849 70698 76807 16 1 1792485 76849 76807 70698 16 -1 1792486 76849 76834 76674 16 1 1792487 76849 76674 76834 16 -1 1792488 76849 76779 76806 16 1 1792489 76849 76806 76779 16 -1 1792490 76849 70724 76641 16 1 1792491 76849 76641 70724 16 -1 1792492 76849 76635 70729 16 1 1792493 76849 70729 76635 16 -1 1792494 76849 70758 76699 16 1 1792495 76849 76699 70758 16 -1 1792496 76849 70667 76709 16 1 1792497 76849 76709 70667 16 -1 1792498 76849 76776 76632 16 1 1792499 76849 76632 76776 16 -1 1792500 76849 76838 70714 16 1 1792501 76849 70714 76838 16 -1 1792502 76849 76828 76568 16 1 1792503 76849 76568 76828 16 -1 1792504 76849 76604 76639 16 1 1792505 76849 76639 76604 16 -1 1792506 76849 76810 70774 16 1 1792507 76849 70774 76810 16 -1 1792508 76849 70675 76829 16 1 1792509 76849 76829 70675 16 -1 1792510 76849 76692 76736 16 1 1792511 76849 76736 76692 16 -1 1792512 76849 70736 76629 16 1 1792513 76849 76629 70736 16 -1 1792514 76849 76739 76741 16 1 1792515 76849 76741 76739 16 -1 1792516 76849 70672 76767 16 1 1792517 76849 76767 70672 16 -1 1792518 76849 76646 76770 16 1 1792519 76849 76770 76646 16 -1 1792520 76849 70685 76683 16 1 1792521 76849 76683 70685 16 -1 1792522 76849 76615 76640 16 1 1792523 76849 76640 76615 16 -1 1792524 76849 76738 76650 16 1 1792525 76849 76650 76738 16 -1 1792526 76849 76594 76729 16 1 1792527 76849 76729 76594 16 -1 1792528 76849 76796 76591 16 1 1792529 76849 76591 76796 16 -1 1792530 76849 76746 76637 16 1 1792531 76849 76637 76746 16 -1 1792532 76849 70737 76795 16 1 1792533 76849 76795 70737 16 -1 1792534 76849 70709 76833 16 1 1792535 76849 76833 70709 16 -1 1792536 76849 76842 76822 16 1 1792537 76849 76822 76842 16 -1 1792538 76849 70700 76593 16 1 1792539 76849 76593 70700 16 -1 1792540 76849 76669 76846 16 1 1792541 76849 76846 76669 16 -1 1792542 76849 70664 76733 16 1 1792543 76849 76733 70664 16 -1 1792544 76849 70751 76727 16 1 1792545 76849 76727 70751 16 -1 1792546 76849 76542 76801 16 1 1792547 76849 76801 76542 16 -1 1792548 76849 70662 76663 16 1 1792549 76849 76663 70662 16 -1 1792550 76849 70773 76586 16 1 1792551 76849 76586 70773 16 -1 1792552 76849 70740 76602 16 1 1792553 76849 76602 70740 16 -1 1792554 76849 76802 70731 16 1 1792555 76849 70731 76802 16 -1 1792556 76849 70676 76672 16 1 1792557 76849 76672 70676 16 -1 1792558 76849 76725 76801 16 1 1792559 76849 76801 76725 16 -1 1792560 76849 70695 76690 16 1 1792561 76849 76690 70695 16 -1 1792562 76849 76659 76832 16 1 1792563 76849 76832 76659 16 -1 1792564 76849 70710 76768 16 1 1792565 76849 76768 70710 16 -1 1792566 76849 76804 70762 16 1 1792567 76849 70762 76804 16 -1 1792568 76849 70692 76766 16 1 1792569 76849 76766 70692 16 -1 1792570 76849 76551 76749 16 1 1792571 76849 76749 76551 16 -1 1792572 76849 70733 76700 16 1 1792573 76849 76700 70733 16 -1 1792574 76849 70730 76817 16 1 1792575 76849 76817 70730 16 -1 1792576 76849 76620 76696 16 1 1792577 76849 76696 76620 16 -1 1792578 76849 76587 76640 16 1 1792579 76849 76640 76587 16 -1 1792580 76849 76622 76736 16 1 1792581 76849 76736 76622 16 -1 1792582 76849 70666 76681 16 1 1792583 76849 76681 70666 16 -1 1792584 76849 70674 76680 16 1 1792585 76849 76680 70674 16 -1 1792586 76849 76782 76708 16 1 1792587 76849 76708 76782 16 -1 1792588 76849 76748 70708 16 1 1792589 76849 70708 76748 16 -1 1792590 76849 76652 76676 16 1 1792591 76849 76676 76652 16 -1 1792592 76849 70721 76742 16 1 1792593 76849 76742 70721 16 -1 1792594 76849 76547 76681 16 1 1792595 76849 76681 76547 16 -1 1792596 76849 70763 76795 16 1 1792597 76849 76795 70763 16 -1 1792598 76849 76618 70671 16 1 1792599 76849 70671 76618 16 -1 1792600 76849 76780 76818 16 1 1792601 76849 76818 76780 16 -1 1792602 76849 70746 76797 16 1 1792603 76849 76797 70746 16 -1 1792604 76849 70688 76577 16 1 1792605 76849 76577 70688 16 -1 1792606 76849 76792 76824 16 1 1792607 76849 76824 76792 16 -1 1792608 76849 70770 76583 16 1 1792609 76849 76583 70770 16 -1 1792610 76849 70682 76543 16 1 1792611 76849 76543 70682 16 -1 1792612 76849 76701 70707 16 1 1792613 76849 70707 76701 16 -1 1792614 76849 76565 76689 16 1 1792615 76849 76689 76565 16 -1 1792616 76849 76825 76736 16 1 1792617 76849 76736 76825 16 -1 1792618 76849 76786 76589 16 1 1792619 76849 76589 76786 16 -1 1792620 76849 70741 76762 16 1 1792621 76849 76762 70741 16 -1 1792622 76849 76848 76569 16 1 1792623 76849 76569 76848 16 -1 1792624 76849 76538 76836 16 1 1792625 76849 76836 76538 16 -1 1792626 76849 70684 76836 16 1 1792627 76849 76836 70684 16 -1 1792628 76849 70686 76668 16 1 1792629 76849 76668 70686 16 -1 1792630 76849 76679 76711 16 1 1792631 76849 76711 76679 16 -1 1792632 76849 76624 76710 16 1 1792633 76849 76710 76624 16 -1 1792634 76849 70728 76563 16 1 1792635 76849 76563 70728 16 -1 1792636 76849 76576 70767 16 1 1792637 76849 70767 76576 16 -1 1792638 76849 76716 76768 16 1 1792639 76849 76768 76716 16 -1 1792640 76849 76844 70731 16 1 1792641 76849 70731 76844 16 -1 1792642 76849 76665 70673 16 1 1792643 76849 70673 76665 16 -1 1792644 10 76655 70678 16 1 1792645 10 70678 76655 16 -1 1792646 10 76655 70760 16 2 1792647 10 70760 70678 16 -2 1792648 10 70678 70760 16 1 1792649 10 70760 70678 16 -1 1792650 10 76829 70678 16 1 1792651 10 70678 76829 16 -1 1792652 10 76829 70760 16 2 1792653 10 76696 70678 16 1 1792654 10 70678 76696 16 -1 1792655 10 76696 70760 16 2 1792656 10 76666 70776 16 1 1792657 10 70776 76666 16 -1 1792658 10 76666 70760 16 2 1792659 10 76593 70678 16 1 1792660 10 70678 76593 16 -1 1792661 10 76593 70760 16 2 1792662 10 76709 70776 16 1 1792663 10 70776 76709 16 -1 1792664 10 76709 70760 16 2 1792665 10 76653 70678 16 1 1792666 10 70678 76653 16 -1 1792667 10 76653 70760 16 2 1792668 10 76800 70776 16 1 1792669 10 70776 76800 16 -1 1792670 10 76800 70760 16 2 1792671 76849 70691 76640 16 1 1792672 76849 76640 70691 16 -1 1792673 10 76726 70750 16 1 1792674 10 70750 76726 16 -1 1792675 10 76726 70760 16 2 1792676 10 70760 70750 16 -2 1792677 10 70750 70760 16 1 1792678 10 70760 70750 16 -1 1792679 10 76833 70750 16 1 1792680 10 70750 76833 16 -1 1792681 10 76833 70760 16 2 1792682 10 76817 70678 16 1 1792683 10 70678 76817 16 -1 1792684 10 76817 70760 16 2 1792685 10 76789 70756 16 1 1792686 10 70756 76789 16 -1 1792687 10 76789 70766 16 2 1792688 10 70766 70756 16 -2 1792689 10 70756 70766 16 1 1792690 10 70766 70756 16 -1 1792691 10 76789 70716 16 3 1792692 10 70716 70766 16 -3 1792693 10 70756 70716 16 2 1792694 10 70716 70766 16 -2 1792695 10 70766 70716 16 1 1792696 10 70716 70766 16 -1 1792697 10 76789 70760 16 4 1792698 10 70760 70716 16 -4 1792699 10 70756 70760 16 3 1792700 10 70760 70716 16 -3 1792701 10 70766 70760 16 2 1792702 10 76704 70776 16 1 1792703 10 70776 76704 16 -1 1792704 10 76704 70760 16 2 1792705 10 76722 70756 16 1 1792706 10 70756 76722 16 -1 1792707 10 76722 70766 16 2 1792708 10 76722 70716 16 3 1792709 10 70766 70716 16 2 1792710 10 76722 70760 16 4 1792711 10 70766 70760 16 3 1792712 10 70716 70760 16 2 1792713 10 76767 70678 16 1 1792714 10 70678 76767 16 -1 1792715 10 76767 70760 16 2 1792716 10 76597 70776 16 1 1792717 10 70776 76597 16 -1 1792718 10 76597 70760 16 2 1792719 10 76562 70776 16 1 1792720 10 70776 76562 16 -1 1792721 10 76562 70760 16 2 1792722 10 76606 70678 16 1 1792723 10 70678 76606 16 -1 1792724 10 76606 70760 16 2 1792725 10 70671 70735 16 1 1792726 10 70735 70671 16 -1 1792727 10 70671 70766 16 2 1792728 10 70766 70735 16 -2 1792729 10 70735 70766 16 1 1792730 10 70766 70735 16 -1 1792731 10 70671 70716 16 3 1792732 10 70735 70716 16 2 1792733 10 70671 70760 16 4 1792734 10 70735 70760 16 3 1792735 10 76631 70776 16 1 1792736 10 70776 76631 16 -1 1792737 10 76631 70760 16 2 1792738 10 76623 70776 16 1 1792739 10 70776 76623 16 -1 1792740 10 76623 70760 16 2 1792741 10 76608 70776 16 1 1792742 10 70776 76608 16 -1 1792743 10 76608 70760 16 2 1792744 10 76721 70678 16 1 1792745 10 70678 76721 16 -1 1792746 10 76721 70760 16 2 1792747 10 76552 70776 16 1 1792748 10 70776 76552 16 -1 1792749 10 76552 70760 16 2 1792750 10 76612 70678 16 1 1792751 10 70678 76612 16 -1 1792752 10 76612 70760 16 2 1792753 10 76589 70678 16 1 1792754 10 70678 76589 16 -1 1792755 10 76589 70760 16 2 1792756 10 76764 70776 16 1 1792757 10 70776 76764 16 -1 1792758 10 76764 70760 16 2 1792759 10 76684 70776 16 1 1792760 10 70776 76684 16 -1 1792761 10 76684 70760 16 2 1792762 76849 70681 76640 16 1 1792763 76849 76640 70681 16 -1 1792764 10 76706 70776 16 1 1792765 10 70776 76706 16 -1 1792766 10 76706 70760 16 2 1792767 10 76689 70678 16 1 1792768 10 70678 76689 16 -1 1792769 10 76689 70760 16 2 1792770 10 76572 70678 16 1 1792771 10 70678 76572 16 -1 1792772 10 76572 70760 16 2 1792773 10 76774 70776 16 1 1792774 10 70776 76774 16 -1 1792775 10 76774 70760 16 2 1792776 10 76839 70756 16 1 1792777 10 70756 76839 16 -1 1792778 10 76839 70766 16 2 1792779 10 76839 70716 16 3 1792780 10 76839 70760 16 4 1792781 10 70716 70760 16 3 1792782 10 76768 70776 16 1 1792783 10 70776 76768 16 -1 1792784 10 76768 70760 16 2 1792785 10 76677 70683 16 1 1792786 10 70683 76677 16 -1 1792787 10 76677 70760 16 2 1792788 10 70760 70683 16 -2 1792789 10 70683 70760 16 1 1792790 10 70760 70683 16 -1 1792791 10 76713 70776 16 1 1792792 10 70776 76713 16 -1 1792793 10 76713 70760 16 2 1792794 10 76711 70776 16 1 1792795 10 70776 76711 16 -1 1792796 10 76711 70760 16 2 1792797 10 76680 70678 16 1 1792798 10 70678 76680 16 -1 1792799 10 76680 70760 16 2 1792800 10 76571 70776 16 1 1792801 10 70776 76571 16 -1 1792802 10 76571 70760 16 2 1792803 10 76676 70750 16 1 1792804 10 70750 76676 16 -1 1792805 10 76676 70760 16 2 1792806 10 76813 70678 16 1 1792807 10 70678 76813 16 -1 1792808 10 76813 70760 16 2 1792809 10 70708 70735 16 1 1792810 10 70735 70708 16 -1 1792811 10 70708 70766 16 2 1792812 10 70708 70716 16 3 1792813 10 70708 70760 16 4 1792814 10 76695 70776 16 1 1792815 10 70776 76695 16 -1 1792816 10 76695 70760 16 2 1792817 10 76824 70678 16 1 1792818 10 70678 76824 16 -1 1792819 10 76824 70760 16 2 1792820 10 76691 70776 16 1 1792821 10 70776 76691 16 -1 1792822 10 76691 70760 16 2 1792823 10 76585 70678 16 1 1792824 10 70678 76585 16 -1 1792825 10 76585 70760 16 2 1792826 10 76843 70750 16 1 1792827 10 70750 76843 16 -1 1792828 10 76843 70760 16 2 1792829 10 76742 70776 16 1 1792830 10 70776 76742 16 -1 1792831 10 76742 70760 16 2 1792832 10 76770 70776 16 1 1792833 10 70776 76770 16 -1 1792834 10 76770 70760 16 2 1792835 10 76629 70750 16 1 1792836 10 70750 76629 16 -1 1792837 10 76629 70760 16 2 1792838 10 76640 70678 16 1 1792839 10 70678 76640 16 -1 1792840 10 76640 70760 16 2 1792841 10 76845 70678 16 1 1792842 10 70678 76845 16 -1 1792843 10 76845 70760 16 2 1792844 10 76795 70776 16 1 1792845 10 70776 76795 16 -1 1792846 10 76795 70760 16 2 1792847 10 76805 70776 16 1 1792848 10 70776 76805 16 -1 1792849 10 76805 70760 16 2 1792850 10 76546 70678 16 1 1792851 10 70678 76546 16 -1 1792852 10 76546 70760 16 2 1792853 10 76840 70750 16 1 1792854 10 70750 76840 16 -1 1792855 10 76840 70760 16 2 1792856 10 76724 70776 16 1 1792857 10 70776 76724 16 -1 1792858 10 76724 70760 16 2 1792859 10 76734 70750 16 1 1792860 10 70750 76734 16 -1 1792861 10 76734 70760 16 2 1792862 10 76591 70678 16 1 1792863 10 70678 76591 16 -1 1792864 10 76591 70760 16 2 1792865 10 70720 70735 16 1 1792866 10 70735 70720 16 -1 1792867 10 70720 70766 16 2 1792868 10 70720 70716 16 3 1792869 10 70720 70760 16 4 1792870 10 76582 70750 16 1 1792871 10 70750 76582 16 -1 1792872 10 76582 70760 16 2 1792873 10 76550 70776 16 1 1792874 10 70776 76550 16 -1 1792875 10 76550 70760 16 2 1792876 10 70707 70777 16 1 1792877 10 70777 70707 16 -1 1792878 10 70707 70766 16 2 1792879 10 70766 70777 16 -2 1792880 10 70777 70766 16 1 1792881 10 70766 70777 16 -1 1792882 10 70707 70716 16 3 1792883 10 70777 70716 16 2 1792884 10 70707 70760 16 4 1792885 10 70777 70760 16 3 1792886 10 76771 70678 16 1 1792887 10 70678 76771 16 -1 1792888 10 76771 70760 16 2 1792889 10 76749 70750 16 1 1792890 10 70750 76749 16 -1 1792891 10 76749 70760 16 2 1792892 10 70673 70735 16 1 1792893 10 70735 70673 16 -1 1792894 10 70673 70766 16 2 1792895 10 70673 70716 16 3 1792896 10 70673 70760 16 4 1792897 10 76625 70776 16 1 1792898 10 70776 76625 16 -1 1792899 10 76625 70760 16 2 1792900 10 76541 70756 16 1 1792901 10 70756 76541 16 -1 1792902 10 76541 70766 16 2 1792903 10 76541 70716 16 3 1792904 10 76541 70760 16 4 1792905 10 76700 70776 16 1 1792906 10 70776 76700 16 -1 1792907 10 76700 70760 16 2 1792908 10 76588 70750 16 1 1792909 10 70750 76588 16 -1 1792910 10 76588 70760 16 2 1792911 10 76781 70750 16 1 1792912 10 70750 76781 16 -1 1792913 10 76781 70760 16 2 1792914 10 76818 70678 16 1 1792915 10 70678 76818 16 -1 1792916 10 76818 70760 16 2 1792917 10 76811 70678 16 1 1792918 10 70678 76811 16 -1 1792919 10 76811 70760 16 2 1792920 10 70729 70777 16 1 1792921 10 70777 70729 16 -1 1792922 10 70729 70766 16 2 1792923 10 70729 70716 16 3 1792924 10 70729 70760 16 4 1792925 10 76763 70776 16 1 1792926 10 70776 76763 16 -1 1792927 10 76763 70760 16 2 1792928 10 76797 70750 16 1 1792929 10 70750 76797 16 -1 1792930 10 76797 70760 16 2 1792931 10 76627 70683 16 1 1792932 10 70683 76627 16 -1 1792933 10 76627 70760 16 2 1792934 10 76586 70678 16 1 1792935 10 70678 76586 16 -1 1792936 10 76586 70760 16 2 1792937 10 76584 70776 16 1 1792938 10 70776 76584 16 -1 1792939 10 76584 70760 16 2 1792940 10 76545 70678 16 1 1792142 76849 76831 76610 16 1 1792143 76849 76610 76831 16 -1 1792144 76849 76605 70673 16 1 1792145 76849 70673 76605 16 -1 1792146 76849 76827 76681 16 1 1792147 76849 76681 76827 16 -1 1792148 76849 76638 76774 16 1 1792149 76849 76774 76638 16 -1 1792150 76849 76737 76736 16 1 1792151 76849 76736 76737 16 -1 1792152 76849 76595 76627 16 1 1792153 76849 76627 76595 16 -1 1792154 76849 76645 76553 16 1 1792155 76849 76553 76645 16 -1 1792156 76849 76549 76736 16 1 1792157 76849 76736 76549 16 -1 1792158 76849 76619 70707 16 1 1792159 76849 70707 76619 16 -1 1792160 76849 76667 70774 16 1 1792161 76849 70774 76667 16 -1 1792162 10 76698 70776 16 1 1792163 10 70776 76698 16 -1 1792164 10 76698 70760 16 2 1792165 10 70760 70776 16 -2 1792166 10 70776 70760 16 1 1792167 10 70760 70776 16 -1 1792168 76849 70702 76754 16 1 1792169 76849 76754 70702 16 -1 1792170 76849 76735 76822 16 1 1792171 76849 76822 76735 16 -1 1792172 76849 76537 76765 16 1 1792173 76849 76765 76537 16 -1 1792174 76849 76580 76546 16 1 1792175 76849 76546 76580 16 -1 1792176 76849 76812 70673 16 1 1792177 76849 70673 76812 16 -1 1792178 76849 76760 76801 16 1 1792179 76849 76801 76760 16 -1 1792180 76849 76614 76627 16 1 1792181 76849 76627 76614 16 -1 1792182 76849 70699 76550 16 1 1792183 76849 76550 70699 16 -1 1792184 76849 76714 76628 16 1 1792185 76849 76628 76714 16 -1 1792186 76849 70704 76596 16 1 1792187 76849 76596 70704 16 -1 1792188 76849 76799 76726 16 1 1792189 76849 76726 76799 16 -1 1792190 76849 70689 76814 16 1 1792191 76849 76814 70689 16 -1 1792192 76849 70775 76811 16 1 1792193 76849 76811 70775 16 -1 1792194 76849 76740 70762 16 1 1792195 76849 70762 76740 16 -1 1792196 76849 70755 76657 16 1 1792197 76849 76657 70755 16 -1 1792198 76849 76777 76821 16 1 1792199 76849 76821 76777 16 -1 1792200 76849 70717 76713 16 1 1792201 76849 76713 70717 16 -1 1792202 76849 70748 76758 16 1 1792203 76849 76758 70748 16 -1 1792204 76849 76575 76612 16 1 1792205 76849 76612 76575 16 -1 1792206 76849 70663 76539 16 1 1792207 76849 76539 70663 16 -1 1792208 76849 76647 76546 16 1 1792209 76849 76546 76647 16 -1 1792210 76849 76687 76763 16 1 1792211 76849 76763 76687 16 -1 1792212 76849 76567 76545 16 1 1792213 76849 76545 76567 16 -1 1792214 76849 76558 76712 16 1 1792215 76849 76712 76558 16 -1 1792216 76849 70659 76677 16 1 1792217 76849 76677 70659 16 -1 1792218 76849 76847 70767 16 1 1792219 76849 70767 76847 16 -1 1792220 76849 76693 76724 16 1 1792221 76849 76724 76693 16 -1 1792222 76849 70711 76772 16 1 1792223 76849 76772 70711 16 -1 1792224 76849 76775 76550 16 1 1792225 76849 76550 76775 16 -1 1792226 76849 76773 70714 16 1 1792227 76849 70714 76773 16 -1 1792228 76849 70769 76800 16 1 1792229 76849 76800 70769 16 -1 1792230 76849 70697 76720 16 1 1792231 76849 76720 70697 16 -1 1792232 10 70719 70716 16 1 1792233 10 70716 70719 16 -1 1792234 10 70719 70760 16 2 1792235 10 70760 70716 16 -2 1792236 10 70716 70760 16 1 1792237 10 70760 70716 16 -1 1792238 76849 76755 76644 16 1 1792239 76849 76644 76755 16 -1 1792240 76849 76662 70673 16 1 1792241 76849 70673 76662 16 -1 1792242 76849 70749 76790 16 1 1792243 76849 76790 70749 16 -1 1792244 76849 76658 70731 16 1 1792245 76849 70731 76658 16 -1 1792246 76849 70759 76704 16 1 1792247 76849 76704 70759 16 -1 1792248 76849 70713 76770 16 1 1792249 76849 76770 70713 16 -1 1792250 76849 70715 76695 16 1 1792251 76849 76695 70715 16 -1 1792252 76849 70761 76843 16 1 1792253 76849 76843 70761 16 -1 1792254 76849 70723 76541 16 1 1792255 76849 76541 70723 16 -1 1792256 76849 70744 76734 16 1 1792257 76849 76734 70744 16 -1 1792258 76849 70706 76606 16 1 1792259 76849 76606 70706 16 -1 1792260 76849 70765 76626 16 1 1792261 76849 76626 70765 16 -1 1792262 76849 76643 76627 16 1 1792263 76849 76627 76643 16 -1 1792264 76849 76816 76809 16 1 1792265 76849 76809 76816 16 -1 1792266 76849 76718 76803 16 1 1792267 76849 76803 76718 16 -1 1792268 76849 76841 70671 16 1 1792269 76849 70671 76841 16 -1 1792270 76849 76835 76597 16 1 1792271 76849 76597 76835 16 -1 1792272 76849 76826 76552 16 1 1792273 76849 76552 76826 16 -1 1792274 76849 70743 76710 16 1 1792275 76849 76710 70743 16 -1 1792276 76849 76590 76579 16 1 1792277 76849 76579 76590 16 -1 1792278 76849 76578 70714 16 1 1792279 76849 70714 76578 16 -1 1792280 76849 70679 76837 16 1 1792281 76849 76837 70679 16 -1 1792282 76849 70693 76616 16 1 1792283 76849 76616 70693 16 -1 1792284 76849 70779 76703 16 1 1792285 76849 76703 70779 16 -1 1792286 76849 70781 76585 16 1 1792287 76849 76585 70781 16 -1 1792288 76849 70661 76691 16 1 1792289 76849 76691 70661 16 -1 1792290 76849 70725 76813 16 1 1792291 76849 76813 70725 16 -1 1792292 76849 70771 76840 16 1 1792293 76849 76840 70771 16 -1 1792294 76849 76717 76603 16 1 1792295 76849 76603 76717 16 -1 1792296 76849 76715 70671 16 1 1792297 76849 70671 76715 16 -1 1792298 76849 76750 76798 16 1 1792299 76849 76798 76750 16 -1 1792300 76849 76688 76781 16 1 1792301 76849 76781 76688 16 -1 1792302 76849 76664 76557 16 1 1792303 76849 76557 76664 16 -1 1792304 76849 76752 76759 16 1 1792305 76849 76759 76752 16 -1 1792306 76849 76744 76722 16 1 1792307 76849 76722 76744 16 -1 1792308 76849 76621 76556 16 1 1792309 76849 76556 76621 16 -1 1792310 76849 76745 76651 16 1 1792311 76849 76651 76745 16 -1 1792312 76849 76785 70707 16 1 1792313 76849 70707 76785 16 -1 1792314 76849 76682 76661 16 1 1792315 76849 76661 76682 16 -1 1792316 76849 76747 70714 16 1 1792317 76849 70714 76747 16 -1 1792318 76849 76636 76609 16 1 1792319 76849 76609 76636 16 -1 1792320 76849 76671 76681 16 1 1792321 76849 76681 76671 16 -1 1792322 76849 76611 70729 16 1 1792323 76849 70729 76611 16 -1 1792324 76849 70734 76684 16 1 1792325 76849 76684 70734 16 -1 1792326 76849 76633 76762 16 1 1792327 76849 76762 76633 16 -1 1792328 76849 76642 76554 16 1 1792329 76849 76554 76642 16 -1 1792330 76849 70669 76582 16 1 1792331 76849 76582 70669 16 -1 1792332 76849 76743 70731 16 1 1792333 76849 70731 76743 16 -1 1792334 76849 76673 76784 16 1 1792335 76849 76784 76673 16 -1 1792336 76849 76634 70762 16 1 1792337 76849 70762 76634 16 -1 1792338 76849 70753 76666 16 1 1792339 76849 76666 70753 16 -1 1792340 76849 76570 76805 16 1 1792341 76849 76805 76570 16 -1 1792342 76849 76753 76655 16 1 1792343 76849 76655 76753 16 -1 1792344 76849 70727 76640 16 1 1792345 76849 76640 70727 16 -1 1792346 76849 70764 76562 16 1 1792347 76849 76562 70764 16 -1 1792348 76849 76648 76707 16 1 1792349 76849 76707 76648 16 -1 1792350 76849 70718 76603 16 1 1792351 76849 76603 70718 16 -1 1792352 76849 70677 76588 16 1 1792353 76849 76588 70677 16 -1 1792354 76849 76723 76572 16 1 1792355 76849 76572 76723 16 -1 1792356 76849 76808 76840 16 1 1792357 76849 76840 76808 16 -1 1792358 76849 70768 76566 16 1 1792359 76849 76566 70768 16 -1 1792360 76849 70665 76623 16 1 1792361 76849 76623 70665 16 -1 1792362 76849 76783 76727 16 1 1792363 76849 76727 76783 16 -1 1792364 76849 70660 76778 16 1 1792365 76849 76778 70660 16 -1 1792366 76849 76599 70729 16 1 1792367 76849 70729 76599 16 -1 1792368 76849 70703 76787 16 1 1792369 76849 76787 70703 16 -1 1792370 76849 70745 76607 16 1 1792371 76849 76607 70745 16 -1 1792372 76849 76574 70671 16 1 1792373 76849 70671 76574 16 -1 1792374 76849 76535 76546 16 1 1792375 76849 76546 76535 16 -1 1792376 76849 76555 76721 16 1 1792377 76849 76721 76555 16 -1 1792378 76849 70752 76561 16 1 1792379 76849 76561 70752 16 -1 1792380 76849 76732 70762 16 1 1792381 76849 70762 76732 16 -1 1792382 76849 70701 76656 16 1 1792383 76849 76656 70701 16 -1 1792384 76849 76685 76655 16 1 1792385 76849 76655 76685 16 -1 1792386 76849 70757 76625 16 1 1792387 76849 76625 70757 16 -1 1792388 76849 76600 76764 16 1 1792389 76849 76764 76600 16 -1 1792390 76849 76675 76626 16 1 1792391 76849 76626 76675 16 -1 1792392 76849 76820 76771 16 1 1792393 76849 76771 76820 16 -1 1792394 76849 70772 76823 16 1 1792395 76849 76823 70772 16 -1 1792396 76849 70726 76649 16 1 1792397 76849 76649 70726 16 -1 1792398 76849 70739 76769 16 1 1792399 76849 76769 70739 16 -1 1792400 76849 76654 76730 16 1 1792401 76849 76730 76654 16 -1 1792402 76849 76705 70707 16 1 1792403 76849 70707 76705 16 -1 1792404 76849 76830 76788 16 1 1792405 76849 76788 76830 16 -1 1792406 76849 70754 76751 16 1 1792407 76849 76751 70754 16 -1 1792408 76849 70687 76757 16 1 1792409 76849 76757 70687 16 -1 1792410 76849 70778 76706 16 1 1792411 76849 76706 70778 16 -1 1792412 76849 70712 76686 16 1 1792413 76849 76686 70712 16 -1 1792414 76849 70680 76571 16 1 1792415 76849 76571 70680 16 -1 1792416 76849 76598 76627 16 1 1792417 76849 76627 76598 16 -1 1792418 76849 70705 76627 16 1 1792419 76849 76627 70705 16 -1 1792420 76849 70780 76839 16 1 1792421 76849 76839 70780 16 -1 1792422 76849 76573 70729 16 1 1792423 76849 70729 76573 16 -1 1792424 76849 70696 76791 16 1 1792425 76849 76791 70696 16 -1 1792426 76849 70690 76789 16 1 1792427 76849 76789 70690 16 -1 1792428 76849 70722 76540 16 1 1792429 76849 76540 70722 16 -1 1792430 76849 76697 76793 16 1 1792431 76849 76793 76697 16 -1 1792432 76849 76756 76794 16 1 1792433 76849 76794 76756 16 -1 1792434 76849 76815 76627 16 1 1792435 76849 76627 76815 16 -1 1792436 76849 76560 76736 16 1 1792437 76849 76736 76560 16 -1 1792438 1 70668 70681 16 1 1792439 1 70681 70668 16 -1 1792440 1 70668 70691 16 1 1792441 1 70691 70668 16 -1 1792442 76849 70668 76653 16 1 1792443 76849 76653 70668 16 -1 1792444 76849 70742 76581 16 1 1792445 76849 76581 70742 16 -1 1792446 76849 70670 76608 16 1 1792447 76849 76608 70670 16 -1 1792448 76849 76694 70774 16 1 1792449 76849 70774 76694 16 -1 1792941 10 70678 76545 16 -1 1792942 10 76545 70760 16 2 1792943 10 76757 70776 16 1 1792944 10 70776 76757 16 -1 1792945 10 76757 70760 16 2 1792946 10 76787 70776 16 1 1792947 10 70776 76787 16 -1 1792948 10 76787 70760 16 2 1792949 10 76602 70678 16 1 1792950 10 70678 76602 16 -1 1792951 10 76602 70760 16 2 1792952 10 76601 70750 16 1 1792953 10 70750 76601 16 -1 1792954 10 76601 70760 16 2 1792955 10 70774 70735 16 1 1792956 10 70735 70774 16 -1 1792957 10 70774 70766 16 2 1792958 10 70774 70716 16 3 1792959 10 70774 70760 16 4 1792960 10 76651 70776 16 1 1792961 10 70776 76651 16 -1 1792962 10 76651 70760 16 2 1792963 10 76656 70735 16 1 1792964 10 70735 76656 16 -1 1792965 10 76656 70766 16 2 1792966 10 76656 70716 16 3 1792967 10 76656 70760 16 4 1792968 10 76719 70776 16 1 1792969 10 70776 76719 16 -1 1792970 10 76719 70760 16 2 1792971 10 70714 70738 16 1 1792972 10 70738 70714 16 -1 1792973 10 70714 70766 16 2 1792974 10 70766 70738 16 -2 1792975 10 70738 70766 16 1 1792976 10 70766 70738 16 -1 1792977 10 70714 70716 16 3 1792978 10 70738 70716 16 2 1792979 10 70714 70760 16 4 1792980 10 70738 70760 16 3 1792981 10 76801 70678 16 1 1792982 10 70678 76801 16 -1 1792983 10 76801 70760 16 2 1792984 10 76683 70776 16 1 1792985 10 70776 76683 16 -1 1792986 10 76683 70760 16 2 1792987 10 76557 70756 16 1 1792988 10 70756 76557 16 -1 1792989 10 76557 70766 16 2 1792990 10 76557 70716 16 3 1792991 10 76557 70760 16 4 1792992 10 76699 70756 16 1 1792993 10 70756 76699 16 -1 1792994 10 76699 70766 16 2 1792995 10 76699 70716 16 3 1792996 10 76699 70760 16 4 1792997 10 76807 70776 16 1 1792998 10 70776 76807 16 -1 1792999 10 76807 70760 16 2 1793000 10 76809 70678 16 1 1793001 10 70678 76809 16 -1 1793002 10 76809 70760 16 2 1793003 10 70731 70738 16 1 1793004 10 70738 70731 16 -1 1793005 10 70731 70766 16 2 1793006 10 70731 70716 16 3 1793007 10 70731 70760 16 4 1793008 10 76758 70750 16 1 1793009 10 70750 76758 16 -1 1793010 10 76758 70760 16 2 1793011 10 76596 70776 16 1 1793012 10 70776 76596 16 -1 1793013 10 76596 70760 16 2 1793014 10 76577 70750 16 1 1793015 10 70750 76577 16 -1 1793016 10 76577 70760 16 2 1793017 10 76814 70776 16 1 1793018 10 70776 76814 16 -1 1793019 10 76814 70760 16 2 1793020 10 76832 70756 16 1 1793021 10 70756 76832 16 -1 1793022 10 76832 70766 16 2 1793023 10 76832 70716 16 3 1793024 10 76832 70760 16 4 1793025 10 76639 70776 16 1 1793026 10 70776 76639 16 -1 1793027 10 76639 70760 16 2 1793028 10 76741 70750 16 1 1793029 10 70750 76741 16 -1 1793030 10 76741 70760 16 2 1793031 10 76798 70776 16 1 1793032 10 70776 76798 16 -1 1793033 10 76798 70760 16 2 1793034 10 76672 70750 16 1 1793035 10 70750 76672 16 -1 1793036 10 76672 70760 16 2 1793037 10 76539 70750 16 1 1793038 10 70750 76539 16 -1 1793039 10 76539 70760 16 2 1793040 10 76751 70750 16 1 1793041 10 70750 76751 16 -1 1793042 10 76751 70760 16 2 1793043 10 76766 70683 16 1 1793044 10 70683 76766 16 -1 1793045 10 76766 70760 16 2 1793046 10 76836 70776 16 1 1793047 10 70776 76836 16 -1 1793048 10 76836 70760 16 2 1793049 10 76607 70776 16 1 1793050 10 70776 76607 16 -1 1793051 10 76607 70760 16 2 1793052 10 76668 70750 16 1 1793053 10 70750 76668 16 -1 1793054 10 76668 70760 16 2 1793055 10 76661 70776 16 1 1793056 10 70776 76661 16 -1 1793057 10 76661 70760 16 2 1793058 10 76553 70776 16 1 1793059 10 70776 76553 16 -1 1793060 10 76553 70760 16 2 1793061 10 76540 70776 16 1 1793062 10 70776 76540 16 -1 1793063 10 76540 70760 16 2 1793064 10 76769 70750 16 1 1793065 10 70750 76769 16 -1 1793066 10 76769 70760 16 2 1793067 10 76609 70776 16 1 1793068 10 70776 76609 16 -1 1793069 10 76609 70760 16 2 1793070 10 76736 70678 16 1 1793071 10 70678 76736 16 -1 1793072 10 76736 70760 16 2 1793073 10 76791 70756 16 1 1793074 10 70756 76791 16 -1 1793075 10 76791 70766 16 2 1793076 10 76791 70716 16 3 1793077 10 76791 70760 16 4 1793078 10 76765 70750 16 1 1793079 10 70750 76765 16 -1 1793080 10 76765 70760 16 2 1793081 10 76628 70776 16 1 1793082 10 70776 76628 16 -1 1793083 10 76628 70760 16 2 1793084 10 76690 70750 16 1 1793085 10 70750 76690 16 -1 1793086 10 76690 70760 16 2 1793087 10 76568 70750 16 1 1793088 10 70750 76568 16 -1 1793089 10 76568 70760 16 2 1793090 10 76543 70750 16 1 1793091 10 70750 76543 16 -1 1793092 10 76543 70760 16 2 1793093 10 76788 70756 16 1 1793094 10 70756 76788 16 -1 1793095 10 76788 70766 16 2 1793096 10 76788 70716 16 3 1793097 10 76788 70760 16 4 1793098 10 76727 70776 16 1 1793099 10 70776 76727 16 -1 1793100 10 76727 70760 16 2 1793101 10 76657 70750 16 1 1793102 10 70750 76657 16 -1 1793103 10 76657 70760 16 2 1793104 10 76793 70776 16 1 1793105 10 70776 76793 16 -1 1793106 10 76793 70760 16 2 1793107 10 76754 70776 16 1 1793108 10 70776 76754 16 -1 1793109 10 76754 70760 16 2 1793110 10 70762 70735 16 1 1793111 10 70735 70762 16 -1 1793112 10 70762 70766 16 2 1793113 10 70762 70716 16 3 1793114 10 70762 70760 16 4 1793115 10 76610 70678 16 1 1793116 10 70678 76610 16 -1 1793117 10 76610 70760 16 2 1793118 10 76794 70750 16 1 1793119 10 70750 76794 16 -1 1793120 10 76794 70760 16 2 1793121 10 76803 70750 16 1 1793122 10 70750 76803 16 -1 1793123 10 76803 70760 16 2 1793124 10 76712 70756 16 1 1793125 10 70756 76712 16 -1 1793126 10 76712 70766 16 2 1793127 10 76712 70716 16 3 1793128 10 76712 70760 16 4 1793129 10 76569 70750 16 1 1793130 10 70750 76569 16 -1 1793131 10 76569 70760 16 2 1793132 10 76821 70750 16 1 1793133 10 70750 76821 16 -1 1793134 10 76821 70760 16 2 1793135 10 76663 70776 16 1 1793136 10 70776 76663 16 -1 1793137 10 76663 70760 16 2 1793138 10 76632 70776 16 1 1793139 10 70776 76632 16 -1 1793140 10 76632 70760 16 2 1793141 10 76613 70776 16 1 1793142 10 70776 76613 16 -1 1793143 10 76613 70760 16 2 1793144 10 76563 70750 16 1 1793145 10 70750 76563 16 -1 1793146 10 76563 70760 16 2 1793147 10 76823 70776 16 1 1793148 10 70776 76823 16 -1 1793149 10 76823 70760 16 2 1793150 10 76616 70776 16 1 1793151 10 70776 76616 16 -1 1793152 10 76616 70760 16 2 1793153 10 76707 70678 16 1 1793154 10 70678 76707 16 -1 1793155 10 76707 70760 16 2 1793156 10 76644 70678 16 1 1793157 10 70678 76644 16 -1 1793158 10 76644 70760 16 2 1793159 10 76772 70750 16 1 1793160 10 70750 76772 16 -1 1793161 10 76772 70760 16 2 1793162 10 76583 70776 16 1 1793163 10 70776 76583 16 -1 1793164 10 76583 70760 16 2 1793165 10 76790 70678 16 1 1793166 10 70678 76790 16 -1 1793167 10 76790 70760 16 2 1793168 10 76846 70678 16 1 1793169 10 70678 76846 16 -1 1793170 10 76846 70760 16 2 1793171 10 76837 70776 16 1 1793172 10 70776 76837 16 -1 1793173 10 76837 70760 16 2 1793174 10 76778 70750 16 1 1793175 10 70750 76778 16 -1 1793176 10 76778 70760 16 2 1793177 10 76649 70776 16 1 1793178 10 70776 76649 16 -1 1793179 10 76649 70760 16 2 1793180 10 76626 70678 16 1 1793181 10 70678 76626 16 -1 1793182 10 76626 70760 16 2 1793183 10 76730 70678 16 1 1793184 10 70678 76730 16 -1 1793185 10 76730 70760 16 2 1793186 10 76561 70750 16 1 1793187 10 70750 76561 16 -1 1793188 10 76561 70760 16 2 1793189 10 76784 70678 16 1 1793190 10 70678 76784 16 -1 1793191 10 76784 70760 16 2 1793192 10 76703 70756 16 1 1793193 10 70756 76703 16 -1 1793194 10 76703 70766 16 2 1793195 10 76703 70716 16 3 1793196 10 76703 70760 16 4 1793197 10 76579 70756 16 1 1793198 10 70756 76579 16 -1 1793199 10 76579 70766 16 2 1793200 10 76579 70716 16 3 1793201 10 76579 70760 16 4 1793202 10 76674 70678 16 1 1793203 10 70678 76674 16 -1 1793204 10 76674 70760 16 2 1793205 10 76710 70776 16 1 1793206 10 70776 76710 16 -1 1793207 10 76710 70760 16 2 1793208 10 76566 70756 16 1 1793209 10 70756 76566 16 -1 1793210 10 76566 70766 16 2 1793211 10 76566 70716 16 3 1793212 10 76566 70760 16 4 1793213 10 76822 70776 16 1 1793214 10 70776 76822 16 -1 1793215 10 76822 70760 16 2 1793216 10 76708 70776 16 1 1793217 10 70776 76708 16 -1 1793218 10 76708 70760 16 2 1793219 10 76650 70678 16 1 1793220 10 70678 76650 16 -1 1793221 10 76650 70760 16 2 1793222 10 76762 70750 16 1 1793223 10 70750 76762 16 -1 1793224 10 76762 70760 16 2 1793225 10 76686 70678 16 1 1793226 10 70678 76686 16 -1 1793227 10 76686 70760 16 2 1793228 10 76603 70776 16 1 1793229 10 70776 76603 16 -1 1793230 10 76603 70760 16 2 1793231 10 76681 70678 16 1 1793232 10 70678 76681 16 -1 1793233 10 76681 70760 16 2 1793234 10 76720 70750 16 1 1793235 10 70750 76720 16 -1 1793236 10 76720 70760 16 2 1793237 10 76806 70678 16 1 1793238 10 70678 76806 16 -1 1793239 10 76806 70760 16 2 1793240 10 76733 70756 16 1 1793241 10 70756 76733 16 -1 1793242 10 76733 70766 16 2 1793243 10 76733 70716 16 3 1793244 10 76733 70760 16 4 1793245 10 76641 70776 16 1 1793246 10 70776 76641 16 -1 1793247 10 76641 70760 16 2 1793248 10 76581 70776 16 1 1793249 10 70776 76581 16 -1 1793250 10 76581 70760 16 2 1793251 10 70767 70756 16 1 1793252 10 70756 70767 16 -1 1793253 10 70767 70766 16 2 1793254 10 70767 70716 16 3 1793255 10 70767 70760 16 4 1793256 10 76554 70776 16 1 1793257 10 70776 76554 16 -1 1793258 10 76554 70760 16 2 1793259 10 76637 70776 16 1 1793260 10 70776 76637 16 -1 1793261 10 76637 70760 16 2 1793262 10 76729 70678 16 1 1793263 10 70678 76729 16 -1 1793264 10 76729 70760 16 2 1793265 10 76556 70776 16 1 1793266 10 70776 76556 16 -1 1793267 10 76556 70760 16 2 1793268 10 76759 70750 16 1 1793269 10 70750 76759 16 -1 1793270 10 76759 70760 16 2 1793271 10 70659 76677 16 1 1793272 10 76677 70659 16 -1 1793273 10 70659 70683 16 2 1793274 10 70683 76677 16 -2 1793275 10 70659 70760 16 3 1793276 10 70760 70683 16 -3 1793277 10 70660 76778 16 1 1793278 10 76778 70660 16 -1 1793279 10 70660 70750 16 2 1793280 10 70750 76778 16 -2 1793281 10 70660 70760 16 3 1793282 10 70760 70750 16 -3 1793283 10 70661 76691 16 1 1793284 10 76691 70661 16 -1 1793285 10 70661 70776 16 2 1793286 10 70776 76691 16 -2 1793287 10 70661 70760 16 3 1793288 10 70760 70776 16 -3 1793289 10 70662 76663 16 1 1793290 10 76663 70662 16 -1 1793291 10 70662 70776 16 2 1793292 10 70776 76663 16 -2 1793293 10 70662 70760 16 3 1793294 10 70663 76539 16 1 1793295 10 76539 70663 16 -1 1793296 10 70663 70750 16 2 1793297 10 70750 76539 16 -2 1793298 10 70663 70760 16 3 1793299 10 70664 76733 16 1 1793300 10 76733 70664 16 -1 1793301 10 70664 70756 16 2 1793302 10 70756 76733 16 -2 1793303 10 70664 70766 16 3 1793304 10 70766 70756 16 -3 1793305 10 70664 70716 16 4 1793306 10 70716 70766 16 -4 1793307 10 70664 70760 16 5 1793308 10 70760 70716 16 -5 1793309 10 70665 76623 16 1 1793310 10 76623 70665 16 -1 1793311 10 70665 70776 16 2 1793312 10 70776 76623 16 -2 1793313 10 70665 70760 16 3 1793314 10 70666 76681 16 1 1793315 10 76681 70666 16 -1 1793316 10 70666 70678 16 2 1793317 10 70678 76681 16 -2 1793318 10 70666 70760 16 3 1793319 10 70760 70678 16 -3 1793320 10 70667 76709 16 1 1793321 10 76709 70667 16 -1 1793322 10 70667 70776 16 2 1793323 10 70776 76709 16 -2 1793324 10 70667 70760 16 3 1793325 10 70668 76653 16 1 1793326 10 76653 70668 16 -1 1793327 10 70668 70678 16 2 1793328 10 70678 76653 16 -2 1793329 10 70668 70760 16 3 1793330 10 70668 70691 16 1 1793331 10 70691 70668 16 -1 1793332 10 70668 76640 16 2 1793333 10 76640 70691 16 -2 1793334 10 70691 76640 16 1 1793335 10 76640 70691 16 -1 1793336 10 70668 70678 16 3 1793337 10 70678 76640 16 -3 1793338 10 70691 70678 16 2 1793339 10 70678 76640 16 -2 1793340 10 70668 70760 16 4 1793341 10 70760 70678 16 -4 1793342 10 70691 70760 16 3 1793343 10 70668 70681 16 1 1793344 10 70681 70668 16 -1 1793345 10 70681 76640 16 2 1793346 10 76640 70681 16 -2 1793347 10 70681 70678 16 3 1793348 10 76640 70678 16 2 1793349 10 70681 70760 16 4 1793350 10 76640 70760 16 3 1793351 10 70678 70760 16 2 1793352 10 70669 76582 16 1 1793353 10 76582 70669 16 -1 1793354 10 70669 70750 16 2 1793355 10 70750 76582 16 -2 1793356 10 70669 70760 16 3 1793357 10 70670 76608 16 1 1793358 10 76608 70670 16 -1 1793359 10 70670 70776 16 2 1793360 10 70776 76608 16 -2 1793361 10 70670 70760 16 3 1793362 10 70672 76767 16 1 1793363 10 76767 70672 16 -1 1793364 10 70672 70678 16 2 1793365 10 70678 76767 16 -2 1793366 10 70672 70760 16 3 1793367 10 70674 76680 16 1 1793368 10 76680 70674 16 -1 1793369 10 70674 70678 16 2 1793370 10 70678 76680 16 -2 1793371 10 70674 70760 16 3 1793372 10 70675 76829 16 1 1793373 10 76829 70675 16 -1 1793374 10 70675 70678 16 2 1793375 10 70678 76829 16 -2 1793376 10 70675 70760 16 3 1793377 10 70676 76672 16 1 1793378 10 76672 70676 16 -1 1793379 10 70676 70750 16 2 1793380 10 70750 76672 16 -2 1793381 10 70676 70760 16 3 1793382 10 70677 76588 16 1 1793383 10 76588 70677 16 -1 1793384 10 70677 70750 16 2 1793385 10 70750 76588 16 -2 1793386 10 70677 70760 16 3 1793387 10 70679 76837 16 1 1793388 10 76837 70679 16 -1 1793389 10 70679 70776 16 2 1793390 10 70776 76837 16 -2 1793391 10 70679 70760 16 3 1793392 10 70680 76571 16 1 1793393 10 76571 70680 16 -1 1793394 10 70680 70776 16 2 1793395 10 70776 76571 16 -2 1793396 10 70680 70760 16 3 1793397 10 70682 76543 16 1 1793398 10 76543 70682 16 -1 1793399 10 70682 70750 16 2 1793400 10 70750 76543 16 -2 1793401 10 70682 70760 16 3 1793402 10 70684 76836 16 1 1793403 10 76836 70684 16 -1 1793404 10 70684 70776 16 2 1793405 10 70776 76836 16 -2 1793406 10 70684 70760 16 3 1793407 10 70685 76683 16 1 1793408 10 76683 70685 16 -1 1793409 10 70685 70776 16 2 1793410 10 70776 76683 16 -2 1793411 10 70685 70760 16 3 1793412 10 70686 76668 16 1 1793413 10 76668 70686 16 -1 1793414 10 70686 70750 16 2 1793415 10 70750 76668 16 -2 1793416 10 70686 70760 16 3 1793417 10 70687 76757 16 1 1793418 10 76757 70687 16 -1 1793419 10 70687 70776 16 2 1793420 10 70776 76757 16 -2 1793421 10 70687 70760 16 3 1793422 10 70688 76577 16 1 1793423 10 76577 70688 16 -1 1793424 10 70688 70750 16 2 1793425 10 70750 76577 16 -2 1793426 10 70688 70760 16 3 1793427 10 70689 76814 16 1 1793428 10 76814 70689 16 -1 1793429 10 70689 70776 16 2 1793430 10 70776 76814 16 -2 1793431 10 70689 70760 16 3 1793432 10 70690 76789 16 1 1793433 10 76789 70690 16 -1 1793434 10 70690 70756 16 2 1793435 10 70756 76789 16 -2 1793436 10 70690 70766 16 3 1793437 10 70690 70716 16 4 1793438 10 70690 70760 16 5 1793439 10 70692 76766 16 1 1793440 10 76766 70692 16 -1 1793441 10 70692 70683 16 2 1793442 10 70683 76766 16 -2 1793443 10 70692 70760 16 3 1793444 10 70693 76616 16 1 1793445 10 76616 70693 16 -1 1793446 10 70693 70776 16 2 1793447 10 70776 76616 16 -2 1793448 10 70693 70760 16 3 1793449 10 70694 76657 16 1 1793450 10 76657 70694 16 -1 1793451 10 70694 70750 16 2 1793452 10 70750 76657 16 -2 1793453 10 70694 70760 16 3 1793454 10 70695 76690 16 1 1793455 10 76690 70695 16 -1 1793456 10 70695 70750 16 2 1793457 10 70750 76690 16 -2 1793458 10 70695 70760 16 3 1793459 10 70696 76791 16 1 1793460 10 76791 70696 16 -1 1793461 10 70696 70756 16 2 1793462 10 70756 76791 16 -2 1793463 10 70696 70766 16 3 1793464 10 70696 70716 16 4 1793465 10 70696 70760 16 5 1793466 10 70697 76720 16 1 1793467 10 76720 70697 16 -1 1793468 10 70697 70750 16 2 1793469 10 70750 76720 16 -2 1793470 10 70697 70760 16 3 1793471 10 70698 76807 16 1 1793472 10 76807 70698 16 -1 1793473 10 70698 70776 16 2 1793474 10 70776 76807 16 -2 1793475 10 70698 70760 16 3 1793476 10 70699 76550 16 1 1793477 10 76550 70699 16 -1 1793478 10 70699 70776 16 2 1793479 10 70776 76550 16 -2 1793480 10 70699 70760 16 3 1793481 10 70700 76593 16 1 1793482 10 76593 70700 16 -1 1793483 10 70700 70678 16 2 1793484 10 70678 76593 16 -2 1793485 10 70700 70760 16 3 1793486 10 70701 76656 16 1 1793487 10 76656 70701 16 -1 1793488 10 70701 70735 16 2 1793489 10 70735 76656 16 -2 1793490 10 70701 70766 16 3 1793491 10 70766 70735 16 -3 1793492 10 70701 70716 16 4 1793493 10 70701 70760 16 5 1793494 10 70702 76754 16 1 1793495 10 76754 70702 16 -1 1793496 10 70702 70776 16 2 1793497 10 70776 76754 16 -2 1793498 10 70702 70760 16 3 1793499 10 70703 76787 16 1 1793500 10 76787 70703 16 -1 1793501 10 70703 70776 16 2 1793502 10 70776 76787 16 -2 1793503 10 70703 70760 16 3 1793504 10 70704 76596 16 1 1793505 10 76596 70704 16 -1 1793506 10 70704 70776 16 2 1793507 10 70776 76596 16 -2 1793508 10 70704 70760 16 3 1793509 10 70705 76627 16 1 1793510 10 76627 70705 16 -1 1793511 10 70705 70683 16 2 1793512 10 70683 76627 16 -2 1793513 10 70705 70760 16 3 1793514 10 70706 76606 16 1 1793515 10 76606 70706 16 -1 1793516 10 70706 70678 16 2 1793517 10 70678 76606 16 -2 1793518 10 70706 70760 16 3 1793519 10 70709 76833 16 1 1793520 10 76833 70709 16 -1 1793521 10 70709 70750 16 2 1793522 10 70750 76833 16 -2 1793523 10 70709 70760 16 3 1793524 10 70710 76768 16 1 1793525 10 76768 70710 16 -1 1793526 10 70710 70776 16 2 1793527 10 70776 76768 16 -2 1793528 10 70710 70760 16 3 1793529 10 70711 76772 16 1 1793530 10 76772 70711 16 -1 1793531 10 70711 70750 16 2 1793532 10 70750 76772 16 -2 1793533 10 70711 70760 16 3 1793534 10 70712 76686 16 1 1793535 10 76686 70712 16 -1 1793536 10 70712 70678 16 2 1793537 10 70678 76686 16 -2 1793538 10 70712 70760 16 3 1793539 10 70713 76770 16 1 1793540 10 76770 70713 16 -1 1793541 10 70713 70776 16 2 1793542 10 70776 76770 16 -2 1793543 10 70713 70760 16 3 1793544 10 70715 76695 16 1 1793545 10 76695 70715 16 -1 1793546 10 70715 70776 16 2 1793547 10 70776 76695 16 -2 1793548 10 70715 70760 16 3 1793549 10 70717 76713 16 1 1793550 10 76713 70717 16 -1 1793551 10 70717 70776 16 2 1793552 10 70776 76713 16 -2 1793553 10 70717 70760 16 3 1793554 10 70718 76603 16 1 1793555 10 76603 70718 16 -1 1793556 10 70718 70776 16 2 1793557 10 70776 76603 16 -2 1793558 10 70718 70760 16 3 1793559 10 70721 76742 16 1 1793560 10 76742 70721 16 -1 1793561 10 70721 70776 16 2 1793562 10 70776 76742 16 -2 1793563 10 70721 70760 16 3 1793564 10 70722 76540 16 1 1793565 10 76540 70722 16 -1 1793566 10 70722 70776 16 2 1793567 10 70776 76540 16 -2 1793568 10 70722 70760 16 3 1793569 10 70723 76541 16 1 1793570 10 76541 70723 16 -1 1793571 10 70723 70756 16 2 1793572 10 70756 76541 16 -2 1793573 10 70723 70766 16 3 1793574 10 70723 70716 16 4 1793575 10 70723 70760 16 5 1793576 10 70724 76641 16 1 1793577 10 76641 70724 16 -1 1793578 10 70724 70776 16 2 1793579 10 70776 76641 16 -2 1793580 10 70724 70760 16 3 1793581 10 70725 76813 16 1 1793582 10 76813 70725 16 -1 1793583 10 70725 70678 16 2 1793584 10 70678 76813 16 -2 1793585 10 70725 70760 16 3 1793586 10 70726 76649 16 1 1793587 10 76649 70726 16 -1 1793588 10 70726 70776 16 2 1793589 10 70776 76649 16 -2 1793590 10 70726 70760 16 3 1793591 10 70727 76640 16 1 1793592 10 76640 70727 16 -1 1793593 10 70727 70678 16 2 1793594 10 70727 70760 16 3 1793595 10 70728 76563 16 1 1793596 10 76563 70728 16 -1 1793597 10 70728 70750 16 2 1793598 10 70750 76563 16 -2 1793599 10 70728 70760 16 3 1793600 10 70730 76817 16 1 1793601 10 76817 70730 16 -1 1793602 10 70730 70678 16 2 1793603 10 70678 76817 16 -2 1793604 10 70730 70760 16 3 1793605 10 70732 76601 16 1 1793606 10 76601 70732 16 -1 1793607 10 70732 70750 16 2 1793608 10 70750 76601 16 -2 1793609 10 70732 70760 16 3 1793610 10 70733 76700 16 1 1793611 10 76700 70733 16 -1 1793612 10 70733 70776 16 2 1793613 10 70776 76700 16 -2 1793614 10 70733 70760 16 3 1793615 10 70734 76684 16 1 1793616 10 76684 70734 16 -1 1793617 10 70734 70776 16 2 1793618 10 70776 76684 16 -2 1793619 10 70734 70760 16 3 1793620 10 70736 76629 16 1 1793621 10 76629 70736 16 -1 1793622 10 70736 70750 16 2 1793623 10 70750 76629 16 -2 1793624 10 70736 70760 16 3 1793625 10 70737 76795 16 1 1793626 10 76795 70737 16 -1 1793627 10 70737 70776 16 2 1793628 10 70776 76795 16 -2 1793629 10 70737 70760 16 3 1793630 10 70739 76769 16 1 1793631 10 76769 70739 16 -1 1793632 10 70739 70750 16 2 1793633 10 70750 76769 16 -2 1793634 10 70739 70760 16 3 1793635 10 70740 76602 16 1 1793636 10 76602 70740 16 -1 1793637 10 70740 70678 16 2 1793638 10 70678 76602 16 -2 1793639 10 70740 70760 16 3 1793640 10 70741 76762 16 1 1793641 10 76762 70741 16 -1 1793642 10 70741 70750 16 2 1793643 10 70750 76762 16 -2 1793644 10 70741 70760 16 3 1793645 10 70742 76581 16 1 1793646 10 76581 70742 16 -1 1793647 10 70742 70776 16 2 1793648 10 70776 76581 16 -2 1793649 10 70742 70760 16 3 1793650 10 70743 76710 16 1 1793651 10 76710 70743 16 -1 1793652 10 70743 70776 16 2 1793653 10 70776 76710 16 -2 1793654 10 70743 70760 16 3 1793655 10 70744 76734 16 1 1793656 10 76734 70744 16 -1 1793657 10 70744 70750 16 2 1793658 10 70750 76734 16 -2 1793659 10 70744 70760 16 3 1793660 10 70745 76607 16 1 1793661 10 76607 70745 16 -1 1793662 10 70745 70776 16 2 1793663 10 70776 76607 16 -2 1793664 10 70745 70760 16 3 1793665 10 70746 76797 16 1 1793666 10 76797 70746 16 -1 1793667 10 70746 70750 16 2 1793668 10 70750 76797 16 -2 1793669 10 70746 70760 16 3 1793670 10 70747 76631 16 1 1793671 10 76631 70747 16 -1 1793672 10 70747 70776 16 2 1793673 10 70776 76631 16 -2 1793674 10 70747 70760 16 3 1793675 10 70748 76758 16 1 1793676 10 76758 70748 16 -1 1793677 10 70748 70750 16 2 1793678 10 70750 76758 16 -2 1793679 10 70748 70760 16 3 1793680 10 70749 76790 16 1 1793681 10 76790 70749 16 -1 1793682 10 70749 70678 16 2 1793683 10 70678 76790 16 -2 1793684 10 70749 70760 16 3 1793685 10 70751 76727 16 1 1793686 10 76727 70751 16 -1 1793687 10 70751 70776 16 2 1793688 10 70776 76727 16 -2 1793689 10 70751 70760 16 3 1793690 10 70752 76561 16 1 1793691 10 76561 70752 16 -1 1793692 10 70752 70750 16 2 1793693 10 70750 76561 16 -2 1793694 10 70752 70760 16 3 1793695 10 70753 76666 16 1 1793696 10 76666 70753 16 -1 1793697 10 70753 70776 16 2 1793698 10 70776 76666 16 -2 1793699 10 70753 70760 16 3 1793700 10 70754 76751 16 1 1793701 10 76751 70754 16 -1 1793702 10 70754 70750 16 2 1793703 10 70750 76751 16 -2 1793704 10 70754 70760 16 3 1793705 10 70755 76657 16 1 1793706 10 76657 70755 16 -1 1793707 10 70755 70750 16 2 1793708 10 70755 70760 16 3 1793709 10 70750 70760 16 2 1793710 10 70757 76625 16 1 1793711 10 76625 70757 16 -1 1793712 10 70757 70776 16 2 1793713 10 70776 76625 16 -2 1793714 10 70757 70760 16 3 1793715 10 70758 76699 16 1 1793716 10 76699 70758 16 -1 1793717 10 70758 70756 16 2 1793718 10 70756 76699 16 -2 1793719 10 70758 70766 16 3 1793720 10 70758 70716 16 4 1793721 10 70758 70760 16 5 1793722 10 70759 76704 16 1 1793723 10 76704 70759 16 -1 1793724 10 70759 70776 16 2 1793725 10 70776 76704 16 -2 1793726 10 70759 70760 16 3 1793727 10 70761 76843 16 1 1793728 10 76843 70761 16 -1 1793729 10 70761 70750 16 2 1793730 10 70750 76843 16 -2 1793731 10 70761 70760 16 3 1793732 10 70763 76795 16 1 1793733 10 76795 70763 16 -1 1793734 10 70763 70776 16 2 1793735 10 70763 70760 16 3 1793736 10 70776 70760 16 2 1793737 10 70764 76562 16 1 1793738 10 76562 70764 16 -1 1793739 10 70764 70776 16 2 1793740 10 70776 76562 16 -2 1793741 10 70764 70760 16 3 1793742 10 70765 76626 16 1 1793743 10 76626 70765 16 -1 1793744 10 70765 70678 16 2 1793745 10 70678 76626 16 -2 1793746 10 70765 70760 16 3 1793747 10 70768 76566 16 1 1793748 10 76566 70768 16 -1 1793749 10 70768 70756 16 2 1793750 10 70756 76566 16 -2 1793751 10 70768 70766 16 3 1793752 10 70768 70716 16 4 1793753 10 70768 70760 16 5 1793754 10 70769 76800 16 1 1793755 10 76800 70769 16 -1 1793756 10 70769 70776 16 2 1793757 10 70776 76800 16 -2 1793758 10 70769 70760 16 3 1793759 10 70770 76583 16 1 1793760 10 76583 70770 16 -1 1793761 10 70770 70776 16 2 1793762 10 70776 76583 16 -2 1793763 10 70770 70760 16 3 1793764 10 70771 76840 16 1 1793765 10 76840 70771 16 -1 1793766 10 70771 70750 16 2 1793767 10 70750 76840 16 -2 1793768 10 70771 70760 16 3 1793769 10 70772 76823 16 1 1793770 10 76823 70772 16 -1 1793771 10 70772 70776 16 2 1793772 10 70776 76823 16 -2 1793773 10 70772 70760 16 3 1793774 10 70773 76586 16 1 1793775 10 76586 70773 16 -1 1793776 10 70773 70678 16 2 1793777 10 70678 76586 16 -2 1793778 10 70773 70760 16 3 1793779 10 70775 76811 16 1 1793780 10 76811 70775 16 -1 1793781 10 70775 70678 16 2 1793782 10 70678 76811 16 -2 1793783 10 70775 70760 16 3 1793784 10 70778 76706 16 1 1793785 10 76706 70778 16 -1 1793786 10 70778 70776 16 2 1793787 10 70776 76706 16 -2 1793788 10 70778 70760 16 3 1793789 10 70779 76703 16 1 1793790 10 76703 70779 16 -1 1793791 10 70779 70756 16 2 1793792 10 70756 76703 16 -2 1793793 10 70779 70766 16 3 1793794 10 70779 70716 16 4 1793795 10 70779 70760 16 5 1793796 10 70780 76839 16 1 1793797 10 76839 70780 16 -1 1793798 10 70780 70756 16 2 1793799 10 70756 76839 16 -2 1793800 10 70780 70766 16 3 1793801 10 70780 70716 16 4 1793802 10 70780 70760 16 5 1793803 10 70781 76585 16 1 1793804 10 76585 70781 16 -1 1793805 10 70781 70678 16 2 1793806 10 70678 76585 16 -2 1793807 10 70781 70760 16 3 1793808 10 76535 76546 16 1 1793809 10 76546 76535 16 -1 1793810 10 76535 70678 16 2 1793811 10 70678 76546 16 -2 1793812 10 76535 70760 16 3 1793813 10 76536 76832 16 1 1793814 10 76832 76536 16 -1 1793815 10 76536 70756 16 2 1793816 10 70756 76832 16 -2 1793817 10 76536 70766 16 3 1793818 10 76536 70716 16 4 1793819 10 76536 70760 16 5 1793820 10 76537 76765 16 1 1793821 10 76765 76537 16 -1 1793822 10 76537 70750 16 2 1793823 10 70750 76765 16 -2 1793824 10 76537 70760 16 3 1793825 10 76538 76836 16 1 1793826 10 76836 76538 16 -1 1793827 10 76538 70776 16 2 1793828 10 76538 70760 16 3 1793829 10 76542 76801 16 1 1793830 10 76801 76542 16 -1 1793831 10 76542 70678 16 2 1793832 10 70678 76801 16 -2 1793833 10 76542 70760 16 3 1793834 10 76544 76719 16 1 1793835 10 76719 76544 16 -1 1793836 10 76544 70776 16 2 1793837 10 70776 76719 16 -2 1793838 10 76544 70760 16 3 1793839 10 76547 76681 16 1 1793840 10 76681 76547 16 -1 1793841 10 76547 70678 16 2 1793842 10 76547 70760 16 3 1793843 10 76548 76627 16 1 1793844 10 76627 76548 16 -1 1793845 10 76548 70683 16 2 1793846 10 76548 70760 16 3 1793847 10 70683 70760 16 2 1793848 10 76549 76736 16 1 1793849 10 76736 76549 16 -1 1793850 10 76549 70678 16 2 1793851 10 70678 76736 16 -2 1793852 10 76549 70760 16 3 1793853 10 76551 76749 16 1 1793854 10 76749 76551 16 -1 1793855 10 76551 70750 16 2 1793856 10 70750 76749 16 -2 1793857 10 76551 70760 16 3 1793858 10 76555 76721 16 1 1793859 10 76721 76555 16 -1 1793860 10 76555 70678 16 2 1793861 10 70678 76721 16 -2 1793862 10 76555 70760 16 3 1793863 10 76558 76712 16 1 1793864 10 76712 76558 16 -1 1793865 10 76558 70756 16 2 1793866 10 70756 76712 16 -2 1793867 10 76558 70766 16 3 1793868 10 76558 70716 16 4 1793869 10 76558 70760 16 5 1793870 10 76559 70673 16 1 1793871 10 70673 76559 16 -1 1793872 10 76559 70735 16 2 1793873 10 70735 70673 16 -2 1793874 10 76559 70766 16 3 1793875 10 76559 70716 16 4 1793876 10 76559 70760 16 5 1793877 10 76560 76736 16 1 1793878 10 76736 76560 16 -1 1793879 10 76560 70678 16 2 1793880 10 76560 70760 16 3 1793881 10 76565 76689 16 1 1793882 10 76689 76565 16 -1 1793883 10 76565 70678 16 2 1793884 10 70678 76689 16 -2 1793885 10 76565 70760 16 3 1793886 10 76567 76545 16 1 1793887 10 76545 76567 16 -1 1793888 10 76567 70678 16 2 1793889 10 70678 76545 16 -2 1793890 10 76567 70760 16 3 1793891 10 76570 76805 16 1 1793892 10 76805 76570 16 -1 1793893 10 76570 70776 16 2 1793894 10 70776 76805 16 -2 1793895 10 76570 70760 16 3 1793896 10 76573 70729 16 1 1793897 10 70729 76573 16 -1 1793898 10 76573 70777 16 2 1793899 10 70777 70729 16 -2 1793900 10 76573 70766 16 3 1793901 10 70766 70777 16 -3 1793902 10 76573 70716 16 4 1793903 10 76573 70760 16 5 1793904 10 76574 70671 16 1 1793905 10 70671 76574 16 -1 1793906 10 76574 70735 16 2 1793907 10 70735 70671 16 -2 1793908 10 76574 70766 16 3 1793909 10 76574 70716 16 4 1793910 10 76574 70760 16 5 1793911 10 76575 76612 16 1 1793912 10 76612 76575 16 -1 1793913 10 76575 70678 16 2 1793914 10 70678 76612 16 -2 1793915 10 76575 70760 16 3 1793916 10 76576 70767 16 1 1793917 10 70767 76576 16 -1 1793918 10 76576 70756 16 2 1793919 10 70756 70767 16 -2 1793920 10 76576 70766 16 3 1793921 10 76576 70716 16 4 1793922 10 76576 70760 16 5 1793923 10 76578 70714 16 1 1793924 10 70714 76578 16 -1 1793925 10 76578 70738 16 2 1793926 10 70738 70714 16 -2 1793927 10 76578 70766 16 3 1793928 10 70766 70738 16 -3 1793929 10 76578 70716 16 4 1793930 10 76578 70760 16 5 1793931 10 76580 76546 16 1 1793932 10 76546 76580 16 -1 1793933 10 76580 70678 16 2 1793934 10 76580 70760 16 3 1793935 10 76587 76640 16 1 1793936 10 76640 76587 16 -1 1793937 10 76587 70678 16 2 1793938 10 76587 70760 16 3 1793939 10 76590 76579 16 1 1793940 10 76579 76590 16 -1 1793941 10 76590 70756 16 2 1793942 10 70756 76579 16 -2 1793943 10 76590 70766 16 3 1793944 10 76590 70716 16 4 1793945 10 76590 70760 16 5 1793946 10 76592 76840 16 1 1793947 10 76840 76592 16 -1 1793948 10 76592 70750 16 2 1793949 10 76592 70760 16 3 1793950 10 76594 76729 16 1 1793951 10 76729 76594 16 -1 1793952 10 76594 70678 16 2 1793953 10 70678 76729 16 -2 1793954 10 76594 70760 16 3 1793955 10 76595 76627 16 1 1793956 10 76627 76595 16 -1 1793957 10 76595 70683 16 2 1793958 10 76595 70760 16 3 1793959 10 76598 76627 16 1 1793960 10 76627 76598 16 -1 1793961 10 76598 70683 16 2 1793962 10 76598 70760 16 3 1793963 10 76599 70729 16 1 1793964 10 70729 76599 16 -1 1793965 10 76599 70777 16 2 1793966 10 76599 70766 16 3 1793967 10 70777 70766 16 2 1793968 10 76599 70716 16 4 1793969 10 70777 70716 16 3 1793970 10 76599 70760 16 5 1793971 10 70777 70760 16 4 1793972 10 76600 76764 16 1 1793973 10 76764 76600 16 -1 1793974 10 76600 70776 16 2 1793975 10 70776 76764 16 -2 1793976 10 76600 70760 16 3 1793977 10 76604 76639 16 1 1793978 10 76639 76604 16 -1 1793979 10 76604 70776 16 2 1793980 10 70776 76639 16 -2 1793981 10 76604 70760 16 3 1793982 10 76605 70673 16 1 1793983 10 70673 76605 16 -1 1793984 10 76605 70735 16 2 1793985 10 76605 70766 16 3 1793986 10 70735 70766 16 2 1793987 10 76605 70716 16 4 1793988 10 70735 70716 16 3 1793989 10 76605 70760 16 5 1793990 10 70735 70760 16 4 1793991 10 76611 70729 16 1 1793992 10 70729 76611 16 -1 1793993 10 76611 70777 16 2 1793994 10 76611 70766 16 3 1793995 10 76611 70716 16 4 1793996 10 70766 70716 16 3 1793997 10 76611 70760 16 5 1793998 10 70766 70760 16 4 1793999 10 76614 76627 16 1 1794000 10 76627 76614 16 -1 1794001 10 76614 70683 16 2 1794002 10 76614 70760 16 3 1794003 10 76615 76640 16 1 1794004 10 76640 76615 16 -1 1794005 10 76615 70678 16 2 1794006 10 76615 70760 16 3 1794007 10 76618 70671 16 1 1794008 10 70671 76618 16 -1 1794009 10 76618 70735 16 2 1794010 10 76618 70766 16 3 1794011 10 76618 70716 16 4 1794012 10 76618 70760 16 5 1794013 10 70716 70760 16 4 1794014 10 76619 70707 16 1 1794015 10 70707 76619 16 -1 1794016 10 76619 70777 16 2 1794017 10 70777 70707 16 -2 1794018 10 76619 70766 16 3 1794019 10 76619 70716 16 4 1794020 10 76619 70760 16 5 1794021 10 76620 76696 16 1 1794022 10 76696 76620 16 -1 1794023 10 76620 70678 16 2 1794024 10 70678 76696 16 -2 1794025 10 76620 70760 16 3 1794026 10 76621 76556 16 1 1794027 10 76556 76621 16 -1 1794028 10 76621 70776 16 2 1794029 10 70776 76556 16 -2 1794030 10 76621 70760 16 3 1794031 10 76622 76736 16 1 1794032 10 76736 76622 16 -1 1794033 10 76622 70678 16 2 1794034 10 76622 70760 16 3 1794035 10 76624 76710 16 1 1794036 10 76710 76624 16 -1 1794037 10 76624 70776 16 2 1794038 10 76624 70760 16 3 1794039 10 76630 70774 16 1 1794040 10 70774 76630 16 -1 1794041 10 76630 70735 16 2 1794042 10 70735 70774 16 -2 1794043 10 76630 70766 16 3 1794044 10 76630 70716 16 4 1794045 10 76630 70760 16 5 1794046 10 76633 76762 16 1 1794047 10 76762 76633 16 -1 1794048 10 76633 70750 16 2 1794049 10 76633 70760 16 3 1794050 10 76634 70762 16 1 1794051 10 70762 76634 16 -1 1794052 10 76634 70735 16 2 1794053 10 70735 70762 16 -2 1794054 10 76634 70766 16 3 1794055 10 76634 70716 16 4 1794056 10 76634 70760 16 5 1794057 10 76635 70729 16 1 1794058 10 70729 76635 16 -1 1794059 10 76635 70777 16 2 1794060 10 76635 70766 16 3 1794061 10 76635 70716 16 4 1794062 10 76635 70760 16 5 1794063 10 76636 76609 16 1 1794064 10 76609 76636 16 -1 1794065 10 76636 70776 16 2 1794066 10 70776 76609 16 -2 1794067 10 76636 70760 16 3 1794068 10 76638 76774 16 1 1794069 10 76774 76638 16 -1 1794070 10 76638 70776 16 2 1794071 10 70776 76774 16 -2 1794072 10 76638 70760 16 3 1794073 10 76642 76554 16 1 1794074 10 76554 76642 16 -1 1794075 10 76642 70776 16 2 1794076 10 70776 76554 16 -2 1794077 10 76642 70760 16 3 1794078 10 76643 76627 16 1 1794079 10 76627 76643 16 -1 1794080 10 76643 70683 16 2 1794081 10 76643 70760 16 3 1794082 10 76645 76553 16 1 1794083 10 76553 76645 16 -1 1794084 10 76645 70776 16 2 1794085 10 70776 76553 16 -2 1794086 10 76645 70760 16 3 1794087 10 76646 76770 16 1 1794088 10 76770 76646 16 -1 1794089 10 76646 70776 16 2 1794090 10 76646 70760 16 3 1794091 10 76647 76546 16 1 1794092 10 76546 76647 16 -1 1794093 10 76647 70678 16 2 1794094 10 76647 70760 16 3 1794095 10 76648 76707 16 1 1794096 10 76707 76648 16 -1 1794097 10 76648 70678 16 2 1794098 10 70678 76707 16 -2 1794099 10 76648 70760 16 3 1794100 10 76652 76676 16 1 1794101 10 76676 76652 16 -1 1794102 10 76652 70750 16 2 1794103 10 70750 76676 16 -2 1794104 10 76652 70760 16 3 1794105 10 76654 76730 16 1 1794106 10 76730 76654 16 -1 1794107 10 76654 70678 16 2 1794108 10 70678 76730 16 -2 1794109 10 76654 70760 16 3 1794110 10 76658 70731 16 1 1794111 10 70731 76658 16 -1 1794112 10 76658 70738 16 2 1794113 10 70738 70731 16 -2 1794114 10 76658 70766 16 3 1794115 10 76658 70716 16 4 1794116 10 76658 70760 16 5 1794117 10 76659 76832 16 1 1794118 10 76832 76659 16 -1 1794119 10 76659 70756 16 2 1794120 10 76659 70766 16 3 1794121 10 70756 70766 16 2 1794122 10 76659 70716 16 4 1794123 10 70756 70716 16 3 1794124 10 76659 70760 16 5 1794125 10 70756 70760 16 4 1794126 10 76660 70720 16 1 1794127 10 70720 76660 16 -1 1794128 10 76660 70735 16 2 1794129 10 70735 70720 16 -2 1794130 10 76660 70766 16 3 1794131 10 76660 70716 16 4 1794132 10 76660 70760 16 5 1794133 10 76662 70673 16 1 1794134 10 70673 76662 16 -1 1794135 10 76662 70735 16 2 1794136 10 76662 70766 16 3 1794137 10 76662 70716 16 4 1794138 10 76662 70760 16 5 1794139 10 76664 76557 16 1 1794140 10 76557 76664 16 -1 1794141 10 76664 70756 16 2 1794142 10 70756 76557 16 -2 1794143 10 76664 70766 16 3 1794144 10 76664 70716 16 4 1794145 10 76664 70760 16 5 1794146 10 76665 70673 16 1 1794147 10 70673 76665 16 -1 1794148 10 76665 70735 16 2 1794149 10 76665 70766 16 3 1794150 10 76665 70716 16 4 1794151 10 76665 70760 16 5 1794152 10 76667 70774 16 1 1794153 10 70774 76667 16 -1 1794154 10 76667 70735 16 2 1794155 10 76667 70766 16 3 1794156 10 76667 70716 16 4 1794157 10 76667 70760 16 5 1794158 10 76669 76846 16 1 1794159 10 76846 76669 16 -1 1794160 10 76669 70678 16 2 1794161 10 70678 76846 16 -2 1794162 10 76669 70760 16 3 1794163 10 76670 76845 16 1 1794164 10 76845 76670 16 -1 1794165 10 76670 70678 16 2 1794166 10 70678 76845 16 -2 1794167 10 76670 70760 16 3 1794168 10 76671 76681 16 1 1794169 10 76681 76671 16 -1 1794170 10 76671 70678 16 2 1794171 10 76671 70760 16 3 1794172 10 76673 76784 16 1 1794173 10 76784 76673 16 -1 1794174 10 76673 70678 16 2 1794175 10 70678 76784 16 -2 1794176 10 76673 70760 16 3 1794177 10 76675 76626 16 1 1794178 10 76626 76675 16 -1 1794179 10 76675 70678 16 2 1794180 10 76675 70760 16 3 1794181 10 76678 76762 16 1 1794182 10 76762 76678 16 -1 1794183 10 76678 70750 16 2 1794184 10 76678 70760 16 3 1794185 10 76679 76711 16 1 1794186 10 76711 76679 16 -1 1794187 10 76679 70776 16 2 1794188 10 70776 76711 16 -2 1794189 10 76679 70760 16 3 1794190 10 76682 76661 16 1 1794191 10 76661 76682 16 -1 1794192 10 76682 70776 16 2 1794193 10 70776 76661 16 -2 1794194 10 76682 70760 16 3 1794195 10 76685 76655 16 1 1794196 10 76655 76685 16 -1 1794197 10 76685 70678 16 2 1794198 10 70678 76655 16 -2 1794199 10 76685 70760 16 3 1794200 10 76687 76763 16 1 1794201 10 76763 76687 16 -1 1794202 10 76687 70776 16 2 1794203 10 70776 76763 16 -2 1794204 10 76687 70760 16 3 1794205 10 76688 76781 16 1 1794206 10 76781 76688 16 -1 1794207 10 76688 70750 16 2 1794208 10 70750 76781 16 -2 1794209 10 76688 70760 16 3 1794210 10 76692 76736 16 1 1794211 10 76736 76692 16 -1 1794212 10 76692 70678 16 2 1794213 10 76692 70760 16 3 1794214 10 76693 76724 16 1 1794215 10 76724 76693 16 -1 1794216 10 76693 70776 16 2 1794217 10 70776 76724 16 -2 1794218 10 76693 70760 16 3 1794219 10 76694 70774 16 1 1794220 10 70774 76694 16 -1 1794221 10 76694 70735 16 2 1794222 10 76694 70766 16 3 1794223 10 76694 70716 16 4 1794224 10 76694 70760 16 5 1794225 10 76697 76793 16 1 1794226 10 76793 76697 16 -1 1794227 10 76697 70776 16 2 1794228 10 70776 76793 16 -2 1794229 10 76697 70760 16 3 1794230 10 76701 70707 16 1 1794231 10 70707 76701 16 -1 1794232 10 76701 70777 16 2 1794233 10 76701 70766 16 3 1794234 10 76701 70716 16 4 1794235 10 76701 70760 16 5 1794236 10 76702 76613 16 1 1794237 10 76613 76702 16 -1 1794238 10 76702 70776 16 2 1794239 10 70776 76613 16 -2 1794240 10 76702 70760 16 3 1794241 10 76705 70707 16 1 1794242 10 70707 76705 16 -1 1794243 10 76705 70777 16 2 1794244 10 76705 70766 16 3 1794245 10 76705 70716 16 4 1794246 10 76705 70760 16 5 1794247 10 76714 76628 16 1 1794248 10 76628 76714 16 -1 1794249 10 76714 70776 16 2 1794250 10 70776 76628 16 -2 1794251 10 76714 70760 16 3 1794252 10 76715 70671 16 1 1794253 10 70671 76715 16 -1 1794254 10 76715 70735 16 2 1794255 10 76715 70766 16 3 1794256 10 76715 70716 16 4 1794257 10 76715 70760 16 5 1794258 10 76716 76768 16 1 1794259 10 76768 76716 16 -1 1794260 10 76716 70776 16 2 1794261 10 76716 70760 16 3 1794262 10 76717 76603 16 1 1794263 10 76603 76717 16 -1 1794264 10 76717 70776 16 2 1794265 10 76717 70760 16 3 1794266 10 76718 76803 16 1 1794267 10 76803 76718 16 -1 1794268 10 76718 70750 16 2 1794269 10 70750 76803 16 -2 1794270 10 76718 70760 16 3 1794271 10 76723 76572 16 1 1794272 10 76572 76723 16 -1 1794273 10 76723 70678 16 2 1794274 10 70678 76572 16 -2 1794275 10 76723 70760 16 3 1794276 10 76725 76801 16 1 1794277 10 76801 76725 16 -1 1794278 10 76725 70678 16 2 1794279 10 76725 70760 16 3 1794280 10 76728 76584 16 1 1794281 10 76584 76728 16 -1 1794282 10 76728 70776 16 2 1794283 10 70776 76584 16 -2 1794284 10 76728 70760 16 3 1794285 10 76731 70762 16 1 1794286 10 70762 76731 16 -1 1794287 10 76731 70735 16 2 1794288 10 76731 70766 16 3 1794289 10 76731 70716 16 4 1794290 10 76731 70760 16 5 1794291 10 76732 70762 16 1 1794292 10 70762 76732 16 -1 1794293 10 76732 70735 16 2 1794294 10 76732 70766 16 3 1794295 10 76732 70716 16 4 1794296 10 76732 70760 16 5 1794297 10 76735 76822 16 1 1794298 10 76822 76735 16 -1 1794299 10 76735 70776 16 2 1794300 10 70776 76822 16 -2 1794301 10 76735 70760 16 3 1794302 10 76737 76736 16 1 1794303 10 76736 76737 16 -1 1794304 10 76737 70678 16 2 1794305 10 76737 70760 16 3 1794306 10 76738 76650 16 1 1794307 10 76650 76738 16 -1 1794308 10 76738 70678 16 2 1794309 10 70678 76650 16 -2 1794310 10 76738 70760 16 3 1794311 10 76739 76741 16 1 1794312 10 76741 76739 16 -1 1794313 10 76739 70750 16 2 1794314 10 70750 76741 16 -2 1794315 10 76739 70760 16 3 1794316 10 76740 70762 16 1 1794317 10 70762 76740 16 -1 1794318 10 76740 70735 16 2 1794319 10 76740 70766 16 3 1794320 10 76740 70716 16 4 1794321 10 76740 70760 16 5 1794322 10 76743 70731 16 1 1794323 10 70731 76743 16 -1 1794324 10 76743 70738 16 2 1794325 10 76743 70766 16 3 1794326 10 70738 70766 16 2 1794327 10 76743 70716 16 4 1794328 10 70738 70716 16 3 1794329 10 76743 70760 16 5 1794330 10 70738 70760 16 4 1794331 10 76744 76722 16 1 1794332 10 76722 76744 16 -1 1794333 10 76744 70756 16 2 1794334 10 70756 76722 16 -2 1794335 10 76744 70766 16 3 1794336 10 76744 70716 16 4 1794337 10 76744 70760 16 5 1794338 10 76745 76651 16 1 1794339 10 76651 76745 16 -1 1794340 10 76745 70776 16 2 1794341 10 70776 76651 16 -2 1794342 10 76745 70760 16 3 1794343 10 76746 76637 16 1 1794344 10 76637 76746 16 -1 1794345 10 76746 70776 16 2 1794346 10 70776 76637 16 -2 1794347 10 76746 70760 16 3 1794348 10 76747 70714 16 1 1794349 10 70714 76747 16 -1 1794350 10 76747 70738 16 2 1794351 10 76747 70766 16 3 1794352 10 76747 70716 16 4 1794353 10 76747 70760 16 5 1794354 10 76748 70708 16 1 1794355 10 70708 76748 16 -1 1794356 10 76748 70735 16 2 1794357 10 70735 70708 16 -2 1794358 10 76748 70766 16 3 1794359 10 76748 70716 16 4 1794360 10 76748 70760 16 5 1794361 10 76750 76798 16 1 1794362 10 76798 76750 16 -1 1794363 10 76750 70776 16 2 1794364 10 70776 76798 16 -2 1794365 10 76750 70760 16 3 1794366 10 76752 76759 16 1 1794367 10 76759 76752 16 -1 1794368 10 76752 70750 16 2 1794369 10 70750 76759 16 -2 1794370 10 76752 70760 16 3 1794371 10 76753 76655 16 1 1794372 10 76655 76753 16 -1 1794373 10 76753 70678 16 2 1794374 10 76753 70760 16 3 1794375 10 76755 76644 16 1 1794376 10 76644 76755 16 -1 1794377 10 76755 70678 16 2 1794378 10 70678 76644 16 -2 1794379 10 76755 70760 16 3 1794380 10 76756 76794 16 1 1794381 10 76794 76756 16 -1 1794382 10 76756 70750 16 2 1794383 10 70750 76794 16 -2 1794384 10 76756 70760 16 3 1794385 10 76760 76801 16 1 1794386 10 76801 76760 16 -1 1794387 10 76760 70678 16 2 1794388 10 76760 70760 16 3 1794389 10 76761 76681 16 1 1794390 10 76681 76761 16 -1 1794391 10 76761 70678 16 2 1794392 10 76761 70760 16 3 1794393 10 76773 70714 16 1 1794394 10 70714 76773 16 -1 1794395 10 76773 70738 16 2 1794396 10 76773 70766 16 3 1794397 10 76773 70716 16 4 1794398 10 76773 70760 16 5 1794399 10 76775 76550 16 1 1794400 10 76550 76775 16 -1 1794401 10 76775 70776 16 2 1794402 10 76775 70760 16 3 1794403 10 76776 76632 16 1 1794404 10 76632 76776 16 -1 1794405 10 76776 70776 16 2 1794406 10 70776 76632 16 -2 1794407 10 76776 70760 16 3 1794408 10 76777 76821 16 1 1794409 10 76821 76777 16 -1 1794410 10 76777 70750 16 2 1794411 10 70750 76821 16 -2 1794412 10 76777 70760 16 3 1794413 10 76779 76806 16 1 1794414 10 76806 76779 16 -1 1794415 10 76779 70678 16 2 1794416 10 70678 76806 16 -2 1794417 10 76779 70760 16 3 1794418 10 76780 76818 16 1 1794419 10 76818 76780 16 -1 1794420 10 76780 70678 16 2 1794421 10 70678 76818 16 -2 1794422 10 76780 70760 16 3 1794423 10 76782 76708 16 1 1794424 10 76708 76782 16 -1 1794425 10 76782 70776 16 2 1794426 10 70776 76708 16 -2 1794427 10 76782 70760 16 3 1794428 10 76783 76727 16 1 1794429 10 76727 76783 16 -1 1794430 10 76783 70776 16 2 1794431 10 76783 70760 16 3 1794432 10 76785 70707 16 1 1794433 10 70707 76785 16 -1 1794434 10 76785 70777 16 2 1794435 10 76785 70766 16 3 1794436 10 76785 70716 16 4 1794437 10 76785 70760 16 5 1794438 10 76786 76589 16 1 1794439 10 76589 76786 16 -1 1794440 10 76786 70678 16 2 1794441 10 70678 76589 16 -2 1794442 10 76786 70760 16 3 1794443 10 76792 76824 16 1 1794444 10 76824 76792 16 -1 1794445 10 76792 70678 16 2 1794446 10 70678 76824 16 -2 1794447 10 76792 70760 16 3 1794448 10 76796 76591 16 1 1794449 10 76591 76796 16 -1 1794450 10 76796 70678 16 2 1794451 10 70678 76591 16 -2 1794452 10 76796 70760 16 3 1794453 10 76799 76726 16 1 1794454 10 76726 76799 16 -1 1794455 10 76799 70750 16 2 1794456 10 70750 76726 16 -2 1794457 10 76799 70760 16 3 1794458 10 76802 70731 16 1 1794459 10 70731 76802 16 -1 1794460 10 76802 70738 16 2 1794461 10 76802 70766 16 3 1794462 10 76802 70716 16 4 1794463 10 76802 70760 16 5 1794464 10 76804 70762 16 1 1794465 10 70762 76804 16 -1 1794466 10 76804 70735 16 2 1794467 10 76804 70766 16 3 1794468 10 76804 70716 16 4 1794469 10 76804 70760 16 5 1794470 10 76808 76840 16 1 1794471 10 76840 76808 16 -1 1794472 10 76808 70750 16 2 1794473 10 76808 70760 16 3 1794474 10 76810 70774 16 1 1794475 10 70774 76810 16 -1 1794476 10 76810 70735 16 2 1794477 10 76810 70766 16 3 1794478 10 76810 70716 16 4 1794479 10 76810 70760 16 5 1794480 10 76812 70673 16 1 1794481 10 70673 76812 16 -1 1794482 10 76812 70735 16 2 1794483 10 76812 70766 16 3 1794484 10 76812 70716 16 4 1794485 10 76812 70760 16 5 1794486 10 76815 76627 16 1 1794487 10 76627 76815 16 -1 1794488 10 76815 70683 16 2 1794489 10 76815 70760 16 3 1794490 10 76816 76809 16 1 1794491 10 76809 76816 16 -1 1794492 10 76816 70678 16 2 1794493 10 70678 76809 16 -2 1794494 10 76816 70760 16 3 1794495 10 76819 76627 16 1 1794496 10 76627 76819 16 -1 1794497 10 76819 70683 16 2 1794498 10 76819 70760 16 3 1794499 10 76820 76771 16 1 1794500 10 76771 76820 16 -1 1794501 10 76820 70678 16 2 1794502 10 70678 76771 16 -2 1794503 10 76820 70760 16 3 1794504 10 76825 76736 16 1 1794505 10 76736 76825 16 -1 1794506 10 76825 70678 16 2 1794507 10 76825 70760 16 3 1794508 10 76826 76552 16 1 1794509 10 76552 76826 16 -1 1794510 10 76826 70776 16 2 1794511 10 70776 76552 16 -2 1794512 10 76826 70760 16 3 1794513 10 76827 76681 16 1 1794514 10 76681 76827 16 -1 1794515 10 76827 70678 16 2 1794516 10 76827 70760 16 3 1794517 10 76828 76568 16 1 1794518 10 76568 76828 16 -1 1794519 10 76828 70750 16 2 1794520 10 70750 76568 16 -2 1794521 10 76828 70760 16 3 1794522 10 76830 76788 16 1 1794523 10 76788 76830 16 -1 1794524 10 76830 70756 16 2 1794525 10 70756 76788 16 -2 1794526 10 76830 70766 16 3 1794527 10 76830 70716 16 4 1794528 10 76830 70760 16 5 1794529 10 76831 76610 16 1 1794530 10 76610 76831 16 -1 1794531 10 76831 70678 16 2 1794532 10 70678 76610 16 -2 1794533 10 76831 70760 16 3 1794534 10 76834 76674 16 1 1794535 10 76674 76834 16 -1 1794536 10 76834 70678 16 2 1794537 10 70678 76674 16 -2 1794538 10 76834 70760 16 3 1794539 10 76835 76597 16 1 1794540 10 76597 76835 16 -1 1794541 10 76835 70776 16 2 1794542 10 70776 76597 16 -2 1794543 10 76835 70760 16 3 1794544 10 76838 70714 16 1 1794545 10 70714 76838 16 -1 1794546 10 76838 70738 16 2 1794547 10 76838 70766 16 3 1794548 10 76838 70716 16 4 1794549 10 76838 70760 16 5 1794550 10 76841 70671 16 1 1794551 10 70671 76841 16 -1 1794552 10 76841 70735 16 2 1794553 10 76841 70766 16 3 1794554 10 76841 70716 16 4 1794555 10 76841 70760 16 5 1794556 10 76842 76822 16 1 1794557 10 76822 76842 16 -1 1794558 10 76842 70776 16 2 1794559 10 76842 70760 16 3 1794560 10 76844 70731 16 1 1794561 10 70731 76844 16 -1 1794562 10 76844 70738 16 2 1794563 10 76844 70766 16 3 1794564 10 76844 70716 16 4 1794565 10 76844 70760 16 5 1794566 10 76847 70767 16 1 1794567 10 70767 76847 16 -1 1794568 10 76847 70756 16 2 1794569 10 76847 70766 16 3 1794570 10 76847 70716 16 4 1794571 10 76847 70760 16 5 1794572 10 76848 76569 16 1 1794573 10 76569 76848 16 -1 1794574 10 76848 70750 16 2 1794575 10 70750 76569 16 -2 1794576 10 76848 70760 16 3 \. -- -- Data for Name: cvtermprop; Type: TABLE DATA; Schema: public; Owner: postgres -- COPY public.cvtermprop (cvtermprop_id, cvterm_id, type_id, value, rank) FROM stdin; 8079 70666 76465 numeric 0 8080 77107 76465 image 0 \. -- -- Data for Name: cvtermsynonym; Type: TABLE DATA; Schema: public; Owner: postgres -- COPY public.cvtermsynonym (cvtermsynonym_id, cvterm_id, synonym, type_id) FROM stdin; 144713 70663 "ash" EXACT [] \N 144714 70663 "MinCt_Burng_pct" EXACT [] \N 144715 70672 "nohav" EXACT [] \N 144716 70672 "NoHvstPlnt_Count_Plnt" EXACT [] \N 144717 70673 "cmdi" EXACT [] \N 144718 70674 "PlntH_Meas_cm" EXACT [] \N 144719 70674 "pltht" EXACT [] \N 144720 70684 "rtscol" EXACT [] \N 144721 70684 "RtSurfCol_VisClsn_1to3" EXACT [] \N 144722 70690 "BTAdNo_Count_BTad" EXACT [] \N 144723 70690 "btadt" EXACT [] \N 144724 70692 "abscon" EXACT [] \N 144725 70692 "AbsCt_Meas_ugg" EXACT [] \N 144726 70693 "brntim" EXACT [] \N 144727 70693 "FstBrnchTim_Count_wk" EXACT [] \N 144728 70702 "lfscar" EXACT [] \N 144729 70702 "LfScProm_VisScg_1to7" EXACT [] \N 144730 70705 "lfret" EXACT [] \N 144731 70705 "LfRet_VisSc_1to7" EXACT [] \N 144732 70712 "intcrp" EXACT [] \N 144733 70712 "InterCrpSuit_VisClsn_0or1" EXACT [] \N 144734 70711 "bcret" EXACT [] \N 144735 70711 "BetaCarotCt_HPLC_ugg" EXACT [] \N 144736 70714 "Cassava bacterial blight severity - Cassavabase" EXACT [] \N 144737 70714 "CBBSev" EXACT [] \N 144738 70717 "AnthCol_VisClsn_1to5" EXACT [] \N 144739 70717 "anther" EXACT [] \N 144740 70720 "Cassava brown streak disease root severity - Cassavabase" EXACT [] \N 144741 70720 "CBSDLfSev" EXACT [] \N 144742 70726 "petcol" EXACT [] \N 144743 70726 "PtlCol_VisClsn_1to9" EXACT [] \N 144744 70725 "frtset" EXACT [] \N 144745 70725 "FrtSetPrsnc_VisClsn_0or1" EXACT [] \N 144746 70727 "dyld" EXACT [] \N 144747 70727 "RtYld_Dry_tha" EXACT [] \N 144748 70734 "easepl" EXACT [] \N 144749 70734 "PeelEase_Clsn_1to7" EXACT [] \N 144750 70736 "ProtCt_Meas_pct" EXACT [] \N 144751 70736 "protei" EXACT [] \N 144752 70741 "dm" EXACT [] \N 144753 70741 "DMCt_Comp_r" EXACT [] \N 144754 70752 "AmylR_Comp_r" EXACT [] \N 144755 70752 "amylrt" EXACT [] \N 144756 70755 "hcn_enz" EXACT [] \N 144757 70755 "RtCyanCt_Enz_1to3" EXACT [] \N 144758 70759 "lfshp" EXACT [] \N 144759 70759 "LfShp_VisClsn_1to6" EXACT [] \N 144760 70764 "brnang" EXACT [] \N 144761 70764 "BrnchAng_VisScg_0to7" EXACT [] \N 144762 70765 "IVig_IITAVisScg_1to7" EXACT [] \N 144763 70765 "vigor" EXACT [] \N 144764 70772 "RtDia_VisScg_1to7" EXACT [] \N 144765 70772 "rtdiam" EXACT [] \N 144766 70775 "ACyanPig_VisScg_0to3" EXACT [] \N 144767 70775 "anthop" EXACT [] \N 144768 70778 "RtLng_VisScg_1to7" EXACT [] \N 144769 70778 "rtsz" EXACT [] \N 144770 70780 "Swfs" EXACT [] \N 144771 70780 "SWfSev_VisScg_1to5" EXACT [] \N 144772 70781 "femsta" EXACT [] \N 144773 70781 "StamPrsnc_VisClsn_0or1" EXACT [] \N 144774 70667 "RtPos_VisClsn_1to3" EXACT [] \N 144775 70667 "rtpost" EXACT [] \N 144776 70668 "HI" EXACT [] \N 144777 70669 "garcon" EXACT [] \N 144778 70669 "GariCt_Comp_gkg" EXACT [] \N 144779 70670 "carcol" EXACT [] \N 144780 70670 "CarunCol_VisClsn_1to3" EXACT [] \N 144781 70696 "rsms" EXACT [] \N 144782 70696 "RSMSev_VisScg_1to5" EXACT [] \N 144783 70700 "sprout" EXACT [] \N 144784 70700 "sprout_comp_r" EXACT [] \N 144785 70701 "fsd" EXACT [] \N 144786 70701 "FSDisSev_VisScg_1to5" EXACT [] \N 144787 70706 "NoHvstRt_Count_Rt" EXACT [] \N 144788 70706 "rtno" EXACT [] \N 144789 70713 "flower" EXACT [] \N 144790 70713 "FlwAb_Est_0or1" EXACT [] \N 144791 70718 "nklgt" EXACT [] \N 144792 70718 "NkLng_VisClsn_0to7" EXACT [] \N 144793 70723 "btnym" EXACT [] \N 144794 70723 "BTNymNo_Count_BTNym" EXACT [] \N 144795 70737 "LfCol_VisClsn_1to9" EXACT [] \N 144796 70737 "lfcolf" EXACT [] \N 144797 70743 "apubes" EXACT [] \N 144798 70743 "LfPub_VisClsn_0to7" EXACT [] \N 144799 70744 "FibCt_Meas_pct" EXACT [] \N 144800 70744 "fibre" EXACT [] \N 144801 70746 "starch" EXACT [] \N 144802 70746 "StrchCt_Est_pct" EXACT [] \N 144803 70747 "rtcon" EXACT [] \N 144804 70747 "RtConsNo_Est_1to3" EXACT [] \N 144805 70751 "BrnchHt_Meas_cm" EXACT [] \N 144806 70751 "brnht" EXACT [] \N 144807 70753 "LfVeinCol_VisClsn_1to9" EXACT [] \N 144808 70753 "lfvnco" EXACT [] \N 144809 70754 "FfCt_Meas_gkg" EXACT [] \N 144810 70754 "fufucnt" EXACT [] \N 144811 70757 "SepCol_VisClsn_1to5" EXACT [] \N 144812 70757 "splcol" EXACT [] \N 144813 70758 "cmbs" EXACT [] \N 144814 70758 "CMBSev_Est_1to5" EXACT [] \N 144815 70769 "inncol" EXACT [] \N 144816 70769 "RtCtxCol_VisClsn_1to4" EXACT [] \N 144817 70771 "CarotCt_spectro_ugg" EXACT [] \N 144818 70771 "tc" EXACT [] \N 144819 70661 "BrnchLvl_Count_Lvl" EXACT [] \N 144820 70661 "brnlev" EXACT [] \N 144821 70664 "rsmi" EXACT [] \N 144822 70664 "RSMInc_Comp_r" EXACT [] \N 144823 70666 "rtwt" EXACT [] \N 144824 70666 "RtWt_Wgh_kg" EXACT [] \N 144825 70675 "LodgPlntProp_Comp_r" EXACT [] \N 144826 70675 "lodplt" EXACT [] \N 144827 70677 "fe" EXACT [] \N 144828 70677 "FeCt_Meas_ugg" EXACT [] \N 144829 70685 "outcol" EXACT [] \N 144830 70685 "RtPeridCol_VisClsn_1to4" EXACT [] \N 144831 70686 "pd" EXACT [] \N 144832 70686 "Pd_SensScg_1to4" EXACT [] \N 144833 70687 "stgmco" EXACT [] \N 144834 70687 "StgmCol_VisClsn_1to5" EXACT [] \N 144835 70688 "CarotRet_Meas_pct" EXACT [] \N 144836 70688 "tcret" EXACT [] \N 144837 70698 "DiscCol_VisClsn_1to5" EXACT [] \N 144838 70698 "discol" EXACT [] \N 144839 70699 "plpcol" EXACT [] \N 144840 70699 "PlpCol_VisClsn_1to3" EXACT [] \N 144841 70703 "RtPed_VisClsn_0to7" EXACT [] \N 144842 70703 "rtpedu" EXACT [] \N 144843 70708 "cbsdr12i" EXACT [] \N 144844 70715 "NoRotRt_Count_Rt" EXACT [] \N 144845 70715 "rtrot" EXACT [] \N 144846 70721 "rtcons" EXACT [] \N 144847 70721 "RtConsPrsnc_VisClsn_0or1" EXACT [] \N 144848 70729 "cadi" EXACT [] \N 144849 70732 "mc" EXACT [] \N 144850 70732 "RtMoistCt_Comp_pct" EXACT [] \N 144851 70733 "stmpub" EXACT [] \N 144852 70733 "StPub_VisScg_1to7" EXACT [] \N 144853 70739 "AscACt_Meas_pct" EXACT [] \N 144854 70740 "ExocTex_VisClsn_1to7" EXACT [] \N 144855 70740 "fruexo" EXACT [] \N 144856 70761 "amylp" EXACT [] \N 144857 70761 "AmylPCt_Meas_pct" EXACT [] \N 144858 70763 "LfCol_ApVisClsn_1to9" EXACT [] \N 144859 70763 "lfcola" EXACT [] \N 144860 70767 "Cassava green mite severity - Cassavabase" EXACT [] \N 144861 70767 "CGMSev" EXACT [] \N 144862 70773 "shtwt" EXACT [] \N 144863 70773 "ShWt_Meas_kg" EXACT [] \N 144864 70774 "cbsdli" EXACT [] \N 144865 70659 "lflife" EXACT [] \N 144866 70659 "LfLife_Count_days" EXACT [] \N 144867 70660 "zn" EXACT [] \N 144868 70660 "ZnCt_Meas_ugg" EXACT [] \N 144869 70662 "SdCol_VisClsn_1to5" EXACT [] \N 144870 70662 "seedco" EXACT [] \N 144871 70665 "petang" EXACT [] \N 144872 70665 "PtlAng_VisScg_0to7" EXACT [] \N 144873 70671 "Cassava brown streak disease leaf severity - Cassavabase" EXACT [] \N 144874 70671 "CBSDRtSev" EXACT [] \N 144875 70676 "amyl" EXACT [] \N 144876 70676 "AmylCt_Meas_pct" EXACT [] \N 144877 70679 "rtshp" EXACT [] \N 144878 70679 "RtShp_VisClsn_1to6" EXACT [] \N 144879 70680 "RtSurfTex_VisClsn_1to7" EXACT [] \N 144880 70680 "rttext" EXACT [] \N 144881 70681 "RtYld_FreshAerial_tha" EXACT [] \N 144882 70681 "tyld" EXACT [] \N 144883 70682 "BoilRtCol_VisClsn_1to3" EXACT [] \N 144884 70682 "pdcol" EXACT [] \N 144885 70689 "OvrCol_VisClsn_1to5" EXACT [] \N 144886 70689 "ovryco" EXACT [] \N 144887 70691 "fyld" EXACT [] \N 144888 70691 "RtYld_Fresh_tha" EXACT [] \N 144889 70694 "hcnpic" EXACT [] \N 144890 70694 "RtCyanCt_Picrate_1to9" EXACT [] \N 144891 70695 "pdtas" EXACT [] \N 144892 70695 "RtTast_SensClsn_0to3" EXACT [] \N 144893 70704 "lflbno" EXACT [] \N 144894 70704 "LfLbNo_Count_Lb" EXACT [] \N 144895 70707 "CADSev" EXACT [] \N 144896 70707 "Cassava anthracnose disease severity - Cassavabase" EXACT [] \N 144897 70710 "petlgt" EXACT [] \N 144898 70710 "PtlLng_VisScg_0to7" EXACT [] \N 144899 70709 "sugar" EXACT [] \N 144900 70709 "SugPCt_Meas_pct" EXACT [] \N 144901 70722 "plarch" EXACT [] \N 144902 70722 "PlntArch_VisScg_1to5" EXACT [] \N 144903 70724 "LfLbPo_VisClsn_1to4" EXACT [] \N 144904 70724 "lflobp" EXACT [] \N 144905 70728 "LafuCt_Comp_gkg" EXACT [] \N 144906 70728 "lafun" EXACT [] \N 144907 70731 "CBBInc" EXACT [] \N 144908 70730 "ms" EXACT [] \N 144909 70730 "PolPrsnc_VisClsn_0or1" EXACT [] \N 144910 70742 "PldLvl_VisScg_1to4" EXACT [] \N 144911 70742 "ploidy" EXACT [] \N 144912 70745 "stemgh" EXACT [] \N 144913 70745 "StGrwHab_VisScg_1to2" EXACT [] \N 144914 70748 "BCarotRet_Meas_pct" EXACT [] \N 144915 70748 "bcret" EXACT [] \N 144916 70749 "stipgt" EXACT [] \N 144917 70749 "StplLng_VisScg_1to7" EXACT [] \N 144918 70762 "Cassava mosaic disease severity - Cassavabase" EXACT [] \N 144919 70762 "CMDSev" EXACT [] \N 144920 70768 "Swfi" EXACT [] \N 144921 70768 "SWfInc_Comp_r" EXACT [] \N 144922 70770 "stmcol" EXACT [] \N 144923 70770 "StmCol_VisClsn_1to4" EXACT [] \N 144924 70779 "cmbi" EXACT [] \N 144925 70779 "CMBInc_Est_1to5" EXACT [] \N 144926 76535 "stemwt" EXACT [] \N 144927 76535 "StWt_Meas_kg" EXACT [] \N 144928 76536 "cgm1i" EXACT [] \N 144929 76536 "CGMInc_Comp_r" EXACT [] \N 144930 76537 "GariDryWt_Meas_kgg" EXACT [] \N 144931 76537 "gdrywt" EXACT [] \N 144932 76538 "rtcol" EXACT [] \N 144933 76538 "RtSurfCol_ClsnCIAT_1to3" EXACT [] \N 144934 76539 "ash" EXACT [] \N 144935 76539 "Tuberous root mineral salt content" EXACT [] \N 144936 76540 "Plant Architecture - Cassavabase" EXACT [] \N 144937 76540 "PlntArch" EXACT [] \N 144938 76541 "BTNyNo" EXACT [] \N 144939 76542 "PLHTLF" EXACT [] \N 144940 76543 "pdcol" EXACT [] \N 144941 76544 "flwmno" EXACT [] \N 144942 76544 "MFlwNo_Count_Flw" EXACT [] \N 144943 76545 "Plantable stem number" EXACT [] \N 144944 76545 "stkno" EXACT [] \N 144945 76546 "Stem yield" EXACT [] \N 144946 76546 "StmYld" EXACT [] \N 144947 76547 "RtWt_DryWgh_kg" EXACT [] \N 144948 76547 "rwtair" EXACT [] \N 144949 76548 "lrcent6" EXACT [] \N 144950 76549 "NGermStk_Count_Stk" EXACT [] \N 144951 76549 "sprtct" EXACT [] \N 144952 76550 "plpcol" EXACT [] \N 144953 76551 "b-crypto" EXACT [] \N 144954 76551 "BCryptoAct_Est_pct" EXACT [] \N 144955 76552 "FFlwProp" EXACT [] \N 144956 76553 "flwdfa" EXACT [] \N 144957 76554 "FlwStlkNo" EXACT [] \N 144958 76555 "easehav" EXACT [] \N 144959 76555 "EasHvst_Est_1to3" EXACT [] \N 144960 76556 "fruitno" EXACT [] \N 144961 76557 "btwfy" EXACT [] \N 144962 76558 "SootMould_Est_1to5" EXACT [] \N 144963 76558 "sooty" EXACT [] \N 144964 76559 "cmd9i" EXACT [] \N 144965 76559 "CMDisInc_Comp_r_T9m" EXACT [] \N 144966 76560 "NoGermStk_Count_Stk_T9m" EXACT [] \N 144967 76560 "sprtct9" EXACT [] \N 144968 76561 "RtAmylProp" EXACT [] \N 144969 76562 "brnang" EXACT [] \N 144970 76563 "lafun" EXACT [] \N 144971 76564 "apubes" EXACT [] \N 144972 76565 "RotStmNo_Count_Stm" EXACT [] \N 144973 76565 "stmrot" EXACT [] \N 144974 76566 "Swfi" EXACT [] \N 144975 76567 "PlntableStkNo_Est_stk" EXACT [] \N 144976 76567 "stkno" EXACT [] \N 144977 76568 "wtamash" EXACT [] \N 144978 76569 "gstarch" EXACT [] \N 144979 76570 "petort" EXACT [] \N 144980 76571 "rttext" EXACT [] \N 144981 76572 "StumpWt" EXACT [] \N 144982 76573 "cad6i" EXACT [] \N 144983 76573 "CADisInc_Comp_r_T6m" EXACT [] \N 144984 76574 "CBSDisLfSev_Scg_1to5_9m" EXACT [] \N 144985 76574 "cbsdl9s" EXACT [] \N 144986 76575 "NStk_Count_Stk" EXACT [] \N 144987 76575 "stkplt" EXACT [] \N 144988 76576 "cgm1" EXACT [] \N 144989 76576 "CGMsev_VisScg_1to5" EXACT [] \N 144990 76577 "CaroRet" EXACT [] \N 144991 76578 "cbb9s" EXACT [] \N 144992 76578 "CBBSev_VisScg_1to5_T9m" EXACT [] \N 144993 76579 "BTNSev" EXACT [] \N 144994 76580 "StmWt_Wgh_kg" EXACT [] \N 144995 76580 "stmyld" EXACT [] \N 144996 76581 "ploidy" EXACT [] \N 144997 76582 "GarCt" EXACT [] \N 144998 76582 "Gari Content - Cassavabase" EXACT [] \N 144999 76583 "stmcol" EXACT [] \N 145000 76584 "hairiness" EXACT [] \N 145001 76585 "femsta" EXACT [] \N 145002 76586 "ShFrWe" EXACT [] \N 145003 76587 "pltyld" EXACT [] \N 145004 76587 "RtYld_PerPlnt_kgPlnt" EXACT [] \N 145005 76588 "fe" EXACT [] \N 145006 76589 "peelwt" EXACT [] \N 145007 76590 "BTNSev_Est_1to5" EXACT [] \N 145008 76590 "btwfs" EXACT [] \N 145009 76591 "LfWt" EXACT [] \N 145010 76592 "CarotCt_icheck_ugg" EXACT [] \N 145011 76592 "tcichk" EXACT [] \N 145012 76593 "Proportion of germinated stakes" EXACT [] \N 145013 76593 "sprout" EXACT [] \N 145014 76594 "MkRtNo_Count_Rt" EXACT [] \N 145015 76594 "mktrtno" EXACT [] \N 145016 76595 "lrcent7" EXACT [] \N 145017 76596 "lflbno" EXACT [] \N 145018 76597 "pnoinf" EXACT [] \N 145019 76599 "cad12i" EXACT [] \N 145020 76599 "CADisInc_Comp_r_T12m" EXACT [] \N 145021 76600 "pltshp" EXACT [] \N 145022 76601 "mc" EXACT [] \N 145023 76602 "fruexo" EXACT [] \N 145024 76603 "nklgt" EXACT [] \N 145025 76604 "BrnchHab_VisClsn_1to4" EXACT [] \N 145026 76604 "brnhbt" EXACT [] \N 145027 76605 "cmd12i" EXACT [] \N 145028 76605 "CMDisInc_Comp_r_T12m" EXACT [] \N 145029 76606 "Marketable root number, Root Number - Cassavabase" EXACT [] \N 145030 76606 "RtNo" EXACT [] \N 145031 76607 "stemgh" EXACT [] \N 145032 76608 "carcol" EXACT [] \N 145033 76609 "flwdfi" EXACT [] \N 145034 76610 "TipShWt" EXACT [] \N 145035 76611 "cad9i" EXACT [] \N 145036 76611 "CADisInc_Comp_r_T9m" EXACT [] \N 145037 76612 "stkplt" EXACT [] \N 145038 76613 "TermBrnchNo" EXACT [] \N 145039 76614 "lrcent5" EXACT [] \N 145040 76615 "RtYld_PerYr_thayr" EXACT [] \N 145041 76615 "yldyr" EXACT [] \N 145042 76616 "BrnchTim" EXACT [] \N 145043 76617 "sg" EXACT [] \N 145044 76618 "CBSDisLfSev_Scg_1to5_T3m" EXACT [] \N 145045 76618 "cbsdl3s" EXACT [] \N 145046 76619 "cad12s" EXACT [] \N 145047 76619 "CADisSev_VisScg_1to5_T12m" EXACT [] \N 145048 76620 "stklgt" EXACT [] \N 145049 76620 "StkLng_Est_1to3" EXACT [] \N 145050 76621 "FrtNo_Count_Frt" EXACT [] \N 145051 76621 "fruitno" EXACT [] \N 145052 76622 "NoGermStk_Count_Stk_T6m" EXACT [] \N 145053 76622 "sprtct6" EXACT [] \N 145054 76623 "petang" EXACT [] \N 145055 76624 "APUBESA" RELATED [] \N 145056 76625 "splcol" EXACT [] \N 145057 76626 "vigor" EXACT [] \N 145058 76627 "LfRet" EXACT [] \N 145059 76627 "Stay green, Leaf Retention - Cassavabase" EXACT [] \N 145060 76628 "stmctcol" EXACT [] \N 145061 76629 "protei" EXACT [] \N 145062 76630 "CBSDisLfInc_Comp_r_T1m" EXACT [] \N 145063 76630 "cbsdl1i" EXACT [] \N 145064 76631 "RtConsNo" EXACT [] \N 145065 76631 "Tuberous root constriction presence" EXACT [] \N 145066 76632 "flwfrt" EXACT [] \N 145067 76633 "spgrv" EXACT [] \N 145068 76634 "cmd3s" EXACT [] \N 145069 76634 "CMDisSev_VisScg_1to5_T3m" EXACT [] \N 145070 76635 "cad3i" EXACT [] \N 145071 76635 "CADisInc_Comp_r_T3m" EXACT [] \N 145072 76636 "flwdfi" EXACT [] \N 145073 76636 "Tim1Flwr_Count_days" EXACT [] \N 145074 76637 "flwfrk" EXACT [] \N 145075 76638 "pollen" EXACT [] \N 145076 76639 "brnhbt" EXACT [] \N 145077 76640 "RtYld" EXACT [] \N 145078 76641 "lflobp" EXACT [] \N 145079 76642 "flwstk" EXACT [] \N 145080 76642 "FlwStlkNo_Count_Stlk" EXACT [] \N 145081 76643 "SG" EXACT [] \N 145082 76644 "MkRtWt" EXACT [] \N 145083 76645 "flwdfa" EXACT [] \N 145084 76645 "TimFstAnth_Comp_days" EXACT [] \N 145085 76646 "flowerab" EXACT [] \N 145086 76646 "FlwAb_Est_0to3" EXACT [] \N 145087 76647 "STE" RELATED [] \N 145088 76647 "STMDIAM" RELATED [] \N 145089 76648 "germcnt" EXACT [] \N 145090 76648 "SdlngNo_Count_Sdlng" EXACT [] \N 145091 76649 "petcol" EXACT [] \N 145092 76650 "NMkRtWt" EXACT [] \N 145093 76651 "dyfl" EXACT [] \N 145094 76651 "flw50a" EXACT [] \N 145095 76652 "GdGariWt_Meas_kg" EXACT [] \N 145096 76652 "wtagrind" EXACT [] \N 145097 76654 "nmkrtno" EXACT [] \N 145098 76654 "NMkRtNo_Count_Rt" EXACT [] \N 145099 76655 "STS" RELATED [] \N 145100 76656 "fsd" EXACT [] \N 145101 76657 "RtCyanC" EXACT [] \N 145102 76658 "cbb3i" EXACT [] \N 145103 76658 "CBBInc_Comp_r_T3m" EXACT [] \N 145104 76659 "cgm2i" EXACT [] \N 145105 76659 "CGMInc_Comp_r" EXACT [] \N 145106 76660 "CBSDisRtSev_Scg_1to5" EXACT [] \N 145107 76660 "cbsdr12s" EXACT [] \N 145108 76661 "LfLbWdth" EXACT [] \N 145109 76662 "cmd1i" EXACT [] \N 145110 76662 "CMDisInc_Comp_r_T1m" EXACT [] \N 145111 76663 "seedco" EXACT [] \N 145112 76664 "btwfy" EXACT [] \N 145113 76664 "BTYlwN_Count_Nymph" EXACT [] \N 145114 76665 "cmd3i" EXACT [] \N 145115 76665 "CMDisInc_Comp_r_T3m" EXACT [] \N 145116 76666 "lfvnco" EXACT [] \N 145117 76667 "CBSDisLfInc_Comp_r_T9m" EXACT [] \N 145118 76667 "cbsdl9i" EXACT [] \N 145119 76668 "mealiness" EXACT [] \N 145120 76668 "pd" EXACT [] \N 145121 76669 "select" EXACT [] \N 145122 76669 "SelVar_Est_0or1" EXACT [] \N 145123 76670 "stpmrg" EXACT [] \N 145124 76671 "RtWt_WashWgh_kg" EXACT [] \N 145125 76671 "wtwash" EXACT [] \N 145126 76672 "amyl" EXACT [] \N 145127 76673 "rteval" EXACT [] \N 145128 76673 "RtEval_Est_1to5" EXACT [] \N 145129 76674 "stkwt" EXACT [] \N 145130 76675 "IVig_CIATVisScg_1to5" EXACT [] \N 145131 76675 "vigour" EXACT [] \N 145132 76676 "wtagrind" EXACT [] \N 145133 76677 "LfLiife" EXACT [] \N 145134 76678 "DMCt_Est_kg" EXACT [] \N 145135 76678 "dmspg" EXACT [] \N 145136 76679 "LfScHt_Meas_cm" EXACT [] \N 145137 76679 "scrlvl" EXACT [] \N 145138 76680 "pltht" EXACT [] \N 145139 76681 "Fresh Weight of Storage Root - Cassavabase" EXACT [] \N 145140 76681 "RtWt" EXACT [] \N 145141 76682 "lflbwh" EXACT [] \N 145142 76682 "LfLobWdt_Meas_cm" EXACT [] \N 145143 76683 "outcol" EXACT [] \N 145144 76683 "Outer skin color" EXACT [] \N 145145 76684 "easepl" EXACT [] \N 145146 76685 "STC" RELATED [] \N 145147 76686 "intcrp" EXACT [] \N 145148 76687 "flw50b" EXACT [] \N 145149 76687 "Tim50Brnch_Count_days" EXACT [] \N 145150 76688 "cis-9" EXACT [] \N 145151 76688 "Cis9Act_Est_pct" EXACT [] \N 145152 76689 "RotStmNo" EXACT [] \N 145153 76690 "pdtas" EXACT [] \N 145154 76691 "brnlev" EXACT [] \N 145155 76692 "NoGermStk_Count_Stk_T3m" EXACT [] \N 145156 76692 "sprtct3" EXACT [] \N 145157 76693 "stmepcol" EXACT [] \N 145158 76694 "CBSDisLfInc_Comp_r_T3m" EXACT [] \N 145159 76694 "cbsdl3i" EXACT [] \N 145160 76695 "RotRtNo" EXACT [] \N 145161 76695 "Unmarketable roots, Rotted Storage Roots - Cassavabase" EXACT [] \N 145162 76696 "StkLng" EXACT [] \N 145163 76697 "lflblt" EXACT [] \N 145164 76697 "LfLobLng_Meas_cm" EXACT [] \N 145165 76698 "LobMgnShp" EXACT [] \N 145166 76699 "Cassava Mealy Bug Severity - Cassavabase" EXACT [] \N 145167 76699 "CMBSev" EXACT [] \N 145168 76700 "stmpub" EXACT [] \N 145169 76701 "cad3s" EXACT [] \N 145170 76701 "CADisSev_VisScg_1to5_T3m" EXACT [] \N 145171 76702 "InflBrnchNo_Count_Brnch" EXACT [] \N 145172 76702 "tmbrno" EXACT [] \N 145173 76703 "cmbi" EXACT [] \N 145174 76704 "lfshp" EXACT [] \N 145175 76705 "cad9s" EXACT [] \N 145176 76705 "CADisSev_VisScg_1to5_T9m" EXACT [] \N 145177 76706 "rtsz" EXACT [] \N 145178 76706 "Storage root length" EXACT [] \N 145179 76707 "SdlngNo" EXACT [] \N 145180 76708 "lfscdist" EXACT [] \N 145181 76709 "rtpost" EXACT [] \N 145182 76710 "LfPub" EXACT [] \N 145183 76711 "ScarHt" EXACT [] \N 145184 76712 "sooty" EXACT [] \N 145185 76713 "anther" EXACT [] \N 145186 76714 "stmctcol" EXACT [] \N 145187 76715 "CBSDisLfSev_Scg_1to5_6m" EXACT [] \N 145188 76715 "cbsdl6s" EXACT [] \N 145189 76716 "petlgth" EXACT [] \N 145190 76717 "RtNeckLng_ClsnCIAT_1to3" EXACT [] \N 145191 76717 "rtnklgt" EXACT [] \N 145192 76718 "GariTaste_Est_1to3" EXACT [] \N 145193 76718 "gtaste" EXACT [] \N 145194 76719 "flwmno" EXACT [] \N 145195 76721 "easehav" EXACT [] \N 145196 76722 "btwfb" EXACT [] \N 145197 76723 "stmpwt" EXACT [] \N 145198 76723 "StmpWt_Wgh_kg" EXACT [] \N 145199 76724 "stmepcol" EXACT [] \N 145200 76725 "phtwlf" EXACT [] \N 145201 76725 "StHt_Meas_cm" EXACT [] \N 145202 76726 "gfibre" EXACT [] \N 145203 76727 "branching" EXACT [] \N 145204 76727 "BrnchHt" EXACT [] \N 145205 76728 "hairiness" EXACT [] \N 145206 76728 "PlntHair_Est_1to5" EXACT [] \N 145207 76729 "mktrtno" EXACT [] \N 145208 76730 "nmkrtno" EXACT [] \N 145209 76731 "cmd9s" EXACT [] \N 145210 76731 "CMDisSev_VisScg_1to5_T9m" EXACT [] \N 145211 76732 "cmd12s" EXACT [] \N 145212 76732 "CMDisSev_VisScg_1to5_T12m" EXACT [] \N 145213 76733 "rsmi" EXACT [] \N 145214 76734 "fibre" EXACT [] \N 145215 76735 "FFlwNo_Est_0to5" EXACT [] \N 145216 76735 "flwfeval" EXACT [] \N 145217 76736 "sprtct" EXACT [] \N 145218 76737 "NoGermStk_Count_Stk_T12m" EXACT [] \N 145219 76737 "sprtct12" EXACT [] \N 145220 76738 "NMkRtWt_Wgh_kg" EXACT [] \N 145221 76738 "nmrtwt" EXACT [] \N 145222 76739 "GariSwel_Est_1to3" EXACT [] \N 145223 76739 "swelling" EXACT [] \N 145224 76740 "cmd1s" EXACT [] \N 145225 76740 "CMDisSev_VisScg_1to5_T1m" EXACT [] \N 145226 76741 "swelling" EXACT [] \N 145227 76742 "rtcons" EXACT [] \N 145228 76742 "Tuberous root constriction presence" EXACT [] \N 145229 76743 "cbb6i" EXACT [] \N 145230 76743 "CBBInc_Comp_r_T6m" EXACT [] \N 145231 76744 "BTNBlkY_Count_Nymph" EXACT [] \N 145232 76744 "btwfb" EXACT [] \N 145233 76745 "flw50a" EXACT [] \N 145234 76745 "Tim50Anth_Comp_days" EXACT [] \N 145235 76746 "BrnchNo_Count_Brnch" EXACT [] \N 145236 76746 "flwfrk" EXACT [] \N 145237 76747 "cbb12s" EXACT [] \N 145238 76747 "CBBSev_VisScg_1to5_T12m" EXACT [] \N 145239 76748 "CBSDisRtInc_Comp_r" EXACT [] \N 145240 76748 "cbsdr12i" EXACT [] \N 145241 76749 "BCryptoCt" EXACT [] \N 145242 76750 "lfscno" EXACT [] \N 145243 76750 "LfScNo_Count_Scars" EXACT [] \N 145244 76751 "fufucnt" EXACT [] \N 145245 76752 "trans-9" EXACT [] \N 145246 76752 "Trans9Act_Est_pct" EXACT [] \N 145247 76754 "lfscar" EXACT [] \N 145248 76755 "mkrtwt" EXACT [] \N 145249 76755 "MkRtWt_Wgh_kg" EXACT [] \N 145250 76756 "GariShftWt_Meas_kg" EXACT [] \N 145251 76756 "shaftwt" EXACT [] \N 145252 76757 "stgmco" EXACT [] \N 145253 76758 "BCaroRet" EXACT [] \N 145254 76759 "Trans9Ct" EXACT [] \N 145255 76760 "astmlt" EXACT [] \N 145256 76760 "StHt_AvgPlot_cm" EXACT [] \N 145257 76761 "RtWt_PeelWgh_kg" EXACT [] \N 145258 76761 "rwtapl" EXACT [] \N 145259 76762 "dm" EXACT [] \N 145260 76763 "flw50b" EXACT [] \N 145261 76764 "pltshp" EXACT [] \N 145262 76765 "gdrywt" EXACT [] \N 145263 76766 "abscon" EXACT [] \N 145264 76767 "nohav" EXACT [] \N 145265 76768 "PetLng" EXACT [] \N 145266 76769 "Vitamin C" EXACT [] \N 145267 76770 "flowerab" EXACT [] \N 145268 76771 "PlStmHt" EXACT [] \N 145269 76772 "bc" EXACT [] \N 145270 76773 "cbb3s" EXACT [] \N 145271 76773 "CBBSev_VisScg_1to5_T3m" EXACT [] \N 145272 76774 "pollen" EXACT [] \N 145273 76775 "PlpCol_ClsnCIAT_1to3" EXACT [] \N 145274 76775 "rtfcol" EXACT [] \N 145275 76776 "flwfrt" EXACT [] \N 145276 76776 "FrtSetNo_Count_Frt" EXACT [] \N 145277 76777 "gariwt" EXACT [] \N 145278 76777 "GariWt_Meas_kgg" EXACT [] \N 145279 76778 "zn" EXACT [] \N 145280 76779 "rotpct" EXACT [] \N 145281 76779 "RotRtProp_Est_pct" EXACT [] \N 145282 76780 "stemno" EXACT [] \N 145283 76780 "StNo_Count_St" EXACT [] \N 145284 76781 "cis-9" EXACT [] \N 145285 76782 "lfscdist" EXACT [] \N 145286 76783 "branching" EXACT [] \N 145287 76783 "BrnchHt_VisClsn_0to3" EXACT [] \N 145288 76784 "rteval" EXACT [] \N 145289 76785 "cad6s" EXACT [] \N 145290 76785 "CADisSev_VisScg_1to5_T6m" EXACT [] \N 145291 76786 "peelwt" EXACT [] \N 145292 76786 "PeelWt_Wgh_kg" EXACT [] \N 145293 76787 "rtpedu" EXACT [] \N 145294 76788 "taripo" EXACT [] \N 145295 76789 "BTAdtNo" EXACT [] \N 145296 76790 "stipgt" EXACT [] \N 145297 76791 "RSMSev" EXACT [] \N 145298 76792 "rtlgt" EXACT [] \N 145299 76792 "RtLng_Est_1to3" EXACT [] \N 145300 76793 "LfLbLng" EXACT [] \N 145301 76794 "shaftwt" EXACT [] \N 145302 76795 "LfCol" EXACT [] \N 145303 76796 "lfwt" EXACT [] \N 145304 76796 "LfWt_Wgh_kg" EXACT [] \N 145305 76797 "starch" EXACT [] \N 145306 76798 "lfscno" EXACT [] \N 145307 76799 "GariFbrCt_Est_0to3" EXACT [] \N 145308 76799 "gfibre" EXACT [] \N 145309 76800 "inncol" EXACT [] \N 145310 76800 "Inner skin color" EXACT [] \N 145311 76801 "Stem height" EXACT [] \N 145312 76801 "StmHt" EXACT [] \N 145313 76802 "cbb12i" EXACT [] \N 145314 76802 "CBBInc_Comp_rT_12m" EXACT [] \N 145315 76803 "gtaste" EXACT [] \N 145316 76804 "cmd6s" EXACT [] \N 145317 76804 "CMDisSev_VisScg_1to5_T6m" EXACT [] \N 145318 76805 "PetOrt" EXACT [] \N 145319 76806 "RotRtPrp" EXACT [] \N 145320 76807 "discol" EXACT [] \N 145321 76808 "CarotCt_VisClsn_1to8" EXACT [] \N 145322 76808 "tchart" EXACT [] \N 145323 76809 "seedno" EXACT [] \N 145324 76810 "CBSDisLfInc_Comp_r_T6m" EXACT [] \N 145325 76810 "cbsdl6i" EXACT [] \N 145326 76811 "AnthrCPig" EXACT [] \N 145327 76812 "cmd6i" EXACT [] \N 145328 76812 "CMDisInc_Comp_r_T6m" EXACT [] \N 145329 76813 "frtset" EXACT [] \N 145330 76814 "ovryco" EXACT [] \N 145331 76815 "LfRet_HvstEst_Pct" EXACT [] \N 145332 76815 "lrcenth" EXACT [] \N 145333 76816 "seedno" EXACT [] \N 145334 76816 "SownSdNo_Count_Sd" EXACT [] \N 145335 76817 "ms" EXACT [] \N 145336 76818 "StmNo" EXACT [] \N 145337 76819 "LfRet_Est_Pct" EXACT [] \N 145338 76819 "lrcent" EXACT [] \N 145339 76820 "plbstm" EXACT [] \N 145340 76820 "PltbStLng_Meas_cm" EXACT [] \N 145341 76821 "gariwt" EXACT [] \N 145342 76822 "FFlwNo" EXACT [] \N 145343 76823 "rtdiam" EXACT [] \N 145344 76824 "RtLng" EXACT [] \N 145345 76825 "NoGermStk_Count_Stk_T1m" EXACT [] \N 145346 76825 "sprtct1" EXACT [] \N 145347 76826 "FFlwProp_Comp_ratio" EXACT [] \N 145348 76826 "flowinc" EXACT [] \N 145349 76827 "RtWt_WtrWgh_kg" EXACT [] \N 145350 76827 "rwtwat" EXACT [] \N 145351 76828 "CakeWt_Meas_kg" EXACT [] \N 145352 76828 "wtamash" EXACT [] \N 145353 76829 "lodplt" EXACT [] \N 145354 76830 "taripo" EXACT [] \N 145355 76830 "TAripoPrns_Est_0or1" EXACT [] \N 145356 76831 "TipShWt_Wgh_kg" EXACT [] \N 145357 76831 "tpshwt" EXACT [] \N 145358 76832 "cgmi" EXACT [] \N 145359 76833 "sugar" EXACT [] \N 145360 76834 "stkwt" EXACT [] \N 145361 76834 "StkWt_Meas_kg" EXACT [] \N 145362 76835 "InflPlntProp_Comp_r" EXACT [] \N 145363 76835 "pnoinf" EXACT [] \N 145364 76836 "rtscol" EXACT [] \N 145365 76837 "rtshp" EXACT [] \N 145366 76838 "cbb6s" EXACT [] \N 145367 76838 "CBBSev_VisScg_1to5_T6m" EXACT [] \N 145368 76839 "SWFSev" EXACT [] \N 145369 76840 "CarotCt" EXACT [] \N 145370 76841 "CBSDisLfSev_Scg_1to5_T1m" EXACT [] \N 145371 76841 "cbsdl1s" EXACT [] \N 145372 76842 "FFlwNo_Count_Flw" EXACT [] \N 145373 76842 "flwfno" EXACT [] \N 145374 76843 "amylp" EXACT [] \N 145375 76844 "cbb9i" EXACT [] \N 145376 76844 "CBBInc_Comp_r_T9m" EXACT [] \N 145377 76845 "StpMrgShp" EXACT [] \N 145378 76846 "select" EXACT [] \N 145379 76847 "cgm2" EXACT [] \N 145380 76847 "CGMsev_VisScg_1to5" EXACT [] \N 145381 76848 "GariStrchCt_Meas_pct" EXACT [] \N 145382 76848 "gstarch" EXACT [] \N 145388 77182 threonine 77183 145389 77182 Threonin 77184 145390 77182 C4H9NO3 77185 145391 77186 Oxidized ascorbic acid 77184 145392 77186 L-Threo-2,3-Hexodiulosonic acid gamma-lactone 77184 145393 77186 (5R)-5-[(1R)-1,2-dihydroxyethyl]oxolane-2,3,4-trione 77184 145394 77186 Oxidized vitamin C 77184 145395 77186 Dehydroascorbate 77184 145396 77186 Oxidized ascorbate 77184 145397 77186 Dehydro-L-ascorbate 77184 145398 77186 5-(1,2-dihydroxyethyl)furan-2,3,4(5H)-trione 77183 145399 77186 1-Dehydroascorbate 77184 145400 77186 L-Dehydroascorbate 77184 145401 77186 DHAA 77184 145402 77186 1-Dehydroascorbic acid 77184 145403 77186 Dehydroascorbic acid 77187 145404 77186 dehydroascorbates 77184 145405 77186 C6H6O6 77185 145406 77186 OCC(O)C1OC(=O)C(=O)C1=O 77188 145407 77186 InChI=1S/C6H6O6/c7-1-2(8)5-3(9)4(10)6(11)12-5/h2,5,7-8H,1H2 77189 145408 77186 SBJKKFFYIZUCET-UHFFFAOYSA-N 77190 145409 77191 (2S)-3-acetyloxy-2-azanyl-propanoic acid 77184 145410 77191 (2S)-3-acetyloxy-2-aminopropanoic acid 77184 145411 77191 O-Acetyl-L-serine 77187 145412 77191 (2S)-3-(acetyloxy)-2-aminopropanoic acid 77184 145413 77191 (2S)-3-acetoxy-2-amino-propionic acid 77184 145414 77191 O-Acetyl-Serine 77184 145415 77191 O-acetyl-L-serine 77183 145416 77191 L-Serine, acetate (ester) 77184 145417 77191 (2S)-3-acetoxy-2-amino-propanoic acid 77184 145418 77191 O3-Acetyl-L-serine 77184 145419 77191 C5H9NO4 77185 145420 77191 CC(=O)OC[C@H](N)C(O)=O 77188 145421 77191 InChI=1S/C5H9NO4/c1-3(7)10-2-4(6)5(8)9/h4H,2,6H2,1H3,(H,8,9)/t4-/m0/s1 77189 145422 77191 VZXPDPZARILFQX-BYPYZUCNSA-N 77190 145423 77192 Dracylate 77184 145424 77192 Benzenemethanoic acid 77184 145425 77192 Phenylcarboxylic acid 77184 145426 77192 benzoic acid 77183 145427 77192 Oracylic acid 77184 145428 77192 Diacylic acid 77184 145429 77192 Diacylate 77184 145430 77192 Carboxybenzene 77184 145431 77192 Phenylcarboxylate 77184 145432 77192 Benzeneformate 77184 145433 77192 Benzoic acid sodium salt 77184 145434 77192 Benzeneformic acid 77184 145435 77192 Benzoate 77184 145436 77192 acide benzoique 77184 145437 77192 Benzenemethanoate 77184 145438 77192 Retardex 77184 145439 77192 Sodium benzoic acid 77184 145440 77192 Benzenecarboxylate 77184 145441 77192 E210 77184 145442 77192 Aromatic carboxylic acid 77184 145443 77192 Benzoesaeure 77184 145444 77192 Benzenemethonic acid 77184 145445 77192 Phenylformate 77184 145446 77192 Sodium benzoate 77184 145447 77192 Phenylformic acid 77184 145448 77192 Benzoic acid 77187 145449 77192 Benzenecarboxylic acid 77184 145450 77192 Dracylic acid 77184 145451 77192 C7H6O2 77185 145452 77192 OC(=O)c1ccccc1 77188 145453 77192 InChI=1S/C7H6O2/c8-7(9)6-4-2-1-3-5-6/h1-5H,(H,8,9) 77189 145454 77192 WPYMKLBDIGXBTP-UHFFFAOYSA-N 77190 145455 77193 Eisen 77184 145456 77193 26Fe 77184 145457 77193 iron 77183 145458 77193 ferrum 77184 145459 77193 Fe 77184 145460 77193 fer 77184 145461 77193 hierro 77184 145462 77193 Iron 77184 145463 77193 [Fe] 77188 145464 77193 InChI=1S/Fe 77189 145465 77193 XEEYBQQBJWHFJM-UHFFFAOYSA-N 77190 145466 77194 Aspartic acid 77187 145467 77194 (R,S)-Aspartic acid 77184 145468 77194 2-aminobutanedioic acid 77184 145469 77194 DL-Asparagic acid 77184 145470 77194 (+-)-Aspartic acid 77184 145471 77194 Asp 77184 145472 77194 D 77184 145473 77194 aspartic acid 77183 145474 77194 DL-Aminosuccinic acid 77184 145475 77194 C4H7NO4 77185 145476 77194 NC(CC(O)=O)C(O)=O 77188 145477 77194 InChI=1S/C4H7NO4/c5-2(4(8)9)1-3(6)7/h2H,1,5H2,(H,6,7)(H,8,9) 77189 145478 77194 CKLJMWTZIZZHCS-UHFFFAOYSA-N 77190 145479 77195 histidine 77183 145480 77195 2-amino-3-(1H-imidazol-4-yl)propanoic acid 77183 145481 77195 DL-Histidine 77184 145482 77195 Histidin 77184 145483 77195 histidina 77184 145484 77195 alpha-Amino-1H-imidazole-4-propionic acid 77184 145485 77195 Histidine 77187 145486 77195 C6H9N3O2 77185 145487 77195 NC(Cc1c[nH]cn1)C(O)=O 77188 145488 77195 InChI=1S/C6H9N3O2/c7-5(6(10)11)1-4-2-8-3-9-4/h2-3,5H,1,7H2,(H,8,9)(H,10,11) 77189 145489 77195 HNDVDQJCIGZPNO-UHFFFAOYSA-N 77190 145490 77196 (2R,3S,4S,5R)-2,3,4,5,6-pentahydroxyhexanoic acid 77184 145491 77196 D-galactonate 77184 145492 77196 D-galactonic acid 77183 145493 77196 Galactonate 77184 145494 77196 D-Galactonic acid 77187 145495 77196 C6H12O7 77185 145496 77196 OC[C@@H](O)[C@H](O)[C@H](O)[C@@H](O)C(O)=O 77188 145497 77196 InChI=1S/C6H12O7/c7-1-2(8)3(9)4(10)5(11)6(12)13/h2-5,7-11H,1H2,(H,12,13)/t2-,3+,4+,5-/m1/s1 77189 145498 77196 RGHNJXZEOKUKBD-MGCNEYSASA-N 77190 145499 77197 Fruktose 77184 145500 77197 fructose 77183 145501 77197 arabino-hex-2-ulose 77183 145502 77197 Fruchtzucker 77184 145503 77197 Fru 77184 145504 77197 arabino-Hexulose 77184 145505 77197 Fructose 77187 145506 77197 C6H12O6 77185 145507 77198 ADP-glucose 77184 145508 77198 Adenosine pyrophosphateglucose 77184 145509 77198 Adenosine diphosphate glucose 77184 145510 77198 adenosine 5'-[3-(alpha-D-glucopyranosyl) dihydrogen diphosphate] 77183 145511 77198 ADPG 77184 145512 77198 Adenosine diphosphoglucose 77184 145513 77198 ADPglucose 77184 145514 77198 ADENOSINE-5'-DIPHOSPHATE-GLUCOSE 77184 145515 77198 [(2R,3S,4R,5R)-5-(6-amino-9H-purin-9-yl)-3,4-dihydroxytetrahydrofuran-2-yl]methyl (2R,3R,4S,5S,6R)-3,4,5-trihydroxy-6-(hydroxymethyl)tetrahydro-2H-pyran-2-yl dihydrogen diphosphate (non-preferred name) 77184 145516 77198 C16H25N5O15P2 77185 145517 77198 Nc1ncnc2n(cnc12)[C@@H]1O[C@H](COP(O)(=O)OP(O)(=O)O[C@H]2O[C@H](CO)[C@@H](O)[C@H](O)[C@H]2O)[C@@H](O)[C@H]1O 77188 145518 77198 InChI=1S/C16H25N5O15P2/c17-13-7-14(19-3-18-13)21(4-20-7)15-11(26)9(24)6(33-15)2-32-37(28,29)36-38(30,31)35-16-12(27)10(25)8(23)5(1-22)34-16/h3-6,8-12,15-16,22-27H,1-2H2,(H,28,29)(H,30,31)(H2,17,18,19)/t5-,6-,8-,9-,10+,11-,12-,15-,16-/m1/s1 77189 145519 77198 WFPZSXYXPSUOPY-ROYWQJLOSA-N 77190 145520 77199 Kyselina maleinova 77184 145521 77199 cis-1,2-ethylenedicarboxylic acid 77184 145522 77199 cis-2-Butenedioic acid 77184 145523 77199 (z)-butenedioate 77184 145524 77199 Maleic acid [NA2215] 77184 145525 77199 (2Z)-2-Butenedioate 77184 145526 77199 (2Z)-but-2-enedioate 77184 145527 77199 (2Z)-but-2-enedioic acid 77184 145528 77199 but-2-enedioic acid 77184 145529 77199 Scotchbond multipurpose etchant 77184 145530 77199 (2Z)-Butene-2-dioate 77184 145531 77199 2-Butenedioate 77184 145532 77199 (2Z)-2-Butenedioic acid 77184 145533 77199 MAE 77184 145534 77199 (2Z)-Butene-2-dioic acid 77184 145535 77199 H2male 77184 145536 77199 (Z)-2-butenedioic acid 77184 145537 77199 cis-But-2-enedioate 77184 145538 77199 Malezid CM 77184 145539 77199 Cis-butenedioate 77184 145540 77199 Malenic acid 77184 145541 77199 cis-2-Butenedioate 77184 145542 77199 toxilic acid 77184 145543 77199 Maleinic acid 77184 145544 77199 2-Butenedioic acid 77184 145545 77199 (Z)-2-Butenedioate 77184 145546 77199 cis-but-2-enedioic acid 77184 145547 77199 (Z)-butenedioic acid 77184 145548 77199 MALEIC ACID 77187 145549 77199 cis-Butenedioic acid 77184 145550 77199 C4H4O4 77185 145551 77199 OC(=O)C=C/C(O)=O 77188 145552 77199 InChI=1S/C4H4O4/c5-3(6)1-2-4(7)8/h1-2H,(H,5,6)(H,7,8)/b2-1- 77189 145553 77199 VZCYOOQTPOCHFL-UPHRSURJSA-N 77190 145554 77200 Tyrosin 77184 145555 77200 tyrosine 77183 145556 77200 Tyrosine 77187 145557 77200 Y 77184 145558 77200 tirosina 77184 145559 77200 2-amino-3-(4-hydroxyphenyl)propanoic acid 77184 145560 77200 Tyr 77184 145561 77200 3-(p-Hydroxyphenyl)alanine 77184 145562 77200 2-Amino-3-(p-hydroxyphenyl)propionic acid 77184 145563 77200 C9H11NO3 77185 145564 77200 NC(Cc1ccc(O)cc1)C(O)=O 77188 145565 77200 InChI=1S/C9H11NO3/c10-8(9(12)13)5-6-1-3-7(11)4-2-6/h1-4,8,11H,5,10H2,(H,12,13) 77189 145566 77200 OUYCCCASQSFEME-UHFFFAOYSA-N 77190 145567 77201 2-ketoglutarate 77184 145568 77201 4-carboxy-2-oxobutanoate 77183 145569 77201 C5H5O5 77185 145570 77201 OC(=O)CCC(=O)C([O-])=O 77188 145571 77201 InChI=1S/C5H6O5/c6-3(5(9)10)1-2-4(7)8/h1-2H2,(H,7,8)(H,9,10)/p-1 77189 145572 77201 KPGXRSRHYNQIFN-UHFFFAOYSA-M 77190 145573 77202 2-oxopropanoate 77183 145574 77202 pyruvate 77187 145575 77202 2-oxopropanoic acid, ion(1-) 77184 145576 77202 C3H3O3 77185 145577 77202 CC(=O)C([O-])=O 77188 145578 77202 InChI=1S/C3H4O3/c1-2(4)3(5)6/h1H3,(H,5,6)/p-1 77189 145579 77202 LCTONWCANYUPML-UHFFFAOYSA-M 77190 145580 77203 H2P2O7(2-) 77184 145581 77203 dihydrogen diphosphate 77183 145582 77203 PYROPHOSPHATE 2- 77184 145583 77203 H2O7P2 77185 145584 77203 OP([O-])(=O)OP(O)([O-])=O 77188 145585 77203 InChI=1S/H4O7P2/c1-8(2,3)7-9(4,5)6/h(H2,1,2,3)(H2,4,5,6)/p-2 77189 145586 77203 XPPKVPWEQAFLFU-UHFFFAOYSA-L 77190 145587 77204 Adenosine-5-diphosphate 77184 145588 77204 Adenosine 5'-pyrophosphate 77184 145589 77204 Adenosine diphosphate 77184 145590 77204 adenosine 5'-(trihydrogen diphosphate) 77183 145591 77204 [[(2R,3R,4R,5R)-5-(6-aminopurin-9-yl)-3,4-dihydroxy-tetrahydrofuran-2-yl]methoxy-hydroxy-phosphoryl]oxyphosphonic acid 77184 145592 77204 Adenosindiphosphorsaeure 77184 145593 77204 5'-adenylphosphoric acid 77184 145594 77204 Adenosine-5'-diphosphate 77184 145595 77204 [[(2R,3R,4R,5R)-5-(6-aminopurin-9-yl)-3,4-dihydroxy-oxolan-2-yl]methoxy-hydroxy-phosphoryl]oxyphosphonic acid 77184 145596 77204 Adenosine-diphosphate 77184 145597 77204 H3adp 77184 145598 77204 Adenosine pyrophosphate 77184 145713 77216 Glycerate-3-P 77184 145599 77204 [({[(2R,3S,4R,5R)-5-(6-amino-9H-purin-9-yl)-3,4-dihydroxyoxolan-2-yl]methoxy}(hydroxy)phosphoryl)oxy]phosphonic acid 77184 145600 77204 ADP 77187 145601 77204 Adenosine 5'-diphosphate 77184 145602 77204 C10H15N5O10P2 77185 145603 77204 Nc1ncnc2n(cnc12)[C@@H]1O[C@H](COP(O)(=O)OP(O)(O)=O)[C@@H](O)[C@H]1O 77188 145604 77204 InChI=1S/C10H15N5O10P2/c11-8-5-9(13-2-12-8)15(3-14-5)10-7(17)6(16)4(24-10)1-23-27(21,22)25-26(18,19)20/h2-4,6-7,10,16-17H,1H2,(H,21,22)(H2,11,12,13)(H2,18,19,20)/t4-,6-,7-,10-/m1/s1 77189 145605 77204 XTWYTFMLZFPYCI-KQYNXXCUSA-N 77190 145606 77205 rhamnoses 77184 145607 77205 rhamnose 77187 145608 77205 ramnose 77184 145609 77205 C6H12O5 77185 145610 77206 phosphorus 77184 145611 77206 Phosphor 77184 145612 77206 fosforo 77184 145613 77206 15P 77184 145614 77206 P 77184 145615 77206 phosphore 77184 145616 77206 [P] 77188 145617 77206 InChI=1S/P 77189 145618 77206 OAICVXFJPJFONN-UHFFFAOYSA-N 77190 145619 77207 D-Galactonic acid, gamma-lactone 77184 145620 77207 D-galactono-1,4-lactone 77187 145621 77207 1,4-D-Galactonolactone 77184 145622 77207 D-galactonic acid gamma-lactone 77184 145623 77207 gamma-D-Galactonolactone 77184 145624 77207 C6H10O6 77185 145625 77207 OC[C@@H](O)[C@@H]1OC(=O)[C@H](O)[C@H]1O 77188 145626 77207 InChI=1S/C6H10O6/c7-1-2(8)5-3(9)4(10)6(11)12-5/h2-5,7-10H,1H2/t2-,3-,4-,5+/m1/s1 77189 145627 77207 SXZYCXMUPBBULW-AIHAYLRMSA-N 77190 145628 77208 D-Sucrose 77184 145629 77208 beta-D-fructofuranosyl alpha-D-glucopyranoside 77183 145630 77208 Saccharum 77184 145631 77208 (2R,3R,4S,5R,6R)-2-[(2S,3S,4R,5R)-3,4-dihydroxy-2,5-bis(hydroxymethyl)oxolan-2-yl]oxy-6-(hydroxymethyl)oxane-3,4,5-triol 77184 145632 77208 b -D-Fructofuranosyl a-D-glucopyranoside 77184 145633 77208 sucrose 77187 145634 77208 Sacharose 77184 145635 77208 D-(+)-Saccharose 77184 145636 77208 beta-D-Fruf-(2<->1)-alpha-D-Glcp 77184 145637 77208 White sugar 77184 145638 77208 (2R,3R,4S,5R,6R)-2-[(2S,3S,4R,5R)-3,4-dihydroxy-2,5-bis(hydroxymethyl)tetrahydrofuran-2-yl]oxy-6-(hydroxymethyl)tetrahydropyran-3,4,5-triol 77184 145639 77208 D-(+)-Sucrose 77184 145640 77208 (2R,3R,4S,5S,6R)-2-{[(2S,3S,4S,5R)-3,4-dihydroxy-2,5-bis(hydroxymethyl)oxolan-2-yl]oxy}-6-(hydroxymethyl)oxane-3,4,5-triol 77184 145641 77208 table sugar 77184 145642 77208 (2R,3R,4S,5R,6R)-2-[(2S,3S,4R,5R)-3,4-dihydroxy-2,5-dimethylol-tetrahydrofuran-2-yl]oxy-6-methylol-tetrahydropyran-3,4,5-triol 77184 145643 77208 sacarosa 77184 145644 77208 (+)-Sucrose 77184 145645 77208 1-alpha-D-Glucopyranosyl-2-beta-D-fructofuranoside 77184 145646 77208 Cane sugar 77184 145647 77208 Saccharose 77184 145648 77208 C12H22O11 77185 145649 77208 OC[C@H]1O[C@H](O[C@]2(CO)O[C@H](CO)[C@@H](O)[C@@H]2O)[C@H](O)[C@@H](O)[C@@H]1O 77188 145650 77208 InChI=1S/C12H22O11/c13-1-4-6(16)8(18)9(19)11(21-4)23-12(3-15)10(20)7(17)5(2-14)22-12/h4-11,13-20H,1-3H2/t4-,5-,6-,7-,8+,9-,10+,11-,12+/m1/s1 77189 145651 77208 CZMRCDWAGMRECN-UGDNZRGBSA-N 77190 145652 77209 xylo-pentose 77183 145653 77209 Xyl 77184 145654 77209 DL-xylose 77184 145655 77209 xylose 77183 145656 77209 Xylose 77187 145657 77209 C5H10O5 77185 145658 77210 Methionin 77184 145659 77210 Met 77184 145660 77210 methionine 77183 145661 77210 Hmet 77184 145662 77210 alpha-amino-gamma-methylmercaptobutyric acid 77184 145663 77210 DL-Methionine 77184 145664 77210 Racemethionine 77184 145665 77210 metionina 77184 145666 77210 2-amino-4-(methylthio)butanoic acid 77184 145667 77210 M 77184 145668 77210 2-amino-4-(methylsulfanyl)butanoic acid 77184 145669 77210 2-Amino-4-(methylthio)butyric acid 77184 145670 77210 Methionine 77187 145671 77210 C5H11NO2S 77185 145672 77210 CSCCC(N)C(O)=O 77188 145673 77210 InChI=1S/C5H11NO2S/c1-9-3-2-4(6)5(7)8/h4H,2-3,6H2,1H3,(H,7,8) 77189 145674 77210 FFEARJCKVFRZRR-UHFFFAOYSA-N 77190 145675 77211 2-(beta-D-glucopyranosyloxy)-2-methylpropanenitrile 77183 145676 77211 linamarin 77187 145677 77211 Phaseolunatin 77184 145678 77211 1-cyano-1-methylethyl beta-D-glucoside 77184 145679 77211 247.106 77212 145680 77211 247.24512 77213 145681 77211 C10H17NO6 77185 145682 77211 QLTCHMYAEJEXBT-ZEBDFXRSSA-N 77190 145683 77211 InChI=1S/C10H17NO6/c1-10(2,4-11)17-9-8(15)7(14)6(13)5(3-12)16-9/h5-9,12-15H,3H2,1-2H3/t5-,6-,7+,8-,9+/m1/s1 77189 145684 77215 2-amino-3-methylbutanoic acid 77184 145685 77215 valina 77184 145686 77215 DL-valine 77184 145687 77215 Valin 77184 145688 77215 Hval 77184 145689 77215 valine 77183 145690 77215 C5H11NO2 77185 145691 77215 CC(C)C(N)C(O)=O 77188 145692 77215 InChI=1S/C5H11NO2/c1-3(2)4(6)5(7)8/h3-4H,6H2,1-2H3,(H,7,8) 77189 145693 77215 KZSNJWFQEVHDMF-UHFFFAOYSA-N 77190 145694 77216 Glyceric acid 3-phosphate 77184 145695 77216 3-Phospho-(R)-glycerate 77184 145696 77216 3-Phospho-glycerate 77184 145697 77216 3-Phospho-glyceric acid 77184 145698 77216 G3P 77184 145699 77216 3-(dihydrogen phosphate)Glycerate 77184 145700 77216 3-P-Glycerate 77184 145701 77216 3-Glycerophosphorate 77184 145702 77216 3-(dihydrogen phosphate)Glyceric acid 77184 145703 77216 3-P-D-Glycerate 77184 145704 77216 Phosphoglycerate 77184 145705 77216 3-Phosphoglycerate 77184 145706 77216 3-PGA 77184 145707 77216 D-(-)-3-Phosphoglyceric acid 77184 145708 77216 3-Phospho-D-glycerate 77184 145709 77216 DL-Glycerate 3-phosphate 77184 145710 77216 3-Glycerophosphoric acid 77184 145711 77216 3-Pg 77184 145712 77216 2-hydroxy-3-(phosphonooxy)propanoic acid 77183 145714 77216 D-Glycerate 3-phosphate 77184 145715 77216 3-phosphoglyceric acid 77187 145716 77216 Glycerate 3-phosphate 77184 145717 77216 glycerate 3-phosphates 77184 145718 77216 C3H7O7P 77185 145719 77216 OC(COP(O)(O)=O)C(O)=O 77188 145720 77216 InChI=1S/C3H7O7P/c4-2(3(5)6)1-10-11(7,8)9/h2,4H,1H2,(H,5,6)(H2,7,8,9) 77189 145721 77216 OSJPPGNTCRNQQC-UHFFFAOYSA-N 77190 145722 77217 (+-)-Leucine 77184 145723 77217 2-amino-4-methylpentanoic acid 77184 145724 77217 Hleu 77184 145725 77217 DL-Leucine 77184 145726 77217 Leuzin 77184 145727 77217 Leu 77184 145728 77217 leucine 77183 145729 77217 Leucin 77184 145730 77217 (RS)-Leucine 77184 145731 77217 L 77184 145732 77217 C6H13NO2 77185 145733 77217 CC(C)CC(N)C(O)=O 77188 145734 77217 InChI=1S/C6H13NO2/c1-4(2)3-5(7)6(8)9/h4-5H,3,7H2,1-2H3,(H,8,9) 77189 145735 77217 ROHFNLRQFUQHCH-UHFFFAOYSA-N 77190 145736 77218 glyceric acids 77184 145737 77218 2,3-dihydroxypropanoic acid 77183 145738 77218 glyceric acid 77187 145739 77218 2,3-dihydroxypropionic acid 77184 145740 77218 C3H6O4 77185 145741 77218 OCC(O)C(O)=O 77188 145742 77218 InChI=1S/C3H6O4/c4-1-2(5)3(6)7/h2,4-5H,1H2,(H,6,7) 77189 145743 77218 RBNPOMFGQQGHHO-UHFFFAOYSA-N 77190 145744 77219 Glukose 77184 145745 77219 gluco-hexose 77183 145746 77219 DL-glucose 77184 145747 77219 glucose 77183 145748 77219 Glc 77184 145749 77219 Glucose 77187 145750 77219 C6H12O6 77185 145751 77220 xylulose 5-phosphates 77184 145752 77220 xylulose 5-(dihydrogen phosphate) 77183 145753 77220 C5H11O8P 77185 145754 77221 Sulfate ion 77184 145755 77221 [SO4](2-) 77184 145756 77221 Sulfate(2-) 77184 145757 77221 sulfate 77183 145758 77221 Sulfate (ion 2-) 77184 145759 77221 tetraoxidosulfate(2-) 77183 145760 77221 SO4(2-) 77184 145761 77221 Sulfate dianion 77184 145762 77221 sulphate 77184 145763 77221 tetraoxosulfate(VI) 77183 145764 77221 sulphate ion 77184 145765 77221 Sulfate anion(2-) 77184 145766 77221 Sulfuric acid ion(2-) 77184 145767 77221 tetraoxosulfate(2-) 77183 145768 77221 Sulfate anion 77184 145769 77221 Sulfate ion (SO42-) 77184 145770 77221 Sulfate 77187 145771 77221 O4S 77185 145772 77221 [O-]S([O-])(=O)=O 77188 145773 77221 InChI=1S/H2O4S/c1-5(2,3)4/h(H2,1,2,3,4)/p-2 77189 145774 77221 QAOWNCQODCNURD-UHFFFAOYSA-L 77190 145775 77222 6-O-phosphono-D-mannose 77184 145776 77222 aldehydo-D-mannose 6-(dihydrogen phosphate) 77183 145777 77222 C6H13O9P 77185 145778 77222 [H]C(=O)[C@@H](O)[C@@H](O)[C@H](O)[C@H](O)COP(O)(O)=O 77188 145779 77222 InChI=1S/C6H13O9P/c7-1-3(8)5(10)6(11)4(9)2-15-16(12,13)14/h1,3-6,8-11H,2H2,(H2,12,13,14)/t3-,4-,5-,6-/m1/s1 77189 145780 77222 VFRROHXSMXFLSN-KVTDHHQDSA-N 77190 145781 77223 (E)-p-coumaric acid 77184 145782 77223 naringeninic acid 77184 145783 77223 trans-p-Hydroxycinnamate 77184 145784 77223 trans-4-hydroxycinnamic acid 77184 145785 77223 (2E)-3-(4-hydroxyphenyl)acrylic acid 77184 145786 77223 (E)-3-(4-hydroxyphenyl)-2-propenoic acid 77184 145787 77223 (E)-p-hydroxycinnamic acid 77184 145788 77223 trans-p-hydroxycinnamic acid 77184 145789 77223 trans-p-coumaric acid 77184 145790 77223 trans-p-coumarinic acid 77184 145791 77223 (2E)-3-(4-hydroxyphenyl)prop-2-enoic acid 77183 145792 77223 p-Coumaric acid 77184 145793 77223 4-Hydroxycinnamic acid 77184 145794 77223 4'-HYDROXYCINNAMIC ACID 77184 145795 77223 164.15802 77213 145796 77223 164.047 77212 145797 77223 C9H8O3 77185 145798 77223 InChI=1S/C9H8O3/c10-8-4-1-7(2-5-8)3-6-9(11)12/h1-6,10H,(H,11,12)/b6-3+ 77189 145799 77223 NGSWKAQJJWESNS-ZZXKWVIFSA-N 77190 145800 77223 OC(=O)C=Cc1ccc(O)cc1 77188 145801 77224 P.P. factor 77184 145802 77224 3-carboxypyridine 77184 145803 77224 Akotin 77184 145804 77224 Nicacid 77184 145805 77224 3-Picolinic acid 77184 145806 77224 Apelagrin 77184 145807 77224 nicotinic acid 77225 145808 77224 3-Pyridylcarboxylate 77184 145809 77224 beta-pyridinecarboxylic acid 77184 145810 77224 Peviton 77184 145811 77224 Tinic 77184 145812 77224 acide nicotinique 77225 145813 77224 Nicocap 77184 145814 77224 Slo-niacin 77184 145815 77224 Daskil 77184 145816 77224 Pellagrin 77184 145817 77224 pyridine-3-carboxylic acid 77184 145818 77224 Linic 77184 145819 77224 3-Pyridinecarboxylate 77184 145820 77224 Nicangin 77184 145821 77224 anti-pellagra vitamin 77184 145822 77224 m-pyridinecarboxylic acid 77184 145823 77224 acido nicotinico 77225 145824 77224 3-Pyridylcarboxylic acid 77184 145825 77224 Nyclin 77184 145826 77224 Niacor 77184 145827 77224 Efacin 77184 145828 77224 Wampocap 77184 145829 77224 Niac 77184 145830 77224 Nikotinsaeure 77184 145831 77224 Induracin 77184 145832 77224 Nicodelmine 77184 145833 77224 pyridine-beta-carboxylic acid 77184 145834 77224 Pelonin 77184 145835 77224 Nicotinate 77184 145836 77224 Nicolar 77184 145837 77224 Enduracin 77184 145838 77224 Nicotinipca 77184 145839 77224 Nicamin 77184 145840 77224 PP factor 77184 145841 77224 Nicyl 77184 145842 77224 vitamin B3 77184 145843 77224 acidum nicotinicum 77225 145844 77224 Niconacid 77184 145845 77224 3-Carboxylpyridine 77184 145846 77224 pellagra preventive factor 77184 145847 77224 Nico-Span 77184 145848 77224 Nicobid 77184 145849 77224 Nicosan 3 77184 145850 77224 Niacine 77184 145851 77224 NICOTINIC ACID 77187 145852 77224 3-Pyridinecarboxylic acid 77184 145853 77224 Niacin 77184 145854 77224 C6H5NO2 77185 145855 77224 OC(=O)c1cccnc1 77188 145856 77224 InChI=1S/C6H5NO2/c8-6(9)5-2-1-3-7-4-5/h1-4H,(H,8,9) 77189 145857 77224 PVNIIMVLHYAWGP-UHFFFAOYSA-N 77190 145858 77226 3-O-alpha-D-Galactosyl-1D-myo-inositol 77184 145859 77226 1-alpha-D-Galactosyl-myo-inositol 77184 145860 77226 O-alpha-D-Galactosyl-(1->3)-1D-myo-inositol 77184 145861 77226 alpha-D-galactosyl-(1->3)-1D-myo-inositol 77183 145862 77226 1-O-alpha-D-Galactosyl-D-myo-inositol 77184 145863 77226 Galactinol 77184 145864 77226 C12H22O11 77185 145865 77226 OC[C@H]1O[C@H](O[C@H]2[C@@H](O)[C@@H](O)[C@H](O)[C@@H](O)[C@@H]2O)[C@H](O)[C@@H](O)[C@H]1O 77188 145866 77226 InChI=1S/C12H22O11/c13-1-2-3(14)4(15)10(21)12(22-2)23-11-8(19)6(17)5(16)7(18)9(11)20/h2-21H,1H2/t2-,3+,4+,5-,6-,7+,8+,9+,10-,11-,12-/m1/s1 77189 145867 77226 VCWMRQDBPZKXKG-DXNLKLAMSA-N 77190 145868 77227 Prolin 77184 145869 77227 Hpro 77184 145870 77227 proline 77183 145871 77227 DL-Proline 77184 145872 77227 pyrrolidine-2-carboxylic acid 77184 145873 77227 prolina 77184 145874 77227 C5H9NO2 77185 145875 77227 OC(=O)C1CCCN1 77188 145876 77227 InChI=1S/C5H9NO2/c7-5(8)4-2-1-3-6-4/h4,6H,1-3H2,(H,7,8) 77189 145877 77227 ONIBWKKTOPOVIA-UHFFFAOYSA-N 77190 145878 77228 ALA 77184 145879 77228 A 77184 145880 77228 alanina 77184 145881 77228 2-aminopropanoic acid 77183 145882 77228 Alanin 77184 145883 77228 Alanine 77187 145884 77228 2-Aminopropanoic acid 77184 145885 77228 2-Aminopropionic acid 77184 145886 77228 alanine 77183 145887 77228 C3H7NO2 77185 145888 77228 CC(N)C(O)=O 77188 145889 77228 InChI=1S/C3H7NO2/c1-2(4)3(5)6/h2H,4H2,1H3,(H,5,6) 77189 145890 77228 QNAYBMKLOCPYGJ-UHFFFAOYSA-N 77190 145891 77229 beta-3-indolylalanine 77184 145892 77229 Trp 77184 145893 77229 alpha-amino-beta-3-indolepropionic acid 77184 145894 77229 tryptophan 77183 145895 77229 W 77184 145896 77229 2-amino-3-(1H-indol-3-yl)propanoic acid 77184 145897 77229 triptofano 77184 145898 77229 tryptophane 77184 145899 77229 Htrp 77184 145900 77229 Tryptophan 77187 145901 77229 alpha-Amino-beta-(3-indolyl)-propionic acid 77184 145902 77229 C11H12N2O2 77185 145903 77229 NC(Cc1c[nH]c2ccccc12)C(O)=O 77188 145904 77229 InChI=1S/C11H12N2O2/c12-9(11(14)15)5-7-6-13-10-4-2-1-3-8(7)10/h1-4,6,9,13H,5,12H2,(H,14,15) 77189 145905 77229 QIVBCDIJIAJPQS-UHFFFAOYSA-N 77190 145906 77230 trans-Butenedioate 77184 145907 77230 Allomaleate 77184 145908 77230 2-(E)-Butenedioic acid 77184 145909 77230 Fumarate 77184 145910 77230 FC 33 77184 145911 77230 (2E)-But-2-enedioic acid 77184 145912 77230 (2E)-but-2-enedioic acid 77183 145913 77230 Fumarsaeure 77184 145914 77230 but-2-enedioic acid 77184 145915 77230 Boletic acid 77184 145916 77230 Sodium fumarate 77184 145917 77230 Boletate 77184 145918 77230 (2E)-2-butenedioic acid 77184 145919 77230 trans-1,2-ethylenedicarboxylic acid 77184 145920 77230 (E)-2-butenedioic acid 77184 145921 77230 trans-2-Butenedioic acid 77184 145922 77230 Lichenic acid 77184 145923 77230 (E)-2-Butenedioate 77184 145924 77230 E297 77184 145925 77230 (2E)-But-2-enedioate 77184 145926 77230 trans-2-Butenedioate 77184 145927 77230 trans-but-2-enedioic acid 77184 145928 77230 trans-1,2-Ethylenedicarboxylate 77184 145929 77230 Lichenate 77184 145930 77230 Allomaleic acid 77184 145931 77230 2-(E)-Butenedioate 77184 145932 77230 Fumaric acid 77187 145933 77230 trans-Butenedioic acid 77184 145934 77230 C4H4O4 77185 145935 77230 OC(=O)C=CC(O)=O 77188 145936 77230 InChI=1S/C4H4O4/c5-3(6)1-2-4(7)8/h1-2H,(H,5,6)(H,7,8)/b2-1+ 77189 145937 77230 VZCYOOQTPOCHFL-OWOJBTEDSA-N 77190 145938 77232 ribulose 5-phosphates 77184 145939 77232 erythro-pentos-2-ulose 5-(dihydrogen phosphate) 77183 145940 77232 ribulose 5-phosphate 77187 145941 77232 C5H11O8P 77185 145942 77233 calcio 77184 145943 77233 calcium 77183 145944 77233 20Ca 77184 145945 77233 Ca 77184 145946 77233 Kalzium 77184 145947 77233 Calcium 77184 145948 77233 [Ca] 77188 145949 77233 InChI=1S/Ca 77189 145950 77233 OYPRJOBELJOOCE-UHFFFAOYSA-N 77190 145951 77234 D-(+)-trehalose 77184 145952 77234 (2R,3S,4S,5R,6R)-2-(hydroxymethyl)-6-{[(2R,3R,4S,5S,6R)-3,4,5-trihydroxy-6-(hydroxymethyl)oxan-2-yl]oxy}oxane-3,4,5-triol 77184 145953 77234 alpha-D-Glcp-(1<->1)-alpha-D-Glcp 77184 145954 77234 alpha-D-glucopyranosyl-alpha-D-glucopyranoside 77184 145955 77234 alpha-trehalose 77184 145956 77234 (2R,3R,4S,5R,6R)-2-(hydroxymethyl)-6-[(2R,3R,4S,5R,6R)-3,4,5-trihydroxy-6-(hydroxymethyl)oxan-2-yl]oxy-oxane-3,4,5-triol 77184 145957 77234 alpha,alpha-Trehalose 77187 145958 77234 (Glc)2 77184 145959 77234 mycose 77184 145960 77234 (2R,3R,4S,5R,6R)-2-(hydroxymethyl)-6-[(2R,3R,4S,5R,6R)-3,4,5-trihydroxy-6-(hydroxymethyl)tetrahydropyran-2-yl]oxy-tetrahydropyran-3,4,5-triol 77184 145961 77234 alpha-D-Trehalose 77184 145962 77234 alpha-D-glucopyranosyl alpha-D-glucopyranoside 77183 145963 77234 D-Trehalose-anhydrous 77184 145964 77234 ergot sugar 77184 146085 77247 C3H9O6P 77185 145965 77234 (2R,3R,4S,5R,6R)-2-methylol-6-[(2R,3R,4S,5R,6R)-3,4,5-trihydroxy-6-methylol-tetrahydropyran-2-yl]oxy-tetrahydropyran-3,4,5-triol 77184 145966 77234 delta-Trehalose-anhydrous 77184 145967 77234 Trehalose 77184 145968 77234 alpha,alpha'-Trehalose 77184 145969 77234 C12H22O11 77185 145970 77234 OC[C@H]1O[C@H](O[C@H]2O[C@H](CO)[C@@H](O)[C@H](O)[C@H]2O)[C@H](O)[C@@H](O)[C@@H]1O 77188 145971 77234 InChI=1S/C12H22O11/c13-1-3-5(15)7(17)9(19)11(21-3)23-12-10(20)8(18)6(16)4(2-14)22-12/h3-20H,1-2H2/t3-,4-,5-,6-,7+,8+,9-,10-,11-,12-/m1/s1 77189 145972 77234 HDTRYLNUVZCQOY-LIZSDCNHSA-N 77190 145973 77235 Diphosphofructose 77184 145974 77236 16S 77184 145975 77236 sulfur 77184 145976 77236 theion 77184 145977 77236 sulphur 77184 145978 77236 soufre 77184 145979 77236 S 77184 145980 77236 Schwefel 77184 145981 77236 azufre 77184 145982 77236 Elemental sulfur 77184 145983 77236 [S] 77188 145984 77236 InChI=1S/S 77189 145985 77236 NINIDFKCEFEMDL-UHFFFAOYSA-N 77190 145986 77237 (2S)-2-acetamido-3-hydroxypropanoic acid 77184 145987 77237 Acetylserine 77184 145988 77237 N-acetyl-L-serine 77187 145989 77237 N-ACETYL-SERINE 77184 145990 77237 N-acetylserine 77184 145991 77237 (S)-2-acetylamino-3-hydroxypropanoic acid 77184 145992 77237 C5H9NO4 77185 145993 77237 CC(=O)N[C@@H](CO)C(O)=O 77188 145994 77237 InChI=1S/C5H9NO4/c1-3(8)6-4(2-7)5(9)10/h4,7H,2H2,1H3,(H,6,8)(H,9,10)/t4-/m0/s1 77189 145995 77237 JJIHLJJYMXLCOY-BYPYZUCNSA-N 77190 145996 77239 3-Carboxy-2,3-dideoxy-1-hydroxypropan-1,2,3-tricarboxylic acid 77184 145997 77239 Threo-D(S)-iso-citrate 77184 145998 77239 1-Hydroxytricarballylate 77184 145999 77239 D-Isocitrate 77184 146000 77239 1-hydroxypropane-1,2,3-tricarboxylic acid 77183 146001 77239 I-CIT 77184 146002 77239 1-Hydroxy-1,2,3-propanetricarboxylate 77184 146003 77239 1-Hydroxypropane-1,2,3-tricarboxylate 77184 146004 77239 3-carboxy-2,3-dideoxypentaric acid 77183 146005 77239 3-Carboxy-2,3-dideoxy-Pentaric acid 77184 146006 77239 Threo-Ds-isocitrate 77184 146007 77239 1-Hydroxy-1,2,3-propanetricarboxylic acid 77184 146008 77239 3-Carboxy-2,3-dideoxy-Pentarate 77184 146009 77239 3-Carboxy-2,3-dideoxy-1-hydroxypropan-1,2,3-tricarboxylate 77184 146010 77239 Isocitrate 77184 146011 77239 1-Hydroxytricarballylic acid 77184 146012 77239 Isocitric acid 77187 146013 77239 1-Hydroxypropane-1,2,3-tricarboxylic acid 77184 146014 77239 C6H8O7 77185 146015 77239 OC(C(CC(O)=O)C(O)=O)C(O)=O 77188 146016 77239 InChI=1S/C6H8O7/c7-3(8)1-2(5(10)11)4(9)6(12)13/h2,4,9H,1H2,(H,7,8)(H,10,11)(H,12,13) 77189 146017 77239 ODBLHEXUDAPZAU-UHFFFAOYSA-N 77190 146018 77240 L-threonic acid 77183 146019 77240 (2R,3S)-2,3,4-trihydroxybutanoic acid 77183 146020 77240 C4H8O5 77185 146021 77240 OC[C@H](O)[C@@H](O)C(O)=O 77188 146022 77240 InChI=1S/C4H8O5/c5-1-2(6)3(7)4(8)9/h2-3,5-7H,1H2,(H,8,9)/t2-,3+/m0/s1 77189 146023 77240 JPIJQSOTBSSVTP-STHAYSLISA-N 77190 146024 77241 19K 77184 146025 77241 potasio 77184 146026 77241 potassium 77183 146027 77241 K 77184 146028 77241 kalium 77184 146029 77241 [K] 77188 146030 77241 InChI=1S/K 77189 146031 77241 ZLMJMSJWJFRBEC-UHFFFAOYSA-N 77190 146032 77242 magnesium 77183 146033 77242 magnesio 77184 146034 77242 12Mg 77184 146035 77242 Magnesium 77184 146036 77242 Mg 77184 146037 77242 [Mg] 77188 146038 77242 InChI=1S/Mg 77189 146039 77242 FYYHWMGAXLPEAU-UHFFFAOYSA-N 77190 146040 77243 diphosphate ions 77184 146041 77243 PPi 77184 146042 77243 . 77185 146043 77244 Lysin 77184 146044 77244 2,6-diaminohexanoic acid 77183 146045 77244 K 77184 146046 77244 alpha,epsilon-diaminocaproic acid 77184 146047 77244 LYS 77184 146048 77244 lysine 77183 146049 77244 C6H14N2O2 77185 146050 77244 NCCCCC(N)C(O)=O 77188 146051 77244 InChI=1S/C6H14N2O2/c7-4-2-1-3-5(8)6(9)10/h5H,1-4,7-8H2,(H,9,10) 77189 146052 77244 KDXKERNSBIXSRK-UHFFFAOYSA-N 77190 146053 77245 Arginin 77184 146054 77245 Harg 77184 146055 77245 2-amino-5-guanidinopentanoic acid 77184 146056 77245 2-amino-5-(carbamimidamido)pentanoic acid 77184 146057 77245 arginine 77183 146058 77245 Arginine 77187 146059 77245 2-Amino-5-guanidinovaleric acid 77184 146060 77245 C6H14N4O2 77185 146061 77245 NC(CCCNC(N)=N)C(O)=O 77188 146062 77245 InChI=1S/C6H14N4O2/c7-4(5(11)12)2-1-3-10-6(8)9/h4H,1-3,7H2,(H,11,12)(H4,8,9,10) 77189 146063 77245 ODKSFYDXXFIFQN-UHFFFAOYSA-N 77190 146064 77246 4Hyp 77184 146065 77246 4-hydroxyproline 77183 146066 77246 C5H9NO3 77185 146067 77246 OC1CNC(C1)C(O)=O 77188 146068 77246 InChI=1S/C5H9NO3/c7-3-1-4(5(8)9)6-2-3/h3-4,6-7H,1-2H2,(H,8,9) 77189 146069 77246 PMMYEEVYMWASQN-UHFFFAOYSA-N 77190 146070 77247 (R)-glycerol 1-phosphate 77184 146071 77247 (2R)-2,3-dihydroxypropyl dihydrogen phosphate 77183 146072 77247 sn-glycerol 3-(dihydrogen phosphate) 77183 146073 77247 D-(glycerol 1-phosphate) 77184 146074 77247 D-Glycerol 1-phosphate 77184 146075 77247 L-(glycerol 3-phosphate) 77184 146076 77247 phosphoric acid mono-((R)-2,3-dihydroxy-propyl) ester 77184 146077 77247 Phosphorsaeure-mono-((R)-2,3-dihydroxy-propylester) 77184 146078 77247 sn-Gro-1-P 77184 146079 77247 Glycerol-3-phosphate 77184 146080 77247 sn-Glycerol 3-phosphate 77187 146081 77247 Glycerophosphoric acid 77184 146082 77247 SN-GLYCEROL-3-PHOSPHATE 77184 146083 77247 172.07372 77213 146084 77247 172.014 77212 146086 77247 AWUCVROLDVIAJX-GSVOUGTGSA-N 77190 146087 77247 InChI=1S/C3H9O6P/c4-1-3(5)2-9-10(6,7)8/h3-5H,1-2H2,(H2,6,7,8)/t3-/m1/s1 77189 146088 77247 OC[C@@H](O)COP(O)(O)=O 77188 146089 77248 3-O-Caffeoylquinic acid 77184 146090 77248 Caffeoyl quinic acid 77184 146091 77248 Hlorogenic acid 77184 146092 77248 5-O-(3,4-Dihydroxycinnamoyl)-L-quinic acid 77184 146093 77248 trans-5-O-Caffeoyl-D-quinate 77184 146094 77248 3-Caffeoylquinate 77184 146095 77248 3-(3,4-Dihydroxycinnamoyl)quinate 77184 146096 77248 Heriguard 77184 146097 77248 (1S,3R,4R,5R)-3-[(E)-3-(3,4-dihydroxyphenyl)prop-2-enoyl]oxy-1,4,5-trihydroxycyclohexane-1-carboxylic acid 77184 146098 77248 (1S,3R,4R,5R)-3-[(E)-3-(3,4-dihydroxyphenyl)-1-oxoprop-2-enoxy]-1,4,5-trihydroxy-1-cyclohexanecarboxylic acid 77184 146099 77248 (1S,3R,4R,5R)-3-[(E)-3-(3,4-dihydroxyphenyl)acryloyl]oxy-1,4,5-trihydroxy-cyclohexane-1-carboxylic acid 77184 146100 77248 (1S,3R,4R,5R)-3-{[(2E)-3-(3,4-dihydroxyphenyl)prop-2-enoyl]oxy}-1,4,5-trihydroxycyclohexane-1-carboxylic acid 77184 146101 77248 3-(3,4-Dihydroxycinnamoyl)quinic acid 77184 146102 77248 Hlorogenate 77184 146103 77248 (1S,3R,4R,5R)-3-[(E)-3-(3,4-dihydroxyphenyl)prop-2-enoyl]oxy-1,4,5-trihydroxy-cyclohexane-1-carboxylic acid 77184 146104 77248 Chlorogenate 77184 146105 77248 edit(1S,3R,4R,5R)-3-{[(2E)-3-(3,4-dihydroxyphenyl)prop-2-enoyl]oxy}-1,4,5-trihydroxycyclohexane-1-carboxylic acid 77183 146106 77248 3-Caffeoylquinic acid 77184 146107 77248 3-trans-Caffeoylquinic acid 77184 146108 77248 [1S-(1alpha,3beta,4alpha,5alpha)]3-[[3-(3,4-dihydroxyphenyl)-1-oxo-2-propenyl]oxy]-1,4,5-trihydroxycyclohexanecarboxylic acid 77184 146109 77248 Chlorogenic acid 77187 146110 77248 C16H18O9 77185 146111 77248 O[C@@H]1C[C@](O)(C[C@@H](OC(=O)C=Cc2ccc(O)c(O)c2)[C@@H]1O)C(O)=O 77188 146112 77248 InChI=1S/C16H18O9/c17-9-3-1-8(5-10(9)18)2-4-13(20)25-12-7-16(24,15(22)23)6-11(19)14(12)21/h1-5,11-12,14,17-19,21,24H,6-7H2,(H,22,23)/b4-2+/t11-,12-,14-,16+/m1/s1 77189 146113 77248 CWVRJTMFETXNAD-JUHZACGLSA-N 77190 146114 77249 L-erythritol 77184 146115 77249 Lichen sugar 77184 146116 77249 Erythroglucin 77184 146117 77249 erythro-tetritol 77184 146118 77249 i-Erythritol 77184 146119 77249 mesoerythritol 77184 146120 77249 Meso-Eythritol 77184 146121 77249 Antierythrite 77184 146122 77249 (2R,3S)-butane-1,2,3,4-tetrol 77184 146123 77249 Tetrahydroxybutane 77184 146124 77249 Paycite 77184 146125 77249 meso-erythritol 77183 146126 77249 L-Threitol 77184 146127 77249 Meso-Erythritol 77184 146128 77249 C*Eridex 77184 146129 77249 1,2,3,4-Butanetetrol 77184 146130 77249 Butanetetrol 77184 146131 77249 L-(-)-Threitol 77184 146132 77249 Erythrit 77184 146133 77249 erythritol 77187 146134 77249 Phycitol 77184 146135 77249 Erythrite 77184 146136 77249 Erythrol 77184 146137 77249 Phycite 77184 146138 77249 C4H10O4 77185 146139 77249 OC[C@H](O)[C@H](O)CO 77188 146140 77249 InChI=1S/C4H10O4/c5-1-3(7)4(8)2-6/h3-8H,1-2H2/t3-,4+ 77189 146141 77249 UNXHWFMMPAWVPI-ZXZARUISSA-N 77190 146142 77250 ion 77183 146143 77250 iones 77184 146144 77250 ions 77184 146145 77250 Ion 77187 146146 77250 Ionen 77184 146147 77250 . 77185 146148 77251 6-O-phosphono-D-mannose 77184 146149 77251 Mannose 6-phosphate 77184 146150 77251 D-mannose 6-(dihydrogen phosphate) 77183 146151 77251 D-Mannose 6-phosphate 77187 146152 77251 C6H13O9P 77185 146153 77252 nicotinamide-adenine dinucleotide 77184 146154 77252 NAD 77187 146155 77252 . 77185 146156 77253 proteins 77183 146157 77253 . 77185 146158 77254 2-oxopentanedioic acid 77184 146159 77254 2-Oxoglutarate 77184 146160 77254 2-oxoglutaric acid 77187 146161 77254 2-Ketoglutarate 77184 146162 77254 alpha-ketoglutaric acid 77184 146163 77254 Oxoglutarate 77184 146164 77254 2-Oxopentanedioate 77184 146165 77254 2-Oxo-1,5-pentanedioic acid 77184 146166 77254 2-Oxo-1,5-pentanedioate 77184 146167 77254 Oxoglutaric acid 77184 146168 77254 2-Ketoglutaric acid 77184 146169 77254 2-OXYGLUTARIC ACID 77184 146170 77254 C5H6O5 77185 146171 77254 OC(=O)CCC(=O)C(O)=O 77188 146172 77254 InChI=1S/C5H6O5/c6-3(5(9)10)1-2-4(7)8/h1-2H2,(H,7,8)(H,9,10) 77189 146173 77254 KPGXRSRHYNQIFN-UHFFFAOYSA-N 77190 146174 77255 amidon 77184 146175 77255 Staerke 77184 146176 77255 amylum 77184 146177 77255 Starch 77187 146178 77255 . 77185 146179 77256 Glycollic acid 77184 146180 77256 2-Hydroxyethanoic acid 77184 146181 77256 2-Hydroxyacetate 77184 146182 77256 2-hydroxyacetic acid 77184 146183 77256 HOCH2COOH 77184 146184 77256 GlyPure 70 77184 146185 77256 GlyPure 77184 146186 77256 alpha-Hydroxyacetate 77184 146187 77256 Glycollate 77184 146188 77256 Hydroxyethanoic acid 77184 146189 77256 Glycocide 77184 146190 77256 a-Hydroxyacetate 77184 146191 77256 Hydroxyacetate 77184 146192 77256 Glycolate 77184 146193 77256 hydroxyacetic acid 77183 146194 77256 a-Hydroxyacetic acid 77184 146195 77256 Sodium glycolate 77184 146196 77256 Hydroxyethanoate 77184 146197 77256 alpha-Hydroxyacetic acid 77184 146198 77256 Hydroxyacetic acid 77184 146199 77256 Glycolic acid 77187 146200 77256 C2H4O3 77185 146201 77256 OCC(O)=O 77188 146202 77256 InChI=1S/C2H4O3/c3-1-2(4)5/h3H,1H2,(H,4,5) 77189 146203 77256 AEMRFAOFKBGASW-UHFFFAOYSA-N 77190 146204 77257 Ureaphil 77184 146205 77257 Hyanit 77184 146206 77257 Carbaderm 77184 146207 77257 Harnstoff 77184 146208 77257 carbonyldiamide 77184 146209 77257 uree 77184 146210 77257 Ureophil 77184 146211 77257 Carmol 77184 146212 77257 Keratinamin 77184 146213 77257 ARF 77184 146214 77257 Onychomal 77184 146215 77257 Alphadrate 77184 146216 77257 Bubber shet 77184 146217 77257 Bromisovalum 77184 146218 77257 carbamide 77225 146219 77257 beta-I-k 77184 146220 77257 Panafil 77184 146221 77257 Carbamide resin 77184 146222 77257 Karbamid 77184 146223 77257 Carbonyldiamine 77184 146224 77257 Mocovina 77184 146225 77257 Carbonyl diamine 77184 146226 77257 Calmurid 77184 146227 77257 Helicosol 77184 146228 77257 urea 77183 146229 77257 ur 77184 146230 77257 Isourea 77184 146231 77257 Carbonyl diamide 77184 146232 77257 Keratinamin kowa 77184 146233 77257 Calmurid HC 77184 146234 77257 E927b 77184 146235 77257 B-I-k 77184 146236 77257 URE 77184 146237 77257 H2NC(O)NH2 77184 146238 77257 UREA 77187 146239 77257 Carbamide 77184 146240 77257 CH4N2O 77185 146241 77257 NC(N)=O 77188 146242 77257 InChI=1S/CH4N2O/c2-1(3)4/h(H4,2,3,4) 77189 146243 77257 XSQUKJJJFZCRTK-UHFFFAOYSA-N 77190 146244 77258 5-oxo-DL-proline 77184 146245 77258 Glp 77184 146246 77258 5-oxoproline 77183 146247 77258 5-oxopyrrolidine-2-carboxylic acid 77183 146248 77258 5-OXOPROLINE 77187 146249 77258 Pyroglutamate 77184 146250 77258 Pyroglutamic acid 77184 146251 77258 5-Pyrrolidone-2-carboxylic acid 77184 146252 77258 2-pyrrolidone-5-carboxylic acid 77184 146253 77258 C5H7NO3 77185 146254 77258 OC(=O)C1CCC(=O)N1 77188 146255 77258 InChI=1S/C5H7NO3/c7-4-2-1-3(6-4)5(8)9/h3H,1-2H2,(H,6,7)(H,8,9) 77189 146256 77258 ODHCTXKNWHHXJC-UHFFFAOYSA-N 77190 146257 77259 [(2R,3R,4S,5R,6R)-3,4,5-trihydroxy-6-(hydroxymethyl)tetrahydropyran-2-yl]oxyphosphonic acid 77184 146258 77259 [(2R,3R,4S,5R,6R)-3,4,5-trihydroxy-6-(hydroxymethyl)oxan-2-yl]oxyphosphonic acid 77184 146259 77259 [(2R,3R,4S,5R,6R)-3,4,5-trihydroxy-6-methylol-tetrahydropyran-2-yl]oxyphosphonic acid 77184 146260 77259 alpha-D-glucopyranosyl phosphate 77184 146261 77259 ALPHA-D-GLUCOSE-1-PHOSPHATE 77184 146262 77259 alpha-D-glucopyranose 1-(dihydrogen phosphate) 77183 146263 77259 D-Glucose 1-phosphate 77184 146264 77259 alpha-D-Glucose 1-phosphate 77187 146265 77259 1-O-phosphono-alpha-D-glucopyranose 77184 146266 77259 D-Glucose alpha-1-phosphate 77184 146267 77259 Cori ester 77184 146268 77259 C6H13O9P 77185 146269 77259 OC[C@H]1O[C@H](OP(O)(O)=O)[C@H](O)[C@@H](O)[C@@H]1O 77188 146270 77259 InChI=1S/C6H13O9P/c7-1-2-3(8)4(9)5(10)6(14-2)15-16(11,12)13/h2-10H,1H2,(H2,11,12,13)/t2-,3-,4+,5-,6-/m1/s1 77189 146271 77259 HXXFSFRBOHSIMQ-VFUOTHLCSA-N 77190 146272 77260 inosite 77184 146273 77260 Rat antispectacled eye factor 77184 146274 77260 (1R,2R,3r,4S,5S,6s)-cyclohexane-1,2,3,4,5,6-hexol 77184 146275 77260 cis-1,2,3,5-trans-4,6-cyclohexanehexol 77184 146276 77260 MI 77184 146277 77260 myo-inositol 77183 146278 77260 (1r,2R,3S,4s,5R,6S)-cyclohexane-1,2,3,4,5,6-hexol 77184 146279 77260 1,2,3,5/4,6-cyclohexanehexol 77184 146280 77260 Phaseomannite 77184 146281 77260 Myoinosite 77184 146282 77260 Myoinositol 77184 146283 77260 Iso-Inositol 77184 146284 77260 Myo-Inositol 77187 146285 77260 i-inositol 77184 146286 77260 Ins 77184 146287 77260 D-myo-Inositol 77184 146288 77260 Dambose 77184 146289 77260 Meat sugar 77184 146290 77260 Bios I 77184 146291 77260 1L-myo-Inositol 77184 146292 77260 meso-Inositol 77184 146293 77260 L-myo-Inositol 77184 146294 77260 Cyclohexitol 77184 146295 77260 Inositol 77184 146296 77260 1D-myo-Inositol 77184 146297 77260 1,2,3,4,5,6-HEXAHYDROXY-CYCLOHEXANE 77184 146298 77260 C6H12O6 77185 146299 77260 O[C@H]1[C@H](O)[C@@H](O)[C@H](O)[C@H](O)[C@@H]1O 77188 146300 77260 InChI=1S/C6H12O6/c7-1-2(8)4(10)6(12)5(11)3(1)9/h1-12H/t1-,2-,3-,4+,5-,6- 77189 146301 77260 CDAISMWEOUEBRE-GPIVLXJGSA-N 77190 146302 77261 D-(+)-maltose 77184 146303 77261 Cextromaltose 77184 146304 77261 4-O-alpha-D-glucopyranosyl-D-glucose 77184 146305 77261 D-maltose 77184 146306 77261 4-(alpha-D-glucosido)-D-glucose 77184 146307 77261 4-O-alpha-D-glucopyranosyl-D-glucopyranose 77184 146308 77261 alpha-D-glucopyranosyl-(1->4)-D-glucose 77183 146309 77261 4-(alpha-D-glucopyranosido)-alpha-glucopyranose 77184 146310 77261 Malzzucker 77184 146311 77261 alpha-D-Glucopyranosyl-(1->4)-D-glucopyranose 77184 146312 77261 alpha-D-Glcp-(1->4)-D-Glcp 77184 146313 77261 maltose 77187 146314 77261 maltobiose 77184 146315 77261 alpha-malt sugar 77184 146316 77261 alpha-D-glucopyranosyl-(1->4)-D-glucopyranose 77183 146317 77261 Malt sugar 77184 146318 77261 1-alpha-D-Glucopyranosyl-4-alpha-D-glucopyranose 77184 146319 77261 C12H22O11 77185 146320 77261 OC[C@H]1O[C@H](O[C@@H]2[C@@H](CO)OC(O)[C@H](O)[C@H]2O)[C@H](O)[C@@H](O)[C@@H]1O 77188 146321 77261 InChI=1S/C12H22O11/c13-1-3-5(15)6(16)9(19)12(22-3)23-10-4(2-14)21-11(20)8(18)7(10)17/h3-20H,1-2H2/t3-,4-,5-,6+,7-,8-,9-,10-,11?,12-/m1/s1 77189 146322 77261 GUBGYTABKSRVRQ-PICCSMPSSA-N 77190 146323 77262 Gammalone 77184 146324 77262 Mielogen 77184 146325 77262 piperidinic acid 77184 146326 77262 Aminalon 77184 146327 77262 Piperidate 77184 146328 77262 gamma Aminobutyrate 77184 146329 77262 w-Aminobutyric acid 77184 146330 77262 Omega-Aminobutyrate 77184 146331 77262 4-aminobutanoic acid 77183 146332 77262 GABA 77184 146333 77262 Gammasol 77184 146334 77262 Piperidinate 77184 146335 77262 Gammar 77184 146336 77262 Gamarex 77184 146337 77262 Mielomade 77184 146338 77262 omega-aminobutyric acid 77184 146339 77262 gamma-Aminobuttersaeure 77184 146340 77262 4Abu 77184 146341 77262 Gammalon 77184 146342 77262 3-Carboxypropylamine 77184 146343 77262 4-Aminobutanoate 77184 146344 77262 gamma-Aminobutyrate 77184 146345 77262 gamma-amino-n-butyric acid 77184 146346 77262 gamma-aminobutanoic acid 77184 146347 77262 piperidic acid 77184 146348 77262 Gaballon 77184 146349 77262 w-Aminobutyrate 77184 146350 77262 gamma Aminobutyric acid 77184 146351 77262 4-Aminobutyric acid 77184 146352 77262 gamma-Aminobutyric acid 77187 146353 77262 4-Aminobutanoic acid 77184 146354 77262 GAMMA-AMINO-BUTANOIC ACID 77184 146355 77262 C4H9NO2 77185 146356 77262 NCCCC(O)=O 77188 146357 77262 InChI=1S/C4H9NO2/c5-3-1-2-4(6)7/h1-3,5H2,(H,6,7) 77189 146358 77262 BTCSSZJGUNDROE-UHFFFAOYSA-N 77190 146359 77263 D-erythronic acid 77183 146360 77263 (2R,3R)-2,3,4-trihydroxybutanoic acid 77183 146361 77263 C4H8O5 77185 146362 77263 OC[C@@H](O)[C@@H](O)C(O)=O 77188 146363 77263 InChI=1S/C4H8O5/c5-1-2(6)3(7)4(8)9/h2-3,5-7H,1H2,(H,8,9)/t2-,3-/m1/s1 77189 146364 77263 JPIJQSOTBSSVTP-PWNYCUMCSA-N 77190 146365 77264 [(2R,3R,4R,5R)-5-(6-aminopurin-9-yl)-3,4-dihydroxy-oxolan-2-yl]methoxyphosphonic acid 77184 146366 77264 5'-Adenylate 77184 146367 77264 Adenosine-5-monophosphorate 77184 146368 77264 Adenosine 5'-phosphoric acid 77184 146369 77264 Phosphaden 77184 146370 77264 Adenosine-phosphate 77184 146371 77264 5'-adenylic acid 77183 146372 77264 {[(2R,3S,4R,5R)-5-(6-amino-9H-purin-9-yl)-3,4-dihydroxyoxolan-2-yl]methoxy}phosphonic acid 77184 146373 77264 Adenosine 5'-phosphorate 77184 146374 77264 Cardiomone 77184 146375 77264 [(2R,3R,4R,5R)-5-(6-aminopurin-9-yl)-3,4-dihydroxy-tetrahydrofuran-2-yl]methoxyphosphonic acid 77184 146376 77264 ADENOSINE MONOPHOSPHATE 77184 146377 77264 My-beta-Den 77184 146378 77264 Phosaden 77184 146379 77264 adenosine-5'P 77184 146380 77264 fosfato de adenosina 77225 146381 77264 Adenosine-5-monophosphoric acid 77184 146382 77264 Adenosine-monophosphate 77184 146383 77264 Phosphentaside 77184 146384 77264 Muscle adenylic acid 77184 146385 77264 pA 77184 146386 77264 Adenosine-5'-monophosphorate 77184 146387 77264 My-B-Den 77184 146388 77264 adenosine phosphate 77225 146389 77264 5'-O-phosphonoadenosine 77184 146390 77264 adenosine 5'-(dihydrogen phosphate) 77184 146391 77264 Adenosine-5'-monophosphoric acid 77184 146392 77264 PAdo 77184 146393 77264 Adenovite 77184 146394 77264 Lycedan 77184 146395 77264 Muscle adenylate 77184 146396 77264 Ado5'P 77184 146397 77264 adenosini phosphas 77225 146398 77264 phosphate d'adenosine 77225 146399 77264 AMP 77187 146400 77264 Adenylic acid 77184 146401 77264 Adenylate 77184 146402 77264 5'-Adenosine monophosphate 77184 146403 77264 Adenosine 5'-monophosphate 77184 146404 77264 5'-AMP 77184 146405 77264 5'-Adenylic acid 77184 146406 77264 Adenosine 5'-phosphate 77184 146407 77264 ADENOSINE-5'-MONOPHOSPHATE 77184 146408 77264 C10H14N5O7P 77185 146409 77264 Nc1ncnc2n(cnc12)[C@@H]1O[C@H](COP(O)(O)=O)[C@@H](O)[C@H]1O 77188 146410 77264 InChI=1S/C10H14N5O7P/c11-8-5-9(13-2-12-8)15(3-14-5)10-7(17)6(16)4(22-10)1-21-23(18,19)20/h2-4,6-7,10,16-17H,1H2,(H2,11,12,13)(H2,18,19,20)/t4-,6-,7-,10-/m1/s1 77189 146411 77264 UDMBCSSLTHHNCD-KQYNXXCUSA-N 77190 146412 77265 3,4-Dihydroxycinnamate 77184 146413 77265 cis-Caffeate 77184 146414 77265 Caffeic acid pure 77184 146415 77265 3,4-Dihydroxybenzeneacrylate 77184 146416 77265 3,4-Dihydroxybenzeneacrylic acid 77184 146417 77265 Caffeate 77184 146418 77265 (2Z)-3-(3,4-dihydroxyphenyl)prop-2-enoic acid 77183 146419 77265 Caffeicacid 77184 146420 77265 cis-caffeic acid 77187 146421 77265 3,4-dihydroxycinnamic acids 77184 146422 77265 caffeic acid 77184 146423 77265 3,4-dihydroxycinnamic acid 77184 146424 77265 C9H8O4 77185 146425 77265 OC(=O)C=C/c1ccc(O)c(O)c1 77188 146426 77265 InChI=1S/C9H8O4/c10-7-3-1-6(5-8(7)11)2-4-9(12)13/h1-5,10-11H,(H,12,13)/b4-2- 77189 146427 77265 QAIPRVGONGVQAS-RQOWECAXSA-N 77190 146428 77266 grouped_by_chemistry 77184 146429 77266 chemical entity 77187 146430 77266 . 77185 146431 77267 D-altro-Heptulose 1,7-biphosphate 77184 146432 77267 D-Sedoheptulose 1,7-bisphosphate 77184 146433 77267 D-altro-hept-2-ulose 1,7-bis(dihydrogen phosphate) 77183 146434 77267 Sedoheptulose 1,7-bisphosphate 77187 146435 77267 altro-Heptulose 1,7-biphosphate 77184 146436 77267 C7H16O13P2 77185 146437 77267 O[C@H](COP(O)(O)=O)[C@@H](O)[C@@H](O)[C@H](O)C(=O)COP(O)(O)=O 77188 146438 77267 InChI=1S/C7H16O13P2/c8-3(1-19-21(13,14)15)5(10)7(12)6(11)4(9)2-20-22(16,17)18/h3,5-8,10-12H,1-2H2,(H2,13,14,15)(H2,16,17,18)/t3-,5-,6-,7-/m1/s1 77189 146439 77267 OKHXOUGRECCASI-SHUUEZRQSA-N 77190 146440 77268 cobalto 77184 146441 77268 27Co 77184 146442 77268 Co 77184 146443 77268 Kobalt 77184 146444 77268 cobaltum 77184 146445 77268 cobalt 77184 146446 77268 [Co] 77188 146447 77268 InChI=1S/Co 77189 146448 77268 GUTLYIVDDKVIGB-UHFFFAOYSA-N 77190 146449 77269 H3P2O7(-) 77184 146450 77269 trihydrogen diphosphate 77183 146451 77269 H3O7P2 77185 146452 77269 OP(O)(=O)OP(O)([O-])=O 77188 146453 77269 InChI=1S/H4O7P2/c1-8(2,3)7-9(4,5)6/h(H2,1,2,3)(H2,4,5,6)/p-1 77189 146454 77269 XPPKVPWEQAFLFU-UHFFFAOYSA-M 77190 146455 77270 Phenylalanin 77184 146456 77270 PHE 77184 146457 77270 phenylalanine 77183 146458 77270 2-amino-3-phenylpropanoic acid 77183 146459 77270 DL-Phenylalanine 77184 146460 77270 F 77184 146461 77270 fenilalanina 77184 146462 77270 Phenylalanine 77187 146463 77270 alpha-Amino-beta-phenylpropionic acid 77184 146464 77270 C9H11NO2 77185 146465 77270 NC(Cc1ccccc1)C(O)=O 77188 146466 77270 InChI=1S/C9H11NO2/c10-8(9(11)12)6-7-4-2-1-3-5-7/h1-5,8H,6,10H2,(H,11,12) 77189 146467 77270 COLNVLDHVKWLRT-UHFFFAOYSA-N 77190 146468 77271 (3R,5R)-1,3,4,5-tetrahydroxycyclohexane-1-carboxylic acid 77184 146469 77271 (3R,5R)-1,3,4,5-tetrahydroxy-1-cyclohexanecarboxylic acid 77184 146470 77272 Fucose 77187 146471 77272 Fuc 77184 146472 77272 fucose 77183 146473 77272 6-deoxygalactose 77183 146474 77272 6-Deoxygalactose 77184 146475 77272 fucoses 77184 146476 77273 DL-Malic acid 77184 146477 77273 Malic acid 77187 146478 77273 alpha-hydroxysuccinic acid 77184 146479 77273 Aepfelsaeure 77184 146480 77273 E296 77184 146481 77273 H2mal 77184 146482 77273 apple acid 77184 146483 77273 2-Hydroxysuccinic acid 77184 146484 77273 2-Hydroxyethane-1,2-dicarboxylic acid 77184 146485 77273 hydroxysuccinic acid 77184 146486 77273 2-Hydroxybutanedioic acid 77184 146487 77273 2-hydroxybutanedioic acid 77183 146488 77273 hydroxybutanedioic acid 77184 146489 77273 C4H6O5 77185 146490 77273 OC(CC(O)=O)C(O)=O 77188 146491 77273 InChI=1S/C4H6O5/c5-2(4(8)9)1-3(6)7/h2,5H,1H2,(H,6,7)(H,8,9) 77189 146492 77273 BJEPYKJPYRNKOW-UHFFFAOYSA-N 77190 146493 77274 DL-Asparagine 77184 146494 77274 asparagina 77184 146495 77274 asparagine 77183 146496 77274 Hasp 77184 146497 77274 2-amino-3-carbamoylpropanoic acid 77184 146498 77274 N 77184 146499 77274 Asn 77184 146500 77274 2,4-diamino-4-oxobutanoic acid 77184 146501 77274 Asparagin 77184 146502 77274 C4H8N2O3 77185 146503 77274 NC(CC(N)=O)C(O)=O 77188 146504 77274 InChI=1S/C4H8N2O3/c5-2(4(8)9)1-3(6)7/h2H,1,5H2,(H2,6,7)(H,8,9) 77189 146505 77274 DCXYFEDJOCDNAF-UHFFFAOYSA-N 77190 146506 77275 D-glucose 6-(dihydrogen phosphate) 77184 146507 77275 6-O-phosphono-D-glucose 77184 146508 77275 C6H13O9P 77185 146509 77276 Threose 4-phosphate 77184 146510 77276 Erythrose-4P 77184 146511 77276 D-Erythrose-4-phosphate 77184 146512 77276 [(2R,3R)-2,3-dihydroxy-4-oxobutoxy]phosphonic acid 77184 146513 77276 Erythrose-4-phosphate 77184 146514 77276 D-Erythrose 4-PO4 77184 146515 77276 Erythrose 4-phosphate 77184 146516 77276 (2R,3R)-2,3-dihydroxy-4-oxobutyl dihydrogen phosphate 77183 146517 77276 D-Erythrose-4-P 77184 146518 77276 D-erythrose 4-(dihydrogen phosphate) 77183 146519 77276 Erythrose 4-PO4 77184 146520 77276 4-O-phosphono-D-erythrose 77184 146521 77276 Erythrose-4-P 77184 146522 77276 ERYTHOSE-4-PHOSPHATE 77184 146523 77276 D-Erythrose 4-phosphate 77187 146524 77276 C4H9O7P 77185 146525 77276 [H]C(=O)[C@H](O)[C@H](O)COP(O)(O)=O 77188 146526 77276 InChI=1S/C4H9O7P/c5-1-3(6)4(7)2-11-12(8,9)10/h1,3-4,6-7H,2H2,(H2,8,9,10)/t3-,4+/m0/s1 77189 146527 77276 NGHMDNPXVRFFGS-IUYQGCFVSA-N 77190 146528 77277 2,5-diamino-5-oxopentanoic acid 77184 146529 77277 glutamine 77183 146530 77277 Glutamin 77184 146531 77277 Glutaminsaeure-5-amid 77184 146532 77277 glutamic acid gamma-amide 77184 146533 77277 Hgln 77184 146534 77277 2-amino-4-carbamoylbutanoic acid 77184 146535 77277 Glutamine 77187 146536 77277 2-Aminoglutaramic acid 77184 146537 77277 C5H10N2O3 77185 146538 77277 NC(CCC(N)=O)C(O)=O 77188 146539 77277 InChI=1S/C5H10N2O3/c6-3(5(9)10)1-2-4(7)8/h3H,1-2,6H2,(H2,7,8)(H,9,10) 77189 146540 77277 ZDXPYRJPNDTMRX-UHFFFAOYSA-N 77190 146541 77278 D-Sedoheptulose-7-phosphate 77184 146542 77278 {[(2R,3S,4R,5S)-3,4,5,6-tetrahydroxy-6-(hydroxymethyl)oxan-2-yl]methoxy}phosphonic acid 77184 146543 77278 D-Sedoheptulose 7-phosphate 77184 146544 77278 D-altro-hept-2-ulose 7-phosphate 77183 146545 77278 D-Sedoheptulose-7-p 77184 146546 77278 Heptulose-7-phosphate 77184 146547 77278 Sedoheptulose 7-phosphate 77187 146548 77278 7-(Dihydrogen phosphate) sedoheptulose 77184 146549 77278 Sedoheptulose-7-phosphate 77184 146550 77278 Sedoheptulose-7-p 77184 146551 77278 altro-Heptulose 7-phosphate 77184 146552 77278 D-altro-Heptulose 7-phosphate 77184 146553 77278 C7H15O10P 77185 146554 77278 OCC(=O)[C@@H](O)[C@H](O)[C@H](O)[C@H](O)COP(O)(O)=O 77188 146555 77278 InChI=1S/C7H15O10P/c8-1-3(9)5(11)7(13)6(12)4(10)2-17-18(14,15)16/h4-8,10-13H,1-2H2,(H2,14,15,16)/t4-,5-,6-,7+/m1/s1 77189 146556 77278 JDTUMPKOJBQPKX-GBNDHIKLSA-N 77190 146557 77279 D-erythro-pentulose 1,5-bis(dihydrogen phosphate) 77183 146558 77279 1,5-di-O-phosphono-D-ribulose 77183 146559 77279 1,5-di-O-phosphono-D-erythro-pent-2-ulose 77183 146560 77279 D-ribulose 1,5-bis(dihydrogen phosphate) 77183 146561 77279 RIBULOSE-1,5-DIPHOSPHATE 77184 146562 77279 D-Ribulose 1,5-bisphosphate 77187 146563 77279 C5H12O11P2 77185 146564 77279 O[C@H](COP(O)(O)=O)[C@@H](O)C(=O)COP(O)(O)=O 77188 146669 77285 Zink 77184 146670 77285 Zn2+ 77184 146565 77279 InChI=1S/C5H12O11P2/c6-3(1-15-17(9,10)11)5(8)4(7)2-16-18(12,13)14/h3,5-6,8H,1-2H2,(H2,9,10,11)(H2,12,13,14)/t3-,5-/m1/s1 77189 146566 77279 YAHZABJORDUQGO-NQXXGFSBSA-N 77190 146567 77280 Mn 77184 146568 77280 Mangan 77184 146569 77280 manganeso 77184 146570 77280 manganum 77184 146571 77280 manganese 77184 146572 77280 25Mn 77184 146573 77280 [Mn] 77188 146574 77280 InChI=1S/Mn 77189 146575 77280 PWHULOQIROXLJO-UHFFFAOYSA-N 77190 146576 77281 2-Phosphonooxyprop-2-enoate 77184 146577 77281 2-Hydroxy-Acrylic acid dihydrogen phosphate 77184 146578 77281 P-Enol-pyruvate 77184 146579 77281 2-Phosphonooxyprop-2-enoic acid 77184 146580 77281 Phosphoenolpyruvate 77184 146581 77281 Phosphoenolpyruvic acid 77187 146582 77281 PEP 77184 146583 77281 2-(phosphonooxy)-2-propenoic acid 77184 146584 77281 2-PHOSPHOENOLPYRUVIC ACID 77184 146585 77281 2-(phosphonooxy)prop-2-enoic acid 77183 146586 77281 C3H5O6P 77185 146587 77281 OC(=O)C(=C)OP(O)(O)=O 77188 146588 77281 InChI=1S/C3H5O6P/c1-2(3(4)5)9-10(6,7)8/h1H2,(H,4,5)(H2,6,7,8) 77189 146589 77281 DTBNBXWJWCWCIK-UHFFFAOYSA-N 77190 146590 77282 H2N(CH2)4NH2 77184 146591 77282 Putreszin 77184 146592 77282 butane-1,4-diamine 77183 146593 77282 1,4-butylenediamine 77184 146594 77282 putrescina 77184 146595 77282 butylenediamine 77184 146596 77282 Butane-1,4-diamine 77184 146597 77282 1,4-tetramethylenediamine 77184 146598 77282 Putrescin 77184 146599 77282 Tetramethylendiamin 77184 146600 77282 Tetramethyldiamine 77184 146601 77282 1,4-DIAMINOBUTANE 77184 146602 77282 Tetramethylenediamine 77184 146603 77282 Putrescine 77187 146604 77282 1,4-Butanediamine 77184 146605 77282 C4H12N2 77185 146606 77282 NCCCCN 77188 146607 77282 InChI=1S/C4H12N2/c5-3-1-2-4-6/h1-6H2 77189 146608 77282 KIDHWZJUCRJVML-UHFFFAOYSA-N 77190 146609 77283 Fosfobion 77184 146610 77283 Glucobasin 77184 146611 77283 Atriphos 77184 146612 77283 [[[(2R,3R,4R,5R)-5-(6-aminopurin-9-yl)-3,4-dihydroxy-tetrahydrofuran-2-yl]methoxy-hydroxy-phosphoryl]oxy-hydroxy-phosphoryl]oxyphosphonic acid 77184 146613 77283 Adetol 77184 146614 77283 Adenosine 5'-triphosphorate 77184 146615 77283 5'-ATP 77184 146616 77283 Adephos 77184 146617 77283 Triphosphoric acid adenosine ester 77184 146618 77283 Adynol 77184 146619 77283 [[[(2R,3R,4R,5R)-5-(6-aminopurin-9-yl)-3,4-dihydroxy-oxolan-2-yl]methoxy-hydroxy-phosphoryl]oxy-hydroxy-phosphoryl]oxyphosphonic acid 77184 146620 77283 Adenosine 5'-triphosphoric acid 77184 146621 77283 ({[({[(2R,3S,4R,5R)-5-(6-amino-9H-purin-9-yl)-3,4-dihydroxyoxolan-2-yl]methoxy}(hydroxy)phosphoryl)oxy](hydroxy)phosphoryl}oxy)phosphonic acid 77184 146622 77283 H4atp 77184 146623 77283 Striadyne 77184 146624 77283 Cardenosine 77184 146625 77283 adenosine 5'-(tetrahydrogen triphosphate) 77183 146626 77283 Adenosine triphosphate 77184 146627 77283 Atipi 77184 146628 77283 Phosphobion 77184 146629 77283 Myotriphos 77184 146630 77283 Adenylpyrophosphoric acid 77184 146631 77283 Triadenyl 77184 146632 77283 5'-(Tetrahydrogen triphosphate) Adenosine 77184 146633 77283 Adenylpyrophosphorate 77184 146634 77283 Triphosphaden 77184 146635 77283 ADENOSINE-5'-TRIPHOSPHATE 77184 146636 77283 ATP 77187 146637 77283 Adenosine 5'-triphosphate 77184 146638 77283 C10H16N5O13P3 77185 146639 77283 Nc1ncnc2n(cnc12)[C@@H]1O[C@H](COP(O)(=O)OP(O)(=O)OP(O)(O)=O)[C@@H](O)[C@H]1O 77188 146640 77283 InChI=1S/C10H16N5O13P3/c11-8-5-9(13-2-12-8)15(3-14-5)10-7(17)6(16)4(26-10)1-25-30(21,22)28-31(23,24)27-29(18,19)20/h2-4,6-7,10,16-17H,1H2,(H,21,22)(H,23,24)(H2,11,12,13)(H2,18,19,20)/t4-,6-,7-,10-/m1/s1 77189 146641 77283 ZKHQWZAMYRWXGA-KQYNXXCUSA-N 77190 146642 77284 delta-(+)-Raffinose 77184 146643 77284 rafinose 77184 146644 77284 raflinose 77184 146645 77284 (2R,3R,4S,5R,6R)-2-[(2S,3S,4R,5R)-3,4-dihydroxy-2,5-dimethylol-tetrahydrofuran-2-yl]oxy-6-[[(2S,3R,4S,5S,6R)-3,4,5-trihydroxy-6-methylol-tetrahydropyran-2-yl]oxymethyl]tetrahydropyran-3,4,5-triol 77184 146646 77284 alpha-D-galactopyranosyl-(1->6)-alpha-D-glucopyranosyl beta-D-fructofuranoside 77184 146647 77284 alpha-D-Galp-(1->6)-alpha-D-Glcp-(1<->2)-beta-D-Fruf 77184 146648 77284 delta-Raffinose 77184 146649 77284 (2R,3R,4S,5R,6R)-2-[(2S,3S,4R,5R)-3,4-dihydroxy-2,5-bis(hydroxymethyl)oxolan-2-yl]oxy-6-[[(2S,3R,4S,5S,6R)-3,4,5-trihydroxy-6-(hydroxymethyl)oxan-2-yl]oxymethyl]oxane-3,4,5-triol 77184 146650 77284 raffinose 77187 146651 77284 beta-D-fructofuranosyl alpha-D-galactopyranosyl-(1->6)-alpha-D-glucopyranoside 77183 146652 77284 D-Raffinose 77184 146653 77284 6G-alpha-delta-Galactosylsucrose 77184 146654 77284 (2R,3R,4S,5R,6R)-2-[(2S,3S,4R,5R)-3,4-dihydroxy-2,5-bis(hydroxymethyl)tetrahydrofuran-2-yl]oxy-6-[[(2S,3R,4S,5S,6R)-3,4,5-trihydroxy-6-(hydroxymethyl)tetrahydropyran-2-yl]oxymethyl]tetrahydropyran-3,4,5-triol 77184 146655 77284 D-(+)-Raffinose 77184 146656 77284 Raffinose hydrate 77184 146657 77284 (3R,4S,5R,6R)-2-{[(2R,3S,4S,5R)-6-{[(2S,3S,4S,5R)-3,4-dihydroxy-2,5-bis(hydroxymethyl)oxolan-2-yl]oxy}-3,4,5-trihydroxyoxan-2-yl]methoxy}-6-(hydroxymethyl)oxane-3,4,5-triol 77184 146658 77284 Melitriose 77184 146659 77284 Gossypose 77184 146660 77284 6G-alpha-D-galactosylsucrose 77184 146661 77284 Melitose 77184 146662 77284 C18H32O16 77185 146663 77284 OC[C@H]1O[C@H](OC[C@H]2O[C@H](O[C@]3(CO)O[C@H](CO)[C@@H](O)[C@@H]3O)[C@H](O)[C@@H](O)[C@@H]2O)[C@H](O)[C@@H](O)[C@H]1O 77188 146664 77284 InChI=1S/C18H32O16/c19-1-5-8(22)11(25)13(27)16(31-5)30-3-7-9(23)12(26)14(28)17(32-7)34-18(4-21)15(29)10(24)6(2-20)33-18/h5-17,19-29H,1-4H2/t5-,6-,7-,8+,9-,10-,11+,12+,13-,14-,15+,16+,17-,18+/m1/s1 77189 146665 77284 MUPFEKGTMRGPLJ-ZQSKZDJDSA-N 77190 146666 77285 Zn 77184 146667 77285 zinc 77183 146668 77285 cinc 77184 146671 77285 30Zn 77184 146672 77285 zincum 77184 146673 77285 Zn(II) 77184 146674 77285 [Zn] 77188 146675 77285 InChI=1S/Zn 77189 146676 77285 HCHKCACWOHOZIP-UHFFFAOYSA-N 77190 146677 77286 isoleucine 77183 146678 77286 Hile 77184 146679 77286 rel-(2R,3R)-2-amino-3-methylpentanoic acid 77184 146680 77287 [[(2S,3R,4R,5S,6R)-3-acetamido-4,5-dihydroxy-6-(hydroxymethyl)oxan-2-yl]oxy-hydroxy-phosphoryl]oxy-[[(2R,3R,4R,5R)-5-(2,4-dioxopyrimidin-1-yl)-3,4-dihydroxy-oxolan-2-yl]methoxy]phosphinic acid 77184 146681 77287 UDP-a-D-N-Acetylglucosamine 77184 146682 77287 UDP-N-Acetyl-delta-glucosamine 77184 146683 77287 Uridine diphospho-N-acetylglucosamine 77184 146684 77287 UDP-GlcNAc 77184 146685 77287 [[3-acetylamino-4,5-dihydroxy-6-(hydroxymethyl)oxan-2-yl]oxy-hydroxy-phosphoryl]oxy-[[5-(2,4-dioxopyrimidin-1-yl)-3,4-dihydroxy-oxolan-2-yl]methoxy]phosphinic acid 77184 146686 77287 [[3-acetylamino-4,5-dihydroxy-6-(hydroxymethyl)oxan-2-yl]oxy-hydroxy-phosphoryl]oxy-[[5-(2,4-dioxopyrimidin-1-yl)-3,4-dihydroxy-oxolan-2-yl]methoxy]phosphinate 77184 146687 77287 UDP-alpha-D-N-Acetylglucosamine 77184 146688 77287 Uridine 5'-Diphospho-N-Acetlyglucosamine 77184 146689 77287 Uridine pyrophosphate 2-acetamido-2-deoxy-a-D-glucopyranosyl ester 77184 146690 77287 Uridine pyrophosphoacetylglucosamine 77184 146691 77287 UDP-Acetylglucosamine 77184 146692 77287 [[(2S,3R,4R,5S,6R)-3-acetamido-4,5-dihydroxy-6-methylol-tetrahydropyran-2-yl]oxy-hydroxy-phosphoryl]oxy-[[(2R,3R,4R,5R)-5-(2,4-dioxopyrimidin-1-yl)-3,4-dihydroxy-tetrahydrofuran-2-yl]methoxy]phosphinic acid 77184 146693 77287 Uridine diphosphate N-acetylglucosamine 77184 146694 77287 Uridine diphosphate N-acetyl-delta-glucosamine 77184 146695 77287 Uridine diphosphoacetylglucosamine 77184 146696 77287 [[(2S,3R,4R,5S,6R)-3-acetamido-4,5-dihydroxy-6-(hydroxymethyl)tetrahydropyran-2-yl]oxy-hydroxy-phosphoryl]oxy-[[(2R,3R,4R,5R)-5-(2,4-dioxopyrimidin-1-yl)-3,4-dihydroxy-tetrahydrofuran-2-yl]methoxy]phosphinic acid 77184 146697 77287 UDP-N-Acetyl-D-glucosamine 77184 146698 77287 Uridine 5'-diphospho-N-acetylglucosamine 77184 146699 77287 UDP-alpha-delta-N-Acetylglucosamine 77184 146700 77287 Uridine diphospho-N-acetyl-D-glucosamine 77184 146701 77287 UPPAG 77184 146702 77287 Uridine pyrophosphate 2-acetamido-2-deoxy-alpha-D-glucopyranosyl ester 77184 146703 77287 Uridine diphospho-N-acetyl-delta-glucosamine 77184 146704 77287 Uridine diphosphate N-acetyl-D-glucosamine 77184 146705 77287 Uridine diphospho-2-acetamido-2-deoxy-D-glucose 77184 146706 77287 N-[2-[[[5-[(2,4-Dioxo-1H-pyrimidin-1-yl)]-3,4-dihydroxy-tetrahydrofuran-2-yl]methoxy-hydroxy-phosphinoyl]oxy-hydroxy-phosphinoyl]oxy-4,5-dihydroxy-6-(hydroxymethyl)tetrahydropyran-3-yl]acetamide 77184 146707 77287 {[(2R,3S,4R,5R)-5-(2,4-dioxo-1,2,3,4-tetrahydropyrimidin-1-yl)-3,4-dihydroxyoxolan-2-yl]methoxy}[({[(2R,3R,4R,5S,6R)-3-acetamido-4,5-dihydroxy-6-(hydroxymethyl)oxan-2-yl]oxy}(hydroxy)phosphoryl)oxy]phosphinic acid 77184 146708 77287 Uridine pyrophosphate 2-acetamido-2-deoxy-alpha-delta-glucopyranosyl ester 77184 146709 77287 Uridine diphospho-2-acetamido-2-deoxy-delta-glucose 77184 146710 77287 UDP-Acetyl-D-glucosamine 77184 146711 77287 UDP-Acetyl-delta-glucosamine 77184 146712 77287 uridine 5'-[3-(2-acetamido-2-deoxy-alpha-D-glucopyranosyl) dihydrogen diphosphate] 77183 146713 77287 UDP-N-acetylglucosamine 77184 146714 77287 URIDINE-DIPHOSPHATE-N-ACETYLGLUCOSAMINE 77184 146715 77287 (2R,3R,4R,5S,6R)-3-(acetylamino)-4,5-dihydroxy-6-(hydroxymethyl)tetrahydro-2H-pyran-2-yl [(2R,3S,4R,5R)-5-(2,4-dioxo-3,4-dihydropyrimidin-1(2H)-yl)-3,4-dihydroxytetrahydrofuran-2-yl]methyl dihydrogen diphosphate (non-preferred name) 77184 146716 77287 C17H27N3O17P2 77185 146717 77287 CC(=O)N[C@@H]1[C@@H](O)[C@H](O)[C@@H](CO)O[C@@H]1OP(O)(=O)OP(O)(=O)OC[C@H]1O[C@H]([C@H](O)[C@@H]1O)n1ccc(=O)[nH]c1=O 77188 146718 77287 InChI=1S/C17H27N3O17P2/c1-6(22)18-10-13(26)11(24)7(4-21)35-16(10)36-39(31,32)37-38(29,30)33-5-8-12(25)14(27)15(34-8)20-3-2-9(23)19-17(20)28/h2-3,7-8,10-16,21,24-27H,4-5H2,1H3,(H,18,22)(H,29,30)(H,31,32)(H,19,23,28)/t7-,8-,10-,11-,12-,13-,14-,15-,16-/m1/s1 77189 146719 77287 LFTYTUAZOPRMMI-CFRASDGPSA-N 77190 146720 77288 Aciport 77184 146721 77288 glycine 77183 146722 77288 H2N-CH2-COOH 77184 146723 77288 Glycosthene 77184 146724 77288 Hgly 77184 146725 77288 Glycocoll 77184 146726 77288 Glycin 77184 146727 77288 2-aminoethanoic acid 77184 146728 77288 Amino-Acetate 77184 146729 77288 aminoacetic acid 77183 146730 77288 aminoethanoic acid 77184 146731 77288 Aminoacetate 77184 146732 77288 Gyn-Hydralin 77184 146733 77288 Glyzin 77184 146734 77288 Aminoessigsaeure 77184 146735 77288 2-aminoacetic acid 77184 146736 77288 Glicoamin 77184 146737 77288 Glycolixir 77184 146738 77288 Aminoethanoate 77184 146739 77288 Glykokoll 77184 146740 77288 Amino-Acetic acid 77184 146741 77288 2-Aminoacetate 77184 146742 77288 Padil 77184 146743 77288 Leimzucker 77184 146744 77288 G 77184 146745 77288 Gly 77184 146746 77288 Aminoacetic acid 77184 146747 77288 Glycine 77187 146748 77288 C2H5NO2 77185 146749 77288 NCC(O)=O 77188 146750 77288 InChI=1S/C2H5NO2/c3-1-2(4)5/h1,3H2,(H,4,5) 77189 146751 77288 DHMQDGOQFOQNFH-UHFFFAOYSA-N 77190 146752 77289 H3cit 77184 146753 77289 Suby G 77184 146754 77289 2-hydroxypropane-1,2,3-tricarboxylic acid 77183 146755 77289 Anhydrous citric acid 77184 146756 77289 Uro-trainer 77184 146757 77289 Citrate 77184 146758 77289 3-Carboxy-3-hydroxypentane-1,5-dioate 77184 146759 77289 Anhydrous citrate 77184 146760 77289 E 330 77184 146761 77289 citric acid 77187 146762 77289 Citro 77184 146763 77289 2-Hydroxy-1,2,3-propanetricarboxylate 77184 146764 77289 beta-Hydroxytricarballylate 77184 146765 77289 Kyselina citronova 77184 146766 77289 Aciletten 77184 146767 77289 beta-Hydroxytricarballylic acid 77184 146768 77289 Chemfill 77184 146769 77289 E330 77184 146770 77289 Citretten 77184 146771 77289 Citraclean 77184 146772 77289 Hydrocerol A 77184 146773 77289 Citronensaeure 77184 146774 77289 3-Carboxy-3-hydroxypentane-1,5-dioic acid 77184 146775 77289 2-Hydroxytricarballylic acid 77184 146776 77289 2-Hydroxy-1,2,3-propanetricarboxylic acid 77184 146777 77289 C6H8O7 77185 146778 77289 OC(=O)CC(O)(CC(O)=O)C(O)=O 77188 146779 77289 InChI=1S/C6H8O7/c7-3(8)1-6(13,5(11)12)2-4(9)10/h13H,1-2H2,(H,7,8)(H,9,10)(H,11,12) 77189 146780 77289 KRKNYBCHXYNGOX-UHFFFAOYSA-N 77190 146781 77290 L-Ornithine, monohydrochloride 77184 146782 77290 L-Ornithine hydrochloride 77184 146783 77290 DL-ornithine monohydrochloride 77184 146784 77290 L-Ornithine hydrochloride (van) 77184 146785 77290 L-Ornithine-carboxy-14C hydrochloride 77184 146786 77290 DL -2,5-Diaminopentanoic acid 77184 146787 77290 2,5-diaminopentanoic acid 77183 146788 77290 (+/-)-2,5-Diaminopentanoic acid monohydrochloride 77184 146789 77290 Ornithine monohydrochloride 77184 146790 77290 Ornithine hydrochloride (van) 77184 146791 77290 ornithine 77183 146792 77290 Ornithine DL-form HCL 77184 146793 77290 DL-ornithine, hydrochloride 77184 146794 77290 D-Ornithine 77184 146795 77290 Poly-L-ornithine hydrochloride 77184 146796 77290 DL-Ornithine 77184 146797 77290 Ornithine, monohydrochloride 77184 146798 77290 Ornithine DL-form monohydrochloride 77184 146799 77290 L-Ornithine monohydrochloride 77184 146800 77290 2,5-Diaminopentanoic acid hydrochloride 77184 146801 77290 Orn 77184 146802 77290 Ornithine, hydrochloride (1:1) 77184 146803 77290 D -2,5-Diaminopentanoic acid 77184 146804 77290 Ornithine hydrochloride 77184 146805 77290 MonohydrochlorideDL-Ornithine 77184 146806 77290 Monohydrochloridel-Ornithine 77184 146807 77290 DL-ornithine HCL 77184 146808 77290 L -2,5-Diaminopentanoic acid 77184 146809 77290 Ornithine 77187 146810 77290 2,5-Diaminovaleric acid 77184 146811 77290 2,5-Diaminopentanoic acid 77184 146812 77290 C5H12N2O2 77185 146813 77290 NCCCC(N)C(O)=O 77188 146814 77290 InChI=1S/C5H12N2O2/c6-3-1-2-4(7)5(8)9/h4H,1-3,6-7H2,(H,8,9) 77189 146815 77290 AHLPHDHHMVZTML-UHFFFAOYSA-N 77190 146816 77291 entidades moleculares 77184 146817 77291 molekulare Entitaet 77184 146818 77291 entite moleculaire 77184 146819 77291 entidad molecular 77184 146820 77291 molecular entity 77183 146821 77291 molecular entities 77184 146822 77291 . 77185 146823 77292 uridinediphosphoglucose 77184 146824 77292 Uridine 5'-(trihydrogen diphosphate), P'-alpha-D-glucopyranosyl ester 77184 146825 77292 UDP-Glc 77184 146826 77292 uridine 5'-[3-D-glucopyranosyl dihydrogen diphosphate] 77183 146827 77292 Uridine 5'-(trihydrogen diphosphate), mono-alpha-d-glucopyranosyl ester 77184 146828 77292 Uridine diphosphate glucose 77184 146829 77292 UDPglucose 77184 146830 77292 UDP-glucose 77184 146831 77292 UDP-D-glucose 77187 146832 77292 C15H24N2O17P2 77185 146833 77292 OC[C@H]1OC(OP(O)(=O)OP(O)(=O)OC[C@H]2O[C@H]([C@H](O)[C@@H]2O)n2ccc(=O)[nH]c2=O)[C@H](O)[C@@H](O)[C@@H]1O 77188 146834 77292 InChI=1S/C15H24N2O17P2/c18-3-5-8(20)10(22)12(24)14(32-5)33-36(28,29)34-35(26,27)30-4-6-9(21)11(23)13(31-6)17-2-1-7(19)16-15(17)25/h1-2,5-6,8-14,18,20-24H,3-4H2,(H,26,27)(H,28,29)(H,16,19,25)/t5-,6-,8-,9-,10+,11-,12-,13-,14?/m1/s1 77189 146835 77292 HSCJRCZFDFQWRP-RDKQLNKOSA-N 77190 146836 77293 5'-UDP 77184 146837 77293 Uridine 5'-pyrophosphorate 77184 146838 77293 [[(2S,3S,4R,5R)-5-(2,4-dioxopyrimidin-1-yl)-3,4-dihydroxy-tetrahydrofuran-2-yl]methoxy-hydroxy-phosphoryl]oxyphosphonic acid 77184 146839 77293 Uridine 5'-pyrophosphate 77184 146840 77293 [({[(2R,3S,4R,5R)-5-(2,4-dioxo-1,2,3,4-tetrahydropyrimidin-1-yl)-3,4-dihydroxyoxolan-2-yl]methoxy}(hydroxy)phosphoryl)oxy]phosphonic acid 77184 146841 77293 Uridine pyrophosphate 77184 146842 77293 uridine 5'-(trihydrogen diphosphate) 77183 146843 77293 [[(2S,3S,4R,5R)-5-(2,4-dioxopyrimidin-1-yl)-3,4-dihydroxy-oxolan-2-yl]methoxy-hydroxy-phosphoryl]oxyphosphonic acid 77184 146844 77293 Uridine diphosphate 77184 146845 77293 Uridine 5'-pyrophosphoric acid 77184 146846 77293 Uridine 5'-diphosphate 77184 146847 77293 UDP 77187 146848 77293 URIDINE-5'-DIPHOSPHATE 77184 146849 77293 C9H14N2O12P2 77185 146850 77293 O[C@@H]1[C@@H](COP(O)(=O)OP(O)(O)=O)O[C@H]([C@@H]1O)n1ccc(=O)[nH]c1=O 77188 146851 77293 InChI=1S/C9H14N2O12P2/c12-5-1-2-11(9(15)10-5)8-7(14)6(13)4(22-8)3-21-25(19,20)23-24(16,17)18/h1-2,4,6-8,13-14H,3H2,(H,19,20)(H,10,12,15)(H2,16,17,18)/t4-,6-,7-,8-/m1/s1 77189 146852 77293 XCCTYIAWTASOJW-XVFCMESISA-N 77190 146853 77294 Gro 77184 146854 77294 glycerol 77225 146855 77294 Glysanin 77184 146856 77294 Emery 916 77184 146857 77294 Incorporation factor 77184 146858 77294 Tryhydroxypropane 77184 146859 77294 glycyl alcohol 77184 146860 77294 propane-1,2,3-triol 77183 146861 77294 Glyzerin 77184 146862 77294 Glyceritol 77184 146863 77294 E 422 77184 146864 77294 Osmoglyn 77184 146865 77294 RG-S 77184 146866 77294 Pricerine 9091 77184 146867 77294 IFP 77184 146868 77294 Bulbold 77184 146869 77294 glycerine 77184 146870 77294 Oelsuess 77184 146871 77294 Propanetriol 77184 146872 77294 Trihydroxypropane 77184 146873 77294 Glyrol 77184 146874 77294 Cristal 77184 146875 77294 Glyceol Opthalgan 77184 146876 77294 glycerolum 77225 146877 77294 Mackstat H 66 77184 146878 77294 GLYCEROL 77187 146879 77294 1,2,3-Trihydroxypropane 77184 146880 77294 1,2,3-Propanetriol 77184 146881 77294 Glycerin 77184 146882 77294 C3H8O3 77185 146883 77294 OCC(O)CO 77188 146884 77294 InChI=1S/C3H8O3/c4-1-3(6)2-5/h3-6H,1-2H2 77189 146885 77294 PEDCQBHIVMGVHV-UHFFFAOYSA-N 77190 146886 77295 (phosphonooxy)acetic acid 77183 146887 77295 2-phosphoglycolic acid 77187 146888 77295 2-Phosphoglycolate 77184 146889 77295 Phosphoglycolic acid 77184 146890 77295 C2H5O6P 77185 146891 77295 OC(=O)COP(O)(O)=O 77188 146892 77295 InChI=1S/C2H5O6P/c3-2(4)1-8-9(5,6)7/h1H2,(H,3,4)(H2,5,6,7) 77189 146893 77295 ASCFNMCAHFUBCO-UHFFFAOYSA-N 77190 146894 77296 beta-aminopropionic acid 77184 146895 77296 b-Aminopropanoic acid 77184 146896 77296 b-Aminopropionate 77184 146897 77296 Omega-Aminopropionate 77184 146898 77296 H-beta-Ala-OH 77184 146899 77296 bAla 77184 146900 77296 beta-Aminopropionate 77184 146901 77296 omega-aminopropionic acid 77184 146902 77296 3-aminopropanoic acid 77184 146903 77296 beta-Alanine 77187 146904 77296 b-Aminopropanoate 77184 146905 77296 b-Aminopropionic acid 77184 146906 77296 beta-alanine 77183 146907 77296 beta-Aminopropanoate 77184 146908 77296 3-Amino-Propanoate 77184 146909 77296 3-Amino-Propanoic acid 77184 146910 77296 3-Aminopropionate 77184 146911 77296 beta Alanine 77184 146912 77296 2-Carboxyethylamine 77184 146913 77296 beta-Aminopropanoic acid 77184 146914 77296 Abufene 77184 146915 77296 3-Aminopropionic acid 77184 146916 77296 C3H7NO2 77185 146917 77296 NCCC(O)=O 77188 146918 77296 InChI=1S/C3H7NO2/c4-2-1-3(5)6/h1-2,4H2,(H,5,6) 77189 146919 77296 UCMIRNVEIXFBKS-UHFFFAOYSA-N 77190 146920 77297 D-glucose 1,6-bis(dihydrogen phosphate) 77183 146921 77297 2,6-di-O-phosphono-D-glucose 77183 146922 77297 D-Glucose 1,6-bisphosphate 77187 146923 77297 D-Glucose 1,6-biphosphate 77184 146924 77297 C6H14O12P2 77185 146925 77297 [H]C(=O)[C@H](OP(O)(O)=O)[C@@H](O)[C@H](O)[C@H](O)COP(O)(O)=O 77188 146926 77297 InChI=1S/C6H14O12P2/c7-1-4(18-20(14,15)16)6(10)5(9)3(8)2-17-19(11,12)13/h1,3-6,8-10H,2H2,(H2,11,12,13)(H2,14,15,16)/t3-,4+,5-,6-/m1/s1 77189 146927 77297 ZJHWKVNJCGZAFV-JGWLITMVSA-N 77190 146928 77298 delta1-Pyrroline 2-carboxylate 77184 146929 77298 1-Pyrroline-2-carboxylic acid 77187 146930 77298 3,4-dihydro-2H-pyrrole-5-carboxylic acid 77183 146931 77298 1-Pyrroline-2-carboxylate 77184 146932 77298 C5H7NO2 77185 146933 77298 OC(=O)C1=NCCC1 77188 146934 77298 InChI=1S/C5H7NO2/c7-5(8)4-2-1-3-6-4/h1-3H2,(H,7,8) 77189 146935 77298 RHTAIKJZSXNELN-UHFFFAOYSA-N 77190 146936 77299 nicotinamide-adenine dinucleotide phosphate 77184 146937 77300 rac-2-hydroxypropanoic acid 77183 146938 77300 E270 77184 146939 77300 Milchsaeure 77184 146940 77300 alpha-hydroxypropanoic acid 77184 146941 77300 (+-)-2-hydroxypropanoic acid 77184 146942 77300 alpha-hydroxypropionic acid 77184 146943 77300 2-Hydroxypropionic acid 77184 146944 77300 2-Hydroxypropanoic acid 77184 146945 77300 Lactic acid 77184 146946 77300 C3H6O3 77185 146947 77301 Aluminum anion 77184 146948 77301 Al(-) 77184 146949 77301 aluminide(1-) 77183 146950 77301 aluminide(-I) 77183 146951 77301 Al 77185 146952 77301 [Al-] 77188 146953 77301 InChI=1S/Al/q-1 77189 146954 77301 SBLSYFIUPXRQRY-UHFFFAOYSA-N 77190 146955 77302 phosphoric acid 77187 146956 77302 Phosphorsaeure 77184 146957 77302 Tetrasodium Pyrophosphate Decahydrate 77184 146958 77302 Marphos 77184 146959 77302 Orthophosphoric acid 77184 146960 77302 Phosphorsaeureloesungen 77184 146961 77302 [PO(OH)3] 77184 146962 77302 Sodium pyrophosphate decahydrate BioChemica 77184 146963 77302 acide phosphorique 77184 146964 77302 tetraoxophosphoric acid 77183 146965 77302 H3PO4 77184 146966 77302 White phosphoric acid 77184 146967 77302 NFB 77184 146968 77302 Sodium pyrophosphate decahydrate 77184 146969 77302 Phosphoric acid (ACD/Name 4.0) 77184 146970 77302 Phosphate 77184 146971 77302 trihydrogen tetraoxophosphate(3-) 77183 146972 77302 Sonac 77184 146973 77302 Tetra-Sodium pyrophosphate 77184 146974 77302 Diphosphate tetrasodium 77184 146975 77302 trihydroxidooxidophosphorus 77183 146976 77302 Ortho- phosphoric acid 77184 147196 77320 O-Phosphoric acid 77184 146977 77302 Tetrasodium pyrophosphate 10-hydrate 77184 146978 77302 Acido fosforico [Italian] 77184 146979 77302 Sodium Pyrophosphate 77184 146980 77302 Fosforzuuroplossingen [Dutch] 77184 146981 77302 Acide phosphorique (FRENCH) 77184 146982 77302 Phosphorsaeureloesungen [German] 77184 146983 77302 acidum phosphoricum 77184 146984 77302 H3O4P 77185 146985 77302 [H]OP(=O)(O[H])O[H] 77188 146986 77302 InChI=1S/H3O4P/c1-5(2,3)4/h(H3,1,2,3,4) 77189 146987 77302 NBIIXXVUZAFLBC-UHFFFAOYSA-N 77190 146988 77303 hydrogen fumarate 77184 146989 77303 fumarate monoanion 77184 146990 77303 (2E)-3-carboxyacrylate 77184 146991 77303 (2E)-3-carboxyprop-2-enoate 77183 146992 77303 C4H3O4 77185 146993 77303 OC(=O)C=CC([O-])=O 77188 146994 77303 InChI=1S/C4H4O4/c5-3(6)1-2-4(7)8/h1-2H,(H,5,6)(H,7,8)/p-1/b2-1+ 77189 146995 77303 VZCYOOQTPOCHFL-OWOJBTEDSA-M 77190 146996 77304 Butandisaeure 77184 146997 77304 Dihydrofumarate 77184 146998 77304 butanedioic acid 77183 146999 77304 1,2-ethanedicarboxylic acid 77184 147000 77304 Wormwood acid 77184 147001 77304 asuccin 77184 147002 77304 Katasuccin 77184 147003 77304 1,4-Butanedioic acid 77184 147004 77304 E363 77184 147005 77304 1,2-Ethanedicarboxylate 77184 147006 77304 1,4-Butanedioate 77184 147007 77304 Bernsteinsaeure 77184 147008 77304 acide butanedioique 77184 147009 77304 acidum succinicum 77184 147010 77304 HOOC-CH2-CH2-COOH 77184 147011 77304 spirit of amber 77184 147012 77304 acide succinique 77184 147013 77304 Dihydrofumaric acid 77184 147014 77304 Succinate 77184 147015 77304 succinic acid 77183 147016 77304 amber acid 77184 147017 77304 Ethylenesuccinic acid 77184 147018 77304 Succinic acid 77187 147019 77304 Butanedionic acid 77184 147020 77304 C4H6O4 77185 147021 77304 OC(=O)CCC(O)=O 77188 147022 77304 InChI=1S/C4H6O4/c5-3(6)1-2-4(7)8/h1-2H2,(H,5,6)(H,7,8) 77189 147023 77304 KDYFGRWQOYBRFD-UHFFFAOYSA-N 77190 147024 77305 (-)-Shikimic acid 77184 147025 77305 (-)-Shikimate 77184 147026 77305 (3R,4S,5R)-3,4,5-trihydroxycyclohexene-1-carboxylic acid 77184 147027 77305 Shikimate 77184 147028 77305 L-shikimic acid 77184 147029 77305 Skikimic acid 77184 147030 77305 3alpha,4alpha,5beta-trihydroxy-1-cyclohexene-1-carboxylic acid 77184 147031 77305 L-Shikimate 77184 147032 77305 (3R,4S,5R)-3,4,5-trihydroxycyclohex-1-ene-1-carboxylic acid 77183 147033 77305 [3R-(3alpha,4alpha,5beta)]-3,4,5-trihydroxy-1-cyclohexene-1-carboxylic acid 77184 147034 77305 Skikimate 77184 147035 77305 Shikimic acid 77187 147036 77305 3,4,5-Trihydroxy-1-cyclohexenecarboxylic acid 77184 147037 77305 C7H10O5 77185 147038 77305 O[C@@H]1CC(=C[C@@H](O)[C@H]1O)C(O)=O 77188 147039 77305 InChI=1S/C7H10O5/c8-4-1-3(7(11)12)2-5(9)6(4)10/h1,4-6,8-10H,2H2,(H,11,12)/t4-,5-,6-/m1/s1 77189 147040 77305 JXOHGGNKMLTUBP-HSUXUTPPSA-N 77190 147041 77306 [NH4](+) 77184 147042 77306 Ammonium(1+) 77184 147043 77306 NH4(+) 77184 147044 77306 azanium 77183 147045 77306 ammonium 77183 147046 77306 NH4+ 77184 147047 77306 AMMONIUM ION 77184 147048 77306 H4N 77185 147049 77306 [H][N+]([H])([H])[H] 77188 147050 77306 InChI=1S/H3N/h1H3/p+1 77189 147051 77306 QGZKDVFQNNGYKY-UHFFFAOYSA-O 77190 147052 77307 2-aminopentanedioic acid 77184 147053 77307 Glutamic acid 77187 147054 77307 DL-Glutamic acid 77184 147055 77307 Glu 77184 147056 77307 E 77184 147057 77307 glutamic acid 77183 147058 77307 Glutaminsaeure 77184 147059 77307 DL-Glutaminic acid 77184 147060 77307 Glutamate 77184 147061 77307 Glutaminic acid 77184 147062 77307 2-Aminoglutaric acid 77184 147063 77307 C5H9NO4 77185 147064 77307 NC(CCC(O)=O)C(O)=O 77188 147065 77307 InChI=1S/C5H9NO4/c6-3(5(9)10)1-2-4(7)8/h3H,1-2,6H2,(H,7,8)(H,9,10) 77189 147066 77307 WHUUTDBJXJRKMK-UHFFFAOYSA-N 77190 147067 77308 1-Hydroxy-3-(phosphonooxy)acetone 77184 147068 77308 1,3-Dihydroxy-2-propanone monodihydrogen phosphate 77184 147069 77308 1,3-Dihydroxy-2-propanone phosphate 77184 147070 77308 Glycerone-phosphate 77184 147071 77308 Glycerone phosphate 77187 147072 77308 Dihydroxy-Acetone-P 77184 147073 77308 DHAP 77184 147074 77308 3-hydroxy-2-oxopropyl dihydrogen phosphate 77183 147075 77308 Dihydroxyacetone-phosphate 77184 147076 77308 Dihydroxyacetone monophosphate 77184 147077 77308 1,3-Dihydroxyacetone 1-phosphate 77184 147078 77308 (3-hydroxy-2-oxopropoxy)phosphonic acid 77184 147079 77308 Phosphoric acid ester with 1,3-dihydroxy-2-propanone 77184 147080 77308 Di-OH-acetone-P 77184 147081 77308 Dihydroxyacetone-P 77184 147082 77308 Dihydroxy-acetone-phosphate 77184 147083 77308 1-hydroxy-3-(phosphonooxy)-2-Propanone 77184 147084 77308 3-hydroxy-2-oxopropyl phosphate 77184 147085 77308 1,3-Dihydroxy-2-Propanone mono(dihydrogen phosphate) 77184 147086 77308 Dihydroxyacetone 3-phosphate 77184 147087 77308 2-Propanone, 1-hydroxy-3-(phosphonooxy)- 77184 147088 77308 glycerone monophosphate 77184 147089 77308 Dihydroxyacetone phosphate 77184 147090 77308 1,3-DIHYDROXYACETONEPHOSPHATE 77184 147091 77308 C3H7O6P 77185 147092 77308 OCC(=O)COP(O)(O)=O 77188 147093 77308 InChI=1S/C3H7O6P/c4-1-3(5)2-9-10(6,7)8/h4H,1-2H2,(H2,6,7,8) 77189 147094 77308 GNGACRATGGDKBX-UHFFFAOYSA-N 77190 147095 77309 monoatomic anions 77184 147096 77309 . 77185 147097 77310 . 77185 147098 77311 Kupfer 77184 147099 77311 copper 77184 147100 77311 29Cu 77184 147101 77311 cobre 77184 147102 77311 cuprum 77184 147103 77311 cuivre 77184 147104 77311 Cu 77184 147105 77311 [Cu] 77188 147106 77311 InChI=1S/Cu 77189 147107 77311 RYGMFSIKBFXOCR-UHFFFAOYSA-N 77190 147108 77312 beta-D-Fructofuranosyl-6-O-phosphono-alpha-D-glucopyranoside 77184 147109 77312 6-Phosphosucrose 77184 147110 77312 6-O-phosphono-beta-D-fructofuranosyl alpha-D-glucopyranoside 77183 147111 77312 6-O-Phosphonosucrose 77184 147112 77312 sugar 1-phosphate 77184 147113 77312 Sucrose 6-phosphate 77184 147114 77312 Sucrose 6F-phosphate 77184 147115 77312 C12H23O14P 77185 147116 77312 OC[C@H]1O[C@H](O[C@]2(CO)O[C@H](COP(O)(O)=O)[C@@H](O)[C@@H]2O)[C@H](O)[C@@H](O)[C@@H]1O 77188 147117 77312 InChI=1S/C12H23O14P/c13-1-4-6(15)8(17)9(18)11(24-4)26-12(3-14)10(19)7(16)5(25-12)2-23-27(20,21)22/h4-11,13-19H,1-3H2,(H2,20,21,22)/t4-,5-,6-,7-,8+,9-,10+,11-,12+/m1/s1 77189 147118 77312 PJTTXANTBQDXME-UGDNZRGBSA-N 77190 147119 77313 HX 77184 147120 77313 halide ions 77183 147121 77313 halide(1-) 77184 147122 77313 halogen anion 77184 147123 77313 halides 77184 147124 77313 halide anions 77184 147125 77313 Halo acid 77184 147126 77313 Hydrogen halide 77184 147127 77313 halide 77184 147128 77313 X 77185 147129 77314 alpha-D-glucopyranosyl 6-O-phosphono-alpha-D-glucopyranoside 77183 147130 77314 alpha-D-glucopyranosyl alpha-D-glucopyranoside 6-(dihydrogen phosphate) 77184 147131 77314 Trehalose 6-phosphate 77184 147132 77314 alpha,alpha'-Trehalose 6-phosphate 77184 147133 77314 C12H23O14P 77185 147134 77314 OC[C@H]1O[C@H](O[C@H]2O[C@H](COP(O)(O)=O)[C@@H](O)[C@H](O)[C@H]2O)[C@H](O)[C@@H](O)[C@@H]1O 77188 147135 77314 InChI=1S/C12H23O14P/c13-1-3-5(14)7(16)9(18)11(24-3)26-12-10(19)8(17)6(15)4(25-12)2-23-27(20,21)22/h3-19H,1-2H2,(H2,20,21,22)/t3-,4-,5-,6-,7+,8+,9-,10-,11-,12-/m1/s1 77189 147136 77314 LABSPYBHMPDTEL-LIZSDCNHSA-N 77190 147137 77315 Trioxonitrate 77184 147138 77315 nitrooxidane 77184 147139 77315 [NO3](-) 77184 147140 77315 nitrate(1-) 77184 147141 77315 Trioxidonitrate 77184 147142 77315 Isordil 77184 147143 77315 NO3 77184 147144 77315 Gynazole-1 77184 147145 77315 Ganite 77184 147146 77315 Econazole Nitrate 77184 147147 77315 nitrate 77183 147148 77315 trioxidonitrate(1-) 77183 147149 77315 NO3(-) 77184 147150 77315 trioxonitrate(1-) 77183 147151 77315 Femstat 3 77184 147152 77315 Isosorbide Dinitrate 77184 147153 77315 Sorbitrate 77184 147154 77315 Nitric acid 77184 147155 77315 Nitrate ion 77184 147156 77315 trioxonitrate(V) 77183 147157 77315 [O-][N+]([O-])=O 77188 147158 77315 InChI=1S/NO3/c2-1(3)4/q-1 77189 147159 77315 NHNBFGGVMKEFGY-UHFFFAOYSA-N 77190 147160 77316 2-amino-4-hydroxybutanoic acid 77184 147161 77316 homoserine 77183 147162 77316 DL-Homoserine 77184 147163 77316 Hse 77184 147164 77316 C4H9NO3 77185 147165 77316 NC(CCO)C(O)=O 77188 147166 77316 InChI=1S/C4H9NO3/c5-3(1-2-6)4(7)8/h3,6H,1-2,5H2,(H,7,8) 77189 147167 77316 UKAUYVFTDYCKQA-UHFFFAOYSA-N 77190 147168 77317 ionic elements 77184 147169 77317 monoatomic ions 77184 147170 77317 . 77185 147171 77318 monoatomic monoanions 77184 147172 77318 . 77185 147173 77318 [*-] 77188 147174 77319 HOOC-CH2-CH2-COO(-) 77184 147175 77319 Butanedioic acid, conjugate base 77184 147176 77319 hydrogen succinate 77184 147177 77319 3-carboxypropanoate 77183 147178 77319 C4H5O4 77185 147179 77319 OC(=O)CCC([O-])=O 77188 147180 77319 InChI=1S/C4H6O4/c5-3(6)1-2-4(7)8/h1-2H2,(H,5,6)(H,7,8)/p-1 77189 147181 77319 KDYFGRWQOYBRFD-UHFFFAOYSA-M 77190 147182 77320 Phosphate ion(3-) 77184 147183 77320 Orthophosphate(3-) 77184 147184 77320 Pi 77184 147185 77320 Ortho-phosphate 77184 147186 77320 Phosphate trianion 77184 147187 77320 PO4(3-) 77184 147188 77320 tetraoxophosphate(3-) 77183 147189 77320 tetraoxophosphate(V) 77183 147190 77320 Phosphate (PO43-) 77184 147191 77320 Phosphoric acid ion(3-) 77184 147192 77320 Phosphate ion (PO43-) 77184 147193 77320 Phosphate anion(3-) 77184 147194 77320 tetraoxidophosphate(3-) 77183 147195 77320 Orthophosphate (PO43-) 77184 147197 77320 phosphate 77183 147198 77320 NFB Orthophosphate 77184 147199 77320 Phosphate(3-) 77187 147200 77320 [PO4](3-) 77184 147201 77320 Orthophosphate 77184 147202 77320 Phosphate 77184 147203 77320 PHOSPHATE ION 77184 147204 77320 O4P 77185 147205 77320 [O-]P([O-])([O-])=O 77188 147206 77320 InChI=1S/H3O4P/c1-5(2,3)4/h(H3,1,2,3,4)/p-3 77189 147207 77320 NBIIXXVUZAFLBC-UHFFFAOYSA-K 77190 147208 77321 Serin 77184 147209 77321 Serine 77187 147210 77321 2-amino-3-hydroxy-propanoic acid 77184 147211 77321 2-amino-3-hydroxypropanoic acid 77184 147212 77321 serine 77183 147213 77321 3-Hydroxyalanine 77184 147214 77321 2-Amino-3-hydroxypropionic acid 77184 147215 77321 C3H7NO3 77185 147216 77321 NC(CO)C(O)=O 77188 147217 77321 InChI=1S/C3H7NO3/c4-2(1-5)3(6)7/h2,5H,1,4H2,(H,6,7) 77189 147218 77321 MTCFGRXMJLQNBG-UHFFFAOYSA-N 77190 147219 77322 3,4-Dihydroxycinnamic acid 77184 147220 77322 Cichoric acid 77184 147221 77322 3,4-Dihydroxybenzeneacrylic acid 77184 147222 77322 Caffeic acid 77184 147223 77322 3,4-Dihydroxy-trans-cinnamate 77184 147224 77322 (2E)-3-(3,4-dihydroxyphenyl)prop-2-enoic acid 77183 147225 77322 trans-caffeate 77184 147226 77322 C9H8O4 77185 147227 77322 OC(=O)C=Cc1ccc(O)c(O)c1 77188 147228 77322 InChI=1S/C9H8O4/c10-7-3-1-6(5-8(7)11)2-4-9(12)13/h1-5,10-11H,(H,12,13)/b4-2+ 77189 147229 77322 QAIPRVGONGVQAS-DUXPYHPUSA-N 77190 147230 77323 2-ketopropionic acid 77184 147231 77323 2-Oxopropanoic acid 77184 147232 77323 2-oxopropanoic acid 77183 147233 77323 2-Oxopropansaeure 77184 147234 77323 2-Oxopropionate 77184 147235 77323 2-Oxopropionic acid 77184 147236 77323 2-Oxopropionsaeure 77184 147237 77323 a-Ketopropionate 77184 147238 77323 a-Ketopropionic acid 77184 147239 77323 Acetylformate 77184 147240 77323 Acetylformic acid 77184 147241 77323 acide pyruvique 77184 147242 77323 alpha-Ketopropionate 77184 147243 77323 alpha-ketopropionic acid 77184 147244 77323 alpha-Oxopropionsaeure 77184 147245 77323 Brenztraubensaeure 77184 147246 77323 BTS 77184 147247 77323 C3H4O3 77185 147248 77323 CC(=O)C(O)=O 77188 147249 77323 CH3COCOOH 77184 147250 77323 InChI=1S/C3H4O3/c1-2(4)3(5)6/h1H3,(H,5,6) 77189 147251 77323 LCTONWCANYUPML-UHFFFAOYSA-N 77190 147252 77323 Pyroracemate 77184 147253 77323 Pyroracemic acid 77184 147254 77323 Pyruvate 77184 147255 77323 PYRUVIC ACID 77187 147256 77328 dyne 77187 147257 77329 centimeter 77187 147258 77329 centimetre 77187 147259 77331 acre 77187 147260 77334 cubic mile 77187 147261 77334 cu mile 77187 147262 77334 mile3 77187 147263 77334 mile^3 77187 147264 77334 mi3 77187 147265 77334 mi^3 77187 147266 77336 square centimeter 77187 147267 77336 square centimetre 77187 147268 77342 meter 77187 147269 77342 metre 77187 147270 77343 ohm 77187 147271 77344 foot 77187 147272 77344 feet 77187 147273 77345 Btu 77187 147274 77345 British thermal unit 77187 147275 77346 weber 77187 147276 77347 square decimeter 77187 147277 77347 square decimetre 77187 147278 77348 cc 77187 147279 77348 ccm 77187 147280 77348 cubic centimeter 77187 147281 77348 cubic centimetre 77187 147282 77348 cm^3 77187 147283 77348 cm3 77187 147284 77348 milliliter 77187 147285 77348 millilitre 77187 147286 77351 square millimeter 77187 147287 77351 square millimetre 77187 147288 77355 cubic in 77187 147289 77355 cubic inch 77187 147290 77355 cu inch 77187 147291 77355 in3 77187 147292 77355 in^3 77187 147293 77355 inch^3 77187 147294 77355 inch3 77187 147295 77355 cui 77187 147296 77355 CI 77187 147297 77355 c.i. 77187 147298 77358 picoliter 77187 147299 77358 picolitre 77187 147300 77361 kilometer 77187 147301 77361 kilometre 77187 147302 77365 m/s^2 77187 147303 77365 meters per seconds squared 77187 147304 77365 ms^-2 77187 147305 77366 volt 77187 147306 77373 pound 77187 147307 77373 lbm 77187 147308 77377 henry 77187 147309 77381 nanoliter 77187 147310 77381 nanolitre 77187 147311 77382 kg/L 77187 147312 77382 grams per cubic centimeter 77187 147313 77382 grams per milliliter 77187 147314 77382 g/cm^3 77187 147315 77383 milligram 77187 147316 77385 kilogram 77187 147317 77385 kilo 77187 147318 77387 square meter 77187 147319 77387 square metre 77187 147320 77388 radian 77187 147321 77388 radians 77187 147322 77389 microliter 77187 147323 77389 microlitre 77187 147324 77390 square feet 77187 147325 77390 square foot 77187 147326 77390 sq feet 77187 147327 77390 sq foot 77187 147328 77390 square ft 77187 147329 77392 kilocalorie 77187 147330 77394 nanogram 77187 147331 77395 fl ounce 77187 147332 77395 f oz 77187 147333 77395 oz fl 77187 147334 77395 oz 77187 147335 77396 pound force 77187 147336 77396 lb f 77187 147337 77397 picometer 77187 147338 77397 picometre 77187 147339 77404 cubic feet 77187 147340 77404 cubic foot 77187 147341 77404 cubic ft 77187 147342 77404 cuft 77187 147343 77404 cb ft 77187 147344 77404 cu.ft 77187 147345 77404 cbft 77187 147346 77404 cb.ft 77187 147347 77404 cbf 77187 147348 77404 cu feet 77187 147349 77404 ft3 77187 147350 77404 feet^3 77187 147351 77404 foot^3 77187 147352 77404 feet3 77187 147353 77404 foot3 77187 147354 77405 square mile 77187 147355 77405 square mi 77187 147356 77405 sq mile 77187 147357 77405 sq mi 77187 147358 77406 femtoliter 77187 147359 77406 femtolitre 77187 147360 77407 millimeter 77187 147361 77407 millimetre 77187 147362 77410 calorie 77187 147363 77413 decimeter 77187 147364 77413 decimetre 77187 147365 77415 femtogram 77187 147366 77417 centiliter 77187 147367 77417 centilitre 77187 147368 77418 cubic yard 77187 147369 77418 cu yard 77187 147370 77418 yard3 77187 147371 77418 yard^3 77187 147372 77418 cubic yd 77187 147373 77419 plank force 77187 147374 77420 gram 77187 147375 77420 gr 77187 147376 77426 femtometer 77187 147377 77426 femtometre 77187 147378 77427 micrometer 77187 147379 77427 micrometre 77187 147380 77429 square inch 77187 147381 77429 square in 77187 147382 77429 sq inch 77187 147383 77430 grams per liter 77187 147384 77430 kilograms per cubic meter 77187 147385 77430 kg/m^3 77187 147386 77432 nanometer 77187 147387 77432 nanometre 77187 147388 77434 liter 77187 147389 77434 litre 77187 147390 77436 yard 77187 147391 77439 ampere 77187 147392 77439 amp 77187 147393 77440 degree 77187 147394 77440 degrees 77187 147395 77441 hectare 77187 147396 77442 inch 77187 147397 77443 gallon 77187 147398 77444 microgram 77187 147399 77447 picogram 77187 147400 77448 meters per second 77187 147401 77448 ms^-1 77187 147402 77449 cubic meter 77187 147403 77449 cubic metre 77187 147404 77449 cu m 77187 147405 77449 m3 77187 147406 77449 m^3 77187 147407 77449 cbm 77187 147408 77450 deciliter 77187 147409 77450 decilitre 77187 147410 77451 square kilometer 77187 147411 77451 square kilometre 77187 147412 77451 sq kilometer 77187 147413 77451 sq kilometre 77187 147414 77453 tesla 77187 147415 77461 newton 77187 147416 77461 kg m/s2 77187 147417 77462 siemens 77187 147418 77464 Wk13 77187 147419 77465 Wk35 77187 147420 77467 Wk11 77187 147421 77468 Wk17 77187 147422 77469 Wk12 77187 147423 77470 Wk54 77187 147424 77471 Wk25 77187 147425 77472 Wk45 77187 147426 77473 Mo8 77187 147427 77474 Mo4 77187 147428 77475 Mo7 77187 147429 77476 Wk50 77187 147430 77477 Wk53 77187 147431 77478 EoN 77187 147432 77479 Wk20 77187 147433 77480 Wk23 77187 147434 77481 MD 77187 147435 77482 Wk32 77187 147436 77483 Wk37 77187 147437 77484 Wk22 77187 147438 77485 Wk16 77187 147439 77486 Wk40 77187 147440 77487 Wk2 77187 147441 77488 Wk6 77187 147442 77489 Mo6 77187 147443 77490 Wk4 77187 147444 77491 Wk14 77187 147445 77492 Wk26 77187 147446 77493 Wk49 77187 147447 77494 Wk3 77187 147448 77495 Wk7 77187 147449 77496 C3 77187 147450 77497 Wk31 77187 147451 77498 Wk21 77187 147452 77499 Mo10 77187 147453 77500 Wk47 77187 147454 77502 Mo3 77187 147455 77503 Wk52 77187 147456 77504 Wk42 77187 147457 77505 Wk18 77187 147458 77506 Mo12 77187 147459 77507 Wk1 77187 147460 77508 Wk29 77187 147461 77509 Wk27 77187 147462 77510 C1 77187 147463 77512 Wk9 77187 147464 77513 Wk43 77187 147465 77514 Wk33 77187 147466 77515 Wk48 77187 147467 77516 Wk46 77187 147468 77517 Wk19 77187 147469 77518 C2 77187 147470 77519 Wk24 77187 147471 77520 Mo11 77187 147472 77521 Mo5 77187 147473 77522 Wk5 77187 147474 77523 Wk30 77187 147475 77524 Wk39 77187 147476 77525 Wk8 77187 147477 77526 Mo1 77187 147478 77527 Wk36 77187 147479 77528 Wk34 77187 147480 77529 Mo9 77187 147481 77530 Wk41 77187 147482 77531 Wk28 77187 147483 77532 Wk44 77187 147484 77533 Wk51 77187 147485 77535 Wk15 77187 147486 77536 EoD 77187 147487 77537 Wk38 77187 147488 77538 Mo2 77187 147489 77539 Wk10 77187 147490 77548 cass source leaf_3-phosphoglyceric acid_ug/g_Wk16 77187 147491 77549 cass source leaf_ADP_ug/g_Wk16 77187 147492 77550 cass storage root_ADP alpha-D-glucoside_ug/g_Wk16 77187 147493 77551 cass storage root_ADP_ug/g_Wk16 77187 147494 77552 cass storage root_3-phosphoglyceric acid_ug/g_Wk16 77187 147495 77553 cass source leaf_ADP alpha-D-glucoside_ug/g_Wk16 77187 147496 77554 cass upper stem_ADP alpha-D-glucoside_ug/g_Wk16 77187 147497 77555 cass upper stem_ADP_ug/g_Wk16 77187 147498 77556 cass sink leaf_ADP_ug/g_Wk16 77187 147499 77557 cass sink leaf_ADP alpha-D-glucoside_ug/g_Wk16 77187 147500 77558 cass upper stem_3-phosphoglyceric acid_ug/g_Wk16 77187 147501 77559 cass sink leaf_3-phosphoglyceric acid_ug/g_Wk16 77187 147502 78429 D43 77187 147503 78430 D29 77187 147504 78431 D22 77187 147505 78432 D309 77187 147506 78433 D204 77187 147507 78434 D165 77187 147508 78435 D76 77187 147509 78436 H15 77187 147510 78437 D307 77187 147511 78438 H11 77187 147512 78439 D183 77187 147513 78440 D21 77187 147514 78441 D317 77187 147515 78442 D234 77187 147516 78443 D327 77187 147517 78444 D126 77187 147518 78445 D215 77187 147519 78446 D228 77187 147520 78447 D93 77187 147521 78448 D169 77187 147522 78449 D107 77187 147523 78450 D254 77187 147524 78451 H07 77187 147525 78452 D135 77187 147526 78453 D100 77187 147527 78454 D44 77187 147528 78455 PreFLW 77187 147529 78456 D114 77187 147530 78457 D343 77187 147531 78458 D102 77187 147532 78459 D358 77187 147533 78460 D230 77187 147534 78461 D70 77187 147535 78462 D166 77187 147536 78463 D160 77187 147537 78464 H23 77187 147538 78465 D38 77187 147539 78466 H19 77187 147540 78467 D143 77187 147541 78468 D122 77187 147542 78469 D212 77187 147543 78470 D248 77187 147544 78471 D94 77187 147545 78472 PHVT 77187 147546 78473 D224 77187 147547 78474 FLW 77187 147548 78475 D170 77187 147549 78476 D311 77187 147550 78477 H02 77187 147551 78478 H06 77187 147552 78479 D86 77187 147553 78480 D255 77187 147554 78481 Min15 77187 147555 78482 H17 77187 147556 78483 D112 77187 147557 78484 D154 77187 147558 78485 D167 77187 147559 78486 D36 77187 147560 78487 D09 77187 147561 78488 Min30 77187 147562 78489 D276 77187 147563 78490 D24 77187 147564 78491 D232 77187 147565 78492 D363 77187 147566 78493 D53 77187 147567 78494 D200 77187 147568 78495 H10 77187 147569 78496 H20 77187 147570 78497 D145 77187 147571 78498 D147 77187 147572 78499 D85 77187 147573 78500 D364 77187 147574 78501 D273 77187 147575 78502 D267 77187 147576 78503 D310 77187 147577 78504 D163 77187 147578 78505 D222 77187 147579 78506 D329 77187 147580 78507 D168 77187 147581 78508 D335 77187 147582 78509 D37 77187 147583 78510 D67 77187 147584 78511 D105 77187 147585 78512 D362 77187 147586 78513 D134 77187 147587 78514 D313 77187 147588 78515 D236 77187 147589 78516 PLT 77187 147590 78517 D68 77187 147591 78518 H03 77187 147592 78519 D96 77187 147593 78520 D199 77187 147594 78521 D289 77187 147595 78522 D72 77187 147596 78523 D296 77187 147597 78524 D151 77187 147598 78525 D121 77187 147599 78526 D196 77187 147600 78527 D90 77187 147601 78528 D189 77187 147602 78529 H12 77187 147603 78530 D279 77187 147604 78531 D269 77187 147605 78532 D295 77187 147606 78533 D54 77187 147607 78534 D347 77187 147608 78535 AftHvt 77187 147609 78536 D179 77187 147610 78537 D180 77187 147611 78538 D103 77187 147612 78539 D257 77187 147613 78540 D28 77187 147614 78541 D237 77187 147615 78542 D260 77187 147616 78543 D271 77187 147617 78544 D268 77187 147618 78545 D91 77187 147619 78546 D278 77187 147620 78547 D108 77187 147621 78548 D138 77187 147622 78549 D303 77187 147623 78550 D318 77187 147624 78551 D205 77187 147625 78552 D293 77187 147626 78553 D281 77187 147627 78554 D330 77187 147628 78555 D97 77187 147629 78556 D290 77187 147630 78557 D190 77187 147631 78558 D331 77187 147632 78559 D328 77187 147633 78560 D186 77187 147634 78561 D12 77187 147635 78562 D195 77187 147636 78563 D140 77187 147637 78564 D131 77187 147638 78565 H16 77187 147639 78566 D340 77187 147640 78567 D262 77187 147641 78568 D240 77187 147642 78569 D264 77187 147643 78570 D238 77187 147644 78571 D156 77187 147645 78572 D71 77187 147646 78573 D78 77187 147647 78574 D74 77187 147648 78575 D56 77187 147649 78576 D356 77187 147650 78577 D81 77187 147651 78578 D213 77187 147652 78579 D55 77187 147653 78580 D171 77187 147654 78581 D332 77187 147655 78582 D188 77187 147656 78583 D157 77187 147657 78584 D52 77187 147658 78585 D339 77187 147659 78586 D155 77187 147660 78587 D245 77187 147661 78588 D177 77187 147662 78589 D125 77187 147663 78590 D185 77187 147664 78591 D250 77187 147665 78592 D247 77187 147666 78593 D83 77187 147667 78594 D48 77187 147668 78595 D47 77187 147669 78596 D63 77187 147670 78597 D129 77187 147671 78598 D261 77187 147672 78599 D300 77187 147673 78600 D217 77187 147674 78601 D25 77187 147675 78602 D152 77187 147676 78603 D341 77187 147677 78604 D139 77187 147678 78605 D193 77187 147679 78606 D270 77187 147680 78607 D349 77187 147681 78608 D337 77187 147682 78609 D75 77187 147683 78610 D31 77187 147684 78611 D77 77187 147685 78612 D18 77187 147686 78613 H24 77187 147687 78614 D306 77187 147688 78615 D277 77187 147689 78616 D346 77187 147690 78617 D233 77187 147691 78618 D322 77187 147692 78619 D133 77187 147693 78620 D231 77187 147694 78621 D118 77187 147695 78622 D321 77187 147696 78623 D104 77187 147697 78624 D89 77187 147698 78625 D211 77187 147699 78626 D172 77187 147700 78627 D40 77187 147701 78628 D148 77187 147702 78629 D113 77187 147703 78630 D361 77187 147704 78631 D80 77187 147705 78632 H05 77187 147706 78633 D98 77187 147707 78634 D208 77187 147708 78635 D82 77187 147709 78636 D299 77187 147710 78637 D02 77187 147711 78638 D252 77187 147712 78639 D11 77187 147713 78640 D20 77187 147714 78641 D256 77187 147715 78642 D283 77187 147716 78643 D33 77187 147717 78644 D352 77187 147718 78645 D223 77187 147719 78646 D92 77187 147720 78647 D158 77187 147721 78648 D153 77187 147722 78649 D246 77187 147723 78650 D316 77187 147724 78651 D301 77187 147725 78652 D115 77187 147726 78653 D298 77187 147727 78654 D345 77187 147728 78655 D357 77187 147729 78656 D159 77187 147730 78657 D244 77187 147731 78658 D235 77187 147732 78659 D05 77187 147733 78660 BfrHvt 77187 147734 78661 D84 77187 147735 78662 D178 77187 147736 78663 D312 77187 147737 78664 D150 77187 147738 78665 D136 77187 147739 78666 D23 77187 147740 78667 D197 77187 147741 78668 D03 77187 147742 78669 H09 77187 147743 78670 D19 77187 147744 78671 Min60 77187 147745 78672 D294 77187 147746 78673 D342 77187 147747 78674 D127 77187 147748 78675 D308 77187 147749 78676 D243 77187 147750 78677 HVT 77187 147751 78678 D239 77187 147752 78679 D210 77187 147753 78680 D241 77187 147754 78681 D58 77187 147755 78682 D265 77187 147756 78683 D284 77187 147757 78684 D225 77187 147758 78685 D202 77187 147759 78686 D305 77187 147760 78687 D34 77187 147761 78688 D314 77187 147762 78689 D123 77187 147763 78690 D291 77187 147764 78691 D06 77187 147765 78692 D16 77187 147766 78693 D216 77187 147767 78694 D07 77187 147768 78695 H14 77187 147769 78696 D242 77187 147770 78697 D333 77187 147771 78698 H08 77187 147772 78699 D353 77187 147773 78700 D220 77187 147774 78701 D73 77187 147775 78702 D116 77187 147776 78703 D109 77187 147777 78704 D164 77187 147778 78705 D141 77187 147779 78706 D365 77187 147780 78707 D128 77187 147781 78708 D35 77187 147782 78709 D258 77187 147783 78710 D175 77187 147784 78711 D30 77187 147785 78712 D198 77187 147786 78713 D272 77187 147787 78714 D62 77187 147788 78715 D263 77187 147789 78716 D26 77187 147790 78717 D351 77187 147791 78718 D101 77187 147792 78719 D218 77187 147793 78720 D32 77187 147794 78721 D187 77187 147795 78722 D192 77187 147796 78723 D249 77187 147797 78724 D149 77187 147798 78725 D286 77187 147799 78726 D182 77187 147800 78727 D315 77187 147801 78728 D207 77187 147802 78729 D350 77187 147803 78730 D120 77187 147804 78731 D359 77187 147805 78732 D302 77187 147806 78733 D282 77187 147807 78734 D201 77187 147808 78735 D87 77187 147809 78736 DCOL 77187 147810 78737 H01 77187 147811 78738 H22 77187 147812 78739 D51 77187 147813 78740 H21 77187 147814 78741 D292 77187 147815 78742 D288 77187 147816 78743 D194 77187 147817 78744 D49 77187 147818 78745 D344 77187 147819 78746 D144 77187 147820 78747 D39 77187 147821 78748 D325 77187 147822 78749 D69 77187 147823 78750 D253 77187 147824 78751 Min45 77187 147825 78752 D319 77187 147826 78753 D57 77187 147827 78754 D110 77187 147828 78755 D04 77187 147829 78756 D360 77187 147830 78757 D50 77187 147831 78758 D184 77187 147832 78759 D206 77187 147833 78760 D27 77187 147834 78761 D266 77187 147835 78762 D124 77187 147836 78763 D142 77187 147837 78764 D229 77187 147838 78765 D106 77187 147839 78766 D174 77187 147840 78767 D259 77187 147841 78768 PostFLW 77187 147842 78770 D66 77187 147843 78771 D146 77187 147844 78772 D65 77187 147845 78773 D08 77187 147846 78774 D304 77187 147847 78775 D348 77187 147848 78776 D221 77187 147849 78777 D117 77187 147850 78778 H18 77187 147851 78779 D338 77187 147852 78780 D41 77187 147853 78781 D287 77187 147854 78782 D42 77187 147855 78783 H13 77187 147856 78784 D13 77187 147857 78785 D95 77187 147858 78786 D226 77187 147859 78787 D60 77187 147860 78788 D285 77187 147861 78789 D323 77187 147862 78790 D336 77187 147863 78791 D64 77187 147864 78792 D46 77187 147865 78793 D119 77187 147866 78794 D227 77187 147867 78795 D61 77187 147868 78797 D01 77187 147869 78798 D176 77187 147870 78799 D10 77187 147871 78800 D209 77187 147872 78801 D45 77187 147873 78802 D214 77187 147874 78803 D280 77187 147875 78804 D181 77187 147876 78805 D320 77187 147877 78806 D334 77187 147878 78807 D15 77187 147879 78808 D274 77187 147880 78809 D79 77187 147881 78810 H04 77187 147882 78811 D203 77187 147883 78812 D99 77187 147884 78813 D354 77187 147885 78814 D297 77187 147886 78815 D326 77187 147887 78816 D324 77187 147888 78817 AftPlt 77187 147889 78818 D219 77187 147890 78819 D14 77187 147891 78820 D173 77187 147892 78821 D161 77187 147893 78822 D275 77187 147894 78823 D130 77187 147895 78824 D162 77187 147896 78825 D132 77187 147897 78826 D251 77187 147898 78827 D88 77187 147899 78828 D137 77187 147900 78829 D17 77187 147901 78830 D191 77187 147902 78831 D59 77187 147903 78832 D355 77187 147904 78833 D111 77187 147905 78873 C6 77187 147906 78874 C3_main_plt 77187 147907 78875 C3 77187 147908 78877 C1_tall_sckr 77187 147909 78878 C2_main_plt 77187 147910 78879 C4_main_plt 77187 147911 78880 C4_tall_sckr 77187 147912 78881 C4 77187 147913 78882 C2_tall_sckr 77187 147914 78883 C2 77187 147915 78884 C1 77187 147916 78885 C3_tall_sckr 77187 147917 78886 C5 77187 147918 78887 C1_main_plt 77187 147919 78888 DistHDRK01 77187 147920 78889 LFRK25 77187 147921 78890 LFRK02 77187 147922 78891 HDRK01 77187 147923 78892 LFRK08 77187 147924 78893 LFRK19 77187 147925 78894 LFRK22 77187 147926 78895 LFRK18 77187 147927 78896 LFRK29 77187 147928 78897 HDRK07 77187 147929 78898 HDRK11 77187 147930 78900 LFRK28 77187 147931 78901 LFRK05 77187 147932 78902 LFRK16 77187 147933 78903 LFRK21 77187 147934 78904 HDRK10 77187 147935 78905 HDRK02 77187 147936 78906 HDRK26 77187 147937 78907 LFRK04 77187 147938 78908 HDRK19 77187 147939 78909 HDRK16 77187 147940 78910 HDRK15 77187 147941 78911 HDRK08 77187 147942 78912 HDRK17 77187 147943 78913 LFRK20 77187 147944 78914 HDRK25 77187 147945 78915 LFRK03 77187 147946 78916 LFRK10 77187 147947 78917 HDRK06 77187 147948 78918 HDRK28 77187 147949 78919 LFRK27 77187 147950 78921 LFRK07 77187 147951 78922 LFRK26 77187 147952 78923 LFRK17 77187 147953 78924 LFRK09 77187 147954 78925 HDRK04 77187 147955 78926 HDRK27 77187 147956 78927 HDRK22 77187 147957 78928 DistHDRK02 77187 147958 78929 LFRK14 77187 147959 78930 LFRK11 77187 147960 78931 HDRK29 77187 147961 78932 LFRK30 77187 147962 78933 HDRK23 77187 147963 78934 LFRK01 77187 147964 78935 HDRK24 77187 147965 78936 HDRK09 77187 147966 78938 HDRK21 77187 147967 78939 HDRK01 77187 147968 78940 LFRK06 77187 147969 78941 LFRK15 77187 147970 78942 HDRK03 77187 147971 78943 LFRK24 77187 147972 78945 HDRK12 77187 147973 78946 HDRK13 77187 147974 78947 HDRK05 77187 147975 78948 LFRK23 77187 147976 78949 HDRK14 77187 147977 78950 HDRK18 77187 147978 78951 HDRK30 77187 147979 78952 LFRK13 77187 147980 78953 LFRK12 77187 \. -- -- Data for Name: cxgn_bac_pipeline_genbank_log; Type: TABLE DATA; Schema: public; Owner: postgres -- COPY public.cxgn_bac_pipeline_genbank_log (id, deleted, "timestamp", uname, host, progname, pid, search_key, message) FROM stdin; \. -- -- Data for Name: cxgn_bac_pipeline_loading_log; Type: TABLE DATA; Schema: public; Owner: postgres -- COPY public.cxgn_bac_pipeline_loading_log (id, deleted, "timestamp", uname, host, progname, pid, search_key, message) FROM stdin; \. -- -- Data for Name: cxgn_bac_pipeline_processing_log; Type: TABLE DATA; Schema: public; Owner: postgres -- COPY public.cxgn_bac_pipeline_processing_log (id, deleted, "timestamp", uname, host, progname, pid, search_key, message) FROM stdin; \. -- -- Data for Name: cxgn_indexedlog_test_feel_free_to_delete_me; Type: TABLE DATA; Schema: public; Owner: postgres -- COPY public.cxgn_indexedlog_test_feel_free_to_delete_me (id, deleted, "timestamp", uname, host, progname, pid, search_key, message) FROM stdin; \. -- -- Data for Name: db; Type: TABLE DATA; Schema: public; Owner: postgres -- COPY public.db (db_id, name, description, urlprefix, url) FROM stdin; 1 OBO_REL \N \N \N 2 null \N \N \N 3 PMID \N \N \N 4 GOC \N \N \N 5 GO \N \N \N 86 ISBN \N \N \N 87 MetaCyc \N \N \N 88 CHEBI \N \N \N 89 RESID \N \N \N 90 GO_REF \N \N \N 91 CL \N \N \N 92 DOI \N \N \N 93 EC \N \N \N 94 http \N \N \N 95 ISSN \N \N \N 96 FMA \N \N \N 97 UM-BBD_pathwayID \N \N \N 98 MITRE \N \N \N 99 MeSH \N \N \N 100 MA \N \N \N 101 MESH \N \N \N 102 PO \N \N \N 103 KEGG \N \N \N 104 Wikipedia \N \N \N 105 dictyBase_REF \N \N \N 106 UBERON \N \N \N 107 PATO \N \N \N 108 RNAmods \N \N \N 109 SP_KW \N \N \N 110 XAO \N \N \N 111 UniPathway \N \N \N 112 InterPro \N \N \N 113 FB \N \N \N 114 PR \N \N \N 115 PubChem_Compound \N \N \N 116 ZFA \N \N \N 117 WB_REF \N \N \N 118 GPC \N \N \N 119 PDB \N \N \N 120 MP \N \N \N 121 Reactome \N \N \N 122 ZFIN \N \N \N 123 PMIG \N \N \N 124 BioCyc \N \N \N 125 LIGAND \N \N \N 126 PSI-MOD \N \N \N 127 MGI \N \N \N 128 SO \N \N \N 129 RHEA \N \N \N 130 UM-BBD_reactionID \N \N \N 131 TC \N \N \N 132 Prosite \N \N \N 133 UM-BBD_enzymeID \N \N \N 134 IUPHAR_RECEPTOR \N \N \N 135 IUPHAR_GPCR \N \N \N 136 IMG \N \N \N 137 Pfam \N \N \N 138 SP \N \N \N 139 UM-BBD_ruleID \N \N \N 140 PRO \N \N \N 141 BRENDA \N \N \N 142 MEROPS \N \N \N 143 OMIM \N \N \N 144 MEROPS_fam \N \N \N 145 EMBL \N \N \N 146 NIF_Subcellular \N \N \N 147 TIGR_TIGRFAMS \N \N \N 148 UniProtKB \N \N \N 149 MEDLINE \N \N \N 150 CORUM \N \N \N 169 POC \N \N \N 170 APWeb \N \N \N 171 GR \N \N \N 172 web \N \N \N 173 TAIR \N \N \N 174 CARO \N \N \N 175 CGP \N \N \N 176 Poc \N \N \N 177 UMSL \N \N \N 178 MaizeGDB \N \N \N 179 Agricola \N \N \N 180 ISBN-13 \N \N \N 181 SGN \N \N \N 182 Botanical Review 77(1) \N \N \N 183 POCXX \N \N \N 184 APweb \N \N \N 185 1959. An Introduction to Embryophyta \N \N \N 187 PATOC \N \N \N 188 WordNet \N \N \N 189 thesaurus.maths \N \N \N 190 biology.lsu \N \N \N 191 url \N \N \N 192 merriam-webster \N \N \N 193 merriam-webster. \N \N \N 194 Biology-online \N \N \N 195 thefreedictionary.com \N \N \N 196 RKC \N \N \N 197 Hickey \N \N \N 198 thefreedictionary \N \N \N 199 answers.com \N \N \N 200 MGED \N \N \N 201 Dictionary.com \N \N \N 202 TO \N \N \N 203 Merriam-Webster \N \N \N 204 MedTerms \N \N \N 205 birnlex \N \N \N 206 die.net \N \N \N 207 Wiikipedia \N \N \N 208 MAMMALOGY \N \N \N 209 neurolex \N \N \N 210 NDI \N \N \N 211 wordreference \N \N \N 212 Dictionary \N \N \N 213 arpansa \N \N \N 214 wikipedia \N \N \N 215 maths.org \N \N \N 216 bdid \N \N \N 217 Trailillustrated \N \N \N 218 chemicool \N \N \N 219 Medline \N \N \N 220 Chemistry \N \N \N 221 Answers.com \N \N \N 222 mondofacto \N \N \N 223 studyphysics \N \N \N 224 Book \N \N \N 225 R. 1979. A glossary of surface sculpturing. Occasional Papers in Entomology 28 \N \N \N 226 InfoVisual \N \N \N 227 wordreference.com \N \N \N 228 .thefreedictionary.com \N \N \N 229 edp \N \N \N 230 thesaurus.math \N \N \N 231 thefreedictionary. \N \N \N 232 hefreedictionary.com \N \N \N 233 biology-online \N \N \N 234 www.answers.com \N \N \N 235 medical-dictionary \N \N \N 236 Medical-dictionary \N \N \N 237 hps \N \N \N 238 Oxford \N \N \N 239 IUPAC \N \N \N 240 sdvc \N \N \N 241 OBI \N \N \N 242 dictionary \N \N \N 243 reference.com \N \N \N 244 .answers.com \N \N \N 245 Online_Dictionary \N \N \N 246 PATC \N \N \N 247 spinalstenosis \N \N \N 248 Chemicool \N \N \N 249 WB \N \N \N 250 PomBase \N \N \N 251 BS \N \N \N 252 EBIBS \N \N \N 253 EBI \N \N \N 254 UniProt \N \N \N 255 JAX \N \N \N 256 doi \N \N \N 257 Indiana \N \N \N 258 xenbase \N \N \N 259 uniprot \N \N \N 260 RSC \N \N \N 261 SGD \N \N \N 262 MGD \N \N \N 263 BBOP \N \N \N 264 RFAM \N \N \N 265 Phigo \N \N \N 266 modENCODE \N \N \N 267 issn \N \N \N 268 GMOD \N \N \N 269 phigo \N \N \N 270 Http \N \N \N 271 species_taxonomy \N \N \N 272 DB:NCBI_taxonomy \N http:// ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi?mode=Info&id= 273 local \N \N \N 275 SGN_ref \N \N \N 276 ICASS_TRAITID \N \N \N 277 CASSTISS \N \N \N 278 CiteXplore \N \N \N 279 Beilstein \N \N \N 280 NIST Chemistry WebBook \N \N \N 281 ChemIDplus \N \N \N 282 HMDB \N \N \N 283 KEGG COMPOUND \N \N \N 284 KNApSAcK \N \N \N 285 DrugBank \N \N \N 286 Reaxys \N \N \N 287 PDBeChem \N \N \N 288 Gmelin \N \N \N 289 YMDB \N \N \N 290 KEGG DRUG \N \N \N 291 WebElements \N \N \N 292 KEGG GLYCAN \N \N \N 293 ECMDB \N \N \N 294 ChEBI \N \N \N 295 COMe \N \N \N 296 UM-BBD \N \N \N 297 CAS \N \N \N 298 LIPID MAPS \N \N \N 299 ChEMBL \N \N \N 300 Patent \N \N \N 301 MolBase \N \N \N 302 SUBMITTER \N \N \N 303 UO \N \N \N 304 TIME \N \N \N 305 COMP \N \N \N 186 CO_334 \N \N \N 306 G2F \N \N \N 307 ISOL \N \N \N 308 SGNSTAT \N \N \N 309 PLANT_CYCLE \N \N \N 310 PLANT_LEVEL \N \N \N 311 TREAT \N \N \N 312 TCUT \N \N \N \. -- -- Data for Name: dbxref; Type: TABLE DATA; Schema: public; Owner: postgres -- COPY public.dbxref (dbxref_id, db_id, accession, version, description) FROM stdin; 1 1 derives_from \N 2 2 autocreated:comment 1 \N 3 1 0000015 \N 4 3 15892874 \N 5 1 agent_in \N 6 1 0000022 \N 7 1 relationship \N 8 4 cjm \N 9 1 has_proper_part \N 10 1 0000007 \N 11 1 has_agent \N 12 1 0000021 \N 13 1 has_integral_part \N 14 1 0000005 \N 15 1 transformation_of \N 16 1 0000013 \N 17 1 located_in \N 18 1 0000008 \N 19 1 is_a \N 20 1 0000001 \N 21 1 instance_of \N 22 1 0000023 \N 23 1 location_of \N 24 1 0000009 \N 25 1 improper_part_of \N 26 1 0000025 \N 27 1 has_part \N 28 1 0000003 \N 29 1 part_of \N 30 1 0000002 \N 31 1 precedes \N 32 1 0000018 \N 33 1 derived_into \N 34 1 0000016 \N 35 1 transformed_into \N 36 1 0000014 \N 37 1 participates_in \N 38 1 0000020 \N 39 1 has_improper_part \N 40 1 0000024 \N 41 1 proper_part_of \N 42 1 0000006 \N 43 1 preceded_by \N 44 1 0000017 \N 45 1 contains \N 46 1 0000011 \N 47 1 has_participant \N 48 1 0000019 \N 49 1 contained_in \N 50 1 0000010 \N 51 1 integral_part_of \N 52 1 0000004 \N 53 1 adjacent_to \N 54 1 0000012 \N 40764 5 0071543 \N 40765 4 mah \N 40766 3 12387729 \N 40767 5 2000178 \N 40768 4 dph \N 40769 4 yaf \N 40770 5 0032230 \N 40771 5 0071849 \N 40772 4 vw \N 40773 5 0051177 \N 40774 4 ai \N 40775 5 0051948 \N 40776 5 0006246 \N 40777 86 0198506732 \N 40778 5 2000046 \N 40779 5 0002243 \N 40780 4 add \N 40781 3 16547862 \N 40782 5 0030865 \N 40783 4 jl \N 40784 5 0045554 \N 40785 4 go_curators \N 40786 5 0031109 \N 40787 5 0075026 \N 40788 4 pamgo_curators \N 40789 5 0052113 \N 40790 4 mtg_pamgo_17jul06 \N 40791 5 0044122 \N 40792 5 0046039 \N 40793 5 0010703 \N 40794 4 BHF \N 40795 4 rl \N 40796 4 tb \N 40797 5 0061160 \N 40798 5 0007300 \N 40799 4 mtg_sensu \N 40800 86 0879694238 \N 40801 5 0033388 \N 40802 87 PWY-46 \N 40803 5 0044259 \N 40804 5 0035695 \N 40805 4 bf \N 40806 4 sp \N 40807 3 21264228 \N 40808 5 0033692 \N 40809 5 0060714 \N 40810 5 0034268 \N 40811 88 15955 \N 40812 5 0048024 \N 40813 5 0035055 \N 40814 4 jid \N 40815 5 2000636 \N 40816 4 sl \N 40817 5 0010103 \N 40818 4 tair_curators \N 40819 5 0045739 \N 40820 5 0009860 \N 40821 86 00943088399 \N 40822 5 0060900 \N 40823 4 sdb_2009 \N 40824 5 0072212 \N 40825 4 mtg_kidney_jan10 \N 40826 5 2000816 \N 40827 4 obol \N 40828 5 0043579 \N 40829 5 0051769 \N 40830 5 0051772 \N 40831 5 0010763 \N 40832 5 0045836 \N 40833 5 0006675 \N 40834 87 MIPC \N 40835 5 0006265 \N 40836 86 071673706X \N 40837 86 0935702490 \N 40838 5 0008050 \N 40839 5 0002666 \N 40840 5 0010588 \N 40841 3 10559439 \N 40842 5 0032650 \N 40843 5 0010038 \N 40844 4 sm \N 40845 5 0018059 \N 40846 89 AA0127 \N 40847 5 0070649 \N 40848 3 14671023 \N 40849 3 16959963 \N 40850 5 0060435 \N 40851 4 mtg_lung \N 40852 5 0048584 \N 40853 5 0048889 \N 40854 86 0125296509 \N 40855 5 0002895 \N 40856 5 0034766 \N 40857 5 0018362 \N 40858 5 0019924 \N 40859 89 AA0279 \N 40860 5 0035015 \N 40861 3 11404081 \N 40862 5 0002440 \N 40863 90 0000022 \N 40864 4 mtg_15nov05 \N 40865 86 0781735149 \N 40866 5 0045853 \N 40867 5 0072219 \N 40868 5 0035426 \N 40869 5 0032149 \N 40870 4 mlg \N 40871 5 0019622 \N 40872 5 0052045 \N 40873 5 0046382 \N 40874 5 0014872 \N 40875 91 0000056 \N 40876 4 ef \N 40877 4 mtg_muscle \N 40878 5 2000279 \N 40879 5 0060340 \N 40880 5 0015949 \N 40881 86 0306444747 \N 40882 86 0471394831 \N 40883 5 0010462 \N 40884 5 0072118 \N 40885 5 0010874 \N 40886 5 0060164 \N 40887 5 0072046 \N 40888 5 0051940 \N 40889 5 0032373 \N 40890 5 0052497 \N 40891 5 0010336 \N 40892 3 17194763 \N 40893 5 0010744 \N 40894 5 0052704 \N 40895 92 10.1021/ja101721e \N 40896 93 2.1.1.44 \N 40897 94 //en.wikipedia.org/wiki/Ergothioneine \N 40898 3 4276459 \N 40899 3 5484456 \N 40900 5 0002515 \N 40901 4 jal \N 40902 5 0014074 \N 40903 88 26401 \N 40904 5 0046882 \N 40905 5 2000948 \N 40906 4 mengo_curators \N 40907 5 0032049 \N 40908 88 28494 \N 40909 5 0043129 \N 40910 3 9751757 \N 40911 5 0018226 \N 40912 89 AA0102 \N 40913 5 0042390 \N 40914 4 pj \N 40915 3 11027362 \N 40916 5 2000884 \N 40917 5 0019466 \N 40918 5 2000220 \N 40919 5 0001654 \N 40920 5 0042460 \N 40921 5 0061112 \N 40922 5 0034055 \N 40923 5 0044108 \N 40924 5 0035411 \N 40925 5 0021616 \N 40926 90 0000021 \N 40927 4 cls \N 40928 4 dgh \N 40929 4 mtg_15jun06 \N 40930 86 0838580343 \N 40931 5 0031665 \N 40932 5 0007098 \N 40933 86 0815316194 \N 40934 5 0009567 \N 40935 5 0002335 \N 40936 5 0048915 \N 40937 3 15018940 \N 40938 5 0055011 \N 40939 4 devbiol \N 40940 4 mtg_heart \N 40941 5 0048109 \N 40942 3 12802338 \N 40943 3 12802339 \N 40944 89 AA0344 \N 40945 5 0060389 \N 40946 86 3527303782 \N 40947 5 0014010 \N 40948 86 0878932585 \N 40949 5 0048170 \N 40950 94 //www.mercksource.com \N 40951 3 11891290 \N 40952 5 0019096 \N 40953 5 0048118 \N 40954 5 0035854 \N 40955 91 0000771 \N 40956 4 vk \N 40957 5 0009066 \N 40958 5 0048611 \N 40959 4 rc \N 40960 5 0010132 \N 40961 4 pz \N 40962 5 0035736 \N 40963 4 sart \N 40964 5 0070841 \N 40965 5 0046460 \N 40966 5 0072470 \N 40967 5 0002465 \N 40968 5 0060325 \N 40969 5 0090235 \N 40970 4 ascb_2009 \N 40971 5 0021868 \N 40972 3 16226447 \N 40973 5 0042070 \N 40974 5 0048127 \N 40975 5 0030954 \N 40976 5 0031919 \N 40977 5 0042941 \N 40978 88 15570 \N 40979 4 jsg \N 40980 5 0035153 \N 40981 3 10684581 \N 40982 3 11063940 \N 40983 5 0007057 \N 40984 5 0052439 \N 40985 4 mtg_pamgo \N 40986 5 0070359 \N 40987 3 15773977 \N 40988 5 0035129 \N 40989 5 0000959 \N 40990 4 krc \N 40991 5 0018228 \N 40992 89 AA0104 \N 40993 5 0006777 \N 40994 94 //www.sunysb.edu/biochem/BIOCHEM/facultypages/schindelin/ \N 40995 95 09498257 \N 40996 5 0015774 \N 40997 5 0075307 \N 40998 5 0033133 \N 40999 5 0045016 \N 41000 3 11254124 \N 41001 5 0045537 \N 41002 5 0009262 \N 41003 5 0009122 \N 41004 5 0009393 \N 41005 5 2000147 \N 41006 5 0050911 \N 41007 5 0075337 \N 41008 5 0090046 \N 41009 5 0019939 \N 41010 89 AA0308 \N 41011 5 0051999 \N 41012 5 0060677 \N 41013 3 16916378 \N 41014 5 0075344 \N 41015 5 0061268 \N 41016 5 0070734 \N 41017 5 0021882 \N 41018 5 0060620 \N 41019 5 0006879 \N 41020 5 0061248 \N 41021 5 0060816 \N 41022 5 0071397 \N 41023 5 0034306 \N 41024 5 0006826 \N 41025 5 0015681 \N 41026 5 0006213 \N 41027 86 0140512713 \N 41028 5 0035834 \N 41029 88 38958 \N 41030 5 0097009 \N 41031 3 15919751 \N 41032 5 0008618 \N 41033 5 0070599 \N 41034 5 0021771 \N 41035 86 0878937420 \N 41036 5 0033168 \N 41037 3 17310250 \N 41038 5 0018041 \N 41039 89 AA0088 \N 41040 5 2001034 \N 41041 5 0016118 \N 41042 5 0044272 \N 41043 5 0019752 \N 41044 5 0002570 \N 41045 5 0043616 \N 41046 91 0000311 \N 41047 5 0080035 \N 41048 3 11560911 \N 41049 3 18945935 \N 41050 5 0010798 \N 41051 5 0007448 \N 41052 5 0071416 \N 41053 5 0051856 \N 41054 4 cc \N 41055 5 2000595 \N 41056 5 0051583 \N 41057 5 0072682 \N 41058 5 0035366 \N 41059 5 0043521 \N 41060 5 0046272 \N 41061 5 0042861 \N 41062 5 0031181 \N 41063 5 0031182 \N 41064 3 10928541 \N 41065 5 0071912 \N 41066 4 dsf \N 41067 3 19477156 \N 41068 3 20643933 \N 41069 5 0060713 \N 41070 5 0060303 \N 41071 5 2000933 \N 41072 5 0003019 \N 41073 4 mtg_cardio \N 41074 86 0323031951 \N 41075 5 0010393 \N 41076 5 0048486 \N 41077 96 9907 \N 41078 4 sr \N 41079 5 0009652 \N 41080 3 16153165 \N 41081 5 0010204 \N 41082 5 0021534 \N 41083 5 0030101 \N 41084 4 mgi_curators \N 41085 86 0781735140 \N 41086 5 0035664 \N 41087 3 11526399 \N 41088 3 11544529 \N 41089 3 12447442 \N 41090 5 0071833 \N 41091 4 elh \N 41092 4 jh \N 41093 5 0042103 \N 41094 5 0075007 \N 41095 5 0046279 \N 41096 5 0045935 \N 41097 5 0018414 \N 41098 5 0048794 \N 41099 4 mh \N 41100 5 0071774 \N 41101 5 0021582 \N 41102 5 0080090 \N 41103 3 19211694 \N 41104 5 0048366 \N 41105 5 0071801 \N 41106 5 0030277 \N 41107 5 0030521 \N 41108 5 0021553 \N 41109 5 0032725 \N 41110 5 0097081 \N 41111 5 0052350 \N 41112 5 0039004 \N 41113 5 0051829 \N 41114 5 0002415 \N 41115 86 081533642X \N 41116 3 16048543 \N 41117 5 0070309 \N 41118 3 7693735 \N 41119 5 0042490 \N 41120 91 0000199 \N 41121 5 0002446 \N 41122 5 0042135 \N 41123 88 25512 \N 41124 5 0060351 \N 41125 5 0043456 \N 41126 5 0042617 \N 41127 88 45863 \N 41128 5 0007234 \N 41129 3 9843501 \N 41130 5 0070133 \N 41131 5 0019232 \N 41132 5 0021823 \N 41133 3 12626695 \N 41134 5 0070458 \N 41135 5 0034198 \N 41136 4 ecd \N 41137 5 0048560 \N 41138 5 0048789 \N 41139 4 dh \N 41140 3 12812759 \N 41141 5 0052557 \N 41142 5 0042225 \N 41143 5 0019951 \N 41144 5 0019947 \N 41145 5 0042755 \N 41146 86 01928006X \N 41147 5 0032257 \N 41148 5 0060279 \N 41149 4 kmv \N 41150 5 2000724 \N 41151 5 0003030 \N 41152 5 0042444 \N 41153 86 0395825172 \N 41154 5 0035590 \N 41155 3 9755289 \N 41156 5 0006019 \N 41157 5 0090269 \N 41158 5 0051924 \N 41159 5 0050978 \N 41160 94 //www.wikipedia.org/Magnetoception \N 41161 3 15886990 \N 41162 5 0002923 \N 41163 5 0048054 \N 41164 5 0033665 \N 41165 5 2000751 \N 41166 5 0032634 \N 41167 5 0035926 \N 41168 3 21501162 \N 41169 5 0034316 \N 41170 5 0031948 \N 41171 5 0072479 \N 41172 5 0034296 \N 41173 4 ds \N 41174 94 //www.ilmyco.gen.chicago.il.us/Terms/zygos581.html \N 41175 5 0043508 \N 41176 5 0006057 \N 41177 5 0052046 \N 41178 5 0018923 \N 41179 94 //umbbd.ahc.umn.edu/lim/lim_map.html \N 41180 97 lim \N 41181 5 0090120 \N 41182 5 0003372 \N 41183 5 0032274 \N 41184 86 0721662544 \N 41185 5 0046364 \N 41186 5 0071035 \N 41187 4 dgf \N 41188 3 15173578 \N 41189 3 15572680 \N 41190 3 15935758 \N 41191 3 17652137 \N 41192 3 18591258 \N 41193 5 0048266 \N 41194 5 0002225 \N 41195 3 11807545 \N 41196 5 0009259 \N 41197 5 0009121 \N 41198 5 0044417 \N 41199 5 0032292 \N 41200 5 0002763 \N 41201 5 0035430 \N 41202 5 0007316 \N 41203 5 0048116 \N 41204 5 0060571 \N 41205 5 0075294 \N 41206 5 2000457 \N 41207 5 0031938 \N 41208 5 0010199 \N 41209 3 12068116 \N 41210 5 0000054 \N 41211 5 0034661 \N 41212 4 rb \N 41213 5 0071403 \N 41214 5 0031349 \N 41215 5 0015865 \N 41216 5 0055015 \N 41217 5 0007221 \N 41218 3 12651094 \N 41219 5 2000228 \N 41220 5 0070592 \N 41221 5 0045922 \N 41222 5 0009758 \N 41223 5 0007587 \N 41224 4 mcc2 \N 41225 5 0046183 \N 41226 88 17796 \N 41227 4 curators \N 41228 5 0052231 \N 41229 5 0090358 \N 41230 5 0035558 \N 41231 4 signaling \N 41232 5 0016057 \N 41233 4 hb \N 41234 5 0009138 \N 41235 5 0052033 \N 41236 5 0052070 \N 41237 5 0052326 \N 41238 5 0018202 \N 41239 4 ma \N 41240 5 0071679 \N 41241 5 0035238 \N 41242 3 11158606 \N 41243 5 0009252 \N 41244 5 0009285 \N 41245 94 //www.dsmz.de/species/murein.htm \N 41246 5 0008211 \N 41247 5 0016123 \N 41248 5 0070425 \N 41249 5 0044149 \N 41250 5 0071585 \N 41251 3 16741752 \N 41252 5 0075316 \N 41253 5 0033534 \N 41254 87 CPD-8065 \N 41255 5 0021828 \N 41256 5 0021857 \N 41257 5 0046336 \N 41258 5 0010555 \N 41259 3 17999646 \N 41260 5 0060760 \N 41261 5 0090117 \N 41262 5 0018344 \N 41263 5 0018348 \N 41264 5 0042036 \N 41265 5 0009175 \N 41266 5 0000754 \N 41267 5 0007331 \N 41268 5 0030453 \N 41269 4 clt \N 41270 5 0008150 \N 41271 5 0000004 \N 41272 5 0007582 \N 41273 4 isa_complete \N 41274 5 0000167 \N 41275 3 9561267 \N 41276 5 0015762 \N 41277 5 0051211 \N 41278 5 0031441 \N 41279 5 0060475 \N 41280 5 0010064 \N 41281 5 2000296 \N 41282 5 0014006 \N 41283 5 0030439 \N 41284 4 mcc \N 41285 5 0043162 \N 41286 3 11511343 \N 41287 5 0023018 \N 41288 4 mtg_signal \N 41289 5 0035863 \N 41290 88 28807 \N 41291 5 0001838 \N 41292 86 0824072820 \N 41293 5 0030436 \N 41294 3 9529886 \N 41295 5 0051351 \N 41296 5 0017003 \N 41297 5 0072627 \N 41298 94 //www.copewithcytokines.de/cope.cgi?key=interleukins \N 41299 5 0045822 \N 41300 5 0055115 \N 41301 5 0071840 \N 41302 5 0002485 \N 41303 3 14647477 \N 41304 3 15771591 \N 41305 5 0035387 \N 41306 5 0035109 \N 41307 5 2001043 \N 41308 5 0044040 \N 41309 5 0060691 \N 41310 5 0001816 \N 41311 5 0034644 \N 41312 5 0031553 \N 41313 5 0042848 \N 41314 5 0033383 \N 41315 87 PWY-5122 \N 41316 5 0070918 \N 41317 3 19239886 \N 41318 5 0033483 \N 41319 5 0042078 \N 41320 5 0048131 \N 41321 3 2279698 \N 41322 5 0007030 \N 41323 5 0045576 \N 41324 5 0032460 \N 41325 5 0006836 \N 41326 5 2000441 \N 41327 5 0010431 \N 41328 3 16096971 \N 41329 5 0042376 \N 41330 5 0048577 \N 41331 86 0582015952 \N 41332 86 0697037754 \N 41333 86 0709408862 \N 41334 5 0071973 \N 41335 5 0046011 \N 41336 3 12538512 \N 41337 5 0035135 \N 41338 5 0019586 \N 41339 5 0033325 \N 41340 87 PWY-3385 \N 41341 5 0035283 \N 41342 5 0052217 \N 41343 5 0043011 \N 41344 91 0000782 \N 41345 5 0085016 \N 41346 5 0035896 \N 41347 4 fj \N 41348 5 2000347 \N 41349 5 0019664 \N 41350 87 FERMENTATION-PWY \N 41351 5 0080134 \N 41352 4 dhl \N 41353 5 0009061 \N 41354 86 0140513590 \N 41355 5 0046227 \N 41356 5 0001775 \N 41357 5 0048090 \N 41358 5 0052423 \N 41359 5 0072469 \N 41360 5 0009701 \N 41361 5 0070512 \N 41362 5 0010140 \N 41363 5 0052403 \N 41364 5 0051123 \N 41365 4 txnOH \N 41366 3 10882737 \N 41367 3 15020047 \N 41368 5 0033561 \N 41369 5 0043683 \N 41370 4 ml \N 41371 5 0071158 \N 41372 5 0019345 \N 41373 5 0009698 \N 41374 5 0048530 \N 41375 5 0032717 \N 41376 5 0000090 \N 41377 5 0006958 \N 41378 5 0044064 \N 41379 98 tk \N 41380 5 0085003 \N 41381 5 0045427 \N 41382 89 AA0325 \N 41383 5 0021919 \N 41384 3 12593981 \N 41385 5 0006941 \N 41386 5 0007077 \N 41387 5 0007070 \N 41388 5 0045957 \N 41389 5 0018989 \N 41390 5 0010409 \N 41391 5 0035674 \N 41392 5 0033048 \N 41393 5 2000854 \N 41394 5 0019452 \N 41395 5 0009185 \N 41396 5 0039523 \N 41397 5 0072691 \N 41398 3 10888871 \N 41399 5 0050709 \N 41400 5 0052283 \N 41401 5 0080180 \N 41402 5 0090081 \N 41403 5 0006512 \N 41404 3 11917093 \N 41405 5 0019854 \N 41406 88 38290 \N 41407 5 0010164 \N 41408 5 0045908 \N 41409 5 0009306 \N 41410 5 0045166 \N 41411 5 0045731 \N 41412 5 0030704 \N 41413 5 0048746 \N 41414 4 lm \N 41415 5 0042265 \N 41416 5 0034368 \N 41417 5 0003113 \N 41418 5 0015733 \N 41419 5 0016319 \N 41420 3 8790424 \N 41421 5 0010056 \N 41422 5 0018390 \N 41423 89 AA0072 \N 41424 5 0071485 \N 41425 5 0034435 \N 41426 4 pde \N 41427 5 0035122 \N 41428 5 0017000 \N 41429 5 0009753 \N 41430 5 0032710 \N 41431 5 0002314 \N 41432 5 0060934 \N 41433 5 0007268 \N 41434 99 D009435 \N 41435 5 0018872 \N 41436 94 //umbbd.ahc.umn.edu/ara/ara_map.html \N 41437 97 ara \N 41438 5 0072298 \N 41439 5 0030449 \N 41440 5 0006520 \N 41441 5 0006519 \N 41442 88 33709 \N 41443 5 0001831 \N 41444 86 0124020607 \N 41445 86 0198542771 \N 41446 5 0031951 \N 41447 5 0072167 \N 41448 5 0061292 \N 41449 5 0001919 \N 41450 5 0002866 \N 41451 5 0002508 \N 41452 5 0050846 \N 41453 86 0815108893 \N 41454 5 0002884 \N 41455 5 0009828 \N 41456 4 lr \N 41457 5 0051624 \N 41458 5 0045681 \N 41459 5 0050916 \N 41460 5 0019219 \N 41461 5 0060260 \N 41462 5 0060038 \N 41463 4 rph \N 41464 3 11161571 \N 41465 5 2000505 \N 41466 5 0022608 \N 41467 5 0035455 \N 41468 3 11356686 \N 41469 5 0042461 \N 41470 5 0046531 \N 41471 5 0009725 \N 41472 5 0014848 \N 41473 100 0000325 \N 41474 101 A05.810 \N 41475 5 2000965 \N 41476 5 0051387 \N 41477 5 0071927 \N 41478 3 15355245 \N 41479 5 0051279 \N 41480 5 0072111 \N 41481 5 0048598 \N 41482 5 0048828 \N 41483 5 0052248 \N 41484 5 0052459 \N 41485 5 0051534 \N 41486 5 0010031 \N 41487 4 mtg_MIT_16mar07 \N 41488 86 0192801023 \N 41489 5 0010948 \N 41490 5 0048275 \N 41491 3 12883043 \N 41492 89 AA0354 \N 41493 5 0051198 \N 41494 5 0061338 \N 41495 5 0010481 \N 41496 3 17450124 \N 41497 5 0033638 \N 41498 5 0005997 \N 41499 86 0198547684 \N 41500 5 0034724 \N 41501 3 17510629 \N 41502 5 0034403 \N 41503 3 9430647 \N 41504 5 0034551 \N 41505 5 0060333 \N 41506 5 0050715 \N 41507 5 0048713 \N 41508 4 vp \N 41509 3 15139015 \N 41510 5 0051808 \N 41511 5 0042670 \N 41512 5 0007195 \N 41513 5 0090015 \N 41514 5 0006529 \N 41515 5 0018272 \N 41516 89 AA0119 \N 41517 5 0021705 \N 41518 5 0000067 \N 41519 5 0009083 \N 41520 5 0001116 \N 41521 5 0070202 \N 41522 5 0070957 \N 41523 5 0061272 \N 41524 5 0042095 \N 41525 5 0070589 \N 41526 5 0000394 \N 41527 86 0879695897 \N 41528 5 2000135 \N 41529 5 0032198 \N 41530 4 jp \N 41531 86 1555812090 \N 41532 5 0006408 \N 41533 5 0048700 \N 41534 4 ki \N 41535 5 0048468 \N 41536 5 0046721 \N 41537 5 0003006 \N 41538 5 0048315 \N 41539 86 0963117211 \N 41540 3 2524423 \N 41541 5 0071907 \N 41542 4 cvs \N 41543 5 0006340 \N 41544 5 2000496 \N 41545 5 0006918 \N 41546 5 0000910 \N 41547 5 0007104 \N 41548 5 0016288 \N 41549 5 0032979 \N 41550 3 12880202 \N 41551 3 15473843 \N 41552 5 0048359 \N 41553 5 0070534 \N 41554 3 15556404 \N 41555 5 0003164 \N 41556 5 0030451 \N 41557 5 0051091 \N 41558 5 0009423 \N 41559 5 0060530 \N 41560 3 18977204 \N 41561 5 0008272 \N 41562 5 0006870 \N 41563 5 2000897 \N 41564 5 0006935 \N 41565 5 0042521 \N 41566 3 11426647 \N 41567 5 0071313 \N 41568 5 0007080 \N 41569 5 0046546 \N 41570 5 0055094 \N 41571 5 0060274 \N 41572 5 0017179 \N 41573 5 0045866 \N 41574 5 0032621 \N 41575 5 0002443 \N 41576 5 0019723 \N 41577 5 0042087 \N 41578 5 0060295 \N 41579 5 0031134 \N 41580 3 15309047 \N 41581 5 0034488 \N 41582 5 0035147 \N 41583 3 14570584 \N 41584 5 0072209 \N 41585 5 0003156 \N 41586 5 0016185 \N 41587 3 10099709 \N 41588 5 0010464 \N 41589 5 0097048 \N 41590 91 0000451 \N 41591 3 15059845 \N 41592 5 0052002 \N 41593 5 0072259 \N 41594 5 0009805 \N 41595 4 yl \N 41596 5 0048392 \N 41597 5 0035787 \N 41598 5 0032354 \N 41599 5 0042059 \N 41600 5 0021589 \N 41601 5 0031556 \N 41602 86 0198542682 \N 41603 5 2000581 \N 41604 5 0048338 \N 41605 5 0042437 \N 41606 5 0032493 \N 41607 3 12077222 \N 41608 5 0010252 \N 41609 94 //diss-epsilon.slu.se/archive/00000215/ \N 41610 5 0007502 \N 41611 5 0071610 \N 41612 4 rv \N 41613 5 0043272 \N 41614 5 0071236 \N 41615 5 0019987 \N 41616 5 2000834 \N 41617 5 0060025 \N 41618 5 0048398 \N 41619 5 0046123 \N 41620 5 0019247 \N 41621 3 16166538 \N 41622 5 0071645 \N 41623 5 0072060 \N 41624 5 0006874 \N 41625 4 ceb \N 41626 5 0042946 \N 41627 5 0046169 \N 41628 5 0050686 \N 41629 5 0012502 \N 41630 5 0012503 \N 41631 5 0006045 \N 41632 5 0042671 \N 41633 5 0032343 \N 41634 3 16527843 \N 41635 5 0046697 \N 41636 3 11133685 \N 41637 5 0045354 \N 41638 5 0042098 \N 41639 5 0042111 \N 41640 5 0061030 \N 41641 5 0060592 \N 41642 3 16168142 \N 41643 3 17120154 \N 41644 5 0065009 \N 41645 5 0021971 \N 41646 3 9878731 \N 41647 5 0070926 \N 41648 5 0030003 \N 41649 5 2000272 \N 41650 5 0070624 \N 41651 5 0051789 \N 41652 5 0052473 \N 41653 5 0030394 \N 41654 5 0008314 \N 41655 5 0070162 \N 41656 5 2000706 \N 41657 5 0002070 \N 41658 5 0072238 \N 41659 5 0048754 \N 41660 5 0009164 \N 41661 5 0008356 \N 41662 3 11672519 \N 41663 5 0014050 \N 41664 5 0003363 \N 41665 5 0048804 \N 41666 4 sensu \N 41667 5 0000963 \N 41668 5 0032876 \N 41669 5 0001183 \N 41670 5 0031572 \N 41671 5 0046313 \N 41672 5 0046578 \N 41673 5 0046156 \N 41674 5 0035037 \N 41675 3 9630751 \N 41676 5 0035268 \N 41677 5 0015858 \N 41678 5 0071334 \N 41679 5 0010238 \N 41680 5 0002426 \N 41681 5 0043277 \N 41682 4 rk \N 41683 3 14685684 \N 41684 5 0042207 \N 41685 5 0048863 \N 41686 91 0000034 \N 41687 5 0042200 \N 41688 94 //umbbd.ahc.umn.edu/cya/cya_map.html \N 41689 97 cya \N 41690 5 0006989 \N 41691 5 0032485 \N 41692 5 0051202 \N 41693 3 11500553 \N 41694 5 0007071 \N 41695 5 0052449 \N 41696 5 0032467 \N 41697 5 0034109 \N 41698 5 0002544 \N 41699 5 0051395 \N 41700 5 0010455 \N 41701 5 0045005 \N 41702 5 0018904 \N 41703 5 0060567 \N 41704 5 0009793 \N 41705 5 0050755 \N 41706 5 0072325 \N 41707 86 087969307X \N 41708 3 11236714 \N 41709 5 0048845 \N 41710 3 16740480 \N 41711 5 0090259 \N 41712 5 0019523 \N 41713 5 0003350 \N 41714 3 17638577 \N 41715 5 0051708 \N 41716 5 0072381 \N 41717 5 0033498 \N 41718 87 GALDEG-PWY \N 41719 5 0052256 \N 41720 5 0006693 \N 41721 5 0000024 \N 41722 5 0048003 \N 41723 3 10375559 \N 41724 3 15928678 \N 41725 3 15928680 \N 41726 5 0072023 \N 41727 5 0072026 \N 41728 5 0010085 \N 41729 5 0035335 \N 41730 5 0071421 \N 41731 5 2000663 \N 41732 5 0007158 \N 41733 5 0015972 \N 41734 5 0060964 \N 41735 5 2000510 \N 41736 5 0046928 \N 41737 5 0045754 \N 41738 5 0040014 \N 41739 4 ems \N 41740 5 0035965 \N 41741 3 19244244 \N 41742 5 0032817 \N 41743 5 0070683 \N 41744 5 0045051 \N 41745 86 0716731363 \N 41746 5 2000519 \N 41747 5 0032970 \N 41748 5 0009823 \N 41749 5 0044129 \N 41750 5 0046349 \N 41751 88 28963 \N 41752 5 0046220 \N 41753 88 16227 \N 41754 5 0000379 \N 41755 5 0031270 \N 41756 4 pg \N 41757 5 0001303 \N 41758 3 9891807 \N 41759 5 0019474 \N 41760 5 0075257 \N 41761 5 0033330 \N 41762 88 30200 \N 41763 87 PWY-5320 \N 41764 5 0030325 \N 41765 5 0046233 \N 41766 94 //chemfinder.cambridgesoft.com/ \N 41767 5 0002487 \N 41768 3 10631943 \N 41769 5 0071845 \N 41770 5 0043413 \N 41771 5 0072183 \N 41772 5 0070899 \N 41773 5 0070757 \N 41774 5 0071824 \N 41775 5 0042691 \N 41776 5 0033993 \N 41777 5 0001505 \N 41778 5 0034124 \N 41779 3 16551253 \N 41780 3 17328678 \N 41781 5 0046140 \N 41782 5 0048229 \N 41783 102 0009004 \N 41784 5 0070633 \N 41785 5 0072397 \N 41786 5 0046824 \N 41787 5 0009554 \N 41788 4 mtg_plant \N 41789 5 0030037 \N 41790 5 0044008 \N 41791 5 0090189 \N 41792 5 0052151 \N 41793 5 0033669 \N 41794 5 0042640 \N 41795 3 12230507 \N 41796 5 2000611 \N 41797 5 2000914 \N 41798 5 0010604 \N 41799 5 0043639 \N 41800 5 2000109 \N 41801 5 0021863 \N 41802 5 0034234 \N 41803 5 0002683 \N 41804 5 0010260 \N 41805 5 0010261 \N 41806 5 2000627 \N 41807 5 0033076 \N 41808 94 //www.life.uiuc.edu/ib/425/lecture32.html \N 41809 5 0009207 \N 41810 5 0050884 \N 41811 5 0052709 \N 41812 88 15781 \N 41813 103 C05575 \N 41814 5 0006994 \N 41815 3 12923525 \N 41816 5 0039503 \N 41817 5 0002125 \N 41818 4 hjd \N 41819 5 0042706 \N 41820 5 0034052 \N 41821 5 0051134 \N 41822 3 12154375 \N 41823 3 9133426 \N 41824 5 0061390 \N 41825 5 0015911 \N 41826 5 0048609 \N 41827 5 0032410 \N 41828 5 0006433 \N 41829 86 0716730510 \N 41830 5 0007119 \N 41831 5 0072337 \N 41832 88 25359 \N 41833 5 0002634 \N 41834 5 0018205 \N 41835 5 0051686 \N 41836 5 0010271 \N 41837 3 16361392 \N 41838 5 0075083 \N 41839 5 0042546 \N 41840 5 0072420 \N 41841 5 0090236 \N 41842 5 2000029 \N 41843 5 0052275 \N 41844 5 0009904 \N 41845 3 11978863 \N 41846 5 0000189 \N 41847 5 2000065 \N 41848 5 0031549 \N 41849 5 0034130 \N 41850 5 0009989 \N 41851 5 0035634 \N 41852 88 26776 \N 41853 94 //en.wikipedia.org/wiki/Stilbenoid \N 41854 5 2001055 \N 41855 5 0042993 \N 41856 5 0002677 \N 41857 5 0043306 \N 41858 5 0090165 \N 41859 5 0035806 \N 41860 5 0003187 \N 41861 5 2000984 \N 41862 5 0090209 \N 41863 5 0060785 \N 41864 5 0072565 \N 41865 3 16373184 \N 41866 5 0019487 \N 41867 5 0008377 \N 41868 5 0009934 \N 41869 5 0050762 \N 41870 5 0071286 \N 41871 5 0008053 \N 41872 3 11038192 \N 41873 5 0045696 \N 41874 5 0035110 \N 41875 86 0198612001 \N 41876 5 0048232 \N 41877 5 0030829 \N 41878 5 0051967 \N 41879 5 0080169 \N 41880 3 20059736 \N 41881 5 0060403 \N 41882 5 0052186 \N 41883 5 2000578 \N 41884 5 0000451 \N 41885 86 1555811337 \N 41886 5 0060603 \N 41887 5 0048735 \N 41888 5 0035987 \N 41889 91 0000223 \N 41890 3 17624332 \N 41891 5 0014897 \N 41892 5 0015969 \N 41893 5 0052546 \N 41894 5 0048941 \N 41895 5 0048708 \N 41896 5 0048344 \N 41897 5 0080152 \N 41898 3 17031544 \N 41899 5 0002392 \N 41900 5 0006538 \N 41901 5 0019459 \N 41902 5 0048797 \N 41903 5 0040037 \N 41904 5 0010873 \N 41905 5 0072437 \N 41906 5 2000461 \N 41907 5 0031339 \N 41908 5 0044340 \N 41909 5 0043497 \N 41910 5 0048091 \N 41911 5 0007548 \N 41912 5 0055005 \N 41913 5 0044034 \N 41914 5 0072193 \N 41915 5 0042775 \N 41916 5 0008635 \N 41917 3 14744432 \N 41918 104 Caspase \N 41919 5 0033523 \N 41920 5 0046746 \N 41921 86 0072370319 \N 41922 5 0016132 \N 41923 5 0051630 \N 41924 5 0031058 \N 41925 5 0035158 \N 41926 5 0032763 \N 41927 5 0045381 \N 41928 5 0032676 \N 41929 5 0048364 \N 41930 102 0009005 \N 41931 5 0001666 \N 41932 5 0043003 \N 41933 5 0035425 \N 41934 5 0007362 \N 42071 5 0006855 \N 41935 94 //fly.ebi.ac.uk/allied-data/lk/interactive-fly/aimain/1aahome.htm \N 41936 5 0052190 \N 41937 5 0007481 \N 41938 5 0034501 \N 41939 5 0072427 \N 41940 5 0031116 \N 41941 5 0007359 \N 41942 5 0018091 \N 41943 5 0018373 \N 41944 5 0019127 \N 41945 89 AA0196 \N 41946 5 0045888 \N 41947 5 0003412 \N 41948 5 0048650 \N 41949 5 0001720 \N 41950 3 12029131 \N 41951 3 12029132 \N 41952 3 12121639 \N 41953 5 0048646 \N 41954 5 0035679 \N 41955 86 0387968377 \N 41956 5 0035406 \N 41957 5 0033189 \N 41958 5 0070371 \N 41959 86 0121245462 \N 41960 86 0896039986 \N 41961 5 0043474 \N 41962 5 0075073 \N 41963 5 0050711 \N 41964 5 0019550 \N 41965 5 0006572 \N 41966 5 0071705 \N 41967 88 51143 \N 41968 5 0030026 \N 41969 5 0071581 \N 41970 5 0052118 \N 41971 5 0050964 \N 41972 5 0048815 \N 41973 86 0140512888 \N 41974 5 0006698 \N 41975 5 0042989 \N 41976 5 0048821 \N 41977 5 0045374 \N 41978 5 0090285 \N 41979 5 0006135 \N 41980 5 0052428 \N 41981 5 0031542 \N 41982 5 0007209 \N 41983 5 0032682 \N 41984 5 0023054 \N 41985 5 0009597 \N 41986 5 0061225 \N 41987 5 0003038 \N 41988 5 0009373 \N 41989 5 0002644 \N 41990 5 0048452 \N 41991 5 0048420 \N 41992 5 0035611 \N 41993 3 21074048 \N 41994 5 2000802 \N 41995 5 0018067 \N 41996 89 AA0146 \N 41997 5 0070077 \N 41998 5 2000257 \N 41999 5 0002667 \N 42000 5 0070950 \N 42001 5 2000407 \N 42002 5 0010106 \N 42003 4 mg \N 42004 5 0023068 \N 42005 5 0010523 \N 42006 5 0071503 \N 42007 5 0016108 \N 42008 5 0003381 \N 42009 5 0019551 \N 42010 5 0032366 \N 42011 5 2000030 \N 42012 5 0048837 \N 42013 105 2530 \N 42014 5 0032438 \N 42015 5 0030847 \N 42016 3 12944462 \N 42017 3 18679429 \N 42018 5 0060042 \N 42019 5 2000010 \N 42020 5 0034626 \N 42021 5 0071695 \N 42022 5 0046535 \N 42023 3 11894099 \N 42024 5 0061381 \N 42025 5 0072660 \N 42026 5 0060391 \N 42027 5 2000773 \N 42028 5 0045771 \N 42029 5 0003133 \N 42030 5 0045786 \N 42031 5 0030805 \N 42032 5 0090242 \N 42033 5 0061365 \N 42034 5 0032915 \N 42035 5 0018442 \N 42036 5 0042965 \N 42037 5 0002016 \N 42038 86 0721643949 \N 42039 5 0045635 \N 42040 5 0021524 \N 42041 3 11262869 \N 42042 5 0019589 \N 42043 87 GOLPDLCAT-PWY \N 42044 5 0048354 \N 42045 5 0033337 \N 42046 5 0043029 \N 42047 5 0019084 \N 42048 86 0781702534 \N 42049 5 0035585 \N 42050 3 20192754 \N 42051 5 0022620 \N 42052 5 0007498 \N 42053 5 0016140 \N 42054 5 0060864 \N 42055 5 0000132 \N 42056 5 0030607 \N 42057 5 0030609 \N 42058 5 0071629 \N 42059 3 20080635 \N 42060 5 0031051 \N 42061 3 15196465 \N 42062 5 0052021 \N 42063 5 0072124 \N 42064 5 0046147 \N 42065 88 15372 \N 42066 5 0019852 \N 42067 5 0014727 \N 42068 5 0042785 \N 42069 5 0046477 \N 42070 5 0021695 \N 42072 5 0032854 \N 42073 5 0046760 \N 42074 5 0071451 \N 42075 5 2000037 \N 42076 5 0001949 \N 42077 3 15737203 \N 42078 5 0007110 \N 42079 5 0031174 \N 42080 3 15581873 \N 42081 5 0003397 \N 42082 5 0032889 \N 42083 5 0072310 \N 42084 5 0008364 \N 42085 5 0044080 \N 42086 5 0030535 \N 42087 5 0043936 \N 42088 5 0060084 \N 42089 3 15827347 \N 42090 5 0030300 \N 42091 3 11099417 \N 42092 5 0015861 \N 42093 5 0035522 \N 42094 3 18226187 \N 42095 3 20436459 \N 42096 5 0007571 \N 42097 5 0001582 \N 42098 5 0002183 \N 42099 5 0045662 \N 42100 5 0051458 \N 42101 3 11027914 \N 42102 5 0001983 \N 42103 5 0010680 \N 42104 5 0043987 \N 42105 5 0043986 \N 42106 5 2000867 \N 42107 5 0046058 \N 42108 5 0001975 \N 42109 88 2679 \N 42110 5 0071722 \N 42111 3 11313333 \N 42112 3 20221439 \N 42113 5 0046139 \N 42114 5 0009785 \N 42115 5 0090324 \N 42116 5 0043241 \N 42117 5 0010564 \N 42118 5 0051238 \N 42119 5 0001867 \N 42120 5 0035212 \N 42121 3 1116643 \N 42122 3 15066286 \N 42123 5 0052131 \N 42124 5 2000205 \N 42125 5 2000027 \N 42126 5 0033506 \N 42127 87 PWY-1187 \N 42128 5 0060251 \N 42129 5 0090202 \N 42130 3 19923429 \N 42131 3 19933150 \N 42132 5 0034465 \N 42133 5 0060080 \N 42134 5 0035946 \N 42135 4 ans \N 42136 3 19864255 \N 42137 5 0070345 \N 42138 5 0000085 \N 42139 5 0060504 \N 42140 5 0075217 \N 42141 5 0010549 \N 42142 5 0060875 \N 42143 5 0001555 \N 42144 94 //ovary.stanford.edu \N 42145 5 0090066 \N 42146 5 0090252 \N 42147 5 0003383 \N 42148 5 0048153 \N 42149 5 0051975 \N 42150 87 LYSINE-AMINOAD-PWY \N 42151 5 0072430 \N 42152 5 0045345 \N 42153 5 0034970 \N 42154 5 0010923 \N 42155 5 2000523 \N 42156 5 0031640 \N 42157 5 0001908 \N 42158 5 0015673 \N 42159 5 0007395 \N 42160 3 12147138 \N 42161 5 0046947 \N 42162 5 0002780 \N 42163 3 15638771 \N 42164 5 0050863 \N 42165 5 0000458 \N 42166 5 0055063 \N 42167 5 0080174 \N 42168 5 0046618 \N 42169 5 0040027 \N 42170 5 0071607 \N 42171 5 0045785 \N 42172 5 0016558 \N 42173 3 11687502 \N 42174 3 11988772 \N 42175 5 0010606 \N 42176 5 0032957 \N 42177 88 24540 \N 42178 88 24848 \N 42179 5 0007475 \N 42180 5 0032749 \N 42181 5 0010376 \N 42182 3 17259259 \N 42183 5 2000754 \N 42184 5 0052100 \N 42185 5 0072405 \N 42186 5 0001885 \N 42187 5 0007006 \N 42188 5 0010713 \N 42189 5 0006361 \N 42190 5 0046418 \N 42191 5 0043496 \N 42192 5 0051085 \N 42193 5 0045804 \N 42194 5 0080159 \N 42195 5 0016544 \N 42196 3 11092827 \N 42197 5 0006398 \N 42198 5 2000544 \N 42199 5 0006653 \N 42200 88 16110 \N 42201 5 0002566 \N 42202 3 16102575 \N 42203 5 0016320 \N 42204 5 0072636 \N 42205 5 0001958 \N 42206 86 0878932437 \N 42207 5 0006489 \N 42208 5 0070870 \N 42209 5 0033235 \N 42210 5 0075185 \N 42211 5 0035227 \N 42212 5 0075047 \N 42213 5 0072271 \N 42214 5 0006741 \N 42215 5 0038005 \N 42216 3 11672524 \N 42217 3 11672525 \N 42218 5 0035270 \N 42219 94 //encyclopedia.thefreedictionary.com/Endocrine+sytem \N 42220 5 0070329 \N 42221 3 14594807 \N 42222 5 0035475 \N 42223 3 19815777 \N 42224 5 0030307 \N 42225 5 0021956 \N 42226 5 0046091 \N 42227 5 0061015 \N 42228 5 0033015 \N 42229 88 26932 \N 42230 5 0035762 \N 42231 5 0002696 \N 42232 5 2000384 \N 42233 5 0050671 \N 42234 5 0046709 \N 42235 5 0001322 \N 42236 5 0046077 \N 42237 5 0048325 \N 42238 5 0045581 \N 42239 5 0010646 \N 42240 5 0010099 \N 42241 5 0002235 \N 42242 3 15226511 \N 42243 3 7765470 \N 42244 5 0017156 \N 42245 5 0030824 \N 42246 5 0031534 \N 42247 5 0030637 \N 42248 5 0035576 \N 42249 3 16979153 \N 42250 3 19909807 \N 42251 5 0052458 \N 42252 5 0010027 \N 42253 5 0042248 \N 42254 5 0019683 \N 42255 5 2000565 \N 42256 5 0034508 \N 42257 5 0007415 \N 42258 5 0010155 \N 42259 5 0060425 \N 42260 5 0003390 \N 42261 5 0014841 \N 42262 3 16607119 \N 42263 5 0018303 \N 42264 89 AA0285 \N 42265 5 0060281 \N 42266 3 2394318 \N 42267 5 0071834 \N 42268 5 0018084 \N 42269 89 AA0186 \N 42270 5 0045361 \N 42271 5 0010813 \N 42272 5 0035906 \N 42273 100 0002571 \N 42274 106 0001514 \N 42275 104 Descending_aorta \N 42276 5 0042955 \N 42277 94 //www.mercksource.com/ \N 42278 5 0031154 \N 42279 86 0521583640 \N 42280 5 0019227 \N 42281 5 0061377 \N 42282 5 0022610 \N 42283 5 0045315 \N 42284 5 0075152 \N 42285 5 0030712 \N 42286 3 10822261 \N 42287 5 0002270 \N 42288 3 15990333 \N 42289 3 16174109 \N 42290 5 2000054 \N 42291 5 0051625 \N 42292 5 0031288 \N 42293 105 5048 \N 42294 4 kp \N 42295 5 0021811 \N 42296 5 0000449 \N 42297 5 0010383 \N 42298 5 0051665 \N 42299 3 16645198 \N 42300 5 2000796 \N 42301 3 11585794 \N 42302 5 0060370 \N 42303 5 0032892 \N 42304 5 0006301 \N 42305 5 0006748 \N 42306 88 17460 \N 42307 5 0034142 \N 42308 5 0052034 \N 42309 5 0007385 \N 42310 5 0051447 \N 42311 5 0018158 \N 42312 5 0009050 \N 42313 5 0030456 \N 42314 5 0002874 \N 42315 5 0003052 \N 42316 5 0048510 \N 42317 3 8974397 \N 42318 5 2000791 \N 42319 3 21513708 \N 42320 5 0015746 \N 42321 5 0001177 \N 42322 5 0060239 \N 42323 5 0010221 \N 42324 5 0031649 \N 42325 5 0030579 \N 42326 5 0002327 \N 42327 3 16551251 \N 42328 5 0042194 \N 42329 5 0002623 \N 42330 5 0070846 \N 42331 5 0001711 \N 42332 5 0050999 \N 42333 5 0060059 \N 42334 5 0002775 \N 42335 5 0046213 \N 42336 5 0033482 \N 42337 5 0021917 \N 42338 5 0009088 \N 42339 5 0052364 \N 42340 5 0009743 \N 42341 5 0075163 \N 42342 5 0032056 \N 42343 5 0033033 \N 42344 5 0042711 \N 42345 5 0060853 \N 42346 5 0052644 \N 42347 88 16900 \N 42348 5 0000076 \N 42349 4 rn \N 42350 3 11728327 \N 42351 3 12537518 \N 42352 5 0051816 \N 42353 5 0009562 \N 42354 5 0061167 \N 42355 5 0003080 \N 42356 5 0034965 \N 42357 5 0061320 \N 42358 91 0000474 \N 42359 3 19783135 \N 42360 5 0045586 \N 42361 5 0050868 \N 42362 5 0018968 \N 42363 97 thf \N 42364 5 0090249 \N 42365 5 0007184 \N 42366 5 0042004 \N 42367 5 0002044 \N 42368 3 16391003 \N 42369 5 0046008 \N 42370 5 0043370 \N 42371 5 0043066 \N 42372 5 0018029 \N 42373 89 AA0077 \N 42374 5 0045753 \N 42375 5 0061107 \N 42376 5 0044238 \N 42377 94 //www.metacyc.org \N 42378 5 0009588 \N 42379 5 0003401 \N 42380 5 0006080 \N 42381 5 0021671 \N 42382 5 0032313 \N 42383 5 0051917 \N 42384 5 0075109 \N 42385 5 2000041 \N 42386 5 0048146 \N 42387 5 0002099 \N 42388 86 155581073X \N 42389 5 0002906 \N 42390 5 2000679 \N 42391 5 0003347 \N 42392 3 18722343 \N 42393 5 0019288 \N 42394 87 NONMEVIPP-PWY \N 42395 5 0010823 \N 42396 5 0050767 \N 42397 5 0032665 \N 42398 5 0070142 \N 42399 5 0046939 \N 42400 5 0019337 \N 42401 5 0002835 \N 42402 5 0060427 \N 42403 5 0031449 \N 42404 5 0015074 \N 42405 5 0075201 \N 42406 5 0051847 \N 42407 94 //www.brown.edu/Courses/Bio_160/Projects1999/ies/ces.html \N 42408 5 0072134 \N 42409 5 0035093 \N 42410 3 11735001 \N 42411 5 0010735 \N 42412 5 0033274 \N 42413 5 0050934 \N 42414 3 11858836 \N 42415 5 0052198 \N 42416 5 0030721 \N 42417 3 11131529 \N 42418 5 0002734 \N 42419 5 0061122 \N 42420 5 0075068 \N 42421 5 0002726 \N 42422 5 0006314 \N 42423 3 10487208 \N 42424 5 0052263 \N 42425 5 0040034 \N 42426 3 9442909 \N 42427 5 0031000 \N 42428 88 27732 \N 42429 5 0075321 \N 42430 5 0072440 \N 42431 5 0000168 \N 42432 5 0007233 \N 42433 5 2000304 \N 42434 5 0050748 \N 42435 5 0075107 \N 42436 5 0090351 \N 42437 102 0007131 \N 42438 5 0042388 \N 42439 5 0044339 \N 42440 5 0048599 \N 42441 5 0060413 \N 42442 5 0003287 \N 42443 5 0071211 \N 42444 5 0051631 \N 42445 5 0052143 \N 42446 5 0071170 \N 42447 3 12009298 \N 42448 3 18723894 \N 42449 5 0061194 \N 42450 5 0003334 \N 42451 5 0072248 \N 42452 5 0043921 \N 42453 5 0035416 \N 42454 5 0007052 \N 42455 5 0046134 \N 42456 5 0033962 \N 42457 3 17429074 \N 42458 5 0002811 \N 42459 5 0032594 \N 42460 5 0010493 \N 42461 3 17630273 \N 42462 5 2000986 \N 42463 5 2000391 \N 42464 5 0019255 \N 42465 5 0006008 \N 42466 5 0031930 \N 42467 3 15068799 \N 42468 5 0019332 \N 42469 87 P282-PWY \N 42470 5 0003026 \N 42471 5 0075231 \N 42472 5 0010784 \N 42473 5 0014816 \N 42474 5 0042178 \N 42475 5 0007345 \N 42476 86 0070524300 \N 42477 5 0014721 \N 42478 5 0009248 \N 42479 5 0002802 \N 42480 5 2000081 \N 42481 5 0033306 \N 42482 88 17327 \N 42483 5 0018909 \N 42484 97 dds \N 42485 5 0075097 \N 42486 5 0042819 \N 42487 94 //www.indstate.edu/thcme/mwking/vitamins.html \N 42488 5 0006726 \N 42489 5 0044400 \N 42490 5 0006031 \N 42491 5 0001124 \N 42492 3 18280161 \N 42493 5 0051844 \N 42494 5 0007599 \N 42495 5 0018940 \N 42496 5 0051876 \N 42497 5 0000722 \N 42498 3 11850777 \N 42499 5 0051353 \N 42500 5 0009391 \N 42501 5 0019371 \N 42502 3 19854273 \N 42503 5 0072306 \N 42504 5 0051504 \N 42505 87 PWY-2981 \N 42506 5 0052446 \N 42507 5 0034510 \N 42508 5 0015837 \N 42509 5 0097051 \N 42510 3 9388185 \N 42511 5 0035970 \N 42512 5 0061149 \N 42513 5 0002383 \N 42514 5 0002610 \N 42515 5 0043633 \N 42516 5 0051833 \N 42517 5 0019714 \N 42518 5 0070399 \N 42519 3 14665680 \N 42520 5 0007143 \N 42521 5 0046253 \N 42522 5 0090023 \N 42523 5 0032303 \N 42524 5 0090133 \N 42525 5 0006452 \N 42526 86 0195094425 \N 42527 5 0048264 \N 42528 5 0071326 \N 42529 5 0060542 \N 42530 5 0045597 \N 42531 5 0035790 \N 42532 3 10372961 \N 42533 5 0051150 \N 42534 91 0000192 \N 42535 5 0072452 \N 42536 5 0043968 \N 42537 5 0045940 \N 42538 5 0000911 \N 42539 5 0071370 \N 42540 5 0071507 \N 42541 5 0009816 \N 42542 5 0031146 \N 42543 3 15380083 \N 42544 5 0001680 \N 42545 5 0052022 \N 42546 5 0019307 \N 42547 5 0050948 \N 42548 5 0018879 \N 42549 5 0018312 \N 42550 89 AA0237 \N 42551 5 0071362 \N 42552 5 0071322 \N 42553 5 0048874 \N 42554 5 0042184 \N 42555 5 0051045 \N 42556 5 0021924 \N 42557 3 15157725 \N 42558 5 0048159 \N 42559 5 0042241 \N 42560 5 0015890 \N 42561 88 50383 \N 42562 5 0055001 \N 42563 91 0000187 \N 42564 5 0001514 \N 42565 89 AA0022 \N 42566 5 0071457 \N 42567 5 0032948 \N 42568 5 0018145 \N 42569 89 AA0246 \N 42570 5 0043975 \N 42571 5 0050654 \N 42572 5 0030193 \N 42573 5 0070586 \N 42574 3 19091770 \N 42575 5 0014874 \N 42576 5 0034619 \N 42577 5 0010453 \N 42578 5 0006849 \N 42579 5 0035308 \N 42580 5 0006308 \N 42581 5 0016256 \N 42582 86 0879695595 \N 42583 5 0048010 \N 42584 5 0051168 \N 42585 5 0034149 \N 42586 5 0003355 \N 42587 5 0045741 \N 42588 5 0060636 \N 42589 5 0051514 \N 42590 5 0010668 \N 42591 5 0010639 \N 42592 5 0009852 \N 42593 5 2000116 \N 42594 5 0046775 \N 42595 3 10859382 \N 42596 5 0072566 \N 42597 5 0051524 \N 42598 5 0035810 \N 42599 4 mtg_25march11 \N 42600 5 0000354 \N 42601 5 0000360 \N 42602 5 0000361 \N 42603 4 mtg_mpo \N 42604 5 0071277 \N 42605 5 0060877 \N 42606 5 0061368 \N 42607 5 0031538 \N 42608 5 0071109 \N 42609 96 61905 \N 42610 3 11484000 \N 42611 5 0002556 \N 42612 5 0009443 \N 42613 5 0075137 \N 42614 5 0018252 \N 42615 89 AA0184 \N 42616 5 0006991 \N 42617 5 0006627 \N 42618 3 12191769 \N 42619 5 0048161 \N 42620 5 0031505 \N 42621 5 0043062 \N 42622 5 0070431 \N 42623 3 17944960 \N 42624 3 18585455 \N 42625 5 0048553 \N 42626 4 ebc \N 42627 5 2000379 \N 42628 5 0050933 \N 42629 5 0060749 \N 42630 5 0000486 \N 42631 3 768488 \N 42632 5 0031066 \N 42633 5 0014730 \N 42634 5 0033173 \N 42635 3 15928679 \N 42636 5 0080003 \N 42637 3 18356490 \N 42638 5 0075159 \N 42639 5 0070570 \N 42640 5 0070973 \N 42641 5 0009622 \N 42642 5 0010930 \N 42643 5 0042495 \N 42644 3 12524386 \N 42645 3 2757794 \N 42646 5 0018178 \N 42647 89 AA0267 \N 42648 5 0061208 \N 42649 5 0015909 \N 42650 5 0019048 \N 42651 86 0781718325 \N 42652 5 0018259 \N 42653 89 AA0213 \N 42654 5 0060148 \N 42655 5 0035751 \N 42656 5 0006612 \N 42657 5 0015719 \N 42658 5 0042052 \N 42659 3 3076112 \N 42660 3 3937883 \N 42661 5 0010387 \N 42662 3 17307927 \N 42663 5 0032531 \N 42664 5 0035602 \N 42665 5 0044087 \N 42666 5 2000462 \N 42667 5 0043147 \N 42668 5 0011000 \N 42669 5 0006459 \N 42670 5 0009294 \N 42671 86 0716720094 \N 42672 104 Transformation_(genetics) \N 42673 5 0052464 \N 42674 5 0034184 \N 42675 5 0014062 \N 42676 5 0010477 \N 42677 3 17425719 \N 42678 5 0072670 \N 42679 3 21183954 \N 42680 5 0045710 \N 42681 5 0045986 \N 42682 5 0071959 \N 42683 3 1708436 \N 42684 5 0018188 \N 42685 89 AA0282 \N 42686 5 0014852 \N 42687 5 0014034 \N 42688 5 0009628 \N 42689 5 2000310 \N 42690 5 0001659 \N 42691 5 0001878 \N 42692 3 14707091 \N 42693 5 0048168 \N 42694 5 0030030 \N 42695 94 //www.cogsci.princeton.edu/~wn/ \N 42696 5 0048671 \N 42697 5 0019295 \N 42698 5 0072618 \N 42699 5 0018102 \N 42700 89 AA0215 \N 42701 5 0052527 \N 42702 5 0001923 \N 42703 5 0034772 \N 42704 5 0007352 \N 42705 5 0033511 \N 42706 88 15864 \N 42707 5 0045831 \N 42708 5 0061103 \N 42709 3 6243386 \N 42710 5 2000975 \N 42711 5 0048377 \N 42712 5 0010717 \N 42713 5 0031632 \N 42714 5 2000097 \N 42715 5 0052057 \N 42716 5 0042325 \N 42717 5 0052319 \N 42718 5 0003061 \N 42719 5 0033397 \N 42720 88 15333 \N 42721 5 2000573 \N 42722 5 0045582 \N 42723 5 0018955 \N 42724 94 //umbbd.ahc.umn.edu/pha/pha_map.html \N 42725 97 pha \N 42726 5 0035569 \N 42727 3 20668449 \N 42728 5 0001112 \N 42729 5 0090315 \N 42730 5 0051140 \N 42731 5 0044114 \N 42732 5 0007613 \N 42733 94 //www.onelook.com/ \N 42734 86 0582227089 \N 42735 5 0070249 \N 42736 86 0781765196 \N 42737 5 0071387 \N 42738 5 0070760 \N 42739 5 0046957 \N 42740 5 0046955 \N 42741 5 0045678 \N 42742 5 0090105 \N 42743 5 0001043 \N 42744 3 12381659 \N 42745 5 0010587 \N 42746 3 17993620 \N 42747 5 0046207 \N 42748 5 0070499 \N 42749 5 0009226 \N 42750 5 0032943 \N 42751 5 0016237 \N 42752 3 14679207 \N 42753 3 15798367 \N 42754 3 16973210 \N 42755 3 9566964 \N 42756 5 0003152 \N 42757 5 0043900 \N 42758 5 0060212 \N 42759 5 0007323 \N 42760 5 0007324 \N 42761 5 0007326 \N 42762 5 0046613 \N 42763 5 0010975 \N 42764 5 0031179 \N 42765 5 0042068 \N 42766 5 0007440 \N 42767 5 0032376 \N 42768 5 0006148 \N 42769 5 0044117 \N 42770 5 0009267 \N 42771 5 0010809 \N 42772 4 kmvs \N 42773 3 15489511 \N 42774 5 0060725 \N 42775 5 0061314 \N 42776 5 0007401 \N 42777 5 0002244 \N 42778 5 0045949 \N 42779 5 0072267 \N 42780 5 2000262 \N 42781 5 0061233 \N 42782 5 0048499 \N 42783 3 10620806 \N 42784 5 0060834 \N 42785 5 0021584 \N 42786 5 0046756 \N 42787 5 0006949 \N 42788 5 0002434 \N 42789 86 068340007X \N 42790 5 0021941 \N 42791 5 0009211 \N 42792 5 0051649 \N 42793 5 0006604 \N 42794 3 16371597 \N 42795 5 0006930 \N 42796 3 11944043 \N 42797 3 14657486 \N 42798 5 0002518 \N 42799 3 15122201 \N 42800 5 0022031 \N 42801 5 0006817 \N 42802 5 0016124 \N 42803 5 0032260 \N 42804 5 0048880 \N 42805 5 0033671 \N 42806 5 0061324 \N 42807 5 0018911 \N 42808 94 //www.speclab.com/compound/c120821.htm \N 42809 5 0060707 \N 42810 3 16269175 \N 42811 5 0033005 \N 42812 5 0032287 \N 42813 5 0035887 \N 42814 5 0051418 \N 42815 5 0051728 \N 42816 5 0042061 \N 42817 5 0022024 \N 42818 5 0007611 \N 42819 3 8938125 \N 42820 5 0040006 \N 42821 5 0075019 \N 42822 5 0048916 \N 42823 5 0006167 \N 42824 5 2000763 \N 42825 5 0042144 \N 42826 5 0042145 \N 42827 5 0051711 \N 42828 5 0060827 \N 42829 5 0045793 \N 42830 5 0070488 \N 42831 3 12972508 \N 42832 5 0021854 \N 42833 5 0035509 \N 42834 5 0051272 \N 42835 5 0006423 \N 42836 5 0046370 \N 42837 5 0009739 \N 42838 5 0048302 \N 42839 5 0045706 \N 42840 5 0071559 \N 42841 5 2000300 \N 42842 5 0042894 \N 42843 3 12543685 \N 42844 5 0034447 \N 42845 5 0035544 \N 42846 5 0010017 \N 42847 4 mtg_far_red \N 42848 5 0015943 \N 42849 5 0071765 \N 42850 5 0046742 \N 42851 5 0033633 \N 42852 5 0005987 \N 42853 5 0046455 \N 42854 5 0018167 \N 42855 89 AA0259 \N 42856 5 0030240 \N 42857 5 0010918 \N 42858 5 0035546 \N 42859 5 0030538 \N 42860 5 0006002 \N 42861 5 0010775 \N 42862 5 0010121 \N 42863 5 0045724 \N 42864 5 2000805 \N 42865 5 0035050 \N 42866 5 0097113 \N 42867 4 sjp \N 42868 3 12796785 \N 42869 5 0002376 \N 42870 5 0019447 \N 42871 5 0016198 \N 42872 3 10218152 \N 42873 5 0006055 \N 42874 5 0034263 \N 42875 5 0031413 \N 42876 107 0001420 \N 42877 5 0006896 \N 42878 5 0020012 \N 42879 4 mb \N 42880 5 0061211 \N 42881 5 0072101 \N 42882 5 0051057 \N 42883 5 0075079 \N 42884 5 0034441 \N 42885 5 2000269 \N 42886 5 0010044 \N 42887 5 0075011 \N 42888 5 0010185 \N 42889 5 0051459 \N 42890 5 0000968 \N 42891 5 0042855 \N 42892 88 4917 \N 42893 5 2000889 \N 42894 5 0030148 \N 42895 5 0035723 \N 42896 5 0071720 \N 42897 5 0021626 \N 42898 5 0072633 \N 42899 5 0008617 \N 42900 5 2000715 \N 42901 5 0050854 \N 42902 5 0030178 \N 42903 5 0045810 \N 42904 5 0035165 \N 42905 94 //sdb.bio.purdue.edu/fly/gene/serpent3.htm \N 42906 5 0043695 \N 42907 5 0060972 \N 42908 5 0000749 \N 42909 5 0007328 \N 42910 5 0030434 \N 42911 5 0006596 \N 42912 5 0019477 \N 42913 5 0018242 \N 42914 89 AA0154 \N 42915 5 0061060 \N 42916 5 0070389 \N 42917 5 0019932 \N 42918 5 0097036 \N 42919 88 15889 \N 42920 3 18441123 \N 42921 3 20823909 \N 42922 5 2000417 \N 42923 5 2000282 \N 42924 5 0031215 \N 42925 3 15132736 \N 42926 5 0018406 \N 42927 5 0032004 \N 42928 3 7947762 \N 42929 3 9450955 \N 42930 89 AA0217 \N 42931 5 0042843 \N 42932 5 0030494 \N 42933 5 0070152 \N 42934 5 0043006 \N 42935 5 0000921 \N 42936 5 0052412 \N 42937 5 2000658 \N 42938 5 0000050 \N 42939 5 0006594 \N 42940 5 0006871 \N 42941 5 0090262 \N 42942 5 0032110 \N 42943 5 0019422 \N 42944 87 P203-PWY \N 42945 5 0009078 \N 42946 5 0044151 \N 42947 5 0010374 \N 42948 5 0031342 \N 42949 5 0035772 \N 42950 5 0043418 \N 42951 5 0051488 \N 42952 3 10871297 \N 42953 5 0007590 \N 42954 5 0032244 \N 42955 5 0021745 \N 42956 5 0043648 \N 42957 5 0040018 \N 42958 5 0044407 \N 42959 5 0033664 \N 42960 5 0045905 \N 42961 5 0033029 \N 42962 5 0006242 \N 42963 5 0070472 \N 42964 5 0016202 \N 42965 5 0010112 \N 42966 5 0009408 \N 42967 5 0006951 \N 42968 5 0071396 \N 42969 5 0048692 \N 42970 5 0002841 \N 42971 5 0016998 \N 42972 5 0030858 \N 42973 5 0009749 \N 42974 5 0032903 \N 42975 5 2000217 \N 42976 5 0000920 \N 42977 5 0071497 \N 42978 5 0015713 \N 42979 5 0019316 \N 42980 88 17393 \N 42981 5 0000949 \N 42982 3 18281432 \N 42983 5 0035621 \N 42984 3 14685229 \N 42985 5 0072172 \N 42986 5 0021969 \N 42987 5 0046737 \N 42988 86 0781802976 \N 42989 5 2000858 \N 42990 5 0019498 \N 42991 87 P221-PWY \N 42992 5 0045189 \N 42993 94 //www.copewithcytokines.de \N 42994 5 0071570 \N 42995 5 0007425 \N 42996 5 0046846 \N 42997 5 0071879 \N 42998 5 0071712 \N 42999 3 14607247 \N 43000 3 19520858 \N 43001 5 0071577 \N 43002 5 0016334 \N 43003 5 0003083 \N 43004 5 0035048 \N 43005 5 0015721 \N 43006 3 12663868 \N 43007 3 14699511 \N 43008 5 0070257 \N 43009 5 0010101 \N 43010 5 0006864 \N 43011 5 2000105 \N 43012 5 0006881 \N 43013 5 0060221 \N 43014 5 0035344 \N 43015 88 17368 \N 43016 5 0001842 \N 43017 5 0009716 \N 43018 5 0010747 \N 43019 5 0000114 \N 43020 5 0042337 \N 43021 5 0090007 \N 43022 5 0021679 \N 43023 5 0070507 \N 43024 5 0014015 \N 43025 5 2001039 \N 43026 5 0007369 \N 43027 86 9780878933846 \N 43028 5 0060759 \N 43029 5 0002848 \N 43030 5 0010788 \N 43031 5 0060574 \N 43032 3 18824147 \N 43033 5 0034410 \N 43034 5 0015963 \N 43035 5 0009221 \N 43036 5 0060329 \N 43037 5 0042511 \N 43038 3 10918594 \N 43039 5 0001189 \N 43040 3 14969726 \N 43041 3 8057832 \N 43042 5 0039502 \N 43043 5 0090347 \N 43044 5 0031584 \N 43045 5 0090326 \N 43046 5 0051872 \N 43047 5 0052126 \N 43048 5 0001845 \N 43049 5 2000596 \N 43050 5 0010075 \N 43051 5 0090361 \N 43052 5 0032324 \N 43053 5 0048042 \N 43054 3 11932766 \N 43055 5 0034656 \N 43056 5 2000404 \N 43057 5 0042040 \N 43058 5 0060192 \N 43059 5 0046326 \N 43060 5 0010902 \N 43061 5 0052315 \N 43062 104 Phytoalexin \N 43063 5 0046247 \N 43064 5 0042873 \N 43065 5 0060859 \N 43066 5 0042218 \N 43067 5 0060786 \N 43068 5 0034355 \N 43069 3 12648681 \N 43070 5 0080055 \N 43071 3 19050168 \N 43072 5 0009647 \N 43073 94 //www.plantphys.net/article.php?ch=t&id=63 \N 43074 3 15012288 \N 43075 5 0075039 \N 43076 5 0009869 \N 43077 3 10375566 \N 43078 5 0021564 \N 43079 5 0003423 \N 43080 5 0003160 \N 43081 5 0097155 \N 43082 4 lb \N 43083 3 18403711 \N 43084 5 0030836 \N 43085 5 0030045 \N 43086 5 0021573 \N 43087 5 0060585 \N 43088 5 0002126 \N 43089 5 0045969 \N 43090 5 0048665 \N 43091 5 2000486 \N 43092 5 0060842 \N 43093 5 0048896 \N 43094 3 12062041 \N 43095 5 0035779 \N 43096 91 0000566 \N 43097 5 0015763 \N 43098 5 0007539 \N 43099 5 0008204 \N 43100 5 0021597 \N 43101 5 0043690 \N 43102 5 0043709 \N 43103 5 0043353 \N 43104 5 0021803 \N 43105 5 0006293 \N 43106 3 10197977 \N 43107 5 0018363 \N 43108 5 0019925 \N 43109 89 AA0280 \N 43110 5 0046645 \N 43111 5 0045359 \N 43112 5 0006617 \N 43113 5 0060095 \N 43114 4 dms \N 43115 5 0046262 \N 43116 5 0007134 \N 43117 5 0010569 \N 43118 5 0006470 \N 43119 5 0051255 \N 43120 3 15296749 \N 43121 5 0009668 \N 43122 5 0042852 \N 43123 88 16977 \N 43124 5 0021909 \N 43125 5 0071428 \N 43126 5 0043538 \N 43127 5 0034755 \N 43128 5 0006789 \N 43129 92 10.1016/0305-0491(80)90243-6 \N 43130 5 0000412 \N 43131 5 0046587 \N 43132 5 0031279 \N 43133 5 0045746 \N 43134 5 0035444 \N 43135 5 0060477 \N 43136 5 0006090 \N 43137 5 0006087 \N 43138 5 0007086 \N 43139 5 0032752 \N 43140 5 0060525 \N 43141 5 0045736 \N 43142 5 0021879 \N 43143 5 0032962 \N 43144 5 0014886 \N 43145 5 0010753 \N 43146 5 0032098 \N 43147 5 0009803 \N 43148 5 0003379 \N 43149 5 0071367 \N 43150 5 0045929 \N 43151 5 0009691 \N 43152 86 0387969845 \N 43153 5 0032501 \N 43154 5 0050874 \N 43155 5 0007409 \N 43156 5 0007410 \N 43157 5 0071248 \N 43158 5 0035624 \N 43159 3 16870826 \N 43160 5 0035298 \N 43161 5 0072377 \N 43162 3 1931959 \N 43163 5 0046654 \N 43164 5 0010398 \N 43165 5 0002452 \N 43166 5 0070028 \N 43167 5 0070494 \N 43168 5 0051138 \N 43169 5 0097045 \N 43170 4 lf \N 43171 4 pr \N 43172 3 21107324 \N 43173 5 0075191 \N 43174 5 0043606 \N 43175 5 0044059 \N 43176 5 0097118 \N 43177 5 0035358 \N 43178 5 0060539 \N 43179 5 0045688 \N 43180 5 0072456 \N 43181 5 0046240 \N 43182 5 0034588 \N 43183 5 0097089 \N 43184 4 rs \N 43185 3 19933331 \N 43186 5 0015904 \N 43187 88 27902 \N 43188 5 0052534 \N 43189 5 0010633 \N 43190 5 0019057 \N 43191 5 0044242 \N 43192 5 0052333 \N 43193 5 0070941 \N 43194 3 19564405 \N 43195 5 0002542 \N 43196 86 0721601871 \N 43197 5 0097061 \N 43198 3 20410104 \N 43199 5 0018184 \N 43200 5 0019362 \N 43201 5 0051422 \N 43202 93 3.2.1.8 \N 43203 5 0001912 \N 43204 3 11911826 \N 43205 5 0008652 \N 43206 5 0033213 \N 43207 5 0043091 \N 43208 5 0051762 \N 43209 5 2000022 \N 43210 5 0003257 \N 43211 5 0045827 \N 43212 5 0030889 \N 43213 5 0071940 \N 43214 5 2000123 \N 43215 5 0035480 \N 43216 5 0010092 \N 43217 5 0007207 \N 43218 5 0017181 \N 43219 5 0030840 \N 43220 5 0050663 \N 43221 86 0198599471 \N 43222 5 0009193 \N 43223 5 0002202 \N 43224 3 16373579 \N 43225 5 0007160 \N 43226 5 0015694 \N 43227 5 0050992 \N 43228 5 2000504 \N 43229 5 0018892 \N 43230 97 chs \N 43231 5 0052536 \N 43232 5 0000768 \N 43233 5 0007433 \N 43234 3 11598957 \N 43235 5 0052039 \N 43236 5 0031591 \N 43237 108 037 \N 43238 5 0031621 \N 43239 5 0039013 \N 43240 5 0007114 \N 43241 5 0050973 \N 43242 5 0003174 \N 43243 5 0015708 \N 43244 5 0001309 \N 43245 5 0085031 \N 43246 5 0040040 \N 43247 5 0035421 \N 43248 5 0001009 \N 43249 5 0051961 \N 43250 5 0055098 \N 43251 5 0008627 \N 43252 3 11454444 \N 43253 3 16483738 \N 43254 5 0031296 \N 43255 5 0060922 \N 43256 5 0060560 \N 43257 5 0050796 \N 43258 5 0048618 \N 43259 5 2000210 \N 43260 5 0006809 \N 43261 5 0043270 \N 43262 5 0032800 \N 43263 5 0070444 \N 43264 3 15504915 \N 43265 5 0043113 \N 43266 3 19747931 \N 43267 3 21453460 \N 43268 5 0072295 \N 43269 5 0033277 \N 43270 3 9573008 \N 43271 5 0044399 \N 43272 5 0021680 \N 43273 5 0060248 \N 43274 5 0075311 \N 43275 5 0003066 \N 43276 5 0015747 \N 43277 5 0018996 \N 43278 5 0016105 \N 43279 5 0018888 \N 43280 5 0032054 \N 43281 3 9889124 \N 43282 5 0042574 \N 43283 88 15035 \N 43284 5 0061081 \N 43285 5 0032121 \N 43286 3 16615890 \N 43287 5 0046051 \N 43288 5 0018134 \N 43289 89 AA0240 \N 43290 5 0051934 \N 43291 86 0123668387 \N 43292 5 0000715 \N 43293 5 0014707 \N 43294 5 0050900 \N 43295 3 14680625 \N 43296 3 14708592 \N 43297 3 7507411 \N 43298 3 8600538 \N 43299 5 0010673 \N 43300 5 0002110 \N 43301 3 8306965 \N 43302 5 0032706 \N 43303 5 0018881 \N 43304 5 0015876 \N 43305 5 0048211 \N 43306 3 10219233 \N 43307 5 0035192 \N 43308 3 8314839 \N 43309 5 0006517 \N 43310 5 0051608 \N 43311 5 0045639 \N 43312 5 0009970 \N 43313 5 0035351 \N 43314 5 0010684 \N 43315 5 0042082 \N 43316 5 0070995 \N 43317 5 0035911 \N 43318 5 0035563 \N 43319 3 20404130 \N 43320 5 0046160 \N 43321 88 24479 \N 43322 5 0046491 \N 43323 5 0051027 \N 43324 5 0007355 \N 43325 5 0052695 \N 43326 5 0007534 \N 43327 3 9928492 \N 43328 5 0048203 \N 43329 5 0007137 \N 43330 5 0015726 \N 43331 5 0031036 \N 43332 5 0045448 \N 43333 5 0033542 \N 43334 87 PWY-5138 \N 43335 5 0042089 \N 43336 5 0042032 \N 43337 5 0001119 \N 43338 5 0051102 \N 43339 5 0010841 \N 43340 5 0046768 \N 43341 5 0015957 \N 43342 3 10970777 \N 43343 5 0045020 \N 43344 3 11459974 \N 43345 5 0032204 \N 43346 5 0006477 \N 43347 5 0015014 \N 43348 5 0010726 \N 43349 5 0072340 \N 43350 88 24995 \N 43351 5 0043268 \N 43352 5 0032907 \N 43353 5 0001313 \N 43354 5 0009302 \N 43355 5 0006102 \N 43356 5 0052149 \N 43357 5 0001821 \N 43358 5 0060929 \N 43359 5 0017195 \N 43360 89 AA0048 \N 43361 5 0006236 \N 43362 5 0007292 \N 43363 5 0042048 \N 43364 5 0000915 \N 43365 5 0045573 \N 43366 5 0035741 \N 43367 91 0000896 \N 43368 5 0016052 \N 43369 5 0006095 \N 43370 5 0075065 \N 43371 5 0048070 \N 43372 5 0071046 \N 43373 3 17410208 \N 43374 5 0072002 \N 43375 5 0060075 \N 43376 86 0195088433 \N 43377 5 0006063 \N 43378 5 0001698 \N 43379 5 0046155 \N 43380 5 2000362 \N 43381 5 0032496 \N 43382 86 0721601464 \N 43383 5 0051983 \N 43384 5 0021985 \N 43385 5 2000758 \N 43386 5 0046438 \N 43387 5 0008295 \N 43388 5 0060486 \N 43389 5 0034115 \N 43390 5 0010134 \N 43391 93 1.8.99.2 \N 43392 5 0043051 \N 43393 4 cab1 \N 43394 3 2181052 \N 43395 5 0002423 \N 43396 3 16730260 \N 43397 5 0048635 \N 43398 5 0002585 \N 43399 5 0019073 \N 43400 5 0034217 \N 43401 5 0043441 \N 43402 5 0018991 \N 43403 5 0009767 \N 43404 5 0009774 \N 43405 5 0009775 \N 43406 5 0009776 \N 43407 4 mtg_electron_transport \N 43408 5 0048525 \N 43409 5 0018284 \N 43410 89 AA0136 \N 43411 5 0061156 \N 43412 5 0075056 \N 43413 5 0071947 \N 43414 5 0052392 \N 43415 5 0045525 \N 43416 5 0052346 \N 43417 5 2000744 \N 43418 5 0021633 \N 43419 5 0042455 \N 43420 88 18254 \N 43421 5 0000199 \N 43422 5 0051618 \N 43423 5 0043932 \N 43424 5 0002366 \N 43425 5 0046202 \N 43426 5 0072163 \N 43427 5 2000893 \N 43428 5 0021661 \N 43429 5 0070607 \N 43430 5 0009438 \N 43431 88 17158 \N 43432 5 0001889 \N 43433 5 0048008 \N 43434 5 0019268 \N 43435 5 0046269 \N 43436 5 0007585 \N 43437 5 0021818 \N 43438 5 0097018 \N 43439 3 18431508 \N 43440 5 0051988 \N 43441 5 0038030 \N 43442 3 17720811 \N 43443 5 0044245 \N 43444 5 0043279 \N 43445 88 22315 \N 43446 5 0019759 \N 43447 94 //www.gardeneaters.net/family_characteristics.html \N 43448 5 0030209 \N 43449 5 0060227 \N 43450 5 0033050 \N 43451 88 3736 \N 43452 5 0006028 \N 43453 5 0051936 \N 43454 5 2000589 \N 43455 5 0060352 \N 43456 5 0010228 \N 43457 5 0052552 \N 43458 5 0002307 \N 43459 5 0006767 \N 43460 5 0044209 \N 43461 3 8917457 \N 43462 3 9864350 \N 43463 5 0018077 \N 43464 5 0051756 \N 43465 3 14730319 \N 43466 3 16325576 \N 43467 5 0046298 \N 43468 5 0034371 \N 43469 4 expert_pt \N 43470 5 0009607 \N 43471 5 0060217 \N 43472 3 15378083 \N 43473 3 9670018 \N 43474 5 0002862 \N 43475 5 0051674 \N 43476 5 0090030 \N 43477 5 0019354 \N 43478 5 0046603 \N 43479 5 0019240 \N 43480 5 0042417 \N 43481 5 0060159 \N 43482 5 0033599 \N 43483 5 0075120 \N 43484 5 0045618 \N 43485 5 0035247 \N 43486 3 14705965 \N 43487 89 AA0067 \N 43488 89 AA0068 \N 43489 89 AA0069 \N 43490 5 0009159 \N 43491 5 0043706 \N 43492 5 0090309 \N 43493 5 0046088 \N 43494 5 0033590 \N 43495 5 0021668 \N 43496 5 0031657 \N 43497 5 0043966 \N 43498 5 0009944 \N 43499 5 0090381 \N 43500 5 0061279 \N 43501 5 0019660 \N 43502 5 0046518 \N 43503 5 0015839 \N 43504 5 0061264 \N 43505 5 0052648 \N 43506 88 26554 \N 43507 5 0006579 \N 43508 5 0061170 \N 43509 5 0032645 \N 43510 5 0042551 \N 43511 5 2000357 \N 43512 5 0000430 \N 43513 5 0043380 \N 43514 5 0085008 \N 43515 5 0015989 \N 43516 5 0045623 \N 43517 5 0019502 \N 43518 87 CPD-821 \N 43519 5 2000006 \N 43520 5 0061118 \N 43521 5 0000281 \N 43522 5 0046839 \N 43523 5 0001558 \N 43524 5 0016485 \N 43525 5 0051605 \N 43526 5 0042198 \N 43527 109 KW-0549 \N 43528 5 0072108 \N 43529 5 0010258 \N 43530 3 15608332 \N 43531 5 0052206 \N 43532 5 0034390 \N 43533 5 0021763 \N 43534 5 0050704 \N 43535 5 0010986 \N 43536 5 0006782 \N 43537 5 0006062 \N 43538 5 0032928 \N 43539 5 0010426 \N 43540 3 15861207 \N 43541 3 17239600 \N 43542 5 0075034 \N 43543 5 0034153 \N 43544 5 0035847 \N 43545 5 0010442 \N 43546 4 expert_db \N 43547 5 0006486 \N 43548 5 0060685 \N 43549 5 0070254 \N 43550 5 0021691 \N 43551 5 0000305 \N 43552 86 0124325653 \N 43553 5 0072254 \N 43554 5 0021913 \N 43555 5 0023041 \N 43556 5 0051950 \N 43557 5 0051365 \N 43558 5 0018982 \N 43559 5 2000996 \N 43560 5 0075198 \N 43561 5 0019571 \N 43562 88 17108 \N 43563 5 0052092 \N 43564 5 0043484 \N 43565 5 0090387 \N 43566 5 0042528 \N 43567 5 0033182 \N 43568 5 2000003 \N 43569 5 0035476 \N 43570 5 0031330 \N 43571 5 2000370 \N 43572 5 0045976 \N 43573 5 0042686 \N 43574 5 2000689 \N 43575 5 0018038 \N 43576 89 AA0085 \N 43577 5 0052061 \N 43578 5 0042488 \N 43579 3 15355794 \N 43580 5 2000088 \N 43581 5 0038017 \N 43582 3 17908284 \N 43583 5 0033502 \N 43584 5 0043329 \N 43585 5 0035398 \N 43586 5 0052360 \N 43587 5 0010990 \N 43588 5 0042621 \N 43589 3 9925580 \N 43590 5 0042372 \N 43591 5 0035391 \N 43592 5 0050842 \N 43593 89 AA0355 \N 43594 5 0035220 \N 43595 5 0021727 \N 43596 5 0045058 \N 43597 3 12414722 \N 43598 5 0071983 \N 43599 5 0002597 \N 43600 5 0033614 \N 43601 5 0060492 \N 43602 5 0019537 \N 43603 5 0031195 \N 43604 5 0031196 \N 43605 3 11112537 \N 43606 5 0035801 \N 43607 94 //en.wikipedia.org/wiki/Adrenal_cortex \N 43608 3 12185666 \N 43609 3 21115154 \N 43610 5 0031068 \N 43611 5 0035930 \N 43612 88 3669 \N 43613 5 0046198 \N 43614 5 0045776 \N 43615 5 2000444 \N 43616 5 0003290 \N 43617 5 0034105 \N 43618 5 0070671 \N 43619 5 0022417 \N 43620 5 0070614 \N 43621 5 2000951 \N 43622 5 0034413 \N 43623 5 0075014 \N 43624 5 0048734 \N 43625 5 0043154 \N 43626 5 0001719 \N 43627 5 0003099 \N 43628 5 0030319 \N 43629 5 0051780 \N 43630 5 0035633 \N 43631 3 20080302 \N 43632 5 2000172 \N 43633 5 0033146 \N 43634 5 0045952 \N 43635 5 0003214 \N 43636 5 0046850 \N 43637 5 0019601 \N 43638 87 TOLUENE-DEG-2-OH-PWY \N 43639 5 0042237 \N 43640 5 0032789 \N 43641 5 0001100 \N 43642 5 0048539 \N 43643 5 0019360 \N 43644 5 0052085 \N 43645 5 0046626 \N 43646 5 0007635 \N 43647 5 0031684 \N 43648 4 nln \N 43649 5 0034331 \N 43650 5 2000558 \N 43651 5 0034381 \N 43652 5 0046661 \N 43653 5 0033365 \N 43654 5 0046355 \N 43655 5 0060366 \N 43656 5 0006525 \N 43657 88 29016 \N 43658 5 0060443 \N 43659 5 0009120 \N 43660 5 0072659 \N 43661 5 0001754 \N 43662 5 0090149 \N 43663 5 0048445 \N 43664 5 0048430 \N 43665 5 0090227 \N 43666 5 0007562 \N 43667 4 dos \N 43668 86 0198600461 \N 43669 5 0001937 \N 43670 5 0035668 \N 43671 3 14556004 \N 43672 5 0032696 \N 43673 5 0042230 \N 43674 5 0030389 \N 43675 5 0045194 \N 43676 5 0003203 \N 43677 5 0050719 \N 43678 5 0055020 \N 43679 5 2000904 \N 43680 5 0017011 \N 43681 89 AA0132 \N 43682 5 0002701 \N 43683 5 0006328 \N 43684 5 0050974 \N 43685 5 0046119 \N 43686 5 0018928 \N 43687 94 //umbbd.ahc.umn.edu/mek/mek_map.html \N 43688 97 mek \N 43689 5 2000695 \N 43690 5 0002419 \N 43691 5 0000747 \N 43692 5 0007322 \N 43693 5 0007333 \N 43694 5 0030461 \N 43695 5 0030477 \N 43696 5 0014057 \N 43697 5 0035817 \N 43698 5 0051645 \N 43699 5 2000823 \N 43700 5 0071227 \N 43701 5 0001548 \N 43702 5 0010888 \N 43703 5 2000182 \N 43704 5 0072084 \N 43705 5 0051325 \N 43706 94 //www.onelook.com \N 43707 5 0006716 \N 43708 5 0018249 \N 43709 5 0061143 \N 43710 5 0042745 \N 43711 94 //www.sleepquest.com \N 43712 5 0035078 \N 43713 5 0072156 \N 43714 5 0006760 \N 43715 88 37445 \N 43716 5 0090050 \N 43717 5 0055085 \N 43718 5 0048939 \N 43719 5 0034194 \N 43720 5 0010652 \N 43721 5 0090151 \N 43722 5 0048293 \N 43723 5 0002809 \N 43724 5 0072226 \N 43725 5 0046787 \N 43726 5 0043557 \N 43727 5 0010618 \N 43728 3 18055613 \N 43729 102 0005702 \N 43730 5 0010196 \N 43731 3 10667783 \N 43732 5 0019261 \N 43733 5 0061152 \N 43734 5 0075143 \N 43735 5 0060953 \N 43736 5 0030657 \N 43737 5 0010613 \N 43738 5 0060658 \N 43739 5 0042149 \N 43740 5 0006273 \N 43741 5 0075042 \N 43742 5 0048213 \N 43743 5 0002768 \N 43744 3 15771571 \N 43745 5 0050837 \N 43746 89 AA0358 \N 43747 5 0052427 \N 43748 5 0052435 \N 43749 5 0052102 \N 43750 5 0032096 \N 43751 5 0051101 \N 43752 5 0000972 \N 43753 3 18614049 \N 43754 5 0002210 \N 43755 5 0046112 \N 43756 5 0034636 \N 43757 5 0042062 \N 43758 4 mtg_15jun06_goc \N 43759 5 0051695 \N 43760 4 pf \N 43761 5 2000916 \N 43762 5 0048384 \N 43763 5 0007232 \N 43764 5 0071351 \N 43765 5 0008366 \N 43766 5 0042553 \N 43767 5 0072647 \N 43768 3 15546383 \N 43769 5 0030950 \N 43770 5 0035983 \N 43771 88 46024 \N 43772 3 20181743 \N 43773 5 0019220 \N 43774 5 0009720 \N 43775 5 0022011 \N 43776 5 0000819 \N 43777 5 0033318 \N 43778 87 PWY-3961 \N 43779 5 0075326 \N 43780 5 0046733 \N 43781 5 0090019 \N 43782 5 0061329 \N 43783 5 0010935 \N 43784 5 0021576 \N 43785 5 0021942 \N 43786 5 0002344 \N 43787 5 0002209 \N 43788 5 0038014 \N 43789 3 18492485 \N 43790 3 7821727 \N 43791 3 7978876 \N 43792 3 9609114 \N 43793 5 0072039 \N 43794 5 0019546 \N 43795 87 ARGDEGRAD-PWY \N 43796 5 0002495 \N 43797 3 15531770 \N 43798 5 0002687 \N 43799 5 0015816 \N 43800 5 2000319 \N 43801 5 0021751 \N 43802 5 0014891 \N 43803 5 0070933 \N 43804 5 0033571 \N 43805 5 0033126 \N 43806 5 0042186 \N 43807 5 0035070 \N 43808 3 9409683 \N 43809 5 0003124 \N 43810 5 0046959 \N 43811 5 0072412 \N 43812 5 0060138 \N 43813 5 0002640 \N 43814 5 0044028 \N 43815 94 //en.wiktionary.org/hypomethylation \N 43816 5 0019608 \N 43817 5 0010866 \N 43818 5 0097096 \N 43819 5 0031122 \N 43820 5 0045601 \N 43821 5 0010273 \N 43822 3 16367966 \N 43823 5 0002818 \N 43824 5 0071994 \N 43825 5 2000680 \N 43826 5 0071850 \N 43827 5 0034612 \N 43828 5 0042359 \N 43829 88 27300 \N 43830 86 0471331309 \N 43831 5 0032086 \N 43832 5 0072419 \N 43833 5 0031329 \N 43834 5 0014715 \N 43835 5 0072007 \N 43836 5 0042256 \N 43837 5 0010243 \N 43838 88 35352 \N 43839 3 9869419 \N 43840 5 0044097 \N 43841 5 0021656 \N 43842 5 0035131 \N 43843 5 0045396 \N 43844 5 0018291 \N 43845 5 0003307 \N 43846 5 0032016 \N 43847 5 0007465 \N 43848 5 0045640 \N 43849 5 0075128 \N 43850 5 0051126 \N 43851 5 0009729 \N 43852 5 0046022 \N 43853 5 0045110 \N 43854 5 0050894 \N 43855 5 0006663 \N 43856 5 0009107 \N 43857 5 0009105 \N 43858 5 0043286 \N 43859 5 0048930 \N 43860 5 0061043 \N 43861 5 0061088 \N 43862 5 0009586 \N 43863 5 0002470 \N 43864 5 0003296 \N 43865 5 0007103 \N 43866 86 0879693649 \N 43867 5 0047484 \N 43868 5 0072013 \N 43869 3 10572058 \N 43870 3 15647339 \N 43871 3 9268568 \N 43872 110 0000318 \N 43873 5 0001522 \N 43874 5 0006893 \N 43875 5 0006261 \N 43876 5 0006262 \N 43877 5 0006263 \N 43878 5 2000741 \N 43879 5 2000475 \N 43880 5 0002829 \N 43881 5 0009953 \N 43882 5 0046916 \N 43883 5 0003225 \N 43884 5 0051312 \N 43885 5 0043134 \N 43886 106 0001046 \N 43887 5 0035219 \N 43888 5 0021785 \N 43889 3 14699587 \N 43890 5 0048858 \N 43891 5 0009140 \N 43892 5 0016046 \N 43893 5 0009599 \N 43894 5 0048699 \N 43895 5 0044090 \N 43896 5 0006193 \N 43897 5 0070170 \N 43898 5 0002918 \N 43899 5 0060454 \N 43900 5 0002007 \N 43901 5 0016188 \N 43902 5 0018266 \N 43903 89 AA0159 \N 43904 5 0003300 \N 43905 5 2000322 \N 43906 5 0003231 \N 43907 5 0007517 \N 43908 5 0016348 \N 43909 5 0072095 \N 43910 5 0032790 \N 43911 5 0002534 \N 43912 5 0018864 \N 43913 5 0010087 \N 43914 5 0019393 \N 43915 5 0034242 \N 43916 5 0052171 \N 43917 5 0002293 \N 43918 5 0070149 \N 43919 5 0008045 \N 43920 5 0032743 \N 43921 5 0000389 \N 43922 5 0000382 \N 43923 5 0000383 \N 43924 5 2000078 \N 43925 5 0042655 \N 43926 5 0070228 \N 43927 5 0010621 \N 43928 5 0032775 \N 43929 5 0060460 \N 43930 5 2000651 \N 43931 5 0070177 \N 43932 3 10369671 \N 43933 5 0000082 \N 43934 5 0032707 \N 43935 5 0010964 \N 43936 5 0033547 \N 43937 87 PWY-4541 \N 43938 5 0071622 \N 43939 5 0071408 \N 43940 5 0032350 \N 43941 5 0022004 \N 43942 3 15541513 \N 43943 5 2000876 \N 43944 5 0043471 \N 43945 5 0060393 \N 43946 5 0060125 \N 43947 5 0035317 \N 43948 3 11064425 \N 43949 3 12540853 \N 43950 5 0007455 \N 43951 5 0072036 \N 43952 5 0060904 \N 43953 5 0071980 \N 43954 3 18461074 \N 43955 5 0002523 \N 43956 5 0070887 \N 43957 5 0070314 \N 43958 5 0039519 \N 43959 5 0003299 \N 43960 5 0044138 \N 43961 5 0016480 \N 43962 5 0072364 \N 43963 5 0043043 \N 43964 88 16670 \N 43965 5 0052500 \N 43966 5 0070417 \N 43967 5 0018977 \N 43968 5 0090213 \N 43969 5 0071804 \N 43970 5 0032612 \N 43971 5 0043652 \N 43972 3 15536015 \N 43973 5 0060805 \N 43974 5 0097028 \N 43975 5 0035571 \N 43976 5 0031659 \N 43977 5 0072592 \N 43978 88 33263 \N 43979 5 0060511 \N 43980 5 0034406 \N 43981 5 0061094 \N 43982 5 0000735 \N 43983 3 10357855 \N 43984 5 0052432 \N 43985 5 0090265 \N 43986 5 0045650 \N 43987 5 0048288 \N 43988 5 0045385 \N 43989 5 0006382 \N 43990 3 11092837 \N 43991 5 0032956 \N 43992 5 0051301 \N 43993 5 0046397 \N 43994 5 0019587 \N 43995 5 2000152 \N 43996 5 2000994 \N 43997 5 2000117 \N 43998 5 0009633 \N 43999 5 0042532 \N 44000 5 0003193 \N 44001 5 0014028 \N 44002 5 0033518 \N 44003 5 0007304 \N 44004 5 0052222 \N 44005 5 0043102 \N 44006 5 0006449 \N 44007 5 0048201 \N 44008 5 0014854 \N 44009 5 0051567 \N 44010 5 0021543 \N 44011 5 0001954 \N 44012 5 0033580 \N 44013 5 0002249 \N 44014 5 0009118 \N 44015 5 0006217 \N 44016 5 0008165 \N 44017 5 0051890 \N 44018 5 0070192 \N 44019 5 0048015 \N 44020 5 2000824 \N 44021 5 0018388 \N 44022 89 AA0275 \N 44023 5 0051902 \N 44024 5 0045122 \N 44025 5 0006205 \N 44026 5 0035022 \N 44027 5 0045324 \N 44028 3 11872141 \N 44029 5 0048250 \N 44030 3 12006577 \N 44031 5 0045223 \N 44032 5 0045342 \N 44033 5 0046633 \N 44034 5 0000464 \N 44035 3 10690410 \N 44036 5 0002673 \N 44037 5 0006756 \N 44038 5 0003049 \N 44039 5 0046001 \N 44040 5 0002011 \N 44041 5 0031162 \N 44042 5 0002252 \N 44043 5 0034021 \N 44044 5 0043951 \N 44045 5 2000276 \N 44046 5 0050820 \N 44047 5 0051346 \N 44048 5 0044126 \N 44049 5 2000425 \N 44050 5 0007569 \N 44051 3 12044934 \N 44052 5 0030211 \N 44053 5 0051113 \N 44054 89 AA0371 \N 44055 5 0030632 \N 44056 5 0030417 \N 44057 3 10069850 \N 44058 5 0070106 \N 44059 5 0045981 \N 44060 5 0002302 \N 44061 5 0045647 \N 44062 5 0032603 \N 44063 5 0031283 \N 44064 5 0070482 \N 44065 5 0071552 \N 44066 4 amm \N 44067 3 11734559 \N 44068 5 0019670 \N 44069 5 0000727 \N 44070 5 0070663 \N 44071 5 0021518 \N 44072 5 0070230 \N 44073 5 0048084 \N 44074 5 0032328 \N 44075 5 0031590 \N 44076 5 0006076 \N 44077 5 0010400 \N 44078 5 0001661 \N 44079 3 9920659 \N 44080 5 0046307 \N 44081 5 2000860 \N 44082 5 0050985 \N 44083 89 AA0362 \N 44084 5 0046035 \N 44085 5 0045498 \N 44086 94 //fly.ebi.ac.uk \N 44087 5 0030473 \N 44088 5 0000065 \N 44089 4 sgd_curators \N 44090 5 0071302 \N 44091 5 0045564 \N 44092 5 2000287 \N 44093 5 0035332 \N 44094 5 0002624 \N 44095 5 0048277 \N 44096 5 0010514 \N 44097 5 0001927 \N 44098 3 9700152 \N 44099 104 Exocyst \N 44100 5 0040038 \N 44101 5 0048134 \N 44102 3 10370240 \N 44103 5 0010816 \N 44104 5 0000424 \N 44105 5 0007215 \N 44106 3 9131252 \N 44107 5 0070654 \N 44108 3 19381250 \N 44109 5 0090300 \N 44110 5 0010216 \N 44111 3 11898023 \N 44112 5 0043516 \N 44113 5 0072090 \N 44114 5 0019916 \N 44115 89 AA0191 \N 44116 5 0003342 \N 44117 5 0075177 \N 44118 5 0015804 \N 44119 5 0060070 \N 44120 3 11532397 \N 44121 3 19619488 \N 44122 5 0043604 \N 44123 88 32988 \N 44124 5 0006842 \N 44125 5 0000476 \N 44126 5 0044010 \N 44127 5 0018183 \N 44128 89 AA0277 \N 44129 5 0033603 \N 44130 5 0042367 \N 44131 5 0048777 \N 44132 5 0048592 \N 44133 5 0048748 \N 44134 5 0070753 \N 44135 5 0045916 \N 44136 5 0043465 \N 44137 5 0002852 \N 44138 5 0051068 \N 44139 5 0010518 \N 44140 5 0060682 \N 44141 5 0071042 \N 44142 3 15145828 \N 44143 3 15828860 \N 44144 3 16431988 \N 44145 3 17643380 \N 44146 3 18000032 \N 44147 3 18644474 \N 44148 5 0046065 \N 44149 5 0090374 \N 44150 3 11251115 \N 44151 5 0061070 \N 44152 5 0051820 \N 44153 5 0048489 \N 44154 5 0016181 \N 44155 4 lmg \N 44156 5 0046693 \N 44157 3 10885514 \N 44158 5 0009694 \N 44159 5 0046413 \N 44160 5 0043406 \N 44161 5 2000468 \N 44162 5 0043316 \N 44163 5 0015758 \N 44164 5 0032073 \N 44165 5 0045087 \N 44166 5 0002226 \N 44167 5 0006223 \N 44168 5 0035954 \N 44169 5 0044357 \N 44170 5 2000087 \N 44171 5 0000423 \N 44172 5 0010114 \N 44173 5 0014029 \N 44174 5 0045418 \N 44175 5 0033640 \N 44176 5 0034164 \N 44177 5 0003142 \N 44178 5 0003238 \N 44179 5 0003282 \N 44180 5 0019428 \N 44181 5 0045443 \N 44182 5 0042868 \N 44183 5 0018218 \N 44184 89 AA0034 \N 44185 5 0033527 \N 44186 87 PWY-5189 \N 44187 5 0002100 \N 44188 5 0019592 \N 44189 5 0021645 \N 44190 5 0045657 \N 44191 5 0032000 \N 44192 5 0003265 \N 44193 5 2000439 \N 44194 5 0075223 \N 44195 5 0042091 \N 44196 5 0045411 \N 44197 5 0021512 \N 44198 5 2000199 \N 44199 5 0071787 \N 44200 3 16469703 \N 44201 3 20434336 \N 44202 5 0031087 \N 44203 3 15225542 \N 44204 3 15225544 \N 44205 5 0030592 \N 44206 3 11592983 \N 44207 5 0007479 \N 44208 5 0052567 \N 44209 5 0085027 \N 44210 5 0019653 \N 44211 88 26386 \N 44212 5 0030851 \N 44213 94 //life.nthu.edu.tw/~g864204/dict-search1.htm \N 44214 5 0060586 \N 44215 5 0035310 \N 44216 3 10860999 \N 44217 5 0070368 \N 44218 5 0006924 \N 44219 3 12414721 \N 44220 3 12752672 \N 44221 5 0051340 \N 44222 93 6.-.-.- \N 44223 5 0072261 \N 44224 5 0071309 \N 44225 5 0051595 \N 44226 5 0048100 \N 44227 3 10625531 \N 44228 5 0033353 \N 44229 87 PWY-5041 \N 44230 5 0032878 \N 44231 5 0032844 \N 44232 5 0046284 \N 44233 5 0032186 \N 44234 5 0070500 \N 44235 3 16689787 \N 44236 5 0072613 \N 44237 5 0007276 \N 44238 5 0009552 \N 44239 5 0009754 \N 44240 5 0033261 \N 44241 5 0032253 \N 44242 5 0051333 \N 44243 5 0006543 \N 44244 5 2000610 \N 44245 5 0052015 \N 44246 5 0009893 \N 44247 5 0002656 \N 44248 5 0006735 \N 44249 5 0043588 \N 44250 106 0002097 \N 44251 5 0016266 \N 44252 3 10580130 \N 44253 5 0010413 \N 44254 5 0072692 \N 44255 5 2001016 \N 44256 5 0060942 \N 44257 5 0070800 \N 44258 5 0001743 \N 44259 5 0048554 \N 44260 5 0032836 \N 44261 5 0048743 \N 44262 5 0015687 \N 44263 5 0021891 \N 44264 5 0061350 \N 44265 3 19056682 \N 44266 5 0034762 \N 44267 5 0002755 \N 44268 3 12467241 \N 44269 3 12855817 \N 44270 3 15585605 \N 44271 3 15728447 \N 44272 5 0048831 \N 44273 5 0090410 \N 44274 5 0048509 \N 44275 5 0006256 \N 44276 5 0050729 \N 44277 5 0021519 \N 44278 5 0032918 \N 44279 5 0052354 \N 44280 5 0007254 \N 44281 3 11790549 \N 44282 5 0060771 \N 44283 5 0002352 \N 44284 5 0045813 \N 44285 5 0006560 \N 44286 5 0046774 \N 44287 5 0048482 \N 44288 5 0003040 \N 44289 5 0070792 \N 44290 3 19210625 \N 44291 5 0042905 \N 44292 3 11279029 \N 44293 5 0048802 \N 44294 5 0010495 \N 44295 3 11590235 \N 44296 3 17785412 \N 44297 5 0052098 \N 44298 5 0022602 \N 44299 5 0000244 \N 44300 5 0000351 \N 44301 5 0000355 \N 44302 3 9452384 \N 44303 5 0016270 \N 44304 5 0070072 \N 44305 5 0052387 \N 44306 5 0009074 \N 44307 5 0030819 \N 44308 5 0070605 \N 44309 5 0042722 \N 44310 5 0048088 \N 44311 5 0072465 \N 44312 5 0072281 \N 44313 5 0018022 \N 44314 5 0072679 \N 44315 91 0000893 \N 44316 5 0046103 \N 44317 5 0018965 \N 44318 94 //umbbd.ahc.umn.edu/tria/tria_map.html \N 44319 97 tria \N 44320 5 0061054 \N 44321 5 0031366 \N 44322 5 0006582 \N 44323 5 0030111 \N 44324 5 0008590 \N 44325 5 0019065 \N 44326 5 0008101 \N 44327 3 17428827 \N 44328 5 0030643 \N 44329 5 0046795 \N 44330 3 11733033 \N 44331 5 0075269 \N 44332 5 0071267 \N 44333 88 16643 \N 44334 5 0010838 \N 44335 5 0048071 \N 44336 5 0044269 \N 44337 5 0035783 \N 44338 91 0000624 \N 44339 5 0021713 \N 44340 5 0003247 \N 44341 5 0090283 \N 44342 5 0090143 \N 44343 5 0032831 \N 44344 5 0072640 \N 44345 5 0097105 \N 44346 3 15797875 \N 44347 3 18550748 \N 44348 5 0071377 \N 44349 5 0075261 \N 44350 5 0007167 \N 44351 86 0185316194 \N 44352 5 0044001 \N 44353 5 0043980 \N 44354 5 0048639 \N 44355 5 0035491 \N 44356 5 0016077 \N 44357 5 0006351 \N 44358 5 0006350 \N 44359 5 0061018 \N 44360 5 0061022 \N 44361 5 0006498 \N 44362 5 0070807 \N 44363 5 0055072 \N 44364 5 0060287 \N 44365 5 0021722 \N 44366 5 0072151 \N 44367 5 0031333 \N 44368 5 2000843 \N 44369 5 0045466 \N 44370 3 11880339 \N 44371 5 0007108 \N 44372 5 0060913 \N 44373 5 0042661 \N 44374 5 0060017 \N 44375 5 2001000 \N 44376 5 0014834 \N 44377 5 0003276 \N 44378 5 0042440 \N 44379 5 0045745 \N 44380 5 0072301 \N 44381 5 0060372 \N 44382 5 0060062 \N 44383 3 9442883 \N 44384 5 0042740 \N 44385 5 0051725 \N 44386 5 0018278 \N 44387 89 AA0129 \N 44388 5 0031018 \N 44389 5 0021896 \N 44390 5 0010126 \N 44391 5 0009410 \N 44392 5 0017104 \N 44393 5 0009111 \N 44394 5 0030185 \N 44395 5 0002108 \N 44396 5 0019300 \N 44397 5 0034391 \N 44398 5 0015822 \N 44399 5 0071874 \N 44400 88 33569 \N 44401 5 0006186 \N 44402 5 0006339 \N 44403 5 0007176 \N 44404 5 0071051 \N 44405 3 18951092 \N 44406 5 0008594 \N 44407 5 0072050 \N 44408 5 0039020 \N 44409 5 0072508 \N 44410 5 0060143 \N 44411 5 0019271 \N 44412 5 0030258 \N 44413 5 0008154 \N 44414 5 0048534 \N 44415 5 0031157 \N 44416 5 0061067 \N 44417 5 0001812 \N 44418 5 2000514 \N 44419 5 0060836 \N 44420 5 0044060 \N 44421 5 0009888 \N 44422 86 0471245208 \N 44423 5 0019419 \N 44424 5 0019421 \N 44425 87 DISSULFRED-PWY \N 44426 87 P224-PWY \N 44427 87 SO4ASSIM-PWY \N 44428 87 SULFMETII-PWY \N 44429 5 0018917 \N 44430 94 //umbbd.ahc.umn.edu/flu/flu_map.html \N 44431 97 flu \N 44432 5 0051143 \N 44433 5 0001916 \N 44434 5 0051283 \N 44435 5 2000253 \N 44436 5 0045750 \N 44437 5 0046725 \N 44438 5 0019837 \N 44439 5 0060647 \N 44440 3 12558599 \N 44441 5 2000703 \N 44442 5 0048868 \N 44443 5 0051544 \N 44444 5 0002091 \N 44445 5 0005993 \N 44446 86 0028623819 \N 44447 5 0051483 \N 44448 5 0072236 \N 44449 5 0035139 \N 44450 5 0006026 \N 44451 5 0080184 \N 44452 88 26004 \N 44453 5 0018269 \N 44454 89 AA0162 \N 44455 5 0002154 \N 44456 5 0085005 \N 44457 5 0061355 \N 44458 3 19223472 \N 44459 5 0045450 \N 44460 5 0010944 \N 44461 5 0043581 \N 44462 86 1580085792 \N 44463 5 0048620 \N 44464 5 0009902 \N 44465 3 11309623 \N 44466 5 0046128 \N 44467 5 0042074 \N 44468 94 //www.cellmigration.org/ \N 44469 5 0006859 \N 44470 5 0061253 \N 44471 5 0000914 \N 44472 5 0072451 \N 44473 5 0019349 \N 44474 5 0015737 \N 44475 5 0032925 \N 44476 5 0010207 \N 44477 5 0045714 \N 44478 5 0060517 \N 44479 5 0001779 \N 44480 5 0071066 \N 44481 3 19279637 \N 44482 5 0006468 \N 44483 5 0048761 \N 44484 91 0000330 \N 44485 102 0000075 \N 44486 5 0048311 \N 44487 5 0006099 \N 44488 5 0071475 \N 44489 5 0043088 \N 44490 5 0034121 \N 44491 5 0006985 \N 44492 3 10390516 \N 44493 5 0032598 \N 44494 5 0010069 \N 44495 86 0865427429 \N 44496 5 0045572 \N 44497 5 0050806 \N 44498 5 0071733 \N 44499 3 15060134 \N 44500 5 0019328 \N 44501 5 0072061 \N 44502 5 0052498 \N 44503 5 0051929 \N 44504 5 0000336 \N 44505 5 2000530 \N 44506 5 2001029 \N 44507 5 0035892 \N 44508 3 15922770 \N 44509 5 0001307 \N 44510 5 0019342 \N 44511 87 TRYPANOSYN-PWY \N 44512 3 9677355 \N 44513 5 0050881 \N 44514 5 0035223 \N 44515 5 2000839 \N 44516 5 0048513 \N 44517 5 2001013 \N 44518 5 0048094 \N 44519 5 0009958 \N 44520 5 0002732 \N 44521 5 0033081 \N 44522 5 0019280 \N 44523 5 0040021 \N 44524 5 0042005 \N 44525 5 0035555 \N 44526 5 0033360 \N 44527 87 PWY-2941 \N 44528 5 0035828 \N 44529 88 49847 \N 44530 5 0035143 \N 44531 5 0048355 \N 44532 5 0031138 \N 44533 5 0002306 \N 44534 5 0055090 \N 44535 5 0072064 \N 44536 5 0075003 \N 44537 5 0019410 \N 44538 3 18024677 \N 44539 5 0060938 \N 44540 5 0070206 \N 44541 5 0045061 \N 44542 5 0051953 \N 44543 5 0045620 \N 44544 5 0035456 \N 44545 3 9561374 \N 44546 5 0014904 \N 44547 5 0071444 \N 44548 5 0042864 \N 44549 5 0031187 \N 44550 5 0031188 \N 44551 3 6794030 \N 44552 5 0052476 \N 44553 5 0072186 \N 44554 5 0060613 \N 44555 5 0045615 \N 44556 5 0006954 \N 44557 5 0046293 \N 44558 5 0045393 \N 44559 5 0009764 \N 44560 3 11788762 \N 44561 5 0002648 \N 44562 5 0032434 \N 44563 5 0015886 \N 44564 5 0070911 \N 44565 3 18794354 \N 44566 5 0048194 \N 44567 5 0035788 \N 44568 5 0022034 \N 44569 5 0072027 \N 44570 5 0030049 \N 44571 5 2000050 \N 44572 5 0002218 \N 44573 5 0002219 \N 44574 3 15199967 \N 44575 3 16177805 \N 44576 5 0006707 \N 44577 5 0046713 \N 44578 88 22908 \N 44579 94 //www.webelements.com/ \N 44580 5 0003250 \N 44581 5 0031550 \N 44582 5 0072343 \N 44583 91 0002410 \N 44584 3 17200706 \N 44585 5 0019686 \N 44586 5 0010467 \N 44587 5 0048034 \N 44588 5 0021808 \N 44589 5 0030105 \N 44590 5 0044049 \N 44591 5 0060797 \N 44592 5 0043501 \N 44593 3 11181628 \N 44594 3 11449884 \N 44595 3 12605307 \N 44596 5 0021952 \N 44597 5 0032714 \N 44598 5 0002379 \N 44599 5 0000196 \N 44600 5 0000770 \N 44601 5 0007325 \N 44602 5 0051943 \N 44603 5 0001899 \N 44604 5 0046206 \N 44605 5 0061296 \N 44606 5 0075299 \N 44607 5 2000942 \N 44608 5 0060782 \N 44609 3 12221011 \N 44610 5 0045985 \N 44611 5 0007281 \N 44612 5 0015846 \N 44613 5 0010452 \N 44614 5 0051628 \N 44615 5 0055018 \N 44616 5 0003228 \N 44617 5 0048177 \N 44618 3 1838014 \N 44619 5 0001886 \N 44620 5 2000969 \N 44621 3 21423165 \N 44622 5 0021606 \N 44623 5 0045590 \N 44624 5 0015993 \N 44625 5 0005978 \N 44626 5 0052312 \N 44627 5 0019438 \N 44628 5 0006172 \N 44629 5 0051571 \N 44630 5 0006823 \N 44631 4 kd \N 44632 5 0032291 \N 44633 5 0048263 \N 44634 5 0044344 \N 44635 5 0000045 \N 44636 3 9412464 \N 44637 5 0048060 \N 44638 5 0048063 \N 44639 5 0071488 \N 44640 5 0046763 \N 44641 5 0015870 \N 44642 5 0009196 \N 44643 5 0014047 \N 44644 5 0051915 \N 44645 5 0002034 \N 44646 5 0060731 \N 44647 5 0060384 \N 44648 5 0002074 \N 44649 100 0001271 \N 44650 3 16638982 \N 44651 5 0070351 \N 44652 5 0015879 \N 44653 5 0051615 \N 44654 5 0010507 \N 44655 5 0046236 \N 44656 5 0060555 \N 44657 5 0051095 \N 44658 5 0018962 \N 44659 97 ppa \N 44660 5 0045091 \N 44661 5 0061084 \N 44662 5 0060968 \N 44663 5 0002869 \N 44664 5 0006107 \N 44665 5 0051193 \N 44666 5 0003354 \N 44667 5 0018149 \N 44668 5 0060664 \N 44669 3 17336109 \N 44670 5 0052026 \N 44671 5 0045691 \N 44672 5 0003014 \N 44673 5 0060982 \N 44674 5 0021592 \N 44675 86 0683400078 \N 44676 5 0070972 \N 44677 5 0007250 \N 44678 3 12773372 \N 44679 5 0051206 \N 44680 5 0006939 \N 44681 5 0031652 \N 44682 5 0043331 \N 44683 5 0006913 \N 44684 5 0000063 \N 44685 5 0003323 \N 44686 91 0000169 \N 44687 5 0052006 \N 44688 5 0015840 \N 44689 5 0042753 \N 44690 5 2000005 \N 44691 5 0070199 \N 44692 5 0048002 \N 44693 5 0070948 \N 44694 5 0018952 \N 44695 94 //umbbd.ahc.umn.edu/pthn/pthn_map.html \N 44696 97 pthn \N 44697 5 0033378 \N 44698 5 0014888 \N 44699 5 0050922 \N 44700 5 0019217 \N 44701 5 0006632 \N 44702 5 0010358 \N 44703 3 16971475 \N 44704 5 0060756 \N 44705 5 0001569 \N 44706 5 0000960 \N 44707 5 0003322 \N 44708 5 0010060 \N 44709 5 0033611 \N 44710 88 30623 \N 44711 5 0048675 \N 44712 5 0010459 \N 44713 5 0044054 \N 44714 5 0048463 \N 44715 5 0048432 \N 44716 5 0033493 \N 44717 5 0032872 \N 44718 5 0071868 \N 44719 88 35375 \N 44720 5 0006576 \N 44721 5 0035388 \N 44722 5 0055069 \N 44723 5 0060673 \N 44724 3 16916377 \N 44725 5 0060299 \N 44726 5 0015916 \N 44727 5 0009234 \N 44728 5 0009218 \N 44729 5 0010081 \N 44730 5 2000830 \N 44731 5 0022898 \N 44732 4 mtg_transport \N 44733 5 0071642 \N 44734 5 0051511 \N 44735 5 0052177 \N 44736 5 0006069 \N 44737 87 PWY66-161 \N 44738 87 PWY66-162 \N 44739 87 PWY66-21 \N 44740 5 0072143 \N 44741 5 0034484 \N 44742 88 16634 \N 44743 5 0032218 \N 44744 3 16204239 \N 44745 5 0048395 \N 44746 5 0045749 \N 44747 5 0042310 \N 44748 86 0192800752 \N 44749 5 0045319 \N 44750 5 0048528 \N 44751 5 0032625 \N 44752 5 0033091 \N 44753 5 2000374 \N 44754 5 0032481 \N 44755 5 0032986 \N 44756 5 0046435 \N 44757 5 0001990 \N 44758 5 0007379 \N 44759 5 0046224 \N 44760 5 0007451 \N 44761 3 9374402 \N 44762 5 0052468 \N 44763 5 0031047 \N 44764 3 15020054 \N 44765 5 0048208 \N 44766 5 0010122 \N 44767 5 0071273 \N 44768 88 17303 \N 44769 5 0075213 \N 44770 5 0009717 \N 44771 5 0072378 \N 44772 5 0060563 \N 44773 5 0032891 \N 44774 5 0010225 \N 44775 5 0042421 \N 44776 5 0006125 \N 44777 5 0061034 \N 44778 5 0007600 \N 44779 5 0018196 \N 44780 5 0075254 \N 44781 5 0008626 \N 44782 3 17158907 \N 44783 5 0003029 \N 44784 5 0015880 \N 44785 5 0034517 \N 44786 3 18391941 \N 44787 5 0060596 \N 44788 5 0042180 \N 44789 86 0787650153 \N 44790 5 0002630 \N 44791 5 0044083 \N 44792 5 0035733 \N 44793 91 0000632 \N 44794 5 0046642 \N 44795 5 0090279 \N 44796 5 0052541 \N 44797 5 0046164 \N 44798 88 30879 \N 44799 5 0032816 \N 44800 5 0071828 \N 44801 3 16373604 \N 44802 5 0061173 \N 44803 5 0032759 \N 44804 5 0031440 \N 44805 5 0043122 \N 44806 5 0021717 \N 44807 5 0015770 \N 44808 5 0043933 \N 44809 5 0034600 \N 44810 5 0075283 \N 44811 5 0032382 \N 44812 5 0072488 \N 44813 5 0000956 \N 44814 5 0032821 \N 44815 5 0060254 \N 44816 5 2000528 \N 44817 5 0033027 \N 44818 5 0052181 \N 44819 5 0003159 \N 44820 5 0060887 \N 44821 5 0035536 \N 44822 5 0061164 \N 44823 5 0002355 \N 44824 5 0046374 \N 44825 5 0048259 \N 44826 5 0009101 \N 44827 5 0060209 \N 44828 5 0060822 \N 44829 5 0007380 \N 44830 5 0052040 \N 44831 5 0052152 \N 44832 5 0046942 \N 44833 5 0043693 \N 44834 88 35187 \N 44835 5 0035010 \N 44836 3 11846478 \N 44837 3 12225920 \N 44838 5 0030435 \N 44839 86 0072992913 \N 44840 5 0006875 \N 44841 5 0060728 \N 44842 5 0021630 \N 44843 5 0070302 \N 44844 5 0021672 \N 44845 5 0006679 \N 44846 5 0034264 \N 44847 3 18216168 \N 44848 5 0048641 \N 44849 5 0061325 \N 44850 5 0050725 \N 44851 5 0051714 \N 44852 5 0001904 \N 44853 5 0000904 \N 44854 5 0045856 \N 44855 5 0045766 \N 44856 5 0035685 \N 44857 91 0000912 \N 44858 5 0032337 \N 44859 5 0048580 \N 44860 5 0060781 \N 44861 5 0072522 \N 44862 5 0048563 \N 44863 5 0002176 \N 44864 5 0035019 \N 44865 5 2000500 \N 44866 5 0006040 \N 44867 5 0010707 \N 44868 5 0051848 \N 44869 5 0003327 \N 44870 5 0070542 \N 44871 88 35366 \N 44872 4 lp \N 44873 5 0035008 \N 44874 5 0021887 \N 44875 5 0090193 \N 44876 5 0031945 \N 44877 5 0043063 \N 44878 5 0018350 \N 44879 5 2000369 \N 44880 5 0046386 \N 44881 5 0052127 \N 44882 5 0016114 \N 44883 5 0002411 \N 44884 5 0046216 \N 44885 5 0071662 \N 44886 5 2000712 \N 44887 5 2000224 \N 44888 5 0045938 \N 44889 5 0060678 \N 44890 5 0042394 \N 44891 5 0042537 \N 44892 88 22712 \N 44893 5 0048615 \N 44894 5 0046984 \N 44895 5 0019935 \N 44896 5 0035630 \N 44897 5 0021793 \N 44898 5 2000221 \N 44899 5 0009266 \N 44900 5 0034241 \N 44901 5 0046849 \N 44902 5 0031497 \N 44903 94 //www.infobiogen.fr/services/chromcancer/IntroItems/ChromatinEducEng.html \N 44904 5 0018410 \N 44905 5 0051302 \N 44906 5 0045840 \N 44907 5 0030432 \N 44908 5 0035873 \N 44909 5 0048668 \N 44910 5 0033194 \N 44911 88 35923 \N 44912 5 0009938 \N 44913 5 0045072 \N 44914 5 0030399 \N 44915 5 0075069 \N 44916 5 0032271 \N 44917 5 0070730 \N 44918 5 0045201 \N 44919 5 0043341 \N 44920 5 0043344 \N 44921 5 0007419 \N 44922 94 //users.rcn.com/jkimball.ma.ultranet/BiologyPages/S/Spemann.html \N 44923 5 0016570 \N 44924 5 0052066 \N 44925 5 0007094 \N 44926 3 12360190 \N 44927 5 0048095 \N 44928 5 0032462 \N 44929 5 0033618 \N 44930 5 0019265 \N 44931 5 2000880 \N 44932 5 0002331 \N 44933 5 0031920 \N 44934 5 0044235 \N 44935 5 0035881 \N 44936 91 0000561 \N 44937 5 0009062 \N 44938 5 0009108 \N 44939 5 0072114 \N 44940 5 0046275 \N 44941 5 0032729 \N 44942 5 0010957 \N 44943 5 0071222 \N 44944 5 0032278 \N 44945 5 0060261 \N 44946 5 0015798 \N 44947 5 0010767 \N 44948 5 0018359 \N 44949 5 0018385 \N 44950 89 AA0266 \N 44951 5 0035765 \N 44952 3 21262462 \N 44953 5 0060320 \N 44954 5 0001403 \N 44955 3 9728395 \N 44956 5 0060798 \N 44957 5 0001581 \N 44958 5 0072498 \N 44959 5 0000011 \N 44960 3 10873824 \N 44961 3 14616069 \N 44962 5 0000738 \N 44963 5 0002052 \N 44964 5 0021538 \N 44965 5 0030825 \N 44966 5 0052512 \N 44967 5 0097093 \N 44968 3 19729090 \N 44969 5 0042137 \N 44970 5 0006972 \N 44971 3 12142009 \N 44972 5 0060238 \N 44973 5 2000126 \N 44974 5 0043303 \N 44975 5 0032952 \N 44976 5 0018413 \N 44977 89 AA0291 \N 44978 5 2000936 \N 44979 5 0075338 \N 44980 5 0021659 \N 44981 5 0014915 \N 44982 5 0031564 \N 44983 86 0198577788 \N 44984 3 12456320 \N 44985 5 2000812 \N 44986 5 0031321 \N 44987 3 14702385 \N 44988 5 0051493 \N 44989 5 0044033 \N 44990 5 0006249 \N 44991 5 0015789 \N 44992 5 0050909 \N 44993 5 0009864 \N 44994 4 jy \N 44995 5 0032233 \N 44996 5 0045945 \N 44997 5 0071382 \N 44998 5 2000161 \N 44999 5 0010575 \N 45000 5 0002527 \N 45001 5 0090004 \N 45002 5 0090088 \N 45003 5 0035836 \N 45004 88 23943 \N 45005 5 0042525 \N 45006 5 0044031 \N 45007 5 0019061 \N 45008 5 0052194 \N 45009 5 0042119 \N 45010 5 0090231 \N 45011 5 0021958 \N 45012 3 12867698 \N 45013 5 0045679 \N 45014 5 0019755 \N 45015 5 0016353 \N 45016 5 0080179 \N 45017 5 0018340 \N 45018 89 AA0264 \N 45019 5 0046889 \N 45020 5 0007219 \N 45021 5 0030179 \N 45022 5 0070291 \N 45023 88 52640 \N 45024 3 14634025 \N 45025 3 15878693 \N 45026 5 0000762 \N 45027 5 0042794 \N 45028 86 0321000382 \N 45029 5 0009878 \N 45030 5 0090057 \N 45031 5 0052073 \N 45032 5 0014054 \N 45033 5 0030011 \N 45034 5 0030013 \N 45035 5 0030469 \N 45036 5 0042593 \N 45037 5 0060840 \N 45038 5 0009604 \N 45039 5 0018221 \N 45040 89 AA0080 \N 45041 5 0042342 \N 45042 5 0016201 \N 45043 5 0033302 \N 45044 88 28299 \N 45045 88 28529 \N 45046 87 PWY-5321 \N 45047 5 0031666 \N 45048 5 0051328 \N 45049 5 0042345 \N 45050 5 0019617 \N 45051 87 P184-PWY \N 45052 5 0031445 \N 45053 5 0003077 \N 45054 5 0021998 \N 45055 5 0070244 \N 45056 5 0009172 \N 45057 5 0009204 \N 45058 5 0050676 \N 45059 5 0032953 \N 45060 5 0048058 \N 45061 5 0075302 \N 45062 5 0071783 \N 45063 5 2000903 \N 45064 5 0033087 \N 45065 5 2000307 \N 45066 5 0070150 \N 45067 5 0002844 \N 45068 5 0070296 \N 45069 5 0010529 \N 45070 5 0072270 \N 45071 5 0051225 \N 45072 5 0051226 \N 45073 5 0051227 \N 45074 4 expert_rg \N 45075 5 0090342 \N 45076 5 0033008 \N 45077 5 0061159 \N 45078 5 0051659 \N 45079 5 0006003 \N 45080 5 0052337 \N 45081 5 0031915 \N 45082 5 0080172 \N 45083 5 0070869 \N 45084 5 0002781 \N 45085 5 0060975 \N 45086 5 0030843 \N 45087 5 0044074 \N 45088 5 0009733 \N 45089 5 0045068 \N 45090 3 7880383 \N 45091 5 0001945 \N 45092 106 0001473 \N 45093 5 0071312 \N 45094 5 0070954 \N 45095 5 0060337 \N 45096 5 0033538 \N 45097 87 PWY-5343 \N 45098 5 0021996 \N 45099 5 0070595 \N 45100 5 0007494 \N 45101 106 0001045 \N 45102 5 0060695 \N 45103 5 0044145 \N 45104 5 2001008 \N 45105 5 0009627 \N 45106 86 052143641 \N 45107 5 0010195 \N 45108 5 0002194 \N 45109 91 0000182 \N 45110 3 9794819 \N 45111 5 0072148 \N 45112 5 0043163 \N 45113 5 2000358 \N 45114 5 0031061 \N 45115 5 0003261 \N 45116 5 0015791 \N 45117 5 0045530 \N 45118 5 0001834 \N 45119 5 0000320 \N 45120 5 0002912 \N 45121 5 0035593 \N 45122 3 19906850 \N 45123 5 0015753 \N 45124 5 0046187 \N 45125 5 0031345 \N 45126 5 0042639 \N 45127 5 0072390 \N 45128 88 15882 \N 45129 5 0006672 \N 45130 5 0019382 \N 45131 5 0042338 \N 45132 5 0045684 \N 45133 5 0060624 \N 45134 5 0060640 \N 45135 5 0048167 \N 45136 5 0071038 \N 45137 5 0060947 \N 45138 5 0008406 \N 45139 5 0018140 \N 45140 89 AA0244 \N 45141 5 2000156 \N 45142 5 0032209 \N 45143 5 0043710 \N 45144 5 0061228 \N 45145 5 0001024 \N 45146 5 0039009 \N 45147 3 10535314 \N 45148 3 18226983 \N 45149 110 0001015 \N 45150 5 0009637 \N 45151 5 2000380 \N 45152 5 0002888 \N 45153 5 0055111 \N 45154 5 0060764 \N 45155 5 0052481 \N 45156 5 2000557 \N 45157 5 0060869 \N 45158 5 0048437 \N 45159 5 0048433 \N 45160 5 0048731 \N 45161 5 0072215 \N 45162 5 0046759 \N 45163 5 0003426 \N 45164 5 0090354 \N 45165 5 0061252 \N 45166 5 0021904 \N 45167 5 0035435 \N 45168 5 0043475 \N 45169 5 2000806 \N 45170 5 0051282 \N 45171 5 0051682 \N 45172 5 0034640 \N 45173 3 12972644 \N 45174 5 0033387 \N 45175 5 0075115 \N 45176 5 0019698 \N 45177 5 0070268 \N 45178 3 18846107 \N 45179 5 0016081 \N 45180 3 15217342 \N 45181 5 0006227 \N 45182 5 0070183 \N 45183 5 0010826 \N 45184 5 0002481 \N 45185 5 0043619 \N 45186 5 0072483 \N 45187 5 0035921 \N 45188 3 9182671 \N 45189 5 0018122 \N 45190 89 AA0231 \N 45191 5 0001993 \N 45192 5 0003376 \N 45193 5 0000758 \N 45194 5 0070157 \N 45195 5 0009273 \N 45196 5 0006439 \N 45197 86 019879276X \N 45198 5 0052074 \N 45199 5 0017007 \N 45200 5 0019667 \N 45201 5 0070126 \N 45202 94 //mitogenome.org/index.php/Genetic_Code_of_mitochondria \N 45203 5 0019433 \N 45204 5 0033479 \N 45205 5 0046473 \N 45206 5 0035479 \N 45207 3 11861480 \N 45208 5 0043642 \N 45209 88 28368 \N 45210 5 0018146 \N 45211 89 AA0247 \N 45212 5 0010830 \N 45213 5 0009256 \N 45214 5 0052416 \N 45215 5 0071976 \N 45216 5 0035858 \N 45217 5 0030201 \N 45218 5 0035169 \N 45219 3 11921077 \N 45220 3 8174791 \N 45221 5 0030924 \N 45222 5 0009134 \N 45223 5 0021689 \N 45224 5 0060150 \N 45225 5 0030949 \N 45226 5 0052377 \N 45227 5 0060814 \N 45228 5 0080092 \N 45229 3 19208902 \N 45230 5 0021827 \N 45231 5 0046898 \N 45232 88 27641 \N 45233 5 2000033 \N 45234 5 2000403 \N 45235 5 0061121 \N 45236 5 0051293 \N 45237 5 0002281 \N 45238 5 0051496 \N 45239 5 0052524 \N 45240 5 0052322 \N 45241 5 0046015 \N 45242 5 0071374 \N 45243 5 0010739 \N 45244 5 0010072 \N 45245 5 0052267 \N 45246 5 0032828 \N 45247 5 0007540 \N 45248 5 0018026 \N 45249 89 AA0076 \N 45250 5 0030717 \N 45251 3 11700288 \N 45252 3 18039935 \N 45253 5 2000981 \N 45254 5 0003359 \N 45255 5 0019335 \N 45256 5 0051812 \N 45257 5 0003106 \N 45258 5 0033158 \N 45259 5 0046432 \N 45260 5 0018307 \N 45261 5 0003310 \N 45262 3 11076772 \N 45263 5 0008103 \N 45264 5 0048129 \N 45265 3 11807042 \N 45266 5 0070349 \N 45267 5 2000533 \N 45268 5 0030513 \N 45269 5 0010731 \N 45270 5 0042867 \N 45271 5 0018253 \N 45272 89 AA0187 \N 45273 89 AA0188 \N 45274 5 0052147 \N 45275 5 0050763 \N 45276 5 0046041 \N 45277 5 0043977 \N 45278 5 0021652 \N 45279 5 0072321 \N 45280 3 20378773 \N 45281 5 0070637 \N 45282 88 47896 \N 45283 5 0035707 \N 45284 91 0000546 \N 45285 5 0050830 \N 45286 5 0010129 \N 45287 5 0017142 \N 45288 5 0001127 \N 45289 5 0003271 \N 45290 5 0046640 \N 45291 5 0046685 \N 45292 5 0061190 \N 45293 5 0007349 \N 45294 5 0009796 \N 45295 5 0060481 \N 45296 5 0072058 \N 45297 5 0045219 \N 45298 5 0040030 \N 45299 3 10611975 \N 45300 3 11050225 \N 45301 3 11447696 \N 45302 3 11685242 \N 45303 3 11782551 \N 45304 5 0007056 \N 45305 5 0021834 \N 45306 5 0002048 \N 45307 3 15317763 \N 45308 5 2000142 \N 45309 5 0060531 \N 45310 5 0002794 \N 45311 5 0046779 \N 45312 3 11598019 \N 45313 5 0035572 \N 45314 5 0048321 \N 45315 5 0003248 \N 45316 5 0071461 \N 45317 5 0042244 \N 45318 5 0032025 \N 45319 5 0045876 \N 45320 5 0051841 \N 45321 5 0002705 \N 45322 5 0009181 \N 45323 5 0018255 \N 45324 89 AA0206 \N 45325 5 0051089 \N 45326 3 12714508 \N 45327 5 0072675 \N 45328 91 0000092 \N 45329 91 0000779 \N 45330 3 12713016 \N 45331 5 0071830 \N 45332 5 0048910 \N 45333 5 2000792 \N 45334 5 0080121 \N 45335 3 18923018 \N 45336 5 0032107 \N 45337 5 0060006 \N 45338 3 11784757 \N 45339 5 0022400 \N 45340 5 0035233 \N 45341 3 12885551 \N 45342 5 0055046 \N 45343 5 0030092 \N 45344 5 0002522 \N 45345 5 0002737 \N 45346 5 0052522 \N 45347 5 0061146 \N 45348 5 0002231 \N 45349 3 15922649 \N 45350 5 0000271 \N 45351 5 0048876 \N 45352 5 0006683 \N 45353 5 0035180 \N 45354 3 12848927 \N 45355 3 12956960 \N 45356 5 0034307 \N 45357 5 0033239 \N 45358 5 0021947 \N 45359 5 0000352 \N 45360 5 0051383 \N 45361 5 0044314 \N 45362 3 19345326 \N 45363 5 0040022 \N 45364 5 0016575 \N 45365 5 0052454 \N 45366 5 0002832 \N 45367 5 0070305 \N 45368 5 0035340 \N 45369 88 17596 \N 45370 3 19135251 \N 45371 5 0035329 \N 45372 3 17318211 \N 45373 3 18328423 \N 45374 5 0002274 \N 45375 5 0010527 \N 45376 5 0009047 \N 45377 3 11498577 \N 45378 5 0006929 \N 45379 5 0097049 \N 45380 91 0000100 \N 45381 3 14523086 \N 45382 5 0042836 \N 45383 5 0048810 \N 45384 3 11494318 \N 45385 5 0042360 \N 45386 5 0050435 \N 45387 5 0072401 \N 45388 5 0090003 \N 45389 5 0015699 \N 45390 5 0030820 \N 45391 5 0019377 \N 45392 88 33563 \N 45393 5 0014845 \N 45394 100 0002559 \N 45395 5 0042063 \N 45396 5 0046678 \N 45397 5 0080165 \N 45398 3 19470642 \N 45399 5 0014024 \N 45400 3 15327780 \N 45401 5 0006700 \N 45402 5 0050657 \N 45403 5 0034763 \N 45404 5 0051443 \N 45405 93 6.3.2.19 \N 45406 5 0034221 \N 45407 5 0055068 \N 45408 5 0071726 \N 45409 5 0002115 \N 45410 3 11120592 \N 45411 3 17956991 \N 45412 5 0052260 \N 45413 5 0031645 \N 45414 5 0002839 \N 45415 5 0046425 \N 45416 5 0044335 \N 45417 5 0019595 \N 45418 5 0032538 \N 45419 5 0007595 \N 45420 5 0070549 \N 45421 3 18771919 \N 45422 5 0051965 \N 45423 5 0030181 \N 45424 5 0006548 \N 45425 5 0006281 \N 45426 3 11563486 \N 45427 5 0051563 \N 45428 5 0072576 \N 45429 5 0071586 \N 45430 5 0002851 \N 45431 5 0021938 \N 45432 5 0046138 \N 45433 5 0016241 \N 45434 5 0002509 \N 45435 3 16460922 \N 45436 5 0002317 \N 45437 5 0030490 \N 45438 5 0000195 \N 45439 5 0050813 \N 45440 5 0060235 \N 45441 5 0010771 \N 45442 5 2000151 \N 45443 5 0072241 \N 45444 5 2000387 \N 45445 5 0039527 \N 45446 5 0008228 \N 45447 5 0045631 \N 45448 5 0070146 \N 45449 5 0050938 \N 45450 5 0006523 \N 45451 5 0006182 \N 45452 5 0050744 \N 45453 89 AA0353 \N 45454 5 0018323 \N 45455 89 AA0262 \N 45456 5 0060055 \N 45457 3 15039218 \N 45458 5 0009244 \N 45459 5 0061126 \N 45460 5 0043048 \N 45461 5 0048687 \N 45462 5 0032803 \N 45463 5 0075205 \N 45464 5 0042700 \N 45465 5 0072200 \N 45466 5 0042769 \N 45467 5 0035956 \N 45468 3 9342405 \N 45469 5 0006448 \N 45470 5 2000162 \N 45471 5 0061286 \N 45472 5 0052062 \N 45473 5 0021815 \N 45474 5 0042159 \N 45475 5 0090350 \N 45476 5 0021758 \N 45477 5 0007340 \N 45478 3 3886029 \N 45479 5 0000079 \N 45480 5 2000809 \N 45481 5 0051976 \N 45482 87 PWY-3081 \N 45483 5 0032125 \N 45484 3 10503190 \N 45485 5 0006997 \N 45486 5 0048287 \N 45487 5 0007560 \N 45488 5 0007452 \N 45489 5 0035901 \N 45490 3 20203532 \N 45491 5 0051357 \N 45492 3 10852900 \N 45493 3 11259412 \N 45494 3 15491166 \N 45495 89 AA0377 \N 45496 5 0034146 \N 45497 5 0035969 \N 45498 3 11533229 \N 45499 5 0016973 \N 45500 5 0015742 \N 45501 5 0030543 \N 45502 5 0006890 \N 45503 5 0048220 \N 45504 3 16510524 \N 45505 5 0002310 \N 45506 5 0016259 \N 45507 5 0071441 \N 45508 5 0046874 \N 45509 5 0010609 \N 45510 5 0070814 \N 45511 88 16136 \N 45512 5 0001120 \N 45513 5 0052443 \N 45514 5 0009124 \N 45515 5 0006404 \N 45516 5 0051553 \N 45517 5 0051041 \N 45518 5 0075132 \N 45519 5 0034095 \N 45520 5 0019745 \N 45521 5 0019695 \N 45522 5 0000718 \N 45523 5 0043585 \N 45524 5 0033248 \N 45525 5 0010591 \N 45526 5 0002288 \N 45527 3 15771592 \N 45528 5 0051837 \N 45529 5 0034514 \N 45530 3 17849004 \N 45531 5 0035726 \N 45532 91 0000049 \N 45533 5 0014871 \N 45534 5 0070166 \N 45535 3 16931858 \N 45536 5 0061048 \N 45537 5 0019251 \N 45538 5 0046908 \N 45539 5 0061299 \N 45540 5 0060930 \N 45541 5 0070221 \N 45542 87 P222-PWY \N 45543 5 0071335 \N 45544 3 16086254 \N 45545 5 0019375 \N 45546 5 0018195 \N 45547 5 0072043 \N 45548 5 0007045 \N 45549 5 0070582 \N 45550 4 cb \N 45551 5 0019400 \N 45552 5 0014878 \N 45553 5 0007485 \N 45554 5 0052306 \N 45555 5 0001807 \N 45556 5 0046878 \N 45557 5 0002613 \N 45558 5 0052049 \N 45559 5 0051520 \N 45560 5 0006035 \N 45561 5 0046595 \N 45562 5 0048121 \N 45563 5 0010401 \N 45564 5 0043610 \N 45565 5 0060830 \N 45566 5 2000093 \N 45567 5 0006222 \N 45568 5 0007127 \N 45569 3 9334324 \N 45570 5 0021920 \N 45571 5 0003266 \N 45572 5 0030034 \N 45573 5 0070857 \N 45574 5 0046350 \N 45575 5 0021585 \N 45576 5 0070827 \N 45577 5 0042221 \N 45578 5 0003317 \N 45579 5 0002614 \N 45580 5 0002589 \N 45581 5 0003435 \N 45582 5 0090272 \N 45583 5 0031365 \N 45584 5 0018409 \N 45585 5 0010806 \N 45586 5 0035027 \N 45587 5 0051222 \N 45588 5 0045210 \N 45589 94 //www.copewithcytokines.de/ \N 45590 5 0021931 \N 45591 5 2000396 \N 45592 5 0033157 \N 45593 5 0003378 \N 45594 5 0032785 \N 45595 5 2000748 \N 45596 5 0031525 \N 45597 5 0071317 \N 45598 5 0097120 \N 45599 3 21525273 \N 45600 5 0070084 \N 45601 4 imk \N 45602 5 0050968 \N 45603 5 0015951 \N 45604 5 0043289 \N 45740 89 AA0145 \N 45605 94 //www.msu.edu/~schwart1/apocarotenoids.htm \N 45606 5 0006533 \N 45607 5 0033373 \N 45608 5 0014885 \N 45609 5 0035304 \N 45610 5 0052330 \N 45611 5 0052518 \N 45612 5 0046464 \N 45613 5 0002779 \N 45614 5 0015782 \N 45615 5 0050759 \N 45616 5 0051289 \N 45617 5 0019636 \N 45618 87 P483-PWY \N 45619 5 0017038 \N 45620 5 0033253 \N 45621 5 0035295 \N 45622 3 12526790 \N 45623 5 0032571 \N 45624 5 0051111 \N 45625 5 0035794 \N 45626 3 12546810 \N 45627 5 0035653 \N 45628 3 12802059 \N 45629 3 16162817 \N 45630 5 0016093 \N 45631 5 0000072 \N 45632 5 0035271 \N 45633 3 11223816 \N 45634 3 9584098 \N 45635 5 0006079 \N 45636 5 0002422 \N 45637 5 0003198 \N 45638 5 0000337 \N 45639 5 0070574 \N 45640 5 0071932 \N 45641 3 19406929 \N 45642 5 0010839 \N 45643 5 0072258 \N 45644 5 0034180 \N 45645 5 0030072 \N 45646 5 0032320 \N 45647 5 0046897 \N 45648 89 AA0338 \N 45649 5 0060985 \N 45650 5 0051098 \N 45651 5 0060753 \N 45652 5 0030278 \N 45653 5 0060558 \N 45654 5 0018971 \N 45655 5 0043409 \N 45656 5 0015869 \N 45657 5 0060278 \N 45658 5 0048333 \N 45659 5 0002766 \N 45660 5 0035314 \N 45661 3 15269788 \N 45662 5 0019235 \N 45663 94 //www.people.vcu.edu/~mikuleck/ssspain/ \N 45664 94 //www.spine-health.com/ \N 45665 5 0006304 \N 45666 5 0007389 \N 45667 86 0521436125 \N 45668 5 0002579 \N 45669 5 0034695 \N 45670 5 0045477 \N 45671 3 11973306 \N 45672 5 0019652 \N 45673 87 PROPFERM-PWY \N 45674 5 0045563 \N 45675 5 0031452 \N 45676 5 0000041 \N 45677 5 0034463 \N 45678 5 0030725 \N 45679 5 0042547 \N 45680 5 0050937 \N 45681 5 0035799 \N 45682 3 17881463 \N 45683 5 0055129 \N 45684 5 0000461 \N 45685 5 0018366 \N 45686 5 2000910 \N 45687 5 0023050 \N 45688 5 0031319 \N 45689 5 0006330 \N 45690 5 0006331 \N 45691 5 0006332 \N 45692 5 0032061 \N 45693 5 0018006 \N 45694 5 0007551 \N 45695 5 0034090 \N 45696 5 0015937 \N 45697 5 0006764 \N 45698 5 0034453 \N 45699 5 0007393 \N 45700 5 0034330 \N 45701 5 2000574 \N 45702 5 0042334 \N 45703 3 11029423 \N 45704 5 0019547 \N 45705 5 0018427 \N 45706 5 0052272 \N 45707 5 0002266 \N 45708 3 15606789 \N 45709 5 0042447 \N 45710 88 24621 \N 45711 5 0009453 \N 45712 5 0003183 \N 45713 5 2000015 \N 45714 5 0033072 \N 45715 88 28001 \N 45716 5 0007398 \N 45717 5 0071415 \N 45718 5 2000548 \N 45719 5 0070375 \N 45720 3 16376520 \N 45721 3 16880823 \N 45722 5 0090205 \N 45723 5 0022616 \N 45724 5 0045884 \N 45725 5 0035999 \N 45726 3 1825999 \N 45727 111 UPA00193 \N 45728 5 0050915 \N 45729 5 0001808 \N 45730 5 0075094 \N 45731 5 0072358 \N 45732 106 0004535 \N 45733 5 0051039 \N 45734 5 0006139 \N 45735 5 0055134 \N 45736 5 0048541 \N 45737 5 0009167 \N 45738 5 0006729 \N 45739 5 0018296 \N 45741 5 0042542 \N 45742 5 0050793 \N 45743 5 0048790 \N 45744 5 0045889 \N 45745 5 0046828 \N 45746 5 0016111 \N 45747 5 0030216 \N 45748 5 0010034 \N 45749 5 0050888 \N 45750 86 0721619908 \N 45751 5 0042403 \N 45752 5 0023045 \N 45753 5 0006173 \N 45754 5 0046504 \N 45755 5 0043635 \N 45756 3 16535687 \N 45757 5 0042676 \N 45758 5 0007466 \N 45759 5 0070344 \N 45760 5 0019469 \N 45761 5 0035202 \N 45762 3 11992723 \N 45763 5 0019123 \N 45764 5 0018087 \N 45765 5 0018369 \N 45766 89 AA0193 \N 45767 5 0040010 \N 45768 5 0032780 \N 45769 5 0051971 \N 45770 5 0002716 \N 45771 5 0030102 \N 45772 5 0090232 \N 45773 5 0002387 \N 45774 5 0034176 \N 45775 5 0042357 \N 45776 88 45931 \N 45777 5 0018945 \N 45778 5 2000244 \N 45779 5 0090097 \N 45780 5 0018039 \N 45781 89 AA0086 \N 45782 5 0030282 \N 45783 5 0021701 \N 45784 5 0048572 \N 45785 5 0050945 \N 45786 5 0051650 \N 45787 5 0007147 \N 45788 5 0052329 \N 45789 5 0042160 \N 45790 5 0010026 \N 45791 5 0048271 \N 45792 3 9367433 \N 45793 5 0007628 \N 45794 86 0198606907 \N 45795 5 2000906 \N 45796 5 0034418 \N 45797 5 0034128 \N 45798 5 0048148 \N 45799 5 0010641 \N 45800 5 0097070 \N 45801 4 hw \N 45802 5 0009151 \N 45803 5 0009558 \N 45804 5 0009797 \N 45805 86 047186840X \N 45806 5 0014882 \N 45807 5 0060037 \N 45808 5 0055080 \N 45809 5 2000171 \N 45810 5 0072207 \N 45811 5 0044276 \N 45812 5 0016070 \N 45813 5 2000344 \N 45814 5 0010365 \N 45815 5 0015810 \N 45816 5 0071500 \N 45817 5 0075090 \N 45818 5 0055009 \N 45819 5 0019626 \N 45820 5 0032673 \N 45821 5 0034436 \N 45822 5 0032924 \N 45823 5 0018081 \N 45824 89 AA0110 \N 45825 89 AA0111 \N 45826 89 AA0112 \N 45827 5 2000879 \N 45828 5 2000890 \N 45829 5 0042620 \N 45830 5 0048919 \N 45831 5 0021712 \N 45832 5 0034248 \N 45833 5 0045666 \N 45834 5 0003396 \N 45835 5 0002741 \N 45836 5 0048281 \N 45837 5 0051796 \N 45838 5 0021937 \N 45839 5 0052082 \N 45840 5 0032667 \N 45841 5 0034608 \N 45842 3 18050467 \N 45843 5 0002678 \N 45844 5 0052493 \N 45845 5 0075241 \N 45846 5 0071805 \N 45847 5 0048290 \N 45848 3 12370374 \N 45849 3 2113175 \N 45850 3 9186655 \N 45851 5 0034118 \N 45852 5 0046070 \N 45853 5 2000481 \N 45854 5 0052367 \N 45855 5 0015015 \N 45856 5 0043575 \N 45857 5 0071329 \N 45858 5 2001051 \N 45859 5 0002749 \N 45860 3 15596122 \N 45861 5 0071026 \N 45862 5 0007623 \N 45863 5 0050895 \N 45864 5 0035754 \N 45865 91 0000236 \N 45866 5 0051124 \N 45867 5 0000088 \N 45868 5 0061188 \N 45869 3 10388812 \N 45870 5 0022401 \N 45871 5 0045997 \N 45872 5 0010921 \N 45873 5 0021641 \N 45874 5 0075134 \N 45875 5 0061007 \N 45876 5 0035711 \N 45877 91 0000545 \N 45878 5 0001978 \N 45879 5 0070630 \N 45880 5 0075087 \N 45881 5 0010306 \N 45882 3 12754267 \N 45883 5 0033145 \N 45884 5 0032853 \N 45885 5 0006131 \N 45886 5 0039522 \N 45887 5 0072348 \N 45888 5 0000097 \N 45889 5 0070360 \N 45890 5 0007472 \N 45891 5 0070929 \N 45892 4 jh2 \N 45893 5 0046865 \N 45894 5 0035414 \N 45895 5 0032072 \N 45896 5 0021775 \N 45897 5 0045951 \N 45898 5 0002801 \N 45899 5 0007524 \N 45900 5 0042891 \N 45901 5 0035511 \N 45902 3 12594517 \N 45903 3 16482161 \N 45904 3 18775698 \N 45905 5 0034769 \N 45906 3 17301221 \N 45907 5 0021612 \N 45908 5 0097069 \N 45909 4 sjw \N 45910 3 9916872 \N 45911 5 0035696 \N 45912 91 0000576 \N 45913 3 10657654 \N 45914 5 2000655 \N 45915 5 0042451 \N 45916 5 0045627 \N 45917 5 0042494 \N 45918 5 0048516 \N 45919 5 0046074 \N 45920 5 0046046 \N 45921 5 0044005 \N 45922 5 0050941 \N 45923 5 0060344 \N 45924 5 0033629 \N 45925 5 0033685 \N 45926 5 0048825 \N 45927 102 0020030 \N 45928 5 2000038 \N 45929 5 0003034 \N 45930 5 0040031 \N 45931 5 0034048 \N 45932 5 0072314 \N 45933 5 0051251 \N 45934 5 0010996 \N 45935 5 0071699 \N 45936 5 0001310 \N 45937 5 0035882 \N 45938 3 7479775 \N 45939 3 8158250 \N 45940 3 9066270 \N 45941 5 2000348 \N 45942 5 2000929 \N 45943 5 0048350 \N 45944 5 0031382 \N 45945 3 14734532 \N 45946 5 0032858 \N 45947 5 0048617 \N 45948 5 0071709 \N 45949 5 2000647 \N 45950 5 0010663 \N 45951 5 0075166 \N 45952 5 2000498 \N 45953 5 0018072 \N 45954 3 2569467 \N 45955 89 AA0170 \N 45956 5 0006623 \N 45957 5 2000018 \N 45958 5 0072128 \N 45959 5 0042791 \N 45960 5 0001971 \N 45961 5 0006851 \N 45962 5 0075046 \N 45963 5 0042886 \N 45964 5 0045893 \N 45965 5 0043193 \N 45966 5 0045941 \N 45967 5 0061020 \N 45968 5 0019427 \N 45969 87 ACETATEUTIL-PWY \N 45970 5 0048329 \N 45971 5 0042399 \N 45972 3 11823218 \N 45973 5 0007575 \N 45974 5 0033037 \N 45975 5 0006649 \N 45976 5 0071492 \N 45977 5 0072433 \N 45978 5 0035383 \N 45979 88 51277 \N 45980 94 //encyclopedia.thefreedictionary.com/Thioester \N 45981 5 2000472 \N 45982 5 0061053 \N 45983 5 0031055 \N 45984 5 0071536 \N 45985 112 IPR014857 \N 45986 5 0090392 \N 45987 3 20485493 \N 45988 5 0032236 \N 45989 3 16582901 \N 45990 5 0061380 \N 45991 5 0080143 \N 45992 3 20018597 \N 45993 5 0031032 \N 45994 5 0032660 \N 45995 5 0018912 \N 45996 94 //www.speclab.com/compound/c106467.htm \N 45997 5 0046615 \N 45998 3 9927449 \N 45999 5 0090011 \N 46000 5 0071466 \N 46001 5 0032638 \N 46002 5 0001987 \N 46003 5 0048349 \N 46004 5 0071350 \N 46005 5 0048906 \N 46006 5 0051644 \N 46007 5 0009664 \N 46008 5 0019582 \N 46009 5 0046054 \N 46010 5 0052486 \N 46011 5 0002488 \N 46012 5 0001694 \N 46013 5 0001693 \N 46014 5 0002877 \N 46015 5 0007637 \N 46016 113 FBrf0044924 \N 46017 5 0052122 \N 46018 5 0060046 \N 46019 5 0007508 \N 46020 86 08779694238 \N 46021 5 0034199 \N 46022 5 0007364 \N 46023 5 0061004 \N 46024 5 0061221 \N 46025 5 0009772 \N 46026 86 0816017360 \N 46027 5 0060907 \N 46028 5 0080155 \N 46029 4 DHL \N 46030 3 20478994 \N 46031 5 0008057 \N 46032 5 0008059 \N 46033 5 0045318 \N 46034 5 0048751 \N 46035 3 9303295 \N 46036 5 0090093 \N 46037 5 0050714 \N 46038 5 0090062 \N 46039 5 0090130 \N 46040 5 0019088 \N 46041 5 0045782 \N 46042 5 0045653 \N 46043 5 0032885 \N 46044 5 0072603 \N 46045 5 0006018 \N 46046 5 0052136 \N 46047 5 0060465 \N 46048 5 0009129 \N 46049 5 0031203 \N 46050 3 12518217 \N 46051 3 8707814 \N 46052 5 0015722 \N 46053 5 0042759 \N 46054 5 0007261 \N 46055 3 12039028 \N 46056 5 0035588 \N 46057 5 0045143 \N 46058 5 0007061 \N 46059 5 0072408 \N 46060 5 0051210 \N 46061 5 0010270 \N 46062 3 16282331 \N 46063 5 0019081 \N 46064 5 0043217 \N 46065 5 0075156 \N 46066 5 0071512 \N 46067 5 0051081 \N 46068 5 0032415 \N 46069 5 2000061 \N 46070 5 0046649 \N 46071 5 0075182 \N 46072 5 0045375 \N 46073 5 0071516 \N 46074 5 0035931 \N 46075 88 25354 \N 46076 5 0043321 \N 46077 5 0052279 \N 46078 5 0019285 \N 46079 5 0001932 \N 46080 5 2000292 \N 46081 5 0019720 \N 46082 5 0051072 \N 46083 3 15173185 \N 46084 5 0051558 \N 46085 3 11402179 \N 46086 5 0001759 \N 46087 5 0072424 \N 46088 5 0002822 \N 46089 5 0002359 \N 46090 5 0060490 \N 46091 5 2000339 \N 46092 5 0006362 \N 46093 5 0003388 \N 46094 5 0051478 \N 46095 3 11562374 \N 46096 5 0090222 \N 46097 5 0030153 \N 46098 5 0035216 \N 46099 5 0022021 \N 46100 5 0071676 \N 46101 5 0038026 \N 46102 3 12827279 \N 46103 3 20223215 \N 46104 114 000013879 \N 46105 5 0072352 \N 46106 88 27093 \N 46107 5 0002562 \N 46108 3 16166509 \N 46109 5 0002692 \N 46110 5 0060516 \N 46111 5 0046143 \N 46112 5 0046018 \N 46113 5 0046094 \N 46114 5 0045349 \N 46115 5 0002084 \N 46116 5 0021699 \N 46117 5 0075189 \N 46118 5 0018062 \N 46119 89 AA0130 \N 46120 5 0007197 \N 46121 5 0060777 \N 46122 5 0006678 \N 46123 88 36500 \N 46124 5 0042725 \N 46125 88 26948 \N 46126 5 0035213 \N 46127 5 0001801 \N 46128 5 2000541 \N 46129 5 0014732 \N 46130 5 0006590 \N 46131 5 0032894 \N 46132 5 0014805 \N 46133 5 2000720 \N 46134 5 2000666 \N 46135 5 0090104 \N 46136 5 0010600 \N 46137 3 18287041 \N 46138 5 0016540 \N 46139 3 9335337 \N 46140 5 0052030 \N 46141 5 0034398 \N 46142 5 0015921 \N 46143 5 0030383 \N 46144 5 0060319 \N 46145 5 0007180 \N 46146 5 0070785 \N 46147 5 0003416 \N 46148 5 0071356 \N 46149 5 0000454 \N 46150 5 0072275 \N 46151 5 0035281 \N 46152 3 14744438 \N 46153 5 0002548 \N 46154 3 11696603 \N 46155 3 15173832 \N 46156 5 0034302 \N 46157 5 0071961 \N 46158 5 0032362 \N 46159 88 16238 \N 46160 5 0060369 \N 46161 5 0046098 \N 46162 5 0051249 \N 46163 5 0010887 \N 46164 5 0007121 \N 46165 5 0017184 \N 46166 5 0021665 \N 46167 5 0042353 \N 46168 5 0061136 \N 46169 5 0046402 \N 46170 5 0032772 \N 46171 5 0031623 \N 46172 3 15006537 \N 46173 3 19643732 \N 46174 5 0006013 \N 46175 5 0019857 \N 46176 5 0046495 \N 46177 88 15927 \N 46178 5 0001677 \N 46179 5 0010845 \N 46180 5 0034352 \N 46181 5 0060668 \N 46182 5 0018130 \N 46183 5 0075280 \N 46184 5 0019448 \N 46185 88 17561 \N 46186 5 0002608 \N 46187 5 0032898 \N 46188 5 0018262 \N 46189 5 0018161 \N 46190 5 0046303 \N 46191 5 0022603 \N 46192 5 0019506 \N 46193 5 0002745 \N 46194 5 0060746 \N 46195 5 0051259 \N 46196 5 0018884 \N 46197 5 0048631 \N 46198 3 15726494 \N 46199 3 15907921 \N 46200 5 0030263 \N 46201 5 0033566 \N 46202 5 0031275 \N 46203 5 0075104 \N 46204 5 0060033 \N 46205 5 0072155 \N 46206 5 0060809 \N 46207 5 0031292 \N 46208 5 0060306 \N 46209 5 0060998 \N 46210 5 2000768 \N 46211 5 0060458 \N 46212 5 0032229 \N 46213 5 0006907 \N 46214 5 0006908 \N 46215 5 0034079 \N 46216 86 0911910123 \N 46217 87 125-PWY \N 46218 87 BUTANEDIOL \N 46219 5 0046607 \N 46220 5 0002492 \N 46221 5 0006813 \N 46222 5 0015458 \N 46223 5 0032701 \N 46224 5 0010233 \N 46225 5 0006964 \N 46226 3 10973475 \N 46227 5 0046844 \N 46228 5 0046769 \N 46229 5 0052503 \N 46230 5 0060357 \N 46231 5 0071244 \N 46232 5 0090377 \N 46233 3 17905721 \N 46234 5 0002583 \N 46235 5 0015743 \N 46236 5 0052517 \N 46237 5 0042761 \N 46238 5 0006785 \N 46239 5 2000299 \N 46240 5 0051930 \N 46241 5 0001771 \N 46242 3 11244041 \N 46243 3 11376330 \N 46244 5 0048521 \N 46245 5 0015828 \N 46246 5 0070894 \N 46247 5 0043569 \N 46248 5 0032445 \N 46249 5 0010722 \N 46250 5 0045209 \N 46251 5 0021988 \N 46252 5 0007565 \N 46253 86 0192800825 \N 46254 5 0010969 \N 46255 5 0002206 \N 46256 3 14991701 \N 46257 5 0019574 \N 46258 5 0071672 \N 46259 5 0045568 \N 46260 5 0051860 \N 46261 5 0061079 \N 46262 5 0045423 \N 46263 5 0022405 \N 46264 5 0070423 \N 46265 5 0060612 \N 46266 5 0007430 \N 46267 94 //cmgm.stanford.edu/krasnow/research.html \N 46268 5 0042554 \N 46269 3 12359750 \N 46270 5 0032226 \N 46271 5 2000175 \N 46272 5 0031991 \N 46273 5 0070999 \N 46274 5 0001574 \N 46275 5 2000421 \N 46276 5 0043182 \N 46277 5 0043096 \N 46278 5 0002299 \N 46279 5 0035069 \N 46280 5 0045355 \N 46281 5 0001766 \N 46282 3 12615889 \N 46283 5 0030042 \N 46284 5 0042044 \N 46285 5 0043534 \N 46286 3 11166264 \N 46287 5 0051894 \N 46288 5 0035628 \N 46289 3 20614624 \N 46290 5 0006101 \N 46291 5 0007530 \N 46292 5 0003022 \N 46293 5 0034589 \N 46294 3 14502423 \N 46295 5 0002372 \N 46296 5 0010677 \N 46297 5 0034033 \N 46298 5 0075315 \N 46299 5 0000301 \N 46300 5 0090401 \N 46301 5 0048756 \N 46302 91 0000294 \N 46303 5 0030442 \N 46304 5 0043445 \N 46305 5 0034244 \N 46306 5 0090041 \N 46307 5 0006473 \N 46308 5 0048659 \N 46309 3 1840698 \N 46310 5 0010793 \N 46311 5 0003062 \N 46312 5 0021716 \N 46313 5 0060196 \N 46314 3 18075583 \N 46315 5 2000059 \N 46316 5 0051803 \N 46317 5 0015750 \N 46318 5 0021872 \N 46319 5 0007204 \N 46320 5 0052531 \N 46321 5 0007133 \N 46322 5 2000719 \N 46323 5 0034135 \N 46324 5 0065002 \N 46325 5 0001732 \N 46326 5 0003003 \N 46327 5 0007339 \N 46328 5 0071278 \N 46329 5 0070657 \N 46330 5 0009695 \N 46331 5 0010672 \N 46332 5 0071232 \N 46333 5 0019050 \N 46334 5 0008360 \N 46335 5 0045788 \N 46336 5 0045789 \N 46337 5 0035728 \N 46338 5 2000248 \N 46339 5 0016601 \N 46340 5 0009610 \N 46341 5 0018985 \N 46342 5 0070174 \N 46343 5 0000201 \N 46344 5 0006066 \N 46345 5 0032721 \N 46346 5 2000103 \N 46347 5 0032617 \N 46348 5 0002505 \N 46349 3 16153240 \N 46350 5 0002050 \N 46351 5 0003073 \N 46352 5 0060272 \N 46353 5 0046799 \N 46354 5 0015877 \N 46355 5 0034375 \N 46356 5 0001300 \N 46357 5 0075236 \N 46358 5 0042420 \N 46359 5 0021542 \N 46360 5 0071854 \N 46361 5 0050977 \N 46362 5 0072089 \N 46363 5 0032508 \N 46364 5 0015010 \N 46365 5 0015872 \N 46366 5 0060847 \N 46367 5 0010147 \N 46368 5 0001506 \N 46369 5 0002406 \N 46370 3 11896763 \N 46371 5 0045052 \N 46372 5 2000971 \N 46373 5 0034405 \N 46374 5 0001703 \N 46375 5 0060154 \N 46376 5 0044038 \N 46377 5 0021981 \N 46378 5 0051600 \N 46379 5 0045036 \N 46380 5 0007296 \N 46381 5 0043391 \N 46382 94 //www.aspergillus.man.ac.uk/ \N 46383 5 0051463 \N 46384 5 0045925 \N 46385 5 0072079 \N 46386 5 0006252 \N 46387 5 0021725 \N 46388 5 0032746 \N 46389 5 0009660 \N 46390 5 0018961 \N 46391 94 //umbbd.ahc.umn.edu/pcp/pcp_map.html \N 46392 97 pcp \N 46393 5 0072441 \N 46394 5 0090034 \N 46395 5 0090218 \N 46396 5 0070395 \N 46397 3 16020688 \N 46398 5 0085015 \N 46399 5 0042125 \N 46400 5 0035943 \N 46401 88 17263 \N 46402 3 8395854 \N 46403 5 0035821 \N 46404 5 0052451 \N 46405 5 0033273 \N 46406 5 0090399 \N 46407 5 0042698 \N 46408 5 0051364 \N 46409 3 12051774 \N 46410 3 5464655 \N 46411 89 AA0384 \N 46412 5 0008291 \N 46413 5 0061282 \N 46414 5 2000426 \N 46415 5 2000859 \N 46416 5 0015704 \N 46417 5 0039018 \N 46418 3 14686690 \N 46419 110 0000062 \N 46420 5 0035962 \N 46421 3 20100461 \N 46422 5 0009819 \N 46423 5 0000241 \N 46424 5 0048021 \N 46425 5 0009723 \N 46426 5 0052570 \N 46427 5 0008631 \N 46428 5 0001825 \N 46429 5 0009948 \N 46430 5 0060482 \N 46431 5 0030709 \N 46432 5 0032102 \N 46433 5 0072189 \N 46434 5 0060026 \N 46435 3 12062082 \N 46436 5 0003178 \N 46437 5 0002814 \N 46438 5 0031396 \N 46439 5 0046689 \N 46440 5 0061275 \N 46441 5 0071823 \N 46442 5 0018901 \N 46443 97 2,4d \N 46444 5 0006354 \N 46445 5 0030888 \N 46446 5 0006578 \N 46447 5 0007033 \N 46448 5 0044086 \N 46449 5 0019575 \N 46450 5 0051503 \N 46451 5 0075195 \N 46452 5 0048504 \N 46453 5 0060578 \N 46454 5 0010499 \N 46455 5 0016579 \N 46456 5 0006514 \N 46457 5 0046082 \N 46458 5 0072614 \N 46459 5 0021637 \N 46460 5 0048827 \N 46461 102 0006001 \N 46462 5 0006805 \N 46463 4 cab2 \N 46464 5 0021619 \N 46465 5 0048074 \N 46466 5 0072655 \N 46467 5 0060021 \N 46468 5 0034252 \N 46469 5 0019077 \N 46470 4 pk \N 46471 5 0045405 \N 46472 5 0052201 \N 46473 5 0034633 \N 46474 5 0070845 \N 46475 3 14675537 \N 46476 5 0070560 \N 46477 5 0045529 \N 46478 5 0000184 \N 46479 3 10025395 \N 46480 5 0035745 \N 46481 5 0060767 \N 46482 5 0030205 \N 46483 5 0060450 \N 46484 5 0061000 \N 46485 5 0032914 \N 46486 5 0010070 \N 46487 5 0033595 \N 46488 88 28088 \N 46489 5 0033003 \N 46490 5 0001710 \N 46491 5 0016060 \N 46492 5 0010096 \N 46493 5 0070503 \N 46494 5 0001895 \N 46495 3 15365173 \N 46496 3 15365178 \N 46497 5 0009908 \N 46498 5 0048409 \N 46499 86 0879015322 \N 46500 5 0002620 \N 46501 5 0016561 \N 46502 5 0050857 \N 46503 5 0030324 \N 46504 106 0002048 \N 46505 5 0060078 \N 46506 5 0033242 \N 46507 5 0052699 \N 46508 88 4828 \N 46509 5 0051939 \N 46510 5 0006482 \N 46511 5 0042307 \N 46512 5 0070759 \N 46513 5 0019242 \N 46514 5 0006692 \N 46515 5 0042459 \N 46516 5 0003268 \N 46517 5 0031940 \N 46518 5 0052239 \N 46519 5 0090177 \N 46520 5 0006845 \N 46521 5 0070200 \N 46522 5 0046359 \N 46523 5 0043440 \N 46524 5 0051619 \N 46525 5 0052288 \N 46526 5 0032649 \N 46527 5 0018170 \N 46528 89 AA0261 \N 46529 5 0090305 \N 46530 5 0009414 \N 46531 5 0010152 \N 46532 3 11595796 \N 46533 5 0043488 \N 46534 5 0006260 \N 46535 5 0055133 \N 46536 5 0034754 \N 46537 5 0051648 \N 46538 5 0051678 \N 46539 5 0071903 \N 46540 89 AA0151 \N 46541 5 0061114 \N 46542 5 0048807 \N 46543 5 2000781 \N 46544 5 0042253 \N 46545 5 0022002 \N 46546 5 0045879 \N 46547 5 0045877 \N 46548 5 0003105 \N 46549 5 0071922 \N 46550 3 17113138 \N 46551 5 0044205 \N 46552 5 0061333 \N 46553 5 0070922 \N 46554 5 0051049 \N 46555 5 0051604 \N 46556 5 0045821 \N 46557 5 0060117 \N 46558 5 0046265 \N 46559 5 0030702 \N 46560 5 0018395 \N 46561 89 AA0028 \N 46562 5 0071592 \N 46563 88 27748 \N 46564 3 19846558 \N 46565 5 2000335 \N 46566 5 0010982 \N 46567 5 0080111 \N 46568 3 17208187 \N 46569 5 0006469 \N 46570 5 0033349 \N 46571 88 16689 \N 46572 5 0052342 \N 46573 5 0051689 \N 46574 5 0006373 \N 46575 5 0030007 \N 46576 5 0017079 \N 46577 5 0034111 \N 46578 5 0018281 \N 46579 89 AA0166 \N 46580 5 2000448 \N 46581 5 0016051 \N 46582 5 0006093 \N 46583 5 0060315 \N 46584 5 0010687 \N 46585 5 0033393 \N 46586 5 2000819 \N 46587 3 18836076 \N 46588 5 0009189 \N 46589 5 0009222 \N 46590 5 0052424 \N 46591 5 0043461 \N 46592 94 //www.mblab.gla.ac.uk/ \N 46593 5 0030920 \N 46594 5 0007444 \N 46595 5 0046832 \N 46596 5 2000779 \N 46597 5 0046706 \N 46598 5 0009880 \N 46599 5 0021749 \N 46600 5 0030244 \N 46601 5 0016178 \N 46602 5 0042321 \N 46603 86 0192800981 \N 46604 5 0060927 \N 46605 5 0002087 \N 46606 3 12458206 \N 46607 5 0090372 \N 46608 5 0035114 \N 46609 5 0001755 \N 46610 5 0042699 \N 46611 5 2000885 \N 46612 5 0010583 \N 46613 3 18334669 \N 46614 5 0051414 \N 46615 3 11276391 \N 46616 5 0051276 \N 46617 5 0007001 \N 46618 5 0051277 \N 46619 5 0010418 \N 46620 5 0018034 \N 46621 89 AA0081 \N 46622 5 0030900 \N 46623 94 //www2.merriam-webster.com/cgi-bin/mwmednlm?book=Medical&va=forebrain \N 46624 5 0042213 \N 46625 5 0019443 \N 46626 5 0014908 \N 46627 5 0009874 \N 46628 86 0387987819 \N 46629 5 0015731 \N 46630 5 0075078 \N 46631 5 0032202 \N 46632 4 ns \N 46633 3 11902675 \N 46634 3 8622671 \N 46635 5 0006504 \N 46636 5 0019731 \N 46637 5 0006961 \N 46638 5 0019733 \N 46639 5 0031412 \N 46640 5 0043319 \N 46641 5 0070784 \N 46642 5 0019092 \N 46643 5 0039507 \N 46644 5 0033058 \N 46645 5 0016457 \N 46646 5 0009641 \N 46647 104 Shade_avoidance \N 46648 5 0000206 \N 46649 5 0052349 \N 46650 5 0018897 \N 46651 5 0034369 \N 46652 5 2000643 \N 46653 5 0035081 \N 46654 5 0035125 \N 46655 5 2000554 \N 46656 5 0051052 \N 46657 5 0052241 \N 46658 5 0006051 \N 46659 5 0048318 \N 46660 5 0006867 \N 46661 5 0048372 \N 46662 5 0045835 \N 46663 5 0045960 \N 46664 5 0090293 \N 46665 3 19104072 \N 46666 5 0045872 \N 46667 5 0090197 \N 46668 5 0009179 \N 46669 5 0033369 \N 46670 5 0035495 \N 46671 5 0090101 \N 46672 5 0003086 \N 46673 5 0060446 \N 46674 5 0032731 \N 46675 5 0003101 \N 46676 5 0035502 \N 46677 5 0030423 \N 46678 3 11524674 \N 46679 5 2000373 \N 46680 5 0050834 \N 46681 5 2000931 \N 46682 5 0034161 \N 46683 5 0001539 \N 46684 5 0014003 \N 46685 5 0061232 \N 46686 5 0052461 \N 46687 5 0030808 \N 46688 5 0046412 \N 46689 5 0006141 \N 46690 5 0090299 \N 46691 5 0043171 \N 46692 5 0046827 \N 46693 5 0048661 \N 46694 5 0072580 \N 46695 3 20729861 \N 46696 89 AA0530 \N 46697 89 AA0531 \N 46698 5 0002601 \N 46699 5 0030940 \N 46700 5 0051290 \N 46701 5 0010914 \N 46702 5 0010138 \N 46703 5 0007237 \N 46704 5 0006177 \N 46705 5 0003091 \N 46706 5 2000454 \N 46707 5 0010447 \N 46708 5 0046620 \N 46709 5 0008062 \N 46710 3 11715043 \N 46711 5 0051455 \N 46712 5 0042859 \N 46713 3 8837459 \N 46714 5 0030581 \N 46715 5 0021556 \N 46716 5 0070836 \N 46717 3 12633858 \N 46718 5 0046340 \N 46719 88 18035 \N 46720 5 0090026 \N 46721 5 0050752 \N 46722 5 0051785 \N 46723 5 0090290 \N 46724 5 0002220 \N 46725 5 0031222 \N 46726 5 0052110 \N 46727 94 //www.thefreedictionary.com \N 46728 5 0021602 \N 46729 5 0010971 \N 46730 5 0006286 \N 46731 5 0075062 \N 46732 5 0035106 \N 46733 3 14662373 \N 46734 5 0050496 \N 46735 3 10411887 \N 46736 89 AA0347 \N 46737 5 0009847 \N 46738 5 0003275 \N 46739 5 0035160 \N 46740 3 10694415 \N 46741 3 14681183 \N 46742 5 0045720 \N 46743 5 0072105 \N 46744 5 0061257 \N 46745 5 0046250 \N 46746 5 0046451 \N 46747 5 2000166 \N 46748 5 0046486 \N 46749 3 8906569 \N 46750 5 0046719 \N 46751 5 0031576 \N 46752 5 0006774 \N 46753 5 0010993 \N 46754 5 0034080 \N 46755 3 18158900 \N 46756 3 19217403 \N 46757 5 0045702 \N 46758 5 0044152 \N 46759 5 0007429 \N 46760 5 0071411 \N 46761 5 0051350 \N 46762 5 0050981 \N 46763 5 0001702 \N 46764 5 0010003 \N 46765 5 0048276 \N 46766 5 0019465 \N 46767 5 0060920 \N 46768 5 0032655 \N 46769 5 2000842 \N 46770 5 0097055 \N 46771 88 17431 \N 46772 5 0048728 \N 46773 5 0016349 \N 46774 5 0021858 \N 46775 5 0006162 \N 46776 5 0045972 \N 46777 5 2000266 \N 46778 5 0000060 \N 46779 3 14570049 \N 46780 3 9126736 \N 46781 5 0018865 \N 46782 94 //www.iversonsoftware.com/reference/chemistry/a/acrylonitrile.htm \N 46783 5 0045500 \N 46784 3 10771085 \N 46785 5 0010794 \N 46786 5 0002902 \N 46787 5 0046087 \N 46788 5 0006796 \N 46789 5 0070107 \N 46790 5 0035540 \N 46791 5 0045892 \N 46792 5 0016481 \N 46793 5 0032582 \N 46794 5 0061021 \N 46795 5 0070804 \N 46796 5 0052163 \N 46797 5 0033258 \N 46798 5 0072622 \N 46799 5 0046257 \N 46800 5 0009735 \N 46801 5 0030534 \N 46802 86 0877797099 \N 46803 5 0007406 \N 46804 5 0016144 \N 46805 5 2000233 \N 46806 5 0018402 \N 46807 89 AA0208 \N 46808 5 0048587 \N 46809 5 0001316 \N 46810 5 0010894 \N 46811 5 0042504 \N 46812 5 0051189 \N 46813 5 0071574 \N 46814 5 0061179 \N 46815 5 0090157 \N 46816 5 0046172 \N 46817 5 0032832 \N 46818 5 0030972 \N 46819 86 0815332181 \N 46820 5 0006226 \N 46821 5 0048782 \N 46822 5 0034286 \N 46823 5 0052226 \N 46824 5 0034313 \N 46825 88 23824 \N 46826 5 0033622 \N 46827 3 12213832 \N 46828 3 14754902 \N 46829 5 0051037 \N 46830 5 0070365 \N 46831 3 7588884 \N 46832 5 0075038 \N 46833 5 0021675 \N 46834 5 0060343 \N 46835 5 0052212 \N 46836 5 0035320 \N 46837 86 0815340729 \N 46838 3 8947551 \N 46839 5 0006359 \N 46840 5 0033689 \N 46841 5 0010781 \N 46842 5 0097066 \N 46843 5 0032240 \N 46844 5 0021965 \N 46845 5 0061237 \N 46846 5 0046368 \N 46847 5 0002477 \N 46848 5 0000038 \N 46849 5 0021841 \N 46850 5 0060893 \N 46851 5 0002722 \N 46852 5 0030854 \N 46853 5 0002380 \N 46854 3 9185563 \N 46855 5 0009404 \N 46856 5 0043297 \N 46857 3 10854689 \N 46858 3 14729475 \N 46859 3 15196556 \N 46860 5 0045138 \N 46861 3 10049567 \N 46862 5 0034477 \N 46863 5 0007469 \N 46864 94 //fly.ebi.ac.uk/.bin/cvreport2?id=FBcv0004526 \N 46865 5 0003116 \N 46866 5 0000951 \N 46867 5 0045420 \N 46868 5 0070096 \N 46869 5 0060179 \N 46870 5 0071165 \N 46871 3 16990792 \N 46872 5 0042102 \N 46873 5 0072277 \N 46874 5 0044131 \N 46875 5 0016338 \N 46876 5 0052302 \N 46877 5 0014044 \N 46878 5 0050702 \N 46879 5 0035698 \N 46880 91 0000794 \N 46881 5 0043252 \N 46882 5 0060801 \N 46883 5 0033469 \N 46884 88 30088 \N 46885 5 0045014 \N 46886 3 11018147 \N 46887 5 0090168 \N 46888 5 0010912 \N 46889 5 0022007 \N 46890 3 13679871 \N 46891 3 15806586 \N 46892 5 0046634 \N 46893 5 0001781 \N 46894 3 12752675 \N 46895 3 12960266 \N 46896 5 0060267 \N 46897 5 0001526 \N 46898 5 0006886 \N 46899 5 0002661 \N 46900 5 0015982 \N 46901 5 0080086 \N 46902 3 19139039 \N 46903 102 0009067 \N 46904 5 0032755 \N 46905 5 0052025 \N 46906 5 0034444 \N 46907 5 0046601 \N 46908 5 0048679 \N 46909 5 0023038 \N 46910 5 0009091 \N 46911 5 0006257 \N 46912 5 0006905 \N 46913 5 0044256 \N 46914 5 0010882 \N 46915 5 0035044 \N 46916 5 0018417 \N 46917 89 AA0293 \N 46918 5 2000213 \N 46919 5 0000020 \N 46920 5 0046752 \N 46921 5 0048629 \N 46922 3 10368181 \N 46923 5 0090335 \N 46924 5 0030420 \N 46925 86 1555811027 \N 46926 5 0007311 \N 46927 5 0048124 \N 46928 5 0021927 \N 46929 5 0035936 \N 46930 88 17347 \N 46931 3 12606499 \N 46932 5 0044412 \N 46933 5 0018003 \N 46934 89 AA0055 \N 46935 5 0097029 \N 46936 94 //www.rndsystems.com/mini_review_detail_objectname_MR02_DendriticCellMat.aspx \N 46937 3 15845453 \N 46938 5 0018294 \N 46939 89 AA0143 \N 46940 5 0048695 \N 46941 5 0090318 \N 46942 5 0060901 \N 46943 5 0071071 \N 46944 5 0021742 \N 46945 5 0048892 \N 46946 5 0006860 \N 46947 5 0070900 \N 46948 5 0034089 \N 46949 5 0032248 \N 46950 5 0042466 \N 46951 3 2073411 \N 46952 5 0030069 \N 46953 5 0010558 \N 46954 5 0071998 \N 46955 92 10.1016/S0953-7562(96)80057-8 \N 46956 5 0035646 \N 46957 5 0045965 \N 46958 5 0031589 \N 46959 5 0048886 \N 46960 91 0000856 \N 46961 5 0052053 \N 46962 5 0018279 \N 46963 89 AA0420 \N 46964 89 AA0421 \N 46965 5 0051858 \N 46966 5 0002363 \N 46967 5 0071626 \N 46968 4 gvg \N 46969 5 0007421 \N 46970 5 0072068 \N 46971 5 0060292 \N 46972 5 0002474 \N 46973 3 15224092 \N 46974 5 0046736 \N 46975 5 0075333 \N 46976 5 0042427 \N 46977 5 0033470 \N 46978 5 0009648 \N 46979 5 0061318 \N 46980 5 0018939 \N 46981 97 oct \N 46982 5 0042303 \N 46983 5 0002023 \N 46984 3 12161655 \N 46985 5 0008208 \N 46986 5 0035845 \N 46987 3 14507858 \N 46988 5 0010159 \N 46989 3 9611175 \N 46990 5 0097084 \N 46991 5 0006048 \N 46992 5 0033660 \N 46993 5 0071769 \N 46994 87 PWY-6397 \N 46995 3 15653820 \N 46996 3 3149973 \N 46997 5 0002451 \N 46998 5 0090111 \N 46999 5 0018191 \N 47000 3 10604470 \N 47001 89 AA0290 \N 47002 5 0061091 \N 47003 3 19966303 \N 47004 5 0070227 \N 47005 5 0021966 \N 47006 5 0008612 \N 47007 5 0046515 \N 47008 89 AA0116 \N 47009 5 0016446 \N 47010 3 11205330 \N 47011 3 11205333 \N 47012 3 14975236 \N 47013 3 7813007 \N 47014 5 0009643 \N 47015 3 11069694 \N 47016 5 0048784 \N 47017 5 0006462 \N 47018 5 0090360 \N 47019 5 0052357 \N 47020 5 0030463 \N 47021 5 0042732 \N 47022 5 0000468 \N 47023 5 0002856 \N 47024 5 0050823 \N 47025 5 0075018 \N 47026 5 0097101 \N 47027 91 0002139 \N 47028 3 21521739 \N 47029 5 0097151 \N 47030 5 0031337 \N 47031 5 0070486 \N 47032 5 0045113 \N 47033 5 0034231 \N 47034 3 15983213 \N 47035 3 8262946 \N 47036 5 0010041 \N 47037 5 0072504 \N 47038 5 0046393 \N 47039 5 0019673 \N 47040 5 2001028 \N 47041 5 0006114 \N 47042 5 0050705 \N 47043 5 0032514 \N 47044 5 0019690 \N 47045 5 0006335 \N 47046 5 0046468 \N 47047 94 //www.lipid.co.uk \N 47048 5 0070667 \N 47049 5 2000453 \N 47050 5 0019480 \N 47051 87 ALADEG-PWY \N 47052 5 0051170 \N 47053 5 0070196 \N 47054 5 0009397 \N 47055 5 0075220 \N 47056 5 0070102 \N 47057 5 0000290 \N 47058 5 0001573 \N 47059 5 0050739 \N 47060 89 AA0348 \N 47061 5 0048388 \N 47062 5 0018328 \N 47063 89 AA0036 \N 47064 5 0061074 \N 47065 5 0071171 \N 47066 5 0051214 \N 47067 3 15165191 \N 47068 5 0035950 \N 47069 3 17005992 \N 47070 5 0042920 \N 47071 5 0075144 \N 47072 5 0045410 \N 47073 5 0034653 \N 47074 5 0032738 \N 47075 5 0090367 \N 47076 5 0060099 \N 47077 5 0033357 \N 47078 88 22599 \N 47079 5 0048075 \N 47080 5 0007069 \N 47081 5 0050890 \N 47082 5 0006493 \N 47083 89 AA0153 \N 47084 89 AA0155 \N 47085 89 AA0157 \N 47086 89 AA0212 \N 47087 5 0002718 \N 47088 5 0035691 \N 47089 3 12782713 \N 47090 3 19413900 \N 47091 5 0019365 \N 47092 5 0031580 \N 47093 5 2000847 \N 47094 5 0043402 \N 47095 3 15240347 \N 47096 5 0018210 \N 47097 5 0046287 \N 47098 88 50753 \N 47099 5 0045291 \N 47100 3 2675423 \N 47101 5 0060470 \N 47102 5 0072137 \N 47103 5 0071894 \N 47104 5 0034260 \N 47105 5 0003148 \N 47106 5 0071306 \N 47107 5 0072474 \N 47108 5 0072010 \N 47109 5 0070930 \N 47110 5 0030455 \N 47111 5 0002456 \N 47112 5 0000472 \N 47113 5 0034168 \N 47114 5 0045312 \N 47115 5 0048546 \N 47116 5 0048547 \N 47117 3 12618131 \N 47118 5 0070660 \N 47119 5 0021648 \N 47120 5 0035196 \N 47121 5 0030918 \N 47122 3 15066275 \N 47123 3 15066283 \N 47124 5 0051152 \N 47125 5 0060792 \N 47126 5 0051342 \N 47127 93 3.1.4.17 \N 47128 5 0015895 \N 47129 5 0061065 \N 47130 5 0033231 \N 47131 5 0002066 \N 47132 5 0070055 \N 47133 3 10357823 \N 47134 5 0009057 \N 47135 5 0043285 \N 47136 88 33694 \N 47137 5 0043174 \N 47138 5 0015808 \N 47139 5 0010596 \N 47140 5 0051701 \N 47141 5 0072299 \N 47142 5 0018152 \N 47143 89 AA0270 \N 47144 5 0070398 \N 47145 5 0048247 \N 47146 3 12391252 \N 47147 5 0051824 \N 47148 5 0014742 \N 47149 5 0003059 \N 47150 5 0042844 \N 47151 5 0007277 \N 47152 5 0001541 \N 47153 5 2000828 \N 47154 5 0048773 \N 47155 5 0042058 \N 47156 5 0043312 \N 47157 5 0043576 \N 47158 5 0019509 \N 47159 87 PWY-4361 \N 47160 5 0010627 \N 47161 5 0031029 \N 47162 5 0021609 \N 47163 5 0044135 \N 47164 5 0001967 \N 47165 5 0001672 \N 47166 5 0000711 \N 47167 5 0035719 \N 47168 3 20032305 \N 47169 5 2000606 \N 47170 5 0061304 \N 47171 5 0052561 \N 47172 5 0070563 \N 47173 5 0048284 \N 47174 5 0031287 \N 47175 5 0035600 \N 47176 3 20472640 \N 47177 5 0045598 \N 47178 5 0061309 \N 47179 5 0018214 \N 47180 5 0032077 \N 47181 5 0061391 \N 47182 5 0045048 \N 47183 5 0048080 \N 47184 5 0035347 \N 47185 5 0009084 \N 47186 5 0014018 \N 47187 5 0060627 \N 47188 5 0006326 \N 47189 5 0003346 \N 47190 5 0016127 \N 47191 5 0070893 \N 47192 3 10882723 \N 47193 5 0003278 \N 47194 5 0019880 \N 47195 5 0007192 \N 47196 5 0010321 \N 47197 5 0019889 \N 47198 5 0003411 \N 47199 5 0071863 \N 47200 3 17063141 \N 47201 5 0031539 \N 47202 5 0009831 \N 47203 5 2000314 \N 47204 5 0070601 \N 47205 5 0032949 \N 47206 5 0071635 \N 47207 5 0007081 \N 47208 5 0070295 \N 47209 5 0015778 \N 47210 5 0048478 \N 47211 3 14560029 \N 47212 5 0018378 \N 47213 89 AA0135 \N 47214 5 0033123 \N 47215 5 0009114 \N 47216 5 0051587 \N 47217 5 0031108 \N 47218 5 0046159 \N 47219 3 15176085 \N 47220 3 18421706 \N 47221 5 0048645 \N 47222 5 0070342 \N 47223 91 0000449 \N 47224 5 2000976 \N 47225 5 0045413 \N 47226 5 0030961 \N 47227 5 0031567 \N 47228 5 0051614 \N 47229 5 0007172 \N 47230 3 9646862 \N 47231 5 0060467 \N 47232 5 0075297 \N 47233 5 0051884 \N 47234 5 0007606 \N 47235 5 0010571 \N 47236 5 0018313 \N 47237 5 0051656 \N 47238 5 0070165 \N 47239 5 0048099 \N 47240 5 0034699 \N 47241 5 0042977 \N 47242 3 12479803 \N 47243 5 0010834 \N 47244 5 0006072 \N 47245 5 0075052 \N 47246 5 0019184 \N 47247 5 0071330 \N 47248 5 0015960 \N 47249 5 0071448 \N 47250 5 0072266 \N 47251 5 0006957 \N 47252 5 0022015 \N 47253 5 0018046 \N 47254 89 AA0093 \N 47255 5 0060348 \N 47256 5 2001004 \N 47257 5 0072460 \N 47258 5 0032497 \N 47259 3 15998797 \N 47260 5 0032057 \N 47261 5 0034470 \N 47262 5 0080028 \N 47263 3 18987211 \N 47264 5 0033861 \N 47265 5 0060582 \N 47266 5 0018948 \N 47267 5 0042689 \N 47268 5 0070235 \N 47269 5 0040002 \N 47270 5 0075149 \N 47271 5 0007211 \N 47272 5 0009745 \N 47273 5 0033014 \N 47274 5 0007270 \N 47275 5 0050956 \N 47276 94 //www.wikipedia.org/Electroreception \N 47277 3 10210663 \N 47278 5 0000398 \N 47279 5 0006374 \N 47280 5 0006375 \N 47281 5 0009155 \N 47282 5 0060448 \N 47283 5 0006967 \N 47284 5 0046107 \N 47285 5 0006073 \N 47286 5 0002320 \N 47287 3 16551264 \N 47288 5 0006586 \N 47289 88 38631 \N 47290 5 0030833 \N 47291 5 0009200 \N 47292 5 0042748 \N 47293 5 0007107 \N 47294 5 0060066 \N 47295 94 //www.thefreedictionary.com/oviduct \N 47296 5 0000237 \N 47297 5 0019415 \N 47298 5 0005981 \N 47299 5 0035709 \N 47300 91 0000813 \N 47301 5 0002751 \N 47302 5 0090036 \N 47303 5 0051229 \N 47304 5 0042822 \N 47305 5 0055089 \N 47306 5 2000418 \N 47307 5 0060013 \N 47308 3 8635460 \N 47309 5 0090128 \N 47310 5 2000122 \N 47311 5 0035553 \N 47312 5 0015834 \N 47313 5 0010213 \N 47314 4 syr \N 47315 5 0042636 \N 47316 5 0003222 \N 47317 5 0006637 \N 47318 5 0019657 \N 47319 87 P108-PWY \N 47320 5 0060377 \N 47321 5 0046999 \N 47322 5 0010741 \N 47323 5 2000734 \N 47324 5 0070863 \N 47325 5 0002092 \N 47326 5 0048456 \N 47327 5 0048428 \N 47328 5 0090054 \N 47329 5 0072073 \N 47330 5 0071291 \N 47331 5 0002104 \N 47332 5 0018173 \N 47333 94 //www.uni-marburg.de/mpi/thauer/thauer_res.html \N 47334 89 AA0265 \N 47335 5 0042150 \N 47336 5 0071656 \N 47337 5 0009968 \N 47338 5 0035467 \N 47339 5 0042798 \N 47340 5 0032005 \N 47341 5 0030329 \N 47342 3 16627894 \N 47343 5 0060258 \N 47344 5 0043478 \N 47345 5 0070981 \N 47346 88 17196 \N 47347 5 0052011 \N 47348 5 0006313 \N 47349 5 0006317 \N 47350 5 0006318 \N 47351 5 0000435 \N 47352 5 0061026 \N 47353 5 0050803 \N 47354 5 0010004 \N 47355 5 0006731 \N 47356 5 0070796 \N 47357 5 0003070 \N 47358 5 0051958 \N 47359 5 0052505 \N 47360 5 0002727 \N 47361 5 0019358 \N 47362 5 0060545 \N 47363 5 0030497 \N 47364 5 0060743 \N 47365 5 0043324 \N 47366 5 0071262 \N 47367 5 0043031 \N 47368 5 0044265 \N 47369 5 0034962 \N 47370 5 0051163 \N 47371 5 0071962 \N 47372 5 0016032 \N 47373 5 0022026 \N 47374 5 0006384 \N 47375 5 0072076 \N 47376 5 0033109 \N 47377 5 0071298 \N 47378 5 0045083 \N 47379 5 0019896 \N 47380 5 0002652 \N 47381 5 0030648 \N 47382 5 0019593 \N 47383 5 0045542 \N 47384 5 0003044 \N 47385 5 2000566 \N 47386 5 0002907 \N 47387 5 0085023 \N 47388 5 0032607 \N 47389 5 0061024 \N 47390 5 0072130 \N 47391 5 0016557 \N 47392 5 0033342 \N 47393 5 0060607 \N 47394 5 0044248 \N 47395 5 0070407 \N 47396 5 0033350 \N 47397 5 0030810 \N 47398 5 0006644 \N 47399 5 0075264 \N 47400 5 0051148 \N 47401 5 0055076 \N 47402 5 0090414 \N 47403 5 0051518 \N 47404 5 0010657 \N 47405 5 0019471 \N 47406 88 20392 \N 47407 5 0006984 \N 47408 5 0097006 \N 47409 5 0008286 \N 47410 5 0003673 \N 47411 5 0046892 \N 47412 3 12586941 \N 47413 89 AA0333 \N 47414 5 0045173 \N 47415 3 8824323 \N 47416 5 0003367 \N 47417 5 0001544 \N 47418 5 0072054 \N 47419 5 0007063 \N 47420 5 0019304 \N 47421 5 0016267 \N 47422 5 0001325 \N 47423 3 12044938 \N 47424 5 0045459 \N 47425 3 11592901 \N 47426 89 AA0326 \N 47427 5 0072666 \N 47428 5 0030574 \N 47429 5 0048048 \N 47430 5 0003128 \N 47431 5 0010926 \N 47432 5 0072521 \N 47433 5 0090183 \N 47434 5 0070460 \N 47435 5 0043150 \N 47436 5 0050850 \N 47437 5 0072386 \N 47438 5 0046666 \N 47439 5 0006007 \N 47440 5 0060721 \N 47441 5 0048297 \N 47442 5 0002535 \N 47443 5 0021623 \N 47444 5 0042507 \N 47445 5 0070413 \N 47446 3 9797333 \N 47447 5 0072513 \N 47448 5 2000955 \N 47449 5 2000186 \N 47450 5 0015864 \N 47451 5 0061386 \N 47452 5 0019290 \N 47453 5 0031178 \N 47454 5 0031180 \N 47455 5 0002120 \N 47456 5 0035483 \N 47457 4 cy \N 47458 86 9781416032458 \N 47459 5 0060644 \N 47460 5 0061236 \N 47461 5 0070277 \N 47462 87 IODIDE-PEROXIDASE-RXN \N 47463 5 0071719 \N 47464 88 25029 \N 47465 5 0051240 \N 47466 5 0006121 \N 47467 5 2000727 \N 47468 5 0060134 \N 47469 3 10341260 \N 47470 5 0014719 \N 47471 5 0006400 \N 47472 5 0016549 \N 47473 5 0052089 \N 47474 5 0071340 \N 47475 3 19285469 \N 47476 5 0002607 \N 47477 5 0019604 \N 47478 87 TOLUENE-DEG-CATECHOL-PWY \N 47479 5 0034103 \N 47480 5 0022413 \N 47481 5 0009617 \N 47482 5 0009618 \N 47483 5 0009680 \N 47484 5 0042333 \N 47485 5 0060160 \N 47486 5 0030862 \N 47487 5 0000751 \N 47488 5 0030571 \N 47489 5 0010758 \N 47490 5 0044111 \N 47491 5 jl \N 47492 5 0033539 \N 47493 87 FAO-PWY \N 47494 87 PWY-5136 \N 47495 5 0072644 \N 47496 5 0033674 \N 47497 5 0045733 \N 47498 5 0019663 \N 47499 88 30089 \N 47500 5 0051454 \N 47501 5 0006920 \N 47502 5 0032211 \N 47503 5 0075174 \N 47504 5 0030997 \N 47505 3 11076968 \N 47506 5 0009448 \N 47507 5 0060397 \N 47508 3 11445442 \N 47509 5 0002003 \N 47510 5 0075277 \N 47511 5 0060432 \N 47512 5 0008586 \N 47513 5 0030322 \N 47514 5 0060362 \N 47515 5 0006648 \N 47516 3 15643073 \N 47517 5 0006119 \N 47518 5 0019462 \N 47519 5 2000827 \N 47520 5 0075171 \N 47521 5 0010254 \N 47522 5 0060883 \N 47523 5 0007514 \N 47524 5 0045386 \N 47525 5 0070707 \N 47526 5 2000788 \N 47527 5 0060551 \N 47528 5 0003295 \N 47529 5 0019795 \N 47530 5 2000604 \N 47531 5 0046783 \N 47532 3 10438802 \N 47533 5 0015854 \N 47534 5 0010161 \N 47535 5 0071280 \N 47536 5 0046520 \N 47537 5 0000743 \N 47538 5 0006946 \N 47539 5 0042909 \N 47540 88 36420 \N 47541 94 //www.wikipedia.org/Acridine \N 47542 5 0045473 \N 47543 5 0014824 \N 47544 100 0000708 \N 47545 101 A07.231.114 \N 47546 5 0019397 \N 47547 5 0051025 \N 47548 5 0019513 \N 47549 5 0010190 \N 47550 5 0045402 \N 47551 5 0070831 \N 47552 5 0070239 \N 47553 5 0032527 \N 47554 5 0070127 \N 47555 5 0007617 \N 47556 5 0034624 \N 47557 5 0003121 \N 47558 5 0010299 \N 47559 5 0048374 \N 47560 5 0001022 \N 47561 5 0038002 \N 47562 4 mtg_signaling_feb11 \N 47563 86 0199264678 \N 47564 5 0060653 \N 47565 5 0090172 \N 47566 5 0002247 \N 47567 5 0006738 \N 47568 5 0015693 \N 47569 5 0010533 \N 47570 3 17190829 \N 47571 3 9135582 \N 47572 5 0009833 \N 47573 5 0051321 \N 47574 5 0033636 \N 47575 5 0043949 \N 47576 5 0050771 \N 47577 5 0033314 \N 47578 5 0031574 \N 47579 5 0071529 \N 47580 3 17043865 \N 47581 5 0000578 \N 47582 5 0018061 \N 47583 89 AA0128 \N 47584 5 0072080 \N 47585 5 2000353 \N 47586 5 0000415 \N 47587 5 0051332 \N 47588 5 0060309 \N 47589 5 0035977 \N 47590 5 0060496 \N 47591 5 0045329 \N 47592 5 0042471 \N 47593 5 0060534 \N 47594 5 0072416 \N 47595 5 0002040 \N 47596 5 0043553 \N 47597 5 0042812 \N 47598 5 0007327 \N 47599 5 0046614 \N 47600 5 2000774 \N 47601 5 0032692 \N 47602 5 0035607 \N 47603 5 0075124 \N 47604 5 0002789 \N 47605 5 0050867 \N 47606 5 0005983 \N 47607 5 0072006 \N 47608 5 0006655 \N 47609 5 0042984 \N 47610 5 0043421 \N 47611 5 0019259 \N 47612 88 16567 \N 47613 5 0072099 \N 47614 5 0052294 \N 47615 5 0006438 \N 47616 5 0072394 \N 47617 5 0051314 \N 47618 5 0006198 \N 47619 5 0072251 \N 47620 5 0010052 \N 47621 5 0019542 \N 47622 5 0035813 \N 47623 5 0090251 \N 47624 5 0010543 \N 47625 5 0045723 \N 47626 5 2000432 \N 47627 5 0046886 \N 47628 5 0045863 \N 47629 5 0038018 \N 47630 5 0032082 \N 47631 5 0046664 \N 47632 5 0030801 \N 47633 5 0000707 \N 47634 3 11459983 \N 47635 5 0016475 \N 47636 5 0019882 \N 47637 5 0030333 \N 47638 5 0018139 \N 47639 89 AA0243 \N 47640 5 0046444 \N 47641 88 17621 \N 47642 5 0060915 \N 47643 5 0010247 \N 47644 5 0003360 \N 47645 5 0071483 \N 47646 5 0045065 \N 47647 5 0010939 \N 47648 3 16507998 \N 47649 5 0043940 \N 47650 5 0009777 \N 47651 5 0018094 \N 47652 89 AA0201 \N 47653 5 0032091 \N 47654 5 0045350 \N 47655 5 0072147 \N 47656 5 0045198 \N 47657 5 0007499 \N 47658 5 0035824 \N 47659 3 16954385 \N 47660 5 0045797 \N 47661 5 0052138 \N 47662 5 0002499 \N 47663 5 0001868 \N 47664 5 0010362 \N 47665 3 17319842 \N 47666 5 0044050 \N 47667 5 0055024 \N 47668 5 0072319 \N 47669 5 0009913 \N 47670 5 0043355 \N 47671 5 0032848 \N 47672 5 0016137 \N 47673 5 0030654 \N 47674 5 0072032 \N 47675 100 0002613 \N 47676 5 0071404 \N 47677 5 0048928 \N 47678 5 0015794 \N 47679 5 0039517 \N 47680 5 0007577 \N 47681 5 0050959 \N 47682 94 //www.wikipedia.org/Animal_echolocation \N 47683 3 16005275 \N 47684 5 2000326 \N 47685 5 0002514 \N 47686 5 0035074 \N 47687 5 0009312 \N 47688 5 0019387 \N 47689 5 0035206 \N 47690 5 0007375 \N 47691 86 08795694238 \N 47692 5 0035992 \N 47693 3 17567668 \N 47694 106 0000043 \N 47695 5 2000684 \N 47696 5 0048624 \N 47697 5 0032443 \N 47698 5 0007113 \N 47699 4 expert_vm \N 47700 5 2000864 \N 47701 5 0006378 \N 47702 5 0070690 \N 47703 87 PWY-5436 \N 47704 5 0014747 \N 47705 5 2000672 \N 47706 5 0010610 \N 47707 5 0045606 \N 47708 5 0003207 \N 47709 5 0071839 \N 47710 5 0052292 \N 47711 5 0009563 \N 47712 5 0010906 \N 47713 5 0043550 \N 47714 5 0006713 \N 47715 5 0045759 \N 47716 5 0042550 \N 47717 5 0019409 \N 47718 87 AMMOXID-PWY \N 47719 5 0043645 \N 47720 88 23066 \N 47721 104 Cephalosporin \N 47722 5 0051437 \N 47723 5 0035294 \N 47724 5 0072094 \N 47725 5 0031325 \N 47726 5 0030815 \N 47727 5 0003303 \N 47728 5 0002914 \N 47729 5 2000990 \N 47730 5 0006561 \N 47731 5 2000413 \N 47732 5 0071250 \N 47733 5 0010748 \N 47734 5 0000733 \N 47735 5 0015680 \N 47736 5 0060521 \N 47737 5 0042659 \N 47738 5 0015676 \N 47739 5 0015900 \N 47740 88 3015 \N 47741 5 0002013 \N 47742 5 2000616 \N 47743 5 0007241 \N 47744 5 0052105 \N 47745 5 0052299 \N 47746 5 0052154 \N 47747 5 0075216 \N 47748 5 0003406 \N 47749 5 0071952 \N 47750 3 17351629 \N 47751 3 18559341 \N 47752 5 0002870 \N 47753 5 0019066 \N 47754 5 0060736 \N 47755 5 2000623 \N 47756 5 0060124 \N 47757 5 0016358 \N 47758 5 0033668 \N 47759 5 0090155 \N 47760 5 0002296 \N 47761 5 0048935 \N 47762 5 2000074 \N 47763 5 0035518 \N 47764 3 18206970 \N 47765 5 0072596 \N 47766 5 0043417 \N 47767 5 0014912 \N 47768 5 0075057 \N 47769 5 0006555 \N 47770 5 0052175 \N 47771 5 0090084 \N 47772 5 0048703 \N 47773 3 16049113 \N 47774 5 0007189 \N 47775 5 0010580 \N 47776 5 2000343 \N 47777 5 0032316 \N 47778 5 0033023 \N 47779 3 11292031 \N 47780 5 0035207 \N 47781 5 0032372 \N 47782 5 0035405 \N 47783 5 0070093 \N 47784 5 0007556 \N 47785 5 0060992 \N 47786 5 0010118 \N 47787 5 0034616 \N 47788 5 0044069 \N 47789 5 0021547 \N 47790 5 0032114 \N 47791 5 0046636 \N 47792 5 0048903 \N 47793 5 0033543 \N 47794 5 0019646 \N 47795 5 0006136 \N 47796 5 0006137 \N 47797 5 0006138 \N 47798 5 0060380 \N 47799 5 0002639 \N 47800 5 0006458 \N 47801 5 0002257 \N 47802 5 0060581 \N 47803 5 0048204 \N 47804 5 0048139 \N 47805 3 11591336 \N 47806 5 0035776 \N 47807 3 18787069 \N 47808 5 0048709 \N 47809 5 0006666 \N 47810 5 0007631 \N 47811 5 0080126 \N 47812 3 17855426 \N 47813 5 0018206 \N 47814 5 0033586 \N 47815 5 0051305 \N 47816 5 0009144 \N 47817 5 0008300 \N 47818 5 0016097 \N 47819 5 0070429 \N 47820 5 0002129 \N 47821 5 0006791 \N 47822 5 0072196 \N 47823 5 0031113 \N 47824 5 0003235 \N 47825 5 0070731 \N 47826 5 0019516 \N 47827 5 0018333 \N 47828 89 AA0038 \N 47829 5 0032974 \N 47830 5 0033577 \N 47831 3 12042244 \N 47832 5 0014865 \N 47833 5 0019749 \N 47834 5 2000501 \N 47835 5 0002688 \N 47836 5 0009398 \N 47837 5 0048243 \N 47838 5 0046730 \N 47839 5 0002538 \N 47840 5 0048255 \N 47841 5 2000872 \N 47842 5 2000286 \N 47843 3 16890161 \N 47844 5 0018231 \N 47845 89 AA0107 \N 47846 5 0070650 \N 47847 5 0035462 \N 47848 3 15084459 \N 47849 5 0032383 \N 47850 5 0060575 \N 47851 5 0060870 \N 47852 5 0048441 \N 47853 5 0048417 \N 47854 5 2000688 \N 47855 5 0008341 \N 47856 5 0032779 \N 47857 3 12572677 \N 47858 5 0080142 \N 47859 5 2000654 \N 47860 5 0060993 \N 47861 5 0043381 \N 47862 5 0006539 \N 47863 5 0070886 \N 47864 5 0052117 \N 47865 5 0018076 \N 47866 5 0014059 \N 47867 5 2000524 \N 47868 5 0071908 \N 47869 5 0031059 \N 47870 5 0045760 \N 47871 5 0051646 \N 47872 5 0070889 \N 47873 3 16123220 \N 47874 5 0052547 \N 47875 93 3.4 \N 47876 5 0002391 \N 47877 5 0042496 \N 47878 5 0015958 \N 47879 5 0075164 \N 47880 5 0042672 \N 47881 5 0032762 \N 47882 5 0072436 \N 47883 5 0034173 \N 47884 5 0048877 \N 47885 5 0006369 \N 47886 5 0019224 \N 47887 5 0009056 \N 47888 5 0008344 \N 47889 5 0006530 \N 47890 5 0003188 \N 47891 5 0043686 \N 47892 5 0035807 \N 47893 3 12362232 \N 47894 5 0021840 \N 47895 5 0090224 \N 47896 5 0007253 \N 47897 5 0055006 \N 47898 5 0010699 \N 47899 5 2000283 \N 47900 5 0060502 \N 47901 5 0045955 \N 47902 5 0001667 \N 47903 5 0034334 \N 47904 5 0010187 \N 47905 5 0048544 \N 47906 5 0009857 \N 47907 5 0001941 \N 47908 5 0051797 \N 47909 5 0010922 \N 47910 5 0072624 \N 47911 5 0070315 \N 47912 5 0014025 \N 47913 5 0034053 \N 47914 5 0001504 \N 47915 5 0035424 \N 47916 5 0045220 \N 47917 5 0014835 \N 47918 5 0006740 \N 47919 5 0002593 \N 47920 5 0032353 \N 47921 5 0006571 \N 47922 5 0032469 \N 47923 5 0032513 \N 47924 5 0061315 \N 47925 5 0045744 \N 47926 5 0035791 \N 47927 5 0039526 \N 47928 5 0010636 \N 47929 5 0052651 \N 47930 94 //cancerweb.ncl.ac.uk/ \N 47931 5 0051638 \N 47932 5 0071715 \N 47933 88 23899 \N 47934 5 0060849 \N 47935 5 0070372 \N 47936 5 0048651 \N 47937 5 0035528 \N 47938 5 0045713 \N 47939 5 0040013 \N 47940 5 0031115 \N 47941 5 0031142 \N 47942 5 0035278 \N 47943 3 15196554 \N 47944 5 0010872 \N 47945 5 0072289 \N 47946 5 0018180 \N 47947 5 0060860 \N 47948 5 0018116 \N 47949 89 AA0227 \N 47950 5 0014712 \N 47951 5 0080175 \N 47952 3 19383896 \N 47953 5 0046021 \N 47954 5 0006833 \N 47955 5 0021797 \N 47956 5 0046792 \N 47957 3 9371605 \N 47958 5 0045885 \N 47959 5 0006695 \N 47960 5 0019588 \N 47961 5 0060394 \N 47962 5 0034226 \N 47963 5 0006747 \N 47964 5 0048904 \N 47965 5 0052429 \N 47966 5 0048942 \N 47967 5 0021546 \N 47968 5 0070874 \N 47969 5 0072519 \N 47970 5 0030038 \N 47971 5 0006407 \N 47972 5 0010880 \N 47973 5 0018974 \N 47974 86 0333781767 \N 47975 5 0070588 \N 47976 5 0010105 \N 47977 5 0043638 \N 47978 88 17939 \N 47979 104 Puromycin \N 47980 5 0032288 \N 47981 5 0048228 \N 47982 5 0043412 \N 47983 5 0071431 \N 47984 5 0032916 \N 47985 5 0071510 \N 47986 5 0048343 \N 47987 5 0010603 \N 47988 5 0090099 \N 47989 5 0045643 \N 47990 5 0044348 \N 47991 5 0045689 \N 47992 5 2000770 \N 47993 5 0034502 \N 47994 5 0035714 \N 47995 88 33101 \N 47996 5 0035221 \N 47997 5 0006720 \N 47998 5 0016096 \N 47999 5 2001022 \N 48000 5 0050885 \N 48001 5 0034254 \N 48002 5 0006432 \N 48003 5 0021945 \N 48004 5 0071226 \N 48005 5 0001125 \N 48006 5 0000456 \N 48007 5 0051654 \N 48008 5 0043042 \N 48009 3 9250661 \N 48010 3 9712910 \N 48011 5 0019348 \N 48012 5 0051685 \N 48013 5 0051792 \N 48014 5 0060135 \N 48015 5 0051354 \N 48016 5 0002030 \N 48017 3 8396717 \N 48018 5 0046212 \N 48019 5 0080181 \N 48020 5 0007518 \N 48021 5 0007212 \N 48022 5 0050871 \N 48023 5 0002633 \N 48024 5 0034382 \N 48025 5 0052276 \N 48026 5 0048446 \N 48027 5 0048418 \N 48028 5 0032417 \N 48029 5 2000028 \N 48030 5 0060404 \N 48031 5 0006299 \N 48032 3 10660619 \N 48033 3 10878254 \N 48034 5 0034412 \N 48035 5 0000459 \N 48036 5 0090009 \N 48037 5 0007394 \N 48038 5 0006820 \N 48039 5 0006822 \N 48040 5 0007520 \N 48041 5 0070585 \N 48042 5 0034509 \N 48043 5 0015919 \N 48044 5 0009790 \N 48045 5 0009795 \N 48046 5 0051968 \N 48047 5 0035993 \N 48048 106 0002498 \N 48049 104 Deltoid_tuberosity \N 48050 5 2000579 \N 48051 5 0045993 \N 48052 5 0060739 \N 48053 5 0046853 \N 48054 5 0048608 \N 48055 5 0048173 \N 48056 5 0042712 \N 48057 5 0042703 \N 48058 3 8693059 \N 48059 5 0090208 \N 48060 5 0006194 \N 48061 5 0042255 \N 48062 5 0042257 \N 48063 5 0002817 \N 48064 5 0046619 \N 48065 5 0051974 \N 48066 5 0019543 \N 48067 5 0048294 \N 48068 5 0042811 \N 48069 5 0048147 \N 48070 5 0002533 \N 48071 3 11836514 \N 48072 5 0003384 \N 48073 5 0042236 \N 48074 5 0006399 \N 48075 5 0050932 \N 48076 5 0060933 \N 48077 5 0060466 \N 48078 5 0010565 \N 48079 5 0016559 \N 48080 3 14754507 \N 48081 5 0060081 \N 48082 5 0003115 \N 48083 5 0007308 \N 48084 5 0048110 \N 48085 5 0009095 \N 48086 5 0090201 \N 48087 5 0022612 \N 48088 5 0035986 \N 48089 3 15621527 \N 48090 3 21248468 \N 48091 5 0001753 \N 48092 5 0072602 \N 48093 5 0031037 \N 48094 5 0072404 \N 48095 5 0071979 \N 48096 5 0090067 \N 48097 5 0090323 \N 48098 5 0052016 \N 48099 5 0006276 \N 48100 5 0021620 \N 48101 5 0060810 \N 48102 5 0060503 \N 48103 5 0046786 \N 48104 5 0010662 \N 48105 5 0033317 \N 48106 87 PANTO-PWY \N 48107 87 PWY-3921 \N 48108 5 0044037 \N 48109 5 0052101 \N 48110 5 0060872 \N 48111 5 0046745 \N 48112 5 0051086 \N 48113 5 0018927 \N 48114 5 0042545 \N 48115 5 0071963 \N 48116 5 0046111 \N 48117 5 0085022 \N 48118 5 0010936 \N 48119 5 0034344 \N 48120 86 0126896631 \N 48121 3 16734557 \N 48122 5 0035203 \N 48123 3 14734104 \N 48124 5 0042634 \N 48125 5 0016583 \N 48126 5 2000600 \N 48127 5 0002420 \N 48128 5 0070571 \N 48129 5 0010377 \N 48130 5 0071000 \N 48131 5 0010605 \N 48132 5 0040026 \N 48133 5 0070229 \N 48134 5 0032095 \N 48135 5 0070148 \N 48136 5 0002287 \N 48137 5 2000919 \N 48138 5 0071981 \N 48139 5 0009292 \N 48140 5 0060509 \N 48141 5 0048351 \N 48142 5 0048884 \N 48143 5 0009625 \N 48144 5 0043019 \N 48145 5 0051131 \N 48146 5 0038004 \N 48147 5 0048814 \N 48148 5 0061362 \N 48149 5 0002119 \N 48150 5 0009158 \N 48151 5 0060252 \N 48152 5 0052108 \N 48153 5 0000481 \N 48154 5 2000755 \N 48155 5 0044078 \N 48156 5 0050482 \N 48157 5 0061387 \N 48158 5 0048871 \N 48159 5 2000497 \N 48160 5 0035818 \N 48161 5 0046708 \N 48162 5 0015903 \N 48163 88 46081 \N 48164 5 0007005 \N 48165 3 9786946 \N 48166 5 0002494 \N 48167 5 2000545 \N 48168 5 0090070 \N 48169 5 0010991 \N 48170 5 0046221 \N 48171 5 0075186 \N 48172 5 0021955 \N 48173 5 0071480 \N 48174 5 0006283 \N 48175 3 11900249 \N 48176 5 0060495 \N 48177 5 0090014 \N 48178 5 0034195 \N 48179 5 0060412 \N 48180 5 0006360 \N 48181 5 0061379 \N 48182 5 0000719 \N 48183 3 10915863 \N 48184 5 0001977 \N 48185 5 0007346 \N 48186 5 0018377 \N 48187 5 0018319 \N 48188 5 0019585 \N 48189 5 0019699 \N 48190 5 0060085 \N 48191 5 0016100 \N 48192 88 25409 \N 48193 5 0042407 \N 48194 5 0046807 \N 48195 5 0022010 \N 48196 5 0021617 \N 48197 5 2000258 \N 48198 5 0035284 \N 48199 5 0009855 \N 48200 5 0072279 \N 48201 5 0002301 \N 48202 5 0072656 \N 48203 5 0003337 \N 48204 5 0071696 \N 48205 5 0035409 \N 48206 5 0033068 \N 48207 3 17298179 \N 48208 5 0032083 \N 48209 5 0019860 \N 48210 5 2000803 \N 48211 3 15084302 \N 48212 3 17662591 \N 48213 5 0002017 \N 48214 5 0009240 \N 48215 5 0003382 \N 48216 5 0071580 \N 48217 5 0052485 \N 48218 5 0002567 \N 48219 5 0052528 \N 48220 5 2000011 \N 48221 5 0033336 \N 48222 5 0071452 \N 48223 5 0019853 \N 48224 5 0051135 \N 48225 5 0007194 \N 48226 5 0090180 \N 48227 5 0021555 \N 48228 5 0050972 \N 48229 5 2000642 \N 48230 5 0010531 \N 48231 5 0014726 \N 48232 5 0001583 \N 48233 5 0019558 \N 48234 5 0032657 \N 48235 5 0001997 \N 48236 5 0007497 \N 48237 5 2000034 \N 48238 5 0046057 \N 48239 5 0007555 \N 48240 5 0060043 \N 48241 5 0042518 \N 48242 5 0070862 \N 48243 5 0046148 \N 48244 5 0021762 \N 48245 5 0001974 \N 48246 5 0033125 \N 48247 5 0002826 \N 48248 5 0019559 \N 48249 5 0045661 \N 48250 5 0022416 \N 48251 5 0048009 \N 48252 5 0006639 \N 48253 5 0042189 \N 48254 5 0006546 \N 48255 5 0042784 \N 48256 5 0043155 \N 48257 5 0051979 \N 48258 5 0010244 \N 48259 3 10398709 \N 48260 5 0030157 \N 48261 5 0006292 \N 48262 5 0072607 \N 48263 5 0003389 \N 48264 5 0033634 \N 48265 5 0060376 \N 48266 5 0045037 \N 48267 5 0008371 \N 48268 5 0014729 \N 48269 5 0031128 \N 48270 5 0006827 \N 48271 5 0003400 \N 48272 5 0042069 \N 48273 5 0010815 \N 48274 5 0035744 \N 48275 5 0032425 \N 48276 5 0048326 \N 48277 5 0014720 \N 48278 5 0000174 \N 48279 5 0051236 \N 48280 5 0014827 \N 48281 100 0001539 \N 48282 101 A03.556.124 \N 48283 5 2000991 \N 48284 5 2000534 \N 48285 5 0050740 \N 48286 89 AA0349 \N 48287 5 0032664 \N 48288 5 0055083 \N 48289 5 0071871 \N 48290 88 33568 \N 48291 5 0033326 \N 48292 4 ln \N 48293 94 //users.ahsc.arizona.edu/davis/csf.htm \N 48294 3 10716451 \N 48295 5 0009757 \N 48296 5 0051855 \N 48297 5 0021769 \N 48298 5 0033004 \N 48299 5 2000040 \N 48300 5 0006581 \N 48301 5 0007607 \N 48302 5 0042425 \N 48303 5 0021792 \N 48304 5 0060772 \N 48305 5 0071496 \N 48306 5 0072075 \N 48307 5 0006081 \N 48308 5 0003311 \N 48309 5 0015805 \N 48310 5 0016047 \N 48311 5 0046550 \N 48312 89 AA0328 \N 48313 5 0045492 \N 48314 3 11931668 \N 48315 5 0019289 \N 48316 5 0031193 \N 48317 5 0031194 \N 48318 87 PWY-761 \N 48319 3 11274118 \N 48320 5 0002905 \N 48321 5 0060051 \N 48322 5 0050768 \N 48323 5 0060610 \N 48324 5 0060641 \N 48325 5 2000392 \N 48326 5 0070793 \N 48327 5 0035417 \N 48328 5 0042364 \N 48329 5 0002672 \N 48330 5 0015843 \N 48331 5 0080162 \N 48332 3 19506555 \N 48333 5 0045316 \N 48334 5 0003333 \N 48335 5 0061008 \N 48336 5 0075232 \N 48337 5 0046131 \N 48338 5 0002262 \N 48339 91 0000763 \N 48340 5 0080026 \N 48341 3 18725356 \N 48342 5 0032881 \N 48343 5 0060484 \N 48344 5 0070714 \N 48345 5 0046894 \N 48346 89 AA0335 \N 48347 5 0075108 \N 48348 5 0071264 \N 48349 5 0042832 \N 48350 5 0072245 \N 48351 5 0000169 \N 48352 5 0071357 \N 48353 5 0010215 \N 48354 3 12468730 \N 48355 5 0045216 \N 48356 5 0072240 \N 48357 5 0045658 \N 48358 5 0019324 \N 48359 5 0006588 \N 48360 5 0060428 \N 48361 5 0060140 \N 48362 5 0007247 \N 48363 5 0060989 \N 48364 5 0060512 \N 48365 5 0042104 \N 48366 5 0019656 \N 48367 87 P122-PWY \N 48368 5 0045602 \N 48369 5 0042882 \N 48370 5 0002271 \N 48371 5 0030852 \N 48372 5 2000383 \N 48373 5 0051962 \N 48374 5 0034303 \N 48375 86 0122268008 \N 48376 5 0051297 \N 48377 5 0035367 \N 48378 5 0055065 \N 48379 5 0050710 \N 48380 5 0048107 \N 48381 5 0042860 \N 48382 5 0071479 \N 48383 5 0033481 \N 48384 5 2000055 \N 48385 5 0006032 \N 48386 5 0002618 \N 48387 5 2000564 \N 48388 5 0051817 \N 48389 5 0010692 \N 48390 5 0008166 \N 48391 5 0000192 \N 48392 5 0046102 \N 48393 5 0008258 \N 48394 5 0045088 \N 48395 5 0097035 \N 48396 5 0060215 \N 48397 3 15617691 \N 48398 5 0002236 \N 48399 5 0075151 \N 48400 5 0060426 \N 48401 5 0018304 \N 48402 89 AA0286 \N 48403 5 0071995 \N 48404 5 0035903 \N 48405 3 17683801 \N 48406 3 19893991 \N 48407 5 0045619 \N 48408 5 0046278 \N 48409 5 0060375 \N 48410 5 0042249 \N 48411 5 0051568 \N 48412 5 0040017 \N 48413 5 0030823 \N 48414 5 0045989 \N 48415 5 0071935 \N 48416 3 19609300 \N 48417 5 0060761 \N 48418 5 0018387 \N 48419 5 0075322 \N 48420 5 0048367 \N 48421 5 0075008 \N 48422 5 0030308 \N 48423 5 0075209 \N 48424 5 0009075 \N 48425 5 0010638 \N 48426 5 0045186 \N 48427 5 0032185 \N 48428 5 0043572 \N 48429 5 0031401 \N 48430 5 0045192 \N 48431 5 0046194 \N 48432 5 2000084 \N 48433 5 0048834 \N 48434 5 0075158 \N 48435 5 0032006 \N 48436 5 2000240 \N 48437 5 0019920 \N 48438 5 0001712 \N 48439 5 0071470 \N 48440 5 0031648 \N 48441 5 0035945 \N 48442 5 0030221 \N 48443 5 0075101 \N 48444 5 0015893 \N 48445 5 0032295 \N 48446 5 0040025 \N 48447 5 0050802 \N 48448 5 0016094 \N 48449 5 0032855 \N 48450 5 0006464 \N 48451 5 0019244 \N 48452 5 0030818 \N 48453 5 0043371 \N 48454 5 0007620 \N 48455 5 0006346 \N 48456 5 0003031 \N 48457 5 0033034 \N 48458 5 0021752 \N 48459 5 0021830 \N 48460 5 0014875 \N 48461 5 0010023 \N 48462 5 0014810 \N 48463 5 0021714 \N 48464 5 0010371 \N 48465 5 0071786 \N 48466 5 0001765 \N 48467 3 12648772 \N 48468 3 12803918 \N 48469 5 0031280 \N 48470 5 0075031 \N 48471 5 0075224 \N 48472 5 0006628 \N 48473 3 7600576 \N 48474 5 0015896 \N 48475 3 12702699 \N 48476 115 4221 \N 48477 5 0072375 \N 48478 3 14659098 \N 48479 3 7923375 \N 48480 5 0042715 \N 48481 3 11102361 \N 48482 3 12672493 \N 48483 5 0021646 \N 48484 5 0060286 \N 48485 5 0046219 \N 48486 5 0071276 \N 48487 5 0035752 \N 48488 5 0043603 \N 48489 5 0018260 \N 48490 5 0035886 \N 48491 3 16151017 \N 48492 3 18267954 \N 48493 5 0002526 \N 48494 5 0061303 \N 48495 5 0045910 \N 48496 5 0007501 \N 48497 5 0042854 \N 48498 5 0033621 \N 48499 3 16823445 \N 48500 5 0015718 \N 48501 5 0048776 \N 48502 5 0044125 \N 48503 5 0052197 \N 48504 5 0002855 \N 48505 5 0010889 \N 48506 5 0072567 \N 48507 5 0007632 \N 48508 5 0046078 \N 48509 5 2000378 \N 48510 5 0042992 \N 48511 5 0052465 \N 48512 5 0032615 \N 48513 5 0090352 \N 48514 5 0060436 \N 48515 5 0050677 \N 48516 5 0006992 \N 48517 5 0014857 \N 48518 91 0000188 \N 48519 5 0007027 \N 48520 5 0014033 \N 48521 5 0007384 \N 48522 5 0007097 \N 48523 5 0060660 \N 48524 5 0061193 \N 48525 5 0034605 \N 48526 5 0019403 \N 48527 5 0043405 \N 48528 5 0070526 \N 48529 3 19287007 \N 48530 5 0009582 \N 48531 5 0046184 \N 48532 5 0072146 \N 48533 5 0019047 \N 48534 86 0121585336 \N 48535 5 0001787 \N 48536 5 0046443 \N 48537 5 0014061 \N 48538 5 0001924 \N 48539 5 0044356 \N 48540 3 20062055 \N 48541 5 0070286 \N 48542 3 19052621 \N 48543 5 0021897 \N 48544 5 2000273 \N 48545 5 0051257 \N 48546 5 0045197 \N 48547 5 0051160 \N 48548 5 0009141 \N 48549 5 2000467 \N 48550 5 0010478 \N 48551 3 17573537 \N 48552 5 0097032 \N 48553 5 2001033 \N 48554 5 0033501 \N 48555 5 0007179 \N 48556 5 0033559 \N 48557 5 0006611 \N 48558 5 0046675 \N 48559 5 0000501 \N 48560 92 10.1016/S0963-9969(99)00021-6 \N 48561 5 0019331 \N 48562 87 P303-PWY \N 48563 5 0070541 \N 48564 5 0009856 \N 48565 3 10973091 \N 48566 5 0043111 \N 48567 3 14645529 \N 48568 5 0019832 \N 48569 5 0033512 \N 48570 87 LYSINE-DEG1-PWY \N 48571 5 0072300 \N 48572 5 0034773 \N 48573 5 0007353 \N 48574 5 0043335 \N 48575 5 0072685 \N 48576 3 19211838 \N 48577 5 0060231 \N 48578 5 0003039 \N 48579 5 0003332 \N 48580 5 0019372 \N 48581 3 17163881 \N 48582 5 0051845 \N 48583 3 12439615 \N 48584 5 0031099 \N 48585 5 2000155 \N 48586 5 0031052 \N 48587 5 0072318 \N 48588 3 11084334 \N 48589 3 11146663 \N 48590 3 8524399 \N 48591 5 0019254 \N 48592 5 0072125 \N 48593 5 0052112 \N 48594 5 0048488 \N 48595 5 0008099 \N 48596 5 0052378 \N 48597 5 0000448 \N 48598 5 0000490 \N 48599 5 0046000 \N 48600 5 0021772 \N 48601 5 0002278 \N 48602 5 0002611 \N 48603 5 0032022 \N 48604 5 0010645 \N 48605 5 0033151 \N 48606 86 0781700221 \N 48607 5 0009942 \N 48608 5 0034141 \N 48609 5 0071321 \N 48610 5 0055002 \N 48611 91 0000737 \N 48612 5 0006897 \N 48613 5 0016193 \N 48614 5 0016196 \N 48615 5 0043095 \N 48616 5 0061102 \N 48617 3 18173746 \N 48618 5 0051832 \N 48619 5 0048769 \N 48620 3 15947030 \N 48621 5 2000700 \N 48622 5 0015745 \N 48623 5 0031161 \N 48624 5 0007536 \N 48625 5 0052060 \N 48626 5 0048079 \N 48627 5 0048011 \N 48628 5 0009238 \N 48629 5 2000635 \N 48630 5 0030830 \N 48631 5 0010028 \N 48632 86 0122146743 \N 48633 5 0018908 \N 48634 97 sulf \N 48635 5 0035096 \N 48636 5 0006727 \N 48637 5 0051707 \N 48638 5 0009613 \N 48639 5 0042828 \N 48640 5 0043969 \N 48641 5 0003348 \N 48642 5 0003180 \N 48643 5 0097152 \N 48644 91 0000134 \N 48645 3 18231833 \N 48646 5 0043632 \N 48647 5 0051390 \N 48648 5 0001525 \N 48649 86 0878932453 \N 48650 5 0061063 \N 48651 5 0001113 \N 48652 5 0019671 \N 48653 87 GLUDEG-II-PWY \N 48654 5 0048158 \N 48655 5 0023061 \N 48656 5 0006925 \N 48657 5 0048457 \N 48658 5 0048414 \N 48659 5 0034148 \N 48660 5 0030722 \N 48661 5 0048126 \N 48662 5 0002069 \N 48663 5 0003005 \N 48664 5 0090132 \N 48665 5 0042904 \N 48666 5 0035951 \N 48667 5 0006307 \N 48668 3 10946226 \N 48669 5 0002168 \N 48670 5 0010667 \N 48671 5 0009817 \N 48672 5 0002743 \N 48673 5 0042332 \N 48674 5 0048062 \N 48675 5 0071506 \N 48676 88 168396 \N 48677 5 0000495 \N 48678 5 0030212 \N 48679 5 0032261 \N 48680 5 0050798 \N 48681 5 0016255 \N 48682 5 0051044 \N 48683 5 0046646 \N 48684 5 0043974 \N 48685 5 0015964 \N 48686 5 0046454 \N 48687 5 0070481 \N 48688 3 11910110 \N 48689 5 2000894 \N 48690 5 2000949 \N 48691 5 0014065 \N 48692 94 //www.biocarta.com \N 48693 104 PI3K \N 48694 5 0021869 \N 48695 5 0009192 \N 48696 5 0018035 \N 48697 89 AA0082 \N 48698 5 0000018 \N 48699 5 0003082 \N 48700 5 0021636 \N 48701 5 0071402 \N 48702 5 0001192 \N 48703 5 0032739 \N 48704 5 0034101 \N 48705 3 10694114 \N 48706 3 14754397 \N 48707 5 0035677 \N 48708 5 0006168 \N 48709 5 0051710 \N 48710 5 0001902 \N 48711 5 0075290 \N 48712 5 0010382 \N 48713 5 0009587 \N 48714 5 0009102 \N 48715 5 0075246 \N 48716 5 0007619 \N 48717 5 0019467 \N 48718 5 0030939 \N 48719 5 0051005 \N 48720 5 0010337 \N 48721 3 14765119 \N 48722 5 0043613 \N 48723 5 0048108 \N 48724 5 0002516 \N 48725 5 0000294 \N 48726 5 0007280 \N 48727 3 9988212 \N 48728 5 0061169 \N 48729 5 0010908 \N 48730 5 0031664 \N 48731 5 0002362 \N 48732 3 15207821 \N 48733 5 0018144 \N 48734 5 0016356 \N 48735 5 0042201 \N 48736 94 //umbbd.ahc.umn.edu/cpm/cpm_map.html \N 48737 97 cpm \N 48738 5 2000471 \N 48739 5 0048160 \N 48740 5 0060665 \N 48741 5 0033209 \N 48742 5 0046321 \N 48743 5 0042750 \N 48744 3 1945046 \N 48745 5 0007060 \N 48746 5 0045536 \N 48747 5 0035737 \N 48748 5 0015887 \N 48749 5 0015773 \N 48750 5 0032475 \N 48751 5 0018042 \N 48752 89 AA0089 \N 48753 5 2000862 \N 48754 5 2000835 \N 48755 5 0075334 \N 48756 5 2000148 \N 48757 5 0003422 \N 48758 5 0021860 \N 48759 5 0003149 \N 48760 5 0071427 \N 48761 5 0021676 \N 48762 5 0033515 \N 48763 87 PWY-5298 \N 48764 5 0051877 \N 48765 5 0009658 \N 48766 5 0014905 \N 48767 5 0071325 \N 48768 5 0030713 \N 48769 5 0045828 \N 48770 5 0006088 \N 48771 5 0021541 \N 48772 5 0061139 \N 48773 5 0055012 \N 48774 5 0071289 \N 48775 5 0046271 \N 48776 5 0090135 \N 48777 5 0032220 \N 48778 5 0032680 \N 48779 5 0010783 \N 48780 5 0043126 \N 48781 5 0071398 \N 48782 5 0060730 \N 48783 5 0010346 \N 48784 5 0007417 \N 48785 5 0034087 \N 48786 5 0000950 \N 48787 5 0010966 \N 48788 5 0046854 \N 48789 5 0046837 \N 48790 5 0006049 \N 48791 5 0008155 \N 48792 5 0045453 \N 48793 3 10968780 \N 48794 5 0060314 \N 48795 5 0046963 \N 48796 5 0072110 \N 48797 5 0048485 \N 48798 96 9906 \N 48799 5 0070430 \N 48800 5 0015795 \N 48801 5 0090263 \N 48802 5 2000815 \N 48803 5 0034285 \N 48804 5 0021820 \N 48805 5 0018243 \N 48806 5 0048851 \N 48807 5 0009653 \N 48808 5 0019497 \N 48809 97 ghch \N 48810 97 hch \N 48811 5 0072211 \N 48812 5 0070682 \N 48813 3 19412159 \N 48814 5 0007596 \N 48815 94 //www.graylab.ac.uk/omd/ \N 48816 5 0045204 \N 48817 5 0061183 \N 48818 5 0043589 \N 48819 5 0048847 \N 48820 5 0032076 \N 48821 5 0032581 \N 48822 3 16717127 \N 48823 3 17646399 \N 48824 5 0075080 \N 48825 5 0018343 \N 48826 5 0018347 \N 48827 5 0019931 \N 48828 89 AA0312 \N 48829 5 0021829 \N 48830 5 0044121 \N 48831 5 0060896 \N 48832 5 0006599 \N 48833 5 0010586 \N 48834 5 0048662 \N 48835 5 2000366 \N 48836 5 0035920 \N 48837 3 20920515 \N 48838 5 0070155 \N 48839 5 0046373 \N 48840 88 30849 \N 48841 5 0097065 \N 48842 3 14695376 \N 48843 3 15857913 \N 48844 5 0070073 \N 48845 3 183853250 \N 48846 5 0045900 \N 48847 5 0060040 \N 48848 5 0052373 \N 48849 5 0035187 \N 48850 3 10436051 \N 48851 5 0031954 \N 48852 5 0032374 \N 48853 5 0007377 \N 48854 5 0060715 \N 48855 5 0046688 \N 48856 5 0002441 \N 48857 5 0032333 \N 48858 5 0002224 \N 48859 5 0043615 \N 48860 91 0000127 \N 48861 5 2000397 \N 48862 5 0045998 \N 48863 5 0032630 \N 48864 5 0071037 \N 48865 5 0051190 \N 48866 5 2000075 \N 48867 5 0042208 \N 48868 5 0060890 \N 48869 5 0031960 \N 48870 5 0052223 \N 48871 5 0052363 \N 48872 5 0043172 \N 48873 5 0032430 \N 48874 5 0052264 \N 48875 5 0009251 \N 48876 5 0044239 \N 48877 94 //www.emc.maricopa.edu/ \N 48878 5 0043114 \N 48879 5 0071499 \N 48880 5 0090357 \N 48881 5 0030437 \N 48882 5 0007151 \N 48883 3 16339736 \N 48884 5 2000227 \N 48885 5 0045062 \N 48886 5 0042276 \N 48887 3 11485998 \N 48888 5 0042313 \N 48889 5 0006054 \N 48890 5 0072117 \N 48891 116 0000669 \N 48892 5 0090199 \N 48893 5 0070591 \N 48894 5 0052077 \N 48895 5 0071591 \N 48896 5 0034427 \N 48897 5 0071671 \N 48898 5 0000492 \N 48899 5 0023012 \N 48900 5 0010776 \N 48901 5 0033245 \N 48902 5 0033198 \N 48903 5 0000077 \N 48904 3 11891124 \N 48905 5 0061071 \N 48906 5 0071692 \N 48907 5 0035862 \N 48908 5 0061219 \N 48909 5 0051417 \N 48910 5 0090346 \N 48911 5 0009401 \N 48912 94 //www.ucs.mun.ca/~n55lrb/general_pts.html \N 48913 5 0009067 \N 48914 5 0046414 \N 48915 5 0000728 \N 48916 3 7646483 \N 48917 5 0019478 \N 48918 5 0017004 \N 48919 5 0002568 \N 48920 5 0021972 \N 48921 5 0032401 \N 48922 5 0051069 \N 48923 94 //www.els.net/els/public/glossary/ \N 48924 5 0048171 \N 48925 5 0000753 \N 48926 5 0007332 \N 48927 5 0055016 \N 48928 5 0010146 \N 48929 5 0090110 \N 48930 5 2000456 \N 48931 5 0033259 \N 48932 5 0033021 \N 48933 3 12406764 \N 48934 5 0001817 \N 48935 5 0031042 \N 48936 5 0006686 \N 48937 5 0035193 \N 48938 3 9647692 \N 48939 5 0019872 \N 48940 88 17076 \N 48941 5 0048922 \N 48942 3 15832385 \N 48943 5 0008616 \N 48944 5 0009446 \N 48945 5 0060712 \N 48946 5 0071316 \N 48947 5 0046440 \N 48948 88 18019 \N 48949 5 0019732 \N 48950 5 0006966 \N 48951 5 0019734 \N 48952 5 0045823 \N 48953 5 0001818 \N 48954 5 0035162 \N 48955 5 0002375 \N 48956 5 2000634 \N 48957 5 0044041 \N 48958 5 0090020 \N 48959 5 0021992 \N 48960 5 0031442 \N 48961 5 0060572 \N 48962 5 0060100 \N 48963 5 0052746 \N 48964 5 0060690 \N 48965 5 0010792 \N 48966 5 0045849 \N 48967 5 0009834 \N 48968 5 2000303 \N 48969 5 0051941 \N 48970 5 0060817 \N 48971 5 0045165 \N 48972 86 0716731185 \N 48973 5 0018922 \N 48974 94 //umbbd.ahc.umn.edu/ipd/ipd_map.html \N 48975 97 ipd \N 48976 5 0016119 \N 48977 5 0033663 \N 48978 5 0075256 \N 48979 5 0060674 \N 48980 5 0010325 \N 48981 5 0019704 \N 48982 89 AA0307 \N 48983 5 0042616 \N 48984 5 0042932 \N 48985 5 0072218 \N 48986 5 0010998 \N 48987 5 0019682 \N 48988 5 0070219 \N 48989 5 0019522 \N 48990 5 0060383 \N 48991 5 0060206 \N 48992 5 0007140 \N 48993 5 0045533 \N 48994 5 0016139 \N 48995 5 2000585 \N 48996 5 0039005 \N 48997 5 0032627 \N 48998 5 0043520 \N 48999 5 0007416 \N 49000 5 0009082 \N 49001 5 0033465 \N 49002 88 12800 \N 49003 5 0043962 \N 49004 5 0019930 \N 49005 89 AA0316 \N 49006 5 0042340 \N 49007 5 0060058 \N 49008 3 15282149 \N 49009 5 0003018 \N 49010 5 0043647 \N 49011 5 0010702 \N 49012 5 0033398 \N 49013 5 0071034 \N 49014 5 0002416 \N 49015 5 0019233 \N 49016 5 0061354 \N 49017 5 0003151 \N 49018 5 0043901 \N 49019 5 0032965 \N 49020 5 0051329 \N 49021 5 0032502 \N 49022 5 0043453 \N 49023 88 22339 \N 49024 104 Alkyne \N 49025 5 0043105 \N 49026 5 0051923 \N 49027 5 0048387 \N 49028 5 0052382 \N 49029 5 0001894 \N 49030 5 0007285 \N 49031 5 0043963 \N 49032 5 0031153 \N 49033 5 0046485 \N 49034 3 15337120 \N 49035 5 0015944 \N 49036 87 PWY-1881 \N 49037 5 0033492 \N 49038 5 2000725 \N 49039 5 0002922 \N 49040 5 0015695 \N 49041 5 0030588 \N 49042 3 10751167 \N 49043 3 7729583 \N 49044 5 2000718 \N 49045 5 0032256 \N 49046 5 0043938 \N 49047 5 0010037 \N 49048 5 0021517 \N 49049 5 0010498 \N 49050 5 0002076 \N 49051 5 0042226 \N 49052 5 0031065 \N 49053 5 0051423 \N 49054 5 0042033 \N 49055 5 0010419 \N 49056 5 0006014 \N 49057 5 0034645 \N 49058 5 0034961 \N 49059 5 0048721 \N 49060 5 0042889 \N 49061 5 0046757 \N 49062 5 0009945 \N 49063 5 0046497 \N 49064 5 0090073 \N 49065 5 0090314 \N 49066 5 0045356 \N 49067 5 0060833 \N 49068 5 0019762 \N 49069 5 0002384 \N 49070 5 0019526 \N 49071 5 0072326 \N 49072 5 0019612 \N 49073 5 0044073 \N 49074 5 0052044 \N 49075 5 0061199 \N 49076 5 0072497 \N 49077 91 0002452 \N 49078 5 0042529 \N 49079 5 0055064 \N 49080 5 0046681 \N 49081 5 0014036 \N 49082 5 0018871 \N 49083 94 //umbbd.ahc.umn.edu/acp/acp_map.html \N 49084 97 acp \N 49085 5 0033639 \N 49086 5 0010456 \N 49087 5 0009954 \N 49088 5 0002885 \N 49089 5 0043705 \N 49090 5 0023017 \N 49091 5 0019385 \N 49092 5 0060353 \N 49093 5 0061263 \N 49094 5 0005998 \N 49095 5 0007434 \N 49096 5 0018981 \N 49097 5 0019218 \N 49098 5 0055049 \N 49099 5 0042635 \N 49100 5 0090140 \N 49101 5 0014043 \N 49102 5 0090253 \N 49103 5 0021692 \N 49104 5 0030098 \N 49105 5 0046650 \N 49106 91 0000542 \N 49107 5 0051572 \N 49108 5 0021810 \N 49109 5 0002896 \N 49110 5 0010263 \N 49111 4 ct \N 49112 5 0000216 \N 49113 5 0019412 \N 49114 87 P283-PWY \N 49115 5 0018959 \N 49116 88 33853 \N 49117 5 0065008 \N 49118 5 0016576 \N 49119 5 0060245 \N 49120 5 0007368 \N 49121 5 0090086 \N 49122 5 0031159 \N 49123 5 2000962 \N 49124 5 0034374 \N 49125 5 0045624 \N 49126 5 0019661 \N 49127 94 //dwb.unl.edu/ \N 49128 5 0002865 \N 49129 5 0061132 \N 49130 5 0006528 \N 49131 5 0033275 \N 49132 5 0034964 \N 49133 5 0006022 \N 49134 5 0046968 \N 49135 5 0060593 \N 49136 5 0072232 \N 49137 5 0070958 \N 49138 5 0002064 \N 49139 5 0000116 \N 49140 5 0046519 \N 49141 5 0052207 \N 49142 5 0051818 \N 49143 5 0034631 \N 49144 3 17486116 \N 49145 5 0035964 \N 49146 4 br \N 49147 3 10052452 \N 49148 3 17041781 \N 49149 5 0051199 \N 49150 5 0048202 \N 49151 5 0015768 \N 49152 5 0021562 \N 49153 5 0035610 \N 49154 5 0042094 \N 49155 5 0035763 \N 49156 5 0006061 \N 49157 5 0010351 \N 49158 3 17270011 \N 49159 5 0042377 \N 49160 5 0009632 \N 49161 5 0046492 \N 49162 5 0030441 \N 49163 5 0002159 \N 49164 5 0048151 \N 49165 86 039751820X \N 49166 3 12859672 \N 49167 5 0072067 \N 49168 5 2000192 \N 49169 5 0070898 \N 49170 3 11387215 \N 49171 5 0033070 \N 49172 94 //ww2.icho.edu.pl/cednets/rydzyna/meyer.htm \N 49173 5 0071798 \N 49174 5 0046228 \N 49175 5 0044045 \N 49176 5 0042863 \N 49177 5 0048393 \N 49178 5 0022600 \N 49179 5 0001994 \N 49180 5 0045865 \N 49181 5 0070920 \N 49182 5 2000483 \N 49183 5 0045472 \N 49184 5 0002150 \N 49185 5 0046722 \N 49186 5 0043267 \N 49187 5 0035897 \N 49188 3 15922779 \N 49189 5 0072503 \N 49190 5 0085019 \N 49191 5 0032718 \N 49192 5 0010432 \N 49193 3 16554366 \N 49194 102 0009055 \N 49195 5 0061016 \N 49196 5 0045428 \N 49197 5 0048836 \N 49198 5 0045577 \N 49199 5 0052494 \N 49200 5 0006959 \N 49201 5 0001839 \N 49202 5 0046173 \N 49203 88 26191 \N 49204 5 0003010 \N 49205 5 0016053 \N 49206 5 0030846 \N 49207 5 0009752 \N 49208 5 0030202 \N 49209 5 2000318 \N 49210 5 0031555 \N 49211 5 2000112 \N 49212 5 2000443 \N 49213 5 0033364 \N 49214 5 0019988 \N 49215 5 0030630 \N 49216 5 0021885 \N 49217 5 0015866 \N 49218 5 2000031 \N 49219 5 0006027 \N 49220 5 0052187 \N 49221 5 0002699 \N 49222 5 0018326 \N 49223 89 AA0056 \N 49224 5 0009935 \N 49225 5 0048522 \N 49226 5 0051242 \N 49227 5 0071921 \N 49228 3 10882066 \N 49229 5 0010395 \N 49230 5 0034356 \N 49231 3 17482543 \N 49232 5 0044258 \N 49233 5 0042126 \N 49234 5 0045956 \N 49235 5 0021739 \N 49236 5 0030459 \N 49237 5 0007361 \N 49238 5 0085002 \N 49239 5 0009684 \N 49240 5 0072024 \N 49241 5 0045769 \N 49242 5 2000026 \N 49243 5 0072690 \N 49244 5 0001980 \N 49245 5 0051388 \N 49246 5 0019689 \N 49247 5 0001911 \N 49248 5 0051666 \N 49249 5 0042705 \N 49250 5 0002313 \N 49251 5 0010965 \N 49252 5 0006123 \N 49253 5 0015994 \N 49254 5 0019800 \N 49255 3 1898736 \N 49256 89 AA0219 \N 49257 5 0006873 \N 49258 5 2000021 \N 49259 5 0046297 \N 49260 5 0048798 \N 49261 5 0007227 \N 49262 3 15057936 \N 49263 5 0007462 \N 49264 5 0010989 \N 49265 5 0031524 \N 49266 5 0051671 \N 49267 5 0072237 \N 49268 5 0021849 \N 49269 5 0002482 \N 49270 5 0071030 \N 49271 5 0000714 \N 49272 5 0035853 \N 49273 5 0014708 \N 49274 5 0070705 \N 49275 5 0018124 \N 49276 89 AA0233 \N 49277 5 0048864 \N 49278 5 0050994 \N 49279 5 2000512 \N 49280 5 0070294 \N 49281 5 0007072 \N 49282 5 0009233 \N 49283 5 0017192 \N 49284 89 AA0045 \N 49285 5 0033305 \N 49286 88 18230 \N 49287 5 0032801 \N 49288 5 0007079 \N 49289 5 0007082 \N 49290 5 0070262 \N 49291 5 0035878 \N 49292 94 //en.wikipedia.org/wiki/Nail_(anatomy) \N 49293 86 0323025781 \N 49294 106 0001705 \N 49295 5 0070189 \N 49296 88 28683 \N 49297 5 0042756 \N 49298 5 0051596 \N 49299 5 0071259 \N 49300 5 0034959 \N 49301 5 0061278 \N 49302 5 0070447 \N 49303 5 0046883 \N 49304 5 0032868 \N 49305 5 0006233 \N 49306 5 0070501 \N 49307 5 2000511 \N 49308 5 0015011 \N 49309 5 0009964 \N 49310 5 0071688 \N 49311 5 0010084 \N 49312 5 0048846 \N 49313 5 0045348 \N 49314 5 0061171 \N 49315 5 0075023 \N 49316 5 0006513 \N 49317 5 0046031 \N 49318 5 0032197 \N 49319 5 0006319 \N 49320 5 0006320 \N 49321 5 0006321 \N 49322 5 0006322 \N 49323 5 0006835 \N 49324 5 0006841 \N 49325 5 0051781 \N 49326 5 0010750 \N 49327 5 0072484 \N 49328 5 0007078 \N 49329 5 0060963 \N 49330 5 0018878 \N 49331 5 0061240 \N 49332 5 0044128 \N 49333 5 0032675 \N 49334 5 0075118 \N 49335 5 0010220 \N 49336 5 0035360 \N 49337 5 0050000 \N 49338 5 0061080 \N 49339 5 0008653 \N 49340 5 0072382 \N 49341 5 0021577 \N 49342 5 0007563 \N 49343 5 0048840 \N 49344 5 0046927 \N 49345 3 12696888 \N 49346 5 0071846 \N 49347 3 20362448 \N 49348 5 0046319 \N 49349 5 0071606 \N 49350 5 0032466 \N 49351 5 0030147 \N 49352 5 0031076 \N 49353 5 0035384 \N 49354 5 0072455 \N 49355 5 0008355 \N 49356 5 0031098 \N 49357 5 2000612 \N 49358 5 0021704 \N 49359 5 0021525 \N 49360 5 0006557 \N 49361 5 0006745 \N 49362 87 S-ADENOSYLMETHIONINAMINE \N 49363 5 0021910 \N 49364 5 0010940 \N 49365 5 0046232 \N 49366 5 0071866 \N 49367 5 0090018 \N 49368 5 0072428 \N 49369 5 0034125 \N 49370 5 0010840 \N 49371 5 0002449 \N 49372 5 0032494 \N 49373 5 0052316 \N 49374 5 0071366 \N 49375 5 0061262 \N 49376 5 0045151 \N 49377 5 0007168 \N 49378 5 0048337 \N 49379 5 0010039 \N 49380 5 0060524 \N 49381 5 0035835 \N 49382 5 0055130 \N 49383 5 0046157 \N 49384 5 0007206 \N 49385 5 0035786 \N 49386 3 18293929 \N 49387 5 0009697 \N 49388 86 0943088399 \N 49389 5 0051900 \N 49390 5 2000537 \N 49391 5 2000137 \N 49392 5 0009800 \N 49393 5 0032811 \N 49394 5 0032932 \N 49395 5 0006979 \N 49396 3 12115731 \N 49397 5 0035146 \N 49398 5 0032742 \N 49399 5 0043100 \N 49400 5 0042077 \N 49401 5 0007443 \N 49402 5 0072286 \N 49403 5 0034489 \N 49404 5 0072421 \N 49405 5 0010463 \N 49406 5 2000940 \N 49407 5 0009915 \N 49408 5 0003171 \N 49409 5 0002037 \N 49410 5 0010259 \N 49411 5 0046239 \N 49412 5 0050927 \N 49413 5 0046036 \N 49414 5 0006243 \N 49415 5 2000293 \N 49416 5 0015785 \N 49417 5 0007159 \N 49418 5 0010200 \N 49419 5 0048634 \N 49420 5 2001038 \N 49421 5 0046292 \N 49422 88 16842 \N 49423 5 0019434 \N 49424 87 DIGLUCODIACETYL-DOCOSANOATE \N 49425 5 0002071 \N 49426 5 0006616 \N 49427 5 0003314 \N 49428 5 0009303 \N 49429 5 0043305 \N 49430 5 2000436 \N 49431 5 0044341 \N 49432 5 0070641 \N 49433 88 33237 \N 49434 5 0002462 \N 49435 5 0006178 \N 49436 5 0045695 \N 49437 5 0052003 \N 49438 5 0006931 \N 49439 5 0045772 \N 49440 5 0019267 \N 49441 5 0070944 \N 49442 5 0070625 \N 49443 3 17442889 \N 49444 5 0051863 \N 49445 5 0048069 \N 49446 5 0000767 \N 49447 5 0031569 \N 49448 5 0050993 \N 49449 5 2000707 \N 49450 5 0003254 \N 49451 5 0019450 \N 49452 5 0072176 \N 49453 5 0042264 \N 49454 5 0046341 \N 49455 88 17962 \N 49456 5 0060538 \N 49457 5 0030393 \N 49458 5 0032048 \N 49459 5 0016184 \N 49460 5 0071918 \N 49461 5 0070163 \N 49462 5 0021642 \N 49463 5 0061364 \N 49464 3 18566128 \N 49465 5 0033598 \N 49466 5 0001957 \N 49467 5 0006329 \N 49468 5 0072639 \N 49469 5 2000570 \N 49470 5 0000431 \N 49471 5 0052167 \N 49472 5 0021627 \N 49473 5 0072157 \N 49474 5 0034968 \N 49475 5 0019566 \N 49476 5 0015857 \N 49477 5 0071616 \N 49478 4 cjk \N 49479 5 0048378 \N 49480 5 0075076 \N 49481 5 0051311 \N 49482 5 0035372 \N 49483 5 0051012 \N 49484 3 14557818 \N 49485 3 14614826 \N 49486 5 0014738 \N 49487 5 0035077 \N 49488 3 12543962 \N 49489 5 0072008 \N 49490 5 0042918 \N 49491 88 22318 \N 49492 5 0021902 \N 49493 5 0010653 \N 49494 5 0072085 \N 49495 5 2000696 \N 49496 5 0035581 \N 49497 3 20855508 \N 49498 5 0034342 \N 49499 5 0032363 \N 49500 5 0006508 \N 49501 5 0070167 \N 49502 5 0017001 \N 49503 5 0048212 \N 49504 5 0045365 \N 49505 5 0018273 \N 49506 89 AA0120 \N 49507 5 0031347 \N 49508 5 0014058 \N 49509 5 0019394 \N 49510 5 0032524 \N 49511 5 0002213 \N 49512 5 0002214 \N 49513 5 0052298 \N 49514 5 0030004 \N 49515 5 0002268 \N 49516 5 0055084 \N 49517 5 0000380 \N 49518 3 12110900 \N 49519 5 2000082 \N 49520 3 19395407 \N 49521 5 0035499 \N 49522 93 6.3.2.11 \N 49523 3 20097752 \N 49524 5 0060659 \N 49525 5 0030656 \N 49526 5 0023022 \N 49527 5 0033310 \N 49528 5 0019294 \N 49529 88 32817 \N 49530 5 0061153 \N 49531 5 0048314 \N 49532 94 //www.bio.uu.nl \N 49533 5 0097012 \N 49534 5 0031460 \N 49535 5 0000757 \N 49536 5 0032769 \N 49537 5 0035215 \N 49538 5 0007476 \N 49539 5 0015672 \N 49540 5 0010617 \N 49541 3 17982000 \N 49542 5 0010701 \N 49543 5 2000959 \N 49544 5 0048383 \N 49545 5 0032474 \N 49546 5 0060629 \N 49547 5 0072396 \N 49548 5 0060622 \N 49549 5 2000183 \N 49550 5 0075178 \N 49551 5 0003415 \N 49552 5 0007109 \N 49553 5 0001321 \N 49554 5 0009435 \N 49555 5 0006736 \N 49556 86 0618254153 \N 49557 5 0048820 \N 49558 5 0002345 \N 49559 5 0051450 \N 49560 5 0003139 \N 49561 5 0060813 \N 49562 5 0052132 \N 49563 5 0051684 \N 49564 5 0043483 \N 49565 5 0023065 \N 49566 5 2000649 \N 49567 5 0010863 \N 49568 5 2000150 \N 49569 5 0018109 \N 49570 89 AA0222 \N 49571 5 0046734 \N 49572 5 0006487 \N 49573 89 AA0156 \N 49574 89 AA0327 \N 49575 5 0019560 \N 49576 5 0060955 \N 49577 5 0003202 \N 49578 5 0050838 \N 49579 89 AA0359 \N 49580 5 0019353 \N 49581 5 0071602 \N 49582 88 46961 \N 49583 5 0010197 \N 49584 5 0018322 \N 49585 5 0019363 \N 49586 5 0071702 \N 49587 88 50860 \N 49588 5 0034209 \N 49589 3 18034159 \N 49590 5 0000096 \N 49591 5 0003132 \N 49592 5 0072525 \N 49593 88 26421 \N 49594 5 0035263 \N 49595 3 11290302 \N 49596 3 11702781 \N 49597 5 0000736 \N 49598 5 0010443 \N 49599 5 0032978 \N 49600 3 14739936 \N 49601 5 0042268 \N 49602 5 0030150 \N 49603 5 0071674 \N 49604 5 0060867 \N 49605 5 0006383 \N 49606 5 0003125 \N 49607 5 0090243 \N 49608 5 0051090 \N 49609 5 0045727 \N 49610 5 0045946 \N 49611 5 0010227 \N 49612 3 12972671 \N 49613 5 0097017 \N 49614 5 0018068 \N 49615 89 AA0147 \N 49616 5 0030651 \N 49617 5 2000422 \N 49618 5 0035678 \N 49619 5 0032306 \N 49620 5 0045757 \N 49621 5 0016135 \N 49622 5 0035118 \N 49623 5 0071268 \N 49624 88 17230 \N 49625 5 0072661 \N 49626 5 0039513 \N 49627 5 0071988 \N 49628 5 0042109 \N 49629 5 0046944 \N 49630 5 2000913 \N 49631 5 0000467 \N 49632 5 0071526 \N 49633 3 15239959 \N 49634 5 0071725 \N 49635 5 0002049 \N 49636 5 0043556 \N 49637 5 0048078 \N 49638 5 0048197 \N 49639 5 2000204 \N 49640 5 0032847 \N 49641 5 2000926 \N 49642 5 0032886 \N 49643 5 0038015 \N 49644 5 0032695 \N 49645 5 0015707 \N 49646 5 0060617 \N 49647 5 0045787 \N 49648 5 0072507 \N 49649 5 0003364 \N 49650 5 0042964 \N 49651 5 2000559 \N 49652 5 0009773 \N 49653 5 0006191 \N 49654 5 2000377 \N 49655 5 2000846 \N 49656 5 0019538 \N 49657 5 0006411 \N 49658 5 0072584 \N 49659 3 17318224 \N 49660 3 18498251 \N 49661 3 8970738 \N 49662 3 9234965 \N 49663 5 0006669 \N 49664 5 0034106 \N 49665 3 12905029 \N 49666 5 0033579 \N 49667 5 0021683 \N 49668 5 0003213 \N 49669 5 0046660 \N 49670 5 0031541 \N 49671 5 0033667 \N 49672 5 0006115 \N 49673 5 0042138 \N 49674 3 11529427 \N 49675 5 0019886 \N 49676 5 0042591 \N 49677 5 0048005 \N 49678 5 0018011 \N 49679 89 AA0061 \N 49680 89 AA0062 \N 49681 5 0019602 \N 49682 87 TOLUENE-DEG-3-OH-PWY \N 49683 5 0060923 \N 49684 5 0051339 \N 49685 93 4.-.-.- \N 49686 5 0045611 \N 49687 5 0045325 \N 49688 89 AA0322 \N 49689 5 0021503 \N 49690 5 0010686 \N 49691 5 0001946 \N 49692 3 11596157 \N 49693 5 0035132 \N 49694 5 2001054 \N 49695 5 0090082 \N 49696 3 16860783 \N 49697 5 0003098 \N 49698 5 0070602 \N 49699 5 0048453 \N 49700 5 0048423 \N 49701 5 0071684 \N 49702 5 0042183 \N 49703 5 0061374 \N 49704 3 10662642 \N 49705 5 0022003 \N 49706 5 0018439 \N 49707 5 0018440 \N 49708 89 AA0299 \N 49709 5 0071621 \N 49710 5 0048705 \N 49711 5 2000118 \N 49712 5 0046050 \N 49713 5 0018265 \N 49714 89 AA0158 \N 49715 5 0070220 \N 49716 87 SULFUROX-PWY \N 49717 5 0031318 \N 49718 5 0007187 \N 49719 5 0014918 \N 49720 5 0060954 \N 49721 5 0018330 \N 49722 89 AA0228 \N 49723 5 0031297 \N 49724 3 11459955 \N 49725 3 15367656 \N 49726 3 17660542 \N 49727 5 0061222 \N 49728 5 0050917 \N 49729 5 2000079 \N 49730 5 0031450 \N 49731 5 0060821 \N 49732 5 0070346 \N 49733 5 2000263 \N 49734 5 0002292 \N 49735 5 0009960 \N 49736 5 0006795 \N 49737 5 0003291 \N 49738 5 0030965 \N 49739 4 sd \N 49740 5 0048469 \N 49741 5 0032774 \N 49742 5 0070672 \N 49743 5 0008346 \N 49744 5 0071285 \N 49745 5 0050773 \N 49746 5 0071169 \N 49747 5 0052180 \N 49748 5 0002725 \N 49749 5 0032307 \N 49750 5 0023051 \N 49751 5 0072201 \N 49752 5 0002254 \N 49753 3 11842287 \N 49754 3 14501145 \N 49755 5 0021845 \N 49756 5 0061093 \N 49757 5 2000323 \N 49758 5 0033044 \N 49759 5 0006717 \N 49760 5 0072220 \N 49761 5 0045123 \N 49762 5 0016477 \N 49763 5 0034409 \N 49764 5 0019486 \N 49765 5 2000120 \N 49766 5 0002695 \N 49767 5 0032071 \N 49768 5 0051026 \N 49769 5 0045382 \N 49770 5 0071255 \N 49771 3 10966461 \N 49772 3 11085977 \N 49773 5 0072365 \N 49774 5 0090146 \N 49775 5 0006839 \N 49776 5 0030903 \N 49777 5 0042774 \N 49778 5 0021759 \N 49779 5 0071955 \N 49780 5 0015701 \N 49781 5 0007240 \N 49782 5 0046396 \N 49783 5 0090230 \N 49784 5 0042487 \N 49785 5 0090186 \N 49786 5 0009688 \N 49787 5 0072362 \N 49788 5 0002124 \N 49789 5 0032459 \N 49790 5 0071297 \N 49791 5 0003308 \N 49792 5 0046669 \N 49793 5 0002715 \N 49794 5 0045845 \N 49795 5 0002919 \N 49796 5 0009919 \N 49797 5 0060918 \N 49798 5 0008380 \N 49799 5 0006395 \N 49800 5 0045371 \N 49801 5 0015688 \N 49802 5 0032124 \N 49803 5 0046066 \N 49804 5 0060092 \N 49805 5 0001314 \N 49806 5 0060347 \N 49807 5 0016552 \N 49808 5 0033400 \N 49809 88 16522 \N 49810 5 0070741 \N 49811 5 2000064 \N 49812 5 0042818 \N 49813 88 16410 \N 49814 5 0021507 \N 49815 5 0015881 \N 49816 5 0032015 \N 49817 5 0075053 \N 49818 5 0042893 \N 49819 5 0003053 \N 49820 5 0097095 \N 49821 5 0018177 \N 49822 5 0007549 \N 49823 5 0050812 \N 49824 5 0019054 \N 49825 5 0044029 \N 49826 104 Cpg_island \N 49827 5 0019744 \N 49828 5 0070859 \N 49829 5 0044141 \N 49830 5 0070242 \N 49831 5 0048899 \N 49832 5 0003297 \N 49833 5 0070986 \N 49834 5 0009728 \N 49835 5 0002295 \N 49836 5 0021510 \N 49837 5 0008056 \N 49838 94 //fly.ebi.ac.uk/.bin/cvreport2?id=FBcv0004540 \N 49839 5 0048931 \N 49840 5 0009297 \N 49841 5 0006662 \N 49842 5 0032150 \N 49843 3 11583838 \N 49844 5 0002460 \N 49845 5 0046701 \N 49846 5 0021700 \N 49847 5 0045116 \N 49848 5 0019943 \N 49849 3 11698580 \N 49850 5 0070828 \N 49851 5 0010620 \N 49852 5 0006810 \N 49853 5 0015457 \N 49854 5 0015460 \N 49855 5 0070285 \N 49856 5 0019710 \N 49857 5 0018018 \N 49858 89 AA0070 \N 49859 89 AA0311 \N 49860 5 0003224 \N 49861 5 0042480 \N 49862 5 0018944 \N 49863 97 tbt \N 49864 5 0009969 \N 49865 5 0021786 \N 49866 5 0016180 \N 49867 5 0003286 \N 49868 5 0014861 \N 49869 5 0021961 \N 49870 5 0034165 \N 49871 5 0031290 \N 49872 4 ejs \N 49873 5 0035973 \N 49874 5 0035972 \N 49875 3 18508269 \N 49876 5 0002586 \N 49877 5 2000950 \N 49878 5 0014894 \N 49879 5 0002658 \N 49880 5 0003027 \N 49881 5 0018275 \N 49882 5 0017191 \N 49883 89 AA0043 \N 49884 5 0002740 \N 49885 5 0003141 \N 49886 5 0008643 \N 49887 5 0006861 \N 49888 5 0008644 \N 49889 5 0006422 \N 49890 5 0007196 \N 49891 5 0003264 \N 49892 5 0048303 \N 49893 5 0019614 \N 49894 5 0018103 \N 49895 5 0006882 \N 49896 5 0070799 \N 49897 5 0035228 \N 49898 5 2000465 \N 49899 5 0051309 \N 49900 5 0042746 \N 49901 3 12575468 \N 49902 5 0043366 \N 49903 3 12220932 \N 49904 5 0042157 \N 49905 5 0000086 \N 49906 5 0072049 \N 49907 5 0035584 \N 49908 5 0010388 \N 49909 5 0045592 \N 49910 5 0030001 \N 49911 5 0060071 \N 49912 5 0046461 \N 49913 5 0061205 \N 49914 5 0040039 \N 49915 86 0879694882 \N 49916 5 0061302 \N 49917 3 8837777 \N 49918 5 0071423 \N 49919 5 0043517 \N 49920 5 0008049 \N 49921 5 0016542 \N 49922 5 0034627 \N 49923 3 17161604 \N 49924 5 0075225 \N 49925 5 0070752 \N 49926 5 0051821 \N 49927 5 0051241 \N 49928 5 0051523 \N 49929 5 0015759 \N 49930 94 //www.biochem.purdue.edu/ \N 49931 5 0075127 \N 49932 5 0090373 \N 49933 5 0070897 \N 49934 5 0042530 \N 49935 5 0072019 \N 49936 5 0070478 \N 49937 3 12769863 \N 49938 5 0002842 \N 49939 5 0015966 \N 49940 5 0051071 \N 49941 5 0048251 \N 49942 3 10841810 \N 49943 3 12615674 \N 49944 5 0019444 \N 49945 5 0033509 \N 49946 87 PWY-5088 \N 49947 5 0002810 \N 49948 5 0048135 \N 49949 5 0050826 \N 49950 5 0002910 \N 49951 5 0072309 \N 49952 5 0052116 \N 49953 5 0046692 \N 49954 5 0043438 \N 49955 88 15344 \N 49956 104 Acetoacetic_acid \N 49957 5 0052238 \N 49958 5 0043146 \N 49959 5 0071882 \N 49960 5 0021536 \N 49961 5 0070808 \N 49962 5 0046458 \N 49963 5 0060858 \N 49964 5 0000422 \N 49965 5 0003244 \N 49966 5 0010519 \N 49967 5 0048771 \N 49968 5 0033528 \N 49969 87 PWY-5441 \N 49970 5 0010515 \N 49971 5 0052000 \N 49972 5 0043137 \N 49973 3 12424238 \N 49974 5 2000728 \N 49975 3 15210706 \N 49976 5 0042741 \N 49977 5 0021581 \N 49978 5 0034599 \N 49979 5 0009894 \N 49980 5 0003361 \N 49981 5 2000721 \N 49982 5 0061111 \N 49983 5 0009147 \N 49984 5 0090271 \N 49985 5 0009848 \N 49986 5 0010629 \N 49987 5 2000972 \N 49988 5 0006595 \N 49989 5 0002407 \N 49990 3 15814331 \N 49991 3 16056255 \N 49992 5 0000965 \N 49993 5 0090175 \N 49994 5 0050955 \N 49995 94 //www.wikipedia.org/Thermoception \N 49996 5 0050963 \N 49997 5 0043666 \N 49998 3 11724821 \N 49999 5 0043549 \N 50000 5 0050986 \N 50001 3 14531691 \N 50002 89 AA0360 \N 50003 5 0052125 \N 50004 5 0071523 \N 50005 5 0035331 \N 50006 5 2001015 \N 50007 5 0006490 \N 50008 5 0035231 \N 50009 3 10367889 \N 50010 3 10675901 \N 50011 5 0016083 \N 50012 5 0060144 \N 50013 5 0070715 \N 50014 5 0051169 \N 50015 5 0052433 \N 50016 5 0046356 \N 50017 5 2000416 \N 50018 5 0045904 \N 50019 5 0035309 \N 50020 5 0014021 \N 50021 5 0014026 \N 50022 5 0033955 \N 50023 5 0048178 \N 50024 5 2000825 \N 50025 5 0014020 \N 50026 5 0018063 \N 50027 89 AA0134 \N 50028 5 0000409 \N 50029 5 0019942 \N 50030 5 0019226 \N 50031 5 0018219 \N 50032 5 0009442 \N 50033 87 PWY0-41 \N 50034 5 0097104 \N 50035 3 21424692 \N 50036 5 0032672 \N 50037 5 0045980 \N 50038 5 2000070 \N 50039 5 0051347 \N 50040 5 2000177 \N 50041 5 0070105 \N 50042 5 0048649 \N 50043 5 0070171 \N 50044 5 0031163 \N 50045 5 0052647 \N 50046 88 25898 \N 50047 5 0021923 \N 50048 5 0003356 \N 50049 5 0060633 \N 50050 5 0070159 \N 50051 5 0009132 \N 50052 5 0006757 \N 50053 5 0034238 \N 50054 5 0006401 \N 50055 5 0007480 \N 50056 5 0007262 \N 50057 5 0048152 \N 50058 5 0046190 \N 50059 5 0046306 \N 50060 5 0034392 \N 50061 5 0030644 \N 50062 5 0000160 \N 50063 3 9191038 \N 50064 5 0016042 \N 50065 5 0006724 \N 50066 5 0019064 \N 50067 5 0007047 \N 50068 5 0071775 \N 50069 5 0050757 \N 50070 93 2.1.1.45 \N 50071 5 0080006 \N 50072 5 0007561 \N 50073 3 11494317 \N 50074 5 0060762 \N 50075 5 0071301 \N 50076 5 0006169 \N 50077 5 0042433 \N 50078 88 35581 \N 50079 5 0048087 \N 50080 5 0030474 \N 50081 5 0097050 \N 50082 3 16087305 \N 50083 5 0072641 \N 50084 5 0048638 \N 50085 5 0044351 \N 50086 3 14732047 \N 50087 5 0061123 \N 50088 5 0052095 \N 50089 5 0075271 \N 50090 5 0072464 \N 50091 5 0045460 \N 50092 88 18227 \N 50093 5 0052395 \N 50094 5 0050984 \N 50095 89 AA0361 \N 50096 5 0033132 \N 50097 5 0008595 \N 50098 5 0035490 \N 50099 5 0006269 \N 50100 3 11395402 \N 50101 5 0019923 \N 50102 89 AA0224 \N 50103 5 0048083 \N 50104 5 0002792 \N 50105 5 0060919 \N 50106 5 0070141 \N 50107 5 0072194 \N 50108 5 0019876 \N 50109 5 0031367 \N 50110 5 0048686 \N 50111 5 0002838 \N 50112 5 0048552 \N 50113 5 0051564 \N 50114 5 0048280 \N 50115 5 0060878 \N 50116 5 0002521 \N 50117 91 0000738 \N 50118 5 0051180 \N 50119 5 0060579 \N 50120 5 0019313 \N 50121 5 0035399 \N 50122 5 0042193 \N 50123 5 0048733 \N 50124 5 0046004 \N 50125 5 0048136 \N 50126 5 0015952 \N 50127 5 0002762 \N 50128 5 0075262 \N 50129 5 0001744 \N 50130 5 0007457 \N 50131 3 8402833 \N 50132 5 0003232 \N 50133 5 0010043 \N 50134 5 0045977 \N 50135 5 0042662 \N 50136 5 0072471 \N 50137 5 2000855 \N 50138 5 0035771 \N 50139 5 0001879 \N 50140 5 0002735 \N 50141 5 0033137 \N 50142 5 0030168 \N 50143 5 0035392 \N 50144 5 0033345 \N 50145 5 0021511 \N 50146 5 0030259 \N 50147 5 0007525 \N 50148 5 0051694 \N 50149 5 0033641 \N 50150 5 0060284 \N 50151 5 0051663 \N 50152 5 0051662 \N 50153 5 0060912 \N 50154 5 0016926 \N 50155 5 0016928 \N 50156 3 11265250 \N 50157 5 0040005 \N 50158 5 0060063 \N 50159 5 0050855 \N 50160 5 0031086 \N 50161 5 0070178 \N 50162 88 16523 \N 50163 5 0010593 \N 50164 5 0032988 \N 50165 5 0070979 \N 50166 3 18485873 \N 50167 3 20655260 \N 50168 3 21113135 \N 50169 5 0044336 \N 50170 5 0019625 \N 50171 5 0071898 \N 50172 5 0045417 \N 50173 5 0002101 \N 50174 5 0034474 \N 50175 5 0010919 \N 50176 5 0060854 \N 50177 5 0070050 \N 50178 5 0052325 \N 50179 5 0051582 \N 50180 5 0075204 \N 50181 5 2000594 \N 50182 5 0019548 \N 50183 5 0046778 \N 50184 5 0002682 \N 50185 5 0009110 \N 50186 5 0002109 \N 50187 5 0010835 \N 50188 5 0019510 \N 50189 5 0045555 \N 50190 5 0042533 \N 50191 3 10891884 \N 50192 5 0044137 \N 50193 5 0015838 \N 50194 5 0010820 \N 50195 5 0009206 \N 50196 5 0052566 \N 50197 5 0002881 \N 50198 5 0080060 \N 50199 3 19054366 \N 50200 102 0020021 \N 50201 5 0046419 \N 50202 5 0016036 \N 50203 5 0046285 \N 50204 5 0002323 \N 50205 3 15032583 \N 50206 5 0018005 \N 50207 89 AA0057 \N 50208 5 0019567 \N 50209 5 0072012 \N 50210 5 0071649 \N 50211 5 0010389 \N 50212 3 17329565 \N 50213 5 0072262 \N 50214 5 0030638 \N 50215 5 0034761 \N 50216 5 0061358 \N 50217 5 0002823 \N 50218 5 0052576 \N 50219 88 23008 \N 50220 5 0061321 \N 50221 91 0000486 \N 50222 5 0030837 \N 50223 5 0042148 \N 50224 5 0032268 \N 50225 5 0060941 \N 50226 5 0044009 \N 50227 5 0007275 \N 50228 5 0007051 \N 50229 5 0085007 \N 50230 5 0001961 \N 50231 5 0003239 \N 50232 5 0075043 \N 50233 5 0070136 \N 50234 3 18234669 \N 50235 5 0031535 \N 50236 5 0010850 \N 50237 5 0048291 \N 50238 5 0072334 \N 50239 5 0048742 \N 50240 5 0007100 \N 50241 5 0007249 \N 50242 5 0045917 \N 50243 5 0006734 \N 50244 5 0003041 \N 50245 5 0018157 \N 50246 5 0007014 \N 50247 5 0000255 \N 50248 5 0006568 \N 50249 5 0070801 \N 50250 5 0072671 \N 50251 3 21070972 \N 50252 3 21109188 \N 50253 5 0072225 \N 50254 5 0007507 \N 50255 5 0007511 \N 50256 106 0000948 \N 50257 5 0052386 \N 50258 5 0035706 \N 50259 5 0019621 \N 50260 5 2000730 \N 50261 5 0030328 \N 50262 5 0090051 \N 50263 5 0048801 \N 50264 5 0002559 \N 50265 5 0009087 \N 50266 5 0048245 \N 50267 3 11292027 \N 50268 5 0042723 \N 50269 5 0090282 \N 50270 3 10747051 \N 50271 3 10894548 \N 50272 3 10899128 \N 50273 3 10959837 \N 50274 5 0048508 \N 50275 5 0061055 \N 50276 5 0032237 \N 50277 5 0032640 \N 50278 5 0044109 \N 50279 5 0001570 \N 50280 3 8999798 \N 50281 5 0002774 \N 50282 5 0010156 \N 50283 3 10465788 \N 50284 5 0032837 \N 50285 4 expert_rsh \N 50286 5 0001174 \N 50287 3 16826228 \N 50288 3 18846104 \N 50289 5 0043627 \N 50290 5 0006710 \N 50291 5 0042478 \N 50292 5 0000748 \N 50293 5 2000243 \N 50294 5 0045638 \N 50295 5 0009789 \N 50296 5 0014073 \N 50297 88 35615 \N 50298 5 0072514 \N 50299 5 0007067 \N 50300 5 2000601 \N 50301 3 21454476 \N 50302 5 0043369 \N 50303 5 0050669 \N 50304 5 0060706 \N 50305 5 0006001 \N 50306 5 0021855 \N 50307 5 0006948 \N 50308 5 0001550 \N 50309 5 0035545 \N 50310 3 17717195 \N 50311 3 19641012 \N 50312 5 0050903 \N 50313 5 0033006 \N 50314 5 0000053 \N 50315 5 0060702 \N 50316 5 0006126 \N 50317 5 0034440 \N 50318 5 0046741 \N 50319 5 0072632 \N 50320 5 0014009 \N 50321 5 0002338 \N 50322 5 0021746 \N 50323 5 0033271 \N 50324 5 0035689 \N 50325 3 18337562 \N 50326 5 0032635 \N 50327 5 0003251 \N 50328 5 0018166 \N 50329 89 AA0257 \N 50330 5 0009137 \N 50331 5 0022023 \N 50332 5 0090341 \N 50333 5 0060242 \N 50334 3 17376520 \N 50335 5 2000989 \N 50336 5 0002369 \N 50337 5 0033670 \N 50338 5 0006495 \N 50339 5 0034446 \N 50340 3 17050732 \N 50341 5 0007378 \N 50342 5 0002500 \N 50343 5 0003168 \N 50344 5 0075012 \N 50345 5 0072628 \N 50346 5 0071229 \N 50347 5 0031939 \N 50348 5 0030537 \N 50349 5 0017037 \N 50350 5 0043945 \N 50351 5 0010018 \N 50352 5 0060442 \N 50353 5 0071347 \N 50354 5 0006396 \N 50355 5 0006394 \N 50356 5 0001692 \N 50357 5 0042429 \N 50358 5 2001042 \N 50359 5 0035547 \N 50360 5 0033212 \N 50361 5 0008625 \N 50362 5 0070832 \N 50363 87 PWY4FS-2 \N 50364 5 0009677 \N 50365 5 0006253 \N 50366 5 0030947 \N 50367 5 0046476 \N 50368 5 0006085 \N 50369 5 0043950 \N 50370 5 0072100 \N 50371 5 0035051 \N 50372 5 0033028 \N 50373 3 15330259 \N 50374 3 17133093 \N 50375 5 0045852 \N 50376 5 0072276 \N 50377 5 0052213 \N 50378 5 0019475 \N 50379 5 0035352 \N 50380 5 0001934 \N 50381 5 0055118 \N 50382 5 0070392 \N 50383 5 0018415 \N 50384 89 AA0292 \N 50385 5 0002190 \N 50386 3 17284590 \N 50387 5 0061099 \N 50388 5 2000096 \N 50389 5 0052056 \N 50390 5 0048025 \N 50391 5 0035056 \N 50392 5 0075303 \N 50393 5 0035568 \N 50394 89 AA0419 \N 50395 5 0045685 \N 50396 5 0042953 \N 50397 5 0002657 \N 50398 5 0052229 \N 50399 5 0044116 \N 50400 5 2000215 \N 50401 5 0071237 \N 50402 5 0071388 \N 50403 5 0002082 \N 50404 5 0046122 \N 50405 5 0002353 \N 50406 5 0060005 \N 50407 5 0015946 \N 50408 87 CO2FORM-PWY \N 50409 5 0009229 \N 50410 5 0090312 \N 50411 3 20027304 \N 50412 5 0048491 \N 50413 5 0060030 \N 50414 5 0019630 \N 50415 5 0007588 \N 50416 5 0033389 \N 50417 87 PWY-40 \N 50418 5 0035949 \N 50419 3 17875938 \N 50420 5 0009271 \N 50421 3 15485810 \N 50422 3 16045608 \N 50423 5 0060317 \N 50424 3 16314491 \N 50425 3 1996351 \N 50426 5 0032944 \N 50427 5 0044115 \N 50428 5 2000752 \N 50429 5 0044401 \N 50430 5 0045141 \N 50431 3 10690419 \N 50432 5 0035172 \N 50433 5 0000147 \N 50434 5 0045963 \N 50435 5 0035603 \N 50436 5 0006803 \N 50437 5 0009309 \N 50438 5 0001738 \N 50439 5 0035334 \N 50440 5 0021533 \N 50441 5 0032960 \N 50442 5 0016333 \N 50443 5 0052230 \N 50444 5 0052558 \N 50445 5 0021940 \N 50446 5 0018287 \N 50447 89 AA0139 \N 50448 5 0042549 \N 50449 5 2000660 \N 50450 5 0021552 \N 50451 5 0033604 \N 50452 5 0009999 \N 50453 5 0050756 \N 50454 5 2001001 \N 50455 5 0019392 \N 50456 5 0019581 \N 50457 5 0006460 \N 50458 5 0007313 \N 50459 5 0048125 \N 50460 5 0010554 \N 50461 5 0035532 \N 50462 5 0051533 \N 50463 5 0007610 \N 50464 86 0395448956 \N 50465 5 0000115 \N 50466 5 2000932 \N 50467 5 0090362 \N 50468 5 0045921 \N 50469 5 0044416 \N 50470 5 0031949 \N 50471 5 0023039 \N 50472 5 0052083 \N 50473 5 0072133 \N 50474 5 0015679 \N 50475 5 0046630 \N 50476 5 0035040 \N 50477 5 0032323 \N 50478 5 0006818 \N 50479 5 0042215 \N 50480 5 0002195 \N 50481 111 UPA00729 \N 50482 5 0042210 \N 50483 5 0030450 \N 50484 5 0034299 \N 50485 5 0002754 \N 50486 5 0032327 \N 50487 5 0010734 \N 50488 5 0042870 \N 50489 5 0031056 \N 50490 5 0030206 \N 50491 5 0007437 \N 50492 5 0010959 \N 50493 5 0071578 \N 50494 5 0039510 \N 50495 5 0033056 \N 50496 88 16176 \N 50497 5 0060828 \N 50498 5 2000881 \N 50499 5 0006863 \N 50500 5 0015852 \N 50501 5 0009608 \N 50502 5 0021662 \N 50503 5 0032245 \N 50504 5 0006467 \N 50505 5 0051888 \N 50506 5 0010406 \N 50507 5 0048666 \N 50508 5 0070508 \N 50509 5 0071076 \N 50510 3 19430462 \N 50511 5 0010133 \N 50512 5 0019494 \N 50513 5 2000218 \N 50514 5 0035020 \N 50515 5 0009837 \N 50516 86 0521587840 \N 50517 5 0009220 \N 50518 5 0060169 \N 50519 5 0016488 \N 50520 5 0009715 \N 50521 5 0060222 \N 50522 5 0035290 \N 50523 3 1360402 \N 50524 5 0060683 \N 50525 3 18559345 \N 50526 5 0045489 \N 50527 5 0042422 \N 50528 5 0097112 \N 50529 3 15620359 \N 50530 5 0044283 \N 50531 5 0035058 \N 50532 3 14521833 \N 50533 3 14521834 \N 50534 5 0043466 \N 50535 88 26432 \N 50536 5 0030416 \N 50537 5 0090289 \N 50538 5 0045839 \N 50539 5 0021563 \N 50540 5 0048923 \N 50541 5 0014815 \N 50542 5 0018364 \N 50543 5 0090106 \N 50544 5 0010903 \N 50545 5 0015684 \N 50546 5 0007371 \N 50547 5 0007372 \N 50548 5 0007373 \N 50549 5 0043970 \N 50550 5 0014866 \N 50551 5 0001900 \N 50552 5 2000069 \N 50553 5 0031654 \N 50554 5 0071272 \N 50555 5 0045914 \N 50556 5 0090116 \N 50557 5 2000676 \N 50558 5 0048103 \N 50559 5 0010890 \N 50560 5 0010102 \N 50561 5 0031583 \N 50562 3 11812783 \N 50563 3 15924269 \N 50564 5 0019643 \N 50565 5 0019644 \N 50566 3 15838028 \N 50567 5 0071417 \N 50568 5 0070059 \N 50569 3 18701708 \N 50570 5 0000101 \N 50571 5 0051809 \N 50572 5 2000346 \N 50573 5 0061254 \N 50574 5 0002455 \N 50575 5 0051306 \N 50576 5 2000132 \N 50577 5 0003060 \N 50578 5 0051851 \N 50579 5 0090006 \N 50580 5 0070842 \N 50581 5 0014001 \N 50582 91 0000276 \N 50583 102 0000077 \N 50584 5 0090330 \N 50585 5 0007088 \N 50586 5 0060302 \N 50587 5 0075308 \N 50588 5 0080056 \N 50589 3 17369435 \N 50590 5 0008203 \N 50591 5 0042940 \N 50592 5 0010203 \N 50593 5 0019578 \N 50594 5 0010929 \N 50595 5 0010127 \N 50596 5 0060999 \N 50597 5 0051545 \N 50598 5 0031147 \N 50599 3 10706822 \N 50600 5 0048200 \N 50601 5 0051324 \N 50602 5 2000049 \N 50603 5 0043046 \N 50604 3 12138111 \N 50605 5 2000650 \N 50606 5 0051487 \N 50607 5 0043101 \N 50608 5 0002253 \N 50609 5 0090339 \N 50610 3 12810699 \N 50611 3 15923184 \N 50612 5 0033581 \N 50613 5 0007591 \N 50614 5 0010113 \N 50615 5 0043007 \N 50616 3 14528010 \N 50617 5 0010184 \N 50618 5 0045859 \N 50619 5 0033047 \N 50620 5 0039021 \N 50621 116 00001557 \N 50622 5 0042559 \N 50623 5 0070144 \N 50624 5 0052353 \N 50625 5 0006011 \N 50626 5 2000657 \N 50627 5 0031214 \N 50628 5 0033531 \N 50629 88 17164 \N 50630 5 0072290 \N 50631 5 0046385 \N 50632 5 0061066 \N 50633 5 0003199 \N 50634 5 2000232 \N 50635 5 0000209 \N 50636 5 0045707 \N 50637 5 2000850 \N 50638 5 0051893 \N 50639 5 0070498 \N 50640 5 0090152 \N 50641 5 0032904 \N 50642 5 0009079 \N 50643 5 0000479 \N 50644 5 0001768 \N 50645 5 0085029 \N 50646 5 0043090 \N 50647 5 0042336 \N 50648 5 0009957 \N 50649 5 0043356 \N 50650 5 0021779 \N 50651 5 0019043 \N 50652 5 0030859 \N 50653 5 0006264 \N 50654 5 0071764 \N 50655 5 0021962 \N 50656 5 0033380 \N 50657 5 0032945 \N 50658 5 0007400 \N 50659 5 0007408 \N 50660 5 0043347 \N 50661 5 0043348 \N 50662 5 0048745 \N 50663 5 0033379 \N 50664 5 0035429 \N 50665 5 0032402 \N 50666 5 0070664 \N 50667 5 0006605 \N 50668 5 0034218 \N 50669 5 0046335 \N 50670 5 0006204 \N 50671 5 0048750 \N 50672 5 0009861 \N 50673 3 10234273 \N 50674 5 0008218 \N 50675 5 0033522 \N 50676 3 15509584 \N 50677 3 16473935 \N 50678 3 18430235 \N 50679 5 0002604 \N 50680 5 0019539 \N 50681 5 0031197 \N 50682 5 0031198 \N 50683 5 0050728 \N 50684 5 0030236 \N 50685 5 0071571 \N 50686 112 IPR001611 \N 50687 5 0046604 \N 50688 5 0007217 \N 50689 3 14723970 \N 50690 5 0018428 \N 50691 5 0072171 \N 50692 5 0052255 \N 50693 5 0035914 \N 50694 5 0046579 \N 50695 5 0031620 \N 50696 5 0032534 \N 50697 5 0032971 \N 50698 5 0007426 \N 50699 5 0052537 \N 50700 5 0048803 \N 50701 5 0045045 \N 50702 5 0060321 \N 50703 5 0002545 \N 50704 5 0002021 \N 50705 5 0052309 \N 50706 5 0031627 \N 50707 3 10338214 \N 50708 5 0051107 \N 50709 5 0052448 \N 50710 5 0006478 \N 50711 89 AA0172 \N 50712 5 0015971 \N 50713 5 0052038 \N 50714 5 0010394 \N 50715 5 0090126 \N 50716 5 0045006 \N 50717 5 0015727 \N 50718 5 0060218 \N 50719 5 0003069 \N 50720 5 0046168 \N 50721 5 0080145 \N 50722 3 19955263 \N 50723 5 0032708 \N 50724 5 0043099 \N 50725 5 0060804 \N 50726 5 0035099 \N 50727 5 2000620 \N 50728 5 0042558 \N 50729 5 0019721 \N 50730 5 0009820 \N 50731 5 0014887 \N 50732 5 2000760 \N 50733 5 0010683 \N 50734 5 0060463 \N 50735 5 0010976 \N 50736 5 0031271 \N 50737 5 0007535 \N 50738 5 0000027 \N 50739 5 0043052 \N 50740 117 cgc467 \N 50741 5 0035297 \N 50742 3 9286684 \N 50743 5 0061244 \N 50744 5 0034379 \N 50745 5 0030719 \N 50746 5 0048114 \N 50747 3 10851135 \N 50748 3 770367 \N 50749 5 0032600 \N 50750 5 0045805 \N 50751 5 0060474 \N 50752 5 0032349 \N 50753 5 0042305 \N 50754 5 0022030 \N 50755 5 0002223 \N 50756 5 0015824 \N 50757 5 0034034 \N 50758 5 0032205 \N 50759 5 0032908 \N 50760 5 0000395 \N 50761 5 0000368 \N 50762 5 0000369 \N 50763 5 0042462 \N 50764 5 0009806 \N 50765 3 10074466 \N 50766 5 0075212 \N 50767 5 0006932 \N 50768 5 0010727 \N 50769 5 0033077 \N 50770 5 0071803 \N 50771 5 0050843 \N 50772 5 0042526 \N 50773 5 0043276 \N 50774 5 0070452 \N 50775 5 0045651 \N 50776 5 0071584 \N 50777 5 0006110 \N 50778 5 0071215 \N 50779 5 0019075 \N 50780 5 0051554 \N 50781 5 0002001 \N 50782 5 0060296 \N 50783 5 0052508 \N 50784 5 0048698 \N 50785 5 0090076 \N 50786 5 0090400 \N 50787 5 2000239 \N 50788 5 0050685 \N 50789 5 0048655 \N 50790 5 0007135 \N 50791 5 0071630 \N 50792 5 0031025 \N 50793 3 15068790 \N 50794 5 0043396 \N 50795 5 0032687 \N 50796 5 0035694 \N 50797 3 21264221 \N 50798 5 0061346 \N 50799 5 0035092 \N 50800 5 0016141 \N 50801 5 0010849 \N 50802 5 0046248 \N 50803 5 0001829 \N 50804 5 0038031 \N 50805 118 rl \N 50806 3 19137009 \N 50807 3 20032469 \N 50808 5 0015736 \N 50809 5 0046655 \N 50810 5 0006501 \N 50811 5 0019668 \N 50812 3 13140081 \N 50813 5 0000413 \N 50814 3 16959570 \N 50815 5 0055127 \N 50816 5 0090042 \N 50817 5 2000737 \N 50818 5 0009212 \N 50819 5 2000580 \N 50820 5 0043378 \N 50821 5 0042047 \N 50822 5 0033659 \N 50823 5 0035225 \N 50824 5 0006629 \N 50825 5 0051256 \N 50826 5 0034585 \N 50827 5 0044243 \N 50828 5 0045939 \N 50829 5 0000955 \N 50830 5 0048057 \N 50831 5 0006788 \N 50832 5 0071242 \N 50833 5 0033148 \N 50834 5 0043000 \N 50835 5 0035445 \N 50836 5 0072413 \N 50837 5 0031631 \N 50838 5 0048672 \N 50839 5 0018185 \N 50840 89 AA0278 \N 50841 5 0043605 \N 50842 5 0051467 \N 50843 5 0035157 \N 50844 5 0016058 \N 50845 5 0019085 \N 50846 5 0060022 \N 50847 5 0042326 \N 50848 5 0034138 \N 50849 5 0035359 \N 50850 5 0043056 \N 50851 5 0043703 \N 50852 5 0006412 \N 50853 5 0006416 \N 50854 5 0006453 \N 50855 5 0043037 \N 50856 5 0010676 \N 50857 5 0032989 \N 50858 5 0034250 \N 50859 5 0009186 \N 50860 5 0045351 \N 50861 5 0052240 \N 50862 5 0061033 \N 50863 5 0052535 \N 50864 5 0016999 \N 50865 5 0046241 \N 50866 5 0060453 \N 50867 5 0021613 \N 50868 5 0051030 \N 50869 5 0048581 \N 50870 5 0009265 \N 50871 5 0033280 \N 50872 5 0007493 \N 50873 5 0009667 \N 50874 5 0046377 \N 50875 94 //www.science.siu.edu/microbiology/micr425/425Notes/02-CellEnv.html \N 50876 5 0017014 \N 50877 3 20972426 \N 50878 5 0072180 \N 50879 5 0002203 \N 50880 5 0006968 \N 50881 5 0016066 \N 50882 5 0016067 \N 50883 5 0050427 \N 50884 5 0042694 \N 50885 5 0072538 \N 50886 5 0035343 \N 50887 5 0009990 \N 50888 5 0090220 \N 50889 3 19913287 \N 50890 5 0033195 \N 50891 5 0045409 \N 50892 5 0055097 \N 50893 5 0001820 \N 50894 5 0002704 \N 50895 5 0010050 \N 50896 5 0021806 \N 50897 5 0007299 \N 50898 3 12642496 \N 50899 5 0090214 \N 50900 5 2000330 \N 50901 5 0006098 \N 50902 87 PENTOSE-P-PWY \N 50903 5 0019751 \N 50904 5 0050732 \N 50905 5 0014849 \N 50906 100 0000378 \N 50907 5 0006917 \N 50908 5 0046683 \N 50909 5 0019241 \N 50910 5 0052513 \N 50911 5 0051623 \N 50912 5 0021949 \N 50913 5 0071926 \N 50914 3 15550444 \N 50915 5 0006343 \N 50916 5 0001675 \N 50917 5 0090388 \N 50918 5 0034725 \N 50919 5 0032488 \N 50920 5 0040009 \N 50921 5 0001777 \N 50922 5 0002026 \N 50923 3 10358008 \N 50924 5 0031131 \N 50925 5 0015817 \N 50926 5 0021669 \N 50927 5 2000692 \N 50928 5 0060334 \N 50929 5 0033497 \N 50930 88 30023 \N 50931 5 0045073 \N 50932 5 0042418 \N 50933 5 0071966 \N 50934 5 0060039 \N 50935 3 15138308 \N 50936 3 16376438 \N 50937 5 0044331 \N 50938 4 hgd \N 50939 3 10923970 \N 50940 5 0071294 \N 50941 5 0060259 \N 50942 5 0006170 \N 50943 5 0071420 \N 50944 5 2000356 \N 50945 5 0052456 \N 50946 5 0060188 \N 50947 5 0018309 \N 50948 5 0018891 \N 50949 5 0072107 \N 50950 5 0048767 \N 50951 3 12468740 \N 50952 5 0051195 \N 50953 5 0052245 \N 50954 5 0017189 \N 50955 89 AA0041 \N 50956 5 0090382 \N 50957 5 0010714 \N 50958 5 0045105 \N 50959 5 0010171 \N 50960 5 0048576 \N 50961 5 0075140 \N 50962 5 0045585 \N 50963 5 0039014 \N 50964 5 0060650 \N 50965 5 0070255 \N 50966 5 0006781 \N 50967 86 0879010479 \N 50968 5 0046926 \N 50969 89 AA0342 \N 50970 5 0000212 \N 50971 5 0042271 \N 50972 5 0035562 \N 50973 5 0035846 \N 50974 5 0090301 \N 50975 5 0007291 \N 50976 3 9550716 \N 50977 5 0010561 \N 50978 5 2000493 \N 50979 5 0002473 \N 50980 5 0006999 \N 50981 5 0030493 \N 50982 5 0051172 \N 50983 5 0000128 \N 50984 5 0072253 \N 50985 5 0021688 \N 50986 5 0030460 \N 50987 5 0003241 \N 50988 5 0050952 \N 50989 5 0010441 \N 50990 5 0023042 \N 50991 5 0034154 \N 50992 5 0071827 \N 50993 5 0070394 \N 50994 5 0010724 \N 50995 5 0035919 \N 50996 5 0070575 \N 50997 5 0071047 \N 50998 5 0035740 \N 50999 91 0000625 \N 51000 5 0009766 \N 51001 86 0792361431 \N 51002 5 0061285 \N 51003 5 0060729 \N 51004 5 0001776 \N 51005 5 0007447 \N 51006 5 0002772 \N 51007 5 0071931 \N 51008 5 0006511 \N 51009 5 0052400 \N 51010 5 0012504 \N 51011 5 0052397 \N 51012 5 0043653 \N 51013 3 12867994 \N 51014 5 0010091 \N 51015 5 0048274 \N 51016 5 0035521 \N 51017 5 0075197 \N 51018 5 0030979 \N 51019 5 0007085 \N 51020 5 0071103 \N 51021 5 0046439 \N 51022 5 2000628 \N 51023 5 0016068 \N 51024 5 0039504 \N 51025 5 0075319 \N 51026 5 0052420 \N 51027 5 2000782 \N 51028 4 Mah \N 51029 5 0060074 \N 51030 5 0043447 \N 51031 88 18310 \N 51032 104 Alkane \N 51033 5 0043442 \N 51034 5 0048683 \N 51035 5 0019453 \N 51036 5 2000785 \N 51037 5 0046545 \N 51038 5 0045059 \N 51039 5 0046042 \N 51040 5 0035262 \N 51041 5 0048781 \N 51042 5 0006388 \N 51043 3 9582290 \N 51044 5 0075013 \N 51045 5 0060487 \N 51046 5 0031507 \N 51047 5 2000745 \N 51048 5 0030516 \N 51049 5 0018933 \N 51050 5 0071333 \N 51051 5 0046761 \N 51052 5 0019805 \N 51053 5 0051935 \N 51054 5 0045875 \N 51055 5 0045524 \N 51056 5 0072164 \N 51057 5 0075129 \N 51058 5 0060796 \N 51059 5 0046627 \N 51060 5 0021579 \N 51061 5 0002401 \N 51062 5 0070426 \N 51063 5 0019072 \N 51064 5 0010163 \N 51065 3 8893537 \N 51066 5 0002808 \N 51067 5 0021817 \N 51068 5 0009829 \N 51069 5 0042419 \N 51070 5 0021982 \N 51071 5 0042412 \N 51072 5 0007161 \N 51073 5 0052441 \N 51074 5 0051607 \N 51075 5 0070962 \N 51076 5 0052235 \N 51077 5 0071611 \N 51078 5 0021766 \N 51079 5 0072444 \N 51080 5 0072447 \N 51081 5 0051937 \N 51082 5 0052284 \N 51083 5 0001302 \N 51084 5 0060778 \N 51085 5 0032108 \N 51086 5 0030448 \N 51087 86 0471522295 \N 51088 5 0052574 \N 51089 5 0065001 \N 51090 5 0050696 \N 51091 5 0030633 \N 51092 5 0002421 \N 51093 3 7543530 \N 51094 5 0031268 \N 51095 5 0072577 \N 51096 91 0000115 \N 51097 5 0052129 \N 51098 5 0009626 \N 51099 5 0052480 \N 51100 5 0002552 \N 51101 5 0002831 \N 51102 5 0045476 \N 51103 5 0030470 \N 51104 5 0007153 \N 51105 5 0034220 \N 51106 5 0050434 \N 51107 5 0051066 \N 51108 88 38797 \N 51109 5 0052172 \N 51110 5 0010232 \N 51111 5 0080178 \N 51112 5 0006945 \N 51113 3 9442101 \N 51114 5 0019858 \N 51115 5 0016546 \N 51116 5 0002275 \N 51117 5 0019301 \N 51118 5 0006981 \N 51119 3 8816757 \N 51120 5 0035907 \N 51121 106 0005805 \N 51122 104 Aorta \N 51123 116 0000014 \N 51124 5 0019991 \N 51125 3 5272312 \N 51126 5 0046900 \N 51127 5 0035126 \N 51128 5 0075240 \N 51129 5 0070723 \N 51130 5 0048772 \N 51131 5 0060018 \N 51132 5 0010470 \N 51133 5 0000105 \N 51134 5 0070978 \N 51135 5 0007112 \N 51136 5 0097039 \N 51137 3 21455173 \N 51138 3 21455180 \N 51139 3 21455181 \N 51140 5 0042368 \N 51141 5 0031124 \N 51142 5 0051403 \N 51143 3 15936270 \N 51144 5 0045084 \N 51145 5 0060606 \N 51146 5 0045299 \N 51147 5 0070797 \N 51148 5 0090085 \N 51149 5 0075105 \N 51150 5 0052455 \N 51151 5 0051517 \N 51152 5 0072197 \N 51153 5 0006701 \N 51154 94 //www.cogsci.princeton.edu/ \N 51155 5 0010730 \N 51156 5 0001549 \N 51157 5 0032608 \N 51158 5 2000388 \N 51159 5 0048589 \N 51160 5 0007603 \N 51161 5 0031100 \N 51162 5 0031394 \N 51163 5 0043032 \N 51164 5 0090281 \N 51165 5 0042815 \N 51166 5 0009709 \N 51167 94 //rycomusa.com/aspp2000/public/P29/0525.html \N 51168 5 0030834 \N 51169 5 0046677 \N 51170 5 0006585 \N 51171 5 0030330 \N 51172 5 0006976 \N 51173 5 0007188 \N 51174 5 0051232 \N 51175 5 0070323 \N 51176 5 0045456 \N 51177 5 0019262 \N 51178 5 0006187 \N 51179 5 0015031 \N 51180 5 0015831 \N 51181 5 0006922 \N 51182 5 0003035 \N 51183 5 0000971 \N 51184 3 17786051 \N 51185 3 18217203 \N 51186 3 9299409 \N 51187 5 0033548 \N 51188 87 PWY-4661 \N 51189 5 0016242 \N 51190 5 0003089 \N 51191 5 0045794 \N 51192 5 0007341 \N 51193 94 //arbl.cvmbs.colostate.edu/hbooks/pathphys/reprod/fert/fert.html \N 51194 5 0018903 \N 51195 94 //umbbd.ahc.umn.edu/cpr/cpr_map.html \N 51196 97 cpr \N 51197 5 0048616 \N 51198 5 0001881 \N 51199 5 0051171 \N 51200 5 0015961 \N 51201 5 0032829 \N 51202 5 0019388 \N 51203 5 0006690 \N 51204 5 0072072 \N 51205 5 0070919 \N 51206 5 0007505 \N 51207 5 0006336 \N 51208 5 0071946 \N 51209 3 20850009 \N 51210 5 0010696 \N 51211 3 16792804 \N 51212 3 18500339 \N 51213 5 0031990 \N 51214 5 0007356 \N 51215 5 0010151 \N 51216 5 0052525 \N 51217 5 0002859 \N 51218 5 0050831 \N 51219 5 0034635 \N 51220 5 0033260 \N 51221 5 0018254 \N 51222 89 AA0203 \N 51223 5 0048830 \N 51224 5 0018023 \N 51225 89 AA0074 \N 51226 5 0050706 \N 51227 5 0051813 \N 51228 5 0010907 \N 51229 5 0051550 \N 51230 88 47964 \N 51231 5 0072400 \N 51232 5 0035659 \N 51233 5 0051261 \N 51234 5 0017141 \N 51235 5 0060289 \N 51236 5 0090245 \N 51237 5 0052139 \N 51238 5 0003107 \N 51239 5 0070638 \N 51240 5 0022029 \N 51241 5 0006036 \N 51242 5 0046684 \N 51243 5 0021881 \N 51244 5 0061182 \N 51245 5 0014879 \N 51246 5 0052700 \N 51247 5 0016031 \N 51248 3 10988073 \N 51249 3 11121736 \N 51250 5 0048322 \N 51251 5 2000795 \N 51252 5 0002717 \N 51253 5 0045846 \N 51254 5 0001835 \N 51255 5 0034620 \N 51256 5 0007175 \N 51257 5 0007177 \N 51258 5 0018329 \N 51259 5 0006562 \N 51260 5 0018256 \N 51261 5 0075131 \N 51262 5 0072051 \N 51263 5 0052338 \N 51264 5 0043180 \N 51265 5 0052321 \N 51266 5 0002280 \N 51267 3 16551245 \N 51268 5 0003249 \N 51269 5 0046014 \N 51270 5 0032053 \N 51271 5 0090092 \N 51272 5 0032679 \N 51273 5 0002330 \N 51274 5 0060948 \N 51275 5 0016048 \N 51276 5 0060367 \N 51277 5 0019248 \N 51278 5 0019089 \N 51279 5 0043643 \N 51280 104 Tetracycline \N 51281 5 0060264 \N 51282 5 0046389 \N 51283 5 0034476 \N 51284 5 0018875 \N 51285 5 2000402 \N 51286 5 0061198 \N 51287 5 0015847 \N 51288 5 0010738 \N 51289 5 0045033 \N 51290 3 11733545 \N 51291 5 0009585 \N 51292 5 0018172 \N 51293 89 AA0263 \N 51294 5 0000073 \N 51295 5 0030475 \N 51296 5 0018047 \N 51297 89 AA0094 \N 51298 5 0052268 \N 51299 5 0051127 \N 51300 5 0018308 \N 51301 3 1463470 \N 51302 89 AA0287 \N 51303 5 2000980 \N 51304 5 0021837 \N 51305 5 0060694 \N 51306 5 0070054 \N 51307 5 0061012 \N 51308 5 0007566 \N 51309 94 //www.medterms.com \N 51310 5 0048712 \N 51311 5 0071221 \N 51312 5 0019406 \N 51313 5 0032206 \N 51314 5 0052193 \N 51315 5 0003351 \N 51316 5 0046305 \N 51317 5 0035795 \N 51318 3 10781072 \N 51319 5 0002006 \N 51320 5 0052523 \N 51321 5 0050947 \N 51322 5 0009666 \N 51323 5 0051159 \N 51324 5 0034170 \N 51325 5 0018155 \N 51326 5 0052331 \N 51327 109 KW-0354 \N 51328 5 0000460 \N 51329 5 0034289 \N 51330 5 0075330 \N 51331 5 0071669 \N 51332 5 0080009 \N 51333 3 18505803 \N 51334 5 0042245 \N 51335 3 11000254 \N 51336 3 11070075 \N 51337 109 KW-0692 \N 51338 5 0046447 \N 51339 5 0097044 \N 51340 3 18344406 \N 51341 5 0061203 \N 51342 5 0060969 \N 51343 5 2001012 \N 51344 5 0001966 \N 51345 5 0018887 \N 51346 3 9603860 \N 51347 5 0046465 \N 51348 5 0019493 \N 51349 5 2000200 \N 51350 5 0071361 \N 51351 5 0033159 \N 51352 5 0060557 \N 51353 5 0051097 \N 51354 5 0035194 \N 51355 5 0052164 \N 51356 5 0075155 \N 51357 5 0007388 \N 51358 5 0021776 \N 51359 3 15936325 \N 51360 5 0010682 \N 51361 5 0042491 \N 51362 91 0000201 \N 51363 5 0050936 \N 51364 5 0044146 \N 51365 5 0031041 \N 51366 5 0048283 \N 51367 5 0070813 \N 51368 5 0015698 \N 51369 5 0006921 \N 51370 5 0071891 \N 51371 5 0072287 \N 51372 5 0030726 \N 51373 5 2000393 \N 51374 5 0001762 \N 51375 5 0071773 \N 51376 5 0019917 \N 51377 5 0051164 \N 51378 5 0034395 \N 51379 5 0003377 \N 51380 5 0007487 \N 51381 5 0007387 \N 51382 5 0042402 \N 51383 5 0031284 \N 51384 5 0045478 \N 51385 5 0034462 \N 51386 5 0010288 \N 51387 3 16461380 \N 51388 5 0060275 \N 51389 5 0048473 \N 51390 3 12169620 \N 51391 5 0052067 \N 51392 5 0030718 \N 51393 5 0002615 \N 51394 5 0030031 \N 51395 5 0035188 \N 51396 5 0015809 \N 51397 5 0001783 \N 51398 5 0061326 \N 51399 5 0051114 \N 51400 89 AA0372 \N 51401 5 0010649 \N 51402 5 0034094 \N 51403 5 0035902 \N 51404 5 0072242 \N 51405 5 0071454 \N 51406 5 0010324 \N 51407 5 0033625 \N 51408 5 0035115 \N 51409 5 0046152 \N 51410 5 0052442 \N 51411 5 0051713 \N 51412 5 0001903 \N 51413 5 0050794 \N 51414 5 0051244 \N 51415 5 0015741 \N 51416 5 0018880 \N 51417 5 0006221 \N 51418 5 0050764 \N 51419 5 0033486 \N 51420 87 PWY-5153 \N 51421 5 0071442 \N 51422 5 0070631 \N 51423 5 0046130 \N 51424 5 2000159 \N 51425 5 0060899 \N 51426 5 0050673 \N 51427 5 0043582 \N 51428 104 Sporagium \N 51429 5 0051494 \N 51430 5 0030595 \N 51431 5 2001060 \N 51432 5 0060626 \N 51433 5 0006995 \N 51434 5 0032418 \N 51435 5 0045313 \N 51436 5 0090138 \N 51437 5 0019463 \N 51438 5 0003336 \N 51439 5 0051836 \N 51440 5 0070376 \N 51441 5 0010666 \N 51442 5 0007381 \N 51443 5 0021876 \N 51444 5 2000811 \N 51445 5 0035830 \N 51446 88 16096 \N 51447 5 0000717 \N 51448 5 0051040 \N 51449 5 0010402 \N 51450 5 0032317 \N 51451 5 0060101 \N 51452 5 0061308 \N 51453 5 0003318 \N 51454 5 0021529 \N 51455 5 0045903 \N 51456 5 0061050 \N 51457 5 0006524 \N 51458 5 2000866 \N 51459 5 0019376 \N 51460 5 0015986 \N 51461 5 0014838 \N 51462 5 0050789 \N 51463 5 0050791 \N 51464 5 0003009 \N 51465 5 0045777 \N 51466 5 0070485 \N 51467 88 17803 \N 51468 5 0071027 \N 51469 5 0045109 \N 51470 5 0071460 \N 51471 3 11425869 \N 51472 5 0060161 \N 51473 5 0042997 \N 51474 5 0048557 \N 51475 5 0048558 \N 51476 5 0018947 \N 51477 5 0046672 \N 51478 5 0055121 \N 51479 5 0030828 \N 51480 5 0043526 \N 51481 99 G04.335.139.160 \N 51482 3 10208444 \N 51483 3 11909981 \N 51484 3 15905876 \N 51485 5 0010590 \N 51486 5 0048016 \N 51487 3 11331907 \N 51488 5 0010219 \N 51489 5 0006598 \N 51490 5 0072439 \N 51491 5 0072425 \N 51492 5 0033322 \N 51493 87 PWY-1186 \N 51494 5 0002466 \N 51495 5 2000740 \N 51496 5 0009447 \N 51497 5 0009203 \N 51498 5 0046215 \N 51499 5 0007515 \N 51500 5 0021673 \N 51501 5 0060720 \N 51502 5 0018105 \N 51503 89 AA0037 \N 51504 5 0000491 \N 51505 5 0019674 \N 51506 5 0006878 \N 51507 5 0046505 \N 51508 3 9751667 \N 51509 5 0019250 \N 51510 5 0034145 \N 51511 5 0035208 \N 51512 5 0000471 \N 51513 5 0061042 \N 51514 5 0048908 \N 51515 5 0007616 \N 51516 94 //hebb.mit.edu/courses/9.03/lecture4.html \N 51517 5 0010241 \N 51518 93 1.14.13.78 \N 51519 5 0050940 \N 51520 5 0043416 \N 51521 5 0075058 \N 51522 5 0043401 \N 51523 3 12606724 \N 51524 5 0048442 \N 51525 5 0048421 \N 51526 5 0019080 \N 51527 5 0075242 \N 51528 5 0003092 \N 51529 5 0002041 \N 51530 5 0016076 \N 51531 5 0042452 \N 51532 88 17172 \N 51533 5 0032388 \N 51534 5 0046071 \N 51535 5 0007000 \N 51536 5 0072042 \N 51537 5 0046796 \N 51538 3 11090159 \N 51539 5 0071380 \N 51540 5 0048907 \N 51541 5 0003395 \N 51542 5 0015883 \N 51543 5 0033205 \N 51544 5 0045717 \N 51545 5 0060398 \N 51546 5 0022404 \N 51547 5 0009988 \N 51548 5 0030861 \N 51549 5 2000873 \N 51550 5 0052542 \N 51551 5 0043288 \N 51552 5 0010951 \N 51553 5 0060128 \N 51554 5 0032666 \N 51555 5 0045665 \N 51556 5 0072250 \N 51557 5 2000352 \N 51558 5 0002580 \N 51559 5 2000831 \N 51560 5 0061187 \N 51561 5 0071810 \N 51562 5 0001800 \N 51563 5 0075282 \N 51564 5 0000455 \N 51565 5 0045881 \N 51566 5 0035415 \N 51567 5 0045628 \N 51568 5 0010920 \N 51569 5 0010305 \N 51570 5 0007592 \N 51571 5 0008340 \N 51572 5 0075088 \N 51573 5 0006542 \N 51574 5 0006199 \N 51575 5 0044142 \N 51576 5 0018095 \N 51577 89 AA0202 \N 51578 5 0007541 \N 51579 5 0039521 \N 51580 5 0002537 \N 51581 5 0031670 \N 51582 5 0023058 \N 51583 5 0009700 \N 51584 5 2000529 \N 51585 5 0002498 \N 51586 5 0009914 \N 51587 5 0003050 \N 51588 5 0075133 \N 51589 5 2000891 \N 51590 5 0032498 \N 51591 5 0046144 \N 51592 5 0044082 \N 51593 5 0007120 \N 51594 5 0006894 \N 51595 5 0048515 \N 51596 5 0046075 \N 51597 5 0075160 \N 51598 5 2000025 \N 51599 5 0046047 \N 51600 5 0000452 \N 51601 5 0002598 \N 51602 5 0034049 \N 51603 5 0071263 \N 51604 5 0001562 \N 51605 5 0042833 \N 51606 5 0014716 \N 51607 5 0072652 \N 51608 5 0010264 \N 51609 88 17401 \N 51610 3 16107538 \N 51611 5 0042448 \N 51612 5 0035519 \N 51613 3 17028573 \N 51614 5 0034404 \N 51615 5 0075249 \N 51616 5 0042541 \N 51617 88 35143 \N 51618 5 2000646 \N 51619 5 0009168 \N 51620 5 0048149 \N 51621 5 2000591 \N 51622 5 0000204 \N 51623 5 0002899 \N 51624 5 0042771 \N 51625 5 0003194 \N 51626 5 0045042 \N 51627 5 0071393 \N 51628 5 0018405 \N 51629 5 0010962 \N 51630 5 0033298 \N 51631 5 0003097 \N 51632 5 0034969 \N 51633 5 0016136 \N 51634 5 0015715 \N 51635 5 0051048 \N 51636 5 0002663 \N 51637 5 0070885 \N 51638 5 0071560 \N 51639 3 15451575 \N 51640 5 0033865 \N 51641 5 2000631 \N 51642 5 0022617 \N 51643 5 0030029 \N 51644 5 0048061 \N 51645 5 0048064 \N 51646 5 0033013 \N 51647 5 0048239 \N 51648 3 9635193 \N 51649 5 0060409 \N 51650 5 0002188 \N 51651 3 18056426 \N 51652 3 18765792 \N 51653 5 0050889 \N 51654 5 0001953 \N 51655 5 0045603 \N 51656 5 0090096 \N 51657 5 0032628 \N 51658 5 0072359 \N 51659 106 0001009 \N 51660 5 2000012 \N 51661 5 0048481 \N 51662 5 0071652 \N 51663 5 0090228 \N 51664 5 0072353 \N 51665 5 0014901 \N 51666 5 0009593 \N 51667 5 0051389 \N 51668 5 0072432 \N 51669 5 0032413 \N 51670 5 0030335 \N 51671 5 0007552 \N 51672 5 0046698 \N 51673 5 0046699 \N 51674 5 0045764 \N 51675 5 0048571 \N 51676 5 0061180 \N 51677 5 0071624 \N 51678 5 0043330 \N 51679 5 0090162 \N 51680 5 0032377 \N 51681 5 0072578 \N 51682 3 20843816 \N 51683 5 0050944 \N 51684 5 0021506 \N 51685 5 0010446 \N 51686 5 0008277 \N 51687 5 0014733 \N 51688 5 0060131 \N 51689 5 0046782 \N 51690 5 0032414 \N 51691 5 0071467 \N 51692 5 0048601 \N 51693 5 0052169 \N 51694 5 0045387 \N 51695 5 0032219 \N 51696 5 0072407 \N 51697 5 0060735 \N 51698 5 0014070 \N 51699 88 33832 \N 51700 5 0002519 \N 51701 3 16546094 \N 51702 5 0007629 \N 51703 5 0060086 \N 51704 5 0003425 \N 51705 5 0007392 \N 51706 5 0018978 \N 51707 5 0010248 \N 51708 5 0016103 \N 51709 5 0090074 \N 51710 5 0042728 \N 51711 88 30527 \N 51712 5 0003137 \N 51713 5 0019489 \N 51714 5 0046773 \N 51715 5 0001059 \N 51716 3 19110459 \N 51717 5 0070240 \N 51718 5 0010877 \N 51719 5 0032941 \N 51720 5 0051320 \N 51721 5 2000531 \N 51722 5 0019282 \N 51723 5 0061319 \N 51724 91 0002520 \N 51725 5 0000759 \N 51726 5 0045616 \N 51727 5 0021649 \N 51728 5 0048195 \N 51729 5 0032223 \N 51730 5 0046095 \N 51731 5 0046099 \N 51732 5 0002750 \N 51733 3 16556257 \N 51734 5 0035982 \N 51735 3 20523893 \N 51736 5 0045862 \N 51737 5 0006744 \N 51738 5 0061142 \N 51739 5 0072635 \N 51740 5 0022412 \N 51741 5 0048443 \N 51742 5 0048425 \N 51743 5 0045722 \N 51744 5 0061087 \N 51745 5 0021951 \N 51746 5 0030989 \N 51747 3 16111942 \N 51748 3 9572142 \N 51749 5 0070932 \N 51750 5 0000706 \N 51751 5 0001984 \N 51752 5 0032537 \N 51753 3 11931033 \N 51754 5 0071517 \N 51755 3 14765111 \N 51756 5 0021566 \N 51757 5 0060614 \N 51758 5 0043247 \N 51759 3 15279784 \N 51760 5 0008220 \N 51761 5 0051559 \N 51762 5 0030804 \N 51763 5 0071533 \N 51764 112 IPR002110 \N 51765 5 0060416 \N 51766 5 0090204 \N 51767 5 0006132 \N 51768 5 0060318 \N 51769 5 0035814 \N 51770 5 0072120 \N 51771 5 0006287 \N 51772 86 1550091131 \N 51773 5 0042726 \N 51774 5 0044260 \N 51775 5 0034960 \N 51776 5 0075327 \N 51777 5 0000485 \N 51778 5 0008071 \N 51779 5 0009778 \N 51780 5 0038027 \N 51781 3 16443932 \N 51782 5 0035932 \N 51783 88 27584 \N 51784 5 0072449 \N 51785 5 0035710 \N 51786 5 0006145 \N 51787 5 0016104 \N 51788 5 0060576 \N 51789 5 0022904 \N 51790 5 2000549 \N 51791 5 0060719 \N 51792 4 16983341 \N 51793 5 0075183 \N 51794 5 0072676 \N 51795 5 0048342 \N 51796 5 0033227 \N 51797 5 0003385 \N 51798 5 0007009 \N 51799 5 0072553 \N 51800 5 0035782 \N 51801 91 0000824 \N 51802 5 0071675 \N 51803 5 0048535 \N 51804 5 0048300 \N 51805 5 0002767 \N 51806 5 0080166 \N 51807 5 0072393 \N 51808 3 19825938 \N 51809 5 0048298 \N 51810 5 0070786 \N 51811 5 0032530 \N 51812 5 0060529 \N 51813 5 0050864 \N 51814 5 0009781 \N 51815 86 0716743663 \N 51816 5 0002786 \N 51817 5 0048918 \N 51818 5 0021733 \N 51819 5 0001769 \N 51820 3 9692889 \N 51821 5 0035282 \N 51822 3 10611687 \N 51823 3 9706689 \N 51824 5 0002143 \N 51825 3 16871210 \N 51826 5 0014820 \N 51827 5 0061383 \N 51828 5 0006622 \N 51829 5 0010608 \N 51830 5 0006450 \N 51831 5 0000029 \N 51832 5 0007303 \N 51833 5 0032859 \N 51834 5 2000575 \N 51835 5 0046199 \N 51836 5 0019293 \N 51837 5 0019291 \N 51838 5 0007129 \N 51839 5 0019555 \N 51840 5 0002501 \N 51841 5 0060311 \N 51842 5 0052104 \N 51843 5 0046256 \N 51844 5 0072520 \N 51845 106 0001343 \N 51846 5 0060047 \N 51847 5 0046053 \N 51848 5 0021624 \N 51849 5 0001973 \N 51850 5 0032094 \N 51851 5 0033750 \N 51852 5 0045341 \N 51853 5 0051294 \N 51854 5 0002238 \N 51855 5 0010772 \N 51856 5 0046803 \N 51857 3 10982346 \N 51858 5 0021520 \N 51859 5 0090010 \N 51860 5 0030301 \N 51861 5 0045778 \N 51862 5 0051782 \N 51863 5 2000113 \N 51864 5 0002813 \N 51865 5 0072662 \N 51866 5 0046641 \N 51867 5 0030575 \N 51868 5 0001970 \N 51869 5 0044411 \N 51870 5 0032639 \N 51871 5 0019554 \N 51872 5 0043317 \N 51873 5 0090109 \N 51874 5 2000039 \N 51875 5 0015915 \N 51876 5 0061003 \N 51877 5 2000089 \N 51878 5 0007559 \N 51879 5 0006457 \N 51880 5 0007022 \N 51881 5 0007024 \N 51882 5 0007025 \N 51883 5 0006282 \N 51884 5 0090033 \N 51885 5 0022014 \N 51886 5 0032252 \N 51887 5 0075276 \N 51888 5 0045812 \N 51889 5 0051970 \N 51890 5 0046532 \N 51891 5 0045673 \N 51892 5 2000452 \N 51893 5 0055060 \N 51894 5 0035554 \N 51895 5 0071984 \N 51896 5 0006534 \N 51897 5 0071659 \N 51898 5 0042908 \N 51899 5 0080156 \N 51900 3 20566637 \N 51901 5 0002396 \N 51902 5 0010310 \N 51903 5 0031033 \N 51904 5 0021936 \N 51905 5 0032788 \N 51906 5 0018165 \N 51907 89 AA0256 \N 51908 5 0051451 \N 51909 5 0007411 \N 51910 5 0008040 \N 51911 5 2000499 \N 51912 5 0072595 \N 51913 5 0046834 \N 51914 5 0042969 \N 51915 88 25000 \N 51916 5 0030814 \N 51917 5 0044112 \N 51918 5 0045292 \N 51919 94 //calspace.ucsd.edu/origins/Glossary/C.htm \N 51920 5 0018913 \N 51921 5 0009663 \N 51922 5 0006364 \N 51923 5 0006365 \N 51924 5 0002625 \N 51925 5 0021696 \N 51926 5 0018014 \N 51927 89 AA0064 \N 51928 5 0033129 \N 51929 5 0071283 \N 51930 5 0090017 \N 51931 5 0050819 \N 51932 5 0043151 \N 51933 5 0001695 \N 51934 5 0070708 \N 51935 5 0022019 \N 51936 5 2000966 \N 51937 5 0003102 \N 51938 5 0044208 \N 51939 3 10888601 \N 51940 5 0075291 \N 51941 5 0035142 \N 51942 5 0046749 \N 51943 5 0009636 \N 51944 5 0044068 \N 51945 5 0001915 \N 51946 5 0052499 \N 51947 5 0072370 \N 51948 3 19965387 \N 51949 5 0071106 \N 51950 88 37240 \N 51951 115 159296 \N 51952 5 0035670 \N 51953 5 0035874 \N 51954 3 16467469 \N 51955 5 0072028 \N 51956 5 0045332 \N 51957 3 16452632 \N 51958 3 20043909 \N 51959 3 20302864 \N 51960 5 0021574 \N 51961 5 0060358 \N 51962 5 0009950 \N 51963 5 0070953 \N 51964 5 0007203 \N 51965 5 0051273 \N 51966 5 0022033 \N 51967 5 0070184 \N 51968 5 0043982 \N 51969 5 0071474 \N 51970 5 0071904 \N 51971 5 0045880 \N 51972 5 0045878 \N 51973 5 0033700 \N 51974 5 0007312 \N 51975 5 0008102 \N 51976 5 0048128 \N 51977 5 0072342 \N 51978 3 19641131 \N 51979 5 0045830 \N 51980 5 0015723 \N 51981 5 0051317 \N 51982 5 0060697 \N 51983 5 0032711 \N 51984 5 0080125 \N 51985 5 0009909 \N 51986 5 0043207 \N 51987 5 0006955 \N 51988 5 0006065 \N 51989 5 0048401 \N 51990 5 0035457 \N 51991 5 0071293 \N 51992 5 0009763 \N 51993 5 0043165 \N 51994 86 0135712254 \N 51995 5 0070299 \N 51996 5 0042428 \N 51997 5 0019618 \N 51998 87 PROTOCATECHUATE-ORTHO-CLEAVAGE-PWY \N 51999 5 0075167 \N 52000 5 0032194 \N 52001 5 0051804 \N 52002 5 0070125 \N 52003 5 0043941 \N 52004 5 0006824 \N 52005 5 0002305 \N 52006 5 0001832 \N 52007 5 0035942 \N 52008 88 28689 \N 52009 5 0033301 \N 52010 5 0071383 \N 52011 5 0002563 \N 52012 5 0035287 \N 52013 3 10477305 \N 52014 3 7915837 \N 52015 5 0010985 \N 52016 5 0034729 \N 52017 4 se \N 52018 5 0033496 \N 52019 5 0003015 \N 52020 5 0032653 \N 52021 5 0032646 \N 52022 5 0010135 \N 52023 5 0015730 \N 52024 5 2000447 \N 52025 5 0033348 \N 52026 5 0031120 \N 52027 5 0060249 \N 52028 5 0022604 \N 52029 5 0006391 \N 52030 5 0080110 \N 52031 3 19218397 \N 52032 5 0016199 \N 52033 3 11376484 \N 52034 5 0002510 \N 52035 5 2000487 \N 52036 5 0045023 \N 52037 5 0019439 \N 52038 5 0046274 \N 52039 5 0035766 \N 52040 5 0060787 \N 52041 5 0055019 \N 52042 5 0060597 \N 52043 5 0050872 \N 52044 3 12508945 \N 52045 5 0007282 \N 52046 5 0032063 \N 52047 5 0019411 \N 52048 86 3131084111 \N 52049 5 2000209 \N 52050 5 0051056 \N 52051 5 0014811 \N 52052 5 0052202 \N 52053 5 0003072 \N 52054 5 0035829 \N 52055 5 0070923 \N 52056 5 0033370 \N 52057 5 2000196 \N 52058 5 0051462 \N 52059 5 0032526 \N 52060 5 0070629 \N 52061 5 0000282 \N 52062 5 0061163 \N 52063 5 0030398 \N 52064 3 11382760 \N 52065 5 0052490 \N 52066 5 0075066 \N 52067 5 0019817 \N 52068 5 0019416 \N 52069 87 THIOSULFOX-PWY \N 52070 5 0010483 \N 52071 3 17673660 \N 52072 5 0090325 \N 52073 5 0061340 \N 52074 5 0072235 \N 52075 5 0033487 \N 52076 87 PWY-5125 \N 52077 5 0071247 \N 52078 5 0046710 \N 52079 5 0007039 \N 52080 5 0018935 \N 52081 5 0061334 \N 52082 5 0032745 \N 52083 5 0019637 \N 52084 5 0009939 \N 52085 5 0009161 \N 52086 5 0034720 \N 52087 5 0048260 \N 52088 5 0044264 \N 52089 5 0075027 \N 52090 5 0010053 \N 52091 5 0018197 \N 52092 5 0002090 \N 52093 5 0010188 \N 52094 5 0006986 \N 52095 5 0042695 \N 52096 3 19117864 \N 52097 5 0032212 \N 52098 5 0075112 \N 52099 5 0030262 \N 52100 5 0071625 \N 52101 5 0071822 \N 52102 5 0008634 \N 52103 5 0006237 \N 52104 5 0045465 \N 52105 5 0042122 \N 52106 5 0008583 \N 52107 86 0632030488 \N 52108 3 1295747 \N 52109 5 0061370 \N 52110 5 0075114 \N 52111 5 0060153 \N 52112 5 0033354 \N 52113 87 PWY-5068 \N 52114 5 0043433 \N 52115 5 0010827 \N 52116 5 0060331 \N 52117 5 0061281 \N 52118 5 0035224 \N 52119 5 0055071 \N 52120 5 2000588 \N 52121 5 0015976 \N 52122 5 0015978 \N 52123 5 0019341 \N 52124 5 0006094 \N 52125 87 GLUCONEO-PWY \N 52126 5 0050880 \N 52127 5 0052452 \N 52128 5 0033363 \N 52129 5 0030708 \N 52130 5 0006858 \N 52131 5 0009219 \N 52132 5 0060400 \N 52133 5 0070711 \N 52134 5 0034378 \N 52135 5 0018954 \N 52136 97 petn \N 52137 5 0030953 \N 52138 5 0048142 \N 52139 5 0072142 \N 52140 5 0072020 \N 52141 5 0048760 \N 52142 91 0000668 \N 52143 86 069716957X \N 52144 102 0005421 \N 52145 5 0061274 \N 52146 5 0001752 \N 52147 5 0007459 \N 52148 5 0006723 \N 52149 5 0006268 \N 52150 5 0048888 \N 52151 5 0019216 \N 52152 5 0021814 \N 52153 5 0035893 \N 52154 5 0006806 \N 52155 5 0060937 \N 52156 5 0000489 \N 52157 5 0050958 \N 52158 5 0052502 \N 52159 5 0018900 \N 52160 97 dcm \N 52161 5 0006975 \N 52162 5 0052407 \N 52163 5 0046436 \N 52164 5 0051620 \N 52165 5 0035968 \N 52166 3 12077145 \N 52167 5 0051284 \N 52168 5 0050951 \N 52169 5 0044329 \N 52170 5 2000838 \N 52171 5 0033119 \N 52172 5 0061258 \N 52173 5 0019430 \N 52174 88 18421 \N 52175 5 0008315 \N 52176 3 15088480 \N 52177 5 0023007 \N 52178 5 0051904 \N 52179 5 0080033 \N 52180 3 17951451 \N 52181 5 0051510 \N 52182 5 0033637 \N 52183 5 0048396 \N 52184 5 0071975 \N 52185 5 0043018 \N 52186 5 0033278 \N 52187 5 0051704 \N 52188 5 0051706 \N 52189 5 0007601 \N 52190 5 0051391 \N 52191 5 0032751 \N 52192 5 0060886 \N 52193 5 0045106 \N 52194 5 0031552 \N 52195 5 0035063 \N 52196 5 0046120 \N 52197 5 0001991 \N 52198 5 0010080 \N 52199 5 0044211 \N 52200 3 10501935 \N 52201 5 0030842 \N 52202 5 0050990 \N 52203 5 0048757 \N 52204 5 0045748 \N 52205 5 0071841 \N 52206 5 0075237 \N 52207 5 0060520 \N 52208 5 0048050 \N 52209 5 0048051 \N 52210 5 0016560 \N 52211 5 0034059 \N 52212 5 0003175 \N 52213 5 2000170 \N 52214 5 2000667 \N 52215 5 0009145 \N 52216 5 0045103 \N 52217 5 0052445 \N 52218 5 0061347 \N 52219 5 0060757 \N 52220 5 0043087 \N 52221 5 0009827 \N 52222 5 2000516 \N 52223 5 0052477 \N 52224 5 0071637 \N 52225 5 0046177 \N 52226 5 0075253 \N 52227 5 0046887 \N 52228 5 0005977 \N 52229 5 2000673 \N 52230 5 0007578 \N 52231 5 0008299 \N 52232 5 0009241 \N 52233 5 0010656 \N 52234 5 0018261 \N 52235 5 0048680 \N 52236 5 0018984 \N 52237 5 0018932 \N 52238 5 0090278 \N 52239 5 0019836 \N 52240 5 0003436 \N 52241 5 0019883 \N 52242 5 0090027 \N 52243 5 0043708 \N 52244 5 0030982 \N 52245 3 11967173 \N 52246 5 0072141 \N 52247 5 0018143 \N 52248 5 0031669 \N 52249 5 0021914 \N 52250 5 0048860 \N 52251 5 0046032 \N 52252 5 0075093 \N 52253 5 0021718 \N 52254 5 0071925 \N 52255 3 17129180 \N 52256 5 0070940 \N 52257 3 17079683 \N 52258 5 0072129 \N 52259 5 0032505 \N 52260 5 0015764 \N 52261 5 0052109 \N 52262 5 2000943 \N 52263 5 0045808 \N 52264 5 0007431 \N 52265 106 0001044 \N 52266 5 0002861 \N 52267 5 0035047 \N 52268 3 10085292 \N 52269 5 0019503 \N 52270 5 0085004 \N 52271 5 0018052 \N 52272 89 AA0099 \N 52273 5 0046496 \N 52274 5 0035389 \N 52275 5 0046726 \N 52276 5 0061266 \N 52277 5 0034030 \N 52278 5 0032897 \N 52279 5 0072681 \N 52280 3 20856819 \N 52281 5 0033471 \N 52282 5 0060305 \N 52283 5 0052425 \N 52284 5 0010399 \N 52285 5 2000515 \N 52286 5 0060967 \N 52287 5 0018963 \N 52288 94 //umbbd.ahc.umn.edu/pth/pth_map.html \N 52289 97 pth \N 52290 5 0048630 \N 52291 5 0031276 \N 52292 5 0071867 \N 52293 5 0046235 \N 52294 5 0010506 \N 52295 5 0046345 \N 52296 5 0046723 \N 52297 5 0044408 \N 52298 5 0032097 \N 52299 5 2000361 \N 52300 5 0042073 \N 52301 3 17981739 \N 52302 3 18180368 \N 52303 5 0060740 \N 52304 5 0032277 \N 52305 5 0010286 \N 52306 5 0052027 \N 52307 5 0043302 \N 52308 5 0051914 \N 52309 5 0048461 \N 52310 5 0048412 \N 52311 5 0045692 \N 52312 5 0003328 \N 52313 5 0002807 \N 52314 5 0008044 \N 52315 5 0008359 \N 52316 5 0006437 \N 52317 5 0016584 \N 52318 3 11447119 \N 52319 3 8676389 \N 52320 5 0017196 \N 52321 89 AA0049 \N 52322 5 0032535 \N 52323 5 0006656 \N 52324 5 0033341 \N 52325 5 0051250 \N 52326 5 0003258 \N 52327 5 0072282 \N 52328 5 0003169 \N 52329 5 0015841 \N 52330 5 0048702 \N 52331 5 0000730 \N 52332 5 0048779 \N 52333 5 0008608 \N 52334 3 10322137 \N 52335 5 0060981 \N 52336 5 0014016 \N 52337 5 0048065 \N 52338 5 0052007 \N 52339 5 0001656 \N 52340 5 0060566 \N 52341 5 0031106 \N 52342 5 0051209 \N 52343 5 0048022 \N 52344 5 0003324 \N 52345 5 0019758 \N 52346 5 0061117 \N 52347 5 0033610 \N 52348 5 0003405 \N 52349 5 0002075 \N 52350 5 0070561 \N 52351 3 12637589 \N 52352 5 0031385 \N 52353 5 0034129 \N 52354 5 0030996 \N 52355 5 0046542 \N 52356 5 0060034 \N 52357 5 0031498 \N 52358 5 2000961 \N 52359 5 0010632 \N 52360 5 0060518 \N 52361 5 0000482 \N 52362 5 0015829 \N 52363 5 0022613 \N 52364 5 0045926 \N 52365 5 0015799 \N 52366 94 //www.rhymezone.com \N 52367 5 0018418 \N 52368 5 0035924 \N 52369 3 18440775 \N 52370 5 0035471 \N 52371 5 0010574 \N 52372 5 0019100 \N 52373 5 0010956 \N 52374 5 0085032 \N 52375 5 0001402 \N 52376 5 0071338 \N 52377 5 0043266 \N 52378 5 0002642 \N 52379 5 0006006 \N 52380 5 0071730 \N 52381 86 0702008729 \N 52382 5 0007246 \N 52383 5 0042222 \N 52384 5 0048676 \N 52385 5 0021778 \N 52386 5 0032471 \N 52387 5 0052553 \N 52388 5 0016080 \N 52389 5 0022410 \N 52390 5 0008611 \N 52391 5 0033519 \N 52392 88 18187 \N 52393 5 0010100 \N 52394 5 0048893 \N 52395 5 0071412 \N 52396 5 0009722 \N 52397 5 0051944 \N 52398 5 0050923 \N 52399 5 0009109 \N 52400 5 0046450 \N 52401 5 0052088 \N 52402 5 0007093 \N 52403 5 0032735 \N 52404 5 0075208 \N 52405 5 0034253 \N 52406 5 0021658 \N 52407 5 2000250 \N 52408 5 0061090 \N 52409 5 0045994 \N 52410 5 0033696 \N 52411 5 0046588 \N 52412 5 0050908 \N 52413 5 0033617 \N 52414 5 0001942 \N 52415 5 0001943 \N 52416 106 0002073 \N 52417 5 2000870 \N 52418 5 2000125 \N 52419 5 0002574 \N 52420 5 0042259 \N 52421 89 AA0320 \N 52422 5 0048565 \N 52423 5 0035837 \N 52424 5 0002341 \N 52425 5 0051327 \N 52426 5 0019060 \N 52427 5 0043377 \N 52428 5 0032461 \N 52429 5 0042204 \N 52430 5 0019599 \N 52431 5 0009870 \N 52432 3 11418339 \N 52433 5 0002388 \N 52434 5 0018123 \N 52435 89 AA0169 \N 52436 5 0018148 \N 52437 89 AA0249 \N 52438 5 0003145 \N 52439 5 0030464 \N 52440 5 0017121 \N 52441 5 0071473 \N 52442 5 0016233 \N 52443 3 11349150 \N 52444 3 11352055 \N 52445 5 0072623 \N 52446 5 0019640 \N 52447 5 0052048 \N 52448 5 0002132 \N 52449 5 0060959 \N 52450 5 0016236 \N 52451 5 0034262 \N 52452 3 11099404 \N 52453 3 12914914 \N 52454 5 0046325 \N 52455 5 0060158 \N 52456 3 12675914 \N 52457 5 0052356 \N 52458 5 0006163 \N 52459 5 0015954 \N 52460 5 0000042 \N 52461 5 0045200 \N 52462 5 0043340 \N 52463 5 0043343 \N 52464 5 0044236 \N 52465 5 0021997 \N 52466 5 0046950 \N 52467 5 2000160 \N 52468 5 0046367 \N 52469 5 0034756 \N 52470 5 0032270 \N 52471 5 0045451 \N 52472 5 0048035 \N 52473 5 0048656 \N 52474 5 0052182 \N 52475 5 0000771 \N 52476 5 0043477 \N 52477 5 0080185 \N 52478 3 16497589 \N 52479 5 0030916 \N 52480 5 0021886 \N 52481 5 0035007 \N 52482 5 0075022 \N 52483 5 0046814 \N 52484 86 0879694971 \N 52485 5 0006461 \N 52486 5 0000954 \N 52487 5 0018222 \N 52488 89 AA0101 \N 52489 5 0060598 \N 52490 5 0003217 \N 52491 5 0031446 \N 52492 5 0035537 \N 52493 5 0010142 \N 52494 87 PWY-922 \N 52495 5 0010897 \N 52496 5 0052227 \N 52497 5 0052411 \N 52498 5 0060823 \N 52499 5 0072480 \N 52500 5 0010438 \N 52501 3 17420480 \N 52502 5 0045147 \N 52503 5 0006153 \N 52504 5 0000916 \N 52505 5 0032338 \N 52506 5 0051482 \N 52507 5 0075190 \N 52508 5 0048588 \N 52509 5 0060174 \N 52510 5 0021999 \N 52511 5 0050745 \N 52512 5 0097021 \N 52513 3 18379575 \N 52514 5 0032758 \N 52515 5 0045558 \N 52516 3 9311998 \N 52517 5 2000317 \N 52518 5 0035684 \N 52519 5 0051413 \N 52520 5 0043687 \N 52521 5 0006998 \N 52522 5 0080051 \N 52523 3 17951461 \N 52524 5 0035638 \N 52525 5 0043491 \N 52526 5 0006417 \N 52527 5 0006445 \N 52528 5 0051763 \N 52529 5 0035170 \N 52530 5 0045433 \N 52531 5 0021930 \N 52532 5 2000476 \N 52533 5 0071996 \N 52534 5 0030046 \N 52535 5 0051757 \N 52536 5 0008152 \N 52537 5 0051651 \N 52538 5 0002371 \N 52539 5 0016115 \N 52540 5 0051947 \N 52541 5 0048691 \N 52542 5 0033368 \N 52543 5 0032961 \N 52544 5 0043470 \N 52545 5 0071033 \N 52546 3 11586364 \N 52547 3 12417728 \N 52548 3 14718167 \N 52549 5 0045671 \N 52550 5 0048811 \N 52551 5 2000056 \N 52552 5 0048640 \N 52553 5 0001121 \N 52554 5 0034240 \N 52555 5 0070901 \N 52556 5 0002412 \N 52557 3 12843411 \N 52558 5 0032489 \N 52559 5 0046985 \N 52560 5 0072098 \N 52561 5 0015820 \N 52562 5 0010878 \N 52563 5 0042538 \N 52564 5 0008214 \N 52565 5 0002105 \N 52566 5 0051358 \N 52567 3 11682051 \N 52568 89 AA0378 \N 52569 5 0042227 \N 52570 5 0021794 \N 52571 5 0010557 \N 52572 5 0051303 \N 52573 5 0090239 \N 52574 5 0042339 \N 52575 5 0031923 \N 52576 5 2000223 \N 52577 5 0010797 \N 52578 5 0007126 \N 52579 5 0006911 \N 52580 5 0010332 \N 52581 104 Gamma_ray \N 52582 5 0072175 \N 52583 5 0000173 \N 52584 5 0009736 \N 52585 5 0090317 \N 52586 5 0048096 \N 52587 5 0070267 \N 52588 3 17873035 \N 52589 5 0016543 \N 52590 5 0009063 \N 52591 5 0043450 \N 52592 88 32878 \N 52593 104 Alkene \N 52594 5 0090089 \N 52595 5 0071589 \N 52596 5 0005999 \N 52597 5 0072296 \N 52598 5 0009255 \N 52599 87 ENTNER-DOUDOROFF-PWY \N 52600 5 0080091 \N 52601 5 0002889 \N 52602 5 0052012 \N 52603 5 0046302 \N 52604 5 0015936 \N 52605 5 0006763 \N 52606 5 0035161 \N 52607 5 0072648 \N 52608 5 0045399 \N 52609 5 0045819 \N 52610 5 0002232 \N 52611 5 0051444 \N 52612 5 2000143 \N 52613 5 0046753 \N 52614 5 0072113 \N 52615 5 0075000 \N 52616 5 0061064 \N 52617 5 2001047 \N 52618 5 0045737 \N 52619 5 0046019 \N 52620 5 0033329 \N 52621 5 0042573 \N 52622 5 0021824 \N 52623 5 0075310 \N 52624 5 0060670 \N 52625 5 0050976 \N 52626 5 0032611 \N 52627 5 0034641 \N 52628 5 0052436 \N 52629 5 0031950 \N 52630 5 0007269 \N 52631 5 0050722 \N 52632 5 0048174 \N 52633 5 0070306 \N 52634 5 0060868 \N 52635 5 0045930 \N 52636 5 2000697 \N 52637 5 0042885 \N 52638 3 11292337 \N 52639 5 0060894 \N 52640 5 0021905 \N 52641 5 0046135 \N 52642 5 0003270 \N 52643 5 0048543 \N 52644 3 2909515 \N 52645 5 0031644 \N 52646 5 0061101 \N 52647 5 0045161 \N 52648 3 11456440 \N 52649 5 0021736 \N 52650 5 0031577 \N 52651 3 15897186 \N 52652 5 0019701 \N 52653 3 9792625 \N 52654 89 AA0305 \N 52655 5 0075298 \N 52656 5 0033333 \N 52657 5 0035434 \N 52658 5 0035734 \N 52659 5 0010585 \N 52660 3 15208395 \N 52661 5 0035018 \N 52662 5 0032722 \N 52663 5 0046482 \N 52664 3 11377864 \N 52665 3 11960743 \N 52666 5 0046225 \N 52667 5 0035246 \N 52668 5 0072214 \N 52669 5 0007231 \N 52670 5 2000888 \N 52671 5 0001814 \N 52672 5 0032290 \N 52673 5 0048724 \N 52674 5 0045869 \N 52675 5 0006556 \N 52676 5 0044063 \N 52677 5 0035531 \N 52678 5 0031548 \N 52679 5 0061227 \N 52680 5 0032990 \N 52681 5 0090393 \N 52682 5 0032339 \N 52683 5 0045801 \N 52684 5 0035166 \N 52685 5 0021651 \N 52686 5 0019700 \N 52687 4 js \N 52688 5 0060207 \N 52689 5 0046106 \N 52690 5 0009605 \N 52691 5 0002901 \N 52692 5 0090114 \N 52693 5 0005994 \N 52694 5 0061097 \N 52695 5 0015792 \N 52696 5 2000551 \N 52697 5 0030584 \N 52698 5 0048725 \N 52699 5 0042053 \N 52700 5 0009243 \N 52701 5 0046841 \N 52702 5 0001813 \N 52703 5 0043507 \N 52704 5 0060845 \N 52705 5 0001173 \N 52706 5 0052211 \N 52707 5 0042631 \N 52708 5 0052072 \N 52709 5 0055109 \N 52710 5 0042795 \N 52711 5 0018285 \N 52712 89 AA0137 \N 52713 5 0002444 \N 52714 5 0033530 \N 52715 5 0060623 \N 52716 5 0051186 \N 52717 5 0019383 \N 52718 94 //umbbd.ahc.umn.edu/cam/cam_map.html \N 52719 97 cam \N 52720 5 0045844 \N 52721 5 0017008 \N 52722 89 AA0258 \N 52723 5 0042037 \N 52724 5 0042260 \N 52725 89 AA0073 \N 52726 5 0033394 \N 52727 87 PWY-3981 \N 52728 5 0000969 \N 52729 5 2001023 \N 52730 5 0010528 \N 52731 5 0000375 \N 52732 5 0000385 \N 52733 5 0031202 \N 52734 5 0010061 \N 52735 5 0048718 \N 52736 5 0010582 \N 52737 3 18441215 \N 52738 5 0043457 \N 52739 5 0044277 \N 52740 5 0021864 \N 52741 5 0060476 \N 52742 5 0033088 \N 52743 5 0014004 \N 52744 5 0035552 \N 52745 5 0010415 \N 52746 5 0042343 \N 52747 5 0060648 \N 52748 5 2000902 \N 52749 5 0043500 \N 52750 5 0035437 \N 52751 5 0060266 \N 52752 5 0042592 \N 52753 5 0015940 \N 52754 5 0071807 \N 52755 3 17347517 \N 52756 3 20797631 \N 52757 5 0035929 \N 52758 88 26764 \N 52759 5 0030261 \N 52760 5 0000068 \N 52761 5 0010706 \N 52762 5 0030995 \N 52763 3 15194814 \N 52764 5 0070596 \N 52765 5 0018229 \N 52766 89 AA0105 \N 52767 5 2000099 \N 52768 5 0031346 \N 52769 5 0021976 \N 52770 5 0045392 \N 52771 5 0030500 \N 52772 5 0070245 \N 52773 5 0022020 \N 52774 5 0043504 \N 52775 3 12565799 \N 52776 3 15189144 \N 52777 3 16050976 \N 52778 5 0071342 \N 52779 5 0060679 \N 52780 5 0070781 \N 52781 5 0019091 \N 52782 5 0051928 \N 52783 5 0015777 \N 52784 5 0052345 \N 52785 5 0001731 \N 52786 5 0070455 \N 52787 5 0030433 \N 52788 5 0033246 \N 52789 5 0046879 \N 52790 5 0035105 \N 52791 5 0072490 \N 52792 88 27024 \N 52793 5 0052470 \N 52794 5 0043251 \N 52795 5 0033630 \N 52796 5 0060661 \N 52797 5 0072322 \N 52798 5 0030243 \N 52799 5 0016177 \N 52800 5 0046635 \N 52801 5 0018201 \N 52802 5 0075004 \N 52803 5 0033241 \N 52804 5 0048361 \N 52805 5 0052462 \N 52806 5 0033082 \N 52807 5 0043711 \N 52808 5 0048626 \N 52809 5 0052703 \N 52810 88 24599 \N 52811 5 0006671 \N 52812 5 0090196 \N 52813 5 0042346 \N 52814 5 0045069 \N 52815 5 0048438 \N 52816 5 0048413 \N 52817 5 0003281 \N 52818 5 0042503 \N 52819 5 0019926 \N 52820 3 2028257 \N 52821 89 AA0148 \N 52822 5 0052569 \N 52823 5 0001920 \N 52824 5 0051825 \N 52825 5 0014744 \N 52826 5 0007144 \N 52827 5 0019236 \N 52828 5 0070564 \N 52829 5 0003058 \N 52830 5 0051384 \N 52831 3 9884123 \N 52832 5 2000214 \N 52833 5 0045049 \N 52834 5 0051396 \N 52835 5 0010626 \N 52836 5 0014911 \N 52837 5 0010117 \N 52838 5 0046580 \N 52839 5 0033217 \N 52840 5 0030512 \N 52841 5 0043525 \N 52842 5 0035026 \N 52843 5 0033505 \N 52844 5 0048332 \N 52845 5 0008306 \N 52846 5 0044273 \N 52847 5 0060464 \N 52848 5 0052004 \N 52849 5 0015908 \N 52850 5 0006494 \N 52851 5 0038001 \N 52852 5 0010049 \N 52853 5 0035313 \N 52854 5 0070490 \N 52855 3 18980670 \N 52856 5 0010972 \N 52857 5 0090144 \N 52858 5 0071870 \N 52859 88 33567 \N 52860 5 0080020 \N 52861 3 18621975 \N 52862 5 0052560 \N 52863 5 0046907 \N 52864 5 0006610 \N 52865 5 0060433 \N 52866 5 0042438 \N 52867 88 25179 \N 52868 5 0009740 \N 52869 5 0090336 \N 52870 5 0007484 \N 52871 5 0006327 \N 52872 5 0060067 \N 52873 5 2000313 \N 52874 5 2000236 \N 52875 5 0010616 \N 52876 5 0035512 \N 52877 5 0072280 \N 52878 5 0000070 \N 52879 5 0016359 \N 52880 5 2000820 \N 52881 5 0071838 \N 52882 5 0003045 \N 52883 5 0071969 \N 52884 5 0045376 \N 52885 5 0090122 \N 52886 5 2000509 \N 52887 5 0072016 \N 52888 5 0019317 \N 52889 5 0019881 \N 52890 5 0060214 \N 52891 3 17722983 \N 52892 5 0090284 \N 52893 5 0051655 \N 52894 5 0051883 \N 52895 5 0050967 \N 52896 5 0071929 \N 52897 3 17786050 \N 52898 5 2000569 \N 52899 5 0002712 \N 52900 5 0002643 \N 52901 5 0014806 \N 52902 5 0034383 \N 52903 5 0002700 \N 52904 5 0075229 \N 52905 5 0051586 \N 52906 5 0018972 \N 52907 5 0071636 \N 52908 5 0010803 \N 52909 5 0051613 \N 52910 5 0014868 \N 52911 5 0070145 \N 52912 5 0001178 \N 52913 5 0018232 \N 52914 89 AA0108 \N 52915 5 0030222 \N 52916 5 0018314 \N 52917 3 7665488 \N 52918 89 AA0283 \N 52919 5 0031568 \N 52920 5 0032833 \N 52921 5 0045654 \N 52922 5 0035474 \N 52923 5 0033073 \N 52924 94 //www.chem.qmul.ac.uk/iubmb/enzyme/glossary/pinene.html \N 52925 5 0048569 \N 52926 5 0014019 \N 52927 5 0052121 \N 52928 5 0070433 \N 52929 5 0046329 \N 52930 5 0019426 \N 52931 5 0006708 \N 52932 5 0010510 \N 52933 5 0003206 \N 52934 5 0008285 \N 52935 5 0097054 \N 52936 5 0006050 \N 52937 88 mannosamine \N 52938 5 0046594 \N 52939 5 0048122 \N 52940 5 0052466 \N 52941 5 0090056 \N 52942 5 0019696 \N 52943 87 TOLUENE-DEG-DIOL-PWY \N 52944 5 0051667 \N 52945 5 0043562 \N 52946 5 0042317 \N 52947 5 0051149 \N 52948 5 0022605 \N 52949 5 0071875 \N 52950 5 0050904 \N 52951 86 078173514 \N 52952 5 0055124 \N 52953 5 0003343 \N 52954 5 0000093 \N 52955 5 0045607 \N 52956 5 0018443 \N 52957 89 AA0033 \N 52958 5 0060280 \N 52959 5 0061029 \N 52960 5 0043354 \N 52961 5 0050829 \N 52962 5 0070101 \N 52963 5 0034497 \N 52964 5 2000412 \N 52965 5 0032958 \N 52966 88 25448 \N 52967 5 0018868 \N 52968 94 //umbbd.ahc.umn.edu/abs/abs_map.html \N 52969 97 abs \N 52970 5 0002738 \N 52971 5 0060988 \N 52972 5 0090368 \N 52973 5 0032784 \N 52974 5 0072417 \N 52975 5 0045610 \N 52976 5 0046599 \N 52977 5 0080088 \N 52978 3 19077165 \N 52979 5 0031173 \N 52980 5 0006209 \N 52981 5 0019401 \N 52982 5 0009070 \N 52983 5 2000508 \N 52984 5 0072475 \N 52985 5 2000333 \N 52986 5 0045494 \N 52987 91 0000210 \N 52988 5 0002793 \N 52989 5 0009396 \N 52990 5 0051438 \N 52991 5 0050851 \N 52992 5 0072344 \N 52993 3 18557701 \N 52994 3 19170872 \N 52995 3 20117091 \N 52996 3 20185543 \N 52997 5 0018211 \N 52998 5 0017010 \N 52999 89 AA0260 \N 53000 5 0018215 \N 53001 5 0061147 \N 53002 5 0008544 \N 53003 106 0001003 \N 53004 5 0009690 \N 53005 5 0035469 \N 53006 3 12702646 \N 53007 5 0035690 \N 53008 5 0043242 \N 53009 5 0003110 \N 53010 5 0019713 \N 53011 5 0071373 \N 53012 5 0035067 \N 53013 5 0019677 \N 53014 5 0006737 \N 53015 5 0030164 \N 53016 86 3110145359 \N 53017 5 0042197 \N 53018 5 0050822 \N 53019 5 0018397 \N 53020 89 AA0174 \N 53021 5 0071241 \N 53022 5 0072291 \N 53023 5 0051343 \N 53024 5 0031167 \N 53025 5 0042108 \N 53026 5 0019310 \N 53027 5 0006569 \N 53028 5 0043004 \N 53029 5 0060654 \N 53030 5 0003368 \N 53031 5 0035957 \N 53032 5 0070132 \N 53033 5 0052018 \N 53034 5 0007035 \N 53035 5 0044180 \N 53036 4 mtg_cambridge_2009 \N 53037 5 0006580 \N 53038 5 0006645 \N 53039 88 16000 \N 53040 5 0003242 \N 53041 5 0006643 \N 53042 5 2000829 \N 53043 5 0050658 \N 53044 5 0015910 \N 53045 5 0061127 \N 53046 5 0019629 \N 53047 5 0042839 \N 53048 5 0021569 \N 53049 5 0007026 \N 53050 5 0080120 \N 53051 3 12039957 \N 53052 3 17114793 \N 53053 3 18641086 \N 53054 5 0031425 \N 53055 5 0010900 \N 53056 5 0080136 \N 53057 3 19318610 \N 53058 5 0044315 \N 53059 3 17922044 \N 53060 3 19876390 \N 53061 5 0048597 \N 53062 5 0010562 \N 53063 5 0046426 \N 53064 5 0021732 \N 53065 5 0006277 \N 53066 5 0009890 \N 53067 5 0010831 \N 53068 5 0030180 \N 53069 5 0035494 \N 53070 3 11697877 \N 53071 5 0071305 \N 53072 5 0009237 \N 53073 5 0060750 \N 53074 5 2000749 \N 53075 3 10899127 \N 53076 5 0051690 \N 53077 5 0035573 \N 53078 5 0033046 \N 53079 5 0046288 \N 53080 5 0030635 \N 53081 5 2000555 \N 53082 5 0043650 \N 53083 5 0048498 \N 53084 3 10572040 \N 53085 5 0072463 \N 53086 5 0052366 \N 53087 5 0006385 \N 53088 5 0000288 \N 53089 5 0044268 \N 53090 5 0005984 \N 53091 5 0001021 \N 53092 5 0002326 \N 53093 5 0050655 \N 53094 5 0035775 \N 53095 5 0071434 \N 53096 5 0050672 \N 53097 5 0045959 \N 53098 5 0044249 \N 53099 5 0075030 \N 53100 5 0052573 \N 53101 5 0051592 \N 53102 5 2000277 \N 53103 5 0002638 \N 53104 5 0002873 \N 53105 5 0009247 \N 53106 5 0009844 \N 53107 5 0009565 \N 53108 5 0002029 \N 53109 5 0075148 \N 53110 5 0052643 \N 53111 88 38206 \N 53112 5 0097097 \N 53113 5 0010040 \N 53114 5 0030649 \N 53115 5 0031336 \N 53116 5 0030217 \N 53117 5 0042112 \N 53118 5 0046652 \N 53119 5 0051125 \N 53120 5 0048252 \N 53121 88 30805 \N 53122 5 0071520 \N 53123 3 19713940 \N 53124 5 2001027 \N 53125 5 2000460 \N 53126 5 0006753 \N 53127 5 0070871 \N 53128 5 0055075 \N 53129 5 0035338 \N 53130 5 0045227 \N 53131 5 0002478 \N 53132 5 0052504 \N 53133 5 0042158 \N 53134 5 0033057 \N 53135 5 0010172 \N 53136 5 0002765 \N 53137 5 0034490 \N 53138 5 0070805 \N 53139 5 0052391 \N 53140 5 0010410 \N 53141 5 0006312 \N 53142 5 0071290 \N 53143 5 0019272 \N 53144 5 0070234 \N 53145 5 0052189 \N 53146 5 0046151 \N 53147 5 0072672 \N 53148 91 0000775 \N 53149 5 0060236 \N 53150 5 0075266 \N 53151 5 2000169 \N 53152 5 0007183 \N 53153 5 0071449 \N 53154 5 0045973 \N 53155 5 0001907 \N 53156 5 0051215 \N 53157 5 0048855 \N 53158 5 0009125 \N 53159 5 0071390 \N 53160 5 0060447 \N 53161 5 0030653 \N 53162 5 0007089 \N 53163 5 0000081 \N 53164 5 0002759 \N 53165 5 0008298 \N 53166 5 0072468 \N 53167 5 0048839 \N 53168 5 0006926 \N 53169 5 0042666 \N 53170 5 0019724 \N 53171 5 0032875 \N 53172 5 0048132 \N 53173 5 0048141 \N 53174 5 0018138 \N 53175 89 AA0242 \N 53176 5 0001748 \N 53177 5 0048049 \N 53178 5 0006800 \N 53179 5 0070321 \N 53180 5 2001032 \N 53181 5 0007017 \N 53182 5 0060546 \N 53183 5 0052093 \N 53184 5 0010224 \N 53185 5 0010599 \N 53186 3 18003861 \N 53187 5 0070936 \N 53188 5 0042479 \N 53189 5 0007118 \N 53190 5 0019927 \N 53191 119 1JJU \N 53192 3 11555656 \N 53193 3 11717396 \N 53194 89 AA0313 \N 53195 5 0035703 \N 53196 5 0021859 \N 53197 5 2000433 \N 53198 5 0006638 \N 53199 5 0035635 \N 53200 3 21187937 \N 53201 5 0030640 \N 53202 5 0000426 \N 53203 5 0010212 \N 53204 3 12509526 \N 53205 5 0034670 \N 53206 3 18202452 \N 53207 5 0032024 \N 53208 5 0070790 \N 53209 5 0005982 \N 53210 5 2000270 \N 53211 5 0006174 \N 53212 5 0032642 \N 53213 5 0042823 \N 53214 5 2000617 \N 53215 5 0032264 \N 53216 5 0032512 \N 53217 5 0033600 \N 53218 5 0090055 \N 53219 5 0021787 \N 53220 5 0055088 \N 53221 5 0070384 \N 53222 3 16856596 \N 53223 3 7559104 \N 53224 5 0040001 \N 53225 5 0018986 \N 53226 5 0030605 \N 53227 5 0030606 \N 53228 5 0030608 \N 53229 5 0030610 \N 53230 5 0035111 \N 53231 3 12051824 \N 53232 5 0070238 \N 53233 5 0007055 \N 53234 5 0021892 \N 53235 5 0051336 \N 53236 93 3.-.-.- \N 53237 5 0019831 \N 53238 5 0033628 \N 53239 5 0014743 \N 53240 5 0021655 \N 53241 5 0018085 \N 53242 5 0010130 \N 53243 5 0018969 \N 53244 5 0002805 \N 53245 5 0000238 \N 53246 5 0050772 \N 53247 5 0090223 \N 53248 5 0006570 \N 53249 5 0061367 \N 53250 5 0045321 \N 53251 5 0010366 \N 53252 5 0061351 \N 53253 5 0019076 \N 53254 5 0032259 \N 53255 5 0042515 \N 53256 5 0006499 \N 53257 5 0031653 \N 53258 5 0033024 \N 53259 3 12360215 \N 53260 3 16605130 \N 53261 5 0060995 \N 53262 5 0043420 \N 53263 5 0018869 \N 53264 5 0072081 \N 53265 5 0035149 \N 53266 5 0032882 \N 53267 5 0071792 \N 53268 3 20308541 \N 53269 5 0060533 \N 53270 5 0043322 \N 53271 5 0051237 \N 53272 5 0071486 \N 53273 5 0046528 \N 53274 5 0075072 \N 53275 5 0071346 \N 53276 5 0048447 \N 53277 5 0048422 \N 53278 5 0019277 \N 53279 5 0030316 \N 53280 3 12161749 \N 53281 5 0019357 \N 53282 5 0048806 \N 53283 5 0045528 \N 53284 5 0003236 \N 53285 5 0032314 \N 53286 5 0060459 \N 53287 5 0046705 \N 53288 5 2000060 \N 53289 5 0052698 \N 53290 5 0052080 \N 53291 5 2000490 \N 53292 5 0002014 \N 53293 5 0010743 \N 53294 5 0006357 \N 53295 5 0006358 \N 53296 5 0010551 \N 53297 5 0003409 \N 53298 5 0046479 \N 53299 5 0075123 \N 53300 5 0003301 \N 53301 5 0006122 \N 53302 5 0046203 \N 53303 5 0002399 \N 53304 5 0042177 \N 53305 3 10207076 \N 53306 5 0007064 \N 53307 3 10827941 \N 53308 3 11389843 \N 53309 3 14623866 \N 53310 5 0010579 \N 53311 5 0052293 \N 53312 5 0030154 \N 53313 5 0002240 \N 53314 5 0010848 \N 53315 5 0071238 \N 53316 5 0075210 \N 53317 5 0033351 \N 53318 5 0045634 \N 53319 5 0071613 \N 53320 5 0019325 \N 53321 5 0072257 \N 53322 5 0052133 \N 53323 5 0042306 \N 53324 5 0007528 \N 53325 5 0009293 \N 53326 5 0042847 \N 53327 5 0051313 \N 53328 5 0031451 \N 53329 5 0030321 \N 53330 5 0072190 \N 53331 5 0035376 \N 53332 3 19793923 \N 53333 5 0046621 \N 53334 5 0060149 \N 53335 5 0002578 \N 53336 5 0043123 \N 53337 5 0070085 \N 53338 5 0042233 \N 53339 5 0007236 \N 53340 5 0045364 \N 53341 5 0016268 \N 53342 5 0060818 \N 53343 5 0035073 \N 53344 5 0040032 \N 53345 5 0007257 \N 53346 5 0001553 \N 53347 5 0019398 \N 53348 5 0034150 \N 53349 5 0009215 \N 53350 5 0048937 \N 53351 5 0048764 \N 53352 5 0006451 \N 53353 5 0018244 \N 53354 5 0045730 \N 53355 5 0010191 \N 53356 5 0045970 \N 53357 5 0071555 \N 53358 5 0044051 \N 53359 5 0060550 \N 53360 5 0010658 \N 53361 5 0014833 \N 53362 5 0045896 \N 53363 5 0039518 \N 53364 5 0045090 \N 53365 5 0072313 \N 53366 5 0070276 \N 53367 88 22473 \N 53368 5 0071491 \N 53369 5 0060791 \N 53370 5 0090322 \N 53371 5 0031397 \N 53372 5 0003419 \N 53373 5 0051144 \N 53374 5 2000187 \N 53375 5 0042387 \N 53376 5 0060513 \N 53377 5 0002430 \N 53378 5 0048824 \N 53379 3 16499899 \N 53380 5 0006799 \N 53381 5 0015802 \N 53382 5 0045783 \N 53383 5 0015853 \N 53384 5 0060602 \N 53385 5 0001933 \N 53386 5 0072645 \N 53387 5 0019878 \N 53388 5 2001050 \N 53389 5 0048484 \N 53390 96 66070 \N 53391 5 0010740 \N 53392 5 0046116 \N 53393 5 0045646 \N 53394 5 0016120 \N 53395 5 0002653 \N 53396 5 0010532 \N 53397 5 0002532 \N 53398 5 0019605 \N 53399 5 0043437 \N 53400 5 0008587 \N 53401 5 0051439 \N 53402 5 0071729 \N 53403 5 0030647 \N 53404 5 2000925 \N 53405 5 0042472 \N 53406 5 0072224 \N 53407 5 0075175 \N 53408 5 0048216 \N 53409 5 0044252 \N 53410 5 2000775 \N 53411 5 0016090 \N 53412 5 0003129 \N 53413 5 0042792 \N 53414 5 0007367 \N 53415 5 0009270 \N 53416 5 0006854 \N 53417 5 0070121 \N 53418 5 0006665 \N 53419 5 0072387 \N 53420 88 24040 \N 53421 5 0006111 \N 53422 5 0033358 \N 53423 87 PWY-82 \N 53424 5 2000789 \N 53425 5 0072529 \N 53426 88 39447 \N 53427 5 0051826 \N 53428 5 0060846 \N 53429 5 0035404 \N 53430 5 0035587 \N 53431 5 0052144 \N 53432 5 0007302 \N 53433 5 0009154 \N 53434 5 0019741 \N 53435 5 0072204 \N 53436 5 0006441 \N 53437 5 0090002 \N 53438 5 0044077 \N 53439 5 0050777 \N 53440 5 2000687 \N 53441 5 0048926 \N 53442 5 0016071 \N 53443 5 0052328 \N 53444 5 0048902 \N 53445 5 0035989 \N 53446 3 21412429 \N 53447 5 0060783 \N 53448 5 0018533 \N 53449 5 0032940 \N 53450 5 0070963 \N 53451 5 0072003 \N 53452 5 0030969 \N 53453 3 12042763 \N 53454 5 0001706 \N 53455 5 0034607 \N 53456 117 WBPaper00002109 \N 53457 5 0097107 \N 53458 5 0015760 \N 53459 5 0070656 \N 53460 5 0042928 \N 53461 5 0035305 \N 53462 5 0032384 \N 53463 5 0061210 \N 53464 5 0019517 \N 53465 87 PWY-901 \N 53466 87 THRDLCTCAT-PWY \N 53467 5 0000089 \N 53468 5 2000342 \N 53469 5 0046891 \N 53470 89 AA0332 \N 53471 5 0072168 \N 53472 5 0006522 \N 53473 5 0032919 \N 53474 5 0042350 \N 53475 5 0006790 \N 53476 5 0007473 \N 53477 5 0010931 \N 53478 5 0060768 \N 53479 5 0051641 \N 53480 5 0018334 \N 53481 89 AA0039 \N 53482 5 0034104 \N 53483 5 0031112 \N 53484 5 0051795 \N 53485 5 0051331 \N 53486 5 0048867 \N 53487 5 0046062 \N 53488 5 0045950 \N 53489 5 0044002 \N 53490 5 0019748 \N 53491 5 0075145 \N 53492 5 0045112 \N 53493 5 0042481 \N 53494 5 0042484 \N 53495 5 0019042 \N 53496 5 0015812 \N 53497 5 0060871 \N 53498 5 0002490 \N 53499 5 0003221 \N 53500 5 0055023 \N 53501 5 0050898 \N 53502 88 18379 \N 53503 5 0090275 \N 53504 5 0048927 \N 53505 5 0070817 \N 53506 5 0072338 \N 53507 5 0051480 \N 53508 5 0051016 \N 53509 5 0046866 \N 53510 5 0061106 \N 53511 5 0009452 \N 53512 3 9266685 \N 53513 5 0021946 \N 53514 5 0070668 \N 53515 5 0007374 \N 53516 5 0072033 \N 53517 5 0018079 \N 53518 5 0009838 \N 53519 86 0140514031 \N 53520 5 0048793 \N 53521 3 15968585 \N 53522 3 18322540 \N 53523 110 00002000 \N 53524 116 0000151 \N 53525 5 0003229 \N 53526 5 0043577 \N 53527 3 10087613 \N 53528 5 0002778 \N 53529 5 0009949 \N 53530 5 0071706 \N 53531 5 0052155 \N 53532 5 0021666 \N 53533 5 0003065 \N 53534 5 0048897 \N 53535 3 12112375 \N 53536 5 0002227 \N 53537 3 10719665 \N 53538 3 15971105 \N 53539 5 0007546 \N 53540 5 0048625 \N 53541 5 0046399 \N 53542 5 0070078 \N 53543 5 0031437 \N 53544 5 0061378 \N 53545 5 0009313 \N 53546 5 0060096 \N 53547 5 0006379 \N 53548 5 0010862 \N 53549 5 0021807 \N 53550 5 0070175 \N 53551 5 0032128 \N 53552 92 10.1007/s002530051351 \N 53553 3 14538073 \N 53554 5 0002691 \N 53555 5 0061075 \N 53556 5 0046392 \N 53557 5 0002267 \N 53558 5 0016554 \N 53559 5 0071251 \N 53560 5 2000683 \N 53561 5 0018238 \N 53562 5 0018239 \N 53563 89 AA0115 \N 53564 5 0070246 \N 53565 3 15728472 \N 53566 5 0060906 \N 53567 5 0009117 \N 53568 5 0001998 \N 53569 5 0033587 \N 53570 88 36208 \N 53571 5 0052291 \N 53572 5 0050891 \N 53573 5 0006272 \N 53574 5 0002291 \N 53575 5 0072152 \N 53576 5 0019067 \N 53577 86 1555811272 \N 53578 5 0043985 \N 53579 5 0010723 \N 53580 5 0033859 \N 53581 3 15338422 \N 53582 3 16652391 \N 53583 5 0014710 \N 53584 5 0002892 \N 53585 5 0032446 \N 53586 5 0032862 \N 53587 5 0002298 \N 53588 3 12093005 \N 53589 5 2000863 \N 53590 5 0072361 \N 53591 5 0042760 \N 53592 5 0014898 \N 53593 5 0044093 \N 53594 5 0032765 \N 53595 5 0031326 \N 53596 5 0031506 \N 53597 5 0033869 \N 53598 5 0090304 \N 53599 5 2000630 \N 53600 5 0006129 \N 53601 5 0010884 \N 53602 5 0060301 \N 53603 5 0007550 \N 53604 5 2000327 \N 53605 5 0042391 \N 53606 5 0002915 \N 53607 5 0071910 \N 53608 5 0009555 \N 53609 5 0009564 \N 53610 5 0048231 \N 53611 5 0045740 \N 53612 5 0010867 \N 53613 5 0072093 \N 53614 5 0016357 \N 53615 5 2000954 \N 53616 5 0046069 \N 53617 5 0060580 \N 53618 5 0048936 \N 53619 5 0010624 \N 53620 5 0072410 \N 53621 5 0021754 \N 53622 5 0000734 \N 53623 5 0002439 \N 53624 5 2000108 \N 53625 5 0007572 \N 53626 5 0015683 \N 53627 5 0000066 \N 53628 5 0031921 \N 53629 5 0046083 \N 53630 5 0032698 \N 53631 5 0008161 \N 53632 5 0055093 \N 53633 5 0019440 \N 53634 5 0046500 \N 53635 5 0034134 \N 53636 5 0043934 \N 53637 5 0007138 \N 53638 5 0015983 \N 53639 5 0002628 \N 53640 5 0014883 \N 53641 5 0010255 \N 53642 5 0046266 \N 53643 5 0071853 \N 53644 5 0052305 \N 53645 5 0002207 \N 53646 5 0035629 \N 53647 5 0002506 \N 53648 5 0006474 \N 53649 5 0051245 \N 53650 5 2000247 \N 53651 5 0071793 \N 53652 5 0071537 \N 53653 112 IPR018957 \N 53654 5 0031046 \N 53655 5 0021873 \N 53656 5 0019058 \N 53657 5 0060765 \N 53658 5 0017198 \N 53659 89 AA0051 \N 53660 5 0000302 \N 53661 5 0003023 \N 53662 5 0032985 \N 53663 5 2000624 \N 53664 5 0035729 \N 53665 5 0032597 \N 53666 5 0045328 \N 53667 89 AA0324 \N 53668 5 0009090 \N 53669 5 0007350 \N 53670 5 0000023 \N 53671 5 0043535 \N 53672 5 0080119 \N 53673 3 18780803 \N 53674 3 19147648 \N 53675 5 0018009 \N 53676 89 AA0060 \N 53677 5 0090184 \N 53678 5 0060118 \N 53679 5 0071643 \N 53680 5 0016145 \N 53681 5 0009932 \N 53682 5 0060410 \N 53683 5 0002868 \N 53684 5 0000475 \N 53685 5 0003002 \N 53686 5 0045408 \N 53687 5 0030518 \N 53688 5 0075215 \N 53689 5 0009611 \N 53690 5 0002245 \N 53691 5 0046637 \N 53692 5 0021684 \N 53693 5 0035910 \N 53694 100 0002570 \N 53695 106 0001496 \N 53696 104 Ascending_aorta \N 53697 5 2000254 \N 53698 5 2000435 \N 53699 5 0032616 \N 53700 5 0010423 \N 53701 3 16857903 \N 53702 5 0046549 \N 53703 5 0035915 \N 53704 3 21549739 \N 53705 5 0070350 \N 53706 5 0072617 \N 53707 5 0045758 \N 53708 5 0019051 \N 53709 5 0051094 \N 53710 5 0003315 \N 53711 5 0033576 \N 53712 5 0046163 \N 53713 115 122208 \N 53714 5 0019126 \N 53715 5 0018090 \N 53716 5 0018372 \N 53717 89 AA0195 \N 53718 5 0034157 \N 53719 5 0045591 \N 53720 5 0046764 \N 53721 5 0000200 \N 53722 5 2000970 \N 53723 5 0042252 \N 53724 5 0003304 \N 53725 5 0010671 \N 53726 5 0032771 \N 53727 3 2494997 \N 53728 5 0018338 \N 53729 5 0046244 \N 53730 5 0006106 \N 53731 5 0000416 \N 53732 5 2000956 \N 53733 5 0031110 \N 53734 5 0097068 \N 53735 5 0070689 \N 53736 87 PWY-5437 \N 53737 5 0072554 \N 53738 3 16799567 \N 53739 3 20926893 \N 53740 5 0072459 \N 53741 5 0048532 \N 53742 5 2000769 \N 53743 5 0070474 \N 53744 5 0006505 \N 53745 5 0046472 \N 53746 5 0034093 \N 53747 5 0071489 \N 53748 5 0018160 \N 53749 5 0018354 \N 53750 5 0033035 \N 53751 88 30410 \N 53752 89 AA0252 \N 53753 5 0018401 \N 53754 89 AA0030 \N 53755 5 0018896 \N 53756 5 0051194 \N 53757 5 0009812 \N 53758 5 0006109 \N 53759 5 0035293 \N 53760 5 0071219 \N 53761 5 0019449 \N 53762 5 0002845 \N 53763 5 0046521 \N 53764 5 0034014 \N 53765 5 0070156 \N 53766 5 0048207 \N 53767 5 0001797 \N 53768 5 0032726 \N 53769 5 2000538 \N 53770 5 0010757 \N 53771 5 2000019 \N 53772 5 0019573 \N 53773 5 0051502 \N 53774 5 0043469 \N 53775 5 0033313 \N 53776 5 0050858 \N 53777 5 0014046 \N 53778 5 0090383 \N 53779 5 0045560 \N 53780 5 0090063 \N 53781 5 0035266 \N 53782 5 2000306 \N 53783 5 0032113 \N 53784 5 0048464 \N 53785 5 0015690 \N 53786 5 0033054 \N 53787 88 15966 \N 53788 5 0050847 \N 53789 3 14744870 \N 53790 5 0021603 \N 53791 5 2000427 \N 53792 5 0031293 \N 53793 3 12808018 \N 53794 5 0006912 \N 53795 5 0045424 \N 53796 5 0014737 \N 53797 5 0043609 \N 53798 5 0035644 \N 53799 88 2700 \N 53800 3 16938887 \N 53801 5 0045589 \N 53802 5 0032622 \N 53803 5 0003260 \N 53804 5 0021989 \N 53805 5 0050979 \N 53806 5 0006936 \N 53807 5 0021591 \N 53808 5 0009199 \N 53809 5 0016061 \N 53810 5 0018297 \N 53811 89 AA0221 \N 53812 5 0016551 \N 53813 5 0044055 \N 53814 5 0060499 \N 53815 5 0007191 \N 53816 5 0032346 \N 53817 5 0051513 \N 53818 5 0032227 \N 53819 5 0060808 \N 53820 5 0021709 \N 53821 5 0006044 \N 53822 5 0006647 \N 53823 5 0050689 \N 53824 5 0002433 \N 53825 5 0019938 \N 53826 5 0042266 \N 53827 89 AA0294 \N 53828 5 0019297 \N 53829 5 0045580 \N 53830 5 0010123 \N 53831 5 0010720 \N 53832 5 0006625 \N 53833 5 0006846 \N 53834 5 0052469 \N 53835 5 0009994 \N 53836 5 0019243 \N 53837 5 0007531 \N 53838 94 //www.biology-text.com/ \N 53839 5 0070504 \N 53840 5 0048914 \N 53841 5 0051954 \N 53842 5 0002549 \N 53843 5 2000786 \N 53844 5 0043446 \N 53845 5 0006142 \N 53846 5 0001184 \N 53847 5 0043552 \N 53848 5 0045501 \N 53849 5 0048512 \N 53850 5 0000185 \N 53851 5 2001005 \N 53852 5 0060547 \N 53853 5 0010095 \N 53854 5 0045966 \N 53855 5 0061037 \N 53856 5 0006784 \N 53857 5 0002621 \N 53858 5 0051814 \N 53859 5 0045208 \N 53860 5 0001898 \N 53861 5 0001649 \N 53862 91 0000062 \N 53863 5 0042858 \N 53864 5 0031183 \N 53865 5 0031184 \N 53866 5 0032691 \N 53867 5 0034119 \N 53868 5 0075035 \N 53869 5 0072063 \N 53870 5 0010078 \N 53871 5 0001306 \N 53872 5 0032890 \N 53873 5 0045871 \N 53874 5 0006965 \N 53875 5 0051603 \N 53876 5 0039508 \N 53877 5 0032604 \N 53878 5 0090306 \N 53879 5 0030254 \N 53880 5 0002035 \N 53881 3 2909574 \N 53882 5 0060184 \N 53883 5 0006037 \N 53884 5 0034505 \N 53885 101 tooth+calcification \N 53886 120 0002817 \N 53887 5 0050668 \N 53888 5 0032228 \N 53889 5 0061289 \N 53890 5 0032702 \N 53891 5 0017055 \N 53892 5 0019079 \N 53893 5 0010689 \N 53894 5 0044046 \N 53895 5 0010421 \N 53896 3 16036580 \N 53897 5 0031343 \N 53898 5 0071372 \N 53899 5 0072187 \N 53900 5 0007624 \N 53901 3 19708721 \N 53902 5 0065005 \N 53903 5 0006633 \N 53904 5 0000037 \N 53905 5 0032822 \N 53906 5 0052341 \N 53907 5 0051627 \N 53908 5 0032975 \N 53909 5 0015830 \N 53910 5 0021802 \N 53911 5 0032062 \N 53912 5 2000733 \N 53913 5 0018131 \N 53914 88 35790 \N 53915 88 48901 \N 53916 5 0042120 \N 53917 5 0007034 \N 53918 5 0052374 \N 53919 5 0045401 \N 53920 5 0000913 \N 53921 5 0021726 \N 53922 5 0080114 \N 53923 93 2.1.2.1 \N 53924 3 19223513 \N 53925 5 0034213 \N 53926 5 0019728 \N 53927 89 AA0122 \N 53928 5 0046170 \N 53929 5 0051606 \N 53930 5 0035482 \N 53931 3 16139031 \N 53932 5 0003054 \N 53933 5 0085014 \N 53934 5 0017185 \N 53935 5 0090210 \N 53936 5 0033308 \N 53937 5 0021844 \N 53938 5 0010642 \N 53939 5 0034181 \N 53940 5 0051599 \N 53941 104 Hydrostatic_pressure \N 53942 5 0030097 \N 53943 5 0015990 \N 53944 5 0072450 \N 53945 5 0003184 \N 53946 5 0006830 \N 53947 5 0051176 \N 53948 5 0010167 \N 53949 5 0072229 \N 53950 5 0045077 \N 53951 5 0039010 \N 53952 5 0035720 \N 53953 3 17895364 \N 53954 5 0008591 \N 53955 5 0014051 \N 53956 5 0010236 \N 53957 5 0052035 \N 53958 5 0046127 \N 53959 5 0035279 \N 53960 5 0051473 \N 53961 5 0060686 \N 53962 5 0042415 \N 53963 5 0035152 \N 53964 5 0060747 \N 53965 5 0060669 \N 53966 5 0046315 \N 53967 5 0032484 \N 53968 5 2000368 \N 53969 5 0030885 \N 53970 5 0002746 \N 53971 5 2000851 \N 53972 5 0007295 \N 53973 5 0010762 \N 53974 5 0051634 \N 53975 5 0019685 \N 53976 5 0075194 \N 53977 5 0051361 \N 53978 3 10504696 \N 53979 89 AA0381 \N 53980 5 0018951 \N 53981 5 0019485 \N 53982 5 0010206 \N 53983 5 0031017 \N 53984 5 0060483 \N 53985 5 0000744 \N 53986 5 0050428 \N 53987 5 0035961 \N 53988 5 0051445 \N 53989 5 0046514 \N 53990 5 0009439 \N 53991 5 0070608 \N 53992 5 0050807 \N 53993 5 0035235 \N 53994 5 0001824 \N 53995 5 0031635 \N 53996 5 0075286 \N 53997 5 0016569 \N 53998 5 0052396 \N 53999 5 0061293 \N 54000 5 0070060 \N 54001 3 17477841 \N 54002 5 0060165 \N 54003 5 0075274 \N 54004 5 0019456 \N 54005 5 0075017 \N 54006 5 0019308 \N 54007 5 0031135 \N 54008 5 2000764 \N 54009 5 0051931 \N 54010 5 0030800 \N 54011 5 0019514 \N 54012 5 0043929 \N 54013 5 0018268 \N 54014 89 AA0161 \N 54015 5 0010014 \N 54016 5 0055114 \N 54017 5 0060338 \N 54018 5 0030807 \N 54019 5 0001701 \N 54020 5 0015754 \N 54021 5 0044332 \N 54022 5 0002334 \N 54023 5 0060009 \N 54024 5 0033390 \N 54025 87 PWY-43 \N 54026 5 0033384 \N 54027 5 0021906 \N 54028 5 0033594 \N 54029 88 38755 \N 54030 5 0090167 \N 54031 5 0070414 \N 54032 5 0044255 \N 54033 5 0071407 \N 54034 5 0045891 \N 54035 5 0072104 \N 54036 5 0046351 \N 54037 5 0051456 \N 54038 5 0008407 \N 54039 5 0044319 \N 54040 5 0051640 \N 54041 5 0032654 \N 54042 5 0033092 \N 54043 5 0022025 \N 54044 5 0002381 \N 54045 5 0071174 \N 54046 5 0006483 \N 54047 5 0035395 \N 54048 5 0051105 \N 54049 5 0016064 \N 54050 5 0033223 \N 54051 5 0052052 \N 54052 5 0034420 \N 54053 5 0043308 \N 54054 5 0070837 \N 54055 5 0060958 \N 54056 5 0042787 \N 54057 5 0043432 \N 54058 5 0097080 \N 54059 3 20861301 \N 54060 5 0031565 \N 54061 3 15647375 \N 54062 5 0046309 \N 54063 5 0048310 \N 54064 5 2000136 \N 54065 5 0043487 \N 54066 5 0002356 \N 54067 5 0043158 \N 54068 5 0035179 \N 54069 3 10880478 \N 54070 5 0046735 \N 54071 5 2000102 \N 54072 5 0033120 \N 54073 5 0045445 \N 54074 5 0060881 \N 54075 5 0010520 \N 54076 5 0034177 \N 54077 5 0030927 \N 54078 3 14764885 \N 54079 89 AA0366 \N 54080 5 0043131 \N 54081 5 0018027 \N 54082 89 AA0075 \N 54083 5 0080149 \N 54084 3 19403731 \N 54085 5 0035089 \N 54086 5 0046086 \N 54087 5 0021780 \N 54088 5 0002913 \N 54089 5 0001554 \N 54090 3 10617764 \N 54091 5 0060701 \N 54092 5 0045660 \N 54093 5 0071678 \N 54094 5 0021967 \N 54095 5 0031221 \N 54096 5 0015850 \N 54097 5 2000898 \N 54098 5 0061216 \N 54099 5 0001938 \N 54100 5 0023003 \N 54101 5 0007405 \N 54102 5 0043349 \N 54103 5 0043350 \N 54104 5 0009225 \N 54105 5 0008334 \N 54106 5 0008207 \N 54107 5 0008104 \N 54108 5 0044153 \N 54109 5 0031935 \N 54110 5 0001410 \N 54111 5 0055027 \N 54112 86 085199377X \N 54113 3 14663094 \N 54114 5 0016447 \N 54115 5 0009133 \N 54116 5 0010342 \N 54117 3 12421698 \N 54118 5 0019352 \N 54119 5 0060774 \N 54120 5 0060044 \N 54121 5 0052065 \N 54122 5 0010915 \N 54123 5 0000056 \N 54124 5 0000058 \N 54125 5 0006149 \N 54126 5 0035136 \N 54127 5 2001057 \N 54128 5 0009730 \N 54129 5 0002348 \N 54130 5 0008033 \N 54131 3 12533506 \N 54132 5 0043462 \N 54133 5 0052415 \N 54134 5 2000939 \N 54135 5 0000003 \N 54136 5 0019952 \N 54137 5 0050876 \N 54138 5 2000406 \N 54139 5 0070982 \N 54140 5 2000440 \N 54141 5 0060928 \N 54142 5 0006183 \N 54143 5 0008361 \N 54144 5 0006575 \N 54145 5 0010710 \N 54146 5 0009998 \N 54147 5 0046718 \N 54148 5 0048738 \N 54149 5 0030422 \N 54150 5 0010537 \N 54151 5 0060839 \N 54152 5 0043480 \N 54153 5 0002086 \N 54154 5 0042851 \N 54155 5 0070581 \N 54156 5 0051360 \N 54157 89 AA0380 \N 54158 5 0046833 \N 54159 5 0032148 \N 54160 5 0030237 \N 54161 5 0007317 \N 54162 5 0010108 \N 54163 5 0042749 \N 54164 5 0042140 \N 54165 5 0046459 \N 54166 5 0090292 \N 54167 5 0009879 \N 54168 5 0032203 \N 54169 5 0070749 \N 54170 5 0035503 \N 54171 5 0000964 \N 54172 5 0097117 \N 54173 5 0043164 \N 54174 5 0009176 \N 54175 5 2000711 \N 54176 5 0018988 \N 54177 5 0042066 \N 54178 3 11517334 \N 54179 3 18176560 \N 54180 5 0051560 \N 54181 5 0045232 \N 54182 5 0003161 \N 54183 5 0034267 \N 54184 5 0035082 \N 54185 5 0072278 \N 54186 5 0051132 \N 54187 5 0051549 \N 54188 5 0052334 \N 54189 5 0051758 \N 54190 5 0032103 \N 54191 5 0001806 \N 54192 5 0016069 \N 54193 5 0046188 \N 54194 5 0048373 \N 54195 5 0006427 \N 54196 5 0031946 \N 54197 5 0035667 \N 54198 3 18641322 \N 54199 3 20511708 \N 54200 5 0015835 \N 54201 5 0046312 \N 54202 5 0014829 \N 54203 100 0002718 \N 54204 5 0032012 \N 54205 5 0032732 \N 54206 5 0016573 \N 54207 5 0000321 \N 54208 5 0002708 \N 54209 5 0015703 \N 54210 5 0002425 \N 54211 5 0002284 \N 54212 5 0010550 \N 54213 5 0010913 \N 54214 5 0021537 \N 54215 5 0090102 \N 54216 5 0090298 \N 54217 5 0002564 \N 54218 5 0035463 \N 54219 5 0033060 \N 54220 5 0051155 \N 54221 5 0046826 \N 54222 5 0060863 \N 54223 5 0048854 \N 54224 5 0032703 \N 54225 5 0046363 \N 54226 5 0070998 \N 54227 5 0009724 \N 54228 5 0019740 \N 54229 5 0033143 \N 54230 5 0006216 \N 54231 5 0050989 \N 54232 5 0003195 \N 54233 5 0016337 \N 54234 5 0052157 \N 54235 5 0071716 \N 54236 5 0035844 \N 54237 5 0003429 \N 54238 5 0061267 \N 54239 5 0009411 \N 54240 5 0043622 \N 54241 5 0051681 \N 54242 5 0048749 \N 54243 5 0007456 \N 54244 94 //en.wikipedia.org/wiki/Eye \N 54245 5 0000205 \N 54246 5 0003119 \N 54247 5 0006258 \N 54248 5 0019691 \N 54249 5 0009746 \N 54250 5 0042874 \N 54251 5 0009182 \N 54252 5 0032249 \N 54253 5 0010020 \N 54254 5 0001315 \N 54255 5 0046281 \N 54256 5 0021588 \N 54257 5 0018002 \N 54258 89 AA0044 \N 54259 5 0060976 \N 54260 5 0014862 \N 54261 5 0016352 \N 54262 5 2000051 \N 54263 5 0035935 \N 54264 88 50113 \N 54265 5 2000999 \N 54266 5 0009640 \N 54267 5 0034775 \N 54268 5 0021850 \N 54269 5 0021926 \N 54270 5 0034696 \N 54271 5 0000366 \N 54272 3 11726664 \N 54273 5 0048885 \N 54274 5 0061271 \N 54275 5 0060255 \N 54276 5 0018424 \N 54277 89 AA0295 \N 54278 5 0097092 \N 54279 5 0003210 \N 54280 5 0071999 \N 54281 5 0090171 \N 54282 5 0030948 \N 54283 5 0032499 \N 54284 5 0034088 \N 54285 5 2000211 \N 54286 5 0060457 \N 54287 5 0050912 \N 54288 5 0060689 \N 54289 5 0034971 \N 54290 5 0035541 \N 54291 5 0006370 \N 54292 5 0019529 \N 54293 5 0042514 \N 54294 5 0010925 \N 54295 5 0032683 \N 54296 5 0033374 \N 54297 5 0061249 \N 54298 5 0001117 \N 54299 5 0045040 \N 54300 5 0061189 \N 54301 5 0051866 \N 54302 5 0051868 \N 54303 3 14847556 \N 54304 104 General_adaptation_syndrome \N 54305 5 0015710 \N 54306 5 0010883 \N 54307 5 0080038 \N 54308 5 0048818 \N 54309 5 0015675 \N 54310 5 0033475 \N 54311 87 PWY-1782 \N 54312 5 0052489 \N 54313 5 0018358 \N 54314 5 0018381 \N 54315 89 AA0133 \N 54316 5 0045984 \N 54317 5 0002024 \N 54318 5 0018394 \N 54319 5 0006296 \N 54320 5 0043694 \N 54321 5 0061047 \N 54322 5 0003155 \N 54323 5 0070987 \N 54324 5 0033535 \N 54325 87 CPD-8066 \N 54326 5 0010071 \N 54327 5 0090192 \N 54328 5 2000067 \N 54329 5 0071646 \N 54330 5 0044130 \N 54331 5 2000336 \N 54332 5 0070634 \N 54333 5 0009865 \N 54334 3 12602877 \N 54335 5 0042214 \N 54336 88 35186 \N 54337 5 0034112 \N 54338 5 0032636 \N 54339 5 0034295 \N 54340 94 //www.gsbs.utmb.edu/microbook/ch073.htm \N 54341 94 //www.ilmyco.gen.chicago.il.us/Terms/basid133.html \N 54342 5 0006603 \N 54343 88 17287 \N 54344 5 0001194 \N 54345 5 0071800 \N 54346 5 0001841 \N 54347 5 0001679 \N 54348 5 0001782 \N 54349 3 12956429 \N 54350 5 0048564 \N 54351 5 0010251 \N 54352 5 0039019 \N 54353 110 00002785 \N 54354 5 0003432 \N 54355 5 0080029 \N 54356 3 18952773 \N 54357 5 0019647 \N 54358 87 PWY-1861 \N 54359 5 0075247 \N 54360 5 0002191 \N 54361 3 19604130 \N 54362 5 0045855 \N 54363 5 0009099 \N 54364 5 0018883 \N 54365 88 23000 \N 54366 5 0090266 \N 54367 5 0045002 \N 54368 3 11606529 \N 54369 5 0035548 \N 54370 5 0032900 \N 54371 5 2000877 \N 54372 5 0050724 \N 54373 5 0030855 \N 54374 3 11839751 \N 54375 5 0006684 \N 54376 5 0071768 \N 54377 87 PWYG-321 \N 54378 5 0009642 \N 54379 5 0075084 \N 54380 5 0060800 \N 54381 5 0046331 \N 54382 5 0071166 \N 54383 5 0019633 \N 54384 5 0002662 \N 54385 5 0018411 \N 54386 5 0032241 \N 54387 5 0051897 \N 54388 5 0042219 \N 54389 5 0035234 \N 54390 3 12814944 \N 54391 5 0002721 \N 54392 5 0006885 \N 54393 5 0070927 \N 54394 5 0006608 \N 54395 5 0018043 \N 54396 89 AA0090 \N 54397 5 0044134 \N 54398 5 0009887 \N 54399 5 0034402 \N 54400 3 18195044 \N 54401 5 0030912 \N 54402 5 0071663 \N 54403 5 0010594 \N 54404 5 0043392 \N 54405 5 0006814 \N 54406 5 0006834 \N 54407 5 0016974 \N 54408 5 0048669 \N 54409 5 0010967 \N 54410 5 2000398 \N 54411 5 0021801 \N 54412 5 0030587 \N 54413 5 0018993 \N 54414 5 0008206 \N 54415 5 0090127 \N 54416 5 0010372 \N 54417 5 0070397 \N 54418 5 0090021 \N 54419 5 0010345 \N 54420 3 17259262 \N 54421 5 0016204 \N 54422 5 0039023 \N 54423 110 0000063 \N 54424 116 0000150 \N 54425 5 0043053 \N 54426 3 10077613 \N 54427 5 0060891 \N 54428 5 0032289 \N 54429 5 0070098 \N 54430 5 0060905 \N 54431 5 0048205 \N 54432 5 0021963 \N 54433 5 0001840 \N 54434 5 0048852 \N 54435 5 0002128 \N 54436 5 2000138 \N 54437 5 0034284 \N 54438 5 0002459 \N 54439 5 0043363 \N 54440 5 0051051 \N 54441 5 0061154 \N 54442 5 2000856 \N 54443 5 0052550 \N 54444 5 0032345 \N 54445 5 0032901 \N 54446 5 0010077 \N 54447 5 0035346 \N 54448 5 0002916 \N 54449 5 0007422 \N 54450 106 0000010 \N 54451 5 0043281 \N 54452 5 0043026 \N 54453 4 mtg_apoptosis \N 54454 5 0071877 \N 54455 5 0048286 \N 54456 5 0042322 \N 54457 5 0010449 \N 54458 5 0072616 \N 54459 5 0051323 \N 54460 5 0043299 \N 54461 5 0030960 \N 54462 119 1NGK \N 54463 3 12719529 \N 54464 89 AA0368 \N 54465 5 0010497 \N 54466 3 17601829 \N 54467 5 0030886 \N 54468 5 0019496 \N 54469 86 0387961534 \N 54470 5 0060705 \N 54471 5 0003190 \N 54472 5 0070154 \N 54473 5 0009714 \N 54474 5 0032631 \N 54475 5 2000587 \N 54476 5 0010570 \N 54477 5 0048254 \N 54478 5 0019481 \N 54479 5 0071707 \N 54480 5 0034067 \N 54481 5 0060857 \N 54482 5 0007130 \N 54483 5 0006883 \N 54484 5 0007376 \N 54485 5 0009662 \N 54486 5 0033055 \N 54487 88 15816 \N 54488 5 0032269 \N 54489 5 0046174 \N 54490 5 0006240 \N 54491 5 0016444 \N 54492 5 0031114 \N 54493 5 0007423 \N 54494 5 0003172 \N 54495 5 0016332 \N 54496 5 0009875 \N 54497 5 0045942 \N 54498 5 0021983 \N 54499 5 0070600 \N 54500 5 0048722 \N 54501 5 0032681 \N 54502 5 0016355 \N 54503 5 0070727 \N 54504 5 0043628 \N 54505 5 0006219 \N 54506 5 0002437 \N 54507 5 0080057 \N 54508 5 0042780 \N 54509 5 2000267 \N 54510 5 0042742 \N 54511 5 0042830 \N 54512 5 0060223 \N 54513 5 0051767 \N 54514 5 0051768 \N 54515 93 1.14.13.39 \N 54516 5 0033491 \N 54517 88 16220 \N 54518 87 PWY-116 \N 54519 5 0033140 \N 54520 5 0051188 \N 54521 5 0002027 \N 54522 5 0033244 \N 54523 5 0009402 \N 54524 5 0045625 \N 54525 5 0070129 \N 54526 5 0015769 \N 54527 5 0033367 \N 54528 5 0071073 \N 54529 5 0042976 \N 54530 5 0002560 \N 54531 5 0035249 \N 54532 5 0000022 \N 54533 5 0043964 \N 54534 5 0018036 \N 54535 89 AA0083 \N 54536 5 0097086 \N 54537 91 0002639 \N 54538 94 //en.wikipedia.org/wiki/Amniotic_stem_cells \N 54539 3 20942606 \N 54540 5 0042871 \N 54541 5 0018156 \N 54542 5 0006060 \N 54543 5 0018408 \N 54544 89 AA0178 \N 54545 5 0019479 \N 54546 87 ALACAT2-PWY \N 54547 5 0042211 \N 54548 5 0035608 \N 54549 5 0002361 \N 54550 5 0072273 \N 54551 5 0045990 \N 54552 3 18359269 \N 54553 3 9618445 \N 54554 5 0001893 \N 54555 5 0021595 \N 54556 5 0046823 \N 54557 5 0032326 \N 54558 5 0070943 \N 54559 5 0042683 \N 54560 5 0010000 \N 54561 5 2000121 \N 54562 5 0006889 \N 54563 5 0061138 \N 54564 5 0033516 \N 54565 87 PWY-702 \N 54566 5 0048163 \N 54567 5 0070750 \N 54568 5 2000998 \N 54569 5 0019873 \N 54570 5 0060119 \N 54571 5 0075037 \N 54572 5 0043368 \N 54573 5 2000861 \N 54574 5 0051486 \N 54575 5 0051307 \N 54576 5 0033662 \N 54577 5 0009645 \N 54578 5 0048898 \N 54579 5 0060269 \N 54580 5 0033211 \N 54581 5 0048859 \N 54582 5 0006687 \N 54583 5 0032246 \N 54584 5 0043269 \N 54585 5 2000484 \N 54586 5 0034102 \N 54587 5 0006089 \N 54588 5 0075335 \N 54589 5 0021677 \N 54590 5 0060925 \N 54591 5 0048375 \N 54592 5 0051292 \N 54593 5 0006179 \N 54594 5 0060832 \N 54595 5 0008063 \N 54596 3 11135568 \N 54597 3 19126860 \N 54598 5 0070218 \N 54599 5 2000977 \N 54600 5 0043313 \N 54601 5 0007468 \N 54602 5 0002138 \N 54603 5 0090313 \N 54604 5 0018895 \N 54605 3 12147483 \N 54606 5 0010916 \N 54607 5 0009115 \N 54608 5 0051727 \N 54609 5 0048523 \N 54610 5 0051243 \N 54611 5 2000154 \N 54612 5 0030265 \N 54613 5 0071385 \N 54614 5 0060637 \N 54615 5 0010821 \N 54616 5 0071640 \N 54617 5 0034659 \N 54618 5 0035440 \N 54619 88 50387 \N 54620 87 PWY-5935 \N 54621 5 0072330 \N 54622 88 25384 \N 54623 5 0071348 \N 54624 5 0003071 \N 54625 5 0060709 \N 54626 5 0060216 \N 54627 5 0051569 \N 54628 5 0035721 \N 54629 5 2000930 \N 54630 5 0052652 \N 54631 88 36982 \N 54632 5 2000567 \N 54633 5 0031064 \N 54634 5 0045988 \N 54635 5 0003068 \N 54636 5 0070833 \N 54637 87 PWY4FS-3 \N 54638 5 0033399 \N 54639 5 0001110 \N 54640 5 0032754 \N 54641 5 0042235 \N 54642 5 0044240 \N 54643 5 0048386 \N 54644 5 0033466 \N 54645 5 0035601 \N 54646 3 12080046 \N 54647 5 0035393 \N 54648 5 0071763 \N 54649 5 0010715 \N 54650 5 0048819 \N 54651 5 0043697 \N 54652 5 0030220 \N 54653 5 0019681 \N 54654 87 P22-PWY \N 54655 5 0060048 \N 54656 5 0045700 \N 54657 5 0060041 \N 54658 5 0002073 \N 54659 5 0032400 \N 54660 5 0015979 \N 54661 5 0018353 \N 54662 5 0018380 \N 54663 89 AA0131 \N 54664 5 0050902 \N 54665 5 0019761 \N 54666 5 0018429 \N 54667 89 AA0298 \N 54668 5 0046758 \N 54669 5 0009867 \N 54670 5 2000216 \N 54671 5 0006421 \N 54672 5 0046830 \N 54673 5 0051369 \N 54674 3 11546772 \N 54675 89 AA0387 \N 54676 5 0048567 \N 54677 5 0035378 \N 54678 5 0061235 \N 54679 5 0031586 \N 54680 5 0070496 \N 54681 5 0031152 \N 54682 5 0021600 \N 54683 5 0060630 \N 54684 5 0052224 \N 54685 5 0045561 \N 54686 5 0046739 \N 54687 5 0002569 \N 54688 5 0051801 \N 54689 5 0046085 \N 54690 5 0000078 \N 54691 3 14644188 \N 54692 5 0006000 \N 54693 5 0034373 \N 54694 5 0030923 \N 54695 5 2000260 \N 54696 5 0010597 \N 54697 5 0046372 \N 54698 5 0046118 \N 54699 5 0048304 \N 54700 5 0010759 \N 54701 5 0045918 \N 54702 5 0006124 \N 54703 5 0035542 \N 54704 5 0035688 \N 54705 3 10477596 \N 54706 5 0030458 \N 54707 5 0046195 \N 54708 5 0035645 \N 54709 91 0002504 \N 54710 5 0033521 \N 54711 5 0048882 \N 54712 5 0051760 \N 54713 5 0043290 \N 54714 5 0051079 \N 54715 5 2000886 \N 54716 5 0009609 \N 54717 5 0002908 \N 54718 5 0006207 \N 54719 5 0043467 \N 54720 5 0000032 \N 54721 5 0003345 \N 54722 5 0043947 \N 54723 5 0046484 \N 54724 5 0051512 \N 54725 5 0042381 \N 54726 3 10561606 \N 54727 3 11915949 \N 54728 5 0046744 \N 54729 5 0021781 \N 54730 5 0019445 \N 54731 5 0015671 \N 54732 5 0015752 \N 54733 5 0034443 \N 54734 5 0045848 \N 54735 5 0055108 \N 54736 5 0002374 \N 54737 5 0052348 \N 54738 5 0045676 \N 54739 5 0072136 \N 54740 5 0043443 \N 54741 5 0055082 \N 54742 5 0010139 \N 54743 5 0042857 \N 54744 5 0090295 \N 54745 5 0019519 \N 54746 5 0009272 \N 54747 5 0032659 \N 54748 5 0051899 \N 54749 104 Depolarization \N 54750 5 0052210 \N 54751 5 0072246 \N 54752 5 0045843 \N 54753 5 0071655 \N 54754 5 0060680 \N 54755 5 0072527 \N 54756 5 0031130 \N 54757 5 0035353 \N 54758 5 0051270 \N 54759 5 0060793 \N 54760 5 0010777 \N 54761 5 0042142 \N 54762 5 0051298 \N 54763 5 0048823 \N 54764 5 0019257 \N 54765 5 0048921 \N 54766 5 0018399 \N 54767 89 AA0176 \N 54768 5 0006270 \N 54769 5 0042024 \N 54770 5 0009835 \N 54771 5 0000966 \N 54772 5 0045664 \N 54773 5 2000302 \N 54774 5 0010977 \N 54775 5 0070838 \N 54776 5 0006053 \N 54777 5 0009269 \N 54778 5 0014843 \N 54779 5 2000085 \N 54780 5 0033022 \N 54781 5 0046260 \N 54782 5 0048585 \N 54783 5 0052301 \N 54784 5 0071044 \N 54785 3 17179095 \N 54786 3 17855393 \N 54787 5 0033124 \N 54788 5 0002368 \N 54789 5 0060862 \N 54790 5 0006832 \N 54791 5 0031987 \N 54792 5 0016142 \N 54793 5 0052176 \N 54794 5 0001545 \N 54795 5 0006558 \N 54796 88 17295 \N 54797 5 0008362 \N 54798 3 12019232 \N 54799 5 0052094 \N 54800 5 0019693 \N 54801 5 0021578 \N 54802 5 0060173 \N 54803 3 11487378 \N 54804 5 0032424 \N 54805 5 0043460 \N 54806 5 0021911 \N 54807 5 0051362 \N 54808 119 1XAE \N 54809 3 15628861 \N 54810 89 AA0382 \N 54811 5 0034219 \N 54812 5 0043646 \N 54813 5 0019451 \N 54814 5 0060363 \N 54815 5 0070327 \N 54816 5 0000278 \N 54817 121 69278 \N 54818 5 0002820 \N 54819 5 0032693 \N 54820 5 0006969 \N 54821 5 0002771 \N 54822 5 0006234 \N 54823 5 0045461 \N 54824 5 0019688 \N 54825 5 0016246 \N 54826 3 11201747 \N 54827 3 11713190 \N 54828 5 0035743 \N 54829 5 2000231 \N 54830 5 0032674 \N 54831 5 0043930 \N 54832 5 0014068 \N 54833 5 0003114 \N 54834 5 0035825 \N 54835 3 11139492 \N 54836 3 17304215 \N 54837 5 0007360 \N 54838 5 0051986 \N 54839 5 0034137 \N 54840 5 0032084 \N 54841 5 0070961 \N 54842 5 0032643 \N 54843 5 0015945 \N 54844 5 0016050 \N 54845 5 0000905 \N 54846 5 0000436 \N 54847 5 0043057 \N 54848 5 0055110 \N 54849 5 0001981 \N 54850 5 0043570 \N 54851 5 0000303 \N 54852 5 0015888 \N 54853 5 0015995 \N 54854 5 0070861 \N 54855 5 0042413 \N 54856 5 0021663 \N 54857 5 0003085 \N 54858 5 0016556 \N 54859 5 0006381 \N 54860 5 0018019 \N 54861 89 AA0071 \N 54862 5 0052208 \N 54863 5 0018918 \N 54864 5 0010988 \N 54865 5 0033467 \N 54866 87 PWY-5111 \N 54867 5 0033052 \N 54868 3 11575729 \N 54869 5 0090250 \N 54870 5 0015980 \N 54871 5 0048799 \N 54872 5 2000193 \N 54873 5 0097064 \N 54874 3 11352936 \N 54875 5 0009946 \N 54876 5 0042127 \N 54877 5 0008085 \N 54878 5 0061277 \N 54879 5 0016577 \N 54880 5 2000736 \N 54881 5 0030207 \N 54882 5 0072485 \N 54883 5 0018958 \N 54884 5 0002864 \N 54885 5 0007526 \N 54886 5 0021894 \N 54887 5 2000766 \N 54888 5 0045566 \N 54889 5 0006298 \N 54890 5 0006300 \N 54891 3 11687886 \N 54892 5 0090333 \N 54893 5 0060803 \N 54894 5 0046716 \N 54895 3 3091429 \N 54896 3 7781901 \N 54897 5 0051220 \N 54898 5 0085011 \N 54899 5 0070252 \N 54900 5 0002846 \N 54901 5 0003185 \N 54902 5 0071964 \N 54903 5 0042766 \N 54904 3 12006495 \N 54905 5 0010440 \N 54906 5 0061115 \N 54907 5 0071590 \N 54908 5 0051573 \N 54909 5 0019662 \N 54910 87 Fermentation \N 54911 5 0048570 \N 54912 5 0043704 \N 54913 5 0018301 \N 54914 89 AA0268 \N 54915 5 0006680 \N 54916 5 0014035 \N 54917 5 0060744 \N 54918 3 19261859 \N 54919 5 0046680 \N 54920 5 0000393 \N 54921 5 0034343 \N 54922 5 2001037 \N 54923 5 0032119 \N 54924 5 0043243 \N 54925 5 0090385 \N 54926 5 0021693 \N 54927 5 0050859 \N 54928 5 0034972 \N 54929 5 0061172 \N 54930 5 2000355 \N 54931 5 0034155 \N 54932 5 0009614 \N 54933 5 0032058 \N 54934 5 0048766 \N 54935 5 0052055 \N 54936 5 0046267 \N 54937 5 0002065 \N 54938 5 0045584 \N 54939 5 0035565 \N 54940 5 0007290 \N 54941 5 0060157 \N 54942 5 0090141 \N 54943 5 0043482 \N 54944 5 0006642 \N 54945 3 11943743 \N 54946 3 15713625 \N 54947 5 0051819 \N 54948 5 0045400 \N 54949 5 0052359 \N 54950 5 0018980 \N 54951 97 2,4,5-t \N 54952 5 0051367 \N 54953 3 12630926 \N 54954 89 AA0385 \N 54955 5 2000111 \N 54956 5 0071900 \N 54957 5 0010352 \N 54958 5 0044042 \N 54959 5 0090187 \N 54960 5 0007435 \N 54961 5 0032981 \N 54962 5 0075196 \N 54963 5 0015819 \N 54964 5 0070058 \N 54965 3 18708579 \N 54966 5 0019395 \N 54967 5 0051024 \N 54968 5 0052317 \N 54969 5 0042457 \N 54970 5 0010725 \N 54971 5 0009224 \N 54972 5 0043386 \N 54973 88 25442 \N 54974 5 0023043 \N 54975 5 0034625 \N 54976 5 0018117 \N 54977 5 0018176 \N 54978 3 21607083 \N 54979 5 0003255 \N 54980 5 0035551 \N 54981 5 0048644 \N 54982 5 0002675 \N 54983 5 0007205 \N 54984 5 0009920 \N 54985 5 0051154 \N 54986 5 0007139 \N 54987 5 0003357 \N 54988 5 0007407 \N 54989 5 0043351 \N 54990 5 0043352 \N 54991 5 0045874 \N 54992 5 0046209 \N 54993 5 0051136 \N 54994 5 0039505 \N 54995 5 0010761 \N 54996 5 0035622 \N 54997 5 0030541 \N 54998 5 0030542 \N 54999 5 0009590 \N 55000 5 0006100 \N 55001 5 0042042 \N 55002 5 0003120 \N 55003 5 0031022 \N 55004 5 0071919 \N 55005 4 sre \N 55006 3 20098422 \N 55007 5 0038003 \N 55008 3 20494127 \N 55009 5 0033658 \N 55010 5 0019074 \N 55011 5 0048663 \N 55012 5 0042055 \N 55013 5 0060882 \N 55014 5 0032741 \N 55015 5 2000442 \N 55016 5 0061261 \N 55017 5 0010581 \N 55018 5 0085044 \N 55019 5 2000542 \N 55020 5 0015692 \N 55021 5 0060082 \N 55022 3 2913208 \N 55023 5 0090329 \N 55024 5 2000605 \N 55025 5 0032812 \N 55026 5 0052532 \N 55027 5 0042304 \N 55028 5 0071365 \N 55029 5 0019500 \N 55030 5 0045150 \N 55031 5 0060210 \N 55032 5 0046242 \N 55033 5 0046852 \N 55034 5 0014906 \N 55035 5 0046249 \N 55036 5 0034113 \N 55037 5 0015786 \N 55038 5 2000783 \N 55039 5 0045162 \N 55040 5 0042983 \N 55041 5 0051973 \N 55042 5 0035053 \N 55043 3 12397110 \N 55044 5 0072422 \N 55045 5 0090077 \N 55046 5 0051810 \N 55047 5 0034077 \N 55048 87 P125-PWY \N 55049 5 0090225 \N 55050 5 0071530 \N 55051 112 IPR000253 \N 55052 5 0051932 \N 55053 86 0126603030 \N 55054 5 0040035 \N 55055 5 0052234 \N 55056 5 0009801 \N 55057 5 0009191 \N 55058 5 0072158 \N 55059 5 0006615 \N 55060 5 2000437 \N 55061 5 0010685 \N 55062 5 0032968 \N 55063 5 0090040 \N 55064 5 0046427 \N 55065 5 0046628 \N 55066 5 0060537 \N 55067 5 0021682 \N 55068 5 0070875 \N 55069 5 0072179 \N 55070 5 2000625 \N 55071 5 2000552 \N 55072 5 0018132 \N 55073 3 8895467 \N 55074 89 AA0238 \N 55075 5 0018957 \N 55076 94 //umbbd.ahc.umn.edu/pha2/pha2_map.html \N 55077 97 pha2 \N 55078 5 0009906 \N 55079 5 0046080 \N 55080 5 0032109 \N 55081 5 0052308 \N 55082 5 0090380 \N 55083 5 0031622 \N 55084 5 0000713 \N 55085 5 0032507 \N 55086 5 0031619 \N 55087 3 15062096 \N 55088 5 0031141 \N 55089 5 0015939 \N 55090 5 0006770 \N 55091 5 0070997 \N 55092 5 0051344 \N 55093 5 0010751 \N 55094 5 0030440 \N 55095 5 0015012 \N 55096 89 AA0210 \N 55097 5 0060354 \N 55098 5 0060523 \N 55099 5 0060452 \N 55100 5 0051862 \N 55101 5 0052408 \N 55102 5 0043093 \N 55103 3 12626683 \N 55104 5 0045708 \N 55105 5 0050971 \N 55106 5 0018894 \N 55107 97 dpd \N 55108 5 0060924 \N 55109 5 0000410 \N 55110 5 0071173 \N 55111 5 0035065 \N 55112 5 0015878 \N 55113 5 2000331 \N 55114 5 0003285 \N 55115 5 0035913 \N 55116 106 0003085 \N 55117 122 0000604 \N 55118 5 0006349 \N 55119 3 11498578 \N 55120 5 0043939 \N 55121 5 0097156 \N 55122 5 0061131 \N 55123 5 0031272 \N 55124 5 0032802 \N 55125 5 0032704 \N 55126 5 0017193 \N 55127 89 AA0046 \N 55128 5 0043489 \N 55129 5 0017186 \N 55130 89 AA0031 \N 55131 5 0046301 \N 55132 5 0043001 \N 55133 5 0010359 \N 55134 5 0014709 \N 55135 5 0008637 \N 55136 5 0008615 \N 55137 5 0009747 \N 55138 5 0061039 \N 55139 5 0046766 \N 55140 5 0002038 \N 55141 5 0007298 \N 55142 5 0018069 \N 55143 89 AA0149 \N 55144 5 0000083 \N 55145 5 0021870 \N 55146 5 0045446 \N 55147 5 0030146 \N 55148 5 0003076 \N 55149 5 0060246 \N 55150 5 0035261 \N 55151 94 //www.ndif.org/Terms/genitalia.html \N 55152 5 0006577 \N 55153 5 0034261 \N 55154 5 0061241 \N 55155 5 0002350 \N 55156 5 0046020 \N 55157 5 0071583 \N 55158 5 0008654 \N 55159 5 0046493 \N 55160 5 0033657 \N 55161 5 0048775 \N 55162 5 0071426 \N 55163 5 0090052 \N 55164 5 0009072 \N 55165 5 0010791 \N 55166 5 0052385 \N 55167 5 0007037 \N 55168 5 0034650 \N 55169 88 17650 \N 55170 5 0010635 \N 55171 5 0002002 \N 55172 5 0051441 \N 55173 5 0015800 \N 55174 5 0071168 \N 55175 5 0072435 \N 55176 5 0015959 \N 55177 5 0009213 \N 55178 5 0019052 \N 55179 5 0051490 \N 55180 5 2000670 \N 55181 5 0021907 \N 55182 5 0003154 \N 55183 5 0002646 \N 55184 5 2000761 \N 55185 5 0071790 \N 55186 5 0060562 \N 55187 5 0072454 \N 55188 5 0032770 \N 55189 5 0032905 \N 55190 5 0032348 \N 55191 5 0033544 \N 55192 5 0007532 \N 55193 5 0008629 \N 55194 5 0046318 \N 55195 5 0016254 \N 55196 5 0014042 \N 55197 5 0051104 \N 55198 5 0015728 \N 55199 5 0006475 \N 55200 5 0043536 \N 55201 5 0010149 \N 55202 5 0010941 \N 55203 5 0060233 \N 55204 5 0070446 \N 55205 5 0035072 \N 55206 5 0003122 \N 55207 5 0015918 \N 55208 5 0031139 \N 55209 5 0019950 \N 55210 5 0019946 \N 55211 3 9435231 \N 55212 5 0030299 \N 55213 5 0042467 \N 55214 3 8207088 \N 55215 5 0035319 \N 55216 3 11832234 \N 55217 5 0046060 \N 55218 5 0021944 \N 55219 5 0009845 \N 55220 3 8281041 \N 55221 5 0043041 \N 55222 5 0080148 \N 55223 3 18835996 \N 55224 5 0002472 \N 55225 5 0045642 \N 55226 5 0014893 \N 55227 5 0050892 \N 55228 5 0031508 \N 55229 5 0021783 \N 55230 5 0052290 \N 55231 5 0006406 \N 55232 5 0043314 \N 55233 5 0002594 \N 55234 5 0060861 \N 55235 5 0002602 \N 55236 5 0075054 \N 55237 5 0050899 \N 55238 5 0010245 \N 55239 5 0071658 \N 55240 5 0018975 \N 55241 5 0032465 \N 55242 5 0010511 \N 55243 5 0035222 \N 55244 5 0031438 \N 55245 5 0072363 \N 55246 5 0044349 \N 55247 5 0003421 \N 55248 5 0061361 \N 55249 5 0007545 \N 55250 5 0030323 \N 55251 5 0060027 \N 55252 5 0034408 \N 55253 5 0043427 \N 55254 3 11418572 \N 55255 5 0050741 \N 55256 89 AA0350 \N 55257 5 0046067 \N 55258 5 0002827 \N 55259 5 0007554 \N 55260 5 2000878 \N 55261 5 0046286 \N 55262 5 0075221 \N 55263 5 0015818 \N 55264 5 0071418 \N 55265 5 0009727 \N 55266 5 0010881 \N 55267 5 0002816 \N 55268 5 0009314 \N 55269 104 Electromagnetic_radiation \N 55270 5 0044026 \N 55271 94 //en.wiktionary.org/ \N 55272 5 0090008 \N 55273 5 0006195 \N 55274 5 0022001 \N 55275 5 0060554 \N 55276 5 0003309 \N 55277 5 0000387 \N 55278 5 0007519 \N 55279 5 0048637 \N 55280 5 0033686 \N 55281 5 0006380 \N 55282 5 0010623 \N 55283 5 0046342 \N 55284 5 0072034 \N 55285 5 0044415 \N 55286 5 0006563 \N 55287 88 17115 \N 55288 5 0060994 \N 55289 5 0006376 \N 55290 5 0045337 \N 55291 5 0010250 \N 55292 3 12692340 \N 55293 5 0045669 \N 55294 5 0035994 \N 55295 3 14583192 \N 55296 5 0060841 \N 55297 5 0019266 \N 55298 5 0070983 \N 55299 3 15046878 \N 55300 5 0070779 \N 55301 5 0046584 \N 55302 5 0075314 \N 55303 5 0018282 \N 55304 5 0042473 \N 55305 5 0002744 \N 55306 5 0090219 \N 55307 5 0045370 \N 55308 5 0051597 \N 55309 5 0002200 \N 55310 5 0042502 \N 55311 5 0009798 \N 55312 5 2000653 \N 55313 5 0019321 \N 55314 5 0007453 \N 55315 5 0019356 \N 55316 5 0060977 \N 55317 5 0021980 \N 55318 5 0060364 \N 55319 5 0090158 \N 55320 5 0018331 \N 55321 5 0015856 \N 55322 5 0001507 \N 55323 5 0046700 \N 55324 5 0045053 \N 55325 5 0035774 \N 55326 5 0061028 \N 55327 5 0050774 \N 55328 5 0060395 \N 55329 5 0023059 \N 55330 5 0072597 \N 55331 5 0001676 \N 55332 4 ajp \N 55333 5 0042673 \N 55334 5 0044330 \N 55335 5 0015902 \N 55336 88 3259 \N 55337 5 0080141 \N 55338 5 0035024 \N 55339 5 0070316 \N 55340 5 0045137 \N 55341 5 0039514 \N 55342 5 2000320 \N 55343 5 0051013 \N 55344 3 14657234 \N 55345 5 0008343 \N 55346 5 0043326 \N 55347 5 0072198 \N 55348 5 0072009 \N 55349 5 0060738 \N 55350 5 2000284 \N 55351 5 0060162 \N 55352 3 15016423 \N 55353 5 0044267 \N 55354 5 0050801 \N 55355 5 0044124 \N 55356 5 0090267 \N 55357 5 0031468 \N 55358 5 0001546 \N 55359 5 0046229 \N 55360 5 0035204 \N 55361 5 0075288 \N 55362 5 0010592 \N 55363 5 2000008 \N 55364 5 0046793 \N 55365 3 7637000 \N 55366 5 0035498 \N 55367 5 0071300 \N 55368 5 0070147 \N 55369 5 0019347 \N 55370 5 0019606 \N 55371 5 0003320 \N 55372 5 0039515 \N 55373 5 0003227 \N 55374 5 0010864 \N 55375 5 0045743 \N 55376 5 0010869 \N 55377 5 0090169 \N 55378 5 0016075 \N 55379 5 0009142 \N 55380 5 0031587 \N 55381 5 0060956 \N 55382 5 0002525 \N 55383 3 16459497 \N 55384 3 9073326 \N 55385 5 0007028 \N 55386 5 0032491 \N 55387 5 0016346 \N 55388 5 2000076 \N 55389 5 0002319 \N 55390 5 0002660 \N 55391 5 0034107 \N 55392 5 0019340 \N 55393 5 0033344 \N 55394 5 0014713 \N 55395 5 0030812 \N 55396 5 0009961 \N 55397 5 0060123 \N 55398 5 0072368 \N 55399 5 0085025 \N 55400 5 0032614 \N 55401 5 0021798 \N 55402 5 0003209 \N 55403 5 0010659 \N 55404 5 0010836 \N 55405 5 0050835 \N 55406 89 AA0356 \N 55407 5 0042730 \N 55408 3 15842654 \N 55409 5 0021545 \N 55410 5 0038019 \N 55411 5 0060141 \N 55412 5 0045225 \N 55413 5 0090176 \N 55414 5 0002304 \N 55415 5 0043156 \N 55416 3 14762213 \N 55417 5 0030902 \N 55418 94 //www2.merriam-webster.com/cgi-bin/mwmednlm?book=Medical&va=hindbrain \N 55419 5 0002089 \N 55420 5 2001058 \N 55421 5 0038010 \N 55422 3 19696798 \N 55423 5 0072502 \N 55424 5 0021715 \N 55425 5 0042517 \N 55426 5 2000918 \N 55427 5 0051791 \N 55428 5 0075172 \N 55429 5 0032540 \N 55430 5 0050707 \N 55431 5 0019827 \N 55432 5 0006502 \N 55433 5 0060469 \N 55434 5 0045774 \N 55435 5 0003094 \N 55436 5 0072511 \N 55437 5 0019692 \N 55438 5 0034333 \N 55439 5 0003274 \N 55440 5 0072388 \N 55441 5 0022415 \N 55442 5 0019318 \N 55443 5 0007193 \N 55444 5 0031848 \N 55445 5 0019369 \N 55446 5 0072657 \N 55447 5 0045762 \N 55448 5 0007228 \N 55449 3 11912487 \N 55450 5 0072228 \N 55451 5 0019278 \N 55452 5 0006291 \N 55453 5 2000963 \N 55454 5 0045425 \N 55455 5 0048459 \N 55456 5 0048416 \N 55457 5 0042914 \N 55458 3 17347522 \N 55459 5 0018396 \N 55460 89 AA0235 \N 55461 5 2000841 \N 55462 5 0006545 \N 55463 5 0045326 \N 55464 89 AA0323 \N 55465 5 0010079 \N 55466 5 0007477 \N 55467 5 0032761 \N 55468 5 0033875 \N 55469 5 0060064 \N 55470 5 0072535 \N 55471 5 0003063 \N 55472 5 0002312 \N 55473 5 2000507 \N 55474 5 0035112 \N 55475 5 0007256 \N 55476 5 0046663 \N 55477 5 0010363 \N 55478 3 16255244 \N 55479 5 0032656 \N 55480 5 0010094 \N 55481 5 0090181 \N 55482 5 2000571 \N 55483 5 0060445 \N 55484 5 0061150 \N 55485 5 0033578 \N 55486 5 0030071 \N 55487 5 0006674 \N 55488 94 //www.cyberlipid.org/ \N 55489 5 0007633 \N 55490 3 9933535 \N 55491 5 0001708 \N 55492 5 0018276 \N 55493 89 AA0125 \N 55494 5 0007307 \N 55495 3 11157771 \N 55496 5 0033563 \N 55497 5 0050852 \N 55498 5 0072668 \N 55499 5 2000710 \N 55500 5 0051672 \N 55501 5 0002118 \N 55502 5 0006794 \N 55503 5 0009814 \N 55504 5 0017013 \N 55505 5 0002886 \N 55506 5 0010946 \N 55507 5 0006275 \N 55508 5 0070536 \N 55509 3 19202061 \N 55510 3 19214193 \N 55511 5 0050494 \N 55512 89 AA0165 \N 55513 5 0010615 \N 55514 5 0048295 \N 55515 5 2000958 \N 55516 5 0046731 \N 55517 5 0007019 \N 55518 5 0060494 \N 55519 5 0071040 \N 55520 3 18022365 \N 55521 5 0006509 \N 55522 5 0019544 \N 55523 5 0060651 \N 55524 5 0075141 \N 55525 5 0051338 \N 55526 93 2.-.-.- \N 55527 5 0071233 \N 55528 5 0006551 \N 55529 5 0018926 \N 55530 97 msa \N 55531 5 0019563 \N 55532 5 0051647 \N 55533 5 0075126 \N 55534 5 0052297 \N 55535 5 0030005 \N 55536 5 0048317 \N 55537 5 0033316 \N 55538 5 0052242 \N 55539 5 0003365 \N 55540 5 0060136 \N 55541 5 0001951 \N 55542 3 5601832 \N 55543 5 0016553 \N 55544 5 0060773 \N 55545 5 0048215 \N 55546 5 0001020 \N 55547 5 0001756 \N 55548 5 0007521 \N 55549 5 0003201 \N 55550 5 0007564 \N 55551 5 0010937 \N 55552 5 0001823 \N 55553 5 0010650 \N 55554 5 0060611 \N 55555 5 0000745 \N 55556 5 0014917 \N 55557 5 0046845 \N 55558 5 0009291 \N 55559 86 0387520546 \N 55560 5 0075040 \N 55561 5 0000117 \N 55562 5 0046804 \N 55563 89 AA0330 \N 55564 5 0070340 \N 55565 5 0046785 \N 55566 5 0034994 \N 55567 3 18692466 \N 55568 5 0052161 \N 55569 5 0001575 \N 55570 5 0050987 \N 55571 5 0045089 \N 55572 5 0009094 \N 55573 5 0019274 \N 55574 5 0019275 \N 55575 5 0010992 \N 55576 5 0010573 \N 55577 5 0002263 \N 55578 5 0050844 \N 55579 5 0046772 \N 55580 5 2000184 \N 55581 5 0001311 \N 55582 5 0045780 \N 55583 5 0015689 \N 55584 5 0045196 \N 55585 5 0043339 \N 55586 5 0043342 \N 55587 5 0006714 \N 55588 5 0043309 \N 55589 5 0003140 \N 55590 5 0051590 \N 55591 5 0035819 \N 55592 5 0023035 \N 55593 3 11348017 \N 55594 5 0050717 \N 55595 5 0006933 \N 55596 5 0042147 \N 55597 3 10873832 \N 55598 3 16936697 \N 55599 5 0030043 \N 55600 5 0045471 \N 55601 5 0017036 \N 55602 5 0034196 \N 55603 5 0007608 \N 55604 5 0010411 \N 55605 5 0071481 \N 55606 5 0051585 \N 55607 5 0060549 \N 55608 5 0002022 \N 55609 5 2000415 \N 55610 5 0019655 \N 55611 5 0046101 \N 55612 5 0072222 \N 55613 5 0052565 \N 55614 5 0071478 \N 55615 5 0072263 \N 55616 5 0034304 \N 55617 5 0070272 \N 55618 3 19103153 \N 55619 5 0003220 \N 55620 5 0051130 \N 55621 5 0051161 \N 55622 5 0009113 \N 55623 5 0070271 \N 55624 5 0052008 \N 55625 5 0019611 \N 55626 5 0072011 \N 55627 5 0065003 \N 55628 5 0030652 \N 55629 5 0009895 \N 55630 5 0010046 \N 55631 5 0007059 \N 55632 5 2000593 \N 55633 5 0045898 \N 55634 5 0061141 \N 55635 5 0050954 \N 55636 5 0009581 \N 55637 5 0007272 \N 55638 5 0048694 \N 55639 5 0019404 \N 55640 5 0019420 \N 55641 5 0070811 \N 55642 5 0021580 \N 55643 5 0045379 \N 55644 5 0002329 \N 55645 5 0030645 \N 55646 5 0006730 \N 55647 5 0019753 \N 55648 5 0019754 \N 55649 5 0016128 \N 55650 5 0018004 \N 55651 5 0048106 \N 55652 5 0019230 \N 55653 86 072168677X \N 55654 5 0035043 \N 55655 5 0072472 \N 55656 5 0019063 \N 55657 5 0031529 \N 55658 3 10036235 \N 55659 5 0021508 \N 55660 5 0018171 \N 55661 3 9586994 \N 55662 89 AA0205 \N 55663 5 0045187 \N 55664 5 0060642 \N 55665 5 0030817 \N 55666 5 0023062 \N 55667 5 0061056 \N 55668 5 0052107 \N 55669 5 0034393 \N 55670 5 0061214 \N 55671 5 0002106 \N 55672 5 0051697 \N 55673 5 0001745 \N 55674 5 0035292 \N 55675 5 0002408 \N 55676 5 0019245 \N 55677 5 0018020 \N 55678 5 0060285 \N 55679 5 0032294 \N 55680 5 0031426 \N 55681 5 0051827 \N 55682 5 0007274 \N 55683 5 0000080 \N 55684 5 0071296 \N 55685 5 0032262 \N 55686 5 0007068 \N 55687 5 0007489 \N 55688 5 0034314 \N 55689 3 18640983 \N 55690 5 0032007 \N 55691 5 0048458 \N 55692 5 0048415 \N 55693 5 0051258 \N 55694 5 0021852 \N 55695 5 2000234 \N 55696 5 0034760 \N 55697 5 0015894 \N 55698 115 6842 \N 55699 5 0002654 \N 55700 5 0046903 \N 55701 5 0045820 \N 55702 5 0007279 \N 55703 5 0033090 \N 55704 5 0060291 \N 55705 5 0033131 \N 55706 5 0009157 \N 55707 5 0003042 \N 55708 5 0007087 \N 55709 5 0014826 \N 55710 100 0000715 \N 55711 101 A07.231.908 \N 55712 5 0075059 \N 55713 5 0051235 \N 55714 5 0060889 \N 55715 5 0019367 \N 55716 5 0044052 \N 55717 5 0048086 \N 55718 5 0052179 \N 55719 5 0031129 \N 55720 5 0052507 \N 55721 5 0045834 \N 55722 5 0003245 \N 55723 5 0060485 \N 55724 5 0003302 \N 55725 5 0043586 \N 55726 106 0001723 \N 55727 5 0060050 \N 55728 5 0046433 \N 55729 3 12107130 \N 55730 5 2000334 \N 55731 5 0045175 \N 55732 5 0048073 \N 55733 5 0034169 \N 55734 5 0030593 \N 55735 5 0045978 \N 55736 5 0061045 \N 55737 5 0071379 \N 55738 5 0006587 \N 55739 5 0075279 \N 55740 5 0002753 \N 55741 5 0052394 \N 55742 5 0045491 \N 55743 5 0070616 \N 55744 5 0090277 \N 55745 5 0060769 \N 55746 5 0048137 \N 55747 5 0060374 \N 55748 5 0007178 \N 55749 5 0032605 \N 55750 5 0046469 \N 55751 5 0075263 \N 55752 5 0035087 \N 55753 3 14512631 \N 55754 5 0006074 \N 55755 5 0052017 \N 55756 5 0060979 \N 55757 5 0045815 \N 55758 5 0006646 \N 55759 5 0071265 \N 55760 5 0072078 \N 55761 5 0039022 \N 55762 5 0070527 \N 55763 5 0075323 \N 55764 5 0042370 \N 55765 5 0034247 \N 55766 5 0060060 \N 55767 5 0000348 \N 55768 5 0000370 \N 55769 5 0000371 \N 55770 5 0070794 \N 55771 5 0010742 \N 55772 5 0035002 \N 55773 3 12571352 \N 55774 5 2000048 \N 55775 5 0021501 \N 55776 5 0035009 \N 55777 3 12408809 \N 55778 5 0019518 \N 55779 87 THREONINE-DEG2-PWY \N 55780 5 0006386 \N 55781 5 0019225 \N 55782 5 2000584 \N 55783 5 0046511 \N 55784 5 0042663 \N 55785 5 0052430 \N 55786 5 0061092 \N 55787 5 0031335 \N 55788 5 0048768 \N 55789 5 0043561 \N 55790 5 0002925 \N 55791 5 0009756 \N 55792 5 0072217 \N 55793 5 0090147 \N 55794 5 0044136 \N 55795 5 0060588 \N 55796 5 2000992 \N 55797 5 0010116 \N 55798 5 0060014 \N 55799 5 2000372 \N 55800 5 0052237 \N 55801 5 0048883 \N 55802 5 0030853 \N 55803 5 0045468 \N 55804 5 0015700 \N 55805 5 0071872 \N 55806 5 0030187 \N 55807 5 2000455 \N 55808 5 0046003 \N 55809 5 0048026 \N 55810 5 0035057 \N 55811 5 0046196 \N 55812 5 0045907 \N 55813 5 0060944 \N 55814 5 0030419 \N 55815 5 0032516 \N 55816 5 0042846 \N 55817 5 0042534 \N 55818 5 0046395 \N 55819 5 0007537 \N 55820 5 0070104 \N 55821 5 0034227 \N 55822 3 12549933 \N 55823 3 14722066 \N 55824 5 0048012 \N 55825 5 0035640 \N 55826 3 11682103 \N 55827 3 9767169 \N 55828 5 0007512 \N 55829 5 0048477 \N 55830 5 0009993 \N 55831 5 0048157 \N 55832 5 0045388 \N 55833 5 0009910 \N 55834 5 0030909 \N 55835 5 0045416 \N 55836 5 0018866 \N 55837 5 0052303 \N 55838 5 0061341 \N 55839 5 0072153 \N 55840 5 0070194 \N 55841 5 0042432 \N 55842 5 0060191 \N 55843 5 0060097 \N 55844 5 0071304 \N 55845 5 0045649 \N 55846 5 0072048 \N 55847 5 0032075 \N 55848 5 0051771 \N 55849 5 0051774 \N 55850 5 0006754 \N 55851 5 0006758 \N 55852 5 0006759 \N 55853 5 0070661 \N 55854 5 0021729 \N 55855 5 2000289 \N 55856 5 0016044 \N 55857 5 0000729 \N 55858 5 0042254 \N 55859 5 0007046 \N 55860 5 0072106 \N 55861 5 0014748 \N 55862 5 2000104 \N 55863 5 0043094 \N 55864 5 0003408 \N 55865 5 0006116 \N 55866 5 2000249 \N 55867 5 0010344 \N 55868 3 16877495 \N 55869 5 0072283 \N 55870 5 0045824 \N 55871 5 2000174 \N 55872 5 0075032 \N 55873 5 0071600 \N 55874 5 0016121 \N 55875 5 2000701 \N 55876 5 0003004 \N 55877 5 0046902 \N 55878 5 0030213 \N 55879 5 0048017 \N 55880 3 16088939 \N 55881 5 0060115 \N 55882 5 0019921 \N 55883 5 0002068 \N 55884 5 0097103 \N 55885 91 0002671 \N 55886 5 0042475 \N 55887 3 10333884 \N 55888 5 0019464 \N 55889 87 GLYCLEAV-PWY \N 55890 5 0061327 \N 55891 5 0003292 \N 55892 5 0042331 \N 55893 5 0046953 \N 55894 5 0030510 \N 55895 5 0030421 \N 55896 5 0045920 \N 55897 5 0016095 \N 55898 5 0045761 \N 55899 5 0015965 \N 55900 5 0002250 \N 55901 5 0071554 \N 55902 5 0031281 \N 55903 5 0003212 \N 55904 5 0007500 \N 55905 5 0070751 \N 55906 5 0046442 \N 55907 5 0090371 \N 55908 5 0072467 \N 55909 5 0001925 \N 55910 5 0010512 \N 55911 5 2000466 \N 55912 5 0014910 \N 55913 5 0046411 \N 55914 5 0050651 \N 55915 5 0035826 \N 55916 5 0021516 \N 55917 3 11179871 \N 55918 5 0002787 \N 55919 5 0032824 \N 55920 5 0042174 \N 55921 5 0034162 \N 55922 5 0006059 \N 55923 5 0070480 \N 55924 5 0033210 \N 55925 5 0042747 \N 55926 5 0002854 \N 55927 5 0014739 \N 55928 5 0010516 \N 55929 5 0014859 \N 55930 5 0018181 \N 55931 89 AA0272 \N 55932 5 0033584 \N 55933 87 PWY-3461 \N 55934 5 0021647 \N 55935 5 0002609 \N 55936 5 0072004 \N 55937 5 0006225 \N 55938 5 0000474 \N 55939 5 0010625 \N 55940 5 0061306 \N 55941 5 0009911 \N 55942 5 0060232 \N 55943 3 16962574 \N 55944 3 18343170 \N 55945 5 0045535 \N 55946 5 2000365 \N 55947 5 0050678 \N 55948 5 0050983 \N 55949 87 1.1.1.249-RXN \N 55950 5 0046320 \N 55951 5 0071217 \N 55952 5 2000274 \N 55953 5 0002212 \N 55954 3 14506883 \N 55955 5 0009965 \N 55956 5 0052563 \N 55957 5 0048833 \N 55958 5 0001788 \N 55959 3 11677095 \N 55960 3 9581795 \N 55961 5 0002493 \N 55962 5 2000821 \N 55963 5 0000161 \N 55964 5 0043518 \N 55965 5 0044405 \N 55966 5 0015806 \N 55967 5 0002241 \N 55968 5 0035952 \N 55969 5 0008302 \N 55970 5 0018233 \N 55971 89 AA0109 \N 55972 5 2000561 \N 55973 5 0033605 \N 55974 5 0046379 \N 55975 5 0010048 \N 55976 86 0521591392 \N 55977 5 0046819 \N 55978 5 0070597 \N 55979 5 0046453 \N 55980 5 0042810 \N 55981 5 0034975 \N 55982 5 0005985 \N 55983 5 0061072 \N 55984 5 0014012 \N 55985 5 0003144 \N 55986 5 0042060 \N 55987 5 0002346 \N 55988 5 0075328 \N 55989 5 0043602 \N 55990 5 0032880 \N 55991 5 0032694 \N 55992 5 0022408 \N 55993 5 0097115 \N 55994 5 0002398 \N 55995 5 0052285 \N 55996 5 0075146 \N 55997 5 0033500 \N 55998 5 0033582 \N 55999 5 0002719 \N 56000 5 0034499 \N 56001 5 0014856 \N 56002 5 0071785 \N 56003 5 0052370 \N 56004 5 0051612 \N 56005 5 0006815 \N 56006 5 0060178 \N 56007 5 0018441 \N 56008 3 9063865 \N 56009 89 AA0300 \N 56010 5 0008542 \N 56011 5 0006898 \N 56012 5 0032238 \N 56013 5 0003079 \N 56014 5 0007283 \N 56015 5 0030050 \N 56016 5 0033508 \N 56017 87 PWY-5087 \N 56018 5 0042347 \N 56019 5 2000935 \N 56020 5 2000722 \N 56021 5 0048261 \N 56022 5 2000941 \N 56023 5 0043506 \N 56024 5 0045686 \N 56025 5 0007171 \N 56026 5 0046682 \N 56027 5 0052379 \N 56028 5 0019708 \N 56029 89 AA0309 \N 56030 5 0015947 \N 56031 5 0060420 \N 56032 5 0060004 \N 56033 86 087797099 \N 56034 5 0006670 \N 56035 5 0002136 \N 56036 3 15894617 \N 56037 5 0072684 \N 56038 5 0060316 \N 56039 5 0060675 \N 56040 5 0052352 \N 56041 5 0034397 \N 56042 5 0032255 \N 56043 5 0021821 \N 56044 5 0050433 \N 56045 5 0052401 \N 56046 5 0003017 \N 56047 5 0019631 \N 56048 5 0090376 \N 56049 5 0020021 \N 56050 5 0031327 \N 56051 5 0048480 \N 56052 102 0009073 \N 56053 5 0006496 \N 56054 5 0042348 \N 56055 5 0033020 \N 56056 5 0070070 \N 56057 5 0046311 \N 56058 5 0045018 \N 56059 3 9700156 \N 56060 5 0042318 \N 56061 5 0018925 \N 56062 5 0033473 \N 56063 5 0021973 \N 56064 5 0007286 \N 56065 5 0048652 \N 56066 5 0001960 \N 56067 5 0001126 \N 56068 5 0035533 \N 56069 5 0008078 \N 56070 5 0006565 \N 56071 5 0002385 \N 56072 5 0010062 \N 56073 5 2000190 \N 56074 5 0090311 \N 56075 5 0035928 \N 56076 3 20691904 \N 56077 5 0043454 \N 56078 5 0022038 \N 56079 5 0050688 \N 56080 5 0007041 \N 56081 5 0006157 \N 56082 5 0006159 \N 56083 5 0060277 \N 56084 5 0021698 \N 56085 5 2000470 \N 56086 5 0019491 \N 56087 5 0046334 \N 56088 5 0035333 \N 56089 5 2000063 \N 56090 5 0015796 \N 56091 5 0052084 \N 56092 5 0048752 \N 56093 5 0042223 \N 56094 5 0052471 \N 56095 5 2000395 \N 56096 5 0021826 \N 56097 5 0009600 \N 56098 5 0007314 \N 56099 5 0048112 \N 56100 5 0002921 \N 56101 5 0060297 \N 56102 5 0033083 \N 56103 5 0007438 \N 56104 3 11171397 \N 56105 5 2001002 \N 56106 5 0006574 \N 56107 5 0060382 \N 56108 5 0070590 \N 56109 5 0001015 \N 56110 5 0006413 \N 56111 5 0006440 \N 56112 5 0006454 \N 56113 5 2000290 \N 56114 5 0000052 \N 56115 5 0042026 \N 56116 5 0022018 \N 56117 5 2000165 \N 56118 5 0016321 \N 56119 5 0052031 \N 56120 5 0071895 \N 56121 3 20425127 \N 56122 5 0034293 \N 56123 5 0003430 \N 56124 5 0016059 \N 56125 3 8316831 \N 56126 5 0006289 \N 56127 5 0045001 \N 56128 5 0000725 \N 56129 5 0051181 \N 56130 5 2001041 \N 56131 5 0034642 \N 56132 3 15979253 \N 56133 3 16306220 \N 56134 5 0043451 \N 56135 5 0007348 \N 56136 5 0001870 \N 56137 5 0046638 \N 56138 5 0032954 \N 56139 5 0009639 \N 56140 5 0034204 \N 56141 5 0035865 \N 56142 5 0042967 \N 56143 5 0070778 \N 56144 88 17053 \N 56145 5 0071587 \N 56146 5 0061052 \N 56147 5 0003135 \N 56148 5 0033184 \N 56149 5 0072025 \N 56150 5 0046475 \N 56151 5 0007496 \N 56152 5 0072335 \N 56153 5 0014008 \N 56154 5 0021993 \N 56155 5 0045670 \N 56156 5 0052419 \N 56157 5 0006677 \N 56158 5 0052183 \N 56159 5 0009254 \N 56160 5 0009287 \N 56161 5 0032431 \N 56162 5 0006212 \N 56163 5 0052216 \N 56164 5 0061098 \N 56165 5 0046777 \N 56166 5 0016131 \N 56167 5 0071336 \N 56168 5 0006397 \N 56169 5 0009232 \N 56170 5 0002448 \N 56171 5 0002032 \N 56172 5 0060621 \N 56173 5 0010893 \N 56174 5 0046185 \N 56175 5 0019615 \N 56176 94 //www.ence.umd.edu/ \N 56177 5 0009173 \N 56178 5 0031579 \N 56179 5 0090190 \N 56180 5 0075009 \N 56181 5 0060441 \N 56182 5 2000092 \N 56183 5 0021551 \N 56184 5 0080094 \N 56185 3 19193861 \N 56186 5 0001819 \N 56187 5 0060528 \N 56188 5 0031443 \N 56189 5 0042509 \N 56190 5 0030683 \N 56191 5 0019669 \N 56192 5 0071228 \N 56193 5 0000270 \N 56194 5 0009284 \N 56195 5 0072629 \N 56196 5 0046415 \N 56197 5 2000753 \N 56198 5 0035697 \N 56199 5 0032688 \N 56200 5 0048667 \N 56201 5 0055117 \N 56202 5 0001995 \N 56203 5 0016116 \N 56204 5 0045882 \N 56205 5 0007418 \N 56206 3 12075342 \N 56207 5 0080050 \N 56208 3 19141706 \N 56209 5 0052148 \N 56210 5 0043301 \N 56211 5 0060897 \N 56212 5 0032409 \N 56213 5 0008156 \N 56214 5 2000176 \N 56215 5 0035909 \N 56216 100 0000062 \N 56217 106 0000947 \N 56218 5 0014844 \N 56219 5 0021884 \N 56220 5 0014032 \N 56221 5 0043618 \N 56222 5 0001810 \N 56223 5 0090136 \N 56224 5 0015735 \N 56225 5 0045454 \N 56226 5 0030503 \N 56227 5 0045867 \N 56228 5 0045868 \N 56229 5 0007306 \N 56230 5 0002354 \N 56231 5 0090174 \N 56232 5 0019620 \N 56233 5 0048397 \N 56234 5 0002850 \N 56235 5 0060649 \N 56236 5 0007594 \N 56237 5 0032335 \N 56238 5 0051850 \N 56239 5 0045858 \N 56240 5 0075339 \N 56241 5 0032310 \N 56242 5 0035120 \N 56243 5 0042354 \N 56244 5 0060057 \N 56245 5 0006009 \N 56246 5 0002664 \N 56247 5 0008167 \N 56248 5 0051542 \N 56249 5 0045218 \N 56250 5 0008052 \N 56251 5 0019046 \N 56252 5 0002798 \N 56253 5 0033532 \N 56254 5 0061162 \N 56255 5 0060696 \N 56256 5 0008037 \N 56257 5 0051201 \N 56258 5 0050727 \N 56259 5 0002468 \N 56260 5 0075292 \N 56261 5 0006150 \N 56262 3 3196295 \N 56263 5 0001833 \N 56264 5 0032334 \N 56265 5 0019651 \N 56266 87 P126-PWY \N 56267 5 0000338 \N 56268 5 0075024 \N 56269 5 0033381 \N 56270 5 0046333 \N 56271 5 0030103 \N 56272 5 0070185 \N 56273 5 0046384 \N 56274 5 0046388 \N 56275 5 0006466 \N 56276 5 0042202 \N 56277 5 0009308 \N 56278 5 0035428 \N 56279 5 0002077 \N 56280 5 2000704 \N 56281 5 0019525 \N 56282 5 0042773 \N 56283 5 0052079 \N 56284 5 0071847 \N 56285 3 18606301 \N 56286 114 000002107 \N 56287 5 0019725 \N 56288 5 0031661 \N 56289 5 0002605 \N 56290 5 0051775 \N 56291 5 0006980 \N 56292 3 15131240 \N 56293 3 16987039 \N 56294 5 0050877 \N 56295 5 0007096 \N 56296 5 0009068 \N 56297 5 0035364 \N 56298 5 sl \N 56299 5 0048097 \N 56300 5 0048582 \N 56301 5 0031663 \N 56302 3 15379975 \N 56303 5 0006828 \N 56304 5 2000909 \N 56305 5 0034982 \N 56306 5 0010338 \N 56307 5 0072210 \N 56308 5 0001404 \N 56309 5 2000222 \N 56310 5 0075309 \N 56311 5 0031057 \N 56312 5 0008217 \N 56313 5 0046631 \N 56314 5 0007213 \N 56315 5 0071036 \N 56316 5 0090331 \N 56317 5 0002413 \N 56318 5 0051794 \N 56319 5 0051476 \N 56320 5 0090044 \N 56321 5 0070647 \N 56322 5 0045063 \N 56323 5 0015776 \N 56324 5 0075346 \N 56325 5 0060795 \N 56326 5 0002897 \N 56327 5 0021861 \N 56328 5 0070843 \N 56329 5 0042548 \N 56330 5 0019750 \N 56331 5 0006247 \N 56332 5 0045983 \N 56333 5 0044072 \N 56334 5 0060054 \N 56335 5 0042209 \N 56336 5 0006086 \N 56337 5 0071647 \N 56338 5 2000988 \N 56339 5 0006840 \N 56340 5 0060322 \N 56341 5 2000882 \N 56342 5 0051058 \N 56343 5 0045999 \N 56344 5 0090288 \N 56345 5 0045556 \N 56346 5 0007370 \N 56347 5 0071881 \N 56348 5 0071414 \N 56349 5 0002148 \N 56350 3 176150 \N 56351 123 10085024 \N 56352 5 0035857 \N 56353 5 0031031 \N 56354 5 0042866 \N 56355 5 0034308 \N 56356 88 15734 \N 56357 5 0033252 \N 56358 5 0010705 \N 56359 5 0021535 \N 56360 5 0070307 \N 56361 5 0009059 \N 56362 5 0043284 \N 56363 5 0021590 \N 56364 5 0071668 \N 56365 5 0045838 \N 56366 5 0046277 \N 56367 5 0032464 \N 56368 5 0009415 \N 56369 5 2000895 \N 56370 5 0090340 \N 56371 5 0010928 \N 56372 5 2000100 \N 56373 5 0061110 \N 56374 5 0034553 \N 56375 5 0045936 \N 56376 5 0021866 \N 56377 5 0060599 \N 56378 5 2000145 \N 56379 5 0009148 \N 56380 5 0035681 \N 56381 5 0072515 \N 56382 5 0002497 \N 56383 5 0003340 \N 56384 5 0003267 \N 56385 5 0071548 \N 56386 5 0048697 \N 56387 5 0045621 \N 56388 5 0001319 \N 56389 5 0035785 \N 56390 5 0071527 \N 56391 5 0021527 \N 56392 5 0030860 \N 56393 5 0003011 \N 56394 5 0032276 \N 56395 5 0080129 \N 56396 3 12401807 \N 56397 3 17971041 \N 56398 5 0032814 \N 56399 5 0009854 \N 56400 5 0000480 \N 56401 3 15282326 \N 56402 5 0002489 \N 56403 5 2000633 \N 56404 5 2000836 \N 56405 5 0007504 \N 56406 5 0032995 \N 56407 5 0072414 \N 56408 5 0019953 \N 56409 5 0071978 \N 56410 3 14527279 \N 56411 5 0055096 \N 56412 3 16013438 \N 56413 5 0070947 \N 56414 5 0048336 \N 56415 5 0006017 \N 56416 5 0046880 \N 56417 5 0048140 \N 56418 5 0000316 \N 56419 5 0034122 \N 56420 5 0051157 \N 56421 5 0019591 \N 56422 5 0007450 \N 56423 5 0008358 \N 56424 5 0021607 \N 56425 5 0010505 \N 56426 5 0070168 \N 56427 5 0045372 \N 56428 5 0016582 \N 56429 5 2000691 \N 56430 5 0051555 \N 56431 5 0046270 \N 56432 5 0021994 \N 56433 5 0009807 \N 56434 5 0071319 \N 56435 5 0010466 \N 56436 5 0051280 \N 56437 5 0002685 \N 56438 5 0061032 \N 56439 5 0043408 \N 56440 5 0001503 \N 56441 3 17572649 \N 56442 5 0019802 \N 56443 89 AA0303 \N 56444 5 2000202 \N 56445 5 0034298 \N 56446 5 0060980 \N 56447 5 0033304 \N 56448 5 0002394 \N 56449 5 0048673 \N 56450 5 0052028 \N 56451 5 0071031 \N 56452 5 0002461 \N 56453 5 0035156 \N 56454 5 0035039 \N 56455 5 0051466 \N 56456 5 0009808 \N 56457 5 0052440 \N 56458 5 0014049 \N 56459 5 0060023 \N 56460 5 0010509 \N 56461 3 11161802 \N 56462 3 9761731 \N 56463 5 0045398 \N 56464 5 0045304 \N 56465 5 0007336 \N 56466 5 0010162 \N 56467 5 0016318 \N 56468 3 10725247 \N 56469 5 0007169 \N 56470 5 0007075 \N 56471 5 0019384 \N 56472 5 0044342 \N 56473 5 0071612 \N 56474 5 0072530 \N 56475 5 0051208 \N 56476 5 0010544 \N 56477 5 0019472 \N 56478 5 0022611 \N 56479 5 0071843 \N 56480 5 0046376 \N 56481 5 0072170 \N 56482 5 0018200 \N 56483 5 0048843 \N 56484 5 0045539 \N 56485 5 0001036 \N 56486 5 2000661 \N 56487 5 0034251 \N 56488 5 0035879 \N 56489 5 0002009 \N 56490 5 0045614 \N 56491 5 0061371 \N 56492 5 0002876 \N 56493 5 0002546 \N 56494 5 0006097 \N 56495 5 0046967 \N 56496 5 0018054 \N 56497 89 AA0117 \N 56498 5 0072323 \N 56499 5 0060779 \N 56500 5 0060939 \N 56501 5 0032533 \N 56502 3 16260500 \N 56503 5 0018192 \N 56504 3 11592406 \N 56505 89 AA0269 \N 56506 5 0042948 \N 56507 88 17814 \N 56508 5 0031103 \N 56509 5 0075211 \N 56510 5 0018073 \N 56511 5 0048865 \N 56512 5 0070427 \N 56513 5 0018877 \N 56514 5 0072127 \N 56515 5 0032610 \N 56516 5 0075117 \N 56517 5 0052271 \N 56518 5 0090391 \N 56519 5 0043086 \N 56520 5 0015970 \N 56521 5 0010089 \N 56522 5 2000144 \N 56523 5 0030502 \N 56524 5 0071826 \N 56525 5 0072181 \N 56526 5 0051946 \N 56527 5 0032715 \N 56528 5 0046167 \N 56529 5 0015780 \N 56530 5 0046222 \N 56531 5 0043389 \N 56532 5 2000517 \N 56533 5 0060962 \N 56534 5 0043379 \N 56535 5 0071806 \N 56536 5 0021900 \N 56537 5 0046037 \N 56538 5 0006012 \N 56539 5 0070829 \N 56540 5 0001767 \N 56541 5 0061245 \N 56542 5 0071569 \N 56543 3 20018847 \N 56544 5 0042693 \N 56545 5 0045007 \N 56546 5 0006105 \N 56547 5 0032972 \N 56548 5 0009821 \N 56549 93 1.1.1.51 \N 56550 5 0090215 \N 56551 5 0018142 \N 56552 5 0035767 \N 56553 5 0031148 \N 56554 5 0075255 \N 56555 5 0032819 \N 56556 5 0010457 \N 56557 5 0071631 \N 56558 5 0031668 \N 56559 5 0042312 \N 56560 5 0051252 \N 56561 5 0010524 \N 56562 5 0050928 \N 56563 5 0060036 \N 56564 3 10964477 \N 56565 5 0035760 \N 56566 3 20368444 \N 56567 5 0046043 \N 56568 5 0048684 \N 56569 5 0006630 \N 56570 5 0044345 \N 56571 5 0009751 \N 56572 5 0075318 \N 56573 5 0035133 \N 56574 5 0080167 \N 56575 3 20351290 \N 56576 5 0005976 \N 56577 5 0021848 \N 56578 5 0060508 \N 56579 5 2000345 \N 56580 5 0085018 \N 56581 5 0006510 \N 56582 5 0038028 \N 56583 3 19322168 \N 56584 3 20696212 \N 56585 5 0071376 \N 56586 5 0034035 \N 56587 5 0071930 \N 56588 5 0019458 \N 56589 5 0045046 \N 56590 5 0052421 \N 56591 5 0042267 \N 56592 5 0043013 \N 56593 5 0035898 \N 56594 3 12171519 \N 56595 3 21164021 \N 56596 114 000013429 \N 56597 5 0008630 \N 56598 5 0061255 \N 56599 5 0033616 \N 56600 5 0090043 \N 56601 5 0044419 \N 56602 5 0071104 \N 56603 5 0030799 \N 56604 5 0070587 \N 56605 5 0007002 \N 56606 5 0043946 \N 56607 5 0043654 \N 56608 5 0071971 \N 56609 4 tfm \N 56610 3 19442504 \N 56611 5 0010765 \N 56612 5 0048835 \N 56613 5 0000266 \N 56614 5 0043149 \N 56615 3 16651381 \N 56616 5 0009260 \N 56617 5 0048575 \N 56618 5 0042093 \N 56619 5 0097040 \N 56620 88 59240 \N 56621 3 9201977 \N 56622 5 0061343 \N 56623 5 0006389 \N 56624 5 0090408 \N 56625 5 0072165 \N 56626 5 0002031 \N 56627 5 0030994 \N 56628 3 12665550 \N 56629 5 0035661 \N 56630 3 20385024 \N 56631 5 0018057 \N 56632 89 AA0121 \N 56633 5 0007510 \N 56634 5 0052457 \N 56635 5 0009631 \N 56636 5 2000203 \N 56637 5 0006821 \N 56638 5 0002402 \N 56639 5 2000845 \N 56640 5 0070640 \N 56641 88 28940 \N 56642 5 0019249 \N 56643 5 0080182 \N 56644 5 0006681 \N 56645 5 0072524 \N 56646 5 0002800 \N 56647 5 0034401 \N 56648 5 0045954 \N 56649 5 0002283 \N 56650 5 0010054 \N 56651 5 0002463 \N 56652 3 12547504 \N 56653 5 0061069 \N 56654 5 0051121 \N 56655 3 15123652 \N 56656 5 0019435 \N 56657 5 0001180 \N 56658 5 0048077 \N 56659 5 0002316 \N 56660 5 0042191 \N 56661 5 0051497 \N 56662 5 0048540 \N 56663 5 0007463 \N 56664 5 0045132 \N 56665 5 0048052 \N 56666 5 0060932 \N 56667 5 0045391 \N 56668 5 0051532 \N 56669 5 0071731 \N 56670 5 0050914 \N 56671 5 0042161 \N 56672 5 0002703 \N 56673 5 0072443 \N 56674 5 0072446 \N 56675 5 0030706 \N 56676 5 0031456 \N 56677 5 0052514 \N 56678 5 0006527 \N 56679 5 0006916 \N 56680 5 0051128 \N 56681 5 0034726 \N 56682 5 0061290 \N 56683 5 0052478 \N 56684 5 2000648 \N 56685 5 0060335 \N 56686 5 0071865 \N 56687 5 0010202 \N 56688 5 0043435 \N 56689 3 15134857 \N 56690 104 Corticotropin-releasing_hormone \N 56691 5 0007200 \N 56692 5 0032723 \N 56693 5 0005995 \N 56694 5 0046748 \N 56695 5 0022615 \N 56696 5 0010033 \N 56697 5 0051945 \N 56698 5 0002890 \N 56699 5 0051196 \N 56700 5 0045056 \N 56701 5 0006728 \N 56702 5 0035676 \N 56703 5 0033376 \N 56704 5 0022006 \N 56705 3 11425897 \N 56706 3 16452095 \N 56707 5 0043542 \N 56708 5 0009791 \N 56709 5 0090029 \N 56710 5 0018274 \N 56711 89 AA0123 \N 56712 5 0019413 \N 56713 5 0031943 \N 56714 5 0021614 \N 56715 5 0085001 \N 56716 5 0045074 \N 56717 5 0046762 \N 56718 5 0006342 \N 56719 5 0016440 \N 56720 3 10219245 \N 56721 5 0051622 \N 56722 5 0001947 \N 56723 3 12094232 \N 56724 5 0002882 \N 56725 5 0052559 \N 56726 5 0010186 \N 56727 5 0043127 \N 56728 5 0009595 \N 56729 5 0009596 \N 56730 5 0016134 \N 56731 5 0018902 \N 56732 94 //umbbd.ahc.umn.edu/dcp/dcp_map.html \N 56733 97 dcp \N 56734 5 0060189 \N 56735 5 0061284 \N 56736 5 0034311 \N 56737 5 0055047 \N 56738 5 0060031 \N 56739 5 0042270 \N 56740 5 0060532 \N 56741 5 0006838 \N 56742 5 0001737 \N 56743 3 11239465 \N 56744 5 0051806 \N 56745 4 njm \N 56746 5 0023016 \N 56747 5 0015740 \N 56748 5 0006068 \N 56749 5 0042258 \N 56750 119 1EU1 \N 56751 3 8658132 \N 56752 89 AA0319 \N 56753 5 0001778 \N 56754 3 12925704 \N 56755 5 0033986 \N 56756 5 0046720 \N 56757 5 0015787 \N 56758 5 0044062 \N 56759 5 0070955 \N 56760 5 0050731 \N 56761 5 0006915 \N 56762 5 0008632 \N 56763 5 0042361 \N 56764 5 0045915 \N 56765 5 2000677 \N 56766 5 0015825 \N 56767 5 0006721 \N 56768 5 0019835 \N 56769 109 KW-0204 \N 56770 5 0052246 \N 56771 5 0048313 \N 56772 3 12851069 \N 56773 5 0009687 \N 56774 5 2000494 \N 56775 5 0002018 \N 56776 5 0002694 \N 56777 5 0048356 \N 56778 5 0046145 \N 56779 5 0001696 \N 56780 5 0031860 \N 56781 3 16096639 \N 56782 5 0035412 \N 56783 5 0045773 \N 56784 5 0042595 \N 56785 5 0060501 \N 56786 5 0021635 \N 56787 5 0045488 \N 56788 5 0075168 \N 56789 5 0001988 \N 56790 5 0035119 \N 56791 5 0070213 \N 56792 5 0019716 \N 56793 5 0032305 \N 56794 5 0015706 \N 56795 5 0006872 \N 56796 5 0019743 \N 56797 5 0019281 \N 56798 5 0061239 \N 56799 5 0019584 \N 56800 5 0045104 \N 56801 5 0000197 \N 56802 5 0018012 \N 56803 5 0060010 \N 56804 5 0031558 \N 56805 5 0043490 \N 56806 5 0075044 \N 56807 5 0072631 \N 56808 5 0033335 \N 56809 5 2000035 \N 56810 5 0048390 \N 56811 5 0046048 \N 56812 5 0035104 \N 56813 5 0003338 \N 56814 5 0046533 \N 56815 5 0045674 \N 56816 5 0000756 \N 56817 5 0071511 \N 56818 5 0071989 \N 56819 5 0052313 \N 56820 5 2000756 \N 56821 5 0060618 \N 56822 5 0019859 \N 56823 5 0051166 \N 56824 88 16364 \N 56825 5 0002587 \N 56826 5 0045060 \N 56827 5 0006779 \N 56828 5 2000259 \N 56829 5 0006746 \N 56830 88 17877 \N 56831 5 0042243 \N 56832 5 0055061 \N 56833 5 0051402 \N 56834 99 A.08.663 \N 56835 5 0009765 \N 56836 5 2001040 \N 56837 5 0007004 \N 56838 5 2000927 \N 56839 5 0045756 \N 56840 5 0010226 \N 56841 5 0019697 \N 56842 87 LARABITOLUTIL-PWY \N 56843 5 0002590 \N 56844 5 0014725 \N 56845 5 0042139 \N 56846 5 0071977 \N 56847 5 0051295 \N 56848 5 0060866 \N 56849 5 0043989 \N 56850 5 0008210 \N 56851 5 0032887 \N 56852 5 0032856 \N 56853 5 0071724 \N 56854 5 0071468 \N 56855 5 0021504 \N 56856 5 0035520 \N 56857 5 0051083 \N 56858 5 0006444 \N 56859 5 0035583 \N 56860 5 0046449 \N 56861 5 0018914 \N 56862 94 //www.shsu.edu/ \N 56863 5 0007186 \N 56864 5 0019557 \N 56865 5 0090091 \N 56866 5 0071455 \N 56867 5 0048198 \N 56868 5 0072126 \N 56869 5 0045637 \N 56870 5 0000821 \N 56871 5 0090064 \N 56872 5 0001956 \N 56873 5 2000641 \N 56874 5 0003219 \N 56875 5 0072638 \N 56876 5 0006857 \N 56877 5 0001301 \N 56878 5 0014807 \N 56879 5 0006903 \N 56880 3 17335816 \N 56881 5 0097011 \N 56882 3 7901744 \N 56883 5 0070243 \N 56884 5 0031388 \N 56885 5 0018151 \N 56886 5 0072403 \N 56887 5 0021643 \N 56888 5 0090068 \N 56889 5 0060411 \N 56890 5 0003280 \N 56891 5 0006077 \N 56892 5 0034174 \N 56893 5 0048872 \N 56894 5 0019082 \N 56895 5 0032364 \N 56896 5 0034223 \N 56897 5 0030010 \N 56898 5 0000283 \N 56899 5 0030468 \N 56900 5 0048612 \N 56901 5 0070676 \N 56902 3 19234443 \N 56903 5 0031348 \N 56904 5 0042915 \N 56905 3 9171417 \N 56906 5 0034341 \N 56907 5 0061363 \N 56908 5 0045368 \N 56909 5 0030715 \N 56910 5 0032860 \N 56911 5 0001865 \N 56912 3 10704459 \N 56913 5 0045347 \N 56914 5 0042724 \N 56915 5 0032100 \N 56916 5 0085006 \N 56917 5 0032926 \N 56918 5 0042116 \N 56919 3 14506301 \N 56920 5 0090254 \N 56921 5 0072350 \N 56922 5 0003028 \N 56923 5 0006651 \N 56924 5 0010566 \N 56925 5 0072256 \N 56926 5 0018352 \N 56927 5 0061013 \N 56928 5 0003373 \N 56929 5 0015790 \N 56930 5 0030577 \N 56931 3 10921892 \N 56932 3 8695863 \N 56933 5 2000746 \N 56934 5 0035285 \N 56935 3 10357895 \N 56936 5 0019229 \N 56937 5 0009127 \N 56938 5 0090071 \N 56939 5 0075154 \N 56940 5 0051849 \N 56941 5 0001557 \N 56942 5 0042633 \N 56943 5 0023021 \N 56944 5 0010700 \N 56945 5 0006363 \N 56946 5 0019223 \N 56947 3 10684922 \N 56948 5 0006368 \N 56949 5 0051175 \N 56950 5 0048370 \N 56951 5 0021526 \N 56952 5 0045574 \N 56953 5 0060812 \N 56954 5 0070075 \N 56955 5 0071693 \N 56956 5 0023066 \N 56957 5 0006488 \N 56958 5 0032487 \N 56959 5 0000432 \N 56960 5 0075049 \N 56961 5 0048716 \N 56962 5 2000771 \N 56963 5 0034628 \N 56964 5 0009436 \N 56965 5 0015867 \N 56966 5 0038007 \N 56967 3 10399919 \N 56968 3 15960985 \N 56969 3 19785719 \N 56970 3 20108323 \N 56971 5 0060180 \N 56972 5 0007239 \N 56973 5 0048519 \N 56974 5 0043118 \N 56975 5 0071780 \N 56976 5 0009150 \N 56977 5 0048479 \N 56978 102 0009074 \N 56979 5 0033555 \N 56980 5 0044089 \N 56981 5 0072599 \N 56982 5 0046676 \N 56983 5 0015882 \N 56984 5 0002123 \N 56985 5 0016082 \N 56986 5 0034473 \N 56987 5 0046132 \N 56988 5 0035904 \N 56989 5 0034050 \N 56990 5 0043249 \N 56991 5 0035713 \N 56992 5 0000453 \N 56993 5 0006230 \N 56994 5 0032850 \N 56995 5 0071214 \N 56996 5 0044140 \N 56997 5 0060112 \N 56998 5 0044006 \N 56999 5 0002309 \N 57000 5 0070377 \N 57001 5 0015913 \N 57002 5 0052141 \N 57003 5 0002647 \N 57004 5 0031959 \N 57005 5 0051029 \N 57006 5 0046016 \N 57007 5 0019530 \N 57008 5 0052273 \N 57009 5 0016107 \N 57010 5 0097087 \N 57011 94 //en.wikipedia.org/wiki/Interleukin_17 \N 57012 114 000001138 \N 57013 5 0072347 \N 57014 88 38867 \N 57015 5 0050792 \N 57016 5 0019055 \N 57017 5 0030959 \N 57018 89 AA0367 \N 57019 5 0072429 \N 57020 5 0070858 \N 57021 5 0048648 \N 57022 5 0045339 \N 57023 5 0070509 \N 57024 5 0010024 \N 57025 3 11402195 \N 57026 5 0075139 \N 57027 5 2000020 \N 57028 5 0072606 \N 57029 5 2000968 \N 57030 5 0046643 \N 57031 5 0007123 \N 57032 5 0006171 \N 57033 5 0060237 \N 57034 5 0052544 \N 57035 5 0010262 \N 57036 3 9611173 \N 57037 5 0002237 \N 57038 5 0000761 \N 57039 5 0032014 \N 57040 5 0035408 \N 57041 5 0055017 \N 57042 5 0034586 \N 57043 5 0002182 \N 57044 5 0031322 \N 57045 5 0032412 \N 57046 5 0014895 \N 57047 5 2000535 \N 57048 5 0080053 \N 57049 3 15889294 \N 57050 5 0006192 \N 57051 5 0075165 \N 57052 5 0097043 \N 57053 5 0008055 \N 57054 5 0035756 \N 57055 3 10639460 \N 57056 5 0007621 \N 57057 5 0010396 \N 57058 5 0090238 \N 57059 5 0034503 \N 57060 5 0090083 \N 57061 5 0060405 \N 57062 5 2001053 \N 57063 5 0060120 \N 57064 5 0009195 \N 57065 5 0045719 \N 57066 5 0031291 \N 57067 5 0042704 \N 57068 5 0050886 \N 57069 5 0006536 \N 57070 5 0030827 \N 57071 5 0035218 \N 57072 5 0002636 \N 57073 5 0060909 \N 57074 5 0070902 \N 57075 5 0009560 \N 57076 5 0048233 \N 57077 5 0010637 \N 57078 5 0072489 \N 57079 5 0000046 \N 57080 5 0071681 \N 57081 88 24814 \N 57082 5 0033540 \N 57083 5 0050946 \N 57084 5 0021935 \N 57085 5 0040029 \N 57086 3 10521337 \N 57087 3 11498582 \N 57088 5 0018310 \N 57089 89 AA0220 \N 57090 5 0048706 \N 57091 5 0071956 \N 57092 5 0075193 \N 57093 5 0021795 \N 57094 5 0035998 \N 57095 88 18372 \N 57096 111 UPA00848 \N 57097 5 0060129 \N 57098 5 0019418 \N 57099 87 P223-PWY \N 57100 87 PWY-5274 \N 57101 87 PWY-5285 \N 57102 5 0006133 \N 57103 5 0010871 \N 57104 5 0002222 \N 57105 5 0042987 \N 57106 5 0031038 \N 57107 5 0039015 \N 57108 5 0021903 \N 57109 5 0048909 \N 57110 5 0021734 \N 57111 5 0010311 \N 57112 5 0071360 \N 57113 5 0060407 \N 57114 5 0021628 \N 57115 5 0006284 \N 57116 5 0045383 \N 57117 5 0008345 \N 57118 5 0075099 \N 57119 5 0048621 \N 57120 5 0071230 \N 57121 5 0052269 \N 57122 5 0042182 \N 57123 5 2000717 \N 57124 5 0031081 \N 57125 5 0061316 \N 57126 5 0032792 \N 57127 5 0018082 \N 57128 89 AA0182 \N 57129 5 0071401 \N 57130 5 0030392 \N 57131 5 0045595 \N 57132 5 0019624 \N 57133 5 0000381 \N 57134 5 0075029 \N 57135 5 0003414 \N 57136 5 0034339 \N 57137 5 0050690 \N 57138 5 0042544 \N 57139 5 0007117 \N 57140 5 0071562 \N 57141 3 16709156 \N 57142 5 0071353 \N 57143 5 0061223 \N 57144 5 0003312 \N 57145 5 0043580 \N 57146 5 0042737 \N 57147 5 0045698 \N 57148 5 0070882 \N 57149 5 0023052 \N 57150 5 0023046 \N 57151 5 0071284 \N 57152 5 0003138 \N 57153 5 0061186 \N 57154 5 2000264 \N 57155 5 0007347 \N 57156 5 0060820 \N 57157 5 0010015 \N 57158 5 0090013 \N 57159 5 0075243 \N 57160 5 0033078 \N 57161 5 0048454 \N 57162 5 0048424 \N 57163 5 0048813 \N 57164 5 0055007 \N 57165 5 0040020 \N 57166 5 0090125 \N 57167 5 0018907 \N 57168 88 28262 \N 57169 5 0045217 \N 57170 5 0042841 \N 57171 5 0046842 \N 57172 5 0060346 \N 57173 5 0071269 \N 57174 88 17588 \N 57175 5 0052369 \N 57176 5 0075075 \N 57177 5 0007248 \N 57178 5 0000190 \N 57179 5 0015797 \N 57180 5 0033762 \N 57181 5 0070135 \N 57182 5 0031169 \N 57183 5 0031199 \N 57184 5 0031200 \N 57185 5 0006323 \N 57186 5 0072216 \N 57187 5 0032120 \N 57188 5 0009441 \N 57189 5 0001122 \N 57190 5 0046674 \N 57191 5 2001021 \N 57192 5 0002612 \N 57193 5 0051440 \N 57194 5 0070868 \N 57195 5 0051831 \N 57196 5 0060145 \N 57197 5 0009708 \N 57198 5 0010766 \N 57199 5 0003319 \N 57200 5 0009718 \N 57201 5 0000720 \N 57202 5 0070143 \N 57203 5 0007128 \N 57204 5 0010691 \N 57205 5 0060166 \N 57206 5 0016258 \N 57207 5 0032572 \N 57208 5 0070716 \N 57209 5 2000807 \N 57210 5 0002042 \N 57211 5 0002619 \N 57212 5 0019373 \N 57213 3 17979511 \N 57214 5 0052258 \N 57215 5 0097034 \N 57216 5 0002160 \N 57217 5 2001036 \N 57218 5 0003403 \N 57219 5 0007141 \N 57220 5 0050962 \N 57221 5 0052261 \N 57222 5 0046255 \N 57223 5 0052484 \N 57224 5 0007506 \N 57225 5 0003353 \N 57226 5 0000494 \N 57227 5 2000520 \N 57228 5 0006402 \N 57229 5 0021922 \N 57230 5 0071703 \N 57231 5 0019941 \N 57232 5 0048600 \N 57233 5 0033152 \N 57234 5 0017145 \N 57235 5 2000091 \N 57236 5 0071328 \N 57237 5 0060634 \N 57238 5 0019122 \N 57239 5 0060879 \N 57240 5 0032946 \N 57241 5 0032768 \N 57242 5 0035046 \N 57243 3 9199363 \N 57244 5 0006589 \N 57245 5 0051043 \N 57246 5 0042395 \N 57247 5 0052192 \N 57248 5 0048346 \N 57249 5 0090005 \N 57250 5 0071509 \N 57251 5 0016200 \N 57252 5 0014876 \N 57253 5 0014850 \N 57254 5 0030195 \N 57255 5 0023006 \N 57256 5 0050784 \N 57257 5 0044270 \N 57258 5 0080005 \N 57259 3 11607105 \N 57260 5 0034239 \N 57261 5 0090160 \N 57262 5 0055003 \N 57263 5 0071324 \N 57264 5 0070584 \N 57265 5 0051887 \N 57266 5 0015953 \N 57267 5 0021974 \N 57268 5 0043038 \N 57269 5 0035889 \N 57270 3 14499652 \N 57271 5 0010378 \N 57272 3 16617099 \N 57273 5 0045377 \N 57274 5 0048526 \N 57275 5 0072621 \N 57276 5 0001794 \N 57277 5 0033513 \N 57278 87 PWY-5280 \N 57279 5 0050814 \N 57280 5 0006303 \N 57281 3 10827453 \N 57282 5 0061301 \N 57283 5 0035604 \N 57284 5 0061144 \N 57285 5 0048166 \N 57286 5 0042423 \N 57287 5 0009205 \N 57288 5 0051522 \N 57289 5 0075226 \N 57290 5 2000401 \N 57291 5 0006471 \N 57292 89 AA0040 \N 57293 89 AA0168 \N 57294 5 0060437 \N 57295 5 0090115 \N 57296 5 0002782 \N 57297 5 2000464 \N 57298 5 0008646 \N 57299 5 0009859 \N 57300 5 0015717 \N 57301 5 0032871 \N 57302 5 0010479 \N 57303 5 0002773 \N 57304 3 16413920 \N 57305 5 0010800 \N 57306 5 0071364 \N 57307 5 0006614 \N 57308 5 0034147 \N 57309 5 0052128 \N 57310 5 0042990 \N 57311 5 0075281 \N 57312 5 0014064 \N 57313 5 0007486 \N 57314 5 0051355 \N 57315 5 0072308 \N 57316 5 0052324 \N 57317 5 0080171 \N 57318 3 20729380 \N 57319 5 0072149 \N 57320 5 0001803 \N 57321 5 0033007 \N 57322 5 0010403 \N 57323 5 0061105 \N 57324 5 2000729 \N 57325 5 0051217 \N 57326 119 1Q16 \N 57327 3 12910261 \N 57328 89 AA0375 \N 57329 5 0071275 \N 57330 5 0043902 \N 57331 5 0003331 \N 57332 5 0003437 \N 57333 5 0042991 \N 57334 5 0046598 \N 57335 5 0018870 \N 57336 5 0031060 \N 57337 5 0044144 \N 57338 5 0060385 \N 57339 5 0042817 \N 57340 5 2000818 \N 57341 5 0052115 \N 57342 5 0046296 \N 57343 5 0032510 \N 57344 3 12461556 \N 57345 3 16689637 \N 57346 5 0090270 \N 57347 5 0052001 \N 57348 5 0006699 \N 57349 5 0034654 \N 57350 5 0006876 \N 57351 5 0010602 \N 57352 5 0048536 \N 57353 5 0009052 \N 57354 87 NONOXIPENT-PWY \N 57355 5 0051653 \N 57356 5 0033480 \N 57357 5 0075130 \N 57358 5 0018943 \N 57359 5 0001175 \N 57360 5 0032980 \N 57361 3 15737202 \N 57362 5 0010029 \N 57363 5 0031647 \N 57364 5 0010157 \N 57365 5 0016183 \N 57366 5 0071381 \N 57367 5 0009788 \N 57368 5 0003165 \N 57369 5 0030822 \N 57370 5 0018321 \N 57371 5 0072243 \N 57372 5 0071445 \N 57373 5 0042006 \N 57374 5 0022609 \N 57375 5 0046712 \N 57376 5 0018966 \N 57377 94 //umbbd.ahc.umn.edu/sty/sty_map.html \N 57378 97 sty \N 57379 5 0030714 \N 57380 5 0070872 \N 57381 5 0030218 \N 57382 5 0052707 \N 57383 5 0002272 \N 57384 5 0002714 \N 57385 5 0002322 \N 57386 5 0044032 \N 57387 5 2000912 \N 57388 5 0001580 \N 57389 5 0002378 \N 57390 5 0030639 \N 57391 5 0015967 \N 57392 5 0052646 \N 57393 88 22297 \N 57394 5 0030838 \N 57395 5 0016043 \N 57396 5 0007442 \N 57397 5 0061322 \N 57398 91 0002524 \N 57399 4 19783135 \N 57400 5 2000386 \N 57401 5 2000973 \N 57402 5 0006772 \N 57403 5 0061357 \N 57404 5 0006316 \N 57405 5 0034727 \N 57406 3 18701704 \N 57407 5 0030540 \N 57408 5 0044328 \N 57409 5 0002558 \N 57410 5 0010648 \N 57411 5 0035967 \N 57412 5 0046949 \N 57413 5 0007015 \N 57414 5 2000563 \N 57415 5 0071599 \N 57416 5 0061196 \N 57417 5 0030488 \N 57418 5 0071836 \N 57419 4 kad \N 57420 3 19861655 \N 57421 5 0046909 \N 57422 3 10671554 \N 57423 5 0061206 \N 57424 5 0046013 \N 57425 5 0006704 \N 57426 5 0044262 \N 57427 5 0006092 \N 57428 5 0009081 \N 57429 5 0032065 \N 57430 5 0046191 \N 57431 5 0072132 \N 57432 5 0035186 \N 57433 5 0048323 \N 57434 5 0071477 \N 57435 5 0033031 \N 57436 5 0002264 \N 57437 5 0000903 \N 57438 5 0090061 \N 57439 5 0009086 \N 57440 5 0070848 \N 57441 5 0048878 \N 57442 5 2000794 \N 57443 5 0021833 \N 57444 5 0034140 \N 57445 5 0035705 \N 57446 91 0000899 \N 57447 5 0052168 \N 57448 5 0051319 \N 57449 5 0035948 \N 57450 5 0042702 \N 57451 5 0061120 \N 57452 5 0021950 \N 57453 5 0033489 \N 57454 87 PWY66-4 \N 57455 5 0045038 \N 57456 5 0060949 \N 57457 5 0072041 \N 57458 5 0033320 \N 57459 87 PWY-4821 \N 57460 5 0043573 \N 57461 5 0007329 \N 57462 5 0048545 \N 57463 5 0019258 \N 57464 5 0031999 \N 57465 5 0045728 \N 57466 5 0061083 \N 57467 5 0090131 \N 57468 5 0072574 \N 57469 5 0045716 \N 57470 5 0070297 \N 57471 5 0042192 \N 57472 5 0002837 \N 57473 5 0010782 \N 57474 5 2000043 \N 57475 5 0007048 \N 57476 5 0044350 \N 57477 3 14731589 \N 57478 5 0033069 \N 57479 5 0043016 \N 57480 5 0075270 \N 57481 5 0002761 \N 57482 5 0018921 \N 57483 94 //umbbd.ahc.umn.edu/mcr/mcr_map.html \N 57484 97 mcr \N 57485 5 0046007 \N 57486 5 0030183 \N 57487 5 0042115 \N 57488 5 0046462 \N 57489 5 0033327 \N 57490 3 12050120 \N 57491 5 0006952 \N 57492 5 0002217 \N 57493 5 0042829 \N 57494 5 0050493 \N 57495 89 AA0164 \N 57496 5 0003036 \N 57497 5 0015844 \N 57498 5 0015873 \N 57499 88 25375 \N 57500 5 0055079 \N 57501 5 0032782 \N 57502 5 0016072 \N 57503 5 0072055 \N 57504 5 0014022 \N 57505 5 0045806 \N 57506 5 0006004 \N 57507 5 0007470 \N 57508 5 0060429 \N 57509 5 0061280 \N 57510 5 0031536 \N 57511 5 0032214 \N 57512 5 0035052 \N 57513 5 0035418 \N 57514 5 0010694 \N 57515 5 2000280 \N 57516 5 0051489 \N 57517 5 0051565 \N 57518 5 0014818 \N 57519 5 0060270 \N 57520 5 0035880 \N 57521 3 11369996 \N 57522 106 0008198 \N 57523 5 0002791 \N 57524 5 0051919 \N 57525 5 0006025 \N 57526 5 0061009 \N 57527 5 0019334 \N 57528 5 0048368 \N 57529 5 0060283 \N 57530 5 0051664 \N 57531 5 0002337 \N 57532 5 0044337 \N 57533 5 0072202 \N 57534 5 0007597 \N 57535 5 0031156 \N 57536 5 2000083 \N 57537 5 0075203 \N 57538 5 0052362 \N 57539 5 0010737 \N 57540 5 0019339 \N 57541 5 0030167 \N 57542 5 0002736 \N 57543 5 0002097 \N 57544 5 0072195 \N 57545 5 0021768 \N 57546 5 0072501 \N 57547 5 0031916 \N 57548 3 8658594 \N 57549 5 0070269 \N 57550 5 0060855 \N 57551 5 0050769 \N 57552 5 0002724 \N 57553 5 0045829 \N 57554 5 0071915 \N 57555 5 0050775 \N 57556 5 0043651 \N 57557 104 Linoleic_Acid \N 57558 5 0001827 \N 57559 5 0009871 \N 57560 5 0045629 \N 57561 5 0044409 \N 57562 5 0003404 \N 57563 5 0018393 \N 57564 5 0016264 \N 57565 5 0061331 \N 57566 5 2000621 \N 57567 5 0006238 \N 57568 5 0035167 \N 57569 3 12445385 \N 57570 5 0009098 \N 57571 5 0007580 \N 57572 5 2000197 \N 57573 5 0051461 \N 57574 5 0071924 \N 57575 3 18832724 \N 57576 5 0033371 \N 57577 5 0032213 \N 57578 5 0045297 \N 57579 5 0007031 \N 57580 5 0048593 \N 57581 5 0048594 \N 57582 5 0048595 \N 57583 5 0048829 \N 57584 5 0008162 \N 57585 5 0006267 \N 57586 5 0048102 \N 57587 5 0018001 \N 57588 89 AA0054 \N 57589 5 0034767 \N 57590 5 0048780 \N 57591 5 0014819 \N 57592 5 0043486 \N 57593 3 15066277 \N 57594 5 0090216 \N 57595 5 0009991 \N 57596 5 0019934 \N 57597 5 0045899 \N 57598 5 0035042 \N 57599 5 0033355 \N 57600 87 PWY-2261 \N 57601 5 0032104 \N 57602 5 0030813 \N 57603 5 0030707 \N 57604 5 0090032 \N 57605 5 0061116 \N 57606 5 0060152 \N 57607 3 16449325 \N 57608 5 0008633 \N 57609 5 0085013 \N 57610 5 0016062 \N 57611 3 1962207 \N 57612 5 0060225 \N 57613 5 0060401 \N 57614 5 0033362 \N 57615 87 PWY-5097 \N 57616 5 0019638 \N 57617 5 0019071 \N 57618 5 0061273 \N 57619 5 0052453 \N 57620 5 0042696 \N 57621 3 16311040 \N 57622 5 0002860 \N 57623 5 0051366 \N 57624 5 2000739 \N 57625 5 0075122 \N 57626 5 0000909 \N 57627 5 0001657 \N 57628 5 0071905 \N 57629 5 0060219 \N 57630 5 0002879 \N 57631 5 0031398 \N 57632 5 0008293 \N 57633 3 8343949 \N 57634 5 2000787 \N 57635 5 0051676 \N 57636 3 15013381 \N 57637 5 2000428 \N 57638 5 0048800 \N 57639 5 0045527 \N 57640 5 0048143 \N 57641 3 10526094 \N 57642 3 10695728 \N 57643 3 12529254 \N 57644 3 12580336 \N 57645 3 9585813 \N 57646 5 0051602 \N 57647 5 0043981 \N 57648 5 0055070 \N 57649 5 0022013 \N 57650 5 0070562 \N 57651 5 0003118 \N 57652 5 0038032 \N 57653 5 0010535 \N 57654 5 0009721 \N 57655 5 0048279 \N 57656 5 0042373 \N 57657 5 0048066 \N 57658 5 0035781 \N 57659 5 0090307 \N 57660 5 0061002 \N 57661 5 0046541 \N 57662 106 0001836 \N 57663 5 0052090 \N 57664 5 0006768 \N 57665 5 0006761 \N 57666 5 0042309 \N 57667 5 0015686 \N 57668 5 0052203 \N 57669 5 0000186 \N 57670 5 0007255 \N 57671 5 0052249 \N 57672 5 0018367 \N 57673 5 0030381 \N 57674 5 0051070 \N 57675 5 0007164 \N 57676 5 0046754 \N 57677 5 0007446 \N 57678 3 10679387 \N 57679 5 0031639 \N 57680 3 9548733 \N 57681 5 0010721 \N 57682 5 0002503 \N 57683 5 0002849 \N 57684 5 0002062 \N 57685 5 0016487 \N 57686 5 0031340 \N 57687 5 0019757 \N 57688 5 0071292 \N 57689 5 0002686 \N 57690 5 0043215 \N 57691 5 0001969 \N 57692 5 0065004 \N 57693 5 0050841 \N 57694 5 0010098 \N 57695 5 0042080 \N 57696 5 0000917 \N 57697 5 0071369 \N 57698 5 0060359 \N 57699 5 0033347 \N 57700 5 0009153 \N 57701 5 0048809 \N 57702 5 0048574 \N 57703 5 0071048 \N 57704 5 0006668 \N 57705 5 0034214 \N 57706 5 0051874 \N 57707 5 0090328 \N 57708 5 0046835 \N 57709 5 0035849 \N 57710 3 16216236 \N 57711 5 0033495 \N 57712 88 29749 \N 57713 5 0009162 \N 57714 5 0034210 \N 57715 5 0039509 \N 57716 5 0022618 \N 57717 5 0021915 \N 57718 5 0034151 \N 57719 5 2000732 \N 57720 5 0006843 \N 57721 5 0007294 \N 57722 5 0016350 \N 57723 5 0002025 \N 57724 5 0052389 \N 57725 5 0034428 \N 57726 5 0072268 \N 57727 5 0070988 \N 57728 5 0003366 \N 57729 5 0017190 \N 57730 89 AA0042 \N 57731 5 0031121 \N 57732 5 0044346 \N 57733 91 0000057 \N 57734 5 0014039 \N 57735 5 0052344 \N 57736 5 0046656 \N 57737 5 0042513 \N 57738 5 0030517 \N 57739 5 0015628 \N 57740 5 0035941 \N 57741 88 16422 \N 57742 5 0021898 \N 57743 5 0003103 \N 57744 5 0043010 \N 57745 5 0001747 \N 57746 5 0031075 \N 57747 5 0030149 \N 57748 5 0002454 \N 57749 5 0060313 \N 57750 5 0045193 \N 57751 5 0045809 \N 57752 5 0035747 \N 57753 91 0000623 \N 57754 5 0090048 \N 57755 5 0035960 \N 57756 3 16055745 \N 57757 5 0019099 \N 57758 5 0007544 \N 57759 5 0006295 \N 57760 5 0035288 \N 57761 3 15382136 \N 57762 5 0010424 \N 57763 5 0071594 \N 57764 3 1382990 \N 57765 5 0046263 \N 57766 5 0070924 \N 57767 5 0032064 \N 57768 5 0042416 \N 57769 5 0032647 \N 57770 5 0019504 \N 57771 5 0035316 \N 57772 5 0051470 \N 57773 5 0021728 \N 57774 5 0072411 \N 57775 5 0071246 \N 57776 5 0000208 \N 57777 5 0010984 \N 57778 5 0032378 \N 57779 5 0060304 \N 57780 5 0051531 \N 57781 3 11983154 \N 57782 3 15870113 \N 57783 5 0031294 \N 57784 5 0007190 \N 57785 5 0042090 \N 57786 5 0046245 \N 57787 5 2000765 \N 57788 5 0048701 \N 57789 5 0006619 \N 57790 3 11101515 \N 57791 5 0032506 \N 57792 5 0006869 \N 57793 5 0061265 \N 57794 5 0006900 \N 57795 5 0006902 \N 57796 5 0018008 \N 57797 89 AA0059 \N 57798 5 0007054 \N 57799 5 0048758 \N 57800 91 0000284 \N 57801 5 0034354 \N 57802 5 0052426 \N 57803 5 0046767 \N 57804 5 0031532 \N 57805 5 0007012 \N 57806 5 2000446 \N 57807 5 0016310 \N 57808 5 0044263 \N 57809 5 0043990 \N 57810 5 0009693 \N 57811 5 0042456 \N 57812 5 0031277 \N 57813 5 0034721 \N 57814 5 0060687 \N 57815 5 0045962 \N 57816 5 0007432 \N 57817 5 0033053 \N 57818 88 17061 \N 57819 5 0045588 \N 57820 5 0017182 \N 57821 5 2000953 \N 57822 5 0052252 \N 57823 5 0075142 \N 57824 5 0032447 \N 57825 5 0072160 \N 57826 5 0009169 \N 57827 5 0019549 \N 57828 87 PWY-4321 \N 57829 5 0070994 \N 57830 5 0019299 \N 57831 5 0022403 \N 57832 5 0060035 \N 57833 5 0006909 \N 57834 5 0006516 \N 57835 5 0003093 \N 57836 5 0033564 \N 57837 5 0010631 \N 57838 5 0032736 \N 57839 5 0015955 \N 57840 5 0002211 \N 57841 5 0051892 \N 57842 5 0035356 \N 57843 5 0052501 \N 57844 5 0031457 \N 57845 5 0003259 \N 57846 5 0001764 \N 57847 5 0002204 \N 57848 5 0048462 \N 57849 5 0048431 \N 57850 5 2000995 \N 57851 5 0051881 \N 57852 5 0006962 \N 57853 5 0007321 \N 57854 3 10440373 \N 57855 5 0035442 \N 57856 5 0021929 \N 57857 5 0032385 \N 57858 5 0045870 \N 57859 5 0009093 \N 57860 5 0006165 \N 57861 5 0070896 \N 57862 5 0006787 \N 57863 5 2000668 \N 57864 5 2000629 \N 57865 5 0045404 \N 57866 5 0046490 \N 57867 5 0007263 \N 57868 5 0019429 \N 57869 5 0032224 \N 57870 5 0018890 \N 57871 88 16698 \N 57872 5 0045357 \N 57873 5 0042850 \N 57874 88 17266 \N 57875 5 0023047 \N 57876 5 2000309 \N 57877 5 0031929 \N 57878 3 12372295 \N 57879 5 0045421 \N 57880 5 0043623 \N 57881 5 0060788 \N 57882 5 0060807 \N 57883 5 0052519 \N 57884 5 0006112 \N 57885 5 0000376 \N 57886 3 11377794 \N 57887 5 0018037 \N 57888 89 AA0084 \N 57889 5 0042327 \N 57890 5 0030444 \N 57891 5 0046324 \N 57892 5 0021708 \N 57893 5 0018305 \N 57894 89 AA0288 \N 57895 5 0015724 \N 57896 5 0052538 \N 57897 5 0019570 \N 57898 5 0042445 \N 57899 5 0040004 \N 57900 5 0042275 \N 57901 3 11459630 \N 57902 5 0046632 \N 57903 91 0000789 \N 57904 5 0071852 \N 57905 5 0090384 \N 57906 5 0008655 \N 57907 5 0018163 \N 57908 89 AA0254 \N 57909 5 0052444 \N 57910 5 2000639 \N 57911 5 0050950 \N 57912 5 0090403 \N 57913 5 0072121 \N 57914 5 0035626 \N 57915 5 2000246 \N 57916 5 0061348 \N 57917 5 0006254 \N 57918 5 0019078 \N 57919 5 0015874 \N 57920 5 0060456 \N 57921 5 0060177 \N 57922 5 0021986 \N 57923 86 9780721601465 \N 57924 5 0051100 \N 57925 5 0032671 \N 57926 5 0021874 \N 57927 5 0034116 \N 57928 5 0010675 \N 57929 5 0017015 \N 57930 5 0019305 \N 57931 5 0035918 \N 57932 5 2000609 \N 57933 5 0051247 \N 57934 5 0010670 \N 57935 5 0052304 \N 57936 5 0014017 \N 57937 5 0018235 \N 57938 89 AA0114 \N 57939 5 0009612 \N 57940 5 0034757 \N 57941 5 0006811 \N 57942 5 0003349 \N 57943 5 0015702 \N 57944 5 0009300 \N 57945 5 0045407 \N 57946 5 0043942 \N 57947 5 0035625 \N 57948 3 10622253 \N 57949 3 17655843 \N 57950 5 0048379 \N 57951 5 0046346 \N 57952 88 25166 \N 57953 5 0010422 \N 57954 5 0033147 \N 57955 5 0071638 \N 57956 5 0071422 \N 57957 5 0015984 \N 57958 5 0050975 \N 57959 5 0043567 \N 57960 5 0034031 \N 57961 5 0018074 \N 57962 89 AA0173 \N 57963 5 0007337 \N 57964 5 0034133 \N 57965 5 0002747 \N 57966 5 0001709 \N 57967 5 2000674 \N 57968 5 0010728 \N 57969 5 2000297 \N 57970 5 0034158 \N 57971 5 0052259 \N 57972 5 0007636 \N 57973 5 0007615 \N 57974 3 15143285 \N 57975 3 17088531 \N 57976 5 2000238 \N 57977 5 0070391 \N 57978 5 0018886 \N 57979 5 0030917 \N 57980 5 0043397 \N 57981 5 0042872 \N 57982 5 0006154 \N 57983 5 0006156 \N 57984 5 0010837 \N 57985 5 0018286 \N 57986 89 AA0138 \N 57987 5 0072140 \N 57988 5 0010002 \N 57989 5 0001508 \N 57990 5 0048657 \N 57991 5 0042506 \N 57992 5 0045146 \N 57993 3 11741859 \N 57994 5 0016482 \N 57995 5 0030978 \N 57996 5 0030198 \N 57997 5 0060220 \N 57998 5 0060844 \N 57999 5 0075273 \N 58000 5 0075036 \N 58001 5 0072097 \N 58002 5 0010136 \N 58003 5 0046153 \N 58004 5 0051754 \N 58005 5 0045633 \N 58006 5 0032757 \N 58007 5 0034201 \N 58008 88 16196 \N 58009 5 0042982 \N 58010 5 0060073 \N 58011 5 0007202 \N 58012 3 8280098 \N 58013 5 0006600 \N 58014 5 2000743 \N 58015 5 0097022 \N 58016 5 0019990 \N 58017 5 0010896 \N 58018 5 0002479 \N 58019 3 15224093 \N 58020 3 16181335 \N 58021 5 0052711 \N 58022 103 R04878 \N 58023 5 0060910 \N 58024 5 0006392 \N 58025 5 0048490 \N 58026 5 0045668 \N 58027 5 0071572 \N 58028 5 0017197 \N 58029 89 AA0050 \N 58030 5 0006888 \N 58031 5 0048221 \N 58032 5 0031118 \N 58033 5 0045054 \N 58034 5 0000948 \N 58035 5 0001318 \N 58036 5 2000360 \N 58037 5 0097111 \N 58038 3 18287528 \N 58039 5 0032322 \N 58040 5 0007216 \N 58041 5 0023040 \N 58042 5 0046622 \N 58043 5 0042046 \N 58044 5 2000057 \N 58045 5 0051055 \N 58046 5 0002258 \N 58047 5 2001046 \N 58048 5 0060028 \N 58049 5 0070094 \N 58050 5 0070609 \N 58051 5 0002370 \N 58052 5 0002233 \N 58053 5 0035322 \N 58054 5 0052228 \N 58055 5 2000583 \N 58056 5 0009951 \N 58057 5 0001844 \N 58058 3 12952892 \N 58059 5 0042875 \N 58060 5 0072174 \N 58061 5 0048690 \N 58062 5 0030047 \N 58063 5 0007013 \N 58064 5 0006609 \N 58065 5 0075063 \N 58066 5 0021599 \N 58067 5 0046446 \N 58068 5 0090179 \N 58069 5 0060903 \N 58070 5 0016336 \N 58071 5 0072612 \N 58072 5 0021843 \N 58073 5 0071579 \N 58074 5 0046738 \N 58075 5 0046815 \N 58076 3 9696839 \N 58077 5 0032242 \N 58078 5 0042531 \N 58079 5 0071337 \N 58080 5 0007583 \N 58081 5 0008610 \N 58082 5 0001717 \N 58083 5 0035021 \N 58084 5 0071670 \N 58085 5 0070367 \N 58086 5 0071406 \N 58087 5 0031393 \N 58088 5 0051412 \N 58089 5 0003146 \N 58090 3 9334285 \N 58091 5 0035648 \N 58092 3 11470898 \N 58093 3 17276917 \N 58094 5 0033240 \N 58095 5 0048677 \N 58096 5 0046605 \N 58097 5 0006484 \N 58098 94 //micro.magnet.fsu.edu/aminoacids/pages/cystine.html \N 58099 94 //www.indstate.edu/thcme/mwking/pentose-phosphate-pathway.html \N 58100 89 AA0025 \N 58101 5 0006143 \N 58102 5 0070493 \N 58103 3 1672265 \N 58104 5 0046925 \N 58105 89 AA0341 \N 58106 5 0035549 \N 58107 5 2000251 \N 58108 5 0022000 \N 58109 5 0019650 \N 58110 5 0030646 \N 58111 5 0090363 \N 58112 5 0071413 \N 58113 5 0021851 \N 58114 5 0071163 \N 58115 5 0060895 \N 58116 5 0034258 \N 58117 5 0018419 \N 58118 5 0009794 \N 58119 5 0090166 \N 58120 5 0045314 \N 58121 5 2000865 \N 58122 5 0007154 \N 58123 5 0019577 \N 58124 5 0032472 \N 58125 5 0031582 \N 58126 5 0048627 \N 58127 5 0019492 \N 58128 5 0048894 \N 58129 5 0018292 \N 58130 89 AA0142 \N 58131 5 0015711 \N 58132 5 0018277 \N 58133 5 0009995 \N 58134 5 0035567 \N 58135 5 0045457 \N 58136 5 0034288 \N 58137 5 0075331 \N 58138 5 0048730 \N 58139 5 0046951 \N 58140 5 0009646 \N 58141 5 0002573 \N 58142 5 0090139 \N 58143 5 0016441 \N 58144 5 0051187 \N 58145 5 2000698 \N 58146 5 0033472 \N 58147 5 0018425 \N 58148 89 AA0296 \N 58149 5 0014863 \N 58150 5 0018404 \N 58151 5 0006780 \N 58152 5 0021639 \N 58153 5 0007156 \N 58154 5 0021968 \N 58155 5 2000328 \N 58156 5 0045565 \N 58157 5 0046366 \N 58158 5 0021540 \N 58159 5 0035245 \N 58160 5 0048566 \N 58161 5 0052036 \N 58162 5 2000337 \N 58163 5 0019528 \N 58164 87 DARABITOLUTIL-PWY \N 58165 5 0072332 \N 58166 5 0000002 \N 58167 5 0006880 \N 58168 5 0070383 \N 58169 5 0010074 \N 58170 5 0032503 \N 58171 5 2000219 \N 58172 5 0006259 \N 58173 5 0055132 \N 58174 5 0030465 \N 58175 5 0035938 \N 58176 88 23965 \N 58177 3 21632818 \N 58178 5 0070393 \N 58179 5 0003020 \N 58180 5 0010718 \N 58181 5 0006862 \N 58182 5 0002131 \N 58183 5 0006337 \N 58184 5 0071604 \N 58185 5 0032200 \N 58186 5 0052463 \N 58187 5 0052165 \N 58188 5 0002000 \N 58189 5 0046114 \N 58190 5 0001324 \N 58191 5 0009187 \N 58192 5 0033395 \N 58193 87 PWY-3941 \N 58194 5 0072539 \N 58195 5 0090297 \N 58196 5 0080157 \N 58197 3 20530756 \N 58198 5 0035116 \N 58199 5 0072642 \N 58200 5 0052145 \N 58201 5 0051764 \N 58202 5 0045479 \N 58203 3 9046244 \N 58204 5 0001828 \N 58205 5 0043463 \N 58206 5 0001172 \N 58207 5 0007427 \N 58208 5 0003246 \N 58209 5 0090370 \N 58210 5 0052051 \N 58211 5 0002349 \N 58212 5 0009170 \N 58213 5 0045444 \N 58214 91 0000136 \N 58215 5 0075300 \N 58216 5 0000059 \N 58217 3 7878057 \N 58218 5 0090349 \N 58219 5 0060265 \N 58220 5 0019648 \N 58221 87 P185-PWY \N 58222 5 0001041 \N 58223 5 0035083 \N 58224 5 0006506 \N 58225 5 0015998 \N 58226 5 0014005 \N 58227 5 0021571 \N 58228 5 0071043 \N 58229 3 15935759 \N 58230 3 16973436 \N 58231 5 0048717 \N 58232 5 0010711 \N 58233 5 2001026 \N 58234 5 0043077 \N 58235 5 0031630 \N 58236 5 0070782 \N 58237 3 11536005 \N 58238 5 0030241 \N 58239 5 0044402 \N 58240 5 0007040 \N 58241 5 0035265 \N 58242 5 0042239 \N 58243 5 0035342 \N 58244 5 0019059 \N 58245 5 0021740 \N 58246 5 0033292 \N 58247 5 0030520 \N 58248 5 0061010 \N 58249 5 0015821 \N 58250 5 0051479 \N 58251 5 0072399 \N 58252 5 0021747 \N 58253 5 0033233 \N 58254 5 0046180 \N 58255 5 0071767 \N 58256 5 0045434 \N 58257 5 0002641 \N 58258 5 0097116 \N 58259 5 0032733 \N 58260 5 0003088 \N 58261 5 0019090 \N 58262 5 0044119 \N 58263 5 0001914 \N 58264 5 0055086 \N 58265 5 0010416 \N 58266 5 0007589 \N 58267 5 0045540 \N 58268 5 0008069 \N 58269 5 0009712 \N 58270 5 0000953 \N 58271 5 0033631 \N 58272 5 0018264 \N 58273 89 AA0126 \N 58274 5 0050832 \N 58275 5 0042831 \N 58276 5 0046323 \N 58277 5 0006418 \N 58278 5 0009405 \N 58279 5 0035036 \N 58280 5 0035506 \N 58281 5 0030242 \N 58282 3 10547367 \N 58283 5 0070454 \N 58284 5 0035127 \N 58285 5 0030252 \N 58286 5 0021558 \N 58287 5 0052059 \N 58288 5 0010231 \N 58289 3 9580097 \N 58290 5 0032879 \N 58291 5 0022028 \N 58292 5 0021856 \N 58293 5 0006910 \N 58294 5 0072649 \N 58295 5 0051274 \N 58296 5 0090038 \N 58297 5 0010380 \N 58298 3 17291312 \N 58299 5 0000488 \N 58300 5 0061109 \N 58301 5 0030583 \N 58302 3 11121786 \N 58303 5 2000212 \N 58304 5 0006606 \N 58305 5 0045850 \N 58306 5 0021568 \N 58307 5 0046136 \N 58308 5 0000239 \N 58309 5 0050721 \N 58310 5 0071588 \N 58311 3 17043891 \N 58312 5 0031578 \N 58313 3 14616062 \N 58314 5 0001700 \N 58315 5 2000101 \N 58316 5 0009810 \N 58317 86 311011625 \N 58318 5 0090024 \N 58319 5 0071252 \N 58320 5 0019796 \N 58321 5 0009686 \N 58322 5 0046339 \N 58323 5 0003075 \N 58324 5 0035504 \N 58325 5 0051609 \N 58326 5 0019441 \N 58327 5 0045931 \N 58328 5 0042814 \N 58329 5 0045672 \N 58330 5 0051516 \N 58331 5 0061259 \N 58332 5 0035908 \N 58333 116 0000604 \N 58334 5 0010584 \N 58335 5 0045224 \N 58336 5 0048726 \N 58337 5 0060700 \N 58338 5 0090195 \N 58339 5 0002904 \N 58340 5 0060479 \N 58341 5 0035171 \N 58342 5 0018867 \N 58343 94 //umbbd.ahc.umn.edu/apn/apn_map.html \N 58344 97 apn \N 58345 5 0046488 \N 58346 5 0030384 \N 58347 88 28874 \N 58348 5 0022601 \N 58349 5 0039011 \N 58350 5 0085033 \N 58351 5 0044154 \N 58352 3 17194708 \N 58353 5 0000122 \N 58354 5 0010553 \N 58355 5 0045816 \N 58356 5 0010973 \N 58357 5 0070834 \N 58358 87 PWY4FS-4 \N 58359 5 0035724 \N 58360 5 0060430 \N 58361 5 2000288 \N 58362 5 2000887 \N 58363 5 0000154 \N 58364 5 0016548 \N 58365 5 0070415 \N 58366 5 0045497 \N 58367 5 0045041 \N 58368 5 0045043 \N 58369 5 0045044 \N 58370 5 0014055 \N 58371 5 0009737 \N 58372 5 0033332 \N 58373 87 PWY-5032 \N 58374 3 17064690 \N 58375 5 0033673 \N 58376 5 0052437 \N 58377 5 0071234 \N 58378 5 0010796 \N 58379 5 0045890 \N 58380 5 0042000 \N 58381 5 0006541 \N 58382 5 0071939 \N 58383 3 16011460 \N 58384 3 1924551 \N 58385 5 0090412 \N 58386 5 0032874 \N 58387 5 0050650 \N 58388 5 0046544 \N 58389 5 2000694 \N 58390 5 0010150 \N 58391 5 0019568 \N 58392 5 0034496 \N 58393 5 0042435 \N 58394 88 24828 \N 58395 5 0010819 \N 58396 5 0046105 \N 58397 5 0043132 \N 58398 5 0002529 \N 58399 5 0032080 \N 58400 5 0060288 \N 58401 5 0015682 \N 58402 5 0045795 \N 58403 5 0052390 \N 58404 5 0051882 \N 58405 104 Mitochondrion \N 58406 5 0030835 \N 58407 5 0030044 \N 58408 5 0019389 \N 58409 5 0070233 \N 58410 5 0060584 \N 58411 5 0072677 \N 58412 5 0043545 \N 58413 5 0070802 \N 58414 5 0032632 \N 58415 5 0070970 \N 58416 3 16930574 \N 58417 5 0048856 \N 58418 5 0072071 \N 58419 5 0032456 \N 58420 3 16473635 \N 58421 5 0016269 \N 58422 5 0007604 \N 58423 5 0071260 \N 58424 5 0018048 \N 58425 89 AA0095 \N 58426 5 0051165 \N 58427 5 0007101 \N 58428 5 0006353 \N 58429 5 0032846 \N 58430 5 0070091 \N 58431 5 0018175 \N 58432 5 0032834 \N 58433 5 0010746 \N 58434 5 0015941 \N 58435 5 0050674 \N 58436 5 0075050 \N 58437 5 0052320 \N 58438 5 0043143 \N 58439 5 0033139 \N 58440 5 0050818 \N 58441 5 0010899 \N 58442 5 0060940 \N 58443 5 0042638 \N 58444 5 0021889 \N 58445 5 0006891 \N 58446 5 0033128 \N 58447 5 0010716 \N 58448 5 0009606 \N 58449 86 0877795088 \N 58450 5 0035423 \N 58451 5 0072293 \N 58452 5 0051951 \N 58453 5 0070528 \N 58454 5 0010910 \N 58455 5 0006733 \N 58456 5 0000741 \N 58457 5 0007335 \N 58458 5 0033079 \N 58459 5 0035975 \N 58460 88 17672 \N 58461 111 UPA00996 \N 58462 5 0031917 \N 58463 5 0051776 \N 58464 5 0014740 \N 58465 5 0018106 \N 58466 89 AA0035 \N 58467 5 0070266 \N 58468 5 0072052 \N 58469 5 0033624 \N 58470 5 0006711 \N 58471 5 0065007 \N 58472 5 0042560 \N 58473 5 2000759 \N 58474 5 0046800 \N 58475 3 10587354 \N 58476 5 0007099 \N 58477 5 0015832 \N 58478 5 0010267 \N 58479 3 16129836 \N 58480 5 0052013 \N 58481 5 0042820 \N 58482 5 0019659 \N 58483 5 0030634 \N 58484 3 11607093 \N 58485 5 0045818 \N 58486 5 0060379 \N 58487 5 0061209 \N 58488 5 0070237 \N 58489 5 0032011 \N 58490 5 0031269 \N 58491 5 0035493 \N 58492 3 10872468 \N 58493 5 0030641 \N 58494 5 0075267 \N 58495 5 0043248 \N 58496 3 10872471 \N 58497 5 0051023 \N 58498 5 0002830 \N 58499 5 0044254 \N 58500 5 0051146 \N 58501 5 0035700 \N 58502 3 12271471 \N 58503 5 0030317 \N 58504 5 0008592 \N 58505 5 0003369 \N 58506 5 0032207 \N 58507 5 0051956 \N 58508 5 0002005 \N 58509 5 0006635 \N 58510 5 0060019 \N 58511 5 0006923 \N 58512 5 0031149 \N 58513 5 0010974 \N 58514 5 0071435 \N 58515 5 0031125 \N 58516 5 0002403 \N 58517 3 16551263 \N 58518 5 0090337 \N 58519 5 0006311 \N 58520 5 0061041 \N 58521 5 0043382 \N 58522 5 0052568 \N 58523 5 0061157 \N 58524 5 0051349 \N 58525 5 0032318 \N 58526 5 0006229 \N 58527 5 0060543 \N 58528 5 0046381 \N 58529 5 0002637 \N 58530 5 0035822 \N 58531 3 17846636 \N 58532 5 0072015 \N 58533 5 0032352 \N 58534 5 0006070 \N 58535 5 0006982 \N 58536 3 10944149 \N 58537 5 0032609 \N 58538 5 0033043 \N 58539 5 0001880 \N 58540 3 12368913 \N 58541 5 0060573 \N 58542 5 0003046 \N 58543 5 0032480 \N 58544 5 0018300 \N 58545 89 AA0226 \N 58546 5 0006189 \N 58547 5 0032938 \N 58548 5 0009891 \N 58549 5 0060605 \N 58550 5 0010109 \N 58551 5 0060726 \N 58552 5 0003233 \N 58553 5 0003191 \N 58554 5 0051839 \N 58555 5 0045583 \N 58556 5 2001017 \N 58557 5 0010111 \N 58558 5 0042374 \N 58559 5 0002650 \N 58560 5 0061096 \N 58561 5 0019302 \N 58562 5 0052572 \N 58563 5 0046437 \N 58564 5 0046940 \N 58565 5 0045464 \N 58566 5 0003352 \N 58567 5 0002671 \N 58568 5 0002783 \N 58569 5 0060068 \N 58570 5 0070434 \N 58571 5 0019273 \N 58572 5 0019311 \N 58573 5 0042660 \N 58574 5 0006188 \N 58575 5 0002255 \N 58576 5 0006584 \N 58577 5 0008284 \N 58578 5 0002770 \N 58579 3 15258309 \N 58580 5 0007065 \N 58581 5 0045734 \N 58582 5 0044056 \N 58583 5 0002555 \N 58584 3 9117517 \N 58585 5 0046668 \N 58586 5 0018212 \N 58587 5 2000158 \N 58588 5 0019675 \N 58589 5 0032122 \N 58590 3 10503189 \N 58591 3 6414830 \N 58592 5 0019482 \N 58593 5 0051873 \N 58594 5 0042667 \N 58595 5 0003111 \N 58596 5 0009395 \N 58597 5 0060195 \N 58598 5 0016125 \N 58599 5 0070665 \N 58600 5 0051703 \N 58601 5 0006877 \N 58602 5 0045974 \N 58603 5 0090365 \N 58604 3 14559896 \N 58605 5 0018216 \N 58606 5 0018017 \N 58607 5 0003008 \N 58608 5 0002467 \N 58609 5 0090246 \N 58610 5 0048036 \N 58611 3 12490252 \N 58612 5 0050828 \N 58613 5 0048133 \N 58614 5 0014839 \N 58615 5 0020013 \N 58616 3 19467172 \N 58617 3 21305024 \N 58618 5 0051216 \N 58619 5 0031494 \N 58620 5 0070198 \N 58621 5 0035831 \N 58622 5 0060790 \N 58623 5 0006491 \N 58624 5 0006492 \N 58625 3 12736198 \N 58626 5 0031671 \N 58627 5 0010778 \N 58628 5 0021877 \N 58629 5 0060885 \N 58630 5 0046192 \N 58631 5 0003216 \N 58632 5 0046591 \N 58633 5 0010681 \N 58634 5 0070798 \N 58635 5 0044147 \N 58636 5 0045344 \N 58637 5 0000425 \N 58638 5 0014869 \N 58639 5 0034166 \N 58640 5 0010769 \N 58641 5 0051984 \N 58642 5 0070222 \N 58643 5 0051231 \N 58644 5 0018946 \N 58645 5 0043696 \N 58646 5 0070709 \N 58647 5 0002858 \N 58648 5 0043954 \N 58649 5 0072476 \N 58650 5 0007567 \N 58651 5 0035687 \N 58652 5 0050821 \N 58653 5 0090229 \N 58654 5 0070659 \N 58655 5 0034621 \N 58656 5 0019579 \N 58657 5 0051115 \N 58658 5 0072139 \N 58659 5 0070484 \N 58660 5 0048013 \N 58661 5 0002659 \N 58662 5 0021521 \N 58663 5 0009264 \N 58664 5 0001928 \N 58665 5 0032964 \N 58666 5 0052140 \N 58667 5 0010145 \N 58668 5 0071308 \N 58669 5 0010556 \N 58670 5 2000451 \N 58671 5 2000411 \N 58672 5 0031439 \N 58673 5 0040008 \N 58674 5 0043419 \N 58675 5 0070100 \N 58676 5 0051693 \N 58677 5 2000602 \N 58678 5 0044133 \N 58679 5 0009972 \N 58680 5 0090078 \N 58681 5 0030471 \N 58682 5 0007102 \N 58683 5 0052554 \N 58684 5 0033216 \N 58685 5 0014855 \N 58686 5 0003057 \N 58687 5 0035464 \N 58688 5 0014745 \N 58689 5 0031566 \N 58690 5 0072086 \N 58691 5 0072083 \N 58692 5 0032079 \N 58693 5 0006801 \N 58694 5 0051158 \N 58695 5 0000470 \N 58696 5 0015987 \N 58697 5 0061128 \N 58698 5 0010450 \N 58699 5 0052281 \N 58700 5 0048596 \N 58701 5 0019460 \N 58702 5 0034036 \N 58703 5 0019918 \N 58704 5 0042572 \N 58705 5 0022606 \N 58706 5 0061307 \N 58707 3 19705442 \N 58708 5 2000978 \N 58709 5 0048507 \N 58710 5 2000608 \N 58711 5 0046289 \N 58712 5 0033666 \N 58713 5 0018154 \N 58714 5 0019446 \N 58715 5 0042523 \N 58716 5 2000316 \N 58717 5 0009665 \N 58718 5 0030336 \N 58719 5 0070473 \N 58720 5 0045699 \N 58721 5 0043400 \N 58722 5 0006042 \N 58723 5 0048548 \N 58724 5 0006324 \N 58725 3 9990026 \N 58726 5 0061204 \N 58727 5 0046466 \N 58728 5 0042842 \N 58729 5 0045704 \N 58730 5 0015897 \N 58731 5 0051822 \N 58732 5 0048056 \N 58733 5 0021583 \N 58734 5 0048082 \N 58735 5 0042986 \N 58736 5 0075324 \N 58737 5 0006164 \N 58738 5 0019507 \N 58739 5 0009310 \N 58740 5 0051658 \N 58741 5 0001952 \N 58742 5 0071892 \N 58743 3 10606877 \N 58744 3 15634265 \N 58745 3 20180901 \N 58746 5 0034085 \N 58747 5 0060631 \N 58748 5 0010323 \N 58749 3 16531478 \N 58750 5 0018315 \N 58751 5 0042041 \N 58752 5 0061058 \N 58753 5 0075016 \N 58754 5 0005988 \N 58755 5 0048282 \N 58756 3 9553044 \N 58757 5 0071680 \N 58758 5 0048633 \N 58759 5 0032727 \N 58760 5 0061323 \N 58761 5 0042463 \N 58762 5 0001749 \N 58763 3 11542766 \N 58764 5 0019407 \N 58765 5 0015749 \N 58766 5 0019351 \N 58767 5 0007174 \N 58768 3 2985587 \N 58769 5 0019263 \N 58770 5 0051589 \N 58771 5 0031408 \N 58772 3 11960741 \N 58773 5 0002342 \N 58774 5 0006709 \N 58775 5 0071240 \N 58776 5 0031285 \N 58777 5 0061076 \N 58778 5 0006750 \N 58779 88 16856 \N 58780 5 0060917 \N 58781 5 0061311 \N 58782 5 0071394 \N 58783 5 2000488 \N 58784 5 0052156 \N 58785 5 0042133 \N 58786 5 0010612 \N 58787 5 2000007 \N 58788 5 0075238 \N 58789 5 0019129 \N 58790 5 0018093 \N 58791 5 0018375 \N 58792 89 AA0197 \N 58793 5 0001578 \N 58794 5 0002812 \N 58795 5 2000072 \N 58796 5 0072366 \N 58797 5 0070172 \N 58798 5 0072092 \N 58799 5 0007252 \N 58800 5 0051017 \N 58801 5 0045011 \N 58802 5 0007115 \N 58803 5 2000324 \N 58804 5 0071888 \N 58805 91 0000235 \N 58806 5 0000731 \N 58807 5 0019390 \N 58808 5 0061086 \N 58809 5 0010868 \N 58810 5 0044113 \N 58811 5 0018990 \N 58812 5 0043206 \N 58813 5 0010904 \N 58814 5 0035990 \N 58815 91 0000388 \N 58816 5 0007579 \N 58817 5 0032188 \N 58818 5 0018335 \N 58819 5 0009584 \N 58820 5 0043108 \N 58821 5 0033136 \N 58822 5 0018240 \N 58823 89 AA0152 \N 58824 5 0030327 \N 58825 5 0003305 \N 58826 5 0046089 \N 58827 5 0002294 \N 58828 5 0033340 \N 58829 5 0019068 \N 58830 5 0051853 \N 58831 5 0015914 \N 58832 5 0030208 \N 58833 5 0033866 \N 58834 5 0072594 \N 58835 5 0048741 \N 58836 5 0021565 \N 58837 5 0035420 \N 58838 5 0001890 \N 58839 5 0071524 \N 58840 88 21860 \N 58841 3 17204561 \N 58842 5 0050778 \N 58843 5 0009076 \N 58844 5 0044092 \N 58845 5 0009146 \N 58846 5 0015884 \N 58847 5 0072303 \N 58848 5 0003243 \N 58849 3 14709543 \N 58850 5 0034337 \N 58851 3 10393192 \N 58852 5 0045604 \N 58853 5 0032799 \N 58854 5 0018288 \N 58855 89 AA0140 \N 58856 5 0021788 \N 58857 5 0060990 \N 58858 5 0010950 \N 58859 5 0003126 \N 58860 5 0014914 \N 58861 5 0007558 \N 58862 5 0090153 \N 58863 5 0031111 \N 58864 5 2000241 \N 58865 5 0072037 \N 58866 5 0072030 \N 58867 5 0051260 \N 58868 5 0071651 \N 58869 5 0048933 \N 58870 5 0032265 \N 58871 5 0055050 \N 58872 5 0010563 \N 58873 5 0048210 \N 58874 5 0039511 \N 58875 5 0048400 \N 58876 5 0060758 \N 58877 5 0032543 \N 58878 5 0051335 \N 58879 5 0015765 \N 58880 88 55507 \N 58881 5 0003370 \N 58882 5 0072223 \N 58883 5 0070959 \N 58884 5 0032251 \N 58885 5 0045927 \N 58886 5 0018979 \N 58887 5 0060122 \N 58888 5 0007243 \N 58889 5 0048932 \N 58890 5 0072583 \N 58891 5 0014836 \N 58892 5 0052404 \N 58893 5 0046838 \N 58894 5 0015678 \N 58895 5 0071495 \N 58896 5 0046178 \N 58897 5 0045747 \N 58898 5 0060127 \N 58899 5 0051316 \N 58900 5 0045765 \N 58901 5 0001542 \N 58902 5 2000376 \N 58903 5 0015889 \N 58904 5 0060734 \N 58905 5 2000686 \N 58906 5 0080128 \N 58907 102 0005010 \N 58908 5 0018936 \N 58909 5 0002799 \N 58910 5 0010379 \N 58911 124 PWY-5271 \N 58912 5 0033575 \N 58913 5 0018164 \N 58914 89 AA0255 \N 58915 5 2000599 \N 58916 5 0060399 \N 58917 5 0072653 \N 58918 5 0044282 \N 58919 5 0044246 \N 58920 5 0017158 \N 58921 5 0010787 \N 58922 5 2000491 \N 58923 5 0048219 \N 58924 5 0052697 \N 58925 3 20056724 \N 58926 5 0034614 \N 58927 5 0047497 \N 58928 5 0019609 \N 58929 5 0045317 \N 58930 5 0019056 \N 58931 5 0043972 \N 58932 5 2000682 \N 58933 5 0002365 \N 58934 5 0070966 \N 58935 3 16554824 \N 58936 5 0003205 \N 58937 5 0070879 \N 58938 5 0048681 \N 58939 5 0018230 \N 58940 89 AA0106 \N 58941 5 0046797 \N 58942 3 10627558 \N 58943 5 0006553 \N 58944 5 0006793 \N 58945 5 2000874 \N 58946 5 2000068 \N 58947 5 0007542 \N 58948 5 0006151 \N 58949 5 0030963 \N 58950 3 10978343 \N 58951 89 AA0370 \N 58952 5 0052243 \N 58953 5 0045971 \N 58954 5 0021660 \N 58955 5 0035130 \N 58956 5 0034411 \N 58957 5 0051617 \N 58958 5 0034346 \N 58959 5 0071811 \N 58960 5 0048901 \N 58961 5 0006231 \N 58962 5 0042770 \N 58963 5 0021549 \N 58964 5 0023055 \N 58965 5 0060911 \N 58966 5 0051593 \N 58967 5 0033299 \N 58968 5 0006942 \N 58969 5 0010807 \N 58970 5 0032495 \N 58971 5 0003051 \N 58972 5 0070809 \N 58973 5 0010275 \N 58974 5 0014717 \N 58975 5 0060973 \N 58976 5 0003136 \N 58977 3 19862329 \N 58978 5 0014909 \N 58979 5 0035076 \N 58980 5 0018245 \N 58981 5 0008584 \N 58982 5 0035396 \N 58983 5 0046391 \N 58984 5 0030576 \N 58985 3 11031238 \N 58986 5 0019511 \N 58987 5 0006472 \N 58988 5 0019292 \N 58989 5 0030239 \N 58990 5 0021625 \N 58991 5 0060723 \N 58992 5 0015709 \N 58993 5 0060921 \N 58994 5 0008216 \N 58995 5 0002502 \N 58996 5 2000568 \N 58997 5 0006650 \N 58998 5 0006652 \N 58999 5 0015975 \N 59000 5 0001552 \N 59001 5 0071205 \N 59002 5 0010828 \N 59003 5 0019399 \N 59004 87 CYCLOHEXANOL-OXIDATION-PWY \N 59005 5 0071779 \N 59006 5 0071282 \N 59007 5 0022032 \N 59008 5 0008089 \N 59009 5 0016555 \N 59010 5 0072665 \N 59011 5 0060498 \N 59012 5 0032787 \N 59013 5 0015859 \N 59014 5 0019561 \N 59015 87 ANAPHENOXI-PWY \N 59016 5 0050703 \N 59017 5 0090108 \N 59018 5 2000430 \N 59019 5 0019884 \N 59020 5 0045115 \N 59021 5 2000188 \N 59022 5 0032525 \N 59023 3 16326386 \N 59024 3 17360776 \N 59025 5 0006120 \N 59026 5 0006203 \N 59027 5 0032367 \N 59028 5 0021559 \N 59029 5 0009116 \N 59030 5 0032652 \N 59031 5 0008624 \N 59032 5 0006117 \N 59033 88 15343 \N 59034 5 0090389 \N 59035 5 0060132 \N 59036 5 0071985 \N 59037 3 17603537 \N 59038 5 0052649 \N 59039 88 16848 \N 59040 5 0051452 \N 59041 5 0042167 \N 59042 5 0033312 \N 59043 87 PWY-5064 \N 59044 5 0042688 \N 59045 5 0018247 \N 59046 89 AA0167 \N 59047 5 2000503 \N 59048 5 0007412 \N 59049 5 0071140 \N 59050 5 0043152 \N 59051 5 0075275 \N 59052 5 0021719 \N 59053 5 0060615 \N 59054 5 0019877 \N 59055 5 0046781 \N 59056 5 0018015 \N 59057 89 AA0065 \N 59058 5 0072384 \N 59059 5 0051610 \N 59060 5 0010192 \N 59061 5 0048622 \N 59062 5 2000714 \N 59063 5 0072634 \N 59064 5 0061218 \N 59065 5 0045475 \N 59066 5 0033545 \N 59067 87 PWY-6555 \N 59068 5 0019540 \N 59069 5 0031189 \N 59070 5 0031190 \N 59071 5 0090145 \N 59072 5 0061384 \N 59073 5 0071770 \N 59074 5 0060666 \N 59075 5 0042968 \N 59076 5 0014823 \N 59077 5 0045912 \N 59078 5 0070462 \N 59079 3 16906145 \N 59080 3 16906148 \N 59081 5 0002626 \N 59082 5 2000180 \N 59083 5 0022411 \N 59084 5 0010256 \N 59085 5 0048299 \N 59086 5 0030803 \N 59087 5 0046208 \N 59088 88 15746 \N 59089 5 0008070 \N 59090 5 0043943 \N 59091 5 0070241 \N 59092 5 0006718 \N 59093 5 2000776 \N 59094 5 0006807 \N 59095 5 0003344 \N 59096 5 2000351 \N 59097 5 0052410 \N 59098 5 0010818 \N 59099 5 0048268 \N 59100 3 11460887 \N 59101 3 11977118 \N 59102 3 9531549 \N 59103 5 0030310 \N 59104 3 9405606 \N 59105 5 0000705 \N 59106 5 0042369 \N 59107 5 0001699 \N 59108 5 0035148 \N 59109 5 0052310 \N 59110 5 0003362 \N 59111 5 0018096 \N 59112 89 AA0204 \N 59113 5 0048925 \N 59114 5 0048308 \N 59115 5 0019488 \N 59116 87 RIBITOLUTIL-PWY \N 59117 5 0045617 \N 59118 5 0090185 \N 59119 5 0045071 \N 59120 5 0015691 \N 59121 5 0030952 \N 59122 5 0009760 \N 59123 5 0072392 \N 59124 5 0002581 \N 59125 5 0045725 \N 59126 5 0048643 \N 59127 5 0006657 \N 59128 87 PWY3O-450 \N 59129 5 0038012 \N 59130 5 0006798 \N 59131 5 0048444 \N 59132 5 0048434 \N 59133 5 2000920 \N 59134 5 0048887 \N 59135 5 0060243 \N 59136 5 0045861 \N 59137 5 0046704 \N 59138 5 0023020 \N 59139 5 0006083 \N 59140 5 0050918 \N 59141 5 0060655 \N 59142 5 0032826 \N 59143 5 0009780 \N 59144 86 0716746840 \N 59145 5 0051141 \N 59146 5 0021514 \N 59147 5 0003252 \N 59148 5 0035815 \N 59149 5 0019590 \N 59150 5 0060951 \N 59151 5 0043555 \N 59152 5 0046529 \N 59153 94 //sdb.bio.purdue.edu/fly/gene/fos4.htm \N 59154 5 0072418 \N 59155 5 0002599 \N 59156 5 0034622 \N 59157 5 0034377 \N 59158 5 0002308 \N 59159 5 0051001 \N 59160 5 0002432 \N 59161 5 0033228 \N 59162 5 0030590 \N 59163 5 0018137 \N 59164 89 AA0241 \N 59165 5 0052296 \N 59166 5 0006436 \N 59167 5 0075179 \N 59168 5 0050865 \N 59169 5 0055022 \N 59170 5 0042100 \N 59171 5 0042114 \N 59172 5 0032342 \N 59173 5 0060950 \N 59174 5 0006146 \N 59175 5 0030320 \N 59176 5 0046063 \N 59177 5 0021632 \N 59178 5 0055092 \N 59179 5 0070317 \N 59180 5 0003289 \N 59181 5 0030002 \N 59182 5 0045655 \N 59183 5 0010218 \N 59184 5 0000203 \N 59185 5 0009619 \N 59186 5 0072145 \N 59187 5 0055057 \N 59188 3 11163136 \N 59189 3 11250167 \N 59190 5 0048381 \N 59191 5 0051330 \N 59192 5 0009779 \N 59193 5 0034587 \N 59194 5 0030730 \N 59195 5 0051223 \N 59196 5 0050920 \N 59197 5 0051205 \N 59198 5 0039006 \N 59199 5 0048848 \N 59200 5 0031150 \N 59201 5 0060256 \N 59202 5 0006043 \N 59203 5 0060966 \N 59204 5 0070681 \N 59205 87 PWY-5921 \N 59206 5 0072213 \N 59207 5 0046231 \N 59208 5 0048465 \N 59209 5 0018032 \N 59210 109 KW-0027 \N 59211 5 0043434 \N 59212 104 Peptide_hormone \N 59213 5 0072458 \N 59214 5 0009409 \N 59215 5 0006371 \N 59216 5 0060984 \N 59217 5 0044071 \N 59218 5 0001798 \N 59219 5 0010754 \N 59220 5 0045003 \N 59221 5 0075285 \N 59222 5 0071218 \N 59223 5 0021604 \N 59224 5 0048206 \N 59225 5 0070265 \N 59226 5 0002072 \N 59227 5 0031144 \N 59228 5 0009650 \N 59229 5 0032677 \N 59230 5 0046946 \N 59231 115 1029 \N 59232 5 0075218 \N 59233 5 0050848 \N 59234 5 0031650 \N 59235 5 0006108 \N 59236 5 0016925 \N 59237 5 0006485 \N 59238 5 0016927 \N 59239 5 0001982 \N 59240 5 0042779 \N 59241 5 0060741 \N 59242 5 0042400 \N 59243 5 0021532 \N 59244 5 0052702 \N 59245 5 0061036 \N 59246 5 0060733 \N 59247 5 0018198 \N 59248 5 0046238 \N 59249 5 0019222 \N 59250 5 0045693 \N 59251 5 0010548 \N 59252 3 17416733 \N 59253 5 0014045 \N 59254 5 0010375 \N 59255 5 2000960 \N 59256 5 2000708 \N 59257 5 0006626 \N 59258 5 0043681 \N 59259 5 0032863 \N 59260 5 0050878 \N 59261 5 0070712 \N 59262 5 0030831 \N 59263 5 0051446 \N 59264 5 0097067 \N 59265 5 0016243 \N 59266 5 0002909 \N 59267 5 0006937 \N 59268 5 0009866 \N 59269 5 0032623 \N 59270 5 0035981 \N 59271 91 0002673 \N 59272 3 3393851 \N 59273 5 0009296 \N 59274 5 2000772 \N 59275 5 0019937 \N 59276 5 0003325 \N 59277 5 0001185 \N 59278 5 0018360 \N 59279 5 0018384 \N 59280 89 AA0271 \N 59281 5 0003394 \N 59282 5 0071544 \N 59283 5 0018874 \N 59284 5 0060754 \N 59285 5 0023011 \N 59286 5 0046551 \N 59287 5 0006654 \N 59288 5 0032976 \N 59289 3 9843949 \N 59290 5 0075252 \N 59291 5 0060594 \N 59292 5 0070475 \N 59293 5 0035875 \N 59294 5 0071974 \N 59295 5 0019431 \N 59296 5 0071271 \N 59297 88 28885 \N 59298 5 0016525 \N 59299 5 0016112 \N 59300 5 0007223 \N 59301 5 0009635 \N 59302 5 0052173 \N 59303 5 0034486 \N 59304 5 0002483 \N 59305 5 2000341 \N 59306 5 0010932 \N 59307 5 0051246 \N 59308 5 0050924 \N 59309 5 0044210 \N 59310 3 11912132 \N 59311 3 18439916 \N 59312 5 0060775 \N 59313 5 0072438 \N 59314 5 0003179 \N 59315 5 0019457 \N 59316 5 0071700 \N 59317 5 0017199 \N 59318 89 AA0052 \N 59319 5 0071310 \N 59320 5 0034063 \N 59321 3 17392519 \N 59322 5 0043271 \N 59323 5 0072453 \N 59324 5 0016065 \N 59325 5 0006426 \N 59326 5 0050753 \N 59327 5 0032818 \N 59328 5 0009216 \N 59329 5 0019665 \N 59330 5 0035006 \N 59331 5 0046226 \N 59332 5 0018204 \N 59333 5 0010407 \N 59334 5 0046986 \N 59335 5 0008354 \N 59336 5 0000723 \N 59337 3 11092831 \N 59338 5 0032823 \N 59339 5 2000832 \N 59340 5 0003329 \N 59341 5 0033025 \N 59342 5 0052380 \N 59343 5 0010059 \N 59344 5 0009103 \N 59345 5 0030999 \N 59346 4 jb \N 59347 5 0034092 \N 59348 5 0018339 \N 59349 89 AA0232 \N 59350 5 0045008 \N 59351 5 0002551 \N 59352 3 12789214 \N 59353 3 16448392 \N 59354 5 0090119 \N 59355 5 0016109 \N 59356 5 0046478 \N 59357 5 0018168 \N 59358 5 0032933 \N 59359 5 0035832 \N 59360 88 16777 \N 59361 5 0031551 \N 59362 5 0006127 \N 59363 86 071672009 \N 59364 5 0010390 \N 59365 3 17329563 \N 59366 5 0042690 \N 59367 5 0003158 \N 59368 5 0003316 \N 59369 5 0071644 \N 59370 5 0043280 \N 59371 5 0072609 \N 59372 5 0048861 \N 59373 5 0018189 \N 59374 5 0045779 \N 59375 5 0018267 \N 59376 89 AA0160 \N 59377 5 0010824 \N 59378 5 0006024 \N 59379 5 0075111 \N 59380 5 0070120 \N 59381 5 0035155 \N 59382 5 0006987 \N 59383 5 0018050 \N 59384 89 AA0097 \N 59385 5 0048092 \N 59386 5 2000852 \N 59387 5 0048841 \N 59388 5 0050869 \N 59389 5 0019598 \N 59390 5 0043104 \N 59391 5 0010205 \N 59392 3 12068126 \N 59393 5 0046204 \N 59394 5 0051145 \N 59395 5 0017139 \N 59396 5 0045570 \N 59397 5 0035894 \N 59398 3 11453648 \N 59399 3 18804547 \N 59400 5 0021687 \N 59401 5 0046171 \N 59402 5 0080113 \N 59403 5 0034182 \N 59404 5 2000944 \N 59405 5 0046314 \N 59406 5 0051179 \N 59407 5 0010057 \N 59408 5 0003418 \N 59409 5 0031016 \N 59410 5 0005991 \N 59411 5 0044067 \N 59412 5 0015991 \N 59413 5 0010166 \N 59414 5 0080186 \N 59415 102 0007134 \N 59416 5 0002730 \N 59417 5 0002098 \N 59418 5 0080052 \N 59419 5 0090211 \N 59420 5 0046033 \N 59421 5 0034126 \N 59422 5 0002260 \N 59423 3 15826826 \N 59424 3 16319493 \N 59425 3 16551252 \N 59426 3 16551262 \N 59427 5 0035137 \N 59428 5 0006315 \N 59429 5 0030203 \N 59430 5 0030879 \N 59431 3 9576833 \N 59432 5 0042034 \N 59433 89 AA0318 \N 59434 5 0042228 \N 59435 5 0010482 \N 59436 5 0019344 \N 59437 5 0042938 \N 59438 88 46761 \N 59439 5 0072066 \N 59440 5 0072234 \N 59441 5 0014052 \N 59442 5 0075113 \N 59443 5 0021813 \N 59444 5 0009956 \N 59445 5 0050883 \N 59446 5 0031887 \N 59447 3 9491895 \N 59448 5 0060936 \N 59449 5 0046724 \N 59450 5 0072021 \N 59451 5 0007073 \N 59452 5 0055113 \N 59453 5 0075028 \N 59454 5 0042121 \N 59455 5 0010501 \N 59456 3 17169986 \N 59457 5 0001773 \N 59458 5 0046126 \N 59459 5 0042076 \N 59460 3 7499424 \N 59461 5 0030397 \N 59462 5 0019326 \N 59463 5 0009372 \N 59464 3 15716452 \N 59465 3 8288518 \N 59466 5 0048561 \N 59467 5 0007265 \N 59468 5 0019454 \N 59469 5 0031495 \N 59470 5 0002156 \N 59471 5 0060536 \N 59472 5 0043473 \N 59473 5 0060294 \N 59474 5 0010433 \N 59475 5 0051633 \N 59476 5 0035141 \N 59477 5 0043928 \N 59478 5 0070510 \N 59479 5 0060360 \N 59480 5 0052219 \N 59481 5 0010981 \N 59482 5 0032883 \N 59483 5 0016568 \N 59484 5 0014902 \N 59485 5 0035557 \N 59486 5 0010469 \N 59487 5 0075250 \N 59488 5 0060276 \N 59489 5 0045395 \N 59490 5 0032596 \N 59491 5 0046884 \N 59492 5 0043984 \N 59493 5 0070952 \N 59494 5 0061288 \N 59495 5 0002707 \N 59496 5 0046711 \N 59497 5 0048579 \N 59498 5 0070946 \N 59499 5 0052474 \N 59500 5 0070593 \N 59501 3 17482551 \N 59502 5 0003162 \N 59503 5 0035191 \N 59504 5 0052200 \N 59505 5 0002333 \N 59506 5 0050799 \N 59507 5 2001006 \N 59508 5 0031400 \N 59509 5 0051626 \N 59510 5 0022036 \N 59511 5 0032436 \N 59512 5 0051815 \N 59513 5 0060339 \N 59514 5 0010107 \N 59515 5 0014828 \N 59516 94 //biology.about.com \N 59517 5 0002511 \N 59518 5 0001897 \N 59519 5 0010067 \N 59520 5 0009900 \N 59521 5 0048357 \N 59522 5 0010381 \N 59523 3 17215364 \N 59524 5 0042751 \N 59525 94 //www.wikipedia.org/Estivation \N 59526 3 12443930 \N 59527 5 0050665 \N 59528 5 0032690 \N 59529 5 0007351 \N 59530 5 2000052 \N 59531 5 0042365 \N 59532 5 0048105 \N 59533 5 0045559 \N 59534 5 0061294 \N 59535 5 0019329 \N 59536 87 PWY-2242 \N 59537 5 0009813 \N 59538 5 0072191 \N 59539 5 0043017 \N 59540 5 0075233 \N 59541 5 0060784 \N 59542 5 0070208 \N 59543 5 0006634 \N 59544 5 0010541 \N 59545 3 10677441 \N 59546 5 0018270 \N 59547 89 AA0163 \N 59548 5 0035617 \N 59549 5 0072231 \N 59550 5 0060185 \N 59551 5 0048559 \N 59552 5 0020028 \N 59553 5 0009183 \N 59554 5 0045333 \N 59555 5 0014814 \N 59556 5 0021610 \N 59557 5 0052340 \N 59558 5 0048913 \N 59559 5 0072689 \N 59560 3 21813639 \N 59561 5 0000764 \N 59562 5 0060548 \N 59563 5 0035458 \N 59564 5 0007084 \N 59565 5 0045578 \N 59566 5 0042707 \N 59567 5 0018053 \N 59568 89 AA0100 \N 59569 5 2000208 \N 59570 5 0071472 \N 59571 5 0002676 \N 59572 5 0009198 \N 59573 5 0014830 \N 59574 100 0000706 \N 59575 101 A07.231.114.060 \N 59576 5 0070298 \N 59577 5 0043213 \N 59578 5 2000849 \N 59579 5 0051955 \N 59580 5 0035890 \N 59581 5 0044047 \N 59582 5 0006038 \N 59583 5 0070303 \N 59584 5 0052375 \N 59585 5 0031447 \N 59586 5 0071332 \N 59587 5 0019619 \N 59588 5 0072462 \N 59589 5 0003263 \N 59590 5 2000938 \N 59591 5 0042963 \N 59592 5 0007287 \N 59593 5 0009231 \N 59594 5 2000901 \N 59595 5 0043061 \N 59596 3 10809666 \N 59597 5 0033085 \N 59598 5 0071343 \N 59599 5 0009202 \N 59600 5 0001836 \N 59601 86 0721639976 \N 59602 3 12925707 \N 59603 3 9560217 \N 59604 5 0060625 \N 59605 5 0003131 \N 59606 5 0008333 \N 59607 5 0030926 \N 59608 5 0003433 \N 59609 5 0072680 \N 59610 5 0045066 \N 59611 5 0001795 \N 59612 5 0016079 \N 59613 5 0043458 \N 59614 5 0034294 \N 59615 5 0060693 \N 59616 5 0010391 \N 59617 5 2000477 \N 59618 5 0070459 \N 59619 5 0042902 \N 59620 89 AA0345 \N 59621 5 0060671 \N 59622 5 0031947 \N 59623 5 0019436 \N 59624 5 2000305 \N 59625 5 0045532 \N 59626 5 0048265 \N 59627 5 0048267 \N 59628 94 //www.wikipedia.org/Pain \N 59629 3 10203867 \N 59630 3 12723742 \N 59631 3 12843304 \N 59632 5 0072029 \N 59633 5 0031070 \N 59634 5 0043310 \N 59635 5 0046189 \N 59636 5 0010131 \N 59637 5 0010414 \N 59638 5 0043455 \N 59639 5 0010978 \N 59640 5 0035666 \N 59641 5 0043903 \N 59642 5 0009731 \N 59643 5 0048165 \N 59644 5 0045995 \N 59645 5 0000092 \N 59646 5 0002276 \N 59647 5 0070928 \N 59648 5 0090059 \N 59649 5 0009177 \N 59650 5 0021587 \N 59651 5 0051133 \N 59652 5 0051759 \N 59653 5 0075001 \N 59654 5 0075304 \N 59655 5 0046330 \N 59656 5 0075295 \N 59657 5 0042796 \N 59658 5 0048670 \N 59659 5 0006005 \N 59660 5 0060386 \N 59661 5 0090356 \N 59662 5 0071032 \N 59663 5 0002445 \N 59664 5 0002417 \N 59665 5 0010065 \N 59666 5 0075005 \N 59667 5 0090240 \N 59668 5 0031136 \N 59669 5 0033526 \N 59670 87 PWY-5188 \N 59671 5 0016054 \N 59672 5 2000459 \N 59673 5 0043612 \N 59674 5 0000055 \N 59675 5 0000057 \N 59676 5 2000409 \N 59677 5 0001815 \N 59678 5 0072272 \N 59679 5 0031063 \N 59680 5 0043503 \N 59681 5 0071654 \N 59682 5 0021977 \N 59683 5 0050860 \N 59684 5 0030163 \N 59685 5 0019709 \N 59686 89 AA0310 \N 59687 5 0031101 \N 59688 5 0006620 \N 59689 5 0085021 \N 59690 5 0060008 \N 59691 5 0010536 \N 59692 5 0051006 \N 59693 5 0052076 \N 59694 5 0033385 \N 59695 87 PWY-5120 \N 59696 5 0032950 \N 59697 5 0002357 \N 59698 5 0035337 \N 59699 5 0000957 \N 59700 5 0032483 \N 59701 5 0075343 \N 59702 5 0031289 \N 59703 5 0048511 \N 59704 5 0031936 \N 59705 5 0006345 \N 59706 5 0061250 \N 59707 5 0043935 \N 59708 5 0001109 \N 59709 5 0071842 \N 59710 5 0016572 \N 59711 5 0015842 \N 59712 5 0008213 \N 59713 5 0001305 \N 59714 5 0019684 \N 59715 94 //www.arabidopsis.org \N 59716 5 0042786 \N 59717 5 0043157 \N 59718 5 0010832 \N 59719 5 0015860 \N 59720 5 0046548 \N 59721 5 0021825 \N 59722 5 0071677 \N 59723 5 0050804 \N 59724 5 0042205 \N 59725 5 0035433 \N 59726 5 0046308 \N 59727 5 0021621 \N 59728 5 0015755 \N 59729 5 0046750 \N 59730 5 0046125 \N 59731 5 0009236 \N 59732 5 0046361 \N 59733 5 0048873 \N 59734 5 0035735 \N 59735 5 0015772 \N 59736 5 0071384 \N 59737 5 0060711 \N 59738 5 0060045 \N 59739 5 0002045 \N 59740 5 0045553 \N 59741 5 0034178 \N 59742 5 0010083 \N 59743 5 0006978 \N 59744 3 10967424 \N 59745 5 0001930 \N 59746 5 0061226 \N 59747 5 0043967 \N 59748 5 0052510 \N 59749 5 0009258 \N 59750 5 0060326 \N 59751 5 0046282 \N 59752 5 0033477 \N 59753 5 0042396 \N 59754 5 0035768 \N 59755 5 0045802 \N 59756 5 0043640 \N 59757 87 PWY-2503 \N 59758 5 0051925 \N 59759 5 2000226 \N 59760 5 0061215 \N 59761 5 0061166 \N 59762 5 0001866 \N 59763 5 0035534 \N 59764 5 0009602 \N 59765 5 0051191 \N 59766 5 0034421 \N 59767 5 0040012 \N 59768 5 0006550 \N 59769 5 0007023 \N 59770 3 10542094 \N 59771 5 0050961 \N 59772 5 0007602 \N 59773 5 0035176 \N 59774 3 12848939 \N 59775 5 0035385 \N 59776 5 0009719 \N 59777 5 0045752 \N 59778 5 0035377 \N 59779 5 0032912 \N 59780 5 0060716 \N 59781 5 0046328 \N 59782 5 0033536 \N 59783 5 0035683 \N 59784 5 0051472 \N 59785 5 0060838 \N 59786 5 0052721 \N 59787 3 19401441 \N 59788 5 0010709 \N 59789 5 0043415 \N 59790 5 0032380 \N 59791 5 0075085 \N 59792 5 0043691 \N 59793 3 7751809 \N 59794 5 0033339 \N 59795 5 0044120 \N 59796 5 0032273 \N 59797 5 0019417 \N 59798 87 FESULFOX-PWY \N 59799 5 0061181 \N 59800 5 0010942 \N 59801 5 0000463 \N 59802 5 0001195 \N 59803 5 0071605 \N 59804 5 0075248 \N 59805 5 0052068 \N 59806 5 0007358 \N 59807 5 0060645 \N 59808 5 0046133 \N 59809 5 0031547 \N 59810 5 0018930 \N 59811 5 0010960 \N 59812 5 0007318 \N 59813 5 0048115 \N 59814 5 0034224 \N 59815 5 0061017 \N 59816 3 15226394 \N 59817 5 0051716 \N 59818 5 0051491 \N 59819 5 0032959 \N 59820 88 25450 \N 59821 5 0045768 \N 59822 5 0043688 \N 59823 3 9789001 \N 59824 5 0070544 \N 59825 3 19061644 \N 59826 5 0050723 \N 59827 5 0045854 \N 59828 5 0031540 \N 59829 5 0019736 \N 59830 89 AA0063 \N 59831 5 0045080 \N 59832 5 0019628 \N 59833 5 0033080 \N 59834 5 0046960 \N 59835 5 0032330 \N 59836 5 0051790 \N 59837 5 0034208 \N 59838 5 0010124 \N 59839 5 0045987 \N 59840 5 0034415 \N 59841 5 0035407 \N 59842 5 0060676 \N 59843 5 0021880 \N 59844 5 0008090 \N 59845 5 0019678 \N 59846 5 0060263 \N 59847 5 0031922 \N 59848 5 0051927 \N 59849 5 0045932 \N 59850 5 0030711 \N 59851 5 0019634 \N 59852 5 0045231 \N 59853 5 0034266 \N 59854 5 2000576 \N 59855 5 0055013 \N 59856 5 0042535 \N 59857 5 0052158 \N 59858 5 0002729 \N 59859 5 0045017 \N 59860 5 0090191 \N 59861 5 0052495 \N 59862 5 0021978 \N 59863 5 0002174 \N 59864 3 15987436 \N 59865 5 0030913 \N 59866 3 14715942 \N 59867 5 0002229 \N 59868 5 0010036 \N 59869 5 0010104 \N 59870 5 0035852 \N 59871 91 0000745 \N 59872 3 18094249 \N 59873 5 0032712 \N 59874 5 0042884 \N 59875 5 0032370 \N 59876 5 0019101 \N 59877 5 2000946 \N 59878 5 0007092 \N 59879 5 0035349 \N 59880 5 0002668 \N 59881 5 0009683 \N 59882 5 0000017 \N 59883 5 0072184 \N 59884 5 0052335 \N 59885 5 0051299 \N 59886 5 0009064 \N 59887 5 2000814 \N 59888 5 0045221 \N 59889 5 0048817 \N 59890 5 0048175 \N 59891 5 0002234 \N 59892 5 0052209 \N 59893 5 0033375 \N 59894 5 0071717 \N 59895 88 26995 \N 59896 5 0042777 \N 59897 5 0002565 \N 59898 5 0021561 \N 59899 5 0032042 \N 59900 5 0018125 \N 59901 89 AA0234 \N 59902 5 0032893 \N 59903 5 2000128 \N 59904 5 0010460 \N 59905 5 0052043 \N 59906 5 0050913 \N 59907 5 0035016 \N 59908 5 0061046 \N 59909 5 0030457 \N 59910 5 0002389 \N 59911 5 2000967 \N 59912 5 0014075 \N 59913 88 32952 \N 59914 5 0032231 \N 59915 5 0072247 \N 59916 5 0048747 \N 59917 5 0052087 \N 59918 5 0016351 \N 59919 5 0018357 \N 59920 5 0018383 \N 59921 5 0045596 \N 59922 5 0046362 \N 59923 5 0090344 \N 59924 5 0018311 \N 59925 89 AA0236 \N 59926 5 0050907 \N 59927 5 0031323 \N 59928 5 0055026 \N 59929 5 0030845 \N 59930 5 0007230 \N 59931 5 0061270 \N 59932 5 0021865 \N 59933 5 0033476 \N 59934 87 PWY-1741 \N 59935 5 0035017 \N 59936 5 2000899 \N 59937 5 0046273 \N 59938 5 0000912 \N 59939 5 0018342 \N 59940 5 0018346 \N 59941 5 0021594 \N 59942 5 0032298 \N 59943 5 0010955 \N 59944 5 0016239 \N 59945 5 0080037 \N 59946 3 14973166 \N 59947 5 0044106 \N 59948 5 0071156 \N 59949 5 0018208 \N 59950 5 0042952 \N 59951 3 8905091 \N 59952 5 0042862 \N 59953 5 0072116 \N 59954 5 0017157 \N 59955 5 0032147 \N 59956 5 0045184 \N 59957 5 0051093 \N 59958 5 0010454 \N 59959 5 0015009 \N 59960 5 0035739 \N 59961 5 0032684 \N 59962 5 0033121 \N 59963 5 0090170 \N 59964 5 0009659 \N 59965 5 0010924 \N 59966 5 0070293 \N 59967 5 0042682 \N 59968 5 0042681 \N 59969 5 0070109 \N 59970 5 0032479 \N 59971 5 0001408 \N 59972 5 0006971 \N 59973 3 12598593 \N 59974 5 0048341 \N 59975 5 0032331 \N 59976 5 0002616 \N 59977 5 0052488 \N 59978 5 0014011 \N 59979 5 0032189 \N 59980 5 0001655 \N 59981 5 0002824 \N 59982 5 0043067 \N 59983 5 0043070 \N 59984 5 0051901 \N 59985 5 0071505 \N 59986 5 0009246 \N 59987 5 0052099 \N 59988 5 0046056 \N 59989 5 2000869 \N 59990 5 0006220 \N 59991 5 0002158 \N 59992 5 0042713 \N 59993 5 0003032 \N 59994 5 0007199 \N 59995 5 0032511 \N 59996 5 0042316 \N 59997 5 0022621 \N 59998 5 0019402 \N 59999 5 0002720 \N 60000 5 0045493 \N 60001 5 0048550 \N 60002 5 0002239 \N 60003 5 0007043 \N 60004 5 0043631 \N 60005 5 0090274 \N 60006 5 0090256 \N 60007 5 0043089 \N 60008 5 0007483 \N 60009 5 0097053 \N 60010 88 16946 \N 60011 5 0070816 \N 60012 5 0016245 \N 60013 5 0001081 \N 60014 5 0003399 \N 60015 5 0023009 \N 60016 5 0055123 \N 60017 5 0030727 \N 60018 5 0016187 \N 60019 5 0052124 \N 60020 5 0050788 \N 60021 3 10774920 \N 60022 5 2000149 \N 60023 5 0003181 \N 60024 5 0032678 \N 60025 5 0033627 \N 60026 5 0071320 \N 60027 5 0070580 \N 60028 3 19114062 \N 60029 5 0071028 \N 60030 5 0032309 \N 60031 5 0045902 \N 60032 5 0052399 \N 60033 5 0046291 \N 60034 5 0009589 \N 60035 5 0010661 \N 60036 5 0046038 \N 60037 5 0019370 \N 60038 5 0072305 \N 60039 5 2000095 \N 60040 5 0034776 \N 60041 88 18295 \N 60042 5 0019253 \N 60043 5 0051580 \N 60044 5 0021990 \N 60045 5 0019380 \N 60046 5 0031643 \N 60047 5 0052254 \N 60048 5 0010695 \N 60049 5 0051842 \N 60050 5 0030723 \N 60051 5 0030856 \N 60052 5 0070432 \N 60053 5 0052270 \N 60054 5 0060850 \N 60055 5 0046352 \N 60056 5 0007573 \N 60057 5 0045034 \N 60058 5 0043345 \N 60059 5 0043346 \N 60060 5 0061297 \N 60061 5 0003428 \N 60062 5 0039007 \N 60063 5 0038009 \N 60064 3 17011816 \N 60065 5 0051906 \N 60066 5 0046079 \N 60067 5 0016091 \N 60068 5 0035277 \N 60069 3 10491268 \N 60070 5 0060569 \N 60071 5 0052520 \N 60072 5 0019520 \N 60073 5 0007125 \N 60074 5 0030511 \N 60075 5 0090113 \N 60076 5 0035229 \N 60077 3 12954617 \N 60078 5 0046100 \N 60079 5 0021933 \N 60080 5 0002711 \N 60081 5 0051561 \N 60082 5 0043524 \N 60083 5 0006531 \N 60084 5 0080021 \N 60085 3 18753285 \N 60086 5 0001985 \N 60087 5 0061375 \N 60088 5 0052023 \N 60089 5 0021738 \N 60090 5 0015697 \N 60091 5 0015845 \N 60092 5 0001516 \N 60093 5 0015783 \N 60094 5 0090390 \N 60095 5 0001713 \N 60096 5 0021654 \N 60097 5 0046929 \N 60098 5 0035306 \N 60099 5 0048331 \N 60100 5 0006306 \N 60101 5 0002325 \N 60102 3 11698225 \N 60103 5 0009071 \N 60104 5 0045212 \N 60105 5 0019524 \N 60106 5 0051835 \N 60107 5 2000235 \N 60108 5 0007342 \N 60109 5 0051551 \N 60110 5 0006201 \N 60111 5 0003196 \N 60112 5 0048053 \N 60113 5 0010804 \N 60114 5 0043608 \N 60115 5 0035654 \N 60116 5 2000382 \N 60117 5 0014060 \N 60118 5 0072288 \N 60119 5 0052483 \N 60120 5 0001921 \N 60121 5 0060488 \N 60122 5 0075227 \N 60123 5 0032747 \N 60124 5 0060824 \N 60125 5 0052196 \N 60126 5 2001011 \N 60127 5 0002872 \N 60128 5 0060290 \N 60129 5 0032619 \N 60130 5 0034697 \N 60131 5 2000312 \N 60132 5 0000484 \N 60133 5 0016098 \N 60134 5 0051409 \N 60135 3 15925705 \N 60136 5 0080001 \N 60137 3 18266922 \N 60138 5 0018186 \N 60139 5 0001805 \N 60140 5 0009126 \N 60141 5 0034461 \N 60142 3 10704379 \N 60143 5 0071358 \N 60144 5 2000278 \N 60145 5 0034396 \N 60146 5 0035025 \N 60147 5 0007357 \N 60148 5 0050746 \N 60149 5 0072103 \N 60150 5 0030509 \N 60151 5 0015813 \N 60152 5 0052265 \N 60153 5 0042386 \N 60154 91 0000387 \N 60155 3 9550723 \N 60156 5 0075161 \N 60157 5 0043372 \N 60158 5 0014038 \N 60159 5 2000613 \N 60160 5 0007182 \N 60161 5 0048240 \N 60162 3 11820818 \N 60163 5 0021799 \N 60164 5 0032293 \N 60165 5 0030710 \N 60166 5 0002796 \N 60167 5 0019330 \N 60168 88 22307 \N 60169 5 0032805 \N 60170 5 0035239 \N 60171 3 14624839 \N 60172 5 0043385 \N 60173 5 0051629 \N 60174 5 0048737 \N 60175 5 0051969 \N 60176 5 0030214 \N 60177 5 0051352 \N 60178 5 0051688 \N 60179 5 0045608 \N 60180 5 0071463 \N 60181 5 0035702 \N 60182 3 18832716 \N 60183 5 0009769 \N 60184 5 0018325 \N 60185 5 0033485 \N 60186 5 0032023 \N 60187 5 0010223 \N 60188 3 12815068 \N 60189 5 0003108 \N 60190 5 0033323 \N 60191 87 PWY-3561 \N 60192 5 0010021 \N 60193 5 0032458 \N 60194 5 0006996 \N 60195 5 0072059 \N 60196 5 2000013 \N 60197 5 0042251 \N 60198 5 0009759 \N 60199 5 2000983 \N 60200 5 2000799 \N 60201 5 0032629 \N 60202 5 0003392 \N 60203 5 0007382 \N 60204 5 0003335 \N 60205 5 0042739 \N 60206 5 0051546 \N 60207 5 0016039 \N 60208 5 2000590 \N 60209 5 0072673 \N 60210 5 0042176 \N 60211 5 0010386 \N 60212 3 17259263 \N 60213 5 0002681 \N 60214 5 0070935 \N 60215 3 19029303 \N 60216 5 2000129 \N 60217 5 0090163 \N 60218 5 0007011 \N 60219 5 0071107 \N 60220 5 0048448 \N 60221 5 0048426 \N 60222 5 0000193 \N 60223 5 0018257 \N 60224 89 AA0211 \N 60225 5 2000840 \N 60226 5 0021761 \N 60227 5 0061335 \N 60228 5 0021674 \N 60229 5 2000790 \N 60230 5 0017009 \N 60231 5 0031573 \N 60232 5 0009261 \N 60233 5 0090047 \N 60234 5 0035636 \N 60235 5 0048497 \N 60236 3 9090883 \N 60237 5 0001906 \N 60238 5 0046671 \N 60239 5 0007036 \N 60240 5 0034232 \N 60241 5 0080163 \N 60242 3 19407142 \N 60243 5 0046218 \N 60244 5 0019830 \N 60245 5 0021836 \N 60246 5 0009741 \N 60247 5 0002777 \N 60248 5 0072560 \N 60249 5 0032663 \N 60250 5 0043979 \N 60251 5 0071432 \N 60252 5 2001009 \N 60253 5 0021839 \N 60254 5 0007162 \N 60255 5 0042996 \N 60256 5 0035151 \N 60257 3 10887083 \N 60258 3 12930776 \N 60259 3 12973360 \N 60260 5 0044251 \N 60261 5 0042196 \N 60262 5 0021893 \N 60263 5 0006184 \N 60264 5 0002739 \N 60265 5 0031049 \N 60266 5 0006825 \N 60267 5 0061197 \N 60268 5 0003273 \N 60269 5 0034309 \N 60270 5 0018973 \N 60271 5 0002428 \N 60272 5 0046252 \N 60273 5 0042838 \N 60274 5 0071832 \N 60275 5 0048711 \N 60276 5 0030636 \N 60277 5 0048144 \N 60278 5 0051679 \N 60279 125 C03367 \N 60280 115 439991 \N 60281 5 0048150 \N 60282 5 0006021 \N 60283 5 0035123 \N 60284 5 0042246 \N 60285 5 0070131 \N 60286 5 0061124 \N 60287 5 0000766 \N 60288 5 0000226 \N 60289 5 0051385 \N 60290 5 0044274 \N 60291 5 0034171 \N 60292 5 0010901 \N 60293 5 0010476 \N 60294 3 17521411 \N 60295 5 0006597 \N 60296 5 0010812 \N 60297 5 0044036 \N 60298 5 0060146 \N 60299 5 0006367 \N 60300 5 0061051 \N 60301 5 0051359 \N 60302 119 1UIS \N 60303 119 1XQM \N 60304 3 12185250 \N 60305 3 12909624 \N 60306 3 15542608 \N 60307 89 AA0379 \N 60308 5 0072601 \N 60309 5 0042065 \N 60310 5 0071909 \N 60311 5 0006776 \N 60312 5 0019928 \N 60313 89 AA0314 \N 60314 5 0072431 \N 60315 5 2000133 \N 60316 5 0009209 \N 60317 5 0061192 \N 60318 5 0050966 \N 60319 5 0060945 \N 60320 5 0045958 \N 60321 5 0033601 \N 60322 5 0009987 \N 60323 5 0008151 \N 60324 5 0050875 \N 60325 5 0007593 \N 60326 5 0045452 \N 60327 5 0032234 \N 60328 5 0018028 \N 60329 89 AA0078 \N 60330 5 0048483 \N 60331 96 9905 \N 60332 5 0010183 \N 60333 5 0085017 \N 60334 3 18665841 \N 60335 3 8690024 \N 60336 3 9580555 \N 60337 5 0034384 \N 60338 5 0045833 \N 60339 5 0015848 \N 60340 5 0044333 \N 60341 5 0015032 \N 60342 3 10231363 \N 60343 5 0046430 \N 60344 5 0014723 \N 60345 5 0007018 \N 60346 5 0070756 \N 60347 5 0010269 \N 60348 5 0023002 \N 60349 5 0000372 \N 60350 5 0002164 \N 60351 5 0006702 \N 60352 5 0016360 \N 60353 5 0070322 \N 60354 5 0035884 \N 60355 88 22590 \N 60356 5 0042362 \N 60357 5 0048352 \N 60358 5 0051253 \N 60359 5 0045228 \N 60360 5 0002834 \N 60361 5 0075207 \N 60362 5 2000168 \N 60363 5 0019286 \N 60364 5 0060341 \N 60365 5 0021731 \N 60366 5 0021773 \N 60367 5 2000194 \N 60368 5 0040033 \N 60369 5 0097091 \N 60370 3 19900895 \N 60371 5 0035958 \N 60372 3 11024040 \N 60373 3 19686338 \N 60374 5 0032070 \N 60375 5 0018356 \N 60376 5 0018382 \N 60377 5 0034765 \N 60378 5 0051668 \N 60379 5 0022619 \N 60380 5 0072045 \N 60381 5 0007460 \N 60382 5 0007461 \N 60383 5 0050765 \N 60384 5 0034144 \N 60385 5 0070408 \N 60386 5 0046937 \N 60387 5 0046259 \N 60388 5 0071993 \N 60389 5 0048514 \N 60390 5 0090001 \N 60391 5 0052064 \N 60392 5 0048327 \N 60393 5 0002804 \N 60394 5 0008105 \N 60395 5 0000961 \N 60396 5 0072087 \N 60397 5 0035802 \N 60398 5 0052019 \N 60399 5 0010733 \N 60400 5 0045078 \N 60401 5 0048740 \N 60402 5 0002279 \N 60403 5 0045895 \N 60404 5 0003386 \N 60405 5 0035211 \N 60406 3 12679097 \N 60407 5 0097031 \N 60408 5 0031344 \N 60409 5 0071697 \N 60410 5 0032468 \N 60411 5 0051642 \N 60412 5 0003012 \N 60413 5 0001976 \N 60414 5 0033753 \N 60415 5 0070079 \N 60416 5 0002078 \N 60417 5 0052529 \N 60418 5 0030309 \N 60419 5 0030302 \N 60420 5 0006743 \N 60421 5 0045108 \N 60422 5 0090075 \N 60423 3 19996365 \N 60424 5 0010994 \N 60425 5 0019712 \N 60426 5 2000389 \N 60427 5 0046092 \N 60428 5 2000255 \N 60429 5 0045682 \N 60430 5 0006927 \N 60431 99 C04.697.152 \N 60432 5 0019747 \N 60433 5 0071459 \N 60434 5 0050691 \N 60435 5 0042793 \N 60436 5 0090287 \N 60437 5 0035108 \N 60438 5 0050716 \N 60439 5 0044410 \N 60440 5 0080153 \N 60441 3 20399532 \N 60442 5 0003339 \N 60443 5 0045784 \N 60444 5 0006033 \N 60445 5 0060514 \N 60446 5 0014734 \N 60447 5 0072406 \N 60448 5 0019553 \N 60449 5 0046115 \N 60450 5 0006160 \N 60451 5 0007366 \N 60452 5 0034963 \N 60453 5 0006694 \N 60454 5 0002395 \N 60455 5 2000922 \N 60456 5 0019580 \N 60457 5 0021710 \N 60458 5 0009770 \N 60459 5 0032796 \N 60460 3 12714569 \N 60461 3 12787750 \N 60462 5 0071490 \N 60463 5 0070881 \N 60464 5 0010949 \N 60465 5 0006271 \N 60466 5 0060600 \N 60467 5 0043973 \N 60468 5 0031034 \N 60469 5 0007639 \N 60470 5 0040024 \N 60471 5 0006847 \N 60472 5 0075048 \N 60473 5 0042110 \N 60474 5 0071502 \N 60475 5 0001757 \N 60476 5 2000045 \N 60477 5 0071776 \N 60478 5 0072528 \N 60479 5 2000016 \N 60480 5 0006853 \N 60481 5 0071464 \N 60482 5 0010249 \N 60483 5 0008348 \N 60484 5 0042154 \N 60485 5 0042155 \N 60486 5 0061382 \N 60487 3 7821213 \N 60488 5 0090060 \N 60489 5 0031384 \N 60490 5 0033504 \N 60491 5 0071899 \N 60492 5 0007008 \N 60493 5 0070787 \N 60494 5 0075071 \N 60495 5 2000114 \N 60496 5 0072426 \N 60497 5 0072169 \N 60498 5 0071538 \N 60499 5 0031363 \N 60500 5 0060506 \N 60501 5 0001320 \N 60502 5 0046687 \N 60503 5 2000546 \N 60504 5 0045645 \N 60505 5 0042401 \N 60506 5 0046141 \N 60507 5 0071487 \N 60508 5 2000394 \N 60509 5 2000638 \N 60510 5 2000107 \N 60511 5 0031503 \N 60512 5 0060423 \N 60513 5 0003001 \N 60514 5 0019086 \N 60515 5 0071514 \N 60516 5 0014899 \N 60517 5 0010885 \N 60518 5 0043323 \N 60519 5 0042441 \N 60520 5 0046471 \N 60521 5 0090095 \N 60522 5 0045911 \N 60523 5 0030255 \N 60524 5 0071534 \N 60525 112 IPR001293 \N 60526 5 0060087 \N 60527 3 15867178 \N 60528 5 0007235 \N 60529 5 0045469 \N 60530 5 0042714 \N 60531 5 0034197 \N 60532 5 0048347 \N 60533 5 0021697 \N 60534 5 0051556 \N 60535 5 0014847 \N 60536 5 0002758 \N 60537 5 0072650 \N 60538 5 0060751 \N 60539 5 0071391 \N 60540 5 0008588 \N 60541 5 0034192 \N 60542 5 0042727 \N 60543 5 2000036 \N 60544 5 0075180 \N 60545 5 0060819 \N 60546 5 0014711 \N 60547 5 0046895 \N 60548 89 AA0336 \N 60549 5 0072448 \N 60550 5 0030155 \N 60551 5 0075187 \N 60552 5 0034205 \N 60553 5 0042510 \N 60554 5 0018250 \N 60555 89 AA0181 \N 60556 5 0016102 \N 60557 5 0055034 \N 60558 5 0032360 \N 60559 5 0001563 \N 60560 5 0052134 \N 60561 5 0072312 \N 60562 5 0032490 \N 60563 5 2000526 \N 60564 5 0035933 \N 60565 88 24261 \N 60566 5 0007492 \N 60567 5 0043145 \N 60568 3 12773397 \N 60569 5 2000664 \N 60570 5 0009624 \N 60571 5 0021743 \N 60572 5 0046096 \N 60573 5 2000645 \N 60574 5 0060310 \N 60575 5 0046647 \N 60576 5 0007529 \N 60577 5 0002577 \N 60578 5 0070086 \N 60579 3 9409540 \N 60580 5 0002690 \N 60581 5 0050995 \N 60582 5 0021723 \N 60583 5 0032258 \N 60584 3 12865942 \N 60585 3 15659643 \N 60586 5 0010578 \N 60587 5 0060439 \N 60588 5 0009305 \N 60589 5 0031454 \N 60590 5 0048792 \N 60591 5 0051639 \N 60592 5 0075102 \N 60593 5 0046499 \N 60594 5 0052005 \N 60595 5 0044355 \N 60596 5 0048227 \N 60597 5 0042540 \N 60598 5 0020029 \N 60599 5 0052277 \N 60600 5 0019095 \N 60601 5 0048117 \N 60602 5 0030703 \N 60603 5 0016339 \N 60604 5 0045022 \N 60605 5 0002632 \N 60606 5 0045363 \N 60607 5 0075096 \N 60608 5 0035513 \N 60609 5 0035200 \N 60610 5 0044085 \N 60611 5 0044321 \N 60612 5 0033074 \N 60613 5 0090234 \N 60614 5 0051047 \N 60615 5 0033690 \N 60616 5 2000539 \N 60617 5 0030225 \N 60618 5 0055066 \N 60619 5 0039520 \N 60620 5 0046867 \N 60621 5 0021667 \N 60622 5 0003064 \N 60623 5 0042232 \N 60624 5 0007391 \N 60625 3 9224720 \N 60626 5 0006015 \N 60627 5 0007547 \N 60628 5 2000271 \N 60629 5 0045191 \N 60630 5 0071225 \N 60631 5 0030035 \N 60632 5 0001999 \N 60633 5 0015714 \N 60634 5 0046211 \N 60635 5 0003189 \N 60636 5 0009851 \N 60637 5 0090207 \N 60638 5 0052548 \N 60639 5 0070535 \N 60640 5 0032929 \N 60641 5 0072339 \N 60642 5 0007413 \N 60643 5 0043637 \N 60644 3 8226694 \N 60645 5 0072579 \N 60646 5 0014880 \N 60647 5 0060996 \N 60648 5 0019346 \N 60649 87 PWY-801 \N 60650 5 0002893 \N 60651 5 0070247 \N 60652 5 0015739 \N 60653 5 0046855 \N 60654 5 0060601 \N 60655 5 0009136 \N 60656 5 0009556 \N 60657 5 0034983 \N 60658 5 0042351 \N 60659 93 1.1.1.271 \N 60660 3 11030750 \N 60661 5 0050943 \N 60662 5 0009787 \N 60663 5 0002438 \N 60664 5 0035574 \N 60665 3 20622853 \N 60666 5 0006409 \N 60667 5 0014728 \N 60668 5 0009451 \N 60669 5 0016547 \N 60670 5 0006175 \N 60671 5 0050931 \N 60672 5 0043357 \N 60673 5 0043358 \N 60674 5 0042522 \N 60675 5 0048236 \N 60676 94 //www.m-w.com \N 60677 5 0002215 \N 60678 5 0002216 \N 60679 3 11516579 \N 60680 5 0007397 \N 60681 5 0060113 \N 60682 5 0007058 \N 60683 5 0018298 \N 60684 5 0014072 \N 60685 88 24921 \N 60686 5 0046585 \N 60687 5 0006082 \N 60688 5 0071728 \N 60689 5 0070347 \N 60690 5 0046501 \N 60691 5 0002149 \N 60692 3 10085024 \N 60693 5 0010304 \N 60694 3 16157880 \N 60695 5 0042453 \N 60696 5 0071710 \N 60697 5 0090260 \N 60698 5 0051805 \N 60699 5 0051963 \N 60700 5 0017085 \N 60701 5 0010643 \N 60702 5 0030968 \N 60703 5 0002117 \N 60704 94 //www.livingunderworld.org/biology/ \N 60705 5 0032922 \N 60706 5 0043374 \N 60707 5 0007522 \N 60708 5 0032285 \N 60709 5 0034606 \N 60710 5 0075136 \N 60711 5 0048362 \N 60712 5 0002390 \N 60713 5 0010876 \N 60714 5 0002520 \N 60715 5 0072611 \N 60716 5 0001560 \N 60717 5 0040016 \N 60718 5 0071876 \N 60719 5 0021755 \N 60720 3 15892096 \N 60721 5 0033683 \N 60722 3 8631896 \N 60723 5 0007474 \N 60724 5 0007301 \N 60725 5 0034097 \N 60726 5 2000478 \N 60727 5 0032669 \N 60728 5 0035876 \N 60729 5 0019125 \N 60730 5 0018089 \N 60731 5 0018371 \N 60732 89 AA0194 \N 60733 5 0006288 \N 60734 5 0032087 \N 60735 5 0014873 \N 60736 5 0006621 \N 60737 3 12972550 \N 60738 5 2000800 \N 60739 5 0007625 \N 60740 5 0075313 \N 60741 5 0060415 \N 60742 5 0051122 \N 60743 5 0051854 \N 60744 5 0044076 \N 60745 5 0003024 \N 60746 5 0046010 \N 60747 5 0090121 \N 60748 5 0042783 \N 60749 5 0046044 \N 60750 5 0009165 \N 60751 5 0006208 \N 60752 5 0045798 \N 60753 5 2000525 \N 60754 5 0010315 \N 60755 5 0006521 \N 60756 5 0072205 \N 60757 5 0075081 \N 60758 5 0048689 \N 60759 5 0071288 \N 60760 5 0010607 \N 60761 5 0044003 \N 60762 5 2000024 \N 60763 5 0075092 \N 60764 5 0001705 \N 60765 5 0034438 \N 60766 5 0050873 \N 60767 3 12588810 \N 60768 5 0046072 \N 60769 5 0023069 \N 60770 5 0070373 \N 60771 5 0032199 \N 60772 5 0003284 \N 60773 5 0006904 \N 60774 5 0045136 \N 60775 5 0035461 \N 60776 5 0032781 \N 60777 5 0072369 \N 60778 5 0009704 \N 60779 5 0006552 \N 60780 5 0048707 \N 60781 5 0071303 \N 60782 5 0017187 \N 60783 89 AA0032 \N 60784 5 0045380 \N 60785 5 0000712 \N 60786 3 11733053 \N 60787 5 0008054 \N 60788 3 15840442 \N 60789 5 0009962 \N 60790 5 0018126 \N 60791 5 0002290 \N 60792 3 8717523 \N 60793 5 0051598 \N 60794 3 14718568 \N 60795 5 0010343 \N 60796 3 17075038 \N 60797 5 2000321 \N 60798 5 0060978 \N 60799 5 0007111 \N 60800 5 0032764 \N 60801 5 0042776 \N 60802 5 2000619 \N 60803 5 0030974 \N 60804 5 0030967 \N 60805 5 0006856 \N 60806 5 0060652 \N 60807 5 0003298 \N 60808 5 0043002 \N 60809 5 0003230 \N 60810 5 0052185 \N 60811 5 0045346 \N 60812 5 0032793 \N 60813 5 0048085 \N 60814 5 0048068 \N 60815 5 0019600 \N 60816 5 0016192 \N 60817 5 0006899 \N 60818 86 08789310662000 \N 60819 5 0060914 \N 60820 5 0072461 \N 60821 5 0018299 \N 60822 89 AA0225 \N 60823 5 0034108 \N 60824 5 0090150 \N 60825 5 0072203 \N 60826 5 0045050 \N 60827 5 0050957 \N 60828 5 0030578 \N 60829 3 10806078 \N 60830 5 0033524 \N 60831 5 0046280 \N 60832 5 0071704 \N 60833 5 0018332 \N 60834 5 0035899 \N 60835 5 0006837 \N 60836 5 0021523 \N 60837 5 0051203 \N 60838 3 15237995 \N 60839 89 AA0373 \N 60840 5 2000077 \N 60841 5 0002382 \N 60842 5 0032112 \N 60843 5 0072598 \N 60844 5 0048451 \N 60845 5 0048419 \N 60846 5 0071825 \N 60847 5 0072646 \N 60848 5 0009799 \N 60849 5 0033343 \N 60850 5 0034065 \N 60851 5 0090159 \N 60852 5 0061224 \N 60853 5 0016345 \N 60854 5 0071436 \N 60855 5 0043393 \N 60856 5 0031629 \N 60857 86 0071120009 \N 60858 5 0019607 \N 60859 5 0022009 \N 60860 5 0080040 \N 60861 3 18315545 \N 60862 5 0046417 \N 60863 5 0001312 \N 60864 5 0002629 \N 60865 5 0010708 \N 60866 5 0033183 \N 60867 5 0021862 \N 60868 5 0046825 \N 60869 5 0002680 \N 60870 5 0070873 \N 60871 5 0002674 \N 60872 5 0030806 \N 60873 5 0072178 \N 60874 5 0072001 \N 60875 94 //en.wikibooks.org/wiki/Human_Physiology/The_Urinary_System \N 60876 5 0032877 \N 60877 5 0050667 \N 60878 5 0032910 \N 60879 5 0035071 \N 60880 3 10882130 \N 60881 5 0045373 \N 60882 5 0042489 \N 60883 5 0048929 \N 60884 5 0018083 \N 60885 89 AA0185 \N 60886 5 0072336 \N 60887 5 0046068 \N 60888 5 0052097 \N 60889 5 0006977 \N 60890 5 0006377 \N 60891 5 0032013 \N 60892 5 0030326 \N 60893 5 0019742 \N 60894 5 0010272 \N 60895 5 0072360 \N 60896 3 7084422 \N 60897 116 0005077 \N 60898 5 0010268 \N 60899 3 15908602 \N 60900 5 0002603 \N 60901 5 0035995 \N 60902 5 0014746 \N 60903 5 0042152 \N 60904 3 8380627 \N 60905 5 0060587 \N 60906 5 0003420 \N 60907 5 0090188 \N 60908 5 0009208 \N 60909 5 0035038 \N 60910 5 0007570 \N 60911 5 0035150 \N 60912 5 0043307 \N 60913 5 0009726 \N 60914 5 0032457 \N 60915 5 0007020 \N 60916 5 0000188 \N 60917 5 0048138 \N 60918 5 0071287 \N 60919 5 0043692 \N 60920 5 0009315 \N 60921 5 0061230 \N 60922 5 0014896 \N 60923 5 0072035 \N 60924 5 0045770 \N 60925 5 2000066 \N 60926 5 0044027 \N 60927 5 0045076 \N 60928 5 0035523 \N 60929 5 0021784 \N 60930 5 0050893 \N 60931 5 0051867 \N 60932 5 0033626 \N 60933 5 0002181 \N 60934 5 0072096 \N 60935 5 0003055 \N 60936 5 0016479 \N 60937 5 0042185 \N 60938 5 0010622 \N 60939 5 0044414 \N 60940 5 0003293 \N 60941 5 0046061 \N 60942 5 0010517 \N 60943 5 0048241 \N 60944 5 0042468 \N 60945 3 2790068 \N 60946 5 0043707 \N 60947 5 0033591 \N 60948 5 0071419 \N 60949 5 0046343 \N 60950 5 0035988 \N 60951 91 0000138 \N 60952 3 21484705 \N 60953 5 2000434 \N 60954 5 0042482 \N 60955 5 0042485 \N 60956 5 0090080 \N 60957 5 2000206 \N 60958 5 0071484 \N 60959 5 0060139 \N 60960 5 0009455 \N 60961 5 0007229 \N 60962 5 0002248 \N 60963 5 0030006 \N 60964 5 0045799 \N 60965 5 0032529 \N 60966 3 16507588 \N 60967 5 0021629 \N 60968 5 0071400 \N 60969 5 0070669 \N 60970 5 0033585 \N 60971 5 0048938 \N 60972 5 0010947 \N 60973 5 0019355 \N 60974 5 0010235 \N 60975 5 0046732 \N 60976 5 0000746 \N 60977 5 0035269 \N 60978 3 9878797 \N 60979 5 0045636 \N 60980 5 0046400 \N 60981 5 0019396 \N 60982 5 0045721 \N 60983 5 0075125 \N 60984 5 0019564 \N 60985 5 0019565 \N 60986 5 0035217 \N 60987 5 0009742 \N 60988 5 0072227 \N 60989 5 0007454 \N 60990 5 2000924 \N 60991 5 0071299 \N 60992 5 0042916 \N 60993 5 0051337 \N 60994 5 0048533 \N 60995 5 0042949 \N 60996 94 //biotech.icmb.utexas.edu/ \N 60997 5 0009299 \N 60998 5 0061023 \N 60999 5 0000084 \N 61000 5 0072192 \N 61001 5 0061213 \N 61002 5 0003283 \N 61003 5 0045367 \N 61004 5 0010651 \N 61005 5 2000915 \N 61006 5 0050862 \N 61007 5 0034131 \N 61008 5 0002697 \N 61009 5 0070169 \N 61010 5 0032748 \N 61011 5 2000822 \N 61012 5 0033075 \N 61013 5 0071110 \N 61014 3 14613969 \N 61015 3 19019041 \N 61016 5 0008219 \N 61017 5 0060997 \N 61018 5 0001959 \N 61019 5 0045124 \N 61020 5 0048385 \N 61021 5 0008088 \N 61022 5 0072166 \N 61023 5 0051591 \N 61024 5 0015757 \N 61025 5 0016133 \N 61026 5 0030311 \N 61027 5 0033979 \N 61028 5 0061014 \N 61029 5 0070328 \N 61030 5 0031028 \N 61031 3 16775007 \N 61032 5 0072630 \N 61033 5 0052327 \N 61034 5 0046513 \N 61035 5 0020014 \N 61036 5 0033103 \N 61037 3 16432199 \N 61038 3 16763151 \N 61039 5 0019296 \N 61040 5 0002821 \N 61041 5 0048214 \N 61042 5 0014736 \N 61043 5 0071689 \N 61044 5 0072637 \N 61045 5 0009386 \N 61046 3 15694341 \N 61047 3 15805513 \N 61048 5 0033030 \N 61049 5 2000185 \N 61050 5 0001576 \N 61051 5 0035079 \N 61052 5 0060183 \N 61053 5 0033541 \N 61054 87 PWY-5137 \N 61055 5 0050718 \N 61056 5 0061291 \N 61057 5 0000291 \N 61058 5 0010712 \N 61059 5 0015836 \N 61060 5 0060282 \N 61061 5 0072311 \N 61062 5 0045362 \N 61063 5 0003130 \N 61064 5 0002010 \N 61065 5 0007044 \N 61066 5 0010522 \N 61067 5 0010833 \N 61068 5 0019276 \N 61069 5 0032304 \N 61070 5 0015862 \N 61071 5 0006333 \N 61072 5 0032699 \N 61073 5 0048838 \N 61074 5 0038016 \N 61075 3 3907718 \N 61076 5 0048647 \N 61077 5 0032888 \N 61078 5 0019694 \N 61079 5 0061104 \N 61080 5 0052142 \N 61081 5 0007490 \N 61082 94 //www.earthlife.net \N 61083 5 0043558 \N 61084 5 0019279 \N 61085 5 0072389 \N 61086 5 0035559 \N 61087 5 0048586 \N 61088 5 0007527 \N 61089 5 0009830 \N 61090 5 0045755 \N 61091 5 0033562 \N 61092 3 17512405 \N 61093 5 0050836 \N 61094 89 AA0357 \N 61095 5 2000002 \N 61096 5 2000173 \N 61097 5 0021685 \N 61098 5 0009561 \N 61099 5 0048199 \N 61100 5 2000424 \N 61101 5 0090241 \N 61102 5 0002795 \N 61103 5 0009682 \N 61104 5 0006940 \N 61105 5 0033687 \N 61106 5 0019361 \N 61107 5 0000755 \N 61108 5 0000218 \N 61109 5 0030462 \N 61110 5 0002360 \N 61111 5 0051386 \N 61112 5 0060390 \N 61113 5 0050779 \N 61114 5 0046958 \N 61115 5 0042195 \N 61116 5 0060851 \N 61117 5 0002184 \N 61118 5 0003208 \N 61119 5 0060619 \N 61120 5 0046662 \N 61121 5 0019715 \N 61122 89 AA0027 \N 61123 5 0043244 \N 61124 5 0052123 \N 61125 5 0009048 \N 61126 5 0060444 \N 61127 5 0006113 \N 61128 5 2000090 \N 61129 5 0048822 \N 61130 5 0008363 \N 61131 5 0030536 \N 61132 5 0070789 \N 61133 5 2000506 \N 61134 5 0071371 \N 61135 5 0015855 \N 61136 5 0042297 \N 61137 3 16418265 \N 61138 3 17035521 \N 61139 5 0051457 \N 61140 5 0048072 \N 61141 5 0070610 \N 61142 5 0046776 \N 61143 5 0048920 \N 61144 5 0060061 \N 61145 5 0007273 \N 61146 5 0006176 \N 61147 5 0046006 \N 61148 5 0061125 \N 61149 5 0052506 \N 61150 5 0042665 \N 61151 5 0048450 \N 61152 5 0048435 \N 61153 5 0006250 \N 61154 5 0072610 \N 61155 5 0075265 \N 61156 5 0070409 \N 61157 5 0070617 \N 61158 5 0090045 \N 61159 5 0070256 \N 61160 5 0050653 \N 61161 3 11788602 \N 61162 5 0060577 \N 61163 5 0003371 \N 61164 5 0019623 \N 61165 5 0003211 \N 61166 5 0042476 \N 61167 5 0042477 \N 61168 5 0035704 \N 61169 5 0007016 \N 61170 86 0198599323 \N 61171 5 0070092 \N 61172 5 0019315 \N 61173 5 0043587 \N 61174 5 0052365 \N 61175 5 0075202 \N 61176 5 0032830 \N 61177 5 0006224 \N 61178 5 0033307 \N 61179 87 PWY-5107 \N 61180 5 0045979 \N 61181 5 0002836 \N 61182 5 0071216 \N 61183 5 0072135 \N 61184 5 0006479 \N 61185 5 0045609 \N 61186 5 0045729 \N 61187 3 2537493 \N 61188 3 9013127 \N 61189 5 0070806 \N 61190 5 0045594 \N 61191 5 0045919 \N 61192 5 0016056 \N 61193 5 0010412 \N 61194 5 0030166 \N 61195 5 0035773 \N 61196 3 8492079 \N 61197 5 0019484 \N 61198 5 0015912 \N 61199 5 0010045 \N 61200 5 0002803 \N 61201 5 0018376 \N 61202 89 AA0026 \N 61203 5 0031334 \N 61204 5 0003200 \N 61205 5 0075147 \N 61206 5 0050747 \N 61207 5 0019929 \N 61208 89 AA0315 \N 61209 5 0005986 \N 61210 5 0042664 \N 61211 5 0051548 \N 61212 5 0046512 \N 61213 5 0002790 \N 61214 5 0051896 \N 61215 5 0061073 \N 61216 5 0002709 \N 61217 5 0019476 \N 61218 88 16855 \N 61219 5 0008543 \N 61220 5 0045934 \N 61221 5 0046938 \N 61222 5 0007105 \N 61223 5 0055073 \N 61224 5 0046597 \N 61225 5 0006387 \N 61226 5 0009249 \N 61227 5 0009832 \N 61228 5 0034472 \N 61229 5 0044338 \N 61230 5 0003043 \N 61231 5 0023004 \N 61232 5 0070270 \N 61233 5 0010154 \N 61234 5 0003081 \N 61235 5 0010384 \N 61236 5 0016265 \N 61237 5 0045587 \N 61238 5 2000080 \N 61239 5 0051584 \N 61240 5 2000281 \N 61241 5 0042003 \N 61242 5 0021724 \N 61243 5 0010222 \N 61244 5 0060371 \N 61245 5 0018967 \N 61246 94 //www.who.int/water_sanitation_health/GDWQ/Chemicals/tetrachloroethenesum.htm \N 61247 5 0060943 \N 61248 5 0002328 \N 61249 5 0060065 \N 61250 5 0018942 \N 61251 5 0052564 \N 61252 5 0030908 \N 61253 5 0045967 \N 61254 5 0001963 \N 61255 5 0007142 \N 61256 5 0009412 \N 61257 5 0051691 \N 61258 5 2000592 \N 61259 5 0016117 \N 61260 5 0018179 \N 61261 5 0070076 \N 61262 5 0002321 \N 61263 5 0010595 \N 61264 5 0018159 \N 61265 89 AA0251 \N 61266 5 0023036 \N 61267 5 0016182 \N 61268 5 0030839 \N 61269 5 0033135 \N 61270 5 0032750 \N 61271 5 0072221 \N 61272 5 0021509 \N 61273 5 0002875 \N 61274 5 0070348 \N 61275 5 0035959 \N 61276 5 0070134 \N 61277 5 0072264 \N 61278 5 0001746 \N 61279 5 0052438 \N 61280 5 0007414 \N 61281 5 0061057 \N 61282 3 18688280 \N 61283 5 0009080 \N 61284 5 0001909 \N 61285 5 0009089 \N 61286 5 0046109 \N 61287 5 0042474 \N 61288 5 0002776 \N 61289 5 0002622 \N 61290 5 0072478 \N 61291 5 0072466 \N 61292 5 0006953 \N 61293 5 0007271 \N 61294 94 //en.wikipedia.org/wiki/Cholinergic \N 61295 5 0072150 \N 61296 5 2000560 \N 61297 5 0051696 \N 61298 5 0060748 \N 61299 3 18614704 \N 61300 5 0001176 \N 61301 5 0019062 \N 61302 5 0030334 \N 61303 5 0034966 \N 61304 5 0010745 \N 61305 5 0022900 \N 61306 5 0010814 \N 61307 5 0009768 \N 61308 5 0019722 \N 61309 5 0014071 \N 61310 88 23453 \N 61311 5 0006664 \N 61312 5 0044237 \N 61313 5 0060880 \N 61314 5 0014881 \N 61315 5 0021789 \N 61316 5 0070153 \N 61317 5 0016340 \N 61318 5 0009149 \N 61319 5 0002764 \N 61320 5 0046009 \N 61321 5 0032263 \N 61322 5 0019368 \N 61323 5 0002576 \N 61324 5 0035811 \N 61325 5 2000883 \N 61326 5 0034491 \N 61327 5 0042501 \N 61328 5 0097102 \N 61329 91 0000704 \N 61330 5 0042743 \N 61331 5 0018108 \N 61332 5 2000364 \N 61333 5 0071619 \N 61334 5 0002340 \N 61335 5 0072070 \N 61336 5 0072018 \N 61337 5 0002347 \N 61338 5 0018101 \N 61339 89 AA0214 \N 61340 5 0018150 \N 61341 89 AA0250 \N 61342 5 0018044 \N 61343 89 AA0091 \N 61344 5 0075176 \N 61345 5 0072284 \N 61346 5 2000637 \N 61347 5 0019919 \N 61348 5 0042323 \N 61349 5 0010513 \N 61350 5 0009104 \N 61351 5 0002557 \N 61352 5 0014853 \N 61353 5 2000463 \N 61354 5 0061300 \N 61355 5 0002458 \N 61356 5 2000844 \N 61357 5 0072415 \N 61358 5 0071528 \N 61359 3 17475781 \N 61360 5 0048610 \N 61361 5 0006659 \N 61362 5 0031537 \N 61363 5 0042051 \N 61364 5 0010047 \N 61365 5 0001660 \N 61366 5 0007260 \N 61367 5 0034389 \N 61368 3 18093937 \N 61369 3 18250201 \N 61370 5 0060957 \N 61371 5 0051611 \N 61372 5 0052114 \N 61373 5 0044271 \N 61374 5 0003277 \N 61375 5 0052562 \N 61376 5 0010614 \N 61377 5 0046394 \N 61378 5 0045412 \N 61379 5 0018234 \N 61380 89 AA0113 \N 61381 5 0014013 \N 61382 5 0042684 \N 61383 5 0075287 \N 61384 5 0048305 \N 61385 5 0052431 \N 61386 5 0052286 \N 61387 5 0009128 \N 61388 5 0022407 \N 61389 5 0007482 \N 61390 5 0072056 \N 61391 5 0003143 \N 61392 5 0043519 \N 61393 5 0072017 \N 61394 5 0050965 \N 61395 5 0032008 \N 61396 5 0003413 \N 61397 5 0046694 \N 61398 5 0000292 \N 61399 5 0030452 \N 61400 5 0034498 \N 61401 5 0050817 \N 61402 5 0061148 \N 61403 5 0060960 \N 61404 5 0033352 \N 61405 87 PWY-5113 \N 61406 5 2000198 \N 61407 5 0021515 \N 61408 5 0042179 \N 61409 5 0010115 \N 61410 5 2000723 \N 61411 5 0072620 \N 61412 5 0000429 \N 61413 5 0003025 \N 61414 5 0001922 \N 61415 5 0006428 \N 61416 5 2000311 \N 61417 5 0009399 \N 61418 104 Nitrogen_fixation \N 61419 5 0072619 \N 61420 5 0002400 \N 61421 5 0031453 \N 61422 5 0048853 \N 61423 5 0042431 \N 61424 5 0019940 \N 61425 5 0051345 \N 61426 5 0035185 \N 61427 5 2000371 \N 61428 5 0005513 \N 61429 5 0061342 \N 61430 5 0060635 \N 61431 5 2000009 \N 61432 5 0006593 \N 61433 5 0031175 \N 61434 5 0045906 \N 61435 5 0060130 \N 61436 5 0002713 \N 61437 5 0015968 \N 61438 3 11282471 \N 61439 5 0030476 \N 61440 5 0007152 \N 61441 5 0031168 \N 61442 5 0018320 \N 61443 5 0052160 \N 61444 5 0070103 \N 61445 5 0023053 \N 61446 5 0072473 \N 61447 5 0035394 \N 61448 5 0070193 \N 61449 5 0045327 \N 61450 5 0021502 \N 61451 5 0003048 \N 61452 5 2000974 \N 61453 5 0002043 \N 61454 5 0060190 \N 61455 5 0007062 \N 61456 5 0021925 \N 61457 5 0039516 \N 61458 5 0050988 \N 61459 89 AA0363 \N 61460 5 0035759 \N 61461 91 0000650 \N 61462 3 15569314 \N 61463 5 0060552 \N 61464 5 0010801 \N 61465 5 0051151 \N 61466 5 0019596 \N 61467 5 0032861 \N 61468 5 0046354 \N 61469 5 0009713 \N 61470 5 0051515 \N 61471 5 0035178 \N 61472 5 0045415 \N 61473 5 0030194 \N 61474 5 0002351 \N 61475 5 0009444 \N 61476 87 PYRUVOX-PWY \N 61477 5 0009933 \N 61478 5 0035307 \N 61479 5 0002655 \N 61480 5 0002107 \N 61481 3 16387655 \N 61482 3 1748637 \N 61483 3 1902221 \N 61484 3 8389357 \N 61485 5 0006755 \N 61486 5 0030418 \N 61487 5 0017144 \N 61488 5 0071245 \N 61489 5 0097052 \N 61490 5 2000957 \N 61491 5 2000699 \N 61492 5 2000414 \N 61493 5 0060604 \N 61494 5 0010756 \N 61495 5 0045825 \N 61496 5 0032825 \N 61497 5 0046948 \N 61498 5 0070662 \N 61499 5 0071777 \N 61500 5 0002251 \N 61501 5 0000465 \N 61502 5 0051770 \N 61503 5 0051773 \N 61504 5 0006848 \N 61505 5 0031444 \N 61506 5 0018337 \N 61507 5 0018070 \N 61508 89 AA0150 \N 61509 5 0016331 \N 61510 5 0002028 \N 61511 5 0016486 \N 61512 5 0009163 \N 61513 5 0070925 \N 61514 5 0072185 \N 61515 5 0032325 \N 61516 5 0000411 \N 61517 5 0002436 \N 61518 5 0032247 \N 61519 5 0032724 \N 61520 5 0034054 \N 61521 5 0061031 \N 61522 5 0006865 \N 61523 5 0006866 \N 61524 5 0035508 \N 61525 5 0019645 \N 61526 5 0043468 \N 61527 5 0002571 \N 61528 5 0006206 \N 61529 5 0030204 \N 61530 5 0060224 \N 61531 5 0097026 \N 61532 3 12200351 \N 61533 5 0080058 \N 61534 5 0015670 \N 61535 5 0030705 \N 61536 5 0009174 \N 61537 5 2001031 \N 61538 5 0048765 \N 61539 5 0009966 \N 61540 5 0035466 \N 61541 5 0050910 \N 61542 5 0009592 \N 61543 5 0055128 \N 61544 5 0002491 \N 61545 3 16181338 \N 61546 5 0046383 \N 61547 5 0006147 \N 61548 5 0050982 \N 61549 5 0007495 \N 61550 5 0061359 \N 61551 5 0045019 \N 61552 5 0045709 \N 61553 5 0045075 \N 61554 5 0071072 \N 61555 5 0052467 \N 61556 5 0033377 \N 61557 5 0032329 \N 61558 5 0046378 \N 61559 5 0097114 \N 61560 5 0075234 \N 61561 5 0015761 \N 61562 5 0042212 \N 61563 5 0000289 \N 61564 5 0018049 \N 61565 89 AA0096 \N 61566 5 0009184 \N 61567 5 0033510 \N 61568 5 0018407 \N 61569 89 AA0177 \N 61570 5 0018941 \N 61571 5 0006214 \N 61572 5 0006215 \N 61573 5 0033238 \N 61574 5 0042942 \N 61575 5 0075336 \N 61576 5 0018398 \N 61577 89 AA0175 \N 61578 5 0033533 \N 61579 5 0046182 \N 61580 5 0042217 \N 61581 5 0090028 \N 61582 5 0075345 \N 61583 5 0031656 \N 61584 5 0090268 \N 61585 5 0033141 \N 61586 5 0042107 \N 61587 5 0090118 \N 61588 5 0007049 \N 61589 5 0031585 \N 61590 5 0046398 \N 61591 5 0021593 \N 61592 5 0033169 \N 61593 5 0014813 \N 61594 5 0048041 \N 61595 5 0090303 \N 61596 5 0032689 \N 61597 5 0060681 \N 61598 5 0015826 \N 61599 5 0035750 \N 61600 3 20237282 \N 61601 5 0000103 \N 61602 5 0019378 \N 61603 5 0006816 \N 61604 5 0042856 \N 61605 5 0007449 \N 61606 5 0080036 \N 61607 5 0051485 \N 61608 5 0046822 \N 61609 5 0060638 \N 61610 5 0039017 \N 61611 5 0060472 \N 61612 5 0043179 \N 61613 5 0061256 \N 61614 5 0018960 \N 61615 5 0070525 \N 61616 5 0010799 \N 61617 5 0009959 \N 61618 5 2000047 \N 61619 5 0045968 \N 61620 5 0014703 \N 61621 5 0035641 \N 61622 3 17151232 \N 61623 5 0048890 \N 61624 5 0072307 \N 61625 5 0042520 \N 61626 5 0010875 \N 61627 5 0010764 \N 61628 5 0033474 \N 61629 5 0060324 \N 61630 5 0033045 \N 61631 5 0061068 \N 61632 5 0002127 \N 61633 5 0060350 \N 61634 3 11680679 \N 61635 5 0070964 \N 61636 5 0021964 \N 61637 5 0071802 \N 61638 5 0071880 \N 61639 5 0034114 \N 61640 5 0071878 \N 61641 5 0048729 \N 61642 5 0006245 \N 61643 5 0002242 \N 61644 5 0035080 \N 61645 5 0014007 \N 61646 5 0035419 \N 61647 5 0010980 \N 61648 5 0039501 \N 61649 5 0007150 \N 61650 5 0006248 \N 61651 5 0016445 \N 61652 5 0019879 \N 61653 5 0002192 \N 61654 5 0006602 \N 61655 5 0031328 \N 61656 5 0042330 \N 61657 5 0032658 \N 61658 5 0021782 \N 61659 5 0035121 \N 61660 5 0014832 \N 61661 100 0001697 \N 61662 101 A05.810.890 \N 61663 5 0060856 \N 61664 5 0031341 \N 61665 5 0060323 \N 61666 5 0046365 \N 61667 5 0006481 \N 61668 5 0006771 \N 61669 5 0006266 \N 61670 5 0043976 \N 61671 5 0071928 \N 61672 5 0051933 \N 61673 5 0045701 \N 61674 5 0048753 \N 61675 5 0006465 \N 61676 5 0045490 \N 61677 5 0042906 \N 61678 5 0035427 \N 61679 5 0043620 \N 61680 5 0030910 \N 61681 5 0032902 \N 61682 5 0072047 \N 61683 5 0080135 \N 61684 5 0060535 \N 61685 5 2000115 \N 61686 5 0007424 \N 61687 3 8625828 \N 61688 5 0051475 \N 61689 5 0023049 \N 61690 5 0018133 \N 61691 89 AA0239 \N 61692 5 0034297 \N 61693 94 //www.ilmyco.gen.chicago.il.us/Terms/oidiu163.html \N 61694 5 0060688 \N 61695 5 0002900 \N 61696 5 0032808 \N 61697 5 0045230 \N 61698 5 0035543 \N 61699 5 0071050 \N 61700 5 0000094 \N 61701 5 0071632 \N 61702 3 12726833 \N 61703 3 2469195 \N 61704 5 0051042 \N 61705 5 0072292 \N 61706 5 0042384 \N 61707 5 0061113 \N 61708 5 0001501 \N 61709 94 //www.stedmans.com/ \N 61710 5 0010160 \N 61711 5 0048862 \N 61712 5 0010198 \N 61713 5 0048470 \N 61714 3 12215516 \N 61715 5 0090379 \N 61716 5 0046084 \N 61717 5 0006884 \N 61718 5 0045406 \N 61719 5 0032595 \N 61720 5 0052215 \N 61721 5 2000340 \N 61722 5 2001044 \N 61723 5 0001843 \N 61724 5 0045923 \N 61725 5 0046639 \N 61726 5 0015948 \N 61727 5 0060794 \N 61728 5 0046117 \N 61729 5 0045909 \N 61730 5 0046743 \N 61731 3 11581394 \N 61732 5 0060852 \N 61733 5 0048881 \N 61734 5 0002336 \N 61735 5 0022017 \N 61736 5 0009615 \N 61737 5 0046150 \N 61738 5 0035088 \N 61739 3 10934483 \N 61740 5 0015705 \N 61741 5 0010141 \N 61742 5 0048720 \N 61743 5 2000810 \N 61744 5 0052414 \N 61745 5 0048805 \N 61746 5 0075067 \N 61747 5 0008212 \N 61748 5 0006414 \N 61749 5 0006442 \N 61750 5 0006455 \N 61751 5 0046337 \N 61752 88 16038 \N 61753 5 0035128 \N 61754 5 0009644 \N 61755 5 0061247 \N 61756 5 0060434 \N 61757 5 0042023 \N 61758 5 0033359 \N 61759 87 DAPLYSINESYN-PWY- \N 61760 5 0009051 \N 61761 87 OXIDATIVEPENT-PWY \N 61762 5 0052054 \N 61763 5 0007149 \N 61764 5 0034671 \N 61765 5 0043161 \N 61766 5 0021744 \N 61767 5 0051080 \N 61768 5 2000053 \N 61769 5 0042849 \N 61770 5 0034442 \N 61771 5 0014842 \N 61772 5 0021664 \N 61773 5 0034660 \N 61774 5 0006211 \N 61775 5 0072526 \N 61776 5 0072626 \N 61777 5 0070839 \N 61778 5 0003078 \N 61779 5 0031937 \N 61780 5 0090294 \N 61781 5 0075306 \N 61782 5 2001049 \N 61783 5 0045738 \N 61784 5 0071345 \N 61785 5 0010688 \N 61786 5 2000987 \N 61787 5 0034163 \N 61788 5 0046110 \N 61789 5 2001003 \N 61790 5 0010822 \N 61791 5 0060826 \N 61792 5 0042443 \N 61793 5 0060926 \N 61794 5 0055116 \N 61795 5 0071596 \N 61796 3 19246002 \N 61797 3 9112437 \N 61798 5 0060213 \N 61799 5 0010917 \N 61800 5 0021608 \N 61801 5 0009227 \N 61802 5 0033606 \N 61803 5 0070248 \N 61804 5 2000179 \N 61805 5 0032845 \N 61806 5 0051726 \N 61807 5 0000074 \N 61808 5 0032111 \N 61809 5 2000896 \N 61810 5 0042630 \N 61811 5 0009896 \N 61812 5 0044181 \N 61813 5 0045991 \N 61814 3 10559153 \N 61815 5 0052556 \N 61816 5 0060003 \N 61817 5 0009214 \N 61818 5 0030522 \N 61819 5 0032312 \N 61820 5 0009112 \N 61821 5 2000750 \N 61822 5 0030091 \N 61823 5 0051291 \N 61824 5 0018400 \N 61825 89 AA0029 \N 61826 5 0044241 \N 61827 5 0021554 \N 61828 5 0075153 \N 61829 5 0046831 \N 61830 5 0072274 \N 61831 5 0044150 \N 61832 5 0051103 \N 61833 5 0008064 \N 61834 5 0043578 \N 61835 5 0035609 \N 61836 5 0072331 \N 61837 5 0034315 \N 61838 5 0048653 \N 61839 5 0045026 \N 61840 5 0006947 \N 61841 5 0016129 \N 61842 5 0051828 \N 61843 5 0071650 \N 61844 5 0090310 \N 61845 5 0006140 \N 61846 5 0010589 \N 61847 3 18398054 \N 61848 5 0043255 \N 61849 5 0021853 \N 61850 5 0008065 \N 61851 5 0042234 \N 61852 5 0042939 \N 61853 88 47923 \N 61854 5 0035665 \N 61855 3 12447441 \N 61856 5 0016122 \N 61857 5 0034203 \N 61858 3 11807558 \N 61859 5 0060704 \N 61860 5 0006058 \N 61861 5 0046784 \N 61862 5 0046552 \N 61863 5 0030223 \N 61864 5 0009997 \N 61865 5 0042687 \N 61866 5 0050754 \N 61867 5 0035441 \N 61868 5 0042352 \N 61869 5 0052645 \N 61870 88 59532 \N 61871 5 0061234 \N 61872 5 0034394 \N 61873 5 0097082 \N 61874 5 2000662 \N 61875 5 0019490 \N 61876 5 0071386 \N 61877 5 0044053 \N 61878 5 2000124 \N 61879 5 0045188 \N 61880 5 2000261 \N 61881 5 0051278 \N 61882 5 0006158 \N 61883 5 0048023 \N 61884 5 0048376 \N 61885 5 0034156 \N 61886 5 0018950 \N 61887 5 0061337 \N 61888 5 2000130 \N 61889 5 0034350 \N 61890 5 0090386 \N 61891 5 0006592 \N 61892 5 0042458 \N 61893 5 0032118 \N 61894 5 0070253 \N 61895 5 0031133 \N 61896 5 0032705 \N 61897 5 0021895 \N 61898 5 0007584 \N 61899 5 0061269 \N 61900 5 0035336 \N 61901 5 0010165 \N 61902 104 X-ray \N 61903 5 0033051 \N 61904 94 //pages.unibas.ch/mdpi/ecsoc/a0045/a0045.htm \N 61905 103 map00440 \N 61906 5 0043387 \N 61907 5 0009748 \N 61908 5 0051687 \N 61909 5 0009792 \N 61910 5 0007163 \N 61911 5 0030012 \N 61912 5 0030467 \N 61913 5 0035345 \N 61914 5 0070424 \N 61915 5 0010076 \N 61916 5 2000767 \N 61917 5 0009307 \N 61918 109 0680 \N 61919 5 0032486 \N 61920 5 0052247 \N 61921 5 0070358 \N 61922 5 0072297 \N 61923 5 0051501 \N 61924 5 0070537 \N 61925 5 0021570 \N 61926 5 0071965 \N 61927 5 0050805 \N 61928 5 0071941 \N 61929 3 16675690 \N 61930 104 Nitrogen_cycle \N 61931 5 0060745 \N 61932 5 0003117 \N 61933 5 0060332 \N 61934 5 0060865 \N 61935 5 0010019 \N 61936 3 8972595 \N 61937 5 0015988 \N 61938 5 2000354 \N 61939 5 0060257 \N 61940 5 0001715 \N 61941 5 0007116 \N 61942 5 0010125 \N 61943 5 0042081 \N 61944 5 0034723 \N 61945 5 0018976 \N 61946 5 2000780 \N 61947 5 0075317 \N 61948 5 0002147 \N 61949 5 0006341 \N 61950 5 0002475 \N 61951 5 0001304 \N 61952 5 0043629 \N 61953 3 16374505 \N 61954 5 0060300 \N 61955 5 0006278 \N 61956 5 0035778 \N 61957 5 0071167 \N 61958 5 0007297 \N 61959 5 0002015 \N 61960 5 0018889 \N 61961 94 //umbbd.ahc.umn.edu/ppc/ppc_map.html \N 61962 97 ppc \N 61963 5 0035054 \N 61964 3 12435360 \N 61965 5 0010016 \N 61966 5 0014900 \N 61967 5 0021804 \N 61968 5 0006919 \N 61969 5 0001822 \N 61970 5 0043444 \N 61971 5 0035564 \N 61972 5 0046348 \N 61973 5 0090212 \N 61974 5 2000997 \N 61975 5 0002867 \N 61976 5 0039016 \N 61977 5 0021753 \N 61978 5 0050680 \N 61979 5 0071447 \N 61980 5 0090332 \N 61981 5 0022607 \N 61982 5 0006715 \N 61983 5 0032379 \N 61984 5 0085010 \N 61985 5 0044313 \N 61986 5 0046717 \N 61987 5 0023044 \N 61988 5 0000183 \N 61989 5 0006067 \N 61990 5 0033484 \N 61991 5 0006297 \N 61992 5 0051197 \N 61993 5 0007038 \N 61994 5 0046629 \N 61995 5 2001010 \N 61996 5 0023067 \N 61997 5 0034638 \N 61998 5 0046268 \N 61999 5 0033338 \N 62000 5 0045047 \N 62001 5 0032423 \N 62002 5 0035742 \N 62003 91 0000906 \N 62004 5 0018420 \N 62005 5 0046602 \N 62006 5 0052351 \N 62007 5 0038011 \N 62008 5 0030495 \N 62009 5 0048006 \N 62010 5 0039506 \N 62011 5 0003237 \N 62012 5 2000678 \N 62013 5 0033324 \N 62014 87 PWY-3542 \N 62015 5 0060708 \N 62016 5 0006831 \N 62017 5 0075173 \N 62018 5 0051543 \N 62019 5 0071911 \N 62020 5 2000853 \N 62021 5 0052422 \N 62022 5 0071331 \N 62023 5 0097106 \N 62024 5 0035623 \N 62025 3 11269503 \N 62026 5 0055074 \N 62027 5 0042516 \N 62028 5 0048562 \N 62029 5 0042414 \N 62030 5 0045873 \N 62031 5 0052218 \N 62032 5 0021878 \N 62033 5 0061151 \N 62034 5 0016260 \N 62035 5 0002453 \N 62036 5 0046059 \N 62037 5 0018190 \N 62038 5 0051228 \N 62039 5 0052402 \N 62040 5 0009097 \N 62041 5 0090407 \N 62042 4 chem_mtg \N 62043 5 0015801 \N 62044 5 0043481 \N 62045 5 0070203 \N 62046 5 0046890 \N 62047 5 0045680 \N 62048 5 0018931 \N 62049 94 //www.iversonsoftware.com/reference/chemistry/n/Naphthalene.htm \N 62050 5 0034434 \N 62051 5 0021871 \N 62052 5 0043092 \N 62053 5 0006290 \N 62054 5 0051987 \N 62055 5 0006544 \N 62056 5 0019803 \N 62057 89 AA0304 \N 62058 5 0071450 \N 62059 5 0085009 \N 62060 5 0001774 \N 62061 3 10626665 \N 62062 3 9893949 \N 62063 5 0003112 \N 62064 5 0060240 \N 62065 5 0071648 \N 62066 5 0000437 \N 62067 5 0002088 \N 62068 86 0582064333 \N 62069 5 0015729 \N 62070 5 0034367 \N 62071 5 0033499 \N 62072 87 PWY-3821 \N 62073 5 0039524 \N 62074 5 0010093 \N 62075 5 0021842 \N 62076 5 0006537 \N 62077 5 2000626 \N 62078 5 0090321 \N 62079 5 0072065 \N 62080 5 0097010 \N 62081 5 0019455 \N 62082 5 0051368 \N 62083 5 0051092 \N 62084 3 15087454 \N 62085 3 15170030 \N 62086 5 0035481 \N 62087 5 0018078 \N 62088 5 0052253 \N 62089 5 0045004 \N 62090 5 0010230 \N 62091 5 0043058 \N 62092 5 0050905 \N 62093 5 0019572 \N 62094 5 0007533 \N 62095 5 0002358 \N 62096 5 0016550 \N 62097 5 0032906 \N 62098 5 0007258 \N 62099 5 0042552 \N 62100 5 0050845 \N 62101 5 2000167 \N 62102 5 0051709 \N 62103 5 0045600 \N 62104 5 0015973 \N 62105 5 0070758 \N 62106 5 0018317 \N 62107 5 0043059 \N 62108 5 0003431 \N 62109 5 0048685 \N 62110 5 0019442 \N 62111 5 0071721 \N 62112 5 2000268 \N 62113 5 0035066 \N 62114 5 0010697 \N 62115 5 0031571 \N 62116 5 0006476 \N 62117 5 0060451 \N 62118 5 0009822 \N 62119 86 01221146743 \N 62120 5 0032055 \N 62121 5 0033656 \N 62122 5 0090258 \N 62123 5 0035159 \N 62124 5 0032347 \N 62125 5 0010448 \N 62126 86 0849397928 \N 62127 5 0070476 \N 62128 5 0000135 \N 62129 3 9925642 \N 62130 5 0060553 \N 62131 5 0046162 \N 62132 5 0000378 \N 62133 5 0021615 \N 62134 5 0016322 \N 62135 5 0030068 \N 62136 5 0032637 \N 62137 5 0060234 \N 62138 5 0048316 \N 62139 102 0009010 \N 62140 5 0061283 \N 62141 5 0018882 \N 62142 5 0072182 \N 62143 5 0019729 \N 62144 89 AA0189 \N 62145 5 0000025 \N 62146 5 0002476 \N 62147 5 0015734 \N 62148 5 0097090 \N 62149 3 19730411 \N 62150 5 0034651 \N 62151 5 0048774 \N 62152 5 0045803 \N 62153 5 2000690 \N 62154 5 0051878 \N 62155 3 11463847 \N 62156 5 0031069 \N 62157 5 0060561 \N 62158 5 0002645 \N 62159 5 0007136 \N 62160 5 0042692 \N 62161 5 0007131 \N 62162 5 0000021 \N 62163 5 0007145 \N 62164 3 2087779 \N 62165 5 0060802 \N 62166 5 0033331 \N 62167 5 0008016 \N 62168 5 0043278 \N 62169 5 0006934 \N 62170 5 0075074 \N 62171 5 0070989 \N 62172 5 2000332 \N 62173 5 0018905 \N 62174 97 dme \N 62175 5 0035722 \N 62176 5 0006697 \N 62177 5 0002543 \N 62178 5 0002584 \N 62179 5 0006405 \N 62180 5 0043449 \N 62181 5 0019053 \N 62182 5 0035916 \N 62183 5 0009073 \N 62184 5 0016089 \N 62185 5 0048466 \N 62186 5 0021908 \N 62187 5 0031998 \N 62188 5 0016143 \N 62189 5 0008205 \N 62190 5 0061330 \N 62191 5 0045622 \N 62192 5 0003262 \N 62193 5 0072608 \N 62194 5 0002285 \N 62195 5 0070949 \N 62196 5 0006503 \N 62197 5 0071045 \N 62198 5 0045567 \N 62199 5 0003358 \N 62200 5 0035134 \N 62201 5 0019379 \N 62202 5 0002531 \N 62203 3 15642986 \N 62204 3 15834430 \N 62205 5 0002282 \N 62206 5 0048578 \N 62207 5 0032620 \N 62208 114 000001092 \N 62209 5 0046653 \N 62210 5 0010892 \N 62211 3 8830768 \N 62212 5 0052533 \N 62213 5 0009553 \N 62214 5 0048230 \N 62215 5 0006766 \N 62216 5 0046794 \N 62217 5 0016458 \N 62218 5 0045837 \N 62219 5 0009804 \N 62220 5 0061352 \N 62221 5 0048467 \N 62222 102 0008062 \N 62223 5 0034269 \N 62224 5 0071620 \N 62225 5 0070655 \N 62226 5 0046124 \N 62227 5 0061344 \N 62228 5 0090058 \N 62229 5 0051788 \N 62230 5 0060273 \N 62231 5 0046261 \N 62232 5 0001799 \N 62233 5 0018118 \N 62234 89 AA0229 \N 62235 5 0010847 \N 62236 5 0048330 \N 62237 5 0032101 \N 62238 5 0015811 \N 62239 5 0000304 \N 62240 5 0019097 \N 62241 5 0048119 \N 62242 5 0046310 \N 62243 5 0002431 \N 62244 5 0046651 \N 62245 5 0021531 \N 62246 3 16185248 \N 62247 5 0002201 \N 62248 3 16261174 \N 62249 5 0009692 \N 62250 5 0071239 \N 62251 5 0006356 \N 62252 5 0010679 \N 62253 5 0015981 \N 62254 5 0010392 \N 62255 5 0046243 \N 62256 5 0046081 \N 62257 5 0019632 \N 62258 5 0072082 \N 62259 5 0060024 \N 62260 5 0006046 \N 62261 5 0048583 \N 62262 5 0071948 \N 62263 3 11032170 \N 62264 3 19300454 \N 62265 5 0010970 \N 62266 5 0003163 \N 62267 5 0034136 \N 62268 5 0048496 \N 62269 5 0052300 \N 62270 5 0010674 \N 62271 5 0032920 \N 62272 5 0043054 \N 62273 3 12620986 \N 62274 5 0055095 \N 62275 5 0006783 \N 62276 5 0017180 \N 62277 5 0050701 \N 62278 5 0042049 \N 62279 5 0001182 \N 62280 5 0003123 \N 62281 5 2001056 \N 62282 5 0040036 \N 62283 5 0014812 \N 62284 5 0045860 \N 62285 5 0018097 \N 62286 89 AA0207 \N 62287 5 0006274 \N 62288 3 10209736 \N 62289 5 2000921 \N 62290 5 0042038 \N 62291 5 0042261 \N 62292 89 AA0317 \N 62293 5 0046441 \N 62294 5 0071389 \N 62295 5 0090065 \N 62296 5 0035311 \N 62297 5 0019083 \N 62298 5 0046344 \N 62299 5 0033032 \N 62300 5 0040028 \N 62301 5 0031455 \N 62302 5 0072162 \N 62303 5 0090069 \N 62304 5 0071349 \N 62305 5 0006640 \N 62306 5 0046747 \N 62307 5 0060493 \N 62308 5 0018086 \N 62309 5 0018368 \N 62310 5 0042231 \N 62311 5 0043328 \N 62312 5 0071531 \N 62313 112 IPR011539 \N 62314 5 0021735 \N 62315 5 0002208 \N 62316 5 0003218 \N 62317 5 0050949 \N 62318 5 0060126 \N 62319 5 0072481 \N 62320 5 2000905 \N 62321 5 0042187 \N 62322 5 0009290 \N 62323 5 0035280 \N 62324 5 0033488 \N 62325 87 PWY66-3 \N 62326 5 0046617 \N 62327 5 0034193 \N 62328 5 0051084 \N 62329 5 0008582 \N 62330 5 0035286 \N 62331 5 0018893 \N 62332 97 dbf \N 62333 5 0030951 \N 62334 5 0051174 \N 62335 5 0071582 \N 62336 5 2000543 \N 62337 5 0019545 \N 62338 5 0046017 \N 62339 5 0042632 \N 62340 5 0002273 \N 62341 3 16174108 \N 62342 5 0014821 \N 62343 5 0000374 \N 62344 5 0051129 \N 62345 5 0010934 \N 62346 5 0072600 \N 62347 5 0015977 \N 62348 5 0003321 \N 62349 5 0046137 \N 62350 5 0019654 \N 62351 87 P142-PWY \N 62352 5 0032760 \N 62353 5 0048710 \N 62354 5 0048292 \N 62355 5 0022614 \N 62356 5 0042679 \N 62357 5 0042678 \N 62358 5 0033319 \N 62359 5 0003374 \N 62360 5 0045781 \N 62361 5 0018013 \N 62362 5 0019221 \N 62363 5 0034976 \N 62364 5 0085024 \N 62365 5 0035816 \N 62366 5 0001556 \N 62367 5 0022012 \N 62368 5 0010353 \N 62369 3 17031512 \N 62370 5 0015781 \N 62371 5 0061389 \N 62372 5 0035984 \N 62373 5 0071352 \N 62374 5 0071694 \N 62375 5 0018351 \N 62376 5 0046113 \N 62377 5 0010567 \N 62378 5 0052103 \N 62379 5 0061360 \N 62380 5 0021943 \N 62381 5 0080151 \N 62382 3 20181750 \N 62383 5 0042619 \N 62384 94 //biotech.icmb.utexas.edu/search/dict-search.html \N 62385 5 0048715 \N 62386 5 0060507 \N 62387 5 0072208 \N 62388 5 0072658 \N 62389 5 0043383 \N 62390 5 0051137 \N 62391 5 0060500 \N 62392 5 0043315 \N 62393 5 0080168 \N 62394 3 20133881 \N 62395 5 0046146 \N 62396 5 0090012 \N 62397 5 0009699 \N 62398 5 0051972 \N 62399 5 0045107 \N 62400 3 8776884 \N 62401 5 0060468 \N 62402 5 0042273 \N 62403 5 0071982 \N 62404 5 0046040 \N 62405 5 0080034 \N 62406 3 18836040 \N 62407 5 0035477 \N 62408 5 0019461 \N 62409 5 0002019 \N 62410 5 0071657 \N 62411 5 0075055 \N 62412 5 0018174 \N 62413 5 0070212 \N 62414 5 0072244 \N 62415 5 0001936 \N 62416 5 0072409 \N 62417 5 0009566 \N 62418 5 0033321 \N 62419 5 0048568 \N 62420 5 0043537 \N 62421 5 0042685 \N 62422 5 0050712 \N 62423 5 0042278 \N 62424 5 0031050 \N 62425 5 0046121 \N 62426 5 0001989 \N 62427 5 0019583 \N 62428 5 0003387 \N 62429 5 0075169 \N 62430 5 0033615 \N 62431 5 0080158 \N 62432 3 20561259 \N 62433 5 0045487 \N 62434 5 0002596 \N 62435 5 0046869 \N 62436 89 AA0331 \N 62437 5 0033334 \N 62438 5 0032085 \N 62439 5 0071105 \N 62440 5 0002769 \N 62441 5 2000495 \N 62442 5 0072391 \N 62443 5 0072663 \N 62444 5 0070729 \N 62445 5 0046534 \N 62446 5 0045675 \N 62447 5 0003095 \N 62448 5 0035210 \N 62449 94 //sdb.bio.purdue.edu/fly/aimain/1adult.htm \N 62450 5 0002806 \N 62451 5 0010257 \N 62452 5 0006778 \N 62453 5 0055062 \N 62454 5 0007478 \N 62455 5 0070378 \N 62456 5 0021634 \N 62457 5 0032857 \N 62458 5 0051296 \N 62459 5 0072316 \N 62460 5 0051326 \N 62461 5 0052250 \N 62462 5 0075098 \N 62463 5 0045697 \N 62464 5 0046254 \N 62465 5 0052515 \N 62466 5 0014724 \N 62467 5 0050761 \N 62468 5 0060419 \N 62469 5 0044081 \N 62470 5 0070632 \N 62471 5 0060083 \N 62472 5 0071456 \N 62473 5 2000757 \N 62474 5 2000868 \N 62475 5 2001048 \N 62476 5 0045763 \N 62477 5 0038029 \N 62478 3 21167805 \N 62479 5 0052086 \N 62480 5 0051977 \N 62481 5 2000350 \N 62482 5 0019556 \N 62483 5 0001697 \N 62484 5 0075138 \N 62485 5 2000450 \N 62486 5 0033127 \N 62487 5 0075200 \N 62488 5 0021650 \N 62489 5 0075184 \N 62490 5 0071609 \N 62491 5 0010572 \N 62492 5 0045814 \N 62493 5 0043634 \N 62494 5 0048875 \N 62495 5 0071354 \N 62496 5 0033552 \N 62497 5 0001751 \N 62498 5 0052119 \N 62499 5 0070623 \N 62500 5 0060461 \N 62501 5 0055008 \N 62502 5 0034243 \N 62503 5 0090039 \N 62504 5 0020035 \N 62505 5 2000993 \N 62506 5 0003186 \N 62507 5 0007516 \N 62508 5 0023057 \N 62509 5 0045718 \N 62510 5 0048613 \N 62511 5 2000522 \N 62512 5 0080147 \N 62513 3 19675148 \N 62514 5 0052170 \N 62515 5 0090394 \N 62516 5 0060392 \N 62517 5 0035809 \N 62518 5 0045937 \N 62519 5 0061246 \N 62520 5 0018934 \N 62521 97 nta \N 62522 5 0075192 \N 62523 5 0071409 \N 62524 5 0070903 \N 62525 5 0010640 \N 62526 5 0048538 \N 62527 5 2000875 \N 62528 5 0032776 \N 62529 5 0000902 \N 62530 5 0007148 \N 62531 5 0045790 \N 62532 5 0045791 \N 62533 5 0045711 \N 62534 5 0045144 \N 62535 5 0051465 \N 62536 5 0052545 \N 62537 5 0090264 \N 62538 5 2000659 \N 62539 5 0034222 \N 62540 5 0050901 \N 62541 5 0000820 \N 62542 5 0031117 \N 62543 5 0030811 \N 62544 5 0032536 \N 62545 5 0052491 \N 62546 5 0019322 \N 62547 5 0009762 \N 62548 5 0090255 \N 62549 5 0010032 \N 62550 3 10072401 \N 62551 5 0000191 \N 62552 5 0023060 \N 62553 5 0075041 \N 62554 5 0042450 \N 62555 5 0006974 \N 62556 5 0034984 \N 62557 5 0045887 \N 62558 5 0090237 \N 62559 5 0031509 \N 62560 5 0072593 \N 62561 88 26523 \N 62562 5 0008209 \N 62563 5 2000652 \N 62564 5 0046843 \N 62565 5 0070884 \N 62566 5 0006850 \N 62567 5 0001547 \N 62568 5 0046090 \N 62569 5 0042840 \N 62570 5 0043327 \N 62571 5 0046805 \N 62572 89 AA0329 \N 62573 5 0035413 \N 62574 5 0045384 \N 62575 5 0007553 \N 62576 5 0052406 \N 62577 5 0048542 \N 62578 5 0051830 \N 62579 5 0010189 \N 62580 5 0080140 \N 62581 5 0014027 \N 62582 5 0045470 \N 62583 5 0010601 \N 62584 5 0000447 \N 62585 5 0051300 \N 62586 5 0051426 \N 62587 5 0010458 \N 62588 5 0072356 \N 62589 5 0035953 \N 62590 5 0010870 \N 62591 5 0002670 \N 62592 5 0042117 \N 62593 5 0021544 \N 62594 5 0075244 \N 62595 5 0001892 \N 62596 5 0071816 \N 62597 3 20516149 \N 62598 3 20676083 \N 62599 5 0010274 \N 62600 5 0044088 \N 62601 5 2001059 \N 62602 5 0006722 \N 62603 5 0019128 \N 62604 5 0018092 \N 62605 5 0018374 \N 62606 89 AA0198 \N 62607 5 0002367 \N 62608 5 0009710 \N 62609 5 0042358 \N 62610 5 0032411 \N 62611 5 0070934 \N 62612 5 0014890 \N 62613 5 0071359 \N 62614 5 0051318 \N 62615 5 0034504 \N 62616 5 0000483 \N 62617 5 0031658 \N 62618 5 0052361 \N 62619 5 0042710 \N 62620 3 11932229 \N 62621 5 2000242 \N 62622 5 0035209 \N 62623 5 0002819 \N 62624 5 0019676 \N 62625 87 AMMASSIM-PWY \N 62626 5 0052150 \N 62627 5 0009106 \N 62628 5 0000273 \N 62629 5 0002684 \N 62630 5 0046076 \N 62631 5 2000469 \N 62632 5 0048402 \N 62633 5 2000917 \N 62634 5 0042492 \N 62635 91 0000798 \N 62636 5 2000474 \N 62637 5 0030841 \N 62638 5 2000618 \N 62639 5 0001802 \N 62640 5 0090203 \N 62641 5 0060406 \N 62642 5 0002524 \N 62643 5 0006429 \N 62644 5 0045641 \N 62645 5 0051552 \N 62646 5 0052274 \N 62647 5 2000532 \N 62648 5 0046049 \N 62649 5 0045897 \N 62650 5 0007245 \N 62651 5 0072351 \N 62652 5 0034613 \N 62653 5 0016249 \N 62654 5 0009139 \N 62655 5 0006480 \N 62656 5 0061006 \N 62657 5 0051960 \N 62658 5 0072302 \N 62659 5 0015905 \N 62660 86 91191028X \N 62661 5 0046023 \N 62662 5 0071433 \N 62663 5 0032851 \N 62664 5 0034349 \N 62665 5 0033697 \N 62666 5 0090090 \N 62667 5 0007122 \N 62668 5 0018389 \N 62669 5 0032193 \N 62670 5 0002853 \N 62671 5 0045953 \N 62672 5 0002471 \N 62673 3 11200054 \N 62674 5 0000450 \N 62675 5 0002595 \N 62676 5 0007622 \N 62677 5 0043479 \N 62678 5 0046176 \N 62679 5 0007220 \N 62680 3 14986688 \N 62681 5 0060408 \N 62682 5 0045397 \N 62683 5 0010364 \N 62684 5 0021750 \N 62685 5 0002230 \N 62686 5 0070223 \N 62687 5 0043376 \N 62688 5 0002393 \N 62689 5 0021657 \N 62690 5 0002635 \N 62691 5 0061185 \N 62692 5 0052020 \N 62693 5 0002575 \N 62694 5 0043988 \N 62695 5 0046851 \N 62696 5 0008202 \N 62697 5 0021934 \N 62698 5 0090100 \N 62699 5 0050887 \N 62700 5 0090226 \N 62701 5 0072423 \N 62702 5 0071041 \N 62703 5 0007439 \N 62704 5 0003398 \N 62705 5 0006309 \N 62706 5 0008178 \N 62707 5 0060438 \N 62708 5 0060662 \N 62709 5 0006302 \N 62710 5 0052262 \N 62711 5 0051886 \N 62712 5 2000540 \N 62713 5 0001926 \N 62714 5 0052232 \N 62715 5 0019915 \N 62716 3 11102830 \N 62717 5 0032017 \N 62718 5 0071363 \N 62719 5 0008335 \N 62720 5 0050679 \N 62721 5 0033514 \N 62722 87 PWY-5283 \N 62723 5 0007315 \N 62724 5 0048113 \N 62725 5 0051905 \N 62726 5 0071788 \N 62727 5 0015716 \N 62728 5 0009623 \N 62729 5 0009242 \N 62730 5 0060616 \N 62731 5 0090276 \N 62732 5 2000275 \N 62733 5 0002788 \N 62734 5 0030919 \N 62735 3 489587 \N 62736 3 7309355 \N 62737 89 AA0364 \N 62738 5 0061305 \N 62739 5 0010404 \N 62740 5 0001789 \N 62741 3 14592418 \N 62742 5 0042424 \N 62743 5 0006658 \N 62744 5 0042998 \N 62745 5 0009407 \N 62746 5 0000388 \N 62747 5 0000396 \N 62748 5 0000397 \N 62749 5 0016189 \N 62750 5 0044011 \N 62751 5 0060874 \N 62752 5 0051913 \N 62753 5 0015962 \N 62754 5 0032602 \N 62755 5 0061089 \N 62756 5 0046673 \N 62757 5 0032870 \N 62758 5 0009858 \N 62759 5 0018906 \N 62760 97 mtb \N 62761 5 0045195 \N 62762 94 //www.ddc.musc.edu/ddc_pro/pro_development/basic_science/gallstones.htm \N 62763 5 0018182 \N 62764 89 AA0276 \N 62765 5 0030388 \N 62766 5 0072500 \N 62767 5 0070960 \N 62768 5 0032020 \N 62769 5 0043407 \N 62770 5 0048360 \N 62771 5 0019423 \N 62772 5 0014063 \N 62773 5 2000797 \N 62774 5 0021644 \N 62775 5 0032074 \N 62776 5 0035784 \N 62777 5 2000153 \N 62778 5 0006613 \N 62779 3 10512867 \N 62780 3 16896215 \N 62781 5 0072491 \N 62782 5 0046771 \N 62783 5 0042092 \N 62784 3 18000958 \N 62785 3 18007680 \N 62786 3 20065995 \N 62787 3 20200518 \N 62788 5 0051218 \N 62789 119 1HOH \N 62790 3 12220497 \N 62791 89 AA0376 \N 62792 5 0042999 \N 62793 5 0052199 \N 62794 5 0051000 \N 62795 5 0043044 \N 62796 3 12042764 \N 62797 5 2000098 \N 62798 5 0010879 \N 62799 5 0031170 \N 62800 3 12828635 \N 62801 5 0034380 \N 62802 5 0051898 \N 62803 5 0048289 \N 62804 5 0035712 \N 62805 5 0060421 \N 62806 5 0034051 \N 62807 5 0010229 \N 62808 5 0021957 \N 62809 5 0051356 \N 62810 5 0051652 \N 62811 5 0060888 \N 62812 5 0001986 \N 62813 5 0010492 \N 62814 3 17461786 \N 62815 5 0007538 \N 62816 5 0075329 \N 62817 5 0018119 \N 62818 89 AA0230 \N 62819 5 0010143 \N 62820 5 0019256 \N 62821 5 0072678 \N 62822 91 0000084 \N 62823 5 0048340 \N 62824 5 0046295 \N 62825 5 0048778 \N 62826 5 0021598 \N 62827 5 0071274 \N 62828 5 0007251 \N 62829 5 0006185 \N 62830 5 0051891 \N 62831 5 0061140 \N 62832 5 0031155 \N 62833 5 0070726 \N 62834 5 0030100 \N 62835 5 0045775 \N 62836 5 0035470 \N 62837 5 0070370 \N 62838 5 0019374 \N 62839 5 0035045 \N 62840 5 0010774 \N 62841 5 0009826 \N 62842 5 0075320 \N 62843 5 0052120 \N 62844 5 0016257 \N 62845 5 0007305 \N 62846 5 0052009 \N 62847 5 0070124 \N 62848 5 0032573 \N 62849 5 0032895 \N 62850 5 0001658 \N 62851 5 0060142 \N 62852 5 0006990 \N 62853 5 0034183 \N 62854 5 0045800 \N 62855 5 0052257 \N 62856 5 0050783 \N 62857 5 0031914 \N 62858 5 0007029 \N 62859 5 0000769 \N 62860 5 0045226 \N 62861 5 0060167 \N 62862 5 0034058 \N 62863 3 11964142 \N 62864 3 9422733 \N 62865 5 0070810 \N 62866 5 0007386 \N 62867 5 0060565 \N 62868 5 0021777 \N 62869 5 0021770 \N 62870 5 0071327 \N 62871 5 0019045 \N 62872 5 0051705 \N 62873 5 0023032 \N 62874 5 0019405 \N 62875 5 0032515 \N 62876 5 0070471 \N 62877 5 0003402 \N 62878 5 0006202 \N 62879 5 2001035 \N 62880 5 0043617 \N 62881 5 0035856 \N 62882 5 0007488 \N 62883 5 0030472 \N 62884 5 0000071 \N 62885 5 0061100 \N 62886 3 9126746 \N 62887 5 0033153 \N 62888 5 0052487 \N 62889 5 0042404 \N 62890 5 0046901 \N 62891 5 0046034 \N 62892 5 0060519 \N 62893 5 0090161 \N 62894 5 0000349 \N 62895 5 0000356 \N 62896 5 0000357 \N 62897 5 0045648 \N 62898 5 0010665 \N 62899 5 0001707 \N 62900 5 0071508 \N 62901 5 0052191 \N 62902 5 0001523 \N 62903 5 0045630 \N 62904 5 0061005 \N 62905 5 0070483 \N 62906 5 0051112 \N 62907 5 0044127 \N 62908 5 0010312 \N 62909 5 0032319 \N 62910 5 0055004 \N 62911 5 0046197 \N 62912 5 0018120 \N 62913 5 0030210 \N 62914 5 0023005 \N 62915 5 0031145 \N 62916 5 0071323 \N 62917 5 0014031 \N 62918 5 0030720 \N 62919 3 10449356 \N 62920 5 0018964 \N 62921 5 0016567 \N 62922 5 0032180 \N 62923 5 0007634 \N 62924 5 0050652 \N 62925 5 0010817 \N 62926 5 0032215 \N 62927 5 0014040 \N 62928 5 2000400 \N 62929 5 0052081 \N 62930 5 0019760 \N 62931 88 24279 \N 62932 5 0001101 \N 62933 5 0035094 \N 62934 88 17688 \N 62935 5 0003037 \N 62936 5 0051846 \N 62937 5 0051234 \N 62938 5 0009620 \N 62939 5 0009621 \N 62940 5 0060088 \N 62941 3 10978835 \N 62942 5 0014837 \N 62943 5 0045807 \N 62944 5 0006338 \N 62945 3 12697820 \N 62946 5 0034249 \N 62947 5 0019338 \N 62948 5 0050935 \N 62949 5 0006583 \N 62950 5 0071378 \N 62951 5 0080160 \N 62952 3 18761637 \N 62953 5 0070791 \N 62954 3 17446882 \N 62955 5 0021670 \N 62956 5 0042366 \N 62957 5 0006075 \N 62958 5 0061044 \N 62959 5 0030260 \N 62960 5 0018915 \N 62961 94 //www.speclab.com/compound/c100414.htm \N 62962 5 0018251 \N 62963 89 AA0183 \N 62964 5 0072575 \N 62965 5 0000272 \N 62966 5 0030631 \N 62967 3 11435424 \N 62968 89 AA0321 \N 62969 5 0044000 \N 62970 5 0051481 \N 62971 5 2000985 \N 62972 5 0007166 \N 62973 5 0046214 \N 62974 5 0071494 \N 62975 5 0034329 \N 62976 5 0055078 \N 62977 5 2000042 \N 62978 5 0075106 \N 62979 5 0045792 \N 62980 5 0051918 \N 62981 5 0014817 \N 62982 5 0016074 \N 62983 5 2000480 \N 62984 5 0022402 \N 62985 5 0045039 \N 62986 5 0000477 \N 62987 5 0060016 \N 62988 5 0021899 \N 62989 5 0016049 \N 62990 5 0048591 \N 62991 5 0006390 \N 62992 5 0016240 \N 62993 5 0021819 \N 62994 5 0071873 \N 62995 5 0046877 \N 62996 5 0060373 \N 62997 5 0080024 \N 62998 5 0051857 \N 62999 5 0045086 \N 63000 5 0052526 \N 63001 5 0071266 \N 63002 5 0003380 \N 63003 5 2000023 \N 63004 5 0042701 \N 63005 5 0045467 \N 63006 5 2000032 \N 63007 5 0008365 \N 63008 5 0048369 \N 63009 5 2000390 \N 63010 5 0008164 \N 63011 5 0010217 \N 63012 5 0072040 \N 63013 5 0048517 \N 63014 5 0021767 \N 63015 5 0010693 \N 63016 5 0019260 \N 63017 5 0071937 \N 63018 5 0042371 \N 63019 5 0034305 \N 63020 5 0030186 \N 63021 5 0072077 \N 63022 5 0043922 \N 63023 5 0006039 \N 63024 5 0002539 \N 63025 5 0006434 \N 63026 5 0060722 \N 63027 5 0009755 \N 63028 5 0045677 \N 63029 5 0046104 \N 63030 5 0045656 \N 63031 5 0032827 \N 63032 5 0060015 \N 63033 5 0045085 \N 63034 5 0097033 \N 63035 5 0000970 \N 63036 5 0010025 \N 63037 5 0048324 \N 63038 5 0030716 \N 63039 5 0001123 \N 63040 5 0009210 \N 63041 5 2000086 \N 63042 5 0033602 \N 63043 5 0048537 \N 63044 5 0001955 \N 63045 5 0061161 \N 63046 5 0044261 \N 63047 5 0071210 \N 63048 5 0035291 \N 63049 5 0060137 \N 63050 5 0061332 \N 63051 5 0048812 \N 63052 5 0003166 \N 63053 5 0060541 \N 63054 5 0040019 \N 63055 5 0046371 \N 63056 5 0021721 \N 63057 5 0010905 \N 63058 5 0021890 \N 63059 5 2000385 \N 63060 5 0006030 \N 63061 5 0045864 \N 63062 5 0031646 \N 63063 5 0034728 \N 63064 5 0034637 \N 63065 5 0001809 \N 63066 5 0042921 \N 63067 5 0015891 \N 63068 5 0015892 \N 63069 5 0045947 \N 63070 5 0050432 \N 63071 5 0052014 \N 63072 5 0042067 \N 63073 5 0007627 \N 63074 5 2000562 \N 63075 5 0009629 \N 63076 5 2000014 \N 63077 5 0010430 \N 63078 87 PWY-2724 \N 63079 3 16404574 \N 63080 5 0030821 \N 63081 5 0044278 \N 63082 5 0007090 \N 63083 5 0046788 \N 63084 4 rh1 \N 63085 5 0035023 \N 63086 5 0021835 \N 63087 5 2000550 \N 63088 5 0043065 \N 63089 5 0060770 \N 63090 5 0050742 \N 63091 89 AA0351 \N 63092 5 0003330 \N 63093 5 0070849 \N 63094 5 0072434 \N 63095 5 0060365 \N 63096 5 0042439 \N 63097 5 0032066 \N 63098 5 0048832 \N 63099 5 0061195 \N 63100 5 2001024 \N 63101 5 0018021 \N 63102 5 0070583 \N 63103 3 18756268 \N 63104 5 0006705 \N 63105 5 0035947 \N 63106 5 0046012 \N 63107 5 0010808 \N 63108 5 0034175 \N 63109 5 0021832 \N 63110 5 0038020 \N 63111 5 0009738 \N 63112 5 0021790 \N 63113 5 0006255 \N 63114 5 0002756 \N 63115 5 0051966 \N 63116 5 0035318 \N 63117 5 0035530 \N 63118 3 19812544 \N 63119 5 0007568 \N 63120 5 0016280 \N 63121 5 0007441 \N 63122 5 0071469 \N 63123 5 0070400 \N 63124 5 0031044 \N 63125 5 0061082 \N 63126 5 0019922 \N 63127 5 0071446 \N 63128 5 0051799 \N 63129 5 0014809 \N 63130 5 0072402 \N 63131 5 0044035 \N 63132 5 0009268 \N 63133 5 0007289 \N 63134 5 0072173 \N 63135 5 0035436 \N 63136 5 0051949 \N 63137 5 0009235 \N 63138 5 0016562 \N 63139 5 0017006 \N 63140 5 0007458 \N 63141 5 0080093 \N 63142 5 0010987 \N 63143 5 0052078 \N 63144 5 0002414 \N 63145 5 0032917 \N 63146 5 0009638 \N 63147 3 16870491 \N 63148 5 0042816 \N 63149 5 0002339 \N 63150 5 0006235 \N 63151 5 0003074 \N 63152 5 0002484 \N 63153 5 0043452 \N 63154 5 0015751 \N 63155 5 0015942 \N 63156 5 0034407 \N 63157 5 0071690 \N 63158 5 0000726 \N 63159 5 0080183 \N 63160 92 10.1111/j.1399-3054.1994.tb03042.x \N 63161 5 0055122 \N 63162 5 0046802 \N 63163 3 9601512 \N 63164 3 9765421 \N 63165 5 0035864 \N 63166 5 0042446 \N 63167 5 0032286 \N 63168 5 0019333 \N 63169 87 DENITRIFICATION-PWY \N 63170 5 0002917 \N 63171 5 0052479 \N 63172 5 2000597 \N 63173 5 0002903 \N 63174 5 0052409 \N 63175 5 0033247 \N 63176 5 0072269 \N 63177 5 0070489 \N 63178 5 0035103 \N 63179 5 0042311 \N 63180 5 0030032 \N 63181 5 0032955 \N 63182 5 0071660 \N 63183 5 0044058 \N 63184 5 0043170 \N 63185 5 0043283 \N 63186 5 0046755 \N 63187 5 0035365 \N 63188 5 0030177 \N 63189 5 0045811 \N 63190 5 0060876 \N 63191 5 0001014 \N 63192 5 0048169 \N 63193 5 2000405 \N 63194 5 0021912 \N 63195 5 0061212 \N 63196 5 0048693 \N 63197 5 0046416 \N 63198 5 0006056 \N 63199 5 0043116 \N 63200 5 0052653 \N 63201 88 593038 \N 63202 5 0002486 \N 63203 5 0070555 \N 63204 5 0006624 \N 63205 5 0042966 \N 63206 3 8102363 \N 63207 5 0032753 \N 63208 5 0045847 \N 63209 5 0061038 \N 63210 5 0050853 \N 63211 5 0045167 \N 63212 5 0033632 \N 63213 5 0034643 \N 63214 5 0009253 \N 63215 5 0009286 \N 63216 5 0019532 \N 63217 5 0018283 \N 63218 5 0008535 \N 63219 94 //www.med.wright.edu/bmb/lp/lplab.htm \N 63220 5 2000804 \N 63221 5 0035164 \N 63222 5 0035680 \N 63223 5 0043254 \N 63224 5 0052339 \N 63225 5 0052371 \N 63226 5 2000716 \N 63227 5 0070598 \N 63228 5 0018220 \N 63229 89 AA0079 \N 63230 5 0002377 \N 63231 5 0061229 \N 63232 5 0002429 \N 63233 5 2000301 \N 63234 5 0016130 \N 63235 5 0048895 \N 63236 5 0007170 \N 63237 5 0030438 \N 63238 5 0071896 \N 63239 5 0010148 \N 63240 5 0010790 \N 63241 5 0007095 \N 63242 3 10856933 \N 63243 3 11406266 \N 63244 5 0032369 \N 63245 5 2000572 \N 63246 5 0090022 \N 63247 5 0032254 \N 63248 5 0070308 \N 63249 5 0090348 \N 63250 5 0009661 \N 63251 5 2000640 \N 63252 5 0075301 \N 63253 5 0070217 \N 63254 5 0043649 \N 63255 5 0001559 \N 63256 5 0090316 \N 63257 5 0046448 \N 63258 5 0042590 \N 63259 5 0001811 \N 63260 5 0060056 \N 63261 5 0019680 \N 63262 5 0060208 \N 63263 5 0060049 \N 63264 5 0010496 \N 63265 5 0043300 \N 63266 5 0030431 \N 63267 5 0032239 \N 63268 5 0033396 \N 63269 87 PWY-3982 \N 63270 5 0030866 \N 63271 5 2000139 \N 63272 5 0019327 \N 63273 87 P301-PWY \N 63274 5 0033507 \N 63275 87 PWY-2821 \N 63276 5 0042035 \N 63277 5 0032275 \N 63278 5 0031067 \N 63279 5 0022037 \N 63280 5 0042618 \N 63281 5 0043060 \N 63282 5 0009601 \N 63283 5 0006566 \N 63284 5 0036001 \N 63285 87 PYRIDOXSYN-PWY \N 63286 5 0055099 \N 63287 5 0035860 \N 63288 3 12953054 \N 63289 5 0048744 \N 63290 5 0051200 \N 63291 5 0006676 \N 63292 5 0090280 \N 63293 5 0071039 \N 63294 3 16973437 \N 63295 3 18007593 \N 63296 5 0046483 \N 63297 5 0035431 \N 63298 5 0043583 \N 63299 5 0019320 \N 63300 5 0052071 \N 63301 5 0002863 \N 63302 5 0002265 \N 63303 3 11138785 \N 63304 5 0010086 \N 63305 5 0003016 \N 63306 5 0010802 \N 63307 5 0019610 \N 63308 5 0033490 \N 63309 87 PWY66-341 \N 63310 5 0032967 \N 63311 5 0048723 \N 63312 5 0052355 \N 63313 5 0006091 \N 63314 5 0030489 \N 63315 5 0060835 \N 63316 5 0070910 \N 63317 5 0018924 \N 63318 5 0061119 \N 63319 3 19684855 \N 63320 5 2000191 \N 63321 5 0001035 \N 63322 5 0045948 \N 63323 5 0075293 \N 63324 5 0071257 \N 63325 5 0010647 \N 63326 5 0035927 \N 63327 5 0075340 \N 63328 5 0070710 \N 63329 5 0007284 \N 63330 5 0033084 \N 63331 5 0002920 \N 63332 5 0010547 \N 63333 5 0007042 \N 63334 5 0070777 \N 63335 88 17364 \N 63336 5 0045663 \N 63337 5 0001188 \N 63338 5 0048067 \N 63339 5 2000146 \N 63340 5 0002496 \N 63341 5 0000296 \N 63342 5 0021678 \N 63343 5 0051712 \N 63344 5 0085030 \N 63345 5 0052032 \N 63346 5 0051271 \N 63347 5 0006166 \N 63348 5 0033684 \N 63349 5 0008645 \N 63350 5 0002561 \N 63351 5 0018345 \N 63352 5 0018318 \N 63353 5 0018349 \N 63354 3 15520806 \N 63355 5 0010789 \N 63356 5 0009058 \N 63357 5 0018203 \N 63358 5 0002847 \N 63359 5 0007214 \N 63360 5 0060247 \N 63361 5 0015775 \N 63362 5 0070071 \N 63363 5 0048098 \N 63364 5 0045996 \N 63365 5 0070646 \N 63366 5 0031662 \N 63367 5 0046456 \N 63368 5 0048301 \N 63369 5 0045013 \N 63370 5 0048573 \N 63371 5 0009130 \N 63372 5 0052347 \N 63373 5 0070639 \N 63374 88 28934 \N 63375 5 0060526 \N 63376 5 0032651 \N 63377 5 0051038 \N 63378 5 0010120 \N 63379 5 0032713 \N 63380 5 0021995 \N 63381 5 0097154 \N 63382 3 11517269 \N 63383 5 0048176 \N 63384 5 0048664 \N 63385 5 0030922 \N 63386 3 12623015 \N 63387 89 AA0365 \N 63388 5 0010842 \N 63389 3 1270266 \N 63390 5 0031001 \N 63391 5 0072119 \N 63392 5 0051050 \N 63393 5 0010704 \N 63394 5 0021975 \N 63395 5 0032463 \N 63396 5 0042355 \N 63397 5 0046829 \N 63398 5 2000817 \N 63399 5 0051729 \N 63400 5 0060328 \N 63401 5 0090049 \N 63402 5 0051262 \N 63403 5 0018290 \N 63404 89 AA0141 \N 63405 5 2000908 \N 63406 5 0045557 \N 63407 5 0009416 \N 63408 5 0003424 \N 63409 5 0052701 \N 63410 5 0006424 \N 63411 5 0021867 \N 63412 5 0019616 \N 63413 5 0018910 \N 63414 88 16716 \N 63415 5 0048335 \N 63416 5 0001830 \N 63417 5 0060843 \N 63418 5 0042869 \N 63419 5 0046506 \N 63420 5 0006218 \N 63421 5 0019098 \N 63422 5 0072069 \N 63423 5 0080177 \N 63424 3 20813909 \N 63425 5 0018241 \N 63426 5 2000857 \N 63427 5 0071220 \N 63428 5 0031123 \N 63429 5 0000967 \N 63430 5 0010373 \N 63431 5 0042956 \N 63432 5 0021706 \N 63433 5 0046304 \N 63434 5 2000586 \N 63435 5 0046856 \N 63436 5 0046840 \N 63437 5 0044065 \N 63438 5 0014877 \N 63439 5 0051067 \N 63440 88 30156 \N 63441 5 0003150 \N 63442 5 0007201 \N 63443 5 0000947 \N 63444 5 0052221 \N 63445 5 0006895 \N 63446 5 0048218 \N 63447 5 0046956 \N 63448 5 0046954 \N 63449 5 0045010 \N 63450 5 0035011 \N 63451 5 0052184 \N 63452 5 0075060 \N 63453 5 0001118 \N 63454 5 0032336 \N 63455 5 0006688 \N 63456 5 2000521 \N 63457 5 0080170 \N 63458 5 0075089 \N 63459 5 0016203 \N 63460 5 0033517 \N 63461 5 0035001 \N 63462 5 0010439 \N 63463 5 0002840 \N 63464 5 0046327 \N 63465 5 0071835 \N 63466 5 0052413 \N 63467 5 0010829 \N 63468 5 0002797 \N 63469 5 0035195 \N 63470 5 0034300 \N 63471 94 //bugs.bio.usyd.edu.au/Mycology/Glossary/glossary_n_z.shtml \N 63472 5 0002469 \N 63473 5 0010289 \N 63474 3 12913136 \N 63475 3 16540543 \N 63476 5 0051761 \N 63477 5 0031282 \N 63478 5 0048345 \N 63479 5 0006419 \N 63480 5 0019499 \N 63481 5 0048089 \N 63482 5 0006241 \N 63483 5 0060699 \N 63484 5 0002665 \N 63485 5 0010952 \N 63486 5 0035855 \N 63487 91 0000556 \N 63488 5 0052047 \N 63489 5 0002553 \N 63490 5 0045538 \N 63491 5 0015885 \N 63492 5 0031660 \N 63493 5 0018336 \N 63494 5 0045826 \N 63495 5 0009060 \N 63496 5 0008038 \N 63497 5 0046223 \N 63498 5 0044123 \N 63499 5 0009868 \N 63500 5 0070550 \N 63501 3 10811823 \N 63502 3 15137940 \N 63503 5 0042754 \N 63504 5 0035872 \N 63505 4 sj \N 63506 3 18280719 \N 63507 121 168643 \N 63508 5 0031247 \N 63509 3 14706699 \N 63510 5 0061155 \N 63511 5 0075021 \N 63512 5 0071772 \N 63513 5 0009876 \N 63514 5 0010660 \N 63515 5 0042203 \N 63516 5 0032387 \N 63517 5 0014067 \N 63518 5 0048844 \N 63519 5 0031570 \N 63520 5 0043085 \N 63521 5 0014014 \N 63522 5 0003096 \N 63523 5 0045613 \N 63524 5 0071844 \N 63525 5 0048866 \N 63526 5 0051099 \N 63527 5 0070445 \N 63528 5 0002507 \N 63529 5 0042772 \N 63530 5 0060971 \N 63531 5 0031104 \N 63532 5 0016311 \N 63533 5 0018055 \N 63534 89 AA0118 \N 63535 5 0071608 \N 63536 5 0090025 \N 63537 5 0075239 \N 63538 5 0042543 \N 63539 5 0023010 \N 63540 5 0007267 \N 63541 5 0007185 \N 63542 5 0046765 \N 63543 5 0071970 \N 63544 5 0018876 \N 63545 97 bzn \N 63546 5 0002008 \N 63547 5 0006348 \N 63548 5 0006134 \N 63549 5 0046052 \N 63550 5 0006518 \N 63551 5 0003173 \N 63552 5 0000716 \N 63553 5 0018193 \N 63554 5 0031952 \N 63555 5 0072159 \N 63556 5 0032744 \N 63557 5 0072112 \N 63558 5 0006641 \N 63559 5 0009069 \N 63560 5 0060898 \N 63561 5 0075219 \N 63562 5 0010088 \N 63563 5 0014706 \N 63564 5 0016106 \N 63565 5 0052384 \N 63566 5 0052314 \N 63567 5 0035732 \N 63568 3 12871945 \N 63569 5 0061372 \N 63570 5 0070684 \N 63571 3 18482984 \N 63572 5 0010752 \N 63573 5 0021901 \N 63574 5 0009301 \N 63575 5 0000365 \N 63576 5 0003176 \N 63577 5 0061061 \N 63578 5 0016024 \N 63579 5 0090137 \N 63580 5 0060193 \N 63581 5 0031030 \N 63582 5 0050795 \N 63583 5 0048759 \N 63584 102 0002003 \N 63585 5 2000518 \N 63586 5 0035570 \N 63587 5 0032613 \N 63588 5 0000760 \N 63589 5 0005996 \N 63590 5 0050929 \N 63591 5 0051442 \N 63592 5 0010525 \N 63593 5 0017194 \N 63594 89 AA0047 \N 63595 5 0006535 \N 63596 5 0046290 \N 63597 5 0008628 \N 63598 5 0015013 \N 63599 5 0060156 \N 63600 4 st \N 63601 5 0035386 \N 63602 5 0071623 \N 63603 5 0032930 \N 63604 5 0021575 \N 63605 5 0018104 \N 63606 5 0061366 \N 63607 5 0060094 \N 63608 5 0000709 \N 63609 3 8521495 \N 63610 5 0018956 \N 63611 94 //umbbd.ahc.umn.edu/pha3/pha3_map.html \N 63612 97 pha3 \N 63613 5 0048190 \N 63614 5 0060591 \N 63615 5 0090031 \N 63616 5 0048460 \N 63617 5 0048410 \N 63618 5 0052472 \N 63619 5 0032340 \N 63620 5 0044406 \N 63621 5 0048399 \N 63622 5 0043124 \N 63623 5 0033554 \N 63624 5 0010619 \N 63625 5 0045390 \N 63626 5 0046644 \N 63627 5 0007503 \N 63628 5 0002828 \N 63629 5 2000363 \N 63630 5 0071429 \N 63631 5 0007354 \N 63632 5 0010063 \N 63633 5 2000837 \N 63634 5 0043084 \N 63635 104 Penile_erection \N 63636 5 0052543 \N 63637 5 0045928 \N 63638 5 0034123 \N 63639 5 2000295 \N 63640 5 0046881 \N 63641 5 0007157 \N 63642 5 0046234 \N 63643 5 0010504 \N 63644 5 0048007 \N 63645 5 0006618 \N 63646 5 0039003 \N 63647 5 0072605 \N 63648 5 0031424 \N 63649 5 0051156 \N 63650 5 0006010 \N 63651 5 2000669 \N 63652 5 0048439 \N 63653 5 0048411 \N 63654 5 0018227 \N 63655 89 AA0103 \N 63656 5 0072376 \N 63657 5 0097046 \N 63658 5 0072486 \N 63659 5 0001502 \N 63660 5 0007076 \N 63661 5 0032644 \N 63662 5 0055119 \N 63663 5 0071368 \N 63664 5 0072457 \N 63665 5 0050991 \N 63666 5 0019501 \N 63667 5 0002541 \N 63668 5 0035971 \N 63669 3 12383260 \N 63670 5 0052332 \N 63671 5 0045687 \N 63672 5 0033864 \N 63673 5 0019309 \N 63674 5 0097062 \N 63675 5 0071231 \N 63676 5 0043410 \N 63677 5 0051865 \N 63678 5 0018263 \N 63679 89 AA0216 \N 63680 5 0071549 \N 63681 5 0097088 \N 63682 114 000001142 \N 63683 5 2000705 \N 63684 5 0010503 \N 63685 5 2000201 \N 63686 5 0030391 \N 63687 5 0090053 \N 63688 5 0070942 \N 63689 5 0031273 \N 63690 5 0007208 \N 63691 5 0090016 \N 63692 5 0006829 \N 63693 5 0035144 \N 63694 5 0000279 \N 63695 5 0052029 \N 63696 5 0009943 \N 63697 5 0071639 \N 63698 5 2000553 \N 63699 5 0060672 \N 63700 5 0003256 \N 63701 5 0035526 \N 63702 3 17488291 \N 63703 5 0060718 \N 63704 3 16983341 \N 63705 5 0044143 \N 63706 5 0019269 \N 63707 5 0044343 \N 63708 5 0044075 \N 63709 5 0071063 \N 63710 5 0019283 \N 63711 5 0071848 \N 63712 5 0009802 \N 63713 5 0035871 \N 63714 3 21596315 \N 63715 5 0061313 \N 63716 5 0035789 \N 63717 3 10734101 \N 63718 3 19019919 \N 63719 5 0043436 \N 63720 88 24833 \N 63721 5 0002702 \N 63722 5 0060568 \N 63723 5 0060815 \N 63724 5 0002424 \N 63725 5 0046517 \N 63726 5 0032222 \N 63727 5 0002152 \N 63728 3 1094911 \N 63729 3 708413 \N 63730 5 2000164 \N 63731 5 0010265 \N 63732 5 0015956 \N 63733 5 0051673 \N 63734 5 0052204 \N 63735 5 0006526 \N 63736 5 0032939 \N 63737 5 0002891 \N 63738 5 0042128 \N 63739 4 das \N 63740 3 10542156 \N 63741 3 8122899 \N 63742 5 0021539 \N 63743 5 0043153 \N 63744 5 0003226 \N 63745 5 0000280 \N 63746 5 0019985 \N 63747 3 10535901 \N 63748 5 0043543 \N 63749 5 0010634 \N 63750 5 0065006 \N 63751 5 0018302 \N 63752 89 AA0284 \N 63753 5 0010773 \N 63754 5 0002883 \N 63755 5 0009952 \N 63756 5 0046276 \N 63757 5 0002898 \N 63758 5 0051281 \N 63759 5 0019246 \N 63760 5 0008636 \N 63761 5 0006950 \N 63762 5 0003007 \N 63763 5 0009194 \N 63764 5 0051460 \N 63765 5 0035966 \N 63766 5 0002146 \N 63767 5 0015875 \N 63768 5 0052091 \N 63769 5 0009886 \N 63770 5 0001992 \N 63771 5 0019933 \N 63772 5 2000632 \N 63773 5 0048524 \N 63774 5 0043965 \N 63775 5 0032297 \N 63776 5 0014056 \N 63777 5 0085000 \N 63778 5 0051574 \N 63779 5 0010568 \N 63780 3 17417630 \N 63781 5 0035922 \N 63782 3 19762328 \N 63783 106 0004754 \N 63784 104 Foramen_ovale_(heart) \N 63785 5 0018983 \N 63786 94 //umbbd.ahc.umn.edu/car/car_map.html \N 63787 97 car \N 63788 5 0034310 \N 63789 5 0032504 \N 63790 5 0023015 \N 63791 5 0032439 \N 63792 5 0070956 \N 63793 5 0055048 \N 63794 3 15034926 \N 63795 5 0021505 \N 63796 5 0021690 \N 63797 5 0032927 \N 63798 5 0016271 \N 63799 5 0006559 \N 63800 5 0009594 \N 63801 5 0014041 \N 63802 5 0042527 \N 63803 5 0020027 \N 63804 5 0052205 \N 63805 5 2000485 \N 63806 5 0007464 \N 63807 5 0052393 \N 63808 5 0017062 \N 63809 94 //www.brainyencyclopedia.com/ \N 63810 5 0048518 \N 63811 5 0043119 \N 63812 5 0071314 \N 63813 5 0061178 \N 63814 5 0043923 \N 63815 5 0015868 \N 63816 5 0071375 \N 63817 5 0032716 \N 63818 5 0044043 \N 63819 5 0071249 \N 63820 5 0030878 \N 63821 5 0005975 \N 63822 5 0051541 \N 63823 5 0021847 \N 63824 5 0006944 \N 63825 5 0070301 \N 63826 88 16240 \N 63827 5 0060172 \N 63828 5 0048391 \N 63829 5 0042190 \N 63830 5 0006103 \N 63831 5 0070670 \N 63832 5 0033089 \N 63833 5 0045575 \N 63834 5 0051811 \N 63835 5 0031557 \N 63836 5 2001019 \N 63837 5 2000445 \N 63838 5 0021528 \N 63839 5 0006808 \N 63840 5 0010397 \N 63841 5 0019687 \N 63842 5 0000350 \N 63843 5 0000358 \N 63844 5 0000359 \N 63845 5 0045338 \N 63846 5 0043148 \N 63847 5 0018992 \N 63848 5 0042079 \N 63849 5 0008153 \N 63850 5 0033206 \N 63851 5 0043459 \N 63852 5 0060330 \N 63853 5 0035761 \N 63854 5 0001944 \N 63855 106 0002409 \N 63856 5 0009630 \N 63857 5 0000198 \N 63858 5 0034516 \N 63859 5 0009903 \N 63860 5 0070977 \N 63861 5 0075116 \N 63862 5 0052496 \N 63863 5 0030890 \N 63864 5 0002315 \N 63865 5 0046161 \N 63866 5 0052551 \N 63867 5 2000229 \N 63868 5 0002785 \N 63869 5 0051783 \N 63870 5 0003134 \N 63871 5 0090244 \N 63872 5 0000487 \N 63873 5 0007363 \N 63874 5 0019639 \N 63875 5 2000892 \N 63876 5 0018386 \N 63877 89 AA0274 \N 63878 5 0046201 \N 63879 5 0016574 \N 63880 5 0046175 \N 63881 5 0045455 \N 63882 5 0010055 \N 63883 5 0018391 \N 63884 5 0006446 \N 63885 5 0010239 \N 63886 3 9648738 \N 63887 5 0006064 \N 63888 5 0043571 \N 63889 3 16292354 \N 63890 5 0021681 \N 63891 5 0007225 \N 63892 5 0034332 \N 63893 5 0006020 \N 63894 5 0060510 \N 63895 5 0060931 \N 63896 5 0071542 \N 63897 5 0090359 \N 63898 5 0072230 \N 63899 5 0010508 \N 63900 5 0007003 \N 63901 5 0010963 \N 63902 5 0018929 \N 63903 97 mf \N 63904 5 0035660 \N 63905 3 18304834 \N 63906 5 0009750 \N 63907 5 0001913 \N 63908 5 0048619 \N 63909 5 0034372 \N 63910 5 0010480 \N 63911 91 0000248 \N 63912 3 16751349 \N 63913 5 0048917 \N 63914 5 0030501 \N 63915 5 0043931 \N 63916 5 0042229 \N 63917 5 0021796 \N 63918 5 0051028 \N 63919 5 0060544 \N 63920 5 0019424 \N 63921 5 0019425 \N 63922 5 0006970 \N 63923 5 0061027 \N 63924 5 0019515 \N 63925 5 0035955 \N 63926 3 10850718 \N 63927 3 9427760 \N 63928 5 0006661 \N 63929 5 0046489 \N 63930 5 0035296 \N 63931 5 0008593 \N 63932 5 0051692 \N 63933 5 0030970 \N 63934 3 11994744 \N 63935 5 0010110 \N 63936 5 0048506 \N 63937 5 0002760 \N 63938 5 0030162 \N 63939 5 0021730 \N 63940 5 0002404 \N 63941 3 15681746 \N 63942 5 0002651 \N 63943 5 0002833 \N 63944 5 0052289 \N 63945 5 0030182 \N 63946 5 0051957 \N 63947 5 0033967 \N 63948 5 0006719 \N 63949 5 0034259 \N 63950 5 0080144 \N 63951 5 0009811 \N 63952 86 3110116251 \N 63953 5 0035492 \N 63954 5 0016261 \N 63955 5 0090148 \N 63956 5 0006660 \N 63957 5 0003240 \N 63958 5 0032429 \N 63959 5 0035341 \N 63960 5 0051661 \N 63961 5 0002324 \N 63962 5 0035303 \N 63963 5 0019627 \N 63964 5 0007509 \N 63965 5 0075268 \N 63966 5 0009892 \N 63967 5 0051562 \N 63968 5 0048924 \N 63969 5 0033642 \N 63970 5 0014846 \N 63971 100 0001573 \N 63972 101 A03.556.875.500 \N 63973 5 0007278 \N 63974 5 2001018 \N 63975 5 0002256 \N 63976 5 0006310 \N 63977 5 0033303 \N 63978 5 0035390 \N 63979 5 0070236 \N 63980 5 0014023 \N 63981 5 0006549 \N 63982 5 0032849 \N 63983 5 0044057 \N 63984 5 0019391 \N 63985 5 0046005 \N 63986 5 0006928 \N 63987 5 0061025 \N 63988 5 0070275 \N 63989 5 0052368 \N 63990 5 0021816 \N 63991 5 0019312 \N 63992 5 0051254 \N 63993 5 0042363 \N 63994 5 0052434 \N 63995 5 0007523 \N 63996 5 0010158 \N 63997 5 2000747 \N 63998 5 0075260 \N 63999 5 0016073 \N 64000 5 0052575 \N 64001 5 0019044 \N 64002 5 0060727 \N 64003 5 0019432 \N 64004 5 0015899 \N 64005 88 40036 \N 64006 5 2001025 \N 64007 5 0021757 \N 64008 5 0003197 \N 64009 5 0071990 \N 64010 5 0050810 \N 64011 5 0009065 \N 64012 5 0048850 \N 64013 5 0046380 \N 64014 5 0045632 \N 64015 5 0030491 \N 64016 5 0052323 \N 64017 5 0046200 \N 64018 5 0000469 \N 64019 5 0002318 \N 64020 5 0009245 \N 64021 5 0014030 \N 64022 5 0072115 \N 64023 5 0034694 \N 64024 5 0052063 \N 64025 5 0042837 \N 64026 5 0072674 \N 64027 5 0019468 \N 64028 5 0061095 \N 64029 5 0002397 \N 64030 5 0042668 \N 64031 5 0007181 \N 64032 121 REACT_7425 \N 64033 104 TGF_beta_signaling_pathway \N 64034 5 0061077 \N 64035 5 0050730 \N 64036 5 0034672 \N 64037 5 0019381 \N 64038 94 //umbbd.ahc.umn.edu/atr/atr_map.html \N 64039 97 atr \N 64040 5 0070904 \N 64041 5 0017148 \N 64042 5 0016478 \N 64043 5 0017143 \N 64044 5 0017138 \N 64045 5 2000693 \N 64046 5 0010810 \N 64047 5 0006352 \N 64048 5 0051394 \N 64049 5 0006751 \N 64050 5 0045975 \N 64051 5 0000256 \N 64052 5 0030073 \N 64053 5 2000614 \N 64054 5 0070666 \N 64055 5 0031427 \N 64056 88 44185 \N 64057 5 0009836 \N 64058 5 0019270 \N 64059 5 0007218 \N 64060 5 0006181 \N 64061 5 0075100 \N 64062 5 0046543 \N 64063 5 0060011 \N 64064 5 0035708 \N 64065 3 12496423 \N 64066 5 0070803 \N 64067 5 0071960 \N 64068 5 0022022 \N 64069 5 0072643 \N 64070 5 0055045 \N 64071 5 0051495 \N 64072 5 0042669 \N 64073 5 0060449 \N 64074 5 0021513 \N 64075 5 0060069 \N 64076 5 0016186 \N 64077 5 0002825 \N 64078 5 0071766 \N 64079 5 0060098 \N 64080 5 0072057 \N 64081 5 0034233 \N 64082 5 0061049 \N 64083 5 0051680 \N 64084 5 0072260 \N 64085 5 0042637 \N 64086 3 12535193 \N 64087 5 0051621 \N 64088 5 0031918 \N 64089 5 0035181 \N 64090 5 0044007 \N 64091 5 0031338 \N 64092 5 0042199 \N 64093 5 0018341 \N 64094 126 00292 \N 64095 5 0033138 \N 64096 5 0014884 \N 64097 5 0018040 \N 64098 89 AA0087 \N 64099 5 0002012 \N 64100 5 0072294 \N 64101 5 0045690 \N 64102 5 0032106 \N 64103 5 0072304 \N 64104 5 0043551 \N 64105 5 0032835 \N 64106 5 0010749 \N 64107 5 0030514 \N 64108 5 0009786 \N 64109 5 0005980 \N 64110 5 0070232 \N 64111 5 0001572 \N 64112 86 0471586501 \N 64113 5 0035582 \N 64114 5 0034275 \N 64115 88 18344 \N 64116 5 0061376 \N 64117 5 0060752 \N 64118 5 0060480 \N 64119 5 0031655 \N 64120 5 0060478 \N 64121 5 0034167 \N 64122 5 0070130 \N 64123 5 2000492 \N 64124 5 0071938 \N 64125 5 2000141 \N 64126 5 0015685 \N 64127 5 2000419 \N 64128 5 0006732 \N 64129 5 0006752 \N 64130 5 0035701 \N 64131 91 0000037 \N 64132 3 20234092 \N 64133 5 0033215 \N 64134 3 16963626 \N 64135 5 0009967 \N 64136 5 0035468 \N 64137 5 0010898 \N 64138 5 0019649 \N 64139 5 0045841 \N 64140 5 0014741 \N 64141 5 0071550 \N 64142 112 IPR000488 \N 64143 5 0075206 \N 64144 5 0000742 \N 64145 5 0042675 \N 64146 5 0042674 \N 64147 5 0044132 \N 64148 5 0034629 \N 64149 5 0001023 \N 64150 5 0048654 \N 64151 5 2000458 \N 64152 5 0014808 \N 64153 5 0071318 \N 64154 5 0097056 \N 64155 88 13166 \N 64156 5 0006802 \N 64157 3 11245904 \N 64158 5 2000603 \N 64159 5 0032728 \N 64160 5 0052555 \N 64161 5 0006325 \N 64162 5 0021737 \N 64163 5 0035330 \N 64164 5 0002259 \N 64165 5 0021921 \N 64166 5 0051436 \N 64167 5 0044334 \N 64168 5 0090273 \N 64169 5 0016092 \N 64170 5 0048549 \N 64171 5 0060147 \N 64172 5 0051985 \N 64173 5 0045732 \N 64174 5 0010811 \N 64175 5 0019121 \N 64176 89 AA0218 \N 64177 5 0050751 \N 64178 5 0009311 \N 64179 5 0072255 \N 64180 5 0015748 \N 64181 5 0003279 \N 64182 5 0042464 \N 64183 5 0043607 \N 64184 5 0042524 \N 64185 5 0002343 \N 64186 5 0018187 \N 64187 89 AA0281 \N 64188 5 0051823 \N 64189 3 11063967 \N 64190 3 14976517 \N 64191 5 0048632 \N 64192 5 0002757 \N 64193 5 0048309 \N 64194 5 0035075 \N 64195 5 0051588 \N 64196 5 0002710 \N 64197 5 0061059 \N 64198 5 0001796 \N 64199 5 0018316 \N 64200 5 0051110 \N 64201 5 0016476 \N 64202 5 0051838 \N 64203 5 0032984 \N 64204 5 0018970 \N 64205 94 //umbbd.ahc.umn.edu/tol/tol_map.html \N 64206 97 tol \N 64207 5 0019508 \N 64208 87 PWY-722 \N 64209 5 0042335 \N 64210 5 0051014 \N 64211 5 0060986 \N 64212 5 0007066 \N 64213 5 0060489 \N 64214 5 0075228 \N 64215 5 0060916 \N 64216 5 2000900 \N 64217 5 0090286 \N 64218 5 0016099 \N 64219 5 0002246 \N 64220 5 0042436 \N 64221 5 0045562 \N 64222 5 0031331 \N 64223 5 0010805 \N 64224 5 0000433 \N 64225 5 0019234 \N 64226 5 0051239 \N 64227 5 0048334 \N 64228 5 0090221 \N 64229 5 0032618 \N 64230 5 0010628 \N 64231 5 0048055 \N 64232 5 0033609 \N 64233 5 0010795 \N 64234 5 0033197 \N 64235 5 0033572 \N 64236 5 0010891 \N 64237 5 0034229 \N 64238 3 3514579 \N 64239 5 0070197 \N 64240 3 18818742 \N 64241 5 0050743 \N 64242 3 8611516 \N 64243 89 AA0352 \N 64244 5 2000163 \N 64245 5 0051702 \N 64246 5 0010042 \N 64247 5 0009394 \N 64248 5 0051031 \N 64249 5 0009937 \N 64250 5 0000710 \N 64251 5 0030466 \N 64252 5 0006347 \N 64253 5 0045414 \N 64254 5 0043039 \N 64255 87 Aminoacyl-tRNAs \N 64256 5 0034265 \N 64257 5 0060829 \N 64258 5 0043098 \N 64259 5 0000091 \N 64260 5 0052307 \N 64261 5 0031958 \N 64262 5 0009263 \N 64263 5 0031171 \N 64264 5 0031185 \N 64265 5 0031186 \N 64266 5 0003215 \N 64267 5 0018324 \N 64268 3 2501303 \N 64269 5 0045496 \N 64270 5 0043318 \N 64271 5 0018213 \N 64272 5 0070108 \N 64273 5 0032308 \N 64274 5 0033356 \N 64275 5 0060431 \N 64276 5 0019228 \N 64277 5 0016038 \N 64278 5 0010405 \N 64279 5 0018194 \N 64280 5 0048076 \N 64281 5 0097019 \N 64282 5 0090366 \N 64283 5 0042250 \N 64284 5 0090338 \N 64285 5 0010768 \N 64286 5 2000410 \N 64287 5 0051341 \N 64288 93 1.-.-.- \N 64289 5 0046596 \N 64290 5 0032697 \N 64291 5 0010119 \N 64292 5 0046463 \N 64293 5 0072531 \N 64294 5 0002591 \N 64295 5 0003167 \N 64296 5 0071206 \N 64297 5 2001052 \N 64298 5 0008546 \N 64299 5 0071243 \N 64300 5 0006403 \N 64301 5 0019679 \N 64302 5 0072477 \N 64303 5 0085028 \N 64304 5 0051889 \N 64305 5 0032392 \N 64306 5 0031504 \N 64307 5 0018217 \N 64308 5 0030279 \N 64309 5 0043953 \N 64310 5 0061145 \N 64311 5 0044234 \N 64312 5 2000848 \N 64313 5 0072505 \N 64314 5 0060194 \N 64315 5 0017012 \N 64316 5 0003127 \N 64317 5 0032963 \N 64318 5 0002103 \N 64319 5 0010144 \N 64320 5 0040007 \N 64321 5 0048590 \N 64322 5 0044275 \N 64323 5 0003090 \N 64324 5 0072581 \N 64325 5 0002742 \N 64326 5 0015950 \N 64327 5 0010526 \N 64328 5 0045117 \N 64329 86 3527307206 \N 64330 104 Azole \N 64331 5 0060908 \N 64332 5 0060766 \N 64333 5 0060114 \N 64334 5 0033520 \N 64335 5 0032686 \N 64336 5 0048688 \N 64337 5 2000685 \N 64338 5 0061035 \N 64339 5 0070613 \N 64340 5 0010953 \N 64341 5 0043983 \N 64342 5 0048209 \N 64343 5 2000106 \N 64344 5 0072206 \N 64345 5 0044247 \N 64346 5 0034037 \N 64347 5 0008058 \N 64348 5 0044281 \N 64349 5 0002679 \N 64350 3 12789499 \N 64351 5 2000598 \N 64352 5 0060974 \N 64353 5 2000656 \N 64354 5 0061345 \N 64355 5 0043554 \N 64356 5 0000087 \N 64357 5 2000375 \N 64358 5 0051173 \N 64359 5 0046064 \N 64360 5 0046024 \N 64361 5 0021987 \N 64362 5 0043944 \N 64363 5 0060345 \N 64364 5 0070880 \N 64365 5 0010786 \N 64366 5 0072651 \N 64367 5 0035465 \N 64368 5 0047496 \N 64369 5 0007574 \N 64370 5 0021640 \N 64371 5 0070651 \N 64372 3 17188037 \N 64373 3 19390089 \N 64374 5 0001079 \N 64375 5 0033574 \N 64376 5 0007106 \N 64377 5 0042181 \N 64378 5 0006554 \N 64379 5 0006232 \N 64380 5 0051793 \N 64381 5 0060368 \N 64382 5 0048869 \N 64383 5 0044182 \N 64384 5 0071392 \N 64385 5 0072005 \N 64386 5 0002748 \N 64387 5 0003204 \N 64388 5 0018065 \N 64389 5 0046358 \N 64390 5 0043439 \N 64391 5 0045149 \N 64392 5 0006792 \N 64393 5 0007471 \N 64394 5 0042483 \N 64395 5 0042486 \N 64396 5 0045114 \N 64397 5 0046390 \N 64398 5 0051594 \N 64399 5 0008039 \N 64400 5 0018162 \N 64401 89 AA0253 \N 64402 5 0048682 \N 64403 5 0018937 \N 64404 94 //umbbd.ahc.umn.edu/ng/ng_map.html \N 64405 97 ng \N 64406 5 0043045 \N 64407 5 0018080 \N 64408 89 AA0179 \N 64409 5 0051616 \N 64410 5 0048900 \N 64411 5 0046667 \N 64412 3 12006672 \N 64413 5 0032700 \N 64414 5 0030655 \N 64415 5 0006152 \N 64416 5 2000349 \N 64417 5 0046179 \N 64418 5 0018075 \N 64419 5 0071923 \N 64420 5 0044004 \N 64421 5 0045419 \N 64422 5 0035940 \N 64423 4 klp \N 64424 3 10595640 \N 64425 5 0042680 \N 64426 5 0042677 \N 64427 5 0046918 \N 64428 89 AA0339 \N 64429 5 0043644 \N 64430 5 0072512 \N 64431 5 0070173 \N 64432 5 0009119 \N 64433 5 0010865 \N 64434 5 2000489 \N 64435 5 0075010 \N 64436 5 0034609 \N 64437 5 0009557 \N 64438 5 2000907 \N 64439 5 0007244 \N 64440 5 0002723 \N 64441 5 2000681 \N 64442 5 0048505 \N 64443 5 0043107 \N 64444 3 12704238 \N 64445 5 0072014 \N 64446 5 0031383 \N 64447 5 0021805 \N 64448 5 0003234 \N 64449 5 2000952 \N 64450 5 0008347 \N 64451 5 0043359 \N 64452 5 0019069 \N 64453 5 0048791 \N 64454 5 0070352 \N 64455 5 0035214 \N 64456 5 0044098 \N 64457 5 0042899 \N 64458 5 2000004 \N 64459 5 0000740 \N 64460 5 0019562 \N 64461 5 0002606 \N 64462 5 0003306 \N 64463 5 0019746 \N 64464 5 0070921 \N 64465 5 0043971 \N 64466 5 0009197 \N 64467 5 0050896 \N 64468 5 0051869 \N 64469 5 0009454 \N 64470 5 2000675 \N 64471 5 0072031 \N 64472 100 0002612 \N 64473 5 0051852 \N 64474 5 0060168 \N 64475 5 0042789 \N 64476 5 0015814 \N 64477 5 0010958 \N 64478 5 0051334 \N 64479 5 0034770 \N 64480 5 0072091 \N 64481 5 0003288 \N 64482 5 0000732 \N 64483 5 0006712 \N 64484 5 0016110 \N 64485 5 0001662 \N 64486 5 0019569 \N 64487 5 0018289 \N 64488 5 0009152 \N 64489 5 0035315 \N 64490 5 0045652 \N 64491 5 0019512 \N 64492 5 2000245 \N 64493 5 0010611 \N 64494 5 0002588 \N 64495 5 0015766 \N 64496 5 0050684 \N 64497 5 0032544 \N 64498 5 0015823 \N 64499 5 0003294 \N 64500 5 0090154 \N 64501 5 0039512 \N 64502 5 2000615 \N 64503 5 0046893 \N 64504 89 AA0334 \N 64505 5 0046283 \N 64506 5 0075170 \N 64507 5 0070343 \N 64508 91 0000448 \N 64509 5 0044091 \N 64510 5 0032235 \N 64511 5 0045378 \N 64512 5 0075045 \N 64513 5 0071476 \N 64514 5 0009955 \N 64515 5 0071708 \N 64516 5 2001030 \N 64517 5 0071295 \N 64518 5 0032601 \N 64519 5 0032528 \N 64520 5 2000826 \N 64521 5 0001579 \N 64522 5 0048934 \N 64523 5 0048857 \N 64524 5 0007146 \N 64525 5 0002386 \N 64526 5 0060462 \N 64527 5 0010082 \N 64528 5 0018426 \N 64529 89 AA0297 \N 64530 5 0072038 \N 64531 5 0045429 \N 64532 5 0035201 \N 64533 5 0023070 \N 64534 5 0032470 \N 64535 5 0021948 \N 64536 5 0071525 \N 64537 5 0003223 \N 64538 5 0031024 \N 64539 5 0030048 \N 64540 5 0052311 \N 64541 5 0055058 \N 64542 5 2000001 \N 64543 5 0009761 \N 64544 5 0052135 \N 64545 5 0045913 \N 64546 5 0061369 \N 64547 5 0090142 \N 64548 5 0038013 \N 64549 5 2000062 \N 64550 5 0048449 \N 64551 5 0048436 \N 64552 5 2001061 \N 64553 5 0034655 \N 64554 5 0006084 \N 64555 5 0032361 \N 64556 5 0050776 \N 64557 5 0034160 \N 64558 5 0006200 \N 64559 5 0051468 \N 64560 5 0060491 \N 64561 5 0018899 \N 64562 5 0006497 \N 64563 5 0042050 \N 64564 5 0003341 \N 64565 5 0060656 \N 64566 5 0019359 \N 64567 5 0075070 \N 64568 5 0050919 \N 64569 5 0051382 \N 64570 5 0000069 \N 64571 5 0006180 \N 64572 5 2000777 \N 64573 5 0071727 \N 64574 5 0006739 \N 64575 5 0048623 \N 64576 5 0080127 \N 64577 102 0005008 \N 64578 5 0030318 \N 64579 5 0046264 \N 64580 5 2000338 \N 64581 5 0033026 \N 64582 5 0060244 \N 64583 5 0052509 \N 64584 5 0001905 \N 64585 5 0044250 \N 64586 104 Hibernation \N 64587 5 0006078 \N 64588 5 0030650 \N 64589 5 0035777 \N 64590 5 0006667 \N 64591 5 0018920 \N 64592 94 //umbbd.ahc.umn.edu/gly/gly_map.html \N 64593 97 gly \N 64594 5 0019124 \N 64595 5 0018088 \N 64596 5 0018370 \N 64597 89 AA0192 \N 64598 5 0003253 \N 64599 5 0002047 \N 64600 5 0052130 \N 64601 5 0090103 \N 64602 5 0033346 \N 64603 87 PWY-4002 \N 64604 5 2000431 \N 64605 5 0060440 \N 64606 5 0061310 \N 64607 5 0034340 \N 64608 3 16681834 \N 64609 5 0006128 \N 64610 5 0015920 \N 64611 5 0015906 \N 64612 88 9337 \N 64613 5 0052295 \N 64614 5 0044244 \N 64615 5 0022409 \N 64616 5 0034301 \N 64617 86 0470090278 \N 64618 5 0021711 \N 64619 5 0015851 \N 64620 5 0007293 \N 64621 5 0048380 \N 64622 5 0003417 \N 64623 5 0010846 \N 64624 5 0035510 \N 64625 5 0050770 \N 64626 5 0008215 \N 64627 5 0033071 \N 64628 5 2000438 \N 64629 5 0050670 \N 64630 5 0032088 \N 64631 5 0002085 \N 64632 3 16678814 \N 64633 5 0032804 \N 64634 5 0015992 \N 64635 5 0010886 \N 64636 5 0019319 \N 64637 5 0060952 \N 64638 5 0055021 \N 64639 5 0052236 \N 64640 5 0001704 \N 64641 5 0001935 \N 64642 5 0010927 \N 64643 5 0019603 \N 64644 87 TOLUENE-DEG-4-OH-PWY \N 64645 5 0042508 \N 64646 5 0000245 \N 64647 3 9476892 \N 64648 5 0010193 \N 64649 5 0072367 \N 64650 5 0001551 \N 64651 5 0010995 \N 64652 5 0008585 \N 64653 5 0006447 \N 64654 5 0071615 \N 64655 5 0030682 \N 64656 5 2000928 \N 64657 5 0006435 \N 64658 5 0015974 \N 64659 5 0007259 \N 64660 5 0030219 \N 64661 5 0006852 \N 64662 5 0070231 \N 64663 5 0019711 \N 64664 5 0048826 \N 64665 5 0042919 \N 64666 5 0007198 \N 64667 5 0050953 \N 64668 5 0030224 \N 64669 5 0060515 \N 64670 5 0045139 \N 64671 5 0019885 \N 64672 5 0048004 \N 64673 5 0048389 \N 64674 5 0046665 \N 64675 5 0051147 \N 64676 5 0072315 \N 64677 5 0070278 \N 64678 5 0061312 \N 64679 5 0043952 \N 64680 5 0075289 \N 64681 5 0035397 \N 64682 5 0045366 \N 64683 5 0043320 \N 64684 5 0018246 \N 64685 5 0000098 \N 64686 5 0030980 \N 64687 5 0035382 \N 64688 5 0009217 \N 64689 5 0010560 \N 64690 5 0042744 \N 64691 5 0052696 \N 64692 5 0018248 \N 64693 89 AA0171 \N 64694 5 2000502 \N 64695 5 0043689 \N 64696 5 0071718 \N 64697 5 0018295 \N 64698 89 AA0144 \N 64699 5 0051106 \N 64700 5 0044048 \N 64701 5 2000923 \N 64702 5 0032884 \N 64703 5 0002409 \N 64704 3 16387601 \N 64705 5 0075121 \N 64706 5 0045070 \N 64707 5 0061217 \N 64708 5 0060970 \N 64709 5 0061243 \N 64710 5 0045128 \N 64711 5 0006118 \N 64712 5 0021702 \N 64713 5 0090173 \N 64714 5 2000189 \N 64715 5 0042790 \N 64716 5 2000473 \N 64717 5 0042845 \N 64718 5 0009771 \N 64719 5 0030238 \N 64720 5 0070468 \N 64721 94 //herkules.oulu.fi/isbn9514270355/html/i259726.html \N 64722 3 12856968 \N 64723 5 0046431 \N 64724 5 0032210 \N 64725 5 0071493 \N 64726 5 2000911 \N 64727 5 2000181 \N 64728 5 2000073 \N 64729 5 0042758 \N 64730 5 0002878 \N 64731 5 0030642 \N 64732 5 0016126 \N 64733 5 0051167 \N 64734 5 0045176 \N 64735 5 0071789 \N 64736 5 0010534 \N 64737 5 0009449 \N 64738 5 0072385 \N 64739 5 0051078 \N 64740 5 0061220 \N 64741 5 0006279 \N 64742 5 0002297 \N 64743 5 0000187 \N 64744 5 0071270 \N 64745 5 0071945 \N 64746 3 20371342 \N 64747 5 0007165 \N 64748 5 0023033 \N 64749 5 0048033 \N 64750 5 0048674 \N 64751 5 0048636 \N 64752 5 0061287 \N 64753 5 0060527 \N 64754 5 0060186 \N 64755 5 0019284 \N 64756 5 0072000 \N 64757 5 0006762 \N 64758 5 0031137 \N 64759 5 2000420 \N 64760 5 0045982 \N 64761 5 0051952 \N 64762 5 0031944 \N 64763 5 0002880 \N 64764 5 0035780 \N 64765 5 0060776 \N 64766 5 0043448 \N 64767 5 0046931 \N 64768 5 0006425 \N 64769 5 0035848 \N 64770 5 0030857 \N 64771 5 0061011 \N 64772 5 2001007 \N 64773 5 0010097 \N 64774 5 0052530 \N 64775 5 0090206 \N 64776 5 0021548 \N 64777 5 0035589 \N 64778 5 0051938 \N 64779 5 0043040 \N 64780 5 0032624 \N 64781 5 0010678 \N 64782 5 0071430 \N 64783 5 0032661 \N 64784 5 0071049 \N 64785 5 0006631 \N 64786 5 0042269 \N 64787 5 0051643 \N 64788 5 0042512 \N 64789 5 0009696 \N 64790 5 0046836 \N 64791 5 0006844 \N 64792 5 0035917 \N 64793 5 0000763 \N 64794 5 0070428 \N 64795 5 0021846 \N 64796 5 0071395 \N 64797 5 0006500 \N 64798 5 0048785 \N 64799 5 0045894 \N 64800 5 0090107 \N 64801 5 2000784 \N 64802 5 0006706 \N 64803 5 0030850 \N 64804 5 0039012 \N 64805 110 0000385 \N 64806 5 0032815 \N 64807 5 0021960 \N 64808 5 0016037 \N 64809 5 0044347 \N 64810 5 0006914 \N 64811 5 0016238 \N 64812 5 0000162 \N 64813 5 0009096 \N 64814 87 TRPSYN-PWY \N 64815 5 0048242 \N 64816 5 0042519 \N 64817 5 0061137 \N 64818 5 0006372 \N 64819 5 0034110 \N 64820 5 0034370 \N 64821 5 0010408 \N 64822 5 0030925 \N 64823 5 0009992 \N 64824 5 0006294 \N 64825 5 0052159 \N 64826 5 0018885 \N 64827 94 //umbbd.ahc.umn.edu/ctc/ctc_map.html \N 64828 97 ctc \N 64829 5 0001826 \N 64830 5 0007032 \N 64831 5 0010729 \N 64832 5 0046129 \N 64833 5 0051570 \N 64834 5 0006769 \N 64835 5 0052540 \N 64836 5 0051224 \N 64837 5 0008292 \N 64838 5 0051142 \N 64839 5 0002731 \N 64840 5 0021765 \N 64841 5 0031158 \N 64842 5 0060226 \N 64843 5 0085012 \N 64844 5 0000044 \N 64845 5 0021720 \N 64846 5 0015712 \N 64847 5 0050808 \N 64848 5 0033361 \N 64849 87 PWY-2942 \N 64850 5 0046317 \N 64851 5 0072109 \N 64852 5 0021953 \N 64853 5 0006812 \N 64854 5 0006819 \N 64855 5 0015674 \N 64856 5 0072062 \N 64857 5 0043485 \N 64858 5 0010234 \N 64859 5 0046205 \N 64860 5 0061085 \N 64861 5 0070207 \N 64862 5 0070511 \N 64863 5 0016344 \N 64864 5 0002155 \N 64865 5 0002627 \N 64866 5 0046606 \N 64867 5 0071954 \N 64868 127 103576 \N 64869 3 9600955 \N 64870 5 0019070 \N 64871 5 0052549 \N 64872 5 0018953 \N 64873 97 pcy \N 64874 5 0051363 \N 64875 3 8163519 \N 64876 3 9086265 \N 64877 89 AA0383 \N 64878 5 0034117 \N 64879 3 14631543 \N 64880 5 0043927 \N 64881 5 0008163 \N 64882 5 2001014 \N 64883 5 0070179 \N 64884 5 0051601 \N 64885 5 0048312 \N 64886 5 0032482 \N 64887 5 0010208 \N 64888 3 11743117 \N 64889 5 0006023 \N 64890 5 0019576 \N 64891 5 0032709 \N 64892 5 0043390 \N 64893 88 2504 \N 64894 5 2000230 \N 64895 5 0030589 \N 64896 5 0023048 \N 64897 5 0007428 \N 64898 5 0060667 \N 64899 5 2000298 \N 64900 5 0045526 \N 64901 5 0043103 \N 64902 5 0051895 \N 64903 5 0010961 \N 64904 5 0033537 \N 64905 87 PWY-5342 \N 64906 5 0001308 \N 64907 5 0045403 \N 64908 5 0014053 \N 64909 5 0046457 \N 64910 5 0002205 \N 64911 5 0048527 \N 64912 5 0060116 \N 64913 5 0071673 \N 64914 5 0019306 \N 64915 5 0072102 \N 64916 5 0002911 \N 64917 5 0035746 \N 64918 5 0070754 \N 64919 5 0007338 \N 64920 5 0002504 \N 64921 5 0015725 \N 64922 5 0030382 \N 64923 3 8833144 \N 64924 5 0032344 \N 64925 5 0032375 \N 64926 5 0034139 \N 64927 5 0042308 \N 64928 5 0060079 \N 64929 5 0007132 \N 64930 5 0042762 \N 64931 5 0055091 \N 64932 5 0016539 \N 64933 94 //www.neb.com/neb/inteins.html \N 64934 5 0019666 \N 64935 5 0001568 \N 64936 106 0001981 \N 64937 5 0046294 \N 64938 5 0052539 \N 64939 5 0043097 \N 64940 5 0021875 \N 64941 5 0097119 \N 64942 3 10433269 \N 64943 5 0015985 \N 64944 5 0015803 \N 64945 5 0033311 \N 64946 87 PWY-5086 \N 64947 5 0033478 \N 64948 3 15134748 \N 64949 5 0046165 \N 64950 5 0033144 \N 64951 5 0045944 \N 64952 5 0010552 \N 64953 5 0045817 \N 64954 5 0007053 \N 64955 5 0046246 \N 64956 5 0042129 \N 64957 5 0042892 \N 64958 88 17698 \N 64959 5 0043367 \N 64960 5 0035350 \N 64961 5 0003157 \N 64962 5 0046657 \N 64963 5 0035912 \N 64964 122 0000014 \N 64965 5 2000237 \N 64966 5 0006251 \N 64967 5 0075284 \N 64968 5 0002547 \N 64969 5 0060455 \N 64970 5 2000423 \N 64971 5 0046375 \N 64972 5 0046945 \N 64973 89 AA0343 \N 64974 5 0018007 \N 64975 89 AA0058 \N 64976 5 0009298 \N 64977 5 0032773 \N 64978 5 0035627 \N 64979 5 0071851 \N 64980 5 0016325 \N 64981 5 0048130 \N 64982 3 11231123 \N 64983 5 0060253 \N 64984 5 0021605 \N 64985 5 0044139 \N 64986 5 0021611 \N 64987 5 0043030 \N 64988 5 0075214 \N 64989 5 0002269 \N 64990 5 0060093 \N 64991 5 0046166 \N 64992 5 0019364 \N 64993 5 0007581 \N 64994 5 0034132 \N 64995 5 0043055 \N 64996 117 wm2003ab740 \N 64997 5 0032973 \N 64998 5 0007402 \N 64999 5 0046864 \N 65000 5 0051348 \N 65001 5 0034091 \N 65002 5 0018916 \N 65003 88 27798 \N 65004 5 0002053 \N 65005 5 0007586 \N 65006 5 0035138 \N 65007 5 0018898 \N 65008 94 //umbbd.ahc.umn.edu/dcb/dcb_map.html \N 65009 97 dcb \N 65010 5 0070396 \N 65011 5 0014048 \N 65012 5 0016226 \N 65013 5 0006104 \N 65014 5 0031295 \N 65015 5 0032359 \N 65016 5 0008015 \N 65017 5 0070261 \N 65018 5 0006901 \N 65019 5 0003021 \N 65020 5 0042539 \N 65021 5 2000325 \N 65022 5 0070495 \N 65023 5 0051096 \N 65024 5 0060556 \N 65025 5 0070965 \N 65026 5 2000131 \N 65027 5 0043050 \N 65028 5 0046401 \N 65029 5 0001510 \N 65030 5 2000622 \N 65031 5 0045593 \N 65032 5 0045369 \N 65033 5 0009077 \N 65034 5 0035357 \N 65035 3 18221086 \N 65036 5 0000478 \N 65037 5 0045961 \N 65038 5 0006430 \N 65039 5 0071887 \N 65040 5 0034152 \N 65041 5 0002033 \N 65042 3 10425188 \N 65043 5 0045612 \N 65044 5 0042045 \N 65045 3 11390830 \N 65046 5 0015720 \N 65047 5 0030447 \N 65048 3 11729141 \N 65049 5 0090375 \N 65050 5 0017183 \N 65051 5 0015738 \N 65052 5 0032909 \N 65053 5 0070895 \N 65054 5 0009092 \N 65055 5 0009131 \N 65056 5 0043574 \N 65057 5 0010755 \N 65058 5 0001682 \N 65059 3 11592395 \N 65060 5 0007264 \N 65061 5 0000028 \N 65062 5 0014735 \N 65063 5 0031062 \N 65064 5 0090308 \N 65065 5 0031399 \N 65066 5 0060806 \N 65067 5 0032105 \N 65068 5 0018000 \N 65069 89 AA0053 \N 65070 5 0048870 \N 65071 5 0006573 \N 65072 5 0010350 \N 65073 3 17270009 \N 65074 5 0033494 \N 65075 5 0006963 \N 65076 5 0006507 \N 65077 3 18811934 \N 65078 5 0032225 \N 65079 5 0070945 \N 65080 5 0032187 \N 65081 5 0060211 \N 65082 5 0016335 \N 65083 5 0033529 \N 65084 5 0035443 \N 65085 5 0032386 \N 65086 5 0010444 \N 65087 5 0002517 \N 65088 5 0051683 \N 65089 5 0045422 \N 65090 5 0021707 \N 65091 5 0032509 \N 65092 5 0061373 \N 65093 5 0032873 \N 65094 5 0002435 \N 65095 3 11414352 \N 65096 5 0003170 \N 65097 5 0050849 \N 65098 3 11696592 \N 65099 5 0014889 \N 65100 5 0033214 \N 65101 5 0071641 \N 65102 5 0072615 \N 65103 5 0045964 \N 65104 5 0007238 \N 65105 5 0072499 \N 65106 3 20826677 \N 65107 5 0048081 \N 65108 5 0060262 \N 65109 5 0046924 \N 65110 89 AA0340 \N 65111 5 0031581 \N 65112 3 15983403 \N 65113 5 0071829 \N 65114 5 0009862 \N 65115 5 0034475 \N 65116 5 0090364 \N 65117 5 0010201 \N 65118 5 0035937 \N 65119 88 50114 \N 65120 5 0045057 \N 65121 5 0006682 \N 65122 5 0009180 \N 65123 5 0022005 \N 65124 5 0006210 \N 65125 5 0009432 \N 65126 3 16000023 \N 65127 5 0046690 \N 65128 5 0051807 \N 65129 5 0035190 \N 65130 5 0048783 \N 65131 5 0075033 \N 65132 5 0071307 \N 65133 5 0045705 \N 65134 5 2000265 \N 65135 5 0071661 \N 65136 5 0021928 \N 65137 5 0009649 \N 65138 5 0007155 \N 65139 5 0021567 \N 65140 5 0009413 \N 65141 5 0019756 \N 65142 5 0070158 \N 65143 5 0051178 \N 65144 5 0010073 \N 65145 5 0042118 \N 65146 3 12851652 \N 65147 3 14581484 \N 65148 5 0002649 \N 65149 5 0002843 \N 65150 5 0021550 \N 65151 5 0097094 \N 65152 5 0032685 \N 65153 5 0052166 \N 65154 5 0055025 \N 65155 5 2000071 \N 65156 5 0019527 \N 65157 5 0009863 \N 65158 5 0007021 \N 65159 5 0014916 \N 65160 5 0003427 \N 65161 5 0051310 \N 65162 5 0015788 \N 65163 5 0018293 \N 65164 5 0052511 \N 65165 5 0060684 \N 65166 5 0010779 \N 65167 5 0006567 \N 65168 5 0016354 \N 65169 5 0031204 \N 65170 3 12518317 \N 65171 5 0031324 \N 65172 5 0002122 \N 65173 5 0009223 \N 65174 5 0030887 \N 65175 5 0070543 \N 65176 88 17351 \N 65177 5 0006887 \N 65178 5 0016194 \N 65179 5 0016195 \N 65180 5 0001317 \N 65181 5 0006601 \N 65182 88 16919 \N 65183 87 GLYCGREAT-PWY \N 65184 87 PWY-6158 \N 65185 5 0046154 \N 65186 5 0075272 \N 65187 5 0080010 \N 65188 3 18450450 \N 65189 5 0032381 \N 65190 5 0052710 \N 65191 5 0060052 \N 65192 5 0072265 \N 65193 5 0035820 \N 65194 5 0019470 \N 65195 5 0071462 \N 65196 5 0075086 \N 65197 5 0018412 \N 65198 5 0050766 \N 65199 5 0045857 \N 65200 5 0006244 \N 65201 5 0051521 \N 65202 5 0042088 \N 65203 5 0021686 \N 65204 5 0021984 \N 65205 5 0035117 \N 65206 5 0042216 \N 65207 5 0035232 \N 65208 5 0000207 \N 65209 5 0033234 \N 65210 5 2000119 \N 65211 5 0051715 \N 65212 5 0001901 \N 65213 5 0042981 \N 65214 5 0090194 \N 65215 5 2000742 \N 65216 5 0051308 \N 65217 5 0045081 \N 65218 5 0071573 \N 65219 5 0000737 \N 65220 5 0052096 \N 65221 5 0019314 \N 65222 5 0050790 \N 65223 5 0001780 \N 65224 5 0014714 \N 65225 5 0048614 \N 65226 5 0070606 \N 65227 5 0009437 \N 65228 5 0033372 \N 65229 5 0030033 \N 65230 5 0035028 \N 65231 5 0050969 \N 65232 5 0032243 \N 65233 5 0033249 \N 65234 5 0006041 \N 65235 5 0048164 \N 65236 5 0030826 \N 65237 5 0043624 \N 65238 5 0052282 \N 65239 5 0075230 \N 65240 5 0009711 \N 65241 5 0019635 \N 65242 5 0060583 \N 65243 5 0020033 \N 65244 5 0020034 \N 65245 5 0014860 \N 65246 5 0071223 \N 65247 5 0032599 \N 65248 5 0016571 \N 65249 5 0021586 \N 65250 5 0035154 \N 65251 5 0045933 \N 65252 5 0009971 \N 65253 3 11973272 \N 65254 5 0009889 \N 65255 5 0021631 \N 65256 5 0046445 \N 65257 5 0046516 \N 65258 5 0022027 \N 65259 5 0046679 \N 65260 5 0002332 \N 65261 5 0052058 \N 65262 5 0035264 \N 65263 5 0009228 \N 65264 5 0033002 \N 65265 5 0009809 \N 65266 5 0007224 \N 65267 3 15205520 \N 65268 5 0003067 \N 65269 5 0090124 \N 65270 5 0007320 \N 65271 5 0051410 \N 65272 5 2000713 \N 65273 5 2000556 \N 65274 5 0016055 \N 65275 5 0007222 \N 65276 5 0040011 \N 65277 5 0009685 \N 65278 5 0006607 \N 65279 5 0006228 \N 65280 5 0034159 \N 65281 5 2000094 \N 65282 5 0000958 \N 65283 5 0046360 \N 65284 5 0031126 \N 65285 5 0032026 \N 65286 5 0019473 \N 65287 5 0044253 \N 65288 5 0072482 \N 65289 5 0001742 \N 65290 5 0060902 \N 65291 5 0061108 \N 65292 5 0055112 \N 65293 5 0000051 \N 65294 5 0010128 \N 65295 5 0033386 \N 65296 5 0072506 \N 65297 5 0007420 \N 65298 106 0000955 \N 65299 5 0043641 \N 65300 5 0071557 \N 65301 3 20023638 \N 65302 5 0046357 \N 65303 5 0050726 \N 65304 5 0080117 \N 65305 3 19074290 \N 65306 5 0051834 \N 65307 5 0035505 \N 65308 5 0031392 \N 65309 5 0045458 \N 65310 5 0052376 \N 65311 5 0072333 \N 65312 5 0000466 \N 65313 5 0035168 \N 65314 3 14602069 \N 65315 5 0010719 \N 65316 5 0033122 \N 65317 5 0046474 \N 65318 5 0052417 \N 65319 5 0035725 \N 65320 5 0070479 \N 65321 3 18554525 \N 65322 5 0075199 \N 65323 5 0045726 \N 65324 5 0001736 \N 65325 5 0003047 \N 65326 5 0070416 \N 65327 5 0042397 \N 65328 5 0033672 \N 65329 5 0001060 \N 65330 5 0060763 \N 65331 3 10804170 \N 65332 5 2000762 \N 65333 5 0061295 \N 65334 5 0060327 \N 65335 5 0002221 \N 65336 5 0052418 \N 65337 5 0045021 \N 65338 5 0003375 \N 65339 5 0019350 \N 65340 5 0032321 \N 65341 5 0010425 \N 65342 5 0045229 \N 65343 5 0035566 \N 65344 5 0009877 \N 65345 109 KW-0536 \N 65346 5 0052050 \N 65347 5 0007319 \N 65348 5 0070980 \N 65349 88 17097 \N 65350 3 16310831 \N 65351 3 16339959 \N 65352 111 UPA00155 \N 65353 5 0060151 \N 65354 5 0000001 \N 65355 3 11389764 \N 65356 5 0052037 \N 65357 5 0061158 \N 65358 5 0060837 \N 65359 5 2000408 \N 65360 5 0006410 \N 65361 5 0090320 \N 65362 5 0046780 \N 65363 5 0032641 \N 65364 5 0071897 \N 65365 5 0008283 \N 65366 5 0007614 \N 65367 5 0035507 \N 65368 5 0005989 \N 65369 5 2000577 \N 65370 5 0051153 \N 65371 5 2000937 \N 65372 5 0043133 \N 65373 5 0043464 \N 65374 3 10427020 \N 65375 3 8808948 \N 65376 5 0009996 \N 65377 5 0051036 \N 65378 5 0045234 \N 65379 5 0045235 \N 65380 5 0048696 \N 65381 5 0007403 \N 65382 5 0043361 \N 65383 5 0006689 \N 65384 5 2000934 \N 65385 5 0021748 \N 65386 5 0052336 \N 65387 5 0018403 \N 65388 3 7338506 \N 65389 89 AA0209 \N 65390 5 0035592 \N 65391 5 0075342 \N 65392 5 0035561 \N 65393 5 0052146 \N 65394 5 0052220 \N 65395 5 0061231 \N 65396 5 0048732 \N 65397 5 0090296 \N 65398 5 0032201 \N 65399 3 16598261 \N 65400 5 0009171 \N 65401 5 0019954 \N 65402 5 2000731 \N 65403 5 0048382 \N 65404 5 0001323 \N 65405 5 0044418 \N 65406 5 0006190 \N 65407 5 0075305 \N 65408 5 2000738 \N 65409 5 0032734 \N 65410 5 0061238 \N 65411 5 0051469 \N 65412 5 0042146 \N 65413 5 0060298 \N 65414 5 0060780 \N 65415 5 0006868 \N 65416 5 0015815 \N 65417 5 0051182 \N 65418 5 0046186 \N 65419 5 0010194 \N 65420 5 0009178 \N 65421 5 0030152 \N 65422 5 0015696 \N 65423 5 0035084 \N 65424 5 0034445 \N 65425 5 0060657 \N 65426 5 0046387 \N 65427 5 0042320 \N 65428 3 11506998 \N 65429 5 0052214 \N 65430 5 0044179 \N 65431 5 0050687 \N 65432 5 0032987 \N 65433 5 0021741 \N 65434 5 0090343 \N 65435 5 0002175 \N 65436 3 18803321 \N 65437 5 0010090 \N 65438 5 0048272 \N 65439 5 0033059 \N 65440 5 0060336 \N 65441 5 0050758 \N 65442 5 0042853 \N 65443 5 0007612 \N 65444 5 0009849 \N 65445 5 0045541 \N 65446 5 0072398 \N 65447 5 0009732 \N 65448 5 0035029 \N 65449 5 0035850 \N 65450 5 0042238 \N 65451 5 0070151 \N 65452 5 0017126 \N 65453 5 0035669 \N 65454 3 18297073 \N 65455 5 0010911 \N 65456 5 0044118 \N 65457 5 0034207 \N 65458 5 0090291 \N 65459 5 0048371 \N 65460 5 0060007 \N 65461 5 0045683 \N 65462 5 0046600 \N 65463 5 0006144 \N 65464 5 0031638 \N 65465 5 0050856 \N 65466 5 0071603 \N 65467 5 0060163 \N 65468 5 0018153 \N 65469 89 AA0124 \N 65470 5 0014858 \N 65471 5 0019049 \N 65472 5 0032315 \N 65473 5 0052010 \N 65474 5 0052024 \N 65475 5 0032626 \N 65476 5 0052162 \N 65477 5 0046158 \N 65478 5 0038008 \N 65479 3 19918944 \N 65480 3 20596822 \N 65481 5 0071893 \N 65482 5 0031364 \N 65483 5 0002004 \N 65484 5 0033546 \N 65485 87 PWY-6554 \N 65486 5 0009853 \N 65487 5 0044403 \N 65488 5 0043298 \N 65489 5 0044404 \N 65490 94 //www.free-definition.com \N 65491 5 0072285 \N 65492 5 0035655 \N 65493 5 0002311 \N 65494 5 0021932 \N 65495 5 0051964 \N 65496 5 0001714 \N 65497 5 0010999 \N 65498 5 0034172 \N 65499 5 0032208 \N 65500 5 0034086 \N 65501 5 0045599 \N 65502 5 0080164 \N 65503 5 0033156 \N 65504 5 0035652 \N 65505 5 0060737 \N 65506 5 0032966 \N 65507 5 0016598 \N 65508 5 0019130 \N 65509 3 17896865 \N 65510 5 0001115 \N 65511 5 2000607 \N 65512 5 0048145 \N 65513 5 0015784 \N 65514 5 0075015 \N 65515 5 0015901 \N 65516 5 0001929 \N 65517 5 0032078 \N 65518 5 0045311 \N 65519 5 0003391 \N 65520 5 0048285 \N 65521 5 0071864 \N 65522 5 0015898 \N 65523 5 0075325 \N 65524 5 2000315 \N 65525 5 0006305 \N 65526 86 0716735970 \N 65527 5 0007050 \N 65528 5 0010322 \N 65529 5 0046648 \N 65530 5 0031286 \N 65531 5 0003410 \N 65532 5 0060559 \N 65533 5 0048816 \N 65534 5 0048246 \N 65535 5 0034759 \N 65536 5 0070164 \N 65537 5 0052372 \N 65538 5 0034460 \N 65539 5 0045213 \N 65540 5 2000110 \N 65541 5 0044324 \N 65542 5 0060424 \N 65543 5 0060628 \N 65544 5 0007173 \N 65545 5 0051004 \N 65546 5 0072327 \N 65547 5 0018355 \N 65548 89 AA00167 \N 65549 5 0002784 \N 65550 5 0035205 \N 65551 5 0001804 \N 65552 5 0061129 \N 65553 5 0003192 \N 65554 5 0075157 \N 65555 5 0045168 \N 65556 5 0002303 \N 65557 5 0009445 \N 65558 5 0014066 \N 65559 5 0071784 \N 65560 5 0032869 \N 65561 5 0046896 \N 65562 89 AA0337 \N 65563 5 0070487 \N 65564 5 0071405 \N 65565 5 0006725 \N 65566 5 0001326 \N 65567 5 0010732 \N 65568 5 0002450 \N 65569 5 0009201 \N 65570 5 0007638 \N 65571 5 0051843 \N 65572 5 0034652 \N 65573 3 18660802 \N 65574 5 0010246 \N 65575 5 0000462 \N 65576 5 0006540 \N 65577 3 12740438 \N 65578 5 0097150 \N 65579 91 0000047 \N 65580 3 11399758 \N 65581 5 2000157 \N 65582 5 0046193 \N 65583 5 0043388 \N 65584 5 0043068 \N 65585 5 0043071 \N 65586 5 0070706 \N 65587 5 0071029 \N 65588 5 0046770 \N 65589 5 0034230 \N 65590 5 0046740 \N 65591 5 0021774 \N 65592 5 0046498 \N 65593 5 0071440 \N 65594 5 0046055 \N 65595 5 0090257 \N 65596 5 0030728 \N 65597 5 0019252 \N 65598 5 0030724 \N 65599 5 0046217 \N 65600 5 0001080 \N 65601 5 0046670 \N 65602 5 0048339 \N 65603 5 0046590 \N 65604 5 0060378 \N 65605 5 0035422 \N 65606 5 0018107 \N 65607 5 0071315 \N 65608 5 0034096 \N 65609 5 0072123 \N 65610 5 0021694 \N 65611 5 0042994 \N 65612 5 0007557 \N 65613 5 0002457 \N 65614 3 11417857 \N 65615 3 15120183 \N 65616 5 0043630 \N 65617 5 0006892 \N 65618 5 0050675 \N 65619 5 0061251 \N 65620 5 0050787 \N 65621 5 0035113 \N 65622 5 0018949 \N 65623 5 0031077 \N 65624 5 0019672 \N 65625 87 P127-PWY \N 65626 5 0046002 \N 65627 5 0046251 \N 65628 5 0031119 \N 65629 5 0046801 \N 65630 3 9188566 \N 65631 5 0000165 \N 65632 5 0071025 \N 65633 5 0052398 \N 65634 5 0002067 \N 65635 5 0007383 \N 65636 5 0051088 \N 65637 5 0048678 \N 65638 5 0032633 \N 65639 5 0033623 \N 65640 5 0050495 \N 65641 89 AA0346 \N 65642 5 0010669 \N 65643 5 0048014 \N 65644 5 0043117 \N 65645 5 2000044 \N 65646 5 0050939 \N 65647 5 0009689 \N 65648 5 0019521 \N 65649 5 0019264 \N 65650 5 0002728 \N 65651 5 0035177 \N 65652 5 0060946 \N 65653 5 0000999 \N 65654 5 0000473 \N 65655 5 2000140 \N 65656 5 0090247 \N 65657 5 0051221 \N 65658 5 0030070 \N 65659 5 0018060 \N 65660 5 0031140 \N 65661 5 0045082 \N 65662 5 0032250 \N 65663 5 0016330 \N 65664 3 11257224 \N 65665 5 0031641 \N 65666 5 0019303 \N 65667 5 0075061 \N 65668 5 0051053 \N 65669 5 0000353 \N 65670 5 0048455 \N 65671 5 0048427 \N 65672 5 0097037 \N 65673 3 15369674 \N 65674 3 20610401 \N 65675 5 2001020 \N 65676 5 0061040 \N 65677 5 0048320 \N 65678 5 0072131 \N 65679 5 0021764 \N 65680 5 0044257 \N 65681 5 2000793 \N 65682 5 0045742 \N 65683 5 0032570 \N 65684 5 2000367 \N 65685 5 0048440 \N 65686 5 0048429 \N 65687 5 2000195 \N 65688 5 0019594 \N 65689 5 0045832 \N 65690 5 0000240 \N 65691 5 0061317 \N 65692 3 17576928 \N 65693 5 0060012 \N 65694 5 0033049 \N 65695 5 0043403 \N 65696 3 12021255 \N 65697 5 0048796 \N 65698 5 0031223 \N 65699 5 0072199 \N 65700 5 0018919 \N 65701 5 0090037 \N 65702 5 0071108 \N 65703 5 0070755 \N 65704 5 0035963 \N 65705 5 0035260 \N 65706 5 0006034 \N 65707 5 0035823 \N 65708 5 2000134 \N 65709 5 0010182 \N 65710 3 9014361 \N 65711 5 0097041 \N 65712 88 59237 \N 65713 5 0034143 \N 65714 5 0035803 \N 65715 3 16944418 \N 65716 3 17163408 \N 65717 5 0003182 \N 65718 5 0000973 \N 65719 3 17373856 \N 65720 5 0032492 \N 65721 5 0014825 \N 65722 100 0001612 \N 65723 5 2000381 \N 65724 5 0080154 \N 65725 5 0032130 \N 65726 3 15517003 \N 65727 5 0072044 \N 65728 5 0032606 \N 65729 5 0046149 \N 65730 5 0048328 \N 65731 5 0010770 \N 65732 5 0008647 \N 65733 5 0000373 \N 65734 5 0007605 \N 65735 5 0075245 \N 65736 5 0019336 \N 65737 5 0032351 \N 65738 5 0030174 \N 65739 5 0019287 \N 65740 5 0035793 \N 65741 5 0014722 \N 65742 5 0090413 \N 65743 5 0034179 \N 65744 5 0003033 \N 65745 5 0006742 \N 65746 5 0045463 \N 65747 5 0000040 \N 65748 5 0019408 \N 65749 5 0060608 \N 65750 5 0000434 \N 65751 5 0015756 \N 65752 5 0071498 \N 65753 5 0051519 \N 65754 5 0071504 \N 65755 5 0021560 \N 65756 5 0034471 \N 65757 5 0006749 \N 65758 5 0006071 \N 65759 5 0010909 \N 65760 5 0071799 \N 65761 5 0090164 \N 65762 5 0045796 \N 65763 5 2000982 \N 65764 5 0002528 \N 65765 5 0050708 \N 65766 5 0043373 \N 65767 5 0021838 \N 65768 5 0071698 \N 65769 5 0042375 \N 65770 5 0009583 \N 65771 5 0034478 \N 65772 5 0051415 \N 65773 5 0006029 \N 65774 5 0043012 \N 65775 5 0009744 \N 65776 5 0085020 \N 65777 5 0048736 \N 65778 5 0052266 \N 65779 5 0021831 \N 65780 5 0022016 \N 65781 5 0061336 \N 65782 5 0006564 \N 65783 5 0002752 \N 65784 5 0010153 \N 65785 3 11978864 \N 65786 5 0046097 \N 65787 5 0010022 \N 65788 5 0052195 \N 65789 5 2000798 \N 65790 5 0080027 \N 65791 5 0048714 \N 65792 5 0045426 \N 65793 5 0042430 \N 65794 5 0042434 \N 65795 5 0031953 \N 65796 5 0042001 \N 65797 5 0042002 \N 65798 5 0015833 \N 65799 5 0045767 \N 65800 5 0009591 \N 65801 5 0007609 \N 65802 5 0075051 \N 65803 5 0043009 \N 65804 5 0043414 \N 65805 5 0060349 \N 65806 5 0000194 \N 65807 5 0052482 \N 65808 5 0006956 \N 65809 5 0046108 \N 65810 5 0009603 \N 65811 5 2000735 \N 65812 5 0051840 \N 65813 5 0002093 \N 65814 5 0042821 \N 65815 5 0044044 \N 65816 5 0018258 \N 65817 5 0031642 \N 65818 5 0051547 \N 65819 5 0006685 \N 65820 5 0051660 \N 65821 5 0032662 \N 65822 5 0009156 \N 65823 5 0061168 \N 65824 5 0009085 \N 65825 5 0002427 \N 65826 5 0022622 \N 65827 5 0060799 \N 65828 5 0043069 \N 65829 5 0043072 \N 65830 5 0042173 \N 65831 5 0090355 \N 65832 5 0010214 \N 65833 5 0046210 \N 65834 5 0006334 \N 65835 5 0031407 \N 65836 5 0002706 \N 65837 5 0014037 \N 65838 5 0003434 \N 65839 5 0042738 \N 65840 5 0007010 \N 65841 5 0070795 \N 65842 5 0072074 \N 65843 5 0035090 \N 65844 5 0002277 \N 65845 5 0000919 \N 65846 5 0019658 \N 65847 87 P124-PWY \N 65848 5 0045035 \N 65849 3 11171389 \N 65850 3 18295597 \N 65851 5 0019414 \N 65852 3 11425697 \N 65853 5 0003272 \N 65854 3 15797462 \N 65855 5 0007124 \N 65856 3 11104818 \N 65857 5 0051230 \N 65858 5 0032923 \N 65859 5 0031048 \N 65860 5 0071213 \N 65861 5 0061184 \N 65862 5 0016191 \N 65863 5 0045064 \N 65864 5 0052521 \N 65865 5 0032341 \N 65866 5 0034500 \N 65867 5 0033315 \N 65868 5 0046686 \N 65869 5 0006786 \N 65870 5 0010360 \N 65871 5 0052450 \N 65872 5 0075278 \N 65873 5 0048642 \N 65874 5 0050713 \N 65875 5 0071539 \N 65876 5 0051322 \N 65877 5 0061191 \N 65878 5 0021916 \N 65879 5 0018045 \N 65880 89 AA0092 \N 65881 5 0035272 \N 65882 94 //encyclopedia.thefreedictionary.com/Exocrine+gland \N 65883 5 0045358 \N 65884 5 0075181 \N 65885 5 0002036 \N 65886 5 0007007 \N 65887 5 0030816 \N 65888 5 0019087 \N 65889 5 0035606 \N 65890 3 19854201 \N 65891 3 20972425 \N 65892 5 0000414 \N 65893 5 0019936 \N 65894 5 0045659 \N 65895 5 0035980 \N 65896 5 0048719 \N 65897 5 0007626 \N 65898 5 0031043 \N 65899 5 0000708 \N 65900 3 10915877 \N 65901 5 0030802 \N 65902 5 0032730 \N 65903 5 0015849 \N 65904 5 0052383 \N 65905 5 0009143 \N 65906 5 0050666 \N 65907 5 0051557 \N 65908 5 0070502 \N 65909 5 0060497 \N 65910 5 0072654 \N 65911 5 0032081 \N 65912 5 0019298 \N 65913 3 10940051 \N 65914 5 0070788 \N 65915 5 0021918 \N 65916 5 0006366 \N 65917 5 0032568 \N 65918 5 0032569 \N 65919 5 0016138 \N 65920 5 0090072 \N 65921 5 0042442 \N 65922 5 0042449 \N 65923 5 0030036 \N 65924 5 0050866 \N 65925 5 0071519 \N 65926 5 0042782 \N 65927 5 0032820 \N 65928 5 0060505 \N 65929 5 2000871 \N 65930 5 0006591 \N 65931 5 0008259 \N 65932 5 0048912 \N 65933 5 0006239 \N 65934 5 0060414 \N 65935 5 2000979 \N 65936 5 0071515 \N 65937 5 0072122 \N 65938 5 0009166 \N 65939 5 0055059 \N 65940 5 0072177 \N 65941 5 0071482 \N 65942 5 0048348 \N 65943 5 0060570 \N 65944 5 0072395 \N 65945 5 0032092 \N 65946 5 0060632 \N 65947 5 0052475 \N 65948 5 0034771 \N 65949 5 0042985 \N 65950 5 0035812 \N 65951 5 0010938 \N 65952 5 0008589 \N 65953 5 0007226 \N 65954 5 0043109 \N 65955 5 0007491 \N 65956 5 0042493 \N 65957 5 0017035 \N 65958 5 2000945 \N 65959 5 0061276 \N 65960 5 0043937 \N 65961 5 0010361 \N 65962 5 0070673 \N 65963 5 0003109 \N 65964 5 0052137 \N 65965 5 0034345 \N 65966 5 0042188 \N 65967 5 0016101 \N 65968 5 0071355 \N 65969 5 0030809 \N 65970 5 0034276 \N 65971 5 2000547 \N 65972 5 0019231 \N 65973 5 0034698 \N 65974 5 0002536 \N 65975 5 0002815 \N 65976 5 0072664 \N 65977 5 0046093 \N 65978 5 0045360 \N 65979 5 0015931 \N 65980 5 0045079 \N 65981 5 0070318 \N 65982 5 0090087 \N 65983 5 0043584 \N 65984 5 0007513 \N 65985 5 0070366 \N 65986 5 0030573 \N 65987 5 0019613 \N 65988 5 0072667 \N 65989 5 0023056 \N 65990 5 0010690 \N 65991 5 2000285 \N 65992 5 0002289 \N 65993 5 0032539 \N 65994 5 0019483 \N 65995 5 0070830 \N 65996 5 2000726 \N 65997 5 0035978 \N 65998 3 16061642 \N 65999 5 2000801 \N 66000 5 0090134 \N 66001 5 0090182 \N 66002 5 0003313 \N 66003 5 0051204 \N 66004 5 0072053 \N 66005 5 0031637 \N 66006 3 8703078 \N 66007 5 0072573 \N 66008 5 0009440 \N 66009 5 0061388 \N 66010 5 0030962 \N 66011 89 AA0369 \N 66012 5 0042398 \N 66013 5 0090398 \N 66014 5 0046503 \N 66015 5 0007309 \N 66016 5 0048111 \N 66017 5 0045901 \N 66018 5 0002513 \N 66019 5 0043304 \N 66020 5 0035140 \N 66021 5 0022414 \N 66022 5 0061385 \N 66023 5 0019552 \N 66024 87 P162-PWY \N 66025 5 0000752 \N 66026 5 0007334 \N 66027 5 0051248 \N 66028 5 0006691 \N 66029 5 0005979 \N 66030 5 0045343 \N 66031 5 0019533 \N 66032 5 0014822 \N 66033 5 0071501 \N 66034 5 0061328 \N 66035 5 0071281 \N 66036 5 0072249 \N 66037 5 0031054 \N 66038 3 15211354 \N 66039 5 0060742 \N 66040 5 0072138 \N 66041 5 0030539 \N 66042 5 0052106 \N 66043 5 0018016 \N 66044 89 AA0066 \N 66045 5 0071691 \N 66046 5 0031035 \N 66047 5 0042240 \N 66048 5 0015917 \N 66049 5 0048047 \N 66050 3 12486700 \N 66051 5 0045474 \N 66052 5 0042075 \N 66053 5 0010644 \N 66054 5 0052244 \N 66055 5 0051453 \N 66056 5 0060991 \N 66057 5 0000493 \N 66058 3 12515383 \N 66059 5 0006532 \N 66060 5 0021522 \N 66061 5 2000808 \N 66062 5 0019794 \N 66063 5 0001964 \N 66064 5 2000308 \N 66065 5 0010253 \N 66066 5 0060639 \N 66067 5 0035934 \N 66068 88 16827 \N 66069 5 2000536 \N 66070 5 0048363 \N 66071 5 0010785 \N 66072 5 0045534 \N 66073 5 0001543 \N 66074 5 0072564 \N 66075 5 0002698 \N 66076 5 0000457 \N 66077 5 0075091 \N 66078 5 0034439 \N 66079 5 0072355 \N 66080 5 0040015 \N 66081 5 0002554 \N 66082 5 0055081 \N 66083 5 2000294 \N 66084 5 0043375 \N 66085 5 0008342 \N 66086 5 0060609 \N 66087 5 0060381 \N 66088 5 0060396 \N 66089 5 0042454 \N 66090 5 0060595 \N 66091 5 0040023 \N 66092 5 0045715 \N 66093 5 0034764 \N 66094 5 0045214 \N 66095 5 0006938 \N 66096 5 0052174 \N 66097 5 0071711 \N 66098 5 0015807 \N 66099 5 0014718 \N 66100 5 0032371 \N 66101 5 0046502 \N 66102 5 0075135 \N 66103 5 2000709 \N 66104 5 0051046 \N 66105 5 0090098 \N 66106 5 0046073 \N 66107 5 0048911 \N 66108 5 0006197 \N 66109 5 0002582 \N 66110 5 0030099 \N 66111 5 0070374 \N 66112 5 0006280 \N 66113 5 0032668 \N 66114 5 0035905 \N 66115 5 0051632 \N 66116 5 0001979 \N 66117 5 0006993 \N 66118 5 0018207 \N 66119 5 0007344 \N 66120 5 0002617 \N 66121 5 0014870 \N 66122 5 0002924 \N 66123 5 0000202 \N 66124 5 0045605 \N 66125 5 0033860 \N 66126 5 0002121 \N 66127 5 0032355 \N 66128 5 0032455 \N 66129 3 8615794 \N 66130 5 0075312 \N 66131 5 2000256 \N 66132 5 0045883 \N 66133 5 0070341 \N 66134 5 0090261 \N 66135 5 0009926 \N 66136 5 0075082 \N 66137 5 0048940 \N 66138 5 0001869 \N 66139 5 0002689 \N 66140 5 0051304 \N 66141 3 20352243 \N 66142 5 0007618 \N 66143 5 0001564 \N 66144 5 0033567 \N 66145 5 0033108 \N 66146 5 0009559 \N 66147 5 0046045 \N 66148 5 0019094 \N 66149 5 0048120 \N 66150 5 0042596 \N 66151 5 0001663 \N 66152 5 0032532 \N 66153 5 0060271 \N 66154 5 0006943 \N 66155 5 0071812 \N 66156 5 0015863 \N 66157 5 0075162 \N 66158 5 0046586 \N 66159 5 0070339 \N 66160 5 0052278 \N 66161 5 0042935 \N 66162 5 0007390 \N 66163 5 0009912 \N 66164 5 0034454 \N 66165 5 0007576 \N 66166 5 0046616 \N 66167 3 9271578 \N 66168 5 0000075 \N 66169 5 0043362 \N 66170 5 0046813 \N 66171 5 0010335 \N 66172 5 0034351 \N 66173 5 0002871 \N 66174 5 0002631 \N 66175 5 0090129 \N 66176 5 0009304 \N 66177 5 0014864 \N 66178 5 0007598 \N 66179 5 2000017 \N 66180 5 0006130 \N 66181 5 2000527 \N 66182 5 0009963 \N 66183 5 0007399 \N 66184 5 0035883 \N 66185 91 0000164 \N 66186 5 0071258 \N 66187 5 0052708 \N 66188 5 0075103 \N 66189 5 0002165 \N 66190 5 0034047 \N 66191 5 0075188 \N 66192 5 0045389 \N 66193 5 0042628 \N 66194 94 //www.wildcru.org/glossary/glossary.htm \N 66195 94 //www.wormatlas.org/glossaries/cglossary.htm \N 66196 3 11267893 \N 66197 5 0046530 \N 66198 5 0007467 \N 66199 5 0075095 \N 66200 5 0015793 \N 66201 5 0033693 \N 66202 3 11034913 \N 66203 3 11264295 \N 66204 5 0071831 \N 66205 5 0072252 \N 66206 5 0032060 \N 66207 3 12083798 \N 66208 3 16624291 \N 66209 5 0019386 \N 66210 5 0032368 \N 66211 5 0071224 \N 66212 5 0021800 \N 66213 5 0055067 \N 66214 5 0007543 \N 66215 5 0009616 \N 66216 5 0009850 \N 66217 5 0071399 \N 66218 5 0032852 \N 66219 5 0016063 \N 66220 5 0033262 \N 66221 5 0090094 \N 66222 3 19161241 \N 66223 5 0015767 \N 66224 5 0050930 \N 66225 5 0060755 \N 66226 5 0060402 \N 66227 5 2000482 \N 66228 5 0042168 \N 66229 5 0034630 \N 66230 5 0010664 \N 66231 5 0075222 \N 66232 5 0007396 \N 66233 5 0045190 \N 66234 5 0042778 \N 66235 5 0048235 \N 66236 5 0048234 \N 66237 91 0000366 \N 66238 5 0009901 \N 66239 5 0043200 \N 66240 5 0010237 \N 66241 5 0072144 \N 66242 5 2000399 \N 66243 5 0016045 \N 66244 5 0009598 \N 66245 5 0009681 \N 66246 5 0010266 \N 66247 5 0006196 \N 66248 5 0080173 \N 66249 3 21123745 \N 66250 5 0071951 \N 66251 3 5337045 \N 66252 5 0090233 \N 66253 5 0072604 \N 66254 5 0018199 \N 66255 5 2000429 \N 66256 5 0021703 \N 66257 5 0015677 \N 66258 5 0048905 \N 66259 5 0009135 \N 66260 5 0003393 \N 66261 5 0060121 \N 66262 5 0043636 \N 66263 88 33216 \N 66264 104 Bisphenol_A \N 66265 5 0048093 \N 66266 5 0052188 \N 66267 5 0009450 \N 66268 5 0007210 \N 66269 5 0050942 \N 66270 5 0044061 \N 66271 5 0045644 \N 66272 5 0046470 \N 66273 5 0071701 \N 66274 5 0042274 \N 66275 5 0035095 \N 66276 5 0040003 \N 66277 5 0033635 \N 66278 5 0031053 \N 66279 5 0001763 \N 66280 5 0003269 \N 66281 5 0048658 \N 66282 5 0034032 \N 66283 5 0046791 \N 66284 5 0007365 \N 66285 5 0000724 \N 66286 5 0016924 \N 66287 5 0072088 \N 66288 5 0001770 \N 66289 3 12615886 \N 66290 3 9759849 \N 66291 5 0075259 \N 66292 5 0023014 \N 66293 5 0032069 \N 66294 5 0001519 \N 66295 3 11028916 \N 66296 5 0044079 \N 66297 5 2000291 \N 66298 5 0044148 \N 66299 5 0072383 \N 66300 5 0010030 \N 66301 5 0050926 \N 66302 5 0048704 \N 66303 5 0021756 \N 66304 5 0002693 \N 66305 5 0031496 \N 66306 5 0035833 \N 66307 5 0048172 \N 66308 5 0035362 \N 66309 3 11747630 \N 66310 5 0052178 \N 66311 5 0048193 \N 66312 5 0060717 \N 66313 5 0090402 \N 66314 5 0030253 \N 66315 5 0032043 \N 66316 5 0007630 \N 66317 5 0061349 \N 66318 5 0046885 \N 66319 5 0002364 \N 66320 5 0048755 \N 66321 5 0050925 \N 66322 5 0070658 \N 66323 5 0071279 \N 66324 5 0000061 \N 66325 3 9687515 \N 66326 5 0003177 \N 66327 5 0010933 \N 66328 5 0072188 \N 66329 5 0060197 \N 66330 5 0006344 \N 66331 5 0034127 \N 66332 5 0034623 \N 66333 5 0061339 \N 66334 5 0032416 \N 66335 5 0032099 \N 66336 5 0060848 \N 66337 5 0033160 \N 66338 5 0034429 \N 66339 3 15065115 \N 66340 3 17507550 \N 66341 3 8038988 \N 66342 5 0010540 \N 66343 5 0051875 \N 66344 5 0072540 \N 66345 5 0006906 \N 66346 5 0043049 \N 66347 3 12668634 \N 66348 5 0071453 \N 66349 5 0010654 \N 66350 5 0052280 \N 66351 5 0015669 \N 66352 5 0001561 \N 66353 94 //www.peroxisome.org/Scientist/Biochemistry/alpha-oxidation.html \N 66354 5 0008614 \N 66355 5 0006773 \N 66356 88 16709 \N 66357 5 0043948 \N 66358 5 0001996 \N 66359 5 0046230 \N 66360 5 0002051 \N 66361 5 0009825 \N 66362 5 0007445 \N 66363 5 0075235 \N 66364 5 0071593 \N 66365 5 0015871 \N 66366 5 0006547 \N 66367 5 0055107 \N 66368 5 0019597 \N 66369 5 0010451 \N 66370 5 0072683 \N 66371 5 0002550 \N 66372 5 0018051 \N 66373 89 AA0098 \N 66374 5 0006016 \N 66375 5 0032740 \N 66376 5 0052318 \N 66377 5 0048842 \N 66378 5 0021572 \N 66379 5 0048849 \N 66380 5 0046494 \N 66381 5 0060965 \N 66382 5 0060032 \N 66383 5 0000335 \N 66384 5 2000702 \N 66385 5 0022406 \N 66386 5 0007083 \N 66387 5 0071869 \N 66388 5 0045924 \N 66389 5 0060181 \N 66390 5 0009188 \N 66391 5 0048319 \N 66392 5 0045199 \N 66393 5 0044320 \N 66394 5 0046847 \N 66395 5 0001111 \N 66396 5 0021954 \N 66397 5 0042262 \N 66398 5 0060643 \N 66399 5 0052516 \N 66400 5 0060811 \N 66401 5 0042930 \N 66402 88 28855 \N 66403 5 0003326 \N 66404 5 0048795 \N 66405 5 0032899 \N 66406 5 0031274 \N 66407 5 2000665 \N 66408 5 0043685 \N 66409 3 3340166 \N 66410 3 9342308 \N 66411 5 0042378 \N 66412 5 0019505 \N 66413 94 //www.speclab.com/compound/c108463.htm \N 66414 5 0015827 \N 66415 5 0090200 \N 66416 5 0052447 \N 66417 5 0032720 \N 66418 5 0002540 \N 66419 5 0050921 \N 66420 5 0002442 \N 66421 5 0035944 \N 66422 114 000003466 \N 66423 5 0072154 \N 66424 5 0019856 \N 66425 5 0051207 \N 66426 5 0070627 \N 66427 5 0072161 \N 66428 5 0031651 \N 66429 5 0060873 \N 66430 5 0090035 \N 66431 5 2000513 \N 66432 5 2000671 \N 66433 5 0061353 \N 66434 5 0090378 \N 66435 5 0032737 \N 66436 5 0018361 \N 66437 89 AA0273 \N 66438 5 0045694 \N 66439 5 0009818 \N 66440 5 0060983 \N 66441 5 0044206 \N 66442 3 15096496 \N 66443 5 0030041 \N 66444 5 0060564 \N 66445 5 0043991 \N 66446 5 0046237 \N 66447 5 0052042 \N 66448 5 0052153 \N 66449 5 0010500 \N 66450 5 0007074 \N 66451 5 0060176 \N 66452 5 0061356 \N 66453 5 0046181 \N 66454 5 0061078 \N 66455 5 0010630 \N 66456 5 0003407 \N 66457 5 0043568 \N 66458 5 0032864 \N 66459 5 0060356 \N 66460 5 0002286 \N 66461 5 0048628 \N 66462 5 0000377 \N 66463 5 0000390 \N 66464 5 0000391 \N 66465 5 0000392 \N 66466 5 0051421 \N 66467 5 2000359 \N 66468 5 0060522 \N 66469 5 0035556 \N 66470 5 0007242 \N 66471 5 0023013 \N 66472 5 0023034 \N 66473 5 0030832 \N 66474 5 0009947 \N 66475 5 0015744 \N 66476 5 0022008 \N 66477 5 0060732 \N 66478 5 0042097 \N 66479 5 0042224 \N 66480 5 0060307 \N 66481 5 0052388 \N 66482 5 0033067 \N 66483 5 0035459 \N 66484 5 0006355 \N 66485 5 0032583 \N 66486 5 0045449 \N 66487 5 0061019 \N 66488 5 0071425 \N 66489 5 0061207 \N 66490 5 0048278 \N 66491 5 0023019 \N 66492 5 0006096 \N 66493 5 0019641 \N 66494 5 0019642 \N 66495 104 Glycolysis \N 66496 5 2000449 \N 66497 5 0046142 \N 66498 5 0043128 \N 66499 5 2000207 \N 66500 5 0051802 \N 66501 5 0070951 \N 66502 5 0051315 \N 66503 5 0009190 \N 66504 5 0022035 \N 66505 3 15629700 \N 66506 5 0051798 \N 66507 5 0035672 \N 66508 5 0001407 \N 66509 3 12912892 \N 66510 5 0035891 \N 66511 3 19325115 \N 66512 5 0070201 \N 66513 5 0033619 \N 66514 5 0002405 \N 66515 5 0032435 \N 66516 5 0044110 \N 66517 5 0045394 \N 66518 5 0048358 \N 66519 5 0072239 \N 66520 5 2000252 \N 66521 5 0046434 \N 66522 5 0002063 \N 66523 5 0034487 \N 66524 5 0052287 \N 66525 5 0033366 \N 66526 5 0034552 \N 66527 5 0002512 \N 66528 5 0001896 \N 66529 5 0045055 \N 66530 5 0031989 \N 66531 5 0002464 \N 66532 5 0070642 \N 66533 115 9547700 \N 66534 5 0002894 \N 66535 5 0071545 \N 66536 5 0009907 \N 66537 5 0010068 \N 66538 5 0071139 \N 66539 5 0039525 \N 66540 5 0034255 \N 66541 5 0052571 \N 66542 5 0072022 \N 66543 5 0050870 \N 66544 5 0005990 \N 66545 5 0015732 \N 66546 5 0071157 \N 66547 5 0061165 \N 66548 5 2000833 \N 66549 5 0071902 \N 66550 5 0001171 \N 66551 3 20358252 \N 66552 5 0016197 \N 66553 5 0052358 \N 66554 5 0035616 \N 66555 3 15657442 \N 66556 5 0048104 \N 66557 5 0045579 \N 66558 5 0052343 \N 66559 5 0034078 \N 66560 5 0010051 \N 66561 5 0034758 \N 66562 5 0034433 \N 66563 5 0060029 \N 66564 5 0048162 \N 66565 5 0051677 \N 66566 5 0070844 \N 66567 5 0034376 \N 66568 5 0003104 \N 66569 5 0043144 \N 66570 5 0035289 \N 66571 5 0075119 \N 66572 5 0061001 \N 66573 5 0032648 \N 66574 5 0060312 \N 66575 5 0050996 \N 66576 5 0048808 \N 66577 5 0014831 \N 66578 100 0001523 \N 66579 101 A03.556 \N 66580 5 0080112 \N 66581 5 0021809 \N 66582 5 0018280 \N 66583 5 0000284 \N 66584 5 0001887 \N 66585 3 12730456 \N 66586 5 0009100 \N 66587 5 0061260 \N 66588 5 0032196 \N 66589 5 0045751 \N 66590 5 0048520 \N 66591 5 0015996 \N 66592 5 0051755 \N 66593 5 0002261 \N 66594 3 15609020 \N 66595 5 0033382 \N 66596 5 0042697 \N 66597 3 18495681 \N 66598 5 0075251 \N 66599 5 0031448 \N 66600 5 0046888 \N 66601 5 0044266 \N 66602 5 0005992 \N 66603 5 0048262 \N 66604 5 0002447 \N 66605 5 0010058 \N 66606 5 0048762 \N 66607 5 0007266 \N 66608 5 0019541 \N 66609 103 C00163 \N 66610 87 PROPIONATE \N 66611 5 0002733 \N 66612 5 0060155 \N 66613 5 0003013 \N 66614 5 0072442 \N 66615 5 0072445 \N 66616 5 0045571 \N 66617 5 0006988 \N 66618 5 0048296 \N 66619 5 0035895 \N 66620 5 0045712 \N 66621 5 0060361 \N 66622 5 0051263 \N 66623 89 AA0374 \N 66624 5 0019801 \N 66625 89 AA0302 \N 66626 5 0075110 \N 66627 5 0033272 \N 66628 5 0021883 \N 66629 5 0044066 \N 66630 5 0001910 \N 66631 5 0010983 \N 66632 5 0070099 \N 66633 5 0043201 \N 66634 5 0021822 \N 66635 5 0018115 \N 66636 3 7797461 \N 66637 89 AA0223 \N 66638 5 0090248 \N 66639 5 0034120 \N 66640 5 0060935 \N 66641 5 0019323 \N 66642 5 0043181 \N 66643 5 0006696 \N 66644 5 0050882 \N 66645 5 0044070 \N 66646 5 0045943 \N 66647 5 0002530 \N 66648 5 0032670 \N 66649 5 0016578 \N 66650 5 0072233 \N 66651 5 0060884 \N 66652 5 0090319 \N 66653 5 0052492 \N 66654 5 0009634 \N 66655 5 0006804 \N 66656 5 0021812 \N 66657 5 0006515 \N 66658 5 0018306 \N 66659 89 AA0289 \N 66660 5 0050879 \N 66661 5 0030505 \N 66662 5 0019343 \N 66663 5 0006431 \N 66664 5 0051464 \N 66665 5 0003084 \N 66666 5 0018873 \N 66667 5 0002592 \N 66668 5 0052405 \N 66669 5 0021618 \N 66670 5 0070680 \N 66671 87 PWY490-4 \N 66672 5 0010434 \N 66673 5 0060133 \N 66674 5 0071465 \N 66675 5 0015938 \N 66676 5 0006765 \N 66677 5 0019703 \N 66678 89 AA0306 \N 66679 5 0042883 \N 66680 5 0046338 \N 66681 5 0021557 \N 66682 5 0035163 \N 66683 5 0002480 \N 66684 5 0042247 \N 66685 5 0032951 \N 66686 5 0018147 \N 66687 89 AA0248 \N 66688 5 0070453 \N 66689 5 0046300 \N 66690 5 0030582 \N 66691 5 0051162 \N 66692 5 0033243 \N 66693 5 0050970 \N 66694 5 0043112 \N 66695 5 0045851 \N 66696 5 0050720 \N 66697 5 0035637 \N 66698 5 0051784 \N 66699 5 0052041 \N 66700 5 0006775 \N 66701 5 2000225 \N 66702 5 2000582 \N 66703 5 0002669 \N 66704 5 0000236 \N 66705 5 0042341 \N 66706 5 0006285 \N 66707 5 0035107 \N 66708 5 0006973 \N 66709 3 11752666 \N 66710 5 0046751 \N 66711 5 2001045 \N 66712 5 0032786 \N 66713 5 0021622 \N 66714 5 0023037 \N 66715 5 0009734 \N 66716 5 0009239 \N 66717 5 0031191 \N 66718 5 0031192 \N 66719 5 0016545 \N 66720 5 2000778 \N 66721 5 0048739 \N 66722 5 0031575 \N 66723 5 0075077 \N 66724 5 0046487 \N 66725 5 0021959 \N 66726 5 0048394 \N 66727 5 0009257 \N 66728 5 0010530 \N 66729 5 0060250 \N 66730 5 0009846 \N 66731 5 0044039 \N 66732 5 0052075 \N 66733 5 0018141 \N 66734 89 AA0245 \N 66735 5 0035432 \N 66736 5 0070304 \N 66737 5 0048727 \N 66738 5 0045163 \N 66739 5 0075332 \N 66740 5 0001678 \N 66741 5 0061062 \N 66742 5 0060646 \N 66743 5 0046258 \N 66744 5 0051926 \N 66745 5 0030264 \N 66746 5 0006463 \N 66747 104 Steroid_hormone_receptor \N 66748 5 0042594 \N 66749 5 0033036 \N 66750 5 0071634 \N 66751 5 0042130 \N 66752 5 0000962 \N 66753 5 0006797 \N 66754 5 0050960 \N 66755 5 0071901 \N 66756 5 0034287 \N 66757 5 0015779 \N 66758 5 0019495 \N 66759 5 0031667 \N 66760 5 0050980 \N 66761 5 0072688 \N 66762 5 0000019 \N 66763 5 0061242 \N 66764 5 0060710 \N 66765 5 0043547 \N 66766 5 0045842 \N 66767 5 0031554 \N 66768 5 0090112 \N 66769 5 0010137 \N 66770 5 0016078 \N 66771 5 0090345 \N 66772 5 0009657 \N 66773 5 0052251 \N 66774 5 0071934 \N 66775 5 0071653 \N 66776 5 0006983 \N 66777 5 0075296 \N 66778 5 0060020 \N 66779 3 10375501 \N 66780 5 0006703 \N 66781 5 0042797 \N 66782 5 0046707 \N 66783 5 0006420 \N 66784 5 0030245 \N 66785 5 0016179 \N 66786 5 0060831 \N 66787 5 0035753 \N 66788 3 21347277 \N 66789 128 0000291 \N 66790 5 0033086 \N 66791 5 0030901 \N 66792 94 //www2.merriam-webster.com/cgi-bin/mwmednlm?book=Medical&va=midbrain \N 66793 5 0090198 \N 66794 5 0045531 \N 66795 5 0010979 \N 66796 5 0046369 \N 66797 5 0009406 \N 66798 5 0007288 \N 66799 5 0009230 \N 66800 5 0018938 \N 66935 5 0035738 \N 66801 94 //umbbd.ahc.umn.edu/npp/npp_map.html \N 66802 97 npp \N 66803 5 0043064 \N 66804 5 0000750 \N 66805 5 0007330 \N 66806 5 0030454 \N 66807 5 0009873 \N 66808 5 0019093 \N 66809 5 0006393 \N 66810 5 0071344 \N 66811 88 35782 \N 66812 5 0035524 \N 66813 5 0009123 \N 66814 5 0003100 \N 66815 5 0051657 \N 66816 5 0052233 \N 66817 5 0014002 \N 66818 5 0032365 \N 66819 5 0043173 \N 66820 5 0021638 \N 66821 5 0007310 \N 66822 5 0008072 \N 66823 5 0048123 \N 66824 5 0045067 \N 66825 5 0071809 \N 66826 5 0046347 \N 66827 5 0009250 \N 66828 5 0070572 \N 66829 5 0010417 \N 66830 5 0046322 \N 66831 5 0006673 \N 66832 94 //www.chem.qmul.ac.uk/iupac/misc/glylp.html \N 66833 5 0043311 \N 66834 5 0075002 \N 66835 5 2000479 \N 66836 5 0042039 \N 66837 3 11053414 \N 66838 5 0060540 \N 66839 5 0002418 \N 66840 5 0060789 \N 66841 5 0070783 \N 66842 5 0002300 \N 66843 5 0060663 \N 66844 5 0055014 \N 66845 5 0031023 \N 66846 5 0010066 \N 66847 5 0030921 \N 66848 3 9631087 \N 66849 5 0043502 \N 66850 5 0052460 \N 66851 5 0032913 \N 66852 5 0050861 \N 66853 5 0031102 \N 66854 5 0035199 \N 66855 5 0042344 \N 66856 5 0070914 \N 66857 3 9619100 \N 66858 5 0000765 \N 66859 5 0003056 \N 66860 5 0021653 \N 66861 5 0075006 \N 66862 5 0002887 \N 66863 5 0071883 \N 66864 5 0035124 \N 66865 5 0052111 \N 66866 5 0003087 \N 66867 5 0002228 \N 66868 5 2000644 \N 66869 5 0002373 \N 66870 5 0009371 \N 66871 5 0007091 \N 66872 3 10465783 \N 66873 5 0035041 \N 66874 5 0035348 \N 66875 5 bf \N 66876 5 0000012 \N 66877 94 //www.ultranet.com/~jkimball/BiologyPages/D/DNArepair.html \N 66878 5 0021601 \N 66879 5 0046952 \N 66880 5 0021970 \N 66881 5 0060355 \N 66882 5 2000947 \N 66883 5 0042206 \N 66884 5 0055010 \N 66885 5 0032719 \N 66886 5 0071732 \N 66887 5 0042865 \N 66888 5 0090334 \N 66889 5 2000964 \N 66890 5 0071471 \N 66891 5 0061298 \N 66892 5 0051859 \N 66893 5 0052225 \N 66894 5 0048891 \N 66895 5 0043476 \N 66896 5 0044413 \N 66897 5 0030443 \N 66898 5 0032232 \N 66899 5 0007343 \N 66900 5 0080022 \N 66901 5 0061130 \N 66902 5 0042465 \N 66903 5 0045626 \N 66904 5 0043611 \N 66905 5 0019102 \N 66906 5 2000127 \N 66907 5 0071410 \N 66908 5 0051275 \N 66909 5 0012501 \N 66910 5 0016244 \N 66911 5 0010035 \N 66912 5 0014076 \N 66913 88 5118 \N 66914 5 0060471 \N 66915 5 0015771 \N 66916 5 0045992 \N 66917 5 0075150 \N 66918 5 0007436 \N 66919 5 0050906 \N 66920 5 0006047 \N 66921 5 0051492 \N 66922 5 0002130 \N 66923 5 0035764 \N 66924 5 0035769 \N 66925 5 0030104 \N 66926 5 0018987 \N 66927 5 0030844 \N 66928 5 0075258 \N 66929 5 0010468 \N 66930 5 0021939 \N 66931 5 0010954 \N 66932 5 0009651 \N 66933 5 0044030 \N 66934 5 0045886 \N 66936 5 0071235 \N 66937 5 0060825 \N 66938 5 0045185 \N 66939 5 0075020 \N 66940 5 0042752 \N 66941 5 0018416 \N 66942 5 0042113 \N 66943 5 0042733 \N 66944 106 0002544 \N 66945 5 0070292 \N 66946 5 0035900 \N 66947 5 0045222 \N 66948 5 0031107 \N 66949 5 0003153 \N 66950 5 0018209 \N 66951 5 2000813 \N 66952 5 0030200 \N 66953 5 0018379 \N 66954 5 0051885 \N 66955 5 0002157 \N 66956 5 0033661 \N 66957 5 0044107 \N 66958 5 0001193 \N 66959 3 14531857 \N 66960 3 16492753 \N 66961 3 17535246 \N 66962 5 0001837 \N 66963 3 14701881 \N 66964 5 0052069 \N 66965 5 0097083 \N 66966 5 0075025 \N 66967 5 0048660 \N 66968 5 0006161 \N 66969 5 0050760 \N 66970 5 0010760 \N 66971 5 0035535 \N 66972 5 0035321 \N 66973 3 15501220 \N 66974 5 0060692 \N 66975 5 0045667 \N 66976 5 0021979 \N 66977 5 2000329 \N 66978 5 0010780 \N 66979 5 0051942 \N 66980 5 0021791 \N 66981 5 0033688 \N 66982 5 0019730 \N 66983 5 0006960 \N 66984 5 0019735 \N 66985 5 0072625 \N 66986 5 0046467 \N 66987 5 0018033 \N 66988 5 0032756 \N 66989 5 0072523 \N 66990 5 0002857 \N 66991 5 0021888 \N 66992 5 0002410 \N 66993 3 15159375 \N 66994 5 0030199 \N 66995 5 0072329 \N 66996 5 0090217 \N 66997 5 0021530 \N 66998 5 0033525 \N 66999 5 0034312 \N 67000 5 0042426 \N 67001 5 0010825 \N 67002 5 0046299 \N 67003 5 0042505 \N 67004 5 0043523 \N 67005 5 0043282 \N 67006 5 0090156 \N 67007 5 0032272 \N 67008 5 0072537 \N 67009 5 0002572 \N 67010 5 0071311 \N 67011 5 0060892 \N 67012 5 2000058 \N 67013 5 0090327 \N 67014 5 0034225 \N 67015 5 0002600 \N 67016 5 0000918 \N 67017 5 0043978 \N 67018 5 0010968 \N 67019 5 0018058 \N 67020 5 0046452 \N 67021 5 0035675 \N 67022 5 0009872 \N 67023 5 0042136 \N 67024 5 0051581 \N 67025 5 0051484 \N 67026 5 0010001 \N 67027 5 0007404 \N 67028 5 0043360 \N 67029 5 0006052 \N 67030 5 0018327 \N 67031 5 0042220 \N 67032 88 27958 \N 67033 5 0021991 \N 67034 5 0033468 \N 67035 5 0032911 \N 67036 5 0070713 \N 67037 5 0051054 \N 67038 5 0075064 \N 67039 5 0085034 \N 67040 5 0042536 \N 67041 5 0016113 \N 67042 5 0006155 \N 67043 5 0034414 \N 67044 5 0090178 \N 67045 5 0009403 \N 67046 5 0035699 \N 67047 5 0060268 \N 67048 5 0035682 \N 67049 5 0006636 \N 67050 87 PWY-762 \N 67051 87 PWY-782 \N 67052 5 0000952 \N 67053 5 0032332 \N 67054 5 0006415 \N 67055 5 0006443 \N 67056 5 0006456 \N 67057 5 0019536 \N 67058 5 0010895 \N 67059 5 0039008 \N 67060 116 00001558 \N 67061 5 0003147 \N 67062 5 0010559 \N 67063 5 NEGATIVELY_REGULATES \N 67064 5 POSITIVELY_REGULATES \N 67065 5 REGULATES \N 67066 5 0030331 \N 67067 5 0003992 \N 67068 5 0047318 \N 67069 93 2.6.1.11 \N 67070 129 18052 \N 67071 5 0000039 \N 67072 5 0047931 \N 67073 93 2.7.1.8 \N 67074 87 GLUCOSAMINE-KINASE-RXN \N 67075 5 0016637 \N 67076 5 0050146 \N 67077 93 2.7.1.77 \N 67078 87 NUCLEOSIDE-PHOSPHOTRANSFERASE-RXN \N 67079 5 0000978 \N 67080 5 0015289 \N 67081 3 10839820 \N 67082 5 0046983 \N 67083 5 0015603 \N 67084 5 0050619 \N 67085 93 1.3.7.4 \N 67086 87 1.3.7.4-RXN \N 67087 5 0015257 \N 67088 5 0016041 \N 67089 93 1.4.7.1 \N 67090 5 0018614 \N 67091 130 r0247 \N 67092 5 0004232 \N 67093 93 3.4.24.7 \N 67094 5 0000048 \N 67095 93 2.3.2.12 \N 67096 3 11433365 \N 67097 3 9242921 \N 67098 5 0005087 \N 67099 5 0008192 \N 67100 5 0046508 \N 67101 5 0031267 \N 67102 5 0097023 \N 67103 3 11120740 \N 67104 3 21290439 \N 67105 5 0004535 \N 67106 93 3.1.13.4 \N 67107 5 0015483 \N 67108 5 0004867 \N 67109 5 0047859 \N 67110 93 4.3.1.11 \N 67111 87 DIHYDROXYPHENYLALANINE-AMMONIA-LYASE-RXN \N 67112 5 0030911 \N 67113 5 0016152 \N 67114 5 0018692 \N 67115 93 1.16.1.1 \N 67116 129 23859 \N 67117 5 0001406 \N 67118 5 0003863 \N 67119 93 1.2.4.4 \N 67120 5 0034282 \N 67121 129 25543 \N 67122 5 0030215 \N 67123 3 12001990 \N 67124 5 0005083 \N 67125 5 0008169 \N 67126 5 0070410 \N 67127 3 19114992 \N 67128 5 0004438 \N 67129 5 0016315 \N 67130 93 3.1.3.64 \N 67131 5 0015304 \N 67132 131 2.A.1.1.12 \N 67133 131 2.A.1.1.4 \N 67134 131 2.A.1.1.6 \N 67135 5 0008420 \N 67136 93 3.1.3.16 \N 67137 5 0033190 \N 67138 3 9659400 \N 67139 5 0019900 \N 67140 5 0019784 \N 67141 5 0016016 \N 67142 3 10594055 \N 67143 5 0047479 \N 67144 93 6.3.1.9 \N 67145 87 6.3.1.9-RXN \N 67146 5 0051061 \N 67147 87 ADPREDUCT-RXN \N 67148 5 0033703 \N 67149 93 1.1.1.277 \N 67150 129 22947 \N 67151 5 0018826 \N 67152 93 4.4.1.11 \N 67153 5 0047055 \N 67154 93 1.14.21.4 \N 67155 129 17716 \N 67156 5 0050162 \N 67157 93 1.2.3.4 \N 67158 129 21881 \N 67159 5 0008876 \N 67160 93 1.1.5.2 \N 67161 5 0080073 \N 67162 5 0033992 \N 67163 93 4.2.1.111 \N 67164 5 0051747 \N 67165 3 10050851 \N 67166 5 0016799 \N 67167 5 0042654 \N 67168 5 0004454 \N 67169 93 2.7.1.3 \N 67170 5 0050123 \N 67171 93 1.1.1.233 \N 67172 129 11543 \N 67173 5 0047972 \N 67174 93 3.5.3.17 \N 67175 129 16032 \N 67176 5 0050797 \N 67177 93 2.1.1.148 \N 67178 129 12247 \N 67179 5 0050269 \N 67180 93 1.2.1.68 \N 67181 87 RXN-1241 \N 67182 5 0002172 \N 67183 5 0015636 \N 67184 5 0035439 \N 67185 93 5.5.1.16 \N 67186 5 0050187 \N 67187 93 3.9.1.1 \N 67188 129 12980 \N 67189 5 0004201 \N 67190 93 3.4.22.36 \N 67191 5 0034481 \N 67192 93 2.8.2.17 \N 67193 93 2.8.2.5 \N 67194 5 0050349 \N 67195 93 3.1.1.38 \N 67196 129 22263 \N 67197 5 0043236 \N 67198 5 0000102 \N 67199 5 0000944 \N 67200 5 0008570 \N 67201 93 3.6.4.1 \N 67202 5 2001065 \N 67203 5 0034015 \N 67204 93 5.1.3.22 \N 67205 5 0003676 \N 67206 5 0008747 \N 67207 93 4.1.3.3 \N 67208 129 23299 \N 67209 5 0045437 \N 67210 93 3.2.2.3 \N 67211 129 15580 \N 67212 5 0009004 \N 67213 93 3.4.21.89 \N 67214 5 0008579 \N 67215 5 0005038 \N 67216 5 0047234 \N 67217 93 2.4.1.166 \N 67218 87 2.4.1.166-RXN \N 67219 5 0047017 \N 67220 93 1.1.1.188 \N 67221 87 1.1.1.188-RXN \N 67222 5 0033201 \N 67223 3 17472966 \N 67224 5 0004833 \N 67225 5 0004426 \N 67226 93 1.13.11.11 \N 67227 5 0047483 \N 67228 93 6.3.4.8 \N 67229 129 16488 \N 67230 5 0016804 \N 67231 93 3.4.11.5 \N 67232 5 0001097 \N 67233 3 16858867 \N 67234 5 0008117 \N 67235 5 0016001 \N 67236 93 4.1.2.27 \N 67237 5 0004849 \N 67238 93 2.7.1.48 \N 67239 5 0052728 \N 67240 93 5.3.99.8 \N 67241 5 0033755 \N 67242 93 1.13.11.55 \N 67243 5 0008990 \N 67244 93 2.1.1.52 \N 67245 5 0033937 \N 67246 93 3.2.1.124 \N 67247 5 0047214 \N 67248 93 2.4.1.116 \N 67249 87 2.4.1.116-RXN \N 67250 5 0032358 \N 67251 5 0030944 \N 67252 5 0045205 \N 67253 5 0001128 \N 67254 5 0051433 \N 67255 3 11048732 \N 67256 3 12133724 \N 67257 3 9020082 \N 67258 3 9704409 \N 67259 132 PS01258 \N 67260 5 0030108 \N 67261 3 11929129 \N 67262 3 9368779 \N 67263 5 0018681 \N 67264 103 R05567 \N 67265 5 0008893 \N 67266 93 3.1.7.2 \N 67267 5 0033426 \N 67268 5 0050251 \N 67269 93 5.2.1.7 \N 67270 129 19144 \N 67271 5 0005297 \N 67272 5 0045157 \N 67273 5 0010326 \N 67274 87 RXN-2201 \N 67275 3 17056707 \N 67276 5 0050206 \N 67277 93 2.6.3.1 \N 67278 129 11627 \N 67279 5 0019706 \N 67280 5 0001104 \N 67281 5 0016455 \N 67282 3 10213677 \N 67283 5 0031721 \N 67284 5 0008157 \N 67285 5 0031409 \N 67286 5 0005367 \N 67287 131 2.A.21.4.- \N 67288 5 0015313 \N 67289 131 2.A.1.2.17 \N 67290 5 0030783 \N 67291 93 2.1.1.123 \N 67292 5 0033909 \N 67293 93 3.2.1.44 \N 67294 5 0047516 \N 67295 93 1.1.1.202 \N 67296 87 13-PROPANEDIOL-DEHYDROGENASE-RXN \N 67297 5 0000146 \N 67298 5 0052608 \N 67299 87 RXN-8214 \N 67300 5 0008666 \N 67301 93 2.3.1.117 \N 67302 129 17328 \N 67303 5 0008504 \N 67304 5 0015201 \N 67305 5 0050180 \N 67306 93 3.7.1.4 \N 67307 129 23399 \N 67308 5 0004565 \N 67309 93 3.2.1.23 \N 67310 5 0034278 \N 67311 87 RXN-4882 \N 67312 129 25555 \N 67313 5 0019201 \N 67314 5 0001872 \N 67315 5 0043199 \N 67316 5 0048191 \N 67317 5 0001134 \N 67318 5 0018830 \N 67319 133 e0359 \N 67320 5 0047631 \N 67321 93 3.6.1.13 \N 67322 87 ADP-RIBOSE-PYROPHOSPHATASE-RXN \N 67323 5 0003818 \N 67324 93 3.4.21.45 \N 67325 5 0030156 \N 67326 3 9915832 \N 67327 5 0047956 \N 67328 93 1.1.1.72 \N 67329 87 GLYCEROL-DEHYDROGENASE-NADP+-RXN \N 67330 5 0019209 \N 67331 5 0050176 \N 67332 93 2.3.1.53 \N 67333 129 17804 \N 67334 5 0005204 \N 67335 5 0052686 \N 67336 103 R06368 \N 67337 5 0004369 \N 67338 93 1.1.3.21 \N 67339 129 18372 \N 67340 5 0080095 \N 67341 3 16020547 \N 67342 5 0047883 \N 67343 93 1.4.3.8 \N 67344 87 ETHANOLAMINE-OXIDASE-RXN \N 67345 5 0008717 \N 67346 5 0015533 \N 67347 131 2.A.1.6.6 \N 67348 5 0019982 \N 67349 5 0004815 \N 67350 93 6.1.1.12 \N 67351 5 0031871 \N 67352 5 0035004 \N 67353 3 10209156 \N 67354 3 9255069 \N 67355 5 0008818 \N 67356 87 COBALAMIN5PSYN-RXN \N 67357 5 0047833 \N 67358 93 1.1.99.21 \N 67359 87 D-SORBITOL-DEHYDROGENASE-RXN \N 67360 5 0050607 \N 67361 93 1.2.1.66 \N 67362 87 1.2.1.66-RXN \N 67363 5 0009477 \N 67364 3 1655423 \N 67365 5 0015501 \N 67366 5 0008027 \N 67367 131 2.A.27.1.1 \N 67368 5 0034004 \N 67369 93 4.2.3.22 \N 67370 5 0004020 \N 67371 93 2.7.1.25 \N 67372 5 0015198 \N 67373 5 0004138 \N 67374 93 2.7.1.113 \N 67375 129 19204 \N 67376 5 0005007 \N 67377 5 0004331 \N 67378 5 0004330 \N 67379 93 3.1.3.46 \N 67380 5 0004029 \N 67381 93 1.2.1.3 \N 67382 5 0043522 \N 67383 112 IPR002158 \N 67384 5 0060698 \N 67385 5 0034800 \N 67386 130 r1067 \N 67387 5 0004353 \N 67388 93 1.4.1.3 \N 67389 5 0001530 \N 67390 3 11079463 \N 67391 5 0016852 \N 67392 93 4.99.1.3 \N 67393 5 0005483 \N 67394 3 14570579 \N 67395 3 15556857 \N 67396 5 0015280 \N 67397 5 0019771 \N 67398 5 0022829 \N 67399 5 0018787 \N 67400 93 3.8.1.7 \N 67401 5 0050227 \N 67402 93 1.17.3.1 \N 67403 87 PTERIDINE-OXIDASE-RXN \N 67404 5 0047491 \N 67405 93 4.2.2.11 \N 67406 5 0009009 \N 67407 5 0008096 \N 67408 3 8396141 \N 67409 5 0016512 \N 67410 93 3.4.24.71 \N 67411 5 0004965 \N 67412 134 1276 \N 67413 5 0047251 \N 67414 93 2.4.1.195 \N 67415 87 2.4.1.195-RXN \N 67416 5 0016853 \N 67417 5 0001875 \N 67418 3 14609719 \N 67419 5 0060002 \N 67420 3 10519557 \N 67421 5 0004392 \N 67422 93 1.14.99.3 \N 67423 5 0015276 \N 67424 5 0016813 \N 67425 5 0047586 \N 67426 93 3.6.1.20 \N 67427 87 5-ACYLPHOSPHOADENOSINE-HYDROLASE-RXN \N 67428 5 0030246 \N 67429 5 0008551 \N 67430 5 0008561 \N 67431 93 3.6.3.3 \N 67432 5 0016906 \N 67433 93 2.4.1.173 \N 67434 5 0032132 \N 67435 3 16679453 \N 67436 5 0018556 \N 67437 133 e0032 \N 67438 5 0003930 \N 67439 93 3.6.1.47 \N 67440 5 0015060 \N 67441 5 2001072 \N 67442 5 0032867 \N 67443 3 12724380 \N 67444 3 15184173 \N 67445 5 0015554 \N 67446 5 0050103 \N 67447 93 2.4.1.2 \N 67448 87 DEXTRIN-DEXTRANASE-RXN \N 67449 5 0047663 \N 67450 93 2.3.1.82 \N 67451 129 16452 \N 67452 5 0008558 \N 67453 93 3.6.3.37 \N 67454 5 0032407 \N 67455 5 0016910 \N 67456 5 0051062 \N 67457 87 UDPREDUCT-RXN \N 67458 5 0043995 \N 67459 93 2.3.1.48 \N 67460 5 0033735 \N 67461 93 1.4.1.21 \N 67462 5 0004671 \N 67463 5 0018225 \N 67464 93 2.1.1.100 \N 67465 5 0033873 \N 67466 93 2.8.2.31 \N 67467 129 17000 \N 67468 5 0033200 \N 67469 3 17412958 \N 67470 5 0019808 \N 67471 5 0031841 \N 67472 5 0033460 \N 67473 5 0015295 \N 67474 5 0003826 \N 67475 5 0000994 \N 67476 5 0003976 \N 67477 93 2.7.8.17 \N 67478 5 0015591 \N 67479 5 0016987 \N 67480 5 0018760 \N 67481 93 3.5.5.8 \N 67482 129 21467 \N 67483 5 0008870 \N 67484 93 2.3.1.18 \N 67485 5 0000268 \N 67486 5 0005051 \N 67487 86 0879693568 \N 67488 5 0033788 \N 67489 93 1.17.1.3 \N 67490 5 0042950 \N 67491 5 0018639 \N 67492 133 e0172 \N 67493 5 0004868 \N 67494 5 0001577 \N 67495 3 9786891 \N 67496 5 0001716 \N 67497 93 1.4.3.2 \N 67498 5 0005187 \N 67499 5 0010486 \N 67500 3 17559518 \N 67501 5 0008859 \N 67502 93 3.1.13.1 \N 67503 5 0015186 \N 67504 5 0050564 \N 67505 93 6.3.2.26 \N 67506 129 23199 \N 67507 5 0001017 \N 67508 5 0047243 \N 67509 93 2.4.1.185 \N 67510 87 2.4.1.185-RXN \N 67511 5 0050084 \N 67512 93 3.1.3.22 \N 67513 129 19540 \N 67514 5 0031885 \N 67515 5 0022821 \N 67516 5 0018495 \N 67517 130 r0192 \N 67518 5 0047488 \N 67519 93 4.2.2.7 \N 67520 87 4.2.2.7-RXN \N 67521 5 0003798 \N 67522 5 0030359 \N 67523 5 0015661 \N 67524 5 0047322 \N 67525 93 2.7.11.31 \N 67526 87 2.7.1.109-RXN \N 67527 5 0050300 \N 67528 93 2.7.1.72 \N 67529 129 22271 \N 67530 5 0005377 \N 67531 5 0031994 \N 67532 5 0047806 \N 67533 93 1.12.2.1 \N 67534 87 CYTOCHROME-C3-HYDROGENASE-RXN \N 67535 5 0018699 \N 67536 130 r1007 \N 67537 5 0005227 \N 67538 5 0002056 \N 67539 5 0004516 \N 67540 93 2.4.2.11 \N 67541 129 13396 \N 67542 5 0035275 \N 67543 94 //www.sigmaaldrich.com \N 67544 5 0008827 \N 67545 87 CYT-UBIQUINOL-OXID-RXN \N 67546 5 0001004 \N 67547 5 0001882 \N 67548 5 0032561 \N 67549 5 0042011 \N 67550 5 0034073 \N 67551 88 9493 \N 67552 3 18033581 \N 67553 5 0003886 \N 67554 5 0008326 \N 67555 93 2.1.1.37 \N 67556 5 0017131 \N 67557 3 7954828 \N 67558 5 0033266 \N 67559 5 0005142 \N 67560 5 0008097 \N 67561 5 0008659 \N 67562 93 4.2.1.- \N 67563 5 0004987 \N 67564 134 318 \N 67565 5 0047601 \N 67566 93 2.7.2.12 \N 67567 129 24279 \N 67568 5 0047139 \N 67569 93 1.8.4.1 \N 67570 87 1.8.4.1-RXN \N 67571 5 0031423 \N 67572 3 12915569 \N 67573 5 0016720 \N 67574 93 1.14.99.33 \N 67575 129 23459 \N 67576 5 0047309 \N 67577 93 2.6.1.49 \N 67578 129 15276 \N 67579 5 0047527 \N 67580 93 6.3.2.14 \N 67581 87 1,3-DIHYDROXYBENZOATE--SERINE-LIGASE-RXN \N 67582 5 0001064 \N 67583 5 0004465 \N 67584 93 3.1.1.34 \N 67585 5 0004117 \N 67586 5 0043429 \N 67587 5 0010546 \N 67588 3 11146632 \N 67589 5 0047313 \N 67590 93 2.6.1.60 \N 67591 87 2.6.1.60-RXN \N 67592 5 0045134 \N 67593 93 3.6.1.6 \N 67594 5 0005194 \N 67595 5 0016811 \N 67596 5 0072532 \N 67597 3 19779199 \N 67598 5 0052622 \N 67599 93 2.5.1.27 \N 67600 87 RXN-4303 \N 67601 5 0047740 \N 67602 93 2.6.1.74 \N 67603 129 14556 \N 67604 5 0008307 \N 67605 5 0050169 \N 67606 93 1.13.11.26 \N 67607 87 PEPTIDE-TRYPTOPHAN-23-DIOXYGENASE-RXN \N 67608 5 0009001 \N 67609 93 2.3.1.30 \N 67610 129 24563 \N 67611 5 0047292 \N 67612 93 2.5.1.36 \N 67613 87 2.5.1.36-RXN \N 67614 5 0034883 \N 67615 130 r1347 \N 67616 5 0097109 \N 67617 5 0018577 \N 67618 93 1.13.11.2 \N 67619 5 0015024 \N 67620 93 3.1.6.18 \N 67621 5 0046562 \N 67622 93 1.1.3.4 \N 67623 5 0080116 \N 67624 3 18980649 \N 67625 5 0051733 \N 67626 93 2.7.1.78 \N 67627 5 0010283 \N 67628 3 10066819 \N 67629 3 7592828 \N 67630 5 0005429 \N 67631 5 0004135 \N 67632 93 3.2.1.33 \N 67633 5 0004097 \N 67634 93 1.10.3.1 \N 67635 5 0047166 \N 67636 93 2.3.1.121 \N 67637 87 2.3.1.121-RXN \N 67638 5 0004722 \N 67639 5 0000158 \N 67640 5 0000163 \N 67641 5 0008598 \N 67642 5 0008600 \N 67643 5 0015071 \N 67644 5 0030357 \N 67645 5 0030358 \N 67646 5 0030360 \N 67647 5 0030361 \N 67648 5 0004484 \N 67649 93 2.7.7.50 \N 67650 5 0047345 \N 67651 93 2.7.7.35 \N 67652 129 14532 \N 67653 5 0046030 \N 67654 5 0004952 \N 67655 135 1282 \N 67656 5 0051879 \N 67657 5 0035598 \N 67658 3 20584901 \N 67659 5 0018454 \N 67660 93 1.1.1.36 \N 67661 5 0015120 \N 67662 5 0035529 \N 67663 87 RXN0-4401 \N 67664 3 12399474 \N 67665 5 0015059 \N 67666 5 0052650 \N 67667 129 25036 \N 67668 5 0031829 \N 67669 5 0015598 \N 67670 93 3.6.3.21 \N 67671 5 0047640 \N 67672 93 1.1.1.121 \N 67673 87 ALDOSE-1-DEHYDROGENASE-RXN \N 67674 5 0042021 \N 67675 5 0031820 \N 67676 5 0005097 \N 67677 5 0015104 \N 67678 5 0008464 \N 67679 93 3.4.19.9 \N 67680 5 0018855 \N 67681 130 r0429 \N 67682 5 0015350 \N 67683 5 0043786 \N 67684 93 1.3.1.- \N 67685 136 01615 \N 67686 3 10849007 \N 67687 5 0004003 \N 67688 93 3.6.1.3 \N 67689 5 0043716 \N 67690 93 3.1.3.77 \N 67691 136 01681 \N 67692 87 R83-RXN \N 67693 5 0051908 \N 67694 5 0043805 \N 67695 93 1.2.7.8 \N 67696 5 0004249 \N 67697 5 0042277 \N 67698 5 0005490 \N 67699 5 0032191 \N 67700 3 12398221 \N 67701 5 0031813 \N 67702 5 0050310 \N 67703 93 1.8.2.1 \N 67704 87 SULFITE-DEHYDROGENASE-RXN \N 67705 5 0072518 \N 67706 3 12778124 \N 67707 3 20230755 \N 67708 5 0042408 \N 67709 4 cr \N 67710 3 10700382 \N 67711 5 0047554 \N 67712 93 3.1.1.57 \N 67713 129 10647 \N 67714 5 0019179 \N 67715 93 2.6.1.33 \N 67716 5 0030059 \N 67717 93 1.4.99.4 \N 67718 5 0047560 \N 67719 93 1.1.1.102 \N 67720 129 22643 \N 67721 5 0047502 \N 67722 93 1.1.1.228 \N 67723 129 18332 \N 67724 5 0015151 \N 67725 5 0047193 \N 67726 93 2.3.1.70 \N 67727 87 2.3.1.70-RXN \N 67728 5 0004827 \N 67729 93 6.1.1.15 \N 67730 5 0015924 \N 67731 93 3.2.1.- \N 67732 5 0033831 \N 67733 93 2.4.1.230 \N 67734 129 11179 \N 67735 5 0017043 \N 67736 5 0033894 \N 67737 93 3.1.26.7 \N 67738 5 0043744 \N 67739 136 01448 \N 67740 5 0046569 \N 67741 93 1.2.3.- \N 67742 3 11733005 \N 67743 5 0034814 \N 67744 130 r1138 \N 67745 5 0043214 \N 67746 5 0015149 \N 67747 5 0035715 \N 67748 5 0031867 \N 67749 5 0050248 \N 67750 93 1.13.12.5 \N 67751 87 RENILLA-LUCIFERIN-2-MONOOXYGENASE-RXN \N 67752 5 0008891 \N 67753 93 1.1.3.15 \N 67754 5 0004071 \N 67755 93 6.3.1.1 \N 67756 5 0047438 \N 67757 93 4.1.2.18 \N 67758 87 4.1.2.18-RXN \N 67759 5 0003721 \N 67760 93 2.7.7.49 \N 67761 3 11812242 \N 67762 5 0015019 \N 67763 93 2.3.1.78 \N 67764 5 0047687 \N 67765 93 1.13.11.13 \N 67766 129 21787 \N 67767 5 0015395 \N 67768 5 0015396 \N 67769 5 0015397 \N 67770 3 10353709 \N 67771 3 11749958 \N 67772 3 12446811 \N 67773 5 0070379 \N 67774 3 18431461 \N 67775 5 0004786 \N 67776 5 0004415 \N 67777 93 3.2.1.35 \N 67778 5 0050156 \N 67779 93 2.3.1.127 \N 67780 129 16932 \N 67781 5 0031756 \N 67782 5 0015174 \N 67783 5 0005286 \N 67784 5 0008107 \N 67785 93 2.4.1.69 \N 67786 5 0008796 \N 67787 5 0000907 \N 67788 93 1.14.11.- \N 67789 3 10482536 \N 67790 5 0019120 \N 67791 5 0022839 \N 67792 5 0034789 \N 67793 130 r1042 \N 67794 5 0005108 \N 67795 5 0010313 \N 67796 3 15486102 \N 67797 5 0033940 \N 67798 93 3.2.1.136 \N 67799 5 0030757 \N 67800 93 2.1.1.82 \N 67801 129 16184 \N 67802 5 0033455 \N 67803 5 0018811 \N 67804 87 R266-RXN \N 67805 130 r0191 \N 67806 5 0043861 \N 67807 3 17028272 \N 67808 5 0032794 \N 67809 5 0018746 \N 67810 130 r0535 \N 67811 5 0070016 \N 67812 112 IPR000225 \N 67813 5 0016403 \N 67814 93 3.5.3.18 \N 67815 5 0003873 \N 67816 93 2.7.1.105 \N 67817 129 15656 \N 67818 5 0047070 \N 67819 5 0008669 \N 67820 93 1.13.11.16 \N 67821 87 1.13.11.16-RXN \N 67822 5 0016466 \N 67823 131 3.A.2.3.1 \N 67824 5 0033681 \N 67825 5 0034778 \N 67826 130 r1003 \N 67827 5 0051007 \N 67828 93 5.4.99.17 \N 67829 5 0018127 \N 67830 93 2.4.2.- \N 67831 5 0050241 \N 67832 93 1.5.1.1 \N 67833 87 PYRROLINE-2-CARBOXYLATE-REDUCTASE-RXN \N 67834 5 0018474 \N 67835 130 r0490 \N 67836 5 0072549 \N 67837 5 0050457 \N 67838 93 2.3.3.2 \N 67839 129 16608 \N 67840 5 0033857 \N 67841 93 2.7.4.24 \N 67842 5 0016532 \N 67843 94 //link.springer-ny.com/link/service/journals/00335/papers/0011005/00110409.html \N 67844 3 9295278 \N 67845 5 0044017 \N 67846 5 0072550 \N 67847 5 0008036 \N 67848 5 0031997 \N 67849 4 dl \N 67850 3 15632291 \N 67851 5 0005533 \N 67852 5 0005400 \N 67853 5 0080176 \N 67854 3 20801759 \N 67855 5 0015430 \N 67856 93 3.6.3.20 \N 67857 5 0042929 \N 67858 5 0048605 \N 67859 5 0032089 \N 67860 5 0018458 \N 67861 93 1.1.1.223 \N 67862 129 20863 \N 67863 5 0043798 \N 67864 136 01510 \N 67865 87 GKI-RXN \N 67866 3 14413719 \N 67867 5 0004383 \N 67868 93 4.6.1.2 \N 67869 5 0005261 \N 67870 5 0015281 \N 67871 5 0015338 \N 67872 4 def \N 67873 5 0043863 \N 67874 87 4-HYDROXY-2-KETOPIMELATE-LYSIS-RXN \N 67875 5 0047077 \N 67876 93 1.13.12.7 \N 67877 87 1.13.12.7-RXN \N 67878 5 0010307 \N 67879 3 16377628 \N 67880 5 0034846 \N 67881 130 r1259 \N 67882 5 0005287 \N 67883 5 0047948 \N 67884 93 6.2.1.6 \N 67885 129 14172 \N 67886 5 0001729 \N 67887 93 2.7.1.138 \N 67888 5 0004630 \N 67889 93 3.1.4.4 \N 67890 5 0015248 \N 67891 5 0031628 \N 67892 5 0042296 \N 67893 3 12826404 \N 67894 5 0080102 \N 67895 3 18799661 \N 67896 5 0047091 \N 67897 5 0008739 \N 67898 93 1.14.13.59 \N 67899 129 23231 \N 67900 5 0050342 \N 67901 93 2.1.1.95 \N 67902 87 TOCOPHEROL-O-METHYLTRANSFERASE-RXN \N 67903 5 0047025 \N 67904 93 1.1.1.212 \N 67905 87 1.1.1.212-RXN \N 67906 5 0008254 \N 67907 93 3.1.3.6 \N 67908 5 0003682 \N 67909 5 0003800 \N 67910 5 0043791 \N 67911 136 01321 \N 67912 87 RXN-8100 \N 67913 3 9874228 \N 67914 5 0070215 \N 67915 5 0050023 \N 67916 93 4.2.1.68 \N 67917 129 22775 \N 67918 5 0001088 \N 67919 5 0043731 \N 67920 3 10091591 \N 67921 5 0003840 \N 67922 93 2.3.2.2 \N 67923 5 0047941 \N 67924 93 1.1.1.20 \N 67925 129 18928 \N 67926 5 0047391 \N 67927 93 3.1.4.39 \N 67928 87 3.1.4.39-RXN \N 67929 5 0048495 \N 67930 3 10102268 \N 67931 3 10197527 \N 67932 5 0047059 \N 67933 93 1.1.99.23 \N 67934 5 0030570 \N 67935 93 4.2.2.2 \N 67936 5 0005106 \N 67937 5 0008774 \N 67938 93 1.2.1.10 \N 67939 5 0008566 \N 67940 93 3.6.3.51 \N 67941 5 0016717 \N 67942 5 0050230 \N 67943 93 4.3.2.4 \N 67944 87 PURINE-IMIDAZOLE-RING-CYCLASE-RXN \N 67945 5 0018010 \N 67946 93 2.3.1.96 \N 67947 5 0004655 \N 67948 93 4.2.1.24 \N 67949 129 24067 \N 67950 5 0004960 \N 67951 5 0004799 \N 67952 129 12107 \N 67953 5 0005012 \N 67954 5 0047431 \N 67955 93 4.1.1.51 \N 67956 129 13672 \N 67957 5 0072345 \N 67958 3 19387438 \N 67959 3 19557428 \N 67960 5 0070696 \N 67961 5 0004616 \N 67962 93 1.1.1.44 \N 67963 5 0045521 \N 67964 5 0008524 \N 67965 131 2.A.1.-.- \N 67966 5 0004313 \N 67967 93 2.3.1.38 \N 67968 5 0008455 \N 67969 93 2.4.1.143 \N 67970 5 0052678 \N 67971 129 25551 \N 67972 5 0016746 \N 67973 5 0008415 \N 67974 5 0018707 \N 67975 130 r0493 \N 67976 5 0045512 \N 67977 5 0031386 \N 67978 5 0015665 \N 67979 5 0000249 \N 67980 87 RXN3O-227 \N 67981 5 0004737 \N 67982 93 4.1.1.1 \N 67983 5 0015140 \N 67984 5 0034523 \N 67985 130 r0777 \N 67986 5 0005186 \N 67987 5 0030305 \N 67988 3 10916150 \N 67989 5 0031719 \N 67990 5 0004197 \N 67991 5 0008112 \N 67992 93 2.1.1.1 \N 67993 129 23887 \N 67994 5 0052596 \N 67995 87 AMINEPHEN-RXN \N 67996 5 0005292 \N 67997 5 0030957 \N 67998 3 9094689 \N 67999 5 0003862 \N 68000 93 1.1.1.85 \N 68001 5 0016173 \N 68002 5 0016149 \N 68003 5 0017147 \N 68004 5 0034459 \N 68005 5 0032521 \N 68006 5 0033805 \N 68007 93 2.1.1.157 \N 68008 5 0043851 \N 68009 136 01315 \N 68010 87 RXN-8096 \N 68011 5 0030556 \N 68012 3 12457565 \N 68013 5 0003711 \N 68014 5 0047569 \N 68015 93 2.8.3.6 \N 68016 87 3-OXOADIPATE-COA-TRANSFERASE-RXN \N 68017 5 0008331 \N 68018 5 0071714 \N 68019 5 0004291 \N 68020 93 3.4.21.62 \N 68021 5 0003849 \N 68022 93 2.5.1.54 \N 68023 129 14720 \N 68024 5 0030504 \N 68025 3 11326272 \N 68026 5 0060182 \N 68027 5 0016767 \N 68028 93 2.5.1.32 \N 68029 5 0070674 \N 68030 5 0097001 \N 68031 88 17761 \N 68032 5 0008235 \N 68033 5 0050539 \N 68034 93 3.5.2.16 \N 68035 129 24479 \N 68036 5 0044014 \N 68037 5 0071987 \N 68038 112 IPR017986 \N 68039 5 0019139 \N 68040 5 0046420 \N 68041 93 1.5.99.12 \N 68042 5 0034845 \N 68043 130 r1258 \N 68044 5 0018550 \N 68045 130 r0314 \N 68046 5 0035797 \N 68047 88 30477 \N 68048 3 11053398 \N 68049 3 21244361 \N 68050 5 0005462 \N 68051 5 0005176 \N 68052 5 0031705 \N 68053 5 0016732 \N 68054 5 0016615 \N 68055 5 0047196 \N 68056 93 2.3.1.75 \N 68057 87 2.3.1.75-RXN \N 68058 5 0022818 \N 68059 5 0004773 \N 68060 93 3.1.6.2 \N 68061 5 0071936 \N 68062 5 0045481 \N 68063 93 1.1.1.241 \N 68064 129 11739 \N 68065 5 0000341 \N 68066 5 0031733 \N 68067 5 0047690 \N 68068 93 2.3.2.7 \N 68069 129 11255 \N 68070 5 0047573 \N 68071 93 3.5.1.63 \N 68072 87 4-ACETAMIDOBUTYRATE-DEACETYLASE-RXN \N 68073 5 0047277 \N 68074 93 2.4.1.88 \N 68075 87 2.4.1.88-RXN \N 68076 5 0009980 \N 68077 93 3.4.17.11 \N 68078 87 3.4.17.11-RXN \N 68079 5 0031402 \N 68080 5 0009984 \N 68081 3 12084835 \N 68082 5 0035184 \N 68083 5 0000171 \N 68084 3 17881380 \N 68085 5 0050324 \N 68086 93 2.7.3.4 \N 68087 129 22519 \N 68088 5 0019118 \N 68089 130 r0536 \N 68090 5 0008913 \N 68091 5 0004930 \N 68092 5 0001622 \N 68093 5 0001623 \N 68094 5 0001624 \N 68095 5 0001625 \N 68096 5 0016526 \N 68097 94 //www.iuphar-db.org \N 68098 5 0008950 \N 68099 5 0005223 \N 68100 5 0035447 \N 68101 87 MONOMER-9684 \N 68102 3 12033919 \N 68103 5 0035240 \N 68104 5 0070122 \N 68105 94 //128.240.24.212/cgi-bin/omd?isopeptide+bond \N 68106 5 0030171 \N 68107 86 10615049 \N 68108 5 0034888 \N 68109 130 r1382 \N 68110 5 0031956 \N 68111 93 6.2.1.3 \N 68112 5 0047283 \N 68113 93 2.4.2.32 \N 68114 87 2.4.2.32-RXN \N 68115 5 0004601 \N 68116 5 0016685 \N 68117 5 0016686 \N 68118 5 0016687 \N 68119 5 0016693 \N 68120 93 1.11.1.7 \N 68121 5 0015659 \N 68122 5 0047170 \N 68123 93 2.3.1.131 \N 68124 129 23311 \N 68125 5 0008176 \N 68126 93 2.1.1.33 \N 68127 5 0008807 \N 68128 93 2.7.8.23 \N 68129 5 0001054 \N 68130 5 0000901 \N 68131 5 0015212 \N 68132 5 0022885 \N 68133 5 0047510 \N 68134 93 4.2.1.34 \N 68135 129 13532 \N 68136 5 0047572 \N 68137 93 3.1.3.38 \N 68138 129 12415 \N 68139 5 0050090 \N 68140 93 1.1.1.131 \N 68141 87 MANNURONATE-REDUCTASE-RXN \N 68142 5 0034866 \N 68143 130 r1276 \N 68144 5 0004109 \N 68145 93 1.3.3.3 \N 68146 129 18260 \N 68147 5 0046429 \N 68148 93 1.17.7.1 \N 68149 3 11752431 \N 68150 5 0015495 \N 68151 5 0005331 \N 68152 5 0015329 \N 68153 131 2.A.18.5.1 \N 68154 131 2.A.3.1.4 \N 68155 131 2.A.3.4.2 \N 68156 5 0001854 \N 68157 5 0016171 \N 68158 5 0000997 \N 68159 5 0047591 \N 68160 93 2.8.3.14 \N 68161 129 23499 \N 68162 5 0030165 \N 68163 137 PF00595 \N 68164 5 0050239 \N 68165 93 3.5.4.20 \N 68166 87 PYRITHIAMIN-DEAMINASE-RXN \N 68167 5 0016623 \N 68168 5 0003807 \N 68169 93 3.4.21.34 \N 68170 5 0008224 \N 68171 5 0047446 \N 68172 93 4.1.3.35 \N 68173 129 23871 \N 68174 5 0046547 \N 68175 93 2.1.1.145 \N 68176 129 22203 \N 68177 5 0043136 \N 68178 5 0005430 \N 68179 5 0047250 \N 68180 93 2.4.1.194 \N 68181 129 15156 \N 68182 5 0050431 \N 68183 5 0034907 \N 68184 130 r0723 \N 68185 5 0009012 \N 68186 93 2.7.7.47 \N 68187 129 20248 \N 68188 5 0034189 \N 68189 5 0004904 \N 68190 5 0033941 \N 68191 93 3.2.1.137 \N 68192 5 0051407 \N 68193 5 0018608 \N 68194 130 r0416 \N 68195 5 0046563 \N 68196 87 METHANOL-OXIDASE-RXN \N 68197 5 0032135 \N 68198 5 0001962 \N 68199 3 10854427 \N 68200 5 0043548 \N 68201 5 0016743 \N 68202 5 0005250 \N 68203 3 5575340 \N 68204 5 0004981 \N 68205 135 1271 \N 68206 5 0018586 \N 68207 130 r0647 \N 68208 5 0047772 \N 68209 93 4.2.99.12 \N 68210 129 12339 \N 68211 5 0050379 \N 68212 93 5.1.3.12 \N 68213 129 14680 \N 68214 5 0016917 \N 68215 3 10637650 \N 68216 5 0033842 \N 68217 93 2.4.1.244 \N 68218 5 0043763 \N 68219 5 0030547 \N 68220 5 0034237 \N 68221 5 0032450 \N 68222 87 RXN-2141 \N 68223 5 0046406 \N 68224 93 2.1.1.11 \N 68225 129 17812 \N 68226 5 0043893 \N 68227 5 0050786 \N 68228 5 0000234 \N 68229 93 2.1.1.103 \N 68230 5 0004497 \N 68231 5 0004583 \N 68232 5 0008830 \N 68233 93 5.1.3.13 \N 68234 129 16972 \N 68235 5 0035257 \N 68236 5 0042978 \N 68237 5 0031768 \N 68238 5 0018845 \N 68239 129 27404 \N 68240 5 0033954 \N 68241 93 3.2.1.159 \N 68242 5 0009458 \N 68243 5 0032574 \N 68244 5 0047143 \N 68245 93 1.97.1.1 \N 68246 129 16352 \N 68247 5 0001083 \N 68248 5 0008743 \N 68249 93 1.1.1.103 \N 68250 129 25657 \N 68251 5 0019166 \N 68252 93 1.3.1.38 \N 68253 5 0004645 \N 68254 93 2.4.1.1 \N 68255 5 0022880 \N 68256 5 0018071 \N 68257 5 0018754 \N 68258 3 1991731 \N 68259 5 0045519 \N 68260 5 0031681 \N 68261 5 0048244 \N 68262 93 1.14.11.18 \N 68263 129 16068 \N 68264 5 0004886 \N 68265 3 17132853 \N 68266 5 0050447 \N 68267 93 2.5.1.50 \N 68268 129 17336 \N 68269 5 0000823 \N 68270 87 2.7.1.151-RXN \N 68271 5 0033764 \N 68272 5 0046582 \N 68273 5 0047036 \N 68274 93 1.1.1.247 \N 68275 129 19212 \N 68276 5 0047614 \N 68277 93 5.3.3.7 \N 68278 129 17268 \N 68279 5 2001064 \N 68280 5 0050522 \N 68281 5 0072374 \N 68282 87 CPD-7421 \N 68283 87 CPD1F-118 \N 68284 87 RXN-5962 \N 68285 5 0004717 \N 68286 5 0047389 \N 68287 93 3.1.4.2 \N 68288 87 3.1.4.2-RXN \N 68289 5 0042014 \N 68290 5 0016566 \N 68291 5 0019239 \N 68292 5 0080161 \N 68293 5 0015558 \N 68294 5 0034924 \N 68295 130 r0940 \N 68296 5 0004500 \N 68297 93 1.14.17.1 \N 68298 129 19120 \N 68299 5 0051219 \N 68300 5 0033901 \N 68301 93 3.1.27.8 \N 68302 5 0008144 \N 68303 5 2001082 \N 68304 5 0050052 \N 68305 93 1.14.13.34 \N 68306 129 24123 \N 68307 5 0001565 \N 68308 3 10506570 \N 68309 5 0052594 \N 68310 87 AMACETOXID-RXN \N 68311 5 0016435 \N 68312 5 0050816 \N 68313 5 0047268 \N 68314 93 2.4.1.67 \N 68315 87 2.4.1.67-RXN \N 68316 5 0034573 \N 68317 130 r0898 \N 68318 5 0047235 \N 68319 93 2.4.1.167 \N 68320 87 2.4.1.167-RXN \N 68321 5 0008607 \N 68322 93 2.7.11.19 \N 68323 5 0043904 \N 68324 3 16248620 \N 68325 5 0047884 \N 68326 93 3.6.1.18 \N 68327 87 FAD-PYROPHOSPHATASE-RXN \N 68328 5 0019104 \N 68329 5 0008578 \N 68330 3 11554296 \N 68331 5 0046870 \N 68332 5 0015523 \N 68333 131 2.A.1.2.14 \N 68334 5 0005376 \N 68335 5 0005549 \N 68336 5 0001863 \N 68337 5 0031679 \N 68338 5 0030024 \N 68339 93 1.6.99.6 \N 68340 5 0050313 \N 68341 93 1.13.11.18 \N 68342 87 SULFUR-DIOXYGENASE-RXN \N 68343 5 0016787 \N 68344 5 0015653 \N 68345 131 2.A.15.1.1 \N 68346 5 0050554 \N 68347 93 4.2.3.18 \N 68348 129 13876 \N 68349 5 0005126 \N 68350 5 0022893 \N 68351 5 0015510 \N 68352 5 0031320 \N 68353 5 0035560 \N 68354 93 3.1.1.82 \N 68355 3 16228561 \N 68356 5 0051751 \N 68357 3 15772281 \N 68358 5 0017110 \N 68359 5 0008512 \N 68360 131 2.A.53.-.- \N 68361 5 0070456 \N 68362 5 0033297 \N 68363 5 0008930 \N 68364 93 3.2.2.16 \N 68365 5 0015197 \N 68366 5 0015637 \N 68367 5 0050330 \N 68368 93 3.5.1.65 \N 68369 129 18016 \N 68370 5 0070780 \N 68371 3 12815058 \N 68372 5 0047209 \N 68373 93 2.4.1.111 \N 68374 87 2.4.1.111-RXN \N 68375 5 0048039 \N 68376 5 0005152 \N 68377 5 0034712 \N 68378 5 0005456 \N 68379 5 0070040 \N 68380 3 20007606 \N 68381 3 20184321 \N 68382 3 21368151 \N 68383 3 21415317 \N 68384 3 21527678 \N 68385 5 0042801 \N 68386 5 0047545 \N 68387 93 1.1.99.2 \N 68388 87 2-HYDROXYGLUTARATE-DEHYDROGENASE-RXN \N 68389 5 0047700 \N 68390 93 2.7.1.85 \N 68391 87 BETA-GLUCOSIDE-KINASE-RXN \N 68392 5 0070216 \N 68393 5 0008066 \N 68394 5 0052715 \N 68395 5 0002083 \N 68396 87 RXN-9230 \N 68397 5 0033464 \N 68398 5 0034809 \N 68399 130 r1127 \N 68400 5 0017163 \N 68401 94 //tfib.med.harvard.edu/transcription/basaltx.html \N 68402 5 0001858 \N 68403 5 0004851 \N 68404 93 2.1.1.107 \N 68405 5 0070380 \N 68406 5 0050271 \N 68407 93 4.4.1.6 \N 68408 87 S-ALKYLCYSTEINE-LYASE-RXN \N 68409 5 0005071 \N 68410 5 0046857 \N 68411 5 0071796 \N 68412 3 17525341 \N 68413 3 20351172 \N 68414 5 0008887 \N 68415 93 2.7.1.31 \N 68416 129 23519 \N 68417 5 0051033 \N 68418 5 0004476 \N 68419 93 5.3.1.8 \N 68420 5 0003756 \N 68421 93 5.3.4.1 \N 68422 5 0034953 \N 68423 130 r1002 \N 68424 5 0000156 \N 68425 3 10966457 \N 68426 3 11842140 \N 68427 5 0030567 \N 68428 5 0060703 \N 68429 5 0004057 \N 68430 5 0042172 \N 68431 93 2.3.2.8 \N 68432 5 0001147 \N 68433 3 18391175 \N 68434 5 0042084 \N 68435 5 0046702 \N 68436 3 12413479 \N 68437 5 0016279 \N 68438 3 12054878 \N 68439 5 0034879 \N 68440 130 r1340 \N 68441 5 0004704 \N 68442 3 20685151 \N 68443 5 0018598 \N 68444 130 r0641 \N 68445 5 0004245 \N 68446 93 3.4.24.11 \N 68447 5 0004760 \N 68448 5 0004761 \N 68449 5 0004762 \N 68450 5 0004763 \N 68451 93 2.6.1.51 \N 68452 129 22855 \N 68453 5 0004294 \N 68454 93 3.4.14.10 \N 68455 5 0019798 \N 68456 93 1.14.11.2 \N 68457 93 1.14.11.7 \N 68458 5 0030779 \N 68459 93 2.1.1.119 \N 68460 129 18544 \N 68461 5 0047658 \N 68462 93 3.1.1.43 \N 68463 87 ALPHA-AMINO-ACID-ESTERASE-RXN \N 68464 5 2001079 \N 68465 5 0052611 \N 68466 87 RXN-8025 \N 68467 5 0010294 \N 68468 92 10.1016/j.tetasy.2004.11.062 \N 68469 5 0004018 \N 68470 93 4.3.2.2 \N 68471 5 0005075 \N 68472 5 0019840 \N 68473 5 0031927 \N 68474 5 0001166 \N 68475 3 12865296 \N 68476 5 0050506 \N 68477 93 2.4.1.219 \N 68478 129 19388 \N 68479 5 0047039 \N 68480 93 1.1.1.252 \N 68481 87 1.1.1.252-RXN \N 68482 5 0033776 \N 68483 93 1.14.13.92 \N 68484 129 10127 \N 68485 5 0034782 \N 68486 130 r1031 \N 68487 5 0001027 \N 68488 5 0030778 \N 68489 93 2.1.1.118 \N 68490 129 15376 \N 68491 5 0022867 \N 68492 131 5.A \N 68493 5 0000034 \N 68494 93 3.5.4.2 \N 68495 5 0008199 \N 68496 5 0050337 \N 68497 93 2.8.1.3 \N 68498 87 THIOSULFATE--THIOL-SULFURTRANSFERASE-RXN \N 68499 5 0042971 \N 68500 5 0048187 \N 68501 5 0047823 \N 68502 93 2.3.2.1 \N 68503 87 D-GLUTAMYLTRANSFERASE-RXN \N 68504 5 0034783 \N 68505 130 r1032 \N 68506 5 0047460 \N 68507 93 4.5.1.4 \N 68508 129 11623 \N 68509 5 0050285 \N 68510 93 3.1.1.49 \N 68511 129 10019 \N 68512 5 0016673 \N 68513 5 0016692 \N 68514 93 1.11.1.1 \N 68515 129 18512 \N 68516 5 0016794 \N 68517 5 0015173 \N 68518 5 0008849 \N 68519 3 4565531 \N 68520 5 0015577 \N 68521 5 0015588 \N 68522 5 0033817 \N 68523 93 2.3.1.179 \N 68524 5 0031878 \N 68525 5 0043825 \N 68526 93 2.6.1.81 \N 68527 129 16956 \N 68528 5 0016663 \N 68529 5 0050280 \N 68530 93 1.1.1.143 \N 68531 129 11303 \N 68532 5 0004874 \N 68533 3 1325649 \N 68534 3 7493958 \N 68535 5 0047834 \N 68536 93 1.1.1.122 \N 68537 87 D-THREO-ALDOSE-1-DEHYDROGENASE-RXN \N 68538 5 0043754 \N 68539 93 2.3.1.168 \N 68540 5 0043106 \N 68541 5 0047533 \N 68542 93 1.2.1.26 \N 68543 136 03338 \N 68544 87 25-DIOXOVALERATE-DEHYDROGENASE-RXN \N 68545 5 0047579 \N 68546 93 1.1.3.19 \N 68547 129 15836 \N 68548 5 0015447 \N 68549 5 0050465 \N 68550 93 1.7.1.9 \N 68551 87 1.7.1.9-RXN \N 68552 5 0046624 \N 68553 5 0047063 \N 68554 93 1.10.2.1 \N 68555 87 1.10.2.1-RXN \N 68556 5 0050057 \N 68557 93 2.4.1.63 \N 68558 87 LINAMARIN-SYNTHASE-RXN \N 68559 5 0005138 \N 68560 5 0034084 \N 68561 5 0008860 \N 68562 93 1.18.1.3 \N 68563 5 0030603 \N 68564 93 3.7.1.1 \N 68565 129 24435 \N 68566 5 0015127 \N 68567 5 0008060 \N 68568 5 0033982 \N 68569 93 4.1.1.85 \N 68570 129 14356 \N 68571 5 0004356 \N 68572 93 6.3.1.2 \N 68573 129 16172 \N 68574 5 0043910 \N 68575 136 02803 \N 68576 3 7957247 \N 68577 3 8550473 \N 68578 5 0000007 \N 68579 5 0047679 \N 68580 93 5.1.1.9 \N 68581 87 ARGININE-RACEMASE-RXN \N 68582 5 0047202 \N 68583 93 2.3.1.91 \N 68584 129 12027 \N 68585 5 0097079 \N 68586 5 0047938 \N 68587 93 5.1.3.15 \N 68588 87 GLUCOSE-6-PHOSPHATE-1-EPIMERASE-RXN \N 68589 5 0071161 \N 68590 93 6.3.2.30 \N 68591 5 0032442 \N 68592 3 11030549 \N 68593 3 13129921 \N 68594 5 0008838 \N 68595 93 4.3.1.15 \N 68596 5 0080016 \N 68597 87 RXN-8414 \N 68598 3 12566586 \N 68599 3 9442047 \N 68600 5 0001637 \N 68601 5 0001191 \N 68602 3 9811836 \N 68603 5 0018525 \N 68604 93 1.3.99.20 \N 68605 5 0015068 \N 68606 93 2.1.4.1 \N 68607 5 0050614 \N 68608 93 1.3.1.72 \N 68609 87 1.3.1.72-RXN \N 68610 5 0009883 \N 68611 5 0019151 \N 68612 93 1.1.1.48 \N 68613 5 0004078 \N 68614 93 6.3.4.11 \N 68615 5 0016893 \N 68616 5 0031433 \N 68617 3 10481174 \N 68618 5 0008865 \N 68619 93 2.7.1.4 \N 68620 5 0034870 \N 68621 130 r12979 \N 68622 5 0052738 \N 68623 93 1.2.5 \N 68624 5 0015490 \N 68625 5 0004549 \N 68626 5 0034069 \N 68627 5 0047096 \N 68628 93 1.14.99.12 \N 68629 129 22699 \N 68630 5 0071077 \N 68631 5 0004035 \N 68632 93 3.1.3.1 \N 68633 5 0001072 \N 68634 3 8332211 \N 68635 5 0005267 \N 68636 5 0050018 \N 68637 93 1.4.1.5 \N 68638 87 L-AMINO-ACID-DEHYDROGENASE-RXN \N 68639 5 0050030 \N 68640 93 1.5.99.3 \N 68641 87 L-PIPECOLATE-DEHYDROGENASE-RXN \N 68642 5 0004436 \N 68643 93 4.6.1.13 \N 68644 5 0047715 \N 68645 93 2.7.3.6 \N 68646 129 24011 \N 68647 5 0019875 \N 68648 93 3.5.1.46 \N 68649 5 0015046 \N 68650 93 1.18.1.- \N 68651 5 0009039 \N 68652 93 3.5.1.5 \N 68653 5 0008748 \N 68654 87 RXN0-5101 \N 68655 5 0032566 \N 68656 5 0050594 \N 68657 93 1.14.13.73 \N 68658 129 14136 \N 68659 5 0008943 \N 68660 93 1.2.1.12 \N 68661 93 1.2.1.13 \N 68662 93 1.2.1.9 \N 68663 5 0045545 \N 68664 3 9355727 \N 68665 5 0050011 \N 68666 93 4.2.1.56 \N 68667 87 ITACONYL-COA-HYDRATASE-RXN \N 68668 5 0015253 \N 68669 5 0016846 \N 68670 93 4.4.-.- \N 68671 5 0033926 \N 68672 93 3.2.1.97 \N 68673 87 3.2.1.97-RXN \N 68674 5 0009468 \N 68675 5 0000297 \N 68676 5 0004423 \N 68677 93 3.1.6.13 \N 68678 5 0015224 \N 68679 5 0017136 \N 68680 93 3.5.1.17 \N 68681 93 3.5.1.98 \N 68682 129 24551 \N 68683 5 0070890 \N 68684 3 18094143 \N 68685 5 0008900 \N 68686 5 0005390 \N 68687 93 3.6.3.10 \N 68688 5 0042931 \N 68689 5 0047674 \N 68690 93 1.1.1.114 \N 68691 129 15304 \N 68692 5 0047400 \N 68693 93 3.11.1.2 \N 68694 129 16752 \N 68695 5 0016992 \N 68696 5 0017140 \N 68697 93 2.8.1.8 \N 68698 3 18307109 \N 68699 5 0033439 \N 68700 5 0004179 \N 68701 93 3.4.11.2 \N 68702 5 0015052 \N 68703 135 1274 \N 68704 5 0018741 \N 68705 130 r0602 \N 68706 5 0001642 \N 68707 3 9016303 \N 68708 5 0001591 \N 68709 86 0953351033 \N 68710 5 0003881 \N 68711 93 2.7.8.11 \N 68712 129 11583 \N 68713 5 0047408 \N 68714 93 3.3.2.2 \N 68715 87 3.3.2.2-RXN \N 68716 5 0050219 \N 68717 93 5.3.3.9 \N 68718 129 10463 \N 68719 5 0004092 \N 68720 5 0004093 \N 68721 5 0004094 \N 68722 93 2.3.1.7 \N 68723 129 21139 \N 68724 5 0015308 \N 68725 131 2.A.1.2.1 \N 68726 5 0047746 \N 68727 93 3.1.1.14 \N 68728 87 CHLOROPHYLLASE-RXN \N 68729 5 0005230 \N 68730 5 0034075 \N 68731 3 16774269 \N 68732 3 17474751 \N 68733 5 0018512 \N 68734 93 1.3.1.59 \N 68735 5 0050426 \N 68736 93 3.4.19.2 \N 68737 87 PEPTIDYL-GLYCINAMIDASE-RXN \N 68738 5 0031698 \N 68739 5 0015487 \N 68740 131 2.A.2.1.1 \N 68741 5 0090079 \N 68742 5 0015929 \N 68743 5 0008532 \N 68744 93 2.4.1.149 \N 68745 5 0005507 \N 68746 5 0033405 \N 68747 5 0047695 \N 68748 93 4.1.2.38 \N 68749 129 21463 \N 68750 5 0004251 \N 68751 93 3.4.13.9 \N 68752 5 0015666 \N 68753 5 0050404 \N 68754 93 2.4.2.40 \N 68755 129 14724 \N 68756 5 0016213 \N 68757 93 1.14.19.3 \N 68758 5 0004852 \N 68759 93 4.2.1.75 \N 68760 129 18968 \N 68761 5 0008882 \N 68762 93 2.7.7.42 \N 68763 5 0035643 \N 68764 88 15765 \N 68765 94 //en.wikipedia.org/wiki/L-DOPA \N 68766 3 18828673 \N 68767 5 0008017 \N 68768 5 0015252 \N 68769 5 0035487 \N 68770 5 0008782 \N 68771 93 3.2.2.9 \N 68772 5 0031894 \N 68773 5 0000215 \N 68774 93 2.7.1.160 \N 68775 3 9148937 \N 68776 5 0004560 \N 68777 93 3.2.1.51 \N 68778 5 0015264 \N 68779 5 0015325 \N 68780 131 2.A.1.25.1 \N 68781 5 0052668 \N 68782 87 RXN-11625 \N 68783 5 0050047 \N 68784 93 5.4.3.7 \N 68785 129 10287 \N 68786 5 0016565 \N 68787 5 0008657 \N 68788 5 0060090 \N 68789 5 0001629 \N 68790 5 0033914 \N 68791 93 3.2.1.72 \N 68792 5 0034823 \N 68793 130 r1157 \N 68794 5 0061133 \N 68795 5 0005318 \N 68796 5 0050595 \N 68797 93 1.14.13.74 \N 68798 87 1.14.13.74-RXN \N 68799 5 0019212 \N 68800 5 0043565 \N 68801 5 0033445 \N 68802 5 0047009 \N 68803 93 1.1.1.152 \N 68804 87 1.1.1.152-RXN \N 68805 5 0045164 \N 68806 3 11320551 \N 68807 5 0017188 \N 68808 93 2.3.1.17 \N 68809 129 14168 \N 68810 5 0033757 \N 68811 93 1.1.99.13 \N 68812 5 0005043 \N 68813 5 0047299 \N 68814 93 2.6.1.28 \N 68815 129 13744 \N 68816 5 0033879 \N 68817 93 3.1.1.80 \N 68818 5 0015269 \N 68819 5 0015274 \N 68820 5 0016312 \N 68821 5 0033813 \N 68822 93 2.3.1.175 \N 68823 129 23863 \N 68824 5 0047520 \N 68825 93 3.1.1.63 \N 68826 129 19700 \N 68827 5 0047133 \N 68828 93 1.5.8.1 \N 68829 87 1.5.8.1-RXN \N 68830 5 0004913 \N 68831 5 0050582 \N 68832 93 1.1.3.41 \N 68833 87 1.1.3.41-RXN \N 68834 5 0004597 \N 68835 93 1.14.11.16 \N 68836 5 0000362 \N 68837 5 0050350 \N 68838 93 2.3.1.95 \N 68839 87 TRIHYDROXYSTILBENE-SYNTHASE-RXN \N 68840 5 0045504 \N 68841 5 0034568 \N 68842 130 r0892 \N 68843 5 0004123 \N 68844 5 0016225 \N 68845 129 24918 \N 68846 5 0005090 \N 68847 5 0003708 \N 68848 5 0015648 \N 68849 5 0008704 \N 68850 5 0018843 \N 68851 93 5.3.3.10 \N 68852 5 0010354 \N 68853 3 16989822 \N 68854 5 0042410 \N 68855 93 6.2.1.14 \N 68856 129 14784 \N 68857 5 0004883 \N 68858 5 0070325 \N 68859 5 0033678 \N 68860 5 0047625 \N 68861 93 2.5.1.4 \N 68862 129 21935 \N 68863 5 0052674 \N 68864 129 25547 \N 68865 5 0009492 \N 68866 5 0042610 \N 68867 99 D016827 \N 68868 5 0031013 \N 68869 5 0047998 \N 68870 93 1.14.11.11 \N 68871 129 12632 \N 68872 5 0001139 \N 68873 5 0015405 \N 68874 131 3.A.-.-.- \N 68875 5 0004575 \N 68876 93 3.2.1.48 \N 68877 87 RXN-1461 \N 68878 5 0004189 \N 68879 93 3.4.17.17 \N 68880 5 0004217 \N 68881 93 3.4.22.15 \N 68882 5 0008401 \N 68883 3 19519282 \N 68884 5 0015310 \N 68885 131 2.A.1.2.6 \N 68886 5 0008941 \N 68887 93 1.14.12.17 \N 68888 5 0080146 \N 68889 87 LCYSDESULF-RXN \N 68890 5 0031803 \N 68891 5 0016162 \N 68892 93 3.2.1.91 \N 68893 5 0033974 \N 68894 93 3.6.1.24 \N 68895 5 0050133 \N 68896 93 2.3.1.102 \N 68897 129 22391 \N 68898 5 0023028 \N 68899 5 0050118 \N 68900 93 3.5.1.47 \N 68901 129 20408 \N 68902 5 0019171 \N 68903 87 3-HYDROXYDECANOYL-ACP-DEHYDR-RXN \N 68904 5 0016849 \N 68905 5 0009483 \N 68906 93 1.9.3.1 \N 68907 5 0046714 \N 68908 5 0015366 \N 68909 131 2.A.16.2.1 \N 68910 5 0016274 \N 68911 93 2.1.1.125 \N 68912 93 2.1.1.126 \N 68913 3 12351636 \N 68914 5 0045029 \N 68915 5 0016778 \N 68916 94 //www.chem.qmul.ac.uk/iubmb/enzyme/EC2/intro.html \N 68917 5 0004303 \N 68918 93 1.1.1.62 \N 68919 5 0022870 \N 68920 5 0071855 \N 68921 5 0004697 \N 68922 5 0004701 \N 68923 93 2.7.11.13 \N 68924 5 0047264 \N 68925 93 2.4.1.48 \N 68926 87 2.4.1.48-RXN \N 68927 5 0033919 \N 68928 93 3.2.1.84 \N 68929 5 0015181 \N 68930 5 0005288 \N 68931 5 0034594 \N 68932 5 0005219 \N 68933 5 0047977 \N 68934 93 3.3.2.7 \N 68935 87 HEPOXILIN-EPOXIDE-HYDROLASE-RXN \N 68936 5 0017074 \N 68937 93 3.4.24.14 \N 68938 5 0002020 \N 68939 5 0002151 \N 68940 3 18294969 \N 68941 3 18568163 \N 68942 3 19330720 \N 68943 5 0034256 \N 68944 93 1.1.1.294 \N 68945 87 RXN-7678 \N 68946 5 0034902 \N 68947 130 r1387 \N 68948 5 0046969 \N 68949 5 0016705 \N 68950 5 0030268 \N 68951 5 0018536 \N 68952 93 1.5.99.9 \N 68953 129 16724 \N 68954 5 0047703 \N 68955 93 1.3.1.16 \N 68956 129 23895 \N 68957 5 0016165 \N 68958 93 1.13.11.12 \N 68959 5 0051718 \N 68960 3 15689527 \N 68961 5 0033936 \N 68962 93 3.2.1.121 \N 68963 5 0043168 \N 68964 5 0004756 \N 68965 93 2.7.9.3 \N 68966 129 18740 \N 68967 5 0005570 \N 68968 5 0003950 \N 68969 93 2.4.2.30 \N 68970 5 0016679 \N 68971 5 0034011 \N 68972 93 4.4.1.25 \N 68973 129 13444 \N 68974 5 0004420 \N 68975 93 1.1.1.34 \N 68976 129 15992 \N 68977 5 0051575 \N 68978 3 11251121 \N 68979 3 16120966 \N 68980 5 0019791 \N 68981 5 0008490 \N 68982 5 0008491 \N 68983 5 0051995 \N 68984 5 0030898 \N 68985 5 0043741 \N 68986 136 01447 \N 68987 5 0030622 \N 68988 5 0000342 \N 68989 3 10880518 \N 68990 3 12121975 \N 68991 5 0018446 \N 68992 130 r0717 \N 68993 5 0047182 \N 68994 93 2.3.1.152 \N 68995 87 2.3.1.152-RXN \N 68996 5 0018669 \N 68997 93 1.14.13.24 \N 68998 129 22695 \N 68999 5 0005359 \N 69000 5 0033041 \N 69001 5 0005311 \N 69002 131 2.A.47.1.5 \N 69003 5 0070818 \N 69004 93 1.3.3.4 \N 69005 3 19583219 \N 69006 5 0016658 \N 69007 5 0070080 \N 69008 112 IPR015129 \N 69009 5 0034949 \N 69010 130 r1008 \N 69011 5 0034450 \N 69012 3 10089879 \N 69013 3 17190603 \N 69014 5 0047965 \N 69015 93 2.3.1.142 \N 69016 87 GLYCOPROTEIN-O-FATTY-ACYLTRANSFERASE-RXN \N 69017 5 0015101 \N 69018 5 0009040 \N 69019 93 1.1.1.154 \N 69020 5 0043425 \N 69021 3 9144210 \N 69022 5 0009026 \N 69023 93 1.1.1.58 \N 69024 129 17816 \N 69025 5 0043713 \N 69026 3 16957230 \N 69027 5 0032931 \N 69028 5 0052742 \N 69029 5 0047117 \N 69030 93 1.3.1.39 \N 69031 87 1.3.1.39-RXN \N 69032 5 0018602 \N 69033 130 r0274 \N 69034 5 0019145 \N 69035 93 1.2.1.19 \N 69036 5 0008419 \N 69037 3 7519612 \N 69038 5 0030353 \N 69039 5 0018467 \N 69040 93 1.2.1.46 \N 69041 129 16428 \N 69042 5 0018548 \N 69043 130 r0025 \N 69044 5 0018532 \N 69045 130 r0353 \N 69046 5 0070336 \N 69047 3 15189154 \N 69048 5 0015446 \N 69049 93 3.6.3.16 \N 69050 5 0004819 \N 69051 93 6.1.1.18 \N 69052 5 0047380 \N 69053 93 3.1.2.19 \N 69054 87 3.1.2.19-RXN \N 69055 5 0015411 \N 69056 93 3.6.3.36 \N 69057 5 0072585 \N 69058 87 RXN0-363 \N 69059 3 21235647 \N 69060 5 0034944 \N 69061 130 r0986 \N 69062 5 0047302 \N 69063 93 2.6.1.34 \N 69064 129 18716 \N 69065 5 0052663 \N 69066 87 RXN-7979 \N 69067 5 0047925 \N 69068 93 6.4.1.5 \N 69069 129 17704 \N 69070 5 0052633 \N 69071 93 4.2.1.3 \N 69072 87 ACONITATEHYDR-RXN \N 69073 5 0018791 \N 69074 130 r0398 \N 69075 5 0047969 \N 69076 93 1.2.3.5 \N 69077 129 14840 \N 69078 5 0016299 \N 69079 5 0016934 \N 69080 5 0004891 \N 69081 5 0047793 \N 69082 93 5.5.1.9 \N 69083 129 22803 \N 69084 5 0008694 \N 69085 5 0019167 \N 69086 87 3-OCTAPRENYL-4-OHBENZOATE-DECARBOX-RXN \N 69087 5 0000703 \N 69088 5 0019004 \N 69089 5 0031458 \N 69090 5 0018626 \N 69091 93 1.14.12.13 \N 69092 5 0047228 \N 69093 93 2.4.1.157 \N 69094 87 2.4.1.157-RXN \N 69095 5 0030407 \N 69096 93 2.1.2.4 \N 69097 93 2.1.2.5 \N 69098 5 0015095 \N 69099 5 0008398 \N 69100 93 1.14.13.70 \N 69101 5 0042030 \N 69102 5 0018504 \N 69103 93 1.3.1.19 \N 69104 5 0042285 \N 69105 5 0008441 \N 69106 93 3.1.3.7 \N 69107 5 0016309 \N 69108 93 2.7.1.149 \N 69109 5 0045125 \N 69110 3 12215548 \N 69111 3 18216770 \N 69112 5 0050646 \N 69113 5 0034792 \N 69114 130 r1058 \N 69115 5 0032267 \N 69116 3 14527414 \N 69117 5 0004374 \N 69118 93 1.4.4.2 \N 69119 93 2.1.2.10 \N 69120 5 0047537 \N 69121 93 2.6.1.67 \N 69122 87 2-AMINOHEXANOATE-AMINOTRANSFERASE-RXN \N 69123 5 0008386 \N 69124 93 1.14.15.6 \N 69125 5 0001132 \N 69126 5 0050697 \N 69127 87 TCEREDCHLOR-RXN \N 69128 133 e0271 \N 69129 5 0016866 \N 69130 5 0030884 \N 69131 3 14500461 \N 69132 5 0051108 \N 69133 87 DCARNCOALIG-RXN \N 69134 5 0008677 \N 69135 93 1.1.1.169 \N 69136 129 16236 \N 69137 5 0043738 \N 69138 87 CPLX-7105 \N 69139 5 0033408 \N 69140 5 0043737 \N 69141 93 3.1.21.7 \N 69142 5 0000984 \N 69143 5 0017106 \N 69144 5 0003948 \N 69145 93 3.5.1.26 \N 69146 129 11547 \N 69147 5 0030052 \N 69148 5 0001154 \N 69149 5 0018564 \N 69150 130 r0456 \N 69151 5 0034795 \N 69152 130 r1059 \N 69153 5 0035035 \N 69154 5 0042165 \N 69155 5 0033740 \N 69156 93 1.7.99.8 \N 69157 5 0009500 \N 69158 5 0033134 \N 69159 5 0003955 \N 69160 93 1.6.5.2 \N 69161 5 0033945 \N 69162 93 3.2.1.150 \N 69163 5 0050451 \N 69164 93 1.8.1.14 \N 69165 87 COA-DISULFIDE-REDUCTASE-NADH-RXN \N 69166 5 0003821 \N 69167 5 0034601 \N 69168 5 0003838 \N 69169 93 2.1.1.41 \N 69170 5 0031489 \N 69171 94 //www.mrc-lmb.cam.ac.uk/myosin/Review/Reviewframeset.html \N 69172 5 0051864 \N 69173 3 16362057 \N 69174 5 0034602 \N 69175 5 0050266 \N 69176 93 2.3.1.140 \N 69177 87 ROSMARINATE-SYNTHASE-RXN \N 69178 5 0047914 \N 69179 93 6.3.2.18 \N 69180 87 GAMMA-GLUTAMYLHISTAMINE-SYNTHASE-RXN \N 69181 5 0055106 \N 69182 5 0015609 \N 69183 131 3.A.1.-.- \N 69184 5 0043395 \N 69185 5 0008201 \N 69186 5 0004921 \N 69187 5 0009033 \N 69188 93 1.6.6.9 \N 69189 5 0050294 \N 69190 93 2.8.2.15 \N 69191 87 STEROID-SULFOTRANSFERASE-RXN \N 69192 5 0005034 \N 69193 5 0015528 \N 69194 131 2.A.1.1.9 \N 69195 131 2.A.1.5.1 \N 69196 5 0008547 \N 69197 93 3.6.5.3 \N 69198 87 3.6.1.48-RXN \N 69199 5 0055041 \N 69200 93 1.1.1.163 \N 69201 129 11731 \N 69202 5 0016752 \N 69203 5 0034779 \N 69204 130 r1004 \N 69205 5 0047815 \N 69206 93 3.1.1.30 \N 69207 129 23111 \N 69208 5 0019979 \N 69209 5 0015163 \N 69210 5 0033957 \N 69211 93 3.2.1.162 \N 69212 5 0005117 \N 69213 3 11856529 \N 69214 5 0003851 \N 69215 93 2.4.1.45 \N 69216 5 0047366 \N 69217 93 2.8.2.27 \N 69218 129 17208 \N 69219 5 0005146 \N 69220 5 0052689 \N 69221 93 3.1.1 \N 69222 5 0047158 \N 69223 93 2.3.1.103 \N 69224 129 22667 \N 69225 5 0047018 \N 69226 93 1.1.1.190 \N 69227 129 14876 \N 69228 5 0035514 \N 69229 5 0033887 \N 69230 93 3.1.6.9 \N 69231 129 11447 \N 69232 5 0050560 \N 69233 93 6.1.1.23 \N 69234 87 6.1.1.23-RXN \N 69235 5 0018121 \N 69236 5 0050546 \N 69237 93 4.1.1.80 \N 69238 129 18700 \N 69239 5 0009922 \N 69240 5 0050567 \N 69241 5 0008264 \N 69242 5 0017068 \N 69243 93 6.3.5.7 \N 69244 87 6.3.5.7-RXN \N 69245 5 0016025 \N 69246 5 0015474 \N 69247 131 1.B.12.-.- \N 69248 5 0034834 \N 69249 130 r1177 \N 69250 5 0018505 \N 69251 93 1.3.1.29 \N 69252 5 0047762 \N 69253 93 1.13.11.22 \N 69254 129 22219 \N 69255 5 0033853 \N 69256 93 2.6.1.78 \N 69257 5 0051530 \N 69258 5 0047175 \N 69259 93 2.3.1.141 \N 69260 87 2.3.1.141-RXN \N 69261 5 0015600 \N 69262 131 3.A.1.3.4 \N 69263 5 0019181 \N 69264 3 8017917 \N 69265 5 0047332 \N 69266 93 2.7.1.80 \N 69267 129 23767 \N 69268 5 0009374 \N 69269 5 0004800 \N 69270 93 1.97.1.10 \N 69271 5 0030976 \N 69272 5 0005201 \N 69273 5 0004131 \N 69274 93 3.5.4.1 \N 69275 5 0016697 \N 69276 5 0016698 \N 69277 5 0047776 \N 69278 93 4.1.3.22 \N 69279 129 15548 \N 69280 5 0001790 \N 69281 5 0070010 \N 69282 5 0031761 \N 69283 5 0004559 \N 69284 93 3.2.1.24 \N 69285 5 0031890 \N 69286 5 0033898 \N 69287 93 3.1.27.2 \N 69288 5 0047004 \N 69289 93 1.1.1.136 \N 69290 129 13328 \N 69291 5 0031797 \N 69292 5 0008720 \N 69293 93 1.1.1.28 \N 69294 129 16372 \N 69295 5 0050511 \N 69296 93 2.4.1.227 \N 69297 87 2.4.1.227-RXN \N 69298 5 0008762 \N 69299 93 1.1.1.158 \N 69300 5 0050257 \N 69301 93 2.7.1.42 \N 69302 129 20412 \N 69303 5 0071820 \N 69304 3 11498047 \N 69305 5 0080066 \N 69306 3 19077143 \N 69307 5 0004732 \N 69308 93 1.2.3.8 \N 69309 5 0030769 \N 69310 93 2.1.1.101 \N 69311 129 17272 \N 69312 5 0033716 \N 69313 93 1.1.3.39 \N 69314 5 0060230 \N 69315 3 10727238 \N 69316 5 0004561 \N 69317 93 3.2.1.50 \N 69318 5 0019845 \N 69319 5 0048020 \N 69320 5 0016903 \N 69321 5 0070035 \N 69322 5 0050141 \N 69323 93 1.7.3.1 \N 69324 87 NITROETHANE-OXIDASE-RXN \N 69325 5 0033969 \N 69326 93 3.5.1.94 \N 69327 129 19740 \N 69328 5 0016594 \N 69329 5 0043726 \N 69330 5 0019173 \N 69331 136 01282 \N 69332 5 0070742 \N 69333 137 PF00096 \N 69334 5 0050583 \N 69335 93 1.12.1.3 \N 69336 87 1.12.1.3-RXN \N 69337 5 0043876 \N 69338 87 4.1.2.42-RXN \N 69339 3 9642221 \N 69340 5 0070567 \N 69341 5 0003908 \N 69342 93 2.1.1.63 \N 69343 5 0017017 \N 69344 3 12184814 \N 69345 5 0004781 \N 69346 93 2.7.7.4 \N 69347 5 0017176 \N 69348 93 2.4.1.198 \N 69349 5 0030296 \N 69350 5 0016876 \N 69351 93 6.1.1 \N 69352 5 0018591 \N 69353 130 r1023 \N 69354 5 0050357 \N 69355 93 3.1.1.10 \N 69356 129 23307 \N 69357 5 0001566 \N 69358 5 0071522 \N 69359 87 URUR-RXN \N 69360 3 19935661 \N 69361 3 20038185 \N 69362 5 0047682 \N 69363 93 1.1.3.7 \N 69364 87 ARYL-ALCOHOL-OXIDASE-RXN \N 69365 5 0050735 \N 69366 5 0015421 \N 69367 93 3.6.3.23 \N 69368 5 0005529 \N 69369 5 0051528 \N 69370 5 0018487 \N 69371 130 r0758 \N 69372 5 0008937 \N 69373 5 0034700 \N 69374 5 0030763 \N 69375 93 2.1.1.91 \N 69376 129 10999 \N 69377 5 0005320 \N 69378 5 0015907 \N 69379 5 0047162 \N 69380 93 2.3.1.107 \N 69381 129 24499 \N 69382 5 0031786 \N 69383 5 0050516 \N 69384 93 2.7.1.151 \N 69385 5 0004326 \N 69386 93 6.3.2.17 \N 69387 5 0034865 \N 69388 130 r1271 \N 69389 5 0050577 \N 69390 87 1.1.1.271-RXN \N 69391 5 0018480 \N 69392 93 1.2.1.60 \N 69393 5 0015231 \N 69394 5 0032034 \N 69395 5 0000252 \N 69396 93 1.1.1.170 \N 69397 3 9811880 \N 69398 5 0010177 \N 69399 87 RXN-2202 \N 69400 5 0046558 \N 69401 93 3.2.1.99 \N 69402 5 0043909 \N 69403 136 02799 \N 69404 3 16750290 \N 69405 5 0047753 \N 69406 93 3.1.6.6 \N 69407 129 20823 \N 69408 5 0050458 \N 69409 93 2.3.3.4 \N 69410 129 10367 \N 69411 5 0047043 \N 69412 93 1.1.1.52 \N 69413 129 19588 \N 69414 5 0047122 \N 69415 93 1.3.99.18 \N 69416 129 16700 \N 69417 5 0047988 \N 69418 93 1.1.99.24 \N 69419 87 HYDROXYACID-OXOACID-TRANSHYDROGENASE-RXN \N 69420 5 0034323 \N 69421 5 0008281 \N 69422 5 0004244 \N 69423 5 0010347 \N 69424 3 15550539 \N 69425 3 16595667 \N 69426 5 0046525 \N 69427 93 2.4.1.133 \N 69428 5 0018815 \N 69429 87 RXN-645 \N 69430 130 r0051 \N 69431 5 0033417 \N 69432 5 0030366 \N 69433 3 8514783 \N 69434 5 0030380 \N 69435 5 0048474 \N 69436 5 0047221 \N 69437 93 2.4.1.137 \N 69438 129 14288 \N 69439 5 0050072 \N 69440 93 3.6.1.30 \N 69441 87 M7G5PPPN-PYROPHOSPHATASE-RXN \N 69442 5 0051912 \N 69443 93 1.8.98.1 \N 69444 5 0003850 \N 69445 93 3.1.3.68 \N 69446 5 0043515 \N 69447 5 0071890 \N 69448 88 17544 \N 69449 5 0051880 \N 69450 3 16142245 \N 69451 3 9512530 \N 69452 5 0033766 \N 69453 93 1.14.13.61 \N 69454 129 22083 \N 69455 5 0034534 \N 69456 130 r0795 \N 69457 5 0043886 \N 69458 5 0046993 \N 69459 5 0031693 \N 69460 5 0051377 \N 69461 3 15632136 \N 69462 5 0019829 \N 69463 5 0043830 \N 69464 136 01366 \N 69465 3 2509466 \N 69466 5 0015137 \N 69467 5 0080025 \N 69468 3 18397324 \N 69469 5 0050065 \N 69470 93 2.6.1.71 \N 69471 129 19396 \N 69472 5 0004909 \N 69473 5 0019967 \N 69474 3 15062641 \N 69475 3 18613828 \N 69476 5 0042171 \N 69477 3 16369050 \N 69478 5 0010856 \N 69479 5 0047855 \N 69480 93 1.1.1.160 \N 69481 129 15928 \N 69482 5 0047317 \N 69483 93 2.6.1.65 \N 69484 87 2.6.1.65-RXN \N 69485 5 0016872 \N 69486 5 0030019 \N 69487 93 3.4.21.59 \N 69488 5 0047733 \N 69489 93 4.2.1.45 \N 69490 129 17156 \N 69491 5 0017151 \N 69492 5 0004084 \N 69493 93 2.6.1.42 \N 69494 5 0033452 \N 69495 5 0004343 \N 69496 93 2.3.1.4 \N 69497 129 10295 \N 69498 5 0030169 \N 69499 5 0080106 \N 69500 5 0030585 \N 69501 93 4.1.1.38 \N 69502 129 22359 \N 69503 5 0001077 \N 69504 5 0045153 \N 69505 5 0017021 \N 69506 5 0034910 \N 69507 130 r1442 \N 69508 5 0051507 \N 69509 5 0003867 \N 69510 93 2.6.1.19 \N 69511 5 0070123 \N 69512 3 9759503 \N 69513 5 0018664 \N 69514 93 1.14.13.12 \N 69515 129 18036 \N 69516 5 0008915 \N 69517 93 2.4.1.182 \N 69518 129 22671 \N 69519 5 0031772 \N 69520 5 0015182 \N 69521 5 0047473 \N 69522 93 6.1.1.13 \N 69523 87 6.1.1.13-RXN \N 69524 5 0018671 \N 69525 93 1.14.13.33 \N 69526 5 0004103 \N 69527 93 2.7.1.32 \N 69528 129 12840 \N 69529 5 0052577 \N 69530 5 0050481 \N 69531 93 1.14.16.6 \N 69532 129 21719 \N 69533 5 0033414 \N 69534 5 0031790 \N 69535 5 0047443 \N 69536 93 4.1.3.17 \N 69537 87 4.1.3.17-RXN \N 69538 5 0047199 \N 69539 93 2.3.1.83 \N 69540 129 19288 \N 69541 5 0008261 \N 69542 5 0008962 \N 69543 93 3.1.3.27 \N 69544 5 0047225 \N 69545 93 2.4.1.148 \N 69546 87 2.4.1.148-RXN \N 69547 5 0072544 \N 69548 5 0051398 \N 69549 3 12799365 \N 69550 5 0004664 \N 69551 93 4.2.1.51 \N 69552 5 0002134 \N 69553 5 0050622 \N 69554 93 1.4.99.5 \N 69555 87 1.4.99.5-RXN \N 69556 5 0047843 \N 69557 93 1.1.99.4 \N 69558 129 12371 \N 69559 5 0034348 \N 69560 5 0016682 \N 69561 5 0009474 \N 69562 5 0008973 \N 69563 93 5.4.2.7 \N 69564 5 0050299 \N 69565 93 2.7.1.87 \N 69566 129 18380 \N 69567 5 0008374 \N 69568 5 0050612 \N 69569 93 1.20.99.1 \N 69570 129 18452 \N 69571 5 0033905 \N 69572 93 3.2.1.32 \N 69573 5 0070968 \N 69574 88 18315 \N 69575 5 0034855 \N 69576 130 r1153 \N 69577 5 0070529 \N 69578 5 0008294 \N 69579 93 4.6.1.1 \N 69580 5 0031875 \N 69581 5 0003960 \N 69582 93 1.6.5.5 \N 69583 5 0004898 \N 69584 5 0008084 \N 69585 5 0015410 \N 69586 93 3.6.3.35 \N 69587 5 0004214 \N 69588 93 3.4.14.1 \N 69589 5 0051118 \N 69590 93 3.2.1.59 \N 69591 5 0042500 \N 69592 5 0030374 \N 69593 5 0017075 \N 69594 5 0070095 \N 69595 5 0033726 \N 69596 93 1.2.7.5 \N 69597 5 0018736 \N 69598 130 r0206 \N 69599 5 0019780 \N 69600 5 0052638 \N 69601 87 RXN-11655 \N 69602 5 0033745 \N 69603 93 1.8.4.14 \N 69604 5 0016857 \N 69605 5 0008668 \N 69606 93 2.7.7.58 \N 69607 129 20232 \N 69608 5 0031700 \N 69609 5 0009469 \N 69610 5 0030790 \N 69611 93 2.1.1.136 \N 69612 5 0004637 \N 69613 93 6.3.4.13 \N 69614 129 17456 \N 69615 5 0001603 \N 69616 5 0009671 \N 69617 3 10066586 \N 69618 3 1990981 \N 69619 5 0008735 \N 69620 93 4.2.1.89 \N 69621 129 14580 \N 69622 5 0030519 \N 69623 5 0003912 \N 69624 93 2.7.7.31 \N 69625 5 0022825 \N 69626 5 0046316 \N 69627 93 2.7.1.12 \N 69628 129 19436 \N 69629 5 0008092 \N 69630 5 0008779 \N 69631 93 2.3.1.40 \N 69632 5 0016856 \N 69633 5 0034849 \N 69634 130 r1262 \N 69635 5 0033039 \N 69636 5 0018852 \N 69637 93 5.5.1.11 \N 69638 5 0050106 \N 69639 93 3.1.6.16 \N 69640 129 14224 \N 69641 5 0005274 \N 69642 5 0015206 \N 69643 131 2.A.39.3.1 \N 69644 5 0043015 \N 69645 5 0045551 \N 69646 93 1.1.1.195 \N 69647 5 0008483 \N 69648 5 0046977 \N 69649 3 11133832 \N 69650 5 0016285 \N 69651 93 3.4.11.14 \N 69652 5 0050809 \N 69653 5 0005003 \N 69654 3 9530499 \N 69655 5 0004335 \N 69656 93 2.7.1.6 \N 69657 129 13556 \N 69658 5 0001050 \N 69659 3 20701995 \N 69660 5 0042936 \N 69661 5 0044323 \N 69662 3 11327309 \N 69663 3 19917671 \N 69664 5 0051266 \N 69665 93 4.99.1.4 \N 69666 129 24363 \N 69667 5 0034869 \N 69668 130 r1307 \N 69669 5 0005055 \N 69670 3 2970671 \N 69671 5 0031889 \N 69672 5 0015080 \N 69673 5 0047255 \N 69674 93 2.4.1.205 \N 69675 87 2.4.1.205-RXN \N 69676 5 0001001 \N 69677 3 2088182 \N 69678 5 0008923 \N 69679 93 4.1.1.18 \N 69680 129 22355 \N 69681 5 0001086 \N 69682 5 0046964 \N 69683 5 0015361 \N 69684 131 2.A.47.1.1 \N 69685 5 0016343 \N 69686 5 0031963 \N 69687 3 12511169 \N 69688 5 0019956 \N 69689 5 0016797 \N 69690 5 0031420 \N 69691 5 0016608 \N 69692 5 0019807 \N 69693 93 3.5.1.15 \N 69694 5 0035671 \N 69695 3 17945329 \N 69696 3 19166903 \N 69697 5 0030508 \N 69698 5 0060241 \N 69699 5 0008671 \N 69700 93 2.7.1.58 \N 69701 129 16528 \N 69702 5 0000986 \N 69703 5 0050327 \N 69704 93 1.1.1.63 \N 69705 87 TESTOSTERONE-17-BETA-DEHYDROGENASE-RXN \N 69706 5 0047860 \N 69707 93 1.1.1.96 \N 69708 129 20296 \N 69709 5 0043208 \N 69710 5 0005487 \N 69711 5 0045331 \N 69712 93 1.12.99.2 \N 69713 5 0008276 \N 69714 5 0033701 \N 69715 93 1.1.1.186 \N 69716 5 0004742 \N 69717 93 2.3.1.12 \N 69718 5 0004441 \N 69719 93 3.1.3.57 \N 69720 5 0042808 \N 69721 3 10721722 \N 69722 5 0047686 \N 69723 93 2.8.2.22 \N 69724 87 ARYLSULFATE-SULFOTRANSFERASE-RXN \N 69725 5 0017155 \N 69726 5 0030040 \N 69727 5 0015055 \N 69728 5 0008519 \N 69729 5 0015332 \N 69730 5 0015926 \N 69731 5 0015538 \N 69732 131 2.A.1.12.1 \N 69733 5 0047349 \N 69734 93 2.7.7.40 \N 69735 129 12459 \N 69736 5 0001057 \N 69737 5 0000496 \N 69738 5 0001068 \N 69739 5 0019170 \N 69740 93 1.1.1.78 \N 69741 5 0010489 \N 69742 5 0008890 \N 69743 93 2.3.1.29 \N 69744 129 20739 \N 69745 5 0004113 \N 69746 93 3.1.4.37 \N 69747 5 0015088 \N 69748 131 9.A.12.-.- \N 69749 5 0070260 \N 69750 3 16751265 \N 69751 5 0016831 \N 69752 5 0051399 \N 69753 5 0015339 \N 69754 131 2.A.4.2.1 \N 69755 5 0004111 \N 69756 93 2.7.3.2 \N 69757 129 17160 \N 69758 5 0015368 \N 69759 131 2.A.19.-.- \N 69760 5 0051578 \N 69761 5 0055101 \N 69762 5 0016275 \N 69763 93 2.1.1.124 \N 69764 5 0004118 \N 69765 5 0000827 \N 69766 3 11311242 \N 69767 5 0000403 \N 69768 3 16781730 \N 69769 5 0015378 \N 69770 131 2.A.30.4.- \N 69771 5 0042954 \N 69772 5 0019899 \N 69773 5 0018030 \N 69774 5 0044018 \N 69775 5 0008093 \N 69776 5 0018635 \N 69777 133 e0462 \N 69778 5 0047643 \N 69779 93 2.4.1.33 \N 69780 87 ALGINATE-SYNTHASE-RXN \N 69781 5 0018656 \N 69782 130 r0508 \N 69783 5 0002162 \N 69784 5 0042056 \N 69785 5 0015480 \N 69786 131 1.B.22.-.- \N 69787 5 0018574 \N 69788 133 e0422 \N 69789 5 0047582 \N 69790 93 3.5.1.67 \N 69791 129 14744 \N 69792 5 0008766 \N 69793 93 6.3.2.15 \N 69794 5 0010331 \N 69795 5 0022853 \N 69796 5 0008555 \N 69797 93 3.6.3.11 \N 69798 5 0047147 \N 69799 93 2.1.1.19 \N 69800 129 13696 \N 69801 5 0044212 \N 69802 128 0005836 \N 69803 5 0047667 \N 69804 93 2.7.1.114 \N 69805 87 AMP--THYMIDINE-KINASE-RXN \N 69806 5 0047296 \N 69807 93 2.5.1.44 \N 69808 87 2.5.1.44-RXN \N 69809 5 0033883 \N 69810 93 3.1.3.74 \N 69811 5 0033430 \N 69812 5 0046538 \N 69813 93 5.4.2.1 \N 69814 5 0016833 \N 69815 93 4.1.3 \N 69816 5 0005350 \N 69817 5 0050026 \N 69818 93 1.1.1.185 \N 69819 87 L-GLYCOL-DEHYDROGENASE-RXN \N 69820 5 0018612 \N 69821 130 r0160 \N 69822 5 0008460 \N 69823 93 4.2.1.46 \N 69824 129 17224 \N 69825 5 0032935 \N 69826 5 0050641 \N 69827 93 2.3.1.165 \N 69828 129 12243 \N 69829 5 0043999 \N 69830 5 0015498 \N 69831 131 2.A.21.1.1 \N 69832 5 0043273 \N 69833 5 0004956 \N 69834 5 0016326 \N 69835 5 0046988 \N 69836 3 12511570 \N 69837 5 0050120 \N 69838 93 1.1.1.240 \N 69839 129 23147 \N 69840 5 0016944 \N 69841 5 0047327 \N 69842 93 2.7.1.142 \N 69843 129 21291 \N 69844 5 0018782 \N 69845 130 r0688 \N 69846 5 0050308 \N 69847 93 3.1.3.23 \N 69848 87 SUGAR-PHOSPHATASE-RXN \N 69849 5 0050615 \N 69850 93 1.3.1.73 \N 69851 129 12323 \N 69852 5 0030563 \N 69853 3 11733745 \N 69854 5 0004592 \N 69855 93 6.3.2.1 \N 69856 5 0004312 \N 69857 93 2.3.1.85 \N 69858 5 0016816 \N 69859 5 0042499 \N 69860 3 12077416 \N 69861 5 0050048 \N 69862 93 2.6.1.6 \N 69863 87 LEUCINE-AMINOTRANSFERASE-RXN \N 69864 5 0070628 \N 69865 5 0043766 \N 69866 93 2.5.1.73 \N 69867 136 00235 \N 69868 3 15790858 \N 69869 3 16380427 \N 69870 3 17110438 \N 69871 5 0004676 \N 69872 5 0003972 \N 69873 93 6.5.1.3 \N 69874 5 0047328 \N 69875 93 2.7.1.61 \N 69876 87 2.7.1.61-RXN \N 69877 5 0033799 \N 69878 87 RXN-8451 \N 69879 5 0052590 \N 69880 87 RXN0-5258 \N 69881 5 0022873 \N 69882 5 0004844 \N 69883 3 9224623 \N 69884 5 0019727 \N 69885 93 1.1.1.32 \N 69886 129 13224 \N 69887 5 0001169 \N 69888 5 0047082 \N 69889 93 1.14.13.28 \N 69890 129 15324 \N 69891 5 0004540 \N 69892 5 0008879 \N 69893 93 2.7.7.24 \N 69894 129 15228 \N 69895 5 0043771 \N 69896 136 01870 \N 69897 5 0052682 \N 69898 129 26118 \N 69899 5 0031079 \N 69900 93 3.4.22.28 \N 69901 5 0008822 \N 69902 5 0070224 \N 69903 87 R17-RXN \N 69904 5 0050314 \N 69905 93 2.5.1.23 \N 69906 129 23247 \N 69907 5 0016462 \N 69908 93 3.6.1.- \N 69909 5 0008029 \N 69910 5 0004552 \N 69911 93 1.1.1.73 \N 69912 129 24623 \N 69913 5 0009400 \N 69914 5 0080054 \N 69915 5 0052727 \N 69916 5 0047455 \N 69917 5 0047523 \N 69918 93 4.2.1.98 \N 69919 87 4.2.1.98-RXN \N 69920 5 0001093 \N 69921 5 0030600 \N 69922 93 3.1.1.73 \N 69923 5 0004032 \N 69924 93 1.1.1.21 \N 69925 5 0047953 \N 69926 93 1.1.1.156 \N 69927 129 12756 \N 69928 5 0003917 \N 69929 3 8811192 \N 69930 5 0008268 \N 69931 5 0004137 \N 69932 93 2.7.1.74 \N 69933 5 0010437 \N 69934 3 16459333 \N 69935 5 0015550 \N 69936 5 0034043 \N 69937 3 17641464 \N 69938 5 0043748 \N 69939 136 01733 \N 69940 5 0080078 \N 69941 5 0035375 \N 69942 5 0033164 \N 69943 93 2.4.1.232 \N 69944 3 16878994 \N 69945 5 0003988 \N 69946 93 2.3.1.16 \N 69947 5 0015208 \N 69948 5 0018859 \N 69949 93 6.2.1.27 \N 69950 5 0070280 \N 69951 88 17310 \N 69952 5 0050043 \N 69953 93 5.1.2.1 \N 69954 129 10963 \N 69955 5 0051183 \N 69956 5 0008424 \N 69957 93 2.4.1.68 \N 69958 129 12988 \N 69959 5 0016503 \N 69960 5 0044104 \N 69961 3 16835232 \N 69962 3 17202142 \N 69963 5 0031745 \N 69964 5 0016088 \N 69965 5 0005343 \N 69966 131 2.A.28.1.1 \N 69967 5 0050305 \N 69968 93 1.5.1.22 \N 69969 129 14064 \N 69970 5 0032145 \N 69971 5 0015043 \N 69972 93 1.6.2.6 \N 69973 5 0031249 \N 69974 5 0004837 \N 69975 93 4.1.1.25 \N 69976 5 0050365 \N 69977 93 3.5.1.57 \N 69978 129 11015 \N 69979 5 0008248 \N 69980 5 0030753 \N 69981 5 0030765 \N 69982 93 2.1.1.70 \N 69983 5 0015434 \N 69984 93 3.6.3.46 \N 69985 5 0019702 \N 69986 3 9873020 \N 69987 5 0015244 \N 69988 5 0018829 \N 69989 130 r0513 \N 69990 5 0032296 \N 69991 5 0018632 \N 69992 130 r0226 \N 69993 5 0008784 \N 69994 93 5.1.1.1 \N 69995 129 20252 \N 69996 5 0003877 \N 69997 93 2.7.7.53 \N 69998 5 0015037 \N 69999 87 DISULFOXRED-RXN \N 70000 5 0034892 \N 70001 130 r1389 \N 70002 5 0070005 \N 70003 5 0017168 \N 70004 93 3.5.2.9 \N 70005 129 10351 \N 70006 5 0031957 \N 70007 5 0050127 \N 70008 93 3.5.1.59 \N 70009 129 20060 \N 70010 5 0008500 \N 70011 5 0042031 \N 70012 5 0004209 \N 70013 5 0008713 \N 70014 87 RXN0-5061 \N 70015 5 0031072 \N 70016 5 0004843 \N 70017 86 0120793709 \N 70018 5 0001735 \N 70019 5 0001793 \N 70020 5 0030234 \N 70021 5 0008454 \N 70022 93 2.4.1.145 \N 70023 5 0051372 \N 70024 3 15014165 \N 70025 5 0043905 \N 70026 3 15240874 \N 70027 5 0008111 \N 70028 93 5.1.99.4 \N 70029 5 0003686 \N 70030 5 0008812 \N 70031 93 1.1.99.1 \N 70032 129 17436 \N 70033 5 0031725 \N 70034 5 0019204 \N 70035 5 0005363 \N 70036 5 0015581 \N 70037 5 0034292 \N 70038 3 1406491 \N 70039 5 0070282 \N 70040 5 0000990 \N 70041 5 0005208 \N 70042 5 0008976 \N 70043 93 2.7.4.1 \N 70044 5 0015399 \N 70045 131 3.-.-.-.- \N 70046 5 0018491 \N 70047 93 1.2.7.2 \N 70048 5 0004186 \N 70049 93 3.4.16.5 \N 70050 5 0035175 \N 70051 5 0044021 \N 70052 3 15041176 \N 70053 5 0046332 \N 70054 5 0003979 \N 70055 93 1.1.1.22 \N 70056 129 23599 \N 70057 5 0048028 \N 70058 5 0001032 \N 70059 5 0034909 \N 70060 130 r1441 \N 70061 5 0009461 \N 70062 5 0047095 \N 70063 93 1.14.13.66 \N 70064 129 25172 \N 70065 5 0047541 \N 70066 93 6.2.1.31 \N 70067 129 19272 \N 70068 5 0050284 \N 70069 93 2.4.1.120 \N 70070 87 SINAPATE-1-GLUCOSYLTRANSFERASE-RXN \N 70071 5 0047512 \N 70072 93 1.1.1.76 \N 70073 129 12187 \N 70074 5 0004651 \N 70075 93 3.1.3.33 \N 70076 5 0051920 \N 70077 93 1.11.1.15 \N 70078 5 0047726 \N 70079 93 1.9.99.1 \N 70080 87 IRON--CYTOCHROME-C-REDUCTASE-RXN \N 70081 5 0015271 \N 70082 5 0019969 \N 70083 5 0018685 \N 70084 5 0008393 \N 70085 93 1.14.15.3 \N 70086 5 0035615 \N 70087 3 15728179 \N 70088 5 0001164 \N 70089 5 0016438 \N 70090 93 2.4.1.110 \N 70091 5 0008536 \N 70092 3 12787777 \N 70093 3 14726649 \N 70094 5 0045302 \N 70095 93 3.5.1.24 \N 70096 5 0015642 \N 70097 5 0004045 \N 70098 5 0019850 \N 70099 5 0019851 \N 70100 93 3.1.1.29 \N 70101 5 0016230 \N 70102 5 0035049 \N 70103 5 0050184 \N 70104 93 1.3.1.35 \N 70105 129 12567 \N 70106 5 0004569 \N 70107 93 3.2.1.130 \N 70108 5 0050318 \N 70109 93 3.1.1.20 \N 70110 129 16368 \N 70111 5 0004051 \N 70112 93 1.13.11.34 \N 70113 5 0016670 \N 70114 5 0001034 \N 70115 5 0004572 \N 70116 93 3.2.1.114 \N 70117 5 0030161 \N 70118 5 0018519 \N 70119 93 1.3.1.66 \N 70120 129 18104 \N 70121 5 0031776 \N 70122 5 0008662 \N 70123 93 2.7.1.56 \N 70124 5 0008813 \N 70125 93 4.1.3.40 \N 70126 129 16508 \N 70127 5 0047217 \N 70128 93 2.4.1.125 \N 70129 87 2.4.1.125-RXN \N 70130 5 0047013 \N 70131 93 1.1.1.176 \N 70132 129 14132 \N 70133 5 0004593 \N 70134 93 3.5.1.22 \N 70135 129 12451 \N 70136 5 0047548 \N 70137 93 5.4.99.4 \N 70138 129 13796 \N 70139 5 0034006 \N 70140 93 4.2.3.24 \N 70141 129 18328 \N 70142 5 0033708 \N 70143 93 1.1.1.286 \N 70144 5 0051424 \N 70145 5 0017047 \N 70146 5 0034000 \N 70147 93 4.2.2.20 \N 70148 5 0030787 \N 70149 93 2.1.1.129 \N 70150 129 23251 \N 70151 5 0051430 \N 70152 5 0031743 \N 70153 5 0031802 \N 70154 5 0005544 \N 70155 5 0052671 \N 70156 87 RXN-11629 \N 70157 5 0003806 \N 70158 93 3.4.21.38 \N 70159 5 0004894 \N 70160 5 0047629 \N 70161 93 3.5.4.7 \N 70162 87 ADP-DEAMINASE-RXN \N 70163 5 0034556 \N 70164 130 r0849 \N 70165 5 0000404 \N 70166 5 0042900 \N 70167 5 0016206 \N 70168 93 2.1.1.6 \N 70169 5 0052722 \N 70170 87 RXN-12186 \N 70171 5 0015170 \N 70172 5 0042131 \N 70173 3 197075 \N 70174 5 0042008 \N 70175 5 0005028 \N 70176 5 0010538 \N 70177 3 11546764 \N 70178 5 0019788 \N 70179 5 0016976 \N 70180 5 0019945 \N 70181 5 0042295 \N 70182 5 0050289 \N 70183 93 1.5.99.6 \N 70184 87 SPERMIDINE-DEHYDROGENASE-RXN \N 70185 5 0034648 \N 70186 3 17550896 \N 70187 5 0004295 \N 70188 93 3.4.21.4 \N 70189 5 0005366 \N 70190 131 2.A.1.1.8 \N 70191 5 0034547 \N 70192 130 r0825 \N 70193 5 0031492 \N 70194 5 0033966 \N 70195 93 3.5.1.91 \N 70196 5 0004745 \N 70197 93 1.1.1.105 \N 70198 5 0001013 \N 70199 5 0047635 \N 70200 93 2.6.1.12 \N 70201 87 ALANINE--OXO-ACID-AMINOTRANSFERASE-RXN \N 70202 5 0034875 \N 70203 130 r1321 \N 70204 5 0004632 \N 70205 93 6.3.2.5 \N 70206 5 0003983 \N 70207 93 2.7.7.9 \N 70208 129 19892 \N 70209 5 0048045 \N 70210 93 2.5.1.33 \N 70211 129 22635 \N 70212 5 0045233 \N 70213 5 0009985 \N 70214 5 0047052 \N 70215 93 1.14.21.1 \N 70216 129 13776 \N 70217 5 0003855 \N 70218 93 4.2.1.10 \N 70219 129 21099 \N 70220 5 0005166 \N 70221 5 0043723 \N 70222 5 0017173 \N 70223 87 RXN-10058 \N 70224 3 11889103 \N 70225 5 0004564 \N 70226 93 3.2.1.26 \N 70227 87 RXN-9985 \N 70228 5 0043894 \N 70229 3 15236963 \N 70230 5 0015219 \N 70231 5 0050275 \N 70232 93 2.4.1.128 \N 70233 129 20456 \N 70234 5 0016984 \N 70235 93 4.1.1.39 \N 70236 5 0004625 \N 70237 93 3.1.1.4 \N 70238 5 0045436 \N 70239 3 8837512 \N 70240 5 0043885 \N 70241 93 1.2.7.4 \N 70242 5 0018759 \N 70243 93 3.5.4.27 \N 70244 129 19056 \N 70245 5 0052640 \N 70246 87 RXN-11658 \N 70247 5 0050397 \N 70248 93 1.13.12.8 \N 70249 87 WATASEMIA-LUCIFERIN-2-MONOOXYGENASE-RXN \N 70250 5 0034431 \N 70251 3 10085096 \N 70252 3 9450008 \N 70253 5 0031731 \N 70254 5 0003962 \N 70255 5 0000505 \N 70256 93 2.5.1.48 \N 70257 5 0018774 \N 70258 93 3.7.1.8 \N 70259 5 0001601 \N 70260 3 9315606 \N 70261 5 0031406 \N 70262 5 0031740 \N 70263 5 0001850 \N 70264 5 0004687 \N 70265 93 2.7.11.18 \N 70266 5 0031701 \N 70267 5 0004834 \N 70268 129 10535 \N 70269 5 0050368 \N 70270 93 5.4.3.6 \N 70271 129 15784 \N 70272 5 0008744 \N 70273 93 2.7.1.53 \N 70274 5 0004150 \N 70275 93 4.1.2.25 \N 70276 5 0033870 \N 70277 93 2.8.2.16 \N 70278 5 0005436 \N 70279 5 0050628 \N 70280 93 1.8.1.5 \N 70281 129 16980 \N 70282 5 0030745 \N 70283 5 0016252 \N 70284 5 0004105 \N 70285 93 2.7.7.15 \N 70286 5 0034386 \N 70287 5 0047312 \N 70288 93 2.6.1.58 \N 70289 87 2.6.1.58-RXN \N 70290 5 0046789 \N 70291 3 11511370 \N 70292 5 0033933 \N 70293 93 3.2.1.115 \N 70294 5 0017027 \N 70295 5 0034185 \N 70296 5 0019767 \N 70297 5 0050060 \N 70298 93 1.1.1.192 \N 70299 87 LONG-CHAIN-ALCOHOL-DEHYDROGENASE-RXN \N 70300 5 2001085 \N 70301 5 0046934 \N 70302 93 2.7.1.153 \N 70303 129 21295 \N 70304 5 0003716 \N 70305 5 0008707 \N 70306 93 3.1.3.26 \N 70307 5 0008172 \N 70308 5 0047766 \N 70309 93 4.3.1.13 \N 70310 129 15448 \N 70311 5 0017083 \N 70312 93 2.4.1.152 \N 70313 5 0071991 \N 70314 5 0015317 \N 70315 131 2.A.1.9.- \N 70316 5 0004648 \N 70317 5 0004646 \N 70318 93 2.6.1.52 \N 70319 5 0018695 \N 70320 93 1.17.99.1 \N 70321 5 0019000 \N 70322 3 12444964 \N 70323 3 12928502 \N 70324 3 12941691 \N 70325 5 0033719 \N 70326 93 1.1.99.30 \N 70327 5 0047610 \N 70328 93 3.1.1.55 \N 70329 129 11755 \N 70330 5 0047595 \N 70331 93 1.3.7.1 \N 70332 87 6-HYDROXYNICOTINATE-REDUCTASE-RXN \N 70333 5 0018594 \N 70334 130 r0615 \N 70335 5 0047120 \N 70336 5 0018514 \N 70337 93 1.3.1.53 \N 70338 129 10747 \N 70339 5 0004928 \N 70340 5 0050245 \N 70341 93 3.2.1.66 \N 70342 129 17468 \N 70343 5 0009016 \N 70344 93 2.6.1.17 \N 70345 129 11963 \N 70346 5 0008177 \N 70347 5 0019737 \N 70348 93 1.3.5.1 \N 70349 129 13716 \N 70350 5 0045515 \N 70351 5 0050471 \N 70352 93 2.5.1.53 \N 70353 87 URACILYLALANINE-SYNTHASE-RXN \N 70354 5 0022884 \N 70355 5 0030742 \N 70356 5 0033998 \N 70357 93 4.2.2.18 \N 70358 5 0016915 \N 70359 5 0060175 \N 70360 5 0015108 \N 70361 5 0047376 \N 70362 93 3.1.1.64 \N 70363 87 3.1.1.64-RXN \N 70364 5 0015499 \N 70365 5 0047465 \N 70366 93 5.1.3.9 \N 70367 87 5.1.3.9-RXN \N 70368 5 0008689 \N 70369 93 2.1.1.64 \N 70370 5 0034884 \N 70371 130 r1349 \N 70372 5 0047420 \N 70373 93 3.5.1.81 \N 70374 87 3.5.1.81-RXN \N 70375 5 0047805 \N 70376 93 4.6.1.6 \N 70377 129 14740 \N 70378 5 0030292 \N 70379 5 0042010 \N 70380 5 0003691 \N 70381 5 0005172 \N 70382 5 0047981 \N 70383 93 2.3.1.33 \N 70384 129 24599 \N 70385 5 0034003 \N 70386 93 4.2.3.21 \N 70387 129 10343 \N 70388 5 0004458 \N 70389 93 1.1.2.4 \N 70390 5 0019162 \N 70391 93 2.6.1.31 \N 70392 129 10847 \N 70393 5 0050487 \N 70394 93 2.3.3.15 \N 70395 129 24207 \N 70396 5 2001068 \N 70397 5 0018726 \N 70398 130 r0564 \N 70399 5 0016681 \N 70400 5 0047731 \N 70401 93 1.1.3.14 \N 70402 87 CATECHOL-OXIDASE-DIMERIZING-RXN \N 70403 5 0018839 \N 70404 130 r0163 \N 70405 5 0016823 \N 70406 5 0008691 \N 70407 93 1.1.1.157 \N 70408 5 0031767 \N 70409 5 0047239 \N 70410 93 2.4.1.178 \N 70411 129 15964 \N 70412 5 0015003 \N 70413 5 0050526 \N 70414 93 3.1.1.75 \N 70415 87 3.1.1.75-RXN \N 70416 5 0005262 \N 70417 5 0016646 \N 70418 5 0046923 \N 70419 5 0008148 \N 70420 5 0034570 \N 70421 130 r0894 \N 70422 5 0004901 \N 70423 5 0030525 \N 70424 5 0004791 \N 70425 93 1.8.1.9 \N 70426 129 20348 \N 70427 5 0019904 \N 70428 5 0047888 \N 70429 93 1.11.1.3 \N 70430 129 23963 \N 70431 5 0016406 \N 70432 5 0030729 \N 70433 93 6.2.1.16 \N 70434 129 16120 \N 70435 5 0004493 \N 70436 93 5.1.99.1 \N 70437 129 20556 \N 70438 5 0008754 \N 70439 87 RXN0-5294 \N 70440 5 0015072 \N 70441 93 2.7.1.137 \N 70442 5 0046873 \N 70443 5 0042926 \N 70444 5 0004507 \N 70445 93 1.14.15.4 \N 70446 5 0048019 \N 70447 5 0008970 \N 70448 93 3.1.1.32 \N 70449 5 0050004 \N 70450 93 2.4.1.170 \N 70451 87 ISOFLAVONE-7-O-GLUCOSYLTRANSFERASE-RXN \N 70452 5 0018492 \N 70453 93 1.2.99.2 \N 70454 5 0004643 \N 70455 93 2.1.2.3 \N 70456 5 0034577 \N 70457 130 r0914 \N 70458 5 0005332 \N 70459 131 2.A.22.3.2 \N 70460 5 0042625 \N 70461 5 0001586 \N 70462 3 18571247 \N 70463 5 0030611 \N 70464 5 0034277 \N 70465 93 4.2.3.28 \N 70466 129 25535 \N 70467 5 0005476 \N 70468 3 9032458 \N 70469 5 0046917 \N 70470 93 2.7.8.25 \N 70471 5 0033868 \N 70472 93 2.7.11.9 \N 70473 5 0047392 \N 70474 93 3.1.4.40 \N 70475 87 3.1.4.40-RXN \N 70476 5 0047565 \N 70477 93 1.1.1.59 \N 70478 129 13360 \N 70479 5 0031715 \N 70480 5 0070551 \N 70481 3 15105377 \N 70482 5 0034029 \N 70483 93 6.4.1.7 \N 70484 129 20428 \N 70485 5 0018661 \N 70486 93 1.14.13.6 \N 70487 129 19604 \N 70488 5 0034810 \N 70489 130 r1128 \N 70490 5 0004206 \N 70491 5 0043817 \N 70492 93 4.4.1.19 \N 70493 129 22787 \N 70494 5 0003726 \N 70495 5 0003971 \N 70496 5 0047434 \N 70497 93 4.1.1.74 \N 70498 87 4.1.1.74-RXN \N 70499 5 0004656 \N 70500 5 0016772 \N 70501 5 0015534 \N 70502 131 2.A.1.6.4 \N 70503 5 0008575 \N 70504 93 3.6.4.8 \N 70505 5 0018453 \N 70506 130 r0018 \N 70507 5 0000298 \N 70508 93 3.6.1.10 \N 70509 5 0008436 \N 70510 5 0016808 \N 70511 5 0022835 \N 70512 5 0033019 \N 70513 5 0018767 \N 70514 130 r0399 \N 70515 5 0050536 \N 70516 93 3.5.1.85 \N 70517 129 23955 \N 70518 5 0008320 \N 70519 5 0015562 \N 70520 5 0004962 \N 70521 135 1283 \N 70522 5 0051778 \N 70523 93 1.14.13.79 \N 70524 87 RXN1F-160 \N 70525 5 0070883 \N 70526 3 18951094 \N 70527 5 0033950 \N 70528 93 3.2.1.155 \N 70529 5 0047305 \N 70530 5 0047314 \N 70531 93 2.6.1.40 \N 70532 129 18396 \N 70533 5 0047432 \N 70534 93 4.1.1.64 \N 70535 129 16076 \N 70536 5 0016517 \N 70537 5 0031866 \N 70538 5 0051744 \N 70539 87 RXN1F-72 \N 70540 5 0018619 \N 70541 93 1.14.12.3 \N 70542 129 13816 \N 70543 5 0016750 \N 70544 5 0031852 \N 70545 5 0008026 \N 70546 5 0080044 \N 70547 3 15352060 \N 70548 5 0046810 \N 70549 3 7996163 \N 70550 5 0018810 \N 70551 130 r0164 \N 70552 5 0008907 \N 70553 5 0019140 \N 70554 93 2.7.1.64 \N 70555 5 0004089 \N 70556 93 4.2.1.1 \N 70557 5 0043866 \N 70558 93 1.8.4.10 \N 70559 5 0030627 \N 70560 5 0033459 \N 70561 5 0043812 \N 70562 136 01360 \N 70563 5 0015390 \N 70564 131 2.A.41.2.1 \N 70565 5 0047558 \N 70566 93 4.2.1.65 \N 70567 129 15388 \N 70568 5 0033846 \N 70569 93 2.5.1.63 \N 70570 5 0018113 \N 70571 93 5.1.1.5 \N 70572 5 0043287 \N 70573 5 0005537 \N 70574 88 37684 \N 70575 5 0015415 \N 70576 93 3.6.3.27 \N 70577 5 0004159 \N 70578 93 1.3.1.1 \N 70579 5 0015519 \N 70580 131 2.A.1.1.3 \N 70581 5 0047910 \N 70582 93 1.1.1.120 \N 70583 87 GALACTOSE-1-DEHYDROGENASE-NADP+-RXN \N 70584 5 0050535 \N 70585 93 3.2.1.149 \N 70586 87 3.2.1.149-RXN \N 70587 5 0047060 \N 70588 93 1.1.99.27 \N 70589 129 21007 \N 70590 5 0003943 \N 70591 93 3.1.6.12 \N 70592 5 0004705 \N 70593 5 0045158 \N 70594 5 0005109 \N 70595 114 000001315 \N 70596 5 0050088 \N 70597 93 1.1.1.224 \N 70598 129 14928 \N 70599 5 0004807 \N 70600 93 5.3.1.1 \N 70601 129 18588 \N 70602 5 0003927 \N 70603 93 3.6.5.1 \N 70604 87 3.6.1.46-RXN \N 70605 5 0047782 \N 70606 93 3.2.1.126 \N 70607 87 CONIFERIN-BETA-GLUCOSIDASE-RXN \N 70608 5 0015626 \N 70609 5 0072570 \N 70610 88 16864 \N 70611 3 20088964 \N 70612 5 0008987 \N 70613 87 QUINOLINATE-SYNTHA-RXN \N 70614 5 0047073 \N 70615 93 1.13.11.41 \N 70616 129 24419 \N 70617 5 0005283 \N 70618 5 0005284 \N 70619 5 0005285 \N 70620 5 0009030 \N 70621 93 2.7.4.16 \N 70622 129 15916 \N 70623 5 0003785 \N 70624 5 0033187 \N 70625 3 17412959 \N 70626 5 0046027 \N 70627 93 2.3.1.158 \N 70628 5 0004192 \N 70629 93 3.4.23.5 \N 70630 5 0034819 \N 70631 130 r1150 \N 70632 5 0005181 \N 70633 5 0045032 \N 70634 5 0031862 \N 70635 5 0047384 \N 70636 93 3.1.3.47 \N 70637 87 3.1.3.47-RXN \N 70638 5 0030355 \N 70639 5 0008770 \N 70640 93 3.1.4.14 \N 70641 5 0047944 \N 70642 93 2.7.2.13 \N 70643 129 17220 \N 70644 5 0033751 \N 70645 93 1.13.11.44 \N 70646 5 0043794 \N 70647 136 01432 \N 70648 3 3801411 \N 70649 5 0015299 \N 70650 5 0047810 \N 70651 93 2.6.1.21 \N 70652 87 D-ALANINE-AMINOTRANSFERASE-RXN \N 70653 5 0050346 \N 70654 93 4.2.1.77 \N 70655 129 10323 \N 70656 5 0004692 \N 70657 5 0050505 \N 70658 93 2.4.1.218 \N 70659 129 12563 \N 70660 5 0080039 \N 70661 93 2.4.1.207 \N 70662 4 ask \N 70663 3 1400418 \N 70664 3 1554366 \N 70665 5 0034939 \N 70666 130 r0969 \N 70667 5 0008487 \N 70668 5 0018482 \N 70669 93 1.2.1.62 \N 70670 129 18836 \N 70671 5 0001142 \N 70672 5 0043210 \N 70673 5 0004777 \N 70674 5 0008952 \N 70675 93 1.2.1.24 \N 70676 5 0047046 \N 70677 5 0047984 \N 70678 93 1.1.1.155 \N 70679 93 1.1.1.87 \N 70680 87 1.1.1.87-RXN \N 70681 5 0003804 \N 70682 93 3.4.21.6 \N 70683 3 7354023 \N 70684 5 0034833 \N 70685 130 r1165 \N 70686 5 0017093 \N 70687 5 0034321 \N 70688 3 16361250 \N 70689 5 0033801 \N 70690 93 2.1.1.153 \N 70691 5 0015154 \N 70692 5 0004795 \N 70693 93 4.2.3.1 \N 70694 5 0008327 \N 70695 3 11746232 \N 70696 5 0050235 \N 70697 93 1.1.1.107 \N 70698 129 21339 \N 70699 5 0033556 \N 70700 3 10336995 \N 70701 5 0047524 \N 70702 93 5.1.99.2 \N 70703 87 16-HYDROXYSTEROID-EPIMERASE-RXN \N 70704 5 0001103 \N 70705 5 0047022 \N 70706 93 1.1.1.201 \N 70707 87 1.1.1.201-RXN \N 70708 5 0071968 \N 70709 87 RXN0-5127 \N 70710 5 0045024 \N 70711 3 11735414 \N 70712 5 0015435 \N 70713 5 0008188 \N 70714 5 0005542 \N 70715 5 0060089 \N 70716 5 0070330 \N 70717 5 0030552 \N 70718 5 0008239 \N 70719 5 0052587 \N 70720 93 1.1.1.303 \N 70721 129 22903 \N 70722 5 0017096 \N 70723 5 0017097 \N 70724 93 2.1.1.4 \N 70725 5 0047475 \N 70726 93 6.2.1.30 \N 70727 129 20959 \N 70728 5 0042917 \N 70729 5 0052654 \N 70730 87 BRANCHED-CHAINAMINOTRANSFERLEU-RXN \N 70731 5 0003958 \N 70732 93 1.6.2.4 \N 70733 5 0070677 \N 70734 3 19400805 \N 70735 5 0015142 \N 70736 5 0051400 \N 70737 5 0016248 \N 70738 5 0010576 \N 70739 5 0071532 \N 70740 5 0004285 \N 70741 93 3.4.21.93 \N 70742 5 0031752 \N 70743 5 0009497 \N 70744 5 0030227 \N 70745 5 0019863 \N 70746 5 0033834 \N 70747 93 2.4.1.234 \N 70748 5 0034930 \N 70749 130 r0952 \N 70750 5 0015321 \N 70751 5 0003883 \N 70752 93 6.3.4.2 \N 70753 5 0047089 \N 70754 93 1.14.13.57 \N 70755 129 10159 \N 70756 5 0015662 \N 70757 3 10322420 \N 70758 3 10600683 \N 70759 5 0047990 \N 70760 93 4.1.1.16 \N 70761 129 14076 \N 70762 5 0004929 \N 70763 5 0000285 \N 70764 93 2.7.1.150 \N 70765 129 13612 \N 70766 5 0047852 \N 70767 93 1.16.1.2 \N 70768 87 DIFFERIC-TRANSFERRIN-REDUCTASE-RXN \N 70769 5 0072555 \N 70770 3 17074428 \N 70771 5 0042282 \N 70772 93 1.1.1.88 \N 70773 129 14836 \N 70774 5 0047029 \N 70775 93 1.1.1.222 \N 70776 87 1.1.1.222-RXN \N 70777 5 0043992 \N 70778 5 0008391 \N 70779 5 0046583 \N 70780 5 0033918 \N 70781 93 3.2.1.83 \N 70782 5 0004012 \N 70783 5 0008557 \N 70784 93 3.6.3.1 \N 70785 3 15919184 \N 70786 3 9099684 \N 70787 5 0009975 \N 70788 5 0071208 \N 70789 3 19470752 \N 70790 5 0047186 \N 70791 93 2.3.1.45 \N 70792 87 2.3.1.45-RXN \N 70793 5 0071886 \N 70794 88 100436 \N 70795 3 19057895 \N 70796 5 0018648 \N 70797 93 1.14.13.111 \N 70798 5 0008856 \N 70799 93 3.1.22.5 \N 70800 5 0003709 \N 70801 5 0015543 \N 70802 131 2.A.1.20.2 \N 70803 5 0035851 \N 70804 112 IPR001909 \N 70805 5 0047551 \N 70806 93 1.2.1.23 \N 70807 87 2-OXOALDEHYDE-DEHYDROGENASE-NAD+-RXN \N 70808 5 0034584 \N 70809 5 0043828 \N 70810 136 02609 \N 70811 87 RXN0-2281 \N 70812 5 0008318 \N 70813 5 0008244 \N 70814 5 0008840 \N 70815 93 4.2.1.52 \N 70816 129 14848 \N 70817 5 0048270 \N 70818 93 2.5.1.6 \N 70819 3 10644686 \N 70820 5 0010013 \N 70821 5 0031736 \N 70822 5 0004979 \N 70823 5 0050422 \N 70824 93 3.2.1.105 \N 70825 129 12920 \N 70826 5 0071424 \N 70827 3 19965768 \N 70828 5 0015572 \N 70829 5 0015580 \N 70830 5 0004767 \N 70831 5 0030230 \N 70832 5 0030231 \N 70833 93 3.1.4.12 \N 70834 129 19256 \N 70835 5 0071917 \N 70836 5 0033930 \N 70837 93 3.2.1.103 \N 70838 5 0050460 \N 70839 93 1.7.1.10 \N 70840 87 HYDROXYLAMINE-REDUCTASE-NADH-RXN \N 70841 5 0052734 \N 70842 129 17744 \N 70843 5 0008160 \N 70844 5 0005047 \N 70845 5 0004613 \N 70846 93 4.1.1.32 \N 70847 5 0033230 \N 70848 5 0033435 \N 70849 5 0050662 \N 70850 5 0047675 \N 70851 93 4.2.1.5 \N 70852 129 21839 \N 70853 5 0031844 \N 70854 5 0051740 \N 70855 5 0034827 \N 70856 130 r1171 \N 70857 5 0009931 \N 70858 5 0030698 \N 70859 5 0005503 \N 70860 88 17898 \N 70861 5 0016937 \N 70862 5 0050401 \N 70863 93 4.2.1.82 \N 70864 129 19160 \N 70865 5 0047749 \N 70866 93 1.14.13.15 \N 70867 87 CHOLESTANETRIOL-26-MONOOXYGENASE-RXN \N 70868 5 0004321 \N 70869 93 2.3.1.86 \N 70870 5 0034038 \N 70871 93 2.5.1.46 \N 70872 87 2.5.1.46-RXN \N 70873 5 0031419 \N 70874 5 0018647 \N 70875 133 e0333 \N 70876 5 0016701 \N 70877 5 0080047 \N 70878 3 18463094 \N 70879 5 0008012 \N 70880 5 0003773 \N 70881 5 0032050 \N 70882 5 0052664 \N 70883 5 0050591 \N 70884 93 1.14.13.67 \N 70885 129 20152 \N 70886 5 0018659 \N 70887 93 1.14.13.2 \N 70888 5 0047404 \N 70889 93 3.2.1.56 \N 70890 87 3.2.1.56-RXN \N 70891 5 0008184 \N 70892 87 GLYCOPHOSPHORYL-RXN \N 70893 5 0015997 \N 70894 5 0047707 \N 70895 93 6.2.1.11 \N 70896 87 BIOTIN--COA-LIGASE-RXN \N 70897 5 0018732 \N 70898 130 r0583 \N 70899 5 0043021 \N 70900 5 0022871 \N 70901 5 0052692 \N 70902 87 RXN-11502 \N 70903 5 0003704 \N 70904 5 0004168 \N 70905 93 2.7.1.108 \N 70906 5 0050380 \N 70907 93 3.6.1.27 \N 70908 129 17072 \N 70909 5 0034212 \N 70910 5 0033421 \N 70911 5 0030795 \N 70912 5 0045546 \N 70913 93 2.1.1.141 \N 70914 5 0004443 \N 70915 93 3.1.3.66 \N 70916 5 0030794 \N 70917 93 2.1.1.140 \N 70918 5 0042658 \N 70919 5 0008732 \N 70920 87 LTAA-RXN \N 70921 3 9228760 \N 70922 5 0018423 \N 70923 3 8514774 \N 70924 5 0050389 \N 70925 93 3.1.1.19 \N 70926 87 URONOLACTONASE-RXN \N 70927 5 0051991 \N 70928 87 NACGLCTRANS-RXN \N 70929 5 0047249 \N 70930 93 2.4.1.193 \N 70931 129 14464 \N 70932 5 0004346 \N 70933 93 3.1.3.9 \N 70934 129 16692 \N 70935 5 0045508 \N 70936 5 0050114 \N 70937 93 4.2.1.44 \N 70938 129 14068 \N 70939 5 0004397 \N 70940 93 4.3.1.3 \N 70941 5 0015240 \N 70942 5 0034837 \N 70943 130 r1179 \N 70944 5 0003953 \N 70945 93 3.2.2.5 \N 70946 5 0050136 \N 70947 93 1.6.99.5 \N 70948 87 NADH-DEHYDROGENASE-QUINONE-RXN \N 70949 5 0008966 \N 70950 93 5.4.2.10 \N 70951 129 23427 \N 70952 5 0016676 \N 70953 5 0047797 \N 70954 93 1.3.99.14 \N 70955 129 21783 \N 70956 5 0005093 \N 70957 5 0050194 \N 70958 93 3.11.1.1 \N 70959 129 18908 \N 70960 5 0004712 \N 70961 5 0003997 \N 70962 93 1.3.3.6 \N 70963 5 0016166 \N 70964 94 //www.chem.qmul.ac.uk/iubmb/enzyme/reaction/terp/carot.html \N 70965 5 0016634 \N 70966 5 0033793 \N 70967 93 1.21.3.6 \N 70968 5 0071859 \N 70969 5 0080013 \N 70970 87 RXN-10441 \N 70971 3 18398052 \N 70972 5 0032564 \N 70973 5 0019826 \N 70974 5 0019776 \N 70975 5 0008126 \N 70976 93 3.1.1.6 \N 70977 5 0016415 \N 70978 5 0050681 \N 70979 5 0052582 \N 70980 93 1.14.13.104 \N 70981 129 25661 \N 70982 5 0047908 \N 70983 93 3.1.1.48 \N 70984 87 FUSARININE-C-ORNITHINESTERASE-RXN \N 70985 5 0010429 \N 70986 5 0004579 \N 70987 93 2.4.1.119 \N 70988 5 0033810 \N 70989 93 2.3.1.172 \N 70990 5 0033713 \N 70991 93 1.1.3.17 \N 70992 5 0016723 \N 70993 5 0003923 \N 70994 5 0047897 \N 70995 93 6.3.4.17 \N 70996 129 24331 \N 70997 5 0031807 \N 70998 5 0050997 \N 70999 5 0046422 \N 71000 93 1.10.99.3 \N 71001 5 0033772 \N 71002 93 1.14.13.88 \N 71003 5 0047530 \N 71004 93 1.4.1.12 \N 71005 87 24-DIAMINOPENTANOATE-DEHYDROGENASE-RXN \N 71006 5 0043782 \N 71007 136 02110 \N 71008 87 RXN-8761 \N 71009 5 0047363 \N 71010 93 2.8.2.19 \N 71011 87 2.8.2.19-RXN \N 71012 5 0015292 \N 71013 5 0000309 \N 71014 93 2.7.7.1 \N 71015 5 0015067 \N 71016 5 0008511 \N 71017 131 2.A.30.1.1 \N 71018 5 0043917 \N 71019 136 03024 \N 71020 5 0047994 \N 71021 93 3.1.2.5 \N 71022 129 16308 \N 71023 5 2001073 \N 71024 5 0008324 \N 71025 5 0003870 \N 71026 93 2.3.1.37 \N 71027 129 12924 \N 71028 5 0004912 \N 71029 5 0015592 \N 71030 5 0031822 \N 71031 5 0008509 \N 71032 5 0050392 \N 71033 93 3.2.1.119 \N 71034 129 14044 \N 71035 5 0001617 \N 71036 5 0047720 \N 71037 93 4.99.1.6 \N 71038 129 23159 \N 71039 5 0009488 \N 71040 5 0001186 \N 71041 5 0051721 \N 71042 5 0018560 \N 71043 130 r0581 \N 71044 5 0008499 \N 71045 3 10212226 \N 71046 5 0050152 \N 71047 93 3.5.1.3 \N 71048 87 OMEGA-AMIDASE-RXN \N 71049 5 0023023 \N 71050 5 0070320 \N 71051 5 0019763 \N 71052 5 0016489 \N 71053 5 0048038 \N 71054 5 0017056 \N 71055 5 0004628 \N 71056 5 0043337 \N 71057 5 0005132 \N 71058 5 0000259 \N 71059 5 0047898 \N 71060 93 1.2.2.1 \N 71061 87 FORMATE-DEHYDROGENASE-CYTOCHROME-RXN \N 71062 5 0005156 \N 71063 5 0008458 \N 71064 93 2.3.1.137 \N 71065 129 17180 \N 71066 5 0043621 \N 71067 5 0052658 \N 71068 93 3.1.3.56 \N 71069 129 19800 \N 71070 5 0047714 \N 71071 93 3.1.1.26 \N 71072 87 GALACTOLIPASE-RXN \N 71073 5 0004386 \N 71074 5 0019114 \N 71075 87 CATECHOL-12-DIOXYGENASE-RXN \N 71076 87 CATECHOL-23-DIOXYGENASE-RXN \N 71077 5 0016826 \N 71078 5 0030774 \N 71079 93 2.1.1.111 \N 71080 129 12183 \N 71081 5 0043747 \N 71082 136 01451 \N 71083 5 0030343 \N 71084 87 RXN-9829 \N 71085 5 0030775 \N 71086 93 2.1.1.112 \N 71087 5 0005515 \N 71088 5 0045308 \N 71089 5 0050334 \N 71090 93 3.5.99.2 \N 71091 129 17512 \N 71092 5 0016538 \N 71093 5 0003751 \N 71094 5 0003752 \N 71095 5 0003753 \N 71096 3 7877684 \N 71097 3 9442875 \N 71098 5 0008934 \N 71099 93 3.1.3.25 \N 71100 5 0015566 \N 71101 5 0015555 \N 71102 5 0008010 \N 71103 5 0047622 \N 71104 93 3.2.2.7 \N 71105 87 ADENOSINE-NUCLEOSIDASE-RXN \N 71106 5 0008149 \N 71107 87 PABASYN-CPLX \N 71108 5 0016988 \N 71109 5 0033222 \N 71110 88 18222 \N 71111 5 0043856 \N 71112 3 15576799 \N 71113 5 0001048 \N 71114 5 0050601 \N 71115 93 1.14.99.32 \N 71116 87 1.14.99.32-RXN \N 71117 5 0018700 \N 71118 130 r0719 \N 71119 5 0047411 \N 71120 93 3.5.1.29 \N 71121 87 3.5.1.29-RXN \N 71122 5 0034291 \N 71123 5 0008369 \N 71124 5 0015443 \N 71125 93 3.6.3.15 \N 71126 5 0046817 \N 71127 5 0008195 \N 71128 5 0004606 \N 71129 93 3.1.3.4 \N 71130 5 0043130 \N 71131 5 0015389 \N 71132 131 2.A.41.2.3 \N 71133 5 0004124 \N 71134 93 4.2.99.8 \N 71135 5 0050157 \N 71136 93 5.1.1.12 \N 71137 87 ORNITHINE-RACEMASE-RXN \N 71138 5 0016783 \N 71139 5 0042562 \N 71140 5 0008131 \N 71141 5 0004041 \N 71142 5 0008122 \N 71143 93 1.4.3.21 \N 71144 93 1.4.3.22 \N 71145 93 1.4.3.4 \N 71146 87 RXN-9597 \N 71147 5 0043842 \N 71148 136 00549 \N 71149 3 1577828 \N 71150 3 2033061 \N 71151 3 9195966 \N 71152 5 0005076 \N 71153 5 0015123 \N 71154 5 0008418 \N 71155 3 8910481 \N 71156 5 0030274 \N 71157 137 PF00412 \N 71158 5 0015110 \N 71159 5 0001170 \N 71160 5 0070866 \N 71161 5 0001046 \N 71162 5 0015625 \N 71163 5 0004749 \N 71164 93 2.7.6.1 \N 71165 129 15612 \N 71166 5 0003935 \N 71167 93 3.5.4.25 \N 71168 129 23707 \N 71169 5 0033294 \N 71170 5 0008022 \N 71171 5 0046554 \N 71172 93 1.1.1.82 \N 71173 5 0050173 \N 71174 93 2.7.7.54 \N 71175 129 17192 \N 71176 5 0031926 \N 71177 5 0047934 \N 71178 93 1.1.1.118 \N 71179 87 GLUCOSE-1-DEHYDROGENASE-NAD+-RXN \N 71180 5 0015467 \N 71181 5 0015273 \N 71182 5 0045330 \N 71183 109 KW-0063 \N 71184 5 0051011 \N 71185 5 0004364 \N 71186 93 2.5.1.18 \N 71187 5 0004924 \N 71188 5 0047824 \N 71189 93 1.1.1.15 \N 71190 87 D-IDITOL-2-DEHYDROGENASE-RXN \N 71191 5 0047206 \N 71192 93 2.3.2.10 \N 71193 87 2.3.2.10-RXN \N 71194 5 0018822 \N 71195 93 4.2.1.84 \N 71196 5 0031882 \N 71197 5 0030782 \N 71198 93 2.1.1.122 \N 71199 5 0008845 \N 71200 3 12713806 \N 71201 5 0016667 \N 71202 5 0018521 \N 71203 93 1.3.1.68 \N 71204 129 15660 \N 71205 5 0043758 \N 71206 93 6.2.1.13 \N 71207 5 0042289 \N 71208 5 0030404 \N 71209 5 0001849 \N 71210 5 0016842 \N 71211 93 4.3.-.- \N 71212 5 0010859 \N 71213 5 0042804 \N 71214 5 0043492 \N 71215 5 0045549 \N 71216 93 1.13.11.51 \N 71217 5 0004140 \N 71218 93 2.7.1.24 \N 71219 129 18248 \N 71220 5 0047719 \N 71221 93 1.13.11.17 \N 71222 129 11215 \N 71223 5 0070491 \N 71224 5 0080087 \N 71225 5 0031874 \N 71226 5 0008451 \N 71227 93 3.4.11.9 \N 71228 5 0031219 \N 71229 93 3.2.1.65 \N 71230 5 0004857 \N 71231 5 0001846 \N 71232 5 0052619 \N 71233 87 RXN-8081 \N 71234 5 0016159 \N 71235 93 5.3.3.4 \N 71236 5 0000149 \N 71237 3 12642621 \N 71238 5 0016738 \N 71239 5 0033218 \N 71240 5 0033142 \N 71241 5 0043776 \N 71242 136 02115 \N 71243 87 RXN-8766 \N 71244 5 0003866 \N 71245 93 2.5.1.19 \N 71246 129 21259 \N 71247 5 0004155 \N 71248 93 1.5.1.34 \N 71249 5 0017114 \N 71250 5 0004416 \N 71251 93 3.1.2.6 \N 71252 5 0019992 \N 71253 5 0030375 \N 71254 5 0004830 \N 71255 93 6.1.1.2 \N 71256 5 0004146 \N 71257 93 1.5.1.3 \N 71258 5 0016218 \N 71259 5 0008834 \N 71260 93 2.5.1.31 \N 71261 5 0016881 \N 71262 5 0004558 \N 71263 5 0004562 \N 71264 5 0016982 \N 71265 93 3.2.1.20 \N 71266 5 0033785 \N 71267 87 RXN0-4341 \N 71268 5 0047639 \N 71269 93 1.1.3.13 \N 71270 87 ALCOHOL-OXIDASE-RXN \N 71271 5 0051117 \N 71272 5 0050203 \N 71273 93 6.2.1.8 \N 71274 129 18296 \N 71275 5 0004511 \N 71276 93 1.14.16.2 \N 71277 5 0000946 \N 71278 5 0047651 \N 71279 93 3.8.1.1 \N 71280 129 13768 \N 71281 5 0016499 \N 71282 5 0004241 \N 71283 5 0019155 \N 71284 93 1.1.1.111 \N 71285 5 0042959 \N 71286 5 0016484 \N 71287 3 10749852 \N 71288 5 0004402 \N 71289 5 0004403 \N 71290 5 0004404 \N 71291 5 0004405 \N 71292 5 0004406 \N 71293 5 0043166 \N 71294 5 0046971 \N 71295 5 0033284 \N 71296 5 0050014 \N 71297 93 4.1.2.2 \N 71298 129 20935 \N 71299 5 0048406 \N 71300 5 0005234 \N 71301 5 0042877 \N 71302 5 0042980 \N 71303 5 0008495 \N 71304 87 HEMEOSYN-RXN \N 71305 5 0070025 \N 71306 5 0044197 \N 71307 94 //en.wikipedia.org/wiki/Rel_homology_domain \N 71308 5 0008947 \N 71309 93 3.4.21.87 \N 71310 5 0003695 \N 71311 5 0016017 \N 71312 5 0030412 \N 71313 93 4.3.1.4 \N 71314 129 22739 \N 71315 5 0070990 \N 71316 5 0016905 \N 71317 93 2.7.11.7 \N 71318 5 0034530 \N 71319 130 r0767 \N 71320 5 0047887 \N 71321 93 2.7.4.18 \N 71322 129 21547 \N 71323 5 0034851 \N 71324 130 r1274 \N 71325 5 0052612 \N 71326 87 RXN-8187 \N 71327 5 0031782 \N 71328 5 0008965 \N 71329 93 2.7.3.9 \N 71330 5 0015425 \N 71331 93 3.6.3.22 \N 71332 5 0018650 \N 71333 130 r0225 \N 71334 5 0050573 \N 71335 93 1.1.1.266 \N 71336 129 21903 \N 71337 5 0008311 \N 71338 5 0072587 \N 71339 5 0018628 \N 71340 93 1.14.12.15 \N 71341 129 10315 \N 71342 5 0034896 \N 71343 130 r1400 \N 71344 5 0015093 \N 71345 5 0015494 \N 71346 131 2.A.3.1.3 \N 71347 5 0042085 \N 71348 5 0031856 \N 71349 5 0004587 \N 71350 93 2.6.1.13 \N 71351 5 0034858 \N 71352 130 r1291 \N 71353 5 0004475 \N 71354 93 2.7.7.13 \N 71355 129 15232 \N 71356 5 0042578 \N 71357 5 0032558 \N 71358 5 0005525 \N 71359 5 0047127 \N 71360 93 1.5.1.25 \N 71361 87 1.5.1.25-RXN \N 71362 5 0015103 \N 71363 5 0034918 \N 71364 130 r0930 \N 71365 5 0000499 \N 71366 5 0070008 \N 71367 5 0046905 \N 71368 3 12641468 \N 71369 5 0018581 \N 71370 93 1.13.11.37 \N 71371 5 0005569 \N 71372 5 0043262 \N 71373 93 3.6.1.5 \N 71374 3 1470606 \N 71375 5 0047757 \N 71376 93 5.1.3.19 \N 71377 87 CHONDROITIN-GLUCURONATE-5-EPIMERASE-RXN \N 71378 5 0019108 \N 71379 93 1.2.1.29 \N 71380 5 0034906 \N 71381 130 r0721 \N 71382 5 0033838 \N 71383 93 2.4.1.239 \N 71384 5 0003733 \N 71385 5 0004508 \N 71386 93 1.14.99.9 \N 71387 5 0004878 \N 71388 5 0031697 \N 71389 5 0043956 \N 71390 3 11821399 \N 71391 5 0043808 \N 71392 136 02097 \N 71393 3 15341653 \N 71394 5 0016084 \N 71395 3 12204246 \N 71396 5 0050502 \N 71397 93 2.4.1.215 \N 71398 129 20684 \N 71399 5 0050361 \N 71400 93 1.13.12.3 \N 71401 129 16168 \N 71402 5 0016922 \N 71403 3 7776974 \N 71404 5 0047107 \N 71405 93 1.2.1.54 \N 71406 129 14384 \N 71407 5 0030596 \N 71408 93 3.2.1.40 \N 71409 5 0004170 \N 71410 93 3.6.1.23 \N 71411 5 0017132 \N 71412 3 9856955 \N 71413 5 0047171 \N 71414 93 2.3.1.132 \N 71415 87 2.3.1.132-RXN \N 71416 5 0046997 \N 71417 5 0018498 \N 71418 133 e0308 \N 71419 5 0051374 \N 71420 3 10984498 \N 71421 3 11699871 \N 71422 5 0022841 \N 71423 5 0070001 \N 71424 5 0033900 \N 71425 93 3.1.27.7 \N 71426 5 0042029 \N 71427 93 3.4.24.72 \N 71428 3 7725320 \N 71429 5 0018721 \N 71430 130 r0559 \N 71431 5 0050391 \N 71432 93 1.4.1.8 \N 71433 87 VALINE-DEHYDROGENASE-NADP+-RXN \N 71434 5 0050094 \N 71435 93 2.6.1.73 \N 71436 129 22887 \N 71437 5 0050384 \N 71438 93 2.4.2.16 \N 71439 129 13912 \N 71440 5 0050416 \N 71441 93 3.5.3.13 \N 71442 87 FORMIMINOGLUTAMATE-DEIMINASE-RXN \N 71443 5 0003782 \N 71444 5 0047903 \N 71445 93 1.1.1.124 \N 71446 87 FRUCTOSE-5-DEHYDROGENASE-NADP+-RXN \N 71447 5 0008919 \N 71448 93 2.4.1.58 \N 71449 5 0031459 \N 71450 5 0019848 \N 71451 5 0004682 \N 71452 5 0008604 \N 71453 93 2.7.11.1 \N 71454 5 0019176 \N 71455 87 DIHYDRONEOPTERIN-MONO-P-DEPHOS-RXN \N 71456 5 0015133 \N 71457 5 0016296 \N 71458 93 3.1.2.14 \N 71459 87 RXN-9549 \N 71460 5 0032841 \N 71461 5 0050419 \N 71462 93 4.1.2.11 \N 71463 87 HYDROXYMANDELONITRILE-LYASE-RXN \N 71464 5 0016642 \N 71465 5 0015374 \N 71466 131 2.A.22.2.3 \N 71467 5 0009675 \N 71468 5 0008257 \N 71469 93 2.7.13.2 \N 71470 5 0004942 \N 71471 5 0032843 \N 71472 3 12540833 \N 71473 5 0004450 \N 71474 93 1.1.1.42 \N 71475 5 0016862 \N 71476 5 0070530 \N 71477 5 0000831 \N 71478 3 16429326 \N 71479 5 0015583 \N 71480 5 0016757 \N 71481 5 0016932 \N 71482 5 0033826 \N 71483 93 2.4.1.168 \N 71484 5 0047847 \N 71485 93 2.4.2.23 \N 71486 87 DEOXYURIDINE-PHOSPHORYLASE-RXN \N 71487 5 0050623 \N 71488 93 1.5.1.31 \N 71489 129 21271 \N 71490 5 0016626 \N 71491 5 0003839 \N 71492 93 2.3.2.4 \N 71493 5 0015235 \N 71494 5 0016728 \N 71495 5 0047396 \N 71496 93 4.6.1.14 \N 71497 87 3.1.4.47-RXN \N 71498 5 0034658 \N 71499 5 0031014 \N 71500 5 0047273 \N 71501 5 0047226 \N 71502 93 2.4.1.79 \N 71503 87 2.4.1.79-RXN \N 71504 5 0015464 \N 71505 5 0033749 \N 71506 5 0045462 \N 71507 3 10583973 \N 71508 5 0000900 \N 71509 5 0047802 \N 71510 93 2.6.1.75 \N 71511 129 13488 \N 71512 5 0005468 \N 71513 5 0005453 \N 71514 5 0005454 \N 71515 5 0031432 \N 71516 5 0015314 \N 71517 131 2.A.1.3.1 \N 71518 5 0047336 \N 71519 93 2.7.4.19 \N 71520 129 11399 \N 71521 5 0080107 \N 71522 5 0046571 \N 71523 87 R15-RXN \N 71524 5 0005013 \N 71525 5 0043896 \N 71526 93 3.2.1.70 \N 71527 5 0047928 \N 71528 93 2.4.1.176 \N 71529 87 GIBBERELLIN-BETA-GLUCOSYLTRANSFERASE-RXN \N 71530 5 0051527 \N 71531 5 0005324 \N 71532 5 0004435 \N 71533 93 3.1.4.11 \N 71534 129 23915 \N 71535 5 0004173 \N 71536 93 2.3.1.139 \N 71537 129 15220 \N 71538 5 0034543 \N 71539 130 r0809 \N 71540 5 0032520 \N 71541 5 0097098 \N 71542 3 21699496 \N 71543 5 0034595 \N 71544 5 0044318 \N 71545 3 20149100 \N 71546 5 0004165 \N 71547 5 0008461 \N 71548 93 5.3.3.8 \N 71549 5 0043757 \N 71550 93 6.3.1.10 \N 71551 5 0004660 \N 71552 5 0018223 \N 71553 93 2.5.1.58 \N 71554 3 8621375 \N 71555 5 0034326 \N 71556 5 0001606 \N 71557 5 0016733 \N 71558 93 1.18.6.1 \N 71559 5 0016262 \N 71560 5 0016253 \N 71561 93 2.4.1.94 \N 71562 5 0034957 \N 71563 130 r1495 \N 71564 5 0047960 \N 71565 93 1.4.1.10 \N 71566 87 GLYCINE-DEHYDROGENASE-RXN \N 71567 5 0035243 \N 71568 5 0005191 \N 71569 5 0047871 \N 71570 93 3.1.6.11 \N 71571 129 15520 \N 71572 5 0003920 \N 71573 93 1.7.1.7 \N 71574 129 17188 \N 71575 5 0018621 \N 71576 93 1.14.12.8 \N 71577 129 13940 \N 71578 5 0018796 \N 71579 93 4.1.1.55 \N 71580 5 0009540 \N 71581 93 1.14.13.90 \N 71582 5 0035379 \N 71583 5 0004939 \N 71584 5 0016763 \N 71585 5 0043836 \N 71586 136 01834 \N 71587 87 R127-RXN \N 71588 5 0043871 \N 71589 87 RXN-8162 \N 71590 3 16237033 \N 71591 5 0042169 \N 71592 137 PF00017 \N 71593 5 0050559 \N 71594 93 5.5.1.12 \N 71595 129 24319 \N 71596 5 0019134 \N 71597 93 2.3.1.157 \N 71598 129 13728 \N 71599 5 0009045 \N 71600 93 5.3.1.5 \N 71601 5 0005121 \N 71602 5 0047140 \N 71603 93 1.8.4.3 \N 71604 87 1.8.4.3-RXN \N 71605 5 0019149 \N 71606 93 4.5.1.2 \N 71607 5 0004307 \N 71608 93 2.7.8.1 \N 71609 5 0047416 \N 71610 93 3.5.1.76 \N 71611 87 3.5.1.76-RXN \N 71612 5 0050548 \N 71613 93 4.2.1.101 \N 71614 87 4.2.1.101-RXN \N 71615 5 0034791 \N 71616 130 r1053 \N 71617 5 0033404 \N 71618 5 0004413 \N 71619 93 2.7.1.39 \N 71620 129 13988 \N 71621 5 0008413 \N 71622 3 15878881 \N 71623 5 0097016 \N 71624 3 15241471 \N 71625 3 17237226 \N 71626 132 PDOC51022 \N 71627 5 0017042 \N 71628 93 3.2.1.62 \N 71629 5 0050323 \N 71630 93 1.4.99.2 \N 71631 129 18712 \N 71632 5 0008242 \N 71633 93 3.4.19.- \N 71634 5 0044183 \N 71635 5 0034805 \N 71636 130 r1121 \N 71637 5 0050069 \N 71638 93 1.4.1.15 \N 71639 87 LYSINE-DEHYDROGENASE-RXN \N 71640 5 0005281 \N 71641 5 0003681 \N 71642 3 12627977 \N 71643 5 0015478 \N 71644 5 0018717 \N 71645 130 r0511 \N 71646 5 0071207 \N 71647 5 0048184 \N 71648 5 0004725 \N 71649 93 3.1.3.48 \N 71650 5 0004708 \N 71651 5 0050693 \N 71652 3 9682036 \N 71653 5 0047921 \N 71654 93 2.3.1.59 \N 71655 129 24519 \N 71656 5 0008673 \N 71657 93 2.7.1.45 \N 71658 129 14800 \N 71659 5 0005479 \N 71660 5 0050410 \N 71661 93 4.1.1.56 \N 71662 129 13388 \N 71663 5 0008759 \N 71664 3 10026271 \N 71665 5 0015515 \N 71666 131 2.A.47.3.2 \N 71667 5 0047154 \N 71668 93 2.1.3.1 \N 71669 87 2.1.3.1-RXN \N 71670 5 0050215 \N 71671 93 4.2.1.28 \N 71672 129 14572 \N 71673 5 0016426 \N 71674 5 0080030 \N 71675 87 RXN-10711 \N 71676 3 18467465 \N 71677 5 0016880 \N 71678 5 0017070 \N 71679 5 0044024 \N 71680 5 0046527 \N 71681 5 0015138 \N 71682 5 0008981 \N 71683 5 0003938 \N 71684 93 1.1.1.205 \N 71685 5 0047819 \N 71686 93 1.4.3.15 \N 71687 87 D-GLUTAMATED-ASPARTATE-OXIDASE-RXN \N 71688 5 0055055 \N 71689 5 0052603 \N 71690 87 RXN-8834 \N 71691 5 0004523 \N 71692 5 0004524 \N 71693 93 3.1.26.4 \N 71694 5 0034947 \N 71695 130 r0321 \N 71696 5 0047167 \N 71697 93 2.3.1.125 \N 71698 87 2.3.1.125-RXN \N 71699 5 0050270 \N 71700 93 3.5.4.28 \N 71701 129 20719 \N 71702 5 0004460 \N 71703 93 1.1.2.3 \N 71704 5 0005294 \N 71705 5 0030559 \N 71706 5 0018543 \N 71707 130 r0464 \N 71708 5 0016652 \N 71709 5 0034798 \N 71710 130 r1074 \N 71711 5 0047777 \N 71712 93 4.1.3.25 \N 71713 129 22615 \N 71714 5 0047876 \N 71715 93 3.2.1.123 \N 71716 87 ENDOGLYCOSYLCERAMIDASE-RXN \N 71717 5 0004074 \N 71718 93 1.3.1.24 \N 71719 5 0005520 \N 71720 5 0008725 \N 71721 93 3.2.2.20 \N 71722 3 10872450 \N 71723 5 0018463 \N 71724 93 1.1.1.258 \N 71725 129 14228 \N 71726 5 0046912 \N 71727 5 0042898 \N 71728 5 0008597 \N 71729 5 0001135 \N 71730 5 0043854 \N 71731 136 02416 \N 71732 5 0018677 \N 71733 93 1.14.13.50 \N 71734 5 0043734 \N 71735 136 00579 \N 71736 3 19786499 \N 71737 5 0004181 \N 71738 5 0004995 \N 71739 5 0048306 \N 71740 3 10485905 \N 71741 5 0000980 \N 71742 5 0008041 \N 71743 5 0034821 \N 71744 130 r1155 \N 71745 5 0051003 \N 71746 93 6.6.1.- \N 71747 5 0016494 \N 71748 3 8662823 \N 71749 5 0070138 \N 71750 5 0035496 \N 71751 93 2.4.1.- \N 71752 3 11304545 \N 71753 5 0004240 \N 71754 93 3.4.24.64 \N 71755 5 0004066 \N 71756 93 6.3.5.4 \N 71757 5 0030273 \N 71758 5 0047786 \N 71759 93 1.3.1.4 \N 71760 129 17984 \N 71761 5 0005113 \N 71762 3 11731473 \N 71763 5 0018500 \N 71764 130 r0575 \N 71765 5 0010277 \N 71766 5 0046407 \N 71767 93 1.13.12.14 \N 71768 87 RXN-7677 \N 71769 5 0018237 \N 71770 3 16244137 \N 71771 5 0031764 \N 71772 5 0016229 \N 71773 5 0005249 \N 71774 5 0009022 \N 71775 93 2.7.7.56 \N 71776 5 0000293 \N 71777 93 1.16.1.7 \N 71778 5 0047918 \N 71779 93 5.1.3.18 \N 71780 5 0015167 \N 71781 5 0015245 \N 71782 5 0008479 \N 71783 93 2.4.2.29 \N 71784 5 0034335 \N 71785 5 0000287 \N 71786 5 0045129 \N 71787 5 0004237 \N 71788 93 3.4.13.19 \N 71789 5 0015527 \N 71790 131 2.A.1.4.3 \N 71791 5 0047067 \N 71792 93 1.12.5.1 \N 71793 129 18644 \N 71794 5 0050897 \N 71795 5 0008650 \N 71796 5 0047113 \N 71797 93 1.2.99.3 \N 71798 87 1.2.99.3-RXN \N 71799 5 0046920 \N 71800 5 0015613 \N 71801 5 0003793 \N 71802 5 0008469 \N 71803 5 0016276 \N 71804 5 0018807 \N 71805 130 r0204 \N 71806 5 0031793 \N 71807 5 0031127 \N 71808 5 0022849 \N 71809 5 0015215 \N 71810 5 0034526 \N 71811 130 r0788 \N 71812 5 0005148 \N 71813 5 0018501 \N 71814 133 e0411 \N 71815 5 0050262 \N 71816 5 0000816 \N 71817 93 2.7.1.22 \N 71818 129 14020 \N 71819 5 0008791 \N 71820 93 2.3.1.109 \N 71821 5 0008121 \N 71822 93 1.10.2.2 \N 71823 5 0015604 \N 71824 5 0015228 \N 71825 5 0050588 \N 71826 93 1.13.12.12 \N 71827 129 26026 \N 71828 5 0015128 \N 71829 5 0018834 \N 71830 93 4.5.1.3 \N 71831 129 15400 \N 71832 5 0008445 \N 71833 93 1.4.3.1 \N 71834 5 0033721 \N 71835 93 1.2.1.4 \N 71836 5 0031750 \N 71837 5 0019975 \N 71838 5 0008927 \N 71839 93 4.2.1.8 \N 71840 129 20100 \N 71841 5 0070735 \N 71842 3 19524510 \N 71843 5 0045148 \N 71844 93 3.4.11.4 \N 71845 5 0042293 \N 71846 5 0004556 \N 71847 93 3.2.1.1 \N 71848 5 0004906 \N 71849 5 0016306 \N 71850 3 9759495 \N 71851 5 0047424 \N 71852 93 3.5.3.21 \N 71853 87 3.5.3.21-RXN \N 71854 5 0047495 \N 71855 93 2.7.8.21 \N 71856 5 0042911 \N 71857 5 0015504 \N 71858 131 2.A.39.1.1 \N 71859 5 0010851 \N 71860 5 0050290 \N 71861 93 3.1.4.41 \N 71862 129 20987 \N 71863 5 0034024 \N 71864 93 6.3.1.11 \N 71865 129 13636 \N 71866 5 0050541 \N 71867 3 11278918 \N 71868 5 0071813 \N 71869 88 6495 \N 71870 5 0019144 \N 71871 93 3.6.1.21 \N 71872 5 0003834 \N 71873 93 1.14.99.36 \N 71874 129 10407 \N 71875 5 0047138 \N 71876 93 1.16.1.3 \N 71877 87 1.6.99.12-RXN \N 71878 5 0015442 \N 71879 131 3.A.2.-.- \N 71880 5 0047001 \N 71881 93 1.1.1.127 \N 71882 87 1.1.1.127-RXN \N 71883 5 0046561 \N 71884 93 3.4.23.20 \N 71885 5 0033550 \N 71886 5 0031880 \N 71887 5 0020037 \N 71888 88 30413 \N 71889 5 0072591 \N 71890 3 20657015 \N 71891 5 0047940 \N 71892 93 2.7.1.43 \N 71893 129 17008 \N 71894 5 0000225 \N 71895 93 3.5.1.89 \N 71896 5 0005534 \N 71897 88 28260 \N 71898 5 0030395 \N 71899 5 0015085 \N 71900 5 0043860 \N 71901 93 6.3.2.29 \N 71902 5 0003874 \N 71903 93 4.2.3.12 \N 71904 129 22051 \N 71905 5 0035599 \N 71906 3 18252828 \N 71907 3 8844851 \N 71908 5 0033856 \N 71909 93 2.6.99.2 \N 71910 129 15268 \N 71911 5 0048604 \N 71912 5 0043815 \N 71913 136 01297 \N 71914 3 8117714 \N 71915 5 0008697 \N 71916 93 5.3.1.17 \N 71917 129 23899 \N 71918 5 0080067 \N 71919 5 0016227 \N 71920 93 2.8.1.4 \N 71921 5 0051980 \N 71922 5 0008701 \N 71923 5 0018804 \N 71924 93 4.1.3.39 \N 71925 129 22627 \N 71926 5 0008048 \N 71927 5 0048365 \N 71928 3 11702775 \N 71929 5 0016683 \N 71930 5 0051120 \N 71931 5 0033783 \N 71932 93 1.14.13.100 \N 71933 5 0015381 \N 71934 5 0031996 \N 71935 5 0015597 \N 71936 131 3.A.1.3.1 \N 71937 5 0004464 \N 71938 93 4.4.1.20 \N 71939 129 17620 \N 71940 5 0015420 \N 71941 93 3.6.3.33 \N 71942 5 0004428 \N 71943 5 0030340 \N 71944 93 4.2.2.1 \N 71945 5 0033897 \N 71946 93 3.1.27.1 \N 71947 5 0032778 \N 71948 5 0015632 \N 71949 5 0018713 \N 71950 130 r0197 \N 71951 5 0050378 \N 71952 93 5.1.3.6 \N 71953 129 11407 \N 71954 5 0018459 \N 71955 93 1.1.1.243 \N 71956 129 13632 \N 71957 5 0033569 \N 71958 5 0043862 \N 71959 3 17099215 \N 71960 5 0050532 \N 71961 93 3.1.3.71 \N 71962 129 23419 \N 71963 5 0018842 \N 71964 130 r0582 \N 71965 5 0033188 \N 71966 93 2.7.8.27 \N 71967 129 18768 \N 71968 5 0034458 \N 71969 5 0003791 \N 71970 5 0050647 \N 71971 5 0071814 \N 71972 5 0035885 \N 71973 4 kah \N 71974 3 11468293 \N 71975 3 16298970 \N 71976 3 21390509 \N 71977 5 0033862 \N 71978 93 2.7.4.22 \N 71979 5 0043869 \N 71980 87 RXN-5181 \N 71981 3 10613839 \N 71982 3 12925802 \N 71983 5 0018475 \N 71984 130 r0745 \N 71985 5 0047058 \N 71986 93 1.1.4.2 \N 71987 87 1.1.4.2-RXN \N 71988 5 0043912 \N 71989 136 02957 \N 71990 3 17259313 \N 71991 5 0047555 \N 71992 5 0004116 \N 71993 93 3.1.4.35 \N 71994 87 35-CYCLIC-GMP-PHOSPHODIESTERASE-RXN \N 71995 5 0000386 \N 71996 5 0047902 \N 71997 93 3.5.1.8 \N 71998 87 FORMYLASPARTATE-DEFORMYLASE-RXN \N 71999 5 0033695 \N 72000 93 1.17.5 \N 72001 5 0047915 \N 72002 93 2.4.1.62 \N 72003 87 GANGLIOSIDE-GALACTOSYLTRANSFERASE-RXN \N 72004 5 0050301 \N 72005 93 3.1.3.39 \N 72006 129 10691 \N 72007 5 0047773 \N 72008 93 3.5.1.73 \N 72009 129 17540 \N 72010 5 0004069 \N 72011 93 2.6.1.1 \N 72012 5 0005000 \N 72013 5 0016931 \N 72014 5 0019146 \N 72015 93 5.3.1.13 \N 72016 129 23107 \N 72017 5 0031855 \N 72018 5 0051034 \N 72019 5 0004905 \N 72020 5 0015438 \N 72021 93 3.6.3.40 \N 72022 5 0033418 \N 72023 5 0047359 \N 72024 93 2.7.8.22 \N 72025 87 2.7.8.22-RXN \N 72026 5 0050249 \N 72027 93 2.8.2.10 \N 72028 129 20484 \N 72029 5 0005133 \N 72030 5 0046568 \N 72031 93 1.1.1.265 \N 72032 5 0050233 \N 72033 93 1.1.3.10 \N 72034 129 10555 \N 72035 5 0018819 \N 72036 93 4.2.1.54 \N 72037 5 0047439 \N 72038 93 4.1.2.23 \N 72039 129 23343 \N 72040 5 0010314 \N 72041 5 0047787 \N 72042 5 0047752 \N 72043 93 1.3.1.3 \N 72044 87 CORTISONE-BETA-REDUCTASE-RXN \N 72045 5 0003854 \N 72046 93 1.1.1.145 \N 72047 5 0018469 \N 72048 130 r0711 \N 72049 5 0001691 \N 72050 5 0019163 \N 72051 93 2.6.1.54 \N 72052 5 0050053 \N 72053 93 2.4.1.10 \N 72054 87 LEVANSUCRASE-RXN \N 72055 5 0047507 \N 72056 93 2.7.4.13 \N 72057 87 DEOXYNUCLEOSIDE-PHOSPHATE-KINASE-RXN \N 72058 5 0045480 \N 72059 93 1.1.3.9 \N 72060 5 0050664 \N 72061 93 1.6.3.- \N 72062 5 0050007 \N 72063 93 2.5.1.38 \N 72064 129 19848 \N 72065 5 0070675 \N 72066 5 0050058 \N 72067 93 5.2.1.5 \N 72068 129 17384 \N 72069 5 0018686 \N 72070 130 r0480 \N 72071 5 0018794 \N 72072 130 r0617 \N 72073 5 0035515 \N 72074 5 0005371 \N 72075 5 0005370 \N 72076 5 0000702 \N 72077 5 0018763 \N 72078 93 3.5.99.3 \N 72079 5 0015141 \N 72080 5 0015567 \N 72081 5 0030306 \N 72082 5 0005188 \N 72083 5 0004276 \N 72084 93 3.4.21.75 \N 72085 5 0045513 \N 72086 5 0070063 \N 72087 5 0033989 \N 72088 93 4.2.1.107 \N 72089 5 0004968 \N 72090 5 0019131 \N 72091 93 3.4.14.9 \N 72092 5 0047950 \N 72093 93 1.8.3.3 \N 72094 129 24115 \N 72095 5 0018466 \N 72096 130 r0735 \N 72097 5 0052597 \N 72098 87 RXN-9599 \N 72099 5 0004306 \N 72100 93 2.7.7.14 \N 72101 5 0034815 \N 72102 130 r1135 \N 72103 5 0015021 \N 72104 93 4.2.2.8 \N 72105 5 0004132 \N 72106 93 3.5.4.12 \N 72107 5 0008785 \N 72108 130 r0684 \N 72109 5 0050064 \N 72110 93 2.4.1.189 \N 72111 129 10571 \N 72112 5 0019111 \N 72113 93 2.8.2.- \N 72114 5 0005548 \N 72115 5 0008497 \N 72116 5 0034936 \N 72117 130 r0959 \N 72118 5 0004617 \N 72119 93 1.1.1.95 \N 72120 5 0008580 \N 72121 5 0072541 \N 72122 3 11001062 \N 72123 5 0015179 \N 72124 5 0015107 \N 72125 88 49709 \N 72126 5 0015150 \N 72127 5 0022831 \N 72128 5 0015159 \N 72129 5 0015414 \N 72130 93 3.6.3.26 \N 72131 5 0050311 \N 72132 93 1.8.7.1 \N 72133 87 SULFITE-REDUCTASE-FERREDOXIN-RXN \N 72134 5 0030352 \N 72135 5 0050439 \N 72136 93 2.2.1.5 \N 72137 129 14344 \N 72138 5 0050341 \N 72139 93 1.14.11.6 \N 72140 87 THYMINE-DIOXYGENASE-RXN \N 72141 5 0034931 \N 72142 130 r0953 \N 72143 5 0016775 \N 72144 5 0047303 \N 72145 93 2.6.1.35 \N 72146 129 17144 \N 72147 5 0047487 \N 72148 93 4.2.2.6 \N 72149 87 OLIGOGALACTURONIDE-LYASE-RXN \N 72150 5 0051074 \N 72151 5 0033874 \N 72152 93 2.8.2.32 \N 72153 129 15480 \N 72154 5 0042913 \N 72155 5 0008567 \N 72156 93 3.6.4.2 \N 72157 5 0008773 \N 72158 93 2.7.7.59 \N 72159 5 0016964 \N 72160 3 6188403 \N 72161 5 0031806 \N 72162 5 0004600 \N 72163 93 5.2.1.8 \N 72164 5 0047155 \N 72165 5 0045447 \N 72166 93 2.1.3.7 \N 72167 87 2.1.3.7-RXN \N 72168 5 0005107 \N 72169 5 0008387 \N 72170 5 0008437 \N 72171 5 0009025 \N 72172 93 4.1.2.40 \N 72173 129 22951 \N 72174 5 0018570 \N 72175 130 r0395 \N 72176 5 0034432 \N 72177 5 0015445 \N 72178 93 3.6.3.53 \N 72179 5 0018755 \N 72180 130 r1414 \N 72181 5 0035925 \N 72182 5 0030172 \N 72183 5 0004719 \N 72184 93 2.1.1.77 \N 72185 5 0016761 \N 72186 93 2.4.1.29 \N 72187 5 0015146 \N 72188 5 0030188 \N 72189 5 0034835 \N 72190 130 r1178 \N 72191 5 0003987 \N 72192 93 6.2.1.1 \N 72193 5 0008175 \N 72194 5 0052583 \N 72195 5 0047947 \N 72196 93 2.3.1.14 \N 72197 87 GLUTAMINE-N-PHENYLACETYLTRANSFERASE-RXN \N 72198 5 0018863 \N 72199 130 r0496 \N 72200 5 0016760 \N 72201 93 2.4.1.12 \N 72202 5 0035300 \N 72203 93 2.7.1.159 \N 72204 3 9126335 \N 72205 5 0047835 \N 72206 93 2.3.1.34 \N 72207 129 10063 \N 72208 5 0030594 \N 72209 5 0033888 \N 72210 93 3.1.6.10 \N 72211 129 10539 \N 72212 5 0070406 \N 72213 88 28300 \N 72214 5 0051916 \N 72215 5 0043762 \N 72216 136 01427 \N 72217 5 0031818 \N 72218 5 0016749 \N 72219 5 0047529 \N 72220 93 4.1.3.32 \N 72221 129 10475 \N 72222 5 0050130 \N 72223 93 3.5.1.36 \N 72224 129 24111 \N 72225 5 0018567 \N 72226 130 r0256 \N 72227 5 0016636 \N 72228 5 0031689 \N 72229 5 0050097 \N 72230 93 5.4.99.1 \N 72231 129 12860 \N 72232 5 0018644 \N 72233 133 e0222 \N 72234 5 0016002 \N 72235 93 1.8.99.1 \N 72236 5 0003696 \N 72237 128 0000005 \N 72238 5 0052595 \N 72239 87 AMINEOXID-RXN \N 72240 5 0070967 \N 72241 5 0016909 \N 72242 5 0047316 \N 72243 93 2.6.1.64 \N 72244 129 17596 \N 72245 5 0050430 \N 72246 5 0050621 \N 72247 93 1.3.3.10 \N 72248 129 19904 \N 72249 5 0019828 \N 72250 5 0050238 \N 72251 93 1.1.99.9 \N 72252 87 PYRIDOXINE-5-DEHYDROGENASE-RXN \N 72253 5 0047593 \N 72254 93 3.1.1.33 \N 72255 129 18488 \N 72256 5 0043325 \N 72257 5 0016793 \N 72258 5 0050450 \N 72259 93 2.3.3.3 \N 72260 86 0121227073 \N 72261 87 CITRATE-RE-SYNTHASE-RXN \N 72262 5 0004938 \N 72263 5 0052588 \N 72264 93 1.1.1.304 \N 72265 129 27289 \N 72266 5 0033236 \N 72267 3 15761036 \N 72268 5 0003724 \N 72269 5 0030371 \N 72270 5 0003945 \N 72271 93 2.4.1.90 \N 72272 5 0038022 \N 72273 3 21041441 \N 72274 5 0030109 \N 72275 5 0003759 \N 72276 3 11337494 \N 72277 5 0005175 \N 72278 86 0120781859 \N 72279 5 0043211 \N 72280 5 0047879 \N 72281 93 2.3.1.94 \N 72282 87 ERYTHRONOLIDE-SYNTHASE-RXN \N 72283 5 0015077 \N 72284 5 0050109 \N 72285 93 1.1.1.218 \N 72286 87 MORPHINE-6-DEHYDROGENASE-RXN \N 72287 5 0015007 \N 72288 5 0030365 \N 72289 3 10357856 \N 72290 5 0047574 \N 72291 93 3.5.1.51 \N 72292 129 22931 \N 72293 5 0017020 \N 72294 5 0004471 \N 72295 93 1.1.1.39 \N 72296 5 0008894 \N 72297 93 3.6.1.40 \N 72298 5 2001080 \N 72299 5 0017041 \N 72300 93 3.2.1.47 \N 72301 5 0046573 \N 72302 3 11640988 \N 72303 5 0015233 \N 72304 5 0000224 \N 72305 93 3.5.1.52 \N 72306 5 0051448 \N 72307 3 1984190 \N 72308 5 0050250 \N 72309 93 1.2.3.11 \N 72310 87 RETINAL-OXIDASE-RXN \N 72311 5 0047066 \N 72312 93 1.11.1.12 \N 72313 87 1.11.1.12-RXN \N 72314 5 0000774 \N 72315 5 0042162 \N 72316 128 0000624 \N 72317 5 0009983 \N 72318 5 0022850 \N 72319 5 0051119 \N 72320 5 0046904 \N 72321 5 0047399 \N 72322 93 3.1.4.51 \N 72323 87 3.1.4.51-RXN \N 72324 5 0043881 \N 72325 3 16856935 \N 72326 3 16856937 \N 72327 5 0052706 \N 72328 5 0016467 \N 72329 131 3.A.2.1.1 \N 72330 131 3.A.2.1.3 \N 72331 5 0004887 \N 72332 5 0050523 \N 72333 5 0047178 \N 72334 93 2.3.1.148 \N 72335 87 2.3.1.148-RXN \N 72336 5 0016712 \N 72337 5 0008402 \N 72338 5 0050381 \N 72339 5 0047840 \N 72340 93 3.6.1.12 \N 72341 87 DCTP-PYROPHOSPHATASE-RXN \N 72342 5 0016409 \N 72343 5 0070728 \N 72344 88 25017 \N 72345 5 0008135 \N 72346 5 0050071 \N 72347 93 2.3.2.3 \N 72348 87 LYSYLTRANSFERASE-RXN \N 72349 5 0047630 \N 72350 93 3.1.3.28 \N 72351 129 15864 \N 72352 5 0008684 \N 72353 5 0018821 \N 72354 93 4.2.1.80 \N 72355 5 0047236 \N 72356 93 2.4.1.171 \N 72357 87 2.4.1.171-RXN \N 72358 5 0032001 \N 72359 93 2.4.1.24 \N 72360 5 0008337 \N 72361 5 0008330 \N 72362 5 0018609 \N 72363 133 e0062 \N 72364 5 0016756 \N 72365 5 0042143 \N 72366 93 2.3.2.15 \N 72367 5 0034324 \N 72368 5 0019912 \N 72369 5 0019913 \N 72370 5 0047040 \N 72371 93 1.5.1.33 \N 72372 129 19512 \N 72373 5 0003885 \N 72374 93 1.1.3.37 \N 72375 129 23759 \N 72376 5 0008912 \N 72377 93 1.1.1.77 \N 72378 5 0010473 \N 72379 3 17485667 \N 72380 5 0080103 \N 72381 5 0016536 \N 72382 5 0030749 \N 72383 93 2.1.1.50 \N 72384 5 0005335 \N 72385 5 0005336 \N 72386 131 2.A.22.1.1 \N 72387 5 0047816 \N 72388 93 1.1.1.116 \N 72389 87 D-ARABINOSE-1-DEHYDROGENASE-RXN \N 72390 5 0004850 \N 72391 93 2.4.2.3 \N 72392 5 0033949 \N 72393 93 3.2.1.154 \N 72394 5 0034611 \N 72395 5 0000977 \N 72396 5 0033839 \N 72397 93 2.4.1.240 \N 72398 5 0003717 \N 72399 5 0004710 \N 72400 87 2.7.11.25-RXN \N 72401 5 0032577 \N 72402 5 0004585 \N 72403 93 2.1.3.3 \N 72404 5 0031718 \N 72405 5 0047756 \N 72406 87 CHONDROITIN-4-SULFOTRANSFERASE-RXN \N 72407 5 0033769 \N 72408 93 1.14.13.85 \N 72409 5 0070748 \N 72410 5 0016436 \N 72411 5 0043799 \N 72412 93 1.4.3.19 \N 72413 5 0033902 \N 72414 93 3.1.27.10 \N 72415 5 0004202 \N 72416 5 0047372 \N 72417 93 3.1.1.23 \N 72418 87 3.1.1.23-RXN \N 72419 5 0047592 \N 72420 93 1.14.12.5 \N 72421 129 11155 \N 72422 5 0004085 \N 72423 93 1.3.99.2 \N 72424 5 0030591 \N 72425 5 0030110 \N 72426 5 0051911 \N 72427 93 1.12.98.3 \N 72428 5 0050446 \N 72429 93 1.7.1.6 \N 72430 87 AZOBENZENE-REDUCTASE-RXN \N 72431 5 0001786 \N 72432 3 12000961 \N 72433 5 0043889 \N 72434 3 12801917 \N 72435 3 17253090 \N 72436 3 8408023 \N 72437 5 0051406 \N 72438 3 2341404 \N 72439 3 9742448 \N 72440 5 0047126 \N 72441 93 1.5.1.24 \N 72442 129 18664 \N 72443 5 0031720 \N 72444 5 0042314 \N 72445 5 0051903 \N 72446 93 1.1.1.284 \N 72447 5 0031765 \N 72448 5 0047617 \N 72449 93 3.1.2.20 \N 72450 87 ACYL-COA-HYDROLASE-RXN \N 72451 5 0004644 \N 72452 93 2.1.2.2 \N 72453 5 0010301 \N 72454 5 0033710 \N 72455 93 1.1.1.288 \N 72456 129 12551 \N 72457 5 0043727 \N 72458 136 01835 \N 72459 5 0031734 \N 72460 5 0034844 \N 72461 130 r1256 \N 72462 5 0030548 \N 72463 5 0015549 \N 72464 5 0042242 \N 72465 3 2172209 \N 72466 5 0004215 \N 72467 93 3.4.22.16 \N 72468 5 0019895 \N 72469 3 12495622 \N 72470 5 0047037 \N 72471 93 1.1.1.248 \N 72472 129 10111 \N 72473 5 0046509 \N 72474 93 2.4.1.46 \N 72475 129 14948 \N 72476 5 0032395 \N 72477 5 0034828 \N 72478 130 r1172 \N 72479 5 0016640 \N 72480 5 0016402 \N 72481 5 0031787 \N 72482 5 0050033 \N 72483 93 3.1.1.65 \N 72484 129 10291 \N 72485 5 0047440 \N 72486 93 4.1.2.28 \N 72487 129 20612 \N 72488 5 0000822 \N 72489 5 0010320 \N 72490 5 0050785 \N 72491 3 12453678 \N 72492 3 12707408 \N 72493 3 7592757 \N 72494 3 9224812 \N 72495 104 RAGE_(receptor) \N 72496 5 0018805 \N 72497 93 4.1.99.11 \N 72498 129 10419 \N 72499 5 0022857 \N 72500 5 0005386 \N 72501 5 0015646 \N 72502 5 0015232 \N 72503 5 0005105 \N 72504 4 fb_curators \N 72505 5 0003729 \N 72506 128 0000234 \N 72507 5 0071633 \N 72508 3 10900202 \N 72509 5 0001082 \N 72510 5 0032575 \N 72511 5 0004751 \N 72512 93 5.3.1.6 \N 72513 129 14660 \N 72514 5 0015296 \N 72515 131 2.A.1.14.- \N 72516 5 0031711 \N 72517 5 0080074 \N 72518 5 0047957 \N 72519 93 1.14.13.53 \N 72520 87 ISOFLAVONE-2-HYDROXYLASE-RXN \N 72521 5 0045307 \N 72522 5 0050261 \N 72523 93 5.3.1.20 \N 72524 129 20799 \N 72525 5 0033809 \N 72526 93 2.3.1.171 \N 72527 5 0047354 \N 72528 93 2.7.8.10 \N 72529 129 21227 \N 72530 5 0009008 \N 72531 5 0030602 \N 72532 93 3.4.23.4 \N 72533 5 0047482 \N 72534 93 6.3.2.7 \N 72535 129 17972 \N 72536 5 0004007 \N 72537 5 0019152 \N 72538 87 ACETOINDEHYDROG-RXN \N 72539 5 0033702 \N 72540 93 1.1.1.275 \N 72541 129 14828 \N 72542 5 0008273 \N 72543 131 2.A.19.4.1 \N 72544 5 0000031 \N 72545 5 0008143 \N 72546 5 0004188 \N 72547 5 0008323 \N 72548 93 3.4.16.2 \N 72549 5 0050122 \N 72550 93 1.1.3.29 \N 72551 129 13032 \N 72552 5 0004455 \N 72553 93 1.1.1.86 \N 72554 5 0019198 \N 72555 5 0031773 \N 72556 5 0003677 \N 72557 5 0008571 \N 72558 93 3.6.4.10 \N 72559 5 0052630 \N 72560 93 2.7.7.23 \N 72561 5 0009038 \N 72562 93 2.7.1.66 \N 72563 129 23755 \N 72564 5 0016232 \N 72565 3 9478973 \N 72566 5 0070733 \N 72567 3 19039103 \N 72568 3 19362538 \N 72569 5 0046559 \N 72570 93 3.2.1.139 \N 72571 5 0047324 \N 72572 93 2.7.1.121 \N 72573 129 18384 \N 72574 5 0050611 \N 72575 5 0018691 \N 72576 93 1.20.98.1 \N 72577 87 1.20.98.1-RXN \N 72578 5 0042958 \N 72579 5 0004848 \N 72580 93 3.5.3.19 \N 72581 129 19812 \N 72582 5 0008114 \N 72583 93 1.1.1.43 \N 72584 5 0034554 \N 72585 130 r0842 \N 72586 5 0004555 \N 72587 93 3.2.1.28 \N 72588 5 0046421 \N 72589 93 4.1.3.30 \N 72590 129 16812 \N 72591 5 0047233 \N 72592 93 2.4.1.165 \N 72593 87 2.4.1.165-RXN \N 72594 5 0022819 \N 72595 5 0042781 \N 72596 93 3.1.26.11 \N 72597 5 0070036 \N 72598 5 0016916 \N 72599 5 0004847 \N 72600 93 6.3.4.6 \N 72601 129 20899 \N 72602 5 0015288 \N 72603 131 1.B.1.-.- \N 72604 5 0005082 \N 72605 5 0004139 \N 72606 93 4.1.2.4 \N 72607 129 12824 \N 72608 5 0008508 \N 72609 131 2.A.28.-.- \N 72610 5 0001096 \N 72611 5 0008477 \N 72612 93 3.2.2.1 \N 72613 5 0047930 \N 72614 5 0050443 \N 72615 93 4.3.1.9 \N 72616 87 GLUCOSAMINATE-AMMONIA-LYASE-RXN \N 72617 5 0005086 \N 72618 5 0047716 \N 72619 93 2.3.1.2 \N 72620 129 15816 \N 72621 5 0008552 \N 72622 131 3.A.3.6.2 \N 72623 5 0030616 \N 72624 5 0043920 \N 72625 136 03079 \N 72626 3 15983049 \N 72627 5 0004982 \N 72628 5 0005246 \N 72629 5 0016695 \N 72630 5 0018615 \N 72631 130 r0424 \N 72632 5 0018689 \N 72633 133 e0249 \N 72634 5 0016205 \N 72635 93 2.1.1.- \N 72636 3 10026151 \N 72637 5 0031877 \N 72638 5 0046961 \N 72639 93 3.6.3.14 \N 72640 5 0004238 \N 72641 93 3.4.24.18 \N 72642 5 0015126 \N 72643 5 0004496 \N 72644 93 2.7.1.36 \N 72645 129 17068 \N 72646 5 0032408 \N 72647 5 0008428 \N 72648 5 0008920 \N 72649 87 RXN0-5122 \N 72650 5 0035014 \N 72651 5 0000265 \N 72652 5 0050466 \N 72653 5 0005056 \N 72654 3 9521906 \N 72655 5 0008788 \N 72656 93 3.2.1.93 \N 72657 5 0044325 \N 72658 5 0051766 \N 72659 5 0008079 \N 72660 5 0016836 \N 72661 93 4.2.1 \N 72662 5 0017164 \N 72663 5 0034808 \N 72664 130 r1126 \N 72665 5 0043778 \N 72666 136 02117 \N 72667 87 RXN-8768 \N 72668 5 0043183 \N 72669 5 0047356 \N 72670 93 2.7.8.14 \N 72671 87 2.7.8.14-RXN \N 72672 5 0001016 \N 72673 5 0004042 \N 72674 93 2.3.1.1 \N 72675 129 24295 \N 72676 5 0030345 \N 72677 5 0050288 \N 72678 93 1.1.99.12 \N 72679 129 14716 \N 72680 5 0047820 \N 72681 93 4.2.1.48 \N 72682 129 22363 \N 72683 5 0047701 \N 72684 93 3.2.1.88 \N 72685 87 BETA-L-ARABINOSIDASE-RXN \N 72686 5 0050188 \N 72687 93 5.4.2.9 \N 72688 129 17016 \N 72689 5 0035438 \N 72690 88 49537 \N 72691 5 0004796 \N 72692 5 0008400 \N 72693 93 5.3.99.5 \N 72694 129 17140 \N 72695 5 0008716 \N 72696 93 6.3.2.4 \N 72697 129 11227 \N 72698 5 0051786 \N 72699 93 1.3.99.23 \N 72700 129 19196 \N 72701 5 0008824 \N 72702 93 4.2.1.104 \N 72703 5 0015622 \N 72704 5 0004709 \N 72705 5 0005519 \N 72706 3 15163540 \N 72707 5 0034290 \N 72708 5 0008736 \N 72709 93 5.3.1.25 \N 72710 5 0019157 \N 72711 93 1.1.3.3 \N 72712 129 10515 \N 72713 5 0008816 \N 72714 93 4.1.3.34 \N 72715 5 0043728 \N 72716 136 01683 \N 72717 5 0008877 \N 72718 93 3.1.3.10 \N 72719 5 0016633 \N 72720 93 1.3.2.3 \N 72721 5 0033779 \N 72722 93 1.14.13.96 \N 72723 129 15264 \N 72724 5 0050348 \N 72725 93 2.3.1.122 \N 72726 129 23475 \N 72727 5 0015647 \N 72728 5 0008817 \N 72729 93 2.5.1.17 \N 72730 5 0017113 \N 72731 93 1.3.1.2 \N 72732 5 0015275 \N 72733 5 0000400 \N 72734 3 15563464 \N 72735 5 0032041 \N 72736 5 0005160 \N 72737 5 0051269 \N 72738 3 15564669 \N 72739 5 0018169 \N 72740 3 2570347 \N 72741 5 0050600 \N 72742 93 1.14.99.31 \N 72743 87 1.14.99.31-RXN \N 72744 5 0009018 \N 72745 93 2.4.1.7 \N 72746 5 0008726 \N 72747 87 RXN0-280 \N 72748 5 0047926 \N 72749 93 5.5.1.8 \N 72750 129 18212 \N 72751 5 0004056 \N 72752 93 4.3.2.1 \N 72753 5 0080098 \N 72754 87 RXN3O-4157 \N 72755 5 0004373 \N 72756 93 2.4.1.11 \N 72757 5 0035730 \N 72758 88 50091 \N 72759 5 0018465 \N 72760 93 1.1.3.38 \N 72761 129 10039 \N 72762 5 0034908 \N 72763 130 r0724 \N 72764 5 0008826 \N 72765 87 RXN0-279 \N 72766 5 0001965 \N 72767 5 0018528 \N 72768 130 r0589 \N 72769 5 0015343 \N 72770 5 0015236 \N 72771 5 0015237 \N 72772 131 2.A.1.16.- \N 72773 5 0016624 \N 72774 5 0034190 \N 72775 5 0008158 \N 72776 5 0030487 \N 72777 5 0030943 \N 72778 5 0019705 \N 72779 5 0045182 \N 72780 5 0052609 \N 72781 87 RXN-8218 \N 72782 5 0001167 \N 72783 5 0031794 \N 72784 5 0030276 \N 72785 5 0005094 \N 72786 5 0015439 \N 72787 93 3.6.3.41 \N 72788 5 0015204 \N 72789 5 0015287 \N 72790 5 0005222 \N 72791 5 0005504 \N 72792 5 0003954 \N 72793 93 1.6.99.3 \N 72794 5 0070411 \N 72795 5 0047971 \N 72796 93 3.5.3.7 \N 72797 129 19504 \N 72798 5 0047216 \N 72799 93 2.4.1.123 \N 72800 87 2.4.1.123-RXN \N 72801 5 0017060 \N 72802 93 2.4.1.65 \N 72803 5 0047213 \N 72804 93 2.4.1.115 \N 72805 87 2.4.1.115-RXN \N 72806 5 0018675 \N 72807 93 1.14.13.48 \N 72808 5 0004246 \N 72809 93 3.4.15.1 \N 72810 5 0016155 \N 72811 93 1.5.1.6 \N 72812 129 10183 \N 72813 5 0034921 \N 72814 130 r0935 \N 72815 5 0010461 \N 72816 5 0015192 \N 72817 5 0051752 \N 72818 93 2.7.9.5 \N 72819 3 15618411 \N 72820 5 0004838 \N 72821 93 2.6.1.5 \N 72822 5 0015326 \N 72823 5 0017067 \N 72824 5 0008128 \N 72825 93 2.8.2.9 \N 72826 129 19980 \N 72827 5 0008576 \N 72828 93 3.6.4.6 \N 72829 5 0004154 \N 72830 3 1745247 \N 72831 3 6815189 \N 72832 5 0001008 \N 72833 5 0051449 \N 72834 5 0030106 \N 72835 5 0009384 \N 72836 93 2.7.1.60 \N 72837 5 0004574 \N 72838 93 3.2.1.10 \N 72839 5 0016814 \N 72840 5 0004448 \N 72841 93 1.1.1.41 \N 72842 5 0015116 \N 72843 5 0003859 \N 72844 93 4.2.1.55 \N 72845 129 17852 \N 72846 5 0005008 \N 72847 5 0008404 \N 72848 94 //lipidlibrary.aocs.org/Lipids/eic_hete/index.htm \N 72849 3 10681399 \N 72850 5 0008638 \N 72851 5 0018583 \N 72852 93 1.13.11.39 \N 72853 5 0000993 \N 72854 5 0050528 \N 72855 93 3.1.1.77 \N 72856 87 3.1.1.77-RXN \N 72857 5 0080079 \N 72858 3 15604686 \N 72859 5 0004880 \N 72860 5 0050782 \N 72861 5 0003790 \N 72862 5 0033921 \N 72863 93 3.2.1.87 \N 72864 5 0004222 \N 72865 5 0033756 \N 72866 93 1.13.12.13 \N 72867 5 0048405 \N 72868 5 0047323 \N 72869 93 2.7.11.4 \N 72870 5 0009467 \N 72871 5 0047459 \N 72872 93 4.3.1.14 \N 72873 129 10059 \N 72874 5 0015064 \N 72875 5 0034010 \N 72876 93 4.4.1.24 \N 72877 129 21431 \N 72878 5 0009493 \N 72879 5 0052694 \N 72880 87 RXN-12421 \N 72881 3 21576464 \N 72882 5 0030267 \N 72883 93 1.1.1.79 \N 72884 5 0034871 \N 72885 130 r1308 \N 72886 5 0032190 \N 72887 5 0071972 \N 72888 87 RXN-11349 \N 72889 5 0008901 \N 72890 5 0016948 \N 72891 5 0016949 \N 72892 5 0016950 \N 72893 5 0016951 \N 72894 93 1.12.7.2 \N 72895 5 0016674 \N 72896 5 0051996 \N 72897 93 2.5.1.21 \N 72898 5 0018786 \N 72899 93 3.8.1.5 \N 72900 5 0050102 \N 72901 93 2.4.1.49 \N 72902 87 CELLODEXTRIN-PHOSPHORYLASE-RXN \N 72903 5 0045237 \N 72904 3 11910892 \N 72905 5 0034482 \N 72906 3 17227754 \N 72907 5 0015051 \N 72908 112 IPR001420 \N 72909 5 0055042 \N 72910 5 0032131 \N 72911 5 0004064 \N 72912 93 3.1.1.2 \N 72913 5 0010178 \N 72914 5 0004914 \N 72915 5 0004091 \N 72916 5 0004302 \N 72917 5 0004759 \N 72918 5 0016789 \N 72919 93 3.1.1.1 \N 72920 5 0003712 \N 72921 5 0018698 \N 72922 130 r0352 \N 72923 5 0016719 \N 72924 93 1.14.99.30 \N 72925 5 0004332 \N 72926 93 4.1.2.13 \N 72927 5 0052625 \N 72928 87 RXN-10884 \N 72929 3 19189963 \N 72930 5 0015312 \N 72931 131 2.A.1.2.16 \N 72932 5 2001071 \N 72933 5 0000906 \N 72934 93 5.4.-.- \N 72935 3 7559556 \N 72936 5 0008871 \N 72937 93 2.7.7.46 \N 72938 5 0008376 \N 72939 5 0008686 \N 72940 93 4.1.99.12 \N 72941 129 18460 \N 72942 5 0018997 \N 72943 5 0033973 \N 72944 93 3.5.4.30 \N 72945 129 19208 \N 72946 5 0051800 \N 72947 3 9811831 \N 72948 5 0072533 \N 72949 5 0015180 \N 72950 5 0004584 \N 72951 93 2.4.1.130 \N 72952 5 0047344 \N 72953 93 2.7.7.34 \N 72954 129 10711 \N 72955 5 0050293 \N 72956 93 3.1.1.37 \N 72957 129 13724 \N 72958 5 0047745 \N 72959 93 3.1.1.42 \N 72960 129 20692 \N 72961 5 0005482 \N 72962 5 0047252 \N 72963 93 2.4.1.199 \N 72964 87 2.4.1.199-RXN \N 72965 5 0050044 \N 72966 93 5.3.1.26 \N 72967 129 13036 \N 72968 5 0008899 \N 72969 93 2.3.1.46 \N 72970 129 22011 \N 72971 5 0016675 \N 72972 5 0004319 \N 72973 93 1.3.1.10 \N 72974 5 0097004 \N 72975 3 11904407 \N 72976 5 0009905 \N 72977 93 5.5.1.13 \N 72978 129 14844 \N 72979 5 0005044 \N 72980 3 11790542 \N 72981 3 12379907 \N 72982 3 12621157 \N 72983 3 20981357 \N 72984 5 0047585 \N 72985 93 3.1.1.27 \N 72986 129 14304 \N 72987 5 0003998 \N 72988 93 3.6.1.7 \N 72989 5 0004467 \N 72990 5 0009485 \N 72991 5 0033981 \N 72992 5 0030928 \N 72993 93 4.1.1.84 \N 72994 129 18444 \N 72995 5 0043014 \N 72996 5 0050478 \N 72997 93 1.14.16.3 \N 72998 129 21171 \N 72999 5 0016812 \N 73000 5 0003931 \N 73001 5 0008266 \N 73002 5 0019534 \N 73003 5 0042897 \N 73004 5 0008086 \N 73005 5 0015400 \N 73006 5 0043777 \N 73007 136 02116 \N 73008 87 RXN-8767 \N 73009 5 0015419 \N 73010 93 3.6.3.25 \N 73011 5 0018770 \N 73012 130 r0444 \N 73013 5 0016854 \N 73014 5 0018742 \N 73015 133 e0051 \N 73016 5 0034561 \N 73017 130 r0862 \N 73018 5 0004534 \N 73019 5 0004610 \N 73020 93 5.4.2.3 \N 73021 129 23807 \N 73022 5 0008463 \N 73023 93 3.5.1.31 \N 73024 129 17784 \N 73025 5 0034542 \N 73026 130 r0807 \N 73027 5 0004673 \N 73028 5 0008896 \N 73029 93 2.7.13.3 \N 73030 5 0047106 \N 73031 93 1.2.1.53 \N 73032 87 1.2.1.53-RXN \N 73033 5 0030756 \N 73034 93 2.1.1.78 \N 73035 129 24099 \N 73036 5 0047666 \N 73037 93 2.7.3.8 \N 73038 129 11027 \N 73039 5 0018747 \N 73040 5 0047748 \N 73041 93 1.1.1.161 \N 73042 87 CHOLESTANETETRAOL-26-DEHYDROGENASE-RXN \N 73043 5 0004004 \N 73044 5 0005155 \N 73045 5 0016564 \N 73046 5 0050163 \N 73047 93 5.3.2.2 \N 73048 129 16024 \N 73049 5 0033447 \N 73050 5 0043717 \N 73051 87 RXN-1083 \N 73052 5 0050440 \N 73053 93 2.3.3.5 \N 73054 129 23783 \N 73055 5 0002166 \N 73056 5 0033446 \N 73057 5 0004951 \N 73058 3 9835394 \N 73059 5 0033948 \N 73060 93 3.2.1.153 \N 73061 5 0016313 \N 73062 5 0033040 \N 73063 5 0000121 \N 73064 93 3.1.3.21 \N 73065 5 0015363 \N 73066 5 0047132 \N 73067 93 1.5.3.12 \N 73068 87 1.5.3.12-RXN \N 73069 5 0000318 \N 73070 93 1.8.4.- \N 73071 3 11929995 \N 73072 5 0050145 \N 73073 93 2.7.4.4 \N 73074 87 NUCLEOSIDE-PHOSPHATE-KINASE-RXN \N 73075 5 0050140 \N 73076 93 1.9.6.1 \N 73077 87 NITRATE-REDUCTASE-CYTOCHROME-RXN \N 73078 5 0043875 \N 73079 87 KETOBUTFORMLY-RXN \N 73080 3 9484901 \N 73081 5 0019206 \N 73082 5 0018856 \N 73083 130 r0242 \N 73084 5 0050181 \N 73085 93 3.1.1.51 \N 73086 129 21319 \N 73087 5 0015330 \N 73088 5 0052662 \N 73089 5 0019779 \N 73090 5 0016527 \N 73091 5 0030549 \N 73092 5 0033436 \N 73093 5 0004366 \N 73094 93 2.3.1.15 \N 73095 5 0004989 \N 73096 88 17134 \N 73097 5 0008098 \N 73098 5 0031928 \N 73099 5 0018638 \N 73100 133 e0225 \N 73101 5 0052677 \N 73102 93 1.1.1.287 \N 73103 5 0004988 \N 73104 134 319 \N 73105 5 0019178 \N 73106 87 NADPPHOSPHAT-RXN \N 73107 5 0032560 \N 73108 5 0034076 \N 73109 5 0016980 \N 73110 93 3.5.3.3 \N 73111 129 22459 \N 73112 5 0030623 \N 73113 5 0033731 \N 73114 93 1.3.1.79 \N 73115 5 0042802 \N 73116 5 0050456 \N 73117 93 1.8.1.6 \N 73118 129 20600 \N 73119 5 0015045 \N 73120 93 1.18.1.4 \N 73121 5 0009002 \N 73122 93 3.4.16.4 \N 73123 5 0008559 \N 73124 5 0005226 \N 73125 5 0008560 \N 73126 93 3.6.3.44 \N 73127 5 0016655 \N 73128 5 0004072 \N 73129 93 2.7.2.4 \N 73130 129 23779 \N 73131 5 0042947 \N 73132 5 0052685 \N 73133 5 0001037 \N 73134 5 0018723 \N 73135 130 r0561 \N 73136 5 0009046 \N 73137 93 3.4.17.14 \N 73138 5 0047428 \N 73139 93 3.5.5.5 \N 73140 87 3.5.5.5-RXN \N 73141 5 0004808 \N 73142 5 0016425 \N 73143 93 2.1.1.61 \N 73144 5 0051021 \N 73145 5 0008113 \N 73146 5 0033742 \N 73147 93 1.8.4.11 \N 73148 3 11169920 \N 73149 5 0033287 \N 73150 5 0018503 \N 73151 130 r0574 \N 73152 5 0030406 \N 73153 5 0051576 \N 73154 5 0004161 \N 73155 93 2.5.1.1 \N 73156 5 0051989 \N 73157 93 1.3.99.22 \N 73158 5 0008750 \N 73159 93 1.6.1.2 \N 73160 94 //pubs.acs.org/cgi-bin/abstract.cgi/jacsat/1991/113/i07/f-pdf/f_ja00007a002.pdf \N 73161 5 0016453 \N 73162 5 0034322 \N 73163 5 0031791 \N 73164 5 0047165 \N 73165 93 2.3.1.116 \N 73166 87 2.3.1.116-RXN \N 73167 5 0015660 \N 73168 5 0015509 \N 73169 5 0043833 \N 73170 136 01318 \N 73171 87 RXN-8099 \N 73172 5 0070699 \N 73173 5 0016869 \N 73174 5 0003841 \N 73175 5 0004469 \N 73176 93 2.3.1.51 \N 73177 5 0005241 \N 73178 5 0008676 \N 73179 93 2.5.1.55 \N 73180 129 14056 \N 73181 5 0044016 \N 73182 5 0047901 \N 73183 93 3.1.2.10 \N 73184 129 19744 \N 73185 5 0017107 \N 73186 5 0016865 \N 73187 5 0047476 \N 73188 93 6.2.1.28 \N 73189 87 6.2.1.28-RXN \N 73190 5 0004377 \N 73191 93 2.4.1.131 \N 73192 5 0005375 \N 73193 5 0005378 \N 73194 5 0005379 \N 73195 5 0005380 \N 73196 5 0015316 \N 73197 5 0015617 \N 73198 5 0070205 \N 73199 93 4.2.99.20 \N 73200 129 25600 \N 73201 5 0047911 \N 73202 93 3.2.1.67 \N 73203 87 GALACTURAN-14-ALPHA-GALACTURONIDASE-RXN \N 73204 5 0052743 \N 73205 5 0033570 \N 73206 5 0017046 \N 73207 5 0004283 \N 73208 93 3.4.21.7 \N 73209 5 0050627 \N 73210 93 1.8.1.15 \N 73211 87 1.8.1.15-RXN \N 73212 5 0004991 \N 73213 5 0033843 \N 73214 93 2.4.2.39 \N 73215 5 0050749 \N 73216 5 0018601 \N 73217 93 1.14.13.29 \N 73218 129 12571 \N 73219 5 0008238 \N 73220 5 0047426 \N 73221 93 3.5.5.2 \N 73222 87 3.5.5.2-RXN \N 73223 5 0018814 \N 73224 93 4.99.1.7 \N 73225 129 20072 \N 73226 5 0047536 \N 73227 93 2.6.1.39 \N 73228 129 12604 \N 73229 5 0047964 \N 73230 93 1.1.1.26 \N 73231 87 GLYCOLATE-REDUCTASE-RXN \N 73232 5 0042299 \N 73233 87 RXN-111 \N 73234 3 9883589 \N 73235 5 0047118 \N 73236 93 1.3.1.40 \N 73237 129 24271 \N 73238 5 0005167 \N 73239 5 0016889 \N 73240 5 0008390 \N 73241 5 0030738 \N 73242 93 2.1.1.27 \N 73243 129 14868 \N 73244 5 0034257 \N 73245 5 0047999 \N 73246 93 1.7.1.5 \N 73247 129 19340 \N 73248 5 0003940 \N 73249 93 3.2.1.76 \N 73250 5 0050020 \N 73251 93 4.2.1.25 \N 73252 129 20971 \N 73253 5 0043730 \N 73254 136 02121 \N 73255 5 0047144 \N 73256 93 2.3.1.52 \N 73257 87 2-ACYL2.3.1.15-RXN \N 73258 5 0070615 \N 73259 3 19165147 \N 73260 5 0004734 \N 73261 93 1.5.4.1 \N 73262 5 0032037 \N 73263 5 0004998 \N 73264 3 2678449 \N 73265 3 3011819 \N 73266 5 0034941 \N 73267 130 r0970 \N 73268 5 0047246 \N 73269 93 2.4.1.190 \N 73270 129 14152 \N 73271 5 0018479 \N 73272 93 1.2.1.28 \N 73273 5 0004818 \N 73274 93 6.1.1.17 \N 73275 5 0016347 \N 73276 5 0042988 \N 73277 3 12780348 \N 73278 5 0015334 \N 73279 5 0005309 \N 73280 131 2.A.22.3.4 \N 73281 5 0004920 \N 73282 5 0016531 \N 73283 3 10790544 \N 73284 3 11739376 \N 73285 5 0031759 \N 73286 5 0033804 \N 73287 93 2.1.1.156 \N 73288 5 0070548 \N 73289 5 0015352 \N 73290 5 0032791 \N 73291 5 0004228 \N 73292 93 3.4.24.24 \N 73293 5 0018547 \N 73294 133 e0038 \N 73295 5 0016747 \N 73296 5 0097020 \N 73297 3 16957051 \N 73298 3 20236934 \N 73299 5 0003861 \N 73300 93 4.2.1.33 \N 73301 5 0047388 \N 73302 93 3.1.4.15 \N 73303 87 3.1.4.15-RXN \N 73304 5 0008802 \N 73305 93 1.2.1.8 \N 73306 5 0000363 \N 73307 5 0050256 \N 73308 93 1.1.1.137 \N 73309 87 RIBITOL-5-PHOSPHATE-2-DEHYDROGENASE-RXN \N 73310 5 0050211 \N 73311 93 2.4.1.50 \N 73312 87 PROCOLLAGEN-GALACTOSYLTRANSFERASE-RXN \N 73313 5 0016495 \N 73314 5 0018667 \N 73315 93 1.14.13.22 \N 73316 5 0019182 \N 73317 5 0016696 \N 73318 5 0004869 \N 73319 5 0004870 \N 73320 5 0033208 \N 73321 3 12678917 \N 73322 3 16024623 \N 73323 5 0015606 \N 73324 5 0043424 \N 73325 5 0043997 \N 73326 5 0008793 \N 73327 93 2.6.1.57 \N 73328 5 0034793 \N 73329 130 r1056 \N 73330 5 0047421 \N 73331 93 3.5.1.82 \N 73332 129 12836 \N 73333 5 0033454 \N 73334 5 0009702 \N 73335 93 2.7.1.46 \N 73336 129 20156 \N 73337 5 0009036 \N 73338 93 3.1.21.4 \N 73339 3 12654995 \N 73340 5 0045174 \N 73341 93 1.8.5.1 \N 73342 129 24427 \N 73343 5 0016518 \N 73344 5 0033961 \N 73345 93 3.3.2.9 \N 73346 5 0047937 \N 73347 93 2.7.1.41 \N 73348 87 GLUCOSE-1-PHOSPHATE-PHOSPHODISMUTASE-RXN \N 73349 5 0047192 \N 73350 93 2.3.1.67 \N 73351 87 2.3.1.67-RXN \N 73352 5 0047490 \N 73353 93 4.2.2.10 \N 73354 5 0005118 \N 73355 3 3151175 \N 73356 5 0003961 \N 73357 93 2.5.1.49 \N 73358 5 0032452 \N 73359 5 0016970 \N 73360 5 0008444 \N 73361 93 2.7.8.5 \N 73362 129 12596 \N 73363 5 0015100 \N 73364 5 0031847 \N 73365 5 0070180 \N 73366 5 0047503 \N 73367 93 1.1.1.227 \N 73368 129 22131 \N 73369 5 0004860 \N 73370 5 0031850 \N 73371 5 0050514 \N 73372 93 2.5.1.45 \N 73373 87 2.5.1.45-RXN \N 73374 5 0034028 \N 73375 93 6.3.4.18 \N 73376 129 19320 \N 73377 5 0050226 \N 73378 93 2.8.2.13 \N 73379 87 PSYCHOSINE-SULFOTRANSFERASE-RXN \N 73380 5 0031692 \N 73381 5 0008080 \N 73382 5 0004520 \N 73383 5 0050325 \N 73384 93 1.5.1.23 \N 73385 129 12583 \N 73386 5 0050501 \N 73387 93 2.4.1.212 \N 73388 87 2.4.1.212-RXN \N 73389 5 0050265 \N 73390 93 2.7.7.52 \N 73391 87 RNA-URIDYLYLTRANSFERASE-RXN \N 73392 5 0015162 \N 73393 5 0003776 \N 73394 5 0005139 \N 73395 5 0008517 \N 73396 5 0015049 \N 73397 93 1.14.13.25 \N 73398 5 0008892 \N 73399 93 3.5.4.3 \N 73400 5 0055105 \N 73401 5 0016885 \N 73402 93 6.4 \N 73403 5 0004176 \N 73404 5 0004280 \N 73405 5 0047019 \N 73406 93 1.1.1.191 \N 73407 129 17040 \N 73408 5 0047369 \N 73409 93 2.8.3.13 \N 73410 87 2.8.3.13-RXN \N 73411 5 0050260 \N 73412 93 6.3.4.7 \N 73413 129 13780 \N 73414 5 0003875 \N 73415 93 3.2.2.19 \N 73416 5 0033890 \N 73417 93 3.1.13.5 \N 73418 5 0047968 \N 73419 93 1.2.1.17 \N 73420 129 21027 \N 73421 5 0032546 \N 73422 5 2001063 \N 73423 5 0050815 \N 73424 5 0001055 \N 73425 5 0031434 \N 73426 5 0090409 \N 73427 87 RXN-12359 \N 73428 5 0003732 \N 73429 5 0048256 \N 73430 5 0004503 \N 73431 93 1.14.18.1 \N 73432 5 0047987 \N 73433 93 4.2.1.92 \N 73434 87 HYDROPEROXIDE-DEHYDRATASE-RXN \N 73435 5 0001073 \N 73436 5 0047222 \N 73437 93 2.4.1.138 \N 73438 87 2.4.1.138-RXN \N 73439 5 0046526 \N 73440 93 1.1.1.9 \N 73441 129 20436 \N 73442 5 0034520 \N 73443 130 r0772 \N 73444 5 0070974 \N 73445 112 IPR000327 \N 73446 5 0047730 \N 73447 87 CARNOSINE-SYNTHASE-RXN \N 73448 5 0030281 \N 73449 5 0019972 \N 73450 5 0000250 \N 73451 93 5.4.99.7 \N 73452 129 14624 \N 73453 5 0008262 \N 73454 3 12486120 \N 73455 5 0051378 \N 73456 5 0008108 \N 73457 93 2.7.7.12 \N 73458 129 13992 \N 73459 5 0016871 \N 73460 93 5.4.99.8 \N 73461 129 21311 \N 73462 5 0005123 \N 73463 3 15654015 \N 73464 5 0045152 \N 73465 5 0047262 \N 73466 5 0050375 \N 73467 93 2.4.1.43 \N 73468 87 2.4.1.43-RXN \N 73469 5 0032554 \N 73470 5 0050221 \N 73471 93 1.1.1.189 \N 73472 87 PROSTAGLANDIN-E2-9-REDUCTASE-RXN \N 73473 5 0031177 \N 73474 88 16858 \N 73475 5 0030411 \N 73476 93 4.2.1.94 \N 73477 129 24399 \N 73478 5 0008548 \N 73479 93 3.6.5.4 \N 73480 87 3.6.1.49-RXN \N 73481 5 0008456 \N 73482 93 3.2.1.49 \N 73483 5 0033170 \N 73484 5 0016647 \N 73485 5 0030226 \N 73486 5 0050371 \N 73487 93 4.1.99.2 \N 73488 129 21707 \N 73489 5 0043831 \N 73490 93 1.8.5.2 \N 73491 129 10939 \N 73492 5 0003829 \N 73493 93 2.4.1.102 \N 73494 5 0004823 \N 73495 93 6.1.1.4 \N 73496 129 11691 \N 73497 5 0047691 \N 73498 93 2.5.1.35 \N 73499 129 13812 \N 73500 5 0042826 \N 73501 5 0047763 \N 73502 93 2.1.1.68 \N 73503 87 CAFFEATE-O-METHYLTRANSFERASE-RXN \N 73504 5 0033763 \N 73505 93 1.14.11.28 \N 73506 5 0004314 \N 73507 93 2.3.1.39 \N 73508 5 0016864 \N 73509 93 5.3.4 \N 73510 5 0051434 \N 73511 132 PS01259 \N 73512 5 0050356 \N 73513 93 1.1.1.206 \N 73514 129 18360 \N 73515 5 0031708 \N 73516 5 0016902 \N 73517 5 0016875 \N 73518 93 6.1 \N 73519 5 0035034 \N 73520 5 0030196 \N 73521 93 4.2.1.66 \N 73522 129 21723 \N 73523 5 0022855 \N 73524 5 0001567 \N 73525 93 1.14.99.38 \N 73526 129 21107 \N 73527 5 0003824 \N 73528 5 0047893 \N 73529 93 2.4.1.91 \N 73530 87 FLAVONOL-3-O-GLUCOSYLTRANSFERASE-RXN \N 73531 5 0015223 \N 73532 5 0047681 \N 73533 93 1.1.1.91 \N 73534 87 ARYL-ALCOHOL-DEHYDROGENASE-NADP+-RXN \N 73535 5 0019105 \N 73536 5 0031722 \N 73537 5 0019200 \N 73538 5 0070856 \N 73539 5 0031769 \N 73540 5 0008721 \N 73541 93 4.3.1.18 \N 73542 5 0005321 \N 73543 5 0047613 \N 73544 93 4.1.1.6 \N 73545 129 15256 \N 73546 5 0047390 \N 73547 93 3.1.4.38 \N 73548 129 19548 \N 73549 5 0003968 \N 73550 93 2.7.7.48 \N 73551 5 0050734 \N 73552 5 0004532 \N 73553 5 0015418 \N 73554 93 3.6.3.32 \N 73555 5 0001873 \N 73556 5 0043892 \N 73557 93 1.1.1.283 \N 73558 5 0050517 \N 73559 93 2.7.4.21 \N 73560 87 2.7.4.21-RXN \N 73561 5 0016858 \N 73562 5 0050492 \N 73563 93 1.1.1.261 \N 73564 87 1.1.1.261-RXN \N 73565 5 0018773 \N 73566 93 3.7.1.6 \N 73567 129 16100 \N 73568 5 0015196 \N 73569 5 0005299 \N 73570 5 0000834 \N 73571 5 0030986 \N 73572 3 9520414 \N 73573 5 0090369 \N 73574 5 0017026 \N 73575 93 3.4.24.19 \N 73576 5 0050578 \N 73577 93 1.1.1.272 \N 73578 87 1.1.1.272-RXN \N 73579 5 0009476 \N 73580 5 0034853 \N 73581 130 r1278 \N 73582 5 0032552 \N 73583 5 0000996 \N 73584 5 0019841 \N 73585 88 50211 \N 73586 5 0070653 \N 73587 5 0047415 \N 73588 93 3.5.1.72 \N 73589 129 14424 \N 73590 5 0018627 \N 73591 5 0018605 \N 73592 93 1.14.12.14 \N 73593 129 23471 \N 73594 5 0010295 \N 73595 93 1.14.13.93 \N 73596 129 12900 \N 73597 5 0031798 \N 73598 5 0015496 \N 73599 131 2.A.3.2.1 \N 73600 5 0050093 \N 73601 93 1.1.1.244 \N 73602 129 19404 \N 73603 5 0004636 \N 73604 93 3.6.1.31 \N 73605 129 22831 \N 73606 5 0050415 \N 73607 93 3.5.3.8 \N 73608 129 22495 \N 73609 5 0050198 \N 73610 93 2.3.1.146 \N 73611 129 12555 \N 73612 5 0046510 \N 73613 87 RXN-1224 \N 73614 5 0004293 \N 73615 5 0004279 \N 73616 93 3.4.21.35 \N 73617 5 0033744 \N 73618 5 0000317 \N 73619 93 1.8.4.13 \N 73620 5 0018643 \N 73621 130 r0599 \N 73622 5 0097008 \N 73623 87 RXN-8619 \N 73624 3 21088219 \N 73625 5 0030347 \N 73626 5 0031531 \N 73627 5 0031888 \N 73628 3 8592728 \N 73629 5 0047334 \N 73630 93 2.7.1.90 \N 73631 87 2.7.1.90-RXN \N 73632 5 0031695 \N 73633 5 0003913 \N 73634 3 11124949 \N 73635 5 0045295 \N 73636 5 0050117 \N 73637 93 3.5.1.21 \N 73638 129 23215 \N 73639 5 0016913 \N 73640 5 0033972 \N 73641 93 3.5.3.22 \N 73642 129 17004 \N 73643 5 0000987 \N 73644 5 0015471 \N 73645 5 0030184 \N 73646 5 0033822 \N 73647 93 2.4.1.28 \N 73648 5 0016303 \N 73649 5 0004429 \N 73650 129 12712 \N 73651 5 0008083 \N 73652 5 0008225 \N 73653 5 0047333 \N 73654 93 2.7.1.88 \N 73655 129 16284 \N 73656 5 0004903 \N 73657 5 0050110 \N 73658 87 3.2.1.110-RXN \N 73659 5 0019215 \N 73660 5 0004665 \N 73661 93 1.3.1.13 \N 73662 129 21643 \N 73663 5 0004527 \N 73664 5 0008857 \N 73665 5 0005328 \N 73666 131 2.A.22.-.- \N 73667 5 0070553 \N 73668 88 15940 \N 73669 3 12522134 \N 73670 5 0018599 \N 73671 130 r0619 \N 73672 5 0030553 \N 73673 5 0033832 \N 73674 93 2.4.1.231 \N 73675 5 0004174 \N 73676 93 1.5.5.1 \N 73677 5 0047751 \N 73678 93 1.3.1.22 \N 73679 129 24555 \N 73680 5 0050659 \N 73681 93 2.8.2.33 \N 73682 5 0018670 \N 73683 93 1.14.13.27 \N 73684 5 0047286 \N 73685 93 2.4.2.36 \N 73686 5 0034713 \N 73687 5 0005103 \N 73688 5 0005116 \N 73689 5 0005120 \N 73690 5 0030332 \N 73691 5 0070568 \N 73692 5 0070064 \N 73693 5 0047021 \N 73694 93 1.1.1.197 \N 73695 129 11639 \N 73696 5 0004439 \N 73697 5 0001668 \N 73698 93 3.1.3.36 \N 73699 129 22767 \N 73700 5 0004947 \N 73701 5 0034854 \N 73702 130 r1280 \N 73703 5 0031837 \N 73704 5 0003858 \N 73705 93 1.1.1.30 \N 73706 129 20524 \N 73707 5 0003786 \N 73708 5 0008289 \N 73709 5 0005566 \N 73710 5 0034387 \N 73711 5 0016619 \N 73712 5 0004472 \N 73713 93 1.1.1.38 \N 73714 5 0047790 \N 73715 93 3.5.4.21 \N 73716 87 CREATININE-DEAMINASE-RXN \N 73717 5 0018655 \N 73718 130 r0430 \N 73719 5 0043959 \N 73720 136 03303 \N 73721 5 0016709 \N 73722 5 0000829 \N 73723 5 0015377 \N 73724 131 2.A.30.-.- \N 73725 5 0005253 \N 73726 5 0018704 \N 73727 133 e0237 \N 73728 5 0004193 \N 73729 93 3.4.23.34 \N 73730 5 0004758 \N 73731 93 2.3.1.50 \N 73732 129 14764 \N 73733 5 0070041 \N 73734 5 0000246 \N 73735 93 1.3.1.71 \N 73736 129 18504 \N 73737 5 0047634 \N 73738 93 2.3.1.64 \N 73739 129 13408 \N 73740 5 0004589 \N 73741 93 1.3.1.14 \N 73742 129 13516 \N 73743 5 0008888 \N 73744 93 1.1.1.6 \N 73745 129 13772 \N 73746 5 0001148 \N 73747 5 0034535 \N 73748 130 r0781 \N 73749 5 0047894 \N 73750 93 2.8.2.25 \N 73751 129 13456 \N 73752 5 0050606 \N 73753 93 1.2.1.45 \N 73754 87 1.2.1.45-RXN \N 73755 5 0033906 \N 73756 93 3.2.1.36 \N 73757 5 0019799 \N 73758 93 2.3.1.108 \N 73759 5 0030233 \N 73760 3 11226231 \N 73761 5 0004070 \N 73762 93 2.1.3.2 \N 73763 129 20016 \N 73764 5 0030771 \N 73765 93 2.1.1.105 \N 73766 129 17408 \N 73767 5 0035591 \N 73768 5 0030770 \N 73769 93 2.1.1.102 \N 73770 129 17576 \N 73771 5 0004157 \N 73772 93 3.5.2.2 \N 73773 5 0030401 \N 73774 5 0018739 \N 73775 93 3.1.2.23 \N 73776 129 11951 \N 73777 5 0050336 \N 73778 93 2.3.1.11 \N 73779 129 23283 \N 73780 5 0050636 \N 73781 93 2.3.1.160 \N 73782 129 24019 \N 73783 5 0004015 \N 73784 93 2.6.1.62 \N 73785 129 16864 \N 73786 5 0051059 \N 73787 5 0052639 \N 73788 87 RXN-11659 \N 73789 5 0047062 \N 73790 93 1.10.1.1 \N 73791 129 22187 \N 73792 5 0051724 \N 73793 5 0071617 \N 73794 5 0043859 \N 73795 3 10429200 \N 73796 5 0004517 \N 73797 5 0016490 \N 73798 5 0034898 \N 73799 130 r1373 \N 73800 5 0070497 \N 73801 3 19231875 \N 73802 5 0034565 \N 73803 130 r0872 \N 73804 5 0030249 \N 73805 5 0047807 \N 73806 93 2.4.1.118 \N 73807 87 CYTOKININ-7-BETA-GLUCOSYLTRANSFERASE-RXN \N 73808 5 0015641 \N 73809 5 0050010 \N 73810 93 2.4.1.106 \N 73811 129 19532 \N 73812 5 0009670 \N 73813 5 0015122 \N 73814 131 2.A.7.-.- \N 73815 5 0018455 \N 73816 93 1.1.1.71 \N 73817 5 0016779 \N 73818 5 0042970 \N 73819 5 0018551 \N 73820 93 1.8.99.3 \N 73821 5 0070538 \N 73822 5 0008883 \N 73823 93 1.2.1.70 \N 73824 129 12347 \N 73825 5 0015349 \N 73826 5 0034317 \N 73827 3 17914902 \N 73828 5 0032357 \N 73829 5 0050488 \N 73830 5 0050489 \N 73831 3 10073711 \N 73832 5 0015342 \N 73833 131 2.A.5.-.- \N 73834 5 0034916 \N 73835 130 r0928 \N 73836 5 0005221 \N 73837 5 0001042 \N 73838 5 0019769 \N 73839 5 0035663 \N 73840 5 0047044 \N 73841 93 1.1.1.53 \N 73842 87 1.1.1.53-RXN \N 73843 5 0004568 \N 73844 93 3.2.1.14 \N 73845 5 0001862 \N 73846 5 0042924 \N 73847 3 12584108 \N 73848 5 0005070 \N 73849 4 so \N 73850 5 0005231 \N 73851 86 0323037070 \N 73852 5 0001159 \N 73853 5 0000150 \N 73854 5 0008181 \N 73855 5 0018682 \N 73856 87 R461-RXN \N 73857 130 r0127 \N 73858 5 0004828 \N 73859 93 6.1.1.11 \N 73860 5 0004859 \N 73861 5 0060724 \N 73862 5 0010997 \N 73863 5 0003685 \N 73864 5 0001000 \N 73865 5 0008067 \N 73866 5 0001643 \N 73867 5 0001645 \N 73868 135 1285 \N 73869 5 0003949 \N 73870 93 5.3.1.16 \N 73871 129 15472 \N 73872 5 0003993 \N 73873 93 3.1.3.2 \N 73874 5 0019010 \N 73875 3 12135499 \N 73876 5 0010855 \N 73877 5 0046820 \N 73878 93 2.6.1.85 \N 73879 129 11675 \N 73880 5 0052739 \N 73881 103 R04034 \N 73882 5 0052714 \N 73883 5 0047727 \N 73884 93 5.4.99.13 \N 73885 129 13144 \N 73886 5 0051992 \N 73887 93 2.7.8.13 \N 73888 87 PHOSNACMURPENTATRANS-RXN \N 73889 5 0005203 \N 73890 5 0016443 \N 73891 3 15242644 \N 73892 5 0097108 \N 73893 3 10050855 \N 73894 5 0016847 \N 73895 5 0034100 \N 73896 93 4.4.1.14 \N 73897 129 21747 \N 73898 5 0015134 \N 73899 5 0032565 \N 73900 5 0071667 \N 73901 5 0031870 \N 73902 5 0071074 \N 73903 5 0005501 \N 73904 5 0050017 \N 73905 93 4.4.1.9 \N 73906 87 L-3-CYANOALANINE-SYNTHASE-RXN \N 73907 5 0005039 \N 73908 5 0001636 \N 73909 5 0050402 \N 73910 93 3.1.1.68 \N 73911 87 XYLONO-14-LACTONASE-RXN \N 73912 5 0050200 \N 73913 93 2.3.1.25 \N 73914 87 PLASMALOGEN-SYNTHASE-RXN \N 73915 5 0047519 \N 73916 93 1.1.99.25 \N 73917 87 1.1.99.25-RXN \N 73918 5 0043237 \N 73919 5 0047014 \N 73920 93 1.1.1.177 \N 73921 129 19776 \N 73922 5 0016986 \N 73923 5 0070191 \N 73924 3 17535911 \N 73925 3 19049972 \N 73926 5 0004591 \N 73927 93 1.2.4.2 \N 73928 5 0009974 \N 73929 3 8837513 \N 73930 5 0016884 \N 73931 5 0016003 \N 73932 3 12360532 \N 73933 5 0015241 \N 73934 5 0080133 \N 73935 3 17905869 \N 73936 5 0015576 \N 73937 5 0015587 \N 73938 5 0050207 \N 73939 93 1.14.99.19 \N 73940 87 PLASMANYLETHANOLAMINE-DESATURASE-RXN \N 73941 5 0050191 \N 73942 93 2.7.2.10 \N 73943 129 23335 \N 73944 5 0009979 \N 73945 87 RXN-1728 \N 73946 87 RXN-8304 \N 73947 87 RXN-8307 \N 73948 5 0010945 \N 73949 5 0004873 \N 73950 3 11278827 \N 73951 3 7624395 \N 73952 104 Asialoglycoprotein \N 73953 5 0008843 \N 73954 5 0047854 \N 73955 93 3.5.3.20 \N 73956 129 13600 \N 73957 5 0071913 \N 73958 5 0043824 \N 73959 93 1.2.1.71 \N 73960 129 10815 \N 73961 5 0052730 \N 73962 5 0070362 \N 73963 3 9485316 \N 73964 5 0048531 \N 73965 3 11551958 \N 73966 5 0003918 \N 73967 5 0051730 \N 73968 3 8428918 \N 73969 5 0017129 \N 73970 5 0050570 \N 73971 93 1.1.1.262 \N 73972 87 1.1.1.262-RXN \N 73973 5 0016929 \N 73974 3 10094048 \N 73975 3 11031248 \N 73976 5 0004609 \N 73977 93 4.1.1.65 \N 73978 129 20831 \N 73979 5 0043177 \N 73980 5 0005074 \N 73981 5 0009460 \N 73982 5 0030739 \N 73983 93 2.1.1.38 \N 73984 5 0008507 \N 73985 131 2.A.21.5.1 \N 73986 5 0004229 \N 73987 93 3.4.24.35 \N 73988 5 0015639 \N 73989 131 9.A.8.1.1 \N 73990 5 0004050 \N 73991 87 APYRASE-RXN \N 73992 5 0008837 \N 73993 93 5.1.1.7 \N 73994 129 15396 \N 73995 5 0046625 \N 73996 5 0034281 \N 73997 3 17141283 \N 73998 5 0051737 \N 73999 5 0047097 \N 74000 93 1.14.99.20 \N 74001 129 16748 \N 74002 5 0015263 \N 74003 5 0051015 \N 74004 5 0030429 \N 74005 93 3.7.1.3 \N 74006 5 0008848 \N 74007 5 0008850 \N 74008 5 0018823 \N 74009 93 4.2.1.100 \N 74010 129 21859 \N 74011 5 0005245 \N 74012 5 0010173 \N 74013 5 0015270 \N 74014 5 0004714 \N 74015 93 2.7.10.1 \N 74016 5 0022833 \N 74017 5 0018573 \N 74018 130 r0305 \N 74019 5 0031007 \N 74020 3 11336782 \N 74021 5 0033884 \N 74022 93 3.1.3.75 \N 74023 5 0050407 \N 74024 93 3.1.3.42 \N 74025 87 GLYCOGEN-SYNTHASE-D-PHOSPHATASE-RXN \N 74026 5 0005098 \N 74027 5 0004384 \N 74028 93 2.7.4.8 \N 74029 5 0030733 \N 74030 93 2.1.1.15 \N 74031 5 0031834 \N 74032 5 0035486 \N 74033 5 0034580 \N 74034 130 r0924 \N 74035 5 0004250 \N 74036 93 3.4.11.22 \N 74037 5 0016164 \N 74038 5 0018135 \N 74039 5 0031777 \N 74040 5 0008014 \N 74041 5 0001538 \N 74042 5 0033736 \N 74043 93 1.4.3.20 \N 74044 129 22551 \N 74045 5 0004485 \N 74046 93 6.4.1.4 \N 74047 129 13592 \N 74048 5 0002059 \N 74049 5 0015300 \N 74050 5 0031517 \N 74051 5 0003975 \N 74052 93 2.7.8.15 \N 74053 5 0033913 \N 74054 93 3.2.1.71 \N 74055 5 0001599 \N 74056 134 2263 \N 74057 3 8582288 \N 74058 5 0003880 \N 74059 3 8428937 \N 74060 5 0010427 \N 74061 3 17347412 \N 74062 5 0016423 \N 74063 5 0016424 \N 74064 5 0033814 \N 74065 93 2.3.1.176 \N 74066 5 0033935 \N 74067 93 3.2.1.120 \N 74068 5 0051381 \N 74069 5 0050179 \N 74070 93 4.1.2.26 \N 74071 129 21715 \N 74072 5 0045505 \N 74073 5 0031884 \N 74074 5 0043539 \N 74075 5 0008191 \N 74076 5 0034893 \N 74077 130 r1395 \N 74078 5 0033818 \N 74079 93 2.3.1.180 \N 74080 5 0047008 \N 74081 93 1.1.1.151 \N 74082 129 23715 \N 74083 5 0030066 \N 74084 5 2001078 \N 74085 5 0050087 \N 74086 93 1.1.2.2 \N 74087 87 MANNITOL-DEHYDROGENASE-CYTOCHROME-RXN \N 74088 5 0003705 \N 74089 5 0003956 \N 74090 93 2.4.2.31 \N 74091 5 0016840 \N 74092 5 0008525 \N 74093 5 0008944 \N 74094 93 3.4.24.70 \N 74095 5 0004013 \N 74096 93 3.3.1.1 \N 74097 5 0047602 \N 74098 93 4.1.1.4 \N 74099 129 19732 \N 74100 5 0047085 \N 74101 129 23743 \N 74102 5 0046025 \N 74103 93 2.1.1.132 \N 74104 5 0017032 \N 74105 5 0019770 \N 74106 5 0047033 \N 74107 93 1.1.1.231 \N 74108 129 21423 \N 74109 5 0016993 \N 74110 93 5.4.1.2 \N 74111 5 0047463 \N 74112 93 5.1.1.15 \N 74113 129 14816 \N 74114 5 0016801 \N 74115 5 0032813 \N 74116 5 0001129 \N 74117 5 0047181 \N 74118 93 2.3.1.151 \N 74119 87 2.3.1.151-RXN \N 74120 5 0047201 \N 74121 93 2.3.1.90 \N 74122 129 11419 \N 74123 5 0001631 \N 74124 5 0030693 \N 74125 5 0004199 \N 74126 3 10872455 \N 74127 5 0034019 \N 74128 5 0050362 \N 74129 93 2.6.1.27 \N 74130 87 TRYPTOPHAN-AMINOTRANSFERASE-RXN \N 74131 5 0043752 \N 74132 93 2.7.1.156 \N 74133 5 0050218 \N 74134 93 6.2.1.17 \N 74135 87 PROPIONATE--COA-LIGASE-RXN \N 74136 5 0022876 \N 74137 5 0050279 \N 74138 93 3.5.4.24 \N 74139 87 SEPIAPTERIN-DEAMINASE-RXN \N 74140 5 0047454 \N 74141 93 4.2.1.97 \N 74142 129 19772 \N 74143 5 0001590 \N 74144 134 2252 \N 74145 5 0047409 \N 74146 93 3.3.2.5 \N 74147 87 3.3.2.5-RXN \N 74148 5 0005145 \N 74149 5 0032090 \N 74150 5 0004218 \N 74151 93 3.4.22.27 \N 74152 5 0034070 \N 74153 5 0047145 \N 74154 93 2.1.1.109 \N 74155 87 2.1.1.109-RXN \N 74156 5 0047103 \N 74157 93 1.2.1.40 \N 74158 87 1.2.1.40-RXN \N 74159 5 0047696 \N 74160 93 2.7.11.15 \N 74161 87 BETA-ADRENERGIC-RECEPTOR-KINASE-RXN \N 74162 5 0019781 \N 74163 5 0019944 \N 74164 3 12646924 \N 74165 5 0051538 \N 74166 3 15952888 \N 74167 104 Iron-sulfur_cluster \N 74168 5 0005451 \N 74169 5 0003837 \N 74170 93 3.5.1.6 \N 74171 5 0047291 \N 74172 93 2.4.99.9 \N 74173 87 2.4.99.9-RXN \N 74174 5 0080115 \N 74175 3 18703495 \N 74176 5 0023027 \N 74177 5 0033431 \N 74178 5 0047603 \N 74179 93 3.1.2.11 \N 74180 129 15676 \N 74181 5 0047976 \N 74182 93 2.7.1.102 \N 74183 129 22799 \N 74184 5 0050396 \N 74185 93 1.1.1.221 \N 74186 129 22807 \N 74187 5 0016730 \N 74188 5 0045028 \N 74189 5 0047263 \N 74190 93 2.4.1.47 \N 74191 87 2.4.1.47-RXN \N 74192 5 0043028 \N 74193 5 0003795 \N 74194 5 0034549 \N 74195 130 r0827 \N 74196 5 0046715 \N 74197 3 12447444 \N 74198 5 0030144 \N 74199 93 2.4.1.155 \N 74200 5 0031893 \N 74201 5 0004970 \N 74202 5 0051746 \N 74203 3 15125655 \N 74204 5 0047704 \N 74205 93 2.8.2.14 \N 74206 87 BILE-SALT-SULFOTRANSFERASE-RXN \N 74207 5 0004721 \N 74208 5 0042286 \N 74209 93 5.4.3.8 \N 74210 129 14268 \N 74211 5 0008764 \N 74212 93 6.3.2.9 \N 74213 129 16432 \N 74214 5 0047307 \N 74215 93 2.6.1.46 \N 74216 129 12383 \N 74217 5 0016706 \N 74218 5 0010302 \N 74219 5 0033422 \N 74220 5 0005100 \N 74221 5 0030899 \N 74222 5 0001621 \N 74223 3 11196645 \N 74224 5 0008693 \N 74225 93 4.2.1.60 \N 74226 5 0015385 \N 74227 5 0015502 \N 74228 131 2.A.35.1.1 \N 74229 131 2.A.36.-.- \N 74230 5 0048031 \N 74231 5 0043740 \N 74232 93 3.5.4.29 \N 74233 129 22471 \N 74234 5 0015351 \N 74235 5 0004145 \N 74236 93 2.3.1.57 \N 74237 5 0008472 \N 74238 93 3.4.17.22 \N 74239 5 0008251 \N 74240 136 00700 \N 74241 5 0047401 \N 74242 93 3.12.1.1 \N 74243 129 21887 \N 74244 5 0003700 \N 74245 5 0000130 \N 74246 5 0004038 \N 74247 93 3.5.2.5 \N 74248 5 0034738 \N 74249 5 0046403 \N 74250 93 3.1.3.32 \N 74251 5 0016411 \N 74252 5 0018447 \N 74253 133 e0229 \N 74254 5 0018553 \N 74255 133 e0309 \N 74256 5 0033811 \N 74257 93 2.3.1.173 \N 74258 5 0015258 \N 74259 5 0047673 \N 74260 93 2.3.1.113 \N 74261 129 17560 \N 74262 5 0016418 \N 74263 5 0004122 \N 74264 93 4.2.1.22 \N 74265 5 0030881 \N 74266 5 0030629 \N 74267 5 0060228 \N 74268 3 4335615 \N 74269 5 0031418 \N 74270 5 0009499 \N 74271 5 0046978 \N 74272 5 0016896 \N 74273 5 0008985 \N 74274 93 1.2.2.2 \N 74275 5 0015058 \N 74276 5 0016523 \N 74277 5 0046932 \N 74278 131 3.A.2.1.2 \N 74279 5 0008969 \N 74280 5 0004350 \N 74281 5 0001513 \N 74282 93 1.2.1.41 \N 74283 129 19544 \N 74284 5 0070326 \N 74285 5 0015560 \N 74286 131 2.A.8.1.2 \N 74287 5 0050134 \N 74288 93 1.5.3.4 \N 74289 129 23203 \N 74290 5 0015189 \N 74291 5 0005293 \N 74292 5 0047794 \N 74293 93 1.3.1.43 \N 74294 87 CYCLOHEXADIENYL-DEHYDROGENASE-RXN \N 74295 5 0043996 \N 74296 5 0050274 \N 74297 93 2.4.1.172 \N 74298 129 11515 \N 74299 5 0001888 \N 74300 93 2.4.1.223 \N 74301 5 0052717 \N 74302 3 17875641 \N 74303 5 0042809 \N 74304 5 0045133 \N 74305 93 1.13.11.14 \N 74306 129 18480 \N 74307 5 0015025 \N 74308 5 0008267 \N 74309 5 0043530 \N 74310 3 11805111 \N 74311 5 0008459 \N 74312 5 0016405 \N 74313 5 0001609 \N 74314 5 0001610 \N 74315 5 0001611 \N 74316 5 0001612 \N 74317 5 0001613 \N 74318 5 0008501 \N 74319 5 0047577 \N 74320 93 1.1.1.61 \N 74321 129 23951 \N 74322 5 0005551 \N 74323 5 0015284 \N 74324 131 2.A.1.1.13 \N 74325 5 0080075 \N 74326 5 0005543 \N 74327 5 0005345 \N 74328 5 0052688 \N 74329 103 R06515 \N 74330 5 0030744 \N 74331 93 2.1.1.42 \N 74332 129 14592 \N 74333 5 0008421 \N 74334 93 3.5.1.55 \N 74335 5 0015115 \N 74336 88 48123 \N 74337 5 0004605 \N 74338 93 2.7.7.41 \N 74339 5 0047872 \N 74340 93 2.3.1.123 \N 74341 87 DOLICHOL-O-ACYLTRANSFERASE-RXN \N 74342 5 0010475 \N 74343 3 17462988 \N 74344 5 0080108 \N 74345 3 14871316 \N 74346 5 0046972 \N 74347 5 0034186 \N 74348 5 0070403 \N 74349 5 0002163 \N 74350 5 0034327 \N 74351 5 0005027 \N 74352 5 0047597 \N 74353 93 1.14.13.51 \N 74354 129 24327 \N 74355 5 0030369 \N 74356 3 7515813 \N 74357 5 0097005 \N 74358 5 0034025 \N 74359 93 6.3.1.12 \N 74360 5 0050153 \N 74361 93 1.1.1.66 \N 74362 129 20883 \N 74363 5 0008706 \N 74364 93 3.2.1.86 \N 74365 5 0043924 \N 74366 88 45906 \N 74367 104 Suramin \N 74368 5 0019864 \N 74369 5 0016764 \N 74370 5 0004399 \N 74371 93 1.1.1.23 \N 74372 5 0047875 \N 74373 93 1.1.3.16 \N 74374 129 11799 \N 74375 5 0050630 \N 74376 93 2.1.1.146 \N 74377 87 2.1.1.146-RXN \N 74378 5 0009918 \N 74379 5 0004681 \N 74380 5 0005183 \N 74381 94 //en.wikipedia.org/wiki/Gonadotropin-releasing_hormone \N 74382 3 11026571 \N 74383 5 0004635 \N 74384 93 3.5.4.19 \N 74385 129 20052 \N 74386 5 0004563 \N 74387 93 3.2.1.52 \N 74388 5 0034872 \N 74389 130 r1310 \N 74390 5 0047570 \N 74391 93 3.1.1.24 \N 74392 87 3-OXOADIPATE-ENOL-LACTONASE-RXN \N 74393 5 0019983 \N 74394 5 0016563 \N 74395 5 0003710 \N 74396 5 0015491 \N 74397 5 0004166 \N 74398 5 0004101 \N 74399 93 2.4.1.153 \N 74400 5 0018756 \N 74401 5 0052584 \N 74402 5 0043544 \N 74403 5 0052604 \N 74404 87 RXN-2561 \N 74405 3 12213958 \N 74406 5 0047470 \N 74407 93 5.4.99.15 \N 74408 87 5.4.99.15-RXN \N 74409 5 0005500 \N 74410 5 0018448 \N 74411 130 r0638 \N 74412 5 0016432 \N 74413 93 2.5.1.25 \N 74414 5 0045301 \N 74415 3 8253666 \N 74416 5 0043140 \N 74417 5 0004065 \N 74418 93 3.1.6.1 \N 74419 5 0008996 \N 74420 3 10722715 \N 74421 3 16854990 \N 74422 5 0016824 \N 74423 5 0031732 \N 74424 5 0047266 \N 74425 93 2.4.1.53 \N 74426 87 2.4.1.53-RXN \N 74427 5 0031685 \N 74428 5 0016671 \N 74429 5 0033958 \N 74430 93 3.2.2.15 \N 74431 5 0070137 \N 74432 5 0002173 \N 74433 5 0016463 \N 74434 93 3.6.3.5 \N 74435 5 0047163 \N 74436 93 2.3.1.114 \N 74437 129 21063 \N 74438 5 0019001 \N 74439 5 0043135 \N 74440 87 RXN-10969 \N 74441 3 12370170 \N 74442 5 0031405 \N 74443 5 0004624 \N 74444 5 0003910 \N 74445 93 6.5.1.1 \N 74446 5 0035650 \N 74447 3 21097499 \N 74448 5 0033154 \N 74449 5 0001640 \N 74450 5 0047005 \N 74451 93 1.1.1.147 \N 74452 87 1.1.1.147-RXN \N 74453 5 0047174 \N 74454 93 2.3.1.138 \N 74455 129 12439 \N 74456 5 0047778 \N 74457 93 3.1.2.16 \N 74458 87 CITRATE-PRO-3S-LYASE-THIOLESTERASE-RXN \N 74459 5 0016251 \N 74460 5 0003703 \N 74461 3 10384286 \N 74462 3 9774831 \N 74463 5 0050527 \N 74464 93 3.1.1.76 \N 74465 87 3.1.1.76-RXN \N 74466 5 0002112 \N 74467 5 0032139 \N 74468 5 0047736 \N 74469 93 5.1.3.11 \N 74470 87 CELLOBIOSE-EPIMERASE-RXN \N 74471 5 0050113 \N 74472 93 1.13.99.1 \N 74473 129 23699 \N 74474 5 0016921 \N 74475 93 3.4.19.6 \N 74476 5 0048248 \N 74477 3 10556837 \N 74478 5 0008821 \N 74479 5 0008844 \N 74480 93 3.1.22.4 \N 74481 5 0052681 \N 74482 129 25439 \N 74483 5 0047844 \N 74484 93 3.5.4.14 \N 74485 87 DEOXYCYTIDINE-DEAMINASE-RXN \N 74486 5 0035939 \N 74487 3 21290414 \N 74488 128 0000289 \N 74489 5 0034009 \N 74490 93 4.2.3.27 \N 74491 129 13372 \N 74492 5 0051526 \N 74493 5 0016941 \N 74494 5 0047697 \N 74495 93 1.5.1.26 \N 74496 129 21687 \N 74497 5 0015346 \N 74498 131 2.A.1.16.3 \N 74499 5 0008397 \N 74500 5 0015433 \N 74501 131 3.A.1.209.1 \N 74502 5 0030022 \N 74503 5 0015004 \N 74504 5 0042768 \N 74505 3 12177427 \N 74506 5 0050472 \N 74507 93 1.3.1.69 \N 74508 129 12760 \N 74509 5 0046566 \N 74510 3 11711071 \N 74511 5 0001587 \N 74512 5 0031783 \N 74513 5 0008171 \N 74514 5 0031493 \N 74515 5 0015933 \N 74516 5 0005045 \N 74517 5 0030544 \N 74518 5 0033999 \N 74519 93 4.2.2.19 \N 74520 5 0046592 \N 74521 93 1.5.3.11 \N 74522 3 1567380 \N 74523 5 0050317 \N 74524 93 2.7.1.101 \N 74525 129 15516 \N 74526 5 0071858 \N 74527 5 0016087 \N 74528 92 10.1002/(SICI)1520-6327(1997)35 \N 74529 5 0047169 \N 74530 93 2.3.1.130 \N 74531 129 13000 \N 74532 5 0005179 \N 74533 5 0009019 \N 74534 93 2.1.1.31 \N 74535 5 0033847 \N 74536 93 2.5.1.65 \N 74537 5 0004474 \N 74538 93 2.3.3.9 \N 74539 129 18184 \N 74540 5 0047890 \N 74541 93 1.1.1.234 \N 74542 87 FLAVANONE-4-REDUCTASE-RXN \N 74543 5 0015514 \N 74544 5 0015272 \N 74545 5 0003899 \N 74546 5 0000129 \N 74547 93 2.7.7.6 \N 74548 5 0050497 \N 74549 5 0018563 \N 74550 130 r0310 \N 74551 5 0005171 \N 74552 5 0047596 \N 74553 93 4.1.1.52 \N 74554 129 23115 \N 74555 5 0030701 \N 74556 93 2.4.2.37 \N 74557 5 0055104 \N 74558 5 0047151 \N 74559 93 2.1.1.74 \N 74560 87 2.1.1.74-RXN \N 74561 5 0008025 \N 74562 3 11883709 \N 74563 5 0042890 \N 74564 5 0050214 \N 74565 93 1.14.99.4 \N 74566 129 11987 \N 74567 5 0034437 \N 74568 5 0022848 \N 74569 5 0016506 \N 74570 5 0022836 \N 74571 5 0018679 \N 74572 130 r0235 \N 74573 5 0043816 \N 74574 136 00622 \N 74575 5 0009924 \N 74576 93 4.1.99.5 \N 74577 5 0018818 \N 74578 93 4.2.1.112 \N 74579 129 17888 \N 74580 5 0032399 \N 74581 137 PF00632 \N 74582 5 0008147 \N 74583 5 0051082 \N 74584 5 0018766 \N 74585 130 r0008 \N 74586 5 0035716 \N 74587 5 0001085 \N 74588 5 0003689 \N 74589 3 16082778 \N 74590 5 0004318 \N 74591 93 1.3.1.9 \N 74592 5 0047433 \N 74593 93 4.1.1.72 \N 74594 129 21111 \N 74595 5 0046539 \N 74596 93 2.1.1.8 \N 74597 129 19304 \N 74598 5 0033984 \N 74599 93 4.1.2.8 \N 74600 5 0035755 \N 74601 3 17028579 \N 74602 3 21397848 \N 74603 5 0005182 \N 74604 5 0050537 \N 74605 93 3.5.1.86 \N 74606 129 22879 \N 74607 5 0050054 \N 74608 93 1.13.11.43 \N 74609 129 21343 \N 74610 5 0015526 \N 74611 131 2.A.1.4.1 \N 74612 5 0045484 \N 74613 93 2.6.1.36 \N 74614 129 21203 \N 74615 5 0043811 \N 74616 136 01871 \N 74617 5 0033727 \N 74618 93 1.2.99.7 \N 74619 5 0043767 \N 74620 136 02553 \N 74621 3 15314242 \N 74622 138 Q8TUB8 \N 74623 5 0017080 \N 74624 5 0018795 \N 74625 130 r0621 \N 74626 5 0042912 \N 74627 5 0047889 \N 74628 93 1.7.7.2 \N 74629 87 FERREDOXIN--NITRATE-REDUCTASE-RXN \N 74630 5 0046974 \N 74631 5 0070042 \N 74632 5 0034531 \N 74633 130 r0766 \N 74634 5 0008908 \N 74635 93 3.3.2.1 \N 74636 129 11115 \N 74637 5 0032453 \N 74638 5 0046811 \N 74639 3 10482575 \N 74640 5 0043802 \N 74641 93 6.3.5.9 \N 74642 129 12547 \N 74643 5 0034527 \N 74644 130 r0790 \N 74645 5 0046875 \N 74646 5 0080043 \N 74647 5 0070878 \N 74648 3 15531877 \N 74649 3 15574589 \N 74650 5 0034485 \N 74651 5 0004158 \N 74652 93 1.3.3.1 \N 74653 129 15444 \N 74654 5 0033852 \N 74655 93 2.6.1.26 \N 74656 129 19136 \N 74657 5 0047863 \N 74658 93 2.5.1.28 \N 74659 129 11331 \N 74660 5 0008898 \N 74661 93 2.1.1.10 \N 74662 5 0005052 \N 74663 5 0015614 \N 74664 5 0004733 \N 74665 93 1.4.3.5 \N 74666 5 0043221 \N 74667 3 9640531 \N 74668 5 0047508 \N 74669 93 4.2.1.35 \N 74670 129 22335 \N 74671 5 0034811 \N 74672 130 r1132 \N 74673 5 0004693 \N 74674 5 0016537 \N 74675 3 9841670 \N 74676 5 0034452 \N 74677 5 0018604 \N 74678 130 r0566 \N 74679 5 0050244 \N 74680 93 1.2.3.6 \N 74681 129 21915 \N 74682 5 0033691 \N 74683 88 26667 \N 74684 94 //www.biology-online.org \N 74685 86 0721601465 \N 74686 5 0047435 \N 74687 93 4.1.1.75 \N 74688 129 11343 \N 74689 5 0008120 \N 74690 93 2.4.1.80 \N 74691 5 0008568 \N 74692 93 3.6.4.3 \N 74693 3 10910766 \N 74694 5 0042626 \N 74695 5 0033415 \N 74696 5 0034596 \N 74697 5 0031546 \N 74698 5 0008924 \N 74699 87 MALATE-DEHYDROGENASE-ACCEPTOR-RXN \N 74700 5 0034013 \N 74701 93 4.99.1.5 \N 74702 5 0033038 \N 74703 5 0030619 \N 74704 5 0047230 \N 74705 93 2.4.1.159 \N 74706 87 2.4.1.159-RXN \N 74707 5 0004774 \N 74708 93 6.2.1.- \N 74709 5 0047564 \N 74710 93 1.1.99.26 \N 74711 129 15908 \N 74712 5 0042132 \N 74713 93 3.1.3.11 \N 74714 5 0001792 \N 74715 5 0071837 \N 74716 112 IPR009071 \N 74717 3 18445004 \N 74718 5 0034338 \N 74719 5 0034807 \N 74720 130 r1131 \N 74721 5 0033682 \N 74722 5 0047919 \N 74723 93 1.1.1.132 \N 74724 129 21731 \N 74725 5 0033920 \N 74726 93 3.2.1.85 \N 74727 5 0004657 \N 74728 93 1.5.99.8 \N 74729 5 0071713 \N 74730 3 20190044 \N 74731 5 0051506 \N 74732 5 0016773 \N 74733 5 0042015 \N 74734 5 0047559 \N 74735 93 1.1.1.130 \N 74736 87 3-DEHYDRO-L-GULONATE-2-DEHYDROGENASE-RXN \N 74737 5 0003803 \N 74738 93 3.4.21.22 \N 74739 5 0015441 \N 74740 93 3.6.3.42 \N 74741 5 0023026 \N 74742 5 0050234 \N 74743 93 4.2.1.50 \N 74744 129 24515 \N 74745 5 0052735 \N 74746 3 21518804 \N 74747 3 21518805 \N 74748 5 0003779 \N 74749 5 0008488 \N 74750 3 18374194 \N 74751 5 0051477 \N 74752 5 0003783 \N 74753 5 0042708 \N 74754 5 0018470 \N 74755 130 r0014 \N 74756 5 0004286 \N 74757 93 3.4.21.94 \N 74758 5 0008809 \N 74759 87 CARNRACE-RXN \N 74760 5 0034347 \N 74761 5 0050003 \N 74762 93 2.1.1.54 \N 74763 129 11571 \N 74764 5 0033759 \N 74765 93 1.14.11.22 \N 74766 5 0004957 \N 74767 5 0009473 \N 74768 5 0015542 \N 74769 131 2.A.1.20.1 \N 74770 5 0047867 \N 74771 93 1.1.1.84 \N 74772 129 13324 \N 74773 5 0052655 \N 74774 87 BRANCHED-CHAINAMINOTRANSFERVAL-RXN \N 74775 5 0005381 \N 74776 5 0005382 \N 74777 5 0016033 \N 74778 5 0015927 \N 74779 5 2001083 \N 74780 5 0070853 \N 74781 3 15473855 \N 74782 5 0018462 \N 74783 93 1.1.1.257 \N 74784 129 24415 \N 74785 5 0072571 \N 74786 5 0051002 \N 74787 93 6.6 \N 74788 5 0047379 \N 74789 93 3.1.2.18 \N 74790 87 3.1.2.18-RXN \N 74791 5 0010490 \N 74792 5 0048408 \N 74793 5 0035274 \N 74794 5 0009013 \N 74795 93 1.2.1.16 \N 74796 5 0008956 \N 74797 93 3.4.15.5 \N 74798 5 0015143 \N 74799 5 0008789 \N 74800 93 4.2.1.7 \N 74801 129 15960 \N 74802 5 0009498 \N 74803 5 0010276 \N 74804 87 RXN-7683 \N 74805 5 0004030 \N 74806 93 1.2.1.5 \N 74807 5 0001616 \N 74808 3 17983853 \N 74809 5 0001141 \N 74810 3 20491932 \N 74811 3 20629756 \N 74812 5 0047798 \N 74813 93 3.2.1.54 \N 74814 87 CYCLOMALTODEXTRINASE-RXN \N 74815 5 0070678 \N 74816 3 12914940 \N 74817 5 0042292 \N 74818 5 0045142 \N 74819 3 10681538 \N 74820 5 0016174 \N 74821 93 1.6.3.1 \N 74822 5 0019964 \N 74823 5 0018711 \N 74824 130 r0243 \N 74825 5 0018720 \N 74826 130 r0155 \N 74827 5 0033451 \N 74828 5 0016888 \N 74829 5 0009044 \N 74830 93 3.2.1.37 \N 74831 5 0008649 \N 74832 5 0047907 \N 74833 93 5.2.1.6 \N 74834 129 21851 \N 74835 5 0070190 \N 74836 3 18981179 \N 74837 5 0004935 \N 74838 5 0030735 \N 74839 93 2.1.1.22 \N 74840 129 14208 \N 74841 5 0016520 \N 74842 3 12529933 \N 74843 5 0004706 \N 74844 5 0009021 \N 74845 93 2.1.1.35 \N 74846 5 0008756 \N 74847 93 6.2.1.26 \N 74848 5 0030272 \N 74849 5 0019006 \N 74850 93 6.3.3.2 \N 74851 129 10491 \N 74852 5 0047991 \N 74853 93 1.7.3.4 \N 74854 129 19972 \N 74855 5 0016307 \N 74856 93 2.7.1.- \N 74857 5 0043795 \N 74858 136 01506 \N 74859 5 0050068 \N 74860 93 2.1.3.8 \N 74861 129 17124 \N 74862 5 0047383 \N 74863 93 3.1.3.40 \N 74864 129 15780 \N 74865 5 0050504 \N 74866 93 2.4.1.217 \N 74867 129 13540 \N 74868 5 0003845 \N 74869 93 1.1.1.146 \N 74870 5 0004961 \N 74871 5 0070463 \N 74872 5 0015016 \N 74873 5 0004393 \N 74874 5 0015022 \N 74875 5 0051910 \N 74876 93 2.8.2.8 \N 74877 5 0043125 \N 74878 5 0015175 \N 74879 5 0072545 \N 74880 88 18186 \N 74881 5 0034056 \N 74882 3 15036253 \N 74883 3 17975005 \N 74884 5 0043792 \N 74885 93 3.5.2.18 \N 74886 129 17212 \N 74887 5 0050320 \N 74888 93 5.1.2.5 \N 74889 129 22215 \N 74890 5 0000739 \N 74891 5 0008953 \N 74892 93 3.5.1.11 \N 74893 5 0071567 \N 74894 5 0008993 \N 74895 93 2.7.1.5 \N 74896 5 0050393 \N 74897 93 5.3.3.3 \N 74898 129 10575 \N 74899 5 0035614 \N 74900 3 16568238 \N 74901 3 20455544 \N 74902 5 0019811 \N 74903 5 0034739 \N 74904 5 0015595 \N 74905 93 3.6.3.31 \N 74906 5 0047581 \N 74907 93 6.3.1.7 \N 74908 129 13856 \N 74909 5 0015216 \N 74910 5 0033432 \N 74911 5 0004422 \N 74912 93 2.4.2.8 \N 74913 5 0009481 \N 74914 5 0045183 \N 74915 5 0009884 \N 74916 5 0004000 \N 74917 93 3.5.4.4 \N 74918 5 0051635 \N 74919 5 0008367 \N 74920 5 0033794 \N 74921 93 1.21.4.3 \N 74922 5 0002060 \N 74923 5 0030798 \N 74924 93 2.1.1.144 \N 74925 129 14972 \N 74926 5 0015322 \N 74927 5 0016722 \N 74928 5 0050587 \N 74929 5 0030065 \N 74930 93 1.13.11.49 \N 74931 129 21407 \N 74932 5 0008563 \N 74933 93 3.6.3.48 \N 74934 5 0008321 \N 74935 5 0016220 \N 74936 5 0016713 \N 74937 5 0019775 \N 74938 5 0004698 \N 74939 5 0018631 \N 74940 130 r0036 \N 74941 5 0047348 \N 74942 93 2.7.7.39 \N 74943 129 13364 \N 74944 5 0008572 \N 74945 93 3.6.4.11 \N 74946 5 0033219 \N 74947 88 16199 \N 74948 5 0005048 \N 74949 5 0008249 \N 74950 5 0018587 \N 74951 5 0031825 \N 74952 5 0047721 \N 74953 93 6.3.2.20 \N 74954 129 14860 \N 74955 5 0050309 \N 74956 93 3.1.3.58 \N 74957 87 SUGAR-TERMINAL-PHOSPHATASE-RXN \N 74958 5 0015537 \N 74959 131 2.A.1.10.2 \N 74960 5 0004578 \N 74961 93 2.4.1.142 \N 74962 5 0032143 \N 74963 5 0016414 \N 74964 5 0004985 \N 74965 5 0050569 \N 74966 93 1.2.1.21 \N 74967 129 20004 \N 74968 5 0031714 \N 74969 5 0016627 \N 74970 5 0008484 \N 74971 5 0031726 \N 74972 5 0004864 \N 74973 5 0008986 \N 74974 93 2.7.9.2 \N 74975 129 11367 \N 74976 5 0001051 \N 74977 5 0017063 \N 74978 5 0034353 \N 74979 3 17612492 \N 74980 3 18202662 \N 74981 5 0004047 \N 74982 5 0034903 \N 74983 130 r1413 \N 74984 5 0004674 \N 74985 5 0004695 \N 74986 5 0004696 \N 74987 5 0004700 \N 74988 5 0004444 \N 74989 93 3.1.3.61 \N 74990 5 0016263 \N 74991 93 2.4.1.122 \N 74992 5 0050618 \N 74993 93 1.3.7.3 \N 74994 87 1.3.7.3-RXN \N 74995 5 0031881 \N 74996 5 0070097 \N 74997 5 0034768 \N 74998 3 12624761 \N 74999 5 0008030 \N 75000 3 18840757 \N 75001 5 0004357 \N 75002 93 6.3.2.2 \N 75003 129 13288 \N 75004 5 0047943 \N 75005 93 6.3.4.12 \N 75006 129 17120 \N 75007 5 0047589 \N 75008 93 2.6.1.48 \N 75009 129 10215 \N 75010 5 0047626 \N 75011 93 3.3.1.2 \N 75012 129 14648 \N 75013 5 0009378 \N 75014 3 9442895 \N 75015 5 0005114 \N 75016 3 11252892 \N 75017 5 0016597 \N 75018 5 0005004 \N 75019 5 0030791 \N 75020 93 2.1.1.137 \N 75021 5 0046576 \N 75022 3 8587995 \N 75023 3 8720076 \N 75024 5 0050080 \N 75025 93 4.1.1.9 \N 75026 87 MALONYL-COA-DECARBOXYLASE-RXN \N 75027 5 0045550 \N 75028 3 9492312 \N 75029 5 0030752 \N 75030 5 0030764 \N 75031 93 2.1.1.69 \N 75032 5 0004447 \N 75033 93 1.11.1.8 \N 75034 5 0016427 \N 75035 5 0034862 \N 75036 130 r1294 \N 75037 5 0047256 \N 75038 93 2.4.1.206 \N 75039 87 2.4.1.206-RXN \N 75040 5 0051675 \N 75041 93 3.2.1.57 \N 75042 5 0004336 \N 75043 93 3.2.1.46 \N 75044 5 0015081 \N 75045 5 0022816 \N 75046 5 0004289 \N 75047 5 0010174 \N 75048 5 0035380 \N 75049 5 0016659 \N 75050 5 0018613 \N 75051 130 r0409 \N 75052 5 0033775 \N 75053 93 1.14.13.91 \N 75054 129 14240 \N 75055 5 0004782 \N 75056 93 4.1.1.29 \N 75057 5 0050306 \N 75058 93 2.4.1.99 \N 75059 87 SUCROSE-1F-FRUCTOSYLTRANSFERASE-RXN \N 75060 5 0004971 \N 75061 3 10049997 \N 75062 3 8804111 \N 75063 5 0042166 \N 75064 5 0045486 \N 75065 93 1.14.11.9 \N 75066 5 0033204 \N 75067 3 11455963 \N 75068 5 0022854 \N 75069 5 0018831 \N 75070 130 r0666 \N 75071 5 0003720 \N 75072 5 0004515 \N 75073 93 2.7.7.18 \N 75074 5 0017016 \N 75075 5 0034039 \N 75076 5 0031845 \N 75077 5 0008767 \N 75078 93 5.4.99.9 \N 75079 5 0034546 \N 75080 130 r0819 \N 75081 5 0008351 \N 75082 5 0004713 \N 75083 5 0004718 \N 75084 93 2.7.10 \N 75085 5 0008658 \N 75086 5 0004614 \N 75087 93 5.4.2.2 \N 75088 5 0030759 \N 75089 93 2.1.1.84 \N 75090 129 18720 \N 75091 5 0043566 \N 75092 5 0033739 \N 75093 93 1.7.1.13 \N 75094 129 13412 \N 75095 5 0052621 \N 75096 5 0043789 \N 75097 93 2.7.7.65 \N 75098 129 24901 \N 75099 5 0047744 \N 75100 93 1.13.11.36 \N 75101 129 20452 \N 75102 5 0033443 \N 75103 5 0070119 \N 75104 5 0003772 \N 75105 5 0004677 \N 75106 5 0001626 \N 75107 3 18670432 \N 75108 5 0051743 \N 75109 3 10743659 \N 75110 5 0032033 \N 75111 5 0016945 \N 75112 5 0001067 \N 75113 5 0033925 \N 75114 93 3.2.1.96 \N 75115 5 0046989 \N 75116 5 0009024 \N 75117 93 2.7.1.144 \N 75118 5 0015254 \N 75119 5 0018781 \N 75120 139 bt0330 \N 75121 5 0004110 \N 75122 93 5.3.1.21 \N 75123 129 17864 \N 75124 5 0047148 \N 75125 93 2.1.1.21 \N 75126 129 15840 \N 75127 5 0015089 \N 75128 131 9.A.11.1.1 \N 75129 5 0047783 \N 75130 93 1.14.15.5 \N 75131 87 CORTICOSTERONE-18-MONOOXYGENASE-RXN \N 75132 5 0001031 \N 75133 5 0019168 \N 75134 87 2-OCTAPRENYLPHENOL-HYDROX-RXN \N 75135 5 0050144 \N 75136 93 2.4.2.6 \N 75137 87 NUCLEOSIDE-DEOXYRIBOSYLTRANSFERASE-RXN \N 75138 5 0047880 \N 75139 93 1.1.1.162 \N 75140 129 18008 \N 75141 5 0047341 \N 75142 93 2.7.7.30 \N 75143 129 13552 \N 75144 5 0061135 \N 75145 5 0005101 \N 75146 5 0010844 \N 75147 5 0005358 \N 75148 5 0071862 \N 75149 5 0010542 \N 75150 5 0034887 \N 75151 130 r1348 \N 75152 5 0004488 \N 75153 93 1.5.1.5 \N 75154 129 22815 \N 75155 5 0070004 \N 75156 5 0004112 \N 75157 5 0070577 \N 75158 3 17582821 \N 75159 5 0042943 \N 75160 5 0018634 \N 75161 130 r0742 \N 75162 5 0003725 \N 75163 5 0005527 \N 75164 5 0050166 \N 75165 93 1.1.1.106 \N 75166 129 23003 \N 75167 5 0009381 \N 75168 3 15192705 \N 75169 5 0000213 \N 75170 93 3.1.27.9 \N 75171 5 0050149 \N 75172 93 1.10.3.4 \N 75173 87 O-AMINOPHENOL-OXIDASE-RXN \N 75174 5 0018450 \N 75175 130 r0710 \N 75176 5 0008094 \N 75177 5 0004011 \N 75178 5 0004396 \N 75179 93 2.7.1.1 \N 75180 5 0004729 \N 75181 129 25579 \N 75182 5 0032810 \N 75183 3 11994399 \N 75184 5 0043788 \N 75185 136 00156 \N 75186 5 0030364 \N 75187 5 0018128 \N 75188 5 0004768 \N 75189 5 0016214 \N 75190 5 0043735 \N 75191 93 1.14.19.1 \N 75192 5 0016420 \N 75193 5 0080017 \N 75194 5 0015667 \N 75195 93 2.1.1.113 \N 75196 5 0019903 \N 75197 5 0070290 \N 75198 5 0043882 \N 75199 3 10903309 \N 75200 5 0016630 \N 75201 93 1.3.1.33 \N 75202 5 0004062 \N 75203 93 2.8.2.1 \N 75204 5 0019838 \N 75205 5 0005161 \N 75206 5 0050453 \N 75207 93 1.16.1.4 \N 75208 129 17484 \N 75209 5 0043837 \N 75210 136 00766 \N 75211 3 10612726 \N 75212 3 2803248 \N 75213 5 0016796 \N 75214 5 0043175 \N 75215 5 0047289 \N 75216 93 2.4.99.5 \N 75217 129 11667 \N 75218 5 0004075 \N 75219 93 6.3.4.14 \N 75220 5 0044105 \N 75221 136 03341 \N 75222 3 14736891 \N 75223 5 0000014 \N 75224 5 0005026 \N 75225 121 REACT_6872.1 \N 75226 5 0047219 \N 75227 93 2.4.1.127 \N 75228 129 11523 \N 75229 5 0034550 \N 75230 130 r0838 \N 75231 5 0034860 \N 75232 130 r1288 \N 75233 5 0047212 \N 75234 93 2.4.1.114 \N 75235 129 10239 \N 75236 5 0005068 \N 75237 5 0005069 \N 75238 3 10502414 \N 75239 3 20565848 \N 75240 5 0042925 \N 75241 5 0018524 \N 75242 5 0018797 \N 75243 130 r0033 \N 75244 5 0015424 \N 75245 5 0016664 \N 75246 5 0038021 \N 75247 3 9102398 \N 75248 104 Leptin_receptor \N 75249 5 0008712 \N 75250 93 5.1.3.20 \N 75251 129 17580 \N 75252 5 0050126 \N 75253 93 3.5.1.53 \N 75254 129 22287 \N 75255 5 0047350 \N 75256 93 2.7.7.44 \N 75257 129 16328 \N 75258 5 0005342 \N 75259 5 0047051 \N 75260 93 1.1.2.5 \N 75261 87 1.1.2.5-RXN \N 75262 5 0004895 \N 75263 5 0005163 \N 75264 5 0031073 \N 75265 3 950499 \N 75266 5 0004481 \N 75267 93 2.1.1.16 \N 75268 5 0034202 \N 75269 5 0047464 \N 75270 93 5.1.3.17 \N 75271 87 5.1.3.17-RXN \N 75272 5 0042805 \N 75273 5 0070225 \N 75274 87 RXN-8156 \N 75275 5 0005277 \N 75276 5 0009005 \N 75277 93 3.4.23.36 \N 75278 5 0031817 \N 75279 5 0003811 \N 75280 5 0015601 \N 75281 131 3.A.1.3.10 \N 75282 5 0030197 \N 75283 5 0001187 \N 75284 5 0019156 \N 75285 93 3.2.1.68 \N 75286 5 0008075 \N 75287 5 0000945 \N 75288 5 0033420 \N 75289 5 0018853 \N 75290 130 r0731 \N 75291 5 0015020 \N 75292 5 0003981 \N 75293 93 2.4.1.17 \N 75294 5 0033787 \N 75295 93 1.16.1.6 \N 75296 129 16116 \N 75297 5 0046555 \N 75298 93 3.1.1.72 \N 75299 5 0004551 \N 75300 93 3.6.1.9 \N 75301 5 0004550 \N 75302 93 2.7.4.6 \N 75303 5 0008159 \N 75304 5 0030370 \N 75305 3 11473836 \N 75306 5 0080070 \N 75307 5 0008533 \N 75308 93 3.4.24.21 \N 75309 5 0001639 \N 75310 5 0001092 \N 75311 5 0050027 \N 75312 93 1.1.1.128 \N 75313 87 L-IDONATE-2-DEHYDROGENASE-RXN \N 75314 5 0001409 \N 75315 5 0052626 \N 75316 87 RXN-10886 \N 75317 5 0031873 \N 75318 5 0009676 \N 75319 3 7568135 \N 75320 5 0090353 \N 75321 5 0018499 \N 75322 130 r0451 \N 75323 5 0050498 \N 75324 5 0019194 \N 75325 5 0019193 \N 75326 5 0008139 \N 75327 5 0000155 \N 75328 3 20223701 \N 75329 5 0001876 \N 75330 3 10586073 \N 75331 5 0016026 \N 75332 5 0008873 \N 75333 93 1.1.1.215 \N 75334 5 0034649 \N 75335 3 16223729 \N 75336 5 0050840 \N 75337 5 0050461 \N 75338 93 2.5.1.52 \N 75339 129 12696 \N 75340 5 0016817 \N 75341 5 0016691 \N 75342 5 0016955 \N 75343 5 0016956 \N 75344 5 0016957 \N 75345 5 0016958 \N 75346 93 1.11.1.10 \N 75347 5 0047272 \N 75348 93 2.4.1.78 \N 75349 87 2.4.1.78-RXN \N 75350 5 0031788 \N 75351 5 0015654 \N 75352 131 2.A.16.1.1 \N 75353 5 0004557 \N 75354 93 3.2.1.22 \N 75355 5 0018725 \N 75356 130 r0558 \N 75357 5 0004021 \N 75358 93 2.6.1.2 \N 75359 129 19456 \N 75360 5 0004031 \N 75361 93 1.2.3.1 \N 75362 5 0000405 \N 75363 5 0008417 \N 75364 5 0034555 \N 75365 130 r0844 \N 75366 5 0045516 \N 75367 5 0019205 \N 75368 5 0016879 \N 75369 93 6.3 \N 75370 5 0050604 \N 75371 93 1.14.99.37 \N 75372 129 14052 \N 75373 5 0000981 \N 75374 5 0009377 \N 75375 3 10368141 \N 75376 5 0035478 \N 75377 94 //www.britannica.com/EBchecked/topic/117461/chylomicron \N 75378 5 0001106 \N 75379 5 0004744 \N 75380 93 5.2.1.3 \N 75381 129 24127 \N 75382 5 0016150 \N 75383 5 0009881 \N 75384 5 0016284 \N 75385 5 0034784 \N 75386 130 r1033 \N 75387 5 0050067 \N 75388 93 1.13.12.2 \N 75389 129 14604 \N 75390 5 0017137 \N 75391 5 0005084 \N 75392 5 0033965 \N 75393 93 3.5.1.70 \N 75394 5 0008196 \N 75395 3 12429745 \N 75396 5 0001012 \N 75397 5 0017103 \N 75398 5 0003982 \N 75399 93 2.7.7.10 \N 75400 129 14212 \N 75401 5 0043336 \N 75402 3 11804598 \N 75403 5 0004242 \N 75404 5 0015118 \N 75405 5 0050172 \N 75406 93 1.13.12.9 \N 75407 129 10715 \N 75408 5 0015398 \N 75409 5 0047646 \N 75410 93 1.14.14.3 \N 75411 87 ALKANAL-MONOOXYGENASE-FMN-LINKED-RXN \N 75412 5 0008977 \N 75413 93 1.3.1.12 \N 75414 129 13872 \N 75415 5 0004026 \N 75416 93 2.3.1.84 \N 75417 5 0050562 \N 75418 93 6.1.1.25 \N 75419 87 6.1.1.25-RXN \N 75420 5 0047825 \N 75421 93 3.1.6.17 \N 75422 129 20340 \N 75423 5 0045015 \N 75424 3 1327759 \N 75425 5 0022866 \N 75426 131 5.B \N 75427 5 0019112 \N 75428 5 0051139 \N 75429 5 0042099 \N 75430 5 0070906 \N 75431 5 0050369 \N 75432 93 2.7.11.6 \N 75433 87 TYROSINE-3-MONOOXYGENASE-KINASE-RXN \N 75434 5 0033707 \N 75435 93 1.1.1.285 \N 75436 5 0010545 \N 75437 5 0016491 \N 75438 5 0008520 \N 75439 131 2.A.40.6.1 \N 75440 5 0008529 \N 75441 5 0030507 \N 75442 5 0000035 \N 75443 5 0015551 \N 75444 5 0016830 \N 75445 5 0004792 \N 75446 93 2.8.1.1 \N 75447 129 16884 \N 75448 5 0044101 \N 75449 136 03307 \N 75450 5 0018461 \N 75451 93 1.1.1.256 \N 75452 5 0060422 \N 75453 5 0042614 \N 75454 5 0030251 \N 75455 5 0033748 \N 75456 93 1.12.99.6 \N 75457 5 0004900 \N 75458 5 0047047 \N 75459 93 1.1.1.92 \N 75460 87 1.1.1.92-RXN \N 75461 5 0019976 \N 75462 5 0001634 \N 75463 5 0016522 \N 75464 5 0050037 \N 75465 93 1.1.1.113 \N 75466 129 15792 \N 75467 5 0008863 \N 75468 5 0018476 \N 75469 93 1.2.1.2 \N 75470 129 15988 \N 75471 5 0009457 \N 75472 5 0005550 \N 75473 5 0004171 \N 75474 5 0032422 \N 75475 3 9819411 \N 75476 5 0047983 \N 75477 93 6.3.2.23 \N 75478 129 17996 \N 75479 5 0008742 \N 75480 93 5.1.3.4 \N 75481 129 22371 \N 75482 5 2001067 \N 75483 5 0050599 \N 75484 5 0045441 \N 75485 93 1.14.20.1 \N 75486 129 20751 \N 75487 5 0047311 \N 75488 93 2.6.1.56 \N 75489 129 15500 \N 75490 5 0005325 \N 75491 5 0008562 \N 75492 93 3.6.3.47 \N 75493 5 0005127 \N 75494 5 0042731 \N 75495 137 PF00169 \N 75496 5 0047030 \N 75497 93 1.1.1.226 \N 75498 129 17432 \N 75499 5 0031559 \N 75500 5 0019135 \N 75501 93 1.14.99.29 \N 75502 5 0004380 \N 75503 93 2.4.1.40 \N 75504 5 0001102 \N 75505 5 0005192 \N 75506 5 0016643 \N 75507 5 0015522 \N 75508 131 2.A.1.2.9 \N 75509 5 0008312 \N 75510 3 6181418 \N 75511 5 0009388 \N 75512 5 0051909 \N 75513 87 ACETYLENECARBOXYLATE-HYDRATASE-RXN \N 75514 5 0015038 \N 75515 5 0072510 \N 75516 5 0080002 \N 75517 3 18385129 \N 75518 5 0004506 \N 75519 93 1.14.99.7 \N 75520 5 0015337 \N 75521 131 2.A.55.1.2 \N 75522 5 0031737 \N 75523 5 0051375 \N 75524 5 0004925 \N 75525 5 0008768 \N 75526 93 3.6.1.45 \N 75527 5 0051700 \N 75528 3 16233628 \N 75529 5 0050574 \N 75530 93 1.1.1.268 \N 75531 129 13252 \N 75532 5 0031704 \N 75533 5 0042569 \N 75534 3 12787050 \N 75535 5 0034618 \N 75536 5 0048307 \N 75537 93 1.7.7.1 \N 75538 5 0047375 \N 75539 93 3.1.1.58 \N 75540 87 3.1.1.58-RXN \N 75541 5 0004588 \N 75542 93 2.4.2.10 \N 75543 5 0016860 \N 75544 93 5.3.-.- \N 75545 5 0019785 \N 75546 5 0018629 \N 75547 93 1.14.12.16 \N 75548 5 0018730 \N 75549 93 2.8.3.12 \N 75550 5 0018595 \N 75551 130 r0716 \N 75552 5 0030291 \N 75553 5 0072586 \N 75554 5 0043720 \N 75555 87 R125-RXN \N 75556 3 13064 \N 75557 5 0003692 \N 75558 5 0048551 \N 75559 5 0034564 \N 75560 130 r0866 \N 75561 5 0016734 \N 75562 5 0005557 \N 75563 5 0030192 \N 75564 5 0033829 \N 75565 93 2.4.1.222 \N 75566 5 0019893 \N 75567 5 0018846 \N 75568 93 5.3.99.7 \N 75569 129 21607 \N 75570 5 0097100 \N 75571 94 //en.wikipedia.org/wiki/DNA_supercoil \N 75572 3 20723754 \N 75573 3 21345933 \N 75574 5 0050738 \N 75575 5 0004046 \N 75576 93 3.5.1.14 \N 75577 5 0015546 \N 75578 5 0047606 \N 75579 5 0046991 \N 75580 93 4.1.2 \N 75581 87 ACETONE-CYANHYDRIN-LYASE-RXN \N 75582 5 0043784 \N 75583 93 1.16.8.1 \N 75584 129 24303 \N 75585 5 0043110 \N 75586 5 0030362 \N 75587 5 0032394 \N 75588 5 0032557 \N 75589 5 0008681 \N 75590 87 2-OCTAPRENYL-6-METHOXYPHENOL-HYDROX-RXN \N 75591 5 0008467 \N 75592 93 2.8.2.23 \N 75593 5 0015227 \N 75594 88 17387 \N 75595 5 0034897 \N 75596 130 r1358 \N 75597 5 0035197 \N 75598 5 0001595 \N 75599 5 0034538 \N 75600 130 r0784 \N 75601 5 0042577 \N 75602 5 0034850 \N 75603 130 r1269 \N 75604 5 0051959 \N 75605 5 0000498 \N 75606 5 0018114 \N 75607 93 5.1.1.6 \N 75608 129 13916 \N 75609 5 0005242 \N 75610 3 14977398 \N 75611 5 0018708 \N 75612 93 2.1.1.9 \N 75613 5 0047542 \N 75614 93 1.3.99.8 \N 75615 129 21483 \N 75616 5 0047337 \N 75617 93 2.7.4.20 \N 75618 87 2.7.4.20-RXN \N 75619 5 0008229 \N 75620 5 0050063 \N 75621 93 2.7.11.29 \N 75622 87 LOW-DENSITY-LIPOPROTEIN-KINASE-RXN \N 75623 5 0009784 \N 75624 5 0047102 \N 75625 93 1.2.1.32 \N 75626 87 1.2.1.32-RXN \N 75627 5 0046572 \N 75628 87 RXN-9494 \N 75629 3 8784203 \N 75630 5 0001600 \N 75631 134 2265 \N 75632 5 0030599 \N 75633 93 3.1.1.11 \N 75634 5 0003825 \N 75635 93 2.4.1.15 \N 75636 5 0047306 \N 75637 93 2.6.1.41 \N 75638 129 23839 \N 75639 5 0004106 \N 75640 93 5.4.99.5 \N 75641 129 13900 \N 75642 5 0000258 \N 75643 131 2.A.26.1.1 \N 75644 5 0043843 \N 75645 93 2.7.1.147 \N 75646 136 01468 \N 75647 5 0047803 \N 75648 93 4.4.1.10 \N 75649 87 CYSTEINE-LYASE-RXN \N 75650 5 0018508 \N 75651 87 BENZOATE-CIS-DIOL-DEHYDROGENASE-RXN \N 75652 5 0042300 \N 75653 3 9746369 \N 75654 5 0018622 \N 75655 93 1.14.12.9 \N 75656 129 14692 \N 75657 5 0004210 \N 75658 5 0005014 \N 75659 5 0033929 \N 75660 93 3.2.1.102 \N 75661 5 0016616 \N 75662 5 0004127 \N 75663 93 2.7.4.14 \N 75664 5 0015925 \N 75665 5 0004340 \N 75666 93 2.7.1.2 \N 75667 5 0016839 \N 75668 5 0004347 \N 75669 93 5.3.1.9 \N 75670 5 0046935 \N 75671 5 0050637 \N 75672 93 2.3.1.161 \N 75673 129 18568 \N 75674 5 0031833 \N 75675 5 0050076 \N 75676 93 5.2.1.1 \N 75677 129 13172 \N 75678 5 0008263 \N 75679 5 0071992 \N 75680 5 0016210 \N 75681 93 2.3.1.74 \N 75682 5 0043047 \N 75683 5 0034951 \N 75684 130 r1026 \N 75685 5 0070053 \N 75686 5 0010854 \N 75687 5 0004301 \N 75688 93 3.3.2.10 \N 75689 5 0033944 \N 75690 93 3.2.1.146 \N 75691 5 0047447 \N 75692 93 4.3.1.20 \N 75693 87 4.3.1.20-RXN \N 75694 5 0030760 \N 75695 93 2.1.1.87 \N 75696 129 16896 \N 75697 5 0030612 \N 75698 87 RXN-10737 \N 75699 5 0050586 \N 75700 93 1.13.11.48 \N 75701 129 21575 \N 75702 5 0018582 \N 75703 93 1.13.11.38 \N 75704 5 0047282 \N 75705 93 2.4.2.27 \N 75706 129 24395 \N 75707 5 0019849 \N 75708 5 0032840 \N 75709 5 0047129 \N 75710 93 1.5.1.28 \N 75711 129 21595 \N 75712 5 0070273 \N 75713 5 0030767 \N 75714 93 2.1.1.97 \N 75715 129 17836 \N 75716 5 0019211 \N 75717 5 0005563 \N 75718 5 0005199 \N 75719 5 0042009 \N 75720 5 0043955 \N 75721 5 0043807 \N 75722 93 1.2.7.7 \N 75723 5 0018860 \N 75724 93 6.2.1.32 \N 75725 5 0047410 \N 75726 93 3.5.1.27 \N 75727 87 3.5.1.27-RXN \N 75728 5 0003820 \N 75729 5 0005301 \N 75730 5 0017170 \N 75731 3 14739985 \N 75732 5 0050682 \N 75733 5 0047338 \N 75734 93 2.7.7.11 \N 75735 87 2.7.7.11-RXN \N 75736 5 0030415 \N 75737 5 0050418 \N 75738 93 1.7.99.1 \N 75739 87 HYDROXYLAMINE-REDUCTASE-RXN \N 75740 5 0009674 \N 75741 131 2.A.38.3.1 \N 75742 5 0016861 \N 75743 5 0050385 \N 75744 93 4.3.2.3 \N 75745 129 11307 \N 75746 5 0033825 \N 75747 93 2.4.1.161 \N 75748 5 0015394 \N 75749 5 0016727 \N 75750 5 0001517 \N 75751 5 0000277 \N 75752 93 2.1.1.59 \N 75753 5 0015429 \N 75754 5 0004683 \N 75755 5 0004684 \N 75756 5 0004685 \N 75757 5 0004688 \N 75758 3 11264466 \N 75759 5 0018676 \N 75760 93 1.14.13.49 \N 75761 129 23435 \N 75762 5 0008690 \N 75763 93 2.7.7.38 \N 75764 5 0030750 \N 75765 93 2.1.1.53 \N 75766 129 15040 \N 75767 5 0004955 \N 75768 5 0033283 \N 75769 5 0052634 \N 75770 93 1.14.11.13 \N 75771 5 0018483 \N 75772 93 1.2.1.63 \N 75773 5 0004129 \N 75774 5 0035258 \N 75775 5 0070915 \N 75776 5 0043879 \N 75777 88 28905 \N 75778 5 0055056 \N 75779 5 0018421 \N 75780 3 9353330 \N 75781 5 0008384 \N 75782 93 2.7.11.10 \N 75783 5 0070644 \N 75784 3 17426122 \N 75785 5 0015563 \N 75786 5 0004379 \N 75787 5 0019106 \N 75788 93 2.3.1.97 \N 75789 5 0050413 \N 75790 93 2.1.2.7 \N 75791 129 10067 \N 75792 5 0044013 \N 75793 5 0047114 \N 75794 93 1.3.1.18 \N 75795 129 22251 \N 75796 5 0008416 \N 75797 3 11278886 \N 75798 5 0071111 \N 75799 93 3.1.4.52 \N 75800 129 24905 \N 75801 5 0001136 \N 75802 5 0010698 \N 75803 3 18690240 \N 75804 5 0004996 \N 75805 5 0032067 \N 75806 5 0015139 \N 75807 5 0033835 \N 75808 93 2.4.1.236 \N 75809 5 0034799 \N 75810 130 r1070 \N 75811 5 0004824 \N 75812 93 6.1.1.6 \N 75813 5 0034948 \N 75814 130 r0482 \N 75815 5 0008755 \N 75816 3 12045108 \N 75817 5 0004254 \N 75818 93 3.4.19.1 \N 75819 5 0034191 \N 75820 5 0050542 \N 75821 5 0004180 \N 75822 5 0004088 \N 75823 93 6.3.5.5 \N 75824 5 0005521 \N 75825 5 0004459 \N 75826 93 1.1.1.27 \N 75827 5 0004327 \N 75828 93 1.2.1.1 \N 75829 5 0043870 \N 75830 87 RXN-5183 \N 75831 5 0050549 \N 75832 93 4.2.1.103 \N 75833 129 18200 \N 75834 5 0015453 \N 75835 131 3.D.-.-.- \N 75836 5 0071889 \N 75837 4 cna \N 75838 112 IPR000308 \N 75839 3 15167810 \N 75840 3 19575580 \N 75841 140 000003237 \N 75842 5 0005122 \N 75843 3 2927509 \N 75844 5 0001158 \N 75845 5 0018509 \N 75846 93 1.3.1.56 \N 75847 5 0005315 \N 75848 5 0005317 \N 75849 5 0015293 \N 75850 5 0016744 \N 75851 5 0016745 \N 75852 5 0050259 \N 75853 93 1.1.1.115 \N 75854 129 11679 \N 75855 5 0004724 \N 75856 5 0019119 \N 75857 130 r0560 \N 75858 5 0001758 \N 75859 93 1.2.1.36 \N 75860 5 0047229 \N 75861 93 2.4.1.158 \N 75862 87 2.4.1.158-RXN \N 75863 5 0016899 \N 75864 5 0050692 \N 75865 5 0047929 \N 75866 93 4.2.1.39 \N 75867 129 21615 \N 75868 5 0004738 \N 75869 86 0716020094 \N 75870 5 0050642 \N 75871 93 2.3.1.166 \N 75872 129 18744 \N 75873 5 0046026 \N 75874 93 2.1.1.133 \N 75875 5 0004764 \N 75876 93 1.1.1.25 \N 75877 5 0019842 \N 75878 5 0032029 \N 75879 5 0034804 \N 75880 130 r1119 \N 75881 5 0015530 \N 75882 5 0003815 \N 75883 93 3.4.21.41 \N 75884 5 0047838 \N 75885 93 1.1.1.175 \N 75886 87 D-XYLOSE-1-DEHYDROGENASE-RXN \N 75887 5 0031861 \N 75888 5 0047387 \N 75889 93 3.1.4.13 \N 75890 129 17116 \N 75891 5 0050423 \N 75892 93 1.1.3.23 \N 75893 87 THIAMIN-OXIDASE-RXN \N 75894 5 0008792 \N 75895 93 4.1.1.19 \N 75896 129 17644 \N 75897 5 0050484 \N 75898 5 0004427 \N 75899 93 3.6.1.1 \N 75900 129 24579 \N 75901 5 0050298 \N 75902 93 1.13.11.30 \N 75903 87 STIZOLOBINATE-SYNTHASE-RXN \N 75904 5 0019141 \N 75905 93 1.1.1.214 \N 75906 5 0033800 \N 75907 93 2.1.1.150 \N 75908 5 0070736 \N 75909 5 0005147 \N 75910 5 0015605 \N 75911 5 0022809 \N 75912 5 0015096 \N 75913 5 0008319 \N 75914 5 0033951 \N 75915 93 3.2.1.156 \N 75916 5 0047933 \N 75917 93 2.7.1.106 \N 75918 129 16772 \N 75919 5 0047395 \N 75920 93 3.1.4.44 \N 75921 129 16504 \N 75922 5 0046994 \N 75923 5 0008129 \N 75924 93 3.4.22.14 \N 75925 5 0003944 \N 75926 93 3.1.4.45 \N 75927 5 0032405 \N 75928 5 0032183 \N 75929 5 0031865 \N 75930 5 0018542 \N 75931 130 r0452 \N 75932 5 0003833 \N 75933 3 12957543 \N 75934 5 0034830 \N 75935 130 r1174 \N 75936 5 0018729 \N 75937 93 2.8.3.1 \N 75938 5 0051265 \N 75939 3 15364929 \N 75940 5 0047425 \N 75941 93 3.5.4.22 \N 75942 129 10563 \N 75943 5 0033458 \N 75944 5 0047494 \N 75945 93 2.7.8.4 \N 75946 129 22659 \N 75947 5 0008982 \N 75948 5 0015455 \N 75949 5 0015456 \N 75950 93 2.7.1.69 \N 75951 131 4.A.-.-.- \N 75952 5 0032795 \N 75953 5 0047189 \N 75954 93 2.3.1.58 \N 75955 129 13468 \N 75956 5 0031755 \N 75957 5 0034796 \N 75958 130 r1060 \N 75959 5 0060589 \N 75960 5 0017092 \N 75961 5 0008808 \N 75962 5 0047685 \N 75963 93 2.8.2.3 \N 75964 87 ARYLAMINE-SULFOTRANSFERASE-RXN \N 75965 5 0004263 \N 75966 93 3.4.21.1 \N 75967 5 0031851 \N 75968 5 0047092 \N 75969 93 1.14.13.60 \N 75970 87 1.14.13.60-RXN \N 75971 5 0047137 \N 75972 93 1.7.1.12 \N 75973 87 1.7.1.12-RXN \N 75974 5 0018835 \N 75975 5 0009456 \N 75976 133 e0057 \N 75977 5 0016963 \N 75978 5 0034417 \N 75979 93 3.1.3.80 \N 75980 3 18413611 \N 75981 5 0015408 \N 75982 93 3.6.3.30 \N 75983 5 0047362 \N 75984 93 2.8.1.5 \N 75985 87 2.8.1.5-RXN \N 75986 5 0015220 \N 75987 5 0005306 \N 75988 5 0008379 \N 75989 5 0009031 \N 75990 87 RXN0-267 \N 75991 5 0015130 \N 75992 5 0004290 \N 75993 93 3.4.21.61 \N 75994 5 0048273 \N 75995 3 17827184 \N 75996 5 0047072 \N 75997 93 1.13.11.28 \N 75998 129 15372 \N 75999 5 0050551 \N 76000 93 4.2.3.15 \N 76001 129 16968 \N 76002 5 0048503 \N 76003 5 0003794 \N 76004 5 0045127 \N 76005 93 2.7.1.59 \N 76006 129 17420 \N 76007 5 0033893 \N 76008 93 3.1.26.6 \N 76009 5 0008933 \N 76010 3 10964424 \N 76011 5 0005135 \N 76012 5 0047811 \N 76013 93 2.3.2.14 \N 76014 129 23559 \N 76015 5 0001664 \N 76016 5 0008349 \N 76017 5 0015166 \N 76018 5 0044025 \N 76019 5 0032542 \N 76020 93 1.8.98.2 \N 76021 3 16102934 \N 76022 5 0019011 \N 76023 5 0008448 \N 76024 93 3.5.1.25 \N 76025 5 0097024 \N 76026 3 16014375 \N 76027 5 0005215 \N 76028 5 0005478 \N 76029 5 0001074 \N 76030 5 0010329 \N 76031 3 16839804 \N 76032 5 0034986 \N 76033 5 0060308 \N 76034 5 0047853 \N 76035 93 3.2.1.134 \N 76036 87 DIFRUCTOSE-ANHYDRIDE-SYNTHASE-RXN \N 76037 5 0034925 \N 76038 130 r0941 \N 76039 5 0047195 \N 76040 93 2.3.1.73 \N 76041 87 2.3.1.73-RXN \N 76042 5 0015373 \N 76043 131 2.A.21.5.- \N 76044 5 0016297 \N 76045 5 0010281 \N 76046 87 RXN-7902 \N 76047 5 0004432 \N 76048 3 11050418 \N 76049 5 0008672 \N 76050 93 4.1.2.20 \N 76051 5 0018778 \N 76052 130 r0382 \N 76053 5 0008745 \N 76054 93 3.5.1.28 \N 76055 5 0034235 \N 76056 5 0015246 \N 76057 5 0015573 \N 76058 5 0015582 \N 76059 5 0018716 \N 76060 130 r0525 \N 76061 5 0016501 \N 76062 5 0004959 \N 76063 5 0033732 \N 76064 93 1.3.3.11 \N 76065 129 10695 \N 76066 5 0030562 \N 76067 5 0030697 \N 76068 5 0034511 \N 76069 5 0034062 \N 76070 5 0016278 \N 76071 5 0048529 \N 76072 93 1.14.13.81 \N 76073 5 0043872 \N 76074 5 0015497 \N 76075 3 10986235 \N 76076 131 2.A.3.2.2 \N 76077 5 0008011 \N 76078 5 0080061 \N 76079 93 3.5.5.1 \N 76080 87 RXN-1404 \N 76081 5 0033980 \N 76082 93 4.1.1.82 \N 76083 129 20771 \N 76084 5 0008018 \N 76085 5 0047208 \N 76086 93 2.4.1.104 \N 76087 129 14328 \N 76088 5 0033754 \N 76089 93 1.13.11.52 \N 76090 5 0047086 \N 76091 93 1.14.13.54 \N 76092 87 1.14.13.54-RXN \N 76093 5 0004526 \N 76094 93 3.1.26.5 \N 76095 5 0033880 \N 76096 93 3.1.2.25 \N 76097 129 15340 \N 76098 5 0016524 \N 76099 3 10025961 \N 76100 5 0030545 \N 76101 5 0018658 \N 76102 93 1.14.13.1 \N 76103 5 0016805 \N 76104 5 0050590 \N 76105 93 1.14.11.20 \N 76106 87 1.14.11.20-RXN \N 76107 5 0046659 \N 76108 5 0002055 \N 76109 5 0015054 \N 76110 5 0047451 \N 76111 93 4.2.1.59 \N 76112 87 4.2.1.59-RXN \N 76113 5 0045509 \N 76114 5 0015328 \N 76115 5 0043718 \N 76116 93 1.1.1.291 \N 76117 129 15508 \N 76118 5 0050598 \N 76119 93 1.14.13.77 \N 76120 129 18952 \N 76121 5 0034581 \N 76122 130 r0925 \N 76123 5 0033440 \N 76124 5 0047081 \N 76125 93 1.14.12.4 \N 76126 87 1.14.12.4-RXN \N 76127 5 0016316 \N 76128 5 0004440 \N 76129 5 0008013 \N 76130 5 0008476 \N 76131 93 2.8.2.20 \N 76132 5 0032038 \N 76133 5 0032500 \N 76134 5 0004322 \N 76135 93 1.16.3.1 \N 76136 5 0046408 \N 76137 5 0043787 \N 76138 93 2.5.1.62 \N 76139 129 17320 \N 76140 5 0001537 \N 76141 5 0042043 \N 76142 5 0019963 \N 76143 3 18923512 \N 76144 5 0016653 \N 76145 5 0042283 \N 76146 87 RXN-5471 \N 76147 3 12480927 \N 76148 5 0033917 \N 76149 93 3.2.1.82 \N 76150 5 0031741 \N 76151 5 0001062 \N 76152 5 0047418 \N 76153 93 3.5.1.79 \N 76154 87 3.5.1.79-RXN \N 76155 5 0047185 \N 76156 93 2.3.1.44 \N 76157 129 18308 \N 76158 5 0051537 \N 76159 5 0070337 \N 76160 5 0016827 \N 76161 5 0030626 \N 76162 5 0018649 \N 76163 130 r0017 \N 76164 5 0043906 \N 76165 3 14663147 \N 76166 5 0034956 \N 76167 130 r1453 \N 76168 5 0043827 \N 76169 136 00706 \N 76170 3 14739239 \N 76171 5 0001857 \N 76172 5 0004741 \N 76173 5 0019906 \N 76174 93 3.1.3.43 \N 76175 5 0047294 \N 76176 93 2.5.1.41 \N 76177 129 23407 \N 76178 5 0050354 \N 76179 93 2.7.1.28 \N 76180 129 13944 \N 76181 5 0015369 \N 76182 131 2.A.19.2.- \N 76183 5 0042937 \N 76184 5 0008855 \N 76185 93 3.1.11.6 \N 76186 5 0017125 \N 76187 5 0019986 \N 76188 5 0033461 \N 76189 5 0018516 \N 76190 93 1.3.1.63 \N 76191 129 23079 \N 76192 5 0045569 \N 76193 3 9082980 \N 76194 5 0070523 \N 76195 5 0052600 \N 76196 87 RXN-6381 \N 76197 5 0015307 \N 76198 131 2.A.1.2.- \N 76199 131 2.A.1.3.- \N 76200 5 0047708 \N 76201 93 3.5.1.12 \N 76202 87 BIOTINIDASE-RXN \N 76203 5 0015362 \N 76204 131 2.A.47.1.4 \N 76205 5 0034560 \N 76206 130 r0861 \N 76207 5 0080019 \N 76208 3 16980563 \N 76209 5 0047295 \N 76210 93 2.5.1.42 \N 76211 129 18112 \N 76212 5 0050377 \N 76213 93 4.2.1.76 \N 76214 129 21503 \N 76215 5 0004096 \N 76216 5 0016952 \N 76217 5 0016953 \N 76218 93 1.11.1.6 \N 76219 5 0022877 \N 76220 5 0055100 \N 76221 3 15210937 \N 76222 5 0005497 \N 76223 5 0003799 \N 76224 5 0022897 \N 76225 5 0047402 \N 76226 93 3.2.1.107 \N 76227 87 3.2.1.107-RXN \N 76228 5 0017160 \N 76229 5 0015161 \N 76230 5 0001671 \N 76231 5 0016892 \N 76232 5 0050513 \N 76233 93 2.4.2.38 \N 76234 129 10615 \N 76235 5 0017169 \N 76236 5 0004143 \N 76237 93 2.7.1.107 \N 76238 5 0016161 \N 76239 93 3.2.1.2 \N 76240 5 0034632 \N 76241 5 0030985 \N 76242 5 0018660 \N 76243 93 1.14.13.3 \N 76244 5 0043916 \N 76245 3 16468998 \N 76246 5 0016702 \N 76247 5 0003922 \N 76248 93 6.3.5.2 \N 76249 5 0018031 \N 76250 5 0043560 \N 76251 3 12829233 \N 76252 5 0033722 \N 76253 93 1.2.1.15 \N 76254 5 0017033 \N 76255 5 0003936 \N 76256 5 0004006 \N 76257 5 0008729 \N 76258 131 3.A.3.-.- \N 76259 5 0050366 \N 76260 93 2.3.1.110 \N 76261 87 TYRAMINE-N-FERULOYLTRANSFERASE-RXN \N 76262 5 0047654 \N 76263 93 4.4.1.4 \N 76264 87 ALLIIN-LYASE-RXN \N 76265 5 0008518 \N 76266 5 0004149 \N 76267 93 2.3.1.61 \N 76268 5 0033250 \N 76269 5 0047267 \N 76270 93 2.4.1.54 \N 76271 129 12784 \N 76272 5 0003882 \N 76273 93 2.7.8.8 \N 76274 5 0003978 \N 76275 93 5.1.3.2 \N 76276 5 0017078 \N 76277 3 11121403 \N 76278 5 0047028 \N 76279 93 1.1.1.220 \N 76280 87 1.1.1.220-RXN \N 76281 5 0005362 \N 76282 131 2.A.21.3.- \N 76283 5 0033677 \N 76284 5 0004190 \N 76285 5 0016300 \N 76286 5 0016431 \N 76287 5 0015475 \N 76288 5 0050558 \N 76289 93 5.1.3.21 \N 76290 129 21231 \N 76291 5 0019792 \N 76292 5 0004620 \N 76293 5 0015331 \N 76294 5 0003680 \N 76295 3 2670564 \N 76296 5 0052691 \N 76297 93 5.4.99.30 \N 76298 129 28353 \N 76299 5 0047678 \N 76300 93 1.13.12.1 \N 76301 129 10551 \N 76302 5 0018557 \N 76303 130 r0422 \N 76304 5 0030784 \N 76305 93 2.1.1.116 \N 76306 5 0000826 \N 76307 5 0032031 \N 76308 5 0030975 \N 76309 5 0043024 \N 76310 5 0005452 \N 76311 5 0004169 \N 76312 93 2.4.1.109 \N 76313 5 0050137 \N 76314 93 1.11.1.2 \N 76315 129 15176 \N 76316 5 0052381 \N 76317 5 0004811 \N 76318 93 2.5.1.75 \N 76319 5 0031964 \N 76320 3 16299587 \N 76321 5 0015029 \N 76322 5 0043138 \N 76323 5 0051579 \N 76324 5 0001509 \N 76325 93 3.4.22.34 \N 76326 5 0047248 \N 76327 93 2.4.1.192 \N 76328 129 19332 \N 76329 5 0015185 \N 76330 5 0015507 \N 76331 5 0015063 \N 76332 5 0009703 \N 76333 93 1.7.1.1 \N 76334 5 0004855 \N 76335 93 1.17.3.2 \N 76336 5 0052667 \N 76337 103 R06868 \N 76338 87 RXN-5642 \N 76339 129 25322 \N 76340 5 0001734 \N 76341 5 0004100 \N 76342 93 2.4.1.16 \N 76343 5 0051428 \N 76344 5 0034569 \N 76345 130 r0893 \N 76346 5 0004019 \N 76347 93 6.3.4.4 \N 76348 129 15756 \N 76349 5 0005516 \N 76350 5 0016502 \N 76351 5 0031801 \N 76352 5 0008833 \N 76353 93 3.1.21.2 \N 76354 5 0010385 \N 76355 3 17242155 \N 76356 5 0008130 \N 76357 93 3.4.24.34 \N 76358 5 0047549 \N 76359 93 1.14.13.31 \N 76360 129 19460 \N 76361 5 0047242 \N 76362 93 2.4.1.181 \N 76363 87 2.4.1.181-RXN \N 76364 5 0003805 \N 76365 93 3.4.21.27 \N 76366 5 0034040 \N 76367 5 0008880 \N 76368 93 5.3.1.12 \N 76369 5 0050333 \N 76370 5 0048253 \N 76371 93 3.6.1.28 \N 76372 129 11747 \N 76373 5 0045543 \N 76374 5 0051075 \N 76375 3 12731872 \N 76376 5 0019957 \N 76377 5 0005079 \N 76378 3 10354567 \N 76379 5 0030405 \N 76380 5 0047995 \N 76381 93 1.1.1.237 \N 76382 87 HYDROXYPHENYLPYRUVATE-REDUCTASE-RXN \N 76383 5 0048029 \N 76384 88 35381 \N 76385 5 0010328 \N 76386 5 0005353 \N 76387 5 0015585 \N 76388 5 0019192 \N 76389 5 0018701 \N 76390 133 e0366 \N 76391 5 0003878 \N 76392 5 0046913 \N 76393 93 2.3.3.8 \N 76394 129 21163 \N 76395 5 0015111 \N 76396 5 0004492 \N 76397 93 4.1.1.41 \N 76398 5 0019766 \N 76399 5 0047922 \N 76400 93 1.13.11.4 \N 76401 129 18240 \N 76402 5 0046943 \N 76403 5 0033410 \N 76404 5 0034900 \N 76405 130 r1399 \N 76406 5 0030533 \N 76407 5 0019869 \N 76408 5 0001045 \N 76409 3 20670382 \N 76410 5 0005385 \N 76411 5 0004661 \N 76412 5 0018224 \N 76413 5 0047205 \N 76414 93 2.3.1.99 \N 76415 87 2.3.1.99-RXN \N 76416 5 0016716 \N 76417 5 0070251 \N 76418 3 10198260 \N 76419 5 0015099 \N 76420 5 0035594 \N 76421 5 0015000 \N 76422 5 0030741 \N 76423 93 2.1.1.40 \N 76424 129 17568 \N 76425 5 0051720 \N 76426 5 0033994 \N 76427 93 4.2.2.14 \N 76428 5 0042901 \N 76429 5 0016483 \N 76430 5 0033560 \N 76431 5 0035727 \N 76432 88 52288 \N 76433 5 0047355 \N 76434 93 2.7.8.12 \N 76435 87 2.7.8.12-RXN \N 76436 5 0004941 \N 76437 5 0022803 \N 76438 5 0042561 \N 76439 87 RXN-8434 \N 76440 3 10848960 \N 76441 5 0043365 \N 76442 5 0008862 \N 76443 93 1.97.1.4 \N 76444 5 0004185 \N 76445 5 0016829 \N 76446 5 0005207 \N 76447 5 0070513 \N 76448 137 PF00531 \N 76449 5 0034876 \N 76450 130 r1336 \N 76451 5 0008200 \N 76452 5 0052670 \N 76453 5 0043746 \N 76454 136 01450 \N 76455 5 0033429 \N 76456 5 0034801 \N 76457 130 r1069 \N 76458 5 0043772 \N 76459 136 01872 \N 76460 3 17308305 \N 76461 5 0047899 \N 76462 93 1.2.1.43 \N 76463 129 12003 \N 76464 5 0047638 \N 76465 93 1.14.13.32 \N 76466 129 10799 \N 76467 5 0032563 \N 76468 5 0000976 \N 76469 5 0047723 \N 76470 93 3.2.2.12 \N 76471 129 20472 \N 76472 5 0016979 \N 76473 5 0008916 \N 76474 5 0016978 \N 76475 93 6.3.4.- \N 76476 5 0019115 \N 76477 93 1.2.1.7 \N 76478 5 0052618 \N 76479 87 RXN-8080 \N 76480 5 0070991 \N 76481 5 0008663 \N 76482 93 3.1.4.16 \N 76483 5 0009464 \N 76484 5 0051734 \N 76485 5 0003865 \N 76486 93 1.3.99.5 \N 76487 5 0031842 \N 76488 5 0031748 \N 76489 5 0045703 \N 76490 93 1.1.-.- \N 76491 5 0070026 \N 76492 5 0015042 \N 76493 93 1.8.1.12 \N 76494 5 0009978 \N 76495 87 RXN1F-19 \N 76496 3 9778849 \N 76497 5 0004831 \N 76498 93 6.1.1.1 \N 76499 129 10223 \N 76500 5 0051184 \N 76501 5 0008496 \N 76502 93 3.2.1.101 \N 76503 5 0001155 \N 76504 5 0033409 \N 76505 5 0035647 \N 76506 87 RXN-9726 \N 76507 5 0016661 \N 76508 5 0008868 \N 76509 93 1.1.1.251 \N 76510 5 0004080 \N 76511 93 6.3.4.10 \N 76512 5 0008948 \N 76513 93 4.1.1.3 \N 76514 5 0033796 \N 76515 93 1.97.1.3 \N 76516 5 0005035 \N 76517 3 10209153 \N 76518 5 0050013 \N 76519 93 4.1.2.12 \N 76520 87 KETOPANTOALDOLASE-RXN \N 76521 5 0052713 \N 76522 5 0051717 \N 76523 87 3.1.3.62-RXN \N 76524 5 0004417 \N 76525 93 2.7.1.50 \N 76526 129 24215 \N 76527 5 0000030 \N 76528 5 0042767 \N 76529 5 0050158 \N 76530 93 1.3.1.15 \N 76531 129 14864 \N 76532 5 0030617 \N 76533 5 0008503 \N 76534 5 0070611 \N 76535 3 17898714 \N 76536 5 0047010 \N 76537 93 1.1.1.166 \N 76538 129 10519 \N 76539 5 0015645 \N 76540 93 6.2.1.20 \N 76541 5 0052613 \N 76542 87 RXN-8186 \N 76543 5 0033784 \N 76544 93 1.14.13.101 \N 76545 129 11423 \N 76546 5 0016158 \N 76547 93 3.1.3.8 \N 76548 5 0031218 \N 76549 93 3.2.1.89 \N 76550 5 0000049 \N 76551 5 0015657 \N 76552 5 0004054 \N 76553 93 2.7.3.3 \N 76554 129 22943 \N 76555 5 0051063 \N 76556 87 CDPREDUCT-RXN \N 76557 5 0015277 \N 76558 5 0047515 \N 76559 93 2.4.1.30 \N 76560 87 13-BETA-OLIGOGLUCAN-PHOSPHORYLASE-RXN \N 76561 5 0034787 \N 76562 130 r1040 \N 76563 5 0004596 \N 76564 93 2.3.1.88 \N 76565 5 0050563 \N 76566 93 6.2.1.34 \N 76567 87 6.2.1.34-RXN \N 76568 5 0050195 \N 76569 93 2.7.1.18 \N 76570 129 21219 \N 76571 5 0090411 \N 76572 5 0047499 \N 76573 5 0080083 \N 76574 5 0003914 \N 76575 5 0070364 \N 76576 5 0008452 \N 76577 5 0004365 \N 76578 5 0008246 \N 76579 5 0005211 \N 76580 5 0048030 \N 76581 5 0033295 \N 76582 5 0004884 \N 76583 5 0015267 \N 76584 5 0015249 \N 76585 5 0015268 \N 76586 131 1.-.-.-.- \N 76587 5 0004856 \N 76588 93 2.7.1.17 \N 76589 129 10967 \N 76590 5 0015090 \N 76591 131 9.A.9.1.1 \N 76592 5 0004456 \N 76593 93 4.2.1.12 \N 76594 129 17280 \N 76595 5 0004877 \N 76596 5 0033964 \N 76597 93 3.5.1.69 \N 76598 5 0033978 \N 76599 93 3.11.1.3 \N 76600 129 16676 \N 76601 5 0051777 \N 76602 87 RXN1F-159 \N 76603 5 0008904 \N 76604 93 2.7.1.119 \N 76605 129 23391 \N 76606 5 0031814 \N 76607 5 0033232 \N 76608 5 0031696 \N 76609 5 0015635 \N 76610 5 0001848 \N 76611 5 0018640 \N 76612 87 RXN-621 \N 76613 5 0034917 \N 76614 130 r0929 \N 76615 5 0033714 \N 76616 93 1.1.3.18 \N 76617 129 23183 \N 76618 5 0003959 \N 76619 5 0008468 \N 76620 5 0016660 \N 76621 93 1.6.99.1 \N 76622 5 0045502 \N 76623 5 0009037 \N 76624 3 11090626 \N 76625 5 0043761 \N 76626 136 01567 \N 76627 3 12562787 \N 76628 5 0005247 \N 76629 5 0018688 \N 76630 130 r0450 \N 76631 5 0004055 \N 76632 93 6.3.4.5 \N 76633 5 0050070 \N 76634 93 5.4.1.1 \N 76635 129 24359 \N 76636 5 0008847 \N 76637 93 3.1.27.6 \N 76638 5 0005149 \N 76639 5 0047623 \N 76640 93 3.5.4.17 \N 76641 87 ADENOSINE-PHOSPHATE-DEAMINASE-RXN \N 76642 5 0016694 \N 76643 5 0050467 \N 76644 93 4.2.3.7 \N 76645 129 18084 \N 76646 5 0009020 \N 76647 93 2.1.1.34 \N 76648 5 0034912 \N 76649 130 r1445 \N 76650 5 0015262 \N 76651 5 0035255 \N 76652 5 0005232 \N 76653 5 0050116 \N 76654 93 3.5.1.56 \N 76655 129 19520 \N 76656 5 0051738 \N 76657 5 0018620 \N 76658 93 1.14.12.7 \N 76659 129 17492 \N 76660 5 0004219 \N 76661 93 3.4.19.3 \N 76662 5 0008964 \N 76663 93 4.1.1.31 \N 76664 129 23075 \N 76665 5 0008917 \N 76666 93 2.4.1.56 \N 76667 5 0005095 \N 76668 5 0019959 \N 76669 5 0004360 \N 76670 93 2.6.1.16 \N 76671 129 13240 \N 76672 5 0051420 \N 76673 5 0000264 \N 76674 5 0097077 \N 76675 3 19928961 \N 76676 5 0015129 \N 76677 5 0008885 \N 76678 93 6.3.1.8 \N 76679 5 0008928 \N 76680 93 2.7.7.22 \N 76681 129 12908 \N 76682 5 0045430 \N 76683 93 5.5.1.6 \N 76684 5 0047441 \N 76685 93 4.1.2.29 \N 76686 129 13180 \N 76687 5 0047353 \N 76688 93 2.7.7.57 \N 76689 129 10579 \N 76690 5 0018820 \N 76691 93 4.2.1.69 \N 76692 129 23059 \N 76693 5 0015132 \N 76694 5 0050278 \N 76695 93 3.1.3.37 \N 76696 87 SEDOHEPTULOSE-BISPHOSPHATASE-RXN \N 76697 5 0009885 \N 76698 5 0016843 \N 76699 5 0000295 \N 76700 3 11566870 \N 76701 5 0003999 \N 76702 93 2.4.2.7 \N 76703 5 0034803 \N 76704 130 r1104 \N 76705 5 0004451 \N 76706 93 4.1.3.1 \N 76707 129 13248 \N 76708 5 0008447 \N 76709 93 1.10.3.3 \N 76710 5 0048404 \N 76711 5 0018527 \N 76712 93 1.4.3.12 \N 76713 5 0097153 \N 76714 5 0015092 \N 76715 131 9.A.10.1.1 \N 76716 5 0045236 \N 76717 5 0008493 \N 76718 5 0046424 \N 76719 3 8692910 \N 76720 3 9880351 \N 76721 5 0004858 \N 76722 5 0015001 \N 76723 5 0015044 \N 76724 93 1.18.1.1 \N 76725 5 0015375 \N 76726 5 0015656 \N 76727 5 0009466 \N 76728 5 0018484 \N 76729 93 1.2.1.64 \N 76730 5 0004788 \N 76731 93 2.7.6.2 \N 76732 5 0004090 \N 76733 93 1.1.1.184 \N 76734 5 0033237 \N 76735 5 0001635 \N 76736 3 12037140 \N 76737 5 0004797 \N 76738 93 2.7.1.21 \N 76739 5 0042878 \N 76740 5 0034905 \N 76741 130 r1437 \N 76742 5 0052731 \N 76743 5 0047927 \N 76744 93 1.14.11.12 \N 76745 87 GIBBERELLIN-44-DIOXYGENASE-RXN \N 76746 5 0051753 \N 76747 3 14726589 \N 76748 5 0035198 \N 76749 5 0008605 \N 76750 5 0030942 \N 76751 5 0016215 \N 76752 93 1.14.19.5 \N 76753 5 0030067 \N 76754 5 0050529 \N 76755 93 3.1.1.78 \N 76756 129 17504 \N 76757 5 0015650 \N 76758 131 2.A.14.1.1 \N 76759 5 0004372 \N 76760 5 0008842 \N 76761 93 2.7.1.143 \N 76762 5 0015568 \N 76763 5 0051213 \N 76764 92 10.1016/S0040-4020(03)00944-X \N 76765 5 0022892 \N 76766 5 0042957 \N 76767 5 0016648 \N 76768 5 0008534 \N 76769 5 0003907 \N 76770 5 0033161 \N 76771 5 0015203 \N 76772 5 0016828 \N 76773 5 0009973 \N 76774 3 5421934 \N 76775 5 0004262 \N 76776 93 3.4.21.48 \N 76777 5 0033199 \N 76778 5 0005340 \N 76779 5 0005341 \N 76780 5 0009899 \N 76781 93 4.2.3.19 \N 76782 129 22223 \N 76783 5 0052636 \N 76784 5 0035500 \N 76785 137 PF03166 \N 76786 5 0016668 \N 76787 5 0016654 \N 76788 5 0001168 \N 76789 5 0080081 \N 76790 5 0003809 \N 76791 93 3.4.21.5 \N 76792 5 0005154 \N 76793 5 0008185 \N 76794 5 0005384 \N 76795 5 0072496 \N 76796 5 0050479 \N 76797 93 1.14.16.5 \N 76798 87 GLYCERYL-ETHER-MONOOXYGENASE-RXN \N 76799 5 0031795 \N 76800 5 0018674 \N 76801 93 1.14.13.47 \N 76802 129 15132 \N 76803 5 0030696 \N 76804 5 0019158 \N 76805 93 2.7.1.7 \N 76806 5 0051416 \N 76807 3 15752755 \N 76808 5 0051787 \N 76809 5 0030776 \N 76810 93 2.1.1.115 \N 76811 5 0022869 \N 76812 5 0018566 \N 76813 130 r0324 \N 76814 5 0052601 \N 76815 87 RXN-9409 \N 76816 5 0046589 \N 76817 93 3.1.27.3 \N 76818 5 0047920 \N 76819 93 1.3.1.36 \N 76820 129 11379 \N 76821 5 0008727 \N 76822 87 GDPMANMANHYDRO-RXN \N 76823 5 0004410 \N 76824 93 2.3.3.14 \N 76825 129 12932 \N 76826 5 0050287 \N 76827 93 1.1.1.123 \N 76828 129 15004 \N 76829 5 0050374 \N 76830 93 4.1.1.67 \N 76831 129 19728 \N 76832 5 0005077 \N 76833 5 0001151 \N 76834 5 0034780 \N 76835 130 r0073 \N 76836 5 0003802 \N 76837 93 3.4.21.21 \N 76838 3 12496253 \N 76839 5 0008832 \N 76840 93 3.1.5.1 \N 76841 129 15196 \N 76842 5 0047702 \N 76843 93 5.4.3.3 \N 76844 129 21739 \N 76845 5 0016632 \N 76846 5 0019531 \N 76847 5 0016625 \N 76848 5 0010296 \N 76849 87 RXN-8409 \N 76850 3 16870359 \N 76851 5 0033778 \N 76852 93 1.14.13.95 \N 76853 129 10507 \N 76854 5 0031370 \N 76855 5 0047656 \N 76856 93 2.4.1.64 \N 76857 87 ALPHAALPHA-TREHALOSE-PHOSPHORYLASE-RXN \N 76858 5 0018645 \N 76859 93 1.14.13.69 \N 76860 5 0045290 \N 76861 93 1.1.1.117 \N 76862 5 0016509 \N 76863 93 1.1.1.211 \N 76864 5 0001145 \N 76865 5 0000062 \N 76866 5 0047821 \N 76867 141 1.4.3.15 \N 76868 93 1.4.3.7 \N 76869 87 D-GLUTAMATE-OXIDASE-RXN \N 76870 5 0042799 \N 76871 3 12086618 \N 76872 5 0008805 \N 76873 5 0018999 \N 76874 5 0047767 \N 76875 93 1.2.2.4 \N 76876 5 0030557 \N 76877 5 0008381 \N 76878 5 0005509 \N 76879 5 0042086 \N 76880 5 0008549 \N 76881 93 3.6.5.5 \N 76882 87 3.6.1.50-RXN \N 76883 5 0042881 \N 76884 5 0045523 \N 76885 5 0090302 \N 76886 5 0033773 \N 76887 93 1.14.13.89 \N 76888 5 0004466 \N 76889 93 1.3.99.13 \N 76890 5 0042291 \N 76891 5 0050192 \N 76892 93 3.1.3.20 \N 76893 129 21159 \N 76894 5 0050515 \N 76895 5 0008698 \N 76896 93 2.7.1.148 \N 76897 129 18440 \N 76898 5 0043756 \N 76899 93 3.5.1.90 \N 76900 129 23507 \N 76901 5 0010179 \N 76902 87 RXN-2981 \N 76903 5 0016656 \N 76904 93 1.6.5.4 \N 76905 5 0033815 \N 76906 93 2.3.1.177 \N 76907 5 0034639 \N 76908 5 0034521 \N 76909 130 r0773 \N 76910 5 0005555 \N 76911 5 0047826 \N 76912 93 5.4.3.4 \N 76913 129 18244 \N 76914 5 0015336 \N 76915 131 2.A.55.1.1 \N 76916 5 0050131 \N 76917 93 1.5.3.2 \N 76918 87 N-METHYL-L-AMINO-ACID-OXIDASE-RXN \N 76919 5 0043915 \N 76920 136 03019 \N 76921 3 16201757 \N 76922 5 0016167 \N 76923 5 0008265 \N 76924 3 11549764 \N 76925 5 0004275 \N 76926 93 3.4.21.9 \N 76927 5 0035100 \N 76928 5 0045027 \N 76929 5 0018734 \N 76930 130 r0016 \N 76931 5 0016700 \N 76932 5 0015623 \N 76933 5 0015409 \N 76934 93 3.6.3.34 \N 76935 5 0047535 \N 76936 93 1.1.1.165 \N 76937 129 19104 \N 76938 5 0031805 \N 76939 5 0042896 \N 76940 5 0047200 \N 76941 93 2.3.1.89 \N 76942 129 13088 \N 76943 5 0047609 \N 76944 93 3.5.1.62 \N 76945 129 23415 \N 76946 5 0000009 \N 76947 3 2644248 \N 76948 5 0008984 \N 76949 93 3.1.1.61 \N 76950 5 0050045 \N 76951 93 2.4.1.31 \N 76952 87 LAMINARIBIOSE-PHOSPHORYLASE-RXN \N 76953 5 0047795 \N 76954 93 1.1.1.174 \N 76955 87 CYCLOHEXANE-12-DIOL-DEHYDROGENASE-RXN \N 76956 5 0071949 \N 76957 5 0008297 \N 76958 5 0034989 \N 76959 5 0004107 \N 76960 93 4.2.3.5 \N 76961 129 21023 \N 76962 5 0004608 \N 76963 93 2.1.1.17 \N 76964 129 11167 \N 76965 5 0047705 \N 76966 93 1.3.3.5 \N 76967 129 20983 \N 76968 5 0000182 \N 76969 5 0008403 \N 76970 5 0030344 \N 76971 5 0043169 \N 76972 5 0050199 \N 76973 93 2.3.1.145 \N 76974 129 14564 \N 76975 5 0009385 \N 76976 87 NANE-RXN \N 76977 5 0047979 \N 76978 93 1.1.3.5 \N 76979 87 HEXOSE-OXIDASE-RXN \N 76980 5 0050390 \N 76981 93 4.1.1.14 \N 76982 129 18992 \N 76983 5 0050593 \N 76984 93 1.14.13.71 \N 76985 129 16652 \N 76986 5 0015065 \N 76987 3 8537335 \N 76988 5 0009486 \N 76989 87 RXN0-5268 \N 76990 5 0004573 \N 76991 93 3.2.1.106 \N 76992 5 0018584 \N 76993 130 r0359 \N 76994 5 0047975 \N 76995 93 2.4.2.15 \N 76996 87 GUANPHOSPHOR-RXN \N 76997 5 0003701 \N 76998 5 0016707 \N 76999 93 1.14.11.15 \N 77000 5 0080084 \N 77001 3 12711688 \N 77002 5 0047653 \N 77003 93 5.1.99.3 \N 77004 129 10807 \N 77005 5 0008425 \N 77006 3 9083048 \N 77007 5 0033715 \N 77008 93 1.1.3.28 \N 77009 5 0000701 \N 77010 5 0033592 \N 77011 5 0010428 \N 77012 5 0050781 \N 77013 3 12697029 \N 77014 5 0051500 \N 77015 3 14527667 \N 77016 5 0016883 \N 77017 5 0045306 \N 77018 5 0008945 \N 77019 93 3.4.21.83 \N 77020 5 0043008 \N 77021 5 0033781 \N 77022 93 1.14.13.98 \N 77023 129 22719 \N 77024 5 0004144 \N 77025 93 2.3.1.20 \N 77026 5 0050424 \N 77027 93 3.4.17.6 \N 77028 87 ALANINE-CARBOXYPEPTIDASE-RXN \N 77029 5 0047458 \N 77030 93 2.5.1.51 \N 77031 129 13120 \N 77032 5 0033790 \N 77033 5 0030266 \N 77034 93 1.1.1.24 \N 77035 5 0001619 \N 77036 5 0009494 \N 77037 5 0005031 \N 77038 5 0005032 \N 77039 5 0005033 \N 77040 94 //lookwayup.com/ \N 77041 5 0017112 \N 77042 5 0050035 \N 77043 93 1.1.3.11 \N 77044 129 17856 \N 77045 5 0016895 \N 77046 5 0008858 \N 77047 5 0042623 \N 77048 5 0003939 \N 77049 93 1.1.1.14 \N 77050 5 0052736 \N 77051 104 Beta-glucan \N 77052 5 0033434 \N 77053 5 0047027 \N 77054 93 1.1.1.217 \N 77055 129 16408 \N 77056 5 0042279 \N 77057 93 1.7.2.2 \N 77058 5 0047774 \N 77059 93 1.3.1.37 \N 77060 87 CIS-2-ENOYL-COA-REDUCTASE-NADPH-RXN \N 77061 5 0035489 \N 77062 5 0033924 \N 77063 93 3.2.1.95 \N 77064 5 0046409 \N 77065 3 11429408 \N 77066 3 11891223 \N 77067 5 0047184 \N 77068 5 0000507 \N 77069 93 2.3.1.23 \N 77070 87 2.3.1.23-RXN \N 77071 5 0001597 \N 77072 5 0004973 \N 77073 5 0018510 \N 77074 93 1.3.1.57 \N 77075 129 10083 \N 77076 5 0042586 \N 77077 93 3.5.1.88 \N 77078 5 0005134 \N 77079 5 0030515 \N 77080 5 0015191 \N 77081 5 0016994 \N 77082 93 1.3.1.54 \N 77083 5 0033437 \N 77084 5 0000310 \N 77085 5 0009043 \N 77086 93 2.4.2.22 \N 77087 5 0050661 \N 77088 5 0015489 \N 77089 5 0047168 \N 77090 93 2.3.1.126 \N 77091 129 20759 \N 77092 5 0008019 \N 77093 5 0030624 \N 77094 5 0000217 \N 77095 5 0047405 \N 77096 93 3.2.2.10 \N 77097 87 3.2.2.10-RXN \N 77098 5 0004073 \N 77099 93 1.2.1.11 \N 77100 129 24287 \N 77101 5 0030560 \N 77102 5 0033730 \N 77103 93 1.3.1.78 \N 77104 5 0070892 \N 77105 5 0051870 \N 77106 5 0047676 \N 77107 93 6.2.1.15 \N 77108 129 19716 \N 77109 5 0003905 \N 77110 5 0004036 \N 77111 93 3.2.2.21 \N 77112 5 0015663 \N 77113 5 0015664 \N 77114 5 0046608 \N 77115 3 11884677 \N 77116 5 0033448 \N 77117 5 0031220 \N 77118 3 10348846 \N 77119 5 0022842 \N 77120 5 0015327 \N 77121 131 2.A.3.8.5 \N 77122 5 0015364 \N 77123 131 2.A.29.2.3 \N 77124 5 0008670 \N 77125 93 1.3.1.34 \N 77126 5 0030601 \N 77127 93 3.4.11.6 \N 77128 5 0015250 \N 77129 5 0043184 \N 77130 5 0016314 \N 77131 93 3.1.3.67 \N 77132 5 0019789 \N 77133 5 0016930 \N 77134 5 0019949 \N 77135 5 0047105 \N 77136 93 1.2.1.47 \N 77137 87 1.2.1.47-RXN \N 77138 5 0008980 \N 77139 93 2.7.2.15 \N 77140 5 0008696 \N 77141 93 4.1.3.38 \N 77142 129 16204 \N 77143 5 0005316 \N 77144 131 2.A.20.2.2 \N 77145 5 0004611 \N 77146 93 4.1.1.- \N 77147 5 0047207 \N 77148 93 2.4.1.100 \N 77149 87 2.4.1.100-RXN \N 77150 5 0047747 \N 77151 5 0047477 \N 77152 93 6.2.1.7 \N 77153 87 CHOLATE--COA-LIGASE-RXN \N 77154 5 0008478 \N 77155 93 2.7.1.35 \N 77156 5 0005307 \N 77157 131 2.A.22.3.5 \N 77158 5 0031516 \N 77159 5 0043563 \N 77160 5 0045340 \N 77161 5 0031896 \N 77162 5 0001730 \N 77163 5 0043874 \N 77164 5 0033912 \N 77165 93 3.2.1.64 \N 77166 5 0004449 \N 77167 5 0004747 \N 77168 93 2.7.1.15 \N 77169 5 0047895 \N 77170 93 1.2.99.4 \N 77171 87 FORMALDEHYDE-DISMUTASE-RXN \N 77172 5 0033819 \N 77173 93 2.3.1.181 \N 77174 5 0016735 \N 77175 5 0003836 \N 77176 93 2.4.99.4 \N 77177 5 0001647 \N 77178 5 0051035 \N 77179 5 0033947 \N 77180 93 3.2.1.152 \N 77181 5 0047504 \N 77182 93 1.1.1.207 \N 77183 129 13920 \N 77184 5 0018468 \N 77185 93 1.1.99.8 \N 77186 5 0032547 \N 77187 5 0016754 \N 77188 93 2.3.1.92 \N 77189 129 12628 \N 77190 5 0050225 \N 77191 93 2.7.1.83 \N 77192 129 22451 \N 77193 5 0005115 \N 77194 5 0070089 \N 77195 5 0034610 \N 77196 5 0033419 \N 77197 5 0034840 \N 77198 130 r1185 \N 77199 5 0001075 \N 77200 5 0034479 \N 77201 3 18434318 \N 77202 5 0005110 \N 77203 114 000007719 \N 77204 5 0008801 \N 77205 93 5.4.2.6 \N 77206 129 20116 \N 77207 5 0047427 \N 77208 93 3.5.5.4 \N 77209 129 25310 \N 77210 5 0047817 \N 77211 93 3.5.3.10 \N 77212 129 12904 \N 77213 5 0031751 \N 77214 5 0015165 \N 77215 5 0005240 \N 77216 5 0070737 \N 77217 5 0016699 \N 77218 5 0016736 \N 77219 5 0019110 \N 77220 5 0032549 \N 77221 5 0008800 \N 77222 93 3.5.2.6 \N 77223 5 0047788 \N 77224 93 1.3.1.11 \N 77225 129 21447 \N 77226 5 0003853 \N 77227 93 1.3.99.12 \N 77228 5 0047905 \N 77229 93 4.1.2.22 \N 77230 87 FRUCTOSE-6-PHOSPHATE-PHOSPHOKETOLASE-RXN \N 77231 5 2001070 \N 77232 5 0050204 \N 77233 93 4.1.3.13 \N 77234 129 22035 \N 77235 5 0030158 \N 77236 93 2.4.2.26 \N 77237 5 0035259 \N 77238 5 0015525 \N 77239 5 0055043 \N 77240 5 0005144 \N 77241 5 0070888 \N 77242 3 11812799 \N 77243 5 0018600 \N 77244 130 r0709 \N 77245 5 0035460 \N 77246 3 18097099 \N 77247 3 20359483 \N 77248 5 0072590 \N 77249 3 20643647 \N 77250 5 0047493 \N 77251 93 2.7.8.3 \N 77252 129 16276 \N 77253 5 0016782 \N 77254 5 0004358 \N 77255 93 2.3.1.35 \N 77256 129 15352 \N 77257 5 0017051 \N 77258 3 9857081 \N 77259 5 0050255 \N 77260 93 1.1.1.56 \N 77261 129 20056 \N 77262 5 0050296 \N 77263 93 4.1.1.60 \N 77264 129 13888 \N 77265 5 0018422 \N 77266 3 10037765 \N 77267 5 0035401 \N 77268 5 0033855 \N 77269 93 2.6.1.80 \N 77270 129 22107 \N 77271 5 0030987 \N 77272 5 0033286 \N 77273 5 0034836 \N 77274 130 r1181 \N 77275 5 0015472 \N 77276 3 7906046 \N 77277 5 0070012 \N 77278 5 0050544 \N 77279 5 0047414 \N 77280 93 3.5.1.66 \N 77281 129 17680 \N 77282 5 0033401 \N 77283 5 0070363 \N 77284 5 0034604 \N 77285 5 0015462 \N 77286 5 0018530 \N 77287 93 1.5.3.6 \N 77288 129 10015 \N 77289 5 0000810 \N 77290 93 3.1.3.- \N 77291 87 RXN-11277 \N 77292 3 8567632 \N 77293 3 9452443 \N 77294 5 0071815 \N 77295 5 0008047 \N 77296 5 0004278 \N 77297 93 3.4.21.79 \N 77298 5 0008255 \N 77299 3 9020043 \N 77300 5 0005021 \N 77301 5 0050585 \N 77302 93 1.13.11.46 \N 77303 87 1.13.11.46-RXN \N 77304 5 0051018 \N 77305 5 0043743 \N 77306 136 01551 \N 77307 5 0080014 \N 77308 87 RXN-9631 \N 77309 5 0047079 \N 77310 93 1.14.11.10 \N 77311 129 23319 \N 77312 5 0031762 \N 77313 5 0047760 \N 77314 93 6.2.1.2 \N 77315 87 BUTYRATE--COA-LIGASE-RXN \N 77316 5 0030060 \N 77317 93 1.1.1.37 \N 77318 5 0015413 \N 77319 93 3.6.3.24 \N 77320 5 0045119 \N 77321 5 0047429 \N 77322 93 3.6.1.19 \N 77323 87 3.6.1.19-RXN \N 77324 5 0050648 \N 77325 5 0008388 \N 77326 5 0008902 \N 77327 93 2.7.1.49 \N 77328 129 23099 \N 77329 5 0055053 \N 77330 5 0050543 \N 77331 5 0016776 \N 77332 5 0030351 \N 77333 5 0009042 \N 77334 93 2.6.1.66 \N 77335 129 22915 \N 77336 5 0008675 \N 77337 93 4.1.2.14 \N 77338 5 0004305 \N 77339 93 2.7.1.82 \N 77340 129 13072 \N 77341 5 0008438 \N 77342 5 0035373 \N 77343 5 0051073 \N 77344 93 2.7.8.26 \N 77345 87 COBALAMINSYN-RXN \N 77346 5 0052665 \N 77347 5 0034857 \N 77348 130 r1287 \N 77349 5 0004999 \N 77350 5 0031858 \N 77351 5 0043239 \N 77352 5 0015444 \N 77353 93 3.6.3.2 \N 77354 5 0031784 \N 77355 5 0047304 \N 77356 93 2.6.1.37 \N 77357 129 17024 \N 77358 5 0001598 \N 77359 5 0047156 \N 77360 93 2.2.1.4 \N 77361 129 21507 \N 77362 5 0071209 \N 77363 3 12975319 \N 77364 5 0019843 \N 77365 5 0019116 \N 77366 94 //umbbd.ahc.umn.edu/ \N 77367 5 0001029 \N 77368 5 0004748 \N 77369 5 0016959 \N 77370 5 0016960 \N 77371 5 0016961 \N 77372 93 1.17.4.1 \N 77373 5 0047982 \N 77374 93 4.4.1.2 \N 77375 87 HOMOCYSTEINE-DESULFHYDRASE-RXN \N 77376 5 0019132 \N 77377 93 3.4.21.102 \N 77378 5 0047951 \N 77379 93 3.1.2.7 \N 77380 129 22711 \N 77381 5 0034790 \N 77382 130 r1043 \N 77383 5 0004944 \N 77384 5 0030409 \N 77385 5 0018793 \N 77386 130 r0546 \N 77387 5 0047100 \N 77388 87 1.2.1.13-RXN \N 77389 5 0042602 \N 77390 93 1.5.1.30 \N 77391 5 0018546 \N 77392 87 RXN-8815 \N 77393 5 0004993 \N 77394 5 0001585 \N 77395 5 0016609 \N 77396 88 28790 \N 77397 5 0050500 \N 77398 93 2.4.1.211 \N 77399 87 2.4.1.211-RXN \N 77400 5 0033224 \N 77401 5 0008648 \N 77402 5 0004992 \N 77403 5 0004778 \N 77404 93 3.1.2.3 \N 77405 129 11519 \N 77406 5 0050566 \N 77407 93 6.3.5.6 \N 77408 87 6.3.5.6-RXN \N 77409 5 0050699 \N 77410 3 14531730 \N 77411 5 0050339 \N 77412 93 3.6.1.39 \N 77413 87 THYMIDINE-TRIPHOSPHATASE-RXN \N 77414 5 0033782 \N 77415 93 1.14.13.99 \N 77416 129 16096 \N 77417 5 0052659 \N 77418 129 11395 \N 77419 5 0030387 \N 77420 3 11016445 \N 77421 5 0034945 \N 77422 130 r0987 \N 77423 5 0072317 \N 77424 5 0030160 \N 77425 3 10506216 \N 77426 5 0008396 \N 77427 3 10882791 \N 77428 5 0042608 \N 77429 5 0047539 \N 77430 93 3.2.1.112 \N 77431 87 2-DEOXYGLUCOSIDASE-RXN \N 77432 5 0004766 \N 77433 93 2.5.1.16 \N 77434 5 0035979 \N 77435 5 0005459 \N 77436 5 0047371 \N 77437 93 2.8.3.9 \N 77438 129 12964 \N 77439 5 0047065 \N 77440 93 1.21.3.5 \N 77441 129 22619 \N 77442 5 0003869 \N 77443 93 3.1.3.41 \N 77444 5 0047335 \N 77445 93 2.7.4.17 \N 77446 87 2.7.4.17-RXN \N 77447 5 0019948 \N 77448 5 0017115 \N 77449 3 10187858 \N 77450 5 0033821 \N 77451 93 2.4.1.27 \N 77452 5 0031770 \N 77453 5 0050550 \N 77454 93 4.2.3.14 \N 77455 87 4.2.3.14-RXN \N 77456 5 0080104 \N 77457 5 0017088 \N 77458 93 3.4.14.11 \N 77459 5 0016901 \N 77460 5 0035250 \N 77461 94 //www.chem.qmul.ac.uk/iubmb/enzyme/reaction/polysacc/UDPsugar.html \N 77462 5 0003823 \N 77463 5 0016496 \N 77464 5 0043834 \N 77465 136 01323 \N 77466 87 RXN-8102 \N 77467 5 0001524 \N 77468 5 0004470 \N 77469 5 0042903 \N 77470 3 12024216 \N 77471 3 12486003 \N 77472 5 0050108 \N 77473 93 3.1.7.3 \N 77474 87 MONOTERPENYL-PYROPHOSPHATASE-RXN \N 77475 5 0052579 \N 77476 93 1.3.1.81 \N 77477 87 RXN-5164 \N 77478 5 0008999 \N 77479 93 2.3.1.128 \N 77480 5 0009673 \N 77481 131 2.A.20.-.- \N 77482 5 0045155 \N 77483 5 0071950 \N 77484 5 0030275 \N 77485 137 PF00560 \N 77486 5 0004923 \N 77487 5 0004899 \N 77488 5 0043783 \N 77489 93 1.16.8 \N 77490 5 0005337 \N 77491 5 0015638 \N 77492 5 0047398 \N 77493 93 3.1.4.49 \N 77494 87 3.1.4.49-RXN \N 77495 5 0050631 \N 77496 93 2.1.1.147 \N 77497 129 14776 \N 77498 5 0015234 \N 77499 5 0015402 \N 77500 5 0018673 \N 77501 93 1.14.13.40 \N 77502 5 0004666 \N 77503 93 1.14.99.1 \N 77504 5 0042163 \N 77505 5 0031710 \N 77506 5 0008134 \N 77507 5 0042657 \N 77508 5 0008946 \N 77509 93 3.1.13.3 \N 77510 5 0016755 \N 77511 5 0047841 \N 77512 93 2.7.1.13 \N 77513 129 10791 \N 77514 5 0004395 \N 77515 93 2.1.1.114 \N 77516 5 0043840 \N 77517 136 01684 \N 77518 3 12670965 \N 77519 5 0042302 \N 77520 5 0032551 \N 77521 5 0003762 \N 77522 3 7600578 \N 77523 3 9325046 \N 77524 5 0016859 \N 77525 5 0030785 \N 77526 93 2.1.1.127 \N 77527 5 0050624 \N 77528 93 1.5.1.32 \N 77529 129 16412 \N 77530 5 0043022 \N 77531 5 0030376 \N 77532 5 0004802 \N 77533 93 2.2.1.1 \N 77534 4 fmc \N 77535 5 0050483 \N 77536 5 0016762 \N 77537 5 0030379 \N 77538 3 9756851 \N 77539 5 0031694 \N 77540 5 0003780 \N 77541 5 0003731 \N 77542 5 0070226 \N 77543 87 SULFFEOXIDO-RXN \N 77544 5 0070401 \N 77545 5 0032553 \N 77546 5 0047002 \N 77547 93 1.1.1.13 \N 77548 129 21359 \N 77549 5 0008733 \N 77550 93 5.3.1.4 \N 77551 129 14824 \N 77552 5 0005360 \N 77553 5 0034915 \N 77554 130 r0927 \N 77555 5 0033907 \N 77556 93 3.2.1.38 \N 77557 5 0033889 \N 77558 93 3.1.6.15 \N 77559 5 0005254 \N 77560 5 0050138 \N 77561 93 1.17.1.5 \N 77562 129 12239 \N 77563 5 0033828 \N 77564 93 2.4.1.213 \N 77565 129 12884 \N 77566 5 0004639 \N 77567 93 6.3.2.6 \N 77568 129 22631 \N 77569 5 0050101 \N 77570 93 3.5.1.61 \N 77571 129 13376 \N 77572 5 0008685 \N 77573 93 4.6.1.12 \N 77574 129 23867 \N 77575 5 0033743 \N 77576 93 1.8.4.12 \N 77577 129 24167 \N 77578 5 0001605 \N 77579 5 0031686 \N 77580 5 0008288 \N 77581 5 0047115 \N 77582 93 1.3.1.20 \N 77583 87 1.3.1.20-RXN \N 77584 5 0016635 \N 77585 5 0003969 \N 77586 5 0018507 \N 77587 93 1.3.1.49 \N 77588 129 16256 \N 77589 5 0017077 \N 77590 5 0015302 \N 77591 3 15738989 \N 77592 3 16179945 \N 77593 5 0031709 \N 77594 5 0023030 \N 77595 5 0008959 \N 77596 93 2.3.1.8 \N 77597 5 0050096 \N 77598 93 4.3.1.2 \N 77599 129 12832 \N 77600 5 0016684 \N 77601 5 0080109 \N 77602 87 RXN-7567 \N 77603 3 11607511 \N 77604 3 12430025 \N 77605 5 0043898 \N 77606 3 15715866 \N 77607 5 0033971 \N 77608 93 3.5.2.17 \N 77609 129 23739 \N 77610 5 0048257 \N 77611 3 10635319 \N 77612 5 0031368 \N 77613 93 3.4.17.16 \N 77614 5 0004937 \N 77615 5 0050099 \N 77616 93 1.5.99.5 \N 77617 129 22575 \N 77618 5 0017174 \N 77619 93 2.1.1.20 \N 77620 5 0018731 \N 77621 130 r0167 \N 77622 5 0043958 \N 77623 3 12603323 \N 77624 5 0043888 \N 77625 3 15356000 \N 77626 3 16494480 \N 77627 5 0030372 \N 77628 5 0047739 \N 77629 93 3.1.1.41 \N 77630 129 22599 \N 77631 5 0080068 \N 77632 5 0003896 \N 77633 5 0003897 \N 77634 5 0003898 \N 77635 5 0071885 \N 77636 3 20481588 \N 77637 5 0016863 \N 77638 93 5.3.3 \N 77639 5 0015222 \N 77640 5 0004528 \N 77641 93 3.1.4.1 \N 77642 5 0019887 \N 77643 5 0050825 \N 77644 5 0030410 \N 77645 93 2.5.1.43 \N 77646 129 16484 \N 77647 5 0070569 \N 77648 5 0080124 \N 77649 3 19304936 \N 77650 5 0042922 \N 77651 3 10899166 \N 77652 5 0031836 \N 77653 5 0080130 \N 77654 4 pmn_curators \N 77655 3 18394996 \N 77656 5 0000334 \N 77657 93 1.13.11.6 \N 77658 129 17956 \N 77659 5 0045310 \N 77660 5 0032036 \N 77661 5 0047223 \N 77662 93 2.4.1.146 \N 77663 87 2.4.1.146-RXN \N 77664 5 0031892 \N 77665 5 0004829 \N 77666 93 6.1.1.3 \N 77667 5 0001070 \N 77668 5 0047680 \N 77669 93 3.5.1.13 \N 77670 129 20300 \N 77671 5 0015513 \N 77672 5 0016874 \N 77673 93 6 \N 77674 5 0047110 \N 77675 93 1.2.1.58 \N 77676 129 10375 \N 77677 5 0047177 \N 77678 93 2.3.1.147 \N 77679 87 2.3.1.147-RXN \N 77680 5 0050032 \N 77681 93 4.2.1.90 \N 77682 129 23083 \N 77683 5 0004433 \N 77684 5 0047616 \N 77685 93 1.3.1.8 \N 77686 87 ACYL-COA-DEHYDROGENASE-NADP+-RXN \N 77687 5 0005322 \N 77688 5 0047125 \N 77689 93 1.5.1.21 \N 77690 5 0004216 \N 77691 93 3.4.22.38 \N 77692 5 0022858 \N 77693 5 0004008 \N 77694 93 3.6.3.4 \N 77695 5 0050575 \N 77696 93 1.1.1.269 \N 77697 129 21055 \N 77698 5 0032396 \N 77699 3 11858820 \N 77700 3 9597134 \N 77701 5 0005514 \N 77702 5 0031208 \N 77703 3 7958847 \N 77704 5 0003884 \N 77705 93 1.4.3.3 \N 77706 5 0019894 \N 77707 3 8606779 \N 77708 5 0003906 \N 77709 93 4.2.99.18 \N 77710 5 0005017 \N 77711 5 0047041 \N 77712 93 1.1.1.254 \N 77713 129 11559 \N 77714 5 0046914 \N 77715 5 0034536 \N 77716 130 r0782 \N 77717 5 0015057 \N 77718 5 0010655 \N 77719 5 0008309 \N 77720 5 0031831 \N 77721 5 0047469 \N 77722 93 5.4.99.14 \N 77723 129 19240 \N 77724 5 0008474 \N 77725 93 3.1.2.22 \N 77726 5 0051431 \N 77727 5 0031744 \N 77728 5 0003697 \N 77729 5 0003698 \N 77730 5 0003699 \N 77731 5 0047878 \N 77732 93 2.7.1.27 \N 77733 129 20711 \N 77734 5 0047779 \N 77735 93 6.2.1.18 \N 77736 129 21475 \N 77737 5 0004125 \N 77738 93 2.9.1.1 \N 77739 5 0047755 \N 77740 93 5.1.2.6 \N 77741 129 10823 \N 77742 5 0052631 \N 77743 3 17600137 \N 77744 3 9786850 \N 77745 5 0046995 \N 77746 5 0047368 \N 77747 93 2.8.2.7 \N 77748 129 14340 \N 77749 5 0016870 \N 77750 5 0018653 \N 77751 93 1.14.13.- \N 77752 5 0015548 \N 77753 5 0043404 \N 77754 5 0031636 \N 77755 86 0838577016 \N 77756 5 0010858 \N 77757 5 0070747 \N 77758 5 0035033 \N 77759 5 0009669 \N 77760 131 2.A.2.-.- \N 77761 131 2.A.2.4.1 \N 77762 5 0019973 \N 77763 5 0047684 \N 77764 93 2.4.1.71 \N 77765 87 ARYLAMINE-GLUCOSYLTRANSFERASE-RXN \N 77766 5 0030368 \N 77767 5 0004284 \N 77768 93 3.4.21.10 \N 77769 5 0004203 \N 77770 5 0033824 \N 77771 93 2.4.1.140 \N 77772 5 0047315 \N 77773 93 2.6.1.63 \N 77774 129 19252 \N 77775 5 0004086 \N 77776 93 6.3.4.16 \N 77777 5 0047857 \N 77778 93 1.3.3.7 \N 77779 129 12387 \N 77780 5 0047098 \N 77781 93 1.14.99.21 \N 77782 87 1.14.99.21-RXN \N 77783 5 0005049 \N 77784 5 0070037 \N 77785 5 0047124 \N 77786 93 1.4.1.11 \N 77787 129 19636 \N 77788 5 0045140 \N 77789 87 RXN3O-581 \N 77790 3 9405490 \N 77791 3 9614099 \N 77792 5 0052606 \N 77793 87 RXN-7676 \N 77794 5 0047804 \N 77795 93 4.4.1.13 \N 77796 87 CYSTEINE-S-CONJUGATE-BETA-LYASE-RXN \N 77797 5 0043848 \N 77798 136 00499 \N 77799 3 11818552 \N 77800 5 0008115 \N 77801 93 1.5.3.1 \N 77802 129 13316 \N 77803 5 0047812 \N 77804 93 2.3.1.36 \N 77805 87 D-AMINO-ACID-N-ACETYLTRANSFERASE-RXN \N 77806 5 0048487 \N 77807 5 0003787 \N 77808 5 0005159 \N 77809 5 0005067 \N 77810 5 0043333 \N 77811 3 9045837 \N 77812 5 0034890 \N 77813 130 r1386 \N 77814 5 0042888 \N 77815 5 0008234 \N 77816 5 0004220 \N 77817 5 0008189 \N 77818 5 0070524 \N 77819 5 0004567 \N 77820 93 3.2.1.25 \N 77821 5 0047954 \N 77822 93 3.1.3.19 \N 77823 129 13108 \N 77824 5 0034318 \N 77825 5 0043907 \N 77826 3 15886196 \N 77827 5 0035662 \N 77828 5 0008825 \N 77829 93 2.1.1.79 \N 77830 5 0047865 \N 77831 93 1.5.99.2 \N 77832 129 22499 \N 77833 5 0004983 \N 77834 5 0030946 \N 77835 5 0030523 \N 77836 5 0033771 \N 77837 93 1.14.13.87 \N 77838 129 15700 \N 77839 5 0008823 \N 77840 3 10510271 \N 77841 5 0004239 \N 77842 93 3.4.11.18 \N 77843 5 0035254 \N 77844 5 0031723 \N 77845 5 0003984 \N 77846 93 2.2.1.6 \N 77847 5 0005365 \N 77848 5 0015482 \N 77849 5 0035758 \N 77850 5 0050633 \N 77851 93 2.3.1.155 \N 77852 87 2.3.1.155-RXN \N 77853 5 0035173 \N 77854 5 0015341 \N 77855 131 2.A.4.1.4 \N 77856 131 2.A.4.2.3 \N 77857 5 0045181 \N 77858 93 1.4.1.13 \N 77859 93 1.4.1.14 \N 77860 5 0004409 \N 77861 93 4.2.1.36 \N 77862 129 15488 \N 77863 5 0018683 \N 77864 93 1.14.15.1 \N 77865 5 0003843 \N 77866 5 0009981 \N 77867 93 2.4.1.34 \N 77868 5 0051922 \N 77869 3 12730293 \N 77870 5 0003684 \N 77871 5 0047215 \N 77872 93 2.4.1.121 \N 77873 129 14924 \N 77874 5 0051411 \N 77875 5 0045514 \N 77876 5 0050253 \N 77877 93 3.1.1.21 \N 77878 87 RETINYL-PALMITATE-ESTERASE-RXN \N 77879 5 0047649 \N 77880 93 2.7.1.93 \N 77881 129 16940 \N 77882 5 0015440 \N 77883 93 3.6.3.43 \N 77884 5 0004715 \N 77885 93 2.7.10.2 \N 77886 5 0019207 \N 77887 5 0050605 \N 77888 93 1.15.1.2 \N 77889 87 1.15.1.2-RXN \N 77890 5 0047728 \N 77891 93 1.1.1.108 \N 77892 129 19268 \N 77893 5 0031827 \N 77894 5 0008811 \N 77895 93 2.3.1.28 \N 77896 129 18424 \N 77897 5 0052740 \N 77898 141 3.1.1.32 \N 77899 5 0004820 \N 77900 93 6.1.1.14 \N 77901 5 0047665 \N 77902 93 2.6.1.43 \N 77903 129 12483 \N 77904 5 0003974 \N 77905 93 5.1.3.7 \N 77906 5 0033808 \N 77907 93 2.3.1.170 \N 77908 5 0005352 \N 77909 131 2.A.1.1.11 \N 77910 5 0015503 \N 77911 3 11053405 \N 77912 131 2.A.37.1.1 \N 77913 131 2.A.37.1.2 \N 77914 5 0003941 \N 77915 93 4.3.1.17 \N 77916 5 0051425 \N 77917 137 PF02174.5 \N 77918 3 15924411 \N 77919 5 0035538 \N 77920 3 20001964 \N 77921 5 0080118 \N 77922 88 22921 \N 77923 3 10409637 \N 77924 3 17039368 \N 77925 5 0004896 \N 77926 5 0004907 \N 77927 5 0004590 \N 77928 93 4.1.1.23 \N 77929 129 11599 \N 77930 5 0008719 \N 77931 87 H2NTPEPIM-RXN \N 77932 5 0004027 \N 77933 93 2.8.2.2 \N 77934 5 0004200 \N 77935 5 0030248 \N 77936 5 0000247 \N 77937 87 RXN3O-203 \N 77938 3 8988026 \N 77939 5 0016818 \N 77940 5 0009678 \N 77941 131 3.A.10.-.- \N 77942 5 0034899 \N 77943 130 r1407 \N 77944 5 0018694 \N 77945 130 r0392 \N 77946 5 0017005 \N 77947 3 10521354 \N 77948 5 0050610 \N 77949 93 1.20.4.2 \N 77950 129 15972 \N 77951 5 0005010 \N 77952 5 0035731 \N 77953 3 10534443 \N 77954 5 0031176 \N 77955 5 0008852 \N 77956 93 3.1.11.1 \N 77957 5 0033264 \N 77958 93 3.4.24.69 \N 77959 5 0051287 \N 77960 5 0051288 \N 77961 5 0030229 \N 77962 5 0017128 \N 77963 5 0005220 \N 77964 5 0008095 \N 77965 3 8660280 \N 77966 104 Inositol_trisphosphate_receptor \N 77967 5 0005347 \N 77968 5 0005348 \N 77969 5 0003919 \N 77970 93 2.7.7.2 \N 77971 129 17240 \N 77972 5 0019902 \N 77973 5 0017084 \N 77974 87 PROLINE-MULTI \N 77975 5 0033705 \N 77976 93 1.1.1.281 \N 77977 5 0050617 \N 77978 93 1.3.7.2 \N 77979 87 1.3.7.2-RXN \N 77980 5 0042072 \N 77981 5 0015376 \N 77982 131 2.A.22.3.1 \N 77983 5 0005081 \N 77984 5 0051731 \N 77985 5 0052725 \N 77986 93 2.7.1.134 \N 77987 5 0050445 \N 77988 93 1.8.1.11 \N 77989 129 14884 \N 77990 5 0018824 \N 77991 93 5.4.4.1 \N 77992 130 r0304 \N 77993 5 0009010 \N 77994 93 1.1.1.140 \N 77995 5 0047642 \N 77996 93 2.4.1.162 \N 77997 87 ALDOSE-BETA-FRUCTOSYLTRANSFERASE-RXN \N 77998 5 0043178 \N 77999 5 0004783 \N 78000 93 1.8.1.2 \N 78001 5 0001095 \N 78002 5 0031544 \N 78003 5 0002170 \N 78004 5 0004842 \N 78005 5 0004840 \N 78006 5 0004841 \N 78007 3 9635407 \N 78008 5 0004531 \N 78009 93 3.1.22.1 \N 78010 5 0017061 \N 78011 93 2.4.2.28 \N 78012 5 0034863 \N 78013 130 r1270 \N 78014 5 0035013 \N 78015 5 0047633 \N 78016 93 2.7.3.10 \N 78017 129 15956 \N 78018 5 0004813 \N 78019 93 6.1.1.7 \N 78020 5 0016154 \N 78021 93 2.4.2.2 \N 78022 5 0022834 \N 78023 5 0072568 \N 78024 3 17161867 \N 78025 5 0000175 \N 78026 5 0008125 \N 78027 93 3.4.21.36 \N 78028 5 0009029 \N 78029 93 2.7.1.130 \N 78030 129 20703 \N 78031 5 0003674 \N 78032 5 0005554 \N 78033 5 0033225 \N 78034 5 0050185 \N 78035 93 3.1.1.52 \N 78036 129 18004 \N 78037 5 0015386 \N 78038 131 2.A.37.-.- \N 78039 5 0080046 \N 78040 5 0015135 \N 78041 5 0019782 \N 78042 5 0042392 \N 78043 3 11331102 \N 78044 5 0008190 \N 78045 5 0034929 \N 78046 130 r0949 \N 78047 5 0008711 \N 78048 5 0015297 \N 78049 5 0015242 \N 78050 5 0050264 \N 78051 93 1.10.3.6 \N 78052 129 11295 \N 78053 5 0008878 \N 78054 93 2.7.7.27 \N 78055 129 12123 \N 78056 5 0004156 \N 78057 93 2.5.1.15 \N 78058 5 0052726 \N 78059 5 0030751 \N 78060 93 2.1.1.65 \N 78061 129 18524 \N 78062 5 0008978 \N 78063 93 3.4.23.43 \N 78064 5 0018520 \N 78065 93 1.3.1.67 \N 78066 5 0052624 \N 78067 87 RXN-6723 \N 78068 87 RXN-7569 \N 78069 3 14617060 \N 78070 5 0000100 \N 78071 5 0015178 \N 78072 5 0047057 \N 78073 93 1.1.4.1 \N 78074 87 1.1.4.1-RXN \N 78075 5 0018630 \N 78076 130 r0081 \N 78077 5 0033990 \N 78078 93 4.2.1.108 \N 78079 129 17284 \N 78080 5 0047015 \N 78081 93 1.1.1.178 \N 78082 87 1.1.1.178-RXN \N 78083 5 0030337 \N 78084 3 7903401 \N 78085 3 8087839 \N 78086 5 0018493 \N 78087 93 1.2.99.5 \N 78088 129 19844 \N 78089 5 0008939 \N 78090 93 2.4.2.21 \N 78091 129 11199 \N 78092 5 0047518 \N 78093 93 3.2.2.13 \N 78094 129 12868 \N 78095 5 0047481 \N 78096 93 6.3.2.16 \N 78097 87 6.3.2.16-RXN \N 78098 5 0004835 \N 78099 93 6.3.2.25 \N 78100 5 0051997 \N 78101 87 RXN-6201 \N 78102 5 0004151 \N 78103 93 3.5.2.3 \N 78104 129 24299 \N 78105 5 0005502 \N 78106 88 16066 \N 78107 5 0016985 \N 78108 93 3.2.1.78 \N 78109 5 0017064 \N 78110 5 0017073 \N 78111 3 15952893 \N 78112 5 0015117 \N 78113 5 0004207 \N 78114 5 0050086 \N 78115 93 1.1.1.67 \N 78116 87 MANNITOL-2-DEHYDROGENASE-RXN \N 78117 5 0017153 \N 78118 5 0005065 \N 78119 5 0034071 \N 78120 5 0030339 \N 78121 93 3.1.1.67 \N 78122 5 0018769 \N 78123 130 r0311 \N 78124 5 0042054 \N 78125 93 2.1.1.43 \N 78126 5 0045352 \N 78127 5 0047320 \N 78128 93 2.6.1.72 \N 78129 129 15592 \N 78130 5 0015086 \N 78131 5 0034002 \N 78132 93 4.2.3.20 \N 78133 129 10943 \N 78134 5 0001066 \N 78135 5 0004950 \N 78136 135 1280 \N 78137 5 0033549 \N 78138 5 0034018 \N 78139 93 5.3.3.15 \N 78140 5 0035091 \N 78141 3 11395417 \N 78142 5 0016417 \N 78143 5 0008909 \N 78144 93 5.4.4.2 \N 78145 129 18988 \N 78146 5 0001760 \N 78147 93 4.1.1.45 \N 78148 129 16560 \N 78149 5 0008760 \N 78150 93 2.5.1.7 \N 78151 129 18684 \N 78152 5 0022875 \N 78153 5 0008538 \N 78154 3 10428771 \N 78155 5 0035613 \N 78156 5 0034017 \N 78157 5 0043832 \N 78158 93 5.3.3.14 \N 78159 136 02508 \N 78160 5 0008961 \N 78161 3 8051048 \N 78162 5 0034927 \N 78163 130 r0943 \N 78164 5 0033786 \N 78165 87 RXN0-4342 \N 78166 5 0047881 \N 78167 93 1.1.1.148 \N 78168 87 ESTRADIOL-17-ALPHA-DEHYDROGENASE-RXN \N 78169 5 0033863 \N 78170 93 2.7.4.23 \N 78171 129 20112 \N 78172 5 0015259 \N 78173 5 0001512 \N 78174 93 1.10.99.2 \N 78175 5 0015106 \N 78176 5 0018472 \N 78177 130 r0485 \N 78178 5 0051745 \N 78179 93 1.17.1.2 \N 78180 5 0043411 \N 78181 5 0080071 \N 78182 5 0008687 \N 78183 93 1.13.11.15 \N 78184 129 15636 \N 78185 5 0050164 \N 78186 93 1.2.1.52 \N 78187 129 21403 \N 78188 5 0050028 \N 78189 93 3.5.2.11 \N 78190 129 21391 \N 78191 5 0035870 \N 78192 3 21548881 \N 78193 129 28342 \N 78194 5 0016650 \N 78195 5 0047329 \N 78196 93 2.7.1.62 \N 78197 87 2.7.1.62-RXN \N 78198 5 0035527 \N 78199 129 26441 \N 78200 5 0003957 \N 78201 93 1.6.1.1 \N 78202 87 PYRNUTRANSHYDROGEN-RXN \N 78203 5 0060590 \N 78204 5 0005001 \N 78205 5 0033885 \N 78206 93 3.1.3.76 \N 78207 129 16540 \N 78208 5 0008462 \N 78209 93 3.4.21.92 \N 78210 5 0034541 \N 78211 130 r0806 \N 78212 5 0047298 \N 78213 93 2.6.1.22 \N 78214 129 13996 \N 78215 5 0043779 \N 78216 136 02112 \N 78217 87 RXN-8763 \N 78218 5 0033706 \N 78219 93 1.1.1.282 \N 78220 5 0018724 \N 78221 130 r0562 \N 78222 5 0004133 \N 78223 5 0043714 \N 78224 3 9864346 \N 78225 5 0008350 \N 78226 5 0043430 \N 78227 5 0005085 \N 78228 5 0008433 \N 78229 5 0016219 \N 78230 5 0019839 \N 78231 5 0052661 \N 78232 129 15936 \N 78233 5 0004005 \N 78234 5 0004119 \N 78235 5 0050178 \N 78236 93 5.3.2.1 \N 78237 87 PHENYLPYRUVATE-TAUTOMERASE-RXN \N 78238 5 0000026 \N 78239 3 10521541 \N 78240 5 0047627 \N 78241 93 3.6.2.1 \N 78242 129 17044 \N 78243 5 0004099 \N 78244 93 3.5.1.41 \N 78245 5 0015303 \N 78246 5 0019980 \N 78247 5 0015535 \N 78248 131 2.A.1.7.1 \N 78249 5 0018452 \N 78250 130 r0427 \N 78251 5 0002058 \N 78252 5 0015518 \N 78253 131 2.A.1.1.2 \N 78254 5 0045094 \N 78255 3 10653850 \N 78256 5 0043275 \N 78257 141 3.4.17.21 \N 78258 5 0050302 \N 78259 93 1.2.3.7 \N 78260 129 16280 \N 78261 5 0018579 \N 78262 93 1.13.11.8 \N 78263 5 0010484 \N 78264 5 0050148 \N 78265 93 2.7.6.4 \N 78266 87 NUCLEOTIDE-PYROPHOSPHOKINASE-RXN \N 78267 5 0050105 \N 78268 93 1.1.3.8 \N 78269 87 L-GULONOLACTONE-OXIDASE-RXN \N 78270 5 0047084 \N 78271 93 1.14.13.37 \N 78272 87 1.14.13.37-RXN \N 78273 5 0070539 \N 78274 5 0018392 \N 78275 93 2.4.1.214 \N 78276 129 24447 \N 78277 5 0070204 \N 78278 93 2.2.1.9 \N 78279 129 25596 \N 78280 5 0047253 \N 78281 93 2.4.1.201 \N 78282 87 2.4.1.201-RXN \N 78283 5 0004627 \N 78284 5 0003775 \N 78285 5 0015217 \N 78286 5 0003932 \N 78287 5 0009936 \N 78288 5 0047453 \N 78289 93 4.2.1.93 \N 78290 129 19020 \N 78291 5 0034483 \N 78292 5 0051268 \N 78293 5 0004351 \N 78294 93 4.1.1.15 \N 78295 5 0052684 \N 78296 87 RXN0-2382 \N 78297 5 0001853 \N 78298 5 0008556 \N 78299 5 0015618 \N 78300 93 3.6.3.12 \N 78301 5 0047584 \N 78302 93 4.2.1.83 \N 78303 129 17404 \N 78304 5 0032523 \N 78305 3 17625566 \N 78306 5 0030734 \N 78307 93 2.1.1.18 \N 78308 5 0005523 \N 78309 5 0015026 \N 78310 5 0015027 \N 78311 5 0015028 \N 78312 5 0015188 \N 78313 5 0046979 \N 78314 5 0052586 \N 78315 5 0050399 \N 78316 93 1.3.1.41 \N 78317 129 13420 \N 78318 5 0001003 \N 78319 5 0008872 \N 78320 93 4.2.1.40 \N 78321 5 0002114 \N 78322 5 0047486 \N 78323 93 4.2.2.4 \N 78324 5 0016835 \N 78325 93 4.2.-.- \N 78326 5 0033192 \N 78327 3 15359118 \N 78328 5 0018478 \N 78329 93 1.2.1.18 \N 78330 5 0033425 \N 78331 5 0009007 \N 78332 93 2.1.1.72 \N 78333 5 0003926 \N 78334 5 0050125 \N 78335 93 3.5.1.58 \N 78336 129 20903 \N 78337 5 0016855 \N 78338 5 0004533 \N 78339 93 3.1.13.2 \N 78340 5 0070003 \N 78341 5 0005009 \N 78342 5 0008921 \N 78343 5 0019810 \N 78344 5 0070704 \N 78345 5 0016410 \N 78346 5 0000211 \N 78347 4 cl \N 78348 5 0047347 \N 78349 93 2.7.7.37 \N 78350 87 2.7.7.37-RXN \N 78351 5 0031006 \N 78352 5 0005057 \N 78353 5 0019039 \N 78354 5 0005289 \N 78355 5 0004061 \N 78356 93 3.5.1.9 \N 78357 5 0034861 \N 78358 130 r1290 \N 78359 5 0004221 \N 78360 5 0008577 \N 78361 93 3.1.2.15 \N 78362 5 0050363 \N 78363 93 1.4.1.19 \N 78364 87 TRYPTOPHAN-DEHYDROGENASE-RXN \N 78365 5 0048032 \N 78366 88 33812 \N 78367 5 0018785 \N 78368 93 3.8.1.3 \N 78369 5 0001614 \N 78370 5 0004872 \N 78371 5 0019041 \N 78372 5 0031883 \N 78373 5 0047245 \N 78374 93 2.4.1.188 \N 78375 87 2.4.1.188-RXN \N 78376 5 0050839 \N 78377 5 0033871 \N 78378 93 2.8.2.29 \N 78379 5 0000992 \N 78380 5 0016802 \N 78381 93 3.3.1.- \N 78382 5 0003796 \N 78383 93 3.2.1.17 \N 78384 5 0015596 \N 78385 131 3.A.1.12.1 \N 78386 5 0034737 \N 78387 5 0008412 \N 78388 5 0000043 \N 78389 5 0048043 \N 78390 5 0048044 \N 78391 87 4OHBENZOATE-OCTAPRENYLTRANSFER-RXN \N 78392 5 0005388 \N 78393 93 3.6.3.8 \N 78394 5 0034548 \N 78395 130 r0826 \N 78396 5 0052676 \N 78397 103 R05685 \N 78398 5 0008252 \N 78399 93 3.1.3.31 \N 78400 5 0047358 \N 78401 93 2.7.8.19 \N 78402 87 2.7.8.19-RXN \N 78403 5 0047900 \N 78404 93 2.7.2.6 \N 78405 129 16012 \N 78406 5 0043793 \N 78407 136 01544 \N 78408 3 12142414 \N 78409 5 0032977 \N 78410 5 0033844 \N 78411 93 2.5.1.5 \N 78412 5 0051981 \N 78413 5 0022832 \N 78414 5 0034228 \N 78415 5 0008489 \N 78416 87 RXN-10764 \N 78417 3 9593693 \N 78418 5 0018783 \N 78419 130 0129 \N 78420 5 0016971 \N 78421 3 10899311 \N 78422 5 0051020 \N 78423 5 0050283 \N 78424 93 4.3.1.10 \N 78425 87 SERINE-SULFATE-AMMONIA-LYASE-RXN \N 78426 5 0000095 \N 78427 5 0015177 \N 78428 5 0015620 \N 78429 5 0047668 \N 78430 5 0080080 \N 78431 93 3.2.1.117 \N 78432 129 14180 \N 78433 5 0050345 \N 78434 93 3.3.2.4 \N 78435 129 20743 \N 78436 5 0019164 \N 78437 5 0018696 \N 78438 103 R01196 \N 78439 5 0031132 \N 78440 93 1.1.1.276 \N 78441 129 21599 \N 78442 5 0050217 \N 78443 93 4.1.2.35 \N 78444 129 11103 \N 78445 5 0016748 \N 78446 5 0004690 \N 78447 5 0052591 \N 78448 87 GLYC3PDEHYDROG-RXN \N 78449 5 0050232 \N 78450 93 1.4.3.10 \N 78451 87 PUTRESCINE-OXIDASE-RXN \N 78452 5 0008179 \N 78453 5 0033737 \N 78454 87 1.5.1.35-RXN \N 78455 5 0005517 \N 78456 5 0045145 \N 78457 3 20086101 \N 78458 5 0030303 \N 78459 93 3.4.24.17 \N 78460 93 3.4.24.22 \N 78461 5 0009049 \N 78462 5 0016361 \N 78463 3 8622651 \N 78464 5 0004311 \N 78465 93 2.5.1.29 \N 78466 129 17656 \N 78467 5 0030528 \N 78468 5 0071734 \N 78469 3 10551847 \N 78470 5 0050050 \N 78471 93 2.3.1.66 \N 78472 129 20092 \N 78473 5 0043768 \N 78474 5 0019138 \N 78475 93 4.4.1.21 \N 78476 129 17756 \N 78477 5 0018460 \N 78478 93 1.1.1.245 \N 78479 5 0070698 \N 78480 5 0043027 \N 78481 5 0046029 \N 78482 93 1.1.1.255 \N 78483 129 15032 \N 78484 5 0017002 \N 78485 5 0018837 \N 78486 130 r0502 \N 78487 5 0033968 \N 78488 93 3.5.1.93 \N 78489 5 0050006 \N 78490 93 5.4.99.11 \N 78491 87 ISOMALTULOSE-SYNTHASE-RXN \N 78492 5 0008110 \N 78493 93 2.6.1.38 \N 78494 129 16568 \N 78495 5 0003713 \N 78496 5 2001084 \N 78497 5 0047781 \N 78498 93 3.5.1.20 \N 78499 87 CITRULLINASE-RXN \N 78500 5 0046560 \N 78501 93 3.4.23.32 \N 78502 5 0048155 \N 78503 5 0047522 \N 78504 93 1.3.1.48 \N 78505 87 15-OXOPROSTAGLANDIN-13-REDUCTASE-RXN \N 78506 5 0004720 \N 78507 5 0018056 \N 78508 93 1.4.3.13 \N 78509 5 0008237 \N 78510 5 0005178 \N 78511 5 0008471 \N 78512 93 1.10.3.2 \N 78513 5 0004810 \N 78514 93 2.7.7.25 \N 78515 5 0045030 \N 78516 5 0005539 \N 78517 5 0018110 \N 78518 5 0031717 \N 78519 5 0036002 \N 78520 3 21901112 \N 78521 128 0000120 \N 78522 5 0047378 \N 78523 93 3.1.1.71 \N 78524 129 11555 \N 78525 5 0003842 \N 78526 93 1.5.1.12 \N 78527 5 0047848 \N 78528 93 2.7.11.3 \N 78529 87 DEPHOSPHO-REDUCTASE-KINASE-KINASE-RXN \N 78530 5 0005330 \N 78531 131 2.A.22.1.3 \N 78532 5 0015157 \N 78533 5 0001140 \N 78534 5 0008492 \N 78535 5 0008751 \N 78536 5 0008564 \N 78537 93 3.6.3.50 \N 78538 5 0034598 \N 78539 3 17303758 \N 78540 3 18084305 \N 78541 5 0052598 \N 78542 87 RXN-9600 \N 78543 5 0050059 \N 78544 93 2.7.3.5 \N 78545 87 LOMBRICINE-KINASE-RXN \N 78546 5 0047552 \N 78547 93 1.2.1.49 \N 78548 87 2-OXOALDEHYDE-DEHYDROGENASE-NADP+-RXN \N 78549 5 0034579 \N 78550 130 r0920 \N 78551 5 0018743 \N 78552 5 0070576 \N 78553 3 15546903 \N 78554 5 0018554 \N 78555 133 e0255 \N 78556 5 0030554 \N 78557 5 0015610 \N 78558 5 0050326 \N 78559 93 1.14.13.19 \N 78560 87 TAXIFOLIN-8-MONOOXYGENASE-RXN \N 78561 5 0051699 \N 78562 87 RXN-821 \N 78563 5 0018847 \N 78564 130 r0712 \N 78565 5 0004300 \N 78566 5 0016510 \N 78567 93 4.2.1.17 \N 78568 5 0015616 \N 78569 3 16428451 \N 78570 3 17631491 \N 78571 5 0047563 \N 78572 93 1.14.99.23 \N 78573 129 14196 \N 78574 5 0047191 \N 78575 93 2.3.1.63 \N 78576 87 2.3.1.63-RXN \N 78577 5 0038023 \N 78578 5 0018537 \N 78579 93 1.5.99.11 \N 78580 129 21147 \N 78581 5 0047500 \N 78582 93 1.1.1.198 \N 78583 129 17332 \N 78584 5 0001584 \N 78585 5 0001620 \N 78586 135 1505 \N 78587 5 0034932 \N 78588 130 r0954 \N 78589 5 0030613 \N 78590 5 0015041 \N 78591 3 8599534 \N 78592 5 0015034 \N 78593 5 0050079 \N 78594 5 0047607 \N 78595 93 4.2.1.27 \N 78596 87 MALONATE-SEMIALDEHYDE-DEHYDRATASE-RXN \N 78597 5 0047562 \N 78598 93 4.1.3.14 \N 78599 129 14380 \N 78600 5 0031810 \N 78601 5 0050530 \N 78602 93 3.1.3.69 \N 78603 129 22655 \N 78604 5 0048603 \N 78605 5 0050040 \N 78606 93 1.13.12.4 \N 78607 129 16516 \N 78608 5 0004861 \N 78609 5 0070284 \N 78610 3 18953358 \N 78611 5 0016765 \N 78612 5 0016766 \N 78613 5 0018776 \N 78614 130 r0689 \N 78615 5 0072547 \N 78616 5 0047861 \N 78617 93 2.6.1.24 \N 78618 129 19784 \N 78619 5 0031819 \N 78620 5 0005024 \N 78621 5 0008375 \N 78622 5 0033694 \N 78623 5 0048607 \N 78624 5 0010355 \N 78625 5 0002153 \N 78626 3 10199399 \N 78627 3 15180993 \N 78628 5 0018517 \N 78629 93 1.3.1.64 \N 78630 129 13840 \N 78631 5 0050243 \N 78632 93 1.2.1.51 \N 78633 129 17428 \N 78634 5 0047689 \N 78635 93 5.1.1.13 \N 78636 129 14976 \N 78637 5 0004809 \N 78638 93 2.1.1.32 \N 78639 5 0034933 \N 78640 130 r0956 \N 78641 5 0042497 \N 78642 5 0043212 \N 78643 5 0001532 \N 78644 5 0004771 \N 78645 93 3.1.1.13 \N 78646 5 0015125 \N 78647 5 0010181 \N 78648 5 0008794 \N 78649 93 1.20.4.1 \N 78650 3 10593884 \N 78651 5 0008431 \N 78652 88 33234 \N 78653 5 0004194 \N 78654 93 3.4.23.1 \N 78655 5 0008786 \N 78656 87 RXN0-303 \N 78657 5 0047769 \N 78658 93 4.2.1.91 \N 78659 87 CARBOXYCYCLOHEXADIENYL-DEHYDRATASE-RXN \N 78660 5 0031869 \N 78661 5 0018456 \N 78662 93 1.1.1.90 \N 78663 5 0000979 \N 78664 5 0047310 \N 78665 93 2.6.1.50 \N 78666 129 22923 \N 78667 5 0050021 \N 78668 93 3.1.1.15 \N 78669 129 16220 \N 78670 5 0018813 \N 78671 133 e0257 \N 78672 5 0001056 \N 78673 5 0070186 \N 78674 5 0034027 \N 78675 93 6.3.3.4 \N 78676 129 23623 \N 78677 5 0034816 \N 78678 130 r1141 \N 78679 5 0030021 \N 78680 5 0050210 \N 78681 93 3.1.7.1 \N 78682 87 PRENYL-PYROPHOSPHATASE-RXN \N 78683 5 0033896 \N 78684 93 3.1.26.10 \N 78685 5 0016464 \N 78686 93 3.6.3.52 \N 78687 5 0016519 \N 78688 3 8243312 \N 78689 5 0004463 \N 78690 93 3.3.2.6 \N 78691 129 22327 \N 78692 5 0050509 \N 78693 93 2.4.1.225 \N 78694 87 2.4.1.225-RXN \N 78695 5 0033207 \N 78696 5 0018712 \N 78697 130 r0010 \N 78698 5 0016505 \N 78699 5 0005531 \N 78700 5 0016530 \N 78701 5 0033453 \N 78702 5 0004385 \N 78703 5 0034848 \N 78704 130 r1261 \N 78705 5 0043865 \N 78706 5 0031758 \N 78707 5 0047946 \N 78708 93 2.3.1.68 \N 78709 87 GLUTAMINE-N-ACYLTRANSFERASE-RXN \N 78710 5 0033956 \N 78711 93 3.2.1.161 \N 78712 5 0047828 \N 78713 93 5.3.1.15 \N 78714 129 14204 \N 78715 5 0044019 \N 78716 5 0031766 \N 78717 5 0051978 \N 78718 5 0050049 \N 78719 93 1.4.1.9 \N 78720 87 LEUCINE-DEHYDROGENASE-RXN \N 78721 5 0032028 \N 78722 5 0030788 \N 78723 93 2.1.1.130 \N 78724 129 16844 \N 78725 5 0047612 \N 78726 93 6.2.1.10 \N 78727 129 10971 \N 78728 5 0004495 \N 78729 93 1.1.1.33 \N 78730 5 0022856 \N 78731 5 0047270 \N 78732 93 2.4.1.73 \N 78733 87 2.4.1.73-RXN \N 78734 5 0004750 \N 78735 93 5.1.3.1 \N 78736 129 13680 \N 78737 5 0008581 \N 78738 142 c19p001 \N 78739 5 0015070 \N 78740 5 0047075 \N 78741 93 1.13.11.9 \N 78742 87 1.13.11.9-RXN \N 78743 5 0034886 \N 78744 130 r1351 \N 78745 5 0030597 \N 78746 5 0046574 \N 78747 3 10441389 \N 78748 3 12044176 \N 78749 5 0010474 \N 78750 5 0005252 \N 78751 3 8917578 \N 78752 5 0004486 \N 78753 93 1.5.1.- \N 78754 93 1.5.1.15 \N 78755 5 0004162 \N 78756 5 0043185 \N 78757 5 0035651 \N 78758 5 0004642 \N 78759 93 6.3.5.3 \N 78760 129 17132 \N 78761 5 0046899 \N 78762 93 2.7.4.10 \N 78763 5 0035064 \N 78764 3 14585615 \N 78765 5 0015171 \N 78766 5 0015359 \N 78767 5 0071860 \N 78768 5 0050629 \N 78769 93 1.97.1.8 \N 78770 87 1.97.1.8-RXN \N 78771 5 0050643 \N 78772 93 2.3.1.167 \N 78773 129 20140 \N 78774 5 0016433 \N 78775 5 0008453 \N 78776 93 2.6.1.44 \N 78777 5 0018654 \N 78778 130 r0252 \N 78779 5 0010292 \N 78780 3 10514379 \N 78781 3 12553910 \N 78782 3 16553903 \N 78783 5 0034829 \N 78784 5 0004888 \N 78785 5 0004926 \N 78786 104 Transmembrane_receptor \N 78787 5 0034922 \N 78788 130 r0936 \N 78789 5 0052580 \N 78790 87 RXN-5163 \N 78791 5 0005040 \N 78792 5 0008109 \N 78793 93 2.4.1.150 \N 78794 5 0003967 \N 78795 5 0047034 \N 78796 93 1.1.1.232 \N 78797 87 1.1.1.232-RXN \N 78798 5 0042156 \N 78799 5 0015521 \N 78800 131 2.A.1.2.7 \N 78801 5 0018705 \N 78802 133 e0272 \N 78803 5 0047094 \N 78804 93 1.14.13.63 \N 78805 87 1.14.13.63-RXN \N 78806 5 0043800 \N 78807 136 01502 \N 78808 87 R12-RXN \N 78809 3 11839305 \N 78810 5 0004686 \N 78811 93 2.7.11.20 \N 78812 87 2.7.11.20-RXN \N 78813 5 0033903 \N 78814 93 3.2.1.6 \N 78815 5 0050520 \N 78816 93 2.7.8.24 \N 78817 129 14600 \N 78818 5 0018744 \N 78819 93 3.3.2.8 \N 78820 5 0034280 \N 78821 87 RXN-4884 \N 78822 129 25539 \N 78823 5 0030748 \N 78824 93 2.1.1.49 \N 78825 5 0015005 \N 78826 5 0003860 \N 78827 93 3.1.2.4 \N 78828 5 0004505 \N 78829 93 1.14.16.1 \N 78830 5 0003925 \N 78831 93 3.6.5.2 \N 78832 87 3.6.1.47-RXN \N 78833 5 0043338 \N 78834 3 10960477 \N 78835 5 0015479 \N 78836 5 0003986 \N 78837 93 3.1.2.1 \N 78838 129 20292 \N 78839 5 0001630 \N 78840 5 0033171 \N 78841 5 0016521 \N 78842 3 19805477 \N 78843 5 0047594 \N 78844 93 1.14.11.14 \N 78845 129 12800 \N 78846 5 0033155 \N 78847 5 0015200 \N 78848 5 0000401 \N 78849 5 0018471 \N 78850 130 r0447 \N 78851 5 0050438 \N 78852 93 2.3.3.6 \N 78853 129 23043 \N 78854 5 0046876 \N 78855 5 0004502 \N 78856 93 1.14.13.9 \N 78857 129 20548 \N 78858 5 0052589 \N 78859 87 RXNI-3 \N 78860 5 0016946 \N 78861 93 3.4.22.41 \N 78862 5 0015348 \N 78863 5 0009475 \N 78864 5 0070259 \N 78865 5 0033803 \N 78866 93 2.1.1.155 \N 78867 129 15108 \N 78868 5 0016919 \N 78869 93 3.4.24.61 \N 78870 5 0051405 \N 78871 93 3.4.24.3 \N 78872 5 0047764 \N 78873 5 0005530 \N 78874 5 0080077 \N 78875 5 0019002 \N 78876 5 0004969 \N 78877 5 0004571 \N 78878 93 3.2.1.113 \N 78879 5 0008514 \N 78880 5 0015355 \N 78881 5 0047791 \N 78882 93 1.3.1.5 \N 78883 87 CUCURBITACIN-DELTA-23-REDUCTASE-RXN \N 78884 5 0051637 \N 78885 5 0051076 \N 78886 5 0034558 \N 78887 130 r0859 \N 78888 5 0047261 \N 78889 93 2.4.1.39 \N 78890 129 14156 \N 78891 5 0003723 \N 78892 5 0005464 \N 78893 5 0018111 \N 78894 93 5.1.1.2 \N 78895 129 12495 \N 78896 5 0008752 \N 78897 93 1.5.1.29 \N 78898 5 0003857 \N 78899 93 1.1.1.35 \N 78900 5 0008777 \N 78901 93 3.5.1.16 \N 78902 5 0019214 \N 78903 5 0046567 \N 78904 3 12149019 \N 78905 5 0015922 \N 78906 93 1.4.3.16 \N 78907 5 0005184 \N 78908 5 0016711 \N 78909 93 1.14.13.21 \N 78910 5 0047285 \N 78911 93 2.4.2.35 \N 78912 87 2.4.2.35-RXN \N 78913 5 0017165 \N 78914 93 3.4.13.21 \N 78915 5 0030348 \N 78916 5 0034572 \N 78917 130 r0897 \N 78918 5 0017025 \N 78919 5 0047020 \N 78920 93 1.1.1.196 \N 78921 87 1.1.1.196-RXN \N 78922 5 0015437 \N 78923 93 3.6.3.39 \N 78924 5 0050315 \N 78925 93 4.2.1.88 \N 78926 129 17516 \N 78927 5 0004946 \N 78928 5 0031404 \N 78929 5 0000995 \N 78930 5 0042609 \N 78931 99 D015704 \N 78932 5 0005344 \N 78933 5 0015033 \N 78934 5 0018678 \N 78935 93 1.14.13.64 \N 78936 5 0022883 \N 78937 5 0015371 \N 78938 5 0016209 \N 78939 5 0009982 \N 78940 5 0016439 \N 78941 93 5.4.99.12 \N 78942 5 0015238 \N 78943 5 0015239 \N 78944 5 0015559 \N 78945 5 0015564 \N 78946 5 0004735 \N 78947 93 1.5.1.2 \N 78948 5 0030971 \N 78949 5 0015076 \N 78950 5 0004479 \N 78951 5 0001718 \N 78952 5 0070128 \N 78953 93 2.1.2.9 \N 78954 5 0005170 \N 78955 5 0031864 \N 78956 5 0050476 \N 78957 93 4.1.1.78 \N 78958 5 0008336 \N 78959 93 1.14.11.1 \N 78960 129 24031 \N 78961 5 0005168 \N 78962 5 0008911 \N 78963 93 1.2.1.22 \N 78964 5 0071618 \N 78965 5 0004603 \N 78966 93 2.1.1.28 \N 78967 5 0070540 \N 78968 88 28842 \N 78969 5 0015640 \N 78970 5 0008434 \N 78971 5 0047836 \N 78972 93 2.3.1.112 \N 78973 129 23323 \N 78974 5 0051009 \N 78975 87 ACETYLHOMOSER-CYS-RXN \N 78976 5 0008142 \N 78977 5 0008174 \N 78978 5 0030280 \N 78979 5 0004964 \N 78980 5 0004976 \N 78981 3 18848524 \N 78982 3 1922095 \N 78983 5 0016304 \N 78984 5 0047448 \N 78985 93 4.2.1.41 \N 78986 129 24611 \N 78987 5 0045296 \N 78988 5 0015207 \N 78989 5 0050394 \N 78990 93 2.7.1.103 \N 78991 87 VIOMYCIN-KINASE-RXN \N 78992 5 0045439 \N 78993 93 5.1.1.17 \N 78994 129 20036 \N 78995 5 0004136 \N 78996 93 2.7.1.76 \N 78997 129 23455 \N 78998 5 0008226 \N 78999 5 0042973 \N 79000 93 3.2.1.39 \N 79001 5 0042835 \N 79002 3 10893231 \N 79003 5 0005432 \N 79004 5 0010491 \N 79005 3 17341835 \N 79006 5 0016703 \N 79007 5 0031707 \N 79008 5 0097007 \N 79009 87 RXN-8620 \N 79010 5 0016290 \N 79011 5 0016293 \N 79012 93 3.1.2.2 \N 79013 5 0015079 \N 79014 5 0022817 \N 79015 5 0015319 \N 79016 131 2.A.1.14.6 \N 79017 5 0015417 \N 79018 5 0047692 \N 79019 93 3.5.4.18 \N 79020 87 ATP-DEAMINASE-RXN \N 79021 5 0043821 \N 79022 136 01589 \N 79023 87 RXN0-268 \N 79024 5 0047942 \N 79025 93 6.3.1.6 \N 79026 129 20528 \N 79027 5 0050568 \N 79028 93 3.5.1.44 \N 79029 87 CHEBDEAMID-RXN \N 79030 5 0031961 \N 79031 5 0004489 \N 79032 5 0008702 \N 79033 93 1.5.1.20 \N 79034 5 0030792 \N 79035 93 2.1.1.138 \N 79036 5 0043398 \N 79037 132 PDOC0038 \N 79038 5 0033728 \N 79039 93 1.3.1.75 \N 79040 5 0030009 \N 79041 5 0004226 \N 79042 93 3.4.17.4 \N 79043 5 0047996 \N 79044 93 1.1.3.27 \N 79045 129 21683 \N 79046 5 0009824 \N 79047 129 15288 \N 79048 5 0016678 \N 79049 5 0080131 \N 79050 87 RXN-10451 \N 79051 87 RXN-10453 \N 79052 3 12637544 \N 79053 5 0047750 \N 79054 93 5.3.3.5 \N 79055 87 CHOLESTENOL-DELTA-ISOMERASE-RXN \N 79056 5 0004934 \N 79057 5 0043780 \N 79058 87 RXN-8764 \N 79059 5 0047677 \N 79060 93 1.13.11.40 \N 79061 129 14988 \N 79062 5 0016628 \N 79063 5 0015473 \N 79064 131 1.B.11.-.- \N 79065 5 0004445 \N 79066 5 0033450 \N 79067 5 0016169 \N 79068 5 0004972 \N 79069 5 0004581 \N 79070 93 2.4.1.117 \N 79071 5 0016891 \N 79072 5 0042123 \N 79073 5 0004121 \N 79074 5 0008799 \N 79075 93 4.4.1.8 \N 79076 5 0008763 \N 79077 93 6.3.2.8 \N 79078 129 23375 \N 79079 5 0004801 \N 79080 93 2.2.1.2 \N 79081 5 0047247 \N 79082 93 2.4.1.191 \N 79083 129 22119 \N 79084 5 0045485 \N 79085 3 7846158 \N 79086 5 2001062 \N 79087 5 0010175 \N 79088 5 0004728 \N 79089 5 0004142 \N 79090 93 2.7.8.2 \N 79091 5 0042016 \N 79092 5 0016790 \N 79093 5 0004871 \N 79094 5 0005062 \N 79095 5 0009369 \N 79096 5 0009370 \N 79097 5 0032428 \N 79098 93 3.2.1.53 \N 79099 5 0047717 \N 79100 93 1.14.13.5 \N 79101 129 19428 \N 79102 5 0047992 \N 79103 93 2.7.1.81 \N 79104 129 19052 \N 79105 5 0043023 \N 79106 5 0033932 \N 79107 93 3.2.1.111 \N 79108 5 0047693 \N 79109 93 3.6.1.8 \N 79110 87 ATP-PYROPHOSPHATASE-RXN \N 79111 5 0050490 \N 79112 93 3.1.1.25 \N 79113 87 14-LACTONASE-RXN \N 79114 5 0047709 \N 79115 93 3.1.1.60 \N 79116 129 15532 \N 79117 5 0001615 \N 79118 5 0031774 \N 79119 5 0035242 \N 79120 5 0045547 \N 79121 3 9858571 \N 79122 5 0015594 \N 79123 5 0010011 \N 79124 5 0001648 \N 79125 3 11356985 \N 79126 5 0043724 \N 79127 3 12824170 \N 79128 5 0018641 \N 79129 130 r0048 \N 79130 5 0047365 \N 79131 93 2.8.2.26 \N 79132 129 22507 \N 79133 5 0047722 \N 79134 93 1.1.1.110 \N 79135 129 20136 \N 79136 5 0002061 \N 79137 5 0033878 \N 79138 93 3.1.1.79 \N 79139 5 0008329 \N 79140 3 12507420 \N 79141 3 12925128 \N 79142 3 14523544 \N 79143 5 0019153 \N 79144 93 1.8.4.2 \N 79145 5 0031738 \N 79146 5 0009491 \N 79147 5 0015517 \N 79148 131 2.A.1.1.1 \N 79149 5 0031824 \N 79150 5 0004699 \N 79151 5 0034904 \N 79152 130 r1436 \N 79153 5 0018588 \N 79154 130 r0643 \N 79155 5 0016887 \N 79156 5 0004002 \N 79157 5 0015358 \N 79158 5 0016413 \N 79159 5 0004577 \N 79160 93 2.4.1.141 \N 79161 5 0004910 \N 79162 5 0019968 \N 79163 5 0031809 \N 79164 5 0043919 \N 79165 136 03077 \N 79166 5 0080064 \N 79167 3 14653780 \N 79168 5 0015255 \N 79169 5 0033795 \N 79170 93 1.21.4.4 \N 79171 5 0051540 \N 79172 5 0043532 \N 79173 3 16043488 \N 79174 5 0032440 \N 79175 93 1.3.1.74 \N 79176 3 16299173 \N 79177 5 0050409 \N 79178 93 2.4.2.34 \N 79179 129 19508 \N 79180 5 0032896 \N 79181 5 0005225 \N 79182 5 0008884 \N 79183 93 3.5.1.78 \N 79184 5 0004243 \N 79185 93 3.4.24.59 \N 79186 5 0061134 \N 79187 5 0051749 \N 79188 3 16169896 \N 79189 5 0008322 \N 79190 5 0000261 \N 79191 131 3.A.2.2.2 \N 79192 5 0017058 \N 79193 5 0018451 \N 79194 130 r0595 \N 79195 5 0005357 \N 79196 5 0034012 \N 79197 93 4.6.1.15 \N 79198 5 0051509 \N 79199 5 0003688 \N 79200 5 0015668 \N 79201 93 3.1.21.5 \N 79202 5 0050403 \N 79203 93 2.4.1.203 \N 79204 129 23227 \N 79205 5 0070448 \N 79206 87 RXN-8452 \N 79207 5 0050359 \N 79208 93 2.7.11.28 \N 79209 87 TROPOMYOSIN-KINASE-RXN \N 79210 5 0018603 \N 79211 130 r0306 \N 79212 5 0034987 \N 79213 5 0008854 \N 79214 93 3.1.11.5 \N 79215 5 0034881 \N 79216 130 r1343 \N 79217 5 0001856 \N 79218 5 0010340 \N 79219 3 17220201 \N 79220 5 0047419 \N 79221 93 3.5.1.- \N 79222 87 3.5.1.80-RXN \N 79223 5 0015195 \N 79224 5 0015512 \N 79225 5 0015541 \N 79226 131 2.A.1.17.1 \N 79227 5 0004977 \N 79228 5 0018809 \N 79229 130 r0331 \N 79230 5 0043774 \N 79231 136 01553 \N 79232 5 0033916 \N 79233 93 3.2.1.81 \N 79234 5 0003901 \N 79235 5 0008936 \N 79236 93 3.5.1.19 \N 79237 5 0050733 \N 79238 3 11684676 \N 79239 3 12215544 \N 79240 5 0003822 \N 79241 5 0043899 \N 79242 3 14699121 \N 79243 5 0016160 \N 79244 5 0034512 \N 79245 5 0031626 \N 79246 3 6267560 \N 79247 5 0050660 \N 79248 5 0016428 \N 79249 93 2.1.1.29 \N 79250 5 0016996 \N 79251 93 3.2.1.129 \N 79252 5 0030295 \N 79253 5 0031846 \N 79254 5 0015323 \N 79255 5 0033433 \N 79256 5 0010843 \N 79257 128 0000167 \N 79258 5 0052666 \N 79259 5 0080032 \N 79260 3 15233793 \N 79261 5 0043858 \N 79262 3 17110979 \N 79263 5 0051742 \N 79264 87 RXN-2762 \N 79265 5 0018488 \N 79266 93 1.2.3.9 \N 79267 5 0071794 \N 79268 112 IPR000938 \N 79269 5 0004730 \N 79270 93 4.2.1.70 \N 79271 129 18340 \N 79272 5 0004521 \N 79273 5 0050420 \N 79274 93 2.4.1.139 \N 79275 87 MALTOSE-SYNTHASE-RXN \N 79276 5 0004615 \N 79277 5 0008971 \N 79278 93 5.4.2.8 \N 79279 129 11143 \N 79280 5 0004323 \N 79281 5 0004016 \N 79282 5 0047672 \N 79283 93 2.3.1.144 \N 79284 129 21603 \N 79285 5 0004148 \N 79286 93 1.8.1.4 \N 79287 5 0016146 \N 79288 93 3.6.1.48 \N 79289 5 0043115 \N 79290 93 1.3.1.76 \N 79291 129 15616 \N 79292 5 0047406 \N 79293 93 3.2.2.11 \N 79294 129 12327 \N 79295 5 0031625 \N 79296 5 0035485 \N 79297 5 0047743 \N 79298 93 1.1.1.225 \N 79299 129 14404 \N 79300 5 0052732 \N 79301 5 0004512 \N 79302 93 5.5.1.4 \N 79303 129 10719 \N 79304 5 0044022 \N 79305 5 0018481 \N 79306 93 1.2.1.61 \N 79307 129 22423 \N 79308 5 0050039 \N 79309 93 1.1.1.55 \N 79310 129 15888 \N 79311 5 0032032 \N 79312 5 0042806 \N 79313 88 33984 \N 79314 5 0050603 \N 79315 93 1.14.99.35 \N 79316 129 18932 \N 79317 5 0008836 \N 79318 93 4.1.1.20 \N 79319 129 15104 \N 79320 5 0047936 \N 79321 93 1.1.1.47 \N 79322 87 GLUCOSE-1-DEHYDROGENASE-RXN \N 79323 5 0050171 \N 79324 93 2.4.1.35 \N 79325 87 PHENOL-BETA-GLUCOSYLTRANSFERASE-RXN \N 79326 5 0000700 \N 79327 5 0008118 \N 79328 93 2.4.99.6 \N 79329 5 0008968 \N 79330 87 RXN0-4301 \N 79331 3 11279237 \N 79332 3 8631969 \N 79333 5 0031217 \N 79334 93 3.2.1.74 \N 79335 5 0030492 \N 79336 5 0080049 \N 79337 3 18190525 \N 79338 5 0042328 \N 79339 5 0017108 \N 79340 3 9778254 \N 79341 5 0004354 \N 79342 93 1.4.1.4 \N 79343 5 0016665 \N 79344 5 0045012 \N 79345 5 0031924 \N 79346 5 0046556 \N 79347 93 3.2.1.55 \N 79348 5 0043295 \N 79349 5 0001137 \N 79350 5 0052617 \N 79351 87 RXN-7580 \N 79352 5 0015048 \N 79353 3 7589982 \N 79354 5 0050112 \N 79355 93 1.1.1.18 \N 79356 129 16952 \N 79357 5 0030377 \N 79358 3 16456079 \N 79359 5 0018610 \N 79360 87 R606-RXN \N 79361 5 0015607 \N 79362 5 0033820 \N 79363 93 2.4.1.26 \N 79364 5 0019160 \N 79365 93 3.2.2.14 \N 79366 129 23143 \N 79367 5 0080139 \N 79368 3 18603465 \N 79369 5 0080018 \N 79370 3 15807784 \N 79371 5 0047620 \N 79372 93 2.7.1.94 \N 79373 87 ACYLGLYCEROL-KINASE-RXN \N 79374 5 0008867 \N 79375 93 4.2.1.42 \N 79376 129 16008 \N 79377 5 0042301 \N 79378 5 0005025 \N 79379 121 REACT_6945.1 \N 79380 5 0008609 \N 79381 93 2.5.1.26 \N 79382 5 0047050 \N 79383 93 1.1.1.99 \N 79384 129 11387 \N 79385 5 0017116 \N 79386 5 0042557 \N 79387 3 11904175 \N 79388 5 0050201 \N 79389 93 2.7.1.52 \N 79390 129 13244 \N 79391 5 0043364 \N 79392 5 0004234 \N 79393 93 3.4.24.65 \N 79394 5 0045131 \N 79395 3 11691992 \N 79396 3 9722632 \N 79397 5 0071857 \N 79398 5 0080089 \N 79399 3 19168716 \N 79400 5 0051380 \N 79401 5 0051993 \N 79402 3 16990135 \N 79403 5 0016690 \N 79404 93 1.11.1.14 \N 79405 129 17048 \N 79406 5 0097027 \N 79407 3 18321851 \N 79408 5 0017120 \N 79409 3 10224048 \N 79410 5 0016848 \N 79411 5 0080059 \N 79412 3 18757557 \N 79413 5 0002145 \N 79414 87 RXN0-3543 \N 79415 5 0050016 \N 79416 93 1.14.99.2 \N 79417 87 KYNURENINE-78-HYDROXYLASE-RXN \N 79418 5 0043823 \N 79419 136 01761 \N 79420 87 RXN-10670 \N 79421 3 16086104 \N 79422 3 16158287 \N 79423 5 0005528 \N 79424 5 0018523 \N 79425 93 1.3.99.17 \N 79426 5 0004081 \N 79427 93 3.6.1.17 \N 79428 3 4955726 \N 79429 5 0004949 \N 79430 135 1279 \N 79431 5 0042280 \N 79432 5 0033976 \N 79433 93 3.8.1.10 \N 79434 5 0004068 \N 79435 93 4.1.1.11 \N 79436 5 0047006 \N 79437 93 1.1.1.149 \N 79438 87 1.1.1.149-RXN \N 79439 5 0015469 \N 79440 5 0030761 \N 79441 93 2.1.1.88 \N 79442 129 16596 \N 79443 5 0050429 \N 79444 93 3.1.4.3 \N 79445 5 0047808 \N 79446 93 4.2.1.81 \N 79447 129 18292 \N 79448 5 0052614 \N 79449 87 RXN0-6444 \N 79450 3 20369853 \N 79451 3 20400551 \N 79452 5 0031210 \N 79453 5 0004425 \N 79454 93 4.1.1.48 \N 79455 5 0004076 \N 79456 93 2.8.1.6 \N 79457 129 22063 \N 79458 5 0047204 \N 79459 93 2.3.1.98 \N 79460 129 23207 \N 79461 5 0005326 \N 79462 5 0003706 \N 79463 5 0043960 \N 79464 136 03304 \N 79465 5 0030780 \N 79466 93 2.1.1.120 \N 79467 129 21095 \N 79468 5 0035516 \N 79469 5 0047048 \N 79470 93 1.1.1.97 \N 79471 129 22343 \N 79472 5 0003778 \N 79473 5 0019778 \N 79474 5 0016969 \N 79475 5 0016157 \N 79476 93 2.4.1.13 \N 79477 5 0050273 \N 79478 93 3.1.2.13 \N 79479 129 16716 \N 79480 5 0019535 \N 79481 5 0016211 \N 79482 5 0004793 \N 79483 93 4.1.2.5 \N 79484 5 0033812 \N 79485 93 2.3.1.174 \N 79486 5 0004915 \N 79487 5 0071884 \N 79488 5 0004014 \N 79489 93 4.1.1.50 \N 79490 129 15984 \N 79491 5 0004376 \N 79492 5 0004580 \N 79493 5 0030151 \N 79494 5 0046410 \N 79495 93 2.5.1.64 \N 79496 3 1459959 \N 79497 5 0050561 \N 79498 93 6.1.1.24 \N 79499 87 6.1.1.24-RXN \N 79500 5 0001149 \N 79501 5 0042933 \N 79502 5 0034582 \N 79503 130 r0926 \N 79504 5 0050406 \N 79505 93 3.1.3.44 \N 79506 87 ACETYL-COA-CARBOXYLASE-PHOSPHATASE-RXN \N 79507 5 0052656 \N 79508 87 BRANCHED-CHAINAMINOTRANSFERILEU-RXN \N 79509 5 0004059 \N 79510 93 2.3.1.87 \N 79511 5 0033747 \N 79512 93 1.11.1.16 \N 79513 5 0016492 \N 79514 3 10390649 \N 79515 5 0043176 \N 79516 5 0015266 \N 79517 5 0070027 \N 79518 5 0047657 \N 79519 93 2.4.1.183 \N 79520 87 ALPHA-13-GLUCAN-SYNTHASE-RXN \N 79521 5 0004854 \N 79522 93 1.17.1.4 \N 79523 5 0008780 \N 79524 93 2.3.1.129 \N 79525 5 0009977 \N 79526 3 11526245 \N 79527 5 0051723 \N 79528 5 0031682 \N 79529 5 0030053 \N 79530 5 0008068 \N 79531 5 0043499 \N 79532 5 0008521 \N 79533 5 0043531 \N 79534 5 0000036 \N 79535 88 22221 \N 79536 5 0000982 \N 79537 5 0052716 \N 79538 5 0015655 \N 79539 5 0004344 \N 79540 5 0008708 \N 79541 93 1.1.99.10 \N 79542 5 0008530 \N 79543 5 0080150 \N 79544 87 RXN-6722 \N 79545 3 10852939 \N 79546 5 0032052 \N 79547 5 0030402 \N 79548 5 0018531 \N 79549 93 1.5.3.5 \N 79550 129 11883 \N 79551 5 0000006 \N 79552 131 2.A.5.1.1 \N 79553 5 0001156 \N 79554 5 0030772 \N 79555 93 2.1.1.106 \N 79556 129 17324 \N 79557 5 0042287 \N 79558 5 0033717 \N 79559 93 1.1.99.3 \N 79560 5 0003995 \N 79561 5 0019109 \N 79562 93 1.3.99.3 \N 79563 5 0043810 \N 79564 136 02096 \N 79565 5 0050462 \N 79566 93 2.5.1.56 \N 79567 87 N-ACETYLNEURAMINATE-SYNTHASE-RXN \N 79568 5 0005078 \N 79569 3 12511654 \N 79570 3 15213240 \N 79571 3 9405336 \N 79572 5 0001130 \N 79573 5 0003951 \N 79574 93 2.7.1.23 \N 79575 129 18632 \N 79576 5 0018592 \N 79577 130 r0231 \N 79578 5 0008889 \N 79579 93 3.1.4.46 \N 79580 5 0047650 \N 79581 93 2.7.1.84 \N 79582 129 23091 \N 79583 5 0000364 \N 79584 5 0008034 \N 79585 5 0010209 \N 79586 5 0010521 \N 79587 5 0008197 \N 79588 5 0015112 \N 79589 5 0046404 \N 79590 5 0005073 \N 79591 5 0043719 \N 79592 87 OCTAPRENYL-METHYL-METHOXY-BENZOQ-OH-RXN \N 79593 5 0050750 \N 79594 5 0050597 \N 79595 93 1.14.13.76 \N 79596 129 15244 \N 79597 5 0001727 \N 79598 5 0046481 \N 79599 93 2.4.1.241 \N 79600 129 10523 \N 79601 5 0047874 \N 79602 93 3.6.1.43 \N 79603 87 DOLICHYLDIPHOSPHATASE-RXN \N 79604 5 0005190 \N 79605 5 0001859 \N 79606 5 0015131 \N 79607 5 0047119 \N 79608 93 1.3.1.52 \N 79609 129 24535 \N 79610 5 0009463 \N 79611 5 0004680 \N 79612 5 0030271 \N 79613 93 3.4.21.39 \N 79614 5 0005333 \N 79615 5 0008429 \N 79616 5 0032003 \N 79617 5 0018024 \N 79618 5 0004167 \N 79619 5 0048059 \N 79620 93 5.3.3.12 \N 79621 129 13044 \N 79622 5 0046922 \N 79623 93 2.4.1.221 \N 79624 5 0015069 \N 79625 93 2.1.4.2 \N 79626 129 13268 \N 79627 5 0008995 \N 79628 5 0050119 \N 79629 93 3.5.1.33 \N 79630 129 20596 \N 79631 5 0008955 \N 79632 93 2.4.1.129 \N 79633 5 0001528 \N 79634 5 0004662 \N 79635 93 2.5.1.59 \N 79636 5 0047471 \N 79637 93 5.4.99.16 \N 79638 87 5.4.99.16-RXN \N 79639 5 0030768 \N 79640 93 2.1.1.99 \N 79641 129 11339 \N 79642 5 0070905 \N 79643 88 17822 \N 79644 5 0044102 \N 79645 136 03313 \N 79646 3 11836245 \N 79647 5 0070402 \N 79648 5 0018541 \N 79649 93 1.6.5.6 \N 79650 129 23491 \N 79651 5 0015119 \N 79652 5 0033412 \N 79653 5 0002094 \N 79654 5 0016030 \N 79655 5 0047605 \N 79656 93 4.1.1.5 \N 79657 87 ACETOLACTATE-DECARBOXYLASE-RXN \N 79658 5 0033959 \N 79659 93 3.2.2.17 \N 79660 5 0005396 \N 79661 5 0003784 \N 79662 5 0001627 \N 79663 5 0015403 \N 79664 5 0000254 \N 79665 93 1.14.13.72 \N 79666 5 0070975 \N 79667 5 0047339 \N 79668 5 0047340 \N 79669 93 2.7.7.28 \N 79670 87 2.7.7.28-RXN \N 79671 5 0047265 \N 79672 93 2.4.1.52 \N 79673 87 2.4.1.52-RXN \N 79674 5 0030414 \N 79675 5 0050386 \N 79676 93 3.5.1.7 \N 79677 129 14368 \N 79678 5 0018449 \N 79679 130 r0032 \N 79680 5 0034634 \N 79681 5 0008138 \N 79682 5 0080076 \N 79683 5 0043751 \N 79684 3 11237733 \N 79685 5 0001633 \N 79686 5 0001638 \N 79687 135 1506 \N 79688 5 0005310 \N 79689 5 0005312 \N 79690 5 0015365 \N 79691 5 0016726 \N 79692 5 0050297 \N 79693 93 1.13.11.29 \N 79694 87 STIZOLOBATE-SYNTHASE-RXN \N 79695 5 0001608 \N 79696 135 1294 \N 79697 5 0016421 \N 79698 5 0047271 \N 79699 93 2.4.1.74 \N 79700 87 2.4.1.74-RXN \N 79701 5 0047413 \N 79702 93 3.5.1.64 \N 79703 129 18904 \N 79704 5 0005552 \N 79705 5 0034022 \N 79706 93 5.4.4.3 \N 79707 129 20580 \N 79708 5 0043838 \N 79709 136 00182 \N 79710 3 15795227 \N 79711 5 0050154 \N 79712 93 2.7.3.7 \N 79713 129 17556 \N 79714 5 0080105 \N 79715 5 0018571 \N 79716 87 RXN-666 \N 79717 130 r0397 \N 79718 5 0005030 \N 79719 5 0047619 \N 79720 93 3.1.1.28 \N 79721 87 ACYLCARNITINE-HYDROLASE-RXN \N 79722 5 0015372 \N 79723 131 2.A.23.1.1 \N 79724 5 0016639 \N 79725 5 0000257 \N 79726 5 0005015 \N 79727 5 0031832 \N 79728 5 0047845 \N 79729 93 3.1.1.46 \N 79730 129 15000 \N 79731 5 0070324 \N 79732 5 0034008 \N 79733 93 4.2.3.26 \N 79734 129 15812 \N 79735 5 0030731 \N 79736 93 2.1.1.2 \N 79737 129 10659 \N 79738 5 0047873 \N 79739 93 3.1.3.51 \N 79740 87 DOLICHYL-PHOSPHATASE-RXN \N 79741 5 0010853 \N 79742 5 0004604 \N 79743 93 1.8.4.8 \N 79744 129 11727 \N 79745 5 0031789 \N 79746 5 0047532 \N 79747 93 3.5.2.13 \N 79748 129 21811 \N 79749 5 0043844 \N 79750 93 2.7.1.146 \N 79751 136 01469 \N 79752 5 0009389 \N 79753 130 r0207 \N 79754 5 0070405 \N 79755 88 28938 \N 79756 5 0032404 \N 79757 5 0004333 \N 79758 93 4.2.1.2 \N 79759 129 12463 \N 79760 5 0050613 \N 79761 5 0000251 \N 79762 93 1.3.1.70 \N 79763 87 1.3.1.70-RXN \N 79764 5 0016497 \N 79765 5 0034328 \N 79766 5 0004315 \N 79767 93 2.3.1.41 \N 79768 5 0047330 \N 79769 93 2.7.1.63 \N 79770 87 2.7.1.63-RXN \N 79771 5 0019846 \N 79772 5 0050196 \N 79773 93 3.1.3.17 \N 79774 87 PHOSPHORYLASE-PHOSPHATASE-RXN \N 79775 5 0015552 \N 79776 5 0009472 \N 79777 5 0033406 \N 79778 5 0033196 \N 79779 5 0015423 \N 79780 93 3.6.3.19 \N 79781 5 0050571 \N 79782 93 1.1.1.263 \N 79783 129 20668 \N 79784 5 0004908 \N 79785 5 0047121 \N 79786 93 1.3.99.16 \N 79787 129 11591 \N 79788 5 0008466 \N 79789 5 0047210 \N 79790 93 2.4.1.186 \N 79791 5 0017040 \N 79792 93 3.5.1.23 \N 79793 5 0017134 \N 79794 3 9806903 \N 79795 5 0034824 \N 79796 130 r1159 \N 79797 5 0016878 \N 79798 93 6.2.1 \N 79799 5 0032138 \N 79800 5 0031691 \N 79801 5 0035302 \N 79802 3 15350618 \N 79803 5 0071558 \N 79804 5 0016086 \N 79805 3 10891383 \N 79806 5 0015492 \N 79807 131 2.A.3.1.1 \N 79808 5 0003735 \N 79809 5 0003736 \N 79810 5 0003737 \N 79811 5 0003738 \N 79812 5 0003739 \N 79813 5 0003740 \N 79814 5 0003741 \N 79815 5 0003742 \N 79816 5 0001026 \N 79817 5 0004437 \N 79818 5 0033848 \N 79819 93 2.5.1.66 \N 79820 129 10559 \N 79821 5 0046990 \N 79822 93 2.3.1.118 \N 79823 87 2.3.1.118-RXN \N 79824 5 0016688 \N 79825 93 1.11.1.11 \N 79826 5 0047319 \N 79827 93 2.6.1.70 \N 79828 129 14100 \N 79829 5 0004177 \N 79830 5 0018817 \N 79831 130 r0369 \N 79832 5 0047839 \N 79833 93 2.6.99.1 \N 79834 87 DATPDGTP--DNA-PURINE-TRANSFERASE-RXN \N 79835 5 0032556 \N 79836 5 0031749 \N 79837 5 0047891 \N 79838 93 2.4.1.81 \N 79839 87 FLAVONE-7-O-BETA-GLUCOSYLTRANSFERASE-RXN \N 79840 5 0047173 \N 79841 93 2.3.1.135 \N 79842 87 2.3.1.135-RXN \N 79843 5 0047164 \N 79844 93 2.3.1.115 \N 79845 87 2.3.1.115-RXN \N 79846 5 0008513 \N 79847 5 0015354 \N 79848 5 0003730 \N 79849 5 0052635 \N 79850 5 0015226 \N 79851 5 0001593 \N 79852 134 2258 \N 79853 5 0031778 \N 79854 5 0047738 \N 79855 93 2.4.1.20 \N 79856 87 CELLOBIOSE-PHOSPHORYLASE-RXN \N 79857 5 0071551 \N 79858 5 0051435 \N 79859 112 IPR003093 \N 79860 132 PS01260 \N 79861 132 PS50063 \N 79862 5 0010290 \N 79863 3 9681016 \N 79864 5 0042027 \N 79865 5 0001733 \N 79866 93 2.8.2.11 \N 79867 3 10727929 \N 79868 5 0048249 \N 79869 3 8709965 \N 79870 5 0070812 \N 79871 5 0046523 \N 79872 93 5.3.1.23 \N 79873 129 19992 \N 79874 5 0000099 \N 79875 5 0051379 \N 79876 5 0004362 \N 79877 93 1.8.1.7 \N 79878 5 0052680 \N 79879 129 25995 \N 79880 5 0034532 \N 79881 130 r0765 \N 79882 5 0047288 \N 79883 93 2.4.99.2 \N 79884 87 2.4.99.2-RXN \N 79885 5 0003828 \N 79886 93 2.4.99.8 \N 79887 5 0050159 \N 79888 93 4.1.1.58 \N 79889 129 16736 \N 79890 5 0047735 \N 79891 5 0047737 \N 79892 93 1.1.99.18 \N 79893 87 CELLOBIOSE-DEHYDROGENASE-ACCEPTOR-RXN \N 79894 5 0005522 \N 79895 5 0048472 \N 79896 93 4.1.1.81 \N 79897 129 11495 \N 79898 5 0005151 \N 79899 5 0004755 \N 79900 93 1.5.1.10 \N 79901 129 10023 \N 79902 5 0047759 \N 79903 93 1.2.1.57 \N 79904 87 BUTANAL-DEHYDROGENASE-RXN \N 79905 5 0016920 \N 79906 5 0047031 \N 79907 93 1.1.1.229 \N 79908 129 21011 \N 79909 5 0047698 \N 79910 93 4.3.1.6 \N 79911 87 BETA-ALANYL-COA-AMMONIA-LYASE-RXN \N 79912 5 0047509 \N 79913 93 1.2.1.33 \N 79914 129 19352 \N 79915 5 0008804 \N 79916 93 2.7.2.2 \N 79917 5 0050208 \N 79918 93 2.3.1.136 \N 79919 87 POLYSIALIC-ACID-O-ACETYLTRANSFERASE-RXN \N 79920 5 0015506 \N 79921 5 0015536 \N 79922 131 2.A.1.10.1 \N 79923 131 2.A.41.1.1 \N 79924 5 0050258 \N 79925 93 3.5.99.1 \N 79926 129 11411 \N 79927 5 0005091 \N 79928 5 0018668 \N 79929 93 1.14.13.23 \N 79930 129 11483 \N 79931 5 0004175 \N 79932 5 0016809 \N 79933 5 0005461 \N 79934 5 0031859 \N 79935 5 0016273 \N 79936 5 0047111 \N 79937 93 1.2.2.3 \N 79938 87 1.2.2.3-RXN \N 79939 5 0015615 \N 79940 5 0047784 \N 79941 93 2.3.1.27 \N 79942 129 17076 \N 79943 5 0047916 \N 79944 93 1.1.1.135 \N 79945 87 GDP-6-DEOXY-D-TALOSE-4-DEHYDROGENASE-RXN \N 79946 5 0042975 \N 79947 3 12769781 \N 79948 5 0047967 \N 79949 93 3.2.1.128 \N 79950 129 17372 \N 79951 5 0003846 \N 79952 93 2.3.1.22 \N 79953 5 0019977 \N 79954 5 0015529 \N 79955 131 2.A.1.5.2 \N 79956 5 0035673 \N 79957 5 0043806 \N 79958 136 00725 \N 79959 5 0016298 \N 79960 5 0018534 \N 79961 130 r0588 \N 79962 5 0004769 \N 79963 93 5.3.3.1 \N 79964 5 0033699 \N 79965 3 16547001 \N 79966 3 17276982 \N 79967 5 0035717 \N 79968 5 0045506 \N 79969 5 0005111 \N 79970 5 0016894 \N 79971 5 0030983 \N 79972 5 0032134 \N 79973 5 0001571 \N 79974 3 11418238 \N 79975 5 0034528 \N 79976 130 r0791 \N 79977 5 0008316 \N 79978 5 0003832 \N 79979 5 0033928 \N 79980 93 3.2.1.100 \N 79981 5 0005130 \N 79982 5 0030363 \N 79983 5 0005243 \N 79984 5 0015285 \N 79985 5 0015286 \N 79986 5 0005202 \N 79987 5 0050213 \N 79988 93 1.3.1.30 \N 79989 87 PROGESTERONE-5-ALPHA-REDUCTASE-RXN \N 79990 5 0019186 \N 79991 5 0015466 \N 79992 5 0001078 \N 79993 5 0070612 \N 79994 5 0035403 \N 79995 5 0015213 \N 79996 5 0015574 \N 79997 5 0015584 \N 79998 5 0047101 \N 79999 93 1.2.1.25 \N 80000 87 1.2.1.25-RXN \N 80001 5 0031473 \N 80002 5 0015169 \N 80003 5 0000833 \N 80004 5 0032018 \N 80005 3 12210903 \N 80006 5 0032129 \N 80007 5 0018832 \N 80008 133 e0050 \N 80009 5 0004401 \N 80010 93 3.1.3.15 \N 80011 129 14468 \N 80012 5 0033851 \N 80013 93 2.5.1.69 \N 80014 129 21679 \N 80015 5 0042961 \N 80016 5 0034593 \N 80017 5 0052673 \N 80018 5 0031854 \N 80019 5 0034797 \N 80020 130 r1073 \N 80021 5 0047188 \N 80022 93 2.3.1.56 \N 80023 87 2.3.1.56-RXN \N 80024 5 0005053 \N 80025 5 0050292 \N 80026 93 1.14.99.24 \N 80027 129 19560 \N 80028 5 0047669 \N 80029 93 2.4.1.4 \N 80030 87 AMYLOSUCRASE-RXN \N 80031 5 0032142 \N 80032 5 0043238 \N 80033 5 0010242 \N 80034 3 17091926 \N 80035 3 7948862 \N 80036 5 0018798 \N 80037 93 4.1.1.59 \N 80038 129 12752 \N 80039 5 0047422 \N 80040 93 3.5.1.83 \N 80041 129 18288 \N 80042 5 0019147 \N 80043 93 1.1.1.75 \N 80044 129 16520 \N 80045 5 0004418 \N 80046 93 2.5.1.61 \N 80047 129 13188 \N 80048 5 0047850 \N 80049 93 1.4.1.16 \N 80050 129 13564 \N 80051 5 0033960 \N 80052 93 3.2.2.25 \N 80053 129 10883 \N 80054 5 0070043 \N 80055 5 0001784 \N 80056 3 14636584 \N 80057 5 0004274 \N 80058 93 3.4.14.5 \N 80059 5 0016739 \N 80060 5 0030341 \N 80061 93 4.2.2.5 \N 80062 5 0050547 \N 80063 93 4.1.2.41 \N 80064 129 18728 \N 80065 5 0004191 \N 80066 93 3.4.23.35 \N 80067 5 0045322 \N 80068 3 10688657 \N 80069 5 0047136 \N 80070 93 1.7.1.11 \N 80071 129 19792 \N 80072 5 0047546 \N 80073 93 1.14.99.26 \N 80074 129 16976 \N 80075 5 0050220 \N 80076 93 5.3.99.3 \N 80077 129 12896 \N 80078 5 0031545 \N 80079 5 0042910 \N 80080 5 0047300 \N 80081 93 2.6.1.30 \N 80082 129 12844 \N 80083 5 0016308 \N 80084 5 0004431 \N 80085 5 0045215 \N 80086 93 2.7.1.68 \N 80087 129 14428 \N 80088 5 0016596 \N 80089 5 0018719 \N 80090 130 r0449 \N 80091 5 0047906 \N 80092 93 4.1.2.33 \N 80093 129 10887 \N 80094 5 0070338 \N 80095 5 0022810 \N 80096 5 0070279 \N 80097 5 0034714 \N 80098 5 0050370 \N 80099 93 1.14.13.41 \N 80100 87 TYROSINE-N-MONOOXYGENASE-RXN \N 80101 5 0018549 \N 80102 93 1.8.3.4 \N 80103 5 0030736 \N 80104 93 2.1.1.25 \N 80105 129 14812 \N 80106 5 0072341 \N 80107 5 0072542 \N 80108 5 0030566 \N 80109 5 0008678 \N 80110 93 1.1.1.125 \N 80111 5 0047963 \N 80112 93 2.3.1.65 \N 80113 87 GLYCINE-N-CHOLOYLTRANSFERASE-RXN \N 80114 5 0003755 \N 80115 5 0004752 \N 80116 5 0042028 \N 80117 5 0052605 \N 80118 87 RXN-2543 \N 80119 5 0018779 \N 80120 5 0004309 \N 80121 93 3.6.1.11 \N 80122 5 0018562 \N 80123 130 r0415 \N 80124 5 0042907 \N 80125 5 0043736 \N 80126 136 00578 \N 80127 3 10375529 \N 80128 5 0034955 \N 80129 130 r1451 \N 80130 5 0016898 \N 80131 5 0015930 \N 80132 93 1.4.-.- \N 80133 5 0008797 \N 80134 93 4.3.1.1 \N 80135 5 0016291 \N 80136 5 0008778 \N 80137 5 0016292 \N 80138 3 14660652 \N 80139 5 0050321 \N 80140 93 2.7.11.26 \N 80141 87 TAU-PROTEIN-KINASE-RXN \N 80142 5 0047382 \N 80143 93 3.1.3.14 \N 80144 129 16084 \N 80145 5 0004727 \N 80146 5 0050581 \N 80147 93 1.1.3.40 \N 80148 87 1.1.3.40-RXN \N 80149 5 0048186 \N 80150 5 0050518 \N 80151 5 0008699 \N 80152 93 2.7.7.60 \N 80153 129 13432 \N 80154 5 0016868 \N 80155 5 0016777 \N 80156 5 0008545 \N 80157 3 11057897 \N 80158 5 0018624 \N 80159 93 1.14.12.11 \N 80160 129 16740 \N 80161 5 0070740 \N 80162 5 0015097 \N 80163 5 0016780 \N 80164 5 0050695 \N 80165 93 4.1.1.7 \N 80166 87 BENZOYLFORMATE-DECARBOXYLASE-RXN \N 80167 5 0043878 \N 80168 3 9497334 \N 80169 5 0050083 \N 80170 93 4.1.3.24 \N 80171 87 MALYL-COA-LYASE-RXN \N 80172 5 0016721 \N 80173 5 0050553 \N 80174 93 4.2.3.17 \N 80175 129 20915 \N 80176 5 0009055 \N 80177 5 0009053 \N 80178 5 0009054 \N 80179 5 0004183 \N 80180 93 3.4.17.10 \N 80181 5 0050382 \N 80182 93 4.1.1.66 \N 80183 129 17688 \N 80184 5 0047866 \N 80185 93 1.5.3.10 \N 80186 129 17080 \N 80187 5 0019172 \N 80188 87 GLYOXIII-RXN \N 80189 5 0050229 \N 80190 93 1.1.1.246 \N 80191 87 PTEROCARPIN-SYNTHASE-RXN \N 80192 5 0050414 \N 80193 93 3.5.3.5 \N 80194 87 FORMIMINOASPARTATE-DEIMINASE-RXN \N 80195 5 0015928 \N 80196 5 0080023 \N 80197 3 16982622 \N 80198 5 0005508 \N 80199 5 0005124 \N 80200 5 0016751 \N 80201 5 0032942 \N 80202 4 hf \N 80203 5 0043423 \N 80204 5 0023025 \N 80205 5 0023031 \N 80206 5 0000988 \N 80207 5 0047152 \N 80208 93 2.1.1.90 \N 80209 87 2.1.1.90-RXN \N 80210 5 0047588 \N 80211 93 3.5.1.30 \N 80212 87 5-AMINOPENTANAMIDASE-RXN \N 80213 5 0017081 \N 80214 5 0004115 \N 80215 5 0042944 \N 80216 5 0042379 \N 80217 5 2001069 \N 80218 5 0051536 \N 80219 5 0008682 \N 80220 5 0050182 \N 80221 93 2.3.1.19 \N 80222 129 20895 \N 80223 5 0016151 \N 80224 5 0032356 \N 80225 5 0042263 \N 80226 5 0018836 \N 80227 93 4.99.1.2 \N 80228 5 0070626 \N 80229 5 0030625 \N 80230 5 0001030 \N 80231 5 0005480 \N 80232 5 0004675 \N 80233 93 2.7.11.30 \N 80234 5 0034524 \N 80235 130 r0776 \N 80236 5 0008031 \N 80237 5 0015184 \N 80238 5 0047457 \N 80239 93 4.2.2.13 \N 80240 87 4.2.2.13-RXN \N 80241 5 0047293 \N 80242 93 2.5.1.39 \N 80243 87 2.5.1.39-RXN \N 80244 5 0070909 \N 80245 5 0033462 \N 80246 5 0018637 \N 80247 130 r0491 \N 80248 5 0047342 \N 80249 93 2.7.7.32 \N 80250 129 17168 \N 80251 5 0033939 \N 80252 93 3.2.1.131 \N 80253 5 0070643 \N 80254 5 0050009 \N 80255 93 1.1.1.80 \N 80256 129 21795 \N 80257 5 0008989 \N 80258 93 2.1.1.51 \N 80259 5 0004095 \N 80260 93 2.3.1.21 \N 80261 5 0046522 \N 80262 93 2.7.1.100 \N 80263 129 22315 \N 80264 5 0018827 \N 80265 130 r0515 \N 80266 5 0071861 \N 80267 5 0050353 \N 80268 93 1.14.11.8 \N 80269 129 14184 \N 80270 5 0033613 \N 80271 5 0001107 \N 80272 5 0000140 \N 80273 93 1.1.1.101 \N 80274 5 0050307 \N 80275 93 3.1.3.24 \N 80276 87 SUCROSE-PHOSPHATASE-RXN \N 80277 5 0015634 \N 80278 5 0050167 \N 80279 93 4.1.1.30 \N 80280 129 15080 \N 80281 5 0047662 \N 80282 93 4.1.1.24 \N 80283 87 AMINOBENZOATE-DECARBOXYLASE-RXN \N 80284 5 0035236 \N 80285 5 0052620 \N 80286 87 RXN-8646 \N 80287 5 0030546 \N 80288 5 0004001 \N 80289 93 2.7.1.20 \N 80290 3 11223943 \N 80291 5 0001099 \N 80292 5 0052629 \N 80293 87 RXN-10958 \N 80294 3 19901554 \N 80295 5 0002054 \N 80296 5 0032562 \N 80297 5 0047024 \N 80298 93 1.1.1.210 \N 80299 129 16300 \N 80300 5 0016277 \N 80301 5 0022851 \N 80302 5 0003808 \N 80303 93 3.4.21.69 \N 80304 5 0043120 \N 80305 5 0015476 \N 80306 5 0047394 \N 80307 93 3.1.4.43 \N 80308 87 3.1.4.43-RXN \N 80309 5 0030561 \N 80310 5 0009489 \N 80311 5 0001018 \N 80312 3 20056105 \N 80313 5 0050024 \N 80314 5 0033733 \N 80315 93 1.3.3.12 \N 80316 129 20620 \N 80317 5 0001007 \N 80318 5 0018513 \N 80319 93 1.3.1.60 \N 80320 129 24191 \N 80321 5 0033881 \N 80322 93 3.1.2.26 \N 80323 129 17696 \N 80324 5 0033797 \N 80325 93 1.97.1.9 \N 80326 129 14031 \N 80327 5 0047450 \N 80328 5 0080063 \N 80329 93 4.2.1.58 \N 80330 87 4.2.1.58-RXN \N 80331 5 0022814 \N 80332 5 0050328 \N 80333 93 1.3.3.8 \N 80334 87 TETRAHYDROBERBERINE-OXIDASE-RXN \N 80335 5 0004310 \N 80336 5 0048407 \N 80337 5 0052690 \N 80338 130 r0031 \N 80339 130 r0315 \N 80340 5 0008757 \N 80341 5 0004917 \N 80342 5 0045520 \N 80343 5 0030789 \N 80344 93 2.1.1.131 \N 80345 5 0000210 \N 80346 93 3.6.1.22 \N 80347 5 0004954 \N 80348 5 0004623 \N 80349 5 0004986 \N 80350 134 317 \N 80351 3 10471416 \N 80352 5 0047080 \N 80353 93 1.14.11.3 \N 80354 129 21079 \N 80355 5 0033441 \N 80356 5 0033300 \N 80357 88 17242 \N 80358 5 0047325 \N 80359 87 2.7.1.134-RXN \N 80360 5 0019809 \N 80361 5 0051264 \N 80362 5 0000772 \N 80363 5 0050143 \N 80364 93 5.1.1.14 \N 80365 129 22795 \N 80366 5 0018715 \N 80367 130 r0567 \N 80368 5 0001918 \N 80369 3 14555765 \N 80370 5 0051670 \N 80371 93 3.2.1.7 \N 80372 5 0005314 \N 80373 131 2.A.3.10.5 \N 80374 5 0070061 \N 80375 88 28757 \N 80376 5 0047768 \N 80377 93 5.5.1.5 \N 80378 129 14980 \N 80379 5 0003977 \N 80380 129 13512 \N 80381 5 0008925 \N 80382 93 2.3.1.79 \N 80383 5 0050468 \N 80384 93 1.21.3.3 \N 80385 129 19888 \N 80386 5 0001052 \N 80387 5 0016850 \N 80388 5 0048763 \N 80389 3 2990997 \N 80390 3 8381210 \N 80391 3 8653752 \N 80392 5 0070300 \N 80393 88 16337 \N 80394 5 0050129 \N 80395 93 3.5.1.68 \N 80396 129 12479 \N 80397 5 0051064 \N 80398 87 1.17.4.2-RXN \N 80399 5 0018558 \N 80400 130 r0049 \N 80401 5 0048192 \N 80402 5 0018789 \N 80403 93 3.10.1.2 \N 80404 129 18484 \N 80405 5 0047949 \N 80406 93 1.2.1.20 \N 80407 87 GLUTARATE-SEMIALDEHYDE-DEHYDROGENASE-RXN \N 80408 5 0071566 \N 80409 5 0050376 \N 80410 93 5.1.3.16 \N 80411 87 UDP-GLUCOSAMINE-EPIMERASE-RXN \N 80412 5 0005260 \N 80413 93 3.6.3.49 \N 80414 5 0034545 \N 80415 130 r0811 \N 80416 5 0010487 \N 80417 93 2.5.1.79 \N 80418 87 RXN-11190 \N 80419 3 17560575 \N 80420 5 0003990 \N 80421 93 3.1.1.7 \N 80422 5 0004739 \N 80423 93 1.2.4.1 \N 80424 5 0008481 \N 80425 5 0001728 \N 80426 93 2.7.1.91 \N 80427 5 0015062 \N 80428 5 0003747 \N 80429 5 0003748 \N 80430 5 0003749 \N 80431 5 0018802 \N 80432 130 r0370 \N 80433 5 0015160 \N 80434 5 0047688 \N 80435 93 4.1.1.12 \N 80436 87 ASPARTATE-4-DECARBOXYLASE-RXN \N 80437 5 0003683 \N 80438 5 0004048 \N 80439 93 2.4.2.18 \N 80440 129 11771 \N 80441 5 0009490 \N 80442 5 0050367 \N 80443 93 6.3.2.24 \N 80444 129 15348 \N 80445 5 0070007 \N 80446 5 0030506 \N 80447 5 0015247 \N 80448 5 0008992 \N 80449 93 3.4.21.88 \N 80450 5 0008737 \N 80451 93 2.7.1.51 \N 80452 129 12379 \N 80453 5 0005489 \N 80454 5 0046975 \N 80455 5 0008599 \N 80456 5 0016287 \N 80457 93 2.3.1.42 \N 80458 129 17660 \N 80459 5 0005272 \N 80460 5 0004772 \N 80461 5 0017066 \N 80462 93 2.3.1.26 \N 80463 5 0050160 \N 80464 93 3.1.1.40 \N 80465 129 19552 \N 80466 5 0017034 \N 80467 5 0009006 \N 80468 5 0004740 \N 80469 93 2.7.11.2 \N 80470 5 0030580 \N 80471 5 0047241 \N 80472 93 2.4.1.180 \N 80473 87 2.4.1.180-RXN \N 80474 5 0047276 \N 80475 5 0003946 \N 80476 93 2.4.1.87 \N 80477 87 2.4.1.87-RXN \N 80478 5 0050557 \N 80479 93 4.3.3.4 \N 80480 129 12299 \N 80481 5 0016806 \N 80482 5 0046910 \N 80483 3 10880981 \N 80484 5 0016223 \N 80485 93 2.6.1.18 \N 80486 5 0001670 \N 80487 134 2254 \N 80488 5 0004087 \N 80489 129 10627 \N 80490 5 0072572 \N 80491 88 61151 \N 80492 5 0018623 \N 80493 93 1.14.12.10 \N 80494 5 0018529 \N 80495 130 r0587 \N 80496 5 0031727 \N 80497 5 0005011 \N 80498 5 0015486 \N 80499 5 0004184 \N 80500 93 3.4.17.3 \N 80501 5 0022804 \N 80502 5 0018780 \N 80503 130 r0383 \N 80504 5 0008974 \N 80505 93 2.7.1.19 \N 80506 129 19368 \N 80507 5 0015382 \N 80508 131 2.A.47.1.2 \N 80509 5 0051370 \N 80510 3 10427098 \N 80511 5 0033229 \N 80512 5 0047862 \N 80513 93 3.1.8.2 \N 80514 129 24103 \N 80515 5 0004518 \N 80516 5 0034920 \N 80517 130 r0934 \N 80518 5 0034979 \N 80519 5 0004798 \N 80520 93 2.7.4.9 \N 80521 5 0047645 \N 80522 93 1.1.99.20 \N 80523 87 ALKAN-1-OL-DEHYDROGENASE-ACCEPTOR-RXN \N 80524 5 0035595 \N 80525 93 3.5.1.103 \N 80526 5 0001160 \N 80527 5 0004053 \N 80528 93 3.5.3.1 \N 80529 5 0005206 \N 80530 5 0001884 \N 80531 5 0050609 \N 80532 93 1.20.1.1 \N 80533 129 13176 \N 80534 5 0008874 \N 80535 93 1.1.1.69 \N 80536 5 0080042 \N 80537 5 0033428 \N 80538 5 0010333 \N 80539 93 4.2.3.- \N 80540 5 0047580 \N 80541 93 5.1.1.8 \N 80542 129 21155 \N 80543 5 0008664 \N 80544 3 8940112 \N 80545 5 0043495 \N 80546 5 0047724 \N 80547 93 3.2.2.2 \N 80548 87 INOSINE-NUCLEOSIDASE-RXN \N 80549 5 0004258 \N 80550 5 0050282 \N 80551 93 1.4.1.7 \N 80552 87 SERINE-DEHYDROGENASE-RXN \N 80553 5 0019202 \N 80554 5 0047742 \N 80555 93 3.5.1.74 \N 80556 87 CHENODEOXYCHOLOYLTAURINE-HYDROLASE-RXN \N 80557 5 0008526 \N 80558 5 0047374 \N 80559 93 3.1.1.56 \N 80560 129 12211 \N 80561 5 0004618 \N 80562 93 2.7.2.3 \N 80563 129 14804 \N 80564 5 0018687 \N 80565 93 1.14.12.18 \N 80566 5 0031800 \N 80567 5 0016731 \N 80568 5 0001162 \N 80569 5 0051429 \N 80570 5 0031742 \N 80571 5 0008815 \N 80572 93 4.1.3.6 \N 80573 129 10763 \N 80574 5 0008480 \N 80575 93 1.5.99.1 \N 80576 129 19796 \N 80577 5 0017161 \N 80578 5 0017127 \N 80579 5 0005427 \N 80580 143 600544 \N 80581 5 0004892 \N 80582 5 0016966 \N 80583 5 0016967 \N 80584 5 0016968 \N 80585 93 1.7.99.7 \N 80586 87 NITRIC-OXIDE-REDUCTASE-RXN \N 80587 5 0004043 \N 80588 93 1.2.1.31 \N 80589 5 0047543 \N 80590 93 1.3.1.27 \N 80591 129 12447 \N 80592 5 0035923 \N 80593 88 5130 \N 80594 5 0004452 \N 80595 93 5.3.3.2 \N 80596 129 23287 \N 80597 5 0018690 \N 80598 93 1.14.99.15 \N 80599 129 18616 \N 80600 5 0019962 \N 80601 5 0003847 \N 80602 93 3.1.1.47 \N 80603 5 0035368 \N 80604 3 10760958 \N 80605 5 0016018 \N 80606 5 0051735 \N 80607 5 0008408 \N 80608 5 0035473 \N 80609 5 0000406 \N 80610 5 0034041 \N 80611 5 0004817 \N 80612 93 6.1.1.16 \N 80613 5 0019191 \N 80614 5 0019190 \N 80615 5 0031490 \N 80616 5 0051669 \N 80617 93 3.2.1.80 \N 80618 5 0015283 \N 80619 5 0052744 \N 80620 5 0047958 \N 80621 93 2.6.1.4 \N 80622 87 GLYCINE-AMINOTRANSFERASE-RXN \N 80623 5 0019958 \N 80624 5 0032030 \N 80625 5 0004230 \N 80626 93 3.4.11.7 \N 80627 5 0016408 \N 80628 5 0080099 \N 80629 5 0047800 \N 80630 93 1.13.11.19 \N 80631 129 14412 \N 80632 5 0008475 \N 80633 93 1.14.11.4 \N 80634 5 0008829 \N 80635 93 3.5.4.13 \N 80636 5 0033995 \N 80637 93 4.2.2.15 \N 80638 5 0033251 \N 80639 5 0004337 \N 80640 93 2.5.1.10 \N 80641 129 19364 \N 80642 5 0004865 \N 80643 5 0018702 \N 80644 130 r0440 \N 80645 5 0001091 \N 80646 5 0034788 \N 80647 130 r1041 \N 80648 5 0034877 \N 80649 130 r1337 \N 80650 5 0008820 \N 80651 5 0043753 \N 80652 93 2.7.7.62 \N 80653 129 22715 \N 80654 5 0003678 \N 80655 5 0003679 \N 80656 5 0000340 \N 80657 5 0001011 \N 80658 5 0004595 \N 80659 93 2.7.7.3 \N 80660 129 19804 \N 80661 5 0004482 \N 80662 93 2.1.1.56 \N 80663 5 0080069 \N 80664 5 0016838 \N 80665 5 0015091 \N 80666 5 0047498 \N 80667 5 0019786 \N 80668 5 0034559 \N 80669 130 r0860 \N 80670 5 0004023 \N 80671 93 1.1.1.1 \N 80672 5 0070635 \N 80673 87 RXN-8441 \N 80674 3 19001417 \N 80675 5 0033680 \N 80676 5 0045309 \N 80677 5 0047637 \N 80678 93 2.3.2.11 \N 80679 87 ALANYLPHOSPHATIDYLGLYCEROL-SYNTHASE-RXN \N 80680 5 0047923 \N 80681 93 4.1.1.62 \N 80682 129 21315 \N 80683 5 0046981 \N 80684 3 12130631 \N 80685 3 12130651 \N 80686 5 0050455 \N 80687 93 1.21.3.2 \N 80688 129 23567 \N 80689 5 0018616 \N 80690 87 R305-RXN \N 80691 130 r0093 \N 80692 5 0009927 \N 80693 5 0047575 \N 80694 93 4.1.1.44 \N 80695 129 23351 \N 80696 5 0047648 \N 80697 93 3.5.1.39 \N 80698 129 20084 \N 80699 5 0034867 \N 80700 130 r1277 \N 80701 5 0031815 \N 80702 5 0008715 \N 80703 93 3.6.1.26 \N 80704 129 15224 \N 80705 5 0004022 \N 80706 5 0010435 \N 80707 3 16963437 \N 80708 5 0019199 \N 80709 5 0015306 \N 80710 131 2.A.1.14.10 \N 80711 5 0033977 \N 80712 93 3.8.1.11 \N 80713 5 0050189 \N 80714 93 3.1.3.60 \N 80715 129 20000 \N 80716 5 0046962 \N 80717 5 0008905 \N 80718 5 0047885 \N 80719 93 5.2.1.9 \N 80720 129 13404 \N 80721 5 0000367 \N 80722 5 0004839 \N 80723 94 //www.bostonbiochem.com/E-301.html \N 80724 3 10072378 \N 80725 5 0031747 \N 80726 5 0030107 \N 80727 5 0018850 \N 80728 93 5.5.1.7 \N 80729 5 0046982 \N 80730 5 0017124 \N 80731 137 PF00018 \N 80732 5 0051185 \N 80733 5 0047232 \N 80734 93 2.4.1.164 \N 80735 87 2.4.1.164-RXN \N 80736 5 0018576 \N 80737 93 1.13.11.1 \N 80738 5 0008553 \N 80739 93 3.6.3.6 \N 80740 5 0008009 \N 80741 94 //www.copewithcytokines.de/cope.cgi?key=Cytokines \N 80742 5 0047211 \N 80743 93 2.4.1.113 \N 80744 87 2.4.1.113-RXN \N 80745 5 0000104 \N 80746 5 0019739 \N 80747 93 1.3.99.1 \N 80748 5 0050268 \N 80749 93 1.1.1.194 \N 80750 87 RXN-1107 \N 80751 5 0070774 \N 80752 3 11356846 \N 80753 5 0003871 \N 80754 93 2.1.1.14 \N 80755 129 21199 \N 80756 5 0008422 \N 80757 5 0016983 \N 80758 93 3.2.1.21 \N 80759 5 0008502 \N 80760 5 0010341 \N 80761 5 0004787 \N 80762 5 0019165 \N 80763 93 2.7.1.89 \N 80764 129 12015 \N 80765 5 0034894 \N 80766 130 r1397 \N 80767 5 0015039 \N 80768 93 1.18.1.2 \N 80769 5 0019765 \N 80770 5 0015644 \N 80771 5 0005291 \N 80772 5 0031955 \N 80773 5 0017166 \N 80774 5 0018496 \N 80775 130 r0205 \N 80776 5 0001061 \N 80777 5 0004846 \N 80778 93 1.7.3.3 \N 80779 5 0008949 \N 80780 93 4.1.1.8 \N 80781 129 19336 \N 80782 5 0005558 \N 80783 5 0070052 \N 80784 5 0003693 \N 80785 3 9440262 \N 80786 5 0051393 \N 80787 5 0052592 \N 80788 5 0018569 \N 80789 130 r0228 \N 80790 5 0034882 \N 80791 130 r1344 \N 80792 5 0003929 \N 80793 5 0045517 \N 80794 5 0030740 \N 80795 93 2.1.1.39 \N 80796 129 18880 \N 80797 5 0046593 \N 80798 93 4.1.2.10 \N 80799 5 0052687 \N 80800 103 R06396 \N 80801 5 0015432 \N 80802 131 3.A.1.207.2 \N 80803 5 0042153 \N 80804 5 0030675 \N 80805 5 0047712 \N 80806 93 1.13.12.6 \N 80807 87 CYPRIDINA-LUCIFERIN-2-MONOOXYGENASE-RXN \N 80808 5 0008146 \N 80809 93 2.8.2 \N 80810 5 0019981 \N 80811 5 0004641 \N 80812 93 6.3.3.1 \N 80813 129 23035 \N 80814 5 0030191 \N 80815 5 0047514 \N 80816 93 2.4.1.97 \N 80817 87 13-BETA-GLUCAN-PHOSPHORYLASE-RXN \N 80818 5 0034046 \N 80819 5 0022882 \N 80820 5 0008769 \N 80821 93 3.4.13.3 \N 80822 5 0051998 \N 80823 5 0050175 \N 80824 93 1.4.1.20 \N 80825 87 PHENYLALANINE-DEHYDROGENASE-RXN \N 80826 5 0030290 \N 80827 5 0047467 \N 80828 93 5.2.1.11 \N 80829 87 5.2.1.11-RXN \N 80830 5 0032576 \N 80831 5 0016741 \N 80832 5 0017178 \N 80833 93 6.3.2.22 \N 80834 129 19756 \N 80835 5 0004153 \N 80836 113 FBrf0039640 \N 80837 94 //www.abbs.info/fulltxt/eng/35030306.htm \N 80838 95 05829879 \N 80839 5 0047141 \N 80840 93 1.8.4.4 \N 80841 87 1.8.4.4-RXN \N 80842 5 0050449 \N 80843 93 4.2.3.8 \N 80844 129 14904 \N 80845 5 0050485 \N 80846 5 0034480 \N 80847 5 0018765 \N 80848 130 r0263 \N 80849 5 0019870 \N 80850 5 0045156 \N 80851 5 0050700 \N 80852 3 12054670 \N 80853 5 0045300 \N 80854 93 1.14.19.2 \N 80855 5 0015452 \N 80856 131 3.C.-.-.- \N 80857 5 0018596 \N 80858 130 r0637 \N 80859 5 0047237 \N 80860 93 2.4.1.174 \N 80861 87 2.4.1.174-RXN \N 80862 5 0019237 \N 80863 128 0000577 \N 80864 5 0008186 \N 80865 5 0004010 \N 80866 5 0050524 \N 80867 5 0018552 \N 80868 93 2.8.4.1 \N 80869 129 12535 \N 80870 5 0072354 \N 80871 5 0005174 \N 80872 5 0047011 \N 80873 93 1.1.1.168 \N 80874 87 1.1.1.168-RXN \N 80875 5 0002046 \N 80876 5 0046871 \N 80877 88 28800 \N 80878 5 0001105 \N 80879 5 0019136 \N 80880 93 2.7.1.145 \N 80881 5 0005158 \N 80882 5 0015278 \N 80883 5 0004647 \N 80884 93 3.1.3.3 \N 80885 5 0004932 \N 80886 5 0016622 \N 80887 5 0008700 \N 80888 93 4.1.3.16 \N 80889 5 0004491 \N 80890 93 1.2.1.27 \N 80891 5 0005415 \N 80892 5 0008522 \N 80893 5 0016153 \N 80894 93 4.2.1.49 \N 80895 129 13104 \N 80896 5 0046919 \N 80897 5 0008603 \N 80898 5 0043993 \N 80899 5 0005089 \N 80900 5 0072328 \N 80901 5 0035312 \N 80902 5 0009882 \N 80903 5 0001761 \N 80904 5 0003864 \N 80905 93 2.1.2.11 \N 80906 5 0004499 \N 80907 5 0047076 \N 80908 93 1.14.13.8 \N 80909 5 0016617 \N 80910 93 1.1.1.104 \N 80911 5 0050638 \N 80912 93 2.3.1.162 \N 80913 129 22031 \N 80914 5 0030284 \N 80915 5 0000319 \N 80916 4 as \N 80917 5 0033191 \N 80918 88 38228 \N 80919 3 10984474 \N 80920 5 0050533 \N 80921 93 3.1.3.72 \N 80922 87 3.1.3.72-RXN \N 80923 5 0016175 \N 80924 3 10806195 \N 80925 5 0016644 \N 80926 5 0005356 \N 80927 5 0005361 \N 80928 5 0005164 \N 80929 5 0008170 \N 80930 5 0046790 \N 80931 5 0034950 \N 80932 130 r1020 \N 80933 5 0008746 \N 80934 5 0045510 \N 80935 5 0034279 \N 80936 87 RXN-4883 \N 80937 129 25563 \N 80938 5 0047054 \N 80939 93 1.14.21.3 \N 80940 87 1.1.3.34-RXN \N 80941 5 0016715 \N 80942 5 0035251 \N 80943 5 0015428 \N 80944 5 0018750 \N 80945 93 3.5.1.84 \N 80946 5 0004825 \N 80947 93 6.1.1.10 \N 80948 5 0050626 \N 80949 93 1.7.2.3 \N 80950 87 1.7.2.3-RXN \N 80951 5 0015075 \N 80952 5 0018857 \N 80953 130 r0137 \N 80954 5 0016004 \N 80955 5 0032182 \N 80956 5 0031703 \N 80957 5 0038024 \N 80958 3 15239958 \N 80959 5 0019210 \N 80960 5 0017029 \N 80961 5 0009479 \N 80962 5 0003964 \N 80963 5 0005104 \N 80964 5 0001521 \N 80965 5 0005162 \N 80966 5 0047489 \N 80967 93 4.2.2.9 \N 80968 5 0005302 \N 80969 5 0015508 \N 80970 5 0016603 \N 80971 93 2.3.2.5 \N 80972 5 0047198 \N 80973 93 2.3.1.80 \N 80974 129 19216 \N 80975 5 0052585 \N 80976 5 0043773 \N 80977 136 01552 \N 80978 3 17669425 \N 80979 5 0005212 \N 80980 5 0034785 \N 80981 130 r1034 \N 80982 5 0033987 \N 80983 93 4.2.1.105 \N 80984 5 0008133 \N 80985 5 0004034 \N 80986 93 5.1.3.3 \N 80987 5 0017171 \N 80988 104 Serine_hydrolase \N 80989 5 0010211 \N 80990 87 RXN-2982 \N 80991 5 0016769 \N 80992 5 0016821 \N 80993 5 0050036 \N 80994 93 1.1.1.129 \N 80995 129 23379 \N 80996 5 0051212 \N 80997 5 0003902 \N 80998 5 0034843 \N 80999 130 r1238 \N 81000 5 0005216 \N 81001 5 0015393 \N 81002 5 0004689 \N 81003 5 0008606 \N 81004 5 0010471 \N 81005 87 RXN4FS-12 \N 81006 5 0004348 \N 81007 93 3.2.1.45 \N 81008 5 0050075 \N 81009 93 4.2.1.31 \N 81010 129 23695 \N 81011 5 0050656 \N 81012 5 0031780 \N 81013 5 0071856 \N 81014 5 0051087 \N 81015 5 0070547 \N 81016 5 0015147 \N 81017 5 0050062 \N 81018 93 1.2.1.50 \N 81019 87 LONG-CHAIN-FATTY-ACYL-COA-REDUCTASE-RXN \N 81020 5 0034187 \N 81021 5 0018752 \N 81022 130 r0448 \N 81023 5 0050442 \N 81024 93 2.3.3.12 \N 81025 129 14460 \N 81026 5 0043883 \N 81027 87 RXN8E-5623 \N 81028 3 3139053 \N 81029 5 0034576 \N 81030 130 r0913 \N 81031 5 0070700 \N 81032 5 0042017 \N 81033 5 0005229 \N 81034 5 0033761 \N 81035 93 1.14.11.25 \N 81036 5 0047281 \N 81037 93 2.4.2.20 \N 81038 87 2.4.2.20-RXN \N 81039 5 0052642 \N 81040 3 20045079 \N 81041 3 7966317 \N 81042 5 0033943 \N 81043 93 3.2.1.145 \N 81044 5 0050437 \N 81045 93 4.2.3.10 \N 81046 129 20568 \N 81047 5 0050237 \N 81048 93 1.1.3.12 \N 81049 87 PYRIDOXINE-4-OXIDASE-RXN \N 81050 5 0008730 \N 81051 93 4.2.1.32 \N 81052 129 15416 \N 81053 5 0047444 \N 81054 5 0019007 \N 81055 93 2.5.1.57 \N 81056 87 4.1.3.20-RXN \N 81057 5 0046936 \N 81058 5 0016710 \N 81059 93 1.14.13.11 \N 81060 5 0004126 \N 81061 93 3.5.4.5 \N 81062 5 0005546 \N 81063 5 0070038 \N 81064 5 0043559 \N 81065 5 0008709 \N 81066 93 1.1.1.159 \N 81067 129 19412 \N 81068 5 0001179 \N 81069 5 0017149 \N 81070 5 0004341 \N 81071 93 3.1.1.17 \N 81072 5 0043546 \N 81073 5 0047069 \N 81074 93 1.13.11.10 \N 81075 129 23403 \N 81076 5 0015449 \N 81077 5 0016401 \N 81078 5 0046565 \N 81079 87 DHSHIKIMATE-DEHYDRO-RXN \N 81080 5 0031172 \N 81081 87 RXN-11128 \N 81082 5 0015545 \N 81083 5 0043733 \N 81084 136 00576 \N 81085 3 10777493 \N 81086 3 14517230 \N 81087 5 0015531 \N 81088 131 2.A.1.6.1 \N 81089 5 0000825 \N 81090 5 0016962 \N 81091 5 0016975 \N 81092 5 0033836 \N 81093 93 2.4.1.237 \N 81094 5 0009028 \N 81095 93 4.1.1.47 \N 81096 129 10139 \N 81097 5 0003718 \N 81098 5 0047830 \N 81099 93 1.5.1.11 \N 81100 87 D-OCTOPINE-DEHYDROGENASE-RXN \N 81101 5 0043891 \N 81102 93 1.2.1.59 \N 81103 5 0019142 \N 81104 93 2.3.3.11 \N 81105 129 19188 \N 81106 5 0047386 \N 81107 93 3.1.3.54 \N 81108 129 13336 \N 81109 5 0015294 \N 81110 5 0034539 \N 81111 130 r0821 \N 81112 5 0050247 \N 81113 93 3.2.1.125 \N 81114 129 14560 \N 81115 5 0047770 \N 81116 93 1.2.99.6 \N 81117 87 CARBOXYLATE-REDUCTASE-RXN \N 81118 5 0017049 \N 81119 5 0047912 \N 81120 93 2.7.1.44 \N 81121 129 12968 \N 81122 5 0018064 \N 81123 93 2.1.1.85 \N 81124 5 0004814 \N 81125 93 6.1.1.19 \N 81126 5 0050683 \N 81127 5 0048000 \N 81128 93 1.14.13.52 \N 81129 87 ISOFLAVONE-3'-HYDROXYLASE-RXN \N 81130 5 0034057 \N 81131 3 9769100 \N 81132 5 0030550 \N 81133 5 0004328 \N 81134 5 0034566 \N 81135 93 3.5.1.49 \N 81136 129 21951 \N 81137 5 0050340 \N 81138 93 3.1.3.35 \N 81139 87 THYMIDYLATE-5-PHOSPHATASE-RXN \N 81140 5 0015158 \N 81141 5 0047179 \N 81142 93 2.3.1.149 \N 81143 87 2.3.1.149-RXN \N 81144 5 0004694 \N 81145 112 IPR015516 \N 81146 5 0008430 \N 81147 5 0001150 \N 81148 3 11282468 \N 81149 5 0047869 \N 81150 93 4.4.1.3 \N 81151 129 19968 \N 81152 5 0009032 \N 81153 93 2.4.2.4 \N 81154 5 0043796 \N 81155 136 01555 \N 81156 5 0003816 \N 81157 93 3.4.21.42 \N 81158 5 0047257 \N 81159 93 2.4.1.208 \N 81160 87 2.4.1.208-RXN \N 81161 5 0004765 \N 81162 93 2.7.1.71 \N 81163 129 13124 \N 81164 5 0004198 \N 81165 5 0050002 \N 81166 93 1.21.4.1 \N 81167 87 D-PROLINE-REDUCTASE-(DITHIOL)-RXN \N 81168 5 0001058 \N 81169 5 0015556 \N 81170 5 0035586 \N 81171 5 0016768 \N 81172 93 2.5.1.22 \N 81173 5 0017091 \N 81174 3 7892223 \N 81175 3 8578590 \N 81176 5 0004287 \N 81177 93 3.4.21.26 \N 81178 5 0004253 \N 81179 93 3.4.21.54 \N 81180 5 0015345 \N 81181 131 2.A.1.16.2 \N 81182 5 0030385 \N 81183 3 14769790 \N 81184 5 0001511 \N 81185 5 0005540 \N 81186 88 16336 \N 81187 5 0043764 \N 81188 136 00545 \N 81189 112 IPR007691 \N 81190 5 0031828 \N 81191 5 0004805 \N 81192 93 3.1.3.12 \N 81193 5 0005141 \N 81194 5 0015144 \N 81195 5 0001641 \N 81196 5 0050055 \N 81197 93 3.1.1.36 \N 81198 87 LIMONIN-D-RING-LACTONASE-RXN \N 81199 5 0072552 \N 81200 5 0047526 \N 81201 93 1.3.1.45 \N 81202 87 2-HYDROXYISOFLAVONE-REDUCTASE-RXN \N 81203 5 0080100 \N 81204 5 0071614 \N 81205 3 11042099 \N 81206 5 0047478 \N 81207 93 6.3.1.4 \N 81208 129 14200 \N 81209 5 0033608 \N 81210 93 2.8.3.16 \N 81211 129 16548 \N 81212 5 0043721 \N 81213 93 4.2.1.120 \N 81214 5 0001039 \N 81215 5 0034937 \N 81216 130 r0980 \N 81217 5 0070679 \N 81218 5 0005547 \N 81219 5 0015153 \N 81220 5 0044012 \N 81221 5 0004775 \N 81222 93 6.2.1.5 \N 81223 5 0031754 \N 81224 5 0009495 \N 81225 5 0071518 \N 81226 3 17274596 \N 81227 3 20025244 \N 81228 5 0005005 \N 81229 5 0004381 \N 81230 93 2.4.1.37 \N 81231 5 0018710 \N 81232 93 6.4.1.6 \N 81233 129 18388 \N 81234 5 0031713 \N 81235 5 0000830 \N 81236 5 0005136 \N 81237 5 0043803 \N 81238 136 01759 \N 81239 5 0001861 \N 81240 5 0043868 \N 81241 5 0008932 \N 81242 3 9642199 \N 81243 5 0047352 \N 81244 93 2.7.7.51 \N 81245 129 19200 \N 81246 5 0018663 \N 81247 93 1.14.13.10 \N 81248 129 16920 \N 81249 5 0047361 \N 81250 93 2.7.8.9 \N 81251 87 2.7.8.9-RXN \N 81252 5 0008569 \N 81253 93 3.6.4.5 \N 81254 5 0034416 \N 81255 93 3.1.3.13 \N 81256 5 0045483 \N 81257 93 4.2.3.9 \N 81258 5 0018861 \N 81259 93 6.2.1.33 \N 81260 5 0009917 \N 81261 5 0005041 \N 81262 5 0008032 \N 81263 5 0004652 \N 81264 93 2.7.7.19 \N 81265 5 0047160 \N 81266 93 2.3.1.105 \N 81267 129 18560 \N 81268 5 0034812 \N 81269 130 r1134 \N 81270 5 0033892 \N 81271 93 3.1.25.1 \N 81272 5 0018607 \N 81273 130 r0417 \N 81274 5 0034831 \N 81275 130 r1176 \N 81276 5 0004247 \N 81277 93 3.4.24.37 \N 81278 5 0034926 \N 81279 130 r0942 \N 81280 5 0018777 \N 81281 3 10464214 \N 81282 5 0034838 \N 81283 130 r1183 \N 81284 5 0050240 \N 81285 93 1.13.11.35 \N 81286 129 19676 \N 81287 5 0047436 \N 81288 93 4.1.1.76 \N 81289 129 20516 \N 81290 5 0043819 \N 81291 93 2.1.1.152 \N 81292 129 18264 \N 81293 5 0008440 \N 81294 93 2.7.1.127 \N 81295 129 11023 \N 81296 5 0080011 \N 81297 87 RXN-9685 \N 81298 3 17705488 \N 81299 5 0032216 \N 81300 121 REACT_1049.1 \N 81301 5 0017098 \N 81302 3 11938023 \N 81303 5 0031993 \N 81304 5 0010285 \N 81305 5 0043742 \N 81306 93 2.6.1.83 \N 81307 129 23991 \N 81308 5 0015017 \N 81309 5 0030743 \N 81310 93 2.1.1.66 \N 81311 5 0010309 \N 81312 93 1.13.11.54 \N 81313 129 24507 \N 81314 5 0018772 \N 81315 87 R306-RXN \N 81316 130 r0094 \N 81317 5 0033568 \N 81318 3 16261254 \N 81319 5 2001066 \N 81320 5 0070140 \N 81321 5 0047556 \N 81322 5 0034913 \N 81323 93 4.1.1.69 \N 81324 129 18604 \N 81325 5 0001144 \N 81326 5 0016250 \N 81327 93 3.10.1.1 \N 81328 5 0008741 \N 81329 93 2.7.1.16 \N 81330 5 0046973 \N 81331 5 0004371 \N 81332 93 2.7.1.29 \N 81333 129 15776 \N 81334 5 0005505 \N 81335 5 0008641 \N 81336 5 0008642 \N 81337 5 0042927 \N 81338 5 0047568 \N 81339 93 1.3.99.6 \N 81340 87 3-OXO-5-BETA-STEROID-4-DEHYDROGENASE-RXN \N 81341 5 0016515 \N 81342 5 0047932 \N 81343 93 2.3.1.3 \N 81344 129 21335 \N 81345 5 0070855 \N 81346 5 0033952 \N 81347 93 3.2.1.157 \N 81348 5 0042012 \N 81349 5 0015459 \N 81350 5 0001594 \N 81351 3 19325074 \N 81352 5 0004658 \N 81353 93 6.4.1.3 \N 81354 5 0004211 \N 81355 5 0050811 \N 81356 5 0033558 \N 81357 5 0046812 \N 81358 5 0019855 \N 81359 5 0009014 \N 81360 93 3.5.1.18 \N 81361 129 22611 \N 81362 5 0045289 \N 81363 5 0008028 \N 81364 5 0008505 \N 81365 5 0018748 \N 81366 130 r0706 \N 81367 5 0033457 \N 81368 5 0031868 \N 81369 5 0047598 \N 81370 93 1.3.1.21 \N 81371 5 0050373 \N 81372 93 5.1.3.5 \N 81373 129 11323 \N 81374 5 0047858 \N 81375 93 4.1.1.54 \N 81376 129 13848 \N 81377 5 0043814 \N 81378 136 01547 \N 81379 5 0043428 \N 81380 5 0016785 \N 81381 5 0016786 \N 81382 5 0047093 \N 81383 93 1.14.13.62 \N 81384 129 19328 \N 81385 5 0004940 \N 81386 5 0018812 \N 81387 139 bt0291 \N 81388 5 0001588 \N 81389 5 0008795 \N 81390 5 0008749 \N 81391 5 0016965 \N 81392 93 6.3.1.5 \N 81393 5 0005298 \N 81394 131 2.A.22.2.1 \N 81395 5 0047492 \N 81396 93 4.2.2.12 \N 81397 5 0008132 \N 81398 93 3.4.21.71 \N 81399 5 0072548 \N 81400 5 0018506 \N 81401 93 1.3.1.32 \N 81402 5 0033676 \N 81403 5 0015260 \N 81404 5 0051008 \N 81405 5 0004359 \N 81406 93 3.5.1.2 \N 81407 5 0031757 \N 81408 5 0033970 \N 81409 93 3.5.1.95 \N 81410 129 17364 \N 81411 5 0031895 \N 81412 5 0009034 \N 81413 93 4.1.99.1 \N 81414 129 19556 \N 81415 5 0050545 \N 81416 93 4.1.1.79 \N 81417 129 20951 \N 81418 5 0050295 \N 81419 93 3.2.1.104 \N 81420 129 11959 \N 81421 5 0001131 \N 81422 5 0047071 \N 81423 93 1.13.11.25 \N 81424 129 21355 \N 81425 5 0047780 \N 81426 93 4.2.1.4 \N 81427 87 CITRATE-DEHYDRATASE-RXN \N 81428 5 0035400 \N 81429 5 0032550 \N 81430 5 0004931 \N 81431 5 0042656 \N 81432 5 0030758 \N 81433 93 2.1.1.83 \N 81434 129 21835 \N 81435 5 0033858 \N 81436 93 2.7.1.157 \N 81437 5 0050155 \N 81438 93 2.6.1.68 \N 81439 87 ORNITHINELYSINE-AMINOTRANSFERASE-RXN \N 81440 5 0033841 \N 81441 93 2.4.1.243 \N 81442 5 0015571 \N 81443 5 0015590 \N 81444 5 0033042 \N 81445 5 0031849 \N 81446 5 0047108 \N 81447 93 1.1.1.279 \N 81448 129 24355 \N 81449 5 0015218 \N 81450 5 0008442 \N 81451 93 1.1.1.31 \N 81452 5 0033895 \N 81453 93 3.1.26.9 \N 81454 5 0033456 \N 81455 5 0015611 \N 81456 5 0033407 \N 81457 5 0022843 \N 81458 5 0000983 \N 81459 5 0008035 \N 81460 5 0018799 \N 81461 93 4.1.1.61 \N 81462 129 10879 \N 81463 5 0044020 \N 81464 5 0031796 \N 81465 5 0008378 \N 81466 5 0032192 \N 81467 5 0030413 \N 81468 3 7698645 \N 81469 5 0018665 \N 81470 93 1.14.13.18 \N 81471 5 0004779 \N 81472 87 SULFATE-ADENYLYLTRANS-RXN \N 81473 87 SULFATE-ADENYLYLTRANSFERASE-ADP-RXN \N 81474 5 0030298 \N 81475 5 0051010 \N 81476 5 0047792 \N 81477 93 2.4.1.85 \N 81478 87 CYANOHYDRIN-BETA-GLUCOSYLTRANSFERASE-RXN \N 81479 5 0080062 \N 81480 103 R08369 \N 81481 3 15342621 \N 81482 5 0047090 \N 81483 93 1.14.13.58 \N 81484 129 23219 \N 81485 5 0018522 \N 81486 93 1.3.99.15 \N 81487 5 0055054 \N 81488 5 0008903 \N 81489 93 5.3.1.22 \N 81490 129 11955 \N 81491 5 0043426 \N 81492 3 10966875 \N 81493 5 0050224 \N 81494 93 3.2.1.118 \N 81495 129 16492 \N 81496 5 0015923 \N 81497 5 0045118 \N 81498 5 0033806 \N 81499 93 2.2.1.8 \N 81500 5 0070738 \N 81501 5 0004421 \N 81502 93 2.3.3.10 \N 81503 129 10191 \N 81504 5 0010861 \N 81505 3 9346901 \N 81506 5 0004525 \N 81507 3 11157775 \N 81508 5 0050512 \N 81509 93 2.4.1.228 \N 81510 87 2.4.1.228-RXN \N 81511 5 0004195 \N 81512 93 3.4.23.15 \N 81513 5 0015619 \N 81514 131 3.A.1.19.1 \N 81515 5 0035575 \N 81516 93 1.14.11.27 \N 81517 5 0015164 \N 81518 5 0008450 \N 81519 93 3.4.24.57 \N 81520 5 0033723 \N 81521 93 1.2.1.69 \N 81522 5 0004414 \N 81523 93 2.3.1.31 \N 81524 129 13704 \N 81525 5 0005128 \N 81526 5 0008432 \N 81527 5 0002039 \N 81528 5 0032548 \N 81529 5 0004945 \N 81530 3 10977869 \N 81531 5 0034923 \N 81532 130 r0937 \N 81533 5 0045135 \N 81534 93 4.2.2.3 \N 81535 5 0034946 \N 81536 130 r0994 \N 81537 5 0004994 \N 81538 5 0004736 \N 81539 93 6.4.1.1 \N 81540 129 20847 \N 81541 5 0031634 \N 81542 5 0004281 \N 81543 5 0003848 \N 81544 93 2.7.6.3 \N 81545 129 11415 \N 81546 5 0019793 \N 81547 5 0030408 \N 81548 129 24291 \N 81549 5 0001864 \N 81550 5 0043826 \N 81551 136 00713 \N 81552 87 RXN-8226 \N 81553 3 1522063 \N 81554 5 0018838 \N 81555 93 5.1.2.2 \N 81556 5 0004375 \N 81557 5 0018477 \N 81558 5 0001063 \N 81559 5 0015461 \N 81560 5 0033830 \N 81561 93 2.4.1.229 \N 81562 5 0032522 \N 81563 5 0050355 \N 81564 93 3.6.1.25 \N 81565 129 14160 \N 81566 5 0004382 \N 81567 93 3.6.1.42 \N 81568 3 2989286 \N 81569 5 0015388 \N 81570 131 2.A.72.2.- \N 81571 5 0050565 \N 81572 93 6.3.2.27 \N 81573 129 11763 \N 81574 5 0004196 \N 81575 93 3.4.23.25 \N 81576 5 0034522 \N 81577 130 r0774 \N 81578 5 0030555 \N 81579 5 0008243 \N 81580 5 0004296 \N 81581 5 0004297 \N 81582 93 3.4.21.68 \N 81583 93 3.4.21.73 \N 81584 5 0047849 \N 81585 93 2.4.1.5 \N 81586 87 DEXTRANSUCRASE-RXN \N 81587 5 0080101 \N 81588 93 2.1.1.71 \N 81589 3 19366698 \N 81590 5 0047771 \N 81591 93 3.5.2.4 \N 81592 129 12031 \N 81593 5 0018848 \N 81594 130 r0715 \N 81595 5 0001028 \N 81596 5 0047608 \N 81597 93 1.7.3.2 \N 81598 87 ACETYLINDOXYL-OXIDASE-RXN \N 81599 5 0001948 \N 81600 5 0008728 \N 81601 93 2.7.6.5 \N 81602 5 0043873 \N 81603 3 6352705 \N 81604 5 0047538 \N 81605 93 3.1.3.63 \N 81606 129 17840 \N 81607 5 0003835 \N 81608 93 2.4.99.1 \N 81609 5 0023024 \N 81610 5 0018545 \N 81611 133 e0346 \N 81612 5 0008236 \N 81613 5 0031706 \N 81614 5 0030848 \N 81615 93 4.3.1.16 \N 81616 129 12427 \N 81617 5 0016770 \N 81618 5 0043732 \N 81619 93 1.17.3.3 \N 81620 129 22811 \N 81621 5 0018515 \N 81622 93 1.3.1.62 \N 81623 129 19668 \N 81624 5 0050412 \N 81625 93 2.4.1.177 \N 81626 129 13440 \N 81627 5 0043745 \N 81628 136 01449 \N 81629 5 0016148 \N 81630 5 0004826 \N 81631 93 6.1.1.20 \N 81632 5 0042962 \N 81633 3 10735876 \N 81634 5 0017044 \N 81635 5 0008253 \N 81636 93 3.1.3.5 \N 81637 5 0017099 \N 81638 5 0015608 \N 81639 131 3.A.1.1.- \N 81640 131 3.A.1.2.- \N 81641 5 0018445 \N 81642 3 3301403 \N 81643 5 0050022 \N 81644 93 1.1.1.46 \N 81645 87 L-ARABINOSE-1-DEHYDROGENASE-RXN \N 81646 5 0047989 \N 81647 93 3.1.1.22 \N 81648 129 10175 \N 81649 5 0047466 \N 81650 5 0018840 \N 81651 93 5.2.1.10 \N 81652 129 10927 \N 81653 5 0018775 \N 81654 93 3.7.1.9 \N 81655 5 0071553 \N 81656 3 10736418 \N 81657 3 12369950 \N 81658 3 15796906 \N 81659 5 0003937 \N 81660 93 3.5.4.10 \N 81661 5 0004919 \N 81662 5 0047142 \N 81663 93 1.8.4.7 \N 81664 87 1.8.4.7-RXN \N 81665 5 0004252 \N 81666 5 0050640 \N 81667 5 0042319 \N 81668 5 0045440 \N 81669 93 2.3.1.164 \N 81670 87 2.3.1.164-RXN \N 81671 5 0030984 \N 81672 5 0045522 \N 81673 5 0009392 \N 81674 87 RXN0-5225 \N 81675 5 0005143 \N 81676 5 0016781 \N 81677 5 0071723 \N 81678 5 0019960 \N 81679 5 0023029 \N 81680 5 0050736 \N 81681 5 0031369 \N 81682 5 0004621 \N 81683 93 3.1.4.50 \N 81684 5 0000253 \N 81685 5 0050576 \N 81686 93 1.1.1.270 \N 81687 87 1.1.1.270-RXN \N 81688 87 RXN3O-4110 \N 81689 87 RXN66-19 \N 81690 87 RXN66-24 \N 81691 87 RXN66-314 \N 81692 87 RXN66-319 \N 81693 5 0015098 \N 81694 5 0008806 \N 81695 5 0018735 \N 81696 93 3.1.1.45 \N 81697 5 0022886 \N 81698 5 0033963 \N 81699 93 3.3.2.11 \N 81700 5 0004638 \N 81701 93 4.1.1.21 \N 81702 129 10795 \N 81703 5 0030786 \N 81704 93 2.1.1.128 \N 81705 5 0005169 \N 81706 5 0015211 \N 81707 5 0034856 \N 81708 130 r1281 \N 81709 5 0072509 \N 81710 5 0001855 \N 81711 5 0005278 \N 81712 131 2.A.1.2.13 \N 81713 5 0005018 \N 81714 3 1657917 \N 81715 5 0043890 \N 81716 93 3.1.6.4 \N 81717 5 0047116 \N 81718 93 1.3.1.25 \N 81719 87 1.3.1.25-RXN \N 81720 5 0004667 \N 81721 93 5.3.99.2 \N 81722 129 10603 \N 81723 5 0060229 \N 81724 5 0015500 \N 81725 131 2.A.23.4.1 \N 81726 5 0004108 \N 81727 93 2.3.3.1 \N 81728 5 0072346 \N 81729 3 11752598 \N 81730 5 0051474 \N 81731 5 0034026 \N 81732 93 6.3.2.28 \N 81733 5 0004876 \N 81734 5 0017024 \N 81735 5 0034246 \N 81736 5 0000998 \N 81737 5 0005248 \N 81738 5 0003924 \N 81739 5 0019874 \N 81740 93 3.5.2.12 \N 81741 129 16228 \N 81742 5 0001076 \N 81743 5 0004320 \N 81744 5 0042834 \N 81745 3 14698226 \N 81746 5 0018544 \N 81747 130 r0543 \N 81748 5 0010857 \N 81749 5 0008734 \N 81750 5 0009478 \N 81751 5 0043139 \N 81752 5 0046992 \N 81753 5 0016295 \N 81754 87 RXN-10727 \N 81755 5 0050639 \N 81756 93 2.3.1.163 \N 81757 129 18840 \N 81758 5 0009672 \N 81759 3 8688077 \N 81760 5 0035497 \N 81761 3 2875459 \N 81762 3 2900470 \N 81763 5 0005463 \N 81764 5 0016034 \N 81765 5 0018841 \N 81766 93 5.2.1.2 \N 81767 5 0008674 \N 81768 93 4.1.2.21 \N 81769 129 24467 \N 81770 5 0004394 \N 81771 3 9153262 \N 81772 5 0043835 \N 81773 93 1.17.99.4 \N 81774 136 01821 \N 81775 5 0047417 \N 81776 93 3.5.1.77 \N 81777 87 3.5.1.77-RXN \N 81778 5 0031771 \N 81779 5 0032451 \N 81780 5 0000989 \N 81781 5 0047278 \N 81782 93 2.4.1.95 \N 81783 129 16888 \N 81784 5 0008991 \N 81785 5 0033908 \N 81786 93 3.2.1.43 \N 81787 5 0008106 \N 81788 93 1.1.1.2 \N 81789 5 0030598 \N 81790 93 3.2.2.22 \N 81791 5 0005412 \N 81792 5 0010327 \N 81793 3 17163883 \N 81794 5 0016493 \N 81795 5 0050584 \N 81796 93 1.13.11.45 \N 81797 129 18996 \N 81798 5 0004163 \N 81799 93 4.1.1.33 \N 81800 129 23735 \N 81801 5 0004890 \N 81802 3 8974333 \N 81803 5 0047284 \N 81804 93 2.4.2.33 \N 81805 87 2.4.2.33-RXN \N 81806 5 0008776 \N 81807 93 2.7.2.1 \N 81808 5 0050091 \N 81809 93 1.14.13.4 \N 81810 129 17672 \N 81811 5 0031008 \N 81812 5 0043841 \N 81813 136 01546 \N 81814 3 11535063 \N 81815 5 0018672 \N 81816 93 1.14.13.35 \N 81817 129 21239 \N 81818 5 0009815 \N 81819 93 1.14.17.4 \N 81820 129 23643 \N 81821 5 0047224 \N 81822 93 2.4.1.147 \N 81823 87 2.4.1.147-RXN \N 81824 5 0033938 \N 81825 93 3.2.1.127 \N 81826 5 0047511 \N 81827 93 3.1.2.17 \N 81828 129 17348 \N 81829 5 0018706 \N 81830 93 1.97.1.2 \N 81831 5 0033130 \N 81832 5 0031435 \N 81833 5 0001515 \N 81834 5 0042083 \N 81835 5 0033411 \N 81836 5 0008963 \N 81837 5 0050012 \N 81838 93 1.14.99.27 \N 81839 129 18748 \N 81840 5 0010176 \N 81841 87 RXN-2541 \N 81842 3 14512521 \N 81843 5 0047710 \N 81844 93 3.6.1.29 \N 81845 129 13896 \N 81846 5 0004478 \N 81847 5 0004821 \N 81848 93 6.1.1.21 \N 81849 5 0003734 \N 81850 5 0070087 \N 81851 112 IPR008251 \N 81852 3 7667093 \N 81853 5 0001053 \N 81854 5 0042389 \N 81855 3 9037020 \N 81856 5 0043225 \N 81857 5 0050150 \N 81858 5 0018790 \N 81859 93 4.1.1.46 \N 81860 129 21495 \N 81861 5 0018597 \N 81862 3 16347810 \N 81863 5 0042141 \N 81864 5 0050254 \N 81865 93 2.7.11.14 \N 81866 87 RHODOPSIN-KINASE-RXN \N 81867 5 0070908 \N 81868 5 0004501 \N 81869 93 1.14.99.22 \N 81870 129 14024 \N 81871 5 0051432 \N 81872 132 PS01080 \N 81873 5 0034597 \N 81874 5 0047449 \N 81875 93 4.2.1.43 \N 81876 129 17204 \N 81877 5 0019974 \N 81878 5 0019888 \N 81879 5 0003966 \N 81880 5 0045438 \N 81881 3 1572368 \N 81882 3 2061333 \N 81883 5 0046405 \N 81884 93 4.2.1.30 \N 81885 5 0043035 \N 81886 3 12783795 \N 81887 5 0008301 \N 81888 3 10710711 \N 81889 3 19037758 \N 81890 5 0033823 \N 81891 93 2.4.1.66 \N 81892 5 0015056 \N 81893 3 12032352 \N 81894 5 0018485 \N 81895 93 1.2.1.65 \N 81896 5 0047856 \N 81897 93 3.1.1.35 \N 81898 129 10363 \N 81899 5 0019238 \N 81900 5 0005125 \N 81901 5 0016649 \N 81902 5 0004457 \N 81903 5 0016900 \N 81904 5 0047068 \N 81905 5 0016947 \N 81906 93 1.12.98.2 \N 81907 129 20020 \N 81908 5 0010852 \N 81909 5 0001653 \N 81910 5 0051525 \N 81911 5 0015520 \N 81912 131 2.A.1.2.4 \N 81913 5 0047683 \N 81914 93 1.2.1.30 \N 81915 87 ARYL-ALDEHYDE-DEHYDROGENASE-NADP+-RXN \N 81916 5 0047220 \N 81917 93 2.4.1.134 \N 81918 87 2.4.1.134-RXN \N 81919 5 0019103 \N 81920 5 0051505 \N 81921 5 0000975 \N 81922 5 0033942 \N 81923 93 3.2.1.141 \N 81924 5 0032559 \N 81925 5 0019040 \N 81926 5 0030766 \N 81927 93 2.1.1.94 \N 81928 5 0032027 \N 81929 5 0015221 \N 81930 5 0005251 \N 81931 3 11343411 \N 81932 3 2462513 \N 81933 5 0016040 \N 81934 129 13756 \N 81935 5 0016595 \N 81936 5 0034841 \N 81937 130 r1186 \N 81938 5 0016873 \N 81939 5 0050824 \N 81940 5 0032136 \N 81941 5 0043849 \N 81942 136 00473 \N 81943 3 16000296 \N 81944 5 0015477 \N 81945 131 1.B.13.-.- \N 81946 5 0030618 \N 81947 5 0042979 \N 81948 5 0005354 \N 81949 5 0080004 \N 81950 5 0016890 \N 81951 5 0050124 \N 81952 93 3.1.3.29 \N 81953 87 N-ACYLNEURAMINATE-9-PHOSPHATASE-RXN \N 81954 5 0004707 \N 81955 5 0008338 \N 81956 5 0008339 \N 81957 5 0016908 \N 81958 5 0032947 \N 81959 5 0033827 \N 81960 93 2.4.1.197 \N 81961 5 0017039 \N 81962 93 3.4.14.4 \N 81963 5 0019844 \N 81964 5 0051376 \N 81965 5 0033953 \N 81966 93 3.2.1.158 \N 81967 5 0001071 \N 81968 5 0034911 \N 81969 130 r1444 \N 81970 5 0031839 \N 81971 5 0034236 \N 81972 5 0005323 \N 81973 5 0008601 \N 81974 5 0033765 \N 81975 5 0000721 \N 81976 93 1.1.1.4 \N 81977 5 0008473 \N 81978 93 4.3.1.12 \N 81979 129 24371 \N 81980 5 0002135 \N 81981 5 0050019 \N 81982 93 1.1.1.12 \N 81983 129 16384 \N 81984 5 0070840 \N 81985 5 0070819 \N 81986 5 0051732 \N 81987 5 0015387 \N 81988 131 2.A.38.-.- \N 81989 5 0008127 \N 81990 93 1.13.11.24 \N 81991 129 15384 \N 81992 5 0005205 \N 81993 5 0004141 \N 81994 93 6.3.3.3 \N 81995 129 15808 \N 81996 5 0002171 \N 81997 5 0050277 \N 81998 93 2.7.1.14 \N 81999 129 23847 \N 82000 5 0008494 \N 82001 5 0004716 \N 82002 5 0042876 \N 82003 5 0016844 \N 82004 93 4.3.3.2 \N 82005 129 15016 \N 82006 5 0008498 \N 82007 143 604170 \N 82008 5 0033991 \N 82009 93 4.2.1.110 \N 82010 5 0008619 \N 82011 3 12893813 \N 82012 5 0031830 \N 82013 5 0015121 \N 82014 5 0047016 \N 82015 93 1.1.1.181 \N 82016 87 1.1.1.181-RXN \N 82017 5 0042879 \N 82018 5 0016759 \N 82019 5 0050205 \N 82020 93 2.1.3.5 \N 82021 129 22987 \N 82022 5 0010297 \N 82023 3 16640603 \N 82024 5 0050556 \N 82025 93 4.3.3.3 \N 82026 129 21759 \N 82027 5 0004789 \N 82028 93 2.5.1.3 \N 82029 129 22331 \N 82030 5 0008864 \N 82031 93 3.5.1.10 \N 82032 129 19836 \N 82033 5 0047655 \N 82034 93 1.1.1.54 \N 82035 129 12171 \N 82036 5 0019790 \N 82037 5 0005037 \N 82038 5 0047517 \N 82039 93 2.4.2.24 \N 82040 87 1,4-BETA-D-XYLAN-SYNTHASE-RXN \N 82041 5 0032567 \N 82042 5 0042880 \N 82043 5 0016845 \N 82044 5 0047600 \N 82045 93 2.4.1.60 \N 82046 87 ABEQUOSYLTRANSFERASE-RXN \N 82047 5 0046507 \N 82048 93 3.13.1.1 \N 82049 129 13200 \N 82050 5 0015199 \N 82051 5 0015602 \N 82052 131 3.A.1.4.1 \N 82053 5 0005137 \N 82054 5 0003789 \N 82055 5 0047939 \N 82056 93 1.1.1.19 \N 82057 129 14912 \N 82058 5 0016662 \N 82059 5 0004361 \N 82060 93 1.3.99.7 \N 82061 5 0047461 \N 82062 93 4.2.3.13 \N 82063 87 4.6.1.11-RXN \N 82064 5 0050193 \N 82065 93 4.1.2.9 \N 82066 87 PHOSPHOKETOLASE-RXN \N 82067 5 0003707 \N 82068 5 0009011 \N 82069 93 2.4.1.21 \N 82070 5 0033679 \N 82071 5 0008193 \N 82072 3 1660461 \N 82073 5 0008839 \N 82074 93 1.3.1.26 \N 82075 5 0008983 \N 82076 93 2.1.1.80 \N 82077 5 0034283 \N 82078 129 25559 \N 82079 5 0035256 \N 82080 3 9069287 \N 82081 5 0015261 \N 82082 5 0050115 \N 82083 93 3.1.3.53 \N 82084 87 MYOSIN-LIGHT-CHAIN-PHOSPHATASE-RXN \N 82085 5 0030170 \N 82086 5 0052712 \N 82087 5 0030373 \N 82088 3 2681271 \N 82089 5 0005368 \N 82090 5 0050077 \N 82091 93 5.2.1.4 \N 82092 87 MALEYLPYRUVATE-ISOMERASE-RXN \N 82093 5 0043755 \N 82094 5 0019175 \N 82095 93 3.1.3.73 \N 82096 129 24459 \N 82097 5 0005193 \N 82098 5 0043957 \N 82099 5 0016729 \N 82100 5 0008869 \N 82101 93 4.2.1.6 \N 82102 129 18652 \N 82103 5 0004298 \N 82104 5 0004430 \N 82105 93 2.7.1.67 \N 82106 129 19880 \N 82107 5 0035620 \N 82108 5 0015578 \N 82109 5 0015589 \N 82110 5 0004408 \N 82111 93 4.4.1.17 \N 82112 5 0035446 \N 82113 93 6.3.1.13 \N 82114 87 CPLX-5721 \N 82115 5 0008841 \N 82116 93 6.3.2.12 \N 82117 5 0015484 \N 82118 5 0008929 \N 82119 93 4.2.3.3 \N 82120 129 17940 \N 82121 5 0008660 \N 82122 5 0018806 \N 82123 93 3.5.99.7 \N 82124 129 16936 \N 82125 5 0032184 \N 82126 5 0008846 \N 82127 93 3.4.21.53 \N 82128 5 0042393 \N 82129 5 0045544 \N 82130 3 7604047 \N 82131 5 0050634 \N 82132 93 2.3.1.156 \N 82133 87 2.3.1.156-RXN \N 82134 5 0008831 \N 82135 93 1.1.1.133 \N 82136 129 21799 \N 82137 5 0001146 \N 82138 5 0034583 \N 82139 5 0030777 \N 82140 93 2.1.1.117 \N 82141 129 23811 \N 82142 5 0035642 \N 82143 3 11341840 \N 82144 5 0018825 \N 82145 133 e0421 \N 82146 5 0018565 \N 82147 130 r0162 \N 82148 5 0050405 \N 82149 5 0050338 \N 82150 93 1.8.2.2 \N 82151 87 THIOSULFATE-DEHYDROGENASE-RXN \N 82152 5 0042380 \N 82153 5 0047269 \N 82154 93 2.4.1.70 \N 82155 87 2.4.1.70-RXN \N 82156 5 0052741 \N 82157 93 1.14.13.80 \N 82158 129 18960 \N 82159 5 0051032 \N 82160 5 0050331 \N 82161 93 2.7.4.15 \N 82162 87 THIAMIN-DIPHOSPHATE-KINASE-RXN \N 82163 5 0008886 \N 82164 129 14672 \N 82165 5 0047896 \N 82166 93 2.2.1.3 \N 82167 87 FORMALDEHYDE-TRANSKETOLASE-RXN \N 82168 5 0050216 \N 82169 93 1.1.1.7 \N 82170 129 21587 \N 82171 5 0033770 \N 82172 93 1.14.13.86 \N 82173 5 0030569 \N 82174 5 0047832 \N 82175 93 1.1.1.142 \N 82176 129 20440 \N 82177 5 0004411 \N 82178 93 1.13.11.5 \N 82179 129 15452 \N 82180 5 0008931 \N 82181 5 0052610 \N 82182 87 RXN-8026 \N 82183 5 0008414 \N 82184 5 0045154 \N 82185 5 0080045 \N 82186 5 0034891 \N 82187 130 r1388 \N 82188 5 0050332 \N 82189 93 2.5.1.2 \N 82190 129 17700 \N 82191 5 0050608 \N 82192 93 1.2.1.67 \N 82193 129 13312 \N 82194 5 0045482 \N 82195 93 4.2.3.6 \N 82196 129 12055 \N 82197 5 0009679 \N 82198 5 0030945 \N 82199 5 0030558 \N 82200 5 0016791 \N 82201 5 0016302 \N 82202 93 3.1.3 \N 82203 5 0051192 \N 82204 5 0033296 \N 82205 88 26546 \N 82206 5 0050177 \N 82207 93 4.1.1.43 \N 82208 87 PHENYLPYRUVATE-DECARBOXYLASE-RXN \N 82209 5 0015547 \N 82210 5 0034537 \N 82211 130 r0783 \N 82212 5 0000248 \N 82213 5 0008240 \N 82214 5 0047260 \N 82215 93 2.4.1.36 \N 82216 87 2.4.1.36-RXN \N 82217 5 0032393 \N 82218 5 0008409 \N 82219 5 0015002 \N 82220 5 0018646 \N 82221 130 r0736 \N 82222 5 0050252 \N 82223 93 2.3.1.76 \N 82224 87 RETINOL-O-FATTY-ACYLTRANSFERASE-RXN \N 82225 5 0015569 \N 82226 5 0071791 \N 82227 5 0047064 \N 82228 93 1.21.3.4 \N 82229 129 24095 \N 82230 5 0004566 \N 82231 93 3.2.1.31 \N 82232 5 0033427 \N 82233 5 0035596 \N 82234 5 0015481 \N 82235 5 0015305 \N 82236 5 0034710 \N 82237 5 0018680 \N 82238 130 r0128 \N 82239 5 0030247 \N 82240 5 0050998 \N 82241 5 0016820 \N 82242 5 0004378 \N 82243 93 2.4.1.132 \N 82244 5 0035501 \N 82245 137 PF03165 \N 82246 5 0071576 \N 82247 88 52447 \N 82248 5 0018535 \N 82249 93 1.5.99.4 \N 82250 5 0001133 \N 82251 5 0001044 \N 82252 5 0001157 \N 82253 5 0015658 \N 82254 5 0008665 \N 82255 5 0017123 \N 82256 5 0003991 \N 82257 93 2.7.2.8 \N 82258 5 0043852 \N 82259 136 01319 \N 82260 87 RXN-8098 \N 82261 5 0047729 \N 82262 93 4.1.1.42 \N 82263 129 21579 \N 82264 5 0052637 \N 82265 87 RXN-8319 \N 82266 3 19682287 \N 82267 5 0005472 \N 82268 5 0080082 \N 82269 5 0004812 \N 82270 5 0017100 \N 82271 5 0030058 \N 82272 93 1.4.99.3 \N 82273 5 0042324 \N 82274 3 11988773 \N 82275 5 0019783 \N 82276 5 0032441 \N 82277 3 14657372 \N 82278 3 16448336 \N 82279 5 0047632 \N 82280 93 3.5.3.12 \N 82281 87 AGMATINE-DEIMINASE-RXN \N 82282 5 0008881 \N 82283 93 5.1.1.3 \N 82284 129 12816 \N 82285 5 0003797 \N 82286 5 0001002 \N 82287 5 0003702 \N 82288 5 0045294 \N 82289 5 0004128 \N 82290 93 1.6.2.2 \N 82291 5 0005532 \N 82292 5 0004342 \N 82293 93 3.5.99.6 \N 82294 129 12175 \N 82295 5 0004349 \N 82296 93 2.7.2.11 \N 82297 129 14880 \N 82298 5 0050398 \N 82299 93 3.1.1.50 \N 82300 87 WAX-ESTER-HYDROLASE-RXN \N 82301 5 0016708 \N 82302 5 0070996 \N 82303 5 0018761 \N 82304 93 3.5.5.6 \N 82305 129 22103 \N 82306 5 0001152 \N 82307 5 0004723 \N 82308 5 0008596 \N 82309 5 0035237 \N 82310 5 0050425 \N 82311 93 3.4.17.2 \N 82312 87 CARBOXYPEPTIDASE-B-RXN \N 82313 5 0004098 \N 82314 93 3.1.6.8 \N 82315 5 0047978 \N 82316 93 1.1.1.164 \N 82317 87 HEXADECANOL-DEHYDROGENASE-RXN \N 82318 5 0005458 \N 82319 5 0003750 \N 82320 5 0047974 \N 82321 93 3.5.4.15 \N 82322 87 GUANOSINE-DEAMINASE-RXN \N 82323 5 0034016 \N 82324 93 5.3.3.13 \N 82325 129 14892 \N 82326 5 0016882 \N 82327 5 0034736 \N 82328 129 17732 \N 82329 5 0051994 \N 82330 5 0005228 \N 82331 3 12628167 \N 82332 5 0031821 \N 82333 5 0031872 \N 82334 5 0071906 \N 82335 3 19460168 \N 82336 5 0034952 \N 82337 130 r0266 \N 82338 5 0047056 \N 82339 93 1.14.21.5 \N 82340 129 21459 \N 82341 5 0033780 \N 82342 93 1.14.13.97 \N 82343 5 0031840 \N 82344 5 0047403 \N 82345 93 3.2.1.140 \N 82346 87 3.2.1.140-RXN \N 82347 5 0042624 \N 82348 5 0018800 \N 82349 93 4.1.1.68 \N 82350 5 0052737 \N 82351 93 1.2.5.1 \N 82352 5 0047706 \N 82353 93 1.3.1.46 \N 82354 129 12820 \N 82355 5 0015187 \N 82356 5 0000227 \N 82357 5 0035804 \N 82358 5 0050132 \N 82359 93 1.4.1.17 \N 82360 129 21771 \N 82361 5 0030977 \N 82362 5 0050139 \N 82363 93 2.4.1.196 \N 82364 129 19440 \N 82365 5 0004352 \N 82366 93 1.4.1.2 \N 82367 5 0001161 \N 82368 5 0015454 \N 82369 131 3.E.-.-.- \N 82370 5 0004966 \N 82371 5 0000166 \N 82372 5 0035325 \N 82373 3 19076341 \N 82374 5 0001181 \N 82375 5 0004875 \N 82376 3 11884446 \N 82377 5 0070697 \N 82378 5 0050272 \N 82379 93 4.5.1.5 \N 82380 129 22871 \N 82381 5 0008296 \N 82382 5 0016907 \N 82383 5 0018555 \N 82384 130 r0455 \N 82385 5 0016620 \N 82386 5 0004619 \N 82387 5 0016911 \N 82388 5 0015061 \N 82389 5 0033816 \N 82390 93 2.3.1.178 \N 82391 129 16904 \N 82392 5 0047796 \N 82393 93 3.7.1.10 \N 82394 129 16476 \N 82395 5 0010420 \N 82396 3 9628017 \N 82397 5 0042019 \N 82398 5 0071160 \N 82399 5 0050592 \N 82400 93 1.14.13.68 \N 82401 129 18404 \N 82402 5 0018578 \N 82403 93 1.13.11.3 \N 82404 5 0015407 \N 82405 93 3.6.3.17 \N 82406 5 0004017 \N 82407 93 2.7.4.3 \N 82408 5 0051499 \N 82409 5 0046609 \N 82410 5 0051109 \N 82411 87 CROTCOALIG-RXN \N 82412 5 0031826 \N 82413 5 0050360 \N 82414 93 1.13.99.3 \N 82415 87 TRYPTOPHAN-2-DIOXYGENASE-RXN \N 82416 5 0004483 \N 82417 93 2.1.1.57 \N 82418 5 0005214 \N 82419 5 0019772 \N 82420 5 0005351 \N 82421 5 0005403 \N 82422 131 2.A.1.1.- \N 82423 5 0035276 \N 82424 5 0001665 \N 82425 93 2.4.99.3 \N 82426 5 0033402 \N 82427 5 0002057 \N 82428 5 0047801 \N 82429 93 2.6.1.3 \N 82430 87 CYSTEINE-AMINOTRANSFERASE-RXN \N 82431 5 0015599 \N 82432 5 0016500 \N 82433 5 0001596 \N 82434 5 0035597 \N 82435 5 0018271 \N 82436 5 0000106 \N 82437 5 0015105 \N 82438 5 0016803 \N 82439 93 3.3.2.- \N 82440 5 0003872 \N 82441 93 2.7.1.11 \N 82442 5 0019213 \N 82443 5 0005096 \N 82444 5 0050034 \N 82445 93 1.1.1.173 \N 82446 129 12652 \N 82447 5 0004079 \N 82448 93 6.3.4.9 \N 82449 5 0022878 \N 82450 5 0033911 \N 82451 93 3.2.1.61 \N 82452 5 0033886 \N 82453 93 3.1.6.7 \N 82454 5 0047244 \N 82455 93 2.4.1.187 \N 82456 87 2.4.1.187-RXN \N 82457 5 0050737 \N 82458 5 0042576 \N 82459 93 3.4.11.21 \N 82460 5 0045503 \N 82461 5 0043785 \N 82462 93 2.8.3.17 \N 82463 129 15604 \N 82464 5 0050085 \N 82465 93 1.1.1.138 \N 82466 129 16768 \N 82467 5 0004519 \N 82468 5 0047087 \N 82469 93 1.14.13.55 \N 82470 129 22647 \N 82471 5 0004974 \N 82472 5 0001531 \N 82473 5 0047452 \N 82474 93 4.2.1.73 \N 82475 129 23879 \N 82476 5 0001646 \N 82477 5 0001644 \N 82478 5 0004147 \N 82479 5 0048502 \N 82480 3 9535878 \N 82481 5 0016995 \N 82482 93 1.1.3.6 \N 82483 129 21331 \N 82484 5 0009976 \N 82485 5 0046428 \N 82486 87 DMK-RXN \N 82487 5 0004626 \N 82488 5 0035488 \N 82489 5 0017130 \N 82490 5 0034072 \N 82491 5 0047183 \N 82492 93 2.3.1.153 \N 82493 87 2.3.1.153-RXN \N 82494 5 0001005 \N 82495 5 0008308 \N 82496 5 0022844 \N 82497 5 0003904 \N 82498 93 4.1.99.3 \N 82499 5 0018828 \N 82500 133 e0048 \N 82501 5 0005524 \N 82502 5 0008527 \N 82503 5 0047026 \N 82504 93 1.1.1.213 \N 82505 87 1.1.1.213-RXN \N 82506 5 0008313 \N 82507 5 0051535 \N 82508 3 12388752 \N 82509 5 0047301 \N 82510 93 2.6.1.32 \N 82511 129 11471 \N 82512 5 0070891 \N 82513 5 0033734 \N 82514 93 1.3.99.21 \N 82515 5 0045353 \N 82516 5 0043914 \N 82517 3 17449625 \N 82518 5 0031299 \N 82519 93 2.6.1.77 \N 82520 129 10423 \N 82521 5 0042284 \N 82522 3 12417141 \N 82523 5 0032093 \N 82524 3 16337230 \N 82525 5 0033424 \N 82526 5 0005102 \N 82527 5 0030023 \N 82528 5 0016404 \N 82529 93 1.1.1.141 \N 82530 5 0047814 \N 82531 93 2.7.1.54 \N 82532 129 24591 \N 82533 5 0018572 \N 82534 130 r0276 \N 82535 5 0005218 \N 82536 5 0030270 \N 82537 5 0018714 \N 82538 93 2.3.1.101 \N 82539 129 18064 \N 82540 5 0000704 \N 82541 5 0001972 \N 82542 5 0047842 \N 82543 93 4.1.1.34 \N 82544 129 11087 \N 82545 5 0046941 \N 82546 3 12761200 \N 82547 5 0045031 \N 82548 5 0018784 \N 82549 93 3.8.1.2 \N 82550 5 0015156 \N 82551 5 0030304 \N 82552 5 0001153 \N 82553 5 0034603 \N 82554 5 0045442 \N 82555 93 1.14.11.26 \N 82556 129 16808 \N 82557 5 0047099 \N 82558 93 1.17.1.1 \N 82559 87 1.17.1.1-RXN \N 82560 5 0018792 \N 82561 130 r0520 \N 82562 5 0018129 \N 82563 3 19058272 \N 82564 5 0035381 \N 82565 5 0010279 \N 82566 3 15659623 \N 82567 5 0003714 \N 82568 5 0034540 \N 82569 130 r0824 \N 82570 5 0004130 \N 82571 93 1.11.1.5 \N 82572 5 0052599 \N 82573 87 RXN-8244 \N 82574 5 0047279 \N 82575 93 2.4.1.96 \N 82576 129 20344 \N 82577 5 0003947 \N 82578 93 2.4.1.92 \N 82579 5 0050698 \N 82580 5 0004304 \N 82581 93 2.8.2.4 \N 82582 5 0030883 \N 82583 5 0038006 \N 82584 5 0018538 \N 82585 3 9555888 \N 82586 5 0050344 \N 82587 93 1.14.13.14 \N 82588 129 10959 \N 82589 5 0015450 \N 82590 5 0050343 \N 82591 93 1.3.1.44 \N 82592 87 TRANS-2-ENOYL-COA-REDUCTASE-NAD+-RXN \N 82593 5 0004514 \N 82594 93 2.4.2.19 \N 82595 129 12736 \N 82596 5 0045499 \N 82597 5 0050538 \N 82598 93 3.5.1.87 \N 82599 87 3.5.1.87-RXN \N 82600 5 0009015 \N 82601 93 3.5.3.23 \N 82602 129 19536 \N 82603 5 0008439 \N 82604 5 0015621 \N 82605 5 0009041 \N 82606 5 0030527 \N 82607 5 0047287 \N 82608 93 2.4.99.11 \N 82609 87 2.4.99.11-RXN \N 82610 5 0034934 \N 82611 130 r0939 \N 82612 5 0050041 \N 82613 93 4.1.2.36 \N 82614 129 17912 \N 82615 5 0051636 \N 82616 5 0008368 \N 82617 5 0070335 \N 82618 5 0033738 \N 82619 93 1.5.7.1 \N 82620 5 0008775 \N 82621 93 2.8.3.8 \N 82622 5 0030354 \N 82623 3 11416225 \N 82624 3 9792536 \N 82625 5 0010180 \N 82626 5 0047157 \N 82627 93 2.3.1.100 \N 82628 87 2.3.1.100-RXN \N 82629 5 0015230 \N 82630 5 0001592 \N 82631 134 2256 \N 82632 5 0015148 \N 82633 5 0050645 \N 82634 93 2.4.1.210 \N 82635 5 0047799 \N 82636 93 1.14.13.16 \N 82637 129 15740 \N 82638 5 0015412 \N 82639 93 3.6.3.29 \N 82640 5 0018803 \N 82641 93 4.1.2.34 \N 82642 5 0004052 \N 82643 93 1.13.11.31 \N 82644 129 10431 \N 82645 5 0015109 \N 82646 5 0030159 \N 82647 5 0035757 \N 82648 5 0004576 \N 82649 5 0003819 \N 82650 5 0016362 \N 82651 5 0004654 \N 82652 93 2.7.7.8 \N 82653 5 0034023 \N 82654 93 5.4.99.18 \N 82655 5 0046028 \N 82656 5 0016504 \N 82657 5 0050051 \N 82658 93 1.14.13.30 \N 82659 87 LEUKOTRIENE-B4-20-MONOOXYGENASE-RXN \N 82660 5 0043472 \N 82661 3 12886015 \N 82662 5 0050800 \N 82663 93 3.6.5.- \N 82664 5 0008703 \N 82665 93 1.1.1.193 \N 82666 129 17848 \N 82667 5 0008046 \N 82668 3 15107857 \N 82669 3 15339666 \N 82670 5 0043498 \N 82671 5 0008695 \N 82672 133 e0307 \N 82673 5 0047485 \N 82674 5 0046966 \N 82675 5 0031857 \N 82676 5 0004487 \N 82677 129 22895 \N 82678 5 0018473 \N 82679 130 r0744 \N 82680 5 0047381 \N 82681 5 0016294 \N 82682 93 3.1.2.21 \N 82683 87 3.1.2.21-RXN \N 82684 5 0003812 \N 82685 93 3.4.21.47 \N 82686 5 0016740 \N 82687 5 0050081 \N 82688 93 3.2.1.122 \N 82689 87 MALTOSE-6-PHOSPHATE-GLUCOSIDASE-RXN \N 82690 5 0048154 \N 82691 5 0018854 \N 82692 130 r0737 \N 82693 5 0051404 \N 82694 93 3.4.22.8 \N 82695 5 0008256 \N 82696 93 2.7.13.1 \N 82697 5 0043712 \N 82698 5 0047078 \N 82699 93 1.13.11.47 \N 82700 87 1.13.11.47-RXN \N 82701 5 0031687 \N 82702 5 0031760 \N 82703 5 0031886 \N 82704 5 0008411 \N 82705 5 0015073 \N 82706 5 0010308 \N 82707 93 1.13.11.53 \N 82708 129 14164 \N 82709 5 0015324 \N 82710 5 0015023 \N 82711 5 0047761 \N 82712 93 2.7.2.7 \N 82713 129 13588 \N 82714 5 0004277 \N 82715 93 3.4.21.78 \N 82716 5 0004462 \N 82717 93 4.4.1.5 \N 82718 129 19072 \N 82719 5 0047775 \N 82720 93 2.8.3.11 \N 82721 87 CITRAMALATE-COA-TRANSFERASE-RXN \N 82722 5 0015124 \N 82723 5 0031763 \N 82724 5 0033854 \N 82725 93 2.6.1.79 \N 82726 129 22883 \N 82727 5 0033899 \N 82728 93 3.1.27.4 \N 82729 5 0004803 \N 82730 5 0004804 \N 82731 5 0008761 \N 82732 93 5.1.3.14 \N 82733 5 0008565 \N 82734 5 0015463 \N 82735 5 0070011 \N 82736 5 0018457 \N 82737 93 1.1.1.144 \N 82738 129 10667 \N 82739 5 0005185 \N 82740 3 19243634 \N 82741 5 0003852 \N 82742 93 2.3.3.13 \N 82743 129 21527 \N 82744 5 0051698 \N 82745 5 0032140 \N 82746 5 0043739 \N 82747 136 00570 \N 82748 138 O59825 \N 82749 5 0019148 \N 82750 93 4.4.1.15 \N 82751 5 0033946 \N 82752 93 3.2.1.151 \N 82753 5 0048602 \N 82754 5 0018768 \N 82755 130 r0458 \N 82756 5 0047505 \N 82757 93 1.14.13.46 \N 82758 129 11651 \N 82759 5 0015035 \N 82760 5 0008895 \N 82761 5 0015040 \N 82762 5 0050508 \N 82763 93 2.4.1.224 \N 82764 87 2.4.1.224-RXN \N 82765 5 0048606 \N 82766 5 0047321 \N 82767 93 2.7.99.1 \N 82768 87 2.7.99.1-RXN \N 82769 5 0008449 \N 82770 93 3.1.6.14 \N 82771 5 0043394 \N 82772 5 0016689 \N 82773 93 1.11.1.13 \N 82774 5 0033789 \N 82775 93 1.17.5.1 \N 82776 129 15708 \N 82777 5 0042736 \N 82778 93 2.7.1.86 \N 82779 129 12263 \N 82780 5 0047561 \N 82781 93 1.10.3.5 \N 82782 129 17248 \N 82783 5 0031811 \N 82784 5 0018518 \N 82785 93 1.3.1.65 \N 82786 129 24559 \N 82787 5 0010356 \N 82788 5 0008573 \N 82789 93 3.6.4.7 \N 82790 5 0046915 \N 82791 5 0042498 \N 82792 5 0050242 \N 82793 93 2.7.9.1 \N 82794 129 10759 \N 82795 5 0030746 \N 82796 93 2.1.1.46 \N 82797 5 0030695 \N 82798 5 0033416 \N 82799 5 0016434 \N 82800 5 0047789 \N 82801 93 3.5.2.10 \N 82802 129 14536 \N 82803 5 0008523 \N 82804 131 2.A.21.5.2 \N 82805 5 0047917 \N 82806 93 3.2.1.42 \N 82807 129 15052 \N 82808 5 0047430 \N 82809 93 3.6.1.44 \N 82810 87 3.6.1.44-RXN \N 82811 5 0019161 \N 82812 93 2.6.1.29 \N 82813 5 0047161 \N 82814 93 2.3.1.106 \N 82815 129 10955 \N 82816 5 0050459 \N 82817 93 4.2.3.2 \N 82818 129 17892 \N 82819 5 0070746 \N 82820 5 0016176 \N 82821 5 0050186 \N 82822 93 3.6.2.2 \N 82823 87 PHOSPHOADENYLYLSULFATASE-RXN \N 82824 5 0043801 \N 82825 136 01503 \N 82826 3 16075199 \N 82827 5 0018697 \N 82828 130 r0600 \N 82829 5 0047042 \N 82830 93 1.1.1.50 \N 82831 87 1.1.1.50-RXN \N 82832 5 0072569 \N 82833 5 0008100 \N 82834 5 0043887 \N 82835 3 1970646 \N 82836 5 0050073 \N 82837 93 2.7.1.136 \N 82838 129 18336 \N 82839 5 0034880 \N 82840 130 r1339 \N 82841 5 0016247 \N 82842 5 0016825 \N 82843 5 0033904 \N 82844 93 3.2.1.11 \N 82845 5 0030747 \N 82846 93 2.1.1.47 \N 82847 5 0001094 \N 82848 5 0042013 \N 82849 5 0047553 \N 82850 93 1.2.7.3 \N 82851 87 2-OXOGLUTARATE-SYNTHASE-RXN \N 82852 5 0010736 \N 82853 5 0047754 \N 82854 93 2.8.2.6 \N 82855 129 21987 \N 82856 5 0018745 \N 82857 133 e0049 \N 82858 5 0017076 \N 82859 5 0030250 \N 82860 5 0034574 \N 82861 130 r0899 \N 82862 5 0033767 \N 82863 93 1.14.13.84 \N 82864 129 22919 \N 82865 5 0015347 \N 82866 5 0016918 \N 82867 5 0003900 \N 82868 5 0050005 \N 82869 93 4.2.1.57 \N 82870 129 24147 \N 82871 5 0050038 \N 82872 93 1.1.1.10 \N 82873 129 17028 \N 82874 5 0047123 \N 82875 93 1.3.99.19 \N 82876 129 14952 \N 82877 5 0009940 \N 82878 3 10871276 \N 82879 5 0050066 \N 82880 93 5.4.3.2 \N 82881 129 19180 \N 82882 5 0008395 \N 82883 5 0008394 \N 82884 5 0019113 \N 82885 5 0004631 \N 82886 93 2.7.4.2 \N 82887 129 16344 \N 82888 5 0008528 \N 82889 5 0032518 \N 82890 5 0034889 \N 82891 130 r1384 \N 82892 5 0031716 \N 82893 5 0032397 \N 82894 5 0047829 \N 82895 93 1.5.1.19 \N 82896 87 D-NOPALINE-DEHYDROGENASE-RXN \N 82897 5 0050142 \N 82898 93 1.19.6.1 \N 82899 87 NITROGENASE-FLAVODOXIN-RXN \N 82900 5 0004702 \N 82901 5 0050499 \N 82902 5 0018585 \N 82903 130 r0407 \N 82904 5 0017175 \N 82905 5 0004325 \N 82906 93 4.99.1.1 \N 82907 129 22587 \N 82908 5 0050444 \N 82909 93 1.16.1.5 \N 82910 87 AQUACOBALAMIN-REDUCTASE-NADPH-RXN \N 82911 5 0008914 \N 82912 93 2.3.2.6 \N 82913 5 0080065 \N 82914 5 0070034 \N 82915 3 16884717 \N 82916 5 0051392 \N 82917 3 15037780 \N 82918 5 0018486 \N 82919 130 r0169 \N 82920 5 0015172 \N 82921 5 2001081 \N 82922 5 0015006 \N 82923 5 0051529 \N 82924 5 0050464 \N 82925 93 1.7.1.3 \N 82926 87 NITRATE-REDUCTASE-NADPH-RXN \N 82927 5 0047615 \N 82928 93 3.1.1.39 \N 82929 87 ACTINOMYCIN-LACTONASE-RXN \N 82930 5 0004213 \N 82931 93 3.4.22.1 \N 82932 5 0070694 \N 82933 4 ab \N 82934 3 17234634 \N 82935 5 0018816 \N 82936 130 r0618 \N 82937 5 0051397 \N 82938 5 0048018 \N 82939 5 0008710 \N 82940 93 2.3.1.47 \N 82941 129 20715 \N 82942 5 0050031 \N 82943 93 1.5.3.7 \N 82944 129 11995 \N 82945 5 0052724 \N 82946 5 0009023 \N 82947 5 0015422 \N 82948 93 3.6.3.18 \N 82949 5 0047442 \N 82950 93 4.1.2.30 \N 82951 87 4.1.2.30-RXN \N 82952 5 0004009 \N 82953 5 0030297 \N 82954 5 0047945 \N 82955 93 2.6.1.15 \N 82956 129 10403 \N 82957 5 0008373 \N 82958 5 0047003 \N 82959 93 1.1.1.134 \N 82960 129 23651 \N 82961 5 0047571 \N 82962 93 1.3.99.4 \N 82963 87 3-OXOSTEROID-1-DEHYDROGENASE-RXN \N 82964 5 0008667 \N 82965 93 1.3.1.28 \N 82966 129 23827 \N 82967 5 0035827 \N 82968 5 0008972 \N 82969 93 2.7.4.7 \N 82970 5 0004102 \N 82971 93 2.3.1.6 \N 82972 129 18824 \N 82973 5 0047837 \N 82974 93 1.1.1.179 \N 82975 129 22003 \N 82976 5 0031891 \N 82977 5 0008141 \N 82978 3 825230 \N 82979 5 0015214 \N 82980 5 0031816 \N 82981 5 0004602 \N 82982 5 0016224 \N 82983 93 1.11.1.9 \N 82984 5 0033328 \N 82985 3 15133130 \N 82986 5 0051060 \N 82987 93 3.2.1.41 \N 82988 5 0034818 \N 82989 130 r1149 \N 82990 5 0070579 \N 82991 3 19372391 \N 82992 5 0035639 \N 82993 88 26398 \N 82994 5 0005276 \N 82995 121 428625 \N 82996 5 0034533 \N 82997 130 r0764 \N 82998 5 0016638 \N 82999 5 0030342 \N 83000 3 8506296 \N 83001 5 0071997 \N 83002 5 0015078 \N 83003 5 0004963 \N 83004 5 0000497 \N 83005 5 0004058 \N 83006 5 0016400 \N 83007 93 4.1.1.28 \N 83008 5 0050620 \N 83009 93 1.3.7.5 \N 83010 87 1.3.7.5-RXN \N 83011 5 0001604 \N 83012 3 15102493 \N 83013 5 0008173 \N 83014 5 0018652 \N 83015 130 r0290 \N 83016 5 0017159 \N 83017 93 3.5.1.92 \N 83018 129 13448 \N 83019 5 0046575 \N 83020 3 10801485 \N 83021 5 0050452 \N 83022 93 1.8.1.10 \N 83023 87 COA-GLUTATHIONE-REDUCTASE-NADPH-RXN \N 83024 5 0097030 \N 83025 3 21412236 \N 83026 5 0000033 \N 83027 5 0004477 \N 83028 93 3.5.4.9 \N 83029 5 0050395 \N 83030 93 2.4.1.105 \N 83031 129 21959 \N 83032 5 0050098 \N 83033 93 3.5.3.16 \N 83034 129 11767 \N 83035 5 0005177 \N 83036 5 0050477 \N 83037 5 0050312 \N 83038 93 4.4.1.12 \N 83039 87 SULFOACETALDEHYDE-LYASE-RXN \N 83040 5 0016795 \N 83041 93 3.1.8 \N 83042 5 0035410 \N 83043 94 //www.brenda-enzymes.org/php/result_flat.php4?ecno=1.1.1.63 \N 83044 3 4152755 \N 83045 5 0008998 \N 83046 93 1.17.4.2 \N 83047 5 0050480 \N 83048 93 3.5.2.7 \N 83049 129 23663 \N 83050 5 0015356 \N 83051 5 0047734 \N 83052 93 3.6.1.16 \N 83053 129 21695 \N 83054 5 0016208 \N 83055 5 0035656 \N 83056 3 19841138 \N 83057 5 0008515 \N 83058 5 0019188 \N 83059 5 0008137 \N 83060 93 1.6.5.3 \N 83061 5 0019003 \N 83062 5 0017089 \N 83063 5 0051566 \N 83064 3 8130800 \N 83065 5 0015340 \N 83066 131 2.A.4.2.2 \N 83067 5 0072371 \N 83068 5 0047360 \N 83069 93 2.7.8.6 \N 83070 129 11655 \N 83071 5 0047904 \N 83072 93 1.1.99.11 \N 83073 129 22307 \N 83074 5 0004494 \N 83075 93 5.4.99.2 \N 83076 129 22891 \N 83077 5 0047367 \N 83078 93 2.8.2.28 \N 83079 87 2.8.2.28-RXN \N 83080 5 0019914 \N 83081 5 0048101 \N 83082 5 0035888 \N 83083 93 3.5.4.- \N 83084 3 21604715 \N 83085 5 0047472 \N 83086 93 5.5.1.2 \N 83087 129 23659 \N 83088 5 0018757 \N 83089 130 r0121 \N 83090 5 0018737 \N 83091 130 r0193 \N 83092 5 0015370 \N 83093 5 0005338 \N 83094 5 0005339 \N 83095 5 0016714 \N 83096 5 0004582 \N 83097 93 2.4.1.83 \N 83098 5 0031403 \N 83099 5 0004691 \N 83100 5 0008602 \N 83101 93 2.7.11.11 \N 83102 5 0017022 \N 83103 5 0043760 \N 83104 136 00444 \N 83105 3 1906065 \N 83106 5 0047035 \N 83107 93 1.1.1.239 \N 83108 87 1.1.1.239-RXN \N 83109 5 0003868 \N 83110 93 1.13.11.27 \N 83111 5 0034571 \N 83112 130 r0895 \N 83113 5 0015436 \N 83114 93 3.6.3.38 \N 83115 5 0052581 \N 83116 93 1.3.1.82 \N 83117 129 25651 \N 83118 5 0071795 \N 83119 3 18775313 \N 83120 5 0047180 \N 83121 93 2.3.1.150 \N 83122 129 22859 \N 83123 5 0042164 \N 83124 5 0008810 \N 83125 93 3.2.1.4 \N 83126 5 0003801 \N 83127 5 0016614 \N 83128 5 0047822 \N 83129 93 1.8.1.3 \N 83130 129 17388 \N 83131 5 0030568 \N 83132 5 0003911 \N 83133 93 6.5.1.2 \N 83134 5 0033226 \N 83135 5 0050316 \N 83136 93 2.7.4.12 \N 83137 87 T2-INDUCED-DEOXYNUCLEOTIDE-KINASE-RXN \N 83138 5 0035248 \N 83139 3 15130086 \N 83140 5 0033777 \N 83141 93 1.14.13.94 \N 83142 129 18860 \N 83143 5 0004040 \N 83144 93 3.5.1.4 \N 83145 5 0050286 \N 83146 93 3.1.3.50 \N 83147 129 24583 \N 83148 5 0003817 \N 83149 93 3.4.21.46 \N 83150 5 0050507 \N 83151 93 2.4.1.220 \N 83152 129 12007 \N 83153 5 0016669 \N 83154 5 0001871 \N 83155 3 12072369 \N 83156 3 12225919 \N 83157 5 0047973 \N 83158 93 2.7.3.1 \N 83159 129 14148 \N 83160 5 0008979 \N 83161 5 0004794 \N 83162 93 4.3.1.19 \N 83163 5 0008718 \N 83164 93 1.4.99.1 \N 83165 5 0046423 \N 83166 93 5.3.99.6 \N 83167 129 22595 \N 83168 5 0001681 \N 83169 93 3.1.1.53 \N 83170 3 1991039 \N 83171 5 0047718 \N 83172 93 1.1.1.112 \N 83173 87 INDANOL-DEHYDROGENASE-RXN \N 83174 5 0004776 \N 83175 93 6.2.1.4 \N 83176 5 0042071 \N 83177 3 2716741 \N 83178 5 0015631 \N 83179 5 0034557 \N 83180 87 RXN-8848 \N 83181 5 0004025 \N 83182 5 0034005 \N 83183 93 4.2.3.23 \N 83184 129 12519 \N 83185 5 0008819 \N 83186 3 1655696 \N 83187 5 0033923 \N 83188 93 3.2.1.94 \N 83189 5 0004028 \N 83190 133 e0432 \N 83191 5 0000402 \N 83192 5 0051419 \N 83193 5 0003942 \N 83194 93 1.2.1.38 \N 83195 5 0016672 \N 83196 5 0034781 \N 83197 130 r1030 \N 83198 5 0018590 \N 83199 130 r0640 \N 83200 5 0080096 \N 83201 5 0019834 \N 83202 5 0003844 \N 83203 93 2.4.1.18 \N 83204 5 0001033 \N 83205 5 0008233 \N 83206 5 0042887 \N 83207 5 0016788 \N 83208 5 0051750 \N 83209 3 16040662 \N 83210 5 0015651 \N 83211 5 0015202 \N 83212 5 0022891 \N 83213 5 0001165 \N 83214 5 0019966 \N 83215 5 0003788 \N 83216 5 0070457 \N 83217 3 9462881 \N 83218 5 0017111 \N 83219 93 3.6.1.15 \N 83220 5 0016216 \N 83221 93 1.21.3.1 \N 83222 129 22431 \N 83223 5 0050358 \N 83224 93 1.1.1.236 \N 83225 129 24247 \N 83226 5 0047578 \N 83227 93 2.6.1.23 \N 83228 87 4-HYDROXYGLUTAMATE-AMINOTRANSFERASE-RXN \N 83229 5 0015176 \N 83230 131 1.A.38.-.- \N 83231 5 0050555 \N 83232 93 4.2.99.19 \N 83233 87 4.2.99.19-RXN \N 83234 5 0022894 \N 83235 143 602754 \N 83236 5 0015649 \N 83237 131 2.A.10.1.1 \N 83238 5 0047813 \N 83239 93 1.1.1.11 \N 83240 87 D-ARABINITOL-4-DEHYDROGENASE-RXN \N 83241 5 0033463 \N 83242 5 0034711 \N 83243 5 0004261 \N 83244 93 3.4.21.20 \N 83245 5 0019865 \N 83246 5 0016329 \N 83247 5 0051921 \N 83248 93 6.3.5.10 \N 83249 129 23259 \N 83250 5 0004398 \N 83251 93 4.1.1.22 \N 83252 5 0031876 \N 83253 5 0043167 \N 83254 5 0030051 \N 83255 86 0198596732 \N 83256 5 0004368 \N 83257 93 1.1.5.3 \N 83258 5 0047955 \N 83259 93 1.1.99.22 \N 83260 129 17496 \N 83261 5 0042349 \N 83262 5 0047468 \N 83263 93 5.4.2.5 \N 83264 87 5.4.2.5-RXN \N 83265 5 0016015 \N 83266 5 0016832 \N 83267 5 0016228 \N 83268 5 0019707 \N 83269 5 0015652 \N 83270 5 0050078 \N 83271 93 2.8.3.3 \N 83272 129 18820 \N 83273 5 0047864 \N 83274 93 4.1.2.24 \N 83275 129 19324 \N 83276 5 0047259 \N 83277 93 2.4.1.32 \N 83278 87 2.4.1.32-RXN \N 83279 5 0030586 \N 83280 93 1.16.1.8 \N 83281 5 0001190 \N 83282 5 0018526 \N 83283 130 r0342 \N 83284 5 0004077 \N 83285 93 6.3.4.15 \N 83286 5 0008001 \N 83287 5 0004208 \N 83288 5 0034878 \N 83289 130 r1338 \N 83290 5 0047480 \N 83291 93 6.3.2.10 \N 83292 87 6.3.2.10-RXN \N 83293 5 0080015 \N 83294 87 RXN-5103 \N 83295 3 9747540 \N 83296 5 0031775 \N 83297 5 0019196 \N 83298 5 0019195 \N 83299 5 0008938 \N 83300 93 2.1.1.7 \N 83301 129 20244 \N 83302 5 0080072 \N 83303 5 0005046 \N 83304 5 0003810 \N 83305 93 2.3.2.13 \N 83306 5 0015047 \N 83307 93 1.6.2.5 \N 83308 5 0033791 \N 83309 93 1.17.99.3 \N 83310 5 0050263 \N 83311 93 3.2.2.8 \N 83312 87 RIBOSYLPYRIMIDINE-NUCLEOSIDASE-RXN \N 83313 5 0008077 \N 83314 5 0010348 \N 83315 5 0004984 \N 83316 3 19135896 \N 83317 5 0004049 \N 83318 93 4.1.3.27 \N 83319 5 0052729 \N 83320 5 0015114 \N 83321 5 0045305 \N 83322 5 0015532 \N 83323 131 2.A.1.6.2 \N 83324 5 0016508 \N 83325 93 4.2.1.74 \N 83326 5 0008198 \N 83327 5 0008124 \N 83328 93 4.2.1.96 \N 83329 129 11923 \N 83330 5 0017150 \N 83331 3 11983710 \N 83332 5 0046557 \N 83333 93 3.2.1.75 \N 83334 5 0034873 \N 83335 130 r1312 \N 83336 5 0034061 \N 83337 93 2.7.7.7 \N 83338 5 0070917 \N 83339 5 0030338 \N 83340 93 1.14.18.2 \N 83341 5 0050056 \N 83342 93 1.14.99.28 \N 83343 129 20763 \N 83344 5 0000016 \N 83345 93 3.2.1.108 \N 83346 5 0003985 \N 83347 93 2.3.1.9 \N 83348 5 0042469 \N 83349 3 1339261 \N 83350 5 0004897 \N 83351 5 0035539 \N 83352 3 17804481 \N 83353 3 7782328 \N 83354 3 7859359 \N 83355 5 0047534 \N 83356 93 5.4.99.3 \N 83357 87 2-ACETOLACTATE-MUTASE-RXN \N 83358 5 0005200 \N 83359 5 0000263 \N 83360 5 0015053 \N 83361 5 0005346 \N 83362 5 0033704 \N 83363 93 1.1.1.278 \N 83364 129 18140 \N 83365 5 0004780 \N 83366 93 2.7.7.5 \N 83367 129 16532 \N 83368 5 0005054 \N 83369 5 0019901 \N 83370 5 0008851 \N 83371 93 4.3.1.7 \N 83372 5 0047624 \N 83373 93 3.6.1.14 \N 83374 87 ADENOSINE-TETRAPHOSPHATASE-RXN \N 83375 5 0018657 \N 83376 133 e0224 \N 83377 5 0047176 \N 83378 93 2.3.1.143 \N 83379 129 19112 \N 83380 5 0004679 \N 83381 5 0030228 \N 83382 5 0004530 \N 83383 93 3.1.21.1 \N 83384 5 0034020 \N 83385 93 5.3.99.9 \N 83386 129 10131 \N 83387 5 0047112 \N 83388 93 1.2.3.3 \N 83389 129 20851 \N 83390 5 0050304 \N 83391 93 1.7.99.6 \N 83392 87 NITROUS-OXIDE-REDUCTASE-RXN \N 83393 5 0004889 \N 83394 5 0016904 \N 83395 3 2466967 \N 83396 5 0050521 \N 83397 93 2.7.9.4 \N 83398 87 2.7.9.4-RXN \N 83399 5 0030604 \N 83400 93 1.1.1.267 \N 83401 129 13720 \N 83402 5 0033807 \N 83403 93 2.3.1.119 \N 83404 5 0008426 \N 83405 5 0004863 \N 83406 5 0070717 \N 83407 5 0030039 \N 83408 5 0017152 \N 83409 5 0042134 \N 83410 5 0016834 \N 83411 5 0031724 \N 83412 5 0045431 \N 83413 93 1.14.11.23 \N 83414 86 0943088372 \N 83415 3 7904213 \N 83416 5 0047641 \N 83417 93 1.1.1.200 \N 83418 129 20040 \N 83419 5 0005080 \N 83420 5 0034864 \N 83421 130 r1275 \N 83422 5 0008922 \N 83423 5 0010300 \N 83424 5 0004703 \N 83425 5 0004678 \N 83426 5 0052627 \N 83427 87 RXN-10885 \N 83428 5 0047544 \N 83429 93 1.14.13.44 \N 83430 129 11999 \N 83431 5 0017162 \N 83432 5 0019159 \N 83433 93 3.5.1.42 \N 83434 5 0016534 \N 83435 5 0016535 \N 83436 5 0070739 \N 83437 5 0047521 \N 83438 93 1.1.1.238 \N 83439 129 21427 \N 83440 5 0000010 \N 83441 93 2.5.1.30 \N 83442 129 20839 \N 83443 5 0010280 \N 83444 87 RXN-5482 \N 83445 3 14701918 \N 83446 5 0050473 \N 83447 93 1.13.11.33 \N 83448 5 0003743 \N 83449 5 0003744 \N 83450 5 0003745 \N 83451 5 0050046 \N 83452 93 1.14.21.6 \N 83453 87 LATHOSTEROL-OXIDASE-RXN \N 83454 5 0043715 \N 83455 87 R82-RXN \N 83456 5 0000047 \N 83457 5 0034822 \N 83458 130 r1156 \N 83459 5 0070002 \N 83460 5 0003719 \N 83461 5 0008651 \N 83462 5 0015251 \N 83463 5 0016819 \N 83464 5 0015488 \N 83465 131 2.A.2.3.1 \N 83466 5 0031543 \N 83467 5 0015932 \N 83468 5 0033444 \N 83469 5 0001089 \N 83470 5 0047290 \N 83471 93 2.4.99.7 \N 83472 129 10479 \N 83473 5 0052660 \N 83474 129 23875 \N 83475 5 0032137 \N 83476 5 0043682 \N 83477 5 0071568 \N 83478 5 0051267 \N 83479 3 14985347 \N 83480 3 15452134 \N 83481 5 0005319 \N 83482 5 0060961 \N 83483 5 0018494 \N 83484 130 r0732 \N 83485 5 0052683 \N 83486 129 26084 \N 83487 5 0052675 \N 83488 103 R05686 \N 83489 5 0047134 \N 83490 93 1.8.1.8 \N 83491 87 1.6.4.4-RXN \N 83492 5 0004746 \N 83493 93 2.5.1.9 \N 83494 129 20775 \N 83495 5 0034817 \N 83496 130 r1144 \N 83497 5 0004083 \N 83498 129 21907 \N 83499 5 0004958 \N 83500 5 0050463 \N 83501 93 1.7.1.2 \N 83502 5 0051982 \N 83503 5 0047135 \N 83504 93 1.8.1.13 \N 83505 129 11983 \N 83506 5 0016631 \N 83507 5 0010485 \N 83508 5 0004598 \N 83509 93 4.3.2.5 \N 83510 5 0009000 \N 83511 93 4.4.1.16 \N 83512 5 0001883 \N 83513 5 0015087 \N 83514 5 0002113 \N 83515 5 0047660 \N 83516 93 3.5.3.14 \N 83517 129 14852 \N 83518 5 0004178 \N 83519 93 3.4.11.1 \N 83520 5 0043864 \N 83521 87 RXNN-404 \N 83522 5 0016511 \N 83523 5 0034529 \N 83524 130 r0792 \N 83525 5 0050147 \N 83526 93 2.4.2.5 \N 83527 87 NUCLEOSIDE-RIBOSYLTRANSFERASE-RXN \N 83528 5 0042800 \N 83529 5 0003887 \N 83530 5 0003888 \N 83531 5 0003889 \N 83532 5 0003890 \N 83533 5 0003891 \N 83534 5 0003893 \N 83535 5 0003894 \N 83536 5 0003895 \N 83537 5 0008723 \N 83538 5 0015999 \N 83539 5 0016000 \N 83540 5 0016448 \N 83541 5 0016449 \N 83542 5 0016450 \N 83543 5 0016451 \N 83544 5 0016452 \N 83545 5 0019984 \N 83546 5 0018740 \N 83547 93 3.13.1.3 \N 83548 129 12948 \N 83549 5 0047038 \N 83550 93 1.1.1.250 \N 83551 129 17392 \N 83552 5 0008960 \N 83553 93 2.7.8.20 \N 83554 5 0004339 \N 83555 93 3.2.1.3 \N 83556 5 0070907 \N 83557 5 0047644 \N 83558 93 2.4.1.103 \N 83559 129 20680 \N 83560 5 0016943 \N 83561 5 0034074 \N 83562 94 //www.wiley-vch.de/contents/jc_2002/2006/z503420_s.pdf \N 83563 3 16425307 \N 83564 5 0015190 \N 83565 5 0050165 \N 83566 93 2.7.1.34 \N 83567 87 PANTETHEINE-KINASE-RXN \N 83568 5 0034563 \N 83569 130 r0867 \N 83570 5 0042290 \N 83571 5 0042934 \N 83572 5 0047882 \N 83573 93 1.14.99.11 \N 83574 129 19140 \N 83575 5 0034928 \N 83576 130 r0946 \N 83577 5 0031804 \N 83578 5 0032866 \N 83579 5 0051871 \N 83580 5 0000332 \N 83581 5 0001065 \N 83582 5 0005391 \N 83583 93 3.6.3.9 \N 83584 5 0032454 \N 83585 5 0004862 \N 83586 5 0050531 \N 83587 93 3.1.3.70 \N 83588 129 19312 \N 83589 5 0070283 \N 83590 3 17291766 \N 83591 5 0010465 \N 83592 5 0033438 \N 83593 5 0055103 \N 83594 5 0050170 \N 83595 93 3.5.1.43 \N 83596 87 PEPTIDYL-GLUTAMINASE-RXN \N 83597 5 0004529 \N 83598 5 0031278 \N 83599 3 7522655 \N 83600 5 0019174 \N 83601 87 THTOREDUCT-RXN \N 83602 5 0035273 \N 83603 5 0004936 \N 83604 5 0005153 \N 83605 5 0070281 \N 83606 5 0047218 \N 83607 93 2.4.1.126 \N 83608 87 2.4.1.126-RXN \N 83609 5 0016629 \N 83610 93 1.3.1.42 \N 83611 129 21891 \N 83612 5 0097063 \N 83613 3 19456862 \N 83614 5 0050780 \N 83615 5 0030269 \N 83616 5 0018709 \N 83617 93 2.1.1.86 \N 83618 129 17588 \N 83619 5 0000339 \N 83620 5 0042895 \N 83621 5 0031739 \N 83622 5 0004446 \N 83623 93 3.1.3.62 \N 83624 5 0047194 \N 83625 93 2.3.1.72 \N 83626 129 21183 \N 83627 5 0000991 \N 83628 5 0033975 \N 83629 93 3.8.1.9 \N 83630 5 0047346 \N 83631 93 2.7.7.36 \N 83632 87 2.7.7.36-RXN \N 83633 5 0000908 \N 83634 93 1.14.11.17 \N 83635 129 15912 \N 83636 5 0034806 \N 83637 130 r1124 \N 83638 5 0048403 \N 83639 5 0008997 \N 83640 3 11948193 \N 83641 5 0001791 \N 83642 5 0043141 \N 83643 5 0008722 \N 83644 5 0051719 \N 83645 5 0034901 \N 83646 130 r1411 \N 83647 5 0035612 \N 83648 3 12221107 \N 83649 5 0019154 \N 83650 93 1.1.99.14 \N 83651 129 21267 \N 83652 5 0016774 \N 83653 5 0033872 \N 83654 93 2.8.2.30 \N 83655 5 0033741 \N 83656 93 1.8.4.9 \N 83657 129 14144 \N 83658 5 0016289 \N 83659 5 0030621 \N 83660 5 0004832 \N 83661 93 6.1.1.9 \N 83662 129 10707 \N 83663 5 0033758 \N 83664 93 1.14.11.21 \N 83665 5 0004334 \N 83666 93 3.7.1.2 \N 83667 129 10247 \N 83668 5 0015318 \N 83669 5 0034847 \N 83670 130 r1260 \N 83671 5 0052607 \N 83672 5 0022820 \N 83673 5 0050351 \N 83674 93 3.6.1.2 \N 83675 129 11091 \N 83676 5 0016657 \N 83677 5 0004317 \N 83678 93 4.2.1.61 \N 83679 5 0050029 \N 83680 93 1.4.3.14 \N 83681 129 14440 \N 83682 5 0009482 \N 83683 5 0009484 \N 83684 5 0050104 \N 83685 93 1.1.1.45 \N 83686 129 12892 \N 83687 5 0001084 \N 83688 5 0050303 \N 83689 93 1.4.1.18 \N 83690 87 LYSINE-6-DEHYDROGENASE-RXN \N 83691 5 0047254 \N 83692 93 2.4.1.202 \N 83693 87 2.4.1.202-RXN \N 83694 5 0016753 \N 83695 5 0004882 \N 83696 5 0022828 \N 83697 5 0047583 \N 83698 93 3.1.1.44 \N 83699 129 10567 \N 83700 5 0033983 \N 83701 93 4.1.1.86 \N 83702 129 15692 \N 83703 5 0003933 \N 83704 93 3.5.4.16 \N 83705 5 0015335 \N 83706 131 2.A.55.2.1 \N 83707 131 2.A.55.2.2 \N 83708 5 0008705 \N 83709 93 2.1.1.13 \N 83710 129 11175 \N 83711 5 0015309 \N 83712 131 2.A.1.2.2 \N 83713 5 0004757 \N 83714 93 1.1.1.153 \N 83715 5 0008550 \N 83716 93 3.6.5.6 \N 83717 87 3.6.1.51-RXN \N 83718 5 0051498 \N 83719 87 RXN-8528 \N 83720 5 0017069 \N 83721 5 0043749 \N 83722 3 15547277 \N 83723 5 0005484 \N 83724 5 0005485 \N 83725 5 0005486 \N 83726 5 0001852 \N 83727 5 0018511 \N 83728 93 1.3.1.58 \N 83729 129 23775 \N 83730 5 0034943 \N 83731 130 r0989 \N 83732 5 0008897 \N 83733 5 0008958 \N 83734 93 2.7.8.7 \N 83735 3 10320345 \N 83736 3 11867633 \N 83737 3 8939709 \N 83738 5 0004634 \N 83739 93 4.2.1.11 \N 83740 5 0015406 \N 83741 5 0016810 \N 83742 5 0008781 \N 83743 93 2.7.7.43 \N 83744 5 0008957 \N 83745 93 1.2.1.39 \N 83746 5 0046998 \N 83747 93 1.1.1.199 \N 83748 129 21879 \N 83749 5 0031781 \N 83750 5 0005150 \N 83751 5 0001628 \N 83752 5 0004104 \N 83753 93 3.1.1.8 \N 83754 5 0005016 \N 83755 5 0050061 \N 83756 93 1.2.1.48 \N 83757 87 LONG-CHAIN-ALDEHYDE-DEHYDROGENASE-RXN \N 83758 5 0018858 \N 83759 93 6.2.1.25 \N 83760 129 10135 \N 83761 5 0016422 \N 83762 93 2.1.1.62 \N 83763 5 0042064 \N 83764 5 0000005 \N 83765 3 12150913 \N 83766 5 0033746 \N 83767 5 0050635 \N 83768 93 2.3.1.159 \N 83769 129 22227 \N 83770 5 0033934 \N 83771 93 3.2.1.116 \N 83772 5 0004172 \N 83773 5 0016301 \N 83774 5 0047023 \N 83775 93 1.1.1.209 \N 83776 87 1.1.1.209-RXN \N 83777 5 0042007 \N 83778 5 0015561 \N 83779 131 2.A.7.6.1 \N 83780 5 0047765 \N 83781 93 3.1.3.55 \N 83782 87 CALDESMON-PHOSPHATASE-RXN \N 83783 5 0004754 \N 83784 93 1.5.1.7 \N 83785 129 12443 \N 83786 5 0046996 \N 83787 5 0047531 \N 83788 93 2.6.1.8 \N 83789 129 16020 \N 83790 5 0005244 \N 83791 5 0008081 \N 83792 5 0004434 \N 83793 5 0016792 \N 83794 93 3.1.4 \N 83795 5 0005020 \N 83796 3 10698217 \N 83797 5 0003827 \N 83798 93 2.4.1.101 \N 83799 129 11459 \N 83800 5 0008227 \N 83801 5 0005416 \N 83802 5 0080138 \N 83803 5 0050092 \N 83804 93 1.3.1.7 \N 83805 129 18556 \N 83806 5 0008661 \N 83807 93 2.2.1.7 \N 83808 129 12608 \N 83809 5 0050510 \N 83810 93 2.4.1.226 \N 83811 87 2.4.1.226-RXN \N 83812 5 0032181 \N 83813 5 0004212 \N 83814 5 0016618 \N 83815 93 1.1.1.81 \N 83816 5 0047412 \N 83817 93 3.5.1.60 \N 83818 87 3.5.1.60-RXN \N 83819 5 0045735 \N 83820 5 0032403 \N 83821 5 0030797 \N 83822 93 2.1.1.143 \N 83823 129 21047 \N 83824 5 0046570 \N 83825 5 0043809 \N 83826 93 4.2.1.109 \N 83827 129 15552 \N 83828 5 0046933 \N 83829 5 0034825 \N 83830 130 r1169 \N 83831 5 0001851 \N 83832 5 0004663 \N 83833 93 2.5.1.60 \N 83834 5 0070815 \N 83835 3 19574390 \N 83836 5 0031690 \N 83837 5 0003928 \N 83838 5 0016412 \N 83839 5 0033094 \N 83840 93 2.6.1.82 \N 83841 5 0010210 \N 83842 5 0003879 \N 83843 93 2.4.2.17 \N 83844 5 0004037 \N 83845 93 3.5.3.4 \N 83846 129 11019 \N 83847 5 0050276 \N 83848 93 2.7.1.65 \N 83849 129 18608 \N 83850 5 0033711 \N 83851 93 1.1.1.290 \N 83852 129 18832 \N 83853 5 0003856 \N 83854 93 4.2.3.4 \N 83855 129 21971 \N 83856 5 0015468 \N 83857 131 1.C.1.-.- \N 83858 5 0050417 \N 83859 93 3.5.1.38 \N 83860 87 GLUTAMINASE-ASPARAGIN-ASE-RXN \N 83861 5 0043722 \N 83862 93 4.1.1.83 \N 83863 129 22735 \N 83864 5 0050474 \N 83865 5 0050475 \N 83866 93 4.2.1.78 \N 83867 5 0043895 \N 83868 93 2.4.1.19 \N 83869 5 0047109 \N 83870 93 1.1.1.280 \N 83871 129 18272 \N 83872 5 0000286 \N 83873 93 1.4.1.1 \N 83874 5 0072320 \N 83875 5 0034852 \N 83876 130 r1309 \N 83877 5 0018862 \N 83878 130 r0157 \N 83879 5 0015427 \N 83880 5 0055077 \N 83881 5 0016005 \N 83882 5 0001602 \N 83883 5 0043884 \N 83884 93 2.3.1.169 \N 83885 3 1748656 \N 83886 5 0047370 \N 83887 93 2.8.3.7 \N 83888 87 2.8.3.7-RXN \N 83889 5 0050387 \N 83890 93 3.5.1.75 \N 83891 129 21375 \N 83892 5 0032266 \N 83893 3 11557775 \N 83894 5 0022865 \N 83895 131 5 \N 83896 5 0030614 \N 83897 5 0017072 \N 83898 3 11847227 \N 83899 5 0050454 \N 83900 93 1.12.98.1 \N 83901 129 23763 \N 83902 5 0050519 \N 83903 93 2.7.7.61 \N 83904 87 2.7.7.61-RXN \N 83905 5 0016680 \N 83906 5 0008269 \N 83907 5 0070051 \N 83908 5 0034320 \N 83909 5 0016498 \N 83910 5 0018738 \N 83911 93 3.1.2.12 \N 83912 129 14964 \N 83913 5 0033988 \N 83914 93 4.2.1.106 \N 83915 129 10439 \N 83916 5 0052632 \N 83917 87 ACONITATEDEHYDR-RXN \N 83918 5 0016725 \N 83919 5 0047966 \N 83920 93 3.1.6.3 \N 83921 129 19148 \N 83922 5 0004060 \N 83923 93 2.3.1.5 \N 83924 5 0034919 \N 83925 130 r0931 \N 83926 5 0047045 \N 83927 93 1.1.1.64 \N 83928 87 1.1.1.64-RXN \N 83929 5 0001540 \N 83930 5 0001632 \N 83931 5 0033760 \N 83932 93 1.14.11.24 \N 83933 129 12203 \N 83934 5 0016645 \N 83935 5 0047280 \N 83936 93 2.4.2.12 \N 83937 129 16152 \N 83938 5 0042605 \N 83939 5 0042606 \N 83940 5 0042607 \N 83941 5 0042923 \N 83942 94 //www.wormbook.org/chapters/www_neuropeptides/neuropeptides.html \N 83943 5 0033288 \N 83944 5 0051907 \N 83945 93 4.4.1.22 \N 83946 129 22491 \N 83947 5 0003830 \N 83948 93 2.4.1.144 \N 83949 5 0004902 \N 83950 5 0030524 \N 83951 5 0046524 \N 83952 93 2.4.1.14 \N 83953 5 0030762 \N 83954 93 2.1.1.89 \N 83955 129 22539 \N 83956 5 0051373 \N 83957 5 0035472 \N 83958 5 0004461 \N 83959 93 2.4.1.22 \N 83960 5 0047203 \N 83961 93 2.3.1.93 \N 83962 129 12363 \N 83963 5 0004504 \N 83964 93 1.14.17.3 \N 83965 5 0047377 \N 83966 93 3.1.1.66 \N 83967 129 16316 \N 83968 5 0047445 \N 83969 93 4.1.3.26 \N 83970 129 23087 \N 83971 5 0008260 \N 83972 93 2.8.3.5 \N 83973 5 0004407 \N 83974 3 9893272 \N 83975 5 0008187 \N 83976 5 0047732 \N 83977 93 5.1.3.10 \N 83978 129 21659 \N 83979 5 0018025 \N 83980 93 2.1.1.60 \N 83981 5 0043839 \N 83982 136 02094 \N 83983 3 15994324 \N 83984 5 0033718 \N 83985 93 1.1.99.29 \N 83986 5 0030732 \N 83987 93 2.1.1.12 \N 83988 5 0047032 \N 83989 93 1.1.1.230 \N 83990 129 20819 \N 83991 5 0005373 \N 83992 5 0019777 \N 83993 5 0018593 \N 83994 130 r0281 \N 83995 5 0050625 \N 83996 5 0018540 \N 83997 93 1.6.5.7 \N 83998 129 12431 \N 83999 5 0015225 \N 84000 5 0008465 \N 84001 93 1.1.1.29 \N 84002 5 0034513 \N 84003 5 0004927 \N 84004 5 0031593 \N 84005 5 0015094 \N 84006 5 0016877 \N 84007 93 6.2 \N 84008 5 0015544 \N 84009 131 2.A.1.27.1 \N 84010 5 0017135 \N 84011 3 10207005 \N 84012 5 0030293 \N 84013 5 0015416 \N 84014 93 3.6.3.28 \N 84015 5 0005165 \N 84016 5 0050572 \N 84017 93 1.1.1.264 \N 84018 87 1.1.1.264-RXN \N 84019 5 0019137 \N 84020 93 3.2.1.147 \N 84021 5 0047227 \N 84022 93 2.4.1.156 \N 84023 129 21151 \N 84024 5 0030190 \N 84025 5 0008688 \N 84026 87 MHPHYDROXY-RXN \N 84027 5 0015291 \N 84028 5 0015290 \N 84029 5 0015353 \N 84030 5 0015404 \N 84031 5 0015570 \N 84032 5 0017028 \N 84033 94 //biotech.icmb.utexas.edu \N 84034 5 0050827 \N 84035 5 0022881 \N 84036 5 0000832 \N 84037 87 2.7.1.152-RXN \N 84038 5 0005198 \N 84039 5 0050579 \N 84040 93 1.1.1.273 \N 84041 129 20032 \N 84042 5 0034895 \N 84043 130 r1398 \N 84044 5 0003690 \N 84045 5 0047462 \N 84046 93 5.1.1.11 \N 84047 129 20204 \N 84048 5 0043877 \N 84049 3 10931310 \N 84050 5 0032555 \N 84051 5 0031779 \N 84052 5 0047611 \N 84053 93 3.5.1.48 \N 84054 129 23931 \N 84055 5 0030283 \N 84056 5 0050486 \N 84057 5 0046848 \N 84058 88 52255 \N 84059 5 0008020 \N 84060 5 0004975 \N 84061 5 0018849 \N 84062 93 5.5.1.1 \N 84063 5 0008765 \N 84064 93 6.3.2.13 \N 84065 129 23679 \N 84066 5 0070506 \N 84067 3 9211901 \N 84068 5 0003831 \N 84069 93 2.4.1.38 \N 84070 5 0015229 \N 84071 5 0050074 \N 84072 93 6.2.1.9 \N 84073 87 MALATE--COA-LIGASE-RXN \N 84074 5 0045206 \N 84075 5 0045207 \N 84076 5 0031792 \N 84077 5 0080031 \N 84078 87 RXNQT-4366 \N 84079 3 18643994 \N 84080 5 0034068 \N 84081 5 0004205 \N 84082 5 0018771 \N 84083 5 0008680 \N 84084 133 e0310 \N 84085 5 0015136 \N 84086 5 0048040 \N 84087 93 4.1.1.35 \N 84088 129 23919 \N 84089 5 0033927 \N 84090 93 3.2.1.98 \N 84091 5 0047308 \N 84092 93 2.6.1.47 \N 84093 129 18812 \N 84094 5 0032035 \N 84095 5 0015575 \N 84096 5 0015586 \N 84097 5 0033149 \N 84098 3 12727870 \N 84099 3 15455074 \N 84100 3 16004875 \N 84101 5 0051779 \N 84102 87 RXN1F-161 \N 84103 5 0033802 \N 84104 93 2.1.1.154 \N 84105 129 21611 \N 84106 5 0033423 \N 84107 5 0072349 \N 84108 5 0033891 \N 84109 93 3.1.21.6 \N 84110 5 0004400 \N 84111 93 2.6.1.9 \N 84112 5 0070039 \N 84113 5 0047851 \N 84114 93 6.2.1.23 \N 84115 87 DICARBOXYLATE--COA-LIGASE-RXN \N 84116 5 0004522 \N 84117 93 3.1.27.5 \N 84118 5 0018112 \N 84119 93 5.1.1.4 \N 84120 129 10683 \N 84121 5 0070361 \N 84122 5 0015465 \N 84123 5 0004513 \N 84124 93 2.4.99.10 \N 84125 5 0034859 \N 84126 130 r1292 \N 84127 5 0050291 \N 84128 93 2.3.1.24 \N 84129 87 SPHINGOSINE-N-ACYLTRANSFERASE-RXN \N 84130 3 12069845 \N 84131 5 0047146 \N 84132 93 2.1.1.110 \N 84133 87 2.1.1.110-RXN \N 84134 5 0018502 \N 84135 130 r0553 \N 84136 5 0018618 \N 84137 93 1.14.12.1 \N 84138 5 0070546 \N 84139 5 0047074 \N 84140 93 1.13.11.- \N 84141 87 R308-RXN \N 84142 5 0008724 \N 84143 93 5.99.1.- \N 84144 3 11274059 \N 84145 5 0047423 \N 84146 93 3.5.2.14 \N 84147 129 11723 \N 84148 5 0052672 \N 84149 5 0035252 \N 84150 5 0044023 \N 84151 5 0047364 \N 84152 93 2.8.2.24 \N 84153 129 20284 \N 84154 5 0017065 \N 84155 5 0009027 \N 84156 93 1.1.1.93 \N 84157 5 0001877 \N 84158 5 0016972 \N 84159 93 1.8.3.2 \N 84160 5 0070566 \N 84161 5 0005042 \N 84162 5 0005496 \N 84163 5 0050089 \N 84164 93 5.3.1.7 \N 84165 129 22607 \N 84166 5 0047670 \N 84167 93 1.14.13.38 \N 84168 129 11979 \N 84169 5 0018365 \N 84170 93 5.1.1.16 \N 84171 5 0047393 \N 84172 93 3.1.4.42 \N 84173 129 16496 \N 84174 5 0071967 \N 84175 5 0042972 \N 84176 93 3.2.1.73 \N 84177 5 0034832 \N 84178 130 r1164 \N 84179 5 0033867 \N 84180 93 2.7.11.8 \N 84181 5 0008803 \N 84182 93 3.6.1.41 \N 84183 129 24255 \N 84184 5 0047501 \N 84185 93 1.1.1.208 \N 84186 129 23815 \N 84187 5 0005477 \N 84188 5 0008790 \N 84189 93 5.3.1.3 \N 84190 5 0050616 \N 84191 93 1.3.3.9 \N 84192 87 1.3.3.9-RXN \N 84193 5 0032141 \N 84194 5 0031835 \N 84195 5 0050540 \N 84196 93 3.5.99.5 \N 84197 129 20999 \N 84198 5 0047962 \N 84199 93 2.3.1.71 \N 84200 129 18496 \N 84201 5 0015379 \N 84202 131 2.A.30.5.- \N 84203 5 0010577 \N 84204 5 0008123 \N 84205 93 1.14.13.17 \N 84206 5 0005217 \N 84207 5 0032767 \N 84208 3 16884690 \N 84209 5 0047197 \N 84210 93 2.3.1.77 \N 84211 87 2.3.1.77-RXN \N 84212 5 0019970 \N 84213 5 0030551 \N 84214 5 0035402 \N 84215 5 0050411 \N 84216 93 2.3.2.9 \N 84217 87 AGARITINE-GAMMA-GLUTAMYLTRANSFERASE-RXN \N 84218 5 0018801 \N 84219 93 4.1.1.70 \N 84220 129 23975 \N 84221 5 0016867 \N 84222 5 0031863 \N 84223 5 0009383 \N 84224 3 10026269 \N 84225 3 18786544 \N 84226 5 0003963 \N 84227 93 6.5.1.4 \N 84228 5 0010860 \N 84229 5 0034419 \N 84230 3 18390652 \N 84231 5 0004182 \N 84232 5 0008731 \N 84233 93 3.4.17.1 \N 84234 5 0047604 \N 84235 93 5.1.2.4 \N 84236 129 12095 \N 84237 5 0030349 \N 84238 5 0072582 \N 84239 5 0019955 \N 84240 5 0019965 \N 84241 5 0010293 \N 84242 5 0033725 \N 84243 93 1.2.3.14 \N 84244 129 20532 \N 84245 5 0008740 \N 84246 93 5.3.1.14 \N 84247 129 23163 \N 84248 5 0016419 \N 84249 5 0015298 \N 84250 5 0031729 \N 84251 5 0008446 \N 84252 93 4.2.1.47 \N 84253 129 23823 \N 84254 5 0035226 \N 84255 5 0046703 \N 84256 5 0070854 \N 84257 5 0004997 \N 84258 5 0050082 \N 84259 93 2.4.1.8 \N 84260 87 MALTOSE-PHOSPHORYLASE-RXN \N 84261 5 0008435 \N 84262 5 0035605 \N 84263 93 2.6.99.- \N 84264 5 0033403 \N 84265 5 0030565 \N 84266 5 0047150 \N 84267 93 2.1.1.5 \N 84268 129 22339 \N 84269 5 0019978 \N 84270 5 0008392 \N 84271 5 0047913 \N 84272 93 2.4.1.136 \N 84273 129 15252 \N 84274 5 0050552 \N 84275 93 4.2.3.16 \N 84276 87 4.2.3.16-RXN \N 84277 5 0047474 \N 84278 93 6.2.1.19 \N 84279 87 6.2.1.19-RXN \N 84280 5 0043422 \N 84281 94 //www.heartandmetabolism.org/ \N 84282 5 0000179 \N 84283 5 0043790 \N 84284 5 0018136 \N 84285 5 0005541 \N 84286 5 0050383 \N 84287 87 URACIL-DEHYDROGENASE-RXN \N 84288 5 0050228 \N 84289 93 3.5.4.11 \N 84290 87 PTERIN-DEAMINASE-RXN \N 84291 5 0004990 \N 84292 5 0016429 \N 84293 93 2.1.1.36 \N 84294 5 0015448 \N 84295 5 0033845 \N 84296 5 0003767 \N 84297 5 0003768 \N 84298 5 0003769 \N 84299 5 0003770 \N 84300 5 0003771 \N 84301 5 0005129 \N 84302 5 0018625 \N 84303 93 1.14.12.12 \N 84304 5 0047547 \N 84305 93 4.2.1.79 \N 84306 129 17728 \N 84307 5 0015451 \N 84308 131 3.B.-.-.- \N 84309 5 0004726 \N 84310 5 0017018 \N 84311 5 0017019 \N 84312 5 0047061 \N 84313 93 1.1.99.28 \N 84314 129 20640 \N 84315 5 0016742 \N 84316 93 2.1.2 \N 84317 5 0017048 \N 84318 5 0017031 \N 84319 3 12581856 \N 84320 5 0047331 \N 84321 93 2.7.1.79 \N 84322 129 13692 \N 84323 5 0001860 \N 84324 5 0016541 \N 84325 3 8165123 \N 84326 5 0005119 \N 84327 5 2001077 \N 84328 5 0050223 \N 84329 93 4.1.1.63 \N 84330 129 22419 \N 84331 5 0033833 \N 84332 5 0052641 \N 84333 87 RXN-11660 \N 84334 5 0034794 \N 84335 130 r1057 \N 84336 5 0001069 \N 84337 5 0047104 \N 84338 93 1.2.1.42 \N 84339 129 19708 \N 84340 5 0008753 \N 84341 5 0004329 \N 84342 93 6.3.4.3 \N 84343 5 0016897 \N 84344 5 0008679 \N 84345 93 1.1.1.60 \N 84346 5 0015516 \N 84347 131 2.A.47.3.3 \N 84348 5 0047385 \N 84349 93 3.1.3.52 \N 84350 87 3.1.3.52-RXN \N 84351 5 0047159 \N 84352 93 2.3.1.104 \N 84353 87 2.3.1.104-RXN \N 84354 5 0015301 \N 84355 5 0015380 \N 84356 5 0015384 \N 84357 5 0018718 \N 84358 130 r0569 \N 84359 5 0008692 \N 84360 93 5.1.2.3 \N 84361 5 0030882 \N 84362 5 0018844 \N 84363 130 r0019 \N 84364 5 0050580 \N 84365 93 1.1.1.274 \N 84366 87 1.1.1.274-RXN \N 84367 5 0017045 \N 84368 5 0033220 \N 84369 5 0050644 \N 84370 93 2.4.1.209 \N 84371 129 13132 \N 84372 5 0048185 \N 84373 5 0042356 \N 84374 141 1.1.1.187 \N 84375 93 1.1.1.187 \N 84376 5 0005112 \N 84377 5 0034954 \N 84378 130 r1450 \N 84379 5 0030356 \N 84380 5 0043725 \N 84381 5 0010012 \N 84382 5 0043918 \N 84383 136 00522 \N 84384 3 17545282 \N 84385 5 0019806 \N 84386 5 0048001 \N 84387 5 0033724 \N 84388 93 1.2.1.72 \N 84389 129 12059 \N 84390 5 0018580 \N 84391 93 1.13.12.16 \N 84392 129 26461 \N 84393 5 0033910 \N 84394 93 3.2.1.60 \N 84395 5 0043911 \N 84396 136 02956 \N 84397 5 0008910 \N 84398 93 2.7.1.95 \N 84399 129 24259 \N 84400 5 0047694 \N 84401 93 3.5.2.1 \N 84402 87 BARBITURASE-RXN \N 84403 5 0001006 \N 84404 5 0004120 \N 84405 93 3.1.4.- \N 84406 5 0018666 \N 84407 93 1.14.13.20 \N 84408 5 0047725 \N 84409 93 2.4.1.9 \N 84410 87 INULOSUCRASE-RXN \N 84411 5 0004743 \N 84412 93 2.7.1.40 \N 84413 5 0051990 \N 84414 5 0009480 \N 84415 5 0000985 \N 84416 5 0034839 \N 84417 130 r1184 \N 84418 5 0019797 \N 84419 5 0003754 \N 84420 5 0003757 \N 84421 5 0003758 \N 84422 5 0003760 \N 84423 5 0003761 \N 84424 5 0071443 \N 84425 5 0016886 \N 84426 93 6.5 \N 84427 5 0016207 \N 84428 93 6.2.1.12 \N 84429 5 0031753 \N 84430 5 0052733 \N 84431 129 18428 \N 84432 5 0000828 \N 84433 5 0045093 \N 84434 5 0016704 \N 84435 5 0015367 \N 84436 131 2.A.29.2.1 \N 84437 5 0017095 \N 84438 3 8631808 \N 84439 5 0017094 \N 84440 5 0033265 \N 84441 88 15354 \N 84442 5 0050400 \N 84443 93 2.7.1.122 \N 84444 129 20212 \N 84445 5 0035299 \N 84446 93 2.7.1.158 \N 84447 129 20316 \N 84448 5 0032448 \N 84449 5 0003876 \N 84450 93 3.5.4.6 \N 84451 5 0017050 \N 84452 87 RXN3DJ-11417 \N 84453 5 0046976 \N 84454 5 0047997 \N 84455 93 4.1.1.40 \N 84456 129 20564 \N 84457 5 0004933 \N 84458 5 0016163 \N 84459 5 0033729 \N 84460 93 1.3.1.77 \N 84461 5 0051577 \N 84462 5 0004806 \N 84463 93 3.1.1.3 \N 84464 5 0004622 \N 84465 5 0045126 \N 84466 93 3.1.1.5 \N 84467 5 0005313 \N 84468 5 0047993 \N 84469 93 1.1.1.167 \N 84470 129 11287 \N 84471 5 0010943 \N 84472 5 0017057 \N 84473 93 3.1.1.31 \N 84474 129 12559 \N 84475 5 0000008 \N 84476 5 0000013 \N 84477 5 0005072 \N 84478 5 0018559 \N 84479 130 r0442 \N 84480 5 0015183 \N 84481 5 0030973 \N 84482 5 0055131 \N 84483 112 IPR001841 \N 84484 5 0019726 \N 84485 129 20196 \N 84486 5 0016168 \N 84487 5 0031799 \N 84488 5 0018575 \N 84489 130 r0655 \N 84490 5 0035484 \N 84491 5 0072543 \N 84492 5 0050135 \N 84493 93 3.2.2.6 \N 84494 87 NADP+-NUCLEOSIDASE-RXN \N 84495 5 0005300 \N 84496 5 0031005 \N 84497 5 0030737 \N 84498 93 2.1.1.26 \N 84499 129 14316 \N 84500 5 0034988 \N 84501 5 0004345 \N 84502 93 1.1.1.49 \N 84503 5 0033931 \N 84504 93 3.2.1.109 \N 84505 5 0001968 \N 84506 5 0001087 \N 84507 5 0032427 \N 84508 3 9119069 \N 84509 5 0034215 \N 84510 5 0033882 \N 84511 93 3.1.2.27 \N 84512 5 0050491 \N 84513 93 1.1.1.260 \N 84514 129 24487 \N 84515 5 0015360 \N 84516 5 0015357 \N 84517 131 2.A.44.4.1 \N 84518 5 0042556 \N 84519 5 0050364 \N 84520 93 2.5.1.34 \N 84521 87 TRYPTOPHAN-DIMETHYLALLYLTRANSFERASE-RXN \N 84522 5 0022874 \N 84523 5 0034567 \N 84524 130 r0884 \N 84525 5 0030403 \N 84526 5 0004853 \N 84527 93 4.1.1.37 \N 84528 5 0030294 \N 84529 5 0016997 \N 84530 5 0004978 \N 84531 5 0034701 \N 84532 5 0000064 \N 84533 5 0018489 \N 84534 93 1.14.13.82 \N 84535 129 13024 \N 84536 5 0046537 \N 84537 5 0047130 \N 84538 5 0010010 \N 84539 93 1.5.1.8 \N 84540 129 19376 \N 84541 5 0048258 \N 84542 87 KETOGLUCOSE-REDUCTASE-RXN \N 84543 5 0043274 \N 84544 5 0047628 \N 84545 93 2.7.1.118 \N 84546 87 ADP--THYMIDINE-KINASE-RXN \N 84547 5 0050649 \N 84548 5 0015168 \N 84549 5 0043857 \N 84550 93 2.1.3.9 \N 84551 129 18612 \N 84552 5 0047240 \N 84553 93 2.4.1.179 \N 84554 129 18416 \N 84555 5 0019825 \N 84556 5 0032051 \N 84557 5 0030628 \N 84558 5 0042288 \N 84559 5 0016147 \N 84560 5 0043533 \N 84561 5 0016651 \N 84562 5 0033996 \N 84563 93 4.2.2.16 \N 84564 5 0043908 \N 84565 5 0004324 \N 84566 5 0031624 \N 84567 5 0030564 \N 84568 5 0046863 \N 84569 5 0018236 \N 84570 3 10430961 \N 84571 3 10965036 \N 84572 3 2404515 \N 84573 5 0003934 \N 84574 5 0047083 \N 84575 93 1.14.13.36 \N 84576 87 1.14.13.36-RXN \N 84577 5 0033442 \N 84578 5 0016807 \N 84579 5 0051539 \N 84580 5 0034942 \N 84581 130 r0988 \N 84582 5 0047187 \N 84583 93 2.3.1.49 \N 84584 87 2.3.1.49-RXN \N 84585 5 0005237 \N 84586 5 0032146 \N 84587 5 0016454 \N 84588 5 0015540 \N 84589 131 2.A.1.15.2 \N 84590 5 0034211 \N 84591 3 17200152 \N 84592 5 0055102 \N 84593 5 0018733 \N 84594 130 r0419 \N 84595 5 0051508 \N 84596 5 0008942 \N 84597 93 1.7.1.4 \N 84598 5 0003909 \N 84599 5 0008853 \N 84600 93 3.1.11.2 \N 84601 5 0042281 \N 84602 87 RXN-5470 \N 84603 5 0050408 \N 84604 93 3.1.3.49 \N 84605 87 PYRUVATE-KINASE-PHOSPHATASE-RXN \N 84606 5 0033798 \N 84607 93 1.97.1.11 \N 84608 5 0022879 \N 84609 5 0016990 \N 84610 93 3.5.3.6 \N 84611 5 0052616 \N 84612 87 RXN-5242 \N 84613 5 0047407 \N 84614 93 3.2.2.24 \N 84615 87 3.2.2.24-RXN \N 84616 5 0045507 \N 84617 5 0004731 \N 84618 93 2.4.2.1 \N 84619 5 0033915 \N 84620 93 3.2.1.77 \N 84621 5 0034914 \N 84622 130 r1448 \N 84623 5 0031699 \N 84624 5 0002161 \N 84625 3 16087889 \N 84626 5 0050421 \N 84627 5 0016666 \N 84628 93 1.7.2.1 \N 84629 87 NITRITE-REDUCTASE-CYTOCHROME-RXN \N 84630 5 0008516 \N 84631 131 2.A.1.1.5 \N 84632 5 0003892 \N 84633 5 0005661 \N 84634 5 0047456 \N 84635 93 4.2.1.99 \N 84636 129 17944 \N 84637 5 0005329 \N 84638 5 0052719 \N 84639 5 0001163 \N 84640 5 0004039 \N 84641 93 3.5.1.54 \N 84642 129 19032 \N 84643 5 0015391 \N 84644 5 0047297 \N 84645 93 2.6.1.14 \N 84646 87 2.6.1.14-RXN \N 84647 5 0018684 \N 84648 93 1.14.15.2 \N 84649 5 0008405 \N 84650 5 0050015 \N 84651 93 4.2.1.95 \N 84652 129 23607 \N 84653 5 0008539 \N 84654 5 0031746 \N 84655 5 0008443 \N 84656 5 0080041 \N 84657 5 0015643 \N 84658 5 0015633 \N 84659 5 0047659 \N 84660 93 1.3.1.47 \N 84661 87 ALPHA-SANTONIN-12-REDUCTASE-RXN \N 84662 5 0008783 \N 84663 93 3.5.3.11 \N 84664 129 13932 \N 84665 5 0015565 \N 84666 5 0008061 \N 84667 5 0015036 \N 84668 5 0047007 \N 84669 93 1.1.1.150 \N 84670 129 11451 \N 84671 5 0052615 \N 84672 87 1.14.13.78-RXN \N 84673 5 0051065 \N 84674 5 0005209 \N 84675 5 0004067 \N 84676 93 3.5.1.1 \N 84677 5 0015311 \N 84678 131 2.A.1.2.11 \N 84679 131 2.A.1.2.12 \N 84680 5 0044198 \N 84681 5 0003777 \N 84682 5 0047012 \N 84683 87 1.1.1.170-RXN \N 84684 5 0047652 \N 84685 93 3.5.3.9 \N 84686 87 ALLANTOATE-DEIMINASE-RXN \N 84687 5 0004235 \N 84688 93 3.4.24.23 \N 84689 5 0016156 \N 84690 93 1.3.1.6 \N 84691 129 18284 \N 84692 5 0005308 \N 84693 5 0050596 \N 84694 93 1.14.13.75 \N 84695 129 17260 \N 84696 5 0019150 \N 84697 93 2.7.1.47 \N 84698 5 0004363 \N 84699 93 6.3.2.3 \N 84700 129 13560 \N 84701 5 0008506 \N 84702 131 2.A.1.5.3 \N 84703 5 0033221 \N 84704 5 0004082 \N 84705 93 5.4.2.4 \N 84706 5 0010357 \N 84707 5 0051736 \N 84708 5 0015243 \N 84709 5 0042020 \N 84710 5 0042329 \N 84711 5 0031263 \N 84712 5 0015333 \N 84713 131 2.A.17.-.- \N 84714 5 0050197 \N 84715 93 6.2.1.24 \N 84716 129 21383 \N 84717 5 0009035 \N 84718 93 3.1.21.3 \N 84719 3 15788748 \N 84720 5 0047671 \N 84721 93 2.7.7.55 \N 84722 129 22415 \N 84723 5 0047935 \N 84724 93 1.1.1.119 \N 84725 87 GLUCOSE-1-DEHYDROGENASE-NADP+-RXN \N 84726 5 0001847 \N 84727 5 0051471 \N 84728 5 0043759 \N 84729 136 01425 \N 84730 5 0050212 \N 84731 93 1.14.99.14 \N 84732 129 18208 \N 84733 5 0046623 \N 84734 3 12034738 \N 84735 5 0019787 \N 84736 5 0008639 \N 84737 5 0008640 \N 84738 3 10806345 \N 84739 3 10884686 \N 84740 5 0004668 \N 84741 93 3.5.3.15 \N 84742 5 0050190 \N 84743 93 2.7.1.10 \N 84744 129 13380 \N 84745 5 0009462 \N 84746 5 0003916 \N 84747 5 0009387 \N 84748 5 0008967 \N 84749 93 3.1.3.18 \N 84750 129 14372 \N 84751 5 0031216 \N 84752 93 3.2.1.135 \N 84753 5 0004948 \N 84754 5 0030699 \N 84755 93 1.21.4.2 \N 84756 129 12235 \N 84757 5 0097110 \N 84758 104 Scaffold_protein \N 84759 5 0015205 \N 84760 5 0015392 \N 84761 5 0017118 \N 84762 3 10103005 \N 84763 5 0045548 \N 84764 93 4.3.1.5 \N 84765 5 0043998 \N 84766 5 0035374 \N 84767 5 0003989 \N 84768 93 6.4.1.2 \N 84769 5 0047513 \N 84770 93 3.2.1.63 \N 84771 87 12-ALPHA-L-FUCOSIDASE-RXN \N 84772 5 0070492 \N 84773 5 0034042 \N 84774 5 0004607 \N 84775 93 2.3.1.43 \N 84776 5 0015265 \N 84777 5 0034216 \N 84778 5 0008866 \N 84779 93 1.1.1.57 \N 84780 129 15732 \N 84781 5 0033293 \N 84782 5 0004594 \N 84783 93 2.7.1.33 \N 84784 5 0004299 \N 84785 93 3.4.25.1 \N 84786 5 0008940 \N 84787 93 1.7.99.4 \N 84788 5 0033712 \N 84789 93 1.1.1.292 \N 84790 129 24211 \N 84791 5 0050281 \N 84792 93 2.6.1.45 \N 84793 87 SERINE--GLYOXYLATE-AMINOTRANSFERASE-RXN \N 84794 5 0050042 \N 84795 93 1.1.99.7 \N 84796 129 10987 \N 84797 5 0047741 \N 84798 93 3.1.1.70 \N 84799 129 23463 \N 84800 5 0016912 \N 84801 5 0050111 \N 84802 93 2.3.1.111 \N 84803 129 10591 \N 84804 5 0005099 \N 84805 5 0015113 \N 84806 5 0004816 \N 84807 93 6.1.1.22 \N 84808 129 11183 \N 84809 5 0048027 \N 84810 5 0001025 \N 84811 5 0008410 \N 84812 5 0005553 \N 84813 5 0047049 \N 84814 93 1.1.1.98 \N 84815 129 15952 \N 84816 5 0051408 \N 84817 5 0003994 \N 84818 5 0008423 \N 84819 93 3.4.22.40 \N 84820 5 0004160 \N 84821 93 4.2.1.9 \N 84822 5 0018642 \N 84823 133 e0252 \N 84824 5 0016933 \N 84825 5 0016977 \N 84826 93 3.2.1.132 \N 84827 5 0047892 \N 84828 93 2.4.2.25 \N 84829 87 FLAVONE-APIOSYLTRANSFERASE-RXN \N 84830 5 0003973 \N 84831 5 0030773 \N 84832 93 2.1.1.108 \N 84833 129 15204 \N 84834 5 0043822 \N 84835 93 3.1.26.8 \N 84836 136 02522 \N 84837 5 0051427 \N 84838 5 0008861 \N 84839 93 2.3.1.54 \N 84840 5 0080122 \N 84841 5 0050335 \N 84842 93 5.99.1.1 \N 84843 129 10007 \N 84844 5 0015279 \N 84845 3 15788710 \N 84846 5 0046480 \N 84847 93 2.4.1.184 \N 84848 5 0019187 \N 84849 3 8166646 \N 84850 5 0010349 \N 84851 3 12047629 \N 84852 5 0008935 \N 84853 93 4.1.3.36 \N 84854 5 0030400 \N 84855 3 11500370 \N 84856 5 0001047 \N 84857 5 0052745 \N 84858 5 0043770 \N 84859 136 01848 \N 84860 5 0017030 \N 84861 5 0016621 \N 84862 93 1.2.1.44 \N 84863 5 0019847 \N 84864 5 0010539 \N 84865 5 0019768 \N 84866 5 0042951 \N 84867 5 0070835 \N 84868 5 0008119 \N 84869 93 2.1.1.67 \N 84870 5 0035800 \N 84871 5 0005364 \N 84872 131 2.A.1.1.10 \N 84873 5 0045303 \N 84874 93 2.6.1.76 \N 84875 129 11163 \N 84876 5 0015383 \N 84877 131 2.A.53.2.2 \N 84878 5 0035174 \N 84879 5 0015485 \N 84880 5 0003687 \N 84881 5 0050352 \N 84882 93 4.1.2.32 \N 84883 129 20220 \N 84884 5 0030235 \N 84885 5 0034874 \N 84886 130 r1313 \N 84887 5 0019180 \N 84888 93 2.6.1.59 \N 84889 129 10371 \N 84890 5 0043399 \N 84891 3 7954819 \N 84892 5 0016430 \N 84893 93 2.1.1.55 \N 84894 5 0060072 \N 84895 5 0022895 \N 84896 3 17115074 \N 84897 5 0001040 \N 84898 5 0004650 \N 84899 93 3.2.1.15 \N 84900 5 0043750 \N 84901 93 2.4.1.57 \N 84902 5 0005457 \N 84903 5 0000107 \N 84904 87 GLUTAMIDOTRANS-RXN \N 84905 5 0004187 \N 84906 93 3.4.16.6 \N 84907 5 0018611 \N 84908 133 e0190 \N 84909 5 0016841 \N 84910 5 0047636 \N 84911 93 1.5.1.17 \N 84912 129 17592 \N 84913 5 0047924 \N 84914 93 1.1.1.183 \N 84915 87 GERANIOL-DEHYDROGENASE-RXN \N 84916 5 0005131 \N 84917 5 0047986 \N 84918 93 2.3.1.10 \N 84919 129 16628 \N 84920 5 0051722 \N 84921 3 10318862 \N 84922 3 8650216 \N 84923 5 0047540 \N 84924 93 1.3.1.31 \N 84925 87 2-ENOATE-REDUCTASE-RXN \N 84926 5 0005518 \N 84927 5 0016437 \N 84928 93 2.7.7.21 \N 84929 5 0004822 \N 84930 93 6.1.1.5 \N 84931 129 11063 \N 84932 5 0052669 \N 84933 5 0001049 \N 84934 5 0031702 \N 84935 5 0031683 \N 84936 5 0015344 \N 84937 131 2.A.1.16.1 \N 84938 5 0019909 \N 84939 5 0019117 \N 84940 5 0042813 \N 84941 5 0005304 \N 84942 5 0047274 \N 84943 93 2.4.1.82 \N 84944 87 2.4.1.82-RXN \N 84945 5 0015315 \N 84946 131 2.A.1.4.- \N 84947 5 0004943 \N 84948 5 0005157 \N 84949 5 0034590 \N 84950 5 0047238 \N 84951 93 2.4.1.175 \N 84952 87 2.4.1.175-RXN \N 84953 5 0047618 \N 84954 93 3.5.1.40 \N 84955 129 15068 \N 84956 5 0033837 \N 84957 93 2.4.1.238 \N 84958 5 0016217 \N 84959 87 R465-RXN \N 84960 5 0004879 \N 84961 5 0008470 \N 84962 93 1.3.99.10 \N 84963 5 0016172 \N 84964 5 0047525 \N 84965 93 1.3.1.51 \N 84966 87 2'-HYDROXYDAIDZEIN-REDUCTASE-RXN \N 84967 5 0047149 \N 84968 93 2.1.1.3 \N 84969 129 22791 \N 84970 5 0008787 \N 84971 93 2.7.1.55 \N 84972 5 0004367 \N 84973 93 1.1.1.8 \N 84974 5 0034578 \N 84975 130 r0916 \N 84976 5 0015431 \N 84977 3 1455517 \N 84978 5 0046872 \N 84979 5 0018490 \N 84980 93 1.2.3.13 \N 84981 129 17200 \N 84982 5 0004640 \N 84983 93 5.3.1.24 \N 84984 129 21543 \N 84985 5 0034007 \N 84986 93 4.2.3.25 \N 84987 129 24119 \N 84988 5 0047758 \N 84989 93 2.7.2.14 \N 84990 129 24159 \N 84991 5 0005173 \N 84992 5 0072373 \N 84993 5 0004509 \N 84994 93 1.14.99.10 \N 84995 5 0031491 \N 84996 5 0071933 \N 84997 5 0008332 \N 84998 5 0034200 \N 84999 87 RXN0-4361 \N 85000 5 0003715 \N 85001 5 0035798 \N 85002 5 0016923 \N 85003 5 0045511 \N 85004 5 0047190 \N 85005 93 2.3.1.62 \N 85006 129 10335 \N 85007 5 0080007 \N 85008 87 RXN-10742 \N 85009 3 11260719 \N 85010 5 0047980 \N 85011 93 3.5.1.32 \N 85012 129 10427 \N 85013 5 0008918 \N 85014 93 2.4.1.44 \N 85015 5 0019911 \N 85016 5 0050095 \N 85017 93 4.1.1.57 \N 85018 129 17760 \N 85019 5 0050372 \N 85020 93 6.3.2.21 \N 85021 87 UBIQUITIN--CALMODULIN-LIGASE-RXN \N 85022 5 0009459 \N 85023 5 0009471 \N 85024 5 0047711 \N 85025 93 3.5.4.23 \N 85026 87 BLASTICIDIN-S-DEAMINASE-RXN \N 85027 5 0072561 \N 85028 5 0048156 \N 85029 5 0047590 \N 85030 93 2.7.1.92 \N 85031 87 5-DEHYDRO-2-DEOXYGLUCONOKINASE-RXN \N 85032 5 0044213 \N 85033 5 0018561 \N 85034 130 r0457 \N 85035 5 0005213 \N 85036 5 0005334 \N 85037 131 2.A.22.1.2 \N 85038 5 0018651 \N 85039 130 r0296 \N 85040 5 0051116 \N 85041 93 6.6.1.2 \N 85042 129 15344 \N 85043 5 0052593 \N 85044 87 RXN-1401 \N 85045 5 0003694 \N 85046 5 0047886 \N 85047 93 1.1.1.216 \N 85048 129 14700 \N 85049 5 0071172 \N 85050 3 19897652 \N 85051 5 0033849 \N 85052 93 2.5.1.67 \N 85053 129 14012 \N 85054 5 0043994 \N 85055 5 0030674 \N 85056 5 0050448 \N 85057 93 1.21.99.1 \N 85058 129 14526 \N 85059 5 0046577 \N 85060 93 1.1.3.20 \N 85061 5 0052679 \N 85062 129 25620 \N 85063 5 0004649 \N 85064 93 3.2.1.143 \N 85065 5 0033997 \N 85066 93 4.2.2.17 \N 85067 5 0033876 \N 85068 93 2.8.2.34 \N 85069 129 17692 \N 85070 5 0045159 \N 85071 5 0046353 \N 85072 5 0016991 \N 85073 5 0015018 \N 85074 93 2.4.1.135 \N 85075 5 0005395 \N 85076 131 3.A.1.204.1 \N 85077 5 0047621 \N 85078 93 3.7.1.5 \N 85079 87 ACYLPYRUVATE-HYDROLASE-RXN \N 85080 5 0009017 \N 85081 93 3.5.1.96 \N 85082 129 15172 \N 85083 5 0047576 \N 85084 93 3.8.1.6 \N 85085 129 23443 \N 85086 5 0005140 \N 85087 5 0031812 \N 85088 5 0047128 \N 85089 93 1.5.1.27 \N 85090 129 17572 \N 85091 5 0008222 \N 85092 5 0030116 \N 85093 3 11476867 \N 85094 5 0034885 \N 85095 130 r1350 \N 85096 5 0050470 \N 85097 93 1.5.8.2 \N 85098 87 1.5.8.2-RXN \N 85099 5 0018589 \N 85100 130 r0645 \N 85101 5 0071771 \N 85102 3 6593720 \N 85103 3 8718622 \N 85104 5 0050174 \N 85105 93 4.1.1.53 \N 85106 87 PHENYLALANINE-DECARBOXYLASE-RXN \N 85107 5 0008389 \N 85108 121 163103 \N 85109 5 0018753 \N 85110 93 3.5.2.15 \N 85111 5 0034842 \N 85112 130 r1234 \N 85113 5 0070976 \N 85114 112 IPR000157 \N 85115 5 0032519 \N 85116 5 0047599 \N 85117 93 1.1.1.235 \N 85118 129 23171 \N 85119 5 0034188 \N 85120 5 0004164 \N 85121 93 2.1.1.98 \N 85122 5 0008457 \N 85123 93 2.4.1.163 \N 85124 5 0005469 \N 85125 131 2.A.29.13.1 \N 85126 5 0071164 \N 85127 3 11983179 \N 85128 3 18775984 \N 85129 5 0050319 \N 85130 93 4.1.1.73 \N 85131 129 13320 \N 85132 5 0015426 \N 85133 5 0070404 \N 85134 5 0034325 \N 85135 5 0004490 \N 85136 93 4.2.1.18 \N 85137 129 21539 \N 85138 5 0050151 \N 85139 93 4.2.1.53 \N 85140 129 21855 \N 85141 5 0004468 \N 85142 93 2.3.1.32 \N 85143 5 0050436 \N 85144 5 0008427 \N 85145 5 0008140 \N 85146 5 0008145 \N 85147 5 0035326 \N 85148 128 0000165 \N 85149 5 0050236 \N 85150 93 1.1.1.65 \N 85151 129 16132 \N 85152 5 0070412 \N 85153 5 0042018 \N 85154 5 0000269 \N 85155 5 0001607 \N 85156 5 0047959 \N 85157 93 1.4.2.1 \N 85158 87 GLYCINE-DEHYDROGENASE-CYTOCHROME-RXN \N 85159 5 0097003 \N 85160 5 0016407 \N 85161 5 0034958 \N 85162 130 r1497 \N 85163 5 0003921 \N 85164 93 6.3.4.1 \N 85165 5 0047877 \N 85166 93 1.5.1.18 \N 85167 129 16292 \N 85168 5 0008835 \N 85169 5 0008485 \N 85170 93 3.5.4.26 \N 85171 129 21871 \N 85172 5 0070573 \N 85173 5 0005545 \N 85174 5 0015401 \N 85175 131 2.A.21.6.1 \N 85176 5 0016771 \N 85177 5 0047397 \N 85178 93 3.1.4.48 \N 85179 87 3.1.4.48-RXN \N 85180 5 0046970 \N 85181 5 0005460 \N 85182 5 0030189 \N 85183 5 0004498 \N 85184 93 1.14.13.13 \N 85185 129 20576 \N 85186 5 0042294 \N 85187 5 0018751 \N 85188 130 r0707 \N 85189 5 0004836 \N 85190 3 10745161 \N 85191 5 0016718 \N 85192 5 0005029 \N 85193 5 0031530 \N 85194 3 15196882 \N 85195 5 0008954 \N 85196 5 0043897 \N 85197 93 3.2.1.133 \N 85198 5 0038025 \N 85199 140 000013879 \N 85200 5 0008486 \N 85201 93 3.6.1.52 \N 85202 5 0016641 \N 85203 5 0005355 \N 85204 5 0015579 \N 85205 5 0043142 \N 85206 5 0050121 \N 85207 93 5.1.3.8 \N 85208 87 N-ACYLGLUCOSAMINE-2-EPIMERASE-RXN \N 85209 5 0031730 \N 85210 5 0004473 \N 85211 93 1.1.1.40 \N 85212 5 0042974 \N 85213 3 12476796 \N 85214 5 0070984 \N 85215 137 PF00856 \N 85216 3 12575990 \N 85217 5 0042057 \N 85218 5 0047846 \N 85219 93 3.1.3.34 \N 85220 87 DEOXYNUCLEOTIDE-3-PHOSPHATASE-RXN \N 85221 5 0003781 \N 85222 5 0050231 \N 85223 93 2.1.3.6 \N 85224 129 21939 \N 85225 5 0016822 \N 85226 5 0070139 \N 85227 5 0050632 \N 85228 5 0004770 \N 85229 93 2.3.1.154 \N 85230 129 10411 \N 85231 5 0019107 \N 85232 5 0010472 \N 85233 87 RXN4FS-13 \N 85234 5 0047357 \N 85235 93 2.7.8.18 \N 85236 129 22443 \N 85237 5 0008994 \N 85238 93 4.1.2.19 \N 85239 5 0018758 \N 85240 130 r0122 \N 85241 5 0046906 \N 85242 5 0030346 \N 85243 5 0010291 \N 85244 5 0042411 \N 85245 87 MONOMER-12386 \N 85246 3 16492736 \N 85247 5 0009496 \N 85248 93 1.10.99.1 \N 85249 5 0034935 \N 85250 130 r0957 \N 85251 5 0042615 \N 85252 5 0034617 \N 85253 5 0047818 \N 85254 93 4.2.1.67 \N 85255 129 12952 \N 85256 5 0047870 \N 85257 93 2.5.1.24 \N 85258 129 19584 \N 85259 5 0018464 \N 85260 93 1.1.1.259 \N 85261 129 11171 \N 85262 5 0052602 \N 85263 87 RXN-8833 \N 85264 5 0004370 \N 85265 93 2.7.1.30 \N 85266 129 21647 \N 85267 5 0071535 \N 85268 5 0047909 \N 85269 93 2.3.1.134 \N 85270 87 GALACTOLIPID-O-ACYLTRANSFERASE-RXN \N 85271 5 0016758 \N 85272 5 0030676 \N 85273 5 0001143 \N 85274 5 0015145 \N 85275 5 0033922 \N 85276 93 3.2.1.92 \N 85277 5 0047566 \N 85278 93 4.3.3.1 \N 85279 129 22771 \N 85280 5 0005488 \N 85281 5 0004204 \N 85282 5 0072551 \N 85283 5 0018749 \N 85284 130 r0708 \N 85285 5 0034820 \N 85286 130 r1152 \N 85287 5 0015155 \N 85288 5 0019189 \N 85289 5 0004412 \N 85290 93 1.1.1.3 \N 85291 5 0018722 \N 85292 130 r0565 \N 85293 5 0042960 \N 85294 5 0003980 \N 85295 3 10764828 \N 85296 5 0042409 \N 85297 93 2.1.1.104 \N 85298 5 0030020 \N 85299 5 0051401 \N 85300 3 11911887 \N 85301 132 PDOC50021 \N 85302 5 0045238 \N 85303 5 0004419 \N 85304 93 4.1.3.4 \N 85305 129 24407 \N 85306 5 0015152 \N 85307 5 0047970 \N 85308 93 3.5.3.2 \N 85309 129 23271 \N 85310 5 0015193 \N 85311 5 0005296 \N 85312 5 0047785 \N 85313 93 2.8.2.18 \N 85314 129 11887 \N 85315 5 0008241 \N 85316 5 0022815 \N 85317 5 0070181 \N 85318 5 0015505 \N 85319 5 0046564 \N 85320 93 4.1.1.2 \N 85321 129 16512 \N 85322 5 0030350 \N 85323 3 3198610 \N 85324 3 8710843 \N 85325 5 0070851 \N 85326 5 0033752 \N 85327 93 1.13.11.50 \N 85328 5 0034319 \N 85329 5 0022840 \N 85330 5 0047831 \N 85331 93 5.4.3.5 \N 85332 129 14896 \N 85333 5 0050534 \N 85334 93 3.2.1.144 \N 85335 87 3.2.1.144-RXN \N 85336 5 0043729 \N 85337 136 01536 \N 85338 5 0080123 \N 85339 3 15258265 \N 85340 3 17291501 \N 85341 5 0050001 \N 85342 93 3.5.1.35 \N 85343 87 D-GLUTAMINASE-RXN \N 85344 5 0043797 \N 85345 93 1.2.7.6 \N 85346 5 0045518 \N 85347 5 0070636 \N 85348 5 0004308 \N 85349 93 3.2.1.18 \N 85350 5 0004753 \N 85351 5 0000824 \N 85352 5 0031785 \N 85353 5 0034938 \N 85354 130 r0968 \N 85355 5 0008758 \N 85356 87 LIPIDXSYNTHESIS-RXN \N 85357 3 12000770 \N 85358 5 0010298 \N 85359 87 RXN-8275 \N 85360 3 16766671 \N 85361 5 0003727 \N 85362 5 0003728 \N 85363 5 0050347 \N 85364 93 2.5.1.11 \N 85365 129 11327 \N 85366 5 0005280 \N 85367 5 0004316 \N 85368 93 1.1.1.100 \N 85369 5 0030955 \N 85370 5 0035718 \N 85371 3 19601712 \N 85372 5 0005536 \N 85373 88 17234 \N 85374 5 0019177 \N 85375 87 H2NEOPTERINP3PYROPHOSPHOHYDRO-RXN \N 85376 5 0050694 \N 85377 3 11323440 \N 85378 3 11356829 \N 85379 5 0043216 \N 85380 5 0008042 \N 85381 5 0019871 \N 85382 5 0019868 \N 85383 5 0018808 \N 85384 130 r0484 \N 85385 5 0046911 \N 85386 5 0034525 \N 85387 130 r0787 \N 85388 5 0004063 \N 85389 93 3.1.8.1 \N 85390 5 0043765 \N 85391 136 00606 \N 85392 138 P09184 \N 85393 5 0015209 \N 85394 5 0043818 \N 85395 93 1.14.13.83 \N 85396 129 17296 \N 85397 5 0050322 \N 85398 93 2.6.1.55 \N 85399 87 RXN-2301 \N 85400 5 0016170 \N 85401 5 0033720 \N 85402 93 1.1.99.31 \N 85403 5 0030367 \N 85404 5 0043813 \N 85405 136 01359 \N 85406 3 10806194 \N 85407 3 16607019 \N 85408 5 0004659 \N 85409 5 0016305 \N 85410 5 0005050 \N 85411 5 0019862 \N 85412 5 0008926 \N 85413 93 1.1.1.17 \N 85414 5 0019143 \N 85415 93 3.1.3.45 \N 85416 129 11503 \N 85417 5 0018833 \N 85418 93 4.5.1.1 \N 85419 129 19220 \N 85420 5 0031853 \N 85421 5 0008906 \N 85422 93 2.7.1.73 \N 85423 5 0004553 \N 85424 5 0016800 \N 85425 5 0047506 \N 85426 93 2.7.4.11 \N 85427 87 DEOXYADENYLATE-KINASE-RXN \N 85428 5 0010303 \N 85429 93 3.2.1.142 \N 85430 5 0043804 \N 85431 136 02122 \N 85432 5 0001589 \N 85433 134 2260 \N 85434 5 0001785 \N 85435 3 12878180 \N 85436 5 0003746 \N 85437 5 0008182 \N 85438 5 0008183 \N 85439 5 0008116 \N 85440 93 5.3.99.4 \N 85441 129 23583 \N 85442 5 0043867 \N 85443 3 16407303 \N 85444 3 7748953 \N 85445 5 0005499 \N 85446 5 0005471 \N 85447 5 0005349 \N 85448 131 2.A.29.1.1 \N 85449 5 0046921 \N 85450 5 0043820 \N 85451 5 0034336 \N 85452 5 0050246 \N 85453 93 1.14.13.43 \N 85454 129 10839 \N 85455 5 0034562 \N 85456 130 r0864 \N 85457 5 0019133 \N 85458 93 1.14.15.7 \N 85459 5 0004633 \N 85460 93 4.1.1.36 \N 85461 129 16796 \N 85462 5 0033413 \N 85463 5 0015470 \N 85464 5 0009916 \N 85465 5 0047088 \N 85466 93 1.14.13.56 \N 85467 129 10531 \N 85468 5 0005295 \N 85469 5 0005282 \N 85470 131 2.A.23.3.1 \N 85471 5 0004918 \N 85472 5 0005402 \N 85473 5 0000384 \N 85474 5 0004653 \N 85475 93 2.4.1.41 \N 85476 5 0034813 \N 85477 130 1137 \N 85478 5 0047172 \N 85479 93 2.3.1.133 \N 85480 87 2.3.1.133-RXN \N 85481 5 0018662 \N 85482 93 1.14.13.7 \N 85483 5 0050525 \N 85484 93 3.1.1.74 \N 85485 87 3.1.1.74-RXN \N 85486 5 0008798 \N 85487 93 3.4.19.5 \N 85488 5 0050008 \N 85489 93 5.3.3.11 \N 85490 129 21519 \N 85491 5 0015524 \N 85492 131 2.A.1.2.15 \N 85493 5 0015612 \N 85494 5 0031843 \N 85495 5 0030755 \N 85496 93 2.1.1.76 \N 85497 5 0043855 \N 85498 5 0050441 \N 85499 93 2.3.3.7 \N 85500 129 10503 \N 85501 5 0032115 \N 85502 93 1.1.1.289 \N 85503 129 14612 \N 85504 5 0000170 \N 85505 3 9556590 \N 85506 5 0031992 \N 85507 5 0018606 \N 85508 130 r0295 \N 85509 5 0047351 \N 85510 93 2.7.7.45 \N 85511 129 18156 \N 85512 5 0043829 \N 85513 136 00703 \N 85514 3 8915538 \N 85515 3 9707437 \N 85516 5 0018764 \N 85517 93 3.5.99.4 \N 85518 5 0080012 \N 85519 3 18557837 \N 85520 5 0051022 \N 85521 5 0032217 \N 85522 5 0044015 \N 85523 5 0005189 \N 85524 5 0035991 \N 85525 3 21491957 \N 85526 5 0047437 \N 85527 93 4.1.1.77 \N 85528 87 4.1.1.77-RXN \N 85529 5 0001019 \N 85530 5 0047131 \N 85531 93 1.5.1.9 \N 85532 129 24523 \N 85533 5 0022852 \N 85534 5 0033449 \N 85535 5 0047661 \N 85536 93 5.1.1.10 \N 85537 87 AMINO-ACID-RACEMASE-RXN \N 85538 5 0004612 \N 85539 93 4.1.1.49 \N 85540 129 18620 \N 85541 5 0050025 \N 85542 93 1.4.3.11 \N 85543 87 L-GLUTAMATE-OXIDASE-RXN \N 85544 5 0052628 \N 85545 5 0018693 \N 85546 93 1.17.99.2 \N 85547 129 17900 \N 85548 5 0051741 \N 85549 87 RXN-2542 \N 85550 5 0034826 \N 85551 130 r1170 \N 85552 5 0030620 \N 85553 5 0032934 \N 85554 5 0005498 \N 85555 5 0003774 \N 85556 5 0001098 \N 85557 5 0004953 \N 85558 5 0047587 \N 85559 93 4.2.1.62 \N 85560 129 22067 \N 85561 5 0008875 \N 85562 5 0008168 \N 85563 5 0004480 \N 85564 5 0008310 \N 85565 5 0035877 \N 85566 112 IPR001875 \N 85567 5 0018762 \N 85568 93 3.5.5.7 \N 85569 5 0033840 \N 85570 93 2.4.1.242 \N 85571 5 0005275 \N 85572 5 0005279 \N 85573 5 0017105 \N 85574 5 0016815 \N 85575 5 0003952 \N 85576 93 6.3.5.1 \N 85577 5 0050329 \N 85578 93 5.5.1.3 \N 85579 129 18100 \N 85580 5 0004672 \N 85581 5 0050222 \N 85582 87 PROTEIN-KINASE-RXN \N 85583 5 0047557 \N 85584 93 1.7.3.5 \N 85585 129 22375 \N 85586 5 0009003 \N 85587 5 0004338 \N 85588 93 3.2.1.58 \N 85589 5 0016936 \N 85590 88 24163 \N 85591 5 0019208 \N 85592 5 0050161 \N 85593 93 2.8.3.2 \N 85594 129 23591 \N 85595 5 0046987 \N 85596 5 0001618 \N 85597 3 7621403 \N 85598 5 0008353 \N 85599 93 2.7.11.23 \N 85600 5 0008399 \N 85601 3 1742282 \N 85602 3 1981702 \N 85603 5 0005372 \N 85604 5 0008988 \N 85605 93 2.1.1.48 \N 85606 5 0071916 \N 85607 5 0005224 \N 85608 5 0010284 \N 85609 5 0015320 \N 85610 131 2.A.29.4.1 \N 85611 5 0004114 \N 85612 5 0033850 \N 85613 93 2.5.1.68 \N 85614 129 23303 \N 85615 5 0008738 \N 85616 93 4.1.2.17 \N 85617 129 12936 \N 85618 5 0070773 \N 85619 3 19560421 \N 85620 5 0022859 \N 85621 5 0005481 \N 85622 5 0030781 \N 85623 93 2.1.1.121 \N 85624 5 0017082 \N 85625 5 0004967 \N 85626 5 0004248 \N 85627 5 0047567 \N 85628 93 1.3.1.17 \N 85629 129 20260 \N 85630 5 0033709 \N 85631 5 0003792 \N 85632 5 0008714 \N 85633 93 3.2.2.4 \N 85634 129 20132 \N 85635 5 0051861 \N 85636 5 0005506 \N 85637 5 0031151 \N 85638 3 15371351 \N 85639 5 0070006 \N 85640 5 0043334 \N 85641 5 0018636 \N 85642 130 r0495 \N 85643 5 0050168 \N 85644 93 3.5.1.50 \N 85645 129 10003 \N 85646 5 0042945 \N 85647 5 0015194 \N 85648 5 0015511 \N 85649 5 0008656 \N 85650 5 0033877 \N 85651 5 0018728 \N 85652 93 2.8.3.15 \N 85653 129 16472 \N 85654 5 0052705 \N 85655 5 0047550 \N 85656 93 1.1.1.172 \N 85657 129 14796 \N 85658 5 0033612 \N 85659 5 0008317 \N 85660 5 0047343 \N 85661 93 2.7.7.33 \N 85662 129 18216 \N 85663 5 0034802 \N 85664 130 r1079 \N 85665 5 0033792 \N 85666 93 1.17.99.5 \N 85667 5 0008270 \N 85668 5 0047868 \N 85669 93 4.2.1.85 \N 85670 129 20256 \N 85671 5 0031823 \N 85672 5 0008951 \N 85673 87 PALMITOTRANS-RXN \N 85674 5 0015557 \N 85675 3 17956229 \N 85676 5 0047153 \N 85677 93 2.1.2.8 \N 85678 129 11283 \N 85679 5 0047275 \N 85680 93 2.4.1.86 \N 85681 87 2.4.1.86-RXN \N 85682 5 0008574 \N 85683 93 3.6.4.4 \N 85684 5 0043121 \N 85685 5 0050100 \N 85686 93 5.3.3.6 \N 85687 129 23483 \N 85688 5 0005180 \N 85689 5 0004629 \N 85690 5 0042298 \N 85691 5 0016677 \N 85692 5 0008771 \N 85693 93 6.2.1.22 \N 85694 5 0016724 \N 85695 5 0005019 \N 85696 5 0016416 \N 85697 5 0005006 \N 85698 5 0005023 \N 85699 5 0004231 \N 85700 93 3.4.24.56 \N 85701 5 0042096 \N 85702 5 0043781 \N 85703 93 2.1.1.151 \N 85704 136 01812 \N 85705 5 0009487 \N 85706 5 0008510 \N 85707 131 2.A.31.2.1 \N 85708 5 0030796 \N 85709 93 2.1.1.142 \N 85710 129 13140 \N 85711 5 0047809 \N 85712 93 1.1.99.6 \N 85713 129 15092 \N 85714 5 0004424 \N 85715 93 4.2.1.19 \N 85716 129 11043 \N 85717 5 0050128 \N 85718 93 3.5.1.71 \N 85719 129 10487 \N 85720 5 0018633 \N 85721 130 r0208 \N 85722 5 0052578 \N 85723 87 RXN-8574 \N 85724 5 0005066 \N 85725 5 0015593 \N 85726 5 0050589 \N 85727 5 0045432 \N 85728 93 1.14.11.19 \N 85729 87 1.14.11.19-RXN \N 85730 5 0009465 \N 85731 5 0015066 \N 85732 5 0016286 \N 85733 5 0018851 \N 85734 93 5.5.1.10 \N 85735 129 16696 \N 85736 5 0022824 \N 85737 5 0047326 \N 85738 93 2.7.1.140 \N 85739 87 2.7.1.140-RXN \N 85740 5 0031808 \N 85741 5 0004911 \N 85742 5 0050469 \N 85743 93 4.2.3.11 \N 85744 129 19568 \N 85745 5 0001038 \N 85746 5 0032406 \N 85747 5 0022872 \N 85748 5 0045130 \N 85749 93 2.8.2.21 \N 85750 5 0031995 \N 85751 5 0034722 \N 85752 144 C26 \N 85753 5 0030754 \N 85754 93 2.1.1.75 \N 85755 5 0050107 \N 85756 93 2.3.1.69 \N 85757 87 MONOTERPENOL-O-ACETYLTRANSFERASE-RXN \N 85758 5 0016851 \N 85759 93 6.6.1.1 \N 85760 129 13964 \N 85761 5 0010488 \N 85762 5 0030378 \N 85763 5 0015083 \N 85764 5 0015084 \N 85765 5 0018788 \N 85766 93 3.8.1.8 \N 85767 129 11315 \N 85768 5 0050388 \N 85769 93 1.1.1.203 \N 85770 129 22407 \N 85771 5 0004866 \N 85772 5 0030793 \N 85773 93 2.1.1.139 \N 85774 129 11699 \N 85775 5 0004355 \N 85776 129 15504 \N 85777 5 0008482 \N 85778 93 1.8.3.1 \N 85779 129 24603 \N 85780 5 0047373 \N 85781 93 3.1.1.54 \N 85782 129 11551 \N 85783 5 0031962 \N 85784 5 0003763 \N 85785 5 0003764 \N 85786 5 0003765 \N 85787 5 0003766 \N 85788 93 3.6.4.9 \N 85789 5 0052693 \N 85790 3 21502530 \N 85791 5 0043431 \N 85792 3 1479344 \N 85793 5 0035241 \N 85794 5 0031879 \N 85795 5 0015210 \N 85796 5 0004442 \N 85797 93 3.1.3.65 \N 85798 5 0004536 \N 85799 5 0004537 \N 85800 5 0042124 \N 85801 3 10809732 \N 85802 5 0046965 \N 85803 5 0047258 \N 85804 93 2.4.1.23 \N 85805 129 19488 \N 85806 5 0008554 \N 85807 93 3.6.3.7 \N 85808 5 0035244 \N 85809 5 0047961 \N 85810 93 2.3.1.13 \N 85811 87 GLYCINE-N-ACYLTRANSFERASE-RXN \N 85812 5 0018727 \N 85813 130 r0563 \N 85814 5 0005092 \N 85815 5 0004134 \N 85816 93 2.4.1.25 \N 85817 5 0050209 \N 85818 93 1.1.3.30 \N 85819 87 POLYVINYL-ALCOHOL-OXIDASE-RXN \N 85820 5 0004453 \N 85821 93 3.1.1.59 \N 85822 145 AF304352 \N 85823 5 0018497 \N 85824 130 r0514 \N 85825 5 0008814 \N 85826 93 2.8.3.10 \N 85827 5 0043961 \N 85828 136 03306 \N 85829 3 17259315 \N 85830 5 0022890 \N 85831 5 0015082 \N 85832 5 0022889 \N 85833 5 0071253 \N 85834 3 19864490 \N 85835 5 0030572 \N 85836 5 0016019 \N 85837 5 0045552 \N 85838 93 1.1.1.219 \N 85839 5 0018568 \N 85840 130 r0501 \N 85841 5 0008194 \N 85842 112 IPR004224 \N 85843 3 11846783 \N 85844 5 0047713 \N 85845 93 1.1.1.16 \N 85846 129 20688 \N 85847 5 0043775 \N 85848 136 01814 \N 85849 5 0005369 \N 85850 131 2.A.22.3.3 \N 85851 5 0008772 \N 85852 93 2.7.11.5 \N 85853 5 0030145 \N 85854 5 0009470 \N 85855 5 0019833 \N 85856 5 0034647 \N 85857 5 0052723 \N 85858 5 0034544 \N 85859 130 r0810 \N 85860 5 0001010 \N 85861 5 0003813 \N 85862 93 3.4.21.43 \N 85863 5 0003996 \N 85864 5 0008975 \N 85865 93 3.4.24.55 \N 85866 5 0047827 \N 85867 93 1.5.1.16 \N 85868 129 17628 \N 85869 5 0004845 \N 85870 93 2.4.2.9 \N 85871 129 13020 \N 85872 5 0033392 \N 85873 5 0015553 \N 85874 5 0051371 \N 85875 5 0019961 \N 85876 104 Interferon \N 85877 5 0031078 \N 85878 5 0016784 \N 85879 93 2.8.1.2 \N 85880 5 0060001 \N 85881 5 0031712 \N 85882 5 0000260 \N 85883 131 3.A.2.2.1 \N 85884 131 3.A.2.2.3 \N 85885 5 0030941 \N 85886 5 0034940 \N 85887 130 r0984 \N 85888 5 0051748 \N 85889 93 2.7.7.64 \N 85890 3 15326166 \N 85891 5 0008271 \N 85892 5 0031728 \N 85893 5 0031071 \N 85894 93 2.8.1.7 \N 85895 5 0050602 \N 85896 93 1.14.99.34 \N 85897 87 1.14.99.34-RXN \N 85898 5 0004033 \N 85899 5 0019203 \N 85900 5 0034575 \N 85901 130 r0901 \N 85902 5 0004024 \N 85903 5 0004790 \N 85904 93 2.1.1.96 \N 85905 129 19616 \N 85906 5 0070594 \N 85907 3 17956872 \N 85908 5 0019764 \N 85909 5 0017172 \N 85910 93 1.13.11.20 \N 85911 129 20444 \N 85912 5 0080097 \N 85913 87 RXN-10139 \N 85914 5 0015624 \N 85915 5 0047664 \N 85916 93 3.5.4.8 \N 85917 87 AMINOIMIDAZOLASE-RXN \N 85918 5 0034786 \N 85919 130 r1039 \N 85920 5 0050183 \N 85921 93 1.14.13.26 \N 85922 129 11371 \N 85923 5 0052657 \N 85924 5 0016212 \N 85925 93 2.6.1.7 \N 85926 5 0070287 \N 85927 3 17459943 \N 85928 3 19154717 \N 85929 5 0017154 \N 85930 5 0047231 \N 85931 93 2.4.1.160 \N 85932 129 20180 \N 85933 5 0070182 \N 85934 5 0004152 \N 85935 93 1.3.5.2 \N 85936 129 18076 \N 85937 5 0051739 \N 85938 5 0047699 \N 85939 93 3.7.1.7 \N 85940 129 11911 \N 85941 5 0031688 \N 85942 5 0001108 \N 85943 5 0016737 \N 85944 5 0019905 \N 85945 5 0070009 \N 85946 5 0016231 \N 85947 87 3.2.1.52-RXN \N 85948 5 0031735 \N 85949 5 0050202 \N 85950 93 4.2.1.87 \N 85951 129 18176 \N 85952 5 0008828 \N 85953 87 RXN0-384 \N 85954 5 0015282 \N 85955 5 0016085 \N 85956 3 8902848 \N 85957 5 0015539 \N 85958 131 2.A.1.14.2 \N 85959 5 0047053 \N 85960 93 1.14.21.2 \N 85961 129 20488 \N 85962 5 0034001 \N 85963 93 4.2.2.21 \N 85964 5 0050267 \N 85965 93 2.5.1.20 \N 85966 87 RUBBER-CIS-POLYPRENYLCISTRANSFERASE-RXN \N 85967 5 0005088 \N 85968 5 0004980 \N 85969 3 7581459 \N 85970 5 0005290 \N 85971 5 0004510 \N 85972 93 1.14.16.4 \N 85973 5 0048037 \N 85974 5 0033285 \N 85975 5 0008073 \N 85976 5 0052720 \N 85977 5 0008613 \N 85978 112 IPR003621 \N 85979 3 8618894 \N 85980 5 0051019 \N 85981 5 0043880 \N 85982 112 IPR010085 \N 85983 3 11162231 \N 85984 5 0022838 \N 85985 5 0015493 \N 85986 131 2.A.3.1.2 \N 85987 5 0015256 \N 85988 5 0050503 \N 85989 93 2.4.1.216 \N 85990 87 2.4.1.216-RXN \N 85991 5 0080132 \N 85992 3 19054355 \N 85993 5 0008683 \N 85994 93 4.1.1.71 \N 85995 129 10527 \N 85996 5 0097099 \N 85997 4 jj \N 85998 94 //en.wikipedia.org/wiki/Albumen \N 85999 5 0001090 \N 86000 5 0044103 \N 86001 136 03333 \N 86002 5 0018703 \N 86003 130 r0280 \N 86004 5 0005061 \N 86005 5 0016468 \N 86006 5 0016837 \N 86007 5 0001874 \N 86008 5 0051765 \N 86009 5 0004784 \N 86010 5 0004785 \N 86011 5 0008382 \N 86012 5 0008383 \N 86013 5 0016954 \N 86014 93 1.15.1.1 \N 86015 5 0046980 \N 86016 3 12594855 \N 86017 5 0080048 \N 86018 5 0031925 \N 86019 5 0046553 \N 86020 93 1.1.1.83 \N 86021 129 18368 \N 86022 5 0043250 \N 86023 5 0000773 \N 86024 5 0047528 \N 86025 93 1.13.11.23 \N 86026 129 19448 \N 86027 5 0004044 \N 86028 93 2.4.2.14 \N 86029 129 14908 \N 86030 5 0050833 \N 86031 5 0001138 \N 86032 5 0016798 \N 86033 5 0042803 \N 86034 5 0045435 \N 86035 5 0010334 \N 86036 5 0034868 \N 86037 130 r1273 \N 86038 5 0047647 \N 86039 93 3.1.3.59 \N 86040 129 18224 \N 86041 5 0016989 \N 86042 104 Anti-sigma_factors \N 86043 5 0047000 \N 86044 93 1.1.1.126 \N 86045 129 15112 \N 86046 5 0004711 \N 86047 3 9822608 \N 86048 5 0035005 \N 86049 93 2.7.1.154 \N 86050 129 18376 \N 86051 5 0010436 \N 86052 5 0008531 \N 86053 93 2.7.1.26 \N 86054 129 14360 \N 86055 5 0047985 \N 86056 93 1.12.1.2 \N 86057 87 HYDROGEN-DEHYDROGENASE-RXN \N 86058 5 0004586 \N 86059 93 4.1.1.17 \N 86060 129 22967 \N 86061 5 0047952 \N 86062 93 1.1.1.94 \N 86063 87 GLYC3PDEHYDROGBIOSYN-RXN \N 86064 5 0018617 \N 86065 130 r0580 \N 86066 5 0052623 \N 86067 87 RXN-4305 \N 86068 5 0042315 \N 86069 93 3.4.13.18 \N 86070 5 0000790 \N 86071 5 0005927 \N 86072 3 12842007 \N 86073 5 0031356 \N 86074 5 0030121 \N 86075 3 10611976 \N 86076 5 0030486 \N 86077 5 0031302 \N 86078 5 0009941 \N 86079 5 0060205 \N 86080 5 0071666 \N 86081 3 17062560 \N 86082 3 18359766 \N 86083 5 0000927 \N 86084 3 12134075 \N 86085 5 0017122 \N 86086 3 15247246 \N 86087 5 0043258 \N 86088 3 10842354 \N 86089 5 0044284 \N 86090 146 sao1825845900 \N 86091 5 0071564 \N 86092 4 ss \N 86093 3 17640523 \N 86094 5 0032179 \N 86095 86 0877799148 \N 86096 5 0005795 \N 86097 5 0016940 \N 86098 5 0000015 \N 86099 5 0031301 \N 86100 5 0030128 \N 86101 5 0043595 \N 86102 5 0034683 \N 86103 3 12297042 \N 86104 5 0009417 \N 86105 86 0914826859 \N 86106 5 0000775 \N 86107 5 0000780 \N 86108 5 0072517 \N 86109 3 20374631 \N 86110 5 0032040 \N 86111 3 12068309 \N 86112 3 12957375 \N 86113 3 15120992 \N 86114 3 15590835 \N 86115 5 0034668 \N 86116 5 0044168 \N 86117 5 0031607 \N 86118 5 0031362 \N 86119 5 0009841 \N 86120 5 0010005 \N 86121 5 0071069 \N 86122 3 11980922 \N 86123 5 0000408 \N 86124 3 16564010 \N 86125 3 16874308 \N 86126 5 0005797 \N 86127 5 0008232 \N 86128 3 10488333 \N 86129 5 0014801 \N 86130 5 0031241 \N 86131 5 0070522 \N 86132 3 14734547 \N 86133 5 0071008 \N 86134 86 0879697393 \N 86135 3 19239890 \N 86136 5 0031596 \N 86137 5 0008370 \N 86138 5 0042611 \N 86139 5 0034707 \N 86140 5 0044225 \N 86141 146 sao1186862860 \N 86142 5 0005790 \N 86143 5 0019197 \N 86144 5 0000934 \N 86145 5 0045265 \N 86146 3 10838056 \N 86147 5 0044445 \N 86148 5 0016604 \N 86149 3 10330182 \N 86150 5 0005643 \N 86151 5 0005644 \N 86152 5 0009279 \N 86153 5 0000815 \N 86154 3 12892785 \N 86155 3 12900393 \N 86156 5 0035805 \N 86157 5 0005695 \N 86158 5 0045258 \N 86159 5 0016281 \N 86160 3 8449919 \N 86161 5 0030086 \N 86162 5 0031968 \N 86163 5 0005768 \N 86164 3 19696797 \N 86165 5 0010170 \N 86166 3 12748181 \N 86167 5 0033117 \N 86168 3 2307702 \N 86169 5 0034206 \N 86170 3 11250145 \N 86171 3 17574024 \N 86172 5 0005688 \N 86173 5 0035324 \N 86174 3 9635420 \N 86175 5 0019814 \N 86176 5 0030141 \N 86177 5 0031973 \N 86178 5 0071687 \N 86179 3 15030757 \N 86180 5 0020038 \N 86181 3 11420112 \N 86182 5 0005972 \N 86183 5 0008005 \N 86184 5 0009535 \N 86185 5 0070188 \N 86186 3 17715303 \N 86187 3 19064932 \N 86188 5 0031982 \N 86189 5 0042585 \N 86190 3 19019837 \N 86191 5 0000232 \N 86192 5 0034735 \N 86193 3 11433012 \N 86194 5 0071797 \N 86195 3 17006537 \N 86196 3 19136968 \N 86197 5 0005773 \N 86198 5 0043700 \N 86199 5 0071186 \N 86200 3 15347688 \N 86201 5 0030891 \N 86202 3 11865071 \N 86203 5 0035060 \N 86204 3 10809665 \N 86205 3 12482982 \N 86206 5 0043614 \N 86207 5 0045335 \N 86208 5 0005705 \N 86209 3 11361342 \N 86210 5 0001687 \N 86211 5 0016593 \N 86212 3 11884586 \N 86213 5 0071755 \N 86214 3 20176268 \N 86215 5 0035580 \N 86216 3 7334549 \N 86217 5 0071437 \N 86218 3 16651416 \N 86219 3 19491051 \N 86220 3 19931459 \N 86221 5 0070263 \N 86222 5 0005852 \N 86223 3 15904532 \N 86224 5 0042575 \N 86225 3 12045093 \N 86226 5 0070032 \N 86227 3 7553862 \N 86228 5 0002079 \N 86229 3 3899643 \N 86230 3 8936405 \N 86231 5 0071116 \N 86232 3 12826661 \N 86233 5 0071458 \N 86234 5 0030992 \N 86235 3 14570576 \N 86236 5 0044186 \N 86237 5 0033010 \N 86238 3 11395001 \N 86239 3 14630217 \N 86240 5 0034591 \N 86241 3 17997128 \N 86242 5 0070477 \N 86243 3 15035041 \N 86244 3 18035610 \N 86245 5 0008622 \N 86246 3 15814431 \N 86247 3 9745046 \N 86248 5 0005917 \N 86249 94 //flybase.bio.indiana.edu/allied-data/lk/interactive-fly/aignfam/junction.htm \N 86250 5 0044306 \N 86251 5 0043020 \N 86252 3 11483596 \N 86253 3 12440767 \N 86254 5 0055125 \N 86255 3 12791264 \N 86256 3 15741174 \N 86257 5 0000439 \N 86258 3 14500720 \N 86259 3 7813015 \N 86260 5 0060110 \N 86261 95 15518507 \N 86262 5 0005682 \N 86263 5 0044231 \N 86264 5 0005757 \N 86265 3 10393078 \N 86266 5 0044190 \N 86267 5 0035996 \N 86268 3 14744998 \N 86269 5 0031315 \N 86270 5 0033551 \N 86271 3 17627824 \N 86272 5 0071011 \N 86273 3 18322460 \N 86274 5 0005668 \N 86275 3 15691654 \N 86276 5 0000312 \N 86277 5 0000801 \N 86278 5 0044164 \N 86279 5 0000228 \N 86280 5 0044203 \N 86281 5 0033104 \N 86282 5 0010368 \N 86283 5 0045268 \N 86284 5 0032282 \N 86285 5 0030526 \N 86286 5 0072487 \N 86287 3 16227571 \N 86288 3 20018852 \N 86289 5 0032580 \N 86290 5 0005667 \N 86291 5 0005734 \N 86292 5 0030991 \N 86293 5 0030931 \N 86294 5 0030667 \N 86295 5 0072357 \N 86296 3 20516061 \N 86297 5 0043203 \N 86298 5 0019820 \N 86299 3 10629216 \N 86300 5 0030257 \N 86301 3 9618447 \N 86302 5 0070044 \N 86303 3 10336434 \N 86304 5 0030076 \N 86305 5 0071736 \N 86306 5 0031311 \N 86307 5 0032807 \N 86308 3 16314503 \N 86309 5 0034734 \N 86310 3 15096501 \N 86311 5 0071597 \N 86312 3 16672383 \N 86313 3 7730409 \N 86314 5 0031391 \N 86315 3 14614842 \N 86316 5 0070062 \N 86317 3 15908444 \N 86318 3 17641064 \N 86319 5 0005583 \N 86320 5 0017023 \N 86321 5 0002167 \N 86322 3 16845380 \N 86323 5 0060108 \N 86324 5 0034690 \N 86325 5 0022627 \N 86326 5 0005843 \N 86327 5 0009283 \N 86328 5 0030499 \N 86329 5 0030873 \N 86330 5 0044219 \N 86331 5 0045241 \N 86332 5 0009516 \N 86333 86 0943883999 \N 86334 5 0034099 \N 86335 3 16873065 \N 86336 5 0032009 \N 86337 3 12388753 \N 86338 5 0071086 \N 86339 3 10429193 \N 86340 5 0060171 \N 86341 5 0005872 \N 86342 5 0042825 \N 86343 3 10618487 \N 86344 3 10631934 \N 86345 5 0009341 \N 86346 141 3.2.1.2 \N 86347 3 15950161 \N 86348 5 0035657 \N 86349 3 17008308 \N 86350 3 20400505 \N 86351 5 0030673 \N 86352 94 //www.medik.sk/clanky/bio_jun.htm \N 86353 5 0044434 \N 86354 5 0005731 \N 86355 3 14504406 \N 86356 5 0033150 \N 86357 3 12243744 \N 86358 3 9184090 \N 86359 5 0043036 \N 86360 3 11217978 \N 86361 5 0016581 \N 86362 3 10589671 \N 86363 3 11743021 \N 86364 3 17289569 \N 86365 5 0032154 \N 86366 86 0805319409 \N 86367 5 0055031 \N 86368 5 0020009 \N 86369 86 0521664470 \N 86370 3 11801218 \N 86371 5 0005884 \N 86372 3 10666339 \N 86373 5 0000787 \N 86374 5 0000419 \N 86375 5 0080137 \N 86376 3 16140984 \N 86377 5 0019824 \N 86378 5 0031600 \N 86379 5 0070765 \N 86380 3 15286082 \N 86381 3 15890777 \N 86382 3 17047368 \N 86383 5 0043245 \N 86384 5 0033290 \N 86385 5 0016283 \N 86386 3 15145049 \N 86387 5 0036000 \N 86388 4 mag \N 86389 3 10723937 \N 86390 3 4629881 \N 86391 5 0000804 \N 86392 5 0005930 \N 86393 5 0005945 \N 86394 5 0009355 \N 86395 3 10430871 \N 86396 3 10542196 \N 86397 5 0051077 \N 86398 5 0042383 \N 86399 5 0035102 \N 86400 3 10412979 \N 86401 5 0071192 \N 86402 3 15356203 \N 86403 5 0031986 \N 86404 5 0005876 \N 86405 5 0045273 \N 86406 5 0071136 \N 86407 3 17598176 \N 86408 5 0015630 \N 86409 5 0031561 \N 86410 3 9632790 \N 86411 5 0097139 \N 86412 3 14634621 \N 86413 5 0009897 \N 86414 5 0042566 \N 86415 3 11197234 \N 86416 3 11293569 \N 86417 5 0001725 \N 86418 5 0043253 \N 86419 5 0044425 \N 86420 5 0031235 \N 86421 5 0000262 \N 86422 5 0009368 \N 86423 3 11352464 \N 86424 5 0031518 \N 86425 3 13679521 \N 86426 3 9407032 \N 86427 5 0034687 \N 86428 5 0071084 \N 86429 3 10397731 \N 86430 5 0034448 \N 86431 3 15989961 \N 86432 5 0031415 \N 86433 3 12890471 \N 86434 5 0009783 \N 86435 5 0035085 \N 86436 5 0030135 \N 86437 5 0005909 \N 86438 5 0008180 \N 86439 3 11019806 \N 86440 3 12186635 \N 86441 3 14570571 \N 86442 5 0033062 \N 86443 5 0097130 \N 86444 3 15935619 \N 86445 5 0005816 \N 86446 5 0042764 \N 86447 5 0010369 \N 86448 3 12384572 \N 86449 3 15053486 \N 86450 3 16831888 \N 86451 5 0032166 \N 86452 3 16151244 \N 86453 5 0070049 \N 86454 5 0043626 \N 86455 3 12829735 \N 86456 5 0043292 \N 86457 5 0031900 \N 86458 5 0070021 \N 86459 5 0046821 \N 86460 5 0071817 \N 86461 3 20797633 \N 86462 5 0071001 \N 86463 3 14685174 \N 86464 5 0033176 \N 86465 3 16449553 \N 86466 5 0000120 \N 86467 5 0033163 \N 86468 5 0042644 \N 86469 5 0055036 \N 86470 3 213106 \N 86471 5 0005883 \N 86472 5 0043079 \N 86473 91 0000537 \N 86474 5 0097147 \N 86475 5 0071005 \N 86476 5 0000325 \N 86477 86 0815316208 \N 86478 5 0005931 \N 86479 5 0043673 \N 86480 94 //www.mobot.org/MOBOT/research/APweb/ \N 86481 5 0000446 \N 86482 3 11060033 \N 86483 3 11979277 \N 86484 3 16983072 \N 86485 5 0071180 \N 86486 3 12370315 \N 86487 5 0070113 \N 86488 5 0045276 \N 86489 5 0045286 \N 86490 5 0071740 \N 86491 3 11282392 \N 86492 5 0035686 \N 86493 3 20731842 \N 86494 3 3282552 \N 86495 5 0044194 \N 86496 3 11052265 \N 86497 3 12766758 \N 86498 5 0032449 \N 86499 3 12909454 \N 86500 5 0035840 \N 86501 4 expert_jd \N 86502 5 0002178 \N 86503 5 0005624 \N 86504 5 0033651 \N 86505 5 0044441 \N 86506 5 0005962 \N 86507 5 0019018 \N 86508 5 0043913 \N 86509 3 15612918 \N 86510 5 0048492 \N 86511 5 0070517 \N 86512 3 8692848 \N 86513 3 9228079 \N 86514 3 9582326 \N 86515 5 0005663 \N 86516 3 14646196 \N 86517 3 16172520 \N 86518 5 0005963 \N 86519 5 0009575 \N 86520 5 0071749 \N 86521 3 16362985 \N 86522 5 0005704 \N 86523 5 0016471 \N 86524 5 0019032 \N 86525 5 0030426 \N 86526 5 0005767 \N 86527 5 0019022 \N 86528 5 0070518 \N 86529 3 8757325 \N 86530 5 0042567 \N 86531 3 12239079 \N 86532 5 0044293 \N 86533 146 sao28175134 \N 86534 3 8300904 \N 86535 5 0005633 \N 86536 3 12702293 \N 86537 5 0032117 \N 86538 5 0034750 \N 86539 3 16611247 \N 86540 5 0009533 \N 86541 5 0009360 \N 86542 3 11525729 \N 86543 3 12940977 \N 86544 5 0005871 \N 86545 94 //www.proweb.org/kinesin//KinesinMotility.html \N 86546 94 //www.proweb.org/kinesin//KinesinStructure.html \N 86547 5 0031616 \N 86548 5 0000180 \N 86549 5 0042272 \N 86550 3 11780633 \N 86551 5 0015934 \N 86552 5 0048189 \N 86553 3 12488447 \N 86554 5 0005618 \N 86555 5 0048180 \N 86556 5 0044288 \N 86557 146 sao257629430 \N 86558 5 0070761 \N 86559 3 17636026 \N 86560 3 17709390 \N 86561 5 0043667 \N 86562 4 fz \N 86563 5 0055051 \N 86564 5 0032157 \N 86565 3 16009555 \N 86566 5 0071142 \N 86567 3 9670020 \N 86568 5 0019718 \N 86569 5 0097129 \N 86570 5 0043675 \N 86571 5 0043662 \N 86572 5 0044311 \N 86573 3 18083092 \N 86574 3 18083098 \N 86575 5 0071144 \N 86576 5 0031911 \N 86577 5 0020015 \N 86578 5 0005958 \N 86579 5 0005959 \N 86580 3 10854421 \N 86581 3 12235392 \N 86582 3 17072889 \N 86583 5 0005906 \N 86584 5 0002189 \N 86585 5 hjd \N 86586 3 9348095 \N 86587 5 0071097 \N 86588 3 11683411 \N 86589 5 0009316 \N 86590 141 4.2.1.33 \N 86591 87 3-ISOPROPYLMALISOM-CPLX \N 86592 3 7026530 \N 86593 5 0032473 \N 86594 5 0015629 \N 86595 5 0044279 \N 86596 5 0071120 \N 86597 3 15292185 \N 86598 5 0008023 \N 86599 5 0032545 \N 86600 3 17452446 \N 86601 5 0034751 \N 86602 3 7598497 \N 86603 5 0030694 \N 86604 3 10572114 \N 86605 3 11133968 \N 86606 3 12624192 \N 86607 5 0005865 \N 86608 5 0031475 \N 86609 5 0009570 \N 86610 5 0005596 \N 86611 5 0070312 \N 86612 5 0070877 \N 86613 3 16963499 \N 86614 3 17159994 \N 86615 5 0070319 \N 86616 5 0071254 \N 86617 3 17595295 \N 86618 5 0030685 \N 86619 3 10567516 \N 86620 5 0035189 \N 86621 3 14616073 \N 86622 5 0032301 \N 86623 3 11005803 \N 86624 5 0030312 \N 86625 5 0031470 \N 86626 3 8157606 \N 86627 3 8491708 \N 86628 5 0032398 \N 86629 5 0009529 \N 86630 5 0048475 \N 86631 5 0005901 \N 86632 5 0016599 \N 86633 5 0070436 \N 86634 3 7798267 \N 86635 5 0032517 \N 86636 3 17324120 \N 86637 5 0031093 \N 86638 3 8467233 \N 86639 5 0005613 \N 86640 5 0097058 \N 86641 3 10966616 \N 86642 5 0005821 \N 86643 3 9215630 \N 86644 5 0032838 \N 86645 5 0071114 \N 86646 3 12682293 \N 86647 5 0070745 \N 86648 3 19161428 \N 86649 3 19161429 \N 86650 5 0008304 \N 86651 5 0033254 \N 86652 3 11823419 \N 86653 3 17079729 \N 86654 5 0044451 \N 86655 5 0008540 \N 86656 5 0005696 \N 86657 5 0034495 \N 86658 5 0000506 \N 86659 3 10944123 \N 86660 3 15163411 \N 86661 5 0034973 \N 86662 3 10837231 \N 86663 3 15060149 \N 86664 5 0005607 \N 86665 5 0070554 \N 86666 3 8824312 \N 86667 5 0005649 \N 86668 5 0005892 \N 86669 3 12381728 \N 86670 3 15579462 \N 86671 5 0043590 \N 86672 5 0043846 \N 86673 5 0046861 \N 86674 5 0044454 \N 86675 5 0044173 \N 86676 5 0031429 \N 86677 3 17284456 \N 86678 3 20227365 \N 86679 5 0032426 \N 86680 3 17021180 \N 86681 5 0005565 \N 86682 5 0031436 \N 86683 3 12787778 \N 86684 5 0051233 \N 86685 5 0090395 \N 86686 5 0031976 \N 86687 5 0030981 \N 86688 5 0030287 \N 86689 5 0009544 \N 86690 86 019854768 \N 86691 5 0005782 \N 86692 5 0031909 \N 86693 5 0042470 \N 86694 3 11584301 \N 86695 5 0005828 \N 86696 5 0034679 \N 86697 5 0000835 \N 86698 5 0033113 \N 86699 5 0019027 \N 86700 5 0010287 \N 86701 5 0010502 \N 86702 3 16461379 \N 86703 5 0005937 \N 86704 5 0042581 \N 86705 5 0001534 \N 86706 3 9450971 \N 86707 5 0031105 \N 86708 3 15385632 \N 86709 5 0009379 \N 86710 3 16935884 \N 86711 5 0000445 \N 86712 5 0070621 \N 86713 3 8940013 \N 86714 5 0046610 \N 86715 5 0009517 \N 86716 5 0005913 \N 86717 5 0031004 \N 86718 3 10608856 \N 86719 3 9858692 \N 86720 147 TIGR01497 \N 86721 5 0010168 \N 86722 3 11577182 \N 86723 5 0060187 \N 86724 5 0019812 \N 86725 5 0035363 \N 86726 3 16533947 \N 86727 3 18927579 \N 86728 3 19620235 \N 86729 5 0005922 \N 86730 3 11146276 \N 86731 5 0019804 \N 86732 148 P10902 \N 86733 5 0009539 \N 86734 5 0009510 \N 86735 5 0009572 \N 86736 94 //biology.kenyon.edu/edwards/project/greg/pd.htm \N 86737 5 0070118 \N 86738 5 0005664 \N 86739 5 0070083 \N 86740 4 mg2 \N 86741 5 0032865 \N 86742 3 19556461 \N 86743 5 0070718 \N 86744 3 8943348 \N 86745 5 0005777 \N 86746 5 0019818 \N 86747 5 0035451 \N 86748 5 0071759 \N 86749 5 0071064 \N 86750 3 10837471 \N 86751 5 0005628 \N 86752 5 0071756 \N 86753 5 0030082 \N 86754 5 0031377 \N 86755 3 12957385 \N 86756 5 0030446 \N 86757 5 0048217 \N 86758 3 11554482 \N 86759 5 0048223 \N 86760 92 10.1016/j.foodchem.2008.11.065 \N 86761 5 0001683 \N 86762 5 0008352 \N 86763 5 0044431 \N 86764 5 0033270 \N 86765 5 0016011 \N 86766 3 15117830 \N 86767 3 16710609 \N 86768 5 0070645 \N 86769 3 14612572 \N 86770 3 16524248 \N 86771 5 0070776 \N 86772 3 18794358 \N 86773 5 0071546 \N 86774 3 20011505 \N 86775 5 0044302 \N 86776 146 nlx_subcell_20090601 \N 86777 3 17765709 \N 86778 5 0005888 \N 86779 5 0035867 \N 86780 3 19578119 \N 86781 5 0035062 \N 86782 3 10984439 \N 86783 5 0005856 \N 86784 3 16959967 \N 86785 5 0009426 \N 86786 5 0030915 \N 86787 3 14701739 \N 86788 5 0031229 \N 86789 5 0031244 \N 86790 5 0044280 \N 86791 146 sao1938587839 \N 86792 5 0032195 \N 86793 3 9276759 \N 86794 3 9394012 \N 86795 5 0071014 \N 86796 5 0012506 \N 86797 5 0048196 \N 86798 3 11351084 \N 86799 3 4327466 \N 86800 5 0009654 \N 86801 112 IPR002683 \N 86802 5 0030125 \N 86803 5 0031306 \N 86804 5 0030958 \N 86805 3 14704433 \N 86806 5 0032044 \N 86807 3 12242279 \N 86808 3 12653964 \N 86809 3 12676794 \N 86810 3 16581788 \N 86811 3 19460865 \N 86812 5 0031305 \N 86813 5 0031905 \N 86814 5 0014069 \N 86815 94 //molneuro.kaist.ac.kr/psd \N 86816 94 //wikipedia.org/Postsynaptic_density \N 86817 3 14532281 \N 86818 5 0030877 \N 86819 3 14600025 \N 86820 5 0001650 \N 86821 3 10754561 \N 86822 5 0000779 \N 86823 5 0035579 \N 86824 5 0000794 \N 86825 5 0000142 \N 86826 5 0020026 \N 86827 5 0030122 \N 86828 5 0034996 \N 86829 3 1544885 \N 86830 5 0043209 \N 86831 146 sao-593830697 \N 86832 104 Myelin \N 86833 5 0070686 \N 86834 5 0034468 \N 86835 5 0034743 \N 86836 3 15572129 \N 86837 5 0009331 \N 86838 5 0044100 \N 86839 4 mf \N 86840 3 12076771 \N 86841 3 16004371 \N 86842 3 9723921 \N 86843 5 0009574 \N 86844 5 0043505 \N 86845 3 15175412 \N 86846 3 16183641 \N 86847 5 0045169 \N 86848 3 12655376 \N 86849 5 0005813 \N 86850 5 0065010 \N 86851 5 0071341 \N 86852 3 19474789 \N 86853 3 19959363 \N 86854 5 0072687 \N 86855 3 11408572 \N 86856 3 18367542 \N 86857 3 8027178 \N 86858 5 0031603 \N 86859 5 0016021 \N 86860 5 0071018 \N 86861 3 16201866 \N 86862 5 0045261 \N 86863 5 0071133 \N 86864 3 16995821 \N 86865 5 0016323 \N 86866 5 0000812 \N 86867 3 14645854 \N 86868 3 14690608 \N 86869 5 0044448 \N 86870 5 0044178 \N 86871 5 0034423 \N 86872 5 0045092 \N 86873 3 12759435 \N 86874 5 0043159 \N 86875 3 8949900 \N 86876 3 9139729 \N 86877 5 0070937 \N 86878 5 0032991 \N 86879 5 0005746 \N 86880 5 0035253 \N 86881 3 12427867 \N 86882 5 0000313 \N 86883 5 0034730 \N 86884 3 17401408 \N 86885 5 0035618 \N 86886 94 //www.jstor.org/stable/4354264 \N 86887 102 0000256 \N 86888 5 0009350 \N 86889 5 0032419 \N 86890 5 0020023 \N 86891 5 0044353 \N 86892 5 0016006 \N 86893 5 0005862 \N 86894 5 0071212 \N 86895 3 1460464 \N 86896 3 18171947 \N 86897 3 19244343 \N 86898 3 7946331 \N 86899 5 0017071 \N 86900 5 0002180 \N 86901 3 19075240 \N 86902 5 0015030 \N 86903 94 //genetics.cwru.edu/matera3.html \N 86904 3 10944589 \N 86905 3 7559785 \N 86906 5 0070702 \N 86907 4 mm2 \N 86908 3 18806221 \N 86909 3 19432394 \N 86910 5 0044428 \N 86911 5 0000442 \N 86912 5 0034997 \N 86913 3 1694173 \N 86914 121 REACT_14045.1 \N 86915 5 0085035 \N 86916 5 0042709 \N 86917 5 0005701 \N 86918 86 0120649012 \N 86919 5 0005825 \N 86920 5 0070724 \N 86921 3 19377468 \N 86922 5 0043025 \N 86923 5 0005588 \N 86924 5 0045495 \N 86925 3 17113380 \N 86926 5 0070725 \N 86927 3 19433453 \N 86928 5 0035658 \N 86929 3 20797862 \N 86930 5 0008076 \N 86931 5 0044438 \N 86932 5 0000783 \N 86933 5 0020005 \N 86934 5 0044185 \N 86935 5 0043599 \N 86936 5 0031164 \N 86937 5 0071683 \N 86938 5 0032170 \N 86939 5 0000330 \N 86940 5 0005844 \N 86941 5 0019019 \N 86942 5 0032176 \N 86943 5 0097042 \N 86944 3 21454883 \N 86945 5 0005690 \N 86946 5 0070250 \N 86947 5 0000221 \N 86948 5 0048238 \N 86949 5 0030089 \N 86950 94 //en.wikipedia.org/wiki/Phycobilisome \N 86951 3 11734882 \N 86952 5 0010317 \N 86953 3 2170409 \N 86954 5 0032478 \N 86955 3 14519123 \N 86956 5 0045100 \N 86957 5 0085037 \N 86958 5 0034675 \N 86959 5 0016507 \N 86960 5 0043493 \N 86961 5 0005753 \N 86962 5 0016470 \N 86963 5 0010240 \N 86964 3 9393637 \N 86965 5 0005597 \N 86966 3 12782140 \N 86967 5 0043229 \N 86968 5 0009925 \N 86969 5 0033100 \N 86970 3 10817755 \N 86971 3 17157260 \N 86972 5 0009505 \N 86973 5 0005851 \N 86974 3 9438375 \N 86975 5 0009706 \N 86976 5 0032766 \N 86977 3 11948184 \N 86978 5 0009324 \N 86979 5 0005582 \N 86980 3 11158616 \N 86981 3 11937714 \N 86982 5 0016586 \N 86983 3 11937489 \N 86984 3 12672490 \N 86985 3 15870268 \N 86986 3 8980231 \N 86987 5 0008250 \N 86988 3 15835887 \N 86989 5 0000136 \N 86990 3 10037752 \N 86991 3 11095735 \N 86992 5 0031463 \N 86993 3 15571813 \N 86994 3 15688063 \N 86995 5 0019008 \N 86996 5 0019009 \N 86997 3 12571227 \N 86998 3 15709772 \N 86999 5 0030679 \N 87000 3 12045094 \N 87001 5 0002144 \N 87002 3 18391219 \N 87003 5 0009549 \N 87004 5 0034364 \N 87005 5 0005834 \N 87006 5 0033985 \N 87007 5 0044222 \N 87008 3 17993524 \N 87009 3 19682260 \N 87010 5 0071100 \N 87011 3 11970960 \N 87012 5 0031931 \N 87013 3 15780592 \N 87014 5 0042716 \N 87015 3 11867431 \N 87016 5 0030988 \N 87017 3 11290596 \N 87018 5 0030661 \N 87019 5 0031898 \N 87020 5 0097148 \N 87021 5 0005604 \N 87022 5 0009530 \N 87023 3 9442872 \N 87024 5 0001950 \N 87025 3 11562363 \N 87026 3 15601832 \N 87027 5 0009433 \N 87028 5 0020018 \N 87029 5 0009525 \N 87030 5 0005621 \N 87031 3 14600225 \N 87032 3 2005820 \N 87033 5 0042588 \N 87034 5 0034985 \N 87035 3 17344420 \N 87036 5 0043075 \N 87037 5 0031838 \N 87038 5 0032998 \N 87039 5 0043601 \N 87040 5 0072494 \N 87041 5 0071944 \N 87042 5 0016028 \N 87043 3 8646774 \N 87044 5 0000219 \N 87045 5 0070992 \N 87046 5 0031513 \N 87047 3 17009929 \N 87048 3 20144998 \N 87049 5 0005579 \N 87050 5 0097143 \N 87051 5 0070465 \N 87052 3 8387021 \N 87053 5 0034703 \N 87054 5 0005966 \N 87055 5 0044156 \N 87056 5 0043233 \N 87057 5 0071056 \N 87058 3 11882657 \N 87059 5 0070850 \N 87060 3 19606211 \N 87061 5 0030096 \N 87062 5 0033309 \N 87063 3 11206552 \N 87064 3 15838511 \N 87065 3 18160399 \N 87066 3 7917338 \N 87067 5 0045251 \N 87068 5 0045096 \N 87069 5 0042555 \N 87070 3 11282021 \N 87071 5 0030894 \N 87072 5 0048501 \N 87073 5 0005725 \N 87074 3 14579245 \N 87075 5 0044297 \N 87076 5 0009380 \N 87077 5 0009365 \N 87078 5 0005572 \N 87079 5 0009320 \N 87080 5 0009579 \N 87081 5 0034731 \N 87082 5 0031611 \N 87083 5 0001739 \N 87084 5 0044174 \N 87085 5 0034426 \N 87086 5 0000176 \N 87087 3 10465791 \N 87088 5 0070068 \N 87089 3 11839770 \N 87090 5 0042579 \N 87091 5 0031484 \N 87092 5 0071742 \N 87093 5 0046806 \N 87094 5 0010007 \N 87095 3 11842180 \N 87096 5 0000110 \N 87097 3 10915862 \N 87098 5 0031020 \N 87099 5 0000808 \N 87100 5 0005848 \N 87101 5 0000152 \N 87102 5 0005714 \N 87103 5 0071760 \N 87104 5 0070356 \N 87105 3 7654227 \N 87106 5 0005591 \N 87107 5 0009359 \N 87108 5 0060202 \N 87109 5 0052718 \N 87110 5 0090123 \N 87111 5 0030055 \N 87112 5 0034662 \N 87113 3 16129695 \N 87114 3 16798722 \N 87115 3 16926444 \N 87116 5 0009501 \N 87117 5 0005837 \N 87118 3 10410804 \N 87119 5 0031236 \N 87120 5 0031238 \N 87121 5 0071193 \N 87122 5 0070558 \N 87123 3 8871662 \N 87124 5 0097135 \N 87125 114 000026746 \N 87126 5 0071080 \N 87127 3 9360995 \N 87128 5 0001690 \N 87129 5 0071054 \N 87130 5 0022623 \N 87131 5 0017102 \N 87132 3 11069915 \N 87133 5 0030175 \N 87134 5 0030028 \N 87135 5 0070441 \N 87136 3 7972043 \N 87137 5 0032162 \N 87138 5 0044421 \N 87139 5 0035354 \N 87140 3 17889651 \N 87141 5 0008245 \N 87142 5 0033066 \N 87143 3 16093548 \N 87144 3 17114795 \N 87145 5 0009338 \N 87146 5 0005903 \N 87147 5 0017053 \N 87148 5 0016612 \N 87149 5 0071339 \N 87150 3 15960975 \N 87151 5 0031260 \N 87152 5 0070385 \N 87153 3 7744842 \N 87154 5 0034748 \N 87155 3 15556865 \N 87156 5 0030936 \N 87157 5 0097075 \N 87158 3 18068231 \N 87159 121 REACT_26957 \N 87160 5 0016363 \N 87161 5 0016234 \N 87162 3 11121744 \N 87163 5 0005638 \N 87164 5 0031395 \N 87165 5 0031252 \N 87166 5 0030131 \N 87167 5 0071094 \N 87168 3 10711425 \N 87169 5 0010370 \N 87170 3 15805479 \N 87171 5 0030115 \N 87172 5 0005601 \N 87173 141 3.4.21.43 \N 87174 94 //users.rcn.com/jkimball.ma.ultranet/BiologyPages/C/Complement.html \N 87175 5 0020011 \N 87176 5 0045160 \N 87177 3 9438839 \N 87178 5 0071556 \N 87179 5 0031594 \N 87180 5 0009349 \N 87181 5 0005684 \N 87182 3 11343900 \N 87183 5 0002137 \N 87184 3 9413993 \N 87185 5 0071123 \N 87186 3 15590642 \N 87187 5 0005887 \N 87188 5 0005928 \N 87189 3 11700298 \N 87190 5 0000428 \N 87191 5 0031231 \N 87192 5 0034717 \N 87193 3 17640873 \N 87194 5 0005614 \N 87195 3 8450001 \N 87196 5 0000427 \N 87197 5 0000936 \N 87198 86 0471940526 \N 87199 5 0034977 \N 87200 3 15169888 \N 87201 5 0032983 \N 87202 94 //www.bris.ac.uk/Depts/Synaptic/info/glutamate.html \N 87203 5 0070274 \N 87204 3 15565172 \N 87205 3 18809678 \N 87206 3 19010333 \N 87207 3 19033360 \N 87208 5 0071686 \N 87209 5 0061202 \N 87210 5 0016469 \N 87211 3 16691483 \N 87212 5 0005561 \N 87213 5 0031428 \N 87214 5 0005969 \N 87215 5 0005970 \N 87216 5 0031560 \N 87217 5 0030907 \N 87218 3 9343385 \N 87219 5 0070693 \N 87220 3 17332744 \N 87221 3 19328067 \N 87222 5 0009346 \N 87223 87 ACECITLY-CPLX \N 87224 5 0000276 \N 87225 5 0030015 \N 87226 3 11113136 \N 87227 5 0032586 \N 87228 5 0019908 \N 87229 5 0019023 \N 87230 5 0016529 \N 87231 5 0008221 \N 87232 5 0030119 \N 87233 3 15473838 \N 87234 5 0009513 \N 87235 5 0033645 \N 87236 5 0008290 \N 87237 86 0198599560 \N 87238 5 0035339 \N 87239 3 20182505 \N 87240 5 0035448 \N 87241 5 0031979 \N 87242 5 0030062 \N 87243 5 0031353 \N 87244 5 0005645 \N 87245 5 0044327 \N 87246 5 0031082 \N 87247 3 15102850 \N 87248 3 15261680 \N 87249 5 0019036 \N 87250 5 0000127 \N 87251 3 16751097 \N 87252 5 0005934 \N 87253 5 0030869 \N 87254 3 12196389 \N 87255 5 0030681 \N 87256 3 11142368 \N 87257 5 0009278 \N 87258 5 0071201 \N 87259 3 12575952 \N 87260 3 15911355 \N 87261 5 0030313 \N 87262 94 //pathmicro.med.sc.edu/fox/cell_envelope.htm \N 87263 5 0043672 \N 87264 5 0005762 \N 87265 5 0005896 \N 87266 3 8083235 \N 87267 5 0005954 \N 87268 93 2.7.11.17 \N 87269 5 0030532 \N 87270 5 0009319 \N 87271 87 CYT-O-UBIOX-CPLX \N 87272 3 11017202 \N 87273 3 3052268 \N 87274 5 0005785 \N 87275 5 0005955 \N 87276 86 019859951 \N 87277 5 0001518 \N 87278 5 0045248 \N 87279 3 10848975 \N 87280 5 0070067 \N 87281 5 0033593 \N 87282 3 15930293 \N 87283 5 0042641 \N 87284 5 0070210 \N 87285 3 19040720 \N 87286 5 0005869 \N 87287 5 0033097 \N 87288 5 0032541 \N 87289 3 10931860 \N 87290 3 17686782 \N 87291 5 0045282 \N 87292 112 IPR000701 \N 87293 5 0030689 \N 87294 3 12446671 \N 87295 5 0045170 \N 87296 5 0070823 \N 87297 3 11287668 \N 87298 3 8663039 \N 87299 5 0035370 \N 87300 3 16129784 \N 87301 5 0031471 \N 87302 3 11844753 \N 87303 5 0005634 \N 87304 5 0030315 \N 87305 5 0033646 \N 87306 5 0031673 \N 87307 86 0321204131 \N 87308 5 0046658 \N 87309 5 0044229 \N 87310 5 0032144 \N 87311 3 15528998 \N 87312 5 0044193 \N 87313 5 0042788 \N 87314 5 0043679 \N 87315 5 0031478 \N 87316 5 0090396 \N 87317 5 0031521 \N 87318 3 15701784 \N 87319 3 15976451 \N 87320 5 0005627 \N 87321 5 0070772 \N 87322 3 18950639 \N 87323 3 19037259 \N 87324 3 19158662 \N 87325 5 0070692 \N 87326 3 16721054 \N 87327 5 0070013 \N 87328 5 0017052 \N 87329 5 0071115 \N 87330 5 0055032 \N 87331 5 0032300 \N 87332 5 0031588 \N 87333 5 0030892 \N 87334 3 12750522 \N 87335 5 0009328 \N 87336 5 0031674 \N 87337 5 0042629 \N 87338 94 //www.ijp-online.com/archives/1969/001/02/r0000-0000tc.htm \N 87339 5 0019774 \N 87340 3 10854779 \N 87341 5 0005947 \N 87342 5 0030666 \N 87343 5 0072534 \N 87344 3 18364019 \N 87345 5 0031912 \N 87346 5 0072557 \N 87347 3 20303873 \N 87348 5 0034464 \N 87349 3 17574030 \N 87350 5 0031467 \N 87351 5 0046612 \N 87352 5 0033116 \N 87353 3 16723730 \N 87354 5 0000800 \N 87355 5 0019717 \N 87356 5 0034978 \N 87357 3 11279116 \N 87358 3 9710595 \N 87359 5 0005733 \N 87360 5 0044450 \N 87361 5 0009508 \N 87362 5 0031481 \N 87363 5 0045247 \N 87364 5 0072669 \N 87365 3 21311021 \N 87366 5 0009519 \N 87367 5 0070214 \N 87368 3 7544435 \N 87369 5 0034044 \N 87370 3 16498409 \N 87371 3 17000877 \N 87372 5 0046536 \N 87373 5 0032283 \N 87374 5 0031390 \N 87375 5 0042599 \N 87376 3 12243725 \N 87377 5 0070333 \N 87378 3 7556090 \N 87379 5 0000235 \N 87380 5 0022628 \N 87381 5 0005732 \N 87382 5 0032165 \N 87383 5 0055120 \N 87384 3 17492481 \N 87385 5 0032593 \N 87386 3 17644329 \N 87387 5 0005671 \N 87388 3 10637607 \N 87389 5 0031380 \N 87390 3 15607976 \N 87391 5 0070439 \N 87392 3 7889570 \N 87393 5 0000441 \N 87394 5 0005829 \N 87395 5 0033098 \N 87396 5 0031975 \N 87397 5 0009782 \N 87398 5 0071190 \N 87399 5 0070847 \N 87400 3 11454195 \N 87401 3 16168358 \N 87402 3 17870225 \N 87403 5 0034362 \N 87404 5 0060199 \N 87405 5 0005968 \N 87406 3 11886217 \N 87407 5 0005749 \N 87408 5 0008136 \N 87409 5 0009362 \N 87410 5 0019738 \N 87411 5 0030390 \N 87412 5 0032921 \N 87413 5 0034733 \N 87414 5 0060388 \N 87415 5 0016580 \N 87416 3 12865422 \N 87417 5 0042175 \N 87418 5 0044172 \N 87419 5 0034365 \N 87420 5 0020008 \N 87421 3 16002398 \N 87422 5 0017087 \N 87423 141 3.4.24.64 \N 87424 5 0034098 \N 87425 3 11813000 \N 87426 3 16179952 \N 87427 5 0071023 \N 87428 5 0055037 \N 87429 3 10930469 \N 87430 3 15601896 \N 87431 3 16246101 \N 87432 5 0030876 \N 87433 5 0005885 \N 87434 3 12479800 \N 87435 5 0060170 \N 87436 5 0005822 \N 87437 5 0014731 \N 87438 3 15970557 \N 87439 5 0030672 \N 87440 5 0005612 \N 87441 5 0070532 \N 87442 3 16391231 \N 87443 5 0031209 \N 87444 3 12181570 \N 87445 5 0033061 \N 87446 5 0009568 \N 87447 5 0005921 \N 87448 94 //www.vivo.colostate.edu/hbooks/cmb/cells/pmemb/junctions_g.html \N 87449 5 0031300 \N 87450 5 0009418 \N 87451 5 0000159 \N 87452 3 17245430 \N 87453 5 0097085 \N 87454 3 12138184 \N 87455 5 0008002 \N 87456 5 0000333 \N 87457 3 11884619 \N 87458 5 0042587 \N 87459 94 //148.216.10.83/cellbio/the_mi19.gif \N 87460 3 12179957 \N 87461 5 0046818 \N 87462 3 10233976 \N 87463 5 0071095 \N 87464 3 11358957 \N 87465 5 0044307 \N 87466 146 sao884265541 \N 87467 5 0070440 \N 87468 5 0005926 \N 87469 5 0034678 \N 87470 5 0000924 \N 87471 5 0000925 \N 87472 5 0000926 \N 87473 3 17021256 \N 87474 5 0035003 \N 87475 3 11752566 \N 87476 3 12500938 \N 87477 5 0070648 \N 87478 5 0031309 \N 87479 5 0044422 \N 87480 5 0019031 \N 87481 5 0034066 \N 87482 3 10990452 \N 87483 5 0031003 \N 87484 5 0043033 \N 87485 3 10333591 \N 87486 5 0005796 \N 87487 5 0060107 \N 87488 5 0035101 \N 87489 4 expert_ks \N 87490 4 expert_ras \N 87491 4 expert_tf \N 87492 3 12934006 \N 87493 3 12934007 \N 87494 3 16678108 \N 87495 5 0043684 \N 87496 5 0008541 \N 87497 5 0000347 \N 87498 5 0045266 \N 87499 5 0019005 \N 87500 5 0009356 \N 87501 3 2251281 \N 87502 3 7592344 \N 87503 5 0031601 \N 87504 5 0044169 \N 87505 5 0000838 \N 87506 3 16873066 \N 87507 5 0014802 \N 87508 5 0070768 \N 87509 3 8999968 \N 87510 5 0048788 \N 87511 3 10944438 \N 87512 5 0071061 \N 87513 3 10811835 \N 87514 5 0009545 \N 87515 5 0071150 \N 87516 3 11358867 \N 87517 5 0019015 \N 87518 5 0008231 \N 87519 5 0005798 \N 87520 5 0031597 \N 87521 5 0035452 \N 87522 5 0034981 \N 87523 3 11046156 \N 87524 5 0043220 \N 87525 5 0044287 \N 87526 5 0001405 \N 87527 3 14517234 \N 87528 3 14638855 \N 87529 5 0071563 \N 87530 3 12594460 \N 87531 5 0044189 \N 87532 5 0009534 \N 87533 5 0032982 \N 87534 5 0071098 \N 87535 3 11684709 \N 87536 5 0071754 \N 87537 5 0032437 \N 87538 3 12485990 \N 87539 3 2592408 \N 87540 3 8071151 \N 87541 5 0009578 \N 87542 5 0031264 \N 87543 3 12628743 \N 87544 3 12655293 \N 87545 5 0019021 \N 87546 5 0031371 \N 87547 5 0032996 \N 87548 3 16280327 \N 87549 5 0045336 \N 87550 5 0033162 \N 87551 5 0001520 \N 87552 5 0031012 \N 87553 5 0005774 \N 87554 5 0032389 \N 87555 5 0043529 \N 87556 3 16269340 \N 87557 5 0070516 \N 87558 3 8692841 \N 87559 3 8692842 \N 87560 5 0046729 \N 87561 5 0005971 \N 87562 141 1.17.4.1 \N 87563 5 0005932 \N 87564 5 0070033 \N 87565 5 0071181 \N 87566 5 0016513 \N 87567 3 15156179 \N 87568 3 8497254 \N 87569 5 0031253 \N 87570 5 0044453 \N 87571 5 0000324 \N 87572 5 0002179 \N 87573 5 0010282 \N 87574 3 15743448 \N 87575 5 0034592 \N 87576 5 0002111 \N 87577 3 11207365 \N 87578 5 0005694 \N 87579 5 0031562 \N 87580 5 0035267 \N 87581 3 10966108 \N 87582 3 14966270 \N 87583 5 0070088 \N 87584 3 15762612 \N 87585 5 0009429 \N 87586 5 0034081 \N 87587 3 12636085 \N 87588 5 0001772 \N 87589 3 11376300 \N 87590 5 0070769 \N 87591 3 9030514 \N 87592 5 0043676 \N 87593 5 0043661 \N 87594 5 0031389 \N 87595 5 0016935 \N 87596 5 0044202 \N 87597 5 0070081 \N 87598 5 0044096 \N 87599 5 0000181 \N 87600 5 0071145 \N 87601 5 0043850 \N 87602 136 01764 \N 87603 3 12769856 \N 87604 5 0033105 \N 87605 3 14507718 \N 87606 3 14729689 \N 87607 3 17303128 \N 87608 5 0044464 \N 87609 5 0033018 \N 87610 5 0060111 \N 87611 5 0071126 \N 87612 3 16005200 \N 87613 5 0009551 \N 87614 3 15012255 \N 87615 5 0044224 \N 87616 3 10624965 \N 87617 3 14682359 \N 87618 5 0071089 \N 87619 3 10684262 \N 87620 5 0061175 \N 87621 5 0031502 \N 87622 3 15948957 \N 87623 5 0009921 \N 87624 3 9843496 \N 87625 5 0030093 \N 87626 5 0097121 \N 87627 5 0030684 \N 87628 5 0044165 \N 87629 5 0001721 \N 87630 3 9484600 \N 87631 5 0005787 \N 87632 3 1846444 \N 87633 3 7615509 \N 87634 5 0035997 \N 87635 5 0030956 \N 87636 5 0014704 \N 87637 3 11732910 \N 87638 5 0005681 \N 87639 5 0009332 \N 87640 5 0042646 \N 87641 5 0005630 \N 87642 5 0032798 \N 87643 3 15620352 \N 87644 3 16921379 \N 87645 5 0005950 \N 87646 87 ANTHRANSYN-CPLX \N 87647 3 4886290 \N 87648 5 0070074 \N 87649 3 18048320 \N 87650 5 0070029 \N 87651 3 7532190 \N 87652 5 0008280 \N 87653 5 0048188 \N 87654 3 11687631 \N 87655 3 11742990 \N 87656 3 11805083 \N 87657 3 18508253 \N 87658 3 18838538 \N 87659 5 0009317 \N 87660 3 12121720 \N 87661 5 0070160 \N 87662 5 0031250 \N 87663 5 0031488 \N 87664 3 11294886 \N 87665 5 0005728 \N 87666 5 0070258 \N 87667 3 12456714 \N 87668 5 0071204 \N 87669 5 0008303 \N 87670 5 0034657 \N 87671 3 12686616 \N 87672 3 18508925 \N 87673 5 0071128 \N 87674 5 0043592 \N 87675 5 0031094 \N 87676 3 1322202 \N 87677 5 0070939 \N 87678 3 19151722 \N 87679 5 0072546 \N 87680 3 19325107 \N 87681 5 0032839 \N 87682 5 0044437 \N 87683 5 0002133 \N 87684 3 11901144 \N 87685 5 0043847 \N 87686 136 01719 \N 87687 5 0032390 \N 87688 5 0005925 \N 87689 5 0008357 \N 87690 5 0071598 \N 87691 3 19015237 \N 87692 5 0031332 \N 87693 5 0044218 \N 87694 5 0044426 \N 87695 5 0030018 \N 87696 5 0000776 \N 87697 5 0005699 \N 87698 5 0009515 \N 87699 5 0071198 \N 87700 5 0009342 \N 87701 5 0020032 \N 87702 3 16518471 \N 87703 5 0005678 \N 87704 5 0031934 \N 87705 5 0009707 \N 87706 5 0034494 \N 87707 5 0005895 \N 87708 3 11312115 \N 87709 3 11839579 \N 87710 5 0031314 \N 87711 5 0097136 \N 87712 5 0019823 \N 87713 5 0044352 \N 87714 5 0034674 \N 87715 5 0043540 \N 87716 5 0046581 \N 87717 5 0045283 \N 87718 112 IPR003418 \N 87719 5 0005640 \N 87720 5 0071159 \N 87721 86 0849327946 \N 87722 5 0061200 \N 87723 5 0000805 \N 87724 5 0030079 \N 87725 5 0016342 \N 87726 5 0005729 \N 87727 3 12073320 \N 87728 5 0005802 \N 87729 5 0033185 \N 87730 3 10835346 \N 87731 5 0031908 \N 87732 5 0071135 \N 87733 5 0005889 \N 87734 3 11756431 \N 87735 5 0043657 \N 87736 5 0000788 \N 87737 5 0001726 \N 87738 5 0035086 \N 87739 5 0042382 \N 87740 3 11790299 \N 87741 5 0042565 \N 87742 3 9323123 \N 87743 5 0031359 \N 87744 5 0043196 \N 87745 5 0000267 \N 87746 5 0031608 \N 87747 5 0030286 \N 87748 5 0033267 \N 87749 5 0043246 \N 87750 3 11206117 \N 87751 3 1999020 \N 87752 5 0005946 \N 87753 3 9837904 \N 87754 5 0042653 \N 87755 86 0716749556 \N 87756 5 0097131 \N 87757 5 0033255 \N 87758 3 11731480 \N 87759 3 12626510 \N 87760 3 15788653 \N 87761 5 0000315 \N 87762 5 0031232 \N 87763 5 0070022 \N 87764 121 REACT_7415 \N 87765 121 REACT_7737 \N 87766 5 0044444 \N 87767 5 0033093 \N 87768 3 11935287 \N 87769 3 16087708 \N 87770 5 0035577 \N 87771 3 17152095 \N 87772 5 0043160 \N 87773 5 0005817 \N 87774 5 0033650 \N 87775 5 0043188 \N 87776 5 0034669 \N 87777 5 0030132 \N 87778 5 0034999 \N 87779 5 0071162 \N 87780 3 19228417 \N 87781 5 0035749 \N 87782 5 0009528 \N 87783 5 0042025 \N 87784 5 0033649 \N 87785 5 0033291 \N 87786 5 0090405 \N 87787 5 0097126 \N 87788 5 0016592 \N 87789 5 0000119 \N 87790 5 0005608 \N 87791 149 95005761 \N 87792 5 0070114 \N 87793 5 0005916 \N 87794 5 0045275 \N 87795 5 0032842 \N 87796 5 0045285 \N 87797 3 16228398 \N 87798 3 16352458 \N 87799 3 17200733 \N 87800 5 0000940 \N 87801 3 11483983 \N 87802 5 0030930 \N 87803 5 0045177 \N 87804 5 0001688 \N 87805 5 0097144 \N 87806 5 0031965 \N 87807 5 0005712 \N 87808 5 0071183 \N 87809 5 0005722 \N 87810 3 11404334 \N 87811 3 8878678 \N 87812 5 0016324 \N 87813 5 0071004 \N 87814 3 17332742 \N 87815 5 0031618 \N 87816 5 0030085 \N 87817 3 8825475 \N 87818 5 0001533 \N 87819 3 11112355 \N 87820 5 0033177 \N 87821 5 0044294 \N 87822 5 0034990 \N 87823 5 0016607 \N 87824 94 //www.cellnucleus.com/ \N 87825 5 0070469 \N 87826 5 0034682 \N 87827 5 0044299 \N 87828 146 nlx_subcell_20090210 \N 87829 5 0000306 \N 87830 5 0032116 \N 87831 5 0034742 \N 87832 3 16188939 \N 87833 5 0009361 \N 87834 5 0044290 \N 87835 146 sao508958414 \N 87836 5 0042622 \N 87837 5 0000229 \N 87838 5 0071748 \N 87839 5 0045095 \N 87840 5 0005590 \N 87841 5 0005938 \N 87842 5 0017059 \N 87843 5 0070388 \N 87844 3 14500733 \N 87845 5 0005766 \N 87846 5 0014701 \N 87847 5 0005576 \N 87848 5 0031617 \N 87849 3 16079914 \N 87850 5 0055052 \N 87851 5 0005662 \N 87852 3 9242902 \N 87853 5 0001651 \N 87854 5 0043240 \N 87855 3 12093742 \N 87856 5 0044429 \N 87857 5 0031225 \N 87858 5 0005675 \N 87859 5 0035328 \N 87860 3 17965872 \N 87861 5 0072562 \N 87862 5 0000813 \N 87863 5 0005702 \N 87864 5 0005719 \N 87865 5 0032175 \N 87866 5 0009512 \N 87867 5 0071178 \N 87868 5 0070556 \N 87869 3 8858156 \N 87870 5 0070435 \N 87871 5 0030063 \N 87872 3 9529891 \N 87873 5 0031351 \N 87874 5 0005754 \N 87875 5 0020004 \N 87876 5 0022624 \N 87877 5 0042642 \N 87878 5 0002095 \N 87879 3 16648270 \N 87880 5 0005745 \N 87881 3 12417197 \N 87882 3 21147776 \N 87883 5 0009347 \N 87884 3 10447693 \N 87885 5 0005951 \N 87886 3 8626695 \N 87887 5 0005646 \N 87888 5 0030118 \N 87889 5 0016190 \N 87890 3 11252894 \N 87891 5 0045244 \N 87892 5 0008325 \N 87893 5 0045245 \N 87894 5 0009351 \N 87895 5 0005635 \N 87896 5 0005636 \N 87897 5 0019907 \N 87898 3 8752210 \N 87899 5 0031095 \N 87900 5 0005845 \N 87901 5 0042600 \N 87902 5 0045211 \N 87903 5 0000314 \N 87904 5 0044215 \N 87905 5 0071782 \N 87906 5 0035301 \N 87907 3 10825151 \N 87908 5 0001529 \N 87909 5 0005587 \N 87910 5 0016914 \N 87911 5 0030114 \N 87912 94 //www.wikipedia.org/Slime_layer \N 87913 5 0005709 \N 87914 5 0055033 \N 87915 5 0031474 \N 87916 5 0010318 \N 87917 5 0032123 \N 87918 5 0008328 \N 87919 5 0044303 \N 87920 146 sao1470140754 \N 87921 5 0000784 \N 87922 5 0071547 \N 87923 5 0022629 \N 87924 5 0005617 \N 87925 5 0032160 \N 87926 5 0005687 \N 87927 5 0030671 \N 87928 5 0044192 \N 87929 5 0044326 \N 87930 5 0071119 \N 87931 3 12941630 \N 87932 5 0071540 \N 87933 3 19061185 \N 87934 5 0032178 \N 87935 5 0071099 \N 87936 3 11821050 \N 87937 5 0019898 \N 87938 5 0030396 \N 87939 5 0048222 \N 87940 3 18508691 \N 87941 3 7048321 \N 87942 5 0045259 \N 87943 5 0045255 \N 87944 5 0070552 \N 87945 5 0000299 \N 87946 3 10512869 \N 87947 5 0043218 \N 87948 146 sao-1123256993 \N 87949 5 0032284 \N 87950 5 0032993 \N 87951 5 0071735 \N 87952 5 0097057 \N 87953 3 16636664 \N 87954 5 0005652 \N 87955 5 0071513 \N 87956 3 19915539 \N 87957 5 0035976 \N 87958 3 20060892 \N 87959 3 9069263 \N 87960 104 AP-1_transcription_factor \N 87961 5 0032019 \N 87962 3 6541166 \N 87963 5 0030660 \N 87964 5 0071101 \N 87965 3 12070135 \N 87966 5 0000112 \N 87967 5 0070382 \N 87968 5 0044160 \N 87969 5 0045272 \N 87970 5 0071953 \N 87971 3 20236620 \N 87972 5 0031466 \N 87973 5 0015627 \N 87974 3 16448494 \N 87975 5 0034274 \N 87976 3 17986448 \N 87977 5 0043591 \N 87978 5 0055030 \N 87979 5 0005850 \N 87980 3 10216940 \N 87981 5 0033000 \N 87982 3 11244038 \N 87983 3 12413532 \N 87984 5 0044461 \N 87985 5 0009541 \N 87986 5 0005770 \N 87987 3 2557062 \N 87988 5 0005737 \N 87989 5 0030678 \N 87990 5 0070110 \N 87991 3 12707266 \N 87992 5 0000930 \N 87993 5 0071778 \N 87994 3 12837248 \N 87995 5 0005586 \N 87996 5 0046611 \N 87997 5 0033186 \N 87998 3 17065558 \N 87999 3 17083276 \N 88000 5 0030529 \N 88001 5 0031983 \N 88002 5 0032433 \N 88003 5 0071750 \N 88004 5 0001891 \N 88005 3 10358769 \N 88006 5 0071130 \N 88007 3 16099422 \N 88008 5 0005965 \N 88009 5 0034753 \N 88010 5 0070449 \N 88011 5 0030017 \N 88012 5 0032299 \N 88013 3 14734815 \N 88014 5 0000124 \N 88015 3 17337012 \N 88016 5 0031360 \N 88017 5 0005775 \N 88018 5 0044440 \N 88019 5 0005778 \N 88020 5 0031375 \N 88021 5 0031520 \N 88022 5 0009531 \N 88023 5 0009327 \N 88024 141 1.6.1.2 \N 88025 5 0033565 \N 88026 3 12055639 \N 88027 3 17543868 \N 88028 5 0033112 \N 88029 5 0000242 \N 88030 5 0045099 \N 88031 5 0070466 \N 88032 5 0000220 \N 88033 5 0034747 \N 88034 3 9601641 \N 88035 5 0070420 \N 88036 3 17938628 \N 88037 5 0016589 \N 88038 3 10779516 \N 88039 3 11279013 \N 88040 5 0032936 \N 88041 5 0045178 \N 88042 5 0034615 \N 88043 3 16696853 \N 88044 5 0034518 \N 88045 5 0031512 \N 88046 5 0009425 \N 88047 5 0090404 \N 88048 102 0025195 \N 88049 102 0025281 \N 88050 5 0071758 \N 88051 5 0044308 \N 88052 146 sao18239917 \N 88053 5 0043082 \N 88054 5 0070557 \N 88055 3 7911228 \N 88056 3 7915843 \N 88057 5 0071914 \N 88058 3 15976444 \N 88059 3 17109118 \N 88060 3 17283184 \N 88061 5 0005880 \N 88062 5 0034686 \N 88063 5 0017177 \N 88064 3 10464333 \N 88065 3 8910335 \N 88066 5 0030445 \N 88067 5 0031422 \N 88068 3 15889139 \N 88069 5 0031256 \N 88070 5 0005713 \N 88071 5 0044322 \N 88072 3 11408579 \N 88073 5 0031248 \N 88074 5 0071067 \N 88075 3 10749942 \N 88076 5 0070703 \N 88077 5 0017117 \N 88078 5 0035323 \N 88079 5 0032585 \N 88080 5 0071155 \N 88081 3 12509430 \N 88082 5 0005943 \N 88083 5 0035030 \N 88084 5 0031913 \N 88085 5 0070775 \N 88086 5 0030289 \N 88087 3 10026142 \N 88088 5 0032159 \N 88089 5 0016600 \N 88090 3 17206938 \N 88091 3 17600709 \N 88092 5 0030124 \N 88093 5 0016938 \N 88094 94 //www.csfic.mi.cnr.it/centro/lines/8/ric.html \N 88095 5 0071153 \N 88096 5 0071015 \N 88097 3 10197985 \N 88098 5 0005791 \N 88099 5 0042735 \N 88100 3 7704047 \N 88101 5 0016012 \N 88102 5 0043656 \N 88103 5 0012507 \N 88104 5 0030664 \N 88105 5 0032045 \N 88106 5 0046858 \N 88107 3 15298919 \N 88108 5 0045269 \N 88109 5 0045262 \N 88110 5 0005814 \N 88111 5 0031245 \N 88112 5 0071132 \N 88113 3 16985175 \N 88114 5 0033065 \N 88115 5 0071179 \N 88116 5 0035631 \N 88117 3 20614026 \N 88118 3 9221764 \N 88119 5 0070764 \N 88120 3 12794186 \N 88121 5 0030868 \N 88122 5 0009274 \N 88123 5 0035861 \N 88124 3 20096808 \N 88125 3 21035408 \N 88126 5 0032937 \N 88127 5 0071019 \N 88128 5 0000343 \N 88129 3 10946105 \N 88130 5 0032592 \N 88131 5 0071194 \N 88132 5 0031228 \N 88133 5 0070353 \N 88134 3 7568177 \N 88135 5 0016613 \N 88136 3 3474027 \N 88137 5 0032002 \N 88138 5 0048046 \N 88139 5 0005849 \N 88140 5 0034273 \N 88141 3 15743910 \N 88142 5 0072686 \N 88143 5 0070912 \N 88144 5 0070289 \N 88145 5 0060387 \N 88146 5 0030935 \N 88147 5 0055087 \N 88148 3 10744028 \N 88149 3 15703439 \N 88150 3 16043509 \N 88151 3 18042677 \N 88152 5 0043511 \N 88153 5 0035355 \N 88154 3 19931471 \N 88155 5 0043261 \N 88156 5 0031026 \N 88157 5 0020022 \N 88158 5 0000133 \N 88159 3 14998522 \N 88160 5 0000937 \N 88161 5 0060473 \N 88162 5 0034718 \N 88163 5 0009422 \N 88164 5 0017133 \N 88165 5 0043512 \N 88166 5 0070520 \N 88167 3 10229664 \N 88168 5 0043600 \N 88169 5 0030484 \N 88170 5 0033607 \N 88171 3 15233914 \N 88172 3 16790527 \N 88173 5 0032806 \N 88174 3 15047695 \N 88175 5 0030285 \N 88176 5 0043596 \N 88177 5 0070195 \N 88178 5 0044196 \N 88179 5 0005902 \N 88180 86 0813516194 \N 88181 5 0031604 \N 88182 5 0044232 \N 88183 3 16806880 \N 88184 5 0046696 \N 88185 3 11706042 \N 88186 5 0033167 \N 88187 5 0070331 \N 88188 3 7545683 \N 88189 5 0014702 \N 88190 5 0034746 \N 88191 5 0005899 \N 88192 5 0060201 \N 88193 5 0016528 \N 88194 5 0031352 \N 88195 5 0070090 \N 88196 5 0070357 \N 88197 3 2277087 \N 88198 3 7691831 \N 88199 5 0005940 \N 88200 5 0030481 \N 88201 5 0071090 \N 88202 5 0033644 \N 88203 5 0045240 \N 88204 5 0019035 \N 88205 5 0030014 \N 88206 5 0030075 \N 88207 5 0001740 \N 88208 5 0035183 \N 88209 3 10556087 \N 88210 3 7925006 \N 88211 3 9093858 \N 88212 5 0070419 \N 88213 5 0000399 \N 88214 5 0070531 \N 88215 3 19261749 \N 88216 5 0005562 \N 88217 5 0043228 \N 88218 5 0070618 \N 88219 5 0044459 \N 88220 5 0031021 \N 88221 5 0030906 \N 88222 3 9700157 \N 88223 5 0044177 \N 88224 5 0043384 \N 88225 5 0032155 \N 88226 5 0031310 \N 88227 5 0005833 \N 88228 5 0016474 \N 88229 3 15802565 \N 88230 5 0005861 \N 88231 5 0017146 \N 88232 5 0071122 \N 88233 3 17363377 \N 88234 5 0000177 \N 88235 5 0060293 \N 88236 5 0009390 \N 88237 133 e0188 \N 88238 5 0070045 \N 88239 5 0033101 \N 88240 5 0043669 \N 88241 5 0016591 \N 88242 3 15196470 \N 88243 104 Rna_polymerase_ii \N 88244 5 0030680 \N 88245 5 0009504 \N 88246 5 0030314 \N 88247 3 11535622 \N 88248 5 0031464 \N 88249 5 0009842 \N 88250 86 052131687 \N 88251 86 1402001894 \N 88252 5 0030056 \N 88253 5 0097125 \N 88254 5 0071148 \N 88255 5 0070824 \N 88256 5 0071595 \N 88257 3 9822591 \N 88258 5 0043680 \N 88259 5 0031479 \N 88260 5 0005783 \N 88261 5 0034691 \N 88262 5 0009336 \N 88263 5 0031090 \N 88264 5 0045171 \N 88265 5 0033009 \N 88266 3 16760254 \N 88267 5 0035371 \N 88268 3 12700769 \N 88269 3 16643273 \N 88270 5 0020016 \N 88271 5 0005810 \N 88272 5 0005602 \N 88273 5 0097071 \N 88274 3 20043992 \N 88275 5 0000931 \N 88276 5 0000929 \N 88277 5 0019185 \N 88278 3 7715707 \N 88279 3 9003788 \N 88280 5 0030688 \N 88281 5 0071187 \N 88282 5 0044221 \N 88283 5 0016327 \N 88284 5 0005859 \N 88285 5 0031969 \N 88286 5 0031143 \N 88287 5 0005594 \N 88288 5 0005656 \N 88289 3 15222894 \N 88290 5 0008087 \N 88291 3 9223679 \N 88292 5 0005873 \N 88293 5 0031897 \N 88294 3 12180471 \N 88295 3 12393016 \N 88296 5 0005912 \N 88297 94 //www.vivo.colostate.edu/hbooks/cmb/cells/pmemb/junctions_a.html \N 88298 5 0032161 \N 88299 3 12101122 \N 88300 3 15774761 \N 88301 5 0032420 \N 88302 3 15661519 \N 88303 3 7840137 \N 88304 5 0030081 \N 88305 5 0071943 \N 88306 3 16620027 \N 88307 3 16620031 \N 88308 3 20170194 \N 88309 5 0034457 \N 88310 3 17515605 \N 88311 5 0033655 \N 88312 5 0032997 \N 88313 5 0043257 \N 88314 5 0009573 \N 88315 5 0097076 \N 88316 3 16410796 \N 88317 3 17496917 \N 88318 3 18021073 \N 88319 5 0042582 \N 88320 5 0031376 \N 88321 5 0001684 \N 88322 5 0000329 \N 88323 5 0009434 \N 88324 5 0085040 \N 88325 5 0043076 \N 88326 5 0044298 \N 88327 5 0005741 \N 88328 5 0044430 \N 88329 5 0030008 \N 88330 3 17287728 \N 88331 3 9564032 \N 88332 5 0005571 \N 88333 5 0097149 \N 88334 3 11782313 \N 88335 3 16236794 \N 88336 5 0009536 \N 88337 5 0031612 \N 88338 5 0070209 \N 88339 5 0030895 \N 88340 3 10781591 \N 88341 5 0031974 \N 88342 5 0061174 \N 88343 5 0097140 \N 88344 5 0034681 \N 88345 5 0005786 \N 88346 5 0005855 \N 88347 5 0048787 \N 88348 3 12923177 \N 88349 3 3152289 \N 88350 5 0030140 \N 88351 5 0019026 \N 88352 5 0000809 \N 88353 5 0045252 \N 88354 87 CPLX66-42 \N 88355 5 0005758 \N 88356 5 0031971 \N 88357 5 0005599 \N 88358 5 0009509 \N 88359 5 0000793 \N 88360 5 0005639 \N 88361 5 0005836 \N 88362 141 2.3.1.86 \N 88363 5 0044447 \N 88364 5 0042601 \N 88365 86 0697286029 \N 88366 5 0048183 \N 88367 5 0031237 \N 88368 5 0031239 \N 88369 5 0070867 \N 88370 5 0030139 \N 88371 5 0071079 \N 88372 3 9281592 \N 88373 5 0000111 \N 88374 5 0044228 \N 88375 5 0016456 \N 88376 5 0014803 \N 88377 5 0005806 \N 88378 5 0005706 \N 88379 5 0097132 \N 88380 5 0008537 \N 88381 5 0071745 \N 88382 5 0009366 \N 88383 87 ENTMULTI-CPLX \N 88384 3 9485415 \N 88385 5 0071081 \N 88386 3 7629079 \N 88387 5 0071070 \N 88388 5 0071057 \N 88389 3 10944520 \N 88390 5 0016029 \N 88391 3 11707492 \N 88392 5 0030880 \N 88393 5 0042022 \N 88394 3 10971505 \N 88395 5 0005801 \N 88396 5 0043699 \N 88397 5 0044157 \N 88398 5 0060342 \N 88399 5 0031211 \N 88400 5 0033268 \N 88401 5 0070545 \N 88402 3 16043514 \N 88403 3 17353269 \N 88404 5 0034995 \N 88405 3 10090939 \N 88406 5 0033181 \N 88407 5 0009339 \N 88408 5 0031904 \N 88409 5 0009524 \N 88410 5 0031261 \N 88411 3 12694535 \N 88412 3 15194812 \N 88413 5 0031485 \N 88414 5 0048494 \N 88415 5 0001723 \N 88416 5 0030496 \N 88417 5 0031213 \N 88418 3 12972596 \N 88419 5 0031002 \N 88420 5 0035449 \N 88421 5 0044423 \N 88422 5 0000923 \N 88423 3 11792817 \N 88424 5 0071082 \N 88425 3 9565552 \N 88426 5 0030428 \N 88427 5 0009334 \N 88428 87 HCAMULTI-CPLX \N 88429 3 9603882 \N 88430 5 0000799 \N 88431 5 0030938 \N 88432 5 0071096 \N 88433 3 11577104 \N 88434 5 0071575 \N 88435 5 0033095 \N 88436 94 //ejournal.sinica.edu.tw/bbas/content/2004/1/bot451-08.pdf \N 88437 94 //www.springerlink.com/content/q7183h5vr7358278/ \N 88438 5 0070387 \N 88439 3 7753822 \N 88440 5 0034774 \N 88441 5 0071075 \N 88442 3 16931514 \N 88443 5 0032168 \N 88444 5 0000837 \N 88445 5 0016272 \N 88446 3 17384227 \N 88447 3 9630229 \N 88448 5 0005818 \N 88449 5 0009357 \N 88450 5 0070046 \N 88451 5 0070023 \N 88452 3 11900991 \N 88453 5 0032311 \N 88454 3 2706246 \N 88455 3 3470787 \N 88456 5 0070438 \N 88457 3 20005306 \N 88458 3 7822316 \N 88459 5 0055029 \N 88460 5 0005805 \N 88461 5 0000806 \N 88462 5 0070767 \N 88463 3 9008167 \N 88464 5 0019016 \N 88465 5 0030057 \N 88466 5 0044295 \N 88467 5 0016610 \N 88468 87 CPLX-186 \N 88469 87 CPLX-525 \N 88470 5 0071256 \N 88471 5 0031206 \N 88472 3 10611978 \N 88473 3 18166647 \N 88474 3 8612571 \N 88475 5 0033256 \N 88476 3 9407099 \N 88477 5 0043853 \N 88478 136 01437 \N 88479 87 CPLX-421 \N 88480 3 9363780 \N 88481 5 0042385 \N 88482 5 0005720 \N 88483 5 0042564 \N 88484 3 9323134 \N 88485 5 0031411 \N 88486 3 8177173 \N 88487 5 0005657 \N 88488 5 0034424 \N 88489 3 18216282 \N 88490 5 0071628 \N 88491 5 0005886 \N 88492 5 0005904 \N 88493 5 0005761 \N 88494 5 0005593 \N 88495 86 0198599587 \N 88496 5 0030133 \N 88497 5 0019034 \N 88498 5 0070515 \N 88499 3 8663236 \N 88500 5 0046808 \N 88501 3 8676489 \N 88502 5 0019024 \N 88503 5 0031258 \N 88504 5 0031610 \N 88505 5 0042598 \N 88506 5 0005960 \N 88507 5 0005961 \N 88508 5 0070015 \N 88509 87 GCVMULTI-CPLX \N 88510 5 0032444 \N 88511 3 12374795 \N 88512 3 9288972 \N 88513 5 0097015 \N 88514 5 0031015 \N 88515 3 11867631 \N 88516 3 9864357 \N 88517 5 0071920 \N 88518 3 10564273 \N 88519 3 11598190 \N 88520 3 8654386 \N 88521 5 0019183 \N 88522 5 0031355 \N 88523 5 0005574 \N 88524 5 0018444 \N 88525 5 0044291 \N 88526 146 sao1299635018 \N 88527 5 0071058 \N 88528 3 11884516 \N 88529 5 0060077 \N 88530 5 0005868 \N 88531 3 12600311 \N 88532 5 0000109 \N 88533 5 0031902 \N 88534 5 0005631 \N 88535 5 0005897 \N 88536 3 10642536 \N 88537 5 0044457 \N 88538 5 0071003 \N 88539 3 11804584 \N 88540 3 12724403 \N 88541 5 0097145 \N 88542 5 0016459 \N 88543 86 96235764 \N 88544 5 0034357 \N 88545 5 0005575 \N 88546 5 0008372 \N 88547 5 0031298 \N 88548 5 0005626 \N 88549 5 0042406 \N 88550 5 0031941 \N 88551 5 0044220 \N 88552 5 0072556 \N 88553 5 0015050 \N 88554 141 1.14.13.25 \N 88555 5 0000323 \N 88556 5 0045278 \N 88557 5 0045288 \N 88558 5 0044201 \N 88559 5 0048500 \N 88560 5 0061177 \N 88561 5 0070310 \N 88562 3 14724280 \N 88563 5 0030893 \N 88564 5 0005948 \N 88565 141 2.2.1.6 \N 88566 3 16458324 \N 88567 3 8756689 \N 88568 5 0070771 \N 88569 3 9169439 \N 88570 5 0000500 \N 88571 3 11500378 \N 88572 5 0070024 \N 88573 3 7528218 \N 88574 5 0031477 \N 88575 5 0071182 \N 88576 5 0070115 \N 88577 5 0043677 \N 88578 104 Germ_pore \N 88579 5 0070069 \N 88580 5 0033620 \N 88581 3 12808043 \N 88582 5 0005788 \N 88583 5 0016022 \N 88584 5 0044171 \N 88585 5 0070744 \N 88586 3 15999093 \N 88587 5 0032777 \N 88588 3 12782659 \N 88589 3 15964809 \N 88590 5 0071202 \N 88591 5 0044095 \N 88592 5 0034064 \N 88593 3 17046992 \N 88594 5 0009502 \N 88595 86 014051403 \N 88596 5 0005750 \N 88597 5 0015008 \N 88598 5 0071125 \N 88599 3 15834425 \N 88600 5 0070695 \N 88601 3 18799622 \N 88602 5 0005956 \N 88603 3 10994779 \N 88604 5 0070334 \N 88605 5 0030176 \N 88606 5 0031482 \N 88607 5 0045293 \N 88608 94 //www.ejbiotechnology.info/content/vol1/issue1/full/4/ \N 88609 3 11564867 \N 88610 3 12139607 \N 88611 5 0000938 \N 88612 3 10637310 \N 88613 3 12077354 \N 88614 3 12446664 \N 88615 5 0070820 \N 88616 3 12070036 \N 88617 5 0043664 \N 88618 5 0035985 \N 88619 5 0030659 \N 88620 5 0001939 \N 88621 5 0097127 \N 88622 5 0009507 \N 88623 5 0071146 \N 88624 5 0044316 \N 88625 94 //webvision.med.utah.edu/photo2.html \N 88626 3 10939333 \N 88627 5 0042101 \N 88628 5 0005743 \N 88629 5 0090397 \N 88630 5 0009843 \N 88631 5 0033648 \N 88632 5 0045320 \N 88633 5 0009546 \N 88634 5 0009522 \N 88635 3 9821949 \N 88636 5 0031091 \N 88637 5 0034493 \N 88638 5 0070603 \N 88639 3 16155938 \N 88640 5 0042720 \N 88641 3 10821182 \N 88642 5 0031978 \N 88643 5 0033178 \N 88644 5 0034706 \N 88645 5 0044175 \N 88646 5 0005670 \N 88647 5 0005727 \N 88648 5 0009323 \N 88649 5 0000932 \N 88650 3 12730603 \N 88651 5 0032068 \N 88652 5 0030687 \N 88653 5 0016606 \N 88654 5 0034663 \N 88655 3 12475965 \N 88656 5 0020017 \N 88657 5 0046868 \N 88658 5 0005823 \N 88659 5 0005615 \N 88660 5 0032021 \N 88661 3 12612062 \N 88662 5 0008021 \N 88663 5 0031160 \N 88664 5 0005894 \N 88665 5 0005967 \N 88666 5 0043234 \N 88667 5 0030875 \N 88668 3 1629244 \N 88669 5 0031085 \N 88670 3 12756248 \N 88671 5 0030130 \N 88672 5 0019030 \N 88673 5 0005605 \N 88674 5 0033768 \N 88675 3 17762864 \N 88676 3 17762865 \N 88677 5 0046695 \N 88678 3 12101232 \N 88679 3 12186975 \N 88680 5 0000421 \N 88681 5 0060200 \N 88682 5 0016473 \N 88683 3 14656431 \N 88684 5 0034271 \N 88685 3 11157979 \N 88686 3 16421251 \N 88687 5 0009569 \N 88688 5 0043190 \N 88689 5 0043191 \N 88690 5 0043192 \N 88691 3 11421269 \N 88692 3 15111107 \N 88693 5 0001652 \N 88694 5 0005673 \N 88695 3 16547462 \N 88696 5 0034719 \N 88697 3 11522829 \N 88698 5 0071743 \N 88699 5 0005654 \N 88700 5 0031609 \N 88701 5 0000797 \N 88702 5 0008621 \N 88703 5 0044162 \N 88704 5 0030430 \N 88705 5 0071062 \N 88706 3 10835423 \N 88707 5 0043197 \N 88708 5 0016014 \N 88709 5 0031045 \N 88710 3 14690495 \N 88711 5 0034702 \N 88712 5 0097025 \N 88713 5 0071016 \N 88714 5 0045263 \N 88715 5 0031907 \N 88716 5 0035866 \N 88717 5 0044184 \N 88718 5 0044443 \N 88719 5 0034741 \N 88720 3 17126424 \N 88721 5 0031201 \N 88722 5 0034709 \N 88723 3 11713266 \N 88724 3 11756452 \N 88725 5 0035012 \N 88726 5 0031009 \N 88727 5 0070770 \N 88728 5 0000777 \N 88729 5 0031304 \N 88730 5 0005915 \N 88731 5 0043528 \N 88732 3 15899842 \N 88733 5 0031246 \N 88734 5 0030127 \N 88735 5 0000817 \N 88736 3 14633972 \N 88737 5 0031265 \N 88738 5 0032584 \N 88739 5 0032589 \N 88740 5 0043256 \N 88741 94 //www.sdbonline.org/fly/newgene/laminna1.htm \N 88742 5 0071176 \N 88743 5 0071012 \N 88744 5 0009655 \N 88745 5 0031080 \N 88746 3 10747086 \N 88747 3 11823431 \N 88748 3 15226438 \N 88749 5 0032047 \N 88750 3 10361303 \N 88751 3 14614504 \N 88752 5 0030870 \N 88753 3 11988766 \N 88754 3 17674145 \N 88755 5 0005698 \N 88756 5 0008043 \N 88757 5 0031358 \N 88758 5 0000942 \N 88759 3 1148398 \N 88760 5 0044304 \N 88761 146 sao1596975044 \N 88762 5 0005711 \N 88763 5 0043083 \N 88764 94 //synapses.mcg.edu/anatomy/chemical/synapse.stm \N 88765 5 0001689 \N 88766 5 0012510 \N 88767 5 0035145 \N 88768 3 11532962 \N 88769 3 11743026 \N 88770 5 0009333 \N 88771 87 CYSSYNMULTI-CPLX \N 88772 5 0017101 \N 88773 3 16169847 \N 88774 5 0031421 \N 88775 3 11114897 \N 88776 3 9732277 \N 88777 5 0043702 \N 88778 5 0000331 \N 88779 5 0030084 \N 88780 5 0034515 \N 88781 3 18504300 \N 88782 5 0035059 \N 88783 3 10591219 \N 88784 5 0034980 \N 88785 5 0055040 \N 88786 3 15175283 \N 88787 3 1624463 \N 88788 5 0042613 \N 88789 5 0031251 \N 88790 3 9774670 \N 88791 5 0070030 \N 88792 3 7592829 \N 88793 5 0005609 \N 88794 5 0030143 \N 88795 5 0005807 \N 88796 5 0070622 \N 88797 3 8940155 \N 88798 5 0016027 \N 88799 3 9010208 \N 88800 3 9796815 \N 88801 5 0071184 \N 88802 5 0016514 \N 88803 5 0016942 \N 88804 5 0005854 \N 88805 3 12475173 \N 88806 3 7568149 \N 88807 5 0005846 \N 88808 3 16043498 \N 88809 5 0016587 \N 88810 3 15020051 \N 88811 5 0070685 \N 88812 3 12538772 \N 88813 3 16968738 \N 88814 3 9044041 \N 88815 5 0030867 \N 88816 5 0000137 \N 88817 5 0071757 \N 88818 5 0070451 \N 88819 3 11526084 \N 88820 5 0009376 \N 88821 3 12670962 \N 88822 5 0032969 \N 88823 3 15263099 \N 88824 3 16227978 \N 88825 3 17496910 \N 88826 5 0033115 \N 88827 5 0034998 \N 88828 5 0009352 \N 88829 5 0031970 \N 88830 5 0019816 \N 88831 5 0016013 \N 88832 5 0045025 \N 88833 3 10397341 \N 88834 3 9829834 \N 88835 5 0032151 \N 88836 5 0031523 \N 88837 3 12490953 \N 88838 3 15545624 \N 88839 5 0031010 \N 88840 5 0005826 \N 88841 5 0030480 \N 88842 4 expert_jrp \N 88843 5 0071541 \N 88844 5 0031499 \N 88845 3 16373491 \N 88846 5 0005721 \N 88847 3 12019236 \N 88848 5 0001674 \N 88849 5 0043080 \N 88850 91 0000021 \N 88851 5 0032221 \N 88852 5 0000509 \N 88853 3 12773392 \N 88854 3 17450151 \N 88855 5 0008274 \N 88856 5 0034685 \N 88857 5 0034991 \N 88858 5 0005974 \N 88859 5 0008007 \N 88860 5 0016007 \N 88861 5 0046727 \N 88862 5 0020036 \N 88863 3 16705161 \N 88864 5 0031227 \N 88865 5 0005744 \N 88866 3 8851659 \N 88867 5 0045101 \N 88868 5 0005765 \N 88869 5 0030933 \N 88870 5 0042827 \N 88871 3 10403682 \N 88872 5 0030849 \N 88873 5 0060418 \N 88874 3 18046696 \N 88875 5 0000230 \N 88876 5 0019866 \N 88877 5 0032280 \N 88878 5 0072379 \N 88879 3 20850366 \N 88880 5 0030669 \N 88881 5 0070082 \N 88882 5 0071118 \N 88883 3 12902636 \N 88884 5 0033017 \N 88885 5 0005736 \N 88886 5 0071601 \N 88887 3 7758244 \N 88888 3 8349728 \N 88889 5 0034045 \N 88890 3 16874040 \N 88891 3 17382324 \N 88892 5 0032177 \N 88893 5 0034677 \N 88894 5 0042719 \N 88895 3 12581629 \N 88896 5 0071088 \N 88897 5 0043219 \N 88898 5 0071818 \N 88899 5 0009577 \N 88900 5 0010319 \N 88901 3 15272881 \N 88902 3 15699062 \N 88903 3 16582010 \N 88904 5 0070161 \N 88905 5 0031317 \N 88906 5 0000939 \N 88907 3 10619130 \N 88908 5 0048770 \N 88909 5 0035808 \N 88910 3 12897161 \N 88911 3 20364342 \N 88912 3 21429938 \N 88913 5 0020031 \N 88914 5 0001722 \N 88915 5 0000444 \N 88916 3 16585270 \N 88917 5 0009329 \N 88918 3 2719476 \N 88919 3 8423010 \N 88920 5 0070014 \N 88921 3 3366777 \N 88922 5 0005680 \N 88923 3 10611969 \N 88924 5 0010339 \N 88925 5 0043593 \N 88926 5 0000803 \N 88927 5 0034692 \N 88928 3 8641291 \N 88929 5 0008275 \N 88930 3 11297925 \N 88931 5 0033553 \N 88932 5 0048179 \N 88933 3 8307945 \N 88934 5 0070470 \N 88935 5 0009343 \N 88936 5 0005924 \N 88937 5 0044436 \N 88938 5 0020007 \N 88939 5 0071129 \N 88940 5 0032172 \N 88941 5 0005809 \N 88942 5 0032809 \N 88943 5 0034082 \N 88944 5 0005580 \N 88945 5 0034366 \N 88946 5 0000785 \N 88947 5 0005717 \N 88948 5 0032992 \N 88949 5 0055038 \N 88950 5 0009382 \N 88951 5 0031313 \N 88952 5 0043226 \N 88953 5 0070971 \N 88954 3 15623529 \N 88955 3 16957052 \N 88956 5 0016035 \N 88957 3 16631579 \N 88958 3 16971464 \N 88959 5 0019822 \N 88960 5 0097137 \N 88961 5 0035578 \N 88962 5 0031933 \N 88963 5 0071438 \N 88964 5 0034388 \N 88965 3 15231838 \N 88966 5 0030078 \N 88967 5 0042647 \N 88968 5 0060198 \N 88969 5 0005585 \N 88970 5 0002169 \N 88971 3 15868465 \N 88972 5 0005793 \N 88973 5 0045284 \N 88974 5 0034399 \N 88975 5 0043541 \N 88976 3 19129246 \N 88977 5 0034967 \N 88978 3 11711434 \N 88979 5 0030232 \N 88980 3 7935390 \N 88981 5 0009986 \N 88982 5 0009928 \N 88983 5 0009929 \N 88984 5 0071151 \N 88985 5 0005641 \N 88986 5 0005653 \N 88987 5 0071020 \N 88988 5 0016008 \N 88989 3 17123504 \N 88990 5 0022625 \N 88991 5 0005842 \N 88992 5 0009282 \N 88993 5 0030498 \N 88994 5 0030872 \N 88995 5 0071195 \N 88996 5 0071134 \N 88997 3 17413041 \N 88998 5 0044217 \N 88999 5 0005611 \N 89000 5 0019020 \N 89001 5 0009518 \N 89002 5 0070720 \N 89003 5 0000274 \N 89004 5 0045253 \N 89005 3 9395502 \N 89006 5 0005595 \N 89007 5 0045098 \N 89008 5 0031254 \N 89009 5 0044207 \N 89010 5 0031614 \N 89011 5 0043073 \N 89012 91 0000586 \N 89013 5 0071747 \N 89014 5 0033597 \N 89015 3 10704439 \N 89016 3 11535616 \N 89017 3 11726501 \N 89018 3 17650307 \N 89019 5 0031233 \N 89020 5 0031417 \N 89021 5 0075341 \N 89022 5 0002081 \N 89023 5 0070443 \N 89024 3 8224841 \N 89025 5 0033654 \N 89026 5 0070467 \N 89027 3 8392064 \N 89028 3 8670910 \N 89029 5 0030934 \N 89030 5 0034060 \N 89031 5 0030016 \N 89032 5 0000307 \N 89033 3 11602261 \N 89034 5 0015935 \N 89035 5 0071102 \N 89036 3 12221126 \N 89037 5 0009367 \N 89038 5 0031613 \N 89039 5 0009326 \N 89040 5 0030700 \N 89041 3 2018775 \N 89042 5 0032169 \N 89043 5 0031361 \N 89044 5 0034689 \N 89045 5 0000344 \N 89046 5 0046862 \N 89047 5 0000214 \N 89048 5 0097146 \N 89049 5 0043265 \N 89050 3 12211103 \N 89051 5 0005881 \N 89052 5 0000125 \N 89053 5 0009527 \N 89054 5 0031257 \N 89055 5 0097141 \N 89056 5 0046859 \N 89057 5 0070578 \N 89058 3 18178619 \N 89059 5 0085041 \N 89060 5 0045179 \N 89061 5 0005623 \N 89062 5 0097060 \N 89063 5 0031984 \N 89064 5 0042763 \N 89065 5 0070421 \N 89066 3 15141024 \N 89067 3 7760816 \N 89068 5 0097133 \N 89069 5 0045102 \N 89070 5 0009431 \N 89071 5 0009430 \N 89072 5 0016939 \N 89073 5 0033653 \N 89074 5 0031262 \N 89075 3 15509863 \N 89076 3 15661517 \N 89077 5 0044158 \N 89078 5 0034664 \N 89079 5 0032591 \N 89080 5 0060053 \N 89081 5 0030173 \N 89082 5 0071078 \N 89083 5 0043231 \N 89084 5 0031511 \N 89085 3 12719471 \N 89086 3 15897182 \N 89087 5 0085026 \N 89088 5 0071052 \N 89089 5 0030964 \N 89090 5 0030025 \N 89091 5 0030966 \N 89092 5 0031675 \N 89093 5 0031677 \N 89094 5 0031678 \N 89095 5 0045280 \N 89096 5 0097073 \N 89097 3 16751392 \N 89098 5 0071821 \N 89099 3 20347428 \N 89100 5 0005900 \N 89101 3 8999038 \N 89102 5 0071007 \N 89103 5 0033588 \N 89104 5 0033589 \N 89105 3 11689709 \N 89106 3 17018299 \N 89107 5 0046691 \N 89108 3 10700045 \N 89109 5 0032164 \N 89110 5 0035843 \N 89111 3 18359585 \N 89112 5 0030691 \N 89113 5 0034752 \N 89114 3 8937476 \N 89115 3 9447995 \N 89116 5 0030074 \N 89117 5 0044199 \N 89118 5 0016235 \N 89119 5 0042734 \N 89120 5 0030896 \N 89121 3 12531008 \N 89122 5 0034974 \N 89123 3 14663140 \N 89124 5 0044286 \N 89125 146 sao1943947957 \N 89126 3 12883993 \N 89127 3 16166562 \N 89128 3 17591898 \N 89129 5 0005839 \N 89130 5 0000503 \N 89131 3 10806206 \N 89132 5 0031410 \N 89133 5 0030136 \N 89134 5 0031486 \N 89135 5 0034272 \N 89136 5 0030425 \N 89137 5 0070763 \N 89138 5 0033001 \N 89139 5 0043194 \N 89140 5 0009419 \N 89141 5 0043293 \N 89142 3 10428850 \N 89143 3 11406413 \N 89144 3 12176339 \N 89145 3 15189137 \N 89146 5 0033774 \N 89147 3 11640882 \N 89148 5 0033106 \N 89149 5 0000243 \N 89150 3 9150140 \N 89151 5 0070354 \N 89152 5 0005800 \N 89153 5 0071191 \N 89154 5 0072493 \N 89155 5 0071781 \N 89156 5 0009839 \N 89157 3 9857172 \N 89158 5 0005647 \N 89159 5 0030117 \N 89160 5 0043224 \N 89161 5 0019038 \N 89162 5 0005724 \N 89163 5 0030905 \N 89164 5 0001741 \N 89165 5 0014705 \N 89166 5 0019012 \N 89167 5 0070048 \N 89168 5 0031224 \N 89169 5 0002102 \N 89170 3 12837608 \N 89171 3 15890982 \N 89172 5 0045243 \N 89173 5 0043005 \N 89174 5 0005674 \N 89175 3 7597077 \N 89176 5 0005898 \N 89177 3 8552669 \N 89178 3 9013879 \N 89179 5 0009542 \N 89180 5 0033643 \N 89181 5 0044195 \N 89182 3 17959832 \N 89183 3 9024685 \N 89184 5 0033174 \N 89185 3 11032839 \N 89186 5 0009511 \N 89187 5 0043625 \N 89188 5 0005659 \N 89189 3 12403614 \N 89190 5 0097014 \N 89191 5 0010598 \N 89192 5 0031592 \N 89193 5 0070565 \N 89194 3 19179534 \N 89195 5 0071177 \N 89196 5 0031089 \N 89197 5 0043655 \N 89198 5 0070619 \N 89199 3 7970708 \N 89200 5 0043674 \N 89201 5 0005567 \N 89202 5 0000131 \N 89203 5 0042170 \N 89204 5 0043665 \N 89205 5 0097138 \N 89206 5 0005891 \N 89207 5 0008305 \N 89208 3 17543136 \N 89209 5 0071521 \N 89210 3 10567532 \N 89211 3 7923372 \N 89212 3 8943016 \N 89213 5 0030064 \N 89214 5 0072589 \N 89215 5 0070652 \N 89216 3 19427217 \N 89217 5 0071112 \N 89218 3 12456677 \N 89219 5 0009898 \N 89220 5 0005559 \N 89221 5 0043513 \N 89222 5 0034715 \N 89223 5 0000974 \N 89224 3 16540691 \N 89225 5 0060204 \N 89226 5 0043264 \N 89227 5 0060091 \N 89228 3 15882574 \N 89229 5 0000144 \N 89230 5 0070381 \N 89231 3 10679016 \N 89232 3 12110576 \N 89233 5 0071091 \N 89234 5 0044460 \N 89235 5 0000504 \N 89236 5 0033012 \N 89237 3 15090256 \N 89238 3 16563225 \N 89239 5 0019719 \N 89240 5 0071149 \N 89241 5 0042643 \N 89242 5 0010445 \N 89243 3 17442570 \N 89244 5 0048556 \N 89245 5 0043074 \N 89246 5 0033263 \N 89247 3 17488625 \N 89248 5 0002139 \N 89249 3 16775142 \N 89250 5 0070065 \N 89251 5 0009344 \N 89252 5 0005632 \N 89253 5 0042597 \N 89254 5 0005620 \N 89255 5 0070931 \N 89256 5 0033289 \N 89257 3 11901169 \N 89258 5 0044099 \N 89259 5 0005784 \N 89260 5 0045111 \N 89261 5 0000178 \N 89262 5 0005616 \N 89263 3 6781759 \N 89264 5 0045120 \N 89265 5 0033573 \N 89266 3 16522632 \N 89267 3 8599111 \N 89268 5 0033107 \N 89269 3 15138258 \N 89270 5 0060104 \N 89271 5 0034359 \N 89272 5 0071121 \N 89273 5 0016341 \N 89274 5 0005578 \N 89275 5 0043660 \N 89276 5 0002187 \N 89277 3 16236486 \N 89278 5 0044214 \N 89279 5 0005686 \N 89280 5 0005789 \N 89281 5 0044161 \N 89282 5 0033064 \N 89283 5 0033282 \N 89284 3 11120760 \N 89285 3 7521127 \N 89286 5 0031027 \N 89287 3 7047525 \N 89288 5 0000113 \N 89289 5 0042652 \N 89290 5 0070852 \N 89291 5 0045271 \N 89292 5 0045279 \N 89293 5 0005952 \N 89294 5 0034666 \N 89295 5 0005874 \N 89296 5 0030080 \N 89297 5 0034680 \N 89298 5 0055039 \N 89299 94 //www.iscid.org/encyclopedia/ \N 89300 3 3667715 \N 89301 5 0033118 \N 89302 5 0001685 \N 89303 5 0043202 \N 89304 3 15213228 \N 89305 5 0031308 \N 89306 5 0071188 \N 89307 5 0031528 \N 89308 5 0071753 \N 89309 5 0016023 \N 89310 5 0070288 \N 89311 5 0046930 \N 89312 5 0016328 \N 89313 5 0051285 \N 89314 5 0043189 \N 89315 5 0009428 \N 89316 5 0019025 \N 89317 5 0031981 \N 89318 5 0071131 \N 89319 3 16824487 \N 89320 5 0042583 \N 89321 3 19158310 \N 89322 3 1961743 \N 89323 5 0071138 \N 89324 3 14709558 \N 89325 5 0030990 \N 89326 5 0030864 \N 89327 5 0033111 \N 89328 5 0030677 \N 89329 5 0008278 \N 89330 5 0008279 \N 89331 5 0043222 \N 89332 3 9887095 \N 89333 5 0005740 \N 89334 5 0009537 \N 89335 5 0043227 \N 89336 5 0005693 \N 89337 5 0034506 \N 89338 5 0005858 \N 89339 5 0044309 \N 89340 86 0198504888 \N 89341 146 sao1145756102 \N 89342 5 0035525 \N 89343 5 add \N 89344 3 20393192 \N 89345 3 9299584 \N 89346 5 0005707 \N 89347 5 0019861 \N 89348 5 0008223 \N 89349 109 KW-0282 \N 89350 5 0005779 \N 89351 5 0031379 \N 89352 5 0005666 \N 89353 5 0035361 \N 89354 3 20139071 \N 89355 5 0070913 \N 89356 5 0034745 \N 89357 5 0044166 \N 89358 5 0097002 \N 89359 3 16054341 \N 89360 3 19019989 \N 89361 5 0044227 \N 89362 5 0000322 \N 89363 5 0001411 \N 89364 5 0020025 \N 89365 5 0032391 \N 89366 3 15917207 \N 89367 3 8718680 \N 89368 5 0000328 \N 89369 5 0005759 \N 89370 5 0031980 \N 89371 5 0044446 \N 89372 5 0042757 \N 89373 3 9705477 \N 89374 5 0044188 \N 89375 5 0034646 \N 89376 5 0070057 \N 89377 5 0032588 \N 89378 5 0005799 \N 89379 5 0009275 \N 89380 86 0051406910 \N 89381 5 0033391 \N 89382 3 17183363 \N 89383 5 0035869 \N 89384 3 21422230 \N 89385 5 0005792 \N 89386 5 0031205 \N 89387 3 12158317 \N 89388 3 14617809 \N 89389 5 0016460 \N 89390 5 0001536 \N 89391 5 0017119 \N 89392 3 9792665 \N 89393 5 0071085 \N 89394 5 0034673 \N 89395 3 10746731 \N 89396 5 0070688 \N 89397 3 19377461 \N 89398 5 0033180 \N 89399 5 0072536 \N 89400 3 12023369 \N 89401 5 0033269 \N 89402 5 0071154 \N 89403 5 0005935 \N 89404 5 0000792 \N 89405 5 0033166 \N 89406 94 //worms.zoology.wisc.edu/urchins/SUgast_ECM3.html \N 89407 3 1721506 \N 89408 3 9473317 \N 89409 5 0012508 \N 89410 5 0071068 \N 89411 5 0034456 \N 89412 5 0031903 \N 89413 5 0035693 \N 89414 3 18003616 \N 89415 5 0031605 \N 89416 5 0031242 \N 89417 5 0071664 \N 89418 3 14661054 \N 89419 5 0044300 \N 89420 146 nlx_subcell_20090209 \N 89421 5 0043670 \N 89422 5 0035838 \N 89423 5 0000943 \N 89424 3 10861903 \N 89425 5 0009421 \N 89426 5 0030120 \N 89427 5 0043259 \N 89428 5 0008074 \N 89429 5 0071665 \N 89430 5 0033203 \N 89431 3 9341218 \N 89432 5 0070521 \N 89433 5 0009656 \N 89434 5 0020003 \N 89435 5 0000781 \N 89436 5 0030485 \N 89437 5 0043597 \N 89438 5 0035068 \N 89439 3 14559182 \N 89440 5 0035032 \N 89441 5 0032174 \N 89442 5 0001401 \N 89443 3 12891361 \N 89444 5 0035098 \N 89445 3 12408863 \N 89446 3 12408864 \N 89447 3 20064375 \N 89448 5 0005905 \N 89449 3 10559856 \N 89450 3 17284835 \N 89451 5 0060987 \N 89452 5 0070864 \N 89453 3 10588662 \N 89454 5 0071024 \N 89455 5 0097122 \N 89456 5 0030478 \N 89457 5 0000143 \N 89458 86 10652251 \N 89459 5 0032783 \N 89460 3 17150956 \N 89461 5 0031166 \N 89462 5 0032578 \N 89463 5 0080008 \N 89464 3 16792691 \N 89465 3 18223036 \N 89466 3 18552200 \N 89467 5 0035792 \N 89468 5 0044463 \N 89469 5 0001114 \N 89470 5 0045180 \N 89471 5 0005700 \N 89472 5 0009547 \N 89473 5 0031040 \N 89474 5 0044433 \N 89475 5 0072372 \N 89476 5 0071744 \N 89477 5 0000164 \N 89478 4 ssd \N 89479 5 0042824 \N 89480 5 0044233 \N 89481 5 0044176 \N 89482 5 0035182 \N 89483 3 12435357 \N 89484 5 0010494 \N 89485 5 0031480 \N 89486 5 0097038 \N 89487 5 0031266 \N 89488 5 0030874 \N 89489 5 0031096 \N 89490 5 0042105 \N 89491 5 0035327 \N 89492 5 0032421 \N 89493 5 0033102 \N 89494 3 11378195 \N 89495 5 0044312 \N 89496 3 19932717 \N 89497 5 0071199 \N 89498 5 0071739 \N 89499 5 0072563 \N 89500 5 0070722 \N 89501 3 8955148 \N 89502 5 0031461 \N 89503 5 0000138 \N 89504 5 0070111 \N 89505 4 expert_mm \N 89506 3 18356055 \N 89507 5 0070825 \N 89508 3 18649270 \N 89509 5 0072559 \N 89510 5 0009503 \N 89511 5 0048225 \N 89512 3 18440267 \N 89513 3 7706282 \N 89514 5 0034467 \N 89515 5 0070916 \N 89516 3 19726565 \N 89517 5 0000814 \N 89518 5 0032156 \N 89519 5 0030663 \N 89520 5 0070332 \N 89521 5 0005832 \N 89522 3 11580267 \N 89523 5 0042729 \N 89524 5 0043925 \N 89525 5 0043926 \N 89526 3 11782438 \N 89527 3 11799062 \N 89528 5 0009288 \N 89529 3 7787060 \N 89530 5 0030665 \N 89531 5 0002142 \N 89532 5 0005941 \N 89533 5 0042627 \N 89534 3 10580165 \N 89535 5 0072380 \N 89536 5 0002186 \N 89537 3 173175 \N 89538 5 0005771 \N 89539 3 11566881 \N 89540 5 0060106 \N 89541 5 0005811 \N 89542 5 0000223 \N 89543 5 0032476 \N 89544 5 0085039 \N 89545 5 0097072 \N 89546 121 REACT_7146 \N 89547 5 0005911 \N 89548 5 0070019 \N 89549 5 0030094 \N 89550 5 0005677 \N 89551 5 0034455 \N 89552 5 0097047 \N 89553 5 0005769 \N 89554 5 0045257 \N 89555 5 0005650 \N 89556 5 0000440 \N 89557 5 0009337 \N 89558 141 1.8.1.2 \N 89559 5 0070505 \N 89560 3 12930826 \N 89561 3 15012271 \N 89562 5 0032127 \N 89563 5 0016533 \N 89564 3 15689152 \N 89565 5 0071010 \N 89566 5 0070017 \N 89567 3 2478219 \N 89568 5 0005683 \N 89569 3 12872004 \N 89570 5 0070743 \N 89571 3 11114383 \N 89572 5 0005840 \N 89573 5 0033279 \N 89574 5 0043594 \N 89575 5 0031430 \N 89576 5 0032152 \N 89577 5 0033647 \N 89578 5 0044094 \N 89579 5 0045172 \N 89580 3 9655801 \N 89581 5 0042648 \N 89582 5 0043678 \N 89583 5 0044191 \N 89584 5 0048786 \N 89585 5 0042603 \N 89586 5 0030113 \N 89587 5 0042604 \N 89588 5 0043659 \N 89589 5 0000417 \N 89590 3 16303565 \N 89591 3 17180700 \N 89592 5 0031387 \N 89593 3 12045216 \N 89594 5 0070865 \N 89595 3 15829565 \N 89596 5 0031316 \N 89597 5 0005780 \N 89598 5 0055028 \N 89599 5 0043663 \N 89600 5 0010009 \N 89601 5 0044204 \N 89602 5 0060076 \N 89603 5 0030658 \N 89604 5 0030686 \N 89605 3 12150911 \N 89606 5 0031462 \N 89607 5 0005831 \N 89608 3 7493981 \N 89609 5 0031083 \N 89610 5 0071147 \N 89611 150 2870 \N 89612 5 0033016 \N 89613 5 0005751 \N 89614 5 0005752 \N 89615 5 0010367 \N 89616 5 0032039 \N 89617 3 16239144 \N 89618 5 0071087 \N 89619 3 10464311 \N 89620 5 0034451 \N 89621 3 10579718 \N 89622 3 12403812 \N 89623 5 0070176 \N 89624 3 17075059 \N 89625 5 0000153 \N 89626 5 0008024 \N 89627 3 10766736 \N 89628 3 7759473 \N 89629 5 0045260 \N 89630 5 0045256 \N 89631 5 0043668 \N 89632 5 0044170 \N 89633 5 0020030 \N 89634 5 0019013 \N 89635 5 0019014 \N 89636 5 0016009 \N 89637 5 0017090 \N 89638 144 M12 \N 89639 5 0032153 \N 89640 3 15380095 \N 89641 5 0016605 \N 89642 3 10944585 \N 89643 5 0034693 \N 89644 3 15146077 \N 89645 5 0034425 \N 89646 5 0005610 \N 89647 5 0008287 \N 89648 5 0071196 \N 89649 5 0009322 \N 89650 5 0005742 \N 89651 5 0009523 \N 89652 5 0043204 \N 89653 5 0042721 \N 89654 3 12191765 \N 89655 5 0034676 \N 89656 5 0033583 \N 89657 5 0031533 \N 89658 3 10347220 \N 89659 5 0071958 \N 89660 3 15132994 \N 89661 5 0019821 \N 89662 5 0060105 \N 89663 5 0005564 \N 89664 5 0034492 \N 89665 5 0031312 \N 89666 5 0005642 \N 89667 3 12631728 \N 89668 5 0034749 \N 89669 5 0030077 \N 89670 5 0070762 \N 89671 3 19414609 \N 89672 5 0002096 \N 89673 3 14724296 \N 89674 3 16495340 \N 89675 5 0005606 \N 89676 5 0033172 \N 89677 5 0014804 \N 89678 5 0043510 \N 89679 5 0048182 \N 89680 5 0005651 \N 89681 5 0034270 \N 89682 5 0071942 \N 89683 3 11279143 \N 89684 3 15964821 \N 89685 3 19941824 \N 89686 5 0045242 \N 89687 5 0071124 \N 89688 3 15592458 \N 89689 5 0044230 \N 89690 5 0031680 \N 89691 5 0031092 \N 89692 5 0030386 \N 89693 5 0034705 \N 89694 5 0044435 \N 89695 5 0070018 \N 89696 5 0070418 \N 89697 5 0085042 \N 89698 5 0043235 \N 89699 5 0097078 \N 89700 3 21576267 \N 89701 5 0072516 \N 89702 5 0031084 \N 89703 3 12548288 \N 89704 3 14718540 \N 89705 3 15031569 \N 89706 5 0000941 \N 89707 5 0097142 \N 89708 5 0009340 \N 89709 3 7783632 \N 89710 5 0005819 \N 89711 5 0009580 \N 89712 5 0043291 \N 89713 3 11283612 \N 89714 3 11844802 \N 89715 5 0031910 \N 89716 5 0000928 \N 89717 5 0031416 \N 89718 5 0000807 \N 89719 5 0001724 \N 89720 5 0009335 \N 89721 5 0034400 \N 89722 3 12654863 \N 89723 3 16151876 \N 89724 5 0071083 \N 89725 3 10037797 \N 89726 5 0000791 \N 89727 5 0034708 \N 89728 5 0016590 \N 89729 3 12192034 \N 89730 5 0042563 \N 89731 5 0030929 \N 89732 3 9680965 \N 89733 5 0009930 \N 89734 5 0031414 \N 89735 5 0031207 \N 89736 5 0000933 \N 89737 5 0048493 \N 89738 5 0043332 \N 89739 5 0005760 \N 89740 5 0070047 \N 89741 5 0009571 \N 89742 5 0000796 \N 89743 5 0005676 \N 89744 5 0008620 \N 89745 5 0009840 \N 89746 5 0002140 \N 89747 3 1108787 \N 89748 5 0009521 \N 89749 5 0030090 \N 89750 5 0034740 \N 89751 3 9660958 \N 89752 5 0010006 \N 89753 3 10646606 \N 89754 5 0031606 \N 89755 5 0032167 \N 89756 5 0034449 \N 89757 5 0005804 \N 89758 5 0031378 \N 89759 5 0043198 \N 89760 5 0044226 \N 89761 5 0070386 \N 89762 5 0042584 \N 89763 5 0035000 \N 89764 5 0032059 \N 89765 5 0030530 \N 89766 5 0005573 \N 89767 5 0044292 \N 89768 5 0042765 \N 89769 3 12802054 \N 89770 5 0071002 \N 89771 5 0000802 \N 89772 5 0031234 \N 89773 5 0005847 \N 89774 3 14749727 \N 89775 5 0071986 \N 89776 3 19177150 \N 89777 3 20381137 \N 89778 5 0000231 \N 89779 5 0070860 \N 89780 3 8702872 \N 89781 5 0046809 \N 89782 3 9499108 \N 89783 5 0012511 \N 89784 5 0009520 \N 89785 5 0034993 \N 89786 5 0031483 \N 89787 5 0044296 \N 89788 146 sao1340260079 \N 89789 5 0030142 \N 89790 5 0071762 \N 89791 3 12543123 \N 89792 3 16051357 \N 89793 5 0031011 \N 89794 5 0045270 \N 89795 5 0005918 \N 89796 5 0005603 \N 89797 5 0097134 \N 89798 114 000026745 \N 89799 5 0005853 \N 89800 3 10216950 \N 89801 5 0020039 \N 89802 5 0070390 \N 89803 3 17786152 \N 89804 5 0005660 \N 89805 5 0097124 \N 89806 5 0031357 \N 89807 5 0071203 \N 89808 3 19922875 \N 89809 5 0031515 \N 89810 3 10779558 \N 89811 5 0045277 \N 89812 5 0045287 \N 89813 5 0035692 \N 89814 3 17045821 \N 89815 5 0000438 \N 89816 5 0017054 \N 89817 3 15574413 \N 89818 5 0070969 \N 89819 3 19211835 \N 89820 3 19258318 \N 89821 3 19597335 \N 89822 5 0031967 \N 89823 5 0005710 \N 89824 5 0031633 \N 89825 5 0000418 \N 89826 5 0000420 \N 89827 3 15692015 \N 89828 3 15766525 \N 89829 5 0044456 \N 89830 5 0016222 \N 89831 5 0071185 \N 89832 5 0001686 \N 89833 5 0043701 \N 89834 5 0033193 \N 89835 3 17371846 \N 89836 3 17434129 \N 89837 3 17440621 \N 89838 5 0070116 \N 89839 5 0030087 \N 89840 5 0043195 \N 89841 5 0031039 \N 89842 5 0097059 \N 89843 3 11285233 \N 89844 5 0030668 \N 89845 5 0043260 \N 89846 5 0070311 \N 89847 3 14729568 \N 89848 5 0034992 \N 89849 5 0005957 \N 89850 5 0031465 \N 89851 5 0005907 \N 89852 5 0016585 \N 89853 5 0005679 \N 89854 5 0000818 \N 89855 5 0005735 \N 89856 5 0042718 \N 89857 94 //148.216.10.83/cellbio/eggs.htm \N 89858 5 0045250 \N 89859 5 0044317 \N 89860 5 0035632 \N 89861 3 12237468 \N 89862 3 21164222 \N 89863 5 0032281 \N 89864 5 0048353 \N 89865 5 0060417 \N 89866 5 0042568 \N 89867 5 0031476 \N 89868 5 0032158 \N 89869 5 0070821 \N 89870 5 0042405 \N 89871 5 0097128 \N 89872 114 000026740 \N 89873 5 0032302 \N 89874 5 0043769 \N 89875 3 15353591 \N 89876 5 0044310 \N 89877 3 18086189 \N 89878 5 0005584 \N 89879 5 0019867 \N 89880 5 0071117 \N 89881 5 0070876 \N 89882 3 19683501 \N 89883 5 0005689 \N 89884 3 11574683 \N 89885 3 11971955 \N 89886 5 0070313 \N 89887 3 14734556 \N 89888 5 0000811 \N 89889 3 12730134 \N 89890 3 17467990 \N 89891 5 0001669 \N 89892 5 0034360 \N 89893 5 0009375 \N 89894 5 0030932 \N 89895 5 0005619 \N 89896 5 0031676 \N 89897 5 0071261 \N 89898 3 12134063 \N 89899 5 0005756 \N 89900 5 0009345 \N 89901 3 15733854 \N 89902 5 0009325 \N 89903 5 0030112 \N 89904 5 0005944 \N 89905 5 0035031 \N 89906 5 0020006 \N 89907 3 3528173 \N 89908 5 0005815 \N 89909 3 17245416 \N 89910 5 0005672 \N 89911 3 17560669 \N 89912 5 0034519 \N 89913 3 16405910 \N 89914 5 0071808 \N 89915 3 20108326 \N 89916 5 0034083 \N 89917 5 0005808 \N 89918 5 0043186 \N 89919 5 0018994 \N 89920 3 11262230 \N 89921 5 0035796 \N 89922 3 18931129 \N 89923 3 20972419 \N 89924 3 21135102 \N 89925 5 0071737 \N 89926 5 0000233 \N 89927 5 0071021 \N 89928 5 0032171 \N 89929 5 0071439 \N 89930 3 16493411 \N 89931 5 0009543 \N 89932 86 006501037 \N 89933 5 0048555 \N 89934 5 0022626 \N 89935 5 0005830 \N 89936 5 0009281 \N 89937 5 0030871 \N 89938 5 0016465 \N 89939 5 0030288 \N 89940 5 0033179 \N 89941 5 0045249 \N 89942 5 0008385 \N 89943 5 0000172 \N 89944 3 14729943 \N 89945 3 7510714 \N 89946 5 0000786 \N 89947 5 0005718 \N 89948 5 0005697 \N 89949 5 0044455 \N 89950 5 0005648 \N 89951 5 0071059 \N 89952 5 0043205 \N 89953 5 0043223 \N 89954 5 0070437 \N 89955 5 0048476 \N 89956 3 11207366 \N 89957 3 12374758 \N 89958 5 0033011 \N 89959 3 17289678 \N 89960 3 8025156 \N 89961 5 0033096 \N 89962 5 0005730 \N 89963 5 0046860 \N 89964 5 0070369 \N 89965 3 9065401 \N 89966 3 9065402 \N 89967 5 0005794 \N 89968 5 0031074 \N 89969 5 0000123 \N 89970 5 0044216 \N 89971 5 0060109 \N 89972 5 0045264 \N 89973 5 0071009 \N 89974 5 0071013 \N 89975 5 0033257 \N 89976 5 0000836 \N 89977 5 0044289 \N 89978 146 sao447856407 \N 89979 5 0071017 \N 89980 5 0060102 \N 89981 5 0032432 \N 89982 5 0000141 \N 89983 5 0030482 \N 89984 5 0019017 \N 89985 5 0043509 \N 89986 5 0048181 \N 89987 5 0070766 \N 89988 3 8973549 \N 89989 5 0031240 \N 89990 5 0044163 \N 89991 5 0031226 \N 89992 5 0005655 \N 89993 5 0030993 \N 89994 5 0071152 \N 89995 5 0031595 \N 89996 5 0048269 \N 89997 5 0043698 \N 89998 5 0012505 \N 89999 4 lh \N 90000 5 0030129 \N 90001 5 0032046 \N 90002 3 15563611 \N 90003 5 0008004 \N 90004 5 0003675 \N 90005 5 0043527 \N 90006 5 0020020 \N 90007 5 0005772 \N 90008 5 0045323 \N 90009 112 IPR004075 \N 90010 5 0031350 \N 90011 5 0030126 \N 90012 5 0017167 \N 90013 5 0044424 \N 90014 5 0031303 \N 90015 5 0002177 \N 90016 3 15018141 \N 90017 5 0000922 \N 90018 5 0030615 \N 90019 5 0009923 \N 90020 5 0000778 \N 90021 5 0008051 \N 90022 5 0042612 \N 90023 5 0010330 \N 90024 3 12514238 \N 90025 5 0070031 \N 90026 5 0000326 \N 90027 3 11739409 \N 90028 5 0071957 \N 90029 5 0035230 \N 90030 5 0033276 \N 90031 3 10373431 \N 90032 3 9603525 \N 90033 5 0070187 \N 90034 4 expert_mf \N 90035 3 18828880 \N 90036 5 0005622 \N 90037 5 0033114 \N 90038 5 0031901 \N 90039 5 0000108 \N 90040 3 10681587 \N 90041 3 9852079 \N 90042 5 0044305 \N 90043 146 sao1684283879 \N 90044 3 11823805 \N 90045 5 0031510 \N 90046 3 15601841 \N 90047 5 0005870 \N 90048 3 18221362 \N 90049 3 18544499 \N 90050 5 0031372 \N 90051 3 15772086 \N 90052 5 0005882 \N 90053 94 //www.cytochemistry.net/Cell-biology/intermediate_filaments.htm \N 90054 5 0016282 \N 90055 5 0055035 \N 90056 5 0071682 \N 90057 5 0031942 \N 90058 3 16247555 \N 90059 3 16267274 \N 90060 5 0005625 \N 90061 5 0071175 \N 90062 5 0009354 \N 90063 5 0071065 \N 90064 3 10209034 \N 90065 5 0009532 \N 90066 86 047142520 \N 90067 5 0005755 \N 90068 5 0072324 \N 90069 5 0030670 \N 90070 5 0035454 \N 90071 5 0008247 \N 90072 3 10542206 \N 90073 5 0005669 \N 90074 86 0471953393 \N 90075 86 0879695501 \N 90076 5 0005973 \N 90077 5 0008006 \N 90078 5 0032994 \N 90079 5 0070719 \N 90080 5 0005776 \N 90081 5 0031500 \N 90082 5 0017109 \N 90083 5 0031259 \N 90084 5 0044187 \N 90085 5 0005964 \N 90086 5 0009424 \N 90087 5 0043564 \N 90088 3 12518983 \N 90089 5 0071751 \N 90090 5 0070519 \N 90091 5 0019815 \N 90092 5 0042570 \N 90093 5 0005703 \N 90094 5 0018995 \N 90095 5 0009576 \N 90096 5 0016472 \N 90097 5 0071561 \N 90098 5 0031988 \N 90099 5 0031985 \N 90100 5 0005827 \N 90101 5 0031165 \N 90102 5 0032010 \N 90103 5 0097123 \N 90104 5 0035748 \N 90105 5 0070938 \N 90106 86 0123645859 \N 90107 86 0792354923 \N 90108 3 10791428 \N 90109 3 17913889 \N 90110 5 0060203 \N 90111 5 0030137 \N 90112 5 0009705 \N 90113 5 0017086 \N 90114 5 0031212 \N 90115 5 0044432 \N 90116 5 0005942 \N 90117 5 0005764 \N 90118 5 0030904 \N 90119 5 0005723 \N 90120 5 0071053 \N 90121 5 0071197 \N 90122 5 0019037 \N 90123 5 0035619 \N 90124 102 0000029 \N 90125 5 0071819 \N 90126 3 19226466 \N 90127 3 20395473 \N 90128 5 0043263 \N 90129 3 11601609 \N 90130 5 0043187 \N 90131 5 0000795 \N 90132 5 0005716 \N 90133 5 0009548 \N 90134 5 0031526 \N 90135 5 0031431 \N 90136 3 12045100 \N 90137 5 0033281 \N 90138 5 0034716 \N 90139 5 0031932 \N 90140 3 14736892 \N 90141 5 0005691 \N 90142 5 0043514 \N 90143 3 12948519 \N 90144 3 1381512 \N 90145 5 0005781 \N 90146 5 0071092 \N 90147 5 0043845 \N 90148 136 01721 \N 90149 3 16973612 \N 90150 104 Pol_III \N 90151 5 0000139 \N 90152 5 0005600 \N 90153 5 0005824 \N 90154 5 0019910 \N 90155 5 0043658 \N 90156 5 0030479 \N 90157 5 0005857 \N 90158 5 0005568 \N 90159 5 0001673 \N 90160 5 0043081 \N 90161 91 0000015 \N 90162 5 0043598 \N 90163 5 0005890 \N 90164 5 0030692 \N 90165 5 0031088 \N 90166 5 0016516 \N 90167 3 10358772 \N 90168 5 0002185 \N 90169 5 0032126 \N 90170 3 16496001 \N 90171 5 0002116 \N 90172 3 10934324 \N 90173 3 12367632 \N 90174 3 12613544 \N 90175 5 0045121 \N 90176 5 0044354 \N 90177 5 0090406 \N 90178 5 0009318 \N 90179 5 0033503 \N 90180 3 17363370 \N 90181 3 17374714 \N 90182 5 0005598 \N 90183 5 0030088 \N 90184 5 0070211 \N 90185 5 0070020 \N 90186 121 REACT_7218 \N 90187 5 0000145 \N 90188 5 0033099 \N 90189 94 //authors.library.caltech.edu/3529/ \N 90190 3 11325545 \N 90191 3 12003948 \N 90192 5 0070826 \N 90193 3 11842004 \N 90194 3 8639593 \N 90195 5 0033698 \N 90196 5 0000508 \N 90197 5 0070604 \N 90198 3 8895581 \N 90199 5 0032797 \N 90200 3 16434402 \N 90201 3 17023415 \N 90202 5 0009289 \N 90203 5 0071113 \N 90204 3 12477717 \N 90205 5 0044200 \N 90206 5 0008282 \N 90207 3 16308567 \N 90208 3 16956886 \N 90209 5 0071143 \N 90210 5 0033063 \N 90211 5 0000151 \N 90212 3 9529603 \N 90213 5 0005835 \N 90214 5 0031373 \N 90215 5 0031374 \N 90216 5 0034667 \N 90217 5 0008623 \N 90218 5 0016588 \N 90219 3 9252192 \N 90220 5 0019028 \N 90221 5 0046728 \N 90222 5 0020010 \N 90223 4 expert_dr \N 90224 5 0071200 \N 90225 5 0042580 \N 90226 3 11912051 \N 90227 3 9799531 \N 90228 5 0009506 \N 90229 5 0043671 \N 90230 5 0030095 \N 90231 5 0005863 \N 90232 5 0071141 \N 90233 5 0071746 \N 90234 5 0031972 \N 90235 5 0031487 \N 90236 5 0000308 \N 90237 5 0042645 \N 90238 5 0009538 \N 90239 5 0043078 \N 90240 5 0042651 \N 90241 5 0061176 \N 90242 5 0045274 \N 90243 5 0044442 \N 90244 5 0034363 \N 90245 5 0005577 \N 90246 5 0033652 \N 90247 5 0031019 \N 90248 5 0070985 \N 90249 3 19818408 \N 90250 5 0019029 \N 90251 5 0005893 \N 90252 3 3116143 \N 90253 3 8266078 \N 90254 5 0045298 \N 90255 5 0080085 \N 90256 3 17513500 \N 90257 5 0045254 \N 90258 5 0009364 \N 90259 5 0031615 \N 90260 5 0043230 \N 90261 3 9914479 \N 90262 5 0031501 \N 90263 5 0033596 \N 90264 3 10585443 \N 90265 3 17121544 \N 90266 3 9580671 \N 90267 5 0070066 \N 90268 5 0002080 \N 90269 5 0030134 \N 90270 5 0030138 \N 90271 5 0071189 \N 90272 5 0009526 \N 90273 5 0030427 \N 90274 5 0000134 \N 90275 5 0030483 \N 90276 5 0010169 \N 90277 3 10682349 \N 90278 5 0044223 \N 90279 3 19133117 \N 90280 5 0000327 \N 90281 3 11739490 \N 90282 5 0031966 \N 90283 5 0042807 \N 90284 94 //www.wikipedia.org/Vacuole \N 90285 86 9780815341116 \N 90286 5 0045009 \N 90287 3 8970154 \N 90288 5 0005875 \N 90289 5 0033675 \N 90290 3 15763347 \N 90291 3 9790571 \N 90292 5 0030690 \N 90293 5 0035974 \N 90294 3 21775631 \N 90295 5 0005592 \N 90296 5 0001917 \N 90297 3 12019563 \N 90298 5 0031519 \N 90299 3 9372908 \N 90300 5 0035841 \N 90301 3 19431238 \N 90302 5 0030083 \N 90303 5 0001535 \N 90304 5 0032999 \N 90305 3 12524384 \N 90306 5 0070993 \N 90307 5 0005914 \N 90308 5 0000300 \N 90309 5 0071006 \N 90310 5 0097074 \N 90311 121 REACT_21965 \N 90312 5 0030897 \N 90313 3 10944212 \N 90314 5 0034684 \N 90315 5 0071127 \N 90316 5 0035649 \N 90317 3 10655211 \N 90318 3 16427013 \N 90319 3 21084293 \N 90320 5 0035770 \N 90321 3 16520386 \N 90322 3 21436445 \N 90323 5 0035517 \N 90324 5 0008230 \N 90325 3 14592980 \N 90326 5 0035842 \N 90327 5 0071761 \N 90328 5 0005936 \N 90329 5 0031899 \N 90330 5 0070687 \N 90331 5 0016442 \N 90332 3 10749213 \N 90333 3 15145345 \N 90334 5 0071055 \N 90335 5 0030914 \N 90336 3 11564863 \N 90337 5 0034744 \N 90338 5 0044427 \N 90339 5 0002193 \N 90340 150 2949 \N 90341 3 16510869 \N 90342 5 0043296 \N 90343 3 12525486 \N 90344 5 0044159 \N 90345 5 0031906 \N 90346 5 0070450 \N 90347 5 0071741 \N 90348 5 0043294 \N 90349 5 0034422 \N 90350 5 0044449 \N 90351 5 0044155 \N 90352 5 0005637 \N 90353 5 0032163 \N 90354 5 0005803 \N 90355 5 0031563 \N 90356 5 0009353 \N 90357 5 0033165 \N 90358 94 //www.glycoforum.gr.jp/science/hyaluronan/HA17/HA17E.html \N 90359 3 1862095 \N 90360 3 2194288 \N 90361 5 0030424 \N 90362 5 0031602 \N 90363 5 0030054 \N 90364 5 0005908 \N 90365 5 0034469 \N 90366 5 0019897 \N 90367 5 0000157 \N 90368 5 0000346 \N 90369 5 0000311 \N 90370 5 0071685 \N 90371 92 10.1078/0176-1617-00593 \N 90372 5 0031230 \N 90373 5 0032579 \N 90374 3 2060714 \N 90375 3 7608987 \N 90376 3 9638331 \N 90377 5 0042717 \N 90378 5 0061201 \N 90379 5 0001400 \N 90380 5 0048471 \N 90381 5 0001527 \N 90382 94 //www.xrefer.com/entry/490235 \N 90383 5 0042995 \N 90384 5 0005581 \N 90385 5 0000782 \N 90386 5 0032173 \N 90387 5 0009348 \N 90388 5 0031097 \N 90389 3 15572668 \N 90390 5 0034777 \N 90391 5 0042151 \N 90392 92 10.1139/z02-135 \N 90393 5 0005838 \N 90394 5 0035097 \N 90395 5 0071022 \N 90396 5 0034430 \N 90397 5 0060103 \N 90398 5 0031977 \N 90399 5 0071738 \N 90400 5 0009514 \N 90401 5 0070721 \N 90402 3 8943351 \N 90403 5 0000789 \N 90404 5 0046798 \N 90405 3 11602732 \N 90406 5 0005708 \N 90407 5 0045246 \N 90408 5 0033175 \N 90409 5 0085036 \N 90410 5 0016461 \N 90411 5 0005860 \N 90412 5 0055044 \N 90413 5 0005747 \N 90414 5 0005748 \N 90415 5 0034466 \N 90416 5 0033557 \N 90417 3 16467377 \N 90418 5 0031598 \N 90419 5 0000839 \N 90420 5 0030531 \N 90421 5 0072558 \N 90422 5 0030662 \N 90423 5 0030256 \N 90424 5 0044452 \N 90425 5 0002141 \N 90426 3 17567809 \N 90427 5 0005953 \N 90428 3 9781874 \N 90429 5 0009550 \N 90430 5 0031469 \N 90431 3 10498708 \N 90432 3 12923081 \N 90433 5 0005739 \N 90434 5 0070461 \N 90435 5 0070112 \N 90436 5 0005763 \N 90437 5 0031472 \N 90438 5 0005929 \N 90439 5 0009277 \N 90440 86 3540601864 \N 90441 3 11283274 \N 90442 3 16927300 \N 90443 3 3319422 \N 90444 5 0070732 \N 90445 3 19417004 \N 90446 3 6428889 \N 90447 5 0070822 \N 90448 3 15565322 \N 90449 3 18292778 \N 90450 5 0005919 \N 90451 5 0031672 \N 90452 5 0000443 \N 90453 5 0010316 \N 90454 5 0097013 \N 90455 5 0030061 \N 90456 5 0043034 \N 90457 3 6405378 \N 90458 5 0005658 \N 90459 5 0048226 \N 90460 5 0044084 \N 90461 5 0034507 \N 90462 5 0048237 \N 90463 5 0030027 \N 90464 5 0070691 \N 90465 5 0032477 \N 90466 5 0042649 \N 90467 3 11532175 \N 90468 5 0045203 \N 90469 5 0005920 \N 90470 5 0048224 \N 90471 3 14503002 \N 90472 3 16662709 \N 90473 5 0045281 \N 90474 5 0005685 \N 90475 5 0005949 \N 90476 5 0031527 \N 90477 5 0032133 \N 90478 3 16824200 \N 90479 3 19570910 \N 90480 5 0000275 \N 90481 5 0010278 \N 90482 3 11299338 \N 90483 5 0009427 \N 90484 5 0032590 \N 90485 5 0030998 \N 90486 5 0016020 \N 90487 5 0035450 \N 90488 5 0031514 \N 90489 5 0034704 \N 90490 5 0000345 \N 90491 3 11158566 \N 90492 5 0035061 \N 90493 5 0005665 \N 90494 5 0009280 \N 90495 5 0030863 \N 90496 5 0070422 \N 90497 3 7782277 \N 90498 5 0001940 \N 90499 5 0000502 \N 90500 5 0043494 \N 90501 3 16127433 \N 90502 3 20211136 \N 90503 5 0009295 \N 90504 86 3540076689 \N 90505 5 0071565 \N 90506 5 0005715 \N 90507 5 0019813 \N 90508 5 0009420 \N 90509 5 0072495 \N 90510 5 0005879 \N 90511 5 0034732 \N 90512 5 0019819 \N 90513 5 0044301 \N 90514 146 nlx_subcell_20090203 \N 90515 5 0016010 \N 90516 5 0042589 \N 90517 5 0005692 \N 90518 5 0035868 \N 90519 3 20826760 \N 90520 5 0070464 \N 90521 5 0070117 \N 90522 5 0005726 \N 90523 3 14731598 \N 90524 5 0005933 \N 90525 5 0071627 \N 90526 5 0000222 \N 90527 5 0009321 \N 90528 141 1.11.1.15 \N 90529 3 2649484 \N 90530 5 0031255 \N 90531 5 0070620 \N 90532 5 0033202 \N 90533 5 0045334 \N 90534 5 0033110 \N 90535 5 0018998 \N 90536 5 0051286 \N 90537 5 0070442 \N 90538 5 0005923 \N 90539 5 0071137 \N 90540 3 18032696 \N 90541 5 0000126 \N 90542 5 0045097 \N 90543 5 0070514 \N 90544 3 8617811 \N 90545 5 0071752 \N 90546 5 0070264 \N 90547 3 19116144 \N 90548 5 0034245 \N 90549 3 7929382 \N 90550 5 0008091 \N 90551 5 0072588 \N 90552 5 0042571 \N 90553 5 0045267 \N 90554 5 0031354 \N 90555 5 0042106 \N 90556 5 0032279 \N 90557 5 0034361 \N 90558 5 0035369 \N 90559 3 16464608 \N 90560 3 17306522 \N 90561 5 0042650 \N 90562 5 0044439 \N 90563 5 0009276 \N 90564 5 0055126 \N 90565 5 0035859 \N 90566 5 0070559 \N 90567 3 8910459 \N 90568 5 0000407 \N 90569 3 11689437 \N 90570 3 12048214 \N 90571 3 12554655 \N 90572 5 0001931 \N 90573 5 0070533 \N 90574 3 15485915 \N 90575 5 0035453 \N 90576 5 0043232 \N 90577 5 0035550 \N 90578 112 IPR008221 \N 90579 3 2651866 \N 90580 5 0031599 \N 90581 5 0009330 \N 90582 5 0070355 \N 90583 5 0046540 \N 90584 3 11867543 \N 90585 5 0031381 \N 90586 3 15574411 \N 90587 3 15613301 \N 90588 5 0009358 \N 90589 5 0045239 \N 90590 5 0044167 \N 90591 5 0070701 \N 90592 5 0000798 \N 90593 5 0005589 \N 90594 5 0071060 \N 90595 5 0035839 \N 90596 5 0000118 \N 90597 5 0000935 \N 90598 5 0008008 \N 90599 5 0030123 \N 90600 5 0045202 \N 90601 5 0044462 \N 90602 5 0016611 \N 90603 3 11848850 \N 90604 5 0030937 \N 90605 5 0034385 \N 90606 5 0019773 \N 90607 5 0000148 \N 90608 5 0071093 \N 90609 5 0034688 \N 90610 5 0016602 \N 90611 3 7828851 \N 90612 5 0032587 \N 90613 5 0010008 \N 90614 5 0072492 \N 90615 5 0070056 \N 90616 5 0034665 \N 90617 5 0019033 \N 90618 5 0044420 \N 90619 5 0020002 \N 90620 5 0031243 \N 90621 5 0031307 \N 90622 5 0008003 \N 90623 5 0046816 \N 90624 3 7933124 \N 90625 5 0031522 \N 90626 3 15223057 \N 90627 5 0012509 \N 90628 5 0034358 \N 90629 5 0001750 \N 90630 5 0044285 \N 90631 146 sao1858501007 \N 91198 102 0009046 \N 91199 102 0004541 \N 91200 169 curators \N 91201 102 0025308 \N 91202 102 0000274 \N 91203 102 0006329 \N 91204 102 0025091 \N 91205 169 rw \N 91206 102 0009037 \N 91207 170 Glossary \N 91208 171 pj \N 91209 102 0006013 \N 91210 172 http \N 91211 102 0030050 \N 91212 86 376821110 \N 91213 102 0000039 \N 91214 102 0000431 \N 91215 102 0020037 \N 91216 86 0471244554 \N 91217 102 0025321 \N 91218 102 0006043 \N 91219 102 0025198 \N 91220 102 0030023 \N 91221 86 0962073342 \N 91222 86 9780473067304 \N 91223 102 0025013 \N 91224 102 0002004 \N 91225 171 cwt6 \N 91226 102 0030065 \N 91227 102 0009034 \N 91228 102 0000225 \N 91229 86 0521288959 \N 91230 173 lr \N 91231 102 0006369 \N 91232 102 0020064 \N 91233 102 0030009 \N 91234 102 0009056 \N 91235 86 047124529 \N 91236 102 0005016 \N 91237 3 13678595 \N 91238 3 15035986 \N 91239 102 0025117 \N 91240 174 0000005 "anatomical space" \N 91241 102 0020022 \N 91242 102 0006494 \N 91243 102 0006371 \N 91244 102 0025299 \N 91245 102 0009020 \N 91246 3 12221985 \N 91247 102 0025169 \N 91248 102 0025110 \N 91249 102 0025069 \N 91250 102 0006508 \N 91251 102 0025239 \N 91252 102 0004012 \N 91253 173 ki \N 91254 102 0000048 \N 91255 102 0005003 \N 91256 3 17217456 \N 91257 102 0003017 \N 91258 102 0020021 1 \N 91259 102 0025135 \N 91260 175 curators \N 91261 102 0000005 \N 91262 169 Curators \N 91263 102 0030080 \N 91264 102 0006310 \N 91265 102 0025174 \N 91266 107 0002258 "pointed" \N 91267 102 0030004 \N 91268 102 0006496 \N 91269 102 0020081 \N 91270 176 curators \N 91271 102 0006327 \N 91272 102 0005702 1 \N 91273 86 0080374913 \N 91274 102 0008031 \N 91275 171 cwt \N 91276 102 0004535 \N 91277 102 0020018 \N 91278 102 0008048 \N 91279 102 0025035 \N 91280 102 0006468 \N 91281 102 0000351 \N 91282 102 0020085 \N 91283 102 0025078 \N 91284 86 0-7167-1007-2 \N 91285 102 0005020 \N 91286 102 0006305 \N 91287 102 0005621 \N 91288 102 0025302 \N 91289 102 0006443 \N 91290 102 0025048 \N 91291 102 0025313 \N 91292 86 9780003686647 \N 91293 86 9780070588493 \N 91294 102 0004509 \N 91295 102 0030063 \N 91296 102 0005027 \N 91297 3 15053756 \N 91298 102 0009065 \N 91299 86 0521251346 \N 91300 102 0020109 \N 91301 102 0008035 \N 91302 86 0471245208 "Anatomy of seed plants by K.Esau 2nd Edition" \N 91303 102 0025156 \N 91304 102 0025005 \N 91305 102 0006487 \N 91306 102 0030042 \N 91307 102 0020053 \N 91308 102 0025127 \N 91309 102 0006413 \N 91310 102 0030038 \N 91311 102 0000052 \N 91312 102 0006219 \N 91313 102 0003022 \N 91314 102 0000015 \N 91315 102 0006407 \N 91316 102 0004715 \N 91317 102 0006336 \N 91318 102 0006050 \N 91319 102 0020147 \N 91320 177 fz \N 91321 102 0000301 \N 91322 102 0004001 \N 91323 102 0004514 \N 91324 102 0020004 \N 91325 102 0006059 \N 91326 102 0005047 \N 91327 102 0006352 \N 91328 102 0006383 \N 91329 102 0009015 \N 91330 102 0000256 1 \N 91331 102 0030016 \N 91332 102 0030073 \N 91333 102 0025276 \N 91334 102 0006473 \N 91335 102 0009041 \N 91336 177 tk \N 91337 102 0006377 \N 91338 102 0025053 \N 91339 95 0003-0589 "Reeve et al. 1969" \N 91340 102 0004704 \N 91341 102 0006432 \N 91342 102 0006423 \N 91343 102 0000295 \N 91344 102 0000080 \N 91345 102 0025130 \N 91346 102 0009066 \N 91347 102 0006381 \N 91348 102 0009105 \N 91349 178 lv \N 91350 102 0004542 \N 91351 102 0008005 \N 91352 171 ap \N 91353 102 0005352 \N 91354 102 0030049 \N 91355 102 0006426 \N 91356 102 0000022 \N 91357 102 0003003 \N 91358 102 0004525 \N 91359 102 0025201 \N 91360 86 0716710072 \N 91361 102 0004547 \N 91362 102 0025153 \N 91363 102 0006036 \N 91364 102 0006037 \N 91365 102 0006060 \N 91366 102 0025230 \N 91367 102 0025170 \N 91368 102 0025066 \N 91369 102 0006212 \N 91370 86 0122151704 \N 91371 102 0006397 \N 91372 102 0025192 \N 91373 102 0006002 \N 91374 102 0006027 \N 91375 102 0006031 \N 91376 102 0025120 \N 91377 102 0006209 \N 91378 102 0020046 \N 91379 102 0025098 \N 91380 102 0000071 \N 91381 102 0009070 \N 91382 102 0000201 \N 91383 102 0006066 \N 91384 102 0009103 \N 91385 102 0005022 \N 91386 3 10332605 \N 91387 102 0006055 \N 91388 102 0008012 \N 91389 102 0000034 \N 91390 102 0025255 \N 91391 102 0009004 1 \N 91392 102 0025208 \N 91393 102 0020012 \N 91394 102 0006455 \N 91395 102 0025263 \N 91396 102 0006213 \N 91397 102 0020133 \N 91398 102 0009017 \N 91399 102 0005010 1 \N 91400 102 0006089 \N 91401 102 0025213 \N 91402 102 0020051 \N 91403 102 0006024 \N 91404 102 0000045 \N 91405 102 0025234 \N 91406 102 0020138 \N 91407 102 0020135 \N 91408 102 0003002 \N 91409 102 0003019 \N 91410 102 0025185 \N 91411 102 0000262 \N 91412 102 0006399 \N 91413 102 0020035 \N 91414 102 0025261 \N 91415 102 0030070 \N 91416 86 0029496608 \N 91417 102 0025258 \N 91418 102 0025021 \N 91419 102 0030067 \N 91420 86 9781405181891 \N 91421 102 0008046 \N 91422 102 0000353 \N 91423 102 0030045 \N 91424 102 0025318 \N 91425 102 0006325 \N 91426 102 0000050 \N 91427 102 0025115 \N 91428 102 0009078 \N 91429 102 0000258 \N 91430 102 0003010 \N 91431 86 047125208 \N 91432 102 0025224 \N 91433 102 0006009 \N 91434 3 2476454 \N 91435 102 0004538 \N 91436 86 1842460137 \N 91437 102 0000084 \N 91438 102 0020098 \N 91439 102 0003014 \N 91440 102 0006385 \N 91441 102 0006345 \N 91442 102 0006315 \N 91443 102 0006034 \N 91444 102 0008037 \N 91445 102 0025300 \N 91446 102 0020145 \N 91447 102 0020144 \N 91448 102 0005014 \N 91449 3 16543410 \N 91450 173 donghui \N 91451 102 0025015 \N 91452 102 0025028 \N 91453 102 0000191 \N 91454 102 0020062 \N 91455 102 0009010 1 \N 91456 102 0025246 \N 91457 102 0000146 \N 91458 102 0030082 \N 91459 102 0005423 \N 91460 102 0025147 \N 91461 102 0006019 \N 91462 102 0020014 \N 91463 102 0000373 \N 91464 102 0006466 \N 91465 102 0025055 \N 91466 102 0030057 \N 91467 102 0004531 \N 91468 102 0006354 \N 91469 102 0030014 \N 91470 102 0000007 \N 91471 102 0006057 \N 91472 102 0006421 \N 91473 102 0030022 \N 91474 102 0030075 \N 91475 102 0000040 \N 91476 102 0020131 \N 91477 86 0878938567 \N 91478 102 0000029 1 \N 91479 102 0004712 \N 91480 102 0009036 \N 91481 102 0006360 \N 91482 102 0006312 \N 91483 102 0005708 \N 91484 102 0006071 \N 91485 102 0025292 \N 91486 102 0000078 \N 91487 102 0000063 \N 91488 102 0006000 \N 91489 102 0009029 \N 91490 102 0030031 \N 91491 102 0006492 \N 91492 102 0025155 \N 91493 102 0009068 \N 91494 102 0006069 \N 91495 102 0025294 \N 91496 102 0025062 \N 91497 102 0000054 \N 91498 102 0020102 \N 91499 102 0006395 \N 91500 102 0020090 \N 91501 102 0025129 \N 91502 102 0006333 \N 91503 102 0006221 \N 91504 102 0025251 \N 91505 102 0009106 \N 91506 102 0025274 \N 91507 102 0020075 \N 91508 102 0006207 \N 91509 3 11709575 \N 91510 102 0008007 \N 91511 102 0005029 \N 91512 102 0006482 \N 91513 102 0000032 \N 91514 102 0006086 \N 91515 102 0006429 \N 91516 102 0025194 \N 91517 3 1809347 \N 91518 102 0025229 \N 91519 102 0006480 \N 91520 102 0004520 \N 91521 102 0025215 \N 91522 102 0025133 \N 91523 102 0025141 \N 91524 102 0005023 \N 91525 102 0004521 \N 91526 102 0009019 \N 91527 102 0009039 \N 91528 102 0006026 \N 91529 102 0025093 \N 91530 102 0006087 \N 91531 102 0009006 \N 91532 102 0009085 \N 91533 102 0006046 \N 91534 102 0006217 \N 91535 102 0008043 \N 91536 102 0004010 \N 91537 102 0000309 \N 91538 102 0025082 \N 91539 102 0025106 \N 91540 102 0006403 \N 91541 102 0006375 \N 91542 102 0025011 \N 91543 102 0025076 \N 91544 102 0009059 \N 91545 102 0006334 \N 91546 102 0009043 \N 91547 102 0025179 \N 91548 102 0020028 \N 91549 102 0025063 \N 91550 102 0008024 \N 91551 102 0004544 \N 91552 102 0009025 \N 91553 102 0000062 \N 91554 102 0004512 \N 91555 102 0025160 \N 91556 102 0006469 \N 91557 102 0025206 \N 91558 102 0025177 \N 91559 102 0020100 \N 91560 102 0006454 \N 91561 102 0006053 \N 91562 102 0025281 1 \N 91563 102 0006373 \N 91564 102 0030007 \N 91565 102 0006319 \N 91566 102 0009101 \N 91567 102 0020030 1 \N 91568 102 0025284 \N 91569 102 0006309 \N 91570 102 0008020 \N 91571 102 0005007 \N 91572 102 0008025 \N 91573 102 0003011 \N 91574 102 0005011 \N 91575 102 0000355 \N 91576 102 0006422 \N 91577 102 0006302 \N 91578 102 0006470 \N 91579 102 0006499 \N 91580 102 0025187 \N 91581 102 0004540 \N 91582 102 0004719 \N 91583 102 0025233 \N 91584 102 0030086 \N 91585 102 0009061 \N 91586 102 0006017 \N 91587 102 0019024 \N 91588 86 0080280293 \N 91589 102 0006090 \N 91590 102 0025286 \N 91591 102 0004518 \N 91592 102 0030001 \N 91593 102 0020140 \N 91594 102 0020006 \N 91595 102 0006440 \N 91596 102 0005661 \N 91597 102 0025102 \N 91598 102 0005018 \N 91599 102 0006040 \N 91600 102 0020066 \N 91601 102 0025303 \N 91602 102 0006081 \N 91603 102 0025109 \N 91604 102 0006392 \N 91605 102 0025220 \N 91606 102 0006479 \N 91607 102 0006504 \N 91608 102 0008029 \N 91609 102 0006366 \N 91610 102 0009009 \N 91611 102 0025039 \N 91612 102 0030036 \N 91613 102 0025017 \N 91614 102 0020093 \N 91615 102 0004522 \N 91616 102 0020060 \N 91617 102 0004513 \N 91618 102 0030084 \N 91619 102 0006051 \N 91620 102 0025046 \N 91621 102 0000004 \N 91622 102 0025296 \N 91623 102 0004539 \N 91624 102 0005752 \N 91625 102 0006005 \N 91626 3 14729915 \N 91627 102 0005848 \N 91628 86 0471245194 \N 91629 102 0020056 \N 91630 102 0020001 \N 91631 102 0008039 \N 91632 102 0000009 \N 91633 102 0006411 \N 91634 102 0006387 \N 91635 102 0025163 \N 91636 102 0030020 \N 91637 102 0009053 \N 91638 86 9781842464229 \N 91639 102 0030047 \N 91640 102 0025205 \N 91641 102 0000055 \N 91642 102 0025044 \N 91643 102 0005001 \N 91644 102 0025222 \N 91645 102 0025290 \N 91646 102 0005052 \N 91647 102 0008017 \N 91648 102 0009027 \N 91649 102 0005025 \N 91650 102 0025056 \N 91651 102 0006331 \N 91652 102 0025121 \N 91653 95 1040-2519 \N 91654 102 0020025 \N 91655 169 curaotrs \N 91656 102 0005598 \N 91657 102 0008010 \N 91658 102 0006451 \N 91659 102 0006032 \N 91660 102 0005427 \N 91661 102 0004702 \N 91662 102 0009062 \N 91663 102 0005059 \N 91664 102 0009108 \N 91665 102 0009031 \N 91666 102 0020099 \N 91667 102 0006484 \N 91668 102 0006490 \N 91669 102 0030055 \N 91670 102 0005772 \N 91671 102 0030029 \N 91672 102 0020038 \N 91673 102 0020043 \N 91674 102 0025001 \N 91675 102 0025131 \N 91676 174 0000000 "anatomical entity" \N 91677 102 0020026 \N 91678 102 0006008 \N 91679 102 0025149 \N 91680 102 0000011 \N 91681 102 0025033 \N 91682 86 962073342 \N 91683 102 0003000 \N 91684 179 IND23249552 \N 91685 94 //search.epnet.com/direct.asp?an=IND23249552&db=agr \N 91686 102 0006202 \N 91687 102 0000224 \N 91688 102 0006322 \N 91689 102 0025071 \N 91690 102 0020105 \N 91691 102 0004005 \N 91692 94 //academic.kellogg.edu/herbrandsonc/bio111/glossary/glossary.htm \N 91693 102 0025099 \N 91694 102 0025057 \N 91695 102 0025165 \N 91696 102 0005060 \N 91697 102 0009075 \N 91698 102 0000349 \N 91699 102 0004724 \N 91700 86 9780881928501 \N 91701 102 0025272 \N 91702 86 0387940898 \N 91703 102 0009080 \N 91704 102 0009089 \N 91705 102 0020094 \N 91706 102 0009083 \N 91707 102 0000026 \N 91708 102 0030013 \N 91709 3 19303301 \N 91710 102 0025267 \N 91711 102 0006012 \N 91712 102 0000081 \N 91713 102 0006472 \N 91714 102 0005043 \N 91715 102 0025142 \N 91716 102 0000060 \N 91717 102 0000232 \N 91718 102 0006401 \N 91719 102 0025095 \N 91720 102 0030056 \N 91721 102 0030074 \N 91722 86 8122407927 \N 91723 102 0006477 \N 91724 102 0006340 \N 91725 102 0030077 \N 91726 102 0004532 \N 91727 102 0020127 \N 91728 102 0020089 \N 91729 102 0006464 \N 91730 102 0000002 \N 91731 102 0009023 \N 91732 102 0006346 \N 91733 102 0004009 \N 91734 102 0003020 \N 91735 102 0025242 \N 91736 102 0025124 \N 91737 102 0006337 \N 91738 102 0025104 \N 91739 102 0030048 \N 91740 102 0002000 \N 91741 102 0030011 \N 91742 102 0008022 \N 91743 102 0009054 \N 91744 102 0019018 \N 91745 102 0006338 \N 91746 102 0006441 \N 91747 102 0006084 \N 91748 102 0006063 \N 91749 102 0006200 \N 91750 102 0008042 \N 91751 169 rw "PMID \N 91752 102 0000057 \N 91753 102 0006350 \N 91754 102 0025025 \N 91755 102 0004002 \N 91756 102 0006075 \N 91757 102 0004516 \N 91758 102 0006497 \N 91759 102 0020008 \N 91760 102 0025049 \N 91761 102 0008027 \N 91762 102 0000059 \N 91763 102 0000272 \N 91764 102 0009104 \N 91765 102 0006359 \N 91766 102 0025305 \N 91767 102 0025152 \N 91768 102 0025084 \N 91769 102 0006078 \N 91770 102 0006506 \N 91771 102 0005704 \N 91772 102 0025151 \N 91773 102 0006389 \N 91774 102 0020121 \N 91775 102 0000038 \N 91776 102 0025298 \N 91777 102 0000199 \N 91778 102 0006003 \N 91779 102 0006045 \N 91780 102 0025237 \N 91781 102 0030018 \N 91782 102 0008019 \N 91783 102 0000112 \N 91784 102 0006390 \N 91785 102 0004524 \N 91786 102 0004710 \N 91787 102 0005050 \N 91788 102 0025059 \N 91789 102 0025217 \N 91790 102 0030003 \N 91791 102 0025311 \N 91792 102 0025180 \N 91793 102 0025235 \N 91794 102 0025212 \N 91795 102 0009013 \N 91796 102 0025007 \N 91797 102 0020096 \N 91798 102 0000033 \N 91799 102 0006445 \N 91800 102 0025158 \N 91801 102 0019022 \N 91802 180 9780881928501 \N 91803 102 0030061 \N 91804 102 0030053 \N 91805 102 0006418 \N 91806 102 0009001 \N 91807 102 0020067 \N 91808 102 0020068 \N 91809 102 0020069 \N 91810 102 0020070 \N 91811 102 0020071 \N 91812 102 0020072 \N 91813 102 0020073 \N 91814 102 0020074 \N 91815 102 0020076 \N 91816 102 0020077 \N 91817 102 0020078 \N 91818 102 0020079 \N 91819 102 0020080 \N 91820 102 0020082 \N 91821 102 0020083 \N 91822 102 0020087 \N 91823 102 0020107 \N 91824 102 0025315 \N 91825 102 0020134 \N 91826 102 0025051 \N 91827 102 0006428 \N 91828 102 0006416 \N 91829 102 0009110 \N 91830 102 0020032 \N 91831 102 0006039 \N 91832 102 0006038 \N 91833 102 0025172 \N 91834 102 0006434 \N 91835 102 0004726 \N 91836 102 0009091 \N 91837 102 0000245 \N 91838 102 0000036 \N 91839 102 0005648 \N 91840 102 0000075 1 \N 91841 102 0006320 \N 91842 102 0009007 \N 91843 102 0020010 \N 91844 102 0006450 \N 91845 102 0000020 \N 91846 86 044174520 \N 91847 102 0006447 \N 91848 102 0025210 \N 91849 102 0000017 \N 91850 102 0009044 \N 91851 102 0009064 \N 91852 102 0004527 \N 91853 102 0020041 \N 91854 102 0020016 \N 91855 102 0020045 \N 91856 102 0004545 \N 91857 102 0006435 \N 91858 102 0005633 \N 91859 102 0006010 \N 91860 102 0004533 \N 91861 102 0025145 \N 91862 102 0005417 \N 91863 102 0006349 \N 91864 102 0005009 \N 91865 102 0030027 \N 91866 86 B0007J6EN6 \N 91867 102 0025254 \N 91868 102 0004722 \N 91869 102 0030069 \N 91870 102 0006379 \N 91871 102 0020123 \N 91872 102 0025178 \N 91873 102 0025249 \N 91874 102 0025248 \N 91875 102 0025228 \N 91876 102 0004706 \N 91877 102 0000024 \N 91878 102 0009021 \N 91879 102 0006342 \N 91880 102 0020054 \N 91881 102 0005057 \N 91882 102 0008009 \N 91883 102 0000006 \N 91884 102 0020141 \N 91885 102 0025085 \N 91886 102 0020036 \N 91887 102 0025167 \N 91888 102 0025203 \N 91889 102 0020125 \N 91890 102 0006457 \N 91891 102 0025032 \N 91892 102 0004707 \N 91893 102 0009072 \N 91894 102 0004511 \N 91895 102 0002002 \N 91896 102 0006068 \N 91897 102 0020065 \N 91898 102 0006439 \N 91899 102 0008034 \N 91900 102 0006062 \N 91901 102 0025265 \N 91902 102 0025271 \N 91903 102 0003005 \N 91904 102 0003008 \N 91905 102 0003009 \N 91906 94 //www.botgard.ucla.edu/html/botanytextbooks/generalbotany/typesofroots/ \N 91907 102 0006300 \N 91908 102 0009087 \N 91909 102 0008032 \N 91910 102 0025189 \N 91911 102 0025068 \N 91912 102 0006307 \N 91913 102 0025288 \N 91914 102 0005028 \N 91915 102 0006486 \N 91916 102 0030079 \N 91917 102 0006048 \N 91918 102 0000043 \N 91919 102 0025023 \N 91920 102 0008033 \N 91921 102 0006462 \N 91922 102 0006317 \N 91923 102 0025037 \N 91924 102 0025138 \N 91925 169 phenotype \N 91926 102 0004700 \N 91927 102 0025113 \N 91928 102 0006475 \N 91929 102 0025126 \N 91930 102 0006215 \N 91931 102 0004003 \N 91932 102 0005049 \N 91933 102 0025197 \N 91934 102 0025097 \N 91935 102 0020003 \N 91936 102 0025154 \N 91937 102 0000066 \N 91938 3 12662305 \N 91939 102 0006001 1 \N 91940 102 0020044 \N 91941 102 0030037 \N 91942 102 0000018 \N 91943 102 0009040 \N 91944 102 0006029 \N 91945 102 0020122 \N 91946 102 0025219 \N 91947 102 0025193 \N 91948 102 0009026 \N 91949 102 0000053 \N 91950 102 0020097 \N 91951 102 0025295 \N 91952 102 0005647 \N 91953 102 0025125 \N 91954 102 0006220 \N 91955 102 0006406 \N 91956 102 0020011 \N 91957 102 0009008 \N 91958 102 0009102 \N 91959 102 0008011 \N 91960 102 0006474 \N 91961 102 0006206 \N 91962 102 0004007 \N 91963 102 0006425 \N 91964 102 0000290 \N 91965 102 0004000 \N 91966 102 0030059 \N 91967 102 0020101 \N 91968 102 0003023 \N 91969 102 0008018 \N 91970 102 0025250 \N 91971 102 0025270 \N 91972 102 0000031 \N 91973 102 0006433 \N 91974 102 0004716 \N 91975 102 0030032 \N 91976 102 0000061 \N 91977 102 0004526 \N 91978 102 0006495 \N 91979 102 0006353 \N 91980 102 0020130 \N 91981 102 0006065 \N 91982 102 0009090 \N 91983 102 0025190 \N 91984 102 0000023 \N 91985 102 0020023 \N 91986 102 0006493 \N 91987 102 0006344 \N 91988 102 0025289 \N 91989 102 0025277 \N 91990 102 0006056 \N 91991 102 0006500 \N 91992 102 0000289 \N 91993 102 0000286 \N 91994 102 0025226 \N 91995 102 0025223 \N 91996 102 0030017 \N 91997 102 0025171 \N 91998 102 0025067 \N 91999 102 0008002 \N 92000 181 nm \N 92001 102 0025280 \N 92002 102 0006214 \N 92003 102 0025182 \N 92004 102 0009003 \N 92005 102 0000230 \N 92006 102 0003015 \N 92007 102 0020059 \N 92008 102 0006380 \N 92009 102 0005048 \N 92010 102 0020047 \N 92011 86 0878934030 \N 92012 102 0009038 \N 92013 102 0006391 \N 92014 102 0025209 \N 92015 102 0006085 \N 92016 102 0003001 \N 92017 102 0004517 \N 92018 102 0025275 \N 92019 102 0009049 \N 92020 102 0009048 \N 92021 102 0009050 \N 92022 102 0020088 \N 92023 102 0020111 \N 92024 102 0020112 \N 92025 102 0020113 \N 92026 102 0020114 \N 92027 102 0020115 \N 92028 102 0020116 \N 92029 102 0020117 \N 92030 102 0020118 \N 92031 102 0020119 \N 92032 102 0020120 \N 92033 102 0025128 \N 92034 102 0006376 \N 92035 102 0025264 \N 92036 102 0006088 \N 92037 3 12897248 \N 92038 102 0008013 \N 92039 102 0025200 \N 92040 102 0025105 \N 92041 102 0000200 \N 92042 102 0006372 \N 92043 102 0009057 \N 92044 102 0005656 \N 92045 102 0000352 \N 92046 102 0005665 \N 92047 102 0006016 \N 92048 102 0025319 \N 92049 102 0025320 \N 92050 86 3540640606 \N 92051 3 17933843 \N 92052 102 0006049 \N 92053 102 0000282 \N 92054 102 0004510 \N 92055 102 0000273 \N 92056 102 0025087 \N 92057 102 0020126 \N 92058 102 0025022 \N 92059 102 0006328 \N 92060 102 0009047 \N 92061 102 0006505 \N 92062 102 0020084 \N 92063 102 0020052 \N 92064 102 0006077 \N 92065 102 0006109 \N 92066 86 0080280307 \N 92067 102 0025094 \N 92068 102 0025232 \N 92069 102 0025279 \N 92070 102 0030010 \N 92071 102 0008030 \N 92072 102 0000044 \N 92073 102 0025030 \N 92074 102 0000008 \N 92075 102 0006311 \N 92076 102 0005004 \N 92077 102 0025168 \N 92078 102 0025257 \N 92079 102 0009011 \N 92080 174 0000003 "anatomical structure" \N 92081 102 0004720 \N 92082 102 0025083 \N 92083 102 0006306 \N 92084 102 0025175 \N 92085 102 0025075 \N 92086 102 0020034 \N 92087 95 0006-8101 "Robertse et al. 2001 \N 92088 182 1=10" \N 92089 102 0009071 \N 92090 102 0025136 \N 92091 102 0005015 \N 92092 102 0025256 \N 92093 102 0030081 \N 92094 102 0025199 \N 92095 102 0009084 \N 92096 102 0006326 \N 92097 102 0020063 \N 92098 102 0025118 \N 92099 102 0005415 \N 92100 102 0006070 \N 92101 102 0020108 \N 92102 3 12271036 \N 92103 102 0006201 \N 92104 102 0008036 \N 92105 86 0471245208 "Anatomy of seed plants by K. Esau 2nd edition" \N 92106 102 0030041 \N 92107 102 0030051 \N 92108 102 0025042 \N 92109 102 0006481 \N 92110 102 0025146 \N 92111 102 0020015 \N 92112 102 0006023 \N 92113 102 0006363 \N 92114 102 0025247 \N 92115 102 0006368 \N 92116 102 0006444 \N 92117 102 0003016 \N 92118 102 0025111 \N 92119 102 0025008 \N 92120 102 0025019 \N 92121 102 0030026 \N 92122 102 0006465 \N 92123 102 0006460 \N 92124 102 0025307 \N 92125 102 0006091 \N 92126 102 0008047 \N 92127 102 0006488 \N 92128 102 0025157 \N 92129 102 0000115 \N 92130 3 15319479 \N 92131 102 0005021 \N 92132 3 15269176 \N 92133 102 0030052 \N 92134 102 0025070 \N 92135 102 0020148 \N 92136 102 0025077 \N 92137 102 0006044 \N 92138 102 0006448 \N 92139 102 0030060 \N 92140 102 0025314 \N 92141 102 0004515 \N 92142 102 0006355 \N 92143 102 0000079 \N 92144 102 0000275 \N 92145 102 0025107 \N 92146 102 0006072 \N 92147 102 0008001 \N 92148 102 0025231 \N 92149 102 0025269 \N 92150 102 0025036 \N 92151 102 0006332 \N 92152 102 0006054 \N 92153 102 0000064 \N 92154 3 17993548 \N 92155 102 0006456 \N 92156 102 0004713 \N 92157 102 0005426 \N 92158 102 0009016 \N 92159 102 0009058 \N 92160 102 0025282 \N 92161 102 0009042 \N 92162 102 0006502 \N 92163 102 0025080 \N 92164 102 0005046 \N 92165 102 0020013 \N 92166 102 0006467 \N 92167 102 0020091 \N 92168 102 0020007 \N 92169 102 0000077 1 \N 92170 102 0025310 \N 92171 102 0006491 \N 92172 102 0006404 \N 92173 102 0006073 \N 92174 102 0004709 \N 92175 102 0009067 1 \N 92176 102 0020103 \N 92177 102 0020106 \N 92178 102 0005019 \N 92179 102 0025244 \N 92180 102 0005006 \N 92181 102 0006318 \N 92182 102 0025090 \N 92183 102 0030008 \N 92184 102 0025207 \N 92185 102 0025195 1 \N 92186 102 0025065 \N 92187 102 0005024 \N 92188 102 0025081 \N 92189 102 0009051 \N 92190 102 0004543 \N 92191 102 0020005 \N 92192 86 9780470752685 \N 92193 102 0025161 \N 92194 174 0000004 "portion of organism substance" \N 92195 102 0025060 \N 92196 183 curaors \N 92197 102 0009107 \N 92198 102 0006374 \N 92199 102 0025140 \N 92200 102 0025214 \N 92201 102 0009033 \N 92202 102 0025012 \N 92203 102 0020020 \N 92204 102 0008023 \N 92205 102 0006035 \N 92206 102 0005039 \N 92207 95 0669014893 \N 92208 102 0006453 \N 92209 102 0000400 \N 92210 102 0006222 \N 92211 3 11732189 \N 92212 102 0006211 \N 92213 102 0005012 \N 92214 102 0025064 \N 92215 102 0009018 \N 92216 102 0006424 \N 92217 102 0030034 \N 92218 102 0000016 \N 92219 102 0030071 \N 92220 86 12917289 \N 92221 102 0025100 \N 92222 102 0009024 \N 92223 102 0025260 \N 92224 102 0006218 \N 92225 102 0000284 \N 92226 102 0000296 \N 92227 86 047124520 \N 92228 102 0025273 \N 92229 102 0025293 \N 92230 102 0009100 \N 92231 102 0006313 \N 92232 102 0025262 \N 92233 102 0004537 \N 92234 102 0025073 \N 92235 102 0025116 \N 92236 102 0000046 \N 92237 102 0025184 \N 92238 102 0025003 \N 92239 102 0025176 \N 92240 102 0030015 \N 92241 102 0020031 \N 92242 102 0008015 \N 92243 102 0020132 \N 92244 3 9384380 \N 92245 102 0030064 \N 92246 102 0000263 \N 92247 102 0006021 \N 92248 102 0025317 \N 92249 102 0003021 \N 92250 102 0025259 \N 92251 102 0025304 \N 92252 102 0000226 \N 92253 102 0000013 \N 92254 102 0020049 \N 92255 102 0009082 \N 92256 102 0008045 \N 92257 102 0006394 \N 92258 102 0030083 \N 92259 102 0003018 \N 92260 102 0025096 \N 92261 102 0006367 \N 92262 102 0009077 \N 92263 102 0006384 \N 92264 102 0006357 \N 92265 102 0025089 \N 92266 102 0020050 \N 92267 102 0025092 \N 92268 102 0000082 \N 92269 102 0030005 \N 92270 102 0005013 \N 92271 3 15368128 \N 92272 102 0006430 \N 92273 102 0019023 \N 92274 102 0006079 \N 92275 102 0006011 \N 92276 102 0004530 \N 92277 102 0006042 \N 92278 102 0025322 \N 92279 3 18450784 \N 92280 102 0006324 \N 92281 102 0020136 \N 92282 102 0019026 \N 92283 102 0008044 \N 92284 102 0006437 \N 92285 102 0009092 \N 92286 102 0000372 \N 92287 102 0025040 \N 92288 102 0030021 \N 92289 102 0000028 \N 92290 102 0009079 \N 92291 102 0006419 \N 92292 102 0025309 \N 92293 102 0030072 \N 92294 102 0006361 \N 92295 102 0025047 \N 92296 102 0025014 \N 92297 102 0030044 \N 92298 102 0030039 \N 92299 102 0025245 \N 92300 102 0006507 \N 92301 102 0025006 \N 92302 102 0006058 \N 92303 102 0006489 \N 92304 102 0025027 \N 92305 102 0004703 \N 92306 102 0030062 \N 92307 102 0006304 \N 92308 102 0020057 \N 92309 102 0005645 \N 92310 102 0006014 \N 92311 102 0009060 \N 92312 102 0006382 \N 92313 102 0008038 \N 92314 102 0006431 \N 92315 102 0004714 \N 92316 102 0020061 \N 92317 102 0006204 \N 92318 102 0004536 \N 92319 102 0000041 \N 92320 102 0025054 \N 92321 102 0030024 \N 92322 102 0030058 \N 92323 102 0030043 \N 92324 102 0025029 \N 92325 102 0025227 \N 92326 102 0006323 \N 92327 102 0004701 \N 92328 102 0006449 \N 92329 102 0025316 \N 92330 102 0000010 \N 92331 102 0006330 \N 92332 86 0-521-25134-6 \N 92333 102 0006007 \N 92334 102 0005599 \N 92335 102 0006006 \N 92336 102 0006478 \N 92337 102 0025159 \N 92338 102 0025031 \N 92339 102 0025216 \N 92340 102 0009028 \N 92341 102 0009045 \N 92342 102 0000047 \N 92343 102 0020029 \N 92344 102 0006210 \N 92345 102 0008006 \N 92346 102 0025148 \N 92347 102 0025204 \N 92348 102 0005008 1 \N 92349 102 0006205 \N 92350 102 0020048 \N 92351 102 0025122 \N 92352 102 0006348 \N 92353 102 0004723 \N 92354 102 0030076 \N 92355 102 0006483 \N 92356 102 0006301 \N 92357 102 0009109 \N 92358 102 0020024 \N 92359 102 0009069 \N 92360 102 0025236 \N 92361 102 0008014 \N 92362 102 0006022 \N 92363 102 0025164 \N 92364 102 0005058 \N 92365 102 0020104 \N 92366 102 0025034 \N 92367 102 0000014 \N 92368 102 0005026 \N 92369 102 0006033 \N 92370 102 0004006 \N 92371 102 0009076 \N 92372 102 0000027 \N 92373 102 0006341 \N 92374 102 0009088 \N 92375 102 0025010 \N 92376 102 0020142 \N 92377 102 0004725 \N 92378 102 0002003 1 \N 92379 102 0004708 \N 92380 102 0000076 \N 92381 102 0025268 \N 92382 102 0006463 \N 92383 102 0006061 \N 92384 3 11951033 \N 92385 102 0009032 \N 92386 102 0006076 \N 92387 102 0006067 \N 92388 102 0030066 \N 92389 102 0000019 \N 92390 102 0020040 \N 92391 102 0025026 \N 92392 102 0000042 \N 92393 102 0003007 \N 92394 102 0020129 \N 92395 102 0006347 \N 92396 102 0009000 \N 92397 102 0025134 \N 92398 102 0005632 \N 92399 102 0002001 \N 92400 102 0000252 \N 92401 102 0006064 \N 92402 102 0025139 \N 92403 102 0000056 \N 92404 102 0005040 \N 92405 102 0006080 \N 92406 102 0025285 \N 92407 102 0006461 \N 92408 102 0006365 \N 92409 102 0004013 \N 92410 102 0000003 \N 92411 102 0006420 \N 92412 102 0025114 \N 92413 102 0006303 \N 92414 102 0009035 \N 92415 102 0025108 \N 92416 102 0025186 \N 92417 102 0000207 \N 92418 102 0020137 \N 92419 102 0006501 \N 92420 102 0009005 1 \N 92421 102 0003006 \N 92422 102 0025252 \N 92423 102 0005360 \N 92424 102 0008004 \N 92425 102 0006471 \N 92426 102 0006358 \N 92427 102 0025243 \N 92428 102 0020110 \N 92429 102 0006314 \N 92430 102 0006393 \N 92431 102 0004718 \N 92432 102 0006074 \N 92433 102 0006417 \N 92434 102 0025052 \N 92435 102 0004523 \N 92436 102 0025101 \N 92437 102 0006438 \N 92438 102 0025291 \N 92439 102 0030046 \N 92440 102 0000332 \N 92441 102 0030033 \N 92442 102 0000423 \N 92443 102 0008026 \N 92444 102 0020055 \N 92445 102 0006041 \N 92446 102 0006386 \N 92447 102 0005053 \N 92448 102 0025016 \N 92449 102 0006427 \N 92450 102 0005349 \N 92451 102 0025045 \N 92452 102 0020092 \N 92453 184 glossary \N 92454 102 0025181 \N 92455 102 0020042 \N 92456 102 0005597 \N 92457 102 0004546 \N 92458 102 0025162 \N 92459 102 0025221 \N 92460 102 0025004 \N 92461 102 0004529 \N 92462 102 0005706 \N 92463 102 0030085 \N 92464 102 0030019 \N 92465 102 0020033 \N 92466 102 0025283 \N 92467 102 0025061 \N 92468 102 0025074 \N 92469 102 0025043 \N 92470 102 0008041 \N 92471 102 0005005 \N 92472 102 0009052 \N 92473 102 0020017 \N 92474 102 0000012 \N 92475 102 0009063 \N 92476 102 0020139 \N 92477 102 0030028 \N 92478 102 0025018 \N 92479 102 0025306 \N 92480 102 0025211 \N 92481 102 0025088 \N 92482 102 0000074 \N 92483 102 0025143 \N 92484 102 0025144 \N 92485 102 0004534 \N 92486 102 0006216 \N 92487 102 0020039 \N 92488 102 0025188 \N 92489 102 0004705 \N 92490 102 0000283 \N 92491 102 0006343 \N 92492 102 0020124 \N 92493 102 0003012 \N 92494 102 0006378 \N 92495 102 0008008 \N 92496 102 0004528 \N 92497 102 0004721 \N 92498 102 0000021 \N 92499 102 0025202 \N 92500 102 0025225 \N 92501 102 0006476 \N 92502 102 0006015 \N 92503 102 0006321 \N 92504 102 0025086 \N 92505 3 10077498 \N 92506 102 0000223 \N 92507 102 0030025 \N 92508 102 0005041 \N 92509 102 0025132 \N 92510 102 0006203 \N 92511 102 0006452 \N 92512 102 0004004 \N 92513 102 0000051 \N 92514 102 0025020 \N 92515 102 0030035 \N 92516 102 0030068 \N 92517 3 12917289 \N 92518 102 0025301 \N 92519 102 0009030 \N 92520 102 0004548 \N 92521 102 0009022 \N 92522 102 0005660 \N 92523 102 0000293 \N 92524 102 0006485 \N 92525 102 0006316 \N 92526 102 0000025 \N 92527 102 0020095 \N 92528 102 0000065 \N 92529 102 0025041 \N 92530 102 0025278 \N 92531 102 0030078 \N 92532 102 0025196 \N 92533 102 0025123 \N 92534 102 0025266 \N 92535 102 0025253 \N 92536 102 0025287 \N 92537 102 0000030 \N 92538 102 0030040 \N 92539 102 0020128 \N 92540 102 0005669 \N 92541 102 0006370 \N 92542 102 0008016 \N 92543 102 0009081 \N 92544 102 0000244 \N 92545 102 0003004 \N 92546 102 0009074 1 \N 92547 102 0008021 \N 92548 102 0006308 \N 92549 102 0004008 \N 92550 102 0006405 \N 92551 102 0006409 \N 92552 102 0025024 \N 92553 102 0025137 \N 92554 102 0025112 \N 92555 102 0009086 \N 92556 102 0006047 \N 92557 102 0020027 \N 92558 102 0009073 1 \N 92559 102 0000049 \N 92560 102 0006018 \N 92561 102 0005051 \N 92562 102 0006082 \N 92563 102 0004717 \N 92564 102 0004519 \N 92565 102 0005002 \N 92566 102 0000229 \N 92567 102 0025241 \N 92568 102 0000001 \N 92569 102 0025038 \N 92570 102 0005017 \N 92571 102 0006503 \N 92572 102 0025079 \N 92573 102 0025050 \N 92574 102 0000058 \N 92575 102 0006442 \N 92576 102 0025240 \N 92577 102 0020086 \N 92578 102 0025103 \N 92579 102 0025218 \N 92580 102 0005421 1 \N 92581 102 0025119 \N 92582 102 0025150 \N 92583 102 0030012 \N 92584 86 B0007J6EN6 "Parihar \N 92585 185 Vol. II. Pteridophytes." \N 92586 102 0006498 \N 92587 102 0006351 \N 92588 102 0006458 \N 92589 102 0025166 \N 92590 102 0008040 \N 92591 102 0006004 \N 92592 102 0006028 \N 92593 102 0006030 \N 92594 102 0009055 1 \N 92595 102 0006388 \N 92596 102 0006362 \N 92597 102 0006083 \N 92598 102 0025191 \N 92599 102 0020002 \N 92600 102 0025173 \N 92601 102 0020149 \N 92602 102 0000198 \N 92603 102 0005849 \N 92604 102 0025183 \N 92605 102 0020019 \N 92606 102 0000037 \N 92607 102 0020058 \N 92608 102 0006335 \N 92609 102 0009002 \N 92610 5 0005623 "cell" \N 92611 102 0004011 \N 92612 102 0000070 \N 92613 102 0025297 \N 92614 102 0025238 \N 92615 102 0008003 \N 92616 102 0009014 \N 92617 102 0006052 \N 92618 102 0006356 \N 92619 102 0006025 \N 92620 102 0008028 \N 92621 102 0006436 \N 92622 102 0006459 \N 92623 102 0003024 \N 92624 102 0009111 \N 92625 102 0004711 \N 92626 102 0020009 \N 92627 102 0000035 \N 92628 102 0006208 \N 92629 102 0025312 \N 92630 102 0006446 \N 92631 102 0006339 \N 92632 102 0030054 \N 92633 102 0025058 \N 92634 102 0006020 \N 92635 102 0003013 \N 92636 102 0025072 \N 92637 102 0005679 \N 92638 102 0030002 \N 92639 102 0025002 \N 92640 102 0030030 \N 92641 102 0006415 \N 92642 102 0030087 \N 92643 102 0025009 \N 92644 102 DEVELOPS_FROM \N 92645 102 0007111 \N 92646 102 0007613 \N 92647 102 0007509 \N 92648 102 0007031 \N 92649 86 3826331524 \N 92650 102 0007112 \N 92651 102 0001050 \N 92652 102 0007040 \N 92653 173 tb \N 92654 102 0001030 \N 92655 102 0021004 \N 92656 169 fz \N 92657 102 0007082 \N 92658 102 0007523 \N 92659 102 0007050 \N 92660 102 0007603 \N 92661 102 0007109 \N 92662 102 0007041 \N 92663 102 0007130 \N 92664 102 0001185 \N 92665 102 0004506 \N 92666 102 0001015 \N 92667 102 0007530 \N 92668 102 0007505 \N 92669 102 0001099 \N 92670 102 0007611 \N 92671 102 0007098 \N 92672 102 0007133 \N 92673 102 0001018 \N 92674 102 0001007 \N 92675 102 0007518 \N 92676 102 0007057 \N 92677 102 0001027 \N 92678 102 0007520 \N 92679 102 0007011 \N 92680 102 0001057 \N 92681 102 0007102 \N 92682 102 0001097 \N 92683 102 KI \N 92684 102 0007012 \N 92685 102 0007035 \N 92686 102 0030006 \N 92687 102 0001023 \N 92688 102 0007516 \N 92689 102 0007026 \N 92690 102 0007054 \N 92691 86 0306416875 \N 92692 102 0001052 \N 92693 102 0001021 \N 92694 102 0007073 \N 92695 102 0004504 \N 92696 102 0001095 \N 92697 102 0007605 \N 92698 102 0007066 \N 92699 102 0007033 \N 92700 102 0007005 \N 92701 102 0001028 \N 92702 102 0007096 \N 92703 102 0007044 \N 92704 102 0007089 \N 92705 102 0007527 \N 92706 102 0007017 \N 92707 102 0001072 \N 92708 102 0007118 \N 92709 102 0007600 \N 92710 102 0007122 \N 92711 102 0007622 \N 92712 102 0007010 \N 92713 102 0007084 \N 92714 102 0007539 \N 92715 102 0007124 \N 92716 102 0007615 \N 92717 102 0007134 1 \N 92718 102 0007030 \N 92719 102 0001055 \N 92720 102 0007616 \N 92721 170 glossary \N 92722 102 0004503 \N 92723 102 0007504 \N 92724 102 0007007 \N 92725 102 0007016 \N 92726 102 0007086 \N 92727 102 0007607 \N 92728 102 0007626 \N 92729 102 0001094 \N 92730 102 0001079 \N 92731 102 0007106 \N 92732 102 0007077 \N 92733 102 0007070 \N 92734 102 0007064 \N 92735 102 0007528 \N 92736 102 0007105 \N 92737 102 0007120 \N 92738 102 0007075 \N 92739 102 0007526 \N 92740 102 0007114 \N 92741 102 0007094 \N 92742 102 0001036 \N 92743 102 0001009 \N 92744 102 0007513 \N 92745 102 0021003 \N 92746 102 0001048 \N 92747 102 0007029 \N 92748 102 0007046 \N 92749 102 0007534 \N 92750 102 0007047 \N 92751 102 0001017 \N 92752 102 0007023 \N 92753 102 0007602 \N 92754 102 0001170 \N 92755 102 0007629 \N 92756 102 0007620 \N 92757 102 0007080 \N 92758 102 0001059 \N 92759 102 0001011 \N 92760 102 0007501 \N 92761 102 0001053 \N 92762 102 0001004 \N 92763 102 0007002 \N 92764 102 0007632 \N 92765 102 0001032 \N 92766 102 0001041 \N 92767 102 0004501 \N 92768 102 0007609 \N 92769 102 0007027 \N 92770 102 0001380 \N 92771 102 0007097 \N 92772 102 0007510 \N 92773 102 0007525 \N 92774 102 0001003 \N 92775 102 0007009 \N 92776 102 0007618 \N 92777 102 0001180 \N 92778 102 0001034 \N 92779 102 0007022 \N 92780 102 0001024 \N 92781 102 0007092 \N 92782 102 0007129 \N 92783 102 0007071 \N 92784 102 0007536 \N 92785 102 0007051 \N 92786 102 0007062 \N 92787 102 0007100 \N 92788 102 0007627 \N 92789 102 0007090 \N 92790 102 0007014 \N 92791 102 0001074 \N 92792 102 0007037 \N 92793 102 0001071 \N 92794 102 0007532 \N 92795 102 0007067 \N 92796 102 0001019 \N 92797 102 0001013 \N 92798 102 0028002 \N 92799 102 0001006 \N 92800 102 0007619 \N 92801 102 0001098 \N 92802 102 0007043 \N 92803 102 0007604 \N 92804 102 0007119 \N 92805 102 0007101 \N 92806 102 0001014 \N 92807 102 0001081 \N 92808 102 0007060 \N 92809 102 0007056 \N 92810 102 0007004 \N 92811 102 0007519 \N 92812 102 0007049 \N 92813 102 0007069 \N 92814 102 0007099 \N 92815 102 0007095 \N 92816 102 0007032 \N 92817 102 0007125 \N 92818 102 0001051 \N 92819 3 9254931 \N 92820 102 0007083 \N 92821 102 0001096 \N 92822 102 0007039 \N 92823 102 0001042 \N 92824 102 0007074 \N 92825 102 0007081 \N 92826 102 0007028 \N 92827 102 0007610 \N 92828 102 0001035 \N 92829 102 0007606 \N 92830 102 0001000 \N 92831 102 0007042 \N 92832 102 0007065 \N 92833 102 0001016 \N 92834 102 0007531 \N 92835 102 0007601 \N 92836 102 0007132 \N 92837 102 0007107 \N 92838 102 0001026 \N 92839 102 0007053 \N 92840 102 0007123 \N 92841 102 0007045 \N 92842 102 0007036 \N 92843 102 0007103 \N 92844 102 0007624 \N 92845 102 0007621 \N 92846 102 0007110 \N 92847 102 0007127 \N 92848 102 0007633 \N 92849 102 0007088 \N 92850 102 0001029 \N 92851 102 0007034 \N 92852 102 0007517 \N 92853 102 0001031 \N 92854 169 cuartors \N 92855 102 0007019 \N 92856 102 0007025 \N 92857 102 0007117 \N 92858 102 0001056 \N 92859 102 0007521 \N 92860 102 0001020 \N 92861 102 0007018 \N 92862 102 0007006 \N 92863 102 0004507 \N 92864 102 0001043 \N 92865 102 0001177 \N 92866 102 0001044 \N 92867 102 0007063 \N 92868 102 0007608 \N 92869 102 0001008 \N 92870 102 0001002 \N 92871 102 0007115 \N 92872 102 0007059 \N 92873 102 0007128 \N 92874 102 0007061 \N 92875 102 0001378 \N 92876 102 0007116 \N 92877 102 0007093 \N 92878 102 0007506 \N 92879 102 0007535 \N 92880 102 0021002 \N 92881 102 0028003 \N 92882 102 0007001 \N 92883 102 0007514 \N 92884 102 0007021 \N 92885 102 0007628 \N 92886 102 0001010 \N 92887 102 0007068 \N 92888 102 0007024 \N 92889 102 0001045 \N 92890 102 0007038 \N 92891 102 0007087 \N 92892 102 0007617 \N 92893 102 0007008 \N 92894 102 0001054 \N 92895 102 0001058 \N 92896 102 0007135 \N 92897 102 0007503 \N 92898 102 0001078 \N 92899 102 0001076 \N 92900 102 0004505 \N 92901 102 0007623 \N 92902 102 0007076 \N 92903 102 0007052 \N 92904 102 0004502 \N 92905 102 0007524 \N 92906 102 0009012 \N 92907 102 0007529 \N 92908 102 0007126 \N 92909 102 0007104 \N 92910 102 0007091 \N 92911 102 0007533 \N 92912 102 0001025 \N 92913 102 0007072 \N 92914 102 0001077 \N 92915 102 0007079 \N 92916 102 0007537 \N 92917 102 0007512 \N 92918 102 0007113 \N 92919 102 0007078 \N 92920 102 0001070 \N 92921 102 0007015 \N 92922 102 0007507 \N 92923 102 0001047 \N 92924 102 0007131 1 \N 92925 102 0001083 \N 92926 102 0028001 \N 92927 102 0007058 \N 92928 102 0007085 \N 92929 102 0001012 \N 92930 102 0007013 \N 92931 102 0004500 \N 92932 102 0007048 \N 92933 102 0001040 \N 92934 102 0007055 \N 92935 102 0007631 \N 92936 102 0007020 \N 92937 102 0007511 \N 92938 102 0007108 \N 92939 102 0001005 \N 92940 102 0007625 \N 92941 102 0007612 \N 92942 102 0007003 \N 92943 102 0001049 \N 92944 102 0007121 \N 92945 186 0000049 \N 92946 186 mb \N 92947 86 978-131-302-1 "Dixon et al 2010" \N 92948 186 0000078 \N 92949 186 0000079 \N 92950 186 0000063 \N 92951 186 0000066 \N 92952 186 0000045 \N 92953 186 0000046 \N 92954 186 0000012 \N 92955 186 0000052 \N 92956 186 0000015 \N 92957 186 0000096 \N 92958 186 0000056 \N 92959 186 0000036 \N 92960 186 0000010 \N 92961 186 0000039 \N 92962 186 0000018 \N 92963 186 0000094 \N 92964 186 0000075 \N 92965 86 978-131-302-1 "Dixon et al 2000" \N 92966 186 0000068 \N 92967 186 0000001 \N 92968 186 0000020 \N 92969 186 0000054 \N 92970 186 0000017 \N 92971 186 0000114 \N 92972 186 0000003 \N 92973 186 0000053 \N 92974 186 0000064 \N 92975 186 0000074 \N 92976 186 0000057 \N 92977 186 0000118 \N 92978 186 0000058 \N 92979 186 0000087 \N 92980 186 0000013 \N 92981 186 0000047 \N 92982 186 0000086 \N 92983 186 0000091 \N 92984 186 0000085 \N 92985 186 0000044 \N 92986 186 0000077 \N 92987 86 978-131-347-1 "Fukuda et al 2010" \N 92988 186 0000059 \N 92989 186 0000021 \N 92990 186 0000008 \N 92991 186 0000093 \N 92992 186 0000105 \N 92993 186 0000050 \N 92994 186 0000082 \N 92995 186 0000048 \N 92996 186 0000011 \N 92997 186 0000032 \N 92998 186 0000089 \N 92999 186 0000072 \N 93000 186 0000024 \N 93001 186 0000095 \N 93002 186 0000120 \N 93003 186 0000111 \N 93004 186 0000031 \N 93005 186 0000084 \N 93006 186 0000005 \N 93007 186 0000061 \N 93008 186 0000022 \N 93009 186 0000006 \N 93010 186 0000090 \N 93011 186 0000051 \N 93012 186 0000099 \N 93013 186 0000088 \N 93014 186 0000083 \N 93015 186 0000110 \N 93016 186 0000023 \N 93017 186 0000014 \N 93018 186 0000098 \N 93019 186 0000038 \N 93020 186 0000107 \N 93021 186 0000037 \N 93022 186 0000069 \N 93023 186 0000025 \N 93024 186 0000116 \N 93025 186 0000028 \N 93026 186 0000070 \N 93027 186 0000102 \N 93028 186 0000027 \N 93029 186 0000065 \N 93030 186 0000112 \N 93031 186 0000092 \N 93032 186 0000113 \N 93033 186 0000026 \N 93034 186 0000067 \N 93035 186 0000104 \N 93036 186 0000071 \N 93037 186 0000109 \N 93038 186 0000117 \N 93039 186 0000100 \N 93040 186 0000004 \N 93041 186 0000106 \N 93042 186 0000124 \N 93043 186 0000081 \N 93044 186 0000097 \N 93045 86 978-131-302-1 "Dixon et a00l 20" \N 93046 186 0000076 \N 93047 186 0000030 \N 93048 186 0000060 \N 93049 186 0000034 \N 93050 186 0000119 \N 93051 86 978-131-347-1 "Fuduka et al 2010" \N 93052 186 0000000 \N 93053 186 0000121 \N 93054 186 0000035 \N 93055 186 0000101 \N 93056 186 0000080 \N 93057 186 0000009 \N 93058 186 0000007 \N 93059 186 0000033 \N 93060 186 0000043 \N 93061 186 0000115 \N 93062 186 0000062 \N 93063 186 0000073 \N 93064 186 0000055 \N 93065 186 0000016 \N 93066 186 0000040 \N 93067 186 0000103 \N 93068 186 0000002 \N 93069 186 0000029 \N 93070 186 0000019 \N 93071 186 0000041 \N 93072 186 0000042 \N 93073 186 0000108 \N 95037 107 0000274 \N 95038 187 GVG \N 95039 107 0001723 \N 95040 107 0001492 \N 95041 107 0001812 \N 95042 107 0001827 \N 95043 188 WordNet "http \N 95044 107 0000039 \N 95045 189 thesaurus.maths "http \N 95046 107 0001609 \N 95047 190 biology.lsu "http \N 95048 107 0001386 \N 95049 104 http \N 95050 107 0001916 \N 95051 187 wd \N 95052 107 0001628 \N 95053 107 GVG \N 95054 107 0000790 \N 95055 107 0000978 \N 95056 107 0002275 \N 95057 187 WD \N 95058 107 0002243 \N 95059 191 http \N 95060 107 0000712 \N 95061 107 0002290 \N 95062 107 0000225 \N 95063 107 0002091 \N 95064 107 0001263 \N 95065 107 0001208 \N 95066 107 0000856 \N 95067 107 0001131 \N 95068 107 0000105 \N 95069 107 0002154 \N 95070 107 0000582 \N 95071 107 0002128 \N 95072 107 0000048 \N 95073 192 merriam-webster "http \N 95074 107 0000665 \N 95075 187 MAH \N 95076 107 0001050 \N 95077 107 0000813 \N 95078 107 0001667 \N 95079 107 0002256 \N 95080 107 0000005 \N 95081 107 0000914 \N 95082 107 0000885 \N 95083 107 0000927 \N 95084 107 0001941 \N 95085 107 0001534 \N 95086 193 merriam-webster. "www.m-w.com/" \N 95087 107 0001504 \N 95088 107 0002081 \N 95089 187 GJM \N 95090 107 0001779 \N 95091 107 0001549 \N 95092 107 0000351 \N 95093 107 0000663 \N 95094 107 0000369 \N 95095 107 0000909 \N 95096 107 0000923 \N 95097 107 0000445 \N 95098 107 0001001 \N 95099 107 0001657 \N 95100 107 0001406 \N 95101 194 Biology-online "http \N 95102 107 0000625 \N 95103 107 0002163 \N 95104 107 0001277 \N 95105 107 0001086 \N 95106 107 0000336 \N 95107 107 0000332 \N 95108 107 0001307 \N 95109 107 0000983 \N 95110 107 0000971 \N 95111 107 0000264 \N 95112 107 0000631 \N 95113 195 thefreedictionary.com "http \N 95114 107 0000371 \N 95115 107 0000469 \N 95116 107 0000568 \N 95117 107 0001881 \N 95118 86 0881923214 \N 95119 196 RKC \N 95120 107 0001851 \N 95121 107 0000799 \N 95122 107 0001615 \N 95123 107 0000695 \N 95124 107 0001312 \N 95125 107 0000015 \N 95126 187 cjm \N 95127 107 0000572 \N 95128 107 0002306 \N 95129 187 JB \N 95130 107 0001648 \N 95131 107 0000186 \N 95132 107 0001722 \N 95133 107 0001654 \N 95134 107 0001421 \N 95135 107 0000256 \N 95136 107 0002198 \N 95137 107 0000875 \N 95138 107 0002062 \N 95139 107 0000386 \N 95140 107 0001500 \N 95141 107 0002095 \N 95142 107 0002027 \N 95143 107 0000537 \N 95144 107 0000163 \N 95145 107 0001969 \N 95146 197 1988 \N 95147 107 0000892 \N 95148 107 0001284 \N 95149 107 0000917 \N 95150 107 0000307 \N 95151 107 0000986 \N 95152 107 0000295 \N 95153 107 0001418 \N 95154 107 0000606 \N 95155 107 0001125 \N 95156 107 0001613 \N 95157 107 0000456 \N 95158 107 0000286 \N 95159 107 0000544 \N 95160 107 0002218 \N 95161 198 http \N 95162 107 0002030 \N 95163 187 mc \N 95164 107 0000022 \N 95165 107 0002172 \N 95166 107 0001253 \N 95167 107 0000959 \N 95168 107 0001602 \N 95169 107 0000102 \N 95170 107 0002025 \N 95171 94 //en.wikipedia.org/wiki/Internal_angle \N 95172 107 0002012 \N 95173 104 Wikipedia "htpp \N 95174 107 0000775 \N 95175 107 0001893 \N 95176 107 0000188 \N 95177 107 0001835 \N 95178 107 0001334 \N 95179 107 0000944 \N 95180 107 0000459 \N 95181 107 0000780 \N 95182 107 0000196 \N 95183 107 0000770 \N 95184 107 0002280 \N 95185 107 0001204 \N 95186 107 0001572 \N 95187 107 0001899 \N 95188 107 0002039 \N 95189 107 0000561 \N 95190 107 0001057 \N 95191 107 0002181 \N 95192 107 0001886 \N 95193 199 answers.com "http \N 95194 107 0001635 \N 95195 107 0000688 \N 95196 107 0001335 \N 95197 200 MGED \N 95198 107 0000837 \N 95199 107 0001691 \N 95200 107 0000073 \N 95201 107 0002173 \N 95202 107 0000496 \N 95203 107 0001068 \N 95204 107 0000344 \N 95205 107 0001097 \N 95206 107 0001478 \N 95207 201 Dictionary.com "http \N 95208 107 0000417 \N 95209 107 0000045 \N 95210 107 0000742 \N 95211 107 0000214 \N 95212 107 0002138 \N 95213 187 VO \N 95214 107 0000795 \N 95215 107 0002248 \N 95216 107 0001023 \N 95217 107 0000208 \N 95218 107 0002006 \N 95219 187 CJM \N 95220 107 0002034 \N 95221 107 0001128 \N 95222 107 0002074 \N 95223 107 0000746 \N 95224 107 0001753 \N 95225 187 mh \N 95226 107 0000540 \N 95227 107 0000460 \N 95228 107 0001540 \N 95229 202 TO "http \N 95230 107 0001632 \N 95231 187 nw \N 95232 107 0000702 \N 95233 107 0002112 \N 95234 107 0000649 \N 95235 107 0000261 \N 95236 203 Merriam-Webster "http \N 95237 107 0001966 \N 95238 107 0002259 \N 95239 107 0001771 \N 95240 107 0000827 \N 95241 107 0001438 \N 95242 204 MedTerms "www.medterms.com/" \N 95243 107 0000084 \N 95244 107 0000403 \N 95245 107 0001217 \N 95246 107 0001104 \N 95247 107 0001063 \N 95248 107 0000125 \N 95249 107 0001110 \N 95250 107 0000800 \N 95251 107 0001959 \N 95252 187 mw \N 95253 107 0001344 \N 95254 107 0002211 \N 95255 192 http \N 95256 107 0001367 \N 95257 107 0001764 \N 95258 107 0002204 \N 95259 205 2042 \N 95260 107 0000527 \N 95261 107 0000146 \N 95262 107 0001796 \N 95263 107 0002287 \N 95264 107 0002162 \N 95265 107 0000806 \N 95266 107 0001168 \N 95267 107 0002119 \N 95268 107 0000960 \N 95269 107 0001856 \N 95270 206 die.net "http \N 95271 107 0001623 \N 95272 207 Wasting "http \N 95273 104 Atrophy \N 95274 107 0000481 \N 95275 107 0001762 \N 95276 107 0001872 \N 95277 107 0002246 \N 95278 107 0001244 \N 95279 107 0001134 \N 95280 107 0001576 \N 95281 107 0000357 \N 95282 107 0000433 \N 95283 107 0000376 \N 95284 107 0002225 \N 95285 187 JE \N 95286 107 0001262 \N 95287 107 0001269 \N 95288 107 0001683 \N 95289 107 0000291 \N 95290 107 0001028 \N 95291 107 0000078 \N 95292 107 0000719 \N 95293 107 0000063 \N 95294 107 0001210 \N 95295 107 0001354 \N 95296 107 0000314 \N 95297 107 0001587 \N 95298 107 0001783 \N 95299 107 0001445 \N 95300 195 thefreedictionary.com "www.thefreedictionary.com/" \N 95301 107 0001464 \N 95302 107 0001977 \N 95303 107 0002010 \N 95304 107 0000054 \N 95305 107 0000139 \N 95306 107 0000669 \N 95307 107 0000864 \N 95308 107 0001948 \N 95309 107 0000710 \N 95310 107 0001529 \N 95311 107 0002301 \N 95312 107 0000654 \N 95313 107 0000091 \N 95314 107 0000575 \N 95315 107 0001990 \N 95316 107 0002017 \N 95317 107 0000032 \N 95318 107 0000558 \N 95319 107 0001151 \N 95320 107 0001389 \N 95321 107 0000717 \N 95322 107 0000635 \N 95323 107 0001297 \N 95324 107 0000755 \N 95325 107 0001583 \N 95326 107 0000934 \N 95327 107 0000754 \N 95328 107 0000167 \N 95329 107 0001997 \N 95330 107 0000419 \N 95331 107 0000468 \N 95332 107 0000512 \N 95333 107 0000832 \N 95334 107 0001426 \N 95335 107 0001673 \N 95336 107 0000235 \N 95337 107 0001359 \N 95338 107 0001974 \N 95339 107 0000153 \N 95340 107 0002184 \N 95341 187 JH \N 95342 107 0000130 \N 95343 107 0001838 \N 95344 107 0000689 \N 95345 107 0000429 \N 95346 107 0001145 \N 95347 107 0000682 \N 95348 107 0000956 \N 95349 107 0000590 \N 95350 107 0000966 \N 95351 107 0002103 \N 95352 107 0001709 \N 95353 107 0000062 \N 95354 107 0000491 \N 95355 107 0001816 \N 95356 107 0001448 \N 95357 208 MAMMALOGY "http \N 95358 107 0000531 \N 95359 107 0000471 \N 95360 107 0000815 \N 95361 107 0000700 \N 95362 107 0001616 \N 95363 107 0001545 \N 95364 107 0001508 \N 95365 107 0000849 \N 95366 107 0000867 \N 95367 107 0000253 \N 95368 107 0000576 \N 95369 107 0001530 \N 95370 107 0000174 \N 95371 107 0002041 \N 95372 107 0001612 \N 95373 107 0000087 \N 95374 107 0001775 \N 95375 107 0000533 \N 95376 107 0000904 \N 95377 107 0001487 \N 95378 107 0001085 \N 95379 107 0001855 \N 95380 107 0000673 \N 95381 107 0000278 \N 95382 107 0001197 \N 95383 107 0002176 \N 95384 107 0000784 \N 95385 107 0002216 \N 95386 209 http \N 95387 107 0000889 \N 95388 107 0001198 \N 95389 107 0000629 \N 95390 210 NDI "http \N 95391 107 0000090 \N 95392 107 0001079 \N 95393 107 0000948 \N 95394 107 0001318 \N 95395 107 0001800 \N 95396 107 0000455 \N 95397 107 0001875 \N 95398 211 wordreference "http \N 95399 107 0001093 \N 95400 107 0000870 \N 95401 107 0000905 \N 95402 107 0000436 \N 95403 107 0002262 \N 95404 107 0002258 \N 95405 187 http \N 95406 107 0000382 \N 95407 107 0001137 \N 95408 107 0001981 \N 95409 107 0000303 \N 95410 107 0002233 \N 95411 187 PM \N 95412 107 0000119 \N 95413 107 0002185 \N 95414 107 0000699 \N 95415 107 0001375 \N 95416 107 0001844 \N 95417 107 0001076 \N 95418 107 0000009 \N 95419 107 0001328 \N 95420 107 0002116 \N 95421 107 0001227 \N 95422 212 http \N 95423 107 0000169 \N 95424 107 0001209 \N 95425 107 0001397 \N 95426 107 0000441 \N 95427 107 0000998 \N 95428 107 0001361 \N 95429 107 0001435 \N 95430 107 0000452 \N 95431 107 0001650 \N 95432 107 0000779 \N 95433 107 0001562 \N 95434 107 0000579 \N 95435 107 0000182 \N 95436 107 0001877 \N 95437 107 0002271 \N 95438 107 0001831 \N 95439 107 0001717 \N 95440 107 0001919 \N 95441 187 mb \N 95442 107 0000204 \N 95443 107 0001200 \N 95444 107 0000897 \N 95445 107 0000794 \N 95446 107 0001963 \N 95447 107 0000517 \N 95448 107 0000740 \N 95449 107 0000192 \N 95450 107 0000142 \N 95451 107 0000989 \N 95452 107 0001441 \N 95453 5 GO \N 95454 107 0002236 \N 95455 107 0001403 \N 95456 107 0001581 \N 95457 107 0001392 \N 95458 107 0000738 \N 95459 107 0000393 \N 95460 107 0000011 \N 95461 107 0000701 \N 95462 107 0002052 \N 95463 107 0000145 \N 95464 107 0002188 \N 95465 107 0000224 \N 95466 107 0001953 \N 95467 107 0000732 \N 95468 107 0000994 \N 95469 107 0002145 \N 95470 107 0001662 \N 95471 107 0001746 \N 95472 213 arpansa "http \N 95473 107 0001281 \N 95474 107 0001792 \N 95475 107 0000774 \N 95476 107 0002065 \N 95477 187 me \N 95478 107 0001451 \N 95479 107 0000268 \N 95480 107 0001909 \N 95481 198 thefreedictionary "www.thefreedictionary.com/" \N 95482 107 0000067 \N 95483 107 0001116 \N 95484 107 0001577 \N 95485 107 0000109 \N 95486 107 0000547 \N 95487 107 0000394 \N 95488 107 0001716 \N 95489 107 0000106 \N 95490 107 0000640 \N 95491 107 0001176 \N 95492 107 0001712 \N 95493 107 0001414 \N 95494 107 0000232 \N 95495 107 0001235 \N 95496 107 0001679 \N 95497 107 0001223 \N 95498 107 0001579 \N 95499 107 0001017 \N 95500 107 0000910 \N 95501 107 0000299 \N 95502 107 0000002 \N 95503 107 0001619 \N 95504 107 0001495 \N 95505 107 0001735 \N 95506 107 0000618 \N 95507 107 0000762 \N 95508 107 0000659 \N 95509 107 0002131 \N 95510 214 wikipedia "en.wikipedia.org/wiki/Abduction_(kinesiology)" \N 95511 107 0001793 \N 95512 107 0001515 \N 95513 187 NC \N 95514 107 0002000 \N 95515 107 0001557 \N 95516 107 0001324 \N 95517 107 0001765 \N 95518 107 0001422 \N 95519 107 0001059 \N 95520 107 0001828 \N 95521 107 0000057 \N 95522 107 0000156 \N 95523 107 0000158 \N 95524 107 0001172 \N 95525 107 0000759 \N 95526 187 flybase \N 95527 107 0002096 \N 95528 107 0002056 \N 95529 107 0000990 \N 95530 107 0001597 \N 95531 198 thefreedictionary "http \N 95532 107 0001053 \N 95533 215 maths.org "http \N 95534 107 0001004 \N 95535 107 0001882 \N 95536 107 0000059 \N 95537 107 0000551 \N 95538 107 0001474 \N 95539 216 bdid "http \N 95540 107 0001905 \N 95541 107 0001041 \N 95542 107 0000706 \N 95543 107 0000709 \N 95544 107 0001984 \N 95545 107 0001266 \N 95546 107 0001149 \N 95547 107 0001491 \N 95548 107 0002047 \N 95549 107 0001660 \N 95550 107 0000310 \N 95551 107 0001292 \N 95552 107 0000868 \N 95553 107 0001064 \N 95554 107 0000112 \N 95555 107 0000977 \N 95556 107 0001329 \N 95557 107 0000217 \N 95558 107 0001787 \N 95559 107 0000485 \N 95560 107 0000179 \N 95561 107 0001924 \N 95562 107 0000151 \N 95563 107 0001945 \N 95564 107 0000644 \N 95565 107 0000943 \N 95566 107 0001164 \N 95567 107 0002070 \N 95568 107 0001914 \N 95569 107 0002194 \N 95570 107 0000521 \N 95571 107 0000292 \N 95572 107 0001211 \N 95573 107 0001687 \N 95574 217 Trailillustrated "www.trailsillustrated.com/skills/glossary.cfm" \N 95575 107 0000953 \N 95576 107 0000501 \N 95577 107 0001653 \N 95578 107 0001183 \N 95579 107 0000963 \N 95580 107 0001834 \N 95581 107 0000320 \N 95582 107 0000863 \N 95583 107 0002085 \N 95584 107 0000645 \N 95585 107 0000942 \N 95586 107 0001141 \N 95587 107 0001922 \N 95588 107 0001769 \N 95589 107 0002143 \N 95590 107 0001704 \N 95591 107 0000516 \N 95592 107 0001034 \N 95593 107 0001935 \N 95594 107 0000713 \N 95595 107 0000245 \N 95596 107 0000975 \N 95597 107 0000036 \N 95598 107 0001786 \N 95599 107 0001551 \N 95600 107 0001024 \N 95601 107 0001860 \N 95602 107 0000448 \N 95603 107 0000982 \N 95604 107 0002278 \N 95605 107 0000488 \N 95606 107 0000410 \N 95607 107 0002199 \N 95608 107 0001973 \N 95609 107 0001069 \N 95610 107 0002238 \N 95611 107 0000134 \N 95612 107 0001360 \N 95613 107 0001477 \N 95614 107 0000239 \N 95615 107 0001430 \N 95616 218 chemicool "http \N 95617 107 0001700 \N 95618 107 0000024 \N 95619 107 0000634 \N 95620 107 0002043 \N 95621 107 0001970 \N 95622 107 0000812 \N 95623 107 0000594 \N 95624 107 0000006 \N 95625 107 0000360 \N 95626 107 0001156 \N 95627 107 0002038 \N 95628 107 0000323 \N 95629 107 0000083 \N 95630 107 0000098 \N 95631 107 0001256 \N 95632 107 0001130 \N 95633 107 0001993 \N 95634 107 0000523 \N 95635 107 0000404 \N 95636 107 0001363 \N 95637 107 0001525 \N 95638 107 0001113 \N 95639 107 0000589 \N 95640 107 0001107 \N 95641 107 0000758 \N 95642 107 0002002 \N 95643 107 0001560 \N 95644 107 0000846 \N 95645 107 0000379 \N 95646 107 0000364 \N 95647 107 0002107 \N 95648 107 0002069 \N 95649 107 0001303 \N 95650 107 0000563 \N 95651 107 0000930 \N 95652 107 0001071 \N 95653 107 0002168 \N 95654 107 0001730 \N 95655 107 0000822 \N 95656 107 0000243 \N 95657 107 0000122 \N 95658 107 0000495 \N 95659 107 0000154 \N 95660 107 0000721 \N 95661 107 0001338 \N 95662 107 0000597 \N 95663 107 0002135 \N 95664 107 0000465 \N 95665 107 0002251 \N 95666 107 0001505 \N 95667 107 0001082 \N 95668 107 0001348 \N 95669 107 0001727 \N 95670 107 0002297 \N 95671 107 0001695 \N 95672 107 0000739 \N 95673 107 0002028 \N 95674 107 0002281 \N 95675 107 0001859 \N 95676 107 0000187 \N 95677 107 0000018 \N 95678 107 0000666 \N 95679 107 0001013 \N 95680 107 0000313 \N 95681 107 0000411 \N 95682 107 0001749 \N 95683 107 0001192 \N 95684 107 0001213 \N 95685 107 0001891 \N 95686 107 0001450 \N 95687 107 0001915 \N 95688 107 0001264 \N 95689 107 0000515 \N 95690 107 0000873 \N 95691 107 0000439 \N 95692 107 0000358 \N 95693 107 0001006 \N 95694 107 0001374 \N 95695 107 0001528 \N 95696 107 0001075 \N 95697 107 0000308 \N 95698 107 0002125 \N 95699 107 0002197 \N 95700 107 0000294 \N 95701 107 0002171 \N 95702 107 0002060 \N 95703 107 0000985 \N 95704 107 0000031 \N 95705 107 0001741 \N 95706 107 0001127 \N 95707 107 0000524 \N 95708 107 0001444 \N 95709 107 0001443 \N 95710 107 0001820 \N 95711 107 0000941 \N 95712 107 0000159 \N 95713 107 0000189 \N 95714 107 0000763 \N 95715 107 0002094 \N 95716 107 0000500 \N 95717 107 0001832 \N 95718 107 0002305 \N 95719 107 0000289 \N 95720 107 0001285 \N 95721 107 0002048 \N 95722 219 http \N 95723 107 0000679 \N 95724 107 0000893 \N 95725 107 0001333 \N 95726 187 melissa \N 95727 107 0000828 \N 95728 107 0000124 \N 95729 107 0000816 \N 95730 107 0000333 \N 95731 107 0000387 \N 95732 107 0000741 \N 95733 107 0002102 \N 95734 107 0001254 \N 95735 107 0000162 \N 95736 107 0001627 \N 95737 107 0000254 \N 95738 107 0001601 \N 95739 107 0002231 \N 95740 107 0000271 \N 95741 107 0000103 \N 95742 107 0001424 \N 95743 107 0001850 \N 95744 107 0000670 \N 95745 107 0000451 \N 95746 107 0000352 \N 95747 107 0002180 \N 95748 107 0001633 \N 95749 107 0000929 \N 95750 107 0000950 \N 95751 94 //en.wikipedia.org/wiki/Grey \N 95752 107 0000581 \N 95753 107 0001904 \N 95754 107 0002200 \N 95755 107 0000562 \N 95756 107 0001826 \N 95757 107 0000907 \N 95758 107 0000282 \N 95759 107 0002274 \N 95760 107 0000273 \N 95761 107 0001608 \N 95762 107 0001051 \N 95763 107 0001507 \N 95764 107 0001385 \N 95765 107 0000584 \N 95766 107 0001096 \N 95767 107 0002005 \N 95768 107 0000681 \N 95769 107 0001676 \N 95770 107 0000442 \N 95771 107 0000044 \N 95772 107 0000543 \N 95773 107 0000008 \N 95774 107 0000928 \N 95775 107 0002115 \N 95776 107 0000924 \N 95777 107 0002090 \N 95778 107 0002127 \N 95779 107 0000312 \N 95780 107 0000801 \N 95781 107 0000257 \N 95782 107 0002242 \N 95783 107 0001546 \N 95784 220 http \N 95785 107 0000569 \N 95786 107 0000242 \N 95787 107 0002155 \N 95788 107 0000370 \N 95789 107 0002192 \N 95790 107 0001880 \N 95791 107 0000807 \N 95792 107 0000195 \N 95793 107 0001724 \N 95794 107 0001720 \N 95795 107 0002080 \N 95796 107 0002224 \N 95797 107 0001456 \N 95798 107 0000810 \N 95799 107 0000265 \N 95800 107 0001968 \N 95801 107 0000632 \N 95802 107 0000228 \N 95803 107 0001752 \N 95804 107 0000368 \N 95805 107 0000687 \N 95806 107 0000220 \N 95807 107 0001087 \N 95808 107 0000489 \N 95809 107 0001393 \N 95810 107 0001729 \N 95811 107 0001308 \N 95812 107 0000141 \N 95813 107 0001452 \N 95814 107 0000653 \N 95815 107 0002255 \N 95816 107 0000791 \N 95817 107 0000664 \N 95818 107 0002205 \N 95819 104 Wikipedia "http \N 95820 107 0000079 \N 95821 107 0000668 \N 95822 107 0001146 \N 95823 107 0001434 \N 95824 107 0001016 \N 95825 107 0000094 \N 95826 107 0000068 \N 95827 107 0001234 \N 95828 107 0002304 \N 95829 107 0000327 \N 95830 107 0002089 \N 95831 107 0002219 \N 95832 107 0000064 \N 95833 107 0001220 \N 95834 107 0001465 \N 95835 107 0000881 \N 95836 107 0001501 \N 95837 107 0001991 \N 95838 107 0001399 \N 95839 107 0001493 \N 95840 107 0000492 \N 95841 107 0000397 \N 95842 107 0000555 \N 95843 107 0001521 \N 95844 107 0001120 \N 95845 107 0000077 \N 95846 107 0001843 \N 95847 107 0000718 \N 95848 107 0001088 \N 95849 107 0000728 \N 95850 107 0002016 \N 95851 107 0002288 \N 95852 107 0000753 \N 95853 107 0000783 \N 95854 107 0001026 \N 95855 107 0000425 \N 95856 107 0001817 \N 95857 107 0001643 \N 95858 107 0001425 \N 95859 107 0000933 \N 95860 107 0001480 \N 95861 221 Answers.com "http \N 95862 107 0000853 \N 95863 107 0001807 \N 95864 107 0001298 \N 95865 107 0001626 \N 95866 107 0000636 \N 95867 107 0000347 \N 95868 107 0000843 \N 95869 107 0000602 \N 95870 107 0000400 \N 95871 107 0001818 \N 95872 107 0000680 \N 95873 107 0001949 \N 95874 107 0000131 \N 95875 107 0001207 \N 95876 107 0001598 \N 95877 107 0001644 \N 95878 107 0001067 \N 95879 107 0002269 \N 95880 187 CVC \N 95881 107 0001461 \N 95882 107 0000248 \N 95883 107 0001928 \N 95884 107 0001708 \N 95885 107 0001582 \N 95886 107 0001593 \N 95887 107 0002183 \N 95888 107 0001983 \N 95889 107 0002053 \N 95890 187 MSP \N 95891 107 0001029 \N 95892 107 0002118 \N 95893 107 0001975 \N 95894 107 0001917 \N 95895 107 0000129 \N 95896 107 0001031 \N 95897 107 0000796 \N 95898 107 0001488 \N 95899 107 0001867 \N 95900 107 0000470 \N 95901 107 0000420 \N 95902 107 0000650 \N 95903 107 0000249 \N 95904 107 0001620 \N 95905 107 0000330 \N 95906 107 0000938 \N 95907 107 0000838 \N 95908 107 0001965 \N 95909 107 0000085 \N 95910 107 0001510 \N 95911 107 0001733 \N 95912 107 0001249 \N 95913 107 0001555 \N 95914 107 0001459 \N 95915 107 0001719 \N 95916 107 0002140 \N 95917 107 0000478 \N 95918 107 0001951 \N 95919 107 0002033 \N 95920 107 0000458 \N 95921 107 0001287 \N 95922 107 0000099 \N 95923 107 0001270 \N 95924 107 0001020 \N 95925 107 0001756 \N 95926 107 0000337 \N 95927 107 0000334 \N 95928 107 0001167 \N 95929 107 0001535 \N 95930 107 0001225 \N 95931 107 0001823 \N 95932 107 0001682 \N 95933 107 0001894 \N 95934 107 0000028 \N 95935 107 0000745 \N 95936 107 0001278 \N 95937 107 0000730 \N 95938 107 0001885 \N 95939 107 0000117 \N 95940 107 0001243 \N 95941 107 0001952 \N 95942 107 0002245 \N 95943 107 0000619 \N 95944 107 0001656 \N 95945 107 0000213 \N 95946 107 0002076 \N 95947 107 0001958 \N 95948 107 0001575 \N 95949 107 0001133 \N 95950 107 0001044 \N 95951 107 0002075 \N 95952 107 0001157 \N 95953 107 0001368 \N 95954 107 0002263 \N 95955 107 0002161 \N 95956 222 mondofacto "http \N 95957 107 0000528 \N 95958 107 0001311 \N 95959 107 0000626 \N 95960 107 0000300 \N 95961 107 0000692 \N 95962 107 0000041 \N 95963 107 0000974 \N 95964 107 0000461 \N 95965 107 0000482 \N 95966 107 0001322 \N 95967 107 0002022 \N 95968 187 PEM \N 95969 107 0001638 \N 95970 107 0000221 \N 95971 107 0002235 \N 95972 107 0001586 \N 95973 107 0001163 \N 95974 107 0001008 \N 95975 107 0001405 \N 95976 107 0000144 \N 95977 107 0001002 \N 95978 107 0001578 \N 95979 107 0001402 \N 95980 107 0000585 \N 95981 107 0000412 \N 95982 107 0001250 \N 95983 107 0002266 \N 95984 187 OREGON \N 95985 107 0000731 \N 95986 107 0001524 \N 95987 223 studyphysics "http \N 95988 107 0002270 \N 95989 107 0001152 \N 95990 107 0000341 \N 95991 107 0000216 \N 95992 107 0000449 \N 95993 107 0001808 \N 95994 107 0001378 \N 95995 107 0002294 \N 95996 224 Book "Harris \N 95997 225 1-31." \N 95998 107 0001715 \N 95999 107 0000993 \N 96000 107 0000014 \N 96001 107 0000020 \N 96002 107 0000504 \N 96003 107 0001177 \N 96004 107 0001890 \N 96005 226 InfoVisual "http \N 96006 107 0001942 \N 96007 107 0001711 \N 96008 107 0002064 \N 96009 107 0000116 \N 96010 107 0000879 \N 96011 107 0002147 \N 96012 107 0001908 \N 96013 107 0001304 \N 96014 107 0001228 \N 96015 107 0000171 \N 96016 107 0000850 \N 96017 107 0002106 \N 96018 107 0000802 \N 96019 107 0001745 \N 96020 107 0001822 \N 96021 227 wordreference.com "http \N 96022 107 0000076 \N 96023 107 0001236 \N 96024 107 0001239 \N 96025 107 0001240 \N 96026 107 0002139 \N 96027 107 0001330 \N 96028 107 0000080 \N 96029 107 0002132 \N 96030 107 0000564 \N 96031 107 0000658 \N 96032 107 0000183 \N 96033 107 0001466 \N 96034 107 0000656 \N 96035 107 0001994 \N 96036 107 0002044 \N 96037 107 0000042 \N 96038 107 0001415 \N 96039 107 0001365 \N 96040 107 0000641 \N 96041 107 0000298 \N 96042 107 0002150 \N 96043 107 0002122 \N 96044 107 0001571 \N 96045 107 0001317 \N 96046 107 0000231 \N 96047 107 0001054 \N 96048 107 0000771 \N 96049 107 0000901 \N 96050 107 0001470 \N 96051 107 0000954 \N 96052 107 0000674 \N 96053 107 0000552 \N 96054 107 0000227 \N 96055 107 0001447 \N 96056 107 0002099 \N 96057 107 0001542 \N 96058 107 0001839 \N 96059 107 0000888 \N 96060 107 0001242 \N 96061 107 0002167 \N 96062 107 0000925 \N 96063 107 0001847 \N 96064 107 0001837 \N 96065 107 0000207 \N 96066 107 0001728 \N 96067 107 0001078 \N 96068 107 0000916 \N 96069 107 0000671 \N 96070 107 0001496 \N 96071 107 0001520 \N 96072 107 0001187 \N 96073 107 0001161 \N 96074 107 0001351 \N 96075 107 0000737 \N 96076 107 0000833 \N 96077 107 0000534 \N 96078 107 0001854 \N 96079 107 0000945 \N 96080 107 0001196 \N 96081 107 0000166 \N 96082 107 0000088 \N 96083 107 0001780 \N 96084 207 Wiikipedia "http \N 96085 107 0000997 \N 96086 107 0000932 \N 96087 107 0001181 \N 96088 107 0000168 \N 96089 107 0001327 \N 96090 107 0001605 \N 96091 107 0001978 \N 96092 107 0000906 \N 96093 107 0000348 \N 96094 107 0000178 \N 96095 107 0001774 \N 96096 107 0000866 \N 96097 107 0000097 \N 96098 107 0001121 \N 96099 107 0002217 \N 96100 107 0000437 \N 96101 107 0001980 \N 96102 107 0002105 \N 96103 107 0002088 \N 96104 107 0002193 \N 96105 107 0001911 \N 96106 107 0001639 \N 96107 107 0001903 \N 96108 107 0001092 \N 96109 107 0001784 \N 96110 107 0000684 \N 96111 107 0001409 \N 96112 107 0001364 \N 96113 107 0000173 \N 96114 107 0000714 \N 96115 107 0001224 \N 96116 107 0000622 \N 96117 107 0001025 \N 96118 107 0001310 \N 96119 107 0001341 \N 96120 107 0000509 \N 96121 107 0001124 \N 96122 107 0000392 \N 96123 107 0001552 \N 96124 107 0000155 \N 96125 107 0000607 \N 96126 107 0000722 \N 96127 107 0001962 \N 96128 107 0001431 \N 96129 107 0000637 \N 96130 107 0001876 \N 96131 107 0002232 \N 96132 107 0000283 \N 96133 107 0000383 \N 96134 107 0000593 \N 96135 107 0000958 \N 96136 107 0001971 \N 96137 107 0001497 \N 96138 107 0000696 \N 96139 107 0000614 \N 96140 107 0000896 \N 96141 107 0000361 \N 96142 107 0001742 \N 96143 107 0000135 \N 96144 107 0001449 \N 96145 107 0000051 \N 96146 107 0000378 \N 96147 107 0000405 \N 96148 107 0000911 \N 96149 107 0000025 \N 96150 107 0002015 \N 96151 107 0000660 \N 96152 107 0000065 \N 96153 107 0001680 \N 96154 107 0001070 \N 96155 107 0000234 \N 96156 107 0000466 \N 96157 107 0001665 \N 96158 107 0001471 \N 96159 107 0002057 \N 96160 107 0000729 \N 96161 107 0002166 \N 96162 107 0001412 \N 96163 107 0000588 \N 96164 107 0001987 \N 96165 107 0000136 \N 96166 107 0002187 \N 96167 107 0000324 \N 96168 107 0001047 \N 96169 107 0001230 \N 96170 107 0001814 \N 96171 107 0001596 \N 96172 107 0001666 \N 96173 107 0001736 \N 96174 107 0001514 \N 96175 107 0000121 \N 96176 107 0001694 \N 96177 107 0001356 \N 96178 107 0001060 \N 96179 107 0000981 \N 96180 107 0002179 \N 96181 107 0001083 \N 96182 107 0000318 \N 96183 107 0000343 \N 96184 107 0002221 \N 96185 107 0002068 \N 96186 107 0001106 \N 96187 107 0001231 \N 96188 107 0000823 \N 96189 107 0002250 \N 96190 107 0000532 \N 96191 107 0002111 \N 96192 107 0000438 \N 96193 107 0001142 \N 96194 107 0001813 \N 96195 107 0001925 \N 96196 107 0001173 \N 96197 107 0000001 \N 96198 107 0000072 \N 96199 107 0002285 \N 96200 187 CVS \N 96201 107 0000354 \N 96202 107 0002144 \N 96203 107 0001012 \N 96204 107 0001531 \N 96205 107 0000705 \N 96206 107 0000522 \N 96207 107 0001699 \N 96208 107 0002282 \N 96209 107 0001282 \N 96210 107 0000058 \N 96211 107 0000969 \N 96212 107 0000375 \N 96213 107 0001484 \N 96214 107 0000474 \N 96215 107 0001646 \N 96216 187 nc \N 96217 107 0000884 \N 96218 107 0001611 \N 96219 107 0002037 \N 96220 107 0001932 \N 96221 107 0001216 \N 96222 107 0001103 \N 96223 107 0001475 \N 96224 107 0000486 \N 96225 107 0001759 \N 96226 107 0001214 \N 96227 107 0002212 \N 96228 107 0001788 \N 96229 107 0001323 \N 96230 107 0001799 \N 96231 228 .thefreedictionary.com "http \N 96232 107 0000161 \N 96233 107 0000418 \N 96234 107 0001040 \N 96235 107 0002241 \N 96236 107 0000304 \N 96237 107 0000107 \N 96238 107 0000421 \N 96239 107 0001396 \N 96240 107 0002071 \N 96241 107 0000113 \N 96242 107 0002201 \N 96243 205 2178 \N 96244 107 0002084 \N 96245 107 0000251 \N 96246 107 0001005 \N 96247 107 0002308 \N 96248 107 0002175 \N 96249 107 0001538 \N 96250 229 edp "www.edp-uk.com/glossaries/terms.htm" \N 96251 107 0001731 \N 96252 107 0001772 \N 96253 107 0001801 \N 96254 107 0001652 \N 96255 107 0000035 \N 96256 107 0001337 \N 96257 107 0000862 \N 96258 107 0001686 \N 96259 107 0001037 \N 96260 107 0001291 \N 96261 107 0000988 \N 96262 107 0000767 \N 96263 107 0000454 \N 96264 107 0001659 \N 96265 107 0001878 \N 96266 107 0000648 \N 96267 107 0000787 \N 96268 107 0001182 \N 96269 107 0000203 \N 96270 107 0000610 \N 96271 107 0001049 \N 96272 107 0001923 \N 96273 107 0001957 \N 96274 107 0001920 \N 96275 107 0001863 \N 96276 107 0000285 \N 96277 107 0000431 \N 96278 107 0001634 \N 96279 107 0001288 \N 96280 107 0001677 \N 96281 107 0000611 \N 96282 107 0002004 \N 96283 107 0001714 \N 96284 107 0002136 \N 96285 107 0001112 \N 96286 107 0001373 \N 96287 107 0001455 \N 96288 107 0001798 \N 96289 107 0002208 \N 96290 107 0001115 \N 96291 107 0000346 \N 96292 107 0002072 \N 96293 107 0000797 \N 96294 107 0001043 \N 96295 107 0000133 \N 96296 107 0000137 \N 96297 107 0000937 \N 96298 107 0000311 \N 96299 107 0001950 \N 96300 107 0001030 \N 96301 107 0002213 \N 96302 107 0000704 \N 96303 107 0002268 \N 96304 107 0001929 \N 96305 107 0001982 \N 96306 107 0001972 \N 96307 107 0000380 \N 96308 107 0000181 \N 96309 107 0001685 \N 96310 107 0000070 \N 96311 107 0000053 \N 96312 107 0000071 \N 96313 107 0001169 \N 96314 107 0001226 \N 96315 107 0000757 \N 96316 107 0001960 \N 96317 187 wdahdul \N 96318 107 0001126 \N 96319 107 0002273 \N 96320 107 0000374 \N 96321 107 0001153 \N 96322 107 0001400 \N 96323 107 0001271 \N 96324 107 0001102 \N 96325 107 0000804 \N 96326 107 0000818 \N 96327 107 0001321 \N 96328 230 thesaurus.math "http \N 96329 107 0002244 \N 96330 107 0002206 \N 96331 107 0000861 \N 96332 107 0002083 \N 96333 107 0001178 \N 96334 107 0001858 \N 96335 107 0001574 \N 96336 107 0001804 \N 96337 107 0001185 \N 96338 107 0002299 \N 96339 107 0001394 \N 96340 107 0000140 \N 96341 107 0001032 \N 96342 107 0001631 \N 96343 107 0001766 \N 96344 107 0000359 \N 96345 107 0001527 \N 96346 107 0002303 \N 96347 107 0001433 \N 96348 107 0001489 \N 96349 107 0001246 \N 96350 107 0001015 \N 96351 107 0000052 \N 96352 107 0001647 \N 96353 107 0000096 \N 96354 107 0000736 \N 96355 107 0000667 \N 96356 107 0000510 \N 96357 107 0001326 \N 96358 107 0002019 \N 96359 107 0000301 \N 96360 107 0001099 \N 96361 107 0002054 \N 96362 187 msp \N 96363 107 0000559 \N 96364 107 0000462 \N 96365 107 0001996 \N 96366 231 thefreedictionary. "http \N 96367 107 0001936 \N 96368 107 0000396 \N 96369 107 0000725 \N 96370 107 0001233 \N 96371 107 0001147 \N 96372 107 0001870 \N 96373 107 0000219 \N 96374 107 0000782 \N 96375 107 0001494 \N 96376 107 0000093 \N 96377 107 0001989 \N 96378 107 0001585 \N 96379 107 0001018 \N 96380 107 0002079 \N 96381 107 0001369 \N 96382 107 0001007 \N 96383 107 0001732 \N 96384 107 0000556 \N 96385 107 0000872 \N 96386 107 0000467 \N 96387 107 0002049 \N 96388 107 0001625 \N 96389 107 MAH \N 96390 107 0001080 \N 96391 107 0001166 \N 96392 107 0001592 \N 96393 107 0000723 \N 96394 107 0002032 \N 96395 107 0000525 \N 96396 107 0000675 \N 96397 107 0000201 \N 96398 107 0001027 \N 96399 107 0000844 \N 96400 107 0000210 \N 96401 107 0001290 \N 96402 172 www.thefreedictionary.com/ \N 96403 107 0000034 \N 96404 107 0002050 \N 96405 107 0001819 \N 96406 107 0001725 \N 96407 107 0000247 \N 96408 107 0000592 \N 96409 107 0000638 \N 96410 107 0001300 \N 96411 107 0001295 \N 96412 107 0001219 \N 96413 107 0000573 \N 96414 107 0000968 \N 96415 107 0000165 \N 96416 107 0002067 \N 96417 107 0000270 \N 96418 107 0001697 \N 96419 107 0001946 \N 96420 107 0001595 \N 96421 107 0000498 \N 96422 107 0000715 \N 96423 107 0001506 \N 96424 107 0001995 \N 96425 107 0000857 \N 96426 107 0000772 \N 96427 107 0001751 \N 96428 107 0001703 \N 96429 107 0000262 \N 96430 107 0001918 \N 96431 107 0000999 \N 96432 107 0000473 \N 96433 107 0000749 \N 96434 107 0000777 \N 96435 107 0001810 \N 96436 107 0001490 \N 96437 107 0000353 \N 96438 107 0001721 \N 96439 107 0001229 \N 96440 107 0001600 \N 96441 107 0001485 \N 96442 107 0001840 \N 96443 107 0000599 \N 96444 107 0001460 \N 96445 107 0000921 \N 96446 107 0001052 \N 96447 107 0000050 \N 96448 107 0000902 \N 96449 107 0000258 \N 96450 107 0000817 \N 96451 107 0002292 \N 96452 107 0000240 \N 96453 107 0002098 \N 96454 107 0000288 \N 96455 107 0001021 \N 96456 107 0002260 \N 96457 107 0000363 \N 96458 107 0000820 \N 96459 107 0002254 \N 96460 107 0000973 \N 96461 107 0000241 \N 96462 107 0000191 \N 96463 107 0001833 \N 96464 107 0001825 \N 96465 107 0000338 \N 96466 107 0001773 \N 96467 232 hefreedictionary.com "http \N 96468 107 0001095 \N 96469 107 0000508 \N 96470 107 0001547 \N 96471 107 0000373 \N 96472 107 0000920 \N 96473 107 0000269 \N 96474 107 0002170 \N 96475 107 0000949 \N 96476 107 0002029 \N 96477 107 0001607 \N 96478 107 0000789 \N 96479 107 0002077 \N 96480 107 0000007 \N 96481 107 0002156 \N 96482 107 0000627 \N 96483 107 0000811 \N 96484 107 0000447 \N 96485 107 0000040 \N 96486 107 0000029 \N 96487 107 0000434 \N 96488 107 0001669 \N 96489 107 0001345 \N 96490 107 0001740 \N 96491 107 0001637 \N 96492 107 0001191 \N 96493 107 0000175 \N 96494 107 0000895 \N 96495 107 0001892 \N 96496 107 0002124 \N 96497 107 0000661 \N 96498 107 0001842 \N 96499 233 biology-online "http \N 96500 107 0001943 \N 96501 107 0001404 \N 96502 107 0000114 \N 96503 107 0001257 \N 96504 107 0001907 \N 96505 187 cvs \N 96506 107 0000184 \N 96507 107 0000483 \N 96508 107 0002196 \N 96509 107 0000841 \N 96510 107 0000880 \N 96511 107 0000899 \N 96512 107 0001314 \N 96513 107 0001710 \N 96514 107 0001286 \N 96515 107 0000877 \N 96516 107 0000603 \N 96517 107 0001189 \N 96518 107 0001895 \N 96519 214 wikipedia "http \N 96520 107 0001748 \N 96521 107 0000546 \N 96522 107 0000399 \N 96523 107 0001901 \N 96524 107 0001802 \N 96525 107 0001416 \N 96526 107 0001897 \N 96527 107 0001072 \N 96528 107 0000535 \N 96529 107 0001845 \N 96530 107 0000194 \N 96531 107 0000890 \N 96532 107 0002093 \N 96533 107 0002295 \N 96534 107 0001332 \N 96535 107 0002148 \N 96536 107 0000100 \N 96537 107 0000309 \N 96538 107 0000878 \N 96539 107 0000450 \N 96540 107 0001739 \N 96541 107 0000000 \N 96542 107 0001693 \N 96543 107 0002126 \N 96544 107 0002230 \N 96545 107 0000764 \N 96546 234 www.answers.com "http \N 96547 107 0001362 \N 96548 107 0000595 \N 96549 107 0002277 \N 96550 107 0000919 \N 96551 107 0000176 \N 96552 107 0000297 \N 96553 107 0001423 \N 96554 233 biology-online "www.biology-online.org/" \N 96555 107 0001670 \N 96556 107 0000583 \N 96557 107 0001517 \N 96558 107 0001251 \N 96559 107 0000277 \N 96560 107 0001617 \N 96561 107 0001206 \N 96562 107 0000238 \N 96563 107 0001248 \N 96564 107 0001186 \N 96565 107 0001319 \N 96566 107 0001467 \N 96567 107 0001055 \N 96568 107 0000355 \N 96569 107 0000608 \N 96570 107 0001902 \N 96571 107 0001066 \N 96572 107 0001689 \N 96573 107 0000480 \N 96574 107 0001926 \N 96575 107 0000317 \N 96576 107 0002036 \N 96577 107 0000577 \N 96578 107 0002087 \N 96579 107 0001836 \N 96580 107 0001339 \N 96581 107 0001073 \N 96582 107 0000647 \N 96583 107 0000086 \N 96584 107 0001755 \N 96585 107 0000316 \N 96586 107 0000414 \N 96587 107 0001760 \N 96588 107 0000542 \N 96589 107 0000839 \N 96590 107 0001795 \N 96591 107 0001789 \N 96592 107 0000708 \N 96593 107 0000707 \N 96594 107 0001591 \N 96595 107 0001160 \N 96596 107 0000388 \N 96597 107 0001143 \N 96598 107 0002014 \N 96599 107 0000120 \N 96600 107 0001094 \N 96601 107 0000250 \N 96602 107 0001512 \N 96603 235 medical-dictionary "http \N 96604 107 0001215 \N 96605 107 0001884 \N 96606 107 0000110 \N 96607 107 0000259 \N 96608 107 0000511 \N 96609 107 0000331 \N 96610 107 0000206 \N 96611 107 0002141 \N 96612 107 0000693 \N 96613 107 0000690 \N 96614 107 0000426 \N 96615 107 0000177 \N 96616 107 0001294 \N 96617 107 0002276 \N 96618 107 0000092 \N 96619 107 0001503 \N 96620 107 0002240 \N 96621 191 wordnetweb.princeton.edu/perl/webwn \N 96622 107 0001476 \N 96623 107 0000004 \N 96624 107 0000596 \N 96625 107 0001136 \N 96626 107 0000808 \N 96627 107 0001299 \N 96628 107 0000514 \N 96629 107 0001260 \N 96630 107 0000422 \N 96631 107 0001912 \N 96632 107 0000883 \N 96633 107 0000152 \N 96634 107 0001267 \N 96635 107 0001539 \N 96636 107 0001428 \N 96637 107 0001986 \N 96638 107 0000055 \N 96639 107 0001815 \N 96640 107 0001454 \N 96641 107 0000322 \N 96642 107 0002202 \N 96643 205 2038 \N 96644 107 0001553 \N 96645 107 0000768 \N 96646 107 0001162 \N 96647 107 0001411 \N 96648 107 0000325 \N 96649 107 0001352 \N 96650 107 0000965 \N 96651 107 0002220 \N 96652 214 en.wikipedia.org/wiki/Phosphorylated \N 96653 107 0001309 \N 96654 107 0000081 \N 96655 187 mellybelly \N 96656 107 0001036 \N 96657 107 0001009 \N 96658 107 0000215 \N 96659 107 0001432 \N 96660 236 Medical-dictionary "http \N 96661 107 0002009 \N 96662 107 0001658 \N 96663 107 0000957 \N 96664 107 0002289 \N 96665 86 0913424137 "Nichols SW (1989) The Torre-Bueno Glossary of Entomology. The New York E" \N 96666 107 0001048 \N 96667 107 0000446 \N 96668 107 0001567 \N 96669 107 0000769 \N 96670 107 0000328 \N 96671 107 0001158 \N 96672 107 0001109 \N 96673 107 0001305 \N 96674 107 0000678 \N 96675 107 0001241 \N 96676 107 0001237 \N 96677 107 0001238 \N 96678 107 0001629 \N 96679 107 0000406 \N 96680 107 0000233 \N 96681 107 0000409 \N 96682 107 0002110 \N 96683 107 0000854 \N 96684 107 0000752 \N 96685 107 0001702 \N 96686 107 0001933 \N 96687 107 0000349 \N 96688 107 0000628 \N 96689 107 0000621 \N 96690 107 0001707 \N 96691 107 0002045 \N 96692 107 0001758 \N 96693 107 0000026 \N 96694 107 0001462 \N 96695 107 0001930 \N 96696 107 0001523 \N 96697 107 0002178 \N 96698 107 0001382 \N 96699 107 0001357 \N 96700 107 0002133 \N 96701 214 wikipedia "en.wikipedia.org/wiki/adduction" \N 96702 107 0001767 \N 96703 107 0000060 \N 96704 107 0000132 \N 96705 107 0001565 \N 96706 107 0001866 \N 96707 107 0001119 \N 96708 107 0002058 \N 96709 107 0002214 \N 96710 107 0000160 \N 96711 107 0000824 \N 96712 107 0000493 \N 96713 107 0000565 \N 96714 107 0001170 \N 96715 107 0001313 \N 96716 107 0001873 \N 96717 107 0001203 \N 96718 107 0001964 \N 96719 107 0000362 \N 96720 107 0001395 \N 96721 107 0001046 \N 96722 107 0001821 \N 96723 107 0001366 \N 96724 107 0001258 \N 96725 107 0000609 \N 96726 107 0001690 \N 96727 107 0000915 \N 96728 107 0001316 \N 96729 107 0001101 \N 96730 107 0001536 \N 96731 107 0001481 \N 96732 107 0001543 \N 96733 107 0001091 \N 96734 107 0000457 \N 96735 107 0000834 \N 96736 107 0000672 \N 96737 107 0001698 \N 96738 107 0001011 \N 96739 107 0000340 \N 96740 107 0001245 \N 96741 107 0000996 \N 96742 107 0001379 \N 96743 107 0001195 \N 96744 107 0000272 \N 96745 107 0000463 \N 96746 107 0000580 \N 96747 107 0001706 \N 96748 107 0000570 \N 96749 107 0000089 \N 96750 107 0000266 \N 96751 107 0000840 \N 96752 107 0001384 \N 96753 107 0001853 \N 96754 107 0000477 \N 96755 107 0001744 \N 96756 237 hps "http \N 96757 107 0001139 \N 96758 107 0000038 \N 96759 107 0001849 \N 96760 107 0002073 \N 96761 107 0002031 \N 96762 107 0000792 \N 96763 107 0000199 \N 96764 107 0000443 \N 96765 120 MP "OBO" \N 96766 107 0001380 \N 96767 107 0000069 \N 96768 107 0001370 \N 96769 107 0001879 \N 96770 107 0000951 \N 96771 107 0001979 \N 96772 107 0000497 \N 96773 107 0001889 \N 96774 238 EnglishDictionary \N 96775 107 0000776 \N 96776 107 0001283 \N 96777 107 0000202 \N 96778 107 0000538 \N 96779 107 0001336 \N 96780 107 0000686 \N 96781 107 0002121 \N 96782 107 0001604 \N 96783 107 0000172 \N 96784 107 0001003 \N 96785 107 0001869 \N 96786 107 0000652 \N 96787 107 0001564 \N 96788 107 0002101 \N 96789 107 0000587 \N 96790 107 0002283 \N 96791 107 0002114 \N 96792 107 0000987 \N 96793 107 0000033 \N 96794 107 0001180 \N 96795 107 0000874 \N 96796 107 0000786 \N 96797 107 0002307 \N 96798 107 0001437 \N 96799 107 0001781 \N 96800 107 0001526 \N 96801 107 0002174 \N 96802 107 0001589 \N 96803 107 0001846 \N 96804 107 0001785 \N 96805 107 0000367 \N 96806 107 0002109 \N 96807 107 0000887 \N 96808 107 0001377 \N 96809 107 0002229 \N 96810 107 0001674 \N 96811 239 IUPAC "http \N 96812 107 0001342 \N 96813 107 0000149 \N 96814 107 0000075 \N 96815 107 0001372 \N 96816 188 WordNet "wordnet.princeton.edu/perl/webwn" \N 96817 107 0000017 \N 96818 107 0000623 \N 96819 240 sdvc "www.sdvc.uwyo.edu/grasshopper/ghnmglos.htm" \N 96820 107 0000970 \N 96821 107 0002234 \N 96822 107 0000503 \N 96823 107 0001123 \N 96824 107 0000391 \N 96825 107 0002227 \N 96826 107 0002165 \N 96827 107 0001955 \N 96828 107 0000615 \N 96829 107 0001275 \N 96830 107 0002020 \N 96831 107 0000211 \N 96832 107 0002267 \N 96833 107 0001221 \N 96834 107 0002151 \N 96835 107 0001961 \N 96836 107 0000931 \N 96837 107 0000430 \N 96838 107 0001809 \N 96839 107 0001998 \N 96840 107 0001947 \N 96841 107 0000549 \N 96842 107 0000384 \N 96843 107 0000281 \N 96844 107 0002291 \N 96845 107 0001664 \N 96846 107 0001558 \N 96847 107 0000255 \N 96848 107 0000642 \N 96849 107 0000104 \N 96850 107 0002298 \N 96851 107 0001074 \N 96852 107 0000912 \N 96853 107 0001737 \N 96854 107 0000946 \N 96855 107 0001614 \N 96856 107 0001778 \N 96857 107 0002023 \N 96858 107 0000553 \N 96859 107 0001469 \N 96860 107 0000342 \N 96861 107 0001458 \N 96862 107 0001570 \N 96863 107 0000847 \N 96864 107 0000805 \N 96865 107 0000170 \N 96866 107 0001419 \N 96867 107 0000043 \N 96868 107 0000992 \N 96869 107 0000305 \N 96870 107 0001174 \N 96871 107 0000657 \N 96872 107 0000748 \N 96873 107 0000655 \N 96874 107 0000829 \N 96875 107 0001273 \N 96876 107 0001408 \N 96877 107 0000734 \N 96878 107 0001061 \N 96879 107 0000180 \N 96880 107 0001019 \N 96881 107 0002018 \N 96882 107 0000066 \N 96883 107 0000246 \N 96884 107 0000781 \N 96885 107 0001763 \N 96886 107 0000571 \N 96887 107 0000123 \N 96888 107 0001148 \N 96889 107 0001696 \N 96890 107 0001655 \N 96891 107 0001550 \N 96892 107 0000157 \N 96893 107 0000724 \N 96894 107 0001770 \N 96895 107 0001232 \N 96896 107 0001988 \N 96897 107 0001519 \N 96898 107 0000490 \N 96899 107 0000591 \N 96900 107 0002207 \N 96901 107 0000694 \N 96902 107 0000691 \N 96903 107 melissa \N 96904 107 0000536 \N 96905 107 0001222 \N 96906 107 0001871 \N 96907 107 0000604 \N 96908 107 0000726 \N 96909 107 0000290 \N 96910 107 0001573 \N 96911 107 0000197 \N 96912 107 0001098 \N 96913 107 0000302 \N 96914 107 0002239 \N 96915 107 0000275 \N 96916 107 0001499 \N 96917 107 0000408 \N 96918 107 0000095 \N 96919 107 0001355 \N 96920 107 0000061 \N 96921 107 0000756 \N 96922 107 0001681 \N 96923 107 0001014 \N 96924 107 0000605 \N 96925 107 0000023 \N 96926 107 0001081 \N 96927 107 0000836 \N 96928 107 0000845 \N 96929 107 0001401 \N 96930 107 0000620 \N 96931 107 0001205 \N 96932 107 0002055 \N 96933 107 0000560 \N 96934 107 0000475 \N 96935 107 0000230 \N 96936 107 0001561 \N 96937 107 0000788 \N 96938 107 0001726 \N 96939 107 0001100 \N 96940 107 0000402 \N 96941 107 0002051 \N 96942 107 0001347 \N 96943 107 0000472 \N 96944 107 0002137 \N 96945 107 0000855 \N 96946 107 0001483 \N 96947 107 0000345 \N 96948 107 0001934 \N 96949 107 0001472 \N 96950 107 0001692 \N 96951 107 0001754 \N 96952 107 0002066 \N 96953 107 0000200 \N 96954 107 0001618 \N 96955 107 0000505 \N 96956 107 0001486 \N 96957 188 Wordnet "http \N 96958 107 0000499 \N 96959 107 0000716 \N 96960 107 0001937 \N 96961 107 0002190 \N 96962 107 0000821 \N 96963 107 0000416 \N 96964 107 0001537 \N 96965 107 0001289 \N 96966 107 0001956 \N 96967 107 0000851 \N 96968 107 0001033 \N 96969 107 0001062 \N 96970 107 0001301 \N 96971 107 0000703 \N 96972 107 0000598 \N 96973 107 0000335 \N 96974 107 0001559 \N 96975 107 0002082 \N 96976 107 0001541 \N 96977 107 0000428 \N 96978 107 0001259 \N 96979 107 0001111 \N 96980 107 0001350 \N 96981 107 0000646 \N 96982 107 0000526 \N 96983 107 0001165 \N 96984 107 0000747 \N 96985 107 0001811 \N 96986 107 0001985 \N 96987 241 OBI \N 96988 107 0001042 \N 96989 107 0001429 \N 96990 107 0001967 \N 96991 107 0001548 \N 96992 107 0001672 \N 96993 107 0000711 \N 96994 107 0001516 \N 96995 107 0002046 \N 96996 235 http \N 96997 107 0001713 \N 96998 107 0001105 \N 96999 107 0000612 \N 97000 107 0000147 \N 97001 107 0000613 \N 97002 107 0001865 \N 97003 107 0001864 \N 97004 107 0001862 \N 97005 107 0000427 \N 97006 107 0000936 \N 97007 107 0001940 \N 97008 187 UMH \N 97009 107 0001857 \N 97010 107 0001343 \N 97011 107 0001622 \N 97012 107 0000267 \N 97013 107 0001738 \N 97014 107 0001114 \N 97015 107 0000502 \N 97016 107 0001132 \N 97017 107 0000860 \N 97018 107 0001159 \N 97019 107 0000697 \N 97020 107 0000150 \N 97021 107 0001921 \N 97022 107 0001439 \N 97023 107 0001498 \N 97024 107 0002210 \N 97025 107 0000972 \N 97026 107 0002265 \N 97027 107 0001761 \N 97028 107 0001140 \N 97029 107 0002286 \N 97030 107 0000484 \N 97031 107 0000390 \N 97032 107 0000377 \N 97033 107 0000984 \N 97034 107 0000819 \N 97035 107 0001272 \N 97036 107 0000432 \N 97037 107 0000115 \N 97038 107 0000319 \N 97039 107 0001035 \N 97040 107 0001684 \N 97041 107 0001805 \N 97042 107 0000329 \N 97043 107 0001000 \N 97044 107 0001154 \N 97045 107 0001440 \N 97046 107 0001261 \N 97047 107 0002209 \N 97048 107 0002189 \N 97049 107 0001190 \N 97050 107 0001376 \N 97051 107 0001188 \N 97052 107 0001446 \N 97053 107 0000296 \N 97054 107 0000926 \N 97055 107 0002195 \N 97056 107 0002123 \N 97057 107 0000871 \N 97058 107 0000164 \N 97059 107 0001671 \N 97060 107 0001407 \N 97061 107 0001184 \N 97062 107 0001747 \N 97063 107 0000185 \N 97064 198 thefreedictionary "www.thefreedictionary.com" \N 97065 107 0000876 \N 97066 107 0000453 \N 97067 107 0000842 \N 97068 107 0001584 \N 97069 107 0000898 \N 97070 107 0001417 \N 97071 107 0000398 \N 97072 107 0001293 \N 97073 107 0002063 \N 97074 107 0001898 \N 97075 107 0002309 \N 97076 187 DC \N 97077 107 0001649 \N 97078 107 0001896 \N 97079 107 0000315 \N 97080 107 0001306 \N 97081 107 0000677 \N 97082 107 0001331 \N 97083 107 0001391 \N 97084 107 0000237 \N 97085 107 0000193 \N 97086 107 0002035 \N 97087 107 0000548 \N 97088 107 0002237 \N 97089 107 0000761 \N 97090 107 0001900 \N 97091 107 0000891 \N 97092 107 0000831 \N 97093 107 0001171 \N 97094 107 0000550 \N 97095 107 0002182 \N 97096 107 0002061 \N 97097 107 0001906 \N 97098 107 0002153 \N 97099 107 0001636 \N 97100 107 0001522 \N 97101 107 0000101 \N 97102 107 0000519 \N 97103 107 0002092 \N 97104 107 0000574 \N 97105 107 0002104 \N 97106 107 0001252 \N 97107 107 0000545 \N 97108 107 0000683 \N 97109 107 0000016 \N 97110 107 0000865 \N 97111 107 0001830 \N 97112 107 0001280 \N 97113 107 0001279 \N 97114 107 0000276 \N 97115 107 0000586 \N 97116 107 0001202 \N 97117 107 0000284 \N 97118 107 0001887 \N 97119 107 0001532 \N 97120 107 0002007 \N 97121 107 0000939 \N 97122 107 0000435 \N 97123 107 0000046 \N 97124 107 0000222 \N 97125 107 0002261 \N 97126 107 0000967 \N 97127 107 0001610 \N 97128 107 0001939 \N 97129 107 0000913 \N 97130 107 0000507 \N 97131 107 0001038 \N 97132 107 0000567 \N 97133 107 0001349 \N 97134 107 0000263 \N 97135 107 0000947 \N 97136 107 0002222 \N 97137 107 0000900 \N 97138 107 0000858 \N 97139 107 0000766 \N 97140 107 0000444 \N 97141 107 0000226 \N 97142 107 0001387 \N 97143 107 0002177 \N 97144 107 0000013 \N 97145 107 0002293 \N 97146 107 0000922 \N 97147 107 0002253 \N 97148 107 0001118 \N 97149 107 0000389 \N 97150 242 reference "http \N 97151 107 0000566 \N 97152 107 0000082 \N 97153 243 reference.com "http \N 97154 107 0000778 \N 97155 107 0000826 \N 97156 107 0000381 \N 97157 107 0000979 \N 97158 107 0001910 \N 97159 107 0000209 \N 97160 107 0001199 \N 97161 107 0001056 \N 97162 107 0001268 \N 97163 107 0000372 \N 97164 107 0002164 \N 97165 107 0000676 \N 97166 107 0000803 \N 97167 107 0000744 \N 97168 107 0000479 \N 97169 107 0001768 \N 97170 107 0001606 \N 97171 244 .answers.com "http \N 97172 107 0000126 \N 97173 107 0000809 \N 97174 107 0001463 \N 97175 107 0001824 \N 97176 107 0001473 \N 97177 107 0000735 \N 97178 107 0001420 1 \N 97179 107 0001790 \N 97180 107 0001544 \N 97181 107 0001179 \N 97182 107 0001509 \N 97183 107 0001668 \N 97184 107 0000961 \N 97185 107 0001346 \N 97186 107 0001325 \N 97187 107 0000190 \N 97188 107 0000127 \N 97189 107 0000633 \N 97190 107 0002279 \N 97191 107 0000010 \N 97192 107 0001701 \N 97193 107 0001954 \N 97194 107 0001122 \N 97195 107 0001976 \N 97196 107 0001734 \N 97197 107 0001398 \N 97198 107 0002249 \N 97199 107 0000326 \N 97200 107 0000138 \N 97201 107 0002078 \N 97202 107 0002021 \N 97203 107 0000662 \N 97204 107 0000825 \N 97205 107 0001201 \N 97206 107 0002120 \N 97207 107 0000047 \N 97208 107 0000720 \N 97209 107 0000793 \N 97210 107 0000236 \N 97211 107 0001390 \N 97212 107 0001624 \N 97213 107 0001556 \N 97214 107 0001568 \N 97215 107 0001641 \N 97216 107 0001642 \N 97217 107 0002008 \N 97218 107 0000894 \N 97219 107 0002042 \N 97220 107 0000639 \N 97221 107 0000464 \N 97222 107 0001381 \N 97223 107 0002011 \N 97224 107 0002252 \N 97225 187 JC \N 97226 107 0000557 \N 97227 107 0001089 \N 97228 107 0000494 \N 97229 107 0000751 \N 97230 107 0002059 \N 97231 107 0000027 \N 97232 107 0000940 \N 97233 107 0000529 \N 97234 107 0001566 \N 97235 107 0001513 \N 97236 107 0001599 \N 97237 107 0000365 \N 97238 107 0002302 \N 97239 107 0002003 \N 97240 107 0001554 \N 97241 107 0001678 \N 97242 107 0001358 \N 97243 107 0001150 \N 97244 107 0002223 \N 97245 107 0000760 \N 97246 107 0000616 \N 97247 107 0000727 \N 97248 107 0001938 \N 97249 107 0001255 \N 97250 107 0001757 \N 97251 107 0001010 \N 97252 107 0000962 \N 97253 107 0001661 \N 97254 107 0000617 \N 97255 107 0000395 \N 97256 107 0001410 \N 97257 107 0000743 \N 97258 107 0001353 \N 97259 107 0000407 \N 97260 107 0000019 \N 97261 107 0001045 \N 97262 107 0001931 \N 97263 107 0000108 \N 97264 107 0002001 \N 97265 107 0001569 \N 97266 107 0001927 \N 97267 107 0000252 \N 97268 107 0001883 \N 97269 107 0001797 \N 97270 120 0000576 \N 97271 107 0000814 \N 97272 107 0002113 \N 97273 192 merriam-webster "www.merriam-webster.com/dictionary/cribriform" \N 97274 107 0000056 \N 97275 107 0001688 \N 97276 107 0001022 \N 97277 107 0000424 \N 97278 107 0001058 \N 97279 107 0002247 \N 97280 107 0000003 \N 97281 107 0001320 \N 97282 107 0001457 \N 97283 107 0000530 \N 97284 107 0001794 \N 97285 245 Online_Dictionary "http \N 97286 107 0001129 \N 97287 107 0000785 \N 97288 107 0000476 \N 97289 107 0001829 \N 97290 107 0000415 \N 97291 107 0000413 \N 97292 107 0001645 \N 97293 107 0000260 \N 97294 107 0002040 \N 97295 107 0002086 \N 97296 107 0001482 \N 97297 107 0001511 \N 97298 107 0001640 \N 97299 246 MAH \N 97300 107 0001218 \N 97301 107 0000111 \N 97302 107 0000955 \N 97303 107 0000750 \N 97304 107 0000356 \N 97305 107 0000964 \N 97306 107 0001502 \N 97307 107 0000624 \N 97308 107 0001630 \N 97309 107 0001065 \N 97310 107 0001590 \N 97311 107 0000423 \N 97312 107 0001803 \N 97313 107 0000401 \N 97314 107 0001806 \N 97315 107 0001039 \N 97316 107 0000882 \N 97317 107 0002300 \N 97318 107 0000869 \N 97319 107 0001388 \N 97320 107 0000279 \N 97321 107 0001135 \N 97322 107 0002142 \N 97323 107 0001563 \N 97324 107 0000578 \N 97325 107 0000601 \N 97326 107 0002100 \N 97327 107 0000321 \N 97328 107 0001533 \N 97329 107 0001436 \N 97330 107 0002284 \N 97331 107 0002203 \N 97332 205 2184 \N 97333 107 0000600 \N 97334 107 0000976 \N 97335 107 0001518 \N 97336 107 0000765 \N 97337 107 0001868 \N 97338 107 0001427 \N 97339 107 0001453 \N 97340 107 0000520 \N 97341 107 0000980 \N 97342 107 0001247 \N 97343 107 0001212 \N 97344 107 0002228 \N 97345 107 0000798 \N 97346 107 0000012 \N 97347 107 0001175 \N 97348 107 0000852 \N 97349 107 0000830 \N 97350 107 0001861 \N 97351 107 0002152 \N 97352 107 0001276 \N 97353 107 0001077 \N 97354 107 0001274 \N 97355 107 0000074 \N 97356 107 0000506 \N 97357 107 0000218 \N 97358 107 0000339 \N 97359 107 0000935 \N 97360 107 0000118 \N 97361 107 0002186 \N 97362 107 0002272 \N 97363 107 0001675 \N 97364 107 0001108 \N 97365 107 0000991 \N 97366 107 0001777 \N 97367 107 0000021 \N 97368 107 0000280 \N 97369 107 0002026 \N 97370 107 0000205 \N 97371 107 0001580 \N 97372 107 0001155 \N 97373 107 0000223 \N 97374 107 0000518 \N 97375 107 0000908 \N 97376 107 0001315 \N 97377 107 0001371 \N 97378 107 0001999 \N 97379 107 0000513 \N 97380 107 0001791 \N 97381 107 0000293 \N 97382 107 0001743 \N 97383 107 0002146 \N 97384 107 0000366 \N 97385 107 0001621 \N 97386 107 0001663 \N 97387 107 0001992 \N 97388 107 0000541 \N 97389 107 0002130 \N 97390 107 0001413 \N 97391 107 0000148 \N 97392 107 0000733 \N 97393 107 0000212 \N 97394 107 0000287 \N 97395 107 0001442 \N 97396 107 0000030 \N 97397 107 0002013 \N 97398 199 http \N 97399 107 0000306 \N 97400 107 0002169 \N 97401 107 0000244 \N 97402 107 0000995 \N 97403 107 0001340 \N 97404 107 0000848 \N 97405 107 0000554 \N 97406 107 0000128 \N 97407 107 0001117 \N 97408 107 0002264 \N 97409 107 0000903 \N 97410 107 0002157 \N 97411 107 0002160 \N 97412 107 0002134 \N 97413 214 wikipedia "en.wiktionary.org/wiki/fibrillar" \N 97414 107 0002296 \N 97415 107 0002215 \N 97416 107 0001468 \N 97417 107 0001193 \N 97418 107 0000643 \N 97419 247 spinalstenosis "www.spinalstenosis.org/glossary.php" \N 97420 107 0002024 \N 97421 107 0000049 \N 97422 107 0001776 \N 97423 107 0001265 \N 97424 107 0000229 \N 97425 107 0001383 \N 97426 107 0002149 \N 97427 107 0001144 \N 97428 107 0000886 \N 97429 107 0001296 \N 97430 107 0000385 \N 97431 107 0002117 \N 97432 107 0001084 \N 97433 107 0001090 \N 97434 107 0001194 \N 97435 107 0000539 \N 97436 107 0001841 \N 97437 107 0001782 \N 97438 107 0000350 \N 97439 107 0001874 \N 97440 107 0002257 \N 97441 107 0002191 \N 97442 107 0001594 \N 97443 107 0000773 \N 97444 107 0001944 \N 97445 107 0000198 \N 97446 107 0002226 \N 97447 107 0000037 \N 97448 107 0000918 \N 97449 107 0001138 \N 97450 107 0002129 \N 97451 107 0000651 \N 97452 107 0001852 \N 97453 107 0001479 \N 97454 107 0002158 \N 97455 107 0002159 \N 97456 107 0000487 \N 97457 107 0001888 \N 97458 248 Chemicool "http \N 97459 107 0002108 \N 97460 107 0000440 \N 97461 107 0000835 \N 97462 107 0001718 \N 97463 107 0000630 \N 97464 107 0000698 \N 97465 107 0001848 \N 97466 107 0001750 \N 97467 107 0002097 \N 97468 107 0000685 \N 97469 107 0001603 \N 97470 107 0001705 \N 97471 107 0000952 \N 97472 107 0001588 \N 97473 107 0001651 \N 97474 107 0001302 \N 97475 107 0000143 \N 97476 107 0000859 \N 97477 107 0001913 \N 97478 107 RECIPROCAL_OF \N 97479 107 CORRELATES_WITH \N 97480 107 TOWARDS \N 97481 107 HAS_CROSS_SECTION \N 97482 107 DECREASED_IN_MAGNITUDE_RELATIVE_TO \N 97483 128 0000274 \N 97484 94 //www.ebi.ac.uk/embl/Documentation/FT_definitions/feature_table.html \N 97485 249 ems \N 97486 128 0001723 \N 97487 128 ke \N 97488 128 0001492 \N 97489 128 0001812 \N 97490 250 mah \N 97491 128 0001827 \N 97492 128 0000039 \N 97493 128 0001609 \N 97494 128 1000175 \N 97495 128 0001386 \N 97496 128 0001628 \N 97497 128 1001286 \N 97498 3 12519954 \N 97499 128 0000790 \N 97500 128 0000978 \N 97501 128 jk \N 97502 128 0000712 \N 97503 128 xp \N 97504 128 0000225 \N 97505 128 1000136 \N 97506 3 6804304 \N 97507 128 0001263 \N 97508 128 0001208 \N 97509 94 //www.ncbi.nlm.nih.gov/About/primer/est.html \N 97510 128 0000856 \N 97511 128 0001131 \N 97512 251 00205 \N 97513 252 GAR \N 97514 94 //www.ebi.ac.uk/msd-srv/msdmotif/ \N 97515 128 0000105 \N 97516 94 //www.medterms.com/script/main/art.asp?articlekey=5152 \N 97517 128 0000582 \N 97518 128 0000048 \N 97519 128 1000093 \N 97520 253 www.ebi.ac.uk/mutations/recommendations/mutevent.html \N 97521 128 0000665 \N 97522 128 0001050 \N 97523 128 0000813 \N 97524 128 0001667 \N 97525 128 0000005 1 \N 97526 128 0000914 \N 97527 128 0000885 \N 97528 128 0000927 \N 97529 128 0001534 \N 97530 128 0001504 \N 97531 128 0001549 \N 97532 128 0001779 \N 97533 128 0000351 \N 97534 128 ma \N 97535 128 1001260 \N 97536 128 0000663 \N 97537 128 0000369 \N 97538 128 0000909 \N 97539 128 0000923 \N 97540 128 0000445 \N 97541 128 0001001 \N 97542 128 1001275 \N 97543 128 0001657 \N 97544 128 0001406 \N 97545 128 1001283 \N 97546 128 0000625 \N 97547 128 1000088 \N 97548 128 1000090 \N 97549 128 1000091 \N 97550 128 0001277 \N 97551 128 0001086 \N 97552 251 00181 \N 97553 254 curation_manual \N 97554 128 0000336 \N 97555 94 //www.ucl.ac.uk/~ucbhjow/b241/glossary.html \N 97556 128 0001307 \N 97557 94 //library.med.utah.edu/RNAmods/ \N 97558 128 0000983 \N 97559 128 0000971 \N 97560 128 0000264 \N 97561 128 0000631 \N 97562 128 0000371 \N 97563 94 //www.sci.sdsu.edu/~smaloy/Glossary/C.html \N 97564 128 0000469 \N 97565 128 1000186 \N 97566 128 0000568 \N 97567 128 0000799 \N 97568 113 mc \N 97569 128 0000420 \N 97570 128 0001615 \N 97571 128 0000015 \N 97572 3 12651739 \N 97573 128 0000695 \N 97574 128 0001312 \N 97575 128 0000572 \N 97576 128 0001648 \N 97577 128 0001654 \N 97578 128 0000186 \N 97579 128 0001421 \N 97580 128 0000256 \N 97581 128 0000875 \N 97582 128 0000386 \N 97583 94 //www.sanger.ac.uk/cgi-bin/Rfam/getacc?RF00010 \N 97584 128 0001500 \N 97585 255 hdene \N 97586 128 0000537 \N 97587 128 0000163 \N 97588 128 cjm \N 97589 128 0000892 \N 97590 128 0000917 \N 97591 128 0001284 \N 97592 128 0000986 \N 97593 128 0000307 \N 97594 128 rd \N 97595 128 0000295 \N 97596 3 9428511 \N 97597 128 0001418 \N 97598 128 0000606 \N 97599 94 //dna.kdna.ucla.edu/rna/index.aspx \N 97600 128 0001125 \N 97601 251 00227 \N 97602 128 0000456 \N 97603 128 0001613 \N 97604 128 0000286 \N 97605 128 0000544 \N 97606 94 //www.pnas.org/cgi/content/full/100/11/6569 \N 97607 128 0000022 \N 97608 128 0100001 \N 97609 128 1000065 \N 97610 128 0001253 \N 97611 128 0001602 \N 97612 128 0000959 \N 97613 128 0000102 \N 97614 128 0000775 \N 97615 128 0000188 \N 97616 128 0001334 \N 97617 128 0000944 \N 97618 128 as \N 97619 128 0000459 \N 97620 128 0000780 \N 97621 128 0000196 \N 97622 128 0000770 \N 97623 256 10.1093/nar/gkh795 \N 97624 257 kw \N 97625 128 0001204 \N 97626 258 jb \N 97627 128 0001572 \N 97628 128 1000035 \N 97629 128 0000561 \N 97630 128 0001057 \N 97631 128 1000138 \N 97632 128 0001635 \N 97633 128 0000688 \N 97634 128 ls \N 97635 128 0001335 \N 97636 128 0000837 \N 97637 128 0001691 \N 97638 128 0000073 \N 97639 128 1000043 \N 97640 94 //en.wikipedia.org/wiki/Robertsonian_translocation \N 97641 128 1000153 \N 97642 113 reference_manual \N 97643 128 0001068 \N 97644 251 00070 \N 97645 128 0000496 \N 97646 128 0000344 \N 97647 128 1000063 \N 97648 128 0001097 \N 97649 251 00137 \N 97650 128 cb \N 97651 128 0001478 \N 97652 122 dh \N 97653 128 0000417 \N 97654 251 00012 \N 97655 251 00134 \N 97656 128 0001069 \N 97657 128 0000045 \N 97658 128 0000742 \N 97659 128 0000827 \N 97660 3 8395055 \N 97661 128 0000214 \N 97662 128 0001640 \N 97663 128 0000795 \N 97664 128 0001023 \N 97665 128 immuno_workshop \N 97666 128 0000208 \N 97667 94 //www.genetics.org/cgi/reprint/156/4/1983.pdf \N 97668 128 0001128 \N 97669 251 00148 \N 97670 259 feature_type \N 97671 128 0000746 \N 97672 128 0001753 \N 97673 128 nlw \N 97674 128 0000540 \N 97675 128 1000102 \N 97676 128 0000460 \N 97677 128 0001632 \N 97678 128 0001540 \N 97679 128 0000702 \N 97680 128 0000261 \N 97681 128 0001438 \N 97682 128 0000403 \N 97683 128 0005839 \N 97684 94 //www.sanger.ac.uk/cgi-bin/Rfam/getacc?RF00016 \N 97685 3 2551119 \N 97686 128 0000084 \N 97687 128 0005845 \N 97688 260 cb \N 97689 128 0001217 \N 97690 128 0001104 \N 97691 251 00026 \N 97692 128 0001063 \N 97693 251 00129 \N 97694 128 0000125 \N 97695 128 0001110 \N 97696 251 00211 \N 97697 128 0000408 \N 97698 128 0000800 \N 97699 113 gm \N 97700 128 0001344 \N 97701 128 0001367 \N 97702 128 0000527 \N 97703 128 0001764 \N 97704 128 0000146 \N 97705 128 0001796 \N 97706 128 vw \N 97707 128 0000806 \N 97708 128 1000017 \N 97709 128 0001168 \N 97710 3 16827941 \N 97711 128 0000960 \N 97712 128 0001569 \N 97713 128 0001623 \N 97714 128 0000481 \N 97715 128 0001762 \N 97716 3 17597783 \N 97717 128 1001251 \N 97718 128 0001244 \N 97719 128 0001134 \N 97720 251 00215 \N 97721 128 0001576 \N 97722 128 0000433 \N 97723 128 0000357 \N 97724 128 1001188 \N 97725 128 0000376 \N 97726 94 //www.sanger.ac.uk/cgi-bin/Rfam/getacc?RF00013 \N 97727 128 0001262 \N 97728 128 0001239 \N 97729 128 0001269 \N 97730 128 0001683 \N 97731 94 //en.wikipedia.org/wiki/Sequence_motif \N 97732 128 0001028 \N 97733 128 0000291 1 \N 97734 128 0000078 \N 97735 128 0000719 \N 97736 113 WG \N 97737 128 0000063 \N 97738 128 0001354 \N 97739 128 0001210 \N 97740 128 0001587 \N 97741 128 0000314 \N 97742 128 0001783 \N 97743 128 0001464 \N 97744 128 0001445 \N 97745 128 0000054 \N 97746 128 0000139 \N 97747 128 0000864 \N 97748 128 0000669 \N 97749 128 0000710 \N 97750 128 0001529 \N 97751 128 0000654 \N 97752 128 0100020 \N 97753 128 0000575 \N 97754 128 0000091 \N 97755 128 0000032 \N 97756 94 aptamer.icmb.utexas.edu \N 97757 128 0000558 \N 97758 128 0001151 \N 97759 3 2371257 \N 97760 128 0001389 \N 97761 128 1000141 \N 97762 128 1000015 \N 97763 128 0000717 \N 97764 261 rb \N 97765 128 1000023 \N 97766 128 0000635 \N 97767 128 0001297 \N 97768 128 0000755 \N 97769 128 0001583 \N 97770 128 0001584 \N 97771 253 gr \N 97772 128 0000754 \N 97773 86 0-1767-2380-8 \N 97774 128 0000167 1 \N 97775 128 regcreative \N 97776 128 0000934 \N 97777 113 cds \N 97778 128 0000512 \N 97779 113 km \N 97780 128 0000832 \N 97781 128 0001426 \N 97782 128 0001673 \N 97783 3 18331472 \N 97784 128 0001359 \N 97785 128 0000235 \N 97786 128 0000153 \N 97787 128 0000130 \N 97788 128 0000689 \N 97789 128 0005856 \N 97790 128 0001145 \N 97791 251 00233 \N 97792 128 1001244 \N 97793 128 0000682 \N 97794 128 0000966 \N 97795 128 0000590 \N 97796 94 //www.sanger.ac.uk/cgi-bin/Rfam/getacc?RF00017 \N 97797 128 0000956 \N 97798 128 0001709 \N 97799 94 //en.wikipedia.org/wiki/Histone \N 97800 128 0000062 \N 97801 128 0000491 \N 97802 128 0001816 \N 97803 128 1000126 \N 97804 128 0000531 \N 97805 128 0001448 \N 97806 128 0000471 \N 97807 128 0000815 \N 97808 3 15992143 \N 97809 128 1000158 \N 97810 128 0000700 \N 97811 128 0001545 \N 97812 128 0001508 \N 97813 128 0000849 \N 97814 128 0000867 \N 97815 128 0001169 \N 97816 128 0000253 \N 97817 94 //www.sanger.ac.uk/cgi-bin/Rfam/getacc?RF00005 \N 97818 128 0000576 \N 97819 128 0001530 \N 97820 128 0000174 \N 97821 128 0001612 \N 97822 128 0000087 \N 97823 128 0000533 \N 97824 128 0001775 \N 97825 128 0000904 \N 97826 128 0001487 \N 97827 92 10.1126 \N 97828 128 0001085 \N 97829 251 00069 \N 97830 128 0000650 \N 97831 128 0000673 \N 97832 128 0001197 \N 97833 128 0000278 \N 97834 128 0000784 \N 97835 128 0000889 \N 97836 128 0001198 \N 97837 128 0000629 \N 97838 128 0000090 \N 97839 128 0001079 \N 97840 251 0000338 \N 97841 128 0000948 \N 97842 128 0001318 \N 97843 128 0000455 \N 97844 128 0001800 \N 97845 3 16145017 \N 97846 128 0001093 \N 97847 251 00131 \N 97848 254 Curation_manual \N 97849 128 0000870 \N 97850 128 0000905 \N 97851 128 0000436 \N 97852 128 1000031 \N 97853 128 0000382 \N 97854 128 0001137 \N 97855 251 00214 \N 97856 128 0000303 \N 97857 128 0000119 \N 97858 128 0000699 \N 97859 128 0001375 \N 97860 128 0000009 \N 97861 128 0001076 \N 97862 251 00155 \N 97863 128 0001328 \N 97864 128 0001227 \N 97865 128 0000169 \N 97866 128 0001209 \N 97867 128 0001397 \N 97868 128 0000441 \N 97869 128 0000998 \N 97870 94 //www.genetics.org/cgi/content/full/170/2/661 \N 97871 128 0001361 \N 97872 128 0001435 \N 97873 128 0001650 \N 97874 128 0000452 \N 97875 128 1000009 \N 97876 128 0000779 \N 97877 128 0001562 \N 97878 128 0000182 \N 97879 128 0001831 \N 97880 128 0001717 \N 97881 128 0001200 \N 97882 128 0000204 \N 97883 128 0000897 \N 97884 128 0000794 \N 97885 128 1001268 \N 97886 94 //www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=PubMed&list_uids=12519954&dopt=Abstract \N 97887 128 0000517 \N 97888 128 0000740 \N 97889 128 0000192 \N 97890 128 0000142 \N 97891 128 0000989 \N 97892 3 15333696 \N 97893 128 0001441 \N 97894 128 0001403 \N 97895 128 0001581 \N 97896 128 0001392 \N 97897 128 0000738 \N 97898 128 0000393 \N 97899 94 //www.sanger.ac.uk/cgi-bin/Rfam/getacc?RF00015 \N 97900 128 0000011 \N 97901 128 0000701 \N 97902 128 0000145 \N 97903 128 0100018 \N 97904 128 1000046 \N 97905 128 0000994 \N 97906 128 0000224 \N 97907 128 0000732 \N 97908 128 0001662 \N 97909 128 0001281 \N 97910 128 0001746 \N 97911 128 bm \N 97912 128 0001792 \N 97913 128 0000774 \N 97914 128 0001451 \N 97915 128 0000268 \N 97916 128 0001116 \N 97917 251 0000339 \N 97918 128 0000067 \N 97919 128 0001577 \N 97920 94 //uswest.ensembl.org/info/docs/variation/index.html \N 97921 128 0000109 \N 97922 128 0000547 \N 97923 128 0001644 \N 97924 262 tm \N 97925 3 10354467 \N 97926 128 0001716 \N 97927 128 0000394 \N 97928 3 =12409455 \N 97929 128 0000640 \N 97930 128 0000106 \N 97931 128 0100005 \N 97932 128 0001176 \N 97933 86 071671920 \N 97934 128 0001712 \N 97935 128 0001414 \N 97936 128 0000232 \N 97937 128 0001235 \N 97938 86 0716719207 \N 97939 128 0001679 \N 97940 128 1001267 \N 97941 128 0001223 \N 97942 128 0001017 \N 97943 128 0001579 \N 97944 128 0000910 \N 97945 128 0000299 \N 97946 128 0000002 \N 97947 128 0001619 \N 97948 128 0001495 \N 97949 3 11222754 \N 97950 128 0001735 \N 97951 128 0000618 \N 97952 128 0000762 \N 97953 128 0000659 \N 97954 128 1000056 \N 97955 128 0001793 \N 97956 128 0001515 \N 97957 128 0001324 \N 97958 128 0001765 \N 97959 128 0001422 \N 97960 128 1000183 \N 97961 128 0001059 \N 97962 128 1000004 \N 97963 128 1000007 \N 97964 128 1001255 \N 97965 128 0001828 \N 97966 128 0001172 \N 97967 128 0000759 \N 97968 128 0000057 \N 97969 128 1000084 \N 97970 128 0001597 \N 97971 128 0000990 \N 97972 128 0001053 \N 97973 128 0001004 \N 97974 128 0000621 \N 97975 128 0000059 \N 97976 128 0001474 \N 97977 128 0000551 \N 97978 128 1000072 \N 97979 128 0001032 \N 97980 128 0001041 \N 97981 128 0000706 \N 97982 128 1000107 \N 97983 128 0001266 \N 97984 128 0001491 \N 97985 128 0001149 \N 97986 251 00073 \N 97987 128 0001065 \N 97988 128 0001660 \N 97989 128 0000310 \N 97990 128 0001292 \N 97991 128 1000105 \N 97992 128 0005857 \N 97993 128 0000868 \N 97994 128 0001064 \N 97995 251 00076 \N 97996 128 0000112 \N 97997 128 0000977 \N 97998 128 0001329 \N 97999 128 0000217 \N 98000 128 0001237 \N 98001 128 0001787 \N 98002 128 0000485 \N 98003 128 0000179 \N 98004 128 0000151 \N 98005 128 1000099 \N 98006 128 0000644 \N 98007 128 1001279 \N 98008 128 0001164 \N 98009 128 0000521 \N 98010 128 1000057 \N 98011 128 0000292 \N 98012 128 0001687 \N 98013 128 0001211 \N 98014 128 0000953 \N 98015 128 0001653 \N 98016 128 0000501 \N 98017 128 0001183 \N 98018 128 0000963 \N 98019 128 0000320 \N 98020 128 0000863 \N 98021 128 0000429 \N 98022 128 0001616 \N 98023 128 0000645 \N 98024 128 0001141 \N 98025 251 00231 \N 98026 128 0001769 \N 98027 128 0001704 \N 98028 128 0001034 \N 98029 3 17589500 \N 98030 128 0000516 \N 98031 128 0000713 \N 98032 128 0000245 \N 98033 128 0000975 \N 98034 128 0000036 \N 98035 128 0001786 \N 98036 128 0001551 \N 98037 128 0001024 \N 98038 128 0000982 \N 98039 128 0000448 \N 98040 128 0000488 \N 98041 128 0000410 \N 98042 128 0005852 \N 98043 128 0000134 \N 98044 128 0001360 \N 98045 128 0001477 \N 98046 128 0005850 \N 98047 128 0000239 \N 98048 128 0001700 \N 98049 94 en.wikipedia.org/wiki/Histone \N 98050 128 1001285 \N 98051 128 0000024 \N 98052 94 //www.ncbi.nlm.nih.gov/pubmed/7897662 \N 98053 128 0000634 \N 98054 128 0000594 \N 98055 94 //www.bio.umass.edu/biochem/rna-sequence/Yeast_snoRNA_Database/snoRNA_DataBase.html \N 98056 128 0000812 \N 98057 128 0000006 \N 98058 128 0000360 \N 98059 94 //www.everythingbio.com/glos/definition.php?word=codon \N 98060 128 0001156 \N 98061 3 12537576 \N 98062 128 0000323 \N 98063 128 0000083 \N 98064 128 0000579 \N 98065 128 0000098 \N 98066 128 1000039 \N 98067 128 0001256 \N 98068 128 1000156 \N 98069 128 0001130 \N 98070 251 00204 \N 98071 128 0000523 \N 98072 128 0001525 \N 98073 128 0000404 \N 98074 94 //www.sanger.ac.uk/cgi-bin/Rfam/getacc?RF00006 \N 98075 128 0001113 \N 98076 251 00151 \N 98077 128 0000589 \N 98078 128 0001107 \N 98079 251 00208 \N 98080 128 1000087 \N 98081 128 0000758 \N 98082 128 1000074 \N 98083 128 0000846 \N 98084 128 0000379 \N 98085 94 //www.sanger.ac.uk/cgi-bin/Rfam/getacc?RF00022 \N 98086 128 0000364 \N 98087 128 0001303 \N 98088 128 0000563 \N 98089 128 0100011 \N 98090 128 0000930 \N 98091 128 0001071 \N 98092 251 00128 \N 98093 128 1000145 \N 98094 128 0001730 \N 98095 128 0000158 \N 98096 128 0000822 \N 98097 128 0000243 \N 98098 128 0000122 \N 98099 128 0000495 \N 98100 128 1001195 \N 98101 128 1001280 \N 98102 128 0000154 \N 98103 94 //en.wikipedia.org/wiki/P1-derived_artificial_chromosome \N 98104 128 0001338 \N 98105 128 0000721 \N 98106 128 0000597 \N 98107 94 //www.rna.ucla.edu/index.html \N 98108 128 0000465 \N 98109 128 1000162 \N 98110 128 0001505 \N 98111 128 0001082 \N 98112 251 00125 \N 98113 128 0001727 \N 98114 128 0001348 \N 98115 128 0001695 \N 98116 128 0000739 \N 98117 128 1000026 \N 98118 128 0100019 \N 98119 128 0000187 \N 98120 128 0001647 \N 98121 128 0000666 \N 98122 128 0000018 \N 98123 86 038752046 \N 98124 128 0000411 \N 98125 128 0000313 \N 98126 128 0000019 \N 98127 128 0001013 \N 98128 94 //www.ncbi.nlm.nih.gov/SNP/snp_ref.cgi?rs=rs2067431 \N 98129 128 0001749 \N 98130 128 0001192 \N 98131 88 48015 \N 98132 128 0001213 \N 98133 128 0001450 \N 98134 128 0001264 \N 98135 128 0000515 \N 98136 128 0000439 \N 98137 128 0000873 \N 98138 128 0001006 \N 98139 128 0001374 \N 98140 128 0001528 \N 98141 128 1000020 \N 98142 128 0001075 \N 98143 251 00156 \N 98144 128 0000308 \N 98145 128 0000294 \N 98146 128 0000985 \N 98147 128 0001741 \N 98148 128 hd \N 98149 128 1000066 \N 98150 128 0000031 \N 98151 94 //aptamer.icmb.utexas.edu \N 98152 128 0001127 \N 98153 251 00230 \N 98154 128 0100002 \N 98155 128 0000524 \N 98156 128 0001444 \N 98157 128 0000941 \N 98158 128 1000037 \N 98159 128 0000159 \N 98160 128 1000033 \N 98161 128 0000763 \N 98162 128 0000189 \N 98163 128 0000500 \N 98164 3 12177293 \N 98165 128 0000289 1 \N 98166 94 //www.informatics.jax.org/silver/glossary.shtml \N 98167 128 0001285 \N 98168 128 1000160 \N 98169 128 0000893 \N 98170 128 0000679 \N 98171 128 0001333 \N 98172 128 0000828 \N 98173 128 0000124 \N 98174 128 0000333 \N 98175 128 0000816 \N 98176 128 0000387 \N 98177 94 //www.sanger.ac.uk/cgi-bin/Rfam/getacc?RF00034 \N 98178 128 0000741 \N 98179 128 0000826 \N 98180 128 0005843 \N 98181 4 kgc \N 98182 128 1000154 \N 98183 128 0001254 \N 98184 128 0000162 \N 98185 128 1000042 \N 98186 128 0001627 \N 98187 128 0000254 \N 98188 128 1000159 \N 98189 128 0001601 \N 98190 128 0000271 \N 98191 128 0000103 \N 98192 128 0001424 \N 98193 128 0000670 \N 98194 128 0001479 \N 98195 128 0000451 \N 98196 128 1000064 \N 98197 128 0000352 \N 98198 128 0001633 \N 98199 128 0000929 \N 98200 128 0000950 \N 98201 128 0000581 \N 98202 94 //seqcore.brcf.med.umich.edu/doc/educ/dnapr/mbglossary/mbgloss.html \N 98203 128 0000562 \N 98204 128 0001826 \N 98205 128 0000907 \N 98206 128 0000273 \N 98207 128 0000282 \N 98208 128 0001608 \N 98209 128 0001051 \N 98210 128 0001507 \N 98211 128 0001385 \N 98212 128 0000584 \N 98213 94 //www.sanger.ac.uk/cgi-bin/Rfam/getacc?RF00023 \N 98214 128 0001096 \N 98215 251 00146 \N 98216 128 0000681 \N 98217 128 0001676 \N 98218 128 0000442 \N 98219 128 1000040 \N 98220 128 0000044 \N 98221 128 0000543 \N 98222 128 0000008 \N 98223 128 1000103 \N 98224 128 0000928 \N 98225 128 0000924 \N 98226 128 0000312 \N 98227 128 0000801 \N 98228 128 0001666 \N 98229 128 0000257 \N 98230 128 0001546 \N 98231 128 0000569 \N 98232 128 0100042 \N 98233 128 0000242 \N 98234 128 0000370 \N 98235 128 0000807 \N 98236 128 0000195 \N 98237 128 0001724 \N 98238 128 0001720 \N 98239 94 //en.wikipedia.org/wiki/Epigenetics \N 98240 128 0001456 \N 98241 128 1001282 \N 98242 128 0000265 \N 98243 128 0000810 \N 98244 128 0000632 \N 98245 128 1000058 \N 98246 128 1000012 \N 98247 128 0001752 \N 98248 128 0000228 \N 98249 128 0000687 \N 98250 128 0000368 \N 98251 128 0000220 \N 98252 128 0001087 \N 98253 251 00178 \N 98254 128 0001393 \N 98255 128 0000489 \N 98256 128 0001729 \N 98257 128 0001308 \N 98258 128 0000141 \N 98259 128 1001274 \N 98260 94 //www.sanger.ac.uk/cgi-bin/Rfam/getacc?RF00031 \N 98261 128 0000653 \N 98262 128 0000791 \N 98263 128 1000110 \N 98264 128 1001263 \N 98265 128 0000664 \N 98266 128 0000079 \N 98267 128 0000668 \N 98268 128 0001434 \N 98269 128 0001146 \N 98270 251 00336 \N 98271 128 0001016 \N 98272 128 0000094 \N 98273 128 0000068 \N 98274 128 0001234 \N 98275 128 0000327 \N 98276 128 0000064 \N 98277 128 1000092 \N 98278 128 0001465 \N 98279 128 0001220 \N 98280 128 0000881 \N 98281 128 0001501 \N 98282 263 nlw \N 98283 128 0001399 \N 98284 128 0000492 \N 98285 128 0001493 \N 98286 128 0000397 \N 98287 94 //www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=retrieve&db=pubmed&list_uids=12409455&dopt=Abstract \N 98288 128 0000555 \N 98289 128 0001521 \N 98290 128 0001120 \N 98291 251 00223 \N 98292 128 0000077 \N 98293 128 0001568 \N 98294 128 0000718 \N 98295 128 0001088 \N 98296 251 00028 \N 98297 128 0000728 \N 98298 128 1000142 \N 98299 113 manual \N 98300 128 0000753 \N 98301 128 0000783 \N 98302 128 0001026 \N 98303 128 0000425 \N 98304 128 0001817 \N 98305 128 0001643 \N 98306 128 0001425 \N 98307 128 0000132 \N 98308 94 //mged.sourceforge.net/ontologies/MGEDontology.php \N 98309 128 0000933 \N 98310 128 0001480 \N 98311 122 mh \N 98312 128 0000853 \N 98313 128 0001807 \N 98314 3 10733526 \N 98315 3 1220884 \N 98316 3 18426916 \N 98317 128 1000125 \N 98318 128 0001626 \N 98319 128 0001298 \N 98320 128 0000636 \N 98321 128 1001191 \N 98322 128 0000347 \N 98323 128 0000843 \N 98324 128 1001259 \N 98325 128 0000602 \N 98326 128 0000400 \N 98327 128 0001818 \N 98328 128 0000680 \N 98329 128 0000131 \N 98330 128 0001207 \N 98331 128 0001598 \N 98332 128 0001067 \N 98333 251 00032 \N 98334 128 0001461 \N 98335 128 0000248 \N 98336 128 0001708 \N 98337 128 0001593 \N 98338 128 0001582 \N 98339 128 1000127 \N 98340 128 1000119 \N 98341 128 0001029 \N 98342 128 1000005 \N 98343 128 0000129 \N 98344 128 0001031 \N 98345 128 0000796 \N 98346 128 0001488 \N 98347 128 0000470 \N 98348 128 0000249 \N 98349 128 0001620 \N 98350 128 1000170 \N 98351 128 0000330 \N 98352 128 0000938 \N 98353 128 0000838 \N 98354 128 0000085 \N 98355 128 0001510 \N 98356 128 0001249 \N 98357 128 0001733 \N 98358 128 0001555 \N 98359 128 0001459 \N 98360 264 jd \N 98361 128 0001719 \N 98362 128 0000478 \N 98363 128 0000072 \N 98364 128 0000458 \N 98365 128 0001287 \N 98366 128 0001270 \N 98367 128 0000099 \N 98368 128 0001020 \N 98369 128 0001756 \N 98370 128 0000337 \N 98371 128 0001167 \N 98372 128 0001225 \N 98373 128 0001535 \N 98374 128 0001682 \N 98375 128 0001823 \N 98376 128 0000028 \N 98377 128 0001278 \N 98378 128 0000745 \N 98379 128 0000730 \N 98380 128 0000117 \N 98381 128 0001243 \N 98382 128 1000018 \N 98383 128 0000619 \N 98384 128 0001656 \N 98385 128 0000213 \N 98386 128 0001575 \N 98387 128 0001133 \N 98388 251 00212 \N 98389 128 0001044 \N 98390 128 0001157 \N 98391 128 0001368 \N 98392 128 0000528 \N 98393 128 0001311 \N 98394 128 0100016 \N 98395 128 0000626 \N 98396 128 0000300 \N 98397 128 0000692 \N 98398 128 0000041 \N 98399 128 0000461 \N 98400 128 0000482 \N 98401 128 0001322 \N 98402 128 0001638 \N 98403 128 0000221 \N 98404 128 0001586 \N 98405 128 0001163 \N 98406 128 0100015 \N 98407 128 1000060 \N 98408 128 0001008 \N 98409 128 0001405 \N 98410 128 0000144 \N 98411 128 0001002 \N 98412 128 0001402 \N 98413 128 0001578 \N 98414 128 0000585 \N 98415 128 0001250 \N 98416 128 0000731 \N 98417 128 0001524 \N 98418 128 0001152 \N 98419 128 0000341 \N 98420 128 1000068 \N 98421 128 0000216 \N 98422 128 0000449 \N 98423 128 0001808 \N 98424 128 0001378 \N 98425 128 0001715 \N 98426 94 //genesdev.cshlp.org/content/2/4/383.abstrac \N 98427 128 0000993 \N 98428 128 1000150 \N 98429 128 0000014 \N 98430 128 0000504 \N 98431 128 0001177 \N 98432 128 0001711 \N 98433 128 0000116 \N 98434 128 0000879 \N 98435 128 1000030 \N 98436 128 0001304 \N 98437 128 0001228 \N 98438 128 0000171 \N 98439 128 0000850 \N 98440 128 0000802 \N 98441 128 0001745 \N 98442 128 0001822 \N 98443 128 0000076 \N 98444 128 0001236 \N 98445 128 0001330 \N 98446 128 0000080 \N 98447 128 1000182 \N 98448 128 0005847 \N 98449 128 0000564 \N 98450 128 0000658 \N 98451 128 0001466 \N 98452 128 0000183 \N 98453 128 0000656 \N 98454 128 0000042 \N 98455 128 1000096 \N 98456 128 0001415 \N 98457 128 1001269 \N 98458 128 0001365 \N 98459 128 0000641 \N 98460 128 0000298 \N 98461 128 0001571 \N 98462 128 0001317 \N 98463 128 0000231 \N 98464 128 0001054 \N 98465 128 0000771 \N 98466 94 //rgd.mcw.edu/tu/qtls/ \N 98467 128 0000901 \N 98468 128 0001470 \N 98469 128 0000954 \N 98470 128 0000674 \N 98471 128 0000552 \N 98472 128 jh \N 98473 128 0000227 \N 98474 128 0001447 \N 98475 128 0001542 \N 98476 128 0000888 \N 98477 128 0000925 \N 98478 128 0001728 \N 98479 128 0000207 \N 98480 128 0001078 \N 98481 251 00003 \N 98482 128 0000916 \N 98483 128 0001496 \N 98484 3 8720065 \N 98485 128 0000671 \N 98486 128 0001520 \N 98487 128 1001266 \N 98488 128 0001187 \N 98489 128 0001161 \N 98490 128 0001351 \N 98491 128 0000737 \N 98492 128 0000833 \N 98493 128 0000945 \N 98494 128 0000534 \N 98495 128 0001196 \N 98496 88 48017 \N 98497 128 0000166 \N 98498 128 0000088 \N 98499 128 1000108 \N 98500 128 0001780 \N 98501 128 0000997 \N 98502 128 0000932 \N 98503 128 0001181 \N 98504 128 0000168 \N 98505 128 0001605 \N 98506 128 0001327 \N 98507 128 0000906 \N 98508 128 0000348 \N 98509 88 33696 \N 98510 128 0000178 \N 98511 128 0001774 \N 98512 128 0000097 \N 98513 128 0000866 \N 98514 128 0001121 \N 98515 251 00224 \N 98516 128 0000437 \N 98517 128 1000146 \N 98518 128 1000038 \N 98519 128 0001639 \N 98520 128 0001092 \N 98521 251 00027 \N 98522 128 0001784 \N 98523 128 0000684 \N 98524 128 0001409 \N 98525 128 1001271 \N 98526 3 9301331 \N 98527 128 0001364 \N 98528 128 0000173 \N 98529 128 0000714 \N 98530 128 0001224 \N 98531 128 1001194 \N 98532 128 0005851 \N 98533 128 0000622 \N 98534 128 0001310 \N 98535 128 0001025 \N 98536 128 0001341 \N 98537 128 0005853 \N 98538 261 se \N 98539 128 0001124 \N 98540 251 00228 \N 98541 128 0000509 \N 98542 128 0000392 \N 98543 94 //www.sanger.ac.uk/cgi-bin/Rfam/getacc?RF00004 \N 98544 128 0001552 \N 98545 128 0000155 \N 98546 128 0100012 \N 98547 128 0000722 \N 98548 128 0000607 \N 98549 128 0001431 \N 98550 128 0000637 \N 98551 128 0000383 \N 98552 94 //www.sanger.ac.uk/cgi-bin/Rfam/getacc?RF00033 \N 98553 128 0000283 \N 98554 128 0100009 \N 98555 128 0000593 \N 98556 128 0000958 \N 98557 128 0001497 \N 98558 128 0000696 \N 98559 128 0000614 \N 98560 128 0000896 \N 98561 128 0000361 \N 98562 128 0001742 \N 98563 128 0000135 \N 98564 128 0001449 \N 98565 128 0000051 \N 98566 128 0000378 \N 98567 94 //www.sanger.ac.uk/cgi-bin/Rfam/getacc?RF00014 \N 98568 128 1000073 \N 98569 128 0000334 \N 98570 128 0000405 \N 98571 94 //www.sanger.ac.uk/cgi-bin/Rfam/getacc?RF00019 \N 98572 128 0000911 \N 98573 128 0000025 \N 98574 128 0000660 \N 98575 128 0000065 \N 98576 128 0001680 \N 98577 128 0001070 \N 98578 251 00337 \N 98579 128 0000234 1 \N 98580 128 0001665 \N 98581 128 0000466 \N 98582 128 0001489 \N 98583 128 0000729 \N 98584 128 0000588 \N 98585 128 0001412 \N 98586 128 0000136 \N 98587 128 0000324 \N 98588 128 0001047 \N 98589 265 at \N 98590 128 0001230 \N 98591 128 0001814 \N 98592 128 0001596 \N 98593 128 0001736 \N 98594 128 0001514 \N 98595 128 0000121 \N 98596 128 0001694 \N 98597 128 0001356 \N 98598 128 0001060 \N 98599 128 0000981 \N 98600 128 0001083 \N 98601 251 00182 \N 98602 128 0000318 \N 98603 128 1001284 \N 98604 128 0000343 \N 98605 128 0001106 \N 98606 251 00202 \N 98607 128 0001203 \N 98608 128 0001231 \N 98609 128 0000823 \N 98610 128 1000027 \N 98611 128 0000532 \N 98612 128 0000438 \N 98613 128 0001142 \N 98614 251 00234 \N 98615 128 0001813 \N 98616 128 0001173 \N 98617 128 1000106 \N 98618 128 0001513 \N 98619 128 0000001 \N 98620 128 0000354 \N 98621 128 0001012 \N 98622 128 1000122 \N 98623 128 0001531 \N 98624 128 0000705 \N 98625 128 0000522 \N 98626 128 1000071 \N 98627 128 0001699 \N 98628 94 //www.ncbi.nlm.nih.gov/pubmed/9628033 \N 98629 128 0001282 \N 98630 128 1000083 \N 98631 128 0000058 \N 98632 128 0000969 \N 98633 128 2000061 \N 98634 128 0000375 \N 98635 94 //www.sanger.ac.uk/cgi-bin/Rfam/getacc?RF00002 \N 98636 128 0001484 \N 98637 94 //www.yeastgenome.org/help/glossary.html \N 98638 128 0001646 \N 98639 128 0000474 \N 98640 128 0000884 \N 98641 128 0001611 \N 98642 128 0001216 \N 98643 128 0001103 \N 98644 251 00185 \N 98645 128 0001475 \N 98646 3 16401417 \N 98647 128 0000486 \N 98648 128 0001214 \N 98649 128 0001759 \N 98650 94 //en.wikipedia.org/wiki/Pseudogene \N 98651 128 0001788 \N 98652 3 10556309 \N 98653 3 11577982 \N 98654 3 9649446 \N 98655 128 0001323 \N 98656 128 0001799 \N 98657 128 0000161 \N 98658 128 0001040 \N 98659 128 0000418 \N 98660 251 00159 \N 98661 128 0001565 \N 98662 128 0005849 \N 98663 128 0000304 \N 98664 94 //www.promega.com \N 98665 128 0000107 \N 98666 128 0000421 \N 98667 128 0001396 \N 98668 128 1000098 \N 98669 128 0000113 \N 98670 128 0001005 \N 98671 128 0000251 \N 98672 128 0001538 \N 98673 128 0001731 \N 98674 128 KE \N 98675 128 0001772 \N 98676 128 0001801 \N 98677 128 0001652 \N 98678 128 0000035 \N 98679 3 2820954 \N 98680 128 0001337 \N 98681 128 1000045 \N 98682 94 //en.wikipedia.org/wiki/Ring_chromosome \N 98683 128 0000862 \N 98684 128 0001686 \N 98685 128 0001037 \N 98686 3 14681355 \N 98687 128 0000988 \N 98688 128 0001291 \N 98689 128 0000767 \N 98690 128 0000454 \N 98691 94 //www.developmentalcell.com/content/article/abstract?uid=PIIS1534580703002284 \N 98692 128 1001187 \N 98693 128 0001659 \N 98694 128 0000648 \N 98695 128 0000787 \N 98696 128 0000203 \N 98697 128 0001182 \N 98698 128 0000610 \N 98699 128 0001049 \N 98700 265 ariane \N 98701 128 1000008 \N 98702 128 0000285 \N 98703 128 0000431 \N 98704 128 0001634 \N 98705 128 0001677 \N 98706 128 0001288 \N 98707 128 0000419 \N 98708 251 00149 \N 98709 128 0000611 \N 98710 128 1000111 \N 98711 128 1000113 \N 98712 128 1000114 \N 98713 128 0001714 \N 98714 128 0001112 \N 98715 251 0000341 \N 98716 128 0001373 \N 98717 128 1000070 \N 98718 128 0001455 \N 98719 128 0001798 \N 98720 128 1000104 \N 98721 128 0001115 \N 98722 251 00222 \N 98723 128 0000346 \N 98724 128 0000797 \N 98725 128 1001197 \N 98726 128 0001043 \N 98727 128 0000937 \N 98728 128 0000133 \N 98729 128 0000311 \N 98730 128 0001030 \N 98731 128 0000704 \N 98732 128 0000380 \N 98733 3 2436805 \N 98734 128 0000181 \N 98735 128 0001685 \N 98736 128 0000070 \N 98737 128 0000757 \N 98738 128 0001126 \N 98739 251 00229 \N 98740 128 0001771 \N 98741 128 0000374 \N 98742 128 0001153 \N 98743 128 0001400 \N 98744 128 0001271 \N 98745 128 0001102 \N 98746 251 00143 \N 98747 128 0000804 \N 98748 128 0000818 \N 98749 128 1000171 \N 98750 128 0001321 \N 98751 128 0001556 \N 98752 128 0000861 \N 98753 128 0001178 \N 98754 128 0001804 \N 98755 3 19818632 \N 98756 128 0001574 \N 98757 128 0001185 \N 98758 128 0001394 \N 98759 128 0000140 \N 98760 128 0001766 \N 98761 128 0000359 \N 98762 128 0001527 \N 98763 128 0001433 \N 98764 266 nlw \N 98765 128 0001246 \N 98766 128 1000028 \N 98767 128 0001015 \N 98768 3 11256617 \N 98769 128 0000052 \N 98770 128 0000096 \N 98771 128 0000736 \N 98772 128 0000667 \N 98773 128 1000034 \N 98774 128 0000510 \N 98775 128 0001326 \N 98776 128 0000301 \N 98777 128 0001099 \N 98778 251 00140 \N 98779 128 0000156 \N 98780 128 0000559 \N 98781 128 0000462 \N 98782 128 1000021 \N 98783 128 0000396 \N 98784 128 0000725 \N 98785 251 00055 \N 98786 128 0001233 \N 98787 128 0001147 \N 98788 251 00071 \N 98789 128 0000219 \N 98790 128 0000782 \N 98791 128 0001494 \N 98792 128 0000093 \N 98793 128 0001585 \N 98794 128 0001018 \N 98795 94 //en.wikipedia.org/wiki/Epitope \N 98796 128 0001369 \N 98797 128 0001007 \N 98798 128 0001732 \N 98799 128 1001246 \N 98800 128 0000556 \N 98801 128 0000872 \N 98802 128 0000467 \N 98803 128 0001625 \N 98804 128 0001080 \N 98805 251 00041 \N 98806 128 0001166 \N 98807 128 0001592 \N 98808 94 //arjournals.annualreviews.org/doi/pdf/10.1146/annurev.ge.08.120174.001535 \N 98809 128 0000723 \N 98810 128 3000000 \N 98811 128 0000071 \N 98812 128 0000525 \N 98813 128 0000675 \N 98814 128 0000201 \N 98815 3 10373547 \N 98816 128 0001027 \N 98817 128 0000844 \N 98818 128 0000210 \N 98819 128 0001290 \N 98820 128 0000034 \N 98821 94 //www.gene-tools.com/ \N 98822 128 0001819 \N 98823 128 0001725 \N 98824 128 0000247 \N 98825 128 0000592 \N 98826 94 //www.ncbi.nlm.nih.gov \N 98827 128 0000638 \N 98828 94 //oregonstate.edu/instruction/bb492/general/glossary.html \N 98829 128 0001300 \N 98830 128 0001219 \N 98831 128 0001295 \N 98832 128 0000573 \N 98833 128 0000968 \N 98834 128 0000165 1 \N 98835 128 0000270 \N 98836 128 0001697 \N 98837 128 1000013 \N 98838 128 0001595 \N 98839 128 0001506 \N 98840 128 0000498 \N 98841 128 0000857 \N 98842 128 0000772 \N 98843 128 0001751 \N 98844 128 0001610 \N 98845 128 0001703 \N 98846 128 1001265 \N 98847 128 0000262 \N 98848 128 0000999 \N 98849 128 0000473 \N 98850 128 0000749 \N 98851 128 0000777 \N 98852 128 0001810 \N 98853 3 9631646 \N 98854 128 0001490 \N 98855 128 0000353 \N 98856 128 0001721 \N 98857 128 0001229 \N 98858 128 0001485 \N 98859 94 http \N 98860 128 0001600 \N 98861 128 0100006 \N 98862 128 0000599 \N 98863 128 0001460 \N 98864 128 0000921 \N 98865 128 0001052 \N 98866 128 0000050 \N 98867 128 0000902 \N 98868 128 0000258 \N 98869 128 0000817 \N 98870 128 0000240 \N 98871 128 0000288 \N 98872 128 0001021 \N 98873 128 0001242 \N 98874 128 0000820 \N 98875 128 0000363 \N 98876 128 1000184 \N 98877 128 0000973 \N 98878 128 0000241 \N 98879 128 0000191 \N 98880 128 0001825 \N 98881 128 0000338 \N 98882 94 //www.pnas.org/cgi/content/full/97/18/10083 \N 98883 128 0100013 \N 98884 128 1001262 \N 98885 128 0001773 \N 98886 128 0001095 \N 98887 251 00136 \N 98888 128 0001547 \N 98889 128 0000508 \N 98890 128 0000373 \N 98891 128 1001288 \N 98892 128 0000920 \N 98893 128 0000269 \N 98894 128 0000949 \N 98895 128 0001607 \N 98896 128 1001273 \N 98897 128 1000075 \N 98898 128 0000789 \N 98899 128 1000025 \N 98900 128 0000007 \N 98901 128 0000811 \N 98902 128 0000627 \N 98903 128 0001279 \N 98904 128 0000040 \N 98905 128 0000447 \N 98906 128 0000029 \N 98907 128 0000434 \N 98908 94 //www.koko.gov.my/CocoaBioTech/Glossaryt.html \N 98909 128 0001669 \N 98910 128 0001345 \N 98911 128 0001740 \N 98912 128 mc \N 98913 128 0001637 \N 98914 128 0001191 \N 98915 128 0000175 \N 98916 128 0000895 \N 98917 128 0000661 \N 98918 128 0001404 \N 98919 128 0000114 \N 98920 128 0001257 \N 98921 128 0000184 \N 98922 128 0000483 \N 98923 128 0000841 \N 98924 128 0000899 \N 98925 128 0000880 \N 98926 128 0001314 \N 98927 128 0001710 \N 98928 128 1000086 \N 98929 128 1000067 \N 98930 128 0000877 \N 98931 128 0001286 \N 98932 128 0000603 \N 98933 94 //www.sanger.ac.uk/Software/Rfam/browse/index.shtml \N 98934 128 0001189 \N 98935 128 1001277 \N 98936 128 1000048 \N 98937 128 0000399 \N 98938 94 //www.sanger.ac.uk/cgi-bin/Rfam/getacc?RF00007 \N 98939 128 0001748 \N 98940 128 0000546 \N 98941 128 0001802 \N 98942 128 0001416 \N 98943 128 chado \N 98944 128 0100003 \N 98945 128 1000059 \N 98946 128 0001072 \N 98947 251 00154 \N 98948 128 1000041 \N 98949 128 0000535 \N 98950 128 0000194 \N 98951 128 0000890 \N 98952 128 0000426 \N 98953 128 1000151 \N 98954 128 0001332 \N 98955 128 0000100 \N 98956 128 1000147 \N 98957 128 0000309 \N 98958 128 0000878 \N 98959 128 0001739 \N 98960 128 0000450 \N 98961 128 0000000 \N 98962 128 0001693 \N 98963 128 1000082 \N 98964 128 0000942 \N 98965 128 0000764 \N 98966 128 0005858 \N 98967 94 //www.informatics.jax.org/silverbook/glossary.shtml \N 98968 128 0001362 \N 98969 128 0000595 \N 98970 128 0000919 \N 98971 128 1001217 \N 98972 128 0000176 \N 98973 128 0001423 \N 98974 128 0000297 \N 98975 128 0001670 \N 98976 128 0000583 \N 98977 128 0001251 \N 98978 128 0001517 \N 98979 128 0001471 \N 98980 128 0000277 \N 98981 128 0001206 \N 98982 128 0001617 \N 98983 128 0000238 \N 98984 128 0001248 \N 98985 128 0001186 \N 98986 128 0001319 \N 98987 128 0001055 \N 98988 128 0001467 \N 98989 128 0000608 \N 98990 128 0000355 \N 98991 128 0001066 \N 98992 251 00068 \N 98993 128 0001689 \N 98994 128 0000480 \N 98995 128 0000317 \N 98996 128 0000412 \N 98997 128 0000577 1 \N 98998 128 0001339 \N 98999 128 0001073 \N 99000 251 00145 \N 99001 128 0001755 \N 99002 128 0000647 \N 99003 128 0000086 \N 99004 128 0000414 \N 99005 128 0000316 \N 99006 128 0001760 \N 99007 128 0000542 \N 99008 128 0000839 \N 99009 251 00124 \N 99010 251 00331 \N 99011 128 GAR \N 99012 128 0001795 \N 99013 3 7502067 \N 99014 128 0001789 \N 99015 128 0001642 \N 99016 128 jestill \N 99017 128 0000708 \N 99018 128 0001160 \N 99019 128 0001591 \N 99020 128 0000388 \N 99021 94 //www.sanger.ac.uk/cgi-bin/Rfam/getacc?RF00036 \N 99022 128 0001143 \N 99023 251 00232 \N 99024 128 0000120 1 \N 99025 128 1000109 \N 99026 128 0001094 \N 99027 251 00186 \N 99028 128 0000250 \N 99029 128 0001512 \N 99030 128 0001215 \N 99031 128 0000110 \N 99032 128 0000259 \N 99033 128 0000511 \N 99034 128 0000331 \N 99035 94 //www.biospace.com \N 99036 128 0000206 \N 99037 128 1000181 \N 99038 128 0000693 \N 99039 128 0000690 \N 99040 128 0000177 \N 99041 128 0001294 \N 99042 128 0000092 \N 99043 128 0001503 \N 99044 127 hdeen \N 99045 128 0001476 \N 99046 128 1000019 \N 99047 128 0000004 \N 99048 128 0000596 \N 99049 128 0001136 \N 99050 251 00216 \N 99051 128 0000808 \N 99052 128 0001299 \N 99053 128 0000514 \N 99054 128 0001260 \N 99055 128 0000422 \N 99056 128 0005848 \N 99057 128 0000883 \N 99058 128 0000152 \N 99059 128 0001267 \N 99060 128 0001539 \N 99061 128 0100010 \N 99062 128 0001428 \N 99063 128 1000097 \N 99064 128 0000055 \N 99065 128 0001815 \N 99066 128 0001454 \N 99067 128 0000322 \N 99068 128 0001553 \N 99069 128 0000768 \N 99070 128 0001162 \N 99071 128 0001411 \N 99072 128 0000325 \N 99073 128 0001352 \N 99074 128 0000965 \N 99075 128 1000115 \N 99076 128 0001309 \N 99077 128 0001036 \N 99078 128 0001009 \N 99079 128 0001432 \N 99080 128 0000215 \N 99081 128 0001658 \N 99082 128 AF \N 99083 128 0000957 \N 99084 128 0001048 \N 99085 128 0000446 \N 99086 128 0001567 \N 99087 128 0000769 \N 99088 267 1362-4962 \N 99089 128 0000328 \N 99090 128 0001158 \N 99091 128 0001109 \N 99092 251 00210 \N 99093 128 0001305 \N 99094 128 0001241 \N 99095 128 0000677 \N 99096 128 0001629 \N 99097 128 0000406 \N 99098 3 1899376 \N 99099 3 7823908 \N 99100 128 0000715 \N 99101 128 0000233 \N 99102 128 0005837 \N 99103 3 2251119 \N 99104 128 0000409 \N 99105 251 00033 \N 99106 128 0000854 \N 99107 128 0000752 \N 99108 128 0001702 \N 99109 128 0000349 \N 99110 128 1000143 \N 99111 128 0000628 \N 99112 128 0001707 \N 99113 128 0001758 \N 99114 128 0000026 \N 99115 128 1001193 \N 99116 128 0001462 \N 99117 128 0005854 \N 99118 128 0001523 \N 99119 128 1000185 \N 99120 128 0001382 \N 99121 128 0001357 \N 99122 128 0000081 \N 99123 128 0001767 \N 99124 128 0001498 \N 99125 128 0000060 \N 99126 128 0001119 \N 99127 251 0000340 \N 99128 128 1000069 \N 99129 128 0000160 \N 99130 128 0000824 \N 99131 128 0000137 \N 99132 128 1000024 \N 99133 128 0000493 \N 99134 128 0000565 \N 99135 128 0001170 \N 99136 3 16537396 \N 99137 128 1000076 \N 99138 128 0001313 \N 99139 128 0000362 \N 99140 128 0001395 \N 99141 128 0001046 \N 99142 128 0001821 \N 99143 128 0001366 \N 99144 128 0001258 \N 99145 3 3095662 \N 99146 128 1001190 \N 99147 128 0000609 \N 99148 94 //www.rna.ucla.edu/ \N 99149 128 0001690 \N 99150 128 0000915 \N 99151 128 0001316 \N 99152 128 0001101 \N 99153 251 00142 \N 99154 128 0001536 \N 99155 128 0001481 \N 99156 128 0001543 \N 99157 128 0001091 \N 99158 251 00029 \N 99159 128 1001270 \N 99160 128 0000457 \N 99161 128 0000834 \N 99162 128 0000672 \N 99163 128 0001363 \N 99164 128 0001698 \N 99165 94 //www.ncbi.nlm.nih.gov/pubmed/11252801 \N 99166 128 0001011 \N 99167 128 0000340 \N 99168 128 0001245 \N 99169 128 0000996 \N 99170 128 0001379 \N 99171 128 0000463 \N 99172 128 0001195 \N 99173 128 0000272 \N 99174 128 0000580 \N 99175 128 0001706 \N 99176 128 1001261 \N 99177 94 //www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=PubMed&list_uids=8811194&dopt=Abstract \N 99178 128 0000570 \N 99179 128 0000089 \N 99180 128 1000100 \N 99181 128 1000079 \N 99182 128 0000840 \N 99183 128 0000266 \N 99184 128 0001384 \N 99185 128 1001247 \N 99186 128 0000477 \N 99187 128 0001744 \N 99188 128 BM \N 99189 128 0001139 \N 99190 251 00220 \N 99191 128 0000038 \N 99192 128 0000792 \N 99193 128 0000199 \N 99194 128 0000443 \N 99195 128 0001380 \N 99196 128 0000069 \N 99197 128 0001370 \N 99198 128 0000951 \N 99199 128 0000497 \N 99200 128 0000776 \N 99201 128 0001283 \N 99202 128 0000202 \N 99203 128 0000538 \N 99204 128 0001336 \N 99205 128 0000686 \N 99206 128 0001604 \N 99207 128 0000172 \N 99208 128 0001003 \N 99209 128 1001186 \N 99210 128 0000652 \N 99211 94 //www.sanger.ac.uk/cgi-bin/Rfam/getacc?RF00001 \N 99212 128 0001564 \N 99213 128 0000587 \N 99214 94 //www.sanger.ac.uk/cgi-bin/Rfam/getacc?RF00028 \N 99215 128 0000987 \N 99216 128 0000033 \N 99217 128 0001180 \N 99218 128 0000786 \N 99219 128 0000874 \N 99220 128 0001437 \N 99221 128 0001781 \N 99222 128 0001526 \N 99223 128 0001589 \N 99224 128 0001785 \N 99225 128 0000367 \N 99226 128 1000044 \N 99227 128 0000887 \N 99228 128 0001377 \N 99229 128 0001674 \N 99230 128 0001342 \N 99231 128 1000010 \N 99232 128 0000149 \N 99233 128 0000075 \N 99234 128 0001372 \N 99235 128 0000020 \N 99236 128 0000017 \N 99237 128 0000623 \N 99238 128 0000970 \N 99239 128 0000503 \N 99240 128 0001123 \N 99241 251 00226 \N 99242 128 0000391 \N 99243 94 //www.sanger.ac.uk/cgi-bin/Rfam/getacc?RF00003 \N 99244 128 0000615 \N 99245 128 0001275 \N 99246 128 0100021 \N 99247 128 0000211 \N 99248 128 0001221 \N 99249 128 0000931 \N 99250 128 0000430 \N 99251 128 0001809 \N 99252 94 //www.cbs.dtu.dk/services/SignalP/background/biobackground.php \N 99253 128 0000549 \N 99254 128 0000384 \N 99255 94 //www.sanger.ac.uk/cgi-bin/Rfam/getacc?RF00035 \N 99256 128 0000281 \N 99257 128 1000050 \N 99258 128 1000161 \N 99259 128 0001664 \N 99260 128 0000943 \N 99261 128 0001558 \N 99262 128 0000255 \N 99263 128 0000642 \N 99264 128 0000104 \N 99265 128 0000358 \N 99266 128 0001074 \N 99267 251 00144 \N 99268 128 0000912 \N 99269 251 00203 \N 99270 128 0001737 \N 99271 128 1000095 \N 99272 128 1000061 \N 99273 128 0000946 \N 99274 128 0001614 \N 99275 128 0100007 \N 99276 128 0001443 \N 99277 128 0001778 \N 99278 128 0000553 \N 99279 128 0001430 \N 99280 128 0001469 \N 99281 128 0000342 \N 99282 128 0000847 \N 99283 128 0001458 \N 99284 128 0001570 \N 99285 128 0000805 \N 99286 128 1000121 \N 99287 128 0001419 \N 99288 128 0000170 \N 99289 128 0000043 \N 99290 128 0000992 \N 99291 128 0000305 \N 99292 128 0001174 \N 99293 128 0001202 \N 99294 128 0000657 \N 99295 128 0000748 \N 99296 128 0000829 \N 99297 128 1000134 \N 99298 128 0000655 \N 99299 128 0001061 \N 99300 251 00063 \N 99301 128 0001273 \N 99302 128 0000734 \N 99303 128 0001408 \N 99304 253 rh \N 99305 128 0000180 \N 99306 128 0001019 \N 99307 128 0000468 \N 99308 128 1000080 \N 99309 128 0000066 \N 99310 128 0000781 \N 99311 128 0000246 \N 99312 128 0001763 \N 99313 128 0000571 \N 99314 128 0001696 \N 99315 128 0001148 \N 99316 251 00036 \N 99317 128 0000123 \N 99318 128 1000016 \N 99319 128 0001655 \N 99320 128 0001550 \N 99321 128 0000157 \N 99322 128 0000724 \N 99323 128 0000053 \N 99324 128 0001770 \N 99325 128 0001232 \N 99326 128 0001519 \N 99327 128 0000490 \N 99328 128 0000591 \N 99329 128 0000694 \N 99330 128 0000536 \N 99331 128 0001222 \N 99332 128 0000604 \N 99333 128 0000726 \N 99334 128 0000290 \N 99335 128 0001573 \N 99336 128 0000197 \N 99337 128 0000302 \N 99338 128 0001098 \N 99339 251 00187 \N 99340 128 0000275 \N 99341 128 0001499 \N 99342 128 0000095 \N 99343 128 0001355 \N 99344 128 1000029 \N 99345 128 0000061 \N 99346 128 0000756 \N 99347 128 0001014 \N 99348 128 0001681 \N 99349 128 0000605 \N 99350 128 0001081 \N 99351 251 00147 \N 99352 128 0000023 \N 99353 128 0000836 \N 99354 128 1000014 \N 99355 128 0000845 \N 99356 128 0001401 \N 99357 128 0000620 \N 99358 128 0001205 \N 99359 128 0000560 \N 99360 128 0000475 \N 99361 128 0001692 \N 99362 128 0000230 \N 99363 128 0000788 \N 99364 128 0001561 \N 99365 128 0001726 \N 99366 128 0001100 \N 99367 251 00141 \N 99368 128 0000402 \N 99369 128 1000085 \N 99370 128 0001347 \N 99371 128 0000472 \N 99372 128 0000855 \N 99373 128 0001483 \N 99374 128 1000140 \N 99375 128 0000345 \N 99376 128 0001472 \N 99377 128 0001754 \N 99378 128 0000200 \N 99379 128 0001486 \N 99380 128 0001618 \N 99381 128 0000505 \N 99382 128 0000499 \N 99383 128 0000821 \N 99384 128 0000416 \N 99385 128 0001289 \N 99386 128 0001537 \N 99387 128 0000851 \N 99388 128 0001033 \N 99389 128 0001062 \N 99390 251 00077 \N 99391 128 0001301 \N 99392 128 0000703 \N 99393 128 0000598 \N 99394 128 0000335 \N 99395 128 0001559 \N 99396 128 0001541 \N 99397 128 0000428 \N 99398 128 0001259 \N 99399 128 0001111 \N 99400 251 00042 \N 99401 128 1000112 \N 99402 128 0001350 \N 99403 128 0000526 \N 99404 128 0000646 \N 99405 3 12592000 \N 99406 128 0001165 \N 99407 128 0000747 \N 99408 128 0001811 \N 99409 128 0001429 \N 99410 128 0001042 \N 99411 128 0001548 \N 99412 128 0001672 \N 99413 128 0000711 \N 99414 128 0001516 \N 99415 128 0001797 \N 99416 128 0001713 \N 99417 128 0001105 \N 99418 251 00157 \N 99419 128 0000612 \N 99420 94 //nar.oupjournals.org/cgi/content/full/25/4/888 \N 99421 128 0000147 \N 99422 128 0000613 \N 99423 128 0000427 \N 99424 128 0000936 \N 99425 128 0001343 \N 99426 128 0100014 \N 99427 128 0000267 \N 99428 128 0001622 \N 99429 128 0001738 \N 99430 128 0001114 \N 99431 251 00152 \N 99432 128 0000502 \N 99433 128 0001132 \N 99434 251 00207 \N 99435 128 0000860 \N 99436 128 0001159 \N 99437 128 0001557 \N 99438 128 1001287 \N 99439 128 0000697 \N 99440 128 0000150 \N 99441 128 0000972 \N 99442 128 0001439 \N 99443 128 0001761 \N 99444 128 0001140 \N 99445 251 00221 \N 99446 128 0000484 \N 99447 128 0000377 \N 99448 94 //www.sanger.ac.uk/cgi-bin/Rfam/getacc?RF00018 \N 99449 128 0000390 \N 99450 94 //www.sanger.ac.uk/cgi-bin/Rfam/getacc?RF00025 \N 99451 128 0000984 \N 99452 128 0000819 \N 99453 128 0001272 \N 99454 128 0000319 \N 99455 128 0000432 \N 99456 128 0000115 \N 99457 128 0001035 \N 99458 128 0001684 \N 99459 128 0001805 \N 99460 3 12208841 \N 99461 3 1842691 \N 99462 128 0000329 \N 99463 128 0001000 \N 99464 128 0001154 \N 99465 128 0001440 \N 99466 128 0001261 \N 99467 128 0001190 \N 99468 88 48019 \N 99469 128 0001376 \N 99470 128 0001188 \N 99471 88 48010 \N 99472 128 0001446 \N 99473 128 0000296 \N 99474 128 0000926 \N 99475 128 1000123 \N 99476 128 0001671 \N 99477 128 0000871 \N 99478 128 0000164 \N 99479 128 0001407 \N 99480 128 0001184 \N 99481 128 0001747 \N 99482 128 0000185 \N 99483 128 0000876 \N 99484 128 0000453 \N 99485 128 0000842 \N 99486 128 0000898 \N 99487 128 0001417 \N 99488 128 0000398 \N 99489 3 9622129 \N 99490 128 0001293 \N 99491 128 1000047 \N 99492 128 0000649 \N 99493 3 11081512 \N 99494 128 0001649 \N 99495 128 0000315 \N 99496 128 1000049 \N 99497 128 1000177 \N 99498 128 1000179 \N 99499 128 1000152 \N 99500 128 0001306 \N 99501 128 0001331 \N 99502 128 0001391 \N 99503 128 0000237 \N 99504 128 0000193 \N 99505 128 0000548 \N 99506 128 0000761 \N 99507 128 0001452 \N 99508 128 0000891 \N 99509 128 0000831 \N 99510 128 0001171 \N 99511 128 0000550 \N 99512 128 1000022 \N 99513 128 0001636 \N 99514 128 0001522 \N 99515 128 0000101 \N 99516 94 //www.sci.sdsu.edu/~smaloy/Glossary/T.html \N 99517 128 1000032 \N 99518 128 0000519 \N 99519 128 1000148 \N 99520 128 0000574 \N 99521 128 0001252 \N 99522 128 0000545 \N 99523 94 //www.pubmedcentral.nih.gov/articlerender.fcgi?artid=33937 \N 99524 128 0000683 \N 99525 128 0000865 \N 99526 128 0000016 \N 99527 128 0001830 \N 99528 268 ea \N 99529 128 0001280 \N 99530 128 0000276 \N 99531 128 0000586 \N 99532 128 0000284 \N 99533 128 0001532 \N 99534 128 0000939 \N 99535 128 0000435 \N 99536 128 0000222 \N 99537 128 0000046 \N 99538 128 0000967 \N 99539 128 0000913 \N 99540 128 0000507 \N 99541 128 0001038 \N 99542 128 0100004 \N 99543 128 0000567 \N 99544 128 1001196 \N 99545 128 0001722 \N 99546 128 0000263 \N 99547 128 0001349 \N 99548 128 0000947 \N 99549 128 0000900 \N 99550 128 0000858 \N 99551 128 0000766 \N 99552 128 0000444 \N 99553 128 0000226 \N 99554 128 0001387 \N 99555 128 0000013 \N 99556 128 0000922 \N 99557 128 0001118 \N 99558 251 00153 \N 99559 128 0000389 \N 99560 94 //www.sanger.ac.uk/cgi-bin/Rfam/getacc?RF00021 \N 99561 128 0000566 \N 99562 128 0000082 \N 99563 128 0000778 \N 99564 128 1001272 \N 99565 128 0000381 \N 99566 128 1001264 \N 99567 128 0000979 \N 99568 128 0000209 \N 99569 128 0001056 \N 99570 128 0001199 \N 99571 128 1000117 \N 99572 128 0001268 \N 99573 128 0000372 \N 99574 128 1000078 \N 99575 128 0000676 \N 99576 128 0000803 \N 99577 128 0000744 \N 99578 128 0000479 \N 99579 128 0001768 \N 99580 128 1000054 \N 99581 128 0001606 \N 99582 128 0000126 \N 99583 128 0000809 \N 99584 128 0001463 \N 99585 3 19182780 \N 99586 128 0001824 \N 99587 128 0001473 \N 99588 128 0000735 \N 99589 128 0001790 \N 99590 128 0001420 \N 99591 128 0001179 \N 99592 94 //www.sanger.ac.uk/cgi-bin/Rfam/getacc?RF00012 \N 99593 128 0001544 \N 99594 128 0001509 \N 99595 128 1000101 \N 99596 128 0001668 \N 99597 128 0000961 \N 99598 128 0001346 \N 99599 128 0001325 \N 99600 128 0000190 \N 99601 128 0000127 \N 99602 128 0000633 \N 99603 128 0000010 \N 99604 128 0001701 \N 99605 128 0001122 \N 99606 251 00225 \N 99607 128 0001734 \N 99608 128 0001398 \N 99609 128 0000326 \N 99610 94 //www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=PubMed&list_uids=7570003&dopt=Abstract \N 99611 128 0000138 \N 99612 128 0000825 \N 99613 128 1001249 \N 99614 128 0000662 \N 99615 128 0001201 \N 99616 128 0000047 \N 99617 128 0000678 \N 99618 128 0000720 \N 99619 128 0000793 \N 99620 128 0000236 \N 99621 128 0001390 \N 99622 128 0001624 \N 99623 128 0001226 \N 99624 128 0000894 \N 99625 128 0001240 \N 99626 263 nw \N 99627 128 0000716 \N 99628 128 0000639 \N 99629 128 0000464 \N 99630 128 0005836 1 \N 99631 128 0005855 \N 99632 128 0001381 \N 99633 128 0000557 \N 99634 128 0100008 \N 99635 128 0001089 \N 99636 251 00052 \N 99637 128 0000494 \N 99638 128 0000751 \N 99639 128 1000144 \N 99640 128 0000027 \N 99641 128 0000940 \N 99642 128 0000529 \N 99643 128 0001566 \N 99644 128 0001599 \N 99645 128 0000365 \N 99646 128 0001554 \N 99647 128 0001678 \N 99648 128 0001358 \N 99649 128 0001150 \N 99650 128 0000760 \N 99651 128 0000616 \N 99652 128 0000727 \N 99653 128 SG \N 99654 128 0001255 \N 99655 128 0001757 \N 99656 128 0001010 \N 99657 3 9753739 \N 99658 128 0000962 \N 99659 128 0001661 \N 99660 128 0000617 \N 99661 128 0000395 \N 99662 94 //www.sanger.ac.uk/cgi-bin/Rfam/getacc?RF00020 \N 99663 128 0000743 \N 99664 128 0001410 \N 99665 128 1000081 \N 99666 128 0001353 \N 99667 128 1000155 \N 99668 128 0000407 \N 99669 128 0001045 \N 99670 269 at \N 99671 128 1001192 \N 99672 128 0000108 \N 99673 128 0000252 \N 99674 128 0001688 \N 99675 128 0000814 \N 99676 128 0000709 \N 99677 128 0000056 \N 99678 128 0001022 \N 99679 128 0000424 \N 99680 128 0001058 \N 99681 128 0001320 \N 99682 128 0000003 \N 99683 94 //www.ncbi.nlm.nih.gov/pubmed/7919797?dopt=Abstract \N 99684 128 0001457 \N 99685 128 0001794 \N 99686 128 0000530 \N 99687 128 0001129 \N 99688 251 00206 \N 99689 128 1000120 \N 99690 128 0000785 \N 99691 128 0000578 \N 99692 128 0000476 \N 99693 128 0001829 \N 99694 128 0000415 \N 99695 128 0001631 \N 99696 128 0001645 \N 99697 128 db \N 99698 128 0000413 \N 99699 128 0000260 \N 99700 128 0001482 \N 99701 128 0001511 \N 99702 128 0001218 \N 99703 128 0000111 \N 99704 128 1000089 \N 99705 128 0000955 \N 99706 128 0000750 \N 99707 128 0001641 \N 99708 128 0000356 \N 99709 128 0001238 \N 99710 128 0000964 \N 99711 128 1000118 \N 99712 128 0001502 \N 99713 128 0000624 1 \N 99714 128 0001630 \N 99715 128 0000332 \N 99716 128 1000180 \N 99717 128 0001590 \N 99718 128 0000691 \N 99719 251 00067 \N 99720 128 0001803 \N 99721 128 0000423 \N 99722 128 0000401 \N 99723 128 0001806 \N 99724 256 10.1093/jxb/50.331.157 \N 99725 3 2077689 \N 99726 128 0001039 \N 99727 128 0000707 \N 99728 128 0000882 \N 99729 128 1000002 \N 99730 128 1001254 \N 99731 128 0000869 \N 99732 128 0001388 \N 99733 128 0000279 \N 99734 128 0001563 \N 99735 128 0001135 \N 99736 251 00213 \N 99737 128 0000601 \N 99738 128 0001533 \N 99739 128 0000321 \N 99740 128 0001436 \N 99741 128 1000116 \N 99742 128 1000124 \N 99743 128 1000132 \N 99744 128 0000600 \N 99745 128 0000976 \N 99746 128 0001518 \N 99747 128 0000765 \N 99748 128 0001427 \N 99749 128 0001453 \N 99750 128 1001189 \N 99751 128 0000520 \N 99752 128 0000980 \N 99753 128 0000974 \N 99754 128 0001247 \N 99755 128 0001212 \N 99756 128 0001820 \N 99757 128 0000798 \N 99758 128 1000173 \N 99759 128 0000012 \N 99760 94 //www.ebi.ac.uk/embl/WebFeat/align/scRNA_s.html \N 99761 128 0001175 \N 99762 128 0000852 \N 99763 128 0000830 \N 99764 128 0001276 \N 99765 128 1000149 \N 99766 128 0001077 \N 99767 251 00158 \N 99768 254 curator_manual \N 99769 128 0001274 \N 99770 128 0000074 \N 99771 128 0000218 \N 99772 128 0000506 \N 99773 128 0000339 \N 99774 128 0000935 \N 99775 128 0000118 \N 99776 128 0001675 \N 99777 128 0001108 \N 99778 251 00209 \N 99779 270 //www.ebi.ac.uk/msd-srv/msdmotif/ \N 99780 128 0000991 \N 99781 128 0000021 \N 99782 128 0001777 \N 99783 128 0000280 \N 99784 128 0000205 \N 99785 128 1000011 \N 99786 128 0001580 \N 99787 128 0100017 \N 99788 128 0001155 \N 99789 128 0000223 \N 99790 128 0000518 \N 99791 128 0000908 \N 99792 128 0001315 \N 99793 128 0001371 \N 99794 128 0000513 \N 99795 128 0000293 \N 99796 128 0001791 \N 99797 128 0001743 \N 99798 128 1000094 \N 99799 128 0000366 \N 99800 128 0001621 \N 99801 128 0001663 \N 99802 128 0000541 \N 99803 128 0001413 \N 99804 128 0000148 \N 99805 128 0000733 \N 99806 128 0000212 \N 99807 128 0000287 \N 99808 128 0001442 \N 99809 128 1000062 \N 99810 128 0000030 \N 99811 128 0000306 \N 99812 128 0000244 \N 99813 128 0000995 \N 99814 128 0001340 \N 99815 128 0000848 \N 99816 128 0000554 \N 99817 128 0000128 \N 99818 128 0001117 \N 99819 251 00040 \N 99820 128 0000903 \N 99821 128 0001193 \N 99822 128 0001468 \N 99823 128 0000643 \N 99824 128 0000049 \N 99825 128 0001776 \N 99826 128 0001265 \N 99827 128 0005841 \N 99828 128 0000229 \N 99829 128 0001383 \N 99830 128 1000157 \N 99831 128 0001144 \N 99832 251 00235 \N 99833 128 0000886 \N 99834 128 0001296 \N 99835 128 0001084 \N 99836 251 00072 \N 99837 128 0000385 \N 99838 94 //www.sanger.ac.uk/cgi-bin/Rfam/getacc?RF00030 \N 99839 128 1000055 \N 99840 128 0001090 \N 99841 251 00246 \N 99842 128 0001560 \N 99843 128 0001194 \N 99844 88 48016 \N 99845 128 0000539 \N 99846 128 0001782 \N 99847 253 fc \N 99848 128 0000350 \N 99849 128 1001281 \N 99850 128 0001594 \N 99851 128 0000773 \N 99852 128 0000198 \N 99853 128 0000037 \N 99854 128 0000918 \N 99855 128 0001138 \N 99856 251 00219 \N 99857 128 0000651 \N 99858 128 0000487 \N 99859 128 0000440 \N 99860 128 0000835 \N 99861 128 0001718 \N 99862 128 0000630 \N 99863 128 0000698 \N 99864 128 0001750 \N 99865 128 0000685 \N 99866 128 0001603 \N 99867 128 0001705 \N 99868 128 1000036 \N 99869 128 0001588 \N 99870 128 0000952 \N 99871 128 0001651 \N 99872 128 0000859 \N 99873 128 0001302 \N 99874 128 0000143 \N 99875 128 MEMBER_OF \N 99876 128 GUIDED_BY \N 99877 128 NON_FUNCTIONAL_HOMOLOG_OF \N 99878 128 VARIANT_OF \N 99879 128 OVERLAPS \N 99899 2 phenotyping experiment \N 99900 2 accession \N 99901 2 plot \N 99902 2 plot_of \N 99903 2 autocreated:project year 1 \N 99904 2 autocreated:visible_to_role 1 \N 99905 2 local:synonym 1 \N 99906 271 taxonomy:no rank \N 99907 271 taxonomy:superkingdom \N 99908 271 taxonomy:subkingdom \N 99909 271 taxonomy:kingdom \N 99910 271 taxonomy:superphylum \N 99911 271 taxonomy:phylum \N 99912 271 taxonomy:subphylum \N 99913 271 taxonomy:superclass \N 99914 271 taxonomy:class \N 99915 271 taxonomy:subclass \N 99916 271 taxonomy:infraclass \N 99917 271 taxonomy:cohort \N 99918 271 taxonomy:subcohort \N 99919 271 taxonomy:superorder \N 99920 271 taxonomy:order \N 99921 271 taxonomy:suborder \N 99922 271 taxonomy:infraorder \N 99923 271 taxonomy:parvorder \N 99924 271 taxonomy:superfamily \N 99925 271 taxonomy:family \N 99926 271 taxonomy:subfamily \N 99927 271 taxonomy:tribe \N 99928 271 taxonomy:subtribe \N 99929 271 taxonomy:genus \N 99930 271 taxonomy:subgenus \N 99931 271 taxonomy:species group \N 99932 271 taxonomy:species subgroup \N 99933 271 taxonomy:species \N 99934 271 taxonomy:subspecies \N 99935 271 taxonomy:varietas \N 99936 271 taxonomy:forma \N 209338 273 breeding_program \N 209339 2 field layout \N 209340 2 offspring_of \N 209341 2 cross_name \N 209342 2 cross_type \N 209343 2 cross_experiment \N 209344 2 autocreated:cross \N 209345 2 member_of \N 99945 2 autocreated:synonym 1 \N 209346 273 breeding_program_trial_relationship \N 209355 2 autocreated:design 1 \N 209356 2 autocreated:replicate 1 \N 209357 2 autocreated:block 1 \N 209358 2 autocreated:plot number 1 \N 209347 273 plots \N 209348 273 accessions \N 209349 273 locations \N 209350 273 trials \N 209351 273 years \N 209352 273 traits \N 209353 273 unigene_ids \N 209354 273 locus_ids \N 209329 2 genotyping experiment \N 209330 2 snp genotyping \N 209331 2 autocreated:snp genotyping 1 \N 209332 2 cross \N 209333 2 pedigree experiment \N 209334 2 female_parent \N 209335 2 male_parent \N 209336 2 autocreated:organism_sequencing_metadata 1 \N 209359 2 project location \N 209360 273 clonal \N 209361 273 seedling \N 209362 273 trait_format \N 209363 273 trait_default_value \N 209364 273 trait_minimum \N 209365 273 trait_maximum \N 209366 273 trait_details \N 209367 273 trait_categories \N 209369 273 phenotyping_trial \N 209370 273 genotyping_trial \N 209371 273 crossing_trial \N 209372 2 tissue_sample \N 209373 2 tissue_sample_of \N 209374 2 genotyping layout \N 209375 2 autocreated:date 1 \N 209376 2 autocreated:operator 1 \N 209377 2 training population \N 209378 2 members of \N 209379 273 UYT \N 209380 273 PYT \N 209381 273 AYT \N 209382 275 journal \N 209383 92 10.1111/j.1742-4658.2007.06219.x \N 209384 3 18167141 \N 209385 2 autocreated:organism_synonym \N 209386 2 autocreated:stock_synonym \N 209387 2 autocreated:vector_construct \N 209388 2 autocreated:transgenic \N 209389 2 autocreated:T1 \N 209390 2 autocreated:T2 \N 209391 2 autocreated:vector_constructs \N 209392 2 autocreated:number_of_flowers \N 209393 2 autocreated:number_of_seeds \N 209394 2 autocreated:harvest_date \N 209395 2 autocreated:planting_date \N 209396 2 autocreated:cross_relationship \N 209401 2 autocreated:trial_folder \N 209402 2 autocreated:sp_person_id \N 209403 2 autocreated:plant_of \N 209404 2 autocreated:Fertilizer Event \N 209405 2 autocreated:Genotyping Event \N 209406 2 autocreated:Harvest Event \N 209407 2 autocreated:Meeting Event \N 209408 2 autocreated:Phenotyping Event \N 209409 2 autocreated:Planning Event \N 209410 2 autocreated:Presentation Event \N 209411 2 autocreated:Advance Yield Trial \N 209412 2 autocreated:Preliminary Yield Trial \N 209413 2 autocreated:Uniform Yield Trial \N 209414 2 autocreated:col_number \N 209415 2 autocreated:igd_synonym \N 209416 2 autocreated:is a control \N 209417 2 autocreated:location_code \N 209418 2 autocreated:organization \N 209419 2 autocreated:range \N 209420 2 autocreated:row_number \N 209421 2 autocreated:backcross population \N 209422 2 autocreated:f2 population \N 209423 2 autocreated:mutant population \N 209424 2 autocreated:plant \N 209425 2 autocreated:population \N 209426 2 autocreated:igd number \N 209427 2 autocreated:genotyping_project_name \N 209428 2 autocreated:genotyping_user_id \N 209429 2 autocreated:Planting Event \N 209430 276 10045 \N 209431 202 0000128 "Plant trait ontology" \N 209432 86 978-131-302-1 \N 209433 86 978-131-347-1 \N 209434 186 0000127 \N 209435 186 0000187 \N 209436 186 0000246 \N 209437 186 0000221 \N 209438 186 0000285 \N 209439 186 0000431 \N 209440 186 0000411 \N 209441 186 0000123 \N 209442 186 0000355 \N 209443 186 0000144 \N 209444 186 0000419 \N 209445 186 0000480 \N 209446 186 0000157 \N 209447 186 0000253 \N 209448 186 0000138 \N 209449 186 0000490 \N 209450 186 0000174 \N 209451 186 0000439 \N 209452 186 0000358 \N 209453 186 0000412 \N 209454 186 0000225 \N 209455 186 0000414 \N 209456 186 0000290 \N 209457 186 0000236 \N 209458 186 0000197 \N 209459 186 0000216 \N 209460 186 0000278 \N 209461 186 0000294 \N 209462 186 0000388 \N 209463 186 0000275 \N 209464 186 0000133 \N 209465 186 0000464 \N 209466 186 0000250 \N 209467 186 0000504 \N 209468 186 0000380 \N 209469 186 0000259 \N 209470 186 0000455 \N 209471 186 0000494 \N 209472 186 0000181 \N 209473 186 0000206 \N 209474 186 0000159 \N 209475 186 0000189 \N 209476 186 0000500 \N 209477 186 0000177 \N 209478 186 0000289 \N 209479 186 0000171 \N 209480 186 0000436 \N 209481 186 0000374 \N 209482 186 0000475 \N 209483 186 0000382 \N 209484 186 0000365 \N 209485 186 0000369 \N 209486 186 0000230 \N 209487 186 0000387 \N 209488 186 0000422 \N 209489 186 0000152 \N 209490 186 0000402 \N 209491 186 0000162 \N 209492 186 0000472 \N 209493 186 0000169 \N 209494 186 0000254 \N 209495 186 0000395 \N 209496 186 0000441 \N 209497 186 0000271 \N 209498 186 0000183 \N 209499 186 0000264 \N 209500 186 0000407 \N 209501 186 0000371 \N 209502 186 0000451 \N 209503 186 0000140 \N 209504 186 0000200 \N 209505 186 0000452 \N 209506 186 0000505 \N 209507 186 0000298 \N 209508 186 0000359 \N 209509 186 0000499 \N 209510 186 0000182 \N 209511 186 0000416 \N 209512 186 0000420 \N 209513 186 0000252 \N 209514 186 0000231 \N 209515 186 0000282 \N 209516 186 0000273 \N 209517 186 0000204 \N 209518 186 0000186 \N 209519 186 0000227 \N 209520 186 0000156 \N 209521 186 0000215 \N 209522 186 0000428 \N 209523 186 0000256 \N 209524 186 0000462 \N 209525 186 0000386 \N 209526 186 0000396 \N 209527 186 0000476 \N 209528 186 0000442 \N 209529 186 0000207 \N 209530 186 0000446 \N 209531 186 0000415 \N 209532 186 0000163 \N 209533 186 0000192 \N 209534 186 0000219 \N 209535 186 0000142 \N 209536 186 0000413 \N 209537 186 0000260 \N 209538 186 0000295 \N 209539 186 0000456 \N 209540 186 0000393 \N 209541 186 0000145 \N 209542 186 0000224 \N 209543 186 334\\ \N 209544 186 0000406 \N 209545 186 0000147 \N 209546 186 0000233 \N 209547 186 0000257 \N 209548 186 0000166 \N 209549 186 0000427 \N 209550 186 0000409 \N 209551 186 0000356 \N 209552 186 0000242 \N 209553 186 0000267 \N 209554 186 0000168 \N 209555 186 0000268 \N 209556 186 0000370 \N 209557 186 0000502 \N 209558 186 0000178 \N 209559 186 0000188 \N 209560 186 0000201 \N 209561 186 0000394 \N 209562 186 0000195 \N 209563 186 0000459 \N 209564 186 0000150 \N 209565 186 0000196 \N 209566 186 0000401 \N 209567 186 0000210 \N 209568 186 0000437 \N 209569 186 0000232 \N 209570 186 0000265 \N 209571 186 0000247 \N 209572 186 0000279 \N 209573 186 0000228 \N 209574 186 0000484 \N 209575 186 0000220 \N 209576 186 0000377 \N 209577 186 0000390 \N 209578 186 0000160 \N 209579 186 0000137 \N 209580 186 0000432 \N 209581 186 0000493 \N 209582 186 0000165 \N 209583 186 0000489 \N 209584 186 0000362 \N 209585 186 0000270 \N 209586 186 0000496 \N 209587 186 0000141 \N 209588 186 0000173 \N 209589 186 0000417 \N 209590 186 0000498 \N 209591 186 0000296 \N 209592 186 0000214 \N 209593 186 0000262 \N 209594 186 0000208 \N 209595 186 0000457 \N 209596 186 0000473 \N 209597 186 0000164 \N 209598 186 0000392 \N 209599 186 0000340 \N 209600 186 0000506 \N 209601 186 0000218 \N 209602 186 0000155 \N 209603 186 0000339 \N 209604 186 0000353 \N 209605 186 0000185 \N 209606 186 0000492 \N 209607 186 0000460 \N 209608 186 0000397 \N 209609 186 0000453 \N 209610 186 0000283 \N 209611 186 0000398 \N 209612 186 0000463 \N 209613 186 0000280 \N 209614 186 0000261 \N 209615 186 0000205 \N 209616 186 0000258 \N 209617 186 0000223 \N 209618 186 0000240 \N 209619 186 0000403 \N 209620 186 0000266 \N 209621 186 0000361 \N 209622 186 0000288 \N 209623 186 0000135 \N 209624 186 0000477 \N 209625 186 0000125 \N 209626 186 0000378 \N 209627 186 0000293 \N 209628 186 0000237 \N 209629 186 0000405 \N 209630 186 0000408 \N 209631 186 0000193 \N 209632 186 0000199 \N 209633 186 0000443 \N 209634 186 0000366 \N 209635 186 0000234 \N 209636 186 0000466 \N 209637 186 0000217 \N 209638 186 0000132 \N 209639 186 0000241 \N 209640 186 0000191 \N 209641 186 0000497 \N 209642 186 0000485 \N 209643 186 0000179 \N 209644 186 0000151 \N 209645 186 0000148 \N 209646 186 0000146 \N 209647 186 0000212 \N 209648 186 0000202 \N 209649 186 0000287 \N 209650 186 0000136 \N 209651 186 0000373 \N 209652 186 0000172 \N 209653 186 0000269 \N 209654 186 0000400 \N 209655 186 0000131 \N 209656 186 0000244 \N 209657 186 0000481 \N 209658 186 0000292 \N 209659 186 0000501 \N 209660 186 0000128 \N 209661 186 0000248 \N 209662 186 0000447 \N 209663 186 0000357 \N 209664 186 0000433 \N 209665 186 0000376 \N 209666 186 0000276 \N 209667 186 0000434 \N 209668 186 0000429 \N 209669 186 0000284 \N 209670 186 0000367 \N 209671 186 0000435 \N 209672 186 0000291 \N 209673 186 0000175 \N 209674 186 0000438 \N 209675 186 0000222 \N 209676 186 0000149 \N 209677 186 0000245 \N 209678 186 0000507 \N 209679 186 0000229 \N 209680 186 0000129 \N 209681 186 0000354 \N 209682 186 0000263 \N 209683 186 0000139 \N 209684 186 0000448 \N 209685 186 0000184 \N 209686 186 0000249 \N 209687 186 0000488 \N 209688 186 0000503 \N 209689 186 0000410 \N 209690 186 0000483 \N 209691 186 0000444 \N 209692 186 0000226 \N 209693 186 0000391 \N 209694 186 0000375 \N 209695 186 0000389 \N 209696 186 0000134 \N 209697 186 0000474 \N 209698 186 0000399 \N 209699 186 0000239 \N 209700 186 0000486 \N 209701 186 0000478 \N 209702 186 0000211 \N 209703 186 0000381 \N 209704 186 0000194 \N 209705 186 0000430 \N 209706 186 0000458 \N 209707 186 0000360 \N 209708 186 0000161 \N 209709 186 0000418 \N 209710 186 0000209 \N 209711 186 0000281 \N 209712 186 0000198 \N 209713 186 0000372 \N 209714 186 0000421 \N 209715 186 0000255 \N 209716 186 0000167 \N 209717 186 0000404 \N 209718 186 0000479 \N 209719 186 0000251 \N 209720 186 0000126 \N 209721 186 0000379 \N 209722 186 0000364 \N 209723 186 0000487 \N 209724 186 0000450 \N 209725 186 0000213 \N 209726 186 0000235 \N 209727 186 0000158 \N 209728 186 0000243 \N 209729 186 0000440 \N 209730 186 0000153 \N 209731 186 0000130 \N 209732 186 0000122 \N 209733 186 0000495 \N 209734 186 0000170 \N 209735 186 0000154 \N 209736 186 0000454 \N 209737 186 0000491 \N 209738 186 0000176 \N 209739 186 0000465 \N 209740 186 0000297 \N 209741 186 0000203 \N 209742 186 0000143 \N 209743 186 0000277 \N 209744 186 0000180 \N 209745 186 0000482 \N 209746 186 0000461 \N 209747 186 0000190 \N 209748 186 0000238 \N 209749 186 VARIABLE_OF \N 209750 186 0010248 \N 209751 186 0010371 \N 209752 186 0010287 \N 209753 186 0010291 \N 209754 186 0010393 \N 209755 186 0010366 \N 209756 186 0010230 \N 209757 186 0010372 \N 209758 186 0010360 \N 209759 186 0010280 \N 209760 186 0010368 \N 209761 186 0010431 \N 209762 186 0010002 \N 209763 186 0010293 \N 209764 186 0010456 \N 209765 186 0010232 \N 209766 186 0010265 \N 209767 186 0010345 \N 209768 186 0010255 \N 209769 186 0010464 \N 209770 186 0010394 \N 209771 186 0010260 \N 209772 186 0010005 \N 209773 186 0010354 \N 209774 186 0010223 \N 209775 186 0010302 \N 209776 186 0010382 \N 209777 186 0010273 \N 209778 186 0010343 \N 209779 186 0010406 \N 209780 186 0010388 \N 209781 186 0010263 \N 209782 186 0010418 \N 209783 186 0010385 \N 209784 186 0010337 \N 209785 186 0010470 \N 209786 186 0010245 \N 209787 186 0010326 \N 209788 186 0010404 \N 209789 186 0010383 \N 209790 186 0010252 \N 209791 186 0010374 \N 209792 186 0010391 \N 209793 186 0010278 \N 209794 186 0010295 \N 209795 186 0010243 \N 209796 186 0010348 \N 209797 186 0010413 \N 209798 186 0010448 \N 209799 186 0010277 \N 209800 186 0010233 \N 209801 186 0010398 \N 209802 186 0010386 \N 209803 186 0010271 \N 209804 186 0010221 \N 209805 186 0010466 \N 209806 186 0010412 \N 209807 186 0010414 \N 209808 186 0010409 \N 209809 186 0010316 \N 209810 186 0010377 \N 209811 186 0010262 \N 209812 186 0010449 \N 209813 186 0010220 \N 209814 186 0010305 \N 209815 186 0010349 \N 209816 186 0010328 \N 209817 186 0010317 \N 209818 186 0010000 \N 209819 186 0010375 \N 209820 186 0010427 \N 209821 186 0010322 \N 209822 186 0010308 \N 209823 186 0010333 \N 209824 186 0010226 \N 209825 186 0010445 \N 209826 186 0010468 \N 209827 186 0010421 \N 209828 186 0010355 \N 209829 186 0010254 \N 209830 186 0010297 \N 209831 186 0010401 \N 209832 186 0010344 \N 209833 186 0010423 \N 209834 186 0010358 \N 209835 186 0010435 \N 209836 186 0010396 \N 209837 186 0010437 \N 209838 186 0010351 \N 209839 186 0010416 \N 209840 186 0010453 \N 209841 186 0010363 \N 209842 186 0010340 \N 209843 186 0010250 \N 209844 186 0010400 \N 209845 186 0010292 \N 209846 186 0010361 \N 209847 186 0010276 \N 209848 186 0010353 \N 209849 186 0010462 \N 209850 186 0010228 \N 209851 186 0010459 \N 209852 186 0010282 \N 209853 186 0010433 \N 209854 186 0010267 \N 209855 186 0010319 \N 209856 186 0010249 \N 209857 186 0010451 \N 209858 186 0010303 \N 209859 186 0010458 \N 209860 186 0010342 \N 209861 186 0010285 \N 209862 186 0010288 \N 209863 186 0010357 \N 209864 186 0010425 \N 209865 186 0010441 \N 209866 186 0010410 \N 209867 186 0010408 \N 209868 186 0010238 \N 209869 186 0010447 \N 209870 186 0010346 \N 209871 186 0010309 \N 209872 186 0010336 \N 209873 186 0010469 \N 209874 186 0010365 \N 209875 186 0010325 \N 209876 186 0010004 \N 209877 186 0010373 \N 209878 186 0010231 \N 209879 186 0010432 \N 209880 186 0010299 \N 209881 186 0010384 \N 209882 186 0010304 \N 209883 186 0010443 \N 209884 186 0010335 \N 209885 186 0010378 \N 209886 186 0010283 \N 209887 186 0010471 \N 209888 186 0010338 \N 209889 186 0010313 \N 209890 186 0010324 \N 209891 186 0010380 \N 209892 186 0010222 \N 209893 186 0010399 \N 209894 186 0010284 \N 209895 186 0010270 \N 209896 186 0010367 \N 209897 186 0010450 \N 209898 186 0010290 \N 209899 186 0010440 \N 209900 186 0010438 \N 209901 186 0010311 \N 209902 186 0010389 \N 209903 186 0010455 \N 209904 186 0010227 \N 209905 186 0010347 \N 209906 186 0010369 \N 209907 186 0010463 \N 209908 186 0010460 \N 209909 186 0010379 \N 209910 186 0010236 \N 209911 186 0010259 \N 209912 186 0010397 \N 209913 186 0010272 \N 209914 186 0010286 \N 209915 186 0010268 \N 209916 186 0010415 \N 209917 186 0010429 \N 209918 186 0010359 \N 209919 186 0010301 \N 209920 186 0010225 \N 209921 186 0010294 \N 209922 186 0010405 \N 209923 186 0010381 \N 209924 186 0010439 \N 209925 186 0010224 \N 209926 186 0010327 \N 209927 186 0010234 \N 209928 186 0010467 \N 209929 186 0010428 \N 209930 186 0010407 \N 209931 186 0010402 \N 209932 186 0010395 \N 209933 186 0010376 \N 209934 186 0010339 \N 209935 186 0010430 \N 209936 186 0010387 \N 209937 186 0010289 \N 209938 186 0010258 \N 209939 186 0010417 \N 209940 186 0010321 \N 209941 186 0010257 \N 209942 186 0010306 \N 209943 186 0010296 \N 209944 186 0010329 \N 209945 186 0010356 \N 209946 186 0010334 \N 209947 186 0010350 \N 209948 186 0010403 \N 209949 186 0010323 \N 209950 186 0010001 \N 209951 186 0010422 \N 209952 186 0010300 \N 209953 186 0010240 \N 209954 186 0010392 \N 209955 186 0010310 \N 209956 186 0010266 \N 209957 186 0010465 \N 209958 186 0010446 \N 209959 186 0010426 \N 209960 186 0010352 \N 209961 186 0010314 \N 209962 186 0010247 \N 209963 186 0010330 \N 209964 186 0010341 \N 209965 186 0010237 \N 209966 186 0010452 \N 209967 186 0010442 \N 209968 186 0010312 \N 209969 186 0010320 \N 209970 186 0010315 \N 209971 186 0010318 \N 209972 186 0010364 \N 209973 186 0010419 \N 209974 186 0010242 \N 209975 186 0010239 \N 209976 186 0010390 \N 209977 186 0010444 \N 209978 186 0010454 \N 209979 186 0010244 \N 209980 186 0010436 \N 209981 186 0010461 \N 209982 186 0010298 \N 209983 186 0010457 \N 209984 186 0010424 \N 209985 186 0010253 \N 209986 186 0010275 \N 209987 186 0010003 \N 209988 186 0010362 \N 209989 186 0010420 \N 209990 186 0010411 \N 209991 186 0010434 \N 209992 186 0010332 \N 209993 186 0010370 \N 209994 186 METHOD_OF \N 210003 2 project_has_plant_entries \N 210005 2 plant_number \N 210006 2 plant_index_number \N 210007 273 Variety Release Trial \N 210008 273 Clonal Evaluation \N 210009 186 0010472 \N 210011 2 autocreated:date_of_pollination \N 210012 2 autocreated:date_of_harvest \N 210013 2 autocreated:date_of_seed_extraction \N 210014 2 autocreated:number_of_seeds_extracted \N 210015 2 autocreated:number_of_viable_seeds \N 210016 2 autocreated:number_of_nonviable_seeds \N 210017 2 autocreated:date_of_embryo_rescue \N 210018 2 autocreated:number_of_embryos_rescued \N 210019 2 autocreated:number_of_embryos_germinated \N 210020 2 autocreated:number_of_embryos_contaminated \N 210021 2 autocreated:number_of_seeds_planted \N 210022 2 autocreated:number_of_seeds_germinated \N 210023 2 autocreated:days_to_maturity \N 210024 2 autocreated:days_from_harvest_to_extraction \N 210025 2 autocreated:days_from_extraction_to_embryo_rescue \N 210026 2 autocreated:number_of_progeny \N 210027 2 autocreated:dataset \N 210028 2 autocreated:crosses \N 210029 2 autocreated:populations \N 210030 2 autocreated:numbers \N 210031 2 autocreated:folder_for_trials \N 210032 2 autocreated:folder_for_crosses \N 210033 2 autocreated:active \N 210034 2 autocreated:breeding_program_abbreviation \N 210035 2 autocreated:species authority \N 210036 2 autocreated:subtaxa \N 210037 2 autocreated:subtaxa authority \N 210038 2 autocreated:published date \N 210039 2 autocreated:protocol type \N 210040 2 autocreated:protocol unit \N 210041 2 autocreated:protocol comment \N 210042 2 autocreated:accession number \N 210043 2 autocreated:PUI \N 210044 2 autocreated:donor \N 210045 2 autocreated:donor institute \N 210046 2 autocreated:donor PUI \N 210047 2 autocreated:seed source \N 210048 2 autocreated:institute code \N 210049 2 autocreated:institute name \N 210050 2 autocreated:biological status of accession code \N 210051 2 autocreated:country of origin \N 210052 2 autocreated:type of germplasm storage code \N 210053 2 autocreated:entry number \N 210054 2 autocreated:acquisition date \N 210055 2 autocreated:uri \N 210056 2 autocreated:datatype \N 210057 2 autocreated:code \N 210058 2 autocreated:country_name \N 210059 2 autocreated:country_code \N 210060 2 autocreated:abbreviation \N 210061 2 autocreated:location_type \N 210062 2 autocreated:annual_total_precipitation \N 210063 2 autocreated:continent \N 210064 2 autocreated:annual_mean_temperature \N 210065 2 autocreated:adm1 \N 210066 2 autocreated:adm2 \N 210067 2 autocreated:adm3 \N 210068 2 autocreated:local_name \N 210069 2 autocreated:region \N 210070 2 autocreated:alternative_name \N 210071 277 0000013 \N 210072 277 0000000 \N 210073 277 0000005 \N 210074 277 0000010 \N 210075 277 0000007 \N 210076 277 0000008 \N 210077 277 0000009 \N 210078 277 0000002 \N 210079 277 0000006 \N 210080 277 0000001 \N 210081 277 0000012 \N 210082 277 0000003 \N 210083 277 0000004 \N 210084 277 0000011 \N 210085 88 26986 \N 210086 2 EXACT IUPAC_NAME \N 210087 2 RELATED \N 210088 2 RELATED FORMULA \N 210089 278 15221503 "PubMed citation" \N 210090 278 11379295 "PubMed citation" \N 210091 279 8204750 "Beilstein Registry Number" \N 210092 278 22264337 "PubMed citation" \N 210093 280 80-68-2 "CAS Registry Number" \N 210094 104 Threonine "Wikipedia" \N 210095 281 80-68-2 "CAS Registry Number" \N 210096 88 17242 1 \N 210097 2 EXACT \N 210098 2 RELATED SMILES \N 210099 2 RELATED InChI \N 210100 2 RELATED InChIKey \N 210101 88 4358 \N 210102 88 14108 \N 210103 88 23592 \N 210104 278 15326362 "PubMed citation" \N 210105 278 1897478 "PubMed citation" \N 210106 282 HMDB01264 "HMDB" \N 210107 278 8904295 "PubMed citation" \N 210108 278 1962589 "PubMed citation" \N 210109 278 2060038 "PubMed citation" \N 210110 278 9586809 "PubMed citation" \N 210111 278 3450633 "PubMed citation" \N 210112 278 8549805 "PubMed citation" \N 210113 278 10383010 "PubMed citation" \N 210114 278 3727042 "PubMed citation" \N 210115 87 L-DEHYDRO-ASCORBATE "MetaCyc" \N 210116 278 15247557 "PubMed citation" \N 210117 104 Dehydroascorbic acid "Wikipedia" \N 210118 278 15139458 "PubMed citation" \N 210119 278 9094879 "PubMed citation" \N 210120 278 12893026 "PubMed citation" \N 210121 278 9719486 "PubMed citation" \N 210122 278 2394726 "PubMed citation" \N 210123 283 C00425 "KEGG COMPOUND" \N 210124 283 490-83-5 "CAS Registry Number" \N 210125 88 17981 \N 210126 88 7668 \N 210127 88 12710 \N 210128 88 21938 \N 210129 88 12685 \N 210130 88 12724 \N 210131 88 44568 \N 210132 278 7952062 "PubMed citation" \N 210133 278 19212411 "PubMed citation" \N 210134 87 ACETYLSERINE "MetaCyc" \N 210135 284 C00007459 "KNApSAcK" \N 210136 104 O-Acetylserine "Wikipedia" \N 210137 281 5147-00-2 "CAS Registry Number" \N 210138 285 DB01837 "DrugBank" \N 210139 282 HMDB03011 "HMDB" \N 210140 286 1723791 "Reaxys Registry Number" \N 210141 278 23483228 "PubMed citation" \N 210142 278 21388201 "PubMed citation" \N 210143 283 C00979 "KEGG COMPOUND" \N 210144 283 5147-00-2 "CAS Registry Number" \N 210145 287 OAS "PDBeChem" \N 210146 88 30746 \N 210147 88 3029 \N 210148 88 22722 \N 210149 88 41051 \N 210150 278 21162532 "PubMed citation" \N 210151 278 18314336 "PubMed citation" \N 210152 286 636131 "Reaxys Registry Number" \N 210153 278 17439666 "PubMed citation" \N 210154 278 19812218 "PubMed citation" \N 210155 104 Benzoic acid "Wikipedia" \N 210156 281 0000065850 "ChemIDplus" \N 210157 278 16728954 "PubMed citation" \N 210158 87 BENZOATE "MetaCyc" \N 210159 278 12097436 "PubMed citation" \N 210160 278 7712673 "PubMed citation" \N 210161 278 21443171 "PubMed citation" \N 210162 279 636131 "Beilstein Registry Number" \N 210163 278 8135043 "PubMed citation" \N 210164 87 1-O6-O-DIGALLOYL-BETA-D-GLUCOSE "MetaCyc" \N 210165 278 21973101 "PubMed citation" \N 210166 104 Benzoic_Acid "Wikipedia" \N 210167 288 2946 "Gmelin Registry Number" \N 210168 289 YMDB02301 "YMDB" \N 210169 290 D00038 "KEGG DRUG" \N 210170 284 C00000207 "KNApSAcK" \N 210171 278 21954959 "PubMed citation" \N 210172 278 3379586 "PubMed citation" \N 210173 281 65-85-0 "CAS Registry Number" \N 210174 280 65-85-0 "CAS Registry Number" \N 210175 285 DB03793 "DrugBank" \N 210176 278 357810 "PubMed citation" \N 210177 278 9884323 "PubMed citation" \N 210178 278 3229281 "PubMed citation" \N 210179 283 C00539 "KEGG COMPOUND" \N 210180 282 HMDB01870 "HMDB" \N 210181 278 20809621 "PubMed citation" \N 210182 278 12771321 "PubMed citation" \N 210183 278 2420162 "PubMed citation" \N 210184 278 2293213 "PubMed citation" \N 210185 278 7204686 "PubMed citation" \N 210186 278 2339094 "PubMed citation" \N 210187 283 C00180 "KEGG COMPOUND" \N 210188 283 65-85-0 "CAS Registry Number" \N 210189 287 BEZ "PDBeChem" \N 210190 88 18248 \N 210191 88 24872 \N 210192 88 5974 \N 210193 88 13322 \N 210194 291 Fe "WebElements" \N 210195 286 4122945 "Reaxys Registry Number" \N 210196 281 7439-89-6 "CAS Registry Number" \N 210197 282 HMDB15531 "HMDB" \N 210198 285 DB01592 "DrugBank" \N 210199 280 7439-89-6 "CAS Registry Number" \N 210200 283 C00023 "KEGG COMPOUND" \N 210201 283 7439-89-6 "CAS Registry Number" \N 210202 88 22660 \N 210203 286 774618 "Reaxys Registry Number" \N 210204 104 Aspartic_acid "Wikipedia" \N 210205 283 617-45-8 "CAS Registry Number" \N 210206 279 774618 "Beilstein Registry Number" \N 210207 280 617-45-8 "CAS Registry Number" \N 210208 283 C16433 "KEGG COMPOUND" \N 210209 281 617-45-8 "CAS Registry Number" \N 210210 288 185140 "Gmelin Registry Number" \N 210211 88 27570 \N 210212 88 24598 \N 210213 88 43118 \N 210214 88 5733 \N 210215 104 Histidine "Wikipedia" \N 210216 286 84087 "Reaxys Registry Number" \N 210217 279 84087 "Beilstein Registry Number" \N 210218 278 17190852 "PubMed citation" \N 210219 288 3656 "Gmelin Registry Number" \N 210220 281 4998-57-6 "CAS Registry Number" \N 210221 284 C00001363 "KNApSAcK" \N 210222 278 22770225 "PubMed citation" \N 210223 283 C00768 "KEGG COMPOUND" \N 210224 88 16534 \N 210225 88 4132 \N 210226 286 1726059 "Reaxys Registry Number" \N 210227 278 2026685 "PubMed citation" \N 210228 87 D-GALACTONO-1\\,4-LACTONE "MetaCyc" \N 210229 278 21389975 "PubMed citation" \N 210230 281 576-36-3 "CAS Registry Number" \N 210231 283 13382-27-9 "CAS Registry Number" \N 210232 278 10517369 "PubMed citation" \N 210233 282 HMDB00565 "HMDB" \N 210234 278 14680973 "PubMed citation" \N 210235 278 22411374 "PubMed citation" \N 210236 283 C00880 "KEGG COMPOUND" \N 210237 88 28757 1 \N 210238 88 5172 \N 210239 88 24110 \N 210240 88 24104 \N 210241 285 DB04173 "DrugBank" \N 210242 104 Fructose "Wikipedia" \N 210243 283 C01496 "KEGG COMPOUND" \N 210244 281 30237-26-4 "CAS Registry Number" \N 210245 88 15751 \N 210246 88 13230 \N 210247 88 20846 \N 210248 88 2349 \N 210249 88 40615 \N 210250 281 2140-58-1 "CAS Registry Number" \N 210251 282 HMDB06557 "HMDB" \N 210252 278 25133777 "PubMed citation" \N 210253 278 23292602 "PubMed citation" \N 210254 292 G11109 "KEGG GLYCAN" \N 210255 286 1207857 "Reaxys Registry Number" \N 210256 278 15951568 "PubMed citation" \N 210257 278 24762788 "PubMed citation" \N 210258 293 ECMDB06557 "ECMDB" \N 210259 278 23537328 "PubMed citation" \N 210260 283 C00498 "KEGG COMPOUND" \N 210261 287 ADQ "PDBeChem" \N 210262 88 18300 \N 210263 88 43836 \N 210264 88 6653 \N 210265 88 25119 \N 210266 278 12859262 "PubMed citation" \N 210267 278 15835174 "PubMed citation" \N 210268 278 10965422 "PubMed citation" \N 210269 280 110-16-7 "CAS Registry Number" \N 210270 279 1903639 "Beilstein Registry Number" \N 210271 278 10522050 "PubMed citation" \N 210272 278 16043230 "PubMed citation" \N 210273 282 HMDB00176 "HMDB" \N 210274 104 Maleic acid "Wikipedia" \N 210275 278 16797943 "PubMed citation" \N 210276 278 9591280 "PubMed citation" \N 210277 278 7075967 "PubMed citation" \N 210278 281 110-16-7 "CAS Registry Number" \N 210279 288 49854 "Gmelin Registry Number" \N 210280 284 C00007417 "KNApSAcK" \N 210281 278 9872612 "PubMed citation" \N 210282 286 605762 "Reaxys Registry Number" \N 210283 278 10635272 "PubMed citation" \N 210284 278 16778650 "PubMed citation" \N 210285 278 20669995 "PubMed citation" \N 210286 278 15924314 "PubMed citation" \N 210287 278 12895502 "PubMed citation" \N 210288 278 12009699 "PubMed citation" \N 210289 278 1495787 "PubMed citation" \N 210290 279 605762 "Beilstein Registry Number" \N 210291 285 DB04299 "DrugBank" \N 210292 278 10952545 "PubMed citation" \N 210293 278 11386868 "PubMed citation" \N 210294 278 8087979 "PubMed citation" \N 210295 278 10024972 "PubMed citation" \N 210296 87 MALEATE "MetaCyc" \N 210297 104 Maleic_acid "Wikipedia" \N 210298 278 9835798 "PubMed citation" \N 210299 278 12450709 "PubMed citation" \N 210300 278 2759844 "PubMed citation" \N 210301 278 7905382 "PubMed citation" \N 210302 287 MAE "PDBeChem" \N 210303 283 110-16-7 "CAS Registry Number" \N 210304 283 C01384 "KEGG COMPOUND" \N 210305 88 18186 1 \N 210306 88 15277 \N 210307 88 9800 \N 210308 88 27176 \N 210309 279 515881 "Beilstein Registry Number" \N 210310 284 C00001397 "KNApSAcK" \N 210311 288 27744 "Gmelin Registry Number" \N 210312 283 556-03-6 "CAS Registry Number" \N 210313 281 55520-40-6 "CAS Registry Number" \N 210314 286 515881 "Reaxys Registry Number" \N 210315 283 C01536 "KEGG COMPOUND" \N 210316 88 30916 \N 210317 288 2159365 "Gmelin Registry Number" \N 210318 286 4132418 "Reaxys Registry Number" \N 210319 286 144509-68-2 "CAS Registry Number" \N 210320 279 4132418 "Beilstein Registry Number" \N 210321 88 15361 \N 210322 88 14987 \N 210323 88 26462 \N 210324 286 3587721 "Reaxys Registry Number" \N 210325 278 21823181 "PubMed citation" \N 210326 278 22215378 "PubMed citation" \N 210327 278 22311625 "PubMed citation" \N 210328 278 22006570 "PubMed citation" \N 210329 278 22458763 "PubMed citation" \N 210330 278 21603897 "PubMed citation" \N 210331 281 57-60-3 "CAS Registry Number" \N 210332 288 2502 "Gmelin Registry Number" \N 210333 279 3587721 "Beilstein Registry Number" \N 210334 278 22451307 "PubMed citation" \N 210335 278 21854850 "PubMed citation" \N 210336 278 22016370 "PubMed citation" \N 210337 294 c0159 "UM-BBD compID" \N 210338 294 C00022 "KEGG COMPOUND" \N 210339 88 45212 \N 210340 88 33018 \N 210341 88 45208 \N 210342 285 DB02212 "DrugBank" \N 210343 288 185085 "Gmelin Registry Number" \N 210344 287 POP "PDBeChem" \N 210345 88 16761 \N 210346 88 13222 \N 210347 88 22244 \N 210348 88 40553 \N 210349 88 2342 \N 210350 87 ADP "MetaCyc" \N 210351 282 HMDB01341 "HMDB" \N 210352 278 15945611 "PubMed citation" \N 210353 278 16371119 "PubMed citation" \N 210354 278 15869601 "PubMed citation" \N 210355 278 17010792 "PubMed citation" \N 210356 104 ADP "Wikipedia" \N 210357 278 15763887 "PubMed citation" \N 210358 288 88452 "Gmelin Registry Number" \N 210359 278 15654516 "PubMed citation" \N 210360 278 15993662 "PubMed citation" \N 210361 284 C00019353 "KNApSAcK" \N 210362 278 8719843 "PubMed citation" \N 210363 278 1399831 "PubMed citation" \N 210364 278 15882454 "PubMed citation" \N 210365 279 67722 "Beilstein Registry Number" \N 210366 278 16295522 "PubMed citation" \N 210367 286 67722 "Reaxys Registry Number" \N 210368 283 58-64-0 "CAS Registry Number" \N 210369 292 G11113 "KEGG GLYCAN" \N 210370 285 DB03431 "DrugBank" \N 210371 278 24023812 "PubMed citation" \N 210372 278 16761747 "PubMed citation" \N 210373 295 MOL000173 "COMe" \N 210374 278 1515641 "PubMed citation" \N 210375 278 15886810 "PubMed citation" \N 210376 278 16307036 "PubMed citation" \N 210377 281 58-64-0 "CAS Registry Number" \N 210378 287 ADP "PDBeChem" \N 210379 283 C00008 "KEGG COMPOUND" \N 210380 283 20398-34-9 "CAS Registry Number" \N 210381 88 26546 1 \N 210382 278 24211429 "PubMed citation" \N 210383 278 24831810 "PubMed citation" \N 210384 88 28659 \N 210385 88 8168 \N 210386 88 26080 \N 210387 281 7723-14-0 "CAS Registry Number" \N 210388 291 P "WebElements" \N 210389 288 16235 "Gmelin Registry Number" \N 210390 283 7723-14-0 "CAS Registry Number" \N 210391 283 C06262 "KEGG COMPOUND" \N 210392 88 15895 \N 210393 88 12932 \N 210394 88 4133 \N 210395 88 20949 \N 210396 282 HMDB02541 "HMDB" \N 210397 278 1797843 "PubMed citation" \N 210398 293 ECMDB21440 "ECMDB" \N 210399 278 20094898 "PubMed citation" \N 210400 286 83008 "Reaxys Registry Number" \N 210401 281 2782-07-2 "CAS Registry Number" \N 210402 283 2782-07-2 "CAS Registry Number" \N 210403 283 C03383 "KEGG COMPOUND" \N 210404 88 17992 \N 210405 88 15128 \N 210406 88 26812 \N 210407 88 45795 \N 210408 88 9314 \N 210409 280 57-50-1 "CAS Registry Number" \N 210410 278 19726178 "PubMed citation" \N 210411 278 18625236 "PubMed citation" \N 210412 278 16313996 "PubMed citation" \N 210413 278 22751876 "PubMed citation" \N 210414 278 3760912 "PubMed citation" \N 210415 278 16636358 "PubMed citation" \N 210416 278 16055118 "PubMed citation" \N 210417 278 803775 "PubMed citation" \N 210418 278 12706980 "PubMed citation" \N 210419 278 19199566 "PubMed citation" \N 210420 286 90825 "Reaxys Registry Number" \N 210421 278 16187674 "PubMed citation" \N 210422 278 19259987 "PubMed citation" \N 210423 288 97695 "Gmelin Registry Number" \N 210424 278 16304615 "PubMed citation" \N 210425 278 22311778 "PubMed citation" \N 210426 282 HMDB00258 "HMDB" \N 210427 285 DB02772 "DrugBank" \N 210428 87 SUCROSE "MetaCyc" \N 210429 278 14583037 "PubMed citation" \N 210430 279 90825 "Beilstein Registry Number" \N 210431 278 16660545 "PubMed citation" \N 210432 278 12065720 "PubMed citation" \N 210433 278 22404833 "PubMed citation" \N 210434 286 1435311 "Reaxys Registry Number" \N 210435 104 Sucrose "Wikipedia" \N 210436 278 3546377 "PubMed citation" \N 210437 278 2745674 "PubMed citation" \N 210438 278 11093712 "PubMed citation" \N 210439 278 15845855 "PubMed citation" \N 210440 278 17597061 "PubMed citation" \N 210441 278 15291457 "PubMed citation" \N 210442 278 16665852 "PubMed citation" \N 210443 290 D00025 "KEGG DRUG" \N 210444 292 G00370 "KEGG GLYCAN" \N 210445 278 22944170 "PubMed citation" \N 210446 278 12948025 "PubMed citation" \N 210447 290 D06533 "KEGG DRUG" \N 210448 278 17233733 "PubMed citation" \N 210449 278 16663947 "PubMed citation" \N 210450 278 11021636 "PubMed citation" \N 210451 278 2127677 "PubMed citation" \N 210452 278 9154994 "PubMed citation" \N 210453 284 C00001151 "KNApSAcK" \N 210454 278 16525719 "PubMed citation" \N 210455 278 15792978 "PubMed citation" \N 210456 278 16228482 "PubMed citation" \N 210457 278 21703290 "PubMed citation" \N 210458 278 22932811 "PubMed citation" \N 210459 278 16455609 "PubMed citation" \N 210460 278 10833096 "PubMed citation" \N 210461 278 15660210 "PubMed citation" \N 210462 278 11111003 "PubMed citation" \N 210463 278 13508893 "PubMed citation" \N 210464 278 21972845 "PubMed citation" \N 210465 278 22085755 "PubMed citation" \N 210466 278 9055897 "PubMed citation" \N 210467 278 9003897 "PubMed citation" \N 210468 281 57-50-1 "CAS Registry Number" \N 210469 287 SUC "PDBeChem" \N 210470 283 57-50-1 "CAS Registry Number" \N 210471 283 C00089 "KEGG COMPOUND" \N 210472 88 18222 1 \N 210473 88 27348 \N 210474 88 46500 \N 210475 88 15332 \N 210476 88 33944 \N 210477 88 10085 \N 210478 104 Xylose "Wikipedia" \N 210479 283 C01394 "KEGG COMPOUND" \N 210480 88 16811 \N 210481 88 14590 \N 210482 88 25229 \N 210483 88 6829 \N 210484 290 D04983 "KEGG DRUG" \N 210485 286 636185 "Reaxys Registry Number" \N 210486 288 3117 "Gmelin Registry Number" \N 210487 104 Methionine "Wikipedia" \N 210488 278 16702333 "PubMed citation" \N 210489 279 636185 "Beilstein Registry Number" \N 210490 278 2543976 "PubMed citation" \N 210491 283 59-51-8 "CAS Registry Number" \N 210492 281 59-51-8 "CAS Registry Number" \N 210493 280 59-51-8 "CAS Registry Number" \N 210494 296 c0094 "UM-BBD compID" \N 210495 283 C01733 "KEGG COMPOUND" \N 210496 88 16441 \N 210497 2 RELATED MONOISOTOPIC_MASS \N 210498 2 RELATED MASS \N 210499 88 14512 \N 210500 88 6470 \N 210501 88 25043 \N 210502 284 C00001446 \N 210503 297 554-35-8 "KEGG COMPOUND" \N 210504 103 C01594 \N 210505 88 00000 \N 210506 88 27266 \N 210507 288 49877 "Gmelin Registry Number" \N 210508 283 516-06-3 "CAS Registry Number" \N 210509 280 516-06-3 "CAS Registry Number" \N 210510 104 Valine "Wikipedia" \N 210511 283 C16436 "KEGG COMPOUND" \N 210512 279 506689 "Beilstein Registry Number" \N 210513 286 506689 "Reaxys Registry Number" \N 210514 281 516-06-3 "CAS Registry Number" \N 210515 88 17050 \N 210516 88 40016 \N 210517 88 11882 \N 210518 88 1659 \N 210519 88 24345 \N 210520 278 22735334 "PubMed citation" \N 210521 278 2490073 "PubMed citation" \N 210522 282 HMDB00807 "HMDB" \N 210523 278 7602787 "PubMed citation" \N 210524 104 3-Phosphoglycerate "Wikipedia" \N 210525 284 C00007286 "KNApSAcK" \N 210526 286 1726829 "Reaxys Registry Number" \N 210527 278 10937433 "PubMed citation" \N 210528 278 2153800 "PubMed citation" \N 210529 278 183226 "PubMed citation" \N 210530 278 7664478 "PubMed citation" \N 210531 285 DB04510 "DrugBank" \N 210532 278 23857558 "PubMed citation" \N 210533 278 36399 "PubMed citation" \N 210534 281 820-11-1 "CAS Registry Number" \N 210535 278 9055056 "PubMed citation" \N 210536 104 3-Phosphoglyceric_acid "Wikipedia" \N 210537 278 8412001 "PubMed citation" \N 210538 283 C00597 "KEGG COMPOUND" \N 210539 88 25017 1 \N 210540 286 636005 "Reaxys Registry Number" \N 210541 280 328-39-2 "CAS Registry Number" \N 210542 281 328-39-2 "CAS Registry Number" \N 210543 283 C16439 "KEGG COMPOUND" \N 210544 104 Leucine "Wikipedia" \N 210545 298 LMFA01100048 "LIPID MAPS instance" \N 210546 279 636005 "Beilstein Registry Number" \N 210547 288 50203 "Gmelin Registry Number" \N 210548 88 33508 \N 210549 88 24349 \N 210550 88 33846 \N 210551 88 24348 \N 210552 104 Glyceric_acid "Wikipedia" \N 210553 278 21071844 "PubMed citation" \N 210554 278 22226201 "PubMed citation" \N 210555 286 1721417 "Reaxys Registry Number" \N 210556 278 21701101 "PubMed citation" \N 210557 278 21852749 "PubMed citation" \N 210558 278 14957916 "PubMed citation" \N 210559 279 1721417 "Beilstein Registry Number" \N 210560 288 164608 "Gmelin Registry Number" \N 210561 281 473-81-4 "CAS Registry Number" \N 210562 88 17234 1 \N 210563 88 14313 \N 210564 88 5418 \N 210565 88 24277 \N 210566 88 33929 \N 210567 104 Glucose "Wikipedia" \N 210568 283 C00293 "KEGG COMPOUND" \N 210569 283 50-99-7 "CAS Registry Number" \N 210570 88 27354 \N 210571 278 24659577 "PubMed citation" \N 210572 104 Xylulose_5-phosphate "Wikipedia" \N 210573 88 16189 \N 210574 88 9335 \N 210575 88 15135 \N 210576 88 45687 \N 210577 278 18398178 "PubMed citation" \N 210578 278 16345535 "PubMed citation" \N 210579 278 16534979 "PubMed citation" \N 210580 278 16742508 "PubMed citation" \N 210581 278 12166931 "PubMed citation" \N 210582 278 12653630 "PubMed citation" \N 210583 278 10796146 "PubMed citation" \N 210584 278 14609305 "PubMed citation" \N 210585 278 16072037 "PubMed citation" \N 210586 278 10917625 "PubMed citation" \N 210587 278 13679662 "PubMed citation" \N 210588 278 2094230 "PubMed citation" \N 210589 278 8201096 "PubMed citation" \N 210590 278 11279786 "PubMed citation" \N 210591 281 14808-79-8 "CAS Registry Number" \N 210592 278 17120760 "PubMed citation" \N 210593 279 3648446 "Beilstein Registry Number" \N 210594 278 19544990 "PubMed citation" \N 210595 278 16483812 "PubMed citation" \N 210596 278 12668033 "PubMed citation" \N 210597 278 15984785 "PubMed citation" \N 210598 278 16347366 "PubMed citation" \N 210599 278 11599227 "PubMed citation" \N 210600 278 16709188 "PubMed citation" \N 210601 278 10796145 "PubMed citation" \N 210602 278 11114076 "PubMed citation" \N 210603 278 16475944 "PubMed citation" \N 210604 278 8038262 "PubMed citation" \N 210605 278 17692016 "PubMed citation" \N 210606 278 17420092 "PubMed citation" \N 210607 280 14808-79-8 "CAS Registry Number" \N 210608 290 D05963 "KEGG DRUG" \N 210609 278 14597181 "PubMed citation" \N 210610 278 7823020 "PubMed citation" \N 210611 278 16709182 "PubMed citation" \N 210612 278 12804383 "PubMed citation" \N 210613 278 17460664 "PubMed citation" \N 210614 278 17636771 "PubMed citation" \N 210615 278 14583910 "PubMed citation" \N 210616 278 1472758 "PubMed citation" \N 210617 278 16709187 "PubMed citation" \N 210618 278 16742518 "PubMed citation" \N 210619 278 16709181 "PubMed citation" \N 210620 278 9251237 "PubMed citation" \N 210621 278 8878010 "PubMed citation" \N 210622 278 9449976 "PubMed citation" \N 210623 278 17515291 "PubMed citation" \N 210624 278 12915942 "PubMed citation" \N 210625 278 10783877 "PubMed citation" \N 210626 278 16709185 "PubMed citation" \N 210627 278 15749066 "PubMed citation" \N 210628 278 15715602 "PubMed citation" \N 210629 278 8943798 "PubMed citation" \N 210630 278 12735485 "PubMed citation" \N 210631 278 19628332 "PubMed citation" \N 210632 282 HMDB01448 "HMDB" \N 210633 278 17709180 "PubMed citation" \N 210634 278 16186560 "PubMed citation" \N 210635 278 11452993 "PubMed citation" \N 210636 278 14690476 "PubMed citation" \N 210637 278 16917509 "PubMed citation" \N 210638 278 12878436 "PubMed citation" \N 210639 278 1939488 "PubMed citation" \N 210640 278 12519550 "PubMed citation" \N 210641 278 1516727 "PubMed citation" \N 210642 278 16709175 "PubMed citation" \N 210643 87 NH42SO4 "MetaCyc" \N 210644 288 2120 "Gmelin Registry Number" \N 210645 104 Sulfate "Wikipedia" \N 210646 278 19047345 "PubMed citation" \N 210647 278 16348007 "PubMed citation" \N 210648 278 18815700 "PubMed citation" \N 210649 278 15093386 "PubMed citation" \N 210650 278 17168807 "PubMed citation" \N 210651 278 9172804 "PubMed citation" \N 210652 278 12653633 "PubMed citation" \N 210653 278 14583911 "PubMed citation" \N 210654 278 9573551 "PubMed citation" \N 210655 278 12653636 "PubMed citation" \N 210656 278 19244483 "PubMed citation" \N 210657 278 11200094 "PubMed citation" \N 210658 278 11581495 "PubMed citation" \N 210659 278 18846414 "PubMed citation" \N 210660 278 16709184 "PubMed citation" \N 210661 278 17714467 "PubMed citation" \N 210662 278 12420348 "PubMed citation" \N 210663 278 10959410 "PubMed citation" \N 210664 278 10386253 "PubMed citation" \N 210665 278 8805242 "PubMed citation" \N 210666 278 11235060 "PubMed citation" \N 210667 278 12440375 "PubMed citation" \N 210668 278 10561778 "PubMed citation" \N 210669 278 16406662 "PubMed citation" \N 210670 286 3648446 "Reaxys Registry Number" \N 210671 87 SULFATE "MetaCyc" \N 210672 278 19812358 "PubMed citation" \N 210673 278 16656509 "PubMed citation" \N 210674 278 11798107 "PubMed citation" \N 210675 278 15152354 "PubMed citation" \N 210676 278 12653631 "PubMed citation" \N 210677 278 24246267 "PubMed citation" \N 210678 278 15613519 "PubMed citation" \N 210679 278 7829123 "PubMed citation" \N 210680 278 16026302 "PubMed citation" \N 210681 278 9422978 "PubMed citation" \N 210682 283 C00059 "KEGG COMPOUND" \N 210683 287 SO4 "PDBeChem" \N 210684 88 48042 \N 210685 279 1728866 "Beilstein Registry Number" \N 210686 88 32374 \N 210687 88 1812 \N 210688 88 43108 \N 210689 88 27061 \N 210690 286 2207383 "Reaxys" \N 210691 3 22511179 "Europe PMC" \N 210692 3 1057163 "Europe PMC" \N 210693 288 2245630 "Gmelin" \N 210694 297 501-98-4 "NIST Chemistry WebBook" \N 210695 284 C00000580 \N 210696 104 P-Coumaric_acid \N 210697 282 HMDB02035 \N 210698 279 2207383 "Beilstein" \N 210699 284 C00000152 \N 210700 3 12231735 "Europe PMC" \N 210701 297 501-98-4 "KEGG COMPOUND" \N 210702 103 C00811 \N 210703 297 7400-08-0 "KEGG COMPOUND" \N 210704 287 HC4 \N 210705 297 501-98-4 "ChemIDplus" \N 210706 88 15940 1 \N 210707 2 RELATED INN \N 210708 88 25538 \N 210709 88 44319 \N 210710 88 7559 \N 210711 278 15627518 "PubMed citation" \N 210712 278 21632263 "PubMed citation" \N 210713 278 21848266 "PubMed citation" \N 210714 278 24675661 "PubMed citation" \N 210715 278 24975217 "PubMed citation" \N 210716 278 8679452 "PubMed citation" \N 210717 278 135660 "PubMed citation" \N 210718 286 109591 "Reaxys Registry Number" \N 210719 278 18993152 "PubMed citation" \N 210720 278 19592242 "PubMed citation" \N 210721 278 19369827 "PubMed citation" \N 210722 278 22366213 "PubMed citation" \N 210723 278 22155410 "PubMed citation" \N 210724 284 C00000208 "KNApSAcK" \N 210725 285 DB00627 "DrugBank" \N 210726 278 20979384 "PubMed citation" \N 210727 278 582105 "PubMed citation" \N 210728 278 113218 "PubMed citation" \N 210729 279 109591 "Beilstein Registry Number" \N 210730 278 15183629 "PubMed citation" \N 210731 278 19678716 "PubMed citation" \N 210732 278 12789870 "PubMed citation" \N 210733 278 16400392 "PubMed citation" \N 210734 278 4259917 "PubMed citation" \N 210735 278 24568240 "PubMed citation" \N 210736 278 25241762 "PubMed citation" \N 210737 278 25040591 "PubMed citation" \N 210738 278 24848081 "PubMed citation" \N 210739 278 16322787 "PubMed citation" \N 210740 278 15651982 "PubMed citation" \N 210741 278 7581845 "PubMed citation" \N 210742 278 186078 "PubMed citation" \N 210743 278 16945375 "PubMed citation" \N 210744 278 16018787 "PubMed citation" \N 210745 278 24029555 "PubMed citation" \N 210746 281 59-67-6 "CAS Registry Number" \N 210747 87 NIACINE "MetaCyc" \N 210748 278 18996527 "PubMed citation" \N 210749 278 19779335 "PubMed citation" \N 210750 278 16877271 "PubMed citation" \N 210751 278 16172771 "PubMed citation" \N 210752 278 22458880 "PubMed citation" \N 210753 278 10540864 "PubMed citation" \N 210754 278 4033386 "PubMed citation" \N 210755 278 699281 "PubMed citation" \N 210756 278 182198 "PubMed citation" \N 210757 288 3340 "Gmelin Registry Number" \N 210758 290 D00049 "KEGG DRUG" \N 210759 282 HMDB01488 "HMDB" \N 210760 278 15311728 "PubMed citation" \N 210761 278 22116693 "PubMed citation" \N 210762 278 22229411 "PubMed citation" \N 210763 278 14550884 "PubMed citation" \N 210764 104 Nicotinic acid "Wikipedia" \N 210765 278 15037193 "PubMed citation" \N 210766 278 16767301 "PubMed citation" \N 210767 278 15205990 "PubMed citation" \N 210768 104 Niacin "Wikipedia" \N 210769 278 18037924 "PubMed citation" \N 210770 278 16449845 "PubMed citation" \N 210771 278 12563315 "PubMed citation" \N 210772 278 25429652 "PubMed citation" \N 210773 278 8423912 "PubMed citation" \N 210774 278 9107536 "PubMed citation" \N 210775 280 59-67-6 "CAS Registry Number" \N 210776 287 NIO "PDBeChem" \N 210777 283 C00253 "KEGG COMPOUND" \N 210778 283 59-67-6 "CAS Registry Number" \N 210779 88 17505 \N 210780 88 11213 \N 210781 88 11212 \N 210782 88 18983 \N 210783 88 11203 \N 210784 88 11204 \N 210785 88 689 \N 210786 284 C00001162 "KNApSAcK" \N 210787 281 3687-64-7 "CAS Registry Number" \N 210788 278 7688662 "PubMed citation" \N 210789 282 HMDB05826 "HMDB" \N 210790 87 CPD-458 "MetaCyc" \N 210791 292 G10488 "KEGG GLYCAN" \N 210792 283 C01235 "KEGG COMPOUND" \N 210793 88 26271 \N 210794 278 22280966 "PubMed citation" \N 210795 280 609-36-9 "CAS Registry Number" \N 210796 279 80809 "Beilstein Registry Number" \N 210797 286 80809 "Reaxys Registry Number" \N 210798 281 609-36-9 "CAS Registry Number" \N 210799 283 609-36-9 "CAS Registry Number" \N 210800 288 26927 "Gmelin Registry Number" \N 210801 283 C16435 "KEGG COMPOUND" \N 210802 104 Proline "Wikipedia" \N 210803 278 16534801 "PubMed citation" \N 210804 278 21400017 "PubMed citation" \N 210805 278 21903295 "PubMed citation" \N 210806 88 16449 \N 210807 88 2539 \N 210808 88 13748 \N 210809 88 22277 \N 210810 288 2449 "Gmelin Registry Number" \N 210811 104 Alanine "Wikipedia" \N 210812 280 302-72-7 "CAS Registry Number" \N 210813 281 302-72-7 "CAS Registry Number" \N 210814 279 635807 "Beilstein Registry Number" \N 210815 286 635807 "Reaxys Registry Number" \N 210816 283 302-72-7 "CAS Registry Number" \N 210817 283 C01401 "KEGG COMPOUND" \N 210818 88 27897 \N 210819 88 9769 \N 210820 88 27163 \N 210821 286 86196 "Reaxys Registry Number" \N 210822 281 54-12-6 "CAS Registry Number" \N 210823 288 4532 "Gmelin Registry Number" \N 210824 283 54-12-6 "CAS Registry Number" \N 210825 280 54-12-6 "CAS Registry Number" \N 210826 279 86196 "Beilstein Registry Number" \N 210827 284 C00001396 "KNApSAcK" \N 210828 104 Tryptophan "Wikipedia" \N 210829 283 C00806 "KEGG COMPOUND" \N 210830 88 18012 \N 210831 88 5190 \N 210832 88 42743 \N 210833 88 24124 \N 210834 278 22516248 "PubMed citation" \N 210835 278 22217732 "PubMed citation" \N 210836 278 19573517 "PubMed citation" \N 210837 104 Fumaric_Acid "Wikipedia" \N 210838 278 8412012 "PubMed citation" \N 210839 288 49855 "Gmelin Registry Number" \N 210840 290 D02308 "KEGG DRUG" \N 210841 282 HMDB00134 "HMDB" \N 210842 278 22113915 "PubMed citation" \N 210843 104 Fumaric acid "Wikipedia" \N 210844 278 24027187 "PubMed citation" \N 210845 286 605763 "Reaxys Registry Number" \N 210846 284 C00001183 "KNApSAcK" \N 210847 278 9693263 "PubMed citation" \N 210848 87 FUM "MetaCyc" \N 210849 278 21414846 "PubMed citation" \N 210850 281 110-17-8 "CAS Registry Number" \N 210851 280 110-17-8 "CAS Registry Number" \N 210852 279 605763 "Beilstein Registry Number" \N 210853 283 110-17-8 "CAS Registry Number" \N 210854 283 C00122 "KEGG COMPOUND" \N 210855 287 FUM "PDBeChem" \N 210856 88 78697 \N 210857 104 Fructose_6-phosphate "Wikipedia" \N 210858 88 37455 \N 210859 88 26572 \N 210860 88 13040 \N 210861 104 Ribulose_5-phosphate "Wikipedia" \N 210862 88 22984 \N 210863 281 7440-70-2 "CAS Registry Number" \N 210864 291 Ca "WebElements" \N 210865 294 C00076 "KEGG COMPOUND" \N 210866 285 DB01373 "DrugBank" \N 210867 88 16551 \N 210868 88 10202 \N 210869 88 12284 \N 210870 88 22365 \N 210871 88 12281 \N 210872 88 12287 \N 210873 88 15251 \N 210874 88 46211 \N 210875 292 G00293 "KEGG GLYCAN" \N 210876 278 15963489 "PubMed citation" \N 210877 278 241430 "PubMed citation" \N 210878 278 15870454 "PubMed citation" \N 210879 278 16584614 "PubMed citation" \N 210880 278 16311254 "PubMed citation" \N 210881 278 10657121 "PubMed citation" \N 210882 278 2768451 "PubMed citation" \N 210883 87 TREHALOSE "MetaCyc" \N 210884 278 16081957 "PubMed citation" \N 210885 278 1757539 "PubMed citation" \N 210886 286 1292766 "Reaxys Registry Number" \N 210887 278 15819685 "PubMed citation" \N 210888 278 10657122 "PubMed citation" \N 210889 280 99-20-7 "CAS Registry Number" \N 210890 288 2145829 "Gmelin Registry Number" \N 210891 279 1292766 "Beilstein Registry Number" \N 210892 278 16078146 "PubMed citation" \N 210893 278 15937943 "PubMed citation" \N 210894 282 HMDB00975 "HMDB" \N 210895 104 Trehalose "Wikipedia" \N 210896 278 15920775 "PubMed citation" \N 210897 278 15754142 "PubMed citation" \N 210898 278 10577485 "PubMed citation" \N 210899 284 C00001152 "KNApSAcK" \N 210900 278 2229345 "PubMed citation" \N 210901 278 11191809 "PubMed citation" \N 210902 283 99-20-7 "CAS Registry Number" \N 210903 283 C01083 "KEGG COMPOUND" \N 210904 281 99-20-7 "CAS Registry Number" \N 210905 287 TRE "PDBeChem" \N 210906 88 78682 \N 210907 282 HMDB01058 "HMDB" \N 210908 104 Fructose_1\\,6-bisphosphate "Wikipedia" \N 210909 88 26833 \N 210910 280 7704-34-9 "CAS Registry Number" \N 210911 291 S "WebElements" \N 210912 283 C00087 "KEGG COMPOUND" \N 210913 281 7704-34-9 "CAS Registry Number" \N 210914 290 D06527 "KEGG DRUG" \N 210915 88 45441 \N 210916 88 45438 \N 210917 88 21561 \N 210918 278 8166630 "PubMed citation" \N 210919 278 17723438 "PubMed citation" \N 210920 278 16274666 "PubMed citation" \N 210921 278 22308371 "PubMed citation" \N 210922 278 25518943 "PubMed citation" \N 210923 278 16465618 "PubMed citation" \N 210924 281 16354-58-8 "CAS Registry Number" \N 210925 282 HMDB02931 "HMDB" \N 210926 104 Acetylserine "Wikipedia" \N 210927 286 1724424 "Reaxys Registry Number" \N 210928 278 8389858 "PubMed citation" \N 210929 287 SAC "PDBeChem" \N 210930 88 78679 \N 210931 278 6699001 "PubMed citation" \N 210932 88 30887 \N 210933 88 24886 \N 210934 88 5998 \N 210935 284 C00001188 "KNApSAcK" \N 210936 278 657545 "PubMed citation" \N 210937 278 7336646 "PubMed citation" \N 210938 285 DB01727 "DrugBank" \N 210939 293 ECMDB04088 "ECMDB" \N 210940 87 threo-d(s)-iso-citrate "MetaCyc" \N 210941 104 Isocitric_acid "Wikipedia" \N 210942 87 Isocitrate "MetaCyc" \N 210943 278 213213 "PubMed citation" \N 210944 278 595962 "PubMed citation" \N 210945 278 23989918 "PubMed citation" \N 210946 278 24702026 "PubMed citation" \N 210947 282 HMDB00193 "HMDB" \N 210948 278 223711 "PubMed citation" \N 210949 278 8115279 "PubMed citation" \N 210950 278 813176 "PubMed citation" \N 210951 278 8389069 "PubMed citation" \N 210952 286 1727945 "Reaxys Registry Number" \N 210953 278 8579834 "PubMed citation" \N 210954 289 YMDB00026 "YMDB" \N 210955 104 Isocitric acid "Wikipedia" \N 210956 281 320-77-4 "CAS Registry Number" \N 210957 279 1727945 "Beilstein Registry Number" \N 210958 283 320-77-4 "CAS Registry Number" \N 210959 283 C00311 "KEGG COMPOUND" \N 210960 88 15908 \N 210961 88 9573 \N 210962 88 13174 \N 210963 88 21402 \N 210964 104 Threonic_acid "Wikipedia" \N 210965 284 C00034314 "KNApSAcK" \N 210966 279 1722841 "Beilstein Registry Number" \N 210967 278 16662405 "PubMed citation" \N 210968 286 1722841 "Reaxys Registry Number" \N 210969 278 17098753 "PubMed citation" \N 210970 278 12961869 "PubMed citation" \N 210971 283 C01620 "KEGG COMPOUND" \N 210972 283 7306-96-9 "CAS Registry Number" \N 210973 281 7306-96-9 "CAS Registry Number" \N 210974 88 26216 \N 210975 294 C00238 "KEGG COMPOUND" \N 210976 281 7440-09-7 "CAS Registry Number" \N 210977 285 DB01345 "DrugBank" \N 210978 291 K "WebElements" \N 210979 88 25107 \N 210980 294 C00305 "KEGG COMPOUND" \N 210981 281 7439-95-4 "CAS Registry Number" \N 210982 288 16207 "Gmelin Registry Number" \N 210983 285 DB01378 "DrugBank" \N 210984 291 Mg "WebElements" \N 210985 88 35782 1 \N 210986 88 35781 \N 210987 88 14177 \N 210988 88 25094 \N 210989 281 70-54-2 "CAS Registry Number" \N 210990 279 1616991 "Beilstein Registry Number" \N 210991 286 1616991 "Reaxys Registry Number" \N 210992 288 279284 "Gmelin Registry Number" \N 210993 104 Lysine "Wikipedia" \N 210994 280 70-54-2 "CAS Registry Number" \N 210995 283 C16440 "KEGG COMPOUND" \N 210996 88 29016 1 \N 210997 88 22616 \N 210998 88 2643 \N 210999 279 1725411 "Beilstein Registry Number" \N 211000 281 7200-25-1 "CAS Registry Number" \N 211001 104 L-Arginine "Wikipedia" \N 211002 278 10848923 "PubMed citation" \N 211003 286 1725411 "Reaxys Registry Number" \N 211004 283 C02385 "KEGG COMPOUND" \N 211005 88 20392 1 \N 211006 278 24563386 "PubMed citation" \N 211007 278 436278 "PubMed citation" \N 211008 278 24695516 "PubMed citation" \N 211009 104 Hydroxyproline "Wikipedia" \N 211010 278 21988268 "PubMed citation" \N 211011 88 15978 \N 211012 88 12843 \N 211013 88 12848 \N 211014 88 10648 \N 211015 88 26705 \N 211016 88 42793 \N 211017 3 19049970 "Europe PMC" \N 211018 287 GP9 \N 211019 284 C00007288 \N 211020 297 17989-41-2 "KEGG COMPOUND" \N 211021 3 1694860 "Europe PMC" \N 211022 279 1723975 "Beilstein" \N 211023 3 16745347 "Europe PMC" \N 211024 286 1723975 "Reaxys" \N 211025 87 GLYCEROL-3P \N 211026 103 C00093 \N 211027 287 G3P \N 211028 88 16112 \N 211029 88 23145 \N 211030 88 3625 \N 211031 88 13972 \N 211032 286 2017157 "Reaxys Registry Number" \N 211033 104 Chlorogenic acid "Wikipedia" \N 211034 87 CAFFEOYLQUINATE "MetaCyc" \N 211035 278 16869989 "PubMed citation" \N 211036 278 15309458 "PubMed citation" \N 211037 278 17368041 "PubMed citation" \N 211038 284 C00002724 "KNApSAcK" \N 211039 278 16507475 "PubMed citation" \N 211040 278 12771329 "PubMed citation" \N 211041 278 14666669 "PubMed citation" \N 211042 278 16614403 "PubMed citation" \N 211043 278 8070737 "PubMed citation" \N 211044 278 11439108 "PubMed citation" \N 211045 104 Chlorogenic_acid "Wikipedia" \N 211046 282 HMDB03164 "HMDB" \N 211047 278 10412494 "PubMed citation" \N 211048 278 11308321 "PubMed citation" \N 211049 278 15374625 "PubMed citation" \N 211050 283 C00852 "KEGG COMPOUND" \N 211051 283 327-97-9 "CAS Registry Number" \N 211052 88 17113 \N 211053 88 44263 \N 211054 88 4840 \N 211055 88 14215 \N 211056 88 23946 \N 211057 88 372804 \N 211058 282 HMDB02994 "HMDB" \N 211059 87 2C-METH-D-ERYTHRITOL-CYCLODIPHOSPHATE "MetaCyc" \N 211060 278 899714 "PubMed citation" \N 211061 278 15914983 "PubMed citation" \N 211062 104 Erythritol "Wikipedia" \N 211063 278 23890177 "PubMed citation" \N 211064 278 163226 "PubMed citation" \N 211065 278 17979222 "PubMed citation" \N 211066 278 1122919 "PubMed citation" \N 211067 278 8039489 "PubMed citation" \N 211068 278 6179356 "PubMed citation" \N 211069 278 9862657 "PubMed citation" \N 211070 288 82499 "Gmelin Registry Number" \N 211071 284 C00001161 "KNApSAcK" \N 211072 278 8933646 "PubMed citation" \N 211073 286 1735878 "Reaxys Registry Number" \N 211074 278 23574577 "PubMed citation" \N 211075 278 18369603 "PubMed citation" \N 211076 278 320281 "PubMed citation" \N 211077 281 149-32-6 "CAS Registry Number" \N 211078 279 1719753 "Beilstein Registry Number" \N 211079 278 17336832 "PubMed citation" \N 211080 87 ERYTHRITOL "MetaCyc" \N 211081 278 19632091 "PubMed citation" \N 211082 278 23421980 "PubMed citation" \N 211083 278 11275673 "PubMed citation" \N 211084 278 16901854 "PubMed citation" \N 211085 285 DB04481 "DrugBank" \N 211086 278 2625478 "PubMed citation" \N 211087 278 11283793 "PubMed citation" \N 211088 287 MRY "PDBeChem" \N 211089 283 C00503 "KEGG COMPOUND" \N 211090 283 149-32-6 "CAS Registry Number" \N 211091 280 149-32-6 "CAS Registry Number" \N 211092 299 12639570 "PubMed citation" \N 211093 88 24870 \N 211094 88 17369 \N 211095 88 13000 \N 211096 88 4211 \N 211097 281 3672-15-9 "CAS Registry Number" \N 211098 283 C00275 "KEGG COMPOUND" \N 211099 88 13389 \N 211100 282 HMDB00902 "HMDB" \N 211101 104 Nicotinamide_adenine_dinucleotide "Wikipedia" \N 211102 88 36080 \N 211103 88 14911 \N 211104 88 13677 \N 211105 88 30915 \N 211106 88 1253 \N 211107 88 40661 \N 211108 88 19749 \N 211109 285 DB02926 "DrugBank" \N 211110 278 6704500 "PubMed citation" \N 211111 278 1805153 "PubMed citation" \N 211112 280 328-50-7 "CAS Registry Number" \N 211113 282 HMDB00208 "HMDB" \N 211114 278 21964641 "PubMed citation" \N 211115 281 328-50-7 "CAS Registry Number" \N 211116 278 20200292 "PubMed citation" \N 211117 278 18502700 "PubMed citation" \N 211118 278 9869358 "PubMed citation" \N 211119 278 8257730 "PubMed citation" \N 211120 278 10333126 "PubMed citation" \N 211121 288 602480 "Gmelin Registry Number" \N 211122 279 1705689 "Beilstein Registry Number" \N 211123 284 C00000769 "KNApSAcK" \N 211124 278 7762816 "PubMed citation" \N 211125 87 2-KETOGLUTARATE "MetaCyc" \N 211126 278 6321058 "PubMed citation" \N 211127 278 20155414 "PubMed citation" \N 211128 278 18990406 "PubMed citation" \N 211129 278 12829005 "PubMed citation" \N 211130 286 1705689 "Reaxys Registry Number" \N 211131 278 20636327 "PubMed citation" \N 211132 278 20583149 "PubMed citation" \N 211133 104 Alpha-Ketoglutaric_acid "Wikipedia" \N 211134 278 9732975 "PubMed citation" \N 211135 278 12383482 "PubMed citation" \N 211136 104 Oxoglutarate "Wikipedia" \N 211137 283 C00026 "KEGG COMPOUND" \N 211138 283 328-50-7 "CAS Registry Number" \N 211139 287 AKG "PDBeChem" \N 211140 88 28017 \N 211141 88 26750 \N 211142 88 26751 \N 211143 88 9251 \N 211144 290 D06507 "KEGG DRUG" \N 211145 292 G10545 "KEGG GLYCAN" \N 211146 281 9005-25-8 "CAS Registry Number" \N 211147 283 C00369 "KEGG COMPOUND" \N 211148 283 9005-25-8 "CAS Registry Number" \N 211149 88 17497 \N 211150 88 5475 \N 211151 88 24390 \N 211152 88 42865 \N 211153 281 79-14-1 "CAS Registry Number" \N 211154 104 Glycolic_acid "Wikipedia" \N 211155 278 21950544 "PubMed citation" \N 211156 278 8634809 "PubMed citation" \N 211157 278 3337119 "PubMed citation" \N 211158 280 79-14-1 "CAS Registry Number" \N 211159 278 22421647 "PubMed citation" \N 211160 278 2242313 "PubMed citation" \N 211161 278 11795781 "PubMed citation" \N 211162 278 14742135 "PubMed citation" \N 211163 284 C00007461 "KNApSAcK" \N 211164 278 15662707 "PubMed citation" \N 211165 278 1507356 "PubMed citation" \N 211166 278 11953504 "PubMed citation" \N 211167 278 15716482 "PubMed citation" \N 211168 278 14585457 "PubMed citation" \N 211169 278 11359487 "PubMed citation" \N 211170 298 LMFA01050148 "LIPID MAPS instance" \N 211171 87 GLYCOLLATE "MetaCyc" \N 211172 278 22360337 "PubMed citation" \N 211173 278 8311360 "PubMed citation" \N 211174 278 8651024 "PubMed citation" \N 211175 286 1209322 "Reaxys Registry Number" \N 211176 278 18498500 "PubMed citation" \N 211177 278 22128110 "PubMed citation" \N 211178 278 15660917 "PubMed citation" \N 211179 104 Glycolic acid "Wikipedia" \N 211180 278 2002628 "PubMed citation" \N 211181 278 11762669 "PubMed citation" \N 211182 278 10595845 "PubMed citation" \N 211183 278 9267307 "PubMed citation" \N 211184 282 HMDB00115 "HMDB" \N 211185 278 15716481 "PubMed citation" \N 211186 278 19025792 "PubMed citation" \N 211187 278 22044748 "PubMed citation" \N 211188 278 8634803 "PubMed citation" \N 211189 278 6592775 "PubMed citation" \N 211190 283 79-14-1 "CAS Registry Number" \N 211191 283 C00160 "KEGG COMPOUND" \N 211192 287 GOA "PDBeChem" \N 211193 88 16199 1 \N 211194 88 46379 \N 211195 88 9888 \N 211196 88 15292 \N 211197 88 27218 \N 211198 284 C00007314 "KNApSAcK" \N 211199 278 666184 "PubMed citation" \N 211200 278 11237944 "PubMed citation" \N 211201 289 YMDB00003 "YMDB" \N 211202 278 498498 "PubMed citation" \N 211203 278 16433776 "PubMed citation" \N 211204 278 15521599 "PubMed citation" \N 211205 278 16182741 "PubMed citation" \N 211206 278 16422263 "PubMed citation" \N 211207 288 1378 "Gmelin Registry Number" \N 211208 104 Urea "Wikipedia" \N 211209 278 16981436 "PubMed citation" \N 211210 278 17014390 "PubMed citation" \N 211211 87 UREA "MetaCyc" \N 211212 285 DB03904 "DrugBank" \N 211213 280 57-13-6 "CAS Registry Number" \N 211214 278 16100141 "PubMed citation" \N 211215 278 21359215 "PubMed citation" \N 211216 278 1111461 "PubMed citation" \N 211217 278 16141459 "PubMed citation" \N 211218 290 D00023 "KEGG DRUG" \N 211219 278 16610954 "PubMed citation" \N 211220 278 15795597 "PubMed citation" \N 211221 278 15627241 "PubMed citation" \N 211222 286 635724 "Reaxys Registry Number" \N 211223 293 ECMDB04172 "ECMDB" \N 211224 282 HMDB00294 "HMDB" \N 211225 278 15855306 "PubMed citation" \N 211226 281 57-13-6 "CAS Registry Number" \N 211227 279 635724 "Beilstein Registry Number" \N 211228 278 16454320 "PubMed citation" \N 211229 278 15584637 "PubMed citation" \N 211230 278 2807925 "PubMed citation" \N 211231 278 18037357 "PubMed citation" \N 211232 287 URE "PDBeChem" \N 211233 283 C00086 "KEGG COMPOUND" \N 211234 283 57-13-6 "CAS Registry Number" \N 211235 296 c0165 "UM-BBD compID" \N 211236 88 16010 \N 211237 88 12157 \N 211238 88 44943 \N 211239 88 2116 \N 211240 88 20624 \N 211241 278 23217740 "PubMed citation" \N 211242 280 149-87-1 "CAS Registry Number" \N 211243 286 82131 "Reaxys Registry Number" \N 211244 104 Pyroglutamic_acid "Wikipedia" \N 211245 279 82131 "Beilstein Registry Number" \N 211246 281 149-87-1 "CAS Registry Number" \N 211247 88 29042 \N 211248 88 42623 \N 211249 88 12970 \N 211250 88 10246 \N 211251 88 12320 \N 211252 88 21004 \N 211253 281 59-56-3 "CAS Registry Number" \N 211254 279 87853 "Beilstein Registry Number" \N 211255 278 8948464 "PubMed citation" \N 211256 282 HMDB01586 "HMDB" \N 211257 278 12596851 "PubMed citation" \N 211258 104 Glucose-1-phosphate "Wikipedia" \N 211259 286 87853 "Reaxys Registry Number" \N 211260 87 GLC-1-P "MetaCyc" \N 211261 284 C00007482 "KNApSAcK" \N 211262 285 DB02843 "DrugBank" \N 211263 287 G1P "PDBeChem" \N 211264 283 C00103 "KEGG COMPOUND" \N 211265 283 59-56-3 "CAS Registry Number" \N 211266 88 17268 \N 211267 88 10601 \N 211268 88 12826 \N 211269 88 43559 \N 211270 88 25451 \N 211271 88 12831 \N 211272 87 MYO-INOSITOL "MetaCyc" \N 211273 278 18650262 "PubMed citation" \N 211274 278 9613757 "PubMed citation" \N 211275 278 3838720 "PubMed citation" \N 211276 104 MI "Wikipedia" \N 211277 278 12832083 "PubMed citation" \N 211278 278 12478879 "PubMed citation" \N 211279 278 19097871 "PubMed citation" \N 211280 278 15589098 "PubMed citation" \N 211281 278 1205026 "PubMed citation" \N 211282 278 11713951 "PubMed citation" \N 211283 278 22285975 "PubMed citation" \N 211284 279 1907329 "Beilstein Registry Number" \N 211285 278 1694860 "PubMed citation" \N 211286 278 12777086 "PubMed citation" \N 211287 278 11398597 "PubMed citation" \N 211288 278 66475 "PubMed citation" \N 211289 278 22461977 "PubMed citation" \N 211290 281 87-89-8 "CAS Registry Number" \N 211291 284 C00001164 "KNApSAcK" \N 211292 278 17722064 "PubMed citation" \N 211293 278 11034685 "PubMed citation" \N 211294 278 15518598 "PubMed citation" \N 211295 278 10489041 "PubMed citation" \N 211296 278 11323092 "PubMed citation" \N 211297 278 14681857 "PubMed citation" \N 211298 278 22517104 "PubMed citation" \N 211299 290 D08079 "KEGG DRUG" \N 211300 278 18854045 "PubMed citation" \N 211301 278 11772411 "PubMed citation" \N 211302 278 15295080 "PubMed citation" \N 211303 278 3028879 "PubMed citation" \N 211304 278 16410747 "PubMed citation" \N 211305 278 7629237 "PubMed citation" \N 211306 278 12766890 "PubMed citation" \N 211307 278 7710082 "PubMed citation" \N 211308 278 15528093 "PubMed citation" \N 211309 278 15558078 "PubMed citation" \N 211310 286 1907329 "Reaxys Registry Number" \N 211311 282 HMDB00211 "HMDB" \N 211312 104 Inositol "Wikipedia" \N 211313 278 1666426 "PubMed citation" \N 211314 278 14583919 "PubMed citation" \N 211315 288 82918 "Gmelin Registry Number" \N 211316 278 11244303 "PubMed citation" \N 211317 278 15181167 "PubMed citation" \N 211318 278 11105023 "PubMed citation" \N 211319 278 16708635 "PubMed citation" \N 211320 278 19383710 "PubMed citation" \N 211321 278 838172 "PubMed citation" \N 211322 285 DB03106 "DrugBank" \N 211323 283 87-89-8 "CAS Registry Number" \N 211324 283 C00137 "KEGG COMPOUND" \N 211325 287 INS "PDBeChem" \N 211326 280 87-89-8 "CAS Registry Number" \N 211327 88 17306 \N 211328 88 25144 \N 211329 88 6668 \N 211330 88 14568 \N 211331 278 17723085 "PubMed citation" \N 211332 280 69-79-4 "CAS Registry Number" \N 211333 278 22529943 "PubMed citation" \N 211334 279 1292747 "Beilstein Registry Number" \N 211335 290 D00044 "KEGG DRUG" \N 211336 278 22669197 "PubMed citation" \N 211337 278 22411612 "PubMed citation" \N 211338 278 22573161 "PubMed citation" \N 211339 292 G00275 "KEGG GLYCAN" \N 211340 285 DB03323 "DrugBank" \N 211341 278 22185612 "PubMed citation" \N 211342 278 22424089 "PubMed citation" \N 211343 104 Maltose "Wikipedia" \N 211344 286 1292747 "Reaxys Registry Number" \N 211345 278 16332759 "PubMed citation" \N 211346 278 22469630 "PubMed citation" \N 211347 278 22246222 "PubMed citation" \N 211348 284 C00001140 "KNApSAcK" \N 211349 278 22094343 "PubMed citation" \N 211350 278 22451670 "PubMed citation" \N 211351 278 22252265 "PubMed citation" \N 211352 281 69-79-4 "CAS Registry Number" \N 211353 283 C00208 "KEGG COMPOUND" \N 211354 283 69-79-4 "CAS Registry Number" \N 211355 88 16865 \N 211356 88 1786 \N 211357 88 20318 \N 211358 88 40483 \N 211359 88 193777 \N 211360 278 10630630 "PubMed citation" \N 211361 278 16276116 "PubMed citation" \N 211362 278 7473299 "PubMed citation" \N 211363 278 10534261 "PubMed citation" \N 211364 278 16037152 "PubMed citation" \N 211365 278 6198481 "PubMed citation" \N 211366 278 16032672 "PubMed citation" \N 211367 278 8432013 "PubMed citation" \N 211368 278 16527506 "PubMed citation" \N 211369 286 906818 "Reaxys Registry Number" \N 211370 284 C00001337 "KNApSAcK" \N 211371 282 HMDB00112 "HMDB" \N 211372 104 GABA "Wikipedia" \N 211373 104 Gamma-Aminobutyric_acid "Wikipedia" \N 211374 278 1485027 "PubMed citation" \N 211375 298 LMFA01100039 "LIPID MAPS instance" \N 211376 279 906818 "Beilstein Registry Number" \N 211377 278 10930630 "PubMed citation" \N 211378 290 D00058 "KEGG DRUG" \N 211379 278 11121859 "PubMed citation" \N 211380 278 2229259 "PubMed citation" \N 211381 285 DB02530 "DrugBank" \N 211382 278 21614609 "PubMed citation" \N 211383 278 15538143 "PubMed citation" \N 211384 278 16043137 "PubMed citation" \N 211385 87 4-AMINO-BUTYRATE "MetaCyc" \N 211386 278 12445190 "PubMed citation" \N 211387 278 14726441 "PubMed citation" \N 211388 278 15956168 "PubMed citation" \N 211389 283 56-12-2 "CAS Registry Number" \N 211390 283 C00334 "KEGG COMPOUND" \N 211391 281 56-12-2 "CAS Registry Number" \N 211392 288 49775 "Gmelin Registry Number" \N 211393 280 56-12-2 "CAS Registry Number" \N 211394 287 ABU "PDBeChem" \N 211395 88 37655 \N 211396 279 1722840 "Beilstein Registry Number" \N 211397 88 16027 \N 211398 88 13740 \N 211399 88 13234 \N 211400 88 40786 \N 211401 88 22242 \N 211402 88 2356 \N 211403 88 22245 \N 211404 88 13736 \N 211405 88 40510 \N 211406 88 40826 \N 211407 88 12056 \N 211408 88 47222 \N 211409 88 40726 \N 211410 88 13235 \N 211411 278 201957 "PubMed citation" \N 211412 295 MOL000174 "COMe" \N 211413 278 15148540 "PubMed citation" \N 211414 284 C00019347 "KNApSAcK" \N 211415 278 13654353 "PubMed citation" \N 211416 278 184364 "PubMed citation" \N 211417 278 15946677 "PubMed citation" \N 211418 278 1781403 "PubMed citation" \N 211419 281 61-19-8 "CAS Registry Number" \N 211420 286 54612 "Reaxys Registry Number" \N 211421 278 16250233 "PubMed citation" \N 211422 285 DB00131 "DrugBank" \N 211423 278 6304612 "PubMed citation" \N 211424 278 11307758 "PubMed citation" \N 211425 278 15937757 "PubMed citation" \N 211426 287 AMP "PDBeChem" \N 211427 278 16091942 "PubMed citation" \N 211428 278 12020809 "PubMed citation" \N 211429 279 54612 "Beilstein Registry Number" \N 211430 278 4155962 "PubMed citation" \N 211431 278 12181610 "PubMed citation" \N 211432 278 22624049 "PubMed citation" \N 211433 278 14965188 "PubMed citation" \N 211434 278 6656991 "PubMed citation" \N 211435 282 HMDB00045 "HMDB" \N 211436 278 2559771 "PubMed citation" \N 211437 104 Adenosine monophosphate "Wikipedia" \N 211438 290 D02769 "KEGG DRUG" \N 211439 87 AMP "MetaCyc" \N 211440 104 Adenylic_acid "Wikipedia" \N 211441 278 22215671 "PubMed citation" \N 211442 283 61-19-8 "CAS Registry Number" \N 211443 283 C00020 "KEGG COMPOUND" \N 211444 288 38561 "Gmelin Registry Number" \N 211445 88 17395 \N 211446 88 13929 \N 211447 88 22979 \N 211448 88 19881 \N 211449 88 19880 \N 211450 88 3292 \N 211451 278 24138287 "PubMed citation" \N 211452 278 24088646 "PubMed citation" \N 211453 278 12207832 "PubMed citation" \N 211454 278 11208940 "PubMed citation" \N 211455 282 HMDB01964 "HMDB" \N 211456 278 10794925 "PubMed citation" \N 211457 278 16613584 "PubMed citation" \N 211458 281 331-39-5 "CAS Registry Number" \N 211459 87 CAFFEATE "MetaCyc" \N 211460 87 CPD-8098 "MetaCyc" \N 211461 278 11479533 "PubMed citation" \N 211462 278 10706426 "PubMed citation" \N 211463 286 2210884 "Reaxys Registry Number" \N 211464 278 16870009 "PubMed citation" \N 211465 285 DB01880 "DrugBank" \N 211466 278 19952409 "PubMed citation" \N 211467 278 15866491 "PubMed citation" \N 211468 278 24206679 "PubMed citation" \N 211469 104 Caffeic_acid "Wikipedia" \N 211470 283 331-39-5 "CAS Registry Number" \N 211471 283 C01481 "KEGG COMPOUND" \N 211472 88 24431 \N 211473 88 17969 \N 211474 88 26620 \N 211475 88 15072 \N 211476 88 9081 \N 211477 279 4271614 "Beilstein Registry Number" \N 211478 281 815-91-8 "CAS Registry Number" \N 211479 283 815-91-8 "CAS Registry Number" \N 211480 283 C00447 "KEGG COMPOUND" \N 211481 88 27638 \N 211482 88 3788 \N 211483 88 23335 \N 211484 283 C19171 "KEGG COMPOUND" \N 211485 281 7440-48-4 "CAS Registry Number" \N 211486 287 3CO "PDBeChem" \N 211487 291 Co "WebElements" \N 211488 280 7440-48-4 "CAS Registry Number" \N 211489 283 C00175 "KEGG COMPOUND" \N 211490 283 7440-48-4 "CAS Registry Number" \N 211491 88 33017 \N 211492 288 185086 "Gmelin Registry Number" \N 211493 88 28044 \N 211494 88 25984 \N 211495 88 8089 \N 211496 281 150-30-1 "CAS Registry Number" \N 211497 104 Phenylalanine "Wikipedia" \N 211498 286 1910407 "Reaxys Registry Number" \N 211499 279 1910407 "Beilstein Registry Number" \N 211500 288 50836 "Gmelin Registry Number" \N 211501 280 150-30-1 "CAS Registry Number" \N 211502 283 C02057 "KEGG COMPOUND" \N 211503 88 26493 \N 211504 278 15589483 "PubMed citation" \N 211505 278 23590498 "PubMed citation" \N 211506 88 33984 1 \N 211507 88 5182 \N 211508 88 24118 \N 211509 278 12651883 "PubMed citation" \N 211510 283 C00382 "KEGG COMPOUND" \N 211511 281 7724-73-4 "CAS Registry Number" \N 211512 88 6650 \N 211513 288 3325 "Gmelin Registry Number" \N 211514 278 22411507 "PubMed citation" \N 211515 283 C00711 "KEGG COMPOUND" \N 211516 279 1723539 "Beilstein Registry Number" \N 211517 87 RS-Malate "MetaCyc" \N 211518 282 HMDB00744 "HMDB" \N 211519 281 6915-15-7 "CAS Registry Number" \N 211520 278 17896933 "PubMed citation" \N 211521 290 D04843 "KEGG DRUG" \N 211522 278 15767321 "PubMed citation" \N 211523 278 19743855 "PubMed citation" \N 211524 280 6915-15-7 "CAS Registry Number" \N 211525 286 1723539 "Reaxys Registry Number" \N 211526 104 Malic_acid "Wikipedia" \N 211527 88 22653 \N 211528 286 1723525 "Reaxys Registry Number" \N 211529 281 3130-87-8 "CAS Registry Number" \N 211530 288 279043 "Gmelin Registry Number" \N 211531 279 1723525 "Beilstein Registry Number" \N 211532 283 C16438 "KEGG COMPOUND" \N 211533 104 Asparagine "Wikipedia" \N 211534 88 14314 \N 211535 88 48153 \N 211536 88 12921 \N 211537 88 42349 \N 211538 88 4114 \N 211539 278 6713626 "PubMed citation" \N 211540 104 Erythrose_4-phosphate "Wikipedia" \N 211541 278 6998788 "PubMed citation" \N 211542 104 erythrose-4-phosphate "Wikipedia" \N 211543 278 12374700 "PubMed citation" \N 211544 278 3776121 "PubMed citation" \N 211545 279 1710821 "Beilstein Registry Number" \N 211546 286 1710821 "Reaxys Registry Number" \N 211547 285 DB03937 "DrugBank" \N 211548 284 C00007472 "KNApSAcK" \N 211549 278 7435496 "PubMed citation" \N 211550 281 585-18-2 "CAS Registry Number" \N 211551 278 15850830 "PubMed citation" \N 211552 282 HMDB01321 "HMDB" \N 211553 278 12881455 "PubMed citation" \N 211554 87 ERYTHROSE-4P "MetaCyc" \N 211555 278 12054796 "PubMed citation" \N 211556 287 E4P "PDBeChem" \N 211557 283 C00279 "KEGG COMPOUND" \N 211558 283 585-18-2 "CAS Registry Number" \N 211559 88 28300 1 \N 211560 88 5432 \N 211561 88 24316 \N 211562 283 6899-04-3 "CAS Registry Number" \N 211563 281 585-21-7 "CAS Registry Number" \N 211564 279 1723795 "Beilstein Registry Number" \N 211565 284 C00001359 "KNApSAcK" \N 211566 281 6899-04-3 "CAS Registry Number" \N 211567 286 1723795 "Reaxys Registry Number" \N 211568 288 27318 "Gmelin Registry Number" \N 211569 104 Glutamine "Wikipedia" \N 211570 283 C00303 "KEGG COMPOUND" \N 211571 88 15721 \N 211572 88 9083 \N 211573 88 15074 \N 211574 88 26621 \N 211575 88 15073 \N 211576 88 4244 \N 211577 87 D-SEDOHEPTULOSE-7-P "MetaCyc" \N 211578 104 Sedoheptulose_7-phosphate "Wikipedia" \N 211579 281 2646-35-7 "CAS Registry Number" \N 211580 282 HMDB01068 "HMDB" \N 211581 278 16055050 "PubMed citation" \N 211582 278 6316661 "PubMed citation" \N 211583 278 11275553 "PubMed citation" \N 211584 104 sedoheptulose 7-phosphate "Wikipedia" \N 211585 283 C00281 "KEGG COMPOUND" \N 211586 283 C05382 "KEGG COMPOUND" \N 211587 88 16710 \N 211588 88 45480 \N 211589 88 4242 \N 211590 88 13017 \N 211591 88 21087 \N 211592 278 23301499 "PubMed citation" \N 211593 284 C00007293 "KNApSAcK" \N 211594 286 2299163 "Reaxys Registry Number" \N 211595 87 D-RIBULOSE-15-P2 "MetaCyc" \N 211596 293 ECMDB20145 "ECMDB" \N 211597 104 Ribulose-1\\,5-bisphosphate "Wikipedia" \N 211598 287 RUB "PDBeChem" \N 211599 278 15219406 "PubMed citation" \N 211600 283 C01182 "KEGG COMPOUND" \N 211601 283 24218-00-6 "CAS Registry Number" \N 211602 88 18291 \N 211603 88 13382 \N 211604 88 25153 \N 211605 88 6681 \N 211606 281 7439-96-5 "CAS Registry Number" \N 211607 291 Mn "WebElements" \N 211608 283 7439-96-5 "CAS Registry Number" \N 211609 283 C00034 "KEGG COMPOUND" \N 211610 88 44897 \N 211611 88 26055 \N 211612 88 44894 \N 211613 278 29492 "PubMed citation" \N 211614 278 1667626 "PubMed citation" \N 211615 87 PHOSPHO-ENOL-PYRUVATE "MetaCyc" \N 211616 278 7556986 "PubMed citation" \N 211617 104 Phosphoenolpyruvic_acid "Wikipedia" \N 211618 278 1155186 "PubMed citation" \N 211619 278 1092934 "PubMed citation" \N 211620 278 14594319 "PubMed citation" \N 211621 104 PEP "Wikipedia" \N 211622 278 8353946 "PubMed citation" \N 211623 284 C00000798 "KNApSAcK" \N 211624 278 219411 "PubMed citation" \N 211625 278 1656579 "PubMed citation" \N 211626 278 3980096 "PubMed citation" \N 211627 286 1775389 "Reaxys Registry Number" \N 211628 282 HMDB00263 "HMDB" \N 211629 278 1150258 "PubMed citation" \N 211630 278 1618445 "PubMed citation" \N 211631 278 1611358 "PubMed citation" \N 211632 285 DB01819 "DrugBank" \N 211633 283 138-08-9 "CAS Registry Number" \N 211634 281 138-08-9 "CAS Registry Number" \N 211635 283 C00074 "KEGG COMPOUND" \N 211636 287 PEP "PDBeChem" \N 211637 88 17148 \N 211638 88 45092 \N 211639 88 8650 \N 211640 88 26405 \N 211641 88 14972 \N 211642 278 16364196 "PubMed citation" \N 211643 278 227593 "PubMed citation" \N 211644 278 24820075 "PubMed citation" \N 211645 278 24331418 "PubMed citation" \N 211646 104 Putrescine "Wikipedia" \N 211647 278 12215835 "PubMed citation" \N 211648 280 110-60-1 "CAS Registry Number" \N 211649 87 PUTRESCINE "MetaCyc" \N 211650 286 605282 "Reaxys Registry Number" \N 211651 278 15009201 "PubMed citation" \N 211652 278 3757213 "PubMed citation" \N 211653 278 11419735 "PubMed citation" \N 211654 282 HMDB01414 "HMDB" \N 211655 278 15453685 "PubMed citation" \N 211656 289 YMDB00132 "YMDB" \N 211657 278 12663078 "PubMed citation" \N 211658 278 3950641 "PubMed citation" \N 211659 278 3746382 "PubMed citation" \N 211660 278 8484731 "PubMed citation" \N 211661 284 C00001428 "KNApSAcK" \N 211662 278 8875319 "PubMed citation" \N 211663 278 6625645 "PubMed citation" \N 211664 279 605282 "Beilstein Registry Number" \N 211665 278 16346523 "PubMed citation" \N 211666 278 18721677 "PubMed citation" \N 211667 278 24864091 "PubMed citation" \N 211668 278 15745737 "PubMed citation" \N 211669 278 14734216 "PubMed citation" \N 211670 285 DB01917 "DrugBank" \N 211671 288 1715 "Gmelin Registry Number" \N 211672 278 12053479 "PubMed citation" \N 211673 293 ECMDB01414 "ECMDB" \N 211674 287 PUT "PDBeChem" \N 211675 283 110-60-1 "CAS Registry Number" \N 211676 283 C00134 "KEGG COMPOUND" \N 211677 281 110-60-1 "CAS Registry Number" \N 211678 88 15422 \N 211679 88 40938 \N 211680 88 22249 \N 211681 88 2359 \N 211682 88 10789 \N 211683 88 13236 \N 211684 88 10841 \N 211685 282 HMDB00538 "HMDB" \N 211686 278 11157473 "PubMed citation" \N 211687 278 14696970 "PubMed citation" \N 211688 288 34857 "Gmelin Registry Number" \N 211689 278 3338588 "PubMed citation" \N 211690 278 7683296 "PubMed citation" \N 211691 278 12137852 "PubMed citation" \N 211692 286 73010 "Reaxys Registry Number" \N 211693 278 14707763 "PubMed citation" \N 211694 278 7836519 "PubMed citation" \N 211695 87 ATP "MetaCyc" \N 211696 285 DB00171 "DrugBank" \N 211697 284 C00001491 "KNApSAcK" \N 211698 104 Adenosine_triphosphate "Wikipedia" \N 211699 278 15490415 "PubMed citation" \N 211700 104 Adenosine triphosphate "Wikipedia" \N 211701 300 US3079379 "Patent" \N 211702 290 D08646 "KEGG DRUG" \N 211703 278 2737369 "PubMed citation" \N 211704 278 8882021 "PubMed citation" \N 211705 278 11743516 "PubMed citation" \N 211706 279 73010 "Beilstein Registry Number" \N 211707 278 15013648 "PubMed citation" \N 211708 278 15129319 "PubMed citation" \N 211709 278 16439602 "PubMed citation" \N 211710 281 56-65-5 "CAS Registry Number" \N 211711 287 ATP "PDBeChem" \N 211712 283 C00002 "KEGG COMPOUND" \N 211713 283 56-65-5 "CAS Registry Number" \N 211714 88 16634 1 \N 211715 88 15015 \N 211716 88 49843 \N 211717 88 26521 \N 211718 88 8771 \N 211719 278 24354450 "PubMed citation" \N 211720 278 10583849 "PubMed citation" \N 211721 278 1237863 "PubMed citation" \N 211722 278 12636047 "PubMed citation" \N 211723 278 533425 "PubMed citation" \N 211724 278 24001862 "PubMed citation" \N 211725 87 CPD-1099 "MetaCyc" \N 211726 278 23882273 "PubMed citation" \N 211727 278 1176592 "PubMed citation" \N 211728 278 12528024 "PubMed citation" \N 211729 87 CPD-169 "MetaCyc" \N 211730 282 HMDB03213 "HMDB" \N 211731 278 23879777 "PubMed citation" \N 211732 292 G00249 "KEGG GLYCAN" \N 211733 278 23317449 "PubMed citation" \N 211734 104 Raffinose "Wikipedia" \N 211735 278 7458116 "PubMed citation" \N 211736 284 C00001145 "KNApSAcK" \N 211737 286 99543 "Reaxys Registry Number" \N 211738 278 24360500 "PubMed citation" \N 211739 281 512-69-6 "CAS Registry Number" \N 211740 278 2167807 "PubMed citation" \N 211741 278 11795671 "PubMed citation" \N 211742 287 RAF "PDBeChem" \N 211743 283 C00492 "KEGG COMPOUND" \N 211744 283 512-69-6 "CAS Registry Number" \N 211745 88 27363 \N 211746 288 16321 "Gmelin Registry Number" \N 211747 283 C00038 "KEGG COMPOUND" \N 211748 281 7440-66-6 "CAS Registry Number" \N 211749 287 ZN "PDBeChem" \N 211750 291 Zn "WebElements" \N 211751 283 7440-66-6 "CAS Registry Number" \N 211752 88 24898 \N 211753 280 443-79-8 "CAS Registry Number" \N 211754 281 443-79-8 "CAS Registry Number" \N 211755 279 1721790 "Beilstein Registry Number" \N 211756 286 1721790 "Reaxys Registry Number" \N 211757 88 16264 \N 211758 88 13475 \N 211759 88 13473 \N 211760 88 22115 \N 211761 88 9823 \N 211762 88 13476 \N 211763 88 13456 \N 211764 88 46243 \N 211765 286 78982 "Reaxys Registry Number" \N 211766 278 22887999 "PubMed citation" \N 211767 278 16317114 "PubMed citation" \N 211768 104 UDP-N-acetylglucosamine "Wikipedia" \N 211769 292 G10610 "KEGG GLYCAN" \N 211770 278 22901411 "PubMed citation" \N 211771 282 HMDB00290 "HMDB" \N 211772 278 22825354 "PubMed citation" \N 211773 278 21627825 "PubMed citation" \N 211774 278 12678487 "PubMed citation" \N 211775 283 528-04-1 "CAS Registry Number" \N 211776 278 16965264 "PubMed citation" \N 211777 278 6627106 "PubMed citation" \N 211778 87 UDP-N-ACETYL-D-GLUCOSAMINE "MetaCyc" \N 211779 281 528-04-1 "CAS Registry Number" \N 211780 284 C00019358 "KNApSAcK" \N 211781 278 15313475 "PubMed citation" \N 211782 283 C00043 "KEGG COMPOUND" \N 211783 287 UD1 "PDBeChem" \N 211784 88 15428 \N 211785 88 24368 \N 211786 88 14344 \N 211787 88 10792 \N 211788 88 5460 \N 211789 88 42964 \N 211790 278 16151895 "PubMed citation" \N 211791 278 11542461 "PubMed citation" \N 211792 278 18593588 "PubMed citation" \N 211793 278 17154252 "PubMed citation" \N 211794 278 15710237 "PubMed citation" \N 211795 278 22044190 "PubMed citation" \N 211796 278 9639330 "PubMed citation" \N 211797 278 18816054 "PubMed citation" \N 211798 278 16998855 "PubMed citation" \N 211799 278 12770151 "PubMed citation" \N 211800 278 15331688 "PubMed citation" \N 211801 278 12754315 "PubMed citation" \N 211802 278 17582620 "PubMed citation" \N 211803 278 19028609 "PubMed citation" \N 211804 278 22079563 "PubMed citation" \N 211805 104 Glycine "Wikipedia" \N 211806 278 8888048 "PubMed citation" \N 211807 290 D00011 "KEGG DRUG" \N 211808 278 15388434 "PubMed citation" \N 211809 278 16105183 "PubMed citation" \N 211810 278 18840508 "PubMed citation" \N 211811 278 19526731 "PubMed citation" \N 211812 278 17383967 "PubMed citation" \N 211813 278 12297216 "PubMed citation" \N 211814 278 14622583 "PubMed citation" \N 211815 278 8456092 "PubMed citation" \N 211816 280 56-40-6 "CAS Registry Number" \N 211817 285 DB00145 "DrugBank" \N 211818 278 16444815 "PubMed citation" \N 211819 278 19120667 "PubMed citation" \N 211820 278 22234938 "PubMed citation" \N 211821 278 22434786 "PubMed citation" \N 211822 278 15780050 "PubMed citation" \N 211823 288 1808 "Gmelin Registry Number" \N 211824 284 C00001361 "KNApSAcK" \N 211825 286 635782 "Reaxys Registry Number" \N 211826 278 16901953 "PubMed citation" \N 211827 278 16664855 "PubMed citation" \N 211828 289 YMDB00016 "YMDB" \N 211829 278 16453318 "PubMed citation" \N 211830 278 16390611 "PubMed citation" \N 211831 278 11569574 "PubMed citation" \N 211832 278 12834252 "PubMed citation" \N 211833 287 GLY "PDBeChem" \N 211834 281 56-40-6 "CAS Registry Number" \N 211835 278 19916621 "PubMed citation" \N 211836 278 12921899 "PubMed citation" \N 211837 278 18079355 "PubMed citation" \N 211838 278 19924257 "PubMed citation" \N 211839 278 19544666 "PubMed citation" \N 211840 278 21751272 "PubMed citation" \N 211841 278 11159884 "PubMed citation" \N 211842 278 6696735 "PubMed citation" \N 211843 278 15911239 "PubMed citation" \N 211844 279 635782 "Beilstein Registry Number" \N 211845 282 HMDB00123 "HMDB" \N 211846 87 GLY "MetaCyc" \N 211847 278 11019925 "PubMed citation" \N 211848 278 19449910 "PubMed citation" \N 211849 278 16918424 "PubMed citation" \N 211850 278 18396796 "PubMed citation" \N 211851 278 19738917 "PubMed citation" \N 211852 278 16214212 "PubMed citation" \N 211853 278 22401276 "PubMed citation" \N 211854 278 14992292 "PubMed citation" \N 211855 278 16686720 "PubMed citation" \N 211856 278 11174716 "PubMed citation" \N 211857 278 12631515 "PubMed citation" \N 211858 278 18440992 "PubMed citation" \N 211859 278 16986325 "PubMed citation" \N 211860 278 16417482 "PubMed citation" \N 211861 278 11806864 "PubMed citation" \N 211862 278 17970719 "PubMed citation" \N 211863 278 22293292 "PubMed citation" \N 211864 293 ECMDB00123 "ECMDB" \N 211865 278 6198473 "PubMed citation" \N 211866 283 56-40-6 "CAS Registry Number" \N 211867 283 C00037 "KEGG COMPOUND" \N 211868 88 30769 \N 211869 88 41523 \N 211870 88 23322 \N 211871 88 3727 \N 211872 278 15154867 "PubMed citation" \N 211873 278 9625050 "PubMed citation" \N 211874 278 12850842 "PubMed citation" \N 211875 278 16232627 "PubMed citation" \N 211876 278 22115968 "PubMed citation" \N 211877 279 782061 "Beilstein Registry Number" \N 211878 278 15132705 "PubMed citation" \N 211879 278 16645424 "PubMed citation" \N 211880 278 15115669 "PubMed citation" \N 211881 278 7729054 "PubMed citation" \N 211882 282 HMDB00094 "HMDB" \N 211883 278 18298573 "PubMed citation" \N 211884 278 17357118 "PubMed citation" \N 211885 278 16038021 "PubMed citation" \N 211886 278 12957820 "PubMed citation" \N 211887 278 19288211 "PubMed citation" \N 211888 278 22373571 "PubMed citation" \N 211889 278 22509852 "PubMed citation" \N 211890 290 D00037 "KEGG DRUG" \N 211891 278 11407968 "PubMed citation" \N 211892 278 1931558 "PubMed citation" \N 211893 278 11857437 "PubMed citation" \N 211894 278 18960216 "PubMed citation" \N 211895 278 22192423 "PubMed citation" \N 211896 285 DB04272 "DrugBank" \N 211897 278 12871333 "PubMed citation" \N 211898 278 6705419 "PubMed citation" \N 211899 278 16787846 "PubMed citation" \N 211900 278 14537820 "PubMed citation" \N 211901 278 15311880 "PubMed citation" \N 211902 284 C00007619 "KNApSAcK" \N 211903 278 14724361 "PubMed citation" \N 211904 278 15172066 "PubMed citation" \N 211905 278 12234950 "PubMed citation" \N 211906 278 12198595 "PubMed citation" \N 211907 87 CIT "MetaCyc" \N 211908 278 11762832 "PubMed citation" \N 211909 278 22264346 "PubMed citation" \N 211910 288 4240 "Gmelin Registry Number" \N 211911 104 Citric_Acid "Wikipedia" \N 211912 278 12941351 "PubMed citation" \N 211913 278 11782123 "PubMed citation" \N 211914 278 15934243 "PubMed citation" \N 211915 278 17604395 "PubMed citation" \N 211916 104 Citric acid "Wikipedia" \N 211917 278 15689116 "PubMed citation" \N 211918 278 16351159 "PubMed citation" \N 211919 286 782061 "Reaxys Registry Number" \N 211920 281 77-92-9 "CAS Registry Number" \N 211921 280 77-92-9 "CAS Registry Number" \N 211922 287 CIT "PDBeChem" \N 211923 283 C00158 "KEGG COMPOUND" \N 211924 283 77-92-9 "CAS Registry Number" \N 211925 88 18257 \N 211926 88 7784 \N 211927 284 C00001384 "KNApSAcK" \N 211928 283 3184-13-2 "CAS Registry Number" \N 211929 279 1722296 "Beilstein Registry Number" \N 211930 286 1722296 "Reaxys Registry Number" \N 211931 281 616-07-9 "CAS Registry Number" \N 211932 282 HMDB32455 "HMDB" \N 211933 278 15449570 "PubMed citation" \N 211934 288 847696 "Gmelin Registry Number" \N 211935 283 C01602 "KEGG COMPOUND" \N 211936 88 23367 \N 211937 88 18066 \N 211938 88 9845 \N 211939 88 22103 \N 211940 88 13498 \N 211941 88 9895 \N 211942 88 27234 \N 211943 88 13505 \N 211944 283 133-89-1 "CAS Registry Number" \N 211945 283 C00029 "KEGG COMPOUND" \N 211946 88 17659 \N 211947 88 9802 \N 211948 88 27230 \N 211949 88 46402 \N 211950 88 13445 \N 211951 281 58-98-0 "CAS Registry Number" \N 211952 278 1257952 "PubMed citation" \N 211953 278 11023036 "PubMed citation" \N 211954 278 12351530 "PubMed citation" \N 211955 278 14558596 "PubMed citation" \N 211956 279 64707 "Beilstein Registry Number" \N 211957 284 C00007313 "KNApSAcK" \N 211958 104 UDP "Wikipedia" \N 211959 282 HMDB00295 "HMDB" \N 211960 292 G10619 "KEGG GLYCAN" \N 211961 87 UDP "MetaCyc" \N 211962 278 9460170 "PubMed citation" \N 211963 104 Uridine_Diphosphate "Wikipedia" \N 211964 285 DB03435 "DrugBank" \N 211965 278 15170365 "PubMed citation" \N 211966 283 C00015 "KEGG COMPOUND" \N 211967 283 58-98-0 "CAS Registry Number" \N 211968 287 UDP "PDBeChem" \N 211969 88 17754 \N 211970 88 131422 \N 211971 88 14334 \N 211972 88 24351 \N 211973 88 42998 \N 211974 88 5448 \N 211975 278 14563847 "PubMed citation" \N 211976 278 19184438 "PubMed citation" \N 211977 278 11994365 "PubMed citation" \N 211978 286 635685 "Reaxys Registry Number" \N 211979 285 DB04077 "DrugBank" \N 211980 278 16664750 "PubMed citation" \N 211981 278 23562176 "PubMed citation" \N 211982 278 18953024 "PubMed citation" \N 211983 278 15332353 "PubMed citation" \N 211984 278 6299616 "PubMed citation" \N 211985 278 12138207 "PubMed citation" \N 211986 119 2D03 "PDB" \N 211987 278 16319039 "PubMed citation" \N 211988 284 C00001163 "KNApSAcK" \N 211989 278 23747440 "PubMed citation" \N 211990 278 16836692 "PubMed citation" \N 211991 278 16475911 "PubMed citation" \N 211992 278 12713573 "PubMed citation" \N 211993 278 15618446 "PubMed citation" \N 211994 278 12687625 "PubMed citation" \N 211995 119 2AJS "PDB" \N 211996 288 26279 "Gmelin Registry Number" \N 211997 278 11302662 "PubMed citation" \N 211998 278 688619 "PubMed citation" \N 211999 278 22705534 "PubMed citation" \N 212000 104 Glycerol "Wikipedia" \N 212001 289 YMDB00283 "YMDB" \N 212002 278 19956799 "PubMed citation" \N 212003 278 16258193 "PubMed citation" \N 212004 278 11958517 "PubMed citation" \N 212005 278 558160 "PubMed citation" \N 212006 278 15939412 "PubMed citation" \N 212007 278 7337752 "PubMed citation" \N 212008 278 14708889 "PubMed citation" \N 212009 278 19548674 "PubMed citation" \N 212010 282 HMDB00131 "HMDB" \N 212011 290 D00028 "KEGG DRUG" \N 212012 279 635685 "Beilstein Registry Number" \N 212013 280 56-81-5 "CAS Registry Number" \N 212014 278 16349488 "PubMed citation" \N 212015 278 16651733 "PubMed citation" \N 212016 278 15786693 "PubMed citation" \N 212017 278 19795216 "PubMed citation" \N 212018 278 14559393 "PubMed citation" \N 212019 278 15026783 "PubMed citation" \N 212020 278 12085703 "PubMed citation" \N 212021 278 12689633 "PubMed citation" \N 212022 87 GLYCEROL "MetaCyc" \N 212023 278 16244855 "PubMed citation" \N 212024 278 15342117 "PubMed citation" \N 212025 278 19460032 "PubMed citation" \N 212026 278 19231894 "PubMed citation" \N 212027 278 15778861 "PubMed citation" \N 212028 278 15983192 "PubMed citation" \N 212029 293 ECMDB00131 "ECMDB" \N 212030 299 7031247 "PubMed citation" \N 212031 299 12672239 "PubMed citation" \N 212032 299 7392035 "PubMed citation" \N 212033 281 56-81-5 "CAS Registry Number" \N 212034 296 c0066 "UM-BBD compID" \N 212035 287 GOL "PDBeChem" \N 212036 283 C00116 "KEGG COMPOUND" \N 212037 283 56-81-5 "CAS Registry Number" \N 212038 88 17150 \N 212039 88 11652 \N 212040 88 44849 \N 212041 88 19764 \N 212042 88 1268 \N 212043 285 DB02726 "DrugBank" \N 212044 284 C00007561 "KNApSAcK" \N 212045 287 PGA "PDBeChem" \N 212046 283 C00988 "KEGG COMPOUND" \N 212047 88 16958 \N 212048 88 12389 \N 212049 88 22821 \N 212050 88 10343 \N 212051 88 41050 \N 212052 278 7179210 "PubMed citation" \N 212053 278 9829262 "PubMed citation" \N 212054 278 11850512 "PubMed citation" \N 212055 282 HMDB00056 "HMDB" \N 212056 278 14705962 "PubMed citation" \N 212057 278 8203202 "PubMed citation" \N 212058 286 906793 "Reaxys Registry Number" \N 212059 278 3829006 "PubMed citation" \N 212060 278 2296474 "PubMed citation" \N 212061 278 679461 "PubMed citation" \N 212062 278 11139233 "PubMed citation" \N 212063 278 14363188 "PubMed citation" \N 212064 279 906793 "Beilstein Registry Number" \N 212065 278 2119585 "PubMed citation" \N 212066 278 16554972 "PubMed citation" \N 212067 278 16934791 "PubMed citation" \N 212068 288 49614 "Gmelin Registry Number" \N 212069 104 Beta-Alanine "Wikipedia" \N 212070 278 20479615 "PubMed citation" \N 212071 278 18528519 "PubMed citation" \N 212072 278 20994958 "PubMed citation" \N 212073 290 D07561 "KEGG DRUG" \N 212074 285 DB03107 "DrugBank" \N 212075 280 107-95-9 "CAS Registry Number" \N 212076 278 20199122 "PubMed citation" \N 212077 278 15284084 "PubMed citation" \N 212078 278 2894959 "PubMed citation" \N 212079 278 12107759 "PubMed citation" \N 212080 278 20386120 "PubMed citation" \N 212081 278 200005 "PubMed citation" \N 212082 278 15385443 "PubMed citation" \N 212083 278 12067239 "PubMed citation" \N 212084 278 18613640 "PubMed citation" \N 212085 278 19239140 "PubMed citation" \N 212086 278 19955842 "PubMed citation" \N 212087 281 107-95-9 "CAS Registry Number" \N 212088 284 C00001333 "KNApSAcK" \N 212089 87 B-ALANINE "MetaCyc" \N 212090 278 16282220 "PubMed citation" \N 212091 278 3983897 "PubMed citation" \N 212208 88 28938 1 \N 212092 278 12887142 "PubMed citation" \N 212093 283 C00099 "KEGG COMPOUND" \N 212094 283 107-95-9 "CAS Registry Number" \N 212095 287 BAL "PDBeChem" \N 212096 88 17680 \N 212097 88 4168 \N 212098 88 12966 \N 212099 88 21000 \N 212100 283 10139-18-1 "CAS Registry Number" \N 212101 283 C00660 "KEGG COMPOUND" \N 212102 88 36761 \N 212103 88 683 \N 212104 88 216985 \N 212105 88 10540 \N 212106 279 108538 "Beilstein Registry Number" \N 212107 281 2139-03-9 "CAS Registry Number" \N 212108 287 2PC "PDBeChem" \N 212109 283 C03564 "KEGG COMPOUND" \N 212110 88 25523 \N 212111 88 28358 \N 212112 88 24998 \N 212113 88 6351 \N 212114 279 1209341 "Beilstein Registry Number" \N 212115 281 50-21-5 "CAS Registry Number" \N 212116 298 LMFA01050002 "LIPID MAPS instance" \N 212117 285 DB04398 "DrugBank" \N 212118 286 1209341 "Reaxys Registry Number" \N 212119 290 D00111 "KEGG DRUG" \N 212120 280 50-21-5 "CAS Registry Number" \N 212121 104 Lactic_acid "Wikipedia" \N 212122 283 50-21-5 "CAS Registry Number" \N 212123 283 C01432 "KEGG COMPOUND" \N 212124 88 30151 \N 212125 280 22325-47-9 "CAS Registry Number" \N 212126 88 26078 \N 212127 282 HMDB02142 "HMDB" \N 212128 278 17518491 "PubMed citation" \N 212129 278 22401268 "PubMed citation" \N 212130 278 22333268 "PubMed citation" \N 212131 281 7664-38-2 "CAS Registry Number" \N 212132 104 Phosphoric_Acid "Wikipedia" \N 212133 286 1921286 "Reaxys Registry Number" \N 212134 278 22381614 "PubMed citation" \N 212135 279 1921286 "Beilstein Registry Number" \N 212136 284 C00007408 "KNApSAcK" \N 212137 278 5336272 "PubMed citation" \N 212138 104 Phosphoric acid "Wikipedia" \N 212139 280 7664-38-2 "CAS Registry Number" \N 212140 283 C00009 "KEGG COMPOUND" \N 212141 283 7664-38-2 "CAS Registry Number" \N 212142 278 15630224 "PubMed citation" \N 212143 288 2000 "Gmelin Registry Number" \N 212144 290 D05467 "KEGG DRUG" \N 212145 278 11455380 "PubMed citation" \N 212146 278 22282755 "PubMed citation" \N 212147 88 37154 \N 212148 288 325290 "Gmelin Registry Number" \N 212149 279 1906438 "Beilstein Registry Number" \N 212150 286 1906438 "Reaxys Registry Number" \N 212151 88 15741 \N 212152 88 26807 \N 212153 88 9304 \N 212154 88 45639 \N 212155 88 22943 \N 212156 104 Succinic acid "Wikipedia" \N 212157 87 SUC "MetaCyc" \N 212158 286 1754069 "Reaxys Registry Number" \N 212159 289 YMDB00338 "YMDB" \N 212160 293 ECMDB00254 "ECMDB" \N 212161 279 1754069 "Beilstein Registry Number" \N 212162 278 8013094 "PubMed citation" \N 212163 281 110-15-6 "CAS Registry Number" \N 212164 280 110-15-6 "CAS Registry Number" \N 212165 278 6882030 "PubMed citation" \N 212166 285 DB00139 "DrugBank" \N 212167 298 LMFA01170043 "LIPID MAPS instance" \N 212168 278 11067816 "PubMed citation" \N 212169 282 HMDB00254 "HMDB" \N 212170 278 3659829 "PubMed citation" \N 212171 278 16143825 "PubMed citation" \N 212172 104 Succinic_acid "Wikipedia" \N 212173 284 C00001205 "KNApSAcK" \N 212174 278 7582870 "PubMed citation" \N 212175 278 11803021 "PubMed citation" \N 212176 278 14687733 "PubMed citation" \N 212177 278 1126459 "PubMed citation" \N 212178 278 15059451 "PubMed citation" \N 212179 288 2785 "Gmelin Registry Number" \N 212180 283 C00042 "KEGG COMPOUND" \N 212181 283 110-15-6 "CAS Registry Number" \N 212182 287 SIN "PDBeChem" \N 212183 88 16119 \N 212184 88 26664 \N 212185 88 26662 \N 212186 88 9133 \N 212187 88 45740 \N 212188 278 15911418 "PubMed citation" \N 212189 282 HMDB03070 "HMDB" \N 212190 278 24894540 "PubMed citation" \N 212191 278 24783849 "PubMed citation" \N 212192 87 3-DEHYDRO-SHIKIMATE "MetaCyc" \N 212193 104 Shikimic acid "Wikipedia" \N 212194 280 138-59-0 "CAS Registry Number" \N 212195 286 2210055 "Reaxys Registry Number" \N 212196 278 24628944 "PubMed citation" \N 212197 278 24190737 "PubMed citation" \N 212198 278 24836188 "PubMed citation" \N 212199 279 2210055 "Beilstein Registry Number" \N 212200 284 C00001203 "KNApSAcK" \N 212201 278 5168 "PubMed citation" \N 212202 104 Shikimic_acid "Wikipedia" \N 212203 278 24981409 "PubMed citation" \N 212204 281 138-59-0 "CAS Registry Number" \N 212205 283 C00493 "KEGG COMPOUND" \N 212206 283 138-59-0 "CAS Registry Number" \N 212207 287 SKM "PDBeChem" \N 212209 88 22534 \N 212210 88 7435 \N 212211 88 49783 \N 212212 281 14798-03-9 "CAS Registry Number" \N 212213 280 14798-03-9 "CAS Registry Number" \N 212214 278 19199063 "PubMed citation" \N 212215 278 16345391 "PubMed citation" \N 212216 288 84 "Gmelin Registry Number" \N 212217 104 Ammonium "Wikipedia" \N 212218 278 11319011 "PubMed citation" \N 212219 278 22524020 "PubMed citation" \N 212220 286 16093784 "Reaxys Registry Number" \N 212221 278 22265469 "PubMed citation" \N 212222 278 22562341 "PubMed citation" \N 212223 278 18515490 "PubMed citation" \N 212224 278 11341317 "PubMed citation" \N 212225 278 21993530 "PubMed citation" \N 212226 301 929 "MolBase" \N 212227 278 19682559 "PubMed citation" \N 212228 278 14879753 "PubMed citation" \N 212229 278 17392693 "PubMed citation" \N 212230 278 12096804 "PubMed citation" \N 212231 278 22631217 "PubMed citation" \N 212232 278 14512268 "PubMed citation" \N 212233 278 19596600 "PubMed citation" \N 212234 87 AMMONIUM "MetaCyc" \N 212235 278 16903292 "PubMed citation" \N 212236 278 19716251 "PubMed citation" \N 212237 283 C01342 "KEGG COMPOUND" \N 212238 287 NH4 "PDBeChem" \N 212239 88 18237 \N 212240 88 5431 \N 212241 88 24314 \N 212242 283 617-65-2 "CAS Registry Number" \N 212243 284 C00019577 "KNApSAcK" \N 212244 290 D04341 "KEGG DRUG" \N 212245 104 Glutamic_acid "Wikipedia" \N 212246 284 C00001358 "KNApSAcK" \N 212247 288 101971 "Gmelin Registry Number" \N 212248 280 617-65-2 "CAS Registry Number" \N 212249 278 24616376 "PubMed citation" \N 212250 281 617-65-2 "CAS Registry Number" \N 212251 286 1723799 "Reaxys Registry Number" \N 212252 278 24984001 "PubMed citation" \N 212253 279 1723799 "Beilstein Registry Number" \N 212254 278 15739367 "PubMed citation" \N 212255 283 C00302 "KEGG COMPOUND" \N 212256 88 16108 \N 212257 88 5454 \N 212258 88 39571 \N 212259 88 24355 \N 212260 88 14341 \N 212261 88 14342 \N 212262 279 1708891 "Beilstein Registry Number" \N 212263 87 DIHYDROXY-ACETONE-PHOSPHATE "MetaCyc" \N 212264 278 8931639 "PubMed citation" \N 212265 278 3119940 "PubMed citation" \N 212266 285 DB04326 "DrugBank" \N 212267 278 10098675 "PubMed citation" \N 212268 278 1332571 "PubMed citation" \N 212269 284 C00007560 "KNApSAcK" \N 212270 286 1708891 "Reaxys Registry Number" \N 212271 104 Dihydroxyacetone phosphate "Wikipedia" \N 212272 283 57-04-5 "CAS Registry Number" \N 212273 278 20092811 "PubMed citation" \N 212274 281 57-04-5 "CAS Registry Number" \N 212275 282 HMDB01473 "HMDB" \N 212276 104 Dihydroxyacetone_phosphate "Wikipedia" \N 212277 283 C00111 "KEGG COMPOUND" \N 212278 287 13P "PDBeChem" \N 212279 88 23905 \N 212280 88 22652 \N 212281 88 28694 \N 212282 88 3874 \N 212283 88 23376 \N 212284 291 Cu "WebElements" \N 212285 288 16269 "Gmelin Registry Number" \N 212286 283 C00070 "KEGG COMPOUND" \N 212287 283 7440-50-8 "CAS Registry Number" \N 212288 281 7440-50-8 "CAS Registry Number" \N 212289 88 16308 \N 212290 88 15130 \N 212291 88 26813 \N 212292 88 15129 \N 212293 88 9315 \N 212294 292 G10508 "KEGG GLYCAN" \N 212295 284 C00007452 "KNApSAcK" \N 212296 287 SUP "PDBeChem" \N 212297 283 C16688 "KEGG COMPOUND" \N 212298 283 C02591 "KEGG COMPOUND" \N 212299 88 16042 \N 212300 88 14384 \N 212301 88 5605 \N 212302 283 C00462 "KEGG COMPOUND" \N 212303 88 18283 \N 212304 88 22364 \N 212305 88 12285 \N 212306 88 15252 \N 212307 88 10201 \N 212308 292 G09795 "KEGG GLYCAN" \N 212309 284 C00007451 "KNApSAcK" \N 212310 285 DB02430 "DrugBank" \N 212311 279 59815 "Beilstein Registry Number" \N 212312 281 4484-88-2 "CAS Registry Number" \N 212313 283 4484-88-2 "CAS Registry Number" \N 212314 283 C00689 "KEGG COMPOUND" \N 212315 88 17632 \N 212316 88 14654 \N 212317 88 71263 \N 212318 88 44487 \N 212319 278 11573638 "PubMed citation" \N 212320 288 1574 "Gmelin Registry Number" \N 212321 282 HMDB02878 "HMDB" \N 212322 278 9165223 "PubMed citation" \N 212323 278 16032974 "PubMed citation" \N 212324 87 CPD-144 "MetaCyc" \N 212325 278 12716019 "PubMed citation" \N 212326 278 11922726 "PubMed citation" \N 212327 278 16440845 "PubMed citation" \N 212440 88 19877 \N 212328 278 16844401 "PubMed citation" \N 212329 104 Nitrate "Wikipedia" \N 212330 278 15637891 "PubMed citation" \N 212331 278 15532572 "PubMed citation" \N 212332 278 16036360 "PubMed citation" \N 212333 280 14797-55-8 "CAS Registry Number" \N 212334 278 9373644 "PubMed citation" \N 212335 281 14797-55-8 "CAS Registry Number" \N 212336 278 11903922 "PubMed citation" \N 212337 278 11922924 "PubMed citation" \N 212338 278 11338313 "PubMed citation" \N 212339 279 3587575 "Beilstein Registry Number" \N 212340 302 NITRATE "MetaCyc" \N 212341 287 NO3 "PDBeChem" \N 212342 88 30653 \N 212343 281 498-19-1 "CAS Registry Number" \N 212344 281 1927-25-9 "CAS Registry Number" \N 212345 286 1721682 "Reaxys Registry Number" \N 212346 279 1721682 "Beilstein Registry Number" \N 212347 278 15753300 "PubMed citation" \N 212348 88 24867 \N 212349 88 33429 \N 212350 88 30779 \N 212351 286 3904279 "Reaxys Registry Number" \N 212352 279 3904279 "Beilstein Registry Number" \N 212353 288 325292 "Gmelin Registry Number" \N 212354 88 18367 \N 212355 88 7793 \N 212356 88 45024 \N 212357 88 14791 \N 212358 278 17986877 "PubMed citation" \N 212359 278 17554629 "PubMed citation" \N 212360 278 18037646 "PubMed citation" \N 212361 278 17906400 "PubMed citation" \N 212362 278 17981687 "PubMed citation" \N 212363 87 CPD-8587 "MetaCyc" \N 212364 278 18177777 "PubMed citation" \N 212365 278 18000237 "PubMed citation" \N 212366 278 17981711 "PubMed citation" \N 212367 278 17850485 "PubMed citation" \N 212368 278 17803475 "PubMed citation" \N 212369 278 17658268 "PubMed citation" \N 212370 286 3903772 "Reaxys Registry Number" \N 212371 279 3903772 "Beilstein Registry Number" \N 212372 278 17581921 "PubMed citation" \N 212373 278 18092715 "PubMed citation" \N 212374 278 17584984 "PubMed citation" \N 212375 278 17991611 "PubMed citation" \N 212376 278 17785617 "PubMed citation" \N 212377 278 17544500 "PubMed citation" \N 212378 278 18064384 "PubMed citation" \N 212379 278 17906405 "PubMed citation" \N 212380 278 17661083 "PubMed citation" \N 212381 278 17931150 "PubMed citation" \N 212382 278 17906399 "PubMed citation" \N 212383 278 17956314 "PubMed citation" \N 212384 278 17906326 "PubMed citation" \N 212385 278 17978087 "PubMed citation" \N 212386 278 17956243 "PubMed citation" \N 212387 278 18072094 "PubMed citation" \N 212388 104 Phosphate "Wikipedia" \N 212389 278 17464515 "PubMed citation" \N 212390 278 18019987 "PubMed citation" \N 212391 278 17981572 "PubMed citation" \N 212392 282 HMDB01429 "HMDB" \N 212393 278 18095844 "PubMed citation" \N 212394 278 11039261 "PubMed citation" \N 212395 278 17979800 "PubMed citation" \N 212396 278 17850484 "PubMed citation" \N 212397 278 3654974 "PubMed citation" \N 212398 278 17981758 "PubMed citation" \N 212399 278 17981634 "PubMed citation" \N 212400 278 17906402 "PubMed citation" \N 212401 278 17922619 "PubMed citation" \N 212402 278 17686957 "PubMed citation" \N 212403 278 17906404 "PubMed citation" \N 212404 278 17906414 "PubMed citation" \N 212405 278 18057662 "PubMed citation" \N 212406 278 9159312 "PubMed citation" \N 212407 278 18095853 "PubMed citation" \N 212408 278 17906398 "PubMed citation" \N 212409 278 17986515 "PubMed citation" \N 212410 278 17825403 "PubMed citation" \N 212411 278 18057310 "PubMed citation" \N 212412 278 17906401 "PubMed citation" \N 212413 278 17943748 "PubMed citation" \N 212414 278 17896168 "PubMed citation" \N 212415 294 PO4 "PDBeChem" \N 212416 281 14265-44-2 "CAS Registry Number" \N 212417 288 1997 "Gmelin Registry Number" \N 212418 278 17625581 "PubMed citation" \N 212419 278 11169009 "PubMed citation" \N 212420 278 17969036 "PubMed citation" \N 212421 278 17698855 "PubMed citation" \N 212422 283 14265-44-2 "CAS Registry Number" \N 212423 287 PO4 "PDBeChem" \N 212424 88 17822 1 \N 212425 88 15081 \N 212426 88 26648 \N 212427 88 9116 \N 212428 281 302-84-1 "CAS Registry Number" \N 212429 280 302-84-1 "CAS Registry Number" \N 212430 284 C00001393 "KNApSAcK" \N 212431 288 26429 "Gmelin Registry Number" \N 212432 104 Serine "Wikipedia" \N 212433 279 1721402 "Beilstein Registry Number" \N 212434 283 302-84-1 "CAS Registry Number" \N 212435 286 1721402 "Reaxys Registry Number" \N 212436 283 C00716 "KEGG COMPOUND" \N 212437 88 16433 \N 212438 88 11691 \N 212439 88 11692 \N 212441 88 12870 \N 212442 88 1379 \N 212443 88 41964 \N 212444 279 1954563 "Beilstein Registry Number" \N 212445 286 1954563 "Reaxys Registry Number" \N 212446 278 21962208 "PubMed citation" \N 212447 284 C00000615 "KNApSAcK" \N 212448 281 501-16-6 "CAS Registry Number" \N 212449 283 501-16-6 "CAS Registry Number" \N 212450 283 C01197 "KEGG COMPOUND" \N 212451 287 DHC "PDBeChem" \N 212452 88 32816 \N 212453 88 26466 \N 212454 88 45253 \N 212455 88 8685 \N 212456 279 506211 "Beilstein Registry Number" \N 212457 281 127-17-3 "CAS Registry Number" \N 212458 278 11762589 "PubMed citation" \N 212459 278 12234818 "PubMed citation" \N 212460 278 12734903 "PubMed citation" \N 212461 278 19260671 "PubMed citation" \N 212462 278 22150460 "PubMed citation" \N 212463 278 22233273 "PubMed citation" \N 212464 278 22435727 "PubMed citation" \N 212465 278 2378186 "PubMed citation" \N 212466 278 2396083 "PubMed citation" \N 212467 278 512915 "PubMed citation" \N 212468 278 6581765 "PubMed citation" \N 212469 278 7391156 "PubMed citation" \N 212470 278 7819686 "PubMed citation" \N 212471 285 DB00119 "DrugBank" \N 212472 293 ECMDB00243 "ECMDB" \N 212473 288 101087 "Gmelin Registry Number" \N 212474 282 HMDB00243 "HMDB" \N 212475 283 C00022 "KEGG COMPOUND" \N 212476 284 C00001200 "KNApSAcK" \N 212477 298 LMFA01060077 "LIPID MAPS instance" \N 212478 87 PYRUVATE "MetaCyc" \N 212479 280 127-17-3 "CAS Registry Number" \N 212480 287 PYR "PDBeChem" \N 212481 286 506211 "Reaxys Registry Number" \N 212482 104 Pyruvic acid "Wikipedia" \N 212483 104 Pyruvic_acid "Wikipedia" \N 212484 289 YMDB00175 "YMDB" \N 212485 88 HAS_FUNCTIONAL_PARENT \N 212486 88 IS_CONJUGATE_ACID_OF \N 212487 88 IS_CONJUGATE_BASE_OF \N 212488 303 1000000 \N 212489 303 1400004 \N 212490 303 0300003 \N 212491 303 0700004 \N 212492 303 0400008 \N 212493 303 0700011 \N 212494 303 0501000 \N 212495 303 0100013 \N 212496 303 1500010 \N 212497 303 0400003 \N 212498 303 0900004 \N 212499 303 0700005 \N 212500 303 1700000 \N 212501 303 1600001 \N 212502 303 0700012 \N 212503 303 0300001 \N 212504 303 1300005 \N 212505 303 0300012 \N 212506 303 1500001 \N 212507 303 1300009 \N 212508 303 0400002 \N 212509 303 0100004 \N 212510 303 0900000 \N 212511 303 0700009 \N 212512 303 0400004 \N 212513 303 1500000 \N 212514 303 1500008 \N 212515 303 1500012 \N 212516 303 0100012 \N 212517 303 1300000 \N 212518 303 1500005 \N 212519 303 0100007 \N 212520 303 1700002 \N 212521 303 0900002 \N 212522 303 0300009 \N 212523 303 0000000 \N 212524 303 0600000 \N 212525 303 1900003 \N 212526 303 1000001 \N 212527 303 1300008 \N 212528 303 0600001 \N 212529 303 1700001 \N 212530 303 0700008 \N 212531 303 1800000 \N 212532 303 2200001 \N 212533 303 1600002 \N 212534 303 0200009 \N 212535 303 0800003 \N 212536 303 0900003 \N 212537 303 1500006 \N 212538 303 1300004 \N 212539 303 0200000 \N 212540 303 0100010 \N 212541 303 0800004 \N 212542 303 0100006 \N 212543 303 0800001 \N 212544 303 0200003 \N 212545 303 1800003 \N 212546 303 0200001 \N 212547 303 1200000 \N 212548 303 0400001 \N 212549 303 1200002 \N 212550 303 0100005 \N 212551 303 0400005 \N 212552 303 0300000 \N 212553 303 1500003 \N 212554 303 0500000 \N 212555 303 0200005 \N 212556 303 0100015 \N 212557 303 1400002 \N 212558 303 0300007 \N 212559 303 1500009 \N 212560 303 0600002 \N 212561 303 0700007 \N 212562 303 1100000 \N 212563 303 1500007 \N 212564 303 0501001 \N 212565 303 0100011 \N 212566 303 0400007 \N 212567 303 0100008 \N 212568 303 0300004 \N 212569 303 1400000 \N 212570 303 1900001 \N 212571 303 1500002 \N 212572 303 0400000 \N 212573 303 0700003 \N 212574 303 0300002 \N 212575 303 2200000 \N 212576 303 0200007 \N 212577 303 1900002 \N 212578 303 0100003 \N 212579 303 0100014 \N 212580 303 1400003 \N 212581 303 0200002 \N 212582 303 2200002 \N 212583 303 0700010 \N 212584 303 0700006 \N 212585 303 0503000 \N 212586 303 0300010 \N 212587 303 0300008 \N 212588 303 0300005 \N 212589 303 0100000 \N 212590 303 0400006 \N 212591 303 0800002 \N 212592 303 1800001 \N 212593 303 0300006 \N 212594 303 0800000 \N 212595 303 0100001 \N 212596 303 0700001 \N 212597 303 0300013 \N 212598 303 1500004 \N 212599 303 2200003 \N 212600 303 1300001 \N 212601 303 1200001 \N 212602 303 0400009 \N 212603 303 0300011 \N 212604 303 0100016 \N 212605 303 0200004 \N 212606 303 0700000 \N 212607 303 0200008 \N 212608 303 0200006 \N 212609 303 1100001 \N 212610 303 0100009 \N 212611 303 0100002 \N 212612 303 0400010 \N 212613 303 1900000 \N 212614 303 1300007 \N 212615 303 0900001 \N 212616 303 0600003 \N 212617 303 1900004 \N 212618 303 1500011 \N 212619 303 0700002 \N 212620 303 1600000 \N 212621 303 1800002 \N 212622 303 1400001 \N 212623 303 1300006 \N 212624 303 0502000 \N 212625 304 0000018 \N 212626 304 0000040 \N 212627 304 0000000 \N 212628 304 0000016 \N 212629 304 0000022 \N 212630 304 0000017 \N 212631 304 0000059 \N 212632 304 0000030 \N 212633 304 0000050 \N 212634 304 0000067 \N 212635 304 0000063 \N 212636 304 0000066 \N 212637 304 0000055 \N 212638 304 0000058 \N 212639 304 0000002 \N 212640 304 0000025 \N 212641 304 0000028 \N 212642 304 0000004 \N 212643 304 0000037 \N 212644 304 0000042 \N 212645 304 0000027 \N 212646 304 0000021 \N 212647 304 0000045 \N 212648 304 0000007 \N 212649 304 0000011 \N 212650 304 0000065 \N 212651 304 0000009 \N 212652 304 0000019 \N 212653 304 0000031 \N 212654 304 0000054 \N 212655 304 0000008 \N 212656 304 0000012 \N 212657 304 0000075 \N 212658 304 0000036 \N 212659 304 0000026 \N 212660 304 0000069 \N 212661 304 0000052 \N 212662 304 0000072 \N 212663 304 0000062 \N 212664 304 0000057 \N 212665 304 0000047 \N 212666 304 0000023 \N 212667 304 0000071 \N 212668 304 0000006 \N 212669 304 0000034 \N 212670 304 0000032 \N 212671 304 0000073 \N 212672 304 0000005 \N 212673 304 0000014 \N 212674 304 0000048 \N 212675 304 0000038 \N 212676 304 0000053 \N 212677 304 0000051 \N 212678 304 0000024 \N 212679 304 0000074 \N 212680 304 0000029 \N 212681 304 0000070 \N 212682 304 0000064 \N 212683 304 0000010 \N 212684 304 0000035 \N 212685 304 0000044 \N 212686 304 0000013 \N 212687 304 0000060 \N 212688 304 0000041 \N 212689 304 0000039 \N 212690 304 0000068 \N 212691 304 0000046 \N 212692 304 0000033 \N 212693 304 0000049 \N 212694 304 0000056 \N 212695 304 0000001 \N 212696 304 0000020 \N 212697 304 0000003 \N 212698 304 0000043 \N 212699 304 0000061 \N 212700 304 0000015 \N 212701 2 trait_ontology \N 212702 2 composed_trait_ontology \N 212703 2 object_ontology \N 212704 2 attribute_ontology \N 212705 2 method_ontology \N 212706 2 unit_ontology \N 212707 2 time_ontology \N 212708 305 1 \N 212709 305 0000002 \N 212710 305 0000003 \N 212711 305 0000004 \N 212712 305 0000005 \N 212713 305 0000006 \N 212714 305 0000007 \N 212715 305 0000008 \N 212716 305 0000009 \N 212717 305 0000010 \N 212718 305 0000011 \N 212719 305 0000012 \N 212720 305 0000013 \N 212721 2 autocreated:seedlot_experiment \N 212722 2 autocreated:collection_of \N 212723 2 autocreated:seed transaction \N 212724 2 autocreated:seedlot \N 212725 2 autocreated:plants \N 212726 2 autocreated:phenotypes_fully_uploaded \N 212727 2 autocreated:seedlots \N 212728 2 autocreated:treatment_experiment \N 212729 2 autocreated:trial_treatment_relationship \N 212730 2 autocreated:number_of_seeds_distributed \N 212731 2 autocreated:Genetic Gain \N 212732 2 autocreated:Storage \N 212733 2 autocreated:Heterosis \N 212734 2 autocreated:Health Status \N 212735 2 autocreated:subplot \N 212736 2 autocreated:project_has_subplot_entries \N 212737 2 autocreated:subplot_index_number \N 212738 2 autocreated:subplots \N 212739 2 autocreated:subplot_of \N 212740 2 autocreated:plant_of_subplot \N 212741 2 autocreated:current_count \N 212742 2 autocreated:crossing_metadata_json \N 212743 2 autocreated:female_plot_of \N 212744 2 autocreated:male_plot_of \N 212745 2 autocreated:grafted_accession \N 212746 2 autocreated:grafting_experiment \N 212747 2 autocreated:crossing_trial \N 212748 2 autocreated:grafting_trial \N 212749 2 autocreated:pollinating_trial \N 212750 2 autocreated:rootstock_of \N 212751 2 autocreated:scion_of \N 212752 2 autocreated:trial_layout_json \N 212753 2 autocreated:genome_structure \N 212754 2 autocreated:ploidy_level \N 212755 2 autocreated:introgression_parent \N 212756 2 autocreated:introgression_backcross_parent \N 212757 2 autocreated:introgression_map_version \N 212758 2 autocreated:introgression_chromosome \N 212759 2 autocreated:introgression_start_position_bp \N 212760 2 autocreated:introgression_end_position_bp \N 212761 2 autocreated:notes \N 212762 2 autocreated:variety \N 212763 2 autocreated:state \N 212764 2 autocreated:label_design \N 212765 2 autocreated:plot_geo_json \N 212766 2 autocreated:phenotype_outlier \N 212767 2 autocreated:project_has_tissue_sample_entries \N 212768 2 autocreated:tissue_sample_index_number \N 212769 2 autocreated:is_blank \N 212770 2 autocreated:concentration \N 212771 2 autocreated:volume \N 212772 2 autocreated:dna_person \N 212773 2 autocreated:extraction \N 212774 2 autocreated:tissue_type \N 212775 2 autocreated:ncbi_taxonomy_id \N 212776 2 autocreated:genotyping_facility \N 212777 2 autocreated:genotyping_facility_status \N 212778 2 autocreated:genotyping_facility_submitted \N 212779 2 autocreated:genotyping_plate_format \N 212780 2 autocreated:genotyping_plate_sample_type \N 212781 2 autocreated:genotyping_facility_plate_id \N 212782 2 autocreated:current_weight_gram \N 212783 2 autocreated:tissue_samples \N 212785 2 autocreated:number_of_fruits \N 212786 2 autocreated:number_of_seedlings_transplanted \N 212787 2 autocreated:Seed Multiplication \N 212788 2 autocreated:Screen House \N 212789 2 autocreated:genotyping_trials \N 212790 2 autocreated:field_trial_from_field_trial \N 212791 2 autocreated:genotyping_trial_from_field_trial \N 212792 2 autocreated:crossing_trial_from_field_trial \N 212793 2 autocreated:plot_width \N 212794 2 autocreated:plot_length \N 212795 2 autocreated:field_size \N 212796 2 autocreated:field_trial_is_planned_to_be_genotyped \N 212797 2 autocreated:field_trial_is_planned_to_cross \N 212798 2 autocreated:female_plant_of \N 212799 2 autocreated:male_plant_of \N 212800 2 autocreated:data_agreement \N 212801 2 autocreated:crossing_block_trial \N 212802 2 autocreated:folder_for_genotyping_trials \N 212803 2 autocreated:vcf_map_details \N 212804 2 autocreated:vcf_snp_genotyping \N 212805 2 autocreated:markers \N 212806 2 autocreated:family_name \N 212807 2 autocreated:identifier_generation \N 212808 2 autocreated:odk_ona_forms \N 212809 2 autocreated:raw_data_link \N 212810 2 autocreated:management_factor_date \N 212811 2 autocreated:management_factor_type \N 212812 2 autocreated:cross_combination \N 212813 2 autocreated:family_names \N 212814 2 autocreated:drone_run_on_field_trial \N 212815 2 autocreated:drone_run_band_on_drone_run \N 212816 2 autocreated:raw_drone_imagery \N 212817 2 autocreated:stitched_drone_imagery \N 212818 2 autocreated:denoised_stitched_drone_imagery \N 212819 2 autocreated:cropped_stitched_drone_imagery \N 212820 2 autocreated:rotated_stitched_drone_imagery \N 212821 2 autocreated:rotated_stitched_temporary_drone_imagery \N 212822 2 autocreated:fourier_transform_stitched_drone_imagery \N 212823 2 autocreated:contours_stitched_drone_imagery \N 212824 2 autocreated:observation_unit_polygon_bw_imagery \N 212825 2 autocreated:observation_unit_polygon_rgb_imagery \N 212826 2 autocreated:observation_unit_polygon_rgb_imagery_channel_1 \N 212827 2 autocreated:observation_unit_polygon_rgb_imagery_channel_2 \N 212828 2 autocreated:observation_unit_polygon_rgb_imagery_channel_3 \N 212829 2 autocreated:observation_unit_polygon_nrn_imagery \N 212830 2 autocreated:observation_unit_polygon_nren_imagery \N 212831 2 autocreated:observation_unit_polygon_blue_imagery \N 212832 2 autocreated:observation_unit_polygon_green_imagery \N 212833 2 autocreated:observation_unit_polygon_red_imagery \N 212834 2 autocreated:observation_unit_polygon_red_edge_imagery \N 212835 2 autocreated:observation_unit_polygon_nir_imagery \N 212836 2 autocreated:observation_unit_polygon_mir_imagery \N 212837 2 autocreated:observation_unit_polygon_fir_imagery \N 212838 2 autocreated:observation_unit_polygon_tir_imagery \N 212839 2 autocreated:observation_unit_polygon_bw_background_removed_threshold_imagery \N 212840 2 autocreated:observation_unit_polygon_rgb_background_removed_threshold_imagery_channel_1 \N 212841 2 autocreated:observation_unit_polygon_rgb_background_removed_threshold_imagery_channel_2 \N 212842 2 autocreated:observation_unit_polygon_rgb_background_removed_threshold_imagery_channel_3 \N 212843 2 autocreated:observation_unit_polygon_blue_background_removed_threshold_imagery \N 212844 2 autocreated:observation_unit_polygon_green_background_removed_threshold_imagery \N 212845 2 autocreated:observation_unit_polygon_red_background_removed_threshold_imagery \N 212846 2 autocreated:observation_unit_polygon_red_edge_background_removed_threshold_imagery \N 212847 2 autocreated:observation_unit_polygon_nir_background_removed_threshold_imagery \N 212848 2 autocreated:observation_unit_polygon_mir_background_removed_threshold_imagery \N 212849 2 autocreated:observation_unit_polygon_fir_background_removed_threshold_imagery \N 212850 2 autocreated:observation_unit_polygon_tir_background_removed_threshold_imagery \N 212851 2 autocreated:observation_unit_polygon_tgi_imagery \N 212852 2 autocreated:observation_unit_polygon_vari_imagery \N 212853 2 autocreated:observation_unit_polygon_ndvi_imagery \N 212854 2 autocreated:observation_unit_polygon_ndre_imagery \N 212855 2 autocreated:observation_unit_polygon_background_removed_tgi_imagery \N 212856 2 autocreated:observation_unit_polygon_background_removed_vari_imagery \N 212857 2 autocreated:observation_unit_polygon_background_removed_ndvi_imagery \N 212858 2 autocreated:observation_unit_polygon_background_removed_ndre_imagery \N 212859 2 autocreated:observation_unit_polygon_original_background_removed_tgi_mask_imagery \N 212860 2 autocreated:observation_unit_polygon_original_background_removed_tgi_mask_imagery_channel_1 \N 212861 2 autocreated:observation_unit_polygon_original_background_removed_tgi_mask_imagery_channel_2 \N 212862 2 autocreated:observation_unit_polygon_original_background_removed_tgi_mask_imagery_channel_3 \N 212863 2 autocreated:observation_unit_polygon_original_background_removed_vari_mask_imagery \N 212864 2 autocreated:observation_unit_polygon_original_background_removed_vari_mask_imagery_channel_1 \N 212865 2 autocreated:observation_unit_polygon_original_background_removed_vari_mask_imagery_channel_2 \N 212866 2 autocreated:observation_unit_polygon_original_background_removed_vari_mask_imagery_channel_3 \N 212867 2 autocreated:observation_unit_polygon_original_nrn_background_removed_ndvi_mask_imagery \N 212868 2 autocreated:observation_unit_polygon_original_nrn_background_removed_ndvi_mask_imagery_channel_1 \N 212869 2 autocreated:observation_unit_polygon_original_nrn_background_removed_ndvi_mask_imagery_channel_2 \N 212870 2 autocreated:observation_unit_polygon_original_nren_background_removed_ndre_mask_imagery \N 212871 2 autocreated:observation_unit_polygon_original_nren_background_removed_ndre_mask_imagery_channel_1 \N 212872 2 autocreated:observation_unit_polygon_original_nren_background_removed_ndre_mask_imagery_channel_2 \N 212873 2 autocreated:observation_unit_polygon_original_background_removed_thresholded_tgi_mask_imagery \N 212874 2 autocreated:observation_unit_polygon_original_background_removed_thresholded_tgi_mask_imagery_channel_1 \N 212875 2 autocreated:observation_unit_polygon_original_background_removed_thresholded_tgi_mask_imagery_channel_2 \N 212876 2 autocreated:observation_unit_polygon_original_background_removed_thresholded_tgi_mask_imagery_channel_3 \N 212877 2 autocreated:observation_unit_polygon_original_background_removed_thresholded_vari_mask_imagery \N 212878 2 autocreated:observation_unit_polygon_original_background_removed_thresholded_vari_mask_imagery_channel_1 \N 212879 2 autocreated:observation_unit_polygon_original_background_removed_thresholded_vari_mask_imagery_channel_2 \N 212880 2 autocreated:observation_unit_polygon_original_background_removed_thresholded_vari_mask_imagery_channel_3 \N 212881 2 autocreated:observation_unit_polygon_original_nrn_background_removed_thresholded_ndvi_mask_imagery \N 212882 2 autocreated:observation_unit_polygon_original_nrn_background_removed_thresholded_ndvi_mask_imagery_channel_1 \N 212883 2 autocreated:observation_unit_polygon_original_nrn_background_removed_thresholded_ndvi_mask_imagery_channel_2 \N 212884 2 autocreated:observation_unit_polygon_original_nren_background_removed_thresholded_ndre_mask_imagery \N 212885 2 autocreated:observation_unit_polygon_original_nren_background_removed_thresholded_ndre_mask_imagery_channel_1 \N 212886 2 autocreated:observation_unit_polygon_original_nren_background_removed_thresholded_ndre_mask_imagery_channel_2 \N 212887 2 autocreated:observation_unit_polygon_fourier_transform_hpf20_bgr_denoised_stitched_image_channel_1 \N 212888 2 autocreated:observation_unit_polygon_fourier_transform_hpf30_bgr_denoised_stitched_image_channel_1 \N 212889 2 autocreated:observation_unit_polygon_fourier_transform_hpf40_bgr_denoised_stitched_image_channel_1 \N 212890 2 autocreated:observation_unit_polygon_fourier_transform_hpf20_bgr_denoised_stitched_image_channel_2 \N 212891 2 autocreated:observation_unit_polygon_fourier_transform_hpf30_bgr_denoised_stitched_image_channel_2 \N 212892 2 autocreated:observation_unit_polygon_fourier_transform_hpf40_bgr_denoised_stitched_image_channel_2 \N 212893 2 autocreated:observation_unit_polygon_fourier_transform_hpf20_bgr_denoised_stitched_image_channel_3 \N 212894 2 autocreated:observation_unit_polygon_fourier_transform_hpf30_bgr_denoised_stitched_image_channel_3 \N 212895 2 autocreated:observation_unit_polygon_fourier_transform_hpf40_bgr_denoised_stitched_image_channel_3 \N 213332 306 0000028 \N 213333 306 0000039 \N 212896 2 autocreated:observation_unit_polygon_fourier_transform_hpf20_bw_denoised_stitched_image_channel_1 \N 212897 2 autocreated:observation_unit_polygon_fourier_transform_hpf30_bw_denoised_stitched_image_channel_1 \N 212898 2 autocreated:observation_unit_polygon_fourier_transform_hpf40_bw_denoised_stitched_image_channel_1 \N 212899 2 autocreated:observation_unit_polygon_fourier_transform_hpf20_blue_denoised_stitched_image_channel_1 \N 212900 2 autocreated:observation_unit_polygon_fourier_transform_hpf30_blue_denoised_stitched_image_channel_1 \N 212901 2 autocreated:observation_unit_polygon_fourier_transform_hpf40_blue_denoised_stitched_image_channel_1 \N 212902 2 autocreated:observation_unit_polygon_fourier_transform_hpf20_green_denoised_stitched_image_channel_1 \N 212903 2 autocreated:observation_unit_polygon_fourier_transform_hpf30_green_denoised_stitched_image_channel_1 \N 212904 2 autocreated:observation_unit_polygon_fourier_transform_hpf40_green_denoised_stitched_image_channel_1 \N 212905 2 autocreated:observation_unit_polygon_fourier_transform_hpf20_red_denoised_stitched_image_channel_1 \N 212906 2 autocreated:observation_unit_polygon_fourier_transform_hpf30_red_denoised_stitched_image_channel_1 \N 212907 2 autocreated:observation_unit_polygon_fourier_transform_hpf40_red_denoised_stitched_image_channel_1 \N 212908 2 autocreated:observation_unit_polygon_fourier_transform_hpf20_rededge_denoised_stitched_image_channel_1 \N 212909 2 autocreated:observation_unit_polygon_fourier_transform_hpf30_rededge_denoised_stitched_image_channel_1 \N 212910 2 autocreated:observation_unit_polygon_fourier_transform_hpf40_rededge_denoised_stitched_image_channel_1 \N 212911 2 autocreated:observation_unit_polygon_fourier_transform_hpf20_nir_denoised_stitched_image_channel_1 \N 212912 2 autocreated:observation_unit_polygon_fourier_transform_hpf30_nir_denoised_stitched_image_channel_1 \N 212913 2 autocreated:observation_unit_polygon_fourier_transform_hpf40_nir_denoised_stitched_image_channel_1 \N 212914 2 autocreated:observation_unit_polygon_fourier_transform_hpf20_mir_denoised_stitched_image_channel_1 \N 212915 2 autocreated:observation_unit_polygon_fourier_transform_hpf30_mir_denoised_stitched_image_channel_1 \N 212916 2 autocreated:observation_unit_polygon_fourier_transform_hpf40_mir_denoised_stitched_image_channel_1 \N 212917 2 autocreated:observation_unit_polygon_fourier_transform_hpf20_fir_denoised_stitched_image_channel_1 \N 212918 2 autocreated:observation_unit_polygon_fourier_transform_hpf30_fir_denoised_stitched_image_channel_1 \N 212919 2 autocreated:observation_unit_polygon_fourier_transform_hpf40_fir_denoised_stitched_image_channel_1 \N 212920 2 autocreated:observation_unit_polygon_fourier_transform_hpf20_tir_denoised_stitched_image_channel_1 \N 212921 2 autocreated:observation_unit_polygon_fourier_transform_hpf30_tir_denoised_stitched_image_channel_1 \N 212922 2 autocreated:observation_unit_polygon_fourier_transform_hpf40_tir_denoised_stitched_image_channel_1 \N 212923 2 autocreated:observation_unit_polygon_fourier_transform_hpf20_bgr_calculate_tgi_drone_imagery_channel_1 \N 212924 2 autocreated:observation_unit_polygon_fourier_transform_hpf30_bgr_calculate_tgi_drone_imagery_channel_1 \N 212925 2 autocreated:observation_unit_polygon_fourier_transform_hpf40_bgr_calculate_tgi_drone_imagery_channel_1 \N 212926 2 autocreated:observation_unit_polygon_fourier_transform_hpf20_bgr_calculate_vari_drone_imagery_channel_1 \N 212927 2 autocreated:observation_unit_polygon_fourier_transform_hpf30_bgr_calculate_vari_drone_imagery_channel_1 \N 212928 2 autocreated:observation_unit_polygon_fourier_transform_hpf40_bgr_calculate_vari_drone_imagery_channel_1 \N 212929 2 autocreated:observation_unit_polygon_fourier_transform_hpf20_nrn_calculate_ndvi_drone_imagery_channel_1 \N 212930 2 autocreated:observation_unit_polygon_fourier_transform_hpf30_nrn_calculate_ndvi_drone_imagery_channel_1 \N 212931 2 autocreated:observation_unit_polygon_fourier_transform_hpf40_nrn_calculate_ndvi_drone_imagery_channel_1 \N 212932 2 autocreated:observation_unit_polygon_fourier_transform_hpf20_nren_calculate_ndre_drone_imagery_channel_1 \N 212933 2 autocreated:observation_unit_polygon_fourier_transform_hpf30_nren_calculate_ndre_drone_imagery_channel_1 \N 212934 2 autocreated:observation_unit_polygon_fourier_transform_hpf40_nren_calculate_ndre_drone_imagery_channel_1 \N 212935 2 autocreated:observation_unit_polygon_fourier_transform_hpf20_bgr_calculate_thresholded_tgi_drone_imagery_channel_1 \N 212936 2 autocreated:observation_unit_polygon_fourier_transform_hpf30_bgr_calculate_thresholded_tgi_drone_imagery_channel_1 \N 212937 2 autocreated:observation_unit_polygon_fourier_transform_hpf40_bgr_calculate_thresholded_tgi_drone_imagery_channel_1 \N 212938 2 autocreated:observation_unit_polygon_fourier_transform_hpf20_bgr_calculate_thresholded_vari_drone_imagery_channel_1 \N 212939 2 autocreated:observation_unit_polygon_fourier_transform_hpf30_bgr_calculate_thresholded_vari_drone_imagery_channel_1 \N 212940 2 autocreated:observation_unit_polygon_fourier_transform_hpf40_bgr_calculate_thresholded_vari_drone_imagery_channel_1 \N 212941 2 autocreated:observation_unit_polygon_fourier_transform_hpf20_nrn_calculate_thresholded_ndvi_drone_imagery_channel_1 \N 212942 2 autocreated:observation_unit_polygon_fourier_transform_hpf30_nrn_calculate_thresholded_ndvi_drone_imagery_channel_1 \N 212943 2 autocreated:observation_unit_polygon_fourier_transform_hpf40_nrn_calculate_thresholded_ndvi_drone_imagery_channel_1 \N 212944 2 autocreated:observation_unit_polygon_fourier_transform_hpf20_nren_calculate_thresholded_ndre_drone_imagery_channel_1 \N 212945 2 autocreated:observation_unit_polygon_fourier_transform_hpf30_nren_calculate_thresholded_ndre_drone_imagery_channel_1 \N 212946 2 autocreated:observation_unit_polygon_fourier_transform_hpf40_nren_calculate_thresholded_ndre_drone_imagery_channel_1 \N 212947 2 autocreated:observation_unit_polygon_fourier_transform_hpf20_bgr_denoised_background_threshold_removed_image_channel_1 \N 212948 2 autocreated:observation_unit_polygon_fourier_transform_hpf30_bgr_denoised_background_threshold_removed_image_channel_1 \N 212949 2 autocreated:observation_unit_polygon_fourier_transform_hpf40_bgr_denoised_background_threshold_removed_image_channel_1 \N 212950 2 autocreated:observation_unit_polygon_fourier_transform_hpf20_bgr_denoised_background_threshold_removed_image_channel_2 \N 213057 2 autocreated:threshold_background_removed_vari_stitched_drone_imagery \N 212951 2 autocreated:observation_unit_polygon_fourier_transform_hpf30_bgr_denoised_background_threshold_removed_image_channel_2 \N 212952 2 autocreated:observation_unit_polygon_fourier_transform_hpf40_bgr_denoised_background_threshold_removed_image_channel_2 \N 212953 2 autocreated:observation_unit_polygon_fourier_transform_hpf20_bgr_denoised_background_threshold_removed_image_channel_3 \N 212954 2 autocreated:observation_unit_polygon_fourier_transform_hpf30_bgr_denoised_background_threshold_removed_image_channel_3 \N 212955 2 autocreated:observation_unit_polygon_fourier_transform_hpf40_bgr_denoised_background_threshold_removed_image_channel_3 \N 212956 2 autocreated:observation_unit_polygon_fourier_transform_hpf20_blue_denoised_background_threshold_removed_image_channel_1 \N 212957 2 autocreated:observation_unit_polygon_fourier_transform_hpf30_blue_denoised_background_threshold_removed_image_channel_1 \N 212958 2 autocreated:observation_unit_polygon_fourier_transform_hpf40_blue_denoised_background_threshold_removed_image_channel_1 \N 212959 2 autocreated:observation_unit_polygon_fourier_transform_hpf20_bw_denoised_background_threshold_removed_image_channel_1 \N 212960 2 autocreated:observation_unit_polygon_fourier_transform_hpf30_bw_denoised_background_threshold_removed_image_channel_1 \N 212961 2 autocreated:observation_unit_polygon_fourier_transform_hpf40_bw_denoised_background_threshold_removed_image_channel_1 \N 212962 2 autocreated:observation_unit_polygon_fourier_transform_hpf20_green_denoised_background_threshold_removed_image_channel_1 \N 212963 2 autocreated:observation_unit_polygon_fourier_transform_hpf30_green_denoised_background_threshold_removed_image_channel_1 \N 212964 2 autocreated:observation_unit_polygon_fourier_transform_hpf40_green_denoised_background_threshold_removed_image_channel_1 \N 212965 2 autocreated:observation_unit_polygon_fourier_transform_hpf20_red_denoised_background_threshold_removed_image_channel_1 \N 212966 2 autocreated:observation_unit_polygon_fourier_transform_hpf30_red_denoised_background_threshold_removed_image_channel_1 \N 212967 2 autocreated:observation_unit_polygon_fourier_transform_hpf40_red_denoised_background_threshold_removed_image_channel_1 \N 212968 2 autocreated:observation_unit_polygon_fourier_transform_hpf20_rededge_denoised_background_threshold_removed_image_channel_1 \N 212969 2 autocreated:observation_unit_polygon_fourier_transform_hpf30_rededge_denoised_background_threshold_removed_image_channel_1 \N 212970 2 autocreated:observation_unit_polygon_fourier_transform_hpf40_rededge_denoised_background_threshold_removed_image_channel_1 \N 212971 2 autocreated:observation_unit_polygon_fourier_transform_hpf20_nir_denoised_background_threshold_removed_image_channel_1 \N 212972 2 autocreated:observation_unit_polygon_fourier_transform_hpf30_nir_denoised_background_threshold_removed_image_channel_1 \N 212973 2 autocreated:observation_unit_polygon_fourier_transform_hpf40_nir_denoised_background_threshold_removed_image_channel_1 \N 212974 2 autocreated:observation_unit_polygon_fourier_transform_hpf20_mir_denoised_background_threshold_removed_image_channel_1 \N 212975 2 autocreated:observation_unit_polygon_fourier_transform_hpf30_mir_denoised_background_threshold_removed_image_channel_1 \N 212976 2 autocreated:observation_unit_polygon_fourier_transform_hpf40_mir_denoised_background_threshold_removed_image_channel_1 \N 212977 2 autocreated:observation_unit_polygon_fourier_transform_hpf20_fir_denoised_background_threshold_removed_image_channel_1 \N 212978 2 autocreated:observation_unit_polygon_fourier_transform_hpf30_fir_denoised_background_threshold_removed_image_channel_1 \N 212979 2 autocreated:observation_unit_polygon_fourier_transform_hpf40_fir_denoised_background_threshold_removed_image_channel_1 \N 212980 2 autocreated:observation_unit_polygon_fourier_transform_hpf20_tir_denoised_background_threshold_removed_image_channel_1 \N 212981 2 autocreated:observation_unit_polygon_fourier_transform_hpf30_tir_denoised_background_threshold_removed_image_channel_1 \N 212982 2 autocreated:observation_unit_polygon_fourier_transform_hpf40_tir_denoised_background_threshold_removed_image_channel_1 \N 212983 2 autocreated:observation_unit_polygon_fourier_transform_hpf20_bgr_denoised_background_removed_tgi_mask_channel_1 \N 212984 2 autocreated:observation_unit_polygon_fourier_transform_hpf30_bgr_denoised_background_removed_tgi_mask_channel_1 \N 212985 2 autocreated:observation_unit_polygon_fourier_transform_hpf40_bgr_denoised_background_removed_tgi_mask_channel_1 \N 212986 2 autocreated:observation_unit_polygon_fourier_transform_hpf20_bgr_denoised_background_removed_tgi_mask_channel_2 \N 212987 2 autocreated:observation_unit_polygon_fourier_transform_hpf30_bgr_denoised_background_removed_tgi_mask_channel_2 \N 212988 2 autocreated:observation_unit_polygon_fourier_transform_hpf40_bgr_denoised_background_removed_tgi_mask_channel_2 \N 212989 2 autocreated:observation_unit_polygon_fourier_transform_hpf20_bgr_denoised_background_removed_tgi_mask_channel_3 \N 212990 2 autocreated:observation_unit_polygon_fourier_transform_hpf30_bgr_denoised_background_removed_tgi_mask_channel_3 \N 212991 2 autocreated:observation_unit_polygon_fourier_transform_hpf40_bgr_denoised_background_removed_tgi_mask_channel_3 \N 212992 2 autocreated:observation_unit_polygon_fourier_transform_hpf20_bgr_denoised_background_removed_thresholded_tgi_mask_channel_1 \N 212993 2 autocreated:observation_unit_polygon_fourier_transform_hpf30_bgr_denoised_background_removed_thresholded_tgi_mask_channel_1 \N 212994 2 autocreated:observation_unit_polygon_fourier_transform_hpf40_bgr_denoised_background_removed_thresholded_tgi_mask_channel_1 \N 212995 2 autocreated:observation_unit_polygon_fourier_transform_hpf20_bgr_denoised_background_removed_thresholded_tgi_mask_channel_2 \N 212996 2 autocreated:observation_unit_polygon_fourier_transform_hpf30_bgr_denoised_background_removed_thresholded_tgi_mask_channel_2 \N 212997 2 autocreated:observation_unit_polygon_fourier_transform_hpf40_bgr_denoised_background_removed_thresholded_tgi_mask_channel_2 \N 212998 2 autocreated:observation_unit_polygon_fourier_transform_hpf20_bgr_denoised_background_removed_thresholded_tgi_mask_channel_3 \N 212999 2 autocreated:observation_unit_polygon_fourier_transform_hpf30_bgr_denoised_background_removed_thresholded_tgi_mask_channel_3 \N 213000 2 autocreated:observation_unit_polygon_fourier_transform_hpf40_bgr_denoised_background_removed_thresholded_tgi_mask_channel_3 \N 213001 2 autocreated:observation_unit_polygon_fourier_transform_hpf20_bgr_denoised_background_removed_vari_mask_channel_1 \N 213329 306 0000006 \N 213002 2 autocreated:observation_unit_polygon_fourier_transform_hpf30_bgr_denoised_background_removed_vari_mask_channel_1 \N 213003 2 autocreated:observation_unit_polygon_fourier_transform_hpf40_bgr_denoised_background_removed_vari_mask_channel_1 \N 213004 2 autocreated:observation_unit_polygon_fourier_transform_hpf20_bgr_denoised_background_removed_vari_mask_channel_2 \N 213005 2 autocreated:observation_unit_polygon_fourier_transform_hpf30_bgr_denoised_background_removed_vari_mask_channel_2 \N 213006 2 autocreated:observation_unit_polygon_fourier_transform_hpf40_bgr_denoised_background_removed_vari_mask_channel_2 \N 213007 2 autocreated:observation_unit_polygon_fourier_transform_hpf20_bgr_denoised_background_removed_vari_mask_channel_3 \N 213008 2 autocreated:observation_unit_polygon_fourier_transform_hpf30_bgr_denoised_background_removed_vari_mask_channel_3 \N 213009 2 autocreated:observation_unit_polygon_fourier_transform_hpf40_bgr_denoised_background_removed_vari_mask_channel_3 \N 213010 2 autocreated:observation_unit_polygon_fourier_transform_hpf20_bgr_denoised_background_removed_thresholded_vari_mask_channel_1 \N 213011 2 autocreated:observation_unit_polygon_fourier_transform_hpf30_bgr_denoised_background_removed_thresholded_vari_mask_channel_1 \N 213012 2 autocreated:observation_unit_polygon_fourier_transform_hpf40_bgr_denoised_background_removed_thresholded_vari_mask_channel_1 \N 213013 2 autocreated:observation_unit_polygon_fourier_transform_hpf20_bgr_denoised_background_removed_thresholded_vari_mask_channel_2 \N 213014 2 autocreated:observation_unit_polygon_fourier_transform_hpf30_bgr_denoised_background_removed_thresholded_vari_mask_channel_2 \N 213015 2 autocreated:observation_unit_polygon_fourier_transform_hpf40_bgr_denoised_background_removed_thresholded_vari_mask_channel_2 \N 213016 2 autocreated:observation_unit_polygon_fourier_transform_hpf20_bgr_denoised_background_removed_thresholded_vari_mask_channel_3 \N 213017 2 autocreated:observation_unit_polygon_fourier_transform_hpf30_bgr_denoised_background_removed_thresholded_vari_mask_channel_3 \N 213018 2 autocreated:observation_unit_polygon_fourier_transform_hpf40_bgr_denoised_background_removed_thresholded_vari_mask_channel_3 \N 213019 2 autocreated:observation_unit_polygon_fourier_transform_hpf20_nrn_denoised_background_removed_ndvi_mask_channel_1 \N 213020 2 autocreated:observation_unit_polygon_fourier_transform_hpf30_nrn_denoised_background_removed_ndvi_mask_channel_1 \N 213021 2 autocreated:observation_unit_polygon_fourier_transform_hpf40_nrn_denoised_background_removed_ndvi_mask_channel_1 \N 213022 2 autocreated:observation_unit_polygon_fourier_transform_hpf20_nrn_denoised_background_removed_ndvi_mask_channel_2 \N 213023 2 autocreated:observation_unit_polygon_fourier_transform_hpf30_nrn_denoised_background_removed_ndvi_mask_channel_2 \N 213024 2 autocreated:observation_unit_polygon_fourier_transform_hpf40_nrn_denoised_background_removed_ndvi_mask_channel_2 \N 213025 2 autocreated:observation_unit_polygon_fourier_transform_hpf20_nrn_denoised_background_removed_thresholded_ndvi_mask_channel_1 \N 213026 2 autocreated:observation_unit_polygon_fourier_transform_hpf30_nrn_denoised_background_removed_thresholded_ndvi_mask_channel_1 \N 213027 2 autocreated:observation_unit_polygon_fourier_transform_hpf40_nrn_denoised_background_removed_thresholded_ndvi_mask_channel_1 \N 213028 2 autocreated:observation_unit_polygon_fourier_transform_hpf20_nrn_denoised_background_removed_thresholded_ndvi_mask_channel_2 \N 213029 2 autocreated:observation_unit_polygon_fourier_transform_hpf30_nrn_denoised_background_removed_thresholded_ndvi_mask_channel_2 \N 213030 2 autocreated:observation_unit_polygon_fourier_transform_hpf40_nrn_denoised_background_removed_thresholded_ndvi_mask_channel_2 \N 213031 2 autocreated:observation_unit_polygon_fourier_transform_hpf20_nren_denoised_background_removed_ndre_mask_channel_1 \N 213032 2 autocreated:observation_unit_polygon_fourier_transform_hpf30_nren_denoised_background_removed_ndre_mask_channel_1 \N 213033 2 autocreated:observation_unit_polygon_fourier_transform_hpf40_nren_denoised_background_removed_ndre_mask_channel_1 \N 213034 2 autocreated:observation_unit_polygon_fourier_transform_hpf20_nren_denoised_background_removed_ndre_mask_channel_2 \N 213035 2 autocreated:observation_unit_polygon_fourier_transform_hpf30_nren_denoised_background_removed_ndre_mask_channel_2 \N 213036 2 autocreated:observation_unit_polygon_fourier_transform_hpf40_nren_denoised_background_removed_ndre_mask_channel_2 \N 213037 2 autocreated:observation_unit_polygon_fourier_transform_hpf20_nren_denoised_background_removed_thresholded_ndre_mask_channel_1 \N 213038 2 autocreated:observation_unit_polygon_fourier_transform_hpf30_nren_denoised_background_removed_thresholded_ndre_mask_channel_1 \N 213039 2 autocreated:observation_unit_polygon_fourier_transform_hpf40_nren_denoised_background_removed_thresholded_ndre_mask_channel_1 \N 213040 2 autocreated:observation_unit_polygon_fourier_transform_hpf20_nren_denoised_background_removed_thresholded_ndre_mask_channel_2 \N 213041 2 autocreated:observation_unit_polygon_fourier_transform_hpf30_nren_denoised_background_removed_thresholded_ndre_mask_channel_2 \N 213042 2 autocreated:observation_unit_polygon_fourier_transform_hpf40_nren_denoised_background_removed_thresholded_ndre_mask_channel_2 \N 213043 2 autocreated:threshold_background_removed_stitched_drone_imagery_blue \N 213044 2 autocreated:threshold_background_removed_stitched_drone_imagery_green \N 213045 2 autocreated:threshold_background_removed_stitched_drone_imagery_red \N 213046 2 autocreated:threshold_background_removed_stitched_drone_imagery_red_edge \N 213047 2 autocreated:threshold_background_removed_stitched_drone_imagery_nir \N 213048 2 autocreated:threshold_background_removed_stitched_drone_imagery_mir \N 213049 2 autocreated:threshold_background_removed_stitched_drone_imagery_fir \N 213050 2 autocreated:threshold_background_removed_stitched_drone_imagery_tir \N 213051 2 autocreated:threshold_background_removed_stitched_drone_imagery_bw \N 213052 2 autocreated:threshold_background_removed_stitched_drone_imagery_rgb_channel_1 \N 213053 2 autocreated:threshold_background_removed_stitched_drone_imagery_rgb_channel_2 \N 213054 2 autocreated:threshold_background_removed_stitched_drone_imagery_rgb_channel_3 \N 213055 2 autocreated:threshold_background_removed_temporary_stitched_drone_imagery \N 213056 2 autocreated:threshold_background_removed_tgi_stitched_drone_imagery \N 213058 2 autocreated:threshold_background_removed_ndvi_stitched_drone_imagery \N 213059 2 autocreated:threshold_background_removed_ndre_stitched_drone_imagery \N 213060 2 autocreated:denoised_background_removed_tgi_mask_original \N 213061 2 autocreated:denoised_background_removed_vari_mask_original \N 213062 2 autocreated:denoised_background_removed_ndvi_mask_original \N 213063 2 autocreated:denoised_background_removed_ndre_mask_original \N 213064 2 autocreated:denoised_background_removed_thresholded_tgi_mask_original \N 213065 2 autocreated:denoised_background_removed_thresholded_vari_mask_original \N 213066 2 autocreated:denoised_background_removed_thresholded_ndvi_mask_original \N 213067 2 autocreated:denoised_background_removed_thresholded_ndre_mask_original \N 213068 2 autocreated:calculate_phenotypes_sift_drone_imagery \N 213069 2 autocreated:calculate_phenotypes_sift_drone_imagery_tgi \N 213070 2 autocreated:calculate_phenotypes_sift_drone_imagery_vari \N 213071 2 autocreated:calculate_phenotypes_sift_drone_imagery_ndvi \N 213072 2 autocreated:calculate_phenotypes_sift_drone_imagery_ndre \N 213073 2 autocreated:calculate_phenotypes_orb_drone_imagery \N 213074 2 autocreated:calculate_phenotypes_orb_drone_imagery_tgi \N 213075 2 autocreated:calculate_phenotypes_orb_drone_imagery_vari \N 213076 2 autocreated:calculate_phenotypes_orb_drone_imagery_ndvi \N 213077 2 autocreated:calculate_phenotypes_orb_drone_imagery_ndre \N 213078 2 autocreated:calculate_phenotypes_surf_drone_imagery \N 213079 2 autocreated:calculate_phenotypes_surf_drone_imagery_tgi \N 213080 2 autocreated:calculate_phenotypes_surf_drone_imagery_vari \N 213081 2 autocreated:calculate_phenotypes_surf_drone_imagery_ndvi \N 213082 2 autocreated:calculate_phenotypes_surf_drone_imagery_ndre \N 213083 2 autocreated:calculate_phenotypes_fourier_transform_drone_imagery \N 213084 2 autocreated:calculate_tgi_drone_imagery \N 213085 2 autocreated:calculate_tgi_temporary_drone_imagery \N 213086 2 autocreated:calculate_vari_drone_imagery \N 213087 2 autocreated:calculate_vari_temporary_drone_imagery \N 213088 2 autocreated:calculate_ndvi_drone_imagery \N 213089 2 autocreated:calculate_ndvi_temporary_drone_imagery \N 213090 2 autocreated:calculate_ndre_drone_imagery \N 213091 2 autocreated:calculate_ndre_temporary_drone_imagery \N 213092 2 autocreated:calculate_fourier_transform_hpf20_bgr_denoised_stitched_image_channel_1 \N 213093 2 autocreated:calculate_fourier_transform_hpf30_bgr_denoised_stitched_image_channel_1 \N 213094 2 autocreated:calculate_fourier_transform_hpf40_bgr_denoised_stitched_image_channel_1 \N 213095 2 autocreated:calculate_fourier_transform_hpf20_bgr_denoised_stitched_image_channel_2 \N 213096 2 autocreated:calculate_fourier_transform_hpf30_bgr_denoised_stitched_image_channel_2 \N 213097 2 autocreated:calculate_fourier_transform_hpf40_bgr_denoised_stitched_image_channel_2 \N 213098 2 autocreated:calculate_fourier_transform_hpf20_bgr_denoised_stitched_image_channel_3 \N 213099 2 autocreated:calculate_fourier_transform_hpf30_bgr_denoised_stitched_image_channel_3 \N 213100 2 autocreated:calculate_fourier_transform_hpf40_bgr_denoised_stitched_image_channel_3 \N 213101 2 autocreated:calculate_fourier_transform_hpf20_blue_denoised_stitched_image_channel_1 \N 213102 2 autocreated:calculate_fourier_transform_hpf30_blue_denoised_stitched_image_channel_1 \N 213103 2 autocreated:calculate_fourier_transform_hpf40_blue_denoised_stitched_image_channel_1 \N 213104 2 autocreated:calculate_fourier_transform_hpf20_green_denoised_stitched_image_channel_1 \N 213105 2 autocreated:calculate_fourier_transform_hpf30_green_denoised_stitched_image_channel_1 \N 213106 2 autocreated:calculate_fourier_transform_hpf40_green_denoised_stitched_image_channel_1 \N 213107 2 autocreated:calculate_fourier_transform_hpf20_red_denoised_stitched_image_channel_1 \N 213108 2 autocreated:calculate_fourier_transform_hpf30_red_denoised_stitched_image_channel_1 \N 213109 2 autocreated:calculate_fourier_transform_hpf40_red_denoised_stitched_image_channel_1 \N 213110 2 autocreated:calculate_fourier_transform_hpf20_rededge_denoised_stitched_image_channel_1 \N 213111 2 autocreated:calculate_fourier_transform_hpf30_rededge_denoised_stitched_image_channel_1 \N 213112 2 autocreated:calculate_fourier_transform_hpf40_rededge_denoised_stitched_image_channel_1 \N 213113 2 autocreated:calculate_fourier_transform_hpf20_nir_denoised_stitched_image_channel_1 \N 213114 2 autocreated:calculate_fourier_transform_hpf30_nir_denoised_stitched_image_channel_1 \N 213115 2 autocreated:calculate_fourier_transform_hpf40_nir_denoised_stitched_image_channel_1 \N 213116 2 autocreated:calculate_fourier_transform_hpf20_mir_denoised_stitched_image_channel_1 \N 213117 2 autocreated:calculate_fourier_transform_hpf30_mir_denoised_stitched_image_channel_1 \N 213118 2 autocreated:calculate_fourier_transform_hpf40_mir_denoised_stitched_image_channel_1 \N 213119 2 autocreated:calculate_fourier_transform_hpf20_fir_denoised_stitched_image_channel_1 \N 213120 2 autocreated:calculate_fourier_transform_hpf30_fir_denoised_stitched_image_channel_1 \N 213121 2 autocreated:calculate_fourier_transform_hpf40_fir_denoised_stitched_image_channel_1 \N 213122 2 autocreated:calculate_fourier_transform_hpf20_tir_denoised_stitched_image_channel_1 \N 213123 2 autocreated:calculate_fourier_transform_hpf30_tir_denoised_stitched_image_channel_1 \N 213124 2 autocreated:calculate_fourier_transform_hpf40_tir_denoised_stitched_image_channel_1 \N 213125 2 autocreated:calculate_fourier_transform_hpf20_bw_denoised_stitched_image_channel_1 \N 213126 2 autocreated:calculate_fourier_transform_hpf30_bw_denoised_stitched_image_channel_1 \N 213127 2 autocreated:calculate_fourier_transform_hpf40_bw_denoised_stitched_image_channel_1 \N 213128 2 autocreated:calculate_fourier_transform_hpf20_blue_threshold_background_removed_stitched_drone_imagery_channel_1 \N 213129 2 autocreated:calculate_fourier_transform_hpf30_blue_threshold_background_removed_stitched_drone_imagery_channel_1 \N 213130 2 autocreated:calculate_fourier_transform_hpf40_blue_threshold_background_removed_stitched_drone_imagery_channel_1 \N 213131 2 autocreated:calculate_fourier_transform_hpf20_green_threshold_background_removed_stitched_drone_imagery_channel_1 \N 213132 2 autocreated:calculate_fourier_transform_hpf30_green_threshold_background_removed_stitched_drone_imagery_channel_1 \N 213133 2 autocreated:calculate_fourier_transform_hpf40_green_threshold_background_removed_stitched_drone_imagery_channel_1 \N 213134 2 autocreated:calculate_fourier_transform_hpf20_red_threshold_background_removed_stitched_drone_imagery_channel_1 \N 213135 2 autocreated:calculate_fourier_transform_hpf30_red_threshold_background_removed_stitched_drone_imagery_channel_1 \N 213136 2 autocreated:calculate_fourier_transform_hpf40_red_threshold_background_removed_stitched_drone_imagery_channel_1 \N 213137 2 autocreated:calculate_fourier_transform_hpf20_rededge_threshold_background_removed_stitched_drone_imagery_channel_1 \N 213138 2 autocreated:calculate_fourier_transform_hpf30_rededge_threshold_background_removed_stitched_drone_imagery_channel_1 \N 213139 2 autocreated:calculate_fourier_transform_hpf40_rededge_threshold_background_removed_stitched_drone_imagery_channel_1 \N 213140 2 autocreated:calculate_fourier_transform_hpf20_nir_threshold_background_removed_stitched_drone_imagery_channel_1 \N 213141 2 autocreated:calculate_fourier_transform_hpf30_nir_threshold_background_removed_stitched_drone_imagery_channel_1 \N 213142 2 autocreated:calculate_fourier_transform_hpf40_nir_threshold_background_removed_stitched_drone_imagery_channel_1 \N 213143 2 autocreated:calculate_fourier_transform_hpf20_mir_threshold_background_removed_stitched_drone_imagery_channel_1 \N 213144 2 autocreated:calculate_fourier_transform_hpf30_mir_threshold_background_removed_stitched_drone_imagery_channel_1 \N 213145 2 autocreated:calculate_fourier_transform_hpf40_mir_threshold_background_removed_stitched_drone_imagery_channel_1 \N 213146 2 autocreated:calculate_fourier_transform_hpf20_fir_threshold_background_removed_stitched_drone_imagery_channel_1 \N 213147 2 autocreated:calculate_fourier_transform_hpf30_fir_threshold_background_removed_stitched_drone_imagery_channel_1 \N 213148 2 autocreated:calculate_fourier_transform_hpf40_fir_threshold_background_removed_stitched_drone_imagery_channel_1 \N 213149 2 autocreated:calculate_fourier_transform_hpf20_tir_threshold_background_removed_stitched_drone_imagery_channel_1 \N 213150 2 autocreated:calculate_fourier_transform_hpf30_tir_threshold_background_removed_stitched_drone_imagery_channel_1 \N 213151 2 autocreated:calculate_fourier_transform_hpf40_tir_threshold_background_removed_stitched_drone_imagery_channel_1 \N 213152 2 autocreated:calculate_fourier_transform_hpf20_bw_threshold_background_removed_stitched_drone_imagery_channel_1 \N 213153 2 autocreated:calculate_fourier_transform_hpf30_bw_threshold_background_removed_stitched_drone_imagery_channel_1 \N 213154 2 autocreated:calculate_fourier_transform_hpf40_bw_threshold_background_removed_stitched_drone_imagery_channel_1 \N 213155 2 autocreated:calculate_fourier_transform_hpf20_bgr_threshold_background_removed_stitched_drone_imagery_channel_1 \N 213156 2 autocreated:calculate_fourier_transform_hpf30_bgr_threshold_background_removed_stitched_drone_imagery_channel_1 \N 213157 2 autocreated:calculate_fourier_transform_hpf40_bgr_threshold_background_removed_stitched_drone_imagery_channel_1 \N 213158 2 autocreated:calculate_fourier_transform_hpf20_bgr_threshold_background_removed_stitched_drone_imagery_channel_2 \N 213159 2 autocreated:calculate_fourier_transform_hpf30_bgr_threshold_background_removed_stitched_drone_imagery_channel_2 \N 213160 2 autocreated:calculate_fourier_transform_hpf40_bgr_threshold_background_removed_stitched_drone_imagery_channel_2 \N 213161 2 autocreated:calculate_fourier_transform_hpf20_bgr_threshold_background_removed_stitched_drone_imagery_channel_3 \N 213162 2 autocreated:calculate_fourier_transform_hpf30_bgr_threshold_background_removed_stitched_drone_imagery_channel_3 \N 213163 2 autocreated:calculate_fourier_transform_hpf40_bgr_threshold_background_removed_stitched_drone_imagery_channel_3 \N 213164 2 autocreated:calculate_fourier_transform_hpf20_bgr_threshold_background_removed_tgi_stitched_drone_imagery_channel_1 \N 213165 2 autocreated:calculate_fourier_transform_hpf30_bgr_threshold_background_removed_tgi_stitched_drone_imagery_channel_1 \N 213166 2 autocreated:calculate_fourier_transform_hpf40_bgr_threshold_background_removed_tgi_stitched_drone_imagery_channel_1 \N 213167 2 autocreated:calculate_fourier_transform_hpf20_bgr_threshold_background_removed_vari_stitched_drone_imagery_channel_1 \N 213168 2 autocreated:calculate_fourier_transform_hpf30_bgr_threshold_background_removed_vari_stitched_drone_imagery_channel_1 \N 213169 2 autocreated:calculate_fourier_transform_hpf40_bgr_threshold_background_removed_vari_stitched_drone_imagery_channel_1 \N 213170 2 autocreated:calculate_fourier_transform_hpf20_nrn_threshold_background_removed_ndvi_stitched_drone_imagery_channel_1 \N 213171 2 autocreated:calculate_fourier_transform_hpf30_nrn_threshold_background_removed_ndvi_stitched_drone_imagery_channel_1 \N 213172 2 autocreated:calculate_fourier_transform_hpf40_nrn_threshold_background_removed_ndvi_stitched_drone_imagery_channel_1 \N 213173 2 autocreated:calculate_fourier_transform_hpf20_nren_threshold_background_removed_ndre_stitched_drone_imagery_channel_1 \N 213174 2 autocreated:calculate_fourier_transform_hpf30_nren_threshold_background_removed_ndre_stitched_drone_imagery_channel_1 \N 213175 2 autocreated:calculate_fourier_transform_hpf40_nren_threshold_background_removed_ndre_stitched_drone_imagery_channel_1 \N 213176 2 autocreated:calculate_fourier_transform_hpf20_bgr_denoised_background_removed_tgi_mask_original_channel_1 \N 213177 2 autocreated:calculate_fourier_transform_hpf30_bgr_denoised_background_removed_tgi_mask_original_channel_1 \N 213178 2 autocreated:calculate_fourier_transform_hpf40_bgr_denoised_background_removed_tgi_mask_original_channel_1 \N 213179 2 autocreated:calculate_fourier_transform_hpf20_bgr_denoised_background_removed_tgi_mask_original_channel_2 \N 213180 2 autocreated:calculate_fourier_transform_hpf30_bgr_denoised_background_removed_tgi_mask_original_channel_2 \N 213181 2 autocreated:calculate_fourier_transform_hpf40_bgr_denoised_background_removed_tgi_mask_original_channel_2 \N 213330 306 0000048 \N 213331 306 0000043 \N 213182 2 autocreated:calculate_fourier_transform_hpf20_bgr_denoised_background_removed_tgi_mask_original_channel_3 \N 213183 2 autocreated:calculate_fourier_transform_hpf30_bgr_denoised_background_removed_tgi_mask_original_channel_3 \N 213184 2 autocreated:calculate_fourier_transform_hpf40_bgr_denoised_background_removed_tgi_mask_original_channel_3 \N 213185 2 autocreated:calculate_fourier_transform_hpf20_bgr_denoised_background_removed_vari_mask_original_channel_1 \N 213186 2 autocreated:calculate_fourier_transform_hpf30_bgr_denoised_background_removed_vari_mask_original_channel_1 \N 213187 2 autocreated:calculate_fourier_transform_hpf40_bgr_denoised_background_removed_vari_mask_original_channel_1 \N 213188 2 autocreated:calculate_fourier_transform_hpf20_bgr_denoised_background_removed_vari_mask_original_channel_2 \N 213189 2 autocreated:calculate_fourier_transform_hpf30_bgr_denoised_background_removed_vari_mask_original_channel_2 \N 213190 2 autocreated:calculate_fourier_transform_hpf40_bgr_denoised_background_removed_vari_mask_original_channel_2 \N 213191 2 autocreated:calculate_fourier_transform_hpf20_bgr_denoised_background_removed_vari_mask_original_channel_3 \N 213192 2 autocreated:calculate_fourier_transform_hpf30_bgr_denoised_background_removed_vari_mask_original_channel_3 \N 213193 2 autocreated:calculate_fourier_transform_hpf40_bgr_denoised_background_removed_vari_mask_original_channel_3 \N 213194 2 autocreated:calculate_fourier_transform_hpf20_nrn_denoised_background_removed_ndvi_mask_original_channel_1 \N 213195 2 autocreated:calculate_fourier_transform_hpf30_nrn_denoised_background_removed_ndvi_mask_original_channel_1 \N 213196 2 autocreated:calculate_fourier_transform_hpf40_nrn_denoised_background_removed_ndvi_mask_original_channel_1 \N 213197 2 autocreated:calculate_fourier_transform_hpf20_nrn_denoised_background_removed_ndvi_mask_original_channel_2 \N 213198 2 autocreated:calculate_fourier_transform_hpf30_nrn_denoised_background_removed_ndvi_mask_original_channel_2 \N 213199 2 autocreated:calculate_fourier_transform_hpf40_nrn_denoised_background_removed_ndvi_mask_original_channel_2 \N 213200 2 autocreated:calculate_fourier_transform_hpf20_nren_denoised_background_removed_ndre_mask_original_channel_1 \N 213201 2 autocreated:calculate_fourier_transform_hpf30_nren_denoised_background_removed_ndre_mask_original_channel_1 \N 213202 2 autocreated:calculate_fourier_transform_hpf40_nren_denoised_background_removed_ndre_mask_original_channel_1 \N 213203 2 autocreated:calculate_fourier_transform_hpf20_nren_denoised_background_removed_ndre_mask_original_channel_2 \N 213204 2 autocreated:calculate_fourier_transform_hpf30_nren_denoised_background_removed_ndre_mask_original_channel_2 \N 213205 2 autocreated:calculate_fourier_transform_hpf40_nren_denoised_background_removed_ndre_mask_original_channel_2 \N 213206 2 autocreated:calculate_fourier_transform_hpf20_bgr_denoised_background_removed_thresholded_tgi_mask_original_channel_1 \N 213207 2 autocreated:calculate_fourier_transform_hpf30_bgr_denoised_background_removed_thresholded_tgi_mask_original_channel_1 \N 213208 2 autocreated:calculate_fourier_transform_hpf40_bgr_denoised_background_removed_thresholded_tgi_mask_original_channel_1 \N 213209 2 autocreated:calculate_fourier_transform_hpf20_bgr_denoised_background_removed_thresholded_tgi_mask_original_channel_2 \N 213210 2 autocreated:calculate_fourier_transform_hpf30_bgr_denoised_background_removed_thresholded_tgi_mask_original_channel_2 \N 213211 2 autocreated:calculate_fourier_transform_hpf40_bgr_denoised_background_removed_thresholded_tgi_mask_original_channel_2 \N 213212 2 autocreated:calculate_fourier_transform_hpf20_bgr_denoised_background_removed_thresholded_tgi_mask_original_channel_3 \N 213213 2 autocreated:calculate_fourier_transform_hpf30_bgr_denoised_background_removed_thresholded_tgi_mask_original_channel_3 \N 213214 2 autocreated:calculate_fourier_transform_hpf40_bgr_denoised_background_removed_thresholded_tgi_mask_original_channel_3 \N 213215 2 autocreated:calculate_fourier_transform_hpf20_bgr_denoised_background_removed_thresholded_vari_mask_original_channel_1 \N 213216 2 autocreated:calculate_fourier_transform_hpf30_bgr_denoised_background_removed_thresholded_vari_mask_original_channel_1 \N 213217 2 autocreated:calculate_fourier_transform_hpf40_bgr_denoised_background_removed_thresholded_vari_mask_original_channel_1 \N 213218 2 autocreated:calculate_fourier_transform_hpf20_bgr_denoised_background_removed_thresholded_vari_mask_original_channel_2 \N 213219 2 autocreated:calculate_fourier_transform_hpf30_bgr_denoised_background_removed_thresholded_vari_mask_original_channel_2 \N 213220 2 autocreated:calculate_fourier_transform_hpf40_bgr_denoised_background_removed_thresholded_vari_mask_original_channel_2 \N 213221 2 autocreated:calculate_fourier_transform_hpf20_bgr_denoised_background_removed_thresholded_vari_mask_original_channel_3 \N 213222 2 autocreated:calculate_fourier_transform_hpf30_bgr_denoised_background_removed_thresholded_vari_mask_original_channel_3 \N 213223 2 autocreated:calculate_fourier_transform_hpf40_bgr_denoised_background_removed_thresholded_vari_mask_original_channel_3 \N 213224 2 autocreated:calculate_fourier_transform_hpf20_nrn_denoised_background_removed_thresholded_ndvi_mask_original_channel_1 \N 213225 2 autocreated:calculate_fourier_transform_hpf30_nrn_denoised_background_removed_thresholded_ndvi_mask_original_channel_1 \N 213226 2 autocreated:calculate_fourier_transform_hpf40_nrn_denoised_background_removed_thresholded_ndvi_mask_original_channel_1 \N 213227 2 autocreated:calculate_fourier_transform_hpf20_nrn_denoised_background_removed_thresholded_ndvi_mask_original_channel_2 \N 213228 2 autocreated:calculate_fourier_transform_hpf30_nrn_denoised_background_removed_thresholded_ndvi_mask_original_channel_2 \N 213229 2 autocreated:calculate_fourier_transform_hpf40_nrn_denoised_background_removed_thresholded_ndvi_mask_original_channel_2 \N 213230 2 autocreated:calculate_fourier_transform_hpf20_nren_denoised_background_removed_thresholded_ndre_mask_original_channel_1 \N 213231 2 autocreated:calculate_fourier_transform_hpf30_nren_denoised_background_removed_thresholded_ndre_mask_original_channel_1 \N 213232 2 autocreated:calculate_fourier_transform_hpf40_nren_denoised_background_removed_thresholded_ndre_mask_original_channel_1 \N 213233 2 autocreated:calculate_fourier_transform_hpf20_nren_denoised_background_removed_thresholded_ndre_mask_original_channel_2 \N 213234 2 autocreated:calculate_fourier_transform_hpf30_nren_denoised_background_removed_thresholded_ndre_mask_original_channel_2 \N 213235 2 autocreated:calculate_fourier_transform_hpf40_nren_denoised_background_removed_thresholded_ndre_mask_original_channel_2 \N 213236 2 autocreated:calculate_fourier_transform_hpf20_bgr_calculate_tgi_drone_imagery_channel_1 \N 213237 2 autocreated:calculate_fourier_transform_hpf30_bgr_calculate_tgi_drone_imagery_channel_1 \N 213238 2 autocreated:calculate_fourier_transform_hpf40_bgr_calculate_tgi_drone_imagery_channel_1 \N 213239 2 autocreated:calculate_fourier_transform_hpf20_bgr_calculate_vari_drone_imagery_channel_1 \N 213240 2 autocreated:calculate_fourier_transform_hpf30_bgr_calculate_vari_drone_imagery_channel_1 \N 213241 2 autocreated:calculate_fourier_transform_hpf40_bgr_calculate_vari_drone_imagery_channel_1 \N 213242 2 autocreated:calculate_fourier_transform_hpf20_nrn_calculate_ndvi_drone_imagery_channel_1 \N 213243 2 autocreated:calculate_fourier_transform_hpf30_nrn_calculate_ndvi_drone_imagery_channel_1 \N 213244 2 autocreated:calculate_fourier_transform_hpf40_nrn_calculate_ndvi_drone_imagery_channel_1 \N 213245 2 autocreated:calculate_fourier_transform_hpf20_nren_calculate_ndre_drone_imagery_channel_1 \N 213246 2 autocreated:calculate_fourier_transform_hpf30_nren_calculate_ndre_drone_imagery_channel_1 \N 213247 2 autocreated:calculate_fourier_transform_hpf40_nren_calculate_ndre_drone_imagery_channel_1 \N 213248 2 autocreated:project_start_date \N 213249 2 autocreated:drone_run_project_type \N 213250 2 autocreated:drone_run_camera_type \N 213251 2 autocreated:drone_run_band_project_type \N 213252 2 autocreated:drone_run_band_rotate_angle \N 213253 2 autocreated:drone_run_band_cropped_polygon \N 213254 2 autocreated:drone_run_band_background_removed_tgi_threshold \N 213255 2 autocreated:drone_run_band_background_removed_vari_threshold \N 213256 2 autocreated:drone_run_band_background_removed_ndvi_threshold \N 213257 2 autocreated:drone_run_band_background_removed_ndre_threshold \N 213258 2 autocreated:drone_run_band_background_removed_tgi_mask_original_threshold \N 213259 2 autocreated:drone_run_band_background_removed_vari_mask_original_threshold \N 213260 2 autocreated:drone_run_band_background_removed_ndvi_mask_original_threshold \N 213261 2 autocreated:drone_run_band_background_removed_ndre_mask_original_threshold \N 213262 2 autocreated:drone_run_band_background_removed_thresholded_tgi_mask_original_threshold \N 213263 2 autocreated:drone_run_band_background_removed_thresholded_vari_mask_original_threshold \N 213264 2 autocreated:drone_run_band_background_removed_thresholded_ndvi_mask_original_threshold \N 213265 2 autocreated:drone_run_band_background_removed_thresholded_ndre_mask_original_threshold \N 213266 2 autocreated:drone_run_band_background_removed_threshold \N 213267 2 autocreated:drone_run_band_plot_polygons \N 213268 2 autocreated:drone_run_standard_process_in_progress \N 213269 2 autocreated:drone_run_standard_process_completed \N 213270 2 autocreated:drone_run_standard_process_extended_completed \N 213271 2 autocreated:drone_run_standard_process_vi_completed \N 213272 2 autocreated:drone_run_standard_process_phenotype_calculation_in_progress \N 213273 2 autocreated:phenotype_spreadsheet_associated_images \N 213274 2 autocreated:image_analysis_contours \N 213275 2 autocreated:image_analysis_sift \N 213276 2 autocreated:image_analysis_largest_contour \N 213277 2 autocreated:image_analysis_necrosis_solomon_nsumba \N 213278 2 autocreated:image_analysis_white_fly_count_solomon_nsumba \N 213279 2 autocreated:vcf_map_details_markers \N 213280 2 autocreated:vcf_map_details_markers_array \N 213281 2 autocreated:sequencing_project_info \N 213282 2 autocreated:Specialty Trial \N 213283 2 autocreated:drone_run_averaged_temperature_growing_degree_days \N 213284 2 autocreated:drone_run_related_time_cvterms_json \N 213285 2 autocreated:noaa_station_id \N 213286 2 autocreated:trial_stock_type \N 213287 2 autocreated:trained_keras_cnn_model_trait \N 213288 2 autocreated:trained_keras_cnn_model_type \N 213289 2 autocreated:trained_keras_cnn_model \N 213290 2 autocreated:trained_keras_cnn_model_experiment \N 213291 2 autocreated:observation_unit_polygon_raster_dsm_imagery \N 213292 2 autocreated:threshold_background_removed_stitched_drone_imagery_raster_dsm \N 213293 2 autocreated:observation_unit_polygon_raster_dsm_background_removed_threshold_imagery \N 213294 2 autocreated:raw_boundaries_top_left_drone_imagery \N 213295 2 autocreated:raw_boundaries_top_right_drone_imagery \N 213296 2 autocreated:raw_boundaries_bottom_left_drone_imagery \N 213297 2 autocreated:raw_boundaries_bottom_right_drone_imagery \N 213298 2 autocreated:drone_run_raw_images_saved_micasense_stacks \N 213299 2 autocreated:drone_run_band_plot_polygons_partial \N 213300 306 0000003 \N 213301 306 0000000 \N 213302 306 0000020 \N 213303 306 0000044 \N 213304 306 0000045 \N 213305 306 0000018 \N 213306 306 0000026 \N 213307 306 0000030 \N 213308 306 0000040 \N 213309 306 0000004 \N 213310 306 0000034 \N 213311 306 0000037 \N 213312 306 0000035 \N 213313 306 0000016 \N 213314 306 0000014 \N 213315 306 0000005 \N 213316 306 0000038 \N 213317 306 0000009 \N 213318 306 0000017 \N 213319 306 0000007 \N 213320 306 0000022 \N 213321 306 0000001 \N 213322 306 0000042 \N 213323 306 0000029 \N 213324 306 0000025 \N 213325 306 0000046 \N 213326 306 0000024 \N 213327 306 0000010 \N 213328 306 0000032 \N 213334 306 0000002 \N 213335 306 0000027 \N 213336 306 0000012 \N 213337 306 0000008 \N 213338 306 0000041 \N 213339 306 0000021 \N 213340 306 0000031 \N 213341 306 0000033 \N 213342 306 0000015 \N 213343 306 0000019 \N 213344 306 0000023 \N 213345 306 0000011 \N 213346 306 0000047 \N 213347 306 0000036 \N 213348 306 0000013 \N 213349 306 VARIABLE_OF \N 213350 307 0000259 \N 213351 307 0000192 \N 213352 307 0000301 \N 213353 307 0000160 \N 213354 307 0000103 \N 213355 307 0000306 \N 213356 307 0000214 \N 213357 307 0000209 \N 213358 307 0000138 \N 213359 307 0000242 \N 213360 307 0000251 \N 213361 307 0000310 \N 213362 307 0000007 \N 213363 307 0000220 \N 213364 307 0000126 \N 213365 307 0000130 \N 213366 307 0000286 \N 213367 307 0000296 \N 213368 307 0000261 \N 213369 307 0000249 \N 213370 307 0000198 \N 213371 307 0000173 \N 213372 307 0000108 \N 213373 307 0000200 \N 213374 307 0000284 \N 213375 307 0000213 \N 213376 307 0000159 \N 213377 307 0000177 \N 213378 307 0000183 \N 213379 307 0000239 \N 213380 307 0000309 \N 213381 307 0000134 \N 213382 307 0000002 \N 213383 307 0000227 \N 213384 307 0000244 \N 213385 307 0000169 \N 213386 307 0000302 \N 213387 307 0000235 \N 213388 307 0000115 \N 213389 307 0000195 \N 213390 307 0000293 \N 213391 307 0000010 \N 213392 307 0000295 \N 213393 307 0000011 \N 213394 307 0000000 \N 213395 307 0000257 \N 213396 307 0000291 \N 213397 307 0000224 \N 213398 307 0000113 \N 213399 307 0000319 \N 213400 307 0000300 \N 213401 307 0000298 \N 213402 307 0000142 \N 213403 307 0000157 \N 213404 307 0000012 \N 213405 307 0000264 \N 213406 307 0000111 \N 213407 307 0000105 \N 213408 307 0000201 \N 213409 307 0000297 \N 213410 307 0000153 \N 213411 307 0000274 \N 213412 307 0000282 \N 213413 307 0000271 \N 213414 307 0000140 \N 213415 307 0000180 \N 213416 307 0000273 \N 213417 307 0000175 \N 213418 307 0000124 \N 213419 307 0000269 \N 213420 307 0000150 \N 213421 307 0000151 \N 213422 307 0000006 \N 213423 307 0000217 \N 213424 307 0000280 \N 213425 307 0000014 \N 213426 307 0000262 \N 213427 307 0000241 \N 213428 307 0000005 \N 213429 307 0000285 \N 213430 307 0000154 \N 213431 307 0000125 \N 213432 307 0000234 \N 213433 307 0000188 \N 213434 307 0000008 \N 213435 307 0000009 \N 213436 307 0000225 \N 213437 307 0000299 \N 213438 307 0000233 \N 213439 307 0000294 \N 213440 307 0000307 \N 213441 307 0000191 \N 213442 307 0000133 \N 213443 307 0000252 \N 213444 307 0000110 \N 213445 307 0000207 \N 213446 307 0000196 \N 213447 307 0000199 \N 213448 307 0000210 \N 213449 307 0000212 \N 213450 307 0000141 \N 213451 307 0000182 \N 213452 307 0000190 \N 213453 307 0000147 \N 213454 307 0000268 \N 213455 307 0000114 \N 213456 307 0000172 \N 213457 307 0000266 \N 213458 307 0000118 \N 213459 307 0000194 \N 213460 307 0000122 \N 213461 307 0000276 \N 213462 307 0000258 \N 213463 307 0000166 \N 213464 307 0000320 \N 213465 307 0000163 \N 213466 307 0000287 \N 213467 307 0000137 \N 213468 307 0000314 \N 213469 307 0000143 \N 213470 307 0000178 \N 213471 307 0000202 \N 213472 307 0000155 \N 213473 307 0000231 \N 213474 307 0000232 \N 213475 307 0000267 \N 213476 307 0000315 \N 213477 307 0000107 \N 213478 307 0000255 \N 213479 307 0000129 \N 213480 307 0000303 \N 213481 307 0000119 \N 213482 307 0000176 \N 213483 307 0000219 \N 213484 307 0000321 \N 213485 307 0000323 \N 213486 307 0000290 \N 213487 307 0000120 \N 213488 307 0000245 \N 213489 307 0000311 \N 213490 307 0000152 \N 213491 307 0000162 \N 213492 307 0000289 \N 213493 307 0000243 \N 213494 307 0000308 \N 213495 307 0000250 \N 213496 307 0000135 \N 213497 307 0000322 \N 213498 307 0000254 \N 213499 307 0000283 \N 213500 307 0000260 \N 213501 307 0000170 \N 213502 307 0000288 \N 213503 307 0000174 \N 213504 307 0000237 \N 213505 307 0000230 \N 213506 307 0000304 \N 213507 307 0000145 \N 213508 307 0000123 \N 213509 307 0000004 \N 213510 307 0000275 \N 213511 307 0000223 \N 213512 307 0000104 \N 213513 307 0000205 \N 213514 307 0000168 \N 213515 307 0000164 \N 213516 307 0000131 \N 213517 307 0000112 \N 213518 307 0000132 \N 213519 307 0000247 \N 213520 307 0000106 \N 213521 307 0000013 \N 213522 307 0000203 \N 213523 307 0000121 \N 213524 307 0000149 \N 213525 307 0000101 \N 213526 307 0000263 \N 213527 307 0000256 \N 213528 307 0000246 \N 213529 307 0000240 \N 213530 307 0000226 \N 213531 307 0000206 \N 213532 307 0000136 \N 213533 307 0000215 \N 213534 307 0000139 \N 213535 307 0000208 \N 213536 307 0000148 \N 213537 307 0000144 \N 213538 307 0000222 \N 213539 307 0000187 \N 213540 307 0000270 \N 213541 307 0000127 \N 213542 307 0000292 \N 213543 307 0000117 \N 213544 307 0000165 \N 213545 307 0000221 \N 213546 307 0000181 \N 213547 307 0000146 \N 213548 307 0000218 \N 213549 307 0000189 \N 213550 307 0000316 \N 213551 307 0000229 \N 213552 307 0000001 \N 213553 307 0000156 \N 213554 307 0000253 \N 213555 307 0000102 \N 213556 307 0000158 \N 213557 307 0000281 \N 213558 307 0000238 \N 213559 307 0000236 \N 213560 307 0000313 \N 213561 307 0000228 \N 213562 307 0000171 \N 213563 307 0000184 \N 213564 307 0000272 \N 213565 307 0000193 \N 213566 307 0000318 \N 213567 307 0000277 \N 213568 307 0000185 \N 213569 307 0000312 \N 213570 307 0000179 \N 213571 307 0000211 \N 213572 307 0000248 \N 213573 307 0000279 \N 213574 307 0000161 \N 213575 307 0000317 \N 213576 307 0000186 \N 213577 307 0000216 \N 213578 307 0000128 \N 213579 307 0000278 \N 213580 307 0000305 \N 213581 307 0000116 \N 213582 307 0000003 \N 213583 307 0000167 \N 213584 307 0000265 \N 213585 307 0000109 \N 213586 307 0000204 \N 213587 307 0000197 \N 213588 304 0000154 \N 213589 304 0000110 \N 213590 304 0000103 \N 213591 304 0000420 \N 213592 304 0000315 \N 213593 304 0000276 \N 213594 304 0000187 \N 213595 304 0000127 \N 213596 304 0000418 \N 213597 304 0000123 \N 213598 304 0000294 \N 213599 304 0000102 \N 213600 304 0000428 \N 213601 304 0000345 \N 213602 304 0000438 \N 213603 304 0000237 \N 213604 304 0000326 \N 213605 304 0000339 \N 213606 304 0000204 \N 213607 304 0000280 \N 213608 304 0000218 \N 213609 304 0000365 \N 213610 304 0000119 \N 213611 304 0000246 \N 213612 304 0000211 \N 213613 304 0000155 \N 213614 304 0000141 \N 213615 304 0000225 \N 213616 304 0000454 \N 213617 304 0000213 \N 213618 304 0000469 \N 213619 304 0000341 \N 213620 304 0000181 \N 213621 304 0000277 \N 213622 304 0000271 \N 213623 304 0000135 \N 213624 304 0000149 \N 213625 304 0000131 \N 213626 304 0000254 \N 213627 304 0000233 \N 213628 304 0000323 \N 213629 304 0000359 \N 213630 304 0000205 \N 213631 304 0000079 \N 213632 304 0000335 \N 213633 304 0000077 \N 213634 304 0000281 \N 213635 304 0000422 \N 213636 304 0000114 \N 213637 304 0000118 \N 213638 304 0000197 \N 213639 304 0000366 \N 213640 304 0000137 \N 213641 304 0000129 \N 213642 304 0000223 \N 213643 304 0000265 \N 213644 304 0000278 \N 213645 304 0000147 \N 213646 304 0000090 \N 213647 304 0000138 \N 213648 304 0000387 \N 213649 304 0000105 \N 213650 304 0000343 \N 213651 304 0000474 \N 213652 304 0000164 \N 213653 304 0000311 \N 213654 304 0000122 \N 213655 304 0000132 \N 213656 304 0000256 \N 213657 304 0000258 \N 213658 304 0000196 \N 213659 304 0000475 \N 213660 304 0000384 \N 213661 304 0000378 \N 213662 304 0000421 \N 213663 304 0000274 \N 213664 304 0000333 \N 213665 304 0000440 \N 213666 304 0000279 \N 213667 304 0000446 \N 213668 304 0000148 \N 213669 304 0000178 \N 213670 304 0000216 \N 213671 304 0000473 \N 213672 304 0000245 \N 213673 304 0000424 \N 213674 304 0000347 \N 213675 304 0000080 \N 213676 304 0000179 \N 213677 304 0000115 \N 213678 304 0000207 \N 213679 304 0000310 \N 213680 304 0000400 \N 213681 304 0000183 \N 213682 304 0000407 \N 213683 304 0000262 \N 213684 304 0000232 \N 213685 304 0000307 \N 213686 304 0000201 \N 213687 304 0000300 \N 213688 304 0000124 \N 213689 304 0000390 \N 213690 304 0000380 \N 213691 304 0000406 \N 213692 304 0000165 \N 213693 304 0000458 \N 213694 304 0000480 \N 213695 304 0000290 \N 213696 304 0000291 \N 213697 304 0000214 \N 213698 304 0000368 \N 213699 304 0000109 \N 213700 304 0000348 \N 213701 304 0000371 \N 213702 304 0000382 \N 213703 304 0000379 \N 213704 304 0000202 \N 213705 304 0000389 \N 213706 304 0000219 \N 213707 304 0000249 \N 213708 304 0000414 \N 213709 304 0000429 \N 213710 304 0000316 \N 213711 304 0000404 \N 213712 304 0000392 \N 213713 304 0000441 \N 213714 304 0000208 \N 213715 304 0000401 \N 213716 304 0000301 \N 213717 304 0000442 \N 213718 304 0000439 \N 213719 304 0000297 \N 213720 304 0000093 \N 213721 304 0000306 \N 213722 304 0000251 \N 213723 304 0000242 \N 213724 304 0000128 \N 213725 304 0000451 \N 213726 304 0000373 \N 213727 304 0000351 \N 213728 304 0000375 \N 213729 304 0000349 \N 213730 304 0000267 \N 213731 304 0000182 \N 213732 304 0000189 \N 213733 304 0000185 \N 213734 304 0000167 \N 213735 304 0000467 \N 213736 304 0000192 \N 213737 304 0000324 \N 213738 304 0000166 \N 213739 304 0000282 \N 213740 304 0000443 \N 213741 304 0000299 \N 213742 304 0000268 \N 213743 304 0000163 \N 213744 304 0000450 \N 213745 304 0000266 \N 213746 304 0000356 \N 213747 304 0000288 \N 213748 304 0000236 \N 213749 304 0000296 \N 213750 304 0000361 \N 213751 304 0000358 \N 213752 304 0000194 \N 213753 304 0000159 \N 213754 304 0000158 \N 213755 304 0000174 \N 213756 304 0000240 \N 213757 304 0000372 \N 213758 304 0000411 \N 213759 304 0000328 \N 213760 304 0000106 \N 213761 304 0000263 \N 213762 304 0000452 \N 213763 304 0000250 \N 213764 304 0000304 \N 213765 304 0000381 \N 213766 304 0000460 \N 213767 304 0000448 \N 213768 304 0000186 \N 213769 304 0000112 \N 213770 304 0000188 \N 213771 304 0000099 \N 213772 304 0000136 \N 213773 304 0000417 \N 213774 304 0000388 \N 213775 304 0000457 \N 213776 304 0000344 \N 213777 304 0000433 \N 213778 304 0000244 \N 213779 304 0000342 \N 213780 304 0000229 \N 213781 304 0000432 \N 213782 304 0000215 \N 213783 304 0000200 \N 213784 304 0000322 \N 213785 304 0000283 \N 213786 304 0000151 \N 213787 304 0000259 \N 213788 304 0000224 \N 213789 304 0000472 \N 213790 304 0000191 \N 213791 304 0000117 \N 213792 304 0000209 \N 213793 304 0000319 \N 213794 304 0000193 \N 213795 304 0000410 \N 213796 304 0000083 \N 213797 304 0000363 \N 213798 304 0000092 \N 213799 304 0000101 \N 213800 304 0000367 \N 213801 304 0000394 \N 213802 304 0000144 \N 213803 304 0000463 \N 213804 304 0000334 \N 213805 304 0000203 \N 213806 304 0000269 \N 213807 304 0000264 \N 213808 304 0000357 \N 213809 304 0000427 \N 213810 304 0000412 \N 213811 304 0000226 \N 213812 304 0000409 \N 213813 304 0000456 \N 213814 304 0000468 \N 213815 304 0000270 \N 213816 304 0000355 \N 213817 304 0000346 \N 213818 304 0000086 \N 213819 304 0000479 \N 213820 304 0000195 \N 213821 304 0000289 \N 213822 304 0000423 \N 213823 304 0000261 \N 213824 304 0000247 \N 213825 304 0000104 \N 213826 304 0000308 \N 213827 304 0000084 \N 213828 304 0000121 \N 213829 304 0000100 \N 213830 304 0000140 \N 213831 304 0000405 \N 213832 304 0000453 \N 213833 304 0000238 \N 213834 304 0000419 \N 213835 304 0000354 \N 213836 304 0000078 \N 213837 304 0000350 \N 213838 304 0000321 \N 213839 304 0000352 \N 213840 304 0000169 \N 213841 304 0000376 \N 213842 304 0000395 \N 213843 304 0000336 \N 213844 304 0000313 \N 213845 304 0000416 \N 213846 304 0000145 \N 213847 304 0000425 \N 213848 304 0000234 \N 213849 304 0000402 \N 213850 304 0000087 \N 213851 304 0000097 \N 213852 304 0000327 \N 213853 304 0000088 \N 213854 304 0000126 \N 213855 304 0000353 \N 213856 304 0000444 \N 213857 304 0000120 \N 213858 304 0000464 \N 213859 304 0000331 \N 213860 304 0000184 \N 213861 304 0000227 \N 213862 304 0000220 \N 213863 304 0000275 \N 213864 304 0000252 \N 213865 304 0000476 \N 213866 304 0000239 \N 213867 304 0000146 \N 213868 304 0000369 \N 213869 304 0000286 \N 213870 304 0000111 \N 213871 304 0000309 \N 213872 304 0000383 \N 213873 304 0000173 \N 213874 304 0000374 \N 213875 304 0000107 \N 213876 304 0000462 \N 213877 304 0000212 \N 213878 304 0000329 \N 213879 304 0000143 \N 213880 304 0000298 \N 213881 304 0000303 \N 213882 304 0000360 \N 213883 304 0000260 \N 213884 304 0000397 \N 213885 304 0000293 \N 213886 304 0000426 \N 213887 304 0000318 \N 213888 304 0000461 \N 213889 304 0000231 \N 213890 304 0000470 \N 213891 304 0000413 \N 213892 304 0000393 \N 213893 304 0000312 \N 213894 304 0000198 \N 213895 304 0000081 \N 213896 304 0000113 \N 213897 304 0000134 \N 213898 304 0000162 \N 213899 304 0000133 \N 213900 304 0000403 \N 213901 304 0000399 \N 213902 304 0000305 \N 213903 304 0000160 \N 213904 304 0000455 \N 213905 304 0000255 \N 213906 304 0000150 \N 213907 304 0000436 \N 213908 304 0000180 \N 213909 304 0000364 \N 213910 304 0000139 \N 213911 304 0000430 \N 213912 304 0000168 \N 213913 304 0000221 \N 213914 304 0000085 \N 213915 304 0000471 \N 213916 304 0000161 \N 213917 304 0000295 \N 213918 304 0000317 \N 213919 304 0000108 \N 213920 304 0000377 \N 213921 304 0000235 \N 213922 304 0000253 \N 213923 304 0000340 \N 213924 304 0000217 \N 213925 304 0000285 \N 213926 304 0000370 \N 213927 304 0000142 \N 213928 304 0000076 \N 213929 304 0000177 \N 213930 304 0000257 \N 213931 304 0000176 \N 213932 304 0000089 \N 213933 304 0000415 \N 213934 304 0000459 \N 213935 304 0000332 \N 213936 304 0000228 \N 213937 304 0000130 \N 213938 304 0000449 \N 213939 304 0000152 \N 213940 304 0000398 \N 213941 304 0000153 \N 213942 304 0000125 \N 213943 304 0000094 \N 213944 304 0000206 \N 213945 304 0000337 \N 213946 304 0000171 \N 213947 304 0000396 \N 213948 304 0000434 \N 213949 304 0000447 \N 213950 304 0000175 \N 213951 304 0000157 \N 213952 304 0000230 \N 213953 304 0000338 \N 213954 304 0000172 \N 213955 304 0000477 \N 213956 304 0000082 \N 213957 304 0000287 \N 213958 304 0000091 \N 213959 304 0000320 \N 213960 304 0000156 \N 213961 304 0000325 \N 213962 304 0000391 \N 213963 304 0000292 \N 213964 304 0000431 \N 213965 304 0000445 \N 213966 304 0000096 \N 213967 304 0000385 \N 213968 304 0000190 \N 213969 304 0000116 \N 213970 304 0000314 \N 213971 304 0000210 \N 213972 304 0000465 \N 213973 304 0000408 \N 213974 304 0000437 \N 213975 304 0000435 \N 213976 304 0000478 \N 213977 304 0000330 \N 213978 304 0000095 \N 213979 304 0000284 \N 213980 304 0000272 \N 213981 304 0000386 \N 213982 304 0000241 \N 213983 304 0000273 \N 213984 304 0000243 \N 213985 304 0000362 \N 213986 304 0000199 \N 213987 304 0000248 \N 213988 304 0000098 \N 213989 304 0000302 \N 213990 304 0000170 \N 213991 304 0000466 \N 213992 304 0000222 \N 213993 2 autocreated:analysis_experiment \N 213994 2 autocreated:analysis_project \N 213995 2 autocreated:project_sp_person_id \N 213996 2 autocreated:analysis_metadata_json \N 213997 2 autocreated:analysis_of \N 213998 2 autocreated:analysis_instance \N 213999 2 autocreated:trained_keras_mask_r_cnn_model \N 214000 2 autocreated:sommer_grm_spatial_genetic_blups \N 214001 2 autocreated:lmer_germplasmname_replicate \N 214002 2 autocreated:observation_unit_polygon_keras_autoencoder_decoded \N 214003 2 autocreated:analysis_model_experiment \N 214004 2 autocreated:analysis_model_properties \N 214005 2 autocreated:tissue_culture_data_json \N 214006 307 0000333 \N 214007 307 0000329 \N 214008 307 0000324 \N 214009 307 0000331 \N 214010 307 0000327 \N 214011 307 0000328 \N 214012 307 0000325 \N 214013 307 0000326 \N 214014 307 0000336 \N 214015 307 0000332 \N 214016 307 0000330 \N 214017 308 0000002 \N 214018 308 0000001 \N 214019 308 0000000 \N 214020 2 autocreated:observation_unit_polygon_keras_trained \N 214021 2 autocreated:sommer_grm_temporal_random_regression_dap_genetic_blups \N 214022 2 autocreated:sommer_grm_temporal_random_regression_gdd_genetic_blups \N 214023 2 autocreated:drone_run_raw_images_saved_gps_pixel_positions \N 214024 2 autocreated:drone_run_raw_images_saved_micasense_stacks_rotated \N 214025 2 autocreated:standard_process_interactive_match_temporary_drone_imagery \N 214026 2 autocreated:standard_process_interactive_align_temporary_drone_imagery \N 214027 308 0000006 \N 214028 308 0000005 \N 214029 308 0000004 \N 214030 308 0000007 \N 214031 308 0000003 \N 214032 309 0000071 \N 214033 309 0000076 \N 214034 309 0000004 \N 214035 309 0000001 \N 214036 309 0000073 \N 214037 309 0000074 \N 214038 309 0000078 \N 214039 309 0000079 \N 214040 309 0000069 \N 214041 309 0000075 \N 214042 309 0000003 \N 214043 309 0000002 \N 214044 309 0000077 \N 214045 309 0000070 \N 214046 309 0000072 \N 214047 310 0000067 \N 214048 310 0000030 \N 214049 310 0000007 \N 214050 310 0000056 \N 214051 310 0000013 \N 214052 310 0000024 \N 214053 310 0000027 \N 214054 310 0000023 \N 214055 310 0000034 \N 214056 310 0000043 \N 214057 310 0000047 \N 214058 310 0000000 \N 214059 310 0000033 \N 214060 310 0000010 \N 214061 310 0000021 \N 214062 310 0000026 \N 214063 310 0000046 \N 214064 310 0000038 \N 214065 310 0000062 \N 214066 310 0000009 \N 214067 310 0000055 \N 214068 310 0000052 \N 214069 310 0000051 \N 214070 310 0000044 \N 214071 310 0000053 \N 214072 310 0000025 \N 214073 310 0000061 \N 214074 310 0000008 \N 214075 310 0000015 \N 214076 310 0000042 \N 214077 310 0000064 \N 214078 310 0000032 \N 214079 310 0000005 \N 214080 310 0000012 \N 214081 310 0000031 \N 214082 310 0000022 \N 214083 310 0000014 \N 214084 310 0000040 \N 214085 310 0000063 \N 214086 310 0000058 \N 214087 310 0000068 \N 214088 310 0000019 \N 214089 310 0000016 \N 214090 310 0000065 \N 214091 310 0000035 \N 214092 310 0000059 \N 214093 310 0000006 \N 214094 310 0000060 \N 214095 310 0000045 \N 214096 310 0000001 \N 214097 310 0000057 \N 214098 310 0000037 \N 214099 310 0000011 \N 214100 310 0000020 \N 214101 310 0000039 \N 214102 310 0000029 \N 214103 310 0000036 \N 214104 310 0000048 \N 214105 310 0000049 \N 214106 310 0000041 \N 214107 310 0000028 \N 214108 310 0000050 \N 214109 310 0000054 \N 214110 310 0000066 \N 214111 310 0000018 \N 214112 310 0000017 \N 214113 311 0000009 \N 214114 311 0000001 \N 214115 311 0000004 \N 214116 311 0000003 \N 214117 311 0000015 \N 214118 311 0000016 \N 214119 311 0000010 \N 214120 311 0000013 \N 214121 311 0000012 \N 214122 311 0000005 \N 214123 311 0000006 \N 214124 311 0000011 \N 214125 311 0000014 \N 214126 312 0000003 \N 214127 312 0000007 \N 214128 312 0000024 \N 214129 312 0000038 \N 214130 312 0000031 \N 214131 312 0000001 \N 214132 312 0000034 \N 214133 312 0000026 \N 214134 312 0000041 \N 214135 312 0000030 \N 214136 312 0000025 \N 214137 312 0000039 \N 214138 312 0000023 \N 214139 312 0000046 \N 214140 312 0000047 \N 214141 312 0000050 \N 214142 312 0000006 \N 214143 312 0000018 \N 214144 312 0000022 \N 214145 312 0000000 \N 214146 312 0000009 \N 214147 312 0000017 \N 214148 312 0000004 \N 214149 312 0000002 \N 214150 312 0000040 \N 214151 312 0000008 \N 214152 312 0000049 \N 214153 312 0000042 \N 214154 312 0000010 \N 214155 312 0000005 \N 214156 312 0000033 \N 214157 312 0000016 \N 214158 312 0000032 \N 214159 312 0000014 \N 214160 312 0000015 \N 214161 312 0000048 \N 214162 2 autocreated:seedlot_quality \N 214163 2 autocreated:drone_run_is_raw_images \N 214164 2 autocreated:drone_run_raw_images_rotation_occuring \N 214165 2 autocreated:drone_run_raw_images_saved_micasense_stacks_separated \N 214166 2 autocreated:drone_run_band_plot_polygons_separated \N 214167 2 autocreated:drone_run_experiment \N 214168 2 autocreated:drone_run_ground_control_points \N 214169 2 autocreated:imaging_event_vehicle \N 214170 2 autocreated:imaging_event_vehicle_json \N 214171 2 autocreated:uploaded_generic_analysis_model \N 214172 308 0000011 \N 214173 308 0000013 \N 214174 308 0000008 \N 214175 308 0000012 \N 214176 308 0000010 \N 214177 308 0000009 \N 214178 2 autocreated:waves_nirs_spectral_predictions \N 214179 2 autocreated:blupf90_grm_random_regression_gdd_blups \N 214180 2 autocreated:blupf90_grm_random_regression_dap_blups \N 214181 308 0000017 \N 214182 308 0000014 \N 214183 308 0000015 \N 214184 308 0000016 \N 214185 308 0000018 \N 214186 308 0000019 \N 214187 308 0000021 \N 214188 308 0000020 \N 214189 2 autocreated:airemlf90_grm_random_regression_dap_blups \N 214190 2 autocreated:airemlf90_grm_random_regression_gdd_blups \N 214191 2 autocreated:sommer_grm_genetic_only_random_regression_dap_genetic_blups \N 214192 2 autocreated:sommer_grm_genetic_only_random_regression_gdd_genetic_blups \N 214193 308 0000022 \N 214194 308 0000023 \N 214195 2 autocreated:cross_member_of \N 214196 2 autocreated:family_female_parent_of \N 214197 2 autocreated:family_male_parent_of \N 214198 2 autocreated:drone_run_averaged_precipitation_sum \N 214199 2 autocreated:sommer_grm_genetic_blups \N 214200 308 0000024 \N 214201 308 0000025 \N 214202 2 autocreated:genotyping_vendor_order_id \N 214203 2 autocreated:mixed_model_lmer \N 214204 2 autocreated:product_profile_json \N 214205 308 0000032 \N 214206 308 0000029 \N 214207 308 0000030 \N 214208 308 0000028 \N 214209 308 0000035 \N 214210 308 0000033 \N 214211 308 0000031 \N 214212 308 0000037 \N 214213 308 0000034 \N 214214 308 0000036 \N 214215 308 0000027 \N 214216 308 0000026 \N \. -- -- Data for Name: dbxrefprop; Type: TABLE DATA; Schema: public; Owner: postgres -- COPY public.dbxrefprop (dbxrefprop_id, dbxref_id, type_id, value, rank) FROM stdin; \. -- -- Data for Name: environment; Type: TABLE DATA; Schema: public; Owner: postgres -- COPY public.environment (environment_id, uniquename, description) FROM stdin; \. -- -- Data for Name: environment_cvterm; Type: TABLE DATA; Schema: public; Owner: postgres -- COPY public.environment_cvterm (environment_cvterm_id, environment_id, cvterm_id) FROM stdin; \. -- -- Data for Name: enzyme_restriction_sites; Type: TABLE DATA; Schema: public; Owner: postgres -- COPY public.enzyme_restriction_sites (enzyme_restriction_sites_id, restriction_site, enzyme_id) FROM stdin; \. -- -- Data for Name: feature; Type: TABLE DATA; Schema: public; Owner: postgres -- COPY public.feature (feature_id, dbxref_id, organism_id, name, uniquename, residues, seqlen, md5checksum, type_id, is_analysis, is_obsolete, timeaccessioned, timelastmodified) FROM stdin; \. -- -- Data for Name: feature_cvterm; Type: TABLE DATA; Schema: public; Owner: postgres -- COPY public.feature_cvterm (feature_cvterm_id, feature_id, cvterm_id, pub_id, is_not, rank) FROM stdin; \. -- -- Data for Name: feature_cvterm_dbxref; Type: TABLE DATA; Schema: public; Owner: postgres -- COPY public.feature_cvterm_dbxref (feature_cvterm_dbxref_id, feature_cvterm_id, dbxref_id) FROM stdin; \. -- -- Data for Name: feature_cvterm_pub; Type: TABLE DATA; Schema: public; Owner: postgres -- COPY public.feature_cvterm_pub (feature_cvterm_pub_id, feature_cvterm_id, pub_id) FROM stdin; \. -- -- Data for Name: feature_cvtermprop; Type: TABLE DATA; Schema: public; Owner: postgres -- COPY public.feature_cvtermprop (feature_cvtermprop_id, feature_cvterm_id, type_id, value, rank) FROM stdin; \. -- -- Data for Name: feature_dbxref; Type: TABLE DATA; Schema: public; Owner: postgres -- COPY public.feature_dbxref (feature_dbxref_id, feature_id, dbxref_id, is_current) FROM stdin; \. -- -- Data for Name: feature_genotype; Type: TABLE DATA; Schema: public; Owner: postgres -- COPY public.feature_genotype (feature_genotype_id, feature_id, genotype_id, chromosome_id, rank, cgroup, cvterm_id) FROM stdin; \. -- -- Data for Name: feature_pub; Type: TABLE DATA; Schema: public; Owner: postgres -- COPY public.feature_pub (feature_pub_id, feature_id, pub_id) FROM stdin; \. -- -- Data for Name: feature_relationship; Type: TABLE DATA; Schema: public; Owner: postgres -- COPY public.feature_relationship (feature_relationship_id, subject_id, object_id, type_id, value, rank) FROM stdin; \. -- -- Data for Name: feature_relationship_pub; Type: TABLE DATA; Schema: public; Owner: postgres -- COPY public.feature_relationship_pub (feature_relationship_pub_id, feature_relationship_id, pub_id) FROM stdin; \. -- -- Data for Name: feature_relationshipprop; Type: TABLE DATA; Schema: public; Owner: postgres -- COPY public.feature_relationshipprop (feature_relationshipprop_id, feature_relationship_id, type_id, value, rank) FROM stdin; \. -- -- Data for Name: feature_relationshipprop_pub; Type: TABLE DATA; Schema: public; Owner: postgres -- COPY public.feature_relationshipprop_pub (feature_relationshipprop_pub_id, feature_relationshipprop_id, pub_id) FROM stdin; \. -- -- Data for Name: feature_synonym; Type: TABLE DATA; Schema: public; Owner: postgres -- COPY public.feature_synonym (feature_synonym_id, synonym_id, feature_id, pub_id, is_current, is_internal) FROM stdin; \. -- -- Data for Name: featureloc; Type: TABLE DATA; Schema: public; Owner: postgres -- COPY public.featureloc (featureloc_id, feature_id, srcfeature_id, fmin, is_fmin_partial, fmax, is_fmax_partial, strand, phase, residue_info, locgroup, rank) FROM stdin; \. -- -- Data for Name: featureloc_pub; Type: TABLE DATA; Schema: public; Owner: postgres -- COPY public.featureloc_pub (featureloc_pub_id, featureloc_id, pub_id) FROM stdin; \. -- -- Data for Name: featureprop; Type: TABLE DATA; Schema: public; Owner: postgres -- COPY public.featureprop (featureprop_id, feature_id, type_id, value, rank) FROM stdin; \. -- -- Data for Name: featureprop_pub; Type: TABLE DATA; Schema: public; Owner: postgres -- COPY public.featureprop_pub (featureprop_pub_id, featureprop_id, pub_id) FROM stdin; \. -- -- Data for Name: forward_amplicon_sequence_information; Type: TABLE DATA; Schema: public; Owner: postgres -- COPY public.forward_amplicon_sequence_information (organism_name, accession_id, plant_number, ending, cxgn_production_visible, forward_amplicon_sequence_information_id) FROM stdin; \. -- -- Data for Name: forward_amplicon_sequence_markers; Type: TABLE DATA; Schema: public; Owner: postgres -- COPY public.forward_amplicon_sequence_markers (marker_name, ending, cxgn_production_visible, forward_amplicon_sequence_markers_id) FROM stdin; \. -- -- Data for Name: fpc_band; Type: TABLE DATA; Schema: public; Owner: postgres -- COPY public.fpc_band (fpc_band_id, fpc_fingerprint_id, fragment_size, band_position) FROM stdin; \. -- -- Data for Name: fpc_build; Type: TABLE DATA; Schema: public; Owner: postgres -- COPY public.fpc_build (fpc_build_id, date, file_base, comment, fpc_series_id) FROM stdin; \. -- -- Data for Name: fpc_build_fpc_fingerprint; Type: TABLE DATA; Schema: public; Owner: postgres -- COPY public.fpc_build_fpc_fingerprint (fpc_build_fpc_fingerprint_id, fpc_build_id, fpc_fingerprint_id) FROM stdin; \. -- -- Data for Name: fpc_contig; Type: TABLE DATA; Schema: public; Owner: postgres -- COPY public.fpc_contig (fpc_contig_id, fpc_build_id, name) FROM stdin; \. -- -- Data for Name: fpc_contig_clone; Type: TABLE DATA; Schema: public; Owner: postgres -- COPY public.fpc_contig_clone (fpc_contig_clone_id, fpc_contig_id, clone_id, plausible) FROM stdin; \. -- -- Data for Name: fpc_fingerprint; Type: TABLE DATA; Schema: public; Owner: postgres -- COPY public.fpc_fingerprint (fpc_fingerprint_id, clone_id, gel_name, enzyme_id) FROM stdin; \. -- -- Data for Name: fpc_series; Type: TABLE DATA; Schema: public; Owner: postgres -- COPY public.fpc_series (fpc_series_id, name) FROM stdin; \. -- -- Data for Name: genotype; Type: TABLE DATA; Schema: public; Owner: postgres -- COPY public.genotype (genotype_id, name, uniquename, description, type_id, create_date) FROM stdin; \. -- -- Data for Name: genotypeprop; Type: TABLE DATA; Schema: public; Owner: postgres -- COPY public.genotypeprop (genotypeprop_id, genotype_id, type_id, value, rank) FROM stdin; \. -- -- Data for Name: gff_meta; Type: TABLE DATA; Schema: public; Owner: postgres -- COPY public.gff_meta (name, hostname, starttime) FROM stdin; \. -- -- Data for Name: glossary; Type: TABLE DATA; Schema: public; Owner: postgres -- COPY public.glossary (glossary_id, term, definition) FROM stdin; \. -- -- Data for Name: itag_loading_log; Type: TABLE DATA; Schema: public; Owner: postgres -- COPY public.itag_loading_log (id, deleted, "timestamp", uname, host, progname, pid, search_key, message) FROM stdin; \. -- -- Data for Name: marker_names; Type: TABLE DATA; Schema: public; Owner: postgres -- COPY public.marker_names (marker_id, name) FROM stdin; \. -- -- Data for Name: materialized_view; Type: TABLE DATA; Schema: public; Owner: postgres -- COPY public.materialized_view (materialized_view_id, last_update, refresh_time, name, mv_schema, mv_table, mv_specs, indexed, query) FROM stdin; \. -- -- Data for Name: matviews; Type: TABLE DATA; Schema: public; Owner: web_usr -- COPY public.matviews (mv_id, mv_name, mv_dependents, currently_refreshing, last_refresh) FROM stdin; 110 trait_components \N f 2020-04-23 21:51:35.613545+00 111 accessionsXtrait_components \N f 2020-04-23 21:51:35.613545+00 112 breeding_programsXtrait_components \N f 2020-04-23 21:51:35.613545+00 113 genotyping_protocolsXtrait_components \N f 2020-04-23 21:51:35.613545+00 114 locationsXtrait_components \N f 2020-04-23 21:51:35.613545+00 115 plantsXtrait_components \N f 2020-04-23 21:51:35.613545+00 116 plotsXtrait_components \N f 2020-04-23 21:51:35.613545+00 117 trait_componentsXtraits \N f 2020-04-23 21:51:35.613545+00 118 trait_componentsXtrials \N f 2020-04-23 21:51:35.613545+00 119 trait_componentsXtrial_designs \N f 2020-04-23 21:51:35.613545+00 120 trait_componentsXtrial_types \N f 2020-04-23 21:51:35.613545+00 121 trait_componentsXyears \N f 2020-04-23 21:51:35.613545+00 122 plantsXplots \N f 2020-04-23 21:51:35.613545+00 84 trait_components \N f 2020-04-23 21:51:35.613545+00 85 accessionsXtrait_components \N f 2020-04-23 21:51:35.613545+00 86 breeding_programsXtrait_components \N f 2020-04-23 21:51:35.613545+00 87 genotyping_protocolsXtrait_components \N f 2020-04-23 21:51:35.613545+00 88 locationsXtrait_components \N f 2020-04-23 21:51:35.613545+00 89 plantsXtrait_components \N f 2020-04-23 21:51:35.613545+00 90 plotsXtrait_components \N f 2020-04-23 21:51:35.613545+00 91 trait_componentsXtraits \N f 2020-04-23 21:51:35.613545+00 92 trait_componentsXtrials \N f 2020-04-23 21:51:35.613545+00 93 trait_componentsXtrial_designs \N f 2020-04-23 21:51:35.613545+00 3 accessions \N f 2020-04-23 21:51:35.613545+00 4 accessionsXbreeding_programs \N f 2020-04-23 21:51:35.613545+00 5 accessionsXgenotyping_protocols \N f 2020-04-23 21:51:35.613545+00 6 accessionsXlocations \N f 2020-04-23 21:51:35.613545+00 7 accessionsXplants \N f 2020-04-23 21:51:35.613545+00 8 accessionsXplots \N f 2020-04-23 21:51:35.613545+00 9 accessionsXtraits \N f 2020-04-23 21:51:35.613545+00 10 accessionsXtrials \N f 2020-04-23 21:51:35.613545+00 11 accessionsXtrial_designs \N f 2020-04-23 21:51:35.613545+00 12 accessionsXtrial_types \N f 2020-04-23 21:51:35.613545+00 13 accessionsXyears \N f 2020-04-23 21:51:35.613545+00 94 trait_componentsXtrial_types \N f 2020-04-23 21:51:35.613545+00 95 trait_componentsXyears \N f 2020-04-23 21:51:35.613545+00 96 plantsXplots \N f 2020-04-23 21:51:35.613545+00 69 all_gs_traits \N f 2020-04-23 21:51:35.613545+00 64 trial_typesXtrials \N f 2020-04-23 21:51:35.613545+00 65 trial_typesXyears \N f 2020-04-23 21:51:35.613545+00 66 trials \N f 2020-04-23 21:51:35.613545+00 67 trialsXyears \N f 2020-04-23 21:51:35.613545+00 68 years \N f 2020-04-23 21:51:35.613545+00 70 trait_components \N f 2020-04-23 21:51:35.613545+00 71 accessionsXtrait_components \N f 2020-04-23 21:51:35.613545+00 72 breeding_programsXtrait_components \N f 2020-04-23 21:51:35.613545+00 73 genotyping_protocolsXtrait_components \N f 2020-04-23 21:51:35.613545+00 74 locationsXtrait_components \N f 2020-04-23 21:51:35.613545+00 75 plantsXtrait_components \N f 2020-04-23 21:51:35.613545+00 76 plotsXtrait_components \N f 2020-04-23 21:51:35.613545+00 77 trait_componentsXtraits \N f 2020-04-23 21:51:35.613545+00 78 trait_componentsXtrials \N f 2020-04-23 21:51:35.613545+00 79 trait_componentsXtrial_designs \N f 2020-04-23 21:51:35.613545+00 80 trait_componentsXtrial_types \N f 2020-04-23 21:51:35.613545+00 81 trait_componentsXyears \N f 2020-04-23 21:51:35.613545+00 82 plantsXplots \N f 2020-04-23 21:51:35.613545+00 54 traits \N f 2020-04-23 21:51:35.613545+00 55 traitsXtrials \N f 2020-04-23 21:51:35.613545+00 56 traitsXtrial_designs \N f 2020-04-23 21:51:35.613545+00 57 traitsXtrial_types \N f 2020-04-23 21:51:35.613545+00 2 materialized_genoview {accessionsXgenotyping_protocols,breeding_programsXgenotyping_protocols,genotyping_protocolsXlocations,genotyping_protocolsXplants,genotyping_protocolsXplots,genotyping_protocolsXtraits,genotyping_protocolsXtrials,genotyping_protocolsXtrial_designs,genotyping_protocolsXtrial_types,genotyping_protocolsXyears} f 2020-04-23 21:51:35.613545+00 14 breeding_programs \N f 2020-04-23 21:51:35.613545+00 15 breeding_programsXgenotyping_protocols \N f 2020-04-23 21:51:35.613545+00 16 breeding_programsXlocations \N f 2020-04-23 21:51:35.613545+00 17 breeding_programsXplants \N f 2020-04-23 21:51:35.613545+00 18 breeding_programsXplots \N f 2020-04-23 21:51:35.613545+00 19 breeding_programsXtraits \N f 2020-04-23 21:51:35.613545+00 20 breeding_programsXtrials \N f 2020-04-23 21:51:35.613545+00 21 breeding_programsXtrial_designs \N f 2020-04-23 21:51:35.613545+00 22 breeding_programsXtrial_types \N f 2020-04-23 21:51:35.613545+00 23 breeding_programsXyears \N f 2020-04-23 21:51:35.613545+00 24 genotyping_protocols \N f 2020-04-23 21:51:35.613545+00 25 genotyping_protocolsXlocations \N f 2020-04-23 21:51:35.613545+00 26 genotyping_protocolsXplants \N f 2020-04-23 21:51:35.613545+00 27 genotyping_protocolsXplots \N f 2020-04-23 21:51:35.613545+00 28 genotyping_protocolsXtraits \N f 2020-04-23 21:51:35.613545+00 29 genotyping_protocolsXtrials \N f 2020-04-23 21:51:35.613545+00 30 genotyping_protocolsXtrial_designs \N f 2020-04-23 21:51:35.613545+00 31 genotyping_protocolsXtrial_types \N f 2020-04-23 21:51:35.613545+00 32 genotyping_protocolsXyears \N f 2020-04-23 21:51:35.613545+00 33 locations \N f 2020-04-23 21:51:35.613545+00 34 locationsXplants \N f 2020-04-23 21:51:35.613545+00 35 locationsXplots \N f 2020-04-23 21:51:35.613545+00 36 locationsXtraits \N f 2020-04-23 21:51:35.613545+00 37 locationsXtrials \N f 2020-04-23 21:51:35.613545+00 38 locationsXtrial_designs \N f 2020-04-23 21:51:35.613545+00 39 locationsXtrial_types \N f 2020-04-23 21:51:35.613545+00 40 locationsXyears \N f 2020-04-23 21:51:35.613545+00 41 plants \N f 2020-04-23 21:51:35.613545+00 42 plantsXtraits \N f 2020-04-23 21:51:35.613545+00 43 plantsXtraits \N f 2020-04-23 21:51:35.613545+00 44 plantsXtrials \N f 2020-04-23 21:51:35.613545+00 45 plantsXtrial_designs \N f 2020-04-23 21:51:35.613545+00 46 plantsXtrial_types \N f 2020-04-23 21:51:35.613545+00 47 plantsXyears \N f 2020-04-23 21:51:35.613545+00 48 plots \N f 2020-04-23 21:51:35.613545+00 49 plotsXtraits \N f 2020-04-23 21:51:35.613545+00 50 plotsXtrials \N f 2020-04-23 21:51:35.613545+00 51 plotsXtrial_designs \N f 2020-04-23 21:51:35.613545+00 52 plotsXtrial_types \N f 2020-04-23 21:51:35.613545+00 53 plotsXyears \N f 2020-04-23 21:51:35.613545+00 58 traitsXyears \N f 2020-04-23 21:51:35.613545+00 59 trial_designs \N f 2020-04-23 21:51:35.613545+00 60 trial_designsXtrial_types \N f 2020-04-23 21:51:35.613545+00 61 trial_designsXtrials \N f 2020-04-23 21:51:35.613545+00 62 trial_designsXyears \N f 2020-04-23 21:51:35.613545+00 63 trial_types \N f 2020-04-23 21:51:35.613545+00 97 trait_components \N f 2020-04-23 21:51:35.613545+00 98 accessionsXtrait_components \N f 2020-04-23 21:51:35.613545+00 99 breeding_programsXtrait_components \N f 2020-04-23 21:51:35.613545+00 100 genotyping_protocolsXtrait_components \N f 2020-04-23 21:51:35.613545+00 101 locationsXtrait_components \N f 2020-04-23 21:51:35.613545+00 102 plantsXtrait_components \N f 2020-04-23 21:51:35.613545+00 103 plotsXtrait_components \N f 2020-04-23 21:51:35.613545+00 104 trait_componentsXtraits \N f 2020-04-23 21:51:35.613545+00 105 trait_componentsXtrials \N f 2020-04-23 21:51:35.613545+00 106 trait_componentsXtrial_designs \N f 2020-04-23 21:51:35.613545+00 107 trait_componentsXtrial_types \N f 2020-04-23 21:51:35.613545+00 108 trait_componentsXyears \N f 2020-04-23 21:51:35.613545+00 109 plantsXplots \N f 2020-04-23 21:51:35.613545+00 123 accessionsXtrait_components \N f 2020-04-23 21:51:35.613545+00 124 breeding_programsXtrait_components \N f 2020-04-23 21:51:35.613545+00 125 genotyping_protocolsXtrait_components \N f 2020-04-23 21:51:35.613545+00 126 locationsXtrait_components \N f 2020-04-23 21:51:35.613545+00 127 plantsXtrait_components \N f 2020-04-23 21:51:35.613545+00 128 plotsXtrait_components \N f 2020-04-23 21:51:35.613545+00 129 trait_componentsXtraits \N f 2020-04-23 21:51:35.613545+00 130 trait_componentsXtrials \N f 2020-04-23 21:51:35.613545+00 131 trait_componentsXtrial_designs \N f 2020-04-23 21:51:35.613545+00 132 trait_componentsXtrial_types \N f 2020-04-23 21:51:35.613545+00 133 trait_componentsXyears \N f 2020-04-23 21:51:35.613545+00 134 plantsXplots \N f 2020-04-23 21:51:35.613545+00 135 genotyping_protocolsXtrait_components \N f 2020-04-23 21:51:35.613545+00 136 genotyping_protocolsXtrait_components \N f 2020-04-23 21:51:35.613545+00 1 materialized_phenoview {accessionsXbreeding_programs,accessionsXlocations,accessionsXplants,accessionsXplots,accessionsXseedlots,accessionsXtrait_components,accessionsXtraits,accessionsXtrials,accessionsXtrial_designs,accessionsXtrial_types,accessionsXyears,breeding_programsXgenotyping_protocols,breeding_programsXlocations,breeding_programsXplants,breeding_programsXplots,breeding_programsXseedlots,breeding_programsXtrait_components,breeding_programsXtraits,breeding_programsXtrials,breeding_programsXtrial_designs,breeding_programsXtrial_types,breeding_programsXyears,genotyping_protocolsXlocations,genotyping_protocolsXplants,genotyping_protocolsXplots,genotyping_protocolsXseedlots,genotyping_protocolsXtrait_components,genotyping_protocolsXtraits,genotyping_protocolsXtrials,genotyping_protocolsXtrial_designs,genotyping_protocolsXtrial_types,genotyping_protocolsXyears,locationsXplants,locationsXplots,locationsXseedlots,locationsXtrait_components,locationsXtraits,locationsXtrials,locationsXtrial_designs,locationsXtrial_types,locationsXyears,plantsXplots,plantsXseedlots,plantsXtrait_components,plantsXtraits,plantsXtrials,plantsXtrial_designs,plantsXtrial_types,plantsXyears,plotsXseedlots,plotsXtrait_components,plotsXtraits,plotsXtrials,plotsXtrial_designs,plotsXtrial_types,plotsXyears,seedlotsXtrait_components,seedlotsXtraits,seedlotsXtrial_designs,seedlotsXtrial_types,seedlotsXtrials,seedlotsXyears,trait_componentsXtraits,trait_componentsXtrial_designs,trait_componentsXtrial_types,trait_componentsXtrials,trait_componentsXyears,traitsXtrials,traitsXtrial_designs,traitsXtrial_types,traitsXyears,trial_designsXtrials,trial_typesXtrials,trialsXyears,trial_designsXtrial_types,trial_designsXyears,trial_typesXyears} f 2020-04-23 21:51:35.613545+00 137 accessionsXtrait_components \N f 2020-06-27 16:33:02.010745+00 138 breeding_programsXtrait_components \N f 2020-06-27 16:33:02.010745+00 139 genotyping_protocolsXtrait_components \N f 2020-06-27 16:33:02.010745+00 140 locationsXtrait_components \N f 2020-06-27 16:33:02.010745+00 141 plantsXtrait_components \N f 2020-06-27 16:33:02.010745+00 142 plotsXtrait_components \N f 2020-06-27 16:33:02.010745+00 143 trait_componentsXtraits \N f 2020-06-27 16:33:02.010745+00 144 trait_componentsXtrials \N f 2020-06-27 16:33:02.010745+00 145 trait_componentsXtrial_designs \N f 2020-06-27 16:33:02.010745+00 146 trait_componentsXtrial_types \N f 2020-06-27 16:33:02.010745+00 147 trait_componentsXyears \N f 2020-06-27 16:33:02.010745+00 148 plantsXplots \N f 2020-06-27 16:33:02.010745+00 \. -- -- Data for Name: nd_experiment; Type: TABLE DATA; Schema: public; Owner: postgres -- COPY public.nd_experiment (nd_experiment_id, nd_geolocation_id, type_id, create_date) FROM stdin; \. -- -- Data for Name: nd_experiment_contact; Type: TABLE DATA; Schema: public; Owner: postgres -- COPY public.nd_experiment_contact (nd_experiment_contact_id, nd_experiment_id, contact_id) FROM stdin; \. -- -- Data for Name: nd_experiment_dbxref; Type: TABLE DATA; Schema: public; Owner: postgres -- COPY public.nd_experiment_dbxref (nd_experiment_dbxref_id, nd_experiment_id, dbxref_id) FROM stdin; \. -- -- Data for Name: nd_experiment_genotype; Type: TABLE DATA; Schema: public; Owner: postgres -- COPY public.nd_experiment_genotype (nd_experiment_genotype_id, nd_experiment_id, genotype_id) FROM stdin; \. -- -- Data for Name: nd_experiment_phenotype; Type: TABLE DATA; Schema: public; Owner: postgres -- COPY public.nd_experiment_phenotype (nd_experiment_phenotype_id, nd_experiment_id, phenotype_id) FROM stdin; \. -- -- Data for Name: nd_experiment_project; Type: TABLE DATA; Schema: public; Owner: postgres -- COPY public.nd_experiment_project (nd_experiment_project_id, project_id, nd_experiment_id) FROM stdin; \. -- -- Data for Name: nd_experiment_protocol; Type: TABLE DATA; Schema: public; Owner: postgres -- COPY public.nd_experiment_protocol (nd_experiment_protocol_id, nd_experiment_id, nd_protocol_id) FROM stdin; \. -- -- Data for Name: nd_experiment_pub; Type: TABLE DATA; Schema: public; Owner: postgres -- COPY public.nd_experiment_pub (nd_experiment_pub_id, nd_experiment_id, pub_id) FROM stdin; \. -- -- Data for Name: nd_experiment_stock; Type: TABLE DATA; Schema: public; Owner: postgres -- COPY public.nd_experiment_stock (nd_experiment_stock_id, nd_experiment_id, stock_id, type_id) FROM stdin; \. -- -- Data for Name: nd_experiment_stock_dbxref; Type: TABLE DATA; Schema: public; Owner: postgres -- COPY public.nd_experiment_stock_dbxref (nd_experiment_stock_dbxref_id, nd_experiment_stock_id, dbxref_id) FROM stdin; \. -- -- Data for Name: nd_experiment_stockprop; Type: TABLE DATA; Schema: public; Owner: postgres -- COPY public.nd_experiment_stockprop (nd_experiment_stockprop_id, nd_experiment_stock_id, type_id, value, rank) FROM stdin; \. -- -- Data for Name: nd_experimentprop; Type: TABLE DATA; Schema: public; Owner: postgres -- COPY public.nd_experimentprop (nd_experimentprop_id, nd_experiment_id, type_id, value, rank) FROM stdin; \. -- -- Data for Name: nd_geolocation; Type: TABLE DATA; Schema: public; Owner: postgres -- COPY public.nd_geolocation (nd_geolocation_id, description, latitude, longitude, geodetic_datum, altitude) FROM stdin; 24 Cornell Biotech 42.45345 -76.4735 \N 274 23 test_location 32.61359 -115.86428 \N 109 25 NA \N \N \N \N 26 [Computation] \N \N \N \N \. -- -- Data for Name: nd_geolocationprop; Type: TABLE DATA; Schema: public; Owner: postgres -- COPY public.nd_geolocationprop (nd_geolocationprop_id, nd_geolocation_id, type_id, value, rank) FROM stdin; 1 24 77155 United States 0 2 24 77156 USA 0 3 23 77155 United States 0 4 23 77156 USA 0 5 23 76440 134 0 8 24 78126 GHCND:USC00300331 0 9 24 76440 166 0 \. -- -- Data for Name: nd_protocol; Type: TABLE DATA; Schema: public; Owner: postgres -- COPY public.nd_protocol (nd_protocol_id, name, type_id, create_date, description) FROM stdin; \. -- -- Data for Name: nd_protocol_reagent; Type: TABLE DATA; Schema: public; Owner: postgres -- COPY public.nd_protocol_reagent (nd_protocol_reagent_id, nd_protocol_id, reagent_id, type_id) FROM stdin; \. -- -- Data for Name: nd_protocolprop; Type: TABLE DATA; Schema: public; Owner: postgres -- COPY public.nd_protocolprop (nd_protocolprop_id, nd_protocol_id, type_id, value, rank) FROM stdin; \. -- -- Data for Name: nd_reagent; Type: TABLE DATA; Schema: public; Owner: postgres -- COPY public.nd_reagent (nd_reagent_id, name, type_id, feature_id) FROM stdin; \. -- -- Data for Name: nd_reagent_relationship; Type: TABLE DATA; Schema: public; Owner: postgres -- COPY public.nd_reagent_relationship (nd_reagent_relationship_id, subject_reagent_id, object_reagent_id, type_id) FROM stdin; \. -- -- Data for Name: nd_reagentprop; Type: TABLE DATA; Schema: public; Owner: postgres -- COPY public.nd_reagentprop (nd_reagentprop_id, nd_reagent_id, type_id, value, rank) FROM stdin; \. -- -- Data for Name: organism; Type: TABLE DATA; Schema: public; Owner: postgres -- COPY public.organism (organism_id, abbreviation, genus, species, common_name, comment, genbank_taxon_id, sgn_organism_id, obsolete) FROM stdin; 6 U.triquetra Uncinia Uncinia triquetra \N \N \N \N \N 7 S.innota Satureja Satureja innota \N \N \N \N \N 8 D.118293 Dendrobium Dendrobium cf. primulinum TBG 118293 \N \N \N \N \N 9 C.thracica Centaurea Centaurea thracica \N \N \N \N \N 10 E.inerme Encholirium Encholirium inerme \N \N \N \N \N 11 L.angustifolia Lantana Lantana angustifolia \N \N \N \N \N 12 P.sellowianus Phyllanthus Phyllanthus sellowianus \N \N \N \N \N 13 I.amblyantha Indigofera Indigofera amblyantha \N \N \N \N \N 14 \N genus Myrica \N \N \N \N \N 15 S.oreophilus Symphoricarpos Symphoricarpos oreophilus mountain snowberry \N \N \N \N 16 \N subspecies Phalaenopsis amabilis subsp. rosenstromii \N \N \N \N \N 17 N.riparius Napeanthus Napeanthus riparius \N \N \N \N \N 18 M.verrucosum Myriophyllum Myriophyllum verrucosum \N \N \N \N \N 19 D.oblongifolia Dryobalanops Dryobalanops oblongifolia \N \N \N \N \N 20 \N genus Didymophysa \N \N \N \N \N 21 M.oxylaena Meryta Meryta oxylaena \N \N \N \N \N 22 F.pallens Ficinia Ficinia pallens \N \N \N \N \N 23 P.davisiana Podolepis Podolepis davisiana \N \N \N \N \N 24 A.edwardsiana Anemone Anemone edwardsiana \N \N \N \N \N 25 M.crassifolia Manulea Manulea crassifolia \N \N \N \N \N 26 H.minimum Heracleum Heracleum minimum \N \N \N \N \N 27 C.29-2 Cornus Cornus cf. canadensis Xiang and Fan 29-2 \N \N \N \N \N 28 I.chinensis Ixora Ixora chinensis \N \N \N \N \N 29 \N genus Mourera \N \N \N \N \N 30 P.fimbriata Prionostemma Prionostemma fimbriata \N \N \N \N \N 31 A.setosa Asperula Asperula setosa \N \N \N \N \N 32 W.praecox Weigela Weigela praecox \N \N \N \N \N 33 C.manampetsae Croton Croton manampetsae \N \N \N \N \N 34 M.diversipila Mimosa Mimosa diversipila \N \N \N \N \N 35 I.gunnisonii Ipomopsis Ipomopsis gunnisonii \N \N \N \N \N 36 A.latifolius Astragalus Astragalus latifolius \N \N \N \N \N 37 L.cinereum Lithospermum Lithospermum cinereum \N \N \N \N \N 38 B.curtipendula Bouteloua Bouteloua curtipendula sideoats grama \N \N \N \N 39 M.weigendiorum Macrocarpaea Macrocarpaea weigendiorum \N \N \N \N \N 40 C.philippinense Cinnamomum Cinnamomum philippinense \N \N \N \N \N 41 A.barrelieri Artemisia Artemisia barrelieri \N \N \N \N \N 42 M.psoralea Mimosa Mimosa psoralea \N \N \N \N \N 43 T.s.n. Tolumnia Tolumnia aff. variegata Hamilton s.n. \N \N \N \N \N 44 L.lopezioides Lopezia Lopezia lopezioides \N \N \N \N \N 45 C.oreophila Chionochloa Chionochloa oreophila \N \N \N \N \N 46 T.stayermarkii Trimezia Trimezia stayermarkii \N \N \N \N \N 47 \N genus Cephalostachyum \N \N \N \N \N 48 M.6892 Miconia Miconia cf. cuprea Moran 6892 \N \N \N \N \N 49 P.bakossiensis Psychotria Psychotria bakossiensis \N \N \N \N \N 50 T.planicaule Tetrastigma Tetrastigma planicaule \N \N \N \N \N 51 \N subspecies Nigella arvensis subsp. brevifolia \N \N \N \N \N 52 C.unilateralis Carex Carex unilateralis \N \N \N \N \N 53 T.calyculata Tofieldia Tofieldia calyculata \N \N \N \N \N 54 C.siderosticta Carex Carex siderosticta \N \N \N \N \N 55 P.erosus Pachyrhizus Pachyrhizus erosus jicama,potato-bean,yam-bean \N \N \N \N 56 D.berlandieri Dasylirion Dasylirion berlandieri \N \N \N \N \N 57 \N genus Normandiodendron \N \N \N \N \N 58 S.decipiens Siparuna Siparuna decipiens \N \N \N \N \N 59 C.scrobiculata Clusia Clusia scrobiculata \N \N \N \N \N 60 E.siderophloia Eucalyptus Eucalyptus siderophloia \N \N \N \N \N 61 L.MAG-2009 Lonchocarpus Lonchocarpus sp. MAG-2009 \N \N \N \N \N 62 S.Sspluis57 Sobralia Sobralia sp. Sspluis57 \N \N \N \N \N 63 \N subspecies Hippophae rhamnoides subsp. rhamnoides \N \N \N \N \N 64 \N varietas Downingia bicornuta var. picta \N \N \N \N \N 65 E.breviaristatus Elymus Elymus breviaristatus \N \N \N \N \N 66 P.1999.010-2 Prunus Prunus sp. Eschenz 1999.010-2 \N \N \N \N \N 67 A.microstachya Allocasuarina Allocasuarina microstachya \N \N \N \N \N 68 V.serratifolia Vicia Vicia serratifolia \N \N \N \N \N 69 C.submicrolepis Cyperus Cyperus submicrolepis \N \N \N \N \N 70 \N subspecies Reseda aucheri subsp. aucheri \N \N \N \N \N 71 R.californica Ruellia Ruellia californica \N \N \N \N \N 72 \N tribe Myxopyreae \N \N \N \N \N 73 M.7213 Maytenus Maytenus aff. obtusifolia Lombardi 7213 \N \N \N \N \N 74 \N genus Retanilla \N \N \N \N \N 75 A.drummondii Astragalus Astragalus drummondii \N \N \N \N \N 76 H.hemerocallidea Hypoxis Hypoxis hemerocallidea \N \N \N \N \N 77 \N genus Hydrocleys \N \N \N \N \N 78 R.vleibergensis Rhodocoma Rhodocoma vleibergensis \N \N \N \N \N 79 S.berlandieri Sphaerocardamum Sphaerocardamum berlandieri \N \N \N \N \N 80 A.argentina Aristolochia Aristolochia argentina \N \N \N \N \N 81 C.corinthius Croton Croton corinthius \N \N \N \N \N 82 F.arabica Fagonia Fagonia arabica \N \N \N \N \N 83 A.longifolia Arnica Arnica longifolia \N \N \N \N \N 84 P.sulcata Pictetia Pictetia sulcata \N \N \N \N \N 85 D.ursulae Dipcadi Dipcadi ursulae \N \N \N \N \N 86 \N genus Oncoba \N \N \N \N \N 87 C.lanceolata Crotalaria Crotalaria lanceolata \N \N \N \N \N 88 M.hypoleuca Macaranga Macaranga hypoleuca \N \N \N \N \N 89 A.velutinum Australopyrum Australopyrum velutinum \N \N \N \N \N 90 C.tessellata Chusquea Chusquea tessellata \N \N \N \N \N 91 E.planum Eryngium Eryngium planum \N \N \N \N \N 92 E.gymnocalycioides Euphorbia Euphorbia gymnocalycioides \N \N \N \N \N 93 S.parnassica Satureja Satureja parnassica \N \N \N \N \N 94 \N varietas Geonoma cuneata var. procumbens \N \N \N \N \N 95 S.cyperinus Scirpus Scirpus cyperinus \N \N \N \N \N 96 \N subspecies Pimelea ciliata subsp. ciliata \N \N \N \N \N 97 H.americanus Heliocarpus Heliocarpus americanus \N \N \N \N \N 98 T.ixioides Triteleia Triteleia ixioides \N \N \N \N \N 5137 \N genus Hyalea \N \N \N \N \N 99 H.02/238 Hieracium Hieracium cf. fuscescens Schuhwerk 02/238 \N \N \N \N \N 296 \N genus Echites \N \N \N \N \N 100 E.platycarpa Eysenhardtia Eysenhardtia platycarpa \N \N \N \N \N 101 C.nardina Carex Carex nardina \N \N \N \N \N 102 O.insidiator Osmoxylon Osmoxylon insidiator \N \N \N \N \N 103 H.olympicum Hypericum Hypericum olympicum \N \N \N \N \N 104 T.albidinervum Typhonium Typhonium albidinervum \N \N \N \N \N 105 E.condylocarpa Euphorbia Euphorbia condylocarpa \N \N \N \N \N 106 I.cremixora Ixora Ixora cremixora \N \N \N \N \N 107 B.mundtii Bupleurum Bupleurum mundtii \N \N \N \N \N 108 \N no rank unclassified Taraxacum \N \N \N \N \N 109 L.splendens Lehmanniella Lehmanniella splendens \N \N \N \N \N 110 \N genus Calotheca \N \N \N \N \N 111 I.dumortieri Isolatocereus Isolatocereus dumortieri \N \N \N \N \N 112 C.edule Cirsium Cirsium edule \N \N \N \N \N 113 A.DES-2002 Aralia Aralia sp. DES-2002 \N \N \N \N \N 114 A.erilavarum Arcytophyllum Arcytophyllum erilavarum \N \N \N \N \N 115 D.sibirica Digitalis Digitalis sibirica \N \N \N \N \N 116 C.globosus Cucumis Cucumis globosus \N \N \N \N \N 117 S.tomentosa Salvia Salvia tomentosa \N \N \N \N \N 118 S.urubambae Solanum Solanum urubambae \N \N \N \N \N 119 C.weyrichii Chrysanthemum Chrysanthemum weyrichii \N \N \N \N \N 120 P.guianensis Pouteria Pouteria guianensis \N \N \N \N \N 121 \N forma Haworthia reinwardtii f. reinwardtii \N \N \N \N \N 122 S.denudata Sophora Sophora denudata \N \N \N \N \N 123 C.roseoalba Chirita Chirita roseoalba \N \N \N \N \N 124 \N genus Saussurea \N \N \N \N \N 125 O.palmadora Opuntia Opuntia palmadora \N \N \N \N \N 126 \N genus Burmeistera \N \N \N \N \N 127 C.daralaghezica Cousinia Cousinia daralaghezica \N \N \N \N \N 128 T.lanuginosa Thymelaea Thymelaea lanuginosa \N \N \N \N \N 129 S.AK-2007 Schubertia Schubertia sp. 1 AK-2007 \N \N \N \N \N 130 P.orchidioides Pinguicula Pinguicula orchidioides \N \N \N \N \N 131 E.interstincta Eleocharis Eleocharis interstincta \N \N \N \N \N 132 E.suksdorfiana Eleocharis Eleocharis suksdorfiana \N \N \N \N \N 133 E.decaryi Euphorbia Euphorbia decaryi \N \N \N \N \N 134 A.bashanense Asarum Asarum bashanense \N \N \N \N \N 135 G.uncinata Genlisea Genlisea uncinata \N \N \N \N \N 136 L.trichosantha Lonicera Lonicera trichosantha \N \N \N \N \N 137 N.thorelii Nepenthes Nepenthes thorelii \N \N \N \N \N 138 D.huetii Draba Draba huetii \N \N \N \N \N 139 S.boninensis Symplocos Symplocos boninensis \N \N \N \N \N 140 R.binominatum Ribes Ribes binominatum trailing gooseberry \N \N \N \N 141 D.fisheri Dupontia Dupontia fisheri \N \N \N \N \N 142 V.media Viguiera Viguiera media \N \N \N \N \N 143 P.dentata Pultenaea Pultenaea dentata \N \N \N \N \N 144 N.oleander Nerium Nerium oleander common oleander,rose-bay \N \N \N \N 145 \N subspecies Erigeron thunbergii subsp. thunbergii \N \N \N \N \N 146 C.'robust' Clivia Clivia cf. gardenii 'robust' \N \N \N \N \N 147 P.cubensis Peperomia Peperomia cubensis \N \N \N \N \N 148 \N genus Casselia \N \N \N \N \N 149 N.sp. Nicotiana Nicotiana sp. \N \N \N \N \N 150 O.chaffeyi Opuntia Opuntia chaffeyi \N \N \N \N \N 151 E.polyanthum Epidendrum Epidendrum polyanthum \N \N \N \N \N 152 C.foliosa Cleome Cleome foliosa \N \N \N \N \N 153 S.cariensis Silene Silene cariensis \N \N \N \N \N 154 C.lancifolium Cymbidium Cymbidium lancifolium \N \N \N \N \N 155 T.rotundifolia Tylophora Tylophora rotundifolia \N \N \N \N \N 156 T.hypoglaucum Tetrastigma Tetrastigma hypoglaucum \N \N \N \N \N 157 D.merckii Dahlia Dahlia merckii bedding dahlia \N \N \N \N 158 A.oxymitra Alpinia Alpinia oxymitra \N \N \N \N \N 159 H.35492 Hermas Hermas sp. Esterhuysen 35492 \N \N \N \N \N 160 P.rostriflorus Penstemon Penstemon rostriflorus \N \N \N \N \N 161 \N genus Himatanthus \N \N \N \N \N 162 P.coriacea Pinzona Pinzona coriacea \N \N \N \N \N 163 J.alata Jacksonia Jacksonia alata \N \N \N \N \N 164 A.camansi Artocarpus Artocarpus camansi \N \N \N \N \N 165 \N genus Renealmia \N \N \N \N \N 166 L.19962309 Loxostigma Loxostigma sp. RBGE 19962309 \N \N \N \N \N 167 F.tristachya Ficinia Ficinia tristachya \N \N \N \N \N 168 F.arvernensis Festuca Festuca arvernensis \N \N \N \N \N 169 H.sabdariffa Hibiscus Hibiscus sabdariffa red-sorrel,roselle,sereni \N \N \N \N 170 S.laxiflora Steganthera Steganthera laxiflora \N \N \N \N \N 171 \N genus Tietkensia \N \N \N \N \N 172 \N genus Pamphalea \N \N \N \N \N 173 P.turbinata Psychotria Psychotria turbinata \N \N \N \N \N 174 Q.linearis Quinqueremulus Quinqueremulus linearis \N \N \N \N \N 175 P.longirostris Pisonia Pisonia longirostris \N \N \N \N \N 176 A.reshadensis Astragalus Astragalus reshadensis \N \N \N \N \N 177 A.capensis Anisodontea Anisodontea capensis \N \N \N \N \N 178 \N tribe Halimolobeae \N \N \N \N \N 179 H.ulmifolia Heppiella Heppiella ulmifolia \N \N \N \N \N 180 M.guadalupensis Melothria Melothria guadalupensis \N \N \N \N \N 181 P.holdridgeanum Piper Piper holdridgeanum \N \N \N \N \N 182 \N subspecies Daucus carota subsp. maximus \N \N \N \N \N 183 \N genus Boquila \N \N \N \N \N 184 C.unisexualis Carex Carex unisexualis \N \N \N \N \N 185 S.2107' Schradera Schradera sp. 'Andersson 2107' \N \N \N \N \N 186 P.gigantea Pinguicula Pinguicula gigantea \N \N \N \N \N 187 B.wilsonii Berchemiella Berchemiella wilsonii \N \N \N \N \N 188 P.hirtum Phrynium Phrynium hirtum \N \N \N \N \N 189 C.keiskei Convallaria Convallaria keiskei \N \N \N \N \N 190 A.mucronata Anatherostipa Anatherostipa mucronata \N \N \N \N \N 191 D.elongata Dalechampia Dalechampia elongata \N \N \N \N \N 192 P.sibthorpifolium Pelargonium Pelargonium sibthorpifolium \N \N \N \N \N 193 L.gabunense Leonardendron Leonardendron gabunense \N \N \N \N \N 194 E.dayaoshanensis Eriobotrya Eriobotrya dayaoshanensis \N \N \N \N \N 195 P.horrida Pentaschistis Pentameris horrida \N \N \N \N \N 196 H.strobilaceum Halocnemum Halocnemum strobilaceum \N \N \N \N \N 197 \N genus Entandrophragma \N \N \N \N \N 198 D.townsonii Dracophyllum Dracophyllum townsonii \N \N \N \N \N 199 \N genus Alloschemone \N \N \N \N \N 200 P.smithii Pimpinella Pimpinella smithii \N \N \N \N \N 201 F.s.n. Ficus Ficus sp. Soltis s.n. \N \N \N \N \N 202 P.longipetiolata Pristimera Pristimera longipetiolata \N \N \N \N \N 203 R.stokoei Raspalia Raspalia stokoei \N \N \N \N \N 204 C.rockii Castanopsis Castanopsis rockii \N \N \N \N \N 205 \N genus Tristemma \N \N \N \N \N 206 M.hemenostigma Miconia Miconia hemenostigma \N \N \N \N \N 207 C.fruticulosus Croton Croton fruticulosus \N \N \N \N \N 208 S.watermeyeri Strumaria Strumaria watermeyeri \N \N \N \N \N 209 A.swazica Acacia Acacia swazica \N \N \N \N \N 210 T.7212 Tachigali Tachigali sp. Clarke 7212 \N \N \N \N \N 211 L.neglecta Lapeirousia Lapeirousia neglecta \N \N \N \N \N 212 \N varietas Boechera breweri var. shastaensis \N \N \N \N \N 213 \N genus Molineria \N \N \N \N \N 214 \N genus Parapachygone \N \N \N \N \N 215 C.kaloides Carex Carex kaloides \N \N \N \N \N 216 C.escobariana Chondroscaphe Chondroscaphe escobariana \N \N \N \N \N 217 \N genus Kanakomyrtus \N \N \N \N \N 218 H.subalata Hopea Hopea subalata \N \N \N \N \N 219 C.laxa Carex Carex laxa \N \N \N \N \N 220 \N genus Alniphyllum \N \N \N \N \N 221 S.scheffleri Strombosia Strombosia scheffleri \N \N \N \N \N 222 A.weirii Alloplectus Alloplectus weirii \N \N \N \N \N 223 P.chiangmaiensis Paracladopus Paracladopus chiangmaiensis \N \N \N \N \N 224 A.gigantirostratus Astragalus Astragalus gigantirostratus \N \N \N \N \N 225 L.waianaeensis Lysimachia Lysimachia waianaeensis \N \N \N \N \N 226 A.rumelica Anthemis Anthemis rumelica \N \N \N \N \N 227 D.graminoides Dendrochilum Dendrochilum graminoides \N \N \N \N \N 228 C.cytisoides Chamaecrista Chamaecrista cytisoides \N \N \N \N \N 229 A.cylindrocarpon Aspidosperma Aspidosperma cylindrocarpon \N \N \N \N \N 230 G.130 Guatteria Guatteria sp. Pirie et al. 130 \N \N \N \N \N 231 \N varietas Coffea liberica var. liberica \N \N \N \N \N 232 C.obtusifolia Cecropia Cecropia obtusifolia guarumbo,trumpet-tree \N \N \N \N 233 \N tribe Vanguerieae \N \N \N \N \N 234 \N genus Ellisia \N \N \N \N \N 235 E.violifolium Eutrema Eutrema violifolium \N \N \N \N \N 236 B.cordata Boesenbergia Boesenbergia cordata \N \N \N \N \N 237 T.heckelii Tieghemella Tieghemella heckelii \N \N \N \N \N 238 \N family Trochodendraceae \N \N \N \N \N 239 G.tisoniana Gagea Gagea tisoniana \N \N \N \N \N 240 C.95085-2 Clematis Clematis sp. Qiu 95085-2 \N \N \N \N \N 241 P.dasycarpus Phaseolus Phaseolus dasycarpus \N \N \N \N \N 242 S.nervomarginata Smilax Smilax nervomarginata \N \N \N \N \N 243 R.caespitosum Rytidosperma Rytidosperma caespitosum \N \N \N \N \N 244 C.cinereum Cyanthillium Cyanthillium cinereum \N \N \N \N \N 245 \N subspecies Lupinus albus subsp. albus \N \N \N \N \N 246 \N genus Glycosmis \N \N \N \N \N 247 S.boliviense Solanum Solanum boliviense \N \N \N \N \N 248 A.sieversianus Astragalus Astragalus sieversianus \N \N \N \N \N 249 S.falsus Scirpus Scirpus falsus \N \N \N \N \N 250 K.thoroldiana Kengyilia Kengyilia thoroldiana \N \N \N \N \N 251 R.augusta Rhopaloblaste Rhopaloblaste augusta \N \N \N \N \N 252 C.scandens Cobaea Cobaea scandens \N \N \N \N \N 253 S.incanescens Salsola Salsola incanescens \N \N \N \N \N 254 G.indicum Goniocaulon Goniocaulon indicum \N \N \N \N \N 255 T.prophetarum Trifolium Trifolium prophetarum \N \N \N \N \N 256 \N genus Cynoglottis \N \N \N \N \N 257 T.zeylanica Trichadenia Trichadenia zeylanica \N \N \N \N \N 258 A.ownbeyana Argemone Argemone ownbeyana \N \N \N \N \N 259 C.campylopoda Camelinopsis Camelinopsis campylopoda \N \N \N \N \N 260 D.psilurus Dorstenia Dorstenia psilurus \N \N \N \N \N 261 P.wangii Primula Primula wangii \N \N \N \N \N 262 I.brexioides Ixerba Ixerba brexioides \N \N \N \N \N 263 B.balansae Bridelia Bridelia balansae \N \N \N \N \N 264 S.heterophyllum Sium Sium heterophyllum \N \N \N \N \N 265 E.grandiflorum Epiblema Epiblema grandiflorum \N \N \N \N \N 266 L.ruprechtiana Lonicera Lonicera ruprechtiana \N \N \N \N \N 267 \N subspecies Leucaena macrophylla subsp. istmensis \N \N \N \N \N 268 S.nitraria Salsola Salsola nitraria \N \N \N \N \N 269 E.piscatoria Euphorbia Euphorbia piscatoria \N \N \N \N \N 270 M.sinuata Matthiola Matthiola sinuata \N \N \N \N \N 271 B.integrifolia Banksia Banksia integrifolia \N \N \N \N \N 272 M.gracilis Mentha Mentha x gracilis Scotch spearmint,ginger mint,red mint \N \N \N \N 273 A.breviloba Ajania Ajania breviloba \N \N \N \N \N 274 R.tschonoskii Rhododendron Rhododendron tschonoskii \N \N \N \N \N 275 M.erubescens Melichrus Melichrus erubescens \N \N \N \N \N 276 D.micrantha Dransfieldia Dransfieldia micrantha \N \N \N \N \N 277 E.barrelieri Euphorbia Euphorbia barrelieri \N \N \N \N \N 278 C.speciosissimum Clerodendrum Clerodendrum speciosissimum \N \N \N \N \N 279 \N genus Conostephium \N \N \N \N \N 280 B.pinguin Bromelia Bromelia pinguin \N \N \N \N \N 281 M.kirkii Maerua Maerua kirkii \N \N \N \N \N 282 S.alpestre Schizoglossum Schizoglossum alpestre \N \N \N \N \N 283 I.umbellatum Iochroma Iochroma umbellatum \N \N \N \N \N 284 \N genus Multidentia \N \N \N \N \N 285 C.molle Calligonum Calligonum molle \N \N \N \N \N 286 M.welwitschii Momordica Momordica welwitschii \N \N \N \N \N 287 M.discobola Mimosa Mimosa discobola \N \N \N \N \N 288 S.phlomoides Solanum Solanum phlomoides \N \N \N \N \N 289 L.oleifolium Leucospermum Leucospermum oleifolium \N \N \N \N \N 290 P.suberosa Polyalthia Polyalthia suberosa \N \N \N \N \N 291 \N genus Azorina \N \N \N \N \N 292 \N subspecies Ranunculus gmelinii subsp. gmelinii \N \N \N \N \N 293 O.integrifolia Oreithales Oreithales integrifolia \N \N \N \N \N 294 I.nephrocarpa Indigofera Indigofera nephrocarpa \N \N \N \N \N 295 C.togoensis Coffea Coffea togoensis \N \N \N \N \N 297 P.GHR507 Paspalum Paspalum aff. jujuyense GHR507 \N \N \N \N \N 298 \N genus Winklera \N \N \N \N \N 299 M.caroliniensis Morella Morella caroliniensis \N \N \N \N \N 300 E.cylindricus Enneapogon Enneapogon cylindricus \N \N \N \N \N 301 C.georgianum Clinopodium Clinopodium georgianum \N \N \N \N \N 302 C.caespitosa Calandrinia Calandrinia caespitosa \N \N \N \N \N 303 G.keithii Globba Globba keithii \N \N \N \N \N 304 S.fernandeziana Sophora Sophora fernandeziana \N \N \N \N \N 305 D.cauliflora Duguetia Duguetia cauliflora \N \N \N \N \N 306 D.oblongata Draba Draba oblongata \N \N \N \N \N 307 S.maxonii Simira Simira maxonii \N \N \N \N \N 308 M.louiseae Mesembryanthemum Mesembryanthemum louiseae \N \N \N \N \N 309 A.moschata Amberboa Amberboa moschata \N \N \N \N \N 310 S.lancea Searsia Searsia lancea African sumac,karee \N \N \N \N 311 \N genus Cathissa \N \N \N \N \N 312 I.inundata Isolepis Isolepis inundata \N \N \N \N \N 313 G.gibbosum Gymnocalycium Gymnocalycium gibbosum \N \N \N \N \N 314 A.minus Allium Allium minus \N \N \N \N \N 315 H.milfordiae Helichrysum Helichrysum milfordiae \N \N \N \N \N 316 L.danielsii Lepidium Lepidium danielsii \N \N \N \N \N 317 E.coerulans Euphorbia Euphorbia coerulans \N \N \N \N \N 318 \N varietas Pedicularis gracilis var. gracilis \N \N \N \N \N 319 P.wilsonii Phalaenopsis Phalaenopsis wilsonii \N \N \N \N \N 320 H.henricksonii Halimolobos Halimolobos henricksonii \N \N \N \N \N 321 D.brevistyla Dombeya Dombeya brevistyla \N \N \N \N \N 322 E.argentinum Erythroxylum Erythroxylum argentinum \N \N \N \N \N 323 \N genus Lachnostachys \N \N \N \N \N 324 M.domestica Malus Malus x domestica apple,apple tree,cultivated apple \N \N \N \N 325 G.robustissimum Grandiphyllum Grandiphyllum robustissimum \N \N \N \N \N 326 S.leucopogon Solanum Solanum leucopogon \N \N \N \N \N 327 O.fulvescens Ocotea Ocotea fulvescens \N \N \N \N \N 328 \N subspecies Frangula alnus subsp. baetica \N \N \N \N \N 329 P.granulicaule Psilocaulon Psilocaulon granulicaule \N \N \N \N \N 330 A.formosa Astilbe Astilbe formosa \N \N \N \N \N 331 \N subspecies Carex muricata subsp. lamprocarpa \N \N \N \N \N 332 \N genus Albraunia \N \N \N \N \N 333 I.13227 Iris Iris cf. baldshuanica Chase 13227 \N \N \N \N \N 334 Q.hondae Quercus Quercus hondae \N \N \N \N \N 335 C.dipladeniiflorum Crioceras Crioceras dipladeniiflorum \N \N \N \N \N 336 C.cryptacanthum Chlorocalymma Chlorocalymma cryptacanthum \N \N \N \N \N 337 S.pauciflora Siparuna Siparuna pauciflora \N \N \N \N \N 338 C.kiotense Chrysosplenium Chrysosplenium kiotense \N \N \N \N \N 339 \N genus Antonia \N \N \N \N \N 340 C.H5_1 Castilleja Castilleja sp. H5_1 \N \N \N \N \N 341 M.obovata Microcorys Microcorys obovata \N \N \N \N \N 342 C.gorodkovianum Cerastium Cerastium gorodkovianum tundra chickweed \N \N \N \N 343 \N genus Azima \N \N \N \N \N 344 T.stevenii Taraxacum Taraxacum stevenii \N \N \N \N \N 345 C.lanatus Cenchrus Cenchrus lanatus \N \N \N \N \N 346 P.copaifera Prioria Prioria copaifera \N \N \N \N \N 347 E.sieberi Eucalyptus Eucalyptus sieberi \N \N \N \N \N 348 M.sieboldii Magnolia Magnolia sieboldii Oyama magnolia \N \N \N \N 349 A.polystachya Ampelocissus Ampelocissus polystachya \N \N \N \N \N 350 P.aurea Paradrymonia Paradrymonia aurea \N \N \N \N \N 351 \N subspecies Cynara cardunculus subsp. cardunculus \N \N \N \N \N 352 O.albida Orthanthera Orthanthera albida \N \N \N \N \N 353 F.lusitanica Fritillaria Fritillaria lusitanica \N \N \N \N \N 354 \N no rank environmental samples Taxonomy:664958 \N \N \N \N \N 355 R.stagnalis Ranunculus Ranunculus stagnalis \N \N \N \N \N 356 H.adenophyllum Heterophragma Heterophragma adenophyllum \N \N \N \N \N 357 Z.arborescens Zieria Zieria arborescens \N \N \N \N \N 358 C.argyliifolia Cristaria Cristaria argyliifolia \N \N \N \N \N 359 S.hispida Smilax Smilax hispida bristly greenbrier \N \N \N \N 360 P.YB2 Polyceratocarpus Polyceratocarpus sp. YB2 \N \N \N \N \N 361 N.monticola Nonea Nonea monticola \N \N \N \N \N 362 A.chamaemelifolia Achillea Achillea chamaemelifolia \N \N \N \N \N 363 M.gertii Myrceugenia Myrceugenia gertii \N \N \N \N \N 364 P.tenella Plagiantha Plagiantha tenella \N \N \N \N \N 365 P.nutkaensis Puccinellia Puccinellia nutkaensis \N \N \N \N \N 366 C.ciliata Cryptocoryne Cryptocoryne ciliata \N \N \N \N \N 367 B.fuchsioides Begonia Begonia fuchsioides \N \N \N \N \N 368 \N genus Tadehagi \N \N \N \N \N 369 V.hookeri Veronica Veronica pulvinaris x Veronica hookeri \N \N \N \N \N 370 \N genus Tamarix \N \N \N \N \N 371 P.aucheri Pulicaria Pulicaria aucheri \N \N \N \N \N 372 B.didyma Bauhinia Bauhinia didyma \N \N \N \N \N 373 S.lineare Sedum Sedum lineare \N \N \N \N \N 374 F.merxmuelleri Felicia Felicia merxmuelleri \N \N \N \N \N 375 S.carpii Stoeberia Stoeberia carpii \N \N \N \N \N 376 \N varietas Cypripedium parviflorum var. parviflorum \N \N \N \N \N 377 A.imbricata Atriplex Atriplex imbricata \N \N \N \N \N 378 M.tenuifolia Meryta Meryta tenuifolia \N \N \N \N \N 379 \N genus Cinnamodendron \N \N \N \N \N 380 G.calcaratus Gladiolus Gladiolus calcaratus \N \N \N \N \N 381 E.juarezensis Echeveria Echeveria juarezensis \N \N \N \N \N 382 K.caespitosa Kohautia Kohautia caespitosa \N \N \N \N \N 383 E.najas Egeria Egeria najas \N \N \N \N \N 384 \N genus Camptoloma \N \N \N \N \N 385 E.ixoroides Exostema Exostema ixoroides \N \N \N \N \N 386 W.minutiflora Weinmannia Weinmannia minutiflora \N \N \N \N \N 387 P.mundula Portulaca Portulaca mundula \N \N \N \N \N 388 A.macroura Aristolochia Aristolochia macroura \N \N \N \N \N 389 E.uzmuk Euphorbia Euphorbia uzmuk \N \N \N \N \N 390 D.pedleyi Diploglottis Diploglottis pedleyi \N \N \N \N \N 391 C.princeps Castelnavia Castelnavia princeps \N \N \N \N \N 5138 \N genus Peristeria \N \N \N \N \N 392 A.umbrinum Arisaema Arisaema umbrinum \N \N \N \N \N 393 P.elephantipes Panicum Panicum elephantipes \N \N \N \N \N 394 P.blattariformis Primula Primula blattariformis \N \N \N \N \N 395 \N genus Pongamiopsis \N \N \N \N \N 396 P.rubricaule Peucedanum Peucedanum rubricaule \N \N \N \N \N 397 \N genus Anthericopsis \N \N \N \N \N 398 P.clemensii Pholidota Pholidota clemensii \N \N \N \N \N 399 L.cyrtobotrya Lespedeza Lespedeza cyrtobotrya \N \N \N \N \N 400 D.ogea Daniellia Daniellia ogea \N \N \N \N \N 401 E.laotica Eurya Eurya laotica \N \N \N \N \N 402 \N genus Dictyocaryum \N \N \N \N \N 403 \N genus Disperis \N \N \N \N \N 404 \N genus Elachyptera \N \N \N \N \N 405 C.belepensis Codia Codia belepensis \N \N \N \N \N 406 S.sulcata Setaria Setaria sulcata \N \N \N \N \N 407 L.trichodes Leucaena Leucaena trichodes arabisco,beranero,chamba,platanito \N \N \N \N 408 S.tripolium Skiatophytum Skiatophytum tripolium \N \N \N \N \N 409 E.tortirama Euphorbia Euphorbia tortirama \N \N \N \N \N 410 G.pinifolia Gnidia Gnidia pinifolia \N \N \N \N \N 411 S.nummularia Salix Salix nummularia \N \N \N \N \N 412 S.portillae Solenidium Solenidium portillae \N \N \N \N \N 413 \N genus Neoshirakia \N \N \N \N \N 414 P.distichophylla Pentameris sect. Pentameris Pentameris distichophylla \N \N \N \N \N 415 A.lenense Alyssum Alyssum lenense \N \N \N \N \N 416 D.laxiflora Derris Derris laxiflora \N \N \N \N \N 417 C.detestans Chenopodium Chenopodium detestans \N \N \N \N \N 418 C.macropetala Cupaniopsis Cupaniopsis macropetala \N \N \N \N \N 419 C.perrieri Cleistanthus Cleistanthus perrieri \N \N \N \N \N 420 H.nervosa Hopea Hopea nervosa \N \N \N \N \N 421 K.chandeei Kamettia Kamettia chandeei \N \N \N \N \N 422 C.whitneyi Carex Carex whitneyi \N \N \N \N \N 423 A.subulata Asclepias Asclepias albicans x Asclepias subulata \N \N \N \N \N 424 S.fallax Sida Sida fallax \N \N \N \N \N 425 B.spanostachya Bashania Bashania spanostachya \N \N \N \N \N 426 \N varietas Pseudopanax colensoi var. colensoi \N \N \N \N \N 427 T.JK4024 unclassified Taraxacum Taraxacum sp. JK4024 \N \N \N \N \N 428 A.apertiflora Alstroemeria Alstroemeria apertiflora \N \N \N \N \N 429 T.purpurea Tambourissa Tambourissa purpurea \N \N \N \N \N 430 \N genus Fuchsia \N \N \N \N \N 431 T.polymorphum Trifolium Trifolium polymorphum peanut clover \N \N \N \N 432 T.JK4021 unclassified Taraxacum Taraxacum (sect. Mongolica) sp. JK4021 \N \N \N \N \N 433 \N genus Physochlaina \N \N \N \N \N 434 M.floribunda Myrciaria Myrciaria floribunda \N \N \N \N \N 435 F.floridensis Fosterella Fosterella floridensis \N \N \N \N \N 436 A.macrostachyum Arthrocnemum Arthrocnemum macrostachyum \N \N \N \N \N 437 A.lewallei Amorphophallus Amorphophallus lewallei \N \N \N \N \N 438 L.purpureum Lomatophyllum Lomatophyllum purpureum \N \N \N \N \N 439 \N varietas Perilla frutescens var. crispa \N \N \N \N \N 440 \N genus Otopappus \N \N \N \N \N 441 P.diversifolius Potamogeton Potamogeton diversifolius \N \N \N \N \N 442 P.561 Peponidium Peponidium sp. Razafimandimbison 561 \N \N \N \N \N 443 P.bissetii Phyllostachys Phyllostachys bissetii \N \N \N \N \N 444 C.SH-2010 Coreopsis Coreopsis sp. SH-2010 \N \N \N \N \N 445 C.aurea Conostylis Conostylis aurea \N \N \N \N \N 446 G.SH-2010 Gynerium Gynerium sp. SH-2010 \N \N \N \N \N 447 F.s.n. Fouquieria Fouquieria sp. Anderberg s.n. \N \N \N \N \N 448 S.jacobii Schiedea Schiedea jacobii \N \N \N \N \N 449 C.prairea Carex Carex prairea \N \N \N \N \N 450 P.fraternus Paepalanthus Paepalanthus fraternus \N \N \N \N \N 451 O.HD1167 Ocotea Ocotea sp. 1 HD1167 \N \N \N \N \N 452 D.urceolata Diplycosia Diplycosia urceolata \N \N \N \N \N 453 R.tuxtlensis Ruellia Ruellia tuxtlensis \N \N \N \N \N 454 C.64455 Coulterophytum Coulterophytum sp. Breedlove & Anderson 64455 \N \N \N \N \N 455 M.fugax Moraea Moraea fugax \N \N \N \N \N 456 C.crocea Crepis Crepis crocea \N \N \N \N \N 457 B.obovata Brachyscome Brachyscome obovata Brachycome obovata \N \N \N \N 458 \N varietas Azadirachta indica var. indica \N \N \N \N \N 459 R.cygnorum Rulingia Rulingia cygnorum \N \N \N \N \N 460 \N genus Bryantiella \N \N \N \N \N 461 V.philippica Viola Viola philippica \N \N \N \N \N 462 C.stauracantha Cryosophila Cryosophila stauracantha \N \N \N \N \N 463 P.pubera Pyrularia Pyrularia pubera buffalo nut,oil nut,rabbitwood \N \N \N \N 464 C.pentandra Callicarpa Callicarpa pentandra \N \N \N \N \N 465 T.311 unclassified Taraxacum Taraxacum (sect. Tibetana) sp. 311 \N \N \N \N \N 466 D.cruciata Draba Draba cruciata Mineral King draba \N \N \N \N 467 E.parishii Ericameria Ericameria parishii \N \N \N \N \N 468 P.wulfeniana Primula Primula wulfeniana \N \N \N \N \N 469 P.mariana Psychotria Psychotria mariana \N \N \N \N \N 470 V.apula Valeriana Valeriana apula \N \N \N \N \N 471 D.markusii Dactylorhiza Dactylorhiza markusii \N \N \N \N \N 472 H.hasseltii Hedychium Hedychium hasseltii \N \N \N \N \N 473 G.spicata Gonzalagunia Gonzalagunia spicata \N \N \N \N \N 474 \N subspecies Deverra denudata subsp. denudata \N \N \N \N \N 475 S.grandis Stipa Stipa grandis \N \N \N \N \N 476 T.venusta Tillandsia Tillandsia venusta \N \N \N \N \N 477 R.delcastilloi Rodriguezia Rodriguezia delcastilloi \N \N \N \N \N 478 \N genus Vachellia \N \N \N \N \N 479 P.tenuis Phyllopentas Phyllopentas tenuis \N \N \N \N \N 480 P.campanum Piper Piper campanum \N \N \N \N \N 481 O.ambigua Oxalis Oxalis ambigua \N \N \N \N \N 482 A.wyssianum Androcymbium Androcymbium wyssianum \N \N \N \N \N 483 P.s.n. Pterichis Pterichis sp. Szlachetko s.n. \N \N \N \N \N 484 M.frangula Maurocenia Maurocenia frangula \N \N \N \N \N 485 C.sukiensis Caragana Caragana sukiensis \N \N \N \N \N 486 C.402aa Clusia Clusia sp. HG 402aa \N \N \N \N \N 487 \N genus Philoglossa \N \N \N \N \N 488 H.crassipes Helosciadium Helosciadium crassipes \N \N \N \N \N 489 O.bacaba Oenocarpus Oenocarpus bacaba \N \N \N \N \N 490 T.403aa Tovomitopsis Tovomitopsis sp. HG 403aa \N \N \N \N \N 491 C.brevinoda Chimonobambusa Chimonobambusa brevinoda \N \N \N \N \N 492 P.FZ-2009 Populus Populus sp. FZ-2009 \N \N \N \N \N 493 N.tephrophyllus Neuracanthus Neuracanthus tephrophyllus \N \N \N \N \N 494 A.napellus Aconitum Aconitum napellus \N \N \N \N \N 495 D.donnell-smithii Dicraspidia Dicraspidia donnell-smithii \N \N \N \N \N 496 A.ormocarpoides Acacia Acacia ormocarpoides \N \N \N \N \N 497 P.cardiothallis Pleurothallis Pleurothallis cardiothallis \N \N \N \N \N 498 F.ionanthera Fernandezia Fernandezia ionanthera \N \N \N \N \N 499 H.17132 Hoya Hoya sp. Chase 17132 \N \N \N \N \N 500 P.microsperma Parodia Parodia microsperma \N \N \N \N \N 501 S.peckiana Sanicula Sanicula peckiana Peck's blacksnakeroot \N \N \N \N 502 G.tinctoria Genista Genista tinctoria dyer's greenweed \N \N \N \N 503 F.molokaiensis Festuca Festuca molokaiensis \N \N \N \N \N 504 C.lappacea Centotheca Centotheca lappacea \N \N \N \N \N 505 \N subspecies Penaea cneorum subsp. ruscifolia \N \N \N \N \N 506 M.forrestii Meconopsis Meconopsis forrestii \N \N \N \N \N 507 \N subspecies Genista stenopetala subsp. sericea \N \N \N \N \N 508 P.californica Phalaris Phalaris californica \N \N \N \N \N 509 T.villosus Tetrapogon Tetrapogon villosus \N \N \N \N \N 510 \N no rank Rhamnaceae incertae sedis \N \N \N \N \N 511 H.viviparum Hylotelephium Hylotelephium viviparum \N \N \N \N \N 512 M.callista Mandevilla Mandevilla callista \N \N \N \N \N 513 C.albopunctatum Combretum Combretum albopunctatum \N \N \N \N \N 514 H.lindmanioides Hechtia Hechtia lindmanioides \N \N \N \N \N 515 S.sacculatum Satyrium Satyrium sacculatum \N \N \N \N \N 516 Q.rehderiana Quercus Quercus rehderiana \N \N \N \N \N 517 H.weddelliana Halenia Halenia weddelliana \N \N \N \N \N 518 O.1236a Oligochaetochilus Oligochaetochilus aff. roensis DE Murfet 1236a \N \N \N \N \N 519 \N varietas Adenia firingalavensis var. firingalavensis \N \N \N \N \N 520 A.fallax Alchemilla Alchemilla fallax \N \N \N \N \N 521 \N no rank Apium graveolens Rapaceum Group celeriac,celery knob \N \N \N \N 522 G.telembina Garcibarrigoa Garcibarrigoa telembina \N \N \N \N \N 523 B.coxii Berberis Berberis coxii \N \N \N \N \N 524 \N genus Bennettiodendron \N \N \N \N \N 525 P.diguetii Pereskiopsis Pereskiopsis diguetii \N \N \N \N \N 526 C.DK-2009 Carapa Carapa sp. 24 DK-2009 \N \N \N \N \N 527 C.al. Canthium Canthium sp. 3 Noyes et al. \N \N \N \N \N 528 P.bellardii Plantago Plantago bellardii \N \N \N \N \N 529 S.calycosa Stenogyne Stenogyne calycosa \N \N \N \N \N 530 \N no rank malvids \N \N \N \N \N 531 C.palmeri Ceanothus Ceanothus palmeri \N \N \N \N \N 532 \N genus Lignariella \N \N \N \N \N 533 P.baccatum Picrodendron Picrodendron baccatum \N \N \N \N \N 534 \N tribe Malcolmieae \N \N \N \N \N 535 G.abyssinicus Gomphocarpus Gomphocarpus abyssinicus \N \N \N \N \N 536 P.gracilipes Phyllanthus Phyllanthus gracilipes \N \N \N \N \N 537 T.donnell-smithii Tabebuia Tabebuia donnell-smithii primavera,white-mahogany \N \N \N \N 538 A.pulcherrimus Aetheopappus Aetheopappus pulcherrimus \N \N \N \N \N 539 S.balfourii Saxifraga Saxifraga balfourii \N \N \N \N \N 540 E.setosa Eriochloa Eriochloa setosa \N \N \N \N \N 541 S.africana Sparrmannia Sparrmannia africana \N \N \N \N \N 542 \N genus Ceropegia \N \N \N \N \N 543 D.pittosporoides Denhamia Denhamia pittosporoides \N \N \N \N \N 544 \N genus Moricandia \N \N \N \N \N 545 S.trifolium Solanum Solanum trifolium \N \N \N \N \N 546 V.connata Valeriana Valeriana connata \N \N \N \N \N 547 \N subspecies Trisetum spicatum subsp. ovatipaniculatum \N \N \N \N \N 548 \N genus Prospero \N \N \N \N \N 549 A.BG Acriopsis Acriopsis sp. Wien BG \N \N \N \N \N 550 G.glabra Guarea Guarea glabra \N \N \N \N \N 551 \N subspecies Begonia grandis subsp. sinensis \N \N \N \N \N 552 D.demareei Draba Draba demareei \N \N \N \N \N 553 P.sickenbergeri Pancratium Pancratium sickenbergeri \N \N \N \N \N 554 N.minuta Noaea Noaea minuta \N \N \N \N \N 555 G.colpicola Globba Globba colpicola \N \N \N \N \N 556 O.nervosa Oldenlandia Oldenlandia nervosa \N \N \N \N \N 557 \N genus Pilidiostigma \N \N \N \N \N 558 M.macrophylla Marsdenia Marsdenia macrophylla \N \N \N \N \N 559 C.pellita Carex Carex pellita \N \N \N \N \N 560 \N genus Paracautleya \N \N \N \N \N 561 V.cinerea Veronica Veronica cinerea \N \N \N \N \N 562 \N subspecies Helictotrichon setaceum subsp. petzense \N \N \N \N \N 563 C.inobsepta Clidemia Clidemia inobsepta \N \N \N \N \N 564 F.s.n. Frondaria Frondaria sp. Szlachetko s.n. \N \N \N \N \N 565 A.neovernicosa Acacia Acacia neovernicosa \N \N \N \N \N 566 U.gallii Ulex Ulex gallii \N \N \N \N \N 567 A.sample environmental samples Taxonomy:417453 Asteraceae environmental sample \N \N \N \N \N 568 \N subspecies Delphinium carolinianum subsp. vimineum \N \N \N \N \N 569 \N genus Howellia \N \N \N \N \N 570 \N genus Lophospermum \N \N \N \N \N 571 \N genus Brachycorythis \N \N \N \N \N 572 D.schippii Dalechampia Dalechampia schippii \N \N \N \N \N 573 N.tenuifolia Neoholstia Neoholstia tenuifolia \N \N \N \N \N 574 \N tribe Alberteae \N \N \N \N \N 575 R.mallotum Rhododendron Rhododendron mallotum \N \N \N \N \N 576 S.boonei Strychnos Strychnos boonei \N \N \N \N \N 577 O.recurva Oberonia Oberonia recurva \N \N \N \N \N 578 C.dispalata Carex Carex dispalata \N \N \N \N \N 579 S.coccinea Salvia Salvia coccinea blood sage \N \N \N \N 580 L.sempervirens Ligustrum Ligustrum sempervirens \N \N \N \N \N 581 A.adunca Acacia Acacia adunca Wallangarra wattle \N \N \N \N 582 O.rudis Olearia Olearia rudis \N \N \N \N \N 583 A.siliquosus Astragalus Astragalus siliquosus \N \N \N \N \N 2900 \N genus Cornukaempferia \N \N \N \N \N 584 E.merita Eurybia Eurybia merita subalpine aster \N \N \N \N 585 D.monbuttensis Diospyros Diospyros monbuttensis \N \N \N \N \N 586 \N genus Gymnanthemum \N \N \N \N \N 587 S.apiculata Swartzia Swartzia apiculata \N \N \N \N \N 588 A.sabiifolia Actinidia Actinidia sabiifolia \N \N \N \N \N 589 G.denudatum Gymnocalycium Gymnocalycium denudatum \N \N \N \N \N 590 D.pulchella Draba Draba pulchella \N \N \N \N \N 591 \N genus Lepturus \N \N \N \N \N 592 \N genus Trapa \N \N \N \N \N 593 C.globosus Cyathocalyx Cyathocalyx globosus \N \N \N \N \N 594 \N genus Marmoritis \N \N \N \N \N 595 B.mauritanicum Bunium Bunium mauritanicum \N \N \N \N \N 596 E.litensis Echinorhyncha Echinorhyncha litensis \N \N \N \N \N 597 H.desertorum Hyoscyamus Hyoscyamus desertorum \N \N \N \N \N 598 \N varietas Ceanothus crassifolius var. crassifolius \N \N \N \N \N 599 S.fruticosa Sweetia Sweetia fruticosa \N \N \N \N \N 600 C.wawrae Cyrtandra Cyrtandra wawrae rockface cyrtandra \N \N \N \N 601 F.macrodiscus Ferocactus Ferocactus macrodiscus \N \N \N \N \N 602 \N genus Berkheyopsis \N \N \N \N \N 603 I.procumbens Iberis Iberis procumbens \N \N \N \N \N 604 S.corinthiaca Silene Silene corinthiaca \N \N \N \N \N 605 D.metel Datura Datura metel Hindu datura \N \N \N \N 606 A.pachypetala Anaxagorea Anaxagorea pachypetala \N \N \N \N \N 607 N.brachyphylla Nassella Nassella brachyphylla \N \N \N \N \N 608 M.wiensii Mimulus Mimulus wiensii \N \N \N \N \N 609 S.tudununggae Solanum Solanum tudununggae \N \N \N \N \N 610 C.cordifolia Claytonia Claytonia cordifolia \N \N \N \N \N 611 H.macrocephalus Haplopappus Haplopappus macrocephalus \N \N \N \N \N 612 P.cruciata Polygala Polygala cruciata drumheads \N \N \N \N 613 C.prolifera Conostylis Conostylis prolifera \N \N \N \N \N 614 D.bernieri Dalechampia Dalechampia bernieri \N \N \N \N \N 615 H.azurea Halopegia Halopegia azurea \N \N \N \N \N 616 P.rockii Phyllostegia Phyllostegia rockii \N \N \N \N \N 617 F.hermonis Fritillaria Fritillaria hermonis \N \N \N \N \N 618 B.elliottii Bulbophyllum Bulbophyllum elliottii \N \N \N \N \N 619 P.polycnemoides Polygonum Polygonum polycnemoides \N \N \N \N \N 620 C.tetragonoloba Cyamopsis Cyamopsis tetragonoloba cluster bean,guar \N \N \N \N 621 C.leptosiphon Cyrtanthus Cyrtanthus leptosiphon \N \N \N \N \N 622 H.wasatchensis Herrickia Herrickia wasatchensis Wasatch aster \N \N \N \N 623 V.hispidula Veronica Veronica hispidula \N \N \N \N \N 624 S.cuniculina Strychnos Strychnos cuniculina \N \N \N \N \N 625 C.4996 Conchocarpus Conchocarpus sp. Pirani 4996 \N \N \N \N \N 626 P.warshenewskiana Primula Primula warshenewskiana \N \N \N \N \N 627 P.pseudofasciculata Persea Persea pseudofasciculata \N \N \N \N \N 628 A.hordeacea Aristida Aristida hordeacea \N \N \N \N \N 629 G.capitulata Gaertnera Gaertnera capitulata \N \N \N \N \N 630 \N genus Taurantha \N \N \N \N \N 631 F.2181 Ferula Ferula sp. GAZI 2181 \N \N \N \N \N 632 \N genus Trachystoma \N \N \N \N \N 633 P.ernestii Psychotria Psychotria ernestii \N \N \N \N \N 634 E.prenanthoidea Emilia Emilia prenanthoidea \N \N \N \N \N 635 D.microphylla Dionysia Dionysia microphylla \N \N \N \N \N 636 B.tenella Brachyachne Brachyachne tenella \N \N \N \N \N 637 F.polita Ficus Ficus polita \N \N \N \N \N 638 B.praemorsa Babiana Babiana praemorsa \N \N \N \N \N 639 M.tenellus Mimulus Mimulus tenellus \N \N \N \N \N 640 Y.ambositrensis Yushania Yushania ambositrensis \N \N \N \N \N 641 H.ringens Hygrophila Hygrophila ringens \N \N \N \N \N 642 C.acicularis Chionochloa Chionochloa acicularis \N \N \N \N \N 643 H.stenopetala Hechtia Hechtia stenopetala \N \N \N \N \N 644 G.longifolius Gonocarpus Gonocarpus longifolius \N \N \N \N \N 645 H.stoloniflorum Hieracium Hieracium stoloniflorum \N \N \N \N \N 646 A.alismatifolia Acaulimalva Acaulimalva alismatifolia \N \N \N \N \N 647 \N genus Sanrafaelia \N \N \N \N \N 648 P.kunthii Penstemon Penstemon kunthii \N \N \N \N \N 649 T.esquirolii Thamnocharis Thamnocharis esquirolii \N \N \N \N \N 650 \N genus Sarcophyton \N \N \N \N \N 651 H.okamotoi Hemigraphis Hemigraphis okamotoi \N \N \N \N \N 652 P.microcarpus Pandanus Pandanus microcarpus \N \N \N \N \N 653 O.luteola Oxalis Oxalis luteola \N \N \N \N \N 654 S.dichotoma Swertia Swertia dichotoma \N \N \N \N \N 655 \N genus Mitostemma \N \N \N \N \N 656 P.serrulata Pyrus Pyrus serrulata \N \N \N \N \N 657 M.atrata Microtis Microtis atrata \N \N \N \N \N 658 P.micrococca Psychotria Psychotria micrococca \N \N \N \N \N 659 \N genus Boykinia \N \N \N \N \N 660 D.fruticulosa Dendroarabis Dendroarabis fruticulosa \N \N \N \N \N 661 R.nephelogenes Ranunculus Ranunculus nephelogenes \N \N \N \N \N 662 \N genus Brachystachyum \N \N \N \N \N 663 C.mangense Chloroleucon Chloroleucon mangense \N \N \N \N \N 664 \N family Boraginaceae borage family \N \N \N \N 665 C.IT-2010f Cucumis Cucumis sp. IT-2010f \N \N \N \N \N 666 M.uraguensis Mimosa Mimosa uraguensis \N \N \N \N \N 667 C.baladensis Cucumis Cucumis baladensis \N \N \N \N \N 668 E.melanocarpum Elaeodendron Elaeodendron melanocarpum \N \N \N \N \N 669 D.yeageri Dendrobium Dendrobium yeageri \N \N \N \N \N 670 D.filifolium Dracophyllum Dracophyllum filifolium \N \N \N \N \N 671 C.megaloxycarpa Citrus Citrus megaloxycarpa \N \N \N \N \N 672 A.millettii Adinandra Adinandra millettii \N \N \N \N \N 673 O.bungeana Orobanche Orobanche bungeana \N \N \N \N \N 674 \N genus Rupertia \N \N \N \N \N 675 S.vagans Selenicereus Selenicereus vagans \N \N \N \N \N 676 V.aurea Verticordia Verticordia aurea \N \N \N \N \N 677 E.hirsuta Euphorbia Euphorbia hirsuta \N \N \N \N \N 678 C.pubescens Campomanesia Campomanesia pubescens \N \N \N \N \N 679 C.meleagris Ceropegia Ceropegia meleagris \N \N \N \N \N 680 T.gracilipes Trachelospermum Trachelospermum gracilipes \N \N \N \N \N 2999 \N genus Psacalium \N \N \N \N \N 681 C.drummondii Cephalipterum Cephalipterum drummondii \N \N \N \N \N 682 S.schiffneri Sinningia Sinningia schiffneri \N \N \N \N \N 683 C.follicularis Cephalotus Cephalotus follicularis \N \N \N \N \N 684 \N subspecies Thymelaea tartonraira subsp. argentea \N \N \N \N \N 685 \N genus Schlechteranthus \N \N \N \N \N 686 W.sylvicola Weinmannia Weinmannia sylvicola \N \N \N \N \N 687 B.attenuata Babiana Babiana attenuata \N \N \N \N \N 688 I.somala Isoleucas Isoleucas somala \N \N \N \N \N 689 G.africana Galenia Galenia africana \N \N \N \N \N 690 L.filii Leontodon Leontodon filii \N \N \N \N \N 691 A.rosenbachianum Allium Allium rosenbachianum \N \N \N \N \N 692 P.glabra Pultenaea Pultenaea glabra \N \N \N \N \N 693 C.aquatica Cabomba Cabomba aquatica \N \N \N \N \N 694 C.monbeigiana Carpinus Carpinus monbeigiana \N \N \N \N \N 695 P.alba Prosopis Prosopis alba algarrobo blanco \N \N \N \N 696 T.greenei Tuctoria Tuctoria greenei \N \N \N \N \N 697 P.ruthii Pityopsis Pityopsis ruthii \N \N \N \N \N 698 \N subspecies Zea mays subsp. mexicana Mexican teosinte,annual teosinte,teosinte \N \N \N \N 699 \N subspecies Acacia longifolia subsp. sophorae \N \N \N \N \N 700 B.stapffii Battandiera Battandiera stapffii \N \N \N \N \N 701 F.xanthoxyla Flindersia Flindersia xanthoxyla long-jack,yellowwood ash \N \N \N \N 702 F.duriaei Filago Filago duriaei \N \N \N \N \N 703 A.dunnii Aria Aria dunnii \N \N \N \N \N 704 T.caudatum Tetrastigma Tetrastigma caudatum \N \N \N \N \N 705 N.1245 Nasa Nasa cf. formosissima 1245 \N \N \N \N \N 706 H.cavaleriei Hemiboea Hemiboea cavaleriei \N \N \N \N \N 707 A.napiforme Aconitum Aconitum napiforme \N \N \N \N \N 708 C.yunnanense Craibiodendron Craibiodendron yunnanense \N \N \N \N \N 709 C.aperta Cyanicula Cyanicula aperta \N \N \N \N \N 710 E.szovitsii Echinops Echinops szovitsii \N \N \N \N \N 711 P.hookeriana Papilionanthe Papilionanthe hookeriana \N \N \N \N \N 712 A.sieversiana Artemisia Artemisia sieversiana \N \N \N \N \N 713 \N varietas Sclerolaena bicornis var. bicornis \N \N \N \N \N 714 \N genus Millingtonia \N \N \N \N \N 715 M.subulatus Mallotus Mallotus subulatus \N \N \N \N \N 716 H.indicum Heliotropium Heliotropium indicum Indian heliotrope,alacrancillo,turnsole \N \N \N \N 717 A.oligantha Aristida Aristida oligantha \N \N \N \N \N 718 \N genus Nopalea \N \N \N \N \N 719 \N genus Curtia \N \N \N \N \N 720 P.pinoi Peperomia Peperomia pinoi \N \N \N \N \N 721 H.ponticum Heracleum Heracleum ponticum \N \N \N \N \N 722 C.kitaibelii Cardamine Cardamine kitaibelii \N \N \N \N \N 723 C.BWvE-2008 Croton Croton aff. yucatanensis BWvE-2008 \N \N \N \N \N 724 D.neomexicana Dalea Dalea neomexicana downy prairie-clover \N \N \N \N 725 O.H595 Ophiopogon Ophiopogon sp. H595 \N \N \N \N \N 726 C.runssoroensis Carex Carex runssoroensis \N \N \N \N \N 727 O.blanchonii Ochrothallus Ochrothallus blanchonii \N \N \N \N \N 728 H.patulum Hypericum Hypericum patulum \N \N \N \N \N 729 \N genus Ceratostema \N \N \N \N \N 730 M.insignis Monnina Monnina insignis \N \N \N \N \N 731 C.pendulus Cocculus Cocculus pendulus \N \N \N \N \N 732 H.schelkovnikovii Heracleum Heracleum schelkovnikovii \N \N \N \N \N 733 C.labiatus Cyrtanthus Cyrtanthus labiatus \N \N \N \N \N 734 B.295 Bathysa Bathysa cf. cuspidata Antonelli & Andersson 295 \N \N \N \N \N 735 G.glabra Goodenia Goodenia glabra \N \N \N \N \N 736 \N genus Caryomene \N \N \N \N \N 737 P.dumetorum Pterocephalus Pterocephalus dumetorum \N \N \N \N \N 738 A.bacquei Adenocarpus Adenocarpus bacquei \N \N \N \N \N 739 \N genus Chlorogalum \N \N \N \N \N 740 S.elegans Securigera Securigera elegans \N \N \N \N \N 741 A.oliverianus Anisopappus Anisopappus oliverianus \N \N \N \N \N 742 L.kolbeana Lichtensteinia Lichtensteinia kolbeana \N \N \N \N \N 743 V.utile Viburnum Viburnum utile \N \N \N \N \N 744 L.floribundus Leptosiphon Leptosiphon floribundus \N \N \N \N \N 745 C.glauca Craspedia Craspedia glauca \N \N \N \N \N 746 \N genus Pentanisia \N \N \N \N \N 747 N.lingula Niphogeton Niphogeton lingula \N \N \N \N \N 748 I.1709 Indigofera Indigofera sp. Barker 1709 \N \N \N \N \N 749 A.martinicensis Aniseia Aniseia martinicensis \N \N \N \N \N 750 L.acutiflorum Laccosperma Laccosperma acutiflorum \N \N \N \N \N 751 N.zuluense Nectaropetalum Nectaropetalum zuluense \N \N \N \N \N 752 G.antipoda Gaultheria Gaultheria antipoda \N \N \N \N \N 753 L.pseudoracemosus Leymus Leymus pseudoracemosus \N \N \N \N \N 754 C.muskingumensis Carex Carex muskingumensis \N \N \N \N \N 755 \N genus Trukia \N \N \N \N \N 756 A.turbinata Aesculus Aesculus turbinata Japanese horse-chestnut \N \N \N \N 757 M.deplanchei Morinda Morinda deplanchei \N \N \N \N \N 758 F.mackayi Forstera Forstera mackayi \N \N \N \N \N 759 E.macdonnellii Eremophila Eremophila macdonnellii \N \N \N \N \N 760 N.setchellii Nicotiana Nicotiana setchellii \N \N \N \N \N 761 R.atlanticum Rhodanthemum Rhodanthemum atlanticum \N \N \N \N \N 762 \N genus Kaisupeea \N \N \N \N \N 763 R.thyrsoidea Renealmia Renealmia thyrsoidea \N \N \N \N \N 764 A.parviflora Adenoncos Adenoncos parviflora \N \N \N \N \N 765 S.rautanenii Schinziophyton Schinziophyton rautanenii \N \N \N \N \N 766 M.alpestris Myosotis Myosotis alpestris alpine forget-me-not \N \N \N \N 767 D.JCP-2003 Disporum Disporum sp. JCP-2003 \N \N \N \N \N 768 S.kankaoensis Schima Schima kankaoensis \N \N \N \N \N 769 \N genus Maundia \N \N \N \N \N 770 L.holosericea Lachemilla Lachemilla holosericea \N \N \N \N \N 771 S.Ar114 Schismatoglottis Schismatoglottis sp. Ar114 \N \N \N \N \N 772 L.lanceolata Lonicera Lonicera lanceolata \N \N \N \N \N 773 S.poeppigii Strychnos Strychnos poeppigii \N \N \N \N \N 774 N.galbaniopse Notobubon Notobubon galbaniopse \N \N \N \N \N 775 R.grandiflora Rhipsalis Rhipsalis grandiflora \N \N \N \N \N 776 Q.buckleyi Quercus Quercus buckleyi \N \N \N \N \N 777 R.bagobonum Rhododendron Rhododendron bagobonum \N \N \N \N \N 778 S.pedicellatus Styrax Styrax pedicellatus \N \N \N \N \N 779 S.capsiciforme Solanum Solanum capsiciforme \N \N \N \N \N 780 A.sample environmental samples Taxonomy:417447 Aristolochiaceae environmental sample \N \N \N \N \N 781 A.longiligulatum Aframomum Aframomum longiligulatum \N \N \N \N \N 782 A.basiphylla Aglaia Aglaia basiphylla \N \N \N \N \N 783 A.TJSW-2011 Artabotrys Artabotrys sp. TJSW-2011 \N \N \N \N \N 784 M.lankesteri Maxillaria Maxillaria lankesteri \N \N \N \N \N 785 C.organensis Croton Croton organensis \N \N \N \N \N 786 H.appendiculata Hampea Hampea appendiculata \N \N \N \N \N 787 L.adamsii Lisianthius Lisianthius adamsii \N \N \N \N \N 788 \N genus Bernardia \N \N \N \N \N 789 M.minkweiensis Machilus Machilus minkweiensis \N \N \N \N \N 790 G.repens Grevillea Grevillea repens \N \N \N \N \N 791 G.crassinervis Gymnadenia Gymnadenia crassinervis \N \N \N \N \N 792 P.hylophila Peperomia Peperomia hylophila \N \N \N \N \N 793 \N genus Pogonolobus \N \N \N \N \N 794 V.hirta Viola Viola hirta \N \N \N \N \N 795 R.carina Ruprechtia Ruprechtia carina \N \N \N \N \N 796 S.stilpnophylla Schefflera Schefflera stilpnophylla \N \N \N \N \N 797 \N varietas Allium wallichii var. platyphyllum \N \N \N \N \N 798 \N genus Trembleya \N \N \N \N \N 799 C.spinosa Chloracantha Chloracantha spinosa \N \N \N \N \N 800 D.novoguineensis Dryadodaphne Dryadodaphne novoguineensis grey sassafras \N \N \N \N 801 L.multiflorum Lolium Lolium multiflorum Italian ryegrass \N \N \N \N 802 \N forma Cinnamomum burmannii f. heyneanum \N \N \N \N \N 803 M.maxima Muhlenbergia Muhlenbergia maxima \N \N \N \N \N 804 O.angolensis Oldenlandia Oldenlandia angolensis \N \N \N \N \N 805 \N varietas Sarracenia purpurea var. montana \N \N \N \N \N 806 E.library unclassified Eucalyptus Eucalyptus spp. mixed library \N \N \N \N \N 807 R.rudis Rhadinothamnus Rhadinothamnus rudis \N \N \N \N \N 808 P.SH-2010 Pyrostria Pyrostria sp. SH-2010 \N \N \N \N \N 809 A.celastroides Amphorogyne Amphorogyne celastroides \N \N \N \N \N 810 \N genus Pseudomuscari \N \N \N \N \N 811 S.ghiesbreghtii Simsia Simsia ghiesbreghtii \N \N \N \N \N 812 S.SYW-2010d Schismatoglottis Schismatoglottis sp. SYW-2010d \N \N \N \N \N 813 B.trichophylla Bactris Bactris trichophylla \N \N \N \N \N 814 B.clidemioides Boehmeria Boehmeria clidemioides \N \N \N \N \N 815 N.alata Naregamia Naregamia alata \N \N \N \N \N 816 P.lutea Paeonia Paeonia lutea \N \N \N \N \N 817 \N genus Tricyclandra \N \N \N \N \N 818 L.dianthiflorus Linanthus Linanthus dianthiflorus fringed linanthus \N \N \N \N 819 G.cordifolium Glaucosciadium Glaucosciadium cordifolium \N \N \N \N \N 820 E.chalisea Endlicheria Endlicheria chalisea \N \N \N \N \N 821 \N genus Foeniculum \N \N \N \N \N 822 \N genus Montrichardia \N \N \N \N \N 823 H.diandra Hemichroa Hemichroa diandra \N \N \N \N \N 824 A.miaoshanicum Acer Acer miaoshanicum \N \N \N \N \N 825 \N genus Myrmecodia \N \N \N \N \N 826 \N genus Cyperus \N \N \N \N \N 827 B.meridana Bletia Bletia meridana \N \N \N \N \N 828 P.sempervirens Pentaglottis Pentaglottis sempervirens \N \N \N \N \N 829 E.pectinata Eremosyne Eremosyne pectinata \N \N \N \N \N 830 D.scottiana Dichrostachys Dichrostachys scottiana \N \N \N \N \N 831 S.minutuliflorum Syzygium Syzygium minutuliflorum \N \N \N \N \N 832 \N genus Ossaea \N \N \N \N \N 833 D.caucanus Dendropanax Dendropanax caucanus \N \N \N \N \N 834 F.jansii Ficus Ficus jansii \N \N \N \N \N 835 P.palustris Pseudosindora Pseudosindora palustris \N \N \N \N \N 836 \N genus Astonia \N \N \N \N \N 837 C.micrantha Clermontia Clermontia micrantha \N \N \N \N \N 838 \N varietas Fallopia japonica var. japonica \N \N \N \N \N 839 \N genus Lasiopetalum \N \N \N \N \N 840 C.nuttallii Calochortus Calochortus nuttallii sego lily \N \N \N \N 841 M.integrifolia Matthiola Matthiola integrifolia \N \N \N \N \N 842 \N genus Rumex \N \N \N \N \N 843 D.neglecta Disa Disa neglecta \N \N \N \N \N 844 \N varietas Euphorbia celastroides var. kaenana \N \N \N \N \N 845 P.nyctaginoides Plowmania Plowmania nyctaginoides \N \N \N \N \N 846 \N genus Hesperoxiphion \N \N \N \N \N 847 C.morelosana Cordia Cordia morelosana \N \N \N \N \N 848 O.elata Oenothera Oenothera elata \N \N \N \N \N 849 \N genus Cervaria \N \N \N \N \N 850 L.canescens Langebergia Langebergia canescens \N \N \N \N \N 851 C.corymbosa Carlina Carlina corymbosa \N \N \N \N \N 852 S.hoffmannii Spathacanthus Spathacanthus hoffmannii \N \N \N \N \N 853 \N family Connaraceae \N \N \N \N \N 854 T.madagascariensis Tristellateia Tristellateia madagascariensis \N \N \N \N \N 855 P.subcordata Persea Persea subcordata \N \N \N \N \N 856 O.stenopetala Oxalis Oxalis stenopetala \N \N \N \N \N 857 P.SKJ8Jan99 Pandanus Pandanus sp. SKJ8Jan99 \N \N \N \N \N 858 C.grevei Cedrelopsis Cedrelopsis grevei \N \N \N \N \N 859 \N subspecies Disa harveyana subsp. harveyana \N \N \N \N \N 860 A.tortuosum Aconogonon Aconogonon tortuosum \N \N \N \N \N 861 J.J003 Jaltomata Jaltomata sp. J003 \N \N \N \N \N 862 P.quassioides Picrasma Picrasma quassioides \N \N \N \N \N 863 C.approximata Cuscuta Cuscuta approximata \N \N \N \N \N 864 N.menziesii Nothofagus Nothofagus menziesii \N \N \N \N \N 865 L.karelinianum Lepidium Lepidium karelinianum \N \N \N \N \N 866 \N varietas Triteleia grandiflora var. grandiflora \N \N \N \N \N 867 L.juniperinus Leucopogon Leucopogon juniperinus \N \N \N \N \N 868 A.arcticum Anthoxanthum Anthoxanthum arcticum \N \N \N \N \N 869 C.fissuricola Carex Carex fissuricola \N \N \N \N \N 870 A.austrosibiricus Astragalus Astragalus austrosibiricus \N \N \N \N \N 871 C.cheiranthifolia Camissonia Camissonia cheiranthifolia beach suncup \N \N \N \N 872 H.bisecta Harnackia Harnackia bisecta \N \N \N \N \N 873 D.bradei Dendrophorbium Dendrophorbium bradei \N \N \N \N \N 874 P.carpenteri Physalis Physalis carpenteri \N \N \N \N \N 875 E.pumicicola Euphorbia Euphorbia pumicicola \N \N \N \N \N 876 L.cretica Lomelosia Lomelosia cretica \N \N \N \N \N 877 S.himalaica Stipa Stipa himalaica \N \N \N \N \N 878 M.carnea Mammillaria Mammillaria carnea \N \N \N \N \N 879 \N genus Chrysanthoglossum \N \N \N \N \N 880 V.compacta Vantanea Vantanea compacta \N \N \N \N \N 881 A.mariannensis Artocarpus Artocarpus mariannensis dugdug \N \N \N \N 882 P.nitida Potentilla Potentilla nitida \N \N \N \N \N 883 \N genus Heldreichia \N \N \N \N \N 884 C.coronata Cousinia Cousinia coronata \N \N \N \N \N 885 \N genus Briggsia \N \N \N \N \N 886 N.whitei Niemeyera Niemeyera whitei \N \N \N \N \N 887 I.crassiflora Indosasa Indosasa crassiflora \N \N \N \N \N 888 D.lawsonii Dimeria Dimeria lawsonii \N \N \N \N \N 889 C.ciliata Cranichis Cranichis ciliata \N \N \N \N \N 890 M.galaxia Moraea Moraea galaxia \N \N \N \N \N 891 S.involucratus Senecio Senecio involucratus \N \N \N \N \N 892 C.erecta Curculigo Curculigo erecta \N \N \N \N \N 893 M.jensii Macrocarpaea Macrocarpaea jensii \N \N \N \N \N 894 S.dasyphylla Stipa Stipa dasyphylla \N \N \N \N \N 895 V.austrokiusianum Vincetoxicum Vincetoxicum austrokiusianum \N \N \N \N \N 896 C.hupehensis Crataegus Crataegus hupehensis \N \N \N \N \N 897 F.caloglossa Fanninia Fanninia caloglossa \N \N \N \N \N 898 L.cantelovii Lewisia Lewisia cantelovii \N \N \N \N \N 899 \N genus Comolia \N \N \N \N \N 900 T.robustum Tripterospermum Tripterospermum robustum \N \N \N \N \N 901 T.latinum Trifolium Trifolium latinum \N \N \N \N \N 902 A.volkensii Alchemilla Alchemilla volkensii \N \N \N \N \N 903 T.959 Tetraclis Tetraclis cf. clusiifolia RNF 959 \N \N \N \N \N 904 A.inaequilatera Acacia Acacia inaequilatera \N \N \N \N \N 905 S.mollis Scaevola Scaevola mollis \N \N \N \N \N 906 N.leiogyne Nissolia Nissolia leiogyne \N \N \N \N \N 907 \N genus Elliottia \N \N \N \N \N 908 \N varietas Platymiscium trinitatis var. duckei \N \N \N \N \N 909 C.abyssinica Cineraria Cineraria abyssinica \N \N \N \N \N 910 P.officinalis Paeonia Paeonia officinalis \N \N \N \N \N 911 C.subtubulata Cyphia Cyphia subtubulata \N \N \N \N \N 912 S.pumila Setaria Setaria pumila \N \N \N \N \N 913 \N varietas Vincetoxicum sublanceolatum var. sublanceolatum \N \N \N \N \N 914 E.acuminatum Epimedium Epimedium acuminatum \N \N \N \N \N 915 \N family Moraceae mulberry family \N \N \N \N 916 M.bolusii Muraltia Muraltia bolusii \N \N \N \N \N 917 D.pernettyoides Disterigma Disterigma pernettyoides \N \N \N \N \N 918 L.cooperi Lycium Lycium cooperi peach thorn \N \N \N \N 919 C.1472 Carpinus Carpinus sp. Tibet 1472 \N \N \N \N \N 920 S.keckii Sidalcea Sidalcea keckii \N \N \N \N \N 921 B.quercifolia Banksia Banksia quercifolia \N \N \N \N \N 922 M.mystax Mammillaria Mammillaria mystax \N \N \N \N \N 923 C.prionitis Coleataenia Coleataenia prionitis \N \N \N \N \N 924 \N genus Triniochloa \N \N \N \N \N 925 E.imbricata Elytraria Elytraria imbricata \N \N \N \N \N 926 S.puniceum Symphyotrichum Symphyotrichum puniceum \N \N \N \N \N 927 Z.990231 Zeltnera Zeltnera sp. 990231 \N \N \N \N \N 928 S.sinuata Salpiglossis Salpiglossis sinuata painted tongue \N \N \N \N 929 R.tiliifolia Rapona Rapona tiliifolia \N \N \N \N \N 930 \N genus Baileya \N \N \N \N \N 931 M.hibiscifolia Montanoa Montanoa hibiscifolia \N \N \N \N \N 932 S.fusiformis Scaphyglottis Scaphyglottis fusiformis \N \N \N \N \N 933 O.brachiata Olea Olea brachiata \N \N \N \N \N 934 \N genus Urodon \N \N \N \N \N 935 P.godefroyae Paphiopedilum Paphiopedilum godefroyae \N \N \N \N \N 936 C.minutum Colchicum Colchicum minutum \N \N \N \N \N 937 F.velata Fimbristylis Fimbristylis velata \N \N \N \N \N 938 \N genus Antimima \N \N \N \N \N 939 P.austrotexana Pomaria Pomaria austrotexana \N \N \N \N \N 940 S.palmeri Schizocarpum Schizocarpum palmeri \N \N \N \N \N 941 C.borjae Centaurea Centaurea borjae \N \N \N \N \N 942 L.lanceolata Lecythis Lecythis lanceolata \N \N \N \N \N 943 L.cunninghamii Lysiphyllum Lysiphyllum cunninghamii \N \N \N \N \N 944 E.albiflora Eschweilera Eschweilera albiflora \N \N \N \N \N 945 I.odorata Iberis Iberis odorata \N \N \N \N \N 946 S.incurvum Solanum Solanum incurvum \N \N \N \N \N 947 \N subspecies Cycnium tubulosum subsp. montanum \N \N \N \N \N 948 \N subspecies Hesperostipa comata subsp. intermedia \N \N \N \N \N 949 G.dumosa Garcinia Garcinia dumosa \N \N \N \N \N 950 B.FS1651 Bulbophyllum Bulbophyllum sp. FS1651 \N \N \N \N \N 951 W.mucronata Woodia Woodia mucronata \N \N \N \N \N 952 S.subnivalis Scilla Scilla subnivalis \N \N \N \N \N 953 S.didymobotrya Senna Senna didymobotrya candelabra-tree \N \N \N \N 954 P.annua Psathyrotes Psathyrotes annua \N \N \N \N \N 955 S.oxyphyllum Solanum Solanum oxyphyllum \N \N \N \N \N 956 L.8117 Leptostylis Leptostylis sp. Veillon 8117 \N \N \N \N \N 957 U.phleoides Uncinia Uncinia phleoides \N \N \N \N \N 958 M.rigidula Medicago Medicago rigidula \N \N \N \N \N 959 D.cavillieri Doronicum Doronicum cavillieri \N \N \N \N \N 960 L.glandulosus Lisianthius Lisianthius glandulosus \N \N \N \N \N 961 C.feltonii Calandrinia Calandrinia feltonii \N \N \N \N \N 962 E.vallis-mortae Euphorbia Euphorbia vallis-mortae \N \N \N \N \N 963 \N subspecies Ononis pusilla subsp. saxicola \N \N \N \N \N 964 H.oreadica Hortia Hortia oreadica \N \N \N \N \N 965 T.utriculosum Tribolium Tribolium utriculosum \N \N \N \N \N 966 G.austroafricanum Gnaphalium Gnaphalium austroafricanum \N \N \N \N \N 967 M.heterophyllum Myriophyllum Myriophyllum heterophyllum \N \N \N \N \N 968 \N genus Palisota \N \N \N \N \N 969 \N genus Caucalis \N \N \N \N \N 970 J.sagittata Jumellea Jumellea sagittata \N \N \N \N \N 971 C.segetalis Cota Cota segetalis \N \N \N \N \N 3874 \N genus Leucanthemopsis \N \N \N \N \N 972 R.pulchrum Rytidosperma Rytidosperma pulchrum \N \N \N \N \N 973 F.rubiginosa Ficus Ficus rubiginosa Port Jackson fig,littleleaf fig \N \N \N \N 974 \N subspecies Euryops transvaalensis subsp. setilobus \N \N \N \N \N 975 C.washingtoniana Claytonia Claytonia washingtoniana \N \N \N \N \N 976 M.epruinosa Manihot Manihot epruinosa \N \N \N \N \N 977 C.RAH-2007 Centaurea Centaurea sp. RAH-2007 \N \N \N \N \N 978 G.kolakovskyi Gentiana Gentiana kolakovskyi \N \N \N \N \N 979 T.biglandulosa Tylophora Tylophora biglandulosa \N \N \N \N \N 980 R.malacocarpa Randia Randia malacocarpa \N \N \N \N \N 981 P.serratifolia Passiflora Passiflora serratifolia \N \N \N \N \N 982 H.boutignyanum Hedysarum Hedysarum boutignyanum \N \N \N \N \N 983 L.hercodonta Lockhartia Lockhartia hercodonta \N \N \N \N \N 984 D.bomanii Dendrophorbium Dendrophorbium bomanii \N \N \N \N \N 985 C.dregeana Cliffortia Cliffortia dregeana \N \N \N \N \N 986 P.barbigerum Paphiopedilum Paphiopedilum barbigerum \N \N \N \N \N 987 P.tristis Pedicularis Pedicularis tristis \N \N \N \N \N 988 \N genus Syngonanthus shoe-buttons \N \N \N \N 989 T.patulum Thesium Thesium patulum \N \N \N \N \N 990 G.americana Ginoria Ginoria americana \N \N \N \N \N 991 D.longiflora Dolichopentas Dolichopentas longiflora \N \N \N \N \N 992 P.OE3C0141 Pouteria Pouteria sp. OE3C0141 \N \N \N \N \N 993 M.jasminiflora Massonia Massonia jasminiflora \N \N \N \N \N 994 \N genus Captaincookia \N \N \N \N \N 995 J.regelii Juncus Juncus regelii \N \N \N \N \N 996 A.pechuelii Adenolobus Adenolobus pechuelii \N \N \N \N \N 997 \N varietas Horkelia daucifolia var. caruifolia \N \N \N \N \N 998 \N genus Juania \N \N \N \N \N 999 Z.martinii Zeltnera Zeltnera martinii \N \N \N \N \N 1000 \N genus Eragrostis \N \N \N \N \N 1001 A.roccatii Alchemilla Alchemilla roccatii \N \N \N \N \N 1002 P.tenuifolia Psychotria Psychotria tenuifolia \N \N \N \N \N 1003 S.polyantha Senna Senna polyantha \N \N \N \N \N 1004 A.tonduzii Aechmea Aechmea tonduzii \N \N \N \N \N 1005 R.eudoxum Rhododendron Rhododendron eudoxum \N \N \N \N \N 1006 O.obliquifolia Oxalis Oxalis obliquifolia \N \N \N \N \N 1007 D.BGB-2009 Dalechampia Dalechampia aff. ipomoeifolia BGB-2009 \N \N \N \N \N 1008 S.striata Struthiola Struthiola striata \N \N \N \N \N 1009 S.multisetus Schoenoplectus Schoenoplectus multisetus \N \N \N \N \N 1010 \N genus Wallichia \N \N \N \N \N 1011 B.lasiocarpa Boechera Boechera lasiocarpa \N \N \N \N \N 1012 \N genus Eberhardtia \N \N \N \N \N 1013 D.subumbellata Draba Draba subumbellata parasol draba \N \N \N \N 1014 C.uraiana Castanopsis Castanopsis uraiana \N \N \N \N \N 1015 B.siccacaudata Begonia Begonia siccacaudata \N \N \N \N \N 1016 E.myrianthum Epimedium Epimedium myrianthum \N \N \N \N \N 1017 S.tetrodonta Salvia Salvia tetrodonta \N \N \N \N \N 1018 S.alata Strobilanthes Strobilanthes alata \N \N \N \N \N 1019 P.macrophylla Pinguicula Pinguicula macrophylla \N \N \N \N \N 1020 P.hylaeae Philodendron Philodendron hylaeae \N \N \N \N \N 1021 P.oleifolium Pseudopeponidium Pseudopeponidium oleifolium \N \N \N \N \N 1022 A.lycopodiifolia Acacia Acacia lycopodiifolia \N \N \N \N \N 1023 B.javanica Bischofia Bischofia javanica \N \N \N \N \N 1024 \N subspecies Ceropegia aristolochioides subsp. deflersiana \N \N \N \N \N 1025 \N subtribe Lactucinae \N \N \N \N \N 1026 R.mohavensis Rosa Rosa mohavensis \N \N \N \N \N 1027 E.actinophylla Ekmanianthe Ekmanianthe actinophylla \N \N \N \N \N 1028 C.pseudoaxillaris Centaurea Centaurea pseudoaxillaris \N \N \N \N \N 1029 S.elbursensis Scrophularia Scrophularia elbursensis \N \N \N \N \N 1030 S.manettiiflorus Siphocampylus Siphocampylus manettiiflorus \N \N \N \N \N 1031 \N genus Biermannia \N \N \N \N \N 1032 S.amparoana Scaphyglottis Scaphyglottis amparoana \N \N \N \N \N 1033 \N subspecies Lupinus angustifolius subsp. reticulatus \N \N \N \N \N 1034 S.aculeata Strychnos Strychnos aculeata \N \N \N \N \N 1035 M.africana Microlagenaria Microlagenaria africana \N \N \N \N \N 1036 \N genus Schinopsis \N \N \N \N \N 1037 P.nodulosum Protium Protium nodulosum \N \N \N \N \N 1038 \N genus Cryptarrhena \N \N \N \N \N 1039 P.moresbiensis Packera Packera moresbiensis \N \N \N \N \N 1040 S.persimile Sideroxylon Sideroxylon persimile \N \N \N \N \N 1041 G.foveolata Gyrostipula Gyrostipula foveolata \N \N \N \N \N 1042 S.tsukubensis Sasa Sasa tsukubensis \N \N \N \N \N 1043 P.MAJ-689 Piper Piper sp. 2 MAJ-689 \N \N \N \N \N 1044 M.siamensis Musa Musa siamensis \N \N \N \N \N 1045 \N subspecies Layia pentachaeta subsp. pentachaeta \N \N \N \N \N 1046 U.flava Ungernia Ungernia flava \N \N \N \N \N 1047 T.portoricensis Thouinia Thouinia portoricensis \N \N \N \N \N 1048 C.sandwichiana Cuscuta Cuscuta sandwichiana \N \N \N \N \N 1049 T.urbanii Tetrazygia Tetrazygia urbanii \N \N \N \N \N 1050 \N genus Gymnosperma \N \N \N \N \N 1051 A.elongata Androsace Androsace elongata \N \N \N \N \N 1052 \N subspecies Aspalathus polycephala subsp. rigida \N \N \N \N \N 1053 \N tribe Sclerospermeae \N \N \N \N \N 1054 A.umbellulata Aegilops Aegilops sharonensis x Aegilops umbellulata \N \N \N \N \N 1055 D.malabaricum Dysoxylum Dysoxylum malabaricum \N \N \N \N \N 1056 G.acinacifolia Gasteria Gasteria acinacifolia \N \N \N \N \N 1057 \N genus Ataenidia \N \N \N \N \N 1058 H.eumicroscopica Hofmeisterella Hofmeisterella eumicroscopica \N \N \N \N \N 1059 S.aggregata Sinningia Sinningia aggregata \N \N \N \N \N 1060 P.dentata Pyrola Pyrola dentata \N \N \N \N \N 1061 \N varietas Chrysanthemum indicum var. iyoense \N \N \N \N \N 1062 R.reptans Ranunculus Ranunculus reptans \N \N \N \N \N 1063 T.coccinea Tofieldia Tofieldia coccinea \N \N \N \N \N 1064 K.scoparium Kunzea x Leptospermum Kunzea aff. ericoides x Leptospermum scoparium \N \N \N \N \N 1065 U.reptans Urochloa Urochloa reptans \N \N \N \N \N 1066 M.sylvestris Malva Malva sylvestris \N \N \N \N \N 1067 A.palaestina Ammochloa Ammochloa palaestina \N \N \N \N \N 1068 E.angustifolius Elaeocarpus Elaeocarpus angustifolius \N \N \N \N \N 1069 M.cryptobulbon Maxillaria Maxillaria cryptobulbon \N \N \N \N \N 1070 C.malyi Crocus Crocus malyi \N \N \N \N \N 1938 \N genus Espeletia \N \N \N \N \N 1071 \N subspecies Zoysia macrantha subsp. walshii \N \N \N \N \N 1072 C.pentagyna Crataegus Crataegus pentagyna \N \N \N \N \N 1073 C.purpurea Cardamine Cardamine purpurea \N \N \N \N \N 1074 T.coronata Tococa Tococa coronata \N \N \N \N \N 1075 H.DZL-2011 Hedyotis Hedyotis sp. DZL-2011 \N \N \N \N \N 1076 \N varietas Aerides odorata var. bicuspidata \N \N \N \N \N 1077 \N family Torricelliaceae \N \N \N \N \N 1078 C.acaulis Carex Carex acaulis \N \N \N \N \N 1079 S.jalcae Solanum Solanum jalcae \N \N \N \N \N 1080 \N genus Biserrula \N \N \N \N \N 1081 \N genus Synandrodaphne \N \N \N \N \N 1082 I.gigantea Indosasa Indosasa gigantea \N \N \N \N \N 1083 S.tanakae Stephanandra Stephanandra tanakae \N \N \N \N \N 1084 I.thurberi Ipomopsis Ipomopsis thurberi \N \N \N \N \N 1085 P.confusa Polystachya Polystachya confusa \N \N \N \N \N 1086 T.koelerioides Tragus Tragus koelerioides \N \N \N \N \N 1087 P.friesii Pseudoplantago Pseudoplantago friesii \N \N \N \N \N 1088 O.oreophila Oxytropis Oxytropis oreophila \N \N \N \N \N 1089 M.mahechae Magnolia Magnolia mahechae \N \N \N \N \N 1090 R.albrechtii Rhododendron Rhododendron albrechtii \N \N \N \N \N 1091 C.simplex Chenopodium Chenopodium simplex maple-leaf goosefoot \N \N \N \N 1092 V.stenocarpa Valerianella Valerianella stenocarpa \N \N \N \N \N 1093 C.similis Chaptalia Chaptalia similis \N \N \N \N \N 1094 A.arbutifolia Aronia Aronia arbutifolia red chokeberry \N \N \N \N 1095 \N genus Pachygone \N \N \N \N \N 1096 X.zarumense Xylobium Xylobium zarumense \N \N \N \N \N 1097 \N subspecies Carex canescens subsp. disjuncta \N \N \N \N \N 1098 S.ranzaniana Salvia Salvia ranzaniana \N \N \N \N \N 1099 C.syriaca Cynara Cynara syriaca \N \N \N \N \N 1100 O.inflexus Ornithocephalus Ornithocephalus inflexus \N \N \N \N \N 1101 G.gelida Gentiana Gentiana gelida \N \N \N \N \N 1102 H.violacea Hardenbergia Hardenbergia violacea coral-pea,native-lilac \N \N \N \N 1103 P.pallens Prenia Prenia pallens \N \N \N \N \N 1104 B.amoena Battandiera Battandiera amoena \N \N \N \N \N 1105 \N genus Chiangiodendron \N \N \N \N \N 1106 C.inops Carex Carex inops \N \N \N \N \N 1107 \N varietas Coreocarpus parthenioides var. parthenioides \N \N \N \N \N 1108 S.triphyllum Sesamum Sesamum triphyllum \N \N \N \N \N 1109 C.balansae Cunonia Cunonia balansae \N \N \N \N \N 1110 \N genus Anemanthele \N \N \N \N \N 1111 H.greenei Hieracium Hieracium greenei \N \N \N \N \N 1112 D.pycnophylla Draba Draba pycnophylla \N \N \N \N \N 1113 P.yunnanensis Paraprenanthes Paraprenanthes yunnanensis \N \N \N \N \N 1114 \N genus Namaquanthus \N \N \N \N \N 1115 \N genus Koanophyllon \N \N \N \N \N 1116 M.ringens Maxillaria Maxillaria ringens \N \N \N \N \N 1117 C.sericea Calceolaria Calceolaria sericea \N \N \N \N \N 1118 M.exaltata Myrmecophila Myrmecophila exaltata \N \N \N \N \N 1119 D.corymbosa Dicrastylis Dicrastylis corymbosa \N \N \N \N \N 1120 T.hjeltii Taraxacum Taraxacum hjeltii \N \N \N \N \N 1121 M.georgei Maireana Maireana georgei \N \N \N \N \N 1122 H.micropoides Helichrysum Helichrysum micropoides \N \N \N \N \N 1123 B.mannii Begonia Begonia mannii \N \N \N \N \N 1124 G.cilentina Genista Genista cilentina \N \N \N \N \N 1125 S.leucoclada Scrophularia Scrophularia leucoclada \N \N \N \N \N 1126 L.jonesii Lepidonia Lepidonia jonesii \N \N \N \N \N 1127 P.SH-2010 Pavonia Pavonia sp. SH-2010 \N \N \N \N \N 1128 P.equisetiforme Polygonum Polygonum equisetiforme \N \N \N \N \N 1129 \N genus Galanthus snowdrops \N \N \N \N 1130 R.bridgesii Rosa Rosa bridgesii \N \N \N \N \N 1131 C.longifolia Cephalanthera Cephalanthera longifolia \N \N \N \N \N 1132 E.triradiata Eremocharis Eremocharis triradiata \N \N \N \N \N 1133 P.sanderianum Paphiopedilum Paphiopedilum sanderianum \N \N \N \N \N 1134 \N subspecies Lamium galeobdolon subsp. montanum \N \N \N \N \N 1135 D.LMP-2009 Dyckia Dyckia aff. marnier-lapostollei LMP-2009 \N \N \N \N \N 1136 P.calthifolia Phacelia Phacelia calthifolia \N \N \N \N \N 1137 P.caninum Piper Piper caninum \N \N \N \N \N 1138 A.bulbillifera Aloe Aloe bulbillifera \N \N \N \N \N 1139 L.reticulata Lauridia Lauridia reticulata \N \N \N \N \N 1140 T.pseudoalpinum Taraxacum Taraxacum pseudoalpinum \N \N \N \N \N 1141 S.tomentosa Salsola Salsola tomentosa \N \N \N \N \N 1142 \N varietas Boechera holboellii var. pendulocarpa \N \N \N \N \N 1143 C.ricus Costus Costus ricus \N \N \N \N \N 1144 \N genus Micranthus \N \N \N \N \N 1145 C.chetikiana Cynoglottis Cynoglottis chetikiana \N \N \N \N \N 1146 C.cylindrica Clusia Clusia cylindrica \N \N \N \N \N 1147 G.eytianum Gymnocalycium Gymnocalycium eytianum \N \N \N \N \N 1148 E.rhizomatosum Epimedium Epimedium rhizomatosum \N \N \N \N \N 1149 A.bakeri Aloe Aloe bakeri \N \N \N \N \N 1150 S.betsimisarakum Sideroxylon Sideroxylon betsimisarakum \N \N \N \N \N 1151 S.thaipingensis Saraca Saraca thaipingensis \N \N \N \N \N 1152 L.glabrifolium Loxostigma Loxostigma glabrifolium \N \N \N \N \N 1153 S.longispicatum Stachyphrynium Stachyphrynium longispicatum \N \N \N \N \N 1154 B.schistacea Boechera Boechera schistacea \N \N \N \N \N 1155 \N subspecies Oenothera pallida subsp. gypsophila \N \N \N \N \N 1156 \N genus Millegrana \N \N \N \N \N 1157 \N varietas Triticum compactum var. humboldtii \N \N \N \N \N 1158 A.arboreus Adenolisianthus Adenolisianthus arboreus \N \N \N \N \N 1159 P.acutifolius Potamogeton Potamogeton acutifolius \N \N \N \N \N 1160 \N subspecies Reseda lutea subsp. lutea \N \N \N \N \N 1161 \N genus Pseudosasa \N \N \N \N \N 1162 C.aeolicus Cytisus Cytisus aeolicus \N \N \N \N \N 1163 V.salicornioides Hebe Veronica salicornioides \N \N \N \N \N 1164 C.ladakhianum Corispermum Corispermum ladakhianum \N \N \N \N \N 1165 C.nervosus Calliandropsis Calliandropsis nervosus \N \N \N \N \N 1166 B.ovalifolia Baeckea Baeckea ovalifolia \N \N \N \N \N 1167 M.ruberrima Maxillaria Maxillaria ruberrima \N \N \N \N \N 1168 \N varietas Mimosa occidentalis var. occidentalis \N \N \N \N \N 1169 \N genus Croton \N \N \N \N \N 1170 R.kearneyi Rhus Rhus kearneyi \N \N \N \N \N 1171 \N genus Bellis \N \N \N \N \N 1172 M.rufescens Myrceugenia Myrceugenia rufescens \N \N \N \N \N 1173 P.3413 Pelargonium Pelargonium sp. STEU 3413 \N \N \N \N \N 1174 \N genus Sclerolaena \N \N \N \N \N 1175 \N genus Ophidion \N \N \N \N \N 1176 I.lophanthoides Isodon Isodon lophanthoides \N \N \N \N \N 1177 B.calcicola Banisteriopsis Banisteriopsis calcicola \N \N \N \N \N 1178 H.bolusii Haworthia Haworthia bolusii \N \N \N \N \N 1179 C.confertiflora Cyrtandra Cyrtandra confertiflora \N \N \N \N \N 1180 D.aurantiacus Dichromanthus Dichromanthus aurantiacus \N \N \N \N \N 1181 E.simplex Erigeron Erigeron simplex \N \N \N \N \N 1182 W.huegeliana Wilkiea Wilkiea huegeliana \N \N \N \N \N 1183 W.pardina Warreopsis Warreopsis pardina \N \N \N \N \N 1184 \N genus Adenolobus \N \N \N \N \N 1185 R.barbareifolia Rorippa Rorippa barbareifolia \N \N \N \N \N 1186 G.crispiflora Guettarda Guettarda crispiflora \N \N \N \N \N 1187 A.kerchovei Agave Agave kerchovei \N \N \N \N \N 1188 B.altissima Bredemeyera Bredemeyera altissima \N \N \N \N \N 1189 P.hongkongense Piper Piper hongkongense \N \N \N \N \N 1190 C.repens Cuphea Cuphea repens \N \N \N \N \N 1191 \N subspecies Sidalcea oregana subsp. spicata \N \N \N \N \N 1192 S.boekei Sphyrospermum Sphyrospermum boekei \N \N \N \N \N 1193 C.sanguicolle Colchicum Colchicum sanguicolle \N \N \N \N \N 1194 G.cornigera Gomesa Gomesa lietzei x Gomesa cornigera \N \N \N \N \N 1195 \N subspecies Armeria filicaulis subsp. alfacarensis \N \N \N \N \N 1196 A.sessilis Alternanthera Alternanthera sessilis \N \N \N \N \N 1197 M.alata Mutisia Mutisia alata \N \N \N \N \N 1198 L.aloides Lachenalia Lachenalia aloides \N \N \N \N \N 1199 A.dioica Antennaria Antennaria dioica \N \N \N \N \N 1200 D.tosaense Dendrobium Dendrobium tosaense \N \N \N \N \N 1201 B.disepala Browneopsis Browneopsis disepala \N \N \N \N \N 1202 \N subspecies Lobularia canariensis subsp. marginata \N \N \N \N \N 1203 E.coccinea Erica Erica coccinea \N \N \N \N \N 1204 O.labiatum Ocimum Ocimum labiatum \N \N \N \N \N 1205 A.rufescens Alcea Alcea rufescens \N \N \N \N \N 1206 T.hayekii Tragopogon Tragopogon hayekii \N \N \N \N \N 1207 A.parvifolius Aeschynanthus Aeschynanthus parvifolius \N \N \N \N \N 1208 \N genus Desmoscelis \N \N \N \N \N 1209 C.banksii Coprosma Coprosma banksii \N \N \N \N \N 1210 F.obliqua Ficus Ficus obliqua \N \N \N \N \N 1211 R.osuzuyamense Rhododendron Rhododendron osuzuyamense \N \N \N \N \N 1212 C.aurantiacum Canistrum Canistrum aurantiacum \N \N \N \N \N 1213 \N genus Trigonosciadium \N \N \N \N \N 1214 O.nivara Oryza Oryza nivara \N \N \N \N \N 1215 L.AA1 Lithocarpus Lithocarpus sp. AA1 \N \N \N \N \N 1216 F.glutinosa Flemingia Flemingia glutinosa \N \N \N \N \N 1217 P.brevilingulata Psilactis Psilactis brevilingulata Trans-Pecos tansyaster \N \N \N \N 1218 M.variabilis Myrcia Myrcia variabilis \N \N \N \N \N 1219 S.orophilum Solanum Solanum orophilum \N \N \N \N \N 1220 P.eriocarpa Pimpinella Pimpinella eriocarpa \N \N \N \N \N 1221 I.vilersi Impatiens Impatiens vilersi \N \N \N \N \N 1222 P.altsonii Protium Protium altsonii \N \N \N \N \N 1223 B.aspleniifolia Bursera Bursera aspleniifolia \N \N \N \N \N 1224 \N varietas Scorzonera cana var. jacquiniana \N \N \N \N \N 1225 C.almehensis Crocus Crocus almehensis \N \N \N \N \N 1226 B.umbellata Burchardia Burchardia umbellata \N \N \N \N \N 1227 \N genus x Degarmoara \N \N \N \N \N 1228 T.incognitum Ticodendron Ticodendron incognitum \N \N \N \N \N 1229 S.4747 Simicratea Simicratea sp. Luke & Luke 4747 \N \N \N \N \N 1230 \N varietas Mussaenda pubescens var. alba \N \N \N \N \N 1231 A.alticola Askidiosperma Askidiosperma alticola \N \N \N \N \N 1232 C.lasius Costus Costus lasius \N \N \N \N \N 1233 P.triandra Pachycornia Pachycornia triandra \N \N \N \N \N 1234 E.saint-pieana Eulychnia Eulychnia saint-pieana \N \N \N \N \N 1235 T.14312 Tacca Tacca sp. 14312 \N \N \N \N \N 1236 M.philippinensis Marsdenia Marsdenia philippinensis \N \N \N \N \N 1237 P.leptostachyum Piper Piper leptostachyum \N \N \N \N \N 1238 F.viviparoidea Festuca Festuca viviparoidea \N \N \N \N \N 1239 P.ivesiana Phacelia Phacelia ivesiana \N \N \N \N \N 1240 P.stipifolia Pseudoroegneria Pseudoroegneria stipifolia \N \N \N \N \N 1241 \N genus Parameria \N \N \N \N \N 1242 T.divaricarpa Thermopsis Thermopsis divaricarpa spreadfruit goldenbanner \N \N \N \N 1243 A.helianthi Actinotus Actinotus helianthi \N \N \N \N \N 1244 E.tristachya Eleusine Eleusine tristachya threespike grass \N \N \N \N 1245 W.bangii Weinmannia Weinmannia bangii \N \N \N \N \N 1246 D.cayapia Dorstenia Dorstenia cayapia \N \N \N \N \N 1247 D.tibetica Dolomiaea Dolomiaea tibetica \N \N \N \N \N 1248 S.tabanoense Solanum Solanum tabanoense \N \N \N \N \N 1249 M.brasiliensis Machaonia Machaonia brasiliensis \N \N \N \N \N 1250 \N subspecies Centaurea stoebe subsp. micranthos \N \N \N \N \N 1251 L.dufourii Limonium Limonium dufourii \N \N \N \N \N 1252 P.leptostachys Polygala Polygala leptostachys \N \N \N \N \N 1253 A.villosa Abronia Abronia villosa \N \N \N \N \N 1254 T.urumiensis Tulipa Tulipa urumiensis \N \N \N \N \N 1255 L.lactea Luzula Luzula lactea \N \N \N \N \N 1256 D.christyanum Dendrobium Dendrobium christyanum \N \N \N \N \N 1257 E.quartziticola Euphorbia Euphorbia quartziticola \N \N \N \N \N 1258 I.henriquesii Inhambanella Inhambanella henriquesii \N \N \N \N \N 1259 \N genus Rosa \N \N \N \N \N 1260 E.picta Euphrasia Euphrasia picta \N \N \N \N \N 1261 \N varietas Hieracium scouleri var. scouleri \N \N \N \N \N 1262 A.asperula Asclepias Asclepias asperula \N \N \N \N \N 1263 A.patens Achimenes Achimenes patens \N \N \N \N \N 1264 D.441-1(HITBC) Distichochlamys Distichochlamys sp. XYM 441-1(HITBC) \N \N \N \N \N 1265 M.lathyroides Macroptilium Macroptilium lathyroides \N \N \N \N \N 1266 \N genus Menstruocalamus \N \N \N \N \N 1267 O.conioides Oenanthe Oenanthe conioides \N \N \N \N \N 1268 A.szechenyi Arnebia Arnebia szechenyi \N \N \N \N \N 1269 \N genus Disciphania \N \N \N \N \N 1270 D.echinophora Duguetia Duguetia echinophora \N \N \N \N \N 1271 S.boganidensis Salix Salix boganidensis \N \N \N \N \N 1272 E.marginata Euphorbia Euphorbia marginata \N \N \N \N \N 1273 G.pectinatus Gonolobus Gonolobus pectinatus \N \N \N \N \N 1274 B.reticulata Bauhinia Bauhinia reticulata \N \N \N \N \N 1275 A.yargongensis Androsace Androsace yargongensis \N \N \N \N \N 1276 B.robur Banksia Banksia robur \N \N \N \N \N 1277 T.gracilis Tragopogon Tragopogon gracilis \N \N \N \N \N 1278 C.duchesnensis Cymopterus Cymopterus duchesnensis \N \N \N \N \N 1279 D.balsensis Dandya Dandya balsensis \N \N \N \N \N 1280 E.pastoensis Eragrostis Eragrostis pastoensis \N \N \N \N \N 1281 A.sutchuenensis Ainsliaea Ainsliaea sutchuenensis \N \N \N \N \N 1282 D.revolutissima Diospyros Diospyros revolutissima \N \N \N \N \N 1283 V.scandens Viola Viola scandens \N \N \N \N \N 1284 \N genus Symplocarpus \N \N \N \N \N 1285 H.azoricus Holcus Holcus azoricus \N \N \N \N \N 1286 U.lechleriana Uncinia Uncinia lechleriana \N \N \N \N \N 1287 G.nerineoides Gladiolus Gladiolus nerineoides \N \N \N \N \N 1288 C.aucheri Campanula Campanula aucheri \N \N \N \N \N 1289 P.officinalis Psychotria Psychotria officinalis \N \N \N \N \N 1290 N.elegans Narcissus Narcissus elegans \N \N \N \N \N 1291 R.sansibarensis Rotheca Rotheca sansibarensis \N \N \N \N \N 1292 M.longipes Myriocarpa Myriocarpa longipes \N \N \N \N \N 1293 E.odontochilum Epidendrum Epidendrum odontochilum \N \N \N \N \N 1294 C.crassifolia Ceropegia Ceropegia crassifolia \N \N \N \N \N 1295 A.eucomoides Androcymbium Androcymbium eucomoides \N \N \N \N \N 1296 R.cristatus Rumex Rumex cristatus \N \N \N \N \N 1297 S.brevirostra Sagittaria Sagittaria brevirostra \N \N \N \N \N 1298 H.bodinieri Handeliodendron Handeliodendron bodinieri \N \N \N \N \N 1299 I.issembei Impatiens Impatiens issembei \N \N \N \N \N 1300 K.papuana Korthalsella Korthalsella papuana \N \N \N \N \N 1301 H.emerus Hippocrepis Hippocrepis emerus \N \N \N \N \N 1302 P.barklyi Pelargonium Pelargonium barklyi \N \N \N \N \N 1303 C.atacamensis Chaboissaea Chaboissaea atacamensis \N \N \N \N \N 1304 C.muelleriana Chionogentias Chionogentias muelleriana \N \N \N \N \N 1305 P.A49 Phoebe Phoebe sp. A49 \N \N \N \N \N 1306 D.leucanthum Disterigma Disterigma leucanthum \N \N \N \N \N 1307 V.nipponicum Vincetoxicum Vincetoxicum nipponicum \N \N \N \N \N 1308 E.sogdiana Eremostachys Eremostachys sogdiana \N \N \N \N \N 1309 P.robustipedunculum Piper Piper robustipedunculum \N \N \N \N \N 1310 I.ammoxylum Indigofera Indigofera ammoxylum \N \N \N \N \N 1311 B.rosmarinifolia Bertya Bertya rosmarinifolia \N \N \N \N \N 1312 W.amplexicaulis Wyethia Wyethia amplexicaulis \N \N \N \N \N 1313 \N varietas Ceanothus cuneatus var. cuneatus \N \N \N \N \N 1314 B.melanocaulon Barkeria Barkeria melanocaulon \N \N \N \N \N 1315 A.orientalis Alkanna Alkanna orientalis \N \N \N \N \N 1316 U.triflora Utricularia Utricularia triflora \N \N \N \N \N 1317 I.cyrtura Ilex Ilex cyrtura \N \N \N \N \N 1318 \N genus Acion \N \N \N \N \N 1319 D.microcephala Dubautia Dubautia microcephala \N \N \N \N \N 1320 T.godefroyanum Tetrastigma Tetrastigma godefroyanum \N \N \N \N \N 1321 O.dactyliferum Oncidium Oncidium dactyliferum \N \N \N \N \N 1322 P.superbus Penstemon Penstemon superbus \N \N \N \N \N 1323 \N genus Sweetia \N \N \N \N \N 1324 K.heteroclita Kadsura Kadsura heteroclita \N \N \N \N \N 1325 L.narbonense Limonium Limonium narbonense \N \N \N \N \N 1326 \N subspecies Descurainia incisa subsp. incisa \N \N \N \N \N 1327 A.idahoensis Agrostis Agrostis idahoensis Idaho bent grass \N \N \N \N 1328 N.acuminata Notobuxus Notobuxus acuminata \N \N \N \N \N 1329 V.vulpina Vitis Vitis vulpina \N \N \N \N \N 1330 V.cacuminis Vriesea Vriesea cacuminis \N \N \N \N \N 1331 T.griesbeckii Telipogon Telipogon griesbeckii \N \N \N \N \N 1332 C.philippii Chloraea Chloraea philippii \N \N \N \N \N 1333 C.virgultaris Crotalaria Crotalaria virgultaris \N \N \N \N \N 1334 S.namaquensis Stipagrostis Stipagrostis namaquensis \N \N \N \N \N 1335 C.dichotomum Cerastium Cerastium dichotomum \N \N \N \N \N 1336 H.mimosoides Heterostemon Heterostemon mimosoides \N \N \N \N \N 1337 G.stenophylla Guettarda Guettarda stenophylla \N \N \N \N \N 1338 F.congensis Ficus Ficus congensis \N \N \N \N \N 1339 M.obovata Microcoelia Microcoelia obovata \N \N \N \N \N 1340 \N varietas Titanopsis hugo-schlechteri var. alboviridis \N \N \N \N \N 1341 \N genus Atalaya \N \N \N \N \N 1342 H.rotundifolia Heteranthera Heteranthera rotundifolia \N \N \N \N \N 1343 \N varietas Amphipappus fremontii var. fremontii \N \N \N \N \N 1344 A.aristifolia Aspalathus Aspalathus aristifolia \N \N \N \N \N 1345 E.griseola Euphorbia Euphorbia griseola \N \N \N \N \N 1346 B.formicaria Besleria Besleria formicaria \N \N \N \N \N 1347 P.crassifolia Plantago Plantago crassifolia \N \N \N \N \N 1348 E.cristiflora Erica Erica cristiflora \N \N \N \N \N 1349 L.radiata Lycoris Lycoris radiata higanbana,red spider-lily \N \N \N \N 1350 \N genus Geniostemon \N \N \N \N \N 1351 D.prolifera Diaperia Diaperia prolifera \N \N \N \N \N 1352 H.microphyllus Holodiscus Holodiscus microphyllus \N \N \N \N \N 1353 H.rigidum Hypericum Hypericum rigidum \N \N \N \N \N 1354 \N subspecies Euphorbia maresii subsp. balearica \N \N \N \N \N 1355 S.walkeri Schizopetalon Schizopetalon walkeri \N \N \N \N \N 1356 \N genus Yavia \N \N \N \N \N 4555 \N genus Anthoxanthum \N \N \N \N \N 1357 B.lenta Betula Betula lenta cherry birch,sweet birch \N \N \N \N 1358 S.polypodioides Senecio Senecio polypodioides \N \N \N \N \N 1359 L.3608 Ludia Ludia sp. Schatz et al. 3608 \N \N \N \N \N 2515 \N subfamily Schizanthoideae \N \N \N \N \N 1360 \N subspecies Atractylodes lancea subsp. luotianensis \N \N \N \N \N 1361 S.longilabris Spiranthes Spiranthes longilabris \N \N \N \N \N 1362 C.echinochloe Carex Carex echinochloe \N \N \N \N \N 1363 M.lacerata Mimosa Mimosa lacerata \N \N \N \N \N 1364 C.00-361 Cistanthe Cistanthe sp. Hershkovitz 00-361 \N \N \N \N \N 1365 S.albicans Solanum Solanum albicans \N \N \N \N \N 1366 P.ionolaena Pentas Pentas ionolaena \N \N \N \N \N 1367 R.MM-2009 Raphiocarpus Raphiocarpus sp. MM-2009 \N \N \N \N \N 1368 E.nutans Eragrostis Eragrostis nutans \N \N \N \N \N 1369 A.nana Achillea Achillea nana \N \N \N \N \N 1370 A.fulva Acacia Acacia fulva \N \N \N \N \N 1371 U.panicoides Urochloa Urochloa panicoides \N \N \N \N \N 1372 \N genus Aetheorhiza \N \N \N \N \N 1373 D.liesneri Dalechampia Dalechampia liesneri \N \N \N \N \N 1374 L.elongata Lotononis Lotononis elongata \N \N \N \N \N 1375 S.volubile Solanum Solanum volubile \N \N \N \N \N 1376 \N genus Sirochloa \N \N \N \N \N 1377 B.FS958 Bulbophyllum Bulbophyllum sp. FS958 \N \N \N \N \N 1378 C.GF-2011 Chusquea Chusquea aff. fendleri A GF-2011 \N \N \N \N \N 1379 P.359 Pachyphyllum Pachyphyllum sp. Trujillo 359 \N \N \N \N \N 1380 F.pumila Fuirena Fuirena pumila dwarf umbrella-grass \N \N \N \N 1381 J.standleyi Jacquiniella Jacquiniella standleyi \N \N \N \N \N 1382 \N subspecies Aspalathus divaricata subsp. divaricata \N \N \N \N \N 1383 A.eburneus Amorphophallus Amorphophallus eburneus \N \N \N \N \N 1384 F.albert-smithii Ficus Ficus albert-smithii \N \N \N \N \N 1385 G.pudica Gentiana Gentiana pudica \N \N \N \N \N 1386 S.polaris Salix Salix herbacea x Salix polaris \N \N \N \N \N 1387 P.JTM-2009a Plumatichilos Plumatichilos sp. JTM-2009a \N \N \N \N \N 1388 \N genus Emblingia \N \N \N \N \N 1389 P.bellii Prionosciadium Prionosciadium bellii \N \N \N \N \N 1390 E.velutina Etlingera Etlingera velutina \N \N \N \N \N 1391 \N genus Metalepis \N \N \N \N \N 1392 P.pachyphyllus Penstemon Penstemon pachyphyllus \N \N \N \N \N 1393 \N subspecies Najas guadalupensis subsp. muenscheri \N \N \N \N \N 1394 M.atropurpurea Mucuna Mucuna atropurpurea \N \N \N \N \N 1395 S.foliosa Spartina Spartina densiflora x Spartina foliosa \N \N \N \N \N 1396 P.albicalyx Plectranthus Plectranthus albicalyx \N \N \N \N \N 1397 P.teckiana Pityrodia Pityrodia teckiana \N \N \N \N \N 1398 I.macdanielii Ichthyothere Ichthyothere macdanielii \N \N \N \N \N 1399 \N genus Circaeaster \N \N \N \N \N 1400 P.tinctoria Plocama Plocama tinctoria \N \N \N \N \N 1401 J.ailanthifolia Juglans Juglans ailanthifolia \N \N \N \N \N 1402 C.turkestanica Caragana Caragana turkestanica \N \N \N \N \N 1403 C.pseudoleucolepis Centaurea Centaurea pseudoleucolepis \N \N \N \N \N 1404 I.sprengeri Iris Iris sprengeri \N \N \N \N \N 1405 G.pierreanum Gilletiodendron Gilletiodendron pierreanum \N \N \N \N \N 1406 O.verae Ononis Ononis verae \N \N \N \N \N 1407 \N no rank environmental samples Taxonomy:644533 \N \N \N \N \N 1408 P.schiedeanus Psittacanthus Psittacanthus schiedeanus \N \N \N \N \N 1409 \N genus Sinodolichos \N \N \N \N \N 1410 J.mesnyi Jasminum Jasminum mesnyi Japanese jasmine,primrose jasmine \N \N \N \N 1411 S.coactiliferum Solanum Solanum coactiliferum \N \N \N \N \N 1412 C.dolichocarpa Changiostyrax Changiostyrax dolichocarpa \N \N \N \N \N 1413 E.valleculosa Eleocharis Eleocharis valleculosa \N \N \N \N \N 1414 A.ramulosa Acacia Acacia ramulosa \N \N \N \N \N 1415 S.argentea Sesleria Sesleria argentea \N \N \N \N \N 1416 D.xishuangbannaensis Dendrocalamus Dendrocalamus xishuangbannaensis \N \N \N \N \N 1417 T.dentata Thladiantha Thladiantha dentata \N \N \N \N \N 1418 C.mossamedensis Centropodia Centropodia mossamedensis \N \N \N \N \N 1419 \N subspecies Iris caucasica subsp. turcica \N \N \N \N \N 1420 \N genus Odontostomum \N \N \N \N \N 1421 \N subspecies Oldenlandia mitrasacmoides subsp. nigricans \N \N \N \N \N 1422 K.(b) Kunzea Kunzea aff. ericoides (b) \N \N \N \N \N 1423 L.auriculata Luetzelburgia Luetzelburgia auriculata \N \N \N \N \N 1424 \N genus Haloragodendron \N \N \N \N \N 1425 C.javanicus Cladopus Cladopus javanicus \N \N \N \N \N 1426 A.pflugeae Arachis Arachis pflugeae \N \N \N \N \N 1427 C.berteroana Carex Carex berteroana \N \N \N \N \N 1428 S.soboliferum Sisyrinchium Sisyrinchium soboliferum \N \N \N \N \N 1429 G.ventricosa Gesneria Gesneria ventricosa \N \N \N \N \N 1430 \N varietas Correa lawrenceana var. ferruginea \N \N \N \N \N 1431 A.nipponicum Asarum Asarum nipponicum \N \N \N \N \N 1432 A.verticillatus Asparagus Asparagus verticillatus \N \N \N \N \N 1433 A.lindheimeri Astragalus Astragalus lindheimeri \N \N \N \N \N 1434 E.cicutarium Eleutherospermum Eleutherospermum cicutarium \N \N \N \N \N 1435 M.andicola Melosperma Melosperma andicola \N \N \N \N \N 1436 L.annuus Lathyrus Lathyrus annuus \N \N \N \N \N 1437 M.JJS-2010h Mentzelia Mentzelia sp. JJS-2010h \N \N \N \N \N 1438 A.elongata Arctotis Arctotis elongata \N \N \N \N \N 1439 \N family Crossosomataceae \N \N \N \N \N 1440 P.majungensis Paederia Paederia majungensis \N \N \N \N \N 1441 M.longiflora Menodora Menodora longiflora \N \N \N \N \N 1442 P.parryi Primula Primula parryi \N \N \N \N \N 1443 G.pyrolifolia Gaultheria Gaultheria pyrolifolia \N \N \N \N \N 1444 G.paraguayensis Galeandra Galeandra paraguayensis \N \N \N \N \N 1445 P.platensis Phalaris Phalaris platensis \N \N \N \N \N 1446 \N genus Mappia \N \N \N \N \N 1447 Z.grayana Zaluzania Zaluzania grayana \N \N \N \N \N 1448 E.phyllopogon Echinochloa Echinochloa phyllopogon \N \N \N \N \N 1449 N.sylvatica Nyssa Nyssa sylvatica \N \N \N \N \N 1450 S.chirendensis Searsia Searsia chirendensis \N \N \N \N \N 1451 \N genus Bucephalandra \N \N \N \N \N 1452 C.arabica Cleome Cleome arabica \N \N \N \N \N 9797 \N genus Tenrhynea \N \N \N \N \N 1453 C.clandestina Clidemia Clidemia clandestina \N \N \N \N \N 1454 \N no rank eudicotyledons \N \N \N \N \N 1455 T.juncifolium Thesium Thesium juncifolium \N \N \N \N \N 3395 A.lineata Aloe Aloe lineata \N \N \N \N \N 1456 C.multiflora Chloraea Chloraea multiflora \N \N \N \N \N 1457 P.laterale Piptatherum Piptatherum laterale \N \N \N \N \N 1458 P.pauciflorus Phaseolus Phaseolus pauciflorus \N \N \N \N \N 1459 P.scandens Paederia Paederia scandens \N \N \N \N \N 1460 \N genus Cyrtandromoea \N \N \N \N \N 1461 D.ranomafanensis Decarydendron Decarydendron ranomafanensis \N \N \N \N \N 1462 U.scabridula Urceodiscus Urceodiscus scabridula \N \N \N \N \N 1463 E.beaufortioides Eremaea Eremaea beaufortioides \N \N \N \N \N 1464 \N subfamily Tribuloideae \N \N \N \N \N 1465 G.edentata Gaertnera Gaertnera edentata \N \N \N \N \N 1466 T.pavonia Tigridia Tigridia pavonia \N \N \N \N \N 1467 D.mexicana Draba Draba mexicana \N \N \N \N \N 1468 I.gracilifolia Inga Inga gracilifolia \N \N \N \N \N 1469 \N varietas Cymbidium tortisepalum var. longibracteatum \N \N \N \N \N 1470 V.stipulata Vasconcellea Vasconcellea stipulata \N \N \N \N \N 1471 \N subspecies Bupleurum fruticescens subsp. spinosum \N \N \N \N \N 1472 S.rubra Salicornia Salicornia rubra \N \N \N \N \N 1473 F.juncifolia Festuca Festuca juncifolia \N \N \N \N \N 1474 T.nervosa Tetradenia Tetradenia nervosa \N \N \N \N \N 1475 N.johnstonii Nerisyrenia Nerisyrenia johnstonii \N \N \N \N \N 1476 \N genus Agriophyllum \N \N \N \N \N 1477 D.nutantiflorum Dendrobium Dendrobium nutantiflorum \N \N \N \N \N 1478 T.s.n. Toona Toona sp. Terrazas s.n. \N \N \N \N \N 1479 C.lophostoma Cuphea Cuphea lophostoma \N \N \N \N \N 1480 T.virescens Thymelaea Thymelaea virescens \N \N \N \N \N 1481 Z.fruticulosum Zygophyllum Zygophyllum fruticulosum \N \N \N \N \N 1482 M.penangensis Mallotus Mallotus penangensis \N \N \N \N \N 1483 B.harlandii Buxus Buxus harlandii \N \N \N \N \N 1484 E.verrucosa Euphorbia Euphorbia verrucosa \N \N \N \N \N 1485 E.ribisaria Erica Erica ribisaria \N \N \N \N \N 1486 C.virgata Cannomois Cannomois virgata \N \N \N \N \N 1487 A.tomentosa Adriana Adriana tomentosa \N \N \N \N \N 1488 U.sagittatum Ulearum Ulearum sagittatum \N \N \N \N \N 1489 E.chlorolepis Eurybia Eurybia chlorolepis mountain wood aster \N \N \N \N 1490 \N varietas Dicerandra immaculata var. immaculata \N \N \N \N \N 1491 S.acuminata Shorea Shorea acuminata \N \N \N \N \N 1492 G.rubioides Galium Galium rubioides \N \N \N \N \N 1493 C.461 Clerodendrum Clerodendrum sp. Ramadhanil et al. 461 \N \N \N \N \N 1494 W.FS870 Waltheria Waltheria sp. FS870 \N \N \N \N \N 1495 H.plicatum Helichrysum Helichrysum plicatum \N \N \N \N \N 1496 H.racemosa Heteropterys Heteropterys racemosa \N \N \N \N \N 1497 S.corneri Schismatoglottis Schismatoglottis corneri \N \N \N \N \N 1498 C.ovalifolia Clethra Clethra ovalifolia \N \N \N \N \N 1499 C.polygonifolia Cliffortia Cliffortia polygonifolia \N \N \N \N \N 1500 F.hayatae Fagus Fagus hayatae \N \N \N \N \N 1501 S.messeniaca Schnarfia Schnarfia messeniaca \N \N \N \N \N 1502 M.arborescens Macrocarpaea Macrocarpaea arborescens \N \N \N \N \N 1503 A.pratensis Angelonia Angelonia pratensis \N \N \N \N \N 1504 S.polyphylla Simaba Simaba polyphylla \N \N \N \N \N 1505 Q.franchetii Quercus Quercus franchetii \N \N \N \N \N 1506 D.LYJ-2011b Dichocarpum Dichocarpum sp. LYJ-2011b \N \N \N \N \N 1507 V.yunnanfuensis Viola Viola yunnanfuensis \N \N \N \N \N 1508 \N subspecies Chrysanthemoides monilifera subsp. canescens \N \N \N \N \N 1509 \N subspecies Adenia lanceolata subsp. scheffleri \N \N \N \N \N 1510 A.longiligulare Amomum Amomum longiligulare \N \N \N \N \N 1511 R.trichanthum Rhododendron Rhododendron trichanthum \N \N \N \N \N 1512 C.polyphyllus Calyptrocalyx Calyptrocalyx polyphyllus \N \N \N \N \N 1513 H.androsaemum Hypericum Hypericum androsaemum \N \N \N \N \N 1514 S.tigrensis Stipa Stipa tigrensis \N \N \N \N \N 1515 P.acidus Phyllanthus Phyllanthus acidus Otaheite gooseberry,cela usiri,cerejeira-do-Taiti,grosellero,jumbilin,sour gooseberry \N \N \N \N 1516 R.odoratus Rubus Rubus odoratus flowering raspberry \N \N \N \N 1517 C.costaricana Clavija Clavija costaricana \N \N \N \N \N 1518 P.daravazicum Phagnalon Phagnalon daravazicum \N \N \N \N \N 1519 D.alberti Draba Draba alberti \N \N \N \N \N 1520 T.cristalensis Tetrazygia Tetrazygia cristalensis \N \N \N \N \N 1521 H.albiflorum Hieracium Hieracium albiflorum \N \N \N \N \N 1522 P.drymarioides Pterostegia Pterostegia drymarioides \N \N \N \N \N 1523 L.12714 Leucheria Leucheria cf. gayana TS 12714 \N \N \N \N \N 1524 H.zeylanicum Heliotropium Heliotropium zeylanicum \N \N \N \N \N 1525 C.anceps Caulanthus Caulanthus anceps \N \N \N \N \N 1526 O.vestita Oreonana Oreonana vestita woolly mountainparsley \N \N \N \N 1527 L.corynocarpus Leucopogon Leucopogon corynocarpus \N \N \N \N \N 1528 E.pinnatisectus Erigeron Erigeron pinnatisectus \N \N \N \N \N 1529 B.dioica Bryonia Bryonia dioica red bryony \N \N \N \N 1530 A.heterophylla Athrixia Athrixia heterophylla \N \N \N \N \N 1531 T.TL152 unclassified Taraxacum Taraxacum (sect. Ruderalia) sp. TL152 \N \N \N \N \N 1532 \N varietas Schoenocaulon caricifolium var. oaxacense \N \N \N \N \N 1533 \N genus Felicia \N \N \N \N \N 1534 H.yunnanense Heracleum Heracleum yunnanense \N \N \N \N \N 1535 C.patula Campanula Campanula patula \N \N \N \N \N 1536 C.N468 Clusia Clusia sp. N468 \N \N \N \N \N 1537 R.oncotricha Rubia Rubia oncotricha \N \N \N \N \N 1538 \N genus Acriopsis \N \N \N \N \N 1539 O.helenae Ophrys Ophrys helenae \N \N \N \N \N 1540 V.hispida Valantia Valantia hispida \N \N \N \N \N 1541 P.vesiculosoalatum Pseudotrachydium Pseudotrachydium vesiculosoalatum \N \N \N \N \N 1542 \N genus Mecranium \N \N \N \N \N 1543 O.californica Orobanche Orobanche californica \N \N \N \N \N 1544 T.tricolor Tropaeolum Tropaeolum tricolor \N \N \N \N \N 1545 \N genus Willardia \N \N \N \N \N 15429 \N genus Tetraclea \N \N \N \N \N 1546 \N varietas Rhododendron phaeochrysum var. agglutinatum \N \N \N \N \N 1547 A.quadratolaminare Amomum Amomum quadratolaminare \N \N \N \N \N 1548 M.sagotiana Mouriri Mouriri sagotiana \N \N \N \N \N 1549 S.prolifera Spatalla Spatalla prolifera \N \N \N \N \N 1550 B.madagascariensis Burmannia Burmannia madagascariensis \N \N \N \N \N 1551 \N genus Phymosia \N \N \N \N \N 1552 \N genus Heterochaenia \N \N \N \N \N 1553 \N subspecies Ipomopsis longiflora subsp. australis \N \N \N \N \N 1554 C.megaphylla Castanopsis Castanopsis megaphylla \N \N \N \N \N 1555 P.hirta Pseudosasa Pseudosasa hirta \N \N \N \N \N 1556 B.capusii Bunium Bunium capusii \N \N \N \N \N 1557 M.racemosa Muhlenbergia Muhlenbergia racemosa \N \N \N \N \N 1558 \N genus Stylobasium \N \N \N \N \N 1559 P.maximus Pandanus Pandanus maximus \N \N \N \N \N 1560 P.eurychila Polystachya Polystachya eurychila \N \N \N \N \N 1561 A.'Esperance' Aotus Aotus sp. 'Esperance' \N \N \N \N \N 1562 \N varietas Haenianthus salicifolius var. obovatus \N \N \N \N \N 1563 \N genus Xanthostemon \N \N \N \N \N 1564 T.spinosum Triptilion Triptilion spinosum \N \N \N \N \N 1565 O.platyphyllum Ornithogalum Ornithogalum platyphyllum \N \N \N \N \N 1566 E.chium Erodium Erodium chium \N \N \N \N \N 1567 G.leopardus Gasteranthus Gasteranthus leopardus \N \N \N \N \N 1568 M.cuspidata Marantochloa Marantochloa cuspidata \N \N \N \N \N 1569 P.angustifolia Physostegia Physostegia angustifolia \N \N \N \N \N 1570 R.auriculatum Rhytidophyllum Rhytidophyllum auriculatum \N \N \N \N \N 1571 A.pulchellus Astragalus Astragalus pulchellus \N \N \N \N \N 1572 T.Republic' Tabebuia Tabebuia sp. 'Dominican Republic' \N \N \N \N \N 1573 E.setifolia Eleocharis Eleocharis setifolia \N \N \N \N \N 1574 O.lineare Osmoxylon Osmoxylon lineare \N \N \N \N \N 1575 P.cuspidata Phlox Phlox cuspidata \N \N \N \N \N 1576 \N genus Calantica \N \N \N \N \N 1577 \N subspecies Anthemis cretica subsp. argaea \N \N \N \N \N 1578 C.psychotrioides Chorisepalum Chorisepalum psychotrioides \N \N \N \N \N 1579 B.eriobasis Berkheya Berkheya eriobasis \N \N \N \N \N 1580 \N subspecies Mimulus aurantiacus subsp. australis \N \N \N \N \N 1581 P.elata Ponthieva Ponthieva elata \N \N \N \N \N 1582 A.conostephioides Astroloma Astroloma conostephioides \N \N \N \N \N 1583 T.muricata Tabernaemontana Tabernaemontana muricata \N \N \N \N \N 1584 D.xenos Dracula Dracula xenos \N \N \N \N \N 1585 \N subspecies Melastoma malabathricum subsp. malabathricum \N \N \N \N \N 1586 L.chamelaea Leucadendron Leucadendron chamelaea \N \N \N \N \N 1587 G.bancana Garcinia Garcinia bancana \N \N \N \N \N 1588 G.nudifolia Galeola Galeola nudifolia \N \N \N \N \N 1589 P.microcephala Persicaria Persicaria microcephala \N \N \N \N \N 1590 \N subspecies Gymnocalycium parvulum subsp. parvulum \N \N \N \N \N 1591 T.caucasicum Tripleurospermum Tripleurospermum caucasicum \N \N \N \N \N 1592 \N tribe Rubieae \N \N \N \N \N 1593 S.harmsii Schefflera Schefflera harmsii \N \N \N \N \N 1594 E.oxyphylla Euphorbia Euphorbia oxyphylla \N \N \N \N \N 1595 B.MAK-2009 Boechera Boechera sp. MAK-2009 \N \N \N \N \N 1596 S.musashiensis Scrophularia Scrophularia musashiensis \N \N \N \N \N 1597 \N subspecies Dombeya farafanganica subsp. endrina \N \N \N \N \N 1598 A.farinosa Aechmea Aechmea farinosa \N \N \N \N \N 1599 A.sativa Avena Avena sativa cultivated oat,oat \N \N \N \N 1600 \N subspecies Argyranthemum frutescens subsp. frutescens \N \N \N \N \N 1601 M.umbricola Myrsine Myrsine umbricola \N \N \N \N \N 1602 R.trigona Rhipsalis Rhipsalis trigona \N \N \N \N \N 1603 M.yukonensis Minuartia Minuartia yukonensis \N \N \N \N \N 1604 M.samanensis Miconia Miconia samanensis \N \N \N \N \N 1605 I.chinense Ixeridium Ixeridium chinense \N \N \N \N \N 1606 O.laxa Oxalis Oxalis laxa \N \N \N \N \N 1607 \N genus Hesperocnide \N \N \N \N \N 1608 F.discophora Fillaeopsis Fillaeopsis discophora \N \N \N \N \N 1609 I.carinata Ismelia Ismelia carinata \N \N \N \N \N 1610 S.bipinnatifida Sanicula Sanicula bipinnatifida purple sanicle \N \N \N \N 1611 T.apetalon Trillium Trillium apetalon \N \N \N \N \N 1612 T.salsa Thymelaea Thymelaea salsa \N \N \N \N \N 1613 \N genus Boltonia \N \N \N \N \N 1614 G.triacanthos Genista Genista triacanthos \N \N \N \N \N 1615 T.gilliesii Taraxacum Taraxacum gilliesii \N \N \N \N \N 1616 A.albotomentosa Alternanthera Alternanthera albotomentosa \N \N \N \N \N 1617 S.angustifolium Sinapidendron Sinapidendron angustifolium \N \N \N \N \N 1618 S.elliptica Schefflera Schefflera elliptica \N \N \N \N \N 1619 C.euphorbioides Chlamydacanthus Chlamydacanthus euphorbioides \N \N \N \N \N 1620 \N subspecies Cucumis melo subsp. melo \N \N \N \N \N 1621 B.ilicifolia Berberis Berberis ilicifolia \N \N \N \N \N 1622 H.cult.25(KYO) Hedychium Hedychium sp. Takano cult.25(KYO) \N \N \N \N \N 1623 A.6709 Allium Allium sp. GAT 6709 \N \N \N \N \N 1624 B.subalternans Bidens Bidens subalternans \N \N \N \N \N 1625 C.conyzifolia Crepis Crepis conyzifolia \N \N \N \N \N 1626 A.ritteri Aztekium Aztekium ritteri \N \N \N \N \N 1627 D.purpusii Dyschoriste Dyschoriste purpusii \N \N \N \N \N 1628 S.soldanelloides Shortia Shortia soldanelloides \N \N \N \N \N 1629 P.labordei Prismatomeris Prismatomeris labordei \N \N \N \N \N 1630 N.301 Nothoscordum Nothoscordum sp. 301 \N \N \N \N \N 1631 \N varietas Aristida ternipes var. gentilis \N \N \N \N \N 1632 G.saltatoria Globba Globba saltatoria \N \N \N \N \N 1633 A.caribaeus Actinostemon Actinostemon caribaeus \N \N \N \N \N 1634 P.serrulata Prunus Prunus serrulata \N \N \N \N \N 1635 C.megacarpus Ceanothus Ceanothus megacarpus \N \N \N \N \N 1636 \N varietas Prunus nipponica var. nipponica \N \N \N \N \N 1637 F.flexuosa Faujasiopsis Faujasiopsis flexuosa \N \N \N \N \N 1638 P.longifolium Phoradendron Phoradendron longifolium \N \N \N \N \N 1639 O.sp. Oenothera Oenothera sp. \N \N \N \N \N 1640 C.palmiforme Centaurodendron Centaurodendron palmiforme \N \N \N \N \N 1641 D.maciba Dioscorea Dioscorea maciba \N \N \N \N \N 1642 \N genus Richea \N \N \N \N \N 1643 R.anceps Rorippa Rorippa anceps \N \N \N \N \N 1644 O.kamiesbergensis Oxalis Oxalis kamiesbergensis \N \N \N \N \N 1645 B.reptans Bidens Bidens reptans \N \N \N \N \N 1646 S.leprosus Styrax Styrax leprosus \N \N \N \N \N 1647 E.meyeriana Eriochloa Eriochloa meyeriana \N \N \N \N \N 1648 O.saundersiana Oeceoclades Oeceoclades saundersiana \N \N \N \N \N 1649 H.plantaginea Halenia Halenia plantaginea \N \N \N \N \N 1650 C.sanguineus Ceanothus Ceanothus sanguineus \N \N \N \N \N 1651 \N genus Alvimia \N \N \N \N \N 1652 C.pekinensis Caragana Caragana pekinensis \N \N \N \N \N 1653 L.dichotomum Limonium Limonium dichotomum \N \N \N \N \N 1654 L.haywardii Lycoris Lycoris haywardii \N \N \N \N \N 1655 S.dodecandra Sabatia Sabatia dodecandra \N \N \N \N \N 1656 P.barnettiae Paraboea Paraboea barnettiae \N \N \N \N \N 1657 O.povedanum Oncidium Oncidium povedanum \N \N \N \N \N 1658 S.carsonii Satyrium Satyrium carsonii \N \N \N \N \N 1659 \N genus Myriophyllum water milfoils \N \N \N \N 1660 C.polypetala Cyclea Cyclea polypetala \N \N \N \N \N 1661 \N varietas Fallopia multiflora var. ciliinervis \N \N \N \N \N 1662 \N varietas Paederia scandens var. tomentosa \N \N \N \N \N 1663 S.confertum Sideroxylon Sideroxylon confertum \N \N \N \N \N 1664 A.chrysantha Actinidia Actinidia chrysantha \N \N \N \N \N 1665 \N varietas Pedicularis siphonantha var. delavayi \N \N \N \N \N 1666 E.sceptrum Eriopsis Eriopsis sceptrum \N \N \N \N \N 1667 E.austroafricanum Erucastrum Erucastrum austroafricanum \N \N \N \N \N 1668 A.hancockii Astragalus Astragalus hancockii \N \N \N \N \N 1669 H.suaveolens Heliotropium Heliotropium suaveolens \N \N \N \N \N 1670 R.excellens Rhododendron Rhododendron excellens \N \N \N \N \N 1671 H.talbotii Hymenostegia Hymenostegia talbotii \N \N \N \N \N 1672 \N subspecies Pouteria myrsinoides subsp. reticulata \N \N \N \N \N 1673 M.caloptera Masdevallia Masdevallia caloptera \N \N \N \N \N 1674 G.horombensis Gladiolus Gladiolus horombensis \N \N \N \N \N 1675 C.glacialis Calceolaria Calceolaria glacialis \N \N \N \N \N 1676 D.SH-2010 Dysoxylum Dysoxylum sp. SH-2010 \N \N \N \N \N 1677 \N varietas Brassica rapa var. perviridis kabuna,spinach mustard,tendergreen \N \N \N \N 1678 G.glaciale Geum Geum glaciale \N \N \N \N \N 1679 R.thurberi Randia Randia thurberi \N \N \N \N \N 1680 C.nivea Cuscuta Cuscuta nivea \N \N \N \N \N 1681 \N genus Tristiropsis \N \N \N \N \N 1682 P.carnosum Pelargonium Pelargonium carnosum \N \N \N \N \N 1683 P.multiflorus Pterocephalus Pterocephalus multiflorus \N \N \N \N \N 1684 \N genus Ehrharta \N \N \N \N \N 1685 T.macrocarpa Trochomeria Trochomeria macrocarpa \N \N \N \N \N 1686 A.macalpinei Austrostipa Austrostipa macalpinei \N \N \N \N \N 1687 \N genus Angelica \N \N \N \N \N 1688 A.rigida Aletris Aletris rigida \N \N \N \N \N 1689 L.oppositifolia Lewisia Lewisia oppositifolia \N \N \N \N \N 1690 B.leptocarpa Brachyscome Brachyscome leptocarpa \N \N \N \N \N 1691 L.shanxiensis Leymus Leymus shanxiensis \N \N \N \N \N 1692 S.scandens Setaria Setaria scandens \N \N \N \N \N 1693 C.molinae Cristaria Cristaria molinae \N \N \N \N \N 1694 X.malpenensis x Gigantocalamus x Gigantocalamus malpenensis \N \N \N \N \N 1695 T.pentagona Trembleya Trembleya pentagona \N \N \N \N \N 1696 L.humilis Lathyrus Lathyrus humilis \N \N \N \N \N 1697 T.pungens Thesium Thesium pungens \N \N \N \N \N 1698 A.uncialis Asclepias Asclepias uncialis \N \N \N \N \N 1699 P.massiei Piper Piper massiei \N \N \N \N \N 1700 I.japonica Itea Itea japonica \N \N \N \N \N 1701 G.laxum Gossypium Gossypium laxum \N \N \N \N \N 1702 C.holostoma Carex Carex holostoma \N \N \N \N \N 1703 T.hispidum Tribolium Tribolium hispidum \N \N \N \N \N 1704 S.latifolia Scorzonera Scorzonera latifolia \N \N \N \N \N 1705 \N genus Buchenavia \N \N \N \N \N 1706 G.stocksii Gossypium Gossypium stocksii \N \N \N \N \N 1707 T.ternata Turpinia Turpinia ternata \N \N \N \N \N 1708 P.sessilifolia Pseuduvaria Pseuduvaria sessilifolia \N \N \N \N \N 1709 F.fragilis Festuca Festuca fragilis \N \N \N \N \N 1710 S.ruckeri Stanhopea Stanhopea ruckeri \N \N \N \N \N 1711 O.polypetala Oxygraphis Oxygraphis polypetala \N \N \N \N \N 1712 O.stelliphora Oreocomopsis Oreocomopsis stelliphora \N \N \N \N \N 1713 D.palmeri Distichlis Distichlis palmeri \N \N \N \N \N 1714 M.dissecta Merremia Merremia dissecta \N \N \N \N \N 1715 J.cannabifolia Jacobaea Jacobaea cannabifolia Aleutian ragwort \N \N \N \N 1716 R.loranthiflorum Rhododendron Rhododendron loranthiflorum \N \N \N \N \N 1717 A.aurantiaca Argemone Argemone aurantiaca \N \N \N \N \N 1718 C.borealis Clintonia Clintonia borealis \N \N \N \N \N 1719 R.trinervia Retanilla Retanilla trinervia \N \N \N \N \N 1720 \N subspecies Astragalus macropelmatus subsp. macropelmatus \N \N \N \N \N 1721 P.australis Polypogon Polypogon australis \N \N \N \N \N 1722 S.tenius Saxifraga Saxifraga tenius \N \N \N \N \N 1723 \N genus Lygeum \N \N \N \N \N 1724 A.cyanea Acacallis Acacallis cyanea \N \N \N \N \N 1725 \N genus Eremothamnus \N \N \N \N \N 1726 P.polyandra Parakeelya Parakeelya polyandra \N \N \N \N \N 1727 S.cordifolia Silene Silene cordifolia \N \N \N \N \N 1728 S.N303 Sigmatostalix Sigmatostalix sp. N303 \N \N \N \N \N 1729 \N subspecies Wahlenbergia pygmaea subsp. tararua \N \N \N \N \N 1730 C.woodsonii Cuscuta Cuscuta woodsonii \N \N \N \N \N 1731 L.catesbaei Lilium Lilium catesbaei \N \N \N \N \N 1732 C.crenulata Clidemia Clidemia crenulata \N \N \N \N \N 1733 P.duclouxii Primula Primula duclouxii \N \N \N \N \N 1734 Q.zehntneri Quiabentia Quiabentia zehntneri \N \N \N \N \N 1735 E.pusilla Erycina Erycina pusilla \N \N \N \N \N 1736 D.brandisii Dendrocalamus Dendrocalamus brandisii velvet-leaf bamboo \N \N \N \N 1737 \N no rank unclassified Commelinaceae \N \N \N \N \N 1738 \N genus Carthamus \N \N \N \N \N 1739 H.O-336 Hexadesmia Hexadesmia sp. Chase O-336 \N \N \N \N \N 1740 T.yoshiiana Tofieldia Tofieldia yoshiiana \N \N \N \N \N 1741 L.guianensis Licaria Licaria guianensis \N \N \N \N \N 1742 G.davlianidzeae Gagea Gagea davlianidzeae \N \N \N \N \N 1743 L.leptanthum Lebruniodendron Lebruniodendron leptanthum \N \N \N \N \N 1744 L.layardii Liparis Liparis layardii \N \N \N \N \N 1745 \N genus Molinaea \N \N \N \N \N 1746 S.involucrata Salvia Salvia involucrata \N \N \N \N \N 1747 \N genus Xerorchis \N \N \N \N \N 1748 S.ensifolium Solanum Solanum ensifolium \N \N \N \N \N 1749 M.rhyticarya Muehlenbeckia Muehlenbeckia rhyticarya \N \N \N \N \N 1750 C.torrentis Cardamine Cardamine torrentis \N \N \N \N \N 1751 C.caryotoides Calamus Calamus caryotoides \N \N \N \N \N 1752 \N subspecies Arabidopsis lyrata subsp. kamchatica \N \N \N \N \N 1753 S.3918 Sarcophrynium Sarcophrynium sp. Chase 3918 \N \N \N \N \N 1754 G.thymifolia Gaultheria Gaultheria thymifolia \N \N \N \N \N 1755 A.salmantica Armeria Armeria salmantica \N \N \N \N \N 1756 E.distichophylla Eustachys Eustachys distichophylla \N \N \N \N \N 1757 S.dumosa Sorbus Sorbus dumosa \N \N \N \N \N 1758 A.boissieriana Adelobotrys Adelobotrys boissieriana \N \N \N \N \N 1759 P.havardii Penstemon Penstemon havardii \N \N \N \N \N 1760 E.integrifolius Echinops Echinops integrifolius \N \N \N \N \N 1761 A.macrostachys Astragalus Astragalus macrostachys \N \N \N \N \N 1762 P.heterotepala Phytolacca Phytolacca heterotepala \N \N \N \N \N 1763 \N genus Barbacenia \N \N \N \N \N 1764 C.filifolia Crucianella Crucianella filifolia \N \N \N \N \N 1765 T.S5680 unclassified Taraxacum Taraxacum (sect. Erythrosperma) sp. S5680 \N \N \N \N \N 1766 T.magnificum Tropaeolum Tropaeolum magnificum \N \N \N \N \N 1767 S.korshinskyi Salsola Salsola korshinskyi \N \N \N \N \N 1768 E.brainii Eleocharis Eleocharis brainii \N \N \N \N \N 1769 I.baumiana Indigofera Indigofera baumiana \N \N \N \N \N 1770 P.firmifolium Pseudoprospero Pseudoprospero firmifolium \N \N \N \N \N 1771 P.melagangai Potoxylon Potoxylon melagangai \N \N \N \N \N 1772 E.lagascae Euphorbia Euphorbia lagascae \N \N \N \N \N 1773 M.roezlii Miltoniopsis Miltoniopsis roezlii \N \N \N \N \N 1774 T.haemantha Tabebuia Tabebuia haemantha \N \N \N \N \N 1775 M.gregoryi Metrosideros Metrosideros gregoryi \N \N \N \N \N 1776 L.aegyptiaca Luffa Luffa aegyptiaca dishcloth gourd,loofa,smooth loofah,sponge gourd,vegetable sponge \N \N \N \N 1777 P.patuliflora Phacelia Phacelia patuliflora \N \N \N \N \N 1778 N.andersonii Noccaea Noccaea andersonii \N \N \N \N \N 1779 \N genus Seymeria \N \N \N \N \N 1780 E.lindleyanum Eupatorium Eupatorium lindleyanum \N \N \N \N \N 1781 C.leporina Carex Carex leporina \N \N \N \N \N 1782 \N genus Oligochaeta \N \N \N \N \N 1783 P.volcanica Pozoa Pozoa volcanica \N \N \N \N \N 1784 E.varium Erucastrum Erucastrum varium \N \N \N \N \N 1785 A.philippinensis Astilbe Astilbe philippinensis \N \N \N \N \N 1786 M.affinis Mentzelia Mentzelia affinis \N \N \N \N \N 1787 P.tschuktschorum Primula Primula tschuktschorum \N \N \N \N \N 1788 O.ramosa Oligochaeta Oligochaeta ramosa \N \N \N \N \N 1789 C.submollis Crataegus Crataegus submollis \N \N \N \N \N 1790 \N genus Echidnopsis \N \N \N \N \N 1791 C.scirpoidea Carex Carex scirpoidea \N \N \N \N \N 1792 \N varietas Arisaema robustum var. purpureum \N \N \N \N \N 1793 P.lehmannii Pappobolus Pappobolus lehmannii \N \N \N \N \N 1794 C.setosa Crepis Crepis setosa bristly hawk's-beard \N \N \N \N 1795 S.welwitschii Securidaca Securidaca welwitschii \N \N \N \N \N 1796 P.pantrichum Panicum Panicum pantrichum \N \N \N \N \N 1797 C.capillaris Clidemia Clidemia capillaris \N \N \N \N \N 1798 R.inamoenus Ranunculus Ranunculus inamoenus \N \N \N \N \N 1799 S.boninense Santalum Santalum boninense \N \N \N \N \N 1800 \N genus Xylonagra \N \N \N \N \N 1801 \N genus Randonia \N \N \N \N \N 1802 C.cumingianus Chisocheton Chisocheton cumingianus \N \N \N \N \N 1803 P.cooperi Psilostrophe Psilostrophe cooperi \N \N \N \N \N 1804 M.glaziovii Manihot Manihot glaziovii \N \N \N \N \N 1805 C.riopalenqueana Cyrtochiloides Cyrtochiloides riopalenqueana \N \N \N \N \N 1806 C.longifolia Cliffortia Cliffortia longifolia \N \N \N \N \N 1807 S.dubium Schoenocaulon Schoenocaulon dubium \N \N \N \N \N 1808 T.lamarckiana Trema Trema lamarckiana \N \N \N \N \N 1809 B.rossica Boschniakia Boschniakia rossica \N \N \N \N \N 1810 N.corymbosa Nicotiana Nicotiana corymbosa \N \N \N \N \N 1811 O.colombiana Ochoterenaea Ochoterenaea colombiana \N \N \N \N \N 1812 G.singuliflora Glycosmis Glycosmis singuliflora \N \N \N \N \N 1813 R.yunnanense Rhododendron Rhododendron yunnanense \N \N \N \N \N 1814 Q.spinosa Quercus Quercus spinosa \N \N \N \N \N 1815 P.umbellatum Pseudabutilon Pseudabutilon umbellatum \N \N \N \N \N 1816 C.uniflorum Cerastium Cerastium uniflorum \N \N \N \N \N 1817 K.grandifolia Klasea Klasea grandifolia \N \N \N \N \N 1818 C.H1_28 Castilleja Castilleja sp. H1_28 \N \N \N \N \N 1819 S.1373 Suaeda Suaeda sp. Schuetze 1373 \N \N \N \N \N 1820 \N genus Tarennoidea \N \N \N \N \N 1821 N.lutea Nelumbo Nelumbo lutea American lotus,yellow lotus \N \N \N \N 1822 \N varietas Tetrastigma sichouense var. megalocarpum \N \N \N \N \N 1823 S.perez-chiscanoi Serapias Serapias perez-chiscanoi \N \N \N \N \N 1824 T.sublineare Tetrataenium Tetrataenium sublineare \N \N \N \N \N 1825 C.bicolor Calanticaria Calanticaria bicolor \N \N \N \N \N 1826 B.hildebrandtii Bauhinia Bauhinia hildebrandtii \N \N \N \N \N 1827 B.acerosa Banisteriopsis Banisteriopsis acerosa \N \N \N \N \N 1828 D.albiflora Dalea Dalea albiflora \N \N \N \N \N 1829 A.canescens Abatia Abatia canescens \N \N \N \N \N 1830 \N genus Chasmanthe \N \N \N \N \N 1831 I.sakeriana Impatiens Impatiens sakeriana \N \N \N \N \N 1832 I.collina Ixora Ixora collina \N \N \N \N \N 1833 L.piperi Lomatium Lomatium piperi \N \N \N \N \N 1834 J.debilis Juncus Juncus debilis \N \N \N \N \N 1835 M.latecrenata Miconia Miconia latecrenata \N \N \N \N \N 1836 M.octopetala Miconia Miconia octopetala \N \N \N \N \N 1837 C.stuckertii Caesalpinia Caesalpinia stuckertii \N \N \N \N \N 1838 P.montanum Pennisetum Pennisetum montanum \N \N \N \N \N 1839 A.kertesziae Aechmea Aechmea kertesziae \N \N \N \N \N 1840 S.171 Schinus Schinus sp. Chase 171 \N \N \N \N \N 1841 C.angustifolia Cyanostegia Cyanostegia angustifolia \N \N \N \N \N 1842 \N genus Peteria \N \N \N \N \N 1843 O.isthmocarpus Ornithopus Ornithopus isthmocarpus \N \N \N \N \N 1844 S.klaineana Sindora Sindora klaineana \N \N \N \N \N 1845 D.dumetorum Diospyros Diospyros dumetorum \N \N \N \N \N 1846 \N genus Neofabricia \N \N \N \N \N 1847 M.xiaojinensis Malus Malus xiaojinensis \N \N \N \N \N 1848 \N genus Sinochasea \N \N \N \N \N 1849 Y.niitakayamensis Yushania Yushania niitakayamensis \N \N \N \N \N 1850 E.breviscapus Euchiton Euchiton breviscapus \N \N \N \N \N 1851 A.dodecadontum Allium Allium dodecadontum \N \N \N \N \N 1852 \N genus Elachanthemum \N \N \N \N \N 1853 T.sonderiana Tricalysia Tricalysia sonderiana \N \N \N \N \N 1854 D.capituliflorum Dendrobium Dendrobium capituliflorum \N \N \N \N \N 1855 \N genus Ecpoma \N \N \N \N \N 1856 A.jesdianus Astragalus Astragalus jesdianus \N \N \N \N \N 1857 L.collinus Lotus Lotus collinus \N \N \N \N \N 1858 A.maroccana Avena Avena maroccana \N \N \N \N \N 1859 \N order Fagales \N \N \N \N \N 1860 \N subspecies Ficus macrophylla subsp. columnaris Lord Howe Island banyan \N \N \N \N 1861 \N genus Ceriops \N \N \N \N \N 1862 P.setulosum Pleiochiton Pleiochiton setulosum \N \N \N \N \N 1863 \N varietas Loropetalum chinense var. rubrum \N \N \N \N \N 1864 E.sample environmental samples Taxonomy:664975 Euphorbiaceae environmental sample \N \N \N \N \N 1865 P.hookeriana Plantago Plantago hookeriana \N \N \N \N \N 1866 M.heteroptera Masdevallia Masdevallia heteroptera \N \N \N \N \N 1867 \N genus Latrobea \N \N \N \N \N 1868 L.nitida Lycianthes Lycianthes nitida \N \N \N \N \N 1869 \N genus Morina \N \N \N \N \N 1870 T.pubera Trichosanthes Trichosanthes pubera \N \N \N \N \N 1871 G.schunkevigoi Guatteria Guatteria schunkevigoi \N \N \N \N \N 1872 \N genus Herrania \N \N \N \N \N 1873 C.ajacis Consolida Consolida ajacis rocket larkspur \N \N \N \N 1874 M.hispanica Malva Malva hispanica \N \N \N \N \N 1875 A.mallotopus Arnica Arnica mallotopus \N \N \N \N \N 1876 L.pumila Lysipomia Lysipomia pumila \N \N \N \N \N 1877 G.triflora Glyceria Glyceria triflora \N \N \N \N \N 1878 C.marginata Cliffortia Cliffortia marginata \N \N \N \N \N 1879 S.torvum Solanum Solanum torvum berenjena cimarrona,devil's fig,pea eggplant,pokak,turkey berry \N \N \N \N 1880 A.scorzonerifolium Allium Allium scorzonerifolium \N \N \N \N \N 1881 P.gillettii Plectranthus Plectranthus gillettii \N \N \N \N \N 1882 A.hoffmanii Allium Allium hoffmanii \N \N \N \N \N 1883 P.pendula Protea Protea pendula \N \N \N \N \N 1884 A.coccineus Astragalus Astragalus coccineus \N \N \N \N \N 1885 D.flavocarpa Diospyros Diospyros flavocarpa \N \N \N \N \N 1886 \N genus Roscheria \N \N \N \N \N 1887 P.distans Paspalidium Paspalidium distans \N \N \N \N \N 1888 M.amblysepala Microlicia Microlicia amblysepala \N \N \N \N \N 1889 D.trilobus Dolichos Dolichos trilobus \N \N \N \N \N 1890 \N genus Beccariophoenix \N \N \N \N \N 1891 D.rivularis Diervilla Diervilla rivularis \N \N \N \N \N 1892 T.bufalina Tabernaemontana Tabernaemontana bufalina \N \N \N \N \N 1893 \N genus Cymodocea \N \N \N \N \N 1894 B.popoviana Boswellia Boswellia popoviana \N \N \N \N \N 1895 S.oblanceolata Swartzia Swartzia oblanceolata \N \N \N \N \N 1896 \N genus Macledium \N \N \N \N \N 1897 B.hirtzii Benzingia Benzingia hirtzii \N \N \N \N \N 1898 C.cirsiifolia Caiophora Caiophora cirsiifolia \N \N \N \N \N 1899 A.chilensis Apodasmia Apodasmia chilensis \N \N \N \N \N 1900 P.manillensis Psychotria Psychotria manillensis \N \N \N \N \N 1901 L.nitida Larrea Larrea nitida \N \N \N \N \N 1902 M.wagneriana Mammillaria Mammillaria wagneriana \N \N \N \N \N 1903 A.magna Avena Avena magna \N \N \N \N \N 1904 T.longipedicellata Trevesia Trevesia longipedicellata \N \N \N \N \N 1905 S.arenarius Syngonanthus Syngonanthus arenarius \N \N \N \N \N 1906 C.pannosus Cotoneaster Cotoneaster pannosus \N \N \N \N \N 1907 M.1614 Miconia Miconia aff. calignosa Penneys 1614 \N \N \N \N \N 1908 C.aucheri Cornulaca Cornulaca aucheri \N \N \N \N \N 1909 A.tomentosus Alectryon Alectryon tomentosus \N \N \N \N \N 1910 \N genus Nassella \N \N \N \N \N 1911 E.glaucescens Eucalyptus Eucalyptus glaucescens \N \N \N \N \N 1912 S.maculatus Smallanthus Smallanthus maculatus \N \N \N \N \N 1913 \N subspecies Eriosyce senilis subsp. senilis \N \N \N \N \N 1914 S.sphacelata Setaria Setaria sphacelata \N \N \N \N \N 1915 \N genus Maianthemum \N \N \N \N \N 1916 \N varietas Triticum spelta var. duhamelianum \N \N \N \N \N 1917 C.revoluta Chaetanthera Chaetanthera revoluta \N \N \N \N \N 1918 \N genus Stenaria \N \N \N \N \N 1919 L.onustus Lupinus Lupinus onustus \N \N \N \N \N 1920 A.monosperma Artemisia Artemisia monosperma \N \N \N \N \N 1921 L.2233 Lupinus Lupinus sp. CEH 2233 \N \N \N \N \N 1922 U.hamata Uncinia Uncinia hamata \N \N \N \N \N 1923 S.hypacrarthrum Solanum Solanum hypacrarthrum \N \N \N \N \N 1924 \N genus Acanthopale \N \N \N \N \N 1925 S.colocasiifolia Steudnera Steudnera colocasiifolia \N \N \N \N \N 1926 \N subspecies Melaleuca acacioides subsp. acacioides \N \N \N \N \N 1927 P.runcinata Parrya Parrya runcinata \N \N \N \N \N 1928 A.conjugata Arrabidaea Arrabidaea conjugata \N \N \N \N \N 1929 M.brevicornu Muraltia Muraltia brevicornu \N \N \N \N \N 1930 A.auriculata Arctostaphylos Arctostaphylos auriculata \N \N \N \N \N 1931 \N subspecies Montanoa tomentosa subsp. microcephala \N \N \N \N \N 1932 P.sanderae Psychopsis Psychopsis sanderae \N \N \N \N \N 1933 \N genus Newcastelia \N \N \N \N \N 1934 I.GAHR-23 Inversodicraea Inversodicraea cf. annithomae Ghouge et al. GAHR-23 \N \N \N \N \N 1935 \N genus Aetheopappus \N \N \N \N \N 1936 M.tatsienense Maianthemum Maianthemum tatsienense \N \N \N \N \N 1937 N.integrifolia Neopringlea Neopringlea integrifolia \N \N \N \N \N 1939 M.lugubris Moraea Moraea lugubris \N \N \N \N \N 1940 \N genus Bremeria \N \N \N \N \N 1941 P.nigra Pedicularis Pedicularis nigra \N \N \N \N \N 1942 M.chinensis Mosla Mosla chinensis \N \N \N \N \N 1943 S.acutus Skytanthus Skytanthus acutus \N \N \N \N \N 1944 \N varietas Boehmeria macrophylla var. scabrella \N \N \N \N \N 1945 I.1794 Indigofera Indigofera sp. 9 Barker 1794 \N \N \N \N \N 1946 C.floridana Coreopsis Coreopsis floridana \N \N \N \N \N 1947 M.parryi Mimulus Mimulus parryi \N \N \N \N \N 1948 \N subspecies Anthyllis vulneraria subsp. carpatica \N \N \N \N \N 1949 C.plectranthifolia Calceolaria Calceolaria plectranthifolia \N \N \N \N \N 1950 B.balsamifera Blumea Blumea balsamifera \N \N \N \N \N 1951 \N tribe Reinhardtieae \N \N \N \N \N 1952 \N tribe Cariceae \N \N \N \N \N 1953 O.MO620 Oxalis Oxalis sp. 1 MO620 \N \N \N \N \N 1954 I.congolensis Impatiens Impatiens congolensis \N \N \N \N \N 1955 F.cauliflora Fordia Fordia cauliflora \N \N \N \N \N 1956 C.anteojoensis Cylindropuntia Cylindropuntia anteojoensis \N \N \N \N \N 1957 H.cultivar Hippeastrum Hippeastrum hybrid cultivar \N \N \N \N \N 1958 S.maximowiczii Saussurea Saussurea maximowiczii \N \N \N \N \N 1959 C.monanthogynus Croton Croton monanthogynus \N \N \N \N \N 1960 P.bicolor Pera Pera bicolor \N \N \N \N \N 1961 A.simpsonii Arachis Arachis simpsonii \N \N \N \N \N 1962 T.longituba Tetraselago Tetraselago longituba \N \N \N \N \N 1963 G.inophloia Gossia Gossia inophloia \N \N \N \N \N 1964 P.micranthum Polemonium Polemonium micranthum \N \N \N \N \N 1965 A.flava Aesculus Aesculus flava sweet buckeye,yellow buckeye \N \N \N \N 1966 M.africanum Macrotyloma Macrotyloma africanum \N \N \N \N \N 1967 \N genus Warburgia \N \N \N \N \N 1968 C.vavilovii Cousinia Cousinia vavilovii \N \N \N \N \N 1969 P.chrysantha Psychotria Psychotria chrysantha \N \N \N \N \N 1970 C.aeolica Centaurea Centaurea aeolica \N \N \N \N \N 1971 M.chrysocarpa Myrceugenia Myrceugenia chrysocarpa \N \N \N \N \N 1972 G.baldianum Gymnocalycium Gymnocalycium baldianum \N \N \N \N \N 1973 C.stellipila Comanthosphace Comanthosphace stellipila \N \N \N \N \N 1974 T.boivinii Terminalia Terminalia boivinii \N \N \N \N \N 1975 S.japonica Salix Salix japonica \N \N \N \N \N 1976 S.anacardium Semecarpus Semecarpus anacardium \N \N \N \N \N 1977 H.8311 Holcoglossum Holcoglossum sp. 8311 \N \N \N \N \N 1978 O.livida Oxalis Oxalis livida \N \N \N \N \N 1979 B.tischleri Berberis Berberis tischleri \N \N \N \N \N 1980 H.cylindrica Helixanthera Helixanthera cylindrica \N \N \N \N \N 1981 A.nitida Actinodaphne Actinodaphne nitida \N \N \N \N \N 1982 \N varietas Carex stipata var. maxima \N \N \N \N \N 1983 E.irritans Eulalia Eulalia irritans \N \N \N \N \N 1984 L.saligna Lactuca Lactuca saligna \N \N \N \N \N 1985 R.pannonicus Ranunculus Ranunculus pannonicus \N \N \N \N \N 1986 \N subspecies Impatiens engleri subsp. engleri \N \N \N \N \N 1987 C.juliani-marnieri Cynanchum Cynanchum juliani-marnieri \N \N \N \N \N 1988 T.triflora Trochetia Trochetia triflora \N \N \N \N \N 1989 \N genus Daphniphyllum \N \N \N \N \N 1990 S.JK-2009 Sebaea Sebaea sp. 1 JK-2009 \N \N \N \N \N 1991 M.zenii Magnolia Magnolia zenii \N \N \N \N \N 1992 \N genus Ranunculus buttercups \N \N \N \N 1993 S.glanduligera Saussurea Saussurea glanduligera \N \N \N \N \N 1994 S.orthosticha Setaria Setaria orthosticha \N \N \N \N \N 1995 D.lawesii Dendrobium Dendrobium lawesii \N \N \N \N \N 1996 P.ambigua Palisota Palisota ambigua \N \N \N \N \N 1997 P.mexicana Pistacia Pistacia mexicana Mexican pistachio \N \N \N \N 1998 P.pentandra Picramnia Picramnia pentandra \N \N \N \N \N 1999 \N genus Irvingia \N \N \N \N \N 2000 R.fruticosa Rubia Rubia fruticosa \N \N \N \N \N 2001 B.canalensis Blumea Blumea canalensis \N \N \N \N \N 2002 D.pylzowii Delphinium Delphinium pylzowii \N \N \N \N \N 2003 S.rondeletioides Strychnos Strychnos rondeletioides \N \N \N \N \N 2004 A.cryptantha Alchemilla Alchemilla cryptantha \N \N \N \N \N 2005 A.microphylla Antennaria Antennaria microphylla \N \N \N \N \N 2006 \N subspecies Ipomopsis aggregata subsp. formosissima \N \N \N \N \N 2007 N.capensis Nymphaea Nymphaea capensis Cape Blue water-lily \N \N \N \N 2008 G.harveyanum Glochidion Glochidion harveyanum \N \N \N \N \N 2009 A.48 Acanthopale Acanthopale sp. Sidwell 48 \N \N \N \N \N 2010 \N genus Cyclocheilon \N \N \N \N \N 2011 \N subspecies Erica glauca subsp. glauca \N \N \N \N \N 2012 D.antoninum Delphinium Delphinium antoninum Anthony peak larkspur \N \N \N \N 2013 O.enneaphylla Oxalis Oxalis enneaphylla \N \N \N \N \N 2014 P.luquensis Ptilagrostis Ptilagrostis luquensis \N \N \N \N \N 2015 P.minor Pyrola Pyrola minor \N \N \N \N \N 2016 S.Lake Sclerostegia Sclerostegia sp. Hammersley Lake \N \N \N \N \N 2017 C.penninervis Cissus Cissus penninervis \N \N \N \N \N 2018 L.johnstonii Lithospermum Lithospermum johnstonii \N \N \N \N \N 2019 S.24 Schizanthus Schizanthus aff. pinnatus Reeves 24 \N \N \N \N \N 2020 P.campechiana Pouteria Pouteria campechiana canistel,eggfruit-tree,yellow sapote \N \N \N \N 2021 Z.pallidinervia Zehneria Zehneria pallidinervia \N \N \N \N \N 2022 \N varietas Rhododendron culminicola var. angiense \N \N \N \N \N 2023 E.panchganiensis Euphorbia Euphorbia panchganiensis \N \N \N \N \N 2024 G.concolor Gomesa Gomesa concolor \N \N \N \N \N 2025 \N genus Schinus \N \N \N \N \N 2026 Y.filifera Yucca Yucca filifera \N \N \N \N \N 2027 O.glacialis Oreopolus Oreopolus glacialis \N \N \N \N \N 2028 O.ferrum-equinum Ophrys Ophrys ferrum-equinum \N \N \N \N \N 2029 \N genus Melica \N \N \N \N \N 2030 A.gibba Asclepias Asclepias gibba \N \N \N \N \N 2031 L.rosea Lycoris Lycoris rosea \N \N \N \N \N 2032 L.crispata Laggera Laggera crispata \N \N \N \N \N 2033 C.poeppigiana Calathea Calathea poeppigiana \N \N \N \N \N 2034 D.tuerckheimii Dichaea Dichaea tuerckheimii \N \N \N \N \N 3492 \N genus Faurea \N \N \N \N \N 2035 A.leucopogon Arrabidaea Arrabidaea leucopogon \N \N \N \N \N 2036 \N genus Stenanthemum \N \N \N \N \N 2037 D.mutabile Dendrobium Dendrobium mutabile \N \N \N \N \N 2038 E.negromontana Euphorbia Euphorbia negromontana \N \N \N \N \N 2039 C.celastroides Combretum Combretum celastroides \N \N \N \N \N 2040 M.robusta Muhlenbergia Muhlenbergia robusta \N \N \N \N \N 2041 A.brevipes Arenga Arenga brevipes \N \N \N \N \N 2042 M.boolii Mammillaria Mammillaria boolii \N \N \N \N \N 2043 P.fuchsioides Palicourea Palicourea fuchsioides \N \N \N \N \N 2044 \N subtribe Ammochloinae \N \N \N \N \N 2045 \N genus Verbascum mulleins \N \N \N \N 2046 T.demerarae Trattinnickia Trattinnickia demerarae \N \N \N \N \N 2047 R.paniculata Ridleyella Ridleyella paniculata \N \N \N \N \N 2048 \N tribe Naucleeae \N \N \N \N \N 2049 O.micranthum Oddoniodendron Oddoniodendron micranthum \N \N \N \N \N 2050 S.divinorum Salvia Salvia divinorum diviner's sage \N \N \N \N 2051 I.fenghwaiana Impatiens Impatiens fenghwaiana \N \N \N \N \N 2052 M.verticillata Minthostachys Minthostachys verticillata \N \N \N \N \N 2053 M.occidentalis Myriocephalus Myriocephalus occidentalis \N \N \N \N \N 2054 P.bracteolatum Pittosporum Pittosporum bracteolatum \N \N \N \N \N 2055 G.papuana Grevillea Grevillea papuana \N \N \N \N \N 2056 C.lanata Calathea Calathea lanata \N \N \N \N \N 2057 V.parvifolia Vangueria Vangueria parvifolia \N \N \N \N \N 2058 \N genus Melanodendron \N \N \N \N \N 2059 O.matancillae Oxalis Oxalis matancillae \N \N \N \N \N 2060 C.bicolor Calyptrocarya Calyptrocarya bicolor \N \N \N \N \N 2061 L.discoidea Layia Layia discoidea \N \N \N \N \N 2062 \N genus Tubocapsicum \N \N \N \N \N 2063 \N subspecies Clermontia arborescens subsp. arborescens \N \N \N \N \N 2064 A.martinii Ampelocissus Ampelocissus martinii \N \N \N \N \N 2065 \N order Canellales \N \N \N \N \N 2066 \N subspecies Disa cephalotes subsp. frigida \N \N \N \N \N 2067 S.angustifolia Stylosanthes Stylosanthes angustifolia \N \N \N \N \N 2068 L.heterophyllus Lasiocephalus Lasiocephalus heterophyllus \N \N \N \N \N 2069 C.tuberculata Caralluma Caralluma tuberculata \N \N \N \N \N 2070 \N subspecies Chionochloa conspicua subsp. conspicua \N \N \N \N \N 2071 \N genus Pseudobombax \N \N \N \N \N 2072 E.fasciculata Eugenia Eugenia fasciculata \N \N \N \N \N 2073 S.repens Stachyphrynium Stachyphrynium repens \N \N \N \N \N 2074 S.ovata Silene Silene ovata Blue Ridge catchfly \N \N \N \N 2075 E.candidum Erythrospermum Erythrospermum candidum \N \N \N \N \N 2076 P.concinna Pimelea Pimelea concinna \N \N \N \N \N 2077 S.acinifolia Sipanea Sipanea acinifolia \N \N \N \N \N 2078 M.paracatuensis Myrcia Myrcia paracatuensis \N \N \N \N \N 2079 A.grandifolia Adenophaedra Adenophaedra grandifolia \N \N \N \N \N 2080 \N genus Schkuhria \N \N \N \N \N 2081 B.cronquistii Bidens Bidens cronquistii \N \N \N \N \N 2082 T.sylvaticum Trifolium Trifolium sylvaticum \N \N \N \N \N 2083 M.pteropoda Montanoa Montanoa pteropoda \N \N \N \N \N 2084 F.scandens Fischeria Fischeria scandens \N \N \N \N \N 2085 R.apiifolius Ranunculus Ranunculus apiifolius \N \N \N \N \N 2086 S.pyrenaica Salvia Salvia pyrenaica \N \N \N \N \N 2087 A.griseus Acanthocereus Acanthocereus griseus \N \N \N \N \N 2088 D.nipponica Dioscorea Dioscorea nipponica \N \N \N \N \N 2089 S.33.073 Salicornia Salicornia aff. perennans Freitag 33.073 \N \N \N \N \N 2090 A.sinanensis Artemisia Artemisia sinanensis \N \N \N \N \N 2091 V.fruticulosa Vanhouttea Vanhouttea fruticulosa \N \N \N \N \N 2092 A.bowermaniae Arctostaphylos Arctostaphylos bowermaniae \N \N \N \N \N 2093 A.glomerosa Acacia Acacia glomerosa \N \N \N \N \N 2094 O.campicola Oxalis Oxalis campicola \N \N \N \N \N 2095 L.CVM-2007-4 Leandra Leandra sp. CVM-2007-4 \N \N \N \N \N 2096 \N genus Vallea \N \N \N \N \N 2097 G.viridiflorus Gladiolus Gladiolus viridiflorus \N \N \N \N \N 2098 R.creticus Ranunculus Ranunculus creticus \N \N \N \N \N 2099 I.graminea Ipomoea Ipomoea graminea \N \N \N \N \N 2100 C.ussuriensis Codonopsis Codonopsis ussuriensis \N \N \N \N \N 2101 D.floribunda Didymaea Didymaea floribunda \N \N \N \N \N 2102 R.drepanensis Ruppia Ruppia drepanensis \N \N \N \N \N 2103 S.davisense Solanum Solanum davisense \N \N \N \N \N 2104 A.desideratum Anarthrophyllum Anarthrophyllum desideratum \N \N \N \N \N 2105 A.goliathiana Aristolochia Aristolochia goliathiana \N \N \N \N \N 2106 P.gazelle-peninsulae Prunus Prunus gazelle-peninsulae \N \N \N \N \N 2107 R.suffruticosa Reseda Reseda suffruticosa \N \N \N \N \N 2108 \N genus Namaquanula \N \N \N \N \N 2109 C.linearis Croton Croton linearis \N \N \N \N \N 2110 \N genus Peponidium \N \N \N \N \N 2111 M.Aq-red1 Myriophyllum Myriophyllum sp. Aq-red1 \N \N \N \N \N 2112 P.antiatlantica Pulicaria Pulicaria antiatlantica \N \N \N \N \N 2113 M.valerioi Maxillaria Maxillaria valerioi \N \N \N \N \N 2114 P.horsmannii Plagiolirion Plagiolirion horsmannii \N \N \N \N \N 2115 \N genus Psychopsis \N \N \N \N \N 2116 R.pubescens Ruagea Ruagea pubescens \N \N \N \N \N 2117 \N genus Philyrophyllum \N \N \N \N \N 2118 A.peduncularis Ancistrotropis Ancistrotropis peduncularis \N \N \N \N \N 2119 L.hemsleyi Lysimachia Lysimachia hemsleyi \N \N \N \N \N 2120 B.longipes Boesenbergia Boesenbergia longipes \N \N \N \N \N 2121 S.oligantha Strobilanthes Strobilanthes oligantha \N \N \N \N \N 2122 C.grandiflora Collinsia Collinsia grandiflora \N \N \N \N \N 2123 \N genus Platystemma \N \N \N \N \N 2124 N.brassii Neonauclea Neonauclea brassii \N \N \N \N \N 2125 B.incana Brassica Brassica incana \N \N \N \N \N 2126 \N subspecies Anthemis tenuisecta subsp. tenuisecta \N \N \N \N \N 2127 E.dolichopoda Eriotheca Eriotheca dolichopoda \N \N \N \N \N 2128 H.smilacina Hyperbaena Hyperbaena smilacina \N \N \N \N \N 2129 \N genus Schizotrichia \N \N \N \N \N 2130 P.centigrana Potentilla Potentilla centigrana \N \N \N \N \N 2131 E.glaucophyllum Erodium Erodium glaucophyllum \N \N \N \N \N 2132 E.1414 Etlingera Etlingera aff. pauciflora Mood and Pedersen 1414 \N \N \N \N \N 2133 \N varietas Saussurea nipponica var. hokurokuensis \N \N \N \N \N 2134 \N genus Bletilla \N \N \N \N \N 2135 G.arbutifolia Gymnosporia Gymnosporia arbutifolia \N \N \N \N \N 2136 H.meyeniana Hypochaeris Hypochaeris meyeniana \N \N \N \N \N 2137 E.altissima Erythrorchis Erythrorchis altissima \N \N \N \N \N 2138 R.suffrutescens Rogiera Rogiera suffrutescens \N \N \N \N \N 2139 C.shimidzensis Carex Carex shimidzensis \N \N \N \N \N 2140 O.argophylla Olearia Olearia argophylla \N \N \N \N \N 2141 S.polymorpha Synaphea Synaphea polymorpha \N \N \N \N \N 2142 \N varietas Centaurea rouyi var. macrocephala \N \N \N \N \N 2143 S.china Smilax Smilax china China-root \N \N \N \N 2144 T.soveticum Triticum Triticum x soveticum \N \N \N \N \N 2145 R.breviperulatum Rhododendron Rhododendron breviperulatum \N \N \N \N \N 2146 \N no rank Saccharum hybrid cultivar Co 740 \N \N \N \N \N 2147 P.pseudolindenii Piper Piper pseudolindenii \N \N \N \N \N 2148 H.canadensis Hydrastis Hydrastis canadensis goldenseal \N \N \N \N 2149 \N varietas Kalanchoe rhombopilosa var. viridifolia \N \N \N \N \N 2150 E.ibaguense Epidendrum Epidendrum ibaguense \N \N \N \N \N 2151 L.inconspicua Lonicera Lonicera inconspicua \N \N \N \N \N 2152 C.cogniauxiana Christensonella Christensonella cogniauxiana \N \N \N \N \N 2153 G.atrosanguinea Globba Globba atrosanguinea \N \N \N \N \N 2154 C.caffra Cordia Cordia caffra \N \N \N \N \N 2155 L.acuminata Levieria Levieria acuminata \N \N \N \N \N 2156 \N genus Gomphrena \N \N \N \N \N 2157 G.sericeovillosus Gladiolus Gladiolus sericeovillosus \N \N \N \N \N 2158 \N genus Kreodanthus \N \N \N \N \N 2159 E.rostkoviana Euphrasia Euphrasia rostkoviana \N \N \N \N \N 2160 B.ranunculoides Baldellia Baldellia ranunculoides \N \N \N \N \N 2161 S.congesta Saussurea Saussurea congesta \N \N \N \N \N 2162 G.glabra Grewia Grewia glabra \N \N \N \N \N 2163 R.racemiflorum Rhipidocladum Rhipidocladum racemiflorum \N \N \N \N \N 2164 B.kewensis Belosynapsis Belosynapsis kewensis \N \N \N \N \N 2165 H.coacta Hydrangea Hydrangea coacta \N \N \N \N \N 2166 A.chrysanthum Allium Allium chrysanthum \N \N \N \N \N 2167 A.forrestii Allium Allium forrestii \N \N \N \N \N 2168 C.montana Centaurea Centaurea montana \N \N \N \N \N 2169 G.dentata Gunnera Gunnera dentata \N \N \N \N \N 2170 P.euxinum Polygonum Polygonum euxinum \N \N \N \N \N 2171 O.picridis Orobanche Orobanche picridis \N \N \N \N \N 2172 D.volubilis Dalechampia Dalechampia volubilis \N \N \N \N \N 2173 P.sinaicum Phagnalon Phagnalon sinaicum \N \N \N \N \N 2174 J.BAC-2010 unclassified Juncaceae Juncaceae sp. A5 BAC-2010 \N \N \N \N \N 2175 A.W86S127 Aframomum Aframomum sp. Waimea W86S127 \N \N \N \N \N 2176 A.myosotidea Anthocercis Anthocercis myosotidea \N \N \N \N \N 2177 T.chinensis Tamarix Tamarix chinensis \N \N \N \N \N 2178 B.imerinense Bulbophyllum Bulbophyllum imerinense \N \N \N \N \N 2179 P.weberiana Pereskia Pereskia weberiana \N \N \N \N \N 2180 B.stricta Boechera Boechera stricta \N \N \N \N \N 2181 C.kurdica Cuscuta Cuscuta kurdica \N \N \N \N \N 2182 F.OD3D0132 Ficus Ficus sp. OD3D0132 \N \N \N \N \N 2183 D.greenmanii Dyschoriste Dyschoriste greenmanii \N \N \N \N \N 2184 R.undata Reseda Reseda undata \N \N \N \N \N 2185 \N varietas Magnolia fraseri var. fraseri \N \N \N \N \N 2186 M.elaeagni Memecylon Memecylon elaeagni \N \N \N \N \N 2187 F.tenella Fritillaria Fritillaria tenella \N \N \N \N \N 2188 G.guianensis Guatteria Guatteria guianensis \N \N \N \N \N 2189 C.stenophylla Caragana Caragana stenophylla \N \N \N \N \N 2190 P.ankasensis Psychotria Psychotria ankasensis \N \N \N \N \N 2191 C.jamesii Chionophila Chionophila jamesii \N \N \N \N \N 2192 \N varietas Hedysarum boreale var. boreale \N \N \N \N \N 2193 H.rhodopensis Haberlea Haberlea rhodopensis \N \N \N \N \N 2194 P.SH-2010 Portulacaria Portulacaria sp. SH-2010 \N \N \N \N \N 2195 L.2016 Lupinus Lupinus sp. CEH 2016 \N \N \N \N \N 2196 N.heterophylla Notanthera Notanthera heterophylla \N \N \N \N \N 2197 H.drummondii Hoffmannseggia Hoffmannseggia drummondii \N \N \N \N \N 2198 P.intermedia Physostegia Physostegia intermedia \N \N \N \N \N 2199 P.calophylla Palicourea Palicourea calophylla \N \N \N \N \N 2200 \N genus Hypertelis \N \N \N \N \N 2201 E.pterophylla Ekebergia Ekebergia pterophylla \N \N \N \N \N 2202 S.caespitosa Scorzonera Scorzonera caespitosa \N \N \N \N \N 2203 C.arietinum Cicer Cicer arietinum chickpea,garbanzo \N \N \N \N 2204 T.ponticum Thinopyrum Thinopyrum ponticum \N \N \N \N \N 2205 V.polemonioides Valeriana Valeriana polemonioides \N \N \N \N \N 2206 D.sootepense Dasymaschalon Dasymaschalon sootepense \N \N \N \N \N 2207 S.confusa Symplocos Symplocos confusa \N \N \N \N \N 2208 E.ilicifolium Epimedium Epimedium ilicifolium \N \N \N \N \N 2209 H.aureus Hyoscyamus Hyoscyamus aureus \N \N \N \N \N 2210 V.caucasica Veronica Veronica caucasica \N \N \N \N \N 2211 M.drouhardii Moringa Moringa drouhardii \N \N \N \N \N 2212 \N genus Chionolaena \N \N \N \N \N 2213 G.mosieri Gaylussacia Gaylussacia mosieri \N \N \N \N \N 2214 C.echinatus Cyperus Cyperus echinatus teasel sedge \N \N \N \N 2215 F.buxifolia Fernelia Fernelia buxifolia \N \N \N \N \N 2216 D.pallescens Deianira Deianira pallescens \N \N \N \N \N 2217 T.tetragonioides Tetragonia Tetragonia tetragonioides \N \N \N \N \N 2218 E.purpurea Echinacea Echinacea purpurea \N \N \N \N \N 2219 S.hibernum Solanum Solanum hibernum \N \N \N \N \N 2220 Z.JL-2011 Zanthoxylum Zanthoxylum sp. JL-2011 \N \N \N \N \N 2221 T.psorocarpa Tabernaemontana Tabernaemontana psorocarpa \N \N \N \N \N 2222 E.dendroides Euphorbia Euphorbia dendroides \N \N \N \N \N 2223 D.novolympica Draba Draba novolympica \N \N \N \N \N 2224 P.hamosa Phlomoides Phlomoides hamosa \N \N \N \N \N 2225 C.woodsoniana Chamaedorea Chamaedorea woodsoniana \N \N \N \N \N 3493 \N genus Rayleya \N \N \N \N \N 2226 Q.palustris Quercus Quercus palustris pin oak \N \N \N \N 2227 C.palanostigma Croton Croton palanostigma \N \N \N \N \N 2228 T.jordanensis Thysanoglossa Thysanoglossa jordanensis \N \N \N \N \N 2229 G.geniculatum Geum Geum geniculatum \N \N \N \N \N 2230 \N genus Trias \N \N \N \N \N 2231 C.brevior Carex Carex brevior \N \N \N \N \N 2232 D.caeruleum Delphinium Delphinium caeruleum \N \N \N \N \N 2233 B.941 Baudouinia Baudouinia sp. Razafitsalama 941 \N \N \N \N \N 2234 A.bakhtiaricum Allium Allium bakhtiaricum \N \N \N \N \N 2235 C.revolutum Cyrtochilum Cyrtochilum revolutum \N \N \N \N \N 2236 \N genus Clausena \N \N \N \N \N 2237 G.liotardii Gagea Gagea liotardii \N \N \N \N \N 2238 \N varietas Ourisia sessilifolia var. splendida \N \N \N \N \N 2239 A.officinarum Alpinia Alpinia officinarum Chinese-ginger,lesser galangal \N \N \N \N 2240 M.polystachya Moraea Moraea polystachya \N \N \N \N \N 2241 G.rapunculoides Gentianella Gentianella rapunculoides \N \N \N \N \N 2242 I.juncea Iris Iris juncea \N \N \N \N \N 2243 A.psilospermus Allophylus Allophylus psilospermus \N \N \N \N \N 2244 D.15249 Dialium Dialium sp. Breteler 15249 \N \N \N \N \N 2245 M.porifolia Magallana Magallana porifolia \N \N \N \N \N 2246 \N varietas Amelanchier alnifolia var. cusickii \N \N \N \N \N 2247 \N varietas Lilium pyrenaicum var. albanicum \N \N \N \N \N 2248 L.caespitosa Luzula Luzula caespitosa \N \N \N \N \N 2249 C.spiroceras Cicer Cicer spiroceras \N \N \N \N \N 2250 \N genus Cardiospermum \N \N \N \N \N 2251 E.longituba Elettaria Elettaria longituba \N \N \N \N \N 2252 P.tryphostemmatoides Passiflora Passiflora tryphostemmatoides \N \N \N \N \N 2253 P.angustifolia Pentanisia Pentanisia angustifolia \N \N \N \N \N 2254 \N genus Sphaerosacme \N \N \N \N \N 2255 B.aspera Bellonia Bellonia aspera \N \N \N \N \N 2256 P.collinsiae Phyllanthus Phyllanthus collinsiae \N \N \N \N \N 2257 S.alba Sinapis Sinapis alba bai jie,white mustard,yellow mustard \N \N \N \N 2258 G.podolica Gagea Gagea podolica \N \N \N \N \N 2259 P.coriarium Psilocaulon Psilocaulon coriarium \N \N \N \N \N 2260 \N genus Dysphania \N \N \N \N \N 2261 \N genus Munzothamnus \N \N \N \N \N 2262 \N tribe Mandragoreae \N \N \N \N \N 2263 \N family Caryophyllaceae pink family \N \N \N \N 2264 M.lyallii Micranthes Micranthes lyallii \N \N \N \N \N 2265 P.ferganensis Pseudoroegneria Pseudoroegneria ferganensis \N \N \N \N \N 2266 \N genus Sacoila \N \N \N \N \N 2267 A.bonariensis Acacia Acacia bonariensis \N \N \N \N \N 2268 \N genus Ocellochloa \N \N \N \N \N 2269 V.propinqua Hebe Veronica propinqua \N \N \N \N \N 2270 C.polycephala Cousinia Cousinia polycephala \N \N \N \N \N 2271 \N varietas Haworthia blackburniae var. blackburniae \N \N \N \N \N 2272 B.prismatocarpa Begonia Begonia prismatocarpa \N \N \N \N \N 2273 I.virginica Iris Iris virginica \N \N \N \N \N 2274 A.congesta Astroloba Astroloba congesta \N \N \N \N \N 2275 \N varietas Caulanthus amplexicaulis var. barbarae Santa Barbara jewelflower \N \N \N \N 2276 \N subtribe Coelogyninae \N \N \N \N \N 2277 C.megalomastix Cousinia Cousinia megalomastix \N \N \N \N \N 2278 L.stellare Leucadendron Leucadendron stellare \N \N \N \N \N 2279 B.trinervia Blakea Blakea trinervia \N \N \N \N \N 2280 R.kiyosumense Rhododendron Rhododendron kiyosumense \N \N \N \N \N 2281 D.subandinus Doliocarpus Doliocarpus subandinus \N \N \N \N \N 2282 S.microcarpa Sinojackia Sinojackia microcarpa \N \N \N \N \N 2283 \N genus Cavanillesia \N \N \N \N \N 2284 R.sulcatus Rubus Rubus sulcatus \N \N \N \N \N 2285 M.striata Miconia Miconia striata \N \N \N \N \N 2286 L.hyssopifolia Ludwigia Ludwigia hyssopifolia \N \N \N \N \N 2287 B.1011 Begonia Begonia sp. Baker 1011 \N \N \N \N \N 2288 D.subdistichus Drymophloeus Drymophloeus subdistichus \N \N \N \N \N 2289 D.bakeri Delphinium Delphinium bakeri Baker's larkspur \N \N \N \N 2290 S.pectinatum Solanum Solanum pectinatum \N \N \N \N \N 2291 L.heteroclita Lycianthes Lycianthes heteroclita \N \N \N \N \N 2292 \N subspecies Casuarina cunninghamiana subsp. cunninghamiana \N \N \N \N \N 2293 \N genus Goupia \N \N \N \N \N 2294 S.alatus Schizostephanus Schizostephanus alatus \N \N \N \N \N 2295 \N genus Barteria \N \N \N \N \N 2296 \N genus Bolusiella \N \N \N \N \N 2297 D.racemosa Dapania Dapania racemosa \N \N \N \N \N 2298 O.valdiviensis Oxalis Oxalis valdiviensis \N \N \N \N \N 2299 Z.guatemalensis Ziziphus Ziziphus guatemalensis \N \N \N \N \N 2300 \N genus Doryanthes \N \N \N \N \N 2301 \N genus Odontorrhynchus \N \N \N \N \N 2302 P.gossweileri Phyllanthus Phyllanthus gossweileri \N \N \N \N \N 2303 P.fimbriata Parnassia Parnassia fimbriata \N \N \N \N \N 2304 E.NSW745905 Ecdeiocolea Ecdeiocolea sp. NSW745905 \N \N \N \N \N 2305 T.flexipes Trillium Trillium flexipes \N \N \N \N \N 2306 L.neomexicanum Linum Linum neomexicanum \N \N \N \N \N 2307 C.orobanchoides Corycium Corycium orobanchoides \N \N \N \N \N 2308 A.fecundus Aeschynanthus Aeschynanthus fecundus \N \N \N \N \N 2309 S.holwayana Senna Senna holwayana \N \N \N \N \N 2310 T.virescens Tridentea Tridentea virescens \N \N \N \N \N 2311 M.unguiculata Moraea Moraea unguiculata \N \N \N \N \N 2312 C.pseudocyperus Carex Carex pseudocyperus \N \N \N \N \N 2313 V.excelsa Viguiera Viguiera excelsa \N \N \N \N \N 2314 I.millspaughii Ibervillea Ibervillea millspaughii \N \N \N \N \N 2315 S.pentapetala Sieversia Sieversia pentapetala \N \N \N \N \N 2316 \N genus Dissomeria \N \N \N \N \N 2317 B.lecomtei Berberis Berberis lecomtei \N \N \N \N \N 2318 \N varietas Ainsliaea macroclinidioides var. okinawensis \N \N \N \N \N 2319 H.hirta Hydrangea Hydrangea hirta \N \N \N \N \N 2320 H.brachyantherum Hordeum Hordeum brachyantherum \N \N \N \N \N 2321 M.sinaloense Melampodium Melampodium sinaloense \N \N \N \N \N 2322 \N varietas Cucumis sativus var. sativus \N \N \N \N \N 2323 \N subspecies Kunzea opposita subsp. opposita \N \N \N \N \N 2324 \N subspecies Chenopodium berlandieri subsp. nuttalliae \N \N \N \N \N 2325 S.gigantea Silene Silene gigantea \N \N \N \N \N 2326 \N genus Leontodon \N \N \N \N \N 2327 P.847 Peliosanthes Peliosanthes sp. Chase 847 \N \N \N \N \N 2328 \N genus Sieversandreas \N \N \N \N \N 2329 B.japonica Blyxa Blyxa japonica \N \N \N \N \N 2330 P.dendrobiiflora Polystachya Polystachya dendrobiiflora \N \N \N \N \N 2331 C.DK-2009 Carapa Carapa sp. 3 DK-2009 \N \N \N \N \N 2332 S.punctatus Syncolostemon Syncolostemon punctatus \N \N \N \N \N 2333 C.JFS-2004 Capanea Capanea sp. JFS-2004 \N \N \N \N \N 2334 \N varietas Cuscuta potosina var. globifera \N \N \N \N \N 2335 H.bella Hoya Hoya bella miniature waxplant \N \N \N \N 2336 P.smallianum Polygonum Polygonum smallianum \N \N \N \N \N 2337 P.aestivale Pelargonium Pelargonium aestivale \N \N \N \N \N 2338 L.parviflorum Lasiopetalum Lasiopetalum parviflorum \N \N \N \N \N 2339 H.sandwicensis Hillebrandia Hillebrandia sandwicensis \N \N \N \N \N 2340 K.paucifolia Krameria Krameria paucifolia \N \N \N \N \N 2341 P.petaloideum Paramomum Paramomum petaloideum \N \N \N \N \N 2342 \N varietas Rosa chinensis var. spontanea \N \N \N \N \N 2343 L.cymbiformis Leucopogon Leucopogon cymbiformis \N \N \N \N \N 2344 P.sterilis Potentilla Potentilla sterilis \N \N \N \N \N 2345 A.bunius Antidesma Antidesma bunius Chinese-laurel,bignay,salamander-tree \N \N \N \N 2346 T.sp. unclassified Taraxacum Taraxacum (sect. Piesis) sp. \N \N \N \N \N 2347 \N genus Pelucha \N \N \N \N \N 2348 D.crassa Daiotyla Daiotyla crassa \N \N \N \N \N 2349 B.pubescens Babiana Babiana pubescens \N \N \N \N \N 2350 M.astroites Medicago Medicago astroites \N \N \N \N \N 2351 \N subspecies Cytisus striatus subsp. eriocarpus \N \N \N \N \N 2352 M.souliei Metagentiana Metagentiana souliei \N \N \N \N \N 2353 \N genus Medicago medics \N \N \N \N 2354 M.SH-2010 Mucuna Mucuna sp. SH-2010 \N \N \N \N \N 2355 A.noctiflora Aridaria Aridaria noctiflora \N \N \N \N \N 2356 P.gracilis Pinguicula Pinguicula gracilis \N \N \N \N \N 2357 S.parvifolium Solanum Solanum parvifolium \N \N \N \N \N 2358 H.undulata Hesperocallis Hesperocallis undulata \N \N \N \N \N 2359 B.V6 Bambusa Bambusa sp. Kellogg V6 \N \N \N \N \N 2360 C.pacuarensis Chaubardiella Chaubardiella pacuarensis \N \N \N \N \N 2361 P.henryana Pelagodoxa Pelagodoxa henryana \N \N \N \N \N 2362 P.anisoptera Pteleopsis Pteleopsis anisoptera \N \N \N \N \N 2363 A.pallidum Astroloma Astroloma pallidum \N \N \N \N \N 2364 P.caerulea Passiflora Passiflora caerulea \N \N \N \N \N 2365 C.rugosa Cayaponia Cayaponia rugosa \N \N \N \N \N 2366 C.jassyensis Cousinia Cousinia jassyensis \N \N \N \N \N 2367 G.vaccinioides Gaultheria Gaultheria vaccinioides \N \N \N \N \N 2368 N.gaumeri Nopalea Nopalea gaumeri \N \N \N \N \N 2369 G.floripendula Grevillea Grevillea floripendula \N \N \N \N \N 2370 T.vickeriana Tasmannia Tasmannia vickeriana \N \N \N \N \N 2371 M.Lowes1 Myriophyllum Myriophyllum sp. Lowes1 \N \N \N \N \N 2372 A.pusillus Amphianthus Amphianthus pusillus \N \N \N \N \N 2373 L.viscida Leptochloa Leptochloa viscida \N \N \N \N \N 2374 \N subspecies Echinopsis chiloensis subsp. skottsbergii \N \N \N \N \N 2375 E.grandispicata Elegia Elegia grandispicata \N \N \N \N \N 2376 C.schottii Carex Carex schottii \N \N \N \N \N 2377 I.859 Ixora Ixora sp. Dagostini 859 \N \N \N \N \N 2378 P.alba Populus Populus tremula x Populus alba gray poplar \N \N \N \N 2379 S.oldfieldii Solanum Solanum oldfieldii \N \N \N \N \N 2380 L.stabiana Lonicera Lonicera stabiana \N \N \N \N \N 2381 P.speciosus Paepalanthus Paepalanthus speciosus \N \N \N \N \N 2382 M.diversifolia Morella Morella diversifolia \N \N \N \N \N 2383 H.cyaneum Hylotelephium Hylotelephium cyaneum \N \N \N \N \N 2384 P.nipponica Pedicularis Pedicularis nipponica \N \N \N \N \N 2385 T.axillare Trachelospermum Trachelospermum axillare \N \N \N \N \N 2386 A.quercifolia Alseuosmia Alseuosmia quercifolia \N \N \N \N \N 2387 A.distans Achillea millefolium complex Achillea distans \N \N \N \N \N 2388 M.californica Malacothrix Malacothrix californica \N \N \N \N \N 2389 V.rotundifolia Vitis Vitis rotundifolia fox grape,muscadine \N \N \N \N 2390 \N genus Myrmeconauclea \N \N \N \N \N 2391 S.pecten-veneris Scandix Scandix pecten-veneris Venus's comb,shepherd's needle \N \N \N \N 2392 A.caudigerellum Asarum Asarum caudigerellum \N \N \N \N \N 2393 \N genus Ctenolophon \N \N \N \N \N 2394 H.novae-zelandiae Herpolirion Herpolirion novae-zelandiae \N \N \N \N \N 2395 A.angustifolia Aechmea Aechmea angustifolia \N \N \N \N \N 2396 C.solanifolius Centropogon Centropogon solanifolius \N \N \N \N \N 2397 D.carbonaria Diospyros Diospyros carbonaria \N \N \N \N \N 2398 L.daucoides Ligusticum Ligusticum daucoides \N \N \N \N \N 2399 C.nitida Cenarrhenes Cenarrhenes nitida \N \N \N \N \N 2400 S.wallichii Sarcococca Sarcococca wallichii \N \N \N \N \N 2401 C.laeviconica Carex Carex laeviconica \N \N \N \N \N 2402 H.2008 Heterospathe Heterospathe sp. Banka 2008 \N \N \N \N \N 2403 I.poculifer Impatiens Impatiens poculifer \N \N \N \N \N 2404 U.erectiflora Utricularia Utricularia erectiflora \N \N \N \N \N 2405 B.serra Bromelia Bromelia serra \N \N \N \N \N 2406 G.acutiflora Glyceria Glyceria acutiflora \N \N \N \N \N 2407 B.sinospinosa Bambusa Bambusa sinospinosa \N \N \N \N \N 2408 H.ehrenbergiana Holographis Holographis ehrenbergiana \N \N \N \N \N 2409 P.riparia Pinanga Pinanga riparia \N \N \N \N \N 2410 L.argentea Leucas Leucas argentea \N \N \N \N \N 2411 S.chacoense Solanum Solanum chacoense Chaco potato \N \N \N \N 2412 B.patinoi Borojoa Borojoa patinoi \N \N \N \N \N 2413 \N subspecies Mentha x piperita subsp. citrata bergamot mint,lemon mint \N \N \N \N 2414 I.clavigera Impatiens Impatiens clavigera \N \N \N \N \N 2415 \N varietas Viola hirta var. fraterna \N \N \N \N \N 2416 D.mira Dionysia Dionysia mira \N \N \N \N \N 2417 A.graniticum Antirrhinum Antirrhinum graniticum \N \N \N \N \N 2418 P.menispermifolia Passiflora Passiflora menispermifolia \N \N \N \N \N 2419 M.nigra Muhlenbergia Muhlenbergia nigra \N \N \N \N \N 2420 G.cutispongia Gastonia Gastonia cutispongia \N \N \N \N \N 2421 S.SH-2010 Stilpnogyne Stilpnogyne sp. SH-2010 \N \N \N \N \N 2422 Q.alnifolia Quercus Quercus alnifolia \N \N \N \N \N 2423 M.panacifolia Magydaris Magydaris panacifolia \N \N \N \N \N 2424 C.triplinerve Cinnamomum Cinnamomum triplinerve \N \N \N \N \N 2425 N.fumariifolia Nigella Nigella fumariifolia \N \N \N \N \N 2426 B.nervosa Berberis Berberis nervosa Cascade barberry,Oregon grape-holly \N \N \N \N 2427 P.suberifolium Pterospermum Pterospermum suberifolium \N \N \N \N \N 2428 C.granularis Carex Carex granularis \N \N \N \N \N 2429 \N genus Reissekia \N \N \N \N \N 2430 A.ilerdensis Alchemilla Alchemilla ilerdensis \N \N \N \N \N 2431 R.macilentus Rubus Rubus macilentus \N \N \N \N \N 2432 M.mooreana Masdevallia Masdevallia mooreana \N \N \N \N \N 2433 M.ecuadorensis Maxillaria Maxillaria ecuadorensis \N \N \N \N \N 2434 \N genus Brachtia \N \N \N \N \N 2435 S.corymbosus Schoenoplectus Schoenoplectus corymbosus \N \N \N \N \N 2436 \N genus Decaryochloa \N \N \N \N \N 2437 L.victoriae Livistona Livistona victoriae \N \N \N \N \N 2438 \N subspecies Valeriana officinalis subsp. tenuifolia \N \N \N \N \N 2439 H.malayana Hanguana Hanguana malayana \N \N \N \N \N 2440 \N genus Embothrium \N \N \N \N \N 2441 I.ovata Indigofera Indigofera ovata \N \N \N \N \N 2442 L.pinifolia Laestadia Laestadia pinifolia \N \N \N \N \N 2443 H.przewalskii Hypericum Hypericum przewalskii \N \N \N \N \N 2444 A.pumilum Anginon Anginon pumilum \N \N \N \N \N 2445 P.inclinata Potentilla Potentilla argentea x Potentilla inclinata \N \N \N \N \N 2446 E.cygnorum Erodium Erodium cygnorum \N \N \N \N \N 2447 \N genus Otachyrium \N \N \N \N \N 2448 Q.guianensis Quiina Quiina guianensis \N \N \N \N \N 2449 \N genus Colpoon \N \N \N \N \N 2450 A.mexicanum Astrocaryum Astrocaryum mexicanum \N \N \N \N \N 2451 P.amoena Passiflora Passiflora amoena \N \N \N \N \N 2452 A.coulteri Asclepias Asclepias coulteri \N \N \N \N \N 2453 T.10455 Tetramerium Tetramerium sp. Daniel et al. 10455 \N \N \N \N \N 2454 C.ilheotica Coussarea Coussarea ilheotica \N \N \N \N \N 2455 D.rotundifolia Diospyros Diospyros rotundifolia \N \N \N \N \N 2456 C.ptosimopappoides Centaurea Centaurea ptosimopappoides \N \N \N \N \N 2457 M.haageana Mammillaria Mammillaria haageana \N \N \N \N \N 2458 P.dentex Pluchea Pluchea dentex \N \N \N \N \N 2459 R.idaeus Rubus Rubus idaeus European raspberry,red raspberry \N \N \N \N 2460 B.isoptera Begonia Begonia isoptera \N \N \N \N \N 2461 M.congensis Marantochloa Marantochloa congensis \N \N \N \N \N 2462 E.pedroi Euphorbia Euphorbia pedroi \N \N \N \N \N 2463 I.triangulata Indosasa Indosasa triangulata \N \N \N \N \N 2464 S.reticulata Stevia Stevia reticulata \N \N \N \N \N 2465 S.latidens Stachys Stachys latidens \N \N \N \N \N 2466 L.sempervirens Laurelia Laurelia sempervirens \N \N \N \N \N 2467 S.integerrima Salix Salix integerrima \N \N \N \N \N 2468 C.euchrophyllum Crinum Crinum euchrophyllum \N \N \N \N \N 2469 U.myriocista Utricularia Utricularia myriocista \N \N \N \N \N 2470 L.hirtum Lepidium Lepidium hirtum \N \N \N \N \N 2471 \N subspecies Scadoxus multiflorus subsp. katharinae catherine wheel \N \N \N \N 2472 T.pailensis Thamnosma Thamnosma pailensis \N \N \N \N \N 2473 \N genus Zehneria \N \N \N \N \N 2474 E.fasciculata Eriolarynx Eriolarynx fasciculata \N \N \N \N \N 2475 I.chevalieri Impatiens Impatiens chevalieri \N \N \N \N \N 2476 \N varietas Veratrum viride var. eschscholtzianum \N \N \N \N \N 2477 S.abarghuensis Salsola Salsola abarghuensis \N \N \N \N \N 2478 \N genus Drummondita \N \N \N \N \N 2479 H.fruticosa Huidobria Huidobria fruticosa \N \N \N \N \N 2480 A.occidentalis Abelia Abelia occidentalis \N \N \N \N \N 2481 C.dunnii Calochortus Calochortus dunnii \N \N \N \N \N 2482 M.laxiflora Monanthes Monanthes laxiflora \N \N \N \N \N 2483 A.middendorffiana Aizopsis Aizopsis middendorffiana \N \N \N \N \N 2484 \N genus Actinokentia \N \N \N \N \N 2485 L.melilotoides Lebeckia Lebeckia melilotoides \N \N \N \N \N 2486 P.humbertii Phyllanthus Phyllanthus humbertii \N \N \N \N \N 2487 \N genus Seegeriella \N \N \N \N \N 2488 C.refracta Cousinia Cousinia refracta \N \N \N \N \N 2489 C.umbraculifera Corypha Corypha umbraculifera \N \N \N \N \N 2490 \N subspecies Ulex argenteus subsp. erinaceus \N \N \N \N \N 2491 P.aridus Penstemon Penstemon aridus \N \N \N \N \N 2492 O.imbricatus Orthocarpus Orthocarpus imbricatus \N \N \N \N \N 2493 C.renacta Collomia Collomia renacta \N \N \N \N \N 2494 R.raphanistrum Raphanus Raphanus raphanistrum jointed charlock,wild radish \N \N \N \N 2495 O.atlantica Ononis Ononis atlantica \N \N \N \N \N 2496 A.pictum Arum Arum pictum \N \N \N \N \N 2497 H.minima Haworthia Haworthia minima \N \N \N \N \N 2498 F.aloha Festuca Festuca aloha \N \N \N \N \N 2499 M.diepenhorstii Macaranga Macaranga diepenhorstii \N \N \N \N \N 2500 \N tribe Eutremeae \N \N \N \N \N 2501 \N varietas Satyrium cristatum var. cristatum \N \N \N \N \N 2502 S.henschelii Symplocos Symplocos henschelii \N \N \N \N \N 2503 T.braunianum Trachyphrynium Trachyphrynium braunianum \N \N \N \N \N 2504 E.physodes Erica Erica physodes \N \N \N \N \N 2505 P.purpurea Physostegia Physostegia purpurea \N \N \N \N \N 2506 U.reniformis Utricularia Utricularia reniformis \N \N \N \N \N 2507 C.dioica Caustis Caustis dioica \N \N \N \N \N 2508 C.cordatum Chorizema Chorizema cordatum \N \N \N \N \N 2509 E.grisebachii Echinodorus Echinodorus grisebachii \N \N \N \N \N 2510 \N subspecies Lespedeza thunbergii subsp. formosa \N \N \N \N \N 2511 S.tenuifolium Sisyrinchium Sisyrinchium tenuifolium \N \N \N \N \N 2512 C.trifoloata Citrus Citrus sunki x Citrus trifoloata \N \N \N \N \N 2513 \N genus Plinthanthesis \N \N \N \N \N 2514 B.multiflora Bomarea Bomarea multiflora \N \N \N \N \N 2516 E.acuminata Ehretia Ehretia acuminata \N \N \N \N \N 2517 S.muricatus Scorpiurus Scorpiurus muricatus \N \N \N \N \N 2518 G.brongniartii Geonoma Geonoma brongniartii \N \N \N \N \N 2519 \N genus Apuleia \N \N \N \N \N 2520 \N varietas Livistona chinensis var. boninensis \N \N \N \N \N 2521 \N genus Parasilaus \N \N \N \N \N 2522 D.capense Dasispermum Dasispermum capense \N \N \N \N \N 2523 A.japonica Alpinia Alpinia japonica hana-myoga \N \N \N \N 2524 H.riparia Homonoia Homonoia riparia \N \N \N \N \N 2525 A.fastigiata Ajania Ajania fastigiata \N \N \N \N \N 2526 O.fastigiata Oldenlandia Oldenlandia fastigiata \N \N \N \N \N 2527 G.cooperi Gaertnera Gaertnera cooperi \N \N \N \N \N 2528 G.dumicola Gaultheria Gaultheria dumicola \N \N \N \N \N 2529 \N genus Paederotella \N \N \N \N \N 2530 \N genus Pseudocyclanthera \N \N \N \N \N 2531 W.NR Wolffia Wolffia sp. NR \N \N \N \N \N 2532 F.confusa Ferulago Ferulago confusa \N \N \N \N \N 2533 S.microphylla Sesbania Sesbania microphylla \N \N \N \N \N 2534 \N genus Parastriga \N \N \N \N \N 2535 D.decorum Delphinium Delphinium decorum yellow-tinged larkspur \N \N \N \N 2536 E.lusitanicum Echium Echium lusitanicum \N \N \N \N \N 2537 \N genus Polygonanthus \N \N \N \N \N 2538 X.variegatum Xylobium Xylobium variegatum \N \N \N \N \N 2539 P.andersonii Prunus Prunus andersonii desert peach \N \N \N \N 2540 E.lanuginosa Erica Erica lanuginosa \N \N \N \N \N 2541 A.kashmiriana Actaea Actaea kashmiriana \N \N \N \N \N 2542 \N genus Smicrostigma \N \N \N \N \N 2543 H.forrestii Hypericum Hypericum forrestii \N \N \N \N \N 2544 C.eugenioides Coffea Coffea eugenioides \N \N \N \N \N 2545 \N tribe Euclidieae \N \N \N \N \N 2546 V.petriei Hebe Veronica petriei \N \N \N \N \N 2547 F.lineare Fagopyrum Fagopyrum lineare \N \N \N \N \N 2548 S.glabra Scaevola Scaevola glabra \N \N \N \N \N 2549 T.bridsoniana Tricalysia Tricalysia bridsoniana \N \N \N \N \N 2550 S.alba Strelitzia Strelitzia alba \N \N \N \N \N 2551 P.petiolaris Palicourea Palicourea petiolaris \N \N \N \N \N 2552 D.cambodiana Dracaena Dracaena cambodiana \N \N \N \N \N 2553 C.przewalskii Chrysanthemum Chrysanthemum przewalskii \N \N \N \N \N 2554 C.mkuzense Combretum Combretum mkuzense \N \N \N \N \N 2555 P.densiflora Puya Puya densiflora \N \N \N \N \N 2556 A.xiphoclada Amperea Amperea xiphoclada \N \N \N \N \N 2557 E.brachyrrhizum Epimedium Epimedium brachyrrhizum \N \N \N \N \N 2558 \N genus Argyroglottis \N \N \N \N \N 2559 \N genus Weberbauera \N \N \N \N \N 2560 M.nagi Morella Morella nagi \N \N \N \N \N 2561 S.androgynus Sauropus Sauropus androgynus katuk,star-gooseberry \N \N \N \N 2562 C.praecox Casearia Casearia praecox \N \N \N \N \N 2563 D.frutescens Dicerandra Dicerandra frutescens \N \N \N \N \N 2564 C.crispus Cistus Cistus crispus \N \N \N \N \N 2565 B.flagellaris Begonia Begonia flagellaris \N \N \N \N \N 2566 A.borealis Arabis Arabis borealis \N \N \N \N \N 2567 M.cordifolia Morella Morella cordifolia waxberry \N \N \N \N 2568 C.ramosum Chrysosplenium Chrysosplenium ramosum \N \N \N \N \N 2569 H.phillipsii Heterospathe Heterospathe phillipsii \N \N \N \N \N 2570 N.subacaulis Napeanthus Napeanthus subacaulis \N \N \N \N \N 2571 R.maritima Remirea Remirea maritima \N \N \N \N \N 2572 I.etindensis Impatiens Impatiens etindensis \N \N \N \N \N 2573 R.glacialis Ranunculus Ranunculus glacialis \N \N \N \N \N 2574 H.MM-2009 Hovanella Hovanella sp. MM-2009 \N \N \N \N \N 2575 I.grandifolia Ipomoea Ipomoea grandifolia \N \N \N \N \N 2576 B.riedelii Barnebydendron Barnebydendron riedelii \N \N \N \N \N 2577 P.humifusum Polygonum Polygonum humifusum \N \N \N \N \N 2578 T.cyanocrocus Tecophilaea Tecophilaea cyanocrocus \N \N \N \N \N 2579 A.cyclochila Aorchis Aorchis cyclochila \N \N \N \N \N 2580 A.Qiu95079 Acalypha Acalypha sp. Qiu95079 \N \N \N \N \N 2581 F.GW1881 Ficus Ficus cf. sterrocarpa GW1881 \N \N \N \N \N 2582 R.macabeanum Rhododendron Rhododendron macabeanum \N \N \N \N \N 2583 V.spathulata Velleia Velleia spathulata \N \N \N \N \N 2584 \N genus Pausandra \N \N \N \N \N 2585 S.hainanensis Sonneratia Sonneratia x hainanensis \N \N \N \N \N 2586 C.scutata Cardamine Cardamine scutata bitter cress \N \N \N \N 2587 A.oxycedrus Acacia Acacia oxycedrus \N \N \N \N \N 2588 C.phaeoclada Camellia Camellia phaeoclada \N \N \N \N \N 2589 \N genus Quetzalia \N \N \N \N \N 2590 E.megapotamicum Eryngium Eryngium megapotamicum \N \N \N \N \N 2591 A.platyphylla Atrichoseris Atrichoseris platyphylla gravel-ghost,parachute plant \N \N \N \N 2592 C.abeokutae Coffea Coffea abeokutae \N \N \N \N \N 2593 \N genus Stemodia twintip \N \N \N \N 2594 M.cordata Macleaya Macleaya cordata \N \N \N \N \N 2595 S.tephrophylla Stevia Stevia tephrophylla \N \N \N \N \N 2596 A.aroma Acacia Acacia aroma aromita,aromo negro,espinillo tusca \N \N \N \N 2597 M.7921 Maxillaria Maxillaria sp. Jost 7921 \N \N \N \N \N 2598 C.pachyceras Corynanthe Corynanthe pachyceras \N \N \N \N \N 2599 \N genus Canarina \N \N \N \N \N 2600 O.tridentata Ononis Ononis tridentata \N \N \N \N \N 2601 T.Kununurra Typhonium Typhonium sp. Kununurra \N \N \N \N \N 2602 S.bicolor Symplocos Symplocos bicolor \N \N \N \N \N 2603 A.abramsii Allium Allium abramsii \N \N \N \N \N 2604 E.undulatus Elaeocarpus Elaeocarpus undulatus \N \N \N \N \N 2605 M.muricoleptis Medicago Medicago muricoleptis \N \N \N \N \N 2606 \N subspecies Ballota nigra subsp. ruderalis \N \N \N \N \N 2607 \N genus Zingiber \N \N \N \N \N 2608 P.berteroana Psychotria Psychotria berteroana \N \N \N \N \N 2609 B.longipes Bunium Bunium longipes \N \N \N \N \N 2610 \N subspecies Rhodiola integrifolia subsp. integrifolia \N \N \N \N \N 2611 C.pygmaeus Cyperus Cyperus pygmaeus \N \N \N \N \N 2612 \N genus Vauquelinia \N \N \N \N \N 2613 A.botryophorus Astragalus Astragalus botryophorus \N \N \N \N \N 2614 R.alabamense Rhododendron Rhododendron alabamense \N \N \N \N \N 2615 A.schweinfurthii Andrachne Andrachne schweinfurthii \N \N \N \N \N 2616 \N genus Witsenia \N \N \N \N \N 2617 D.uniflora Dicentra Dicentra uniflora \N \N \N \N \N 2618 M.acuminata Microseris Microseris acuminata \N \N \N \N \N 2619 P.longiflora Polianthes Polianthes longiflora \N \N \N \N \N 2620 D.micropetalus Dianthus Dianthus micropetalus \N \N \N \N \N 2621 L.cuspidata Linconia Linconia cuspidata \N \N \N \N \N 2622 L.chinense Liriodendron Liriodendron chinense \N \N \N \N \N 2623 C.trimaculata Conanthera Conanthera trimaculata \N \N \N \N \N 2624 B.exaltatus Bromus Bromus exaltatus \N \N \N \N \N 2625 L.obtusata Lockhartia Lockhartia obtusata \N \N \N \N \N 2626 E.schreberi Eurybia Eurybia schreberi \N \N \N \N \N 2627 L.herbacea Lessertia Lessertia herbacea \N \N \N \N \N 2628 S.vaginatum Stenorrhynchos Stenorrhynchos vaginatum \N \N \N \N \N 2629 M.apelta Mallotus Mallotus apelta \N \N \N \N \N 2630 B.resupinata Burmeistera Burmeistera resupinata \N \N \N \N \N 2631 B.costaricensis Bourreria Bourreria costaricensis \N \N \N \N \N 2632 M.nitens Mentzelia Mentzelia nitens \N \N \N \N \N 2633 \N genus Pericampylus \N \N \N \N \N 2634 T.sphaerococcum Triticum Triticum sphaerococcum \N \N \N \N \N 2635 \N subspecies Galium glabrescens subsp. modocense \N \N \N \N \N 2636 G.quinquefolia Gentianella Gentianella quinquefolia \N \N \N \N \N 2637 T.amurensis Thymus Thymus amurensis \N \N \N \N \N 2638 H.kennedyana Huernia Huernia kennedyana \N \N \N \N \N 2639 L.heterotricha Layia Layia heterotricha \N \N \N \N \N 2640 H.broussonetianum Haplophyllum Haplophyllum broussonetianum \N \N \N \N \N 2641 S.hispanica Scorzonera Scorzonera hispanica black oysterplant,black-salsify,common viper's-grass \N \N \N \N 2642 C.00-144 Cistanthe Cistanthe sp. Hershkovitz 00-144 \N \N \N \N \N 2643 A.1729 Ada Ada sp. Whitten 1729 \N \N \N \N \N 2644 A.czekanowskiana Artemisia Artemisia czekanowskiana \N \N \N \N \N 2645 \N subspecies Beta vulgaris subsp. adanensis \N \N \N \N \N 2646 D.lanceolata Dodonaea Dodonaea lanceolata \N \N \N \N \N 2647 C.SH-2010 Centrosema Centrosema sp. SH-2010 \N \N \N \N \N 2648 D.lemsii Descurainia Descurainia lemsii \N \N \N \N \N 2649 S.pubigerum Solanum Solanum pubigerum \N \N \N \N \N 2650 Z.pubescens Ziziphus Ziziphus pubescens \N \N \N \N \N 2651 O.pannosa Olearia Olearia pannosa \N \N \N \N \N 2652 O.2539 Oncidium Oncidium sp. Whitten 2539 \N \N \N \N \N 2653 \N tribe Cercideae \N \N \N \N \N 2654 S.scoparium Schizachyrium Schizachyrium scoparium \N \N \N \N \N 2655 C.mira Columnea Columnea mira \N \N \N \N \N 2656 G.gooddingii Glandularia Glandularia gooddingii \N \N \N \N \N 2657 R.corymbifera Rosa Rosa corymbifera \N \N \N \N \N 2658 T.mollis Teramnus Teramnus mollis \N \N \N \N \N 2659 A.bicolor Aechmea Aechmea bicolor \N \N \N \N \N 2660 T.dasyrhynchus Tragopogon Tragopogon dasyrhynchus \N \N \N \N \N 2661 P.stocksii Plantago Plantago stocksii \N \N \N \N \N 2662 B.abyssinica Bersama Bersama abyssinica \N \N \N \N \N 2663 \N subspecies Wahlenbergia albomarginata subsp. albomarginata \N \N \N \N \N 2664 \N family Iridaceae iris family \N \N \N \N 2665 D.arabisans Draba Draba arabisans \N \N \N \N \N 2666 \N subspecies Anthyllis montana subsp. montana \N \N \N \N \N 2667 A.GLA-2009 Aframomum Aframomum sp. D GLA-2009 \N \N \N \N \N 2668 C.lima Costus Costus lima \N \N \N \N \N 2669 P.cubensis Picardaea Picardaea cubensis \N \N \N \N \N 2670 P.cardaminifolia Pamphalea Pamphalea cardaminifolia \N \N \N \N \N 2671 O.elatus Oplopanax Oplopanax elatus \N \N \N \N \N 2672 R.californica Romanzoffia Romanzoffia californica \N \N \N \N \N 2673 B.SH-2010 Byttneria Byttneria sp. SH-2010 \N \N \N \N \N 2674 R.rumelicus Rhinanthus Rhinanthus rumelicus \N \N \N \N \N 2675 Z.exacoides Zuvanda Zuvanda exacoides \N \N \N \N \N 2676 \N genus Gompholobium \N \N \N \N \N 2677 M.trifida Meziella Meziella trifida \N \N \N \N \N 2678 V.speciosa Hebe Veronica speciosa \N \N \N \N \N 2679 A.divaricata Aristida Aristida divaricata \N \N \N \N \N 2680 T.castellanus Tragopogon Tragopogon castellanus \N \N \N \N \N 2681 N.pulchella Neolauchea Neolauchea pulchella \N \N \N \N \N 2682 A.11750 Androsace Androsace sp. Frajman & Schoenswetter 11750 \N \N \N \N \N 2683 S.Guyana Schefflera Schefflera sp. Guyana \N \N \N \N \N 2684 P.antioquiense Pityphyllum Pityphyllum antioquiense \N \N \N \N \N 2685 S.oxyphora Salvia Salvia oxyphora \N \N \N \N \N 2686 F.ochoterenae Fouquieria Fouquieria ochoterenae \N \N \N \N \N 2687 S.martinezii Stenocereus Stenocereus martinezii \N \N \N \N \N 2688 C.hirtella Centella Centella hirtella \N \N \N \N \N 2689 D.anomala Disparago Disparago anomala \N \N \N \N \N 2690 \N subspecies Sagittaria lancifolia subsp. media \N \N \N \N \N 2691 P.dinteri Psilocaulon Psilocaulon dinteri \N \N \N \N \N 2692 \N genus Mirabilis \N \N \N \N \N 2693 S.perennis Sarcocornia Sarcocornia perennis \N \N \N \N \N 2694 D.bipinnatus Didesmus Didesmus bipinnatus \N \N \N \N \N 2695 R.redowskianum Rhododendron Rhododendron redowskianum \N \N \N \N \N 2696 A.vanillae Astragalus Astragalus vanillae \N \N \N \N \N 2697 R.linearilobus Ranunculus Ranunculus linearilobus \N \N \N \N \N 2698 A.dianthopora Aspalathus Aspalathus dianthopora \N \N \N \N \N 2699 V.verecunda Viola Viola verecunda \N \N \N \N \N 2700 \N genus Anadendrum \N \N \N \N \N 2701 A.occidentale Arceuthobium Arceuthobium occidentale \N \N \N \N \N 2702 A.tenuiflorum Aulosepalum Aulosepalum tenuiflorum \N \N \N \N \N 2703 D.sennoides Diphysa Diphysa sennoides \N \N \N \N \N 2704 \N genus Tommasinia \N \N \N \N \N 2705 T.platycarpum Taraxacum Taraxacum platycarpum \N \N \N \N \N 2706 G.al.10001(TI) Globba Globba sp. Kato et al.10001(TI) \N \N \N \N \N 2707 \N no rank Musa AAB Group French plantain \N \N \N \N 2708 \N genus Saltugilia \N \N \N \N \N 2709 \N genus Physocaulis \N \N \N \N \N 2710 N.mucronata Noaea Noaea mucronata \N \N \N \N \N 2711 M.opaca Mezilaurus Mezilaurus opaca \N \N \N \N \N 2712 P.miliaceum Piptatherum Piptatherum miliaceum rice-millet,smilo grass \N \N \N \N 2713 C.canescens Corynephorus Corynephorus canescens \N \N \N \N \N 2714 M.paniculata Malesherbia Malesherbia paniculata \N \N \N \N \N 2715 A.dichlamydeum Allium Allium dichlamydeum \N \N \N \N \N 2716 \N subspecies Armeria villosa subsp. bernisii \N \N \N \N \N 2717 \N genus Leptonema \N \N \N \N \N 2718 D.revoluta Dianella Dianella revoluta \N \N \N \N \N 2719 L.japonica Ligularia Ligularia japonica \N \N \N \N \N 2720 C.chingii Cercis Cercis chingii \N \N \N \N \N 2721 \N genus Acanthophoenix \N \N \N \N \N 2722 \N tribe Prionoteae \N \N \N \N \N 2723 B.axanthus Baratranthus Baratranthus axanthus \N \N \N \N \N 2724 P.viscosa Physalis Physalis viscosa \N \N \N \N \N 2725 E.diaphana Erica Erica diaphana \N \N \N \N \N 2726 \N genus Baeckea \N \N \N \N \N 2727 S.lividus Senecio Senecio lividus \N \N \N \N \N 2728 S.outeniquense Satyrium Satyrium outeniquense \N \N \N \N \N 2729 C.peruvianum Cremastosperma Cremastosperma peruvianum \N \N \N \N \N 2730 \N no rank unclassified Connaraceae \N \N \N \N \N 2731 P.macropodus Paepalanthus Paepalanthus macropodus \N \N \N \N \N 2732 C.sphacelatum Chlorophytum Chlorophytum sphacelatum \N \N \N \N \N 2733 \N genus Eschscholzia \N \N \N \N \N 2734 C.laxiflora Conostylis Conostylis laxiflora \N \N \N \N \N 2735 A.anomalum Apophyllum Apophyllum anomalum \N \N \N \N \N 2736 P.speciosus Penstemon Penstemon speciosus \N \N \N \N \N 2737 I.sapindoides Inga Inga sapindoides \N \N \N \N \N 2738 \N genus Erythrococca \N \N \N \N \N 2739 M.lachnophylla Micromeria Micromeria lachnophylla \N \N \N \N \N 2740 \N varietas Scutellaria laeteviolacea var. yakusimensis \N \N \N \N \N 2741 V.micrantha Vatica Vatica micrantha \N \N \N \N \N 2742 A.longiflora Achimenes Achimenes longiflora \N \N \N \N \N 2743 \N genus Alstonia \N \N \N \N \N 2744 \N genus Leptopyrum \N \N \N \N \N 2745 \N genus Jessea \N \N \N \N \N 2746 L.longipetala Lewisia Lewisia longipetala \N \N \N \N \N 2747 \N genus Neojobertia \N \N \N \N \N 2748 J.scoparia Johreniopsis Johreniopsis scoparia \N \N \N \N \N 2749 T.ignota Turnera Turnera ignota \N \N \N \N \N 2750 B.filicifolia Bursera Bursera filicifolia \N \N \N \N \N 2751 \N genus Argophyllum \N \N \N \N \N 2752 B.corolliflora Beta Beta corolliflora \N \N \N \N \N 2753 M.rubra Morus Morus alba x Morus rubra \N \N \N \N \N 2754 S.bodinieri Sinosenecio Sinosenecio bodinieri \N \N \N \N \N 2755 R.sphaerocarpa Retama Retama sphaerocarpa \N \N \N \N \N 2756 P.parvifolia Psychotria Psychotria parvifolia \N \N \N \N \N 2757 H.rubra Hyobanche Hyobanche rubra \N \N \N \N \N 2758 D.aestivum Diplodium Diplodium aestivum \N \N \N \N \N 2759 A.nesiotica Artemisia Artemisia nesiotica \N \N \N \N \N 2760 C.leucotrichum Cyclotrichium Cyclotrichium leucotrichum \N \N \N \N \N 2761 L.rubescens Lilium Lilium rubescens \N \N \N \N \N 2762 T.japonica Trautvetteria Trautvetteria japonica \N \N \N \N \N 2763 S.javensis Spathiostemon Spathiostemon javensis \N \N \N \N \N 2764 L.spinosa Leptomeria Leptomeria spinosa \N \N \N \N \N 2765 \N genus Prunella self-heals \N \N \N \N 2766 P.auricomum Panicum Panicum auricomum \N \N \N \N \N 2767 S.kagerensis Setaria Setaria kagerensis \N \N \N \N \N 2768 H.microphyllus Hyperacanthus Hyperacanthus microphyllus \N \N \N \N \N 2769 P.patens Penstemon Penstemon patens \N \N \N \N \N 2770 E.arabicus Euryops Euryops arabicus \N \N \N \N \N 2771 S.chinensis Stachyurus Stachyurus chinensis \N \N \N \N \N 2772 F.cienkowskii Fadogia Fadogia cienkowskii \N \N \N \N \N 2773 \N genus Roemeria \N \N \N \N \N 2774 P.ovczinnikovii Paulita Paulita ovczinnikovii \N \N \N \N \N 2775 C.arenaria Cistanthe Cistanthe arenaria \N \N \N \N \N 2776 \N genus Diptychocarpus \N \N \N \N \N 2777 T.pulchella Tulipa Tulipa pulchella \N \N \N \N \N 2778 R.tsariense Rhododendron Rhododendron tsariense \N \N \N \N \N 2779 E.delicata Eucalyptus Eucalyptus delicata \N \N \N \N \N 2780 S.acuta Sida Sida acuta \N \N \N \N \N 2781 A.cenchroides Aegopogon Aegopogon cenchroides \N \N \N \N \N 2782 A.xalapensis Arbutus Arbutus xalapensis \N \N \N \N \N 2783 C.ramosissimum Cardionema Cardionema ramosissimum \N \N \N \N \N 2784 S.meyeri Syringa Syringa meyeri \N \N \N \N \N 2785 M.breweri Mimulus Mimulus breweri \N \N \N \N \N 2786 A.macrocephala Atractylodes Atractylodes macrocephala \N \N \N \N \N 2787 P.WSY0032118-20 Penstemon Penstemon sp. WSY0032118-20 \N \N \N \N \N 2788 \N tribe Schoeneae \N \N \N \N \N 2789 J.laevis Jasione Jasione laevis \N \N \N \N \N 2790 T.oldhamii Titanotrichum Titanotrichum oldhamii \N \N \N \N \N 2791 A.04.05.1993 Arabis Arabis cf. hirsuta Gomez Vigide 04.05.1993 \N \N \N \N \N 2792 B.rufescens Bauhinia Bauhinia rufescens \N \N \N \N \N 2793 M.napina Mammillaria Mammillaria napina \N \N \N \N \N 2794 \N subspecies Kniphofia triangularis subsp. obtusiloba \N \N \N \N \N 2795 S.laevis Stokesia Stokesia laevis \N \N \N \N \N 2796 T.1025 Thesium Thesium cf. angulosum Verboom 1025 \N \N \N \N \N 2797 \N subtribe Scurrulinae \N \N \N \N \N 2798 T.latifolius Tragopogon Tragopogon latifolius \N \N \N \N \N 2799 P.pinifolia Polygala Polygala pinifolia \N \N \N \N \N 2800 M.andreettae Mormodes Mormodes andreettae \N \N \N \N \N 2801 C.tropaeolifolia Cissampelos Cissampelos tropaeolifolia \N \N \N \N \N 2802 P.lochengensis Photinia Photinia lochengensis \N \N \N \N \N 2803 P.vieraeoides Pulicaria Pulicaria vieraeoides \N \N \N \N \N 2804 C.alexeenkoana Cousinia Cousinia alexeenkoana \N \N \N \N \N 2805 G.segonnei Genista Genista segonnei \N \N \N \N \N 2806 M.altissima Melica Melica altissima \N \N \N \N \N 2807 \N genus Glandularia \N \N \N \N \N 2808 L.lyrata Leibnitzia Leibnitzia lyrata \N \N \N \N \N 2809 R.petiolata Ridleyandra Ridleyandra petiolata \N \N \N \N \N 2810 P.cirrhifolium Polygonatum Polygonatum cirrhifolium \N \N \N \N \N 2811 A.leucanthum Allium Allium leucanthum \N \N \N \N \N 2812 M.tenellum Myriophyllum Myriophyllum tenellum \N \N \N \N \N 2813 P.capitata Pedicularis Pedicularis capitata \N \N \N \N \N 2814 C.mazandaranica Cota Cota mazandaranica \N \N \N \N \N 2815 A.scandens Ampelocalamus Ampelocalamus scandens \N \N \N \N \N 2816 T.nitens Triplachne Triplachne nitens \N \N \N \N \N 2817 \N subspecies Anvillea garcinii subsp. radiata \N \N \N \N \N 2818 A.dahlgrenii Amphithalea Amphithalea dahlgrenii \N \N \N \N \N 2819 B.capensis Bolusia Bolusia capensis \N \N \N \N \N 2820 A.pintoi Arachis Arachis pintoi \N \N \N \N \N 2821 W.drummondii Wurmbea Wurmbea drummondii \N \N \N \N \N 2822 M.myrsinites Monticalia Monticalia myrsinites \N \N \N \N \N 2823 D.japonicus Dipsacus Dipsacus japonicus \N \N \N \N \N 2824 R.solanifolia Rehmannia Rehmannia solanifolia \N \N \N \N \N 2825 P.saltuensis Poa Poa saltuensis \N \N \N \N \N 2826 L.phylicifolium Leionema Leionema phylicifolium \N \N \N \N \N 2827 S.1006 Saussurea Saussurea cf. tatsienensis Liu 1006 \N \N \N \N \N 2828 C.sample environmental samples Taxonomy:417453 Craspedia environmental sample \N \N \N \N \N 2829 S.fertilis Sporobolus Sporobolus fertilis \N \N \N \N \N 2830 \N subspecies Adenocarpus hispanicus subsp. hispanicus \N \N \N \N \N 2831 D.palmeri Deinandra Deinandra palmeri \N \N \N \N \N 2832 B.longicollis Babiana Babiana longicollis \N \N \N \N \N 2833 P.capensis Polycarena Polycarena capensis \N \N \N \N \N 2834 D.infundibulum Dendrobium Dendrobium infundibulum \N \N \N \N \N 2835 C.indicum Clerodendrum Clerodendrum indicum \N \N \N \N \N 2836 P.aspera Priva Priva aspera \N \N \N \N \N 2837 A.naudinianus Acanthosicyos Acanthosicyos naudinianus \N \N \N \N \N 2838 E.bruniades Erica Erica bruniades \N \N \N \N \N 2839 A.longipedicellata Adenophora Adenophora longipedicellata \N \N \N \N \N 2840 V.lokundjensis Vitex Vitex lokundjensis \N \N \N \N \N 2841 M.montana Muhlenbergia Muhlenbergia montana \N \N \N \N \N 2842 A.tenuiflora Appunia Appunia tenuiflora \N \N \N \N \N 2843 \N varietas Carex laxiculmis var. laxiculmis \N \N \N \N \N 2844 E.schaffneri Eleocharis Eleocharis schaffneri \N \N \N \N \N 2845 H.portulacoides Halimione Halimione portulacoides \N \N \N \N \N 2846 M.guareimensis Maxillaria Maxillaria guareimensis \N \N \N \N \N 2847 D.gayanum Dinemagonum Dinemagonum gayanum \N \N \N \N \N 2848 B.suntui Bursera Bursera suntui \N \N \N \N \N 2849 L.thyrsiflora Lysimachia Lysimachia thyrsiflora \N \N \N \N \N 2850 C.attenuatus Cyrtanthus Cyrtanthus attenuatus \N \N \N \N \N 2851 C.axilliflora Calandrinia Calandrinia axilliflora \N \N \N \N \N 2852 S.paramiltiorrhiza Salvia Salvia paramiltiorrhiza \N \N \N \N \N 2853 H.villosum Haplophyllum Haplophyllum villosum \N \N \N \N \N 2854 C.letestui Costus Costus letestui \N \N \N \N \N 2855 P.tristachyum Pennisetum Pennisetum tristachyum \N \N \N \N \N 2856 D.latifolium Dasyphyllum Dasyphyllum latifolium \N \N \N \N \N 2857 K.1263 Koilodepas Koilodepas sp. Chase 1263 \N \N \N \N \N 2858 C.papyrus Cyperus Cyperus papyrus papyrus \N \N \N \N 2859 S.rehderiana Scutellaria Scutellaria rehderiana \N \N \N \N \N 2860 A.icmadophilus Astragalus Astragalus icmadophilus \N \N \N \N \N 2861 M.viscidus Mimulus Mimulus viscidus \N \N \N \N \N 2862 \N genus Eriolaena \N \N \N \N \N 2863 N.undulata Nama Nama undulata \N \N \N \N \N 2864 C.sepiaria Capparis Capparis sepiaria \N \N \N \N \N 2865 C.brachygyna Camellia Camellia brachygyna \N \N \N \N \N 2866 L.montana Lachnaea Lachnaea montana \N \N \N \N \N 2867 \N subspecies Crocus speciosus subsp. ilgazensis \N \N \N \N \N 2868 R.sambiranensis Razafimandimbisonia Razafimandimbisonia sambiranensis \N \N \N \N \N 2869 P.cordata Podalyria Podalyria cordata \N \N \N \N \N 2870 E.limosus Euchiton Euchiton limosus \N \N \N \N \N 2871 C.valdesii Cytisus Cytisus valdesii \N \N \N \N \N 2872 F.multiflorum x Festulolium Festuca glaucescens x Lolium multiflorum \N \N \N \N \N 2873 O.semitubiflora Orbea Orbea semitubiflora \N \N \N \N \N 2874 P.reflexa Pentaschistis Pentameris reflexa \N \N \N \N \N 2875 N.hirsuta Nissolia Nissolia hirsuta \N \N \N \N \N 2876 P.panamensis Pachyrhizus Pachyrhizus panamensis \N \N \N \N \N 2877 C.cyperoides Cladoraphis Cladoraphis cyperoides \N \N \N \N \N 2878 A.juniperi-procerae Arceuthobium Arceuthobium juniperi-procerae \N \N \N \N \N 2879 E.extrica Eucalyptus Eucalyptus extrica \N \N \N \N \N 2880 T.108219 Telipogon Telipogon sp. Heidelberg BG 108219 \N \N \N \N \N 2881 \N subfamily Maloideae \N \N \N \N \N 2882 C.thunbergiana Crassula Crassula thunbergiana \N \N \N \N \N 2883 V.armstrongii Hebe Veronica armstrongii \N \N \N \N \N 2884 S.chinensis Simmondsia Simmondsia chinensis goatnut,jojoba \N \N \N \N 2885 \N varietas Actinidia cylindrica var. cylindrica \N \N \N \N \N 2886 N.rautanenii Nymphoides Nymphoides rautanenii \N \N \N \N \N 2887 \N genus Treculia \N \N \N \N \N 2888 E.dracomontana Erica Erica dracomontana \N \N \N \N \N 2889 \N genus Orontium \N \N \N \N \N 2890 C.leucantha Cristaria Cristaria leucantha \N \N \N \N \N 2891 \N genus Arcangelisia \N \N \N \N \N 2892 G.inuncta Guatteria Guatteria inuncta \N \N \N \N \N 2893 M.xanthocentra Mimosa Mimosa xanthocentra \N \N \N \N \N 2894 Z.ovata Zaluzianskya Zaluzianskya ovata \N \N \N \N \N 2895 P.breviamentum Piper Piper breviamentum \N \N \N \N \N 2896 T.koelzii Tithonia Tithonia koelzii \N \N \N \N \N 2897 \N genus Hemigraphis \N \N \N \N \N 2898 F.amoena Felicia Felicia amoena \N \N \N \N \N 2899 S.shortii Solidago Solidago shortii Short's goldenrod \N \N \N \N 2901 S.arizonicum Sisyrinchium Sisyrinchium arizonicum \N \N \N \N \N 2902 P.recurvum Piper Piper recurvum \N \N \N \N \N 2903 F.benghalensis Ficus Ficus benghalensis banyan,banyan fig \N \N \N \N 2904 \N subspecies Dorycnium pentaphyllum subsp. germanicum \N \N \N \N \N 2905 E.s.n. Elatostema Elatostema sp. Orr s.n. \N \N \N \N \N 2906 N.borbonicus Nastus Nastus borbonicus \N \N \N \N \N 2907 P.virgatum Peliostomum Peliostomum virgatum \N \N \N \N \N 2908 M.herpyllomorpha Micromeria Micromeria herpyllomorpha \N \N \N \N \N 2909 P.faucicola Psychotria Psychotria faucicola \N \N \N \N \N 2910 \N genus Cerochlamys \N \N \N \N \N 2911 S.lunatum Solenidium Solenidium lunatum \N \N \N \N \N 2912 L.philadelphicum Lilium Lilium philadelphicum \N \N \N \N \N 2913 C.punctata Campanula Campanula punctata spotted bellflower \N \N \N \N 2914 \N genus Paraprenanthes \N \N \N \N \N 2915 D.truncatus Dinetus Dinetus truncatus \N \N \N \N \N 2916 M.pedersenii Mimosa Mimosa pedersenii \N \N \N \N \N 2917 P.pentandrum Pittosporum Pittosporum pentandrum \N \N \N \N \N 2918 C.almaatensis Crataegus Crataegus almaatensis \N \N \N \N \N 2919 C.multiflora Couratari Couratari multiflora \N \N \N \N \N 2920 C.xeranthemoides Carlina Carlina xeranthemoides \N \N \N \N \N 2921 L.cytisoides Lotus Lotus cytisoides \N \N \N \N \N 2922 E.pubescens Erica Erica pubescens \N \N \N \N \N 2923 N.722-05 Nymphaea Nymphaea sp. 722-05 \N \N \N \N \N 2924 M.elongatus Melianthus Melianthus elongatus \N \N \N \N \N 2925 \N tribe Trifolieae \N \N \N \N \N 2926 D.radulans Dactyloctenium Dactyloctenium radulans \N \N \N \N \N 2927 L.saltensis Lycianthes Lycianthes saltensis \N \N \N \N \N 2928 S.montanum Secale Secale montanum \N \N \N \N \N 2929 \N genus Trepocarpus \N \N \N \N \N 2930 M.candida Mammillaria Mammillaria candida \N \N \N \N \N 2931 C.limosa Conyza Conyza limosa \N \N \N \N \N 2932 \N varietas Mentzelia humilis var. guadalupensis \N \N \N \N \N 2933 S.vestita Stellaria Stellaria vestita \N \N \N \N \N 2934 M.abietina Monticalia Monticalia abietina \N \N \N \N \N 2935 H.litorale Helichrysum Helichrysum litorale \N \N \N \N \N 2936 Z.capillaris Zeugites Zeugites capillaris \N \N \N \N \N 2937 P.apargioides Pyrrocoma Pyrrocoma apargioides \N \N \N \N \N 2938 C.nepalense Chlorophytum Chlorophytum nepalense \N \N \N \N \N 2939 H.tatei Heliamphora Heliamphora tatei \N \N \N \N \N 2940 L.excelsa Lobelia Lobelia excelsa \N \N \N \N \N 2941 O.GMS-2005 Orobanche Orobanche cf. iberica GMS-2005 \N \N \N \N \N 2942 \N subtribe Bromheadiinae \N \N \N \N \N 2943 \N genus Pentaphragma \N \N \N \N \N 2944 L.hypophaea Litsea Litsea hypophaea \N \N \N \N \N 2945 S.utahensis Sarcocornia Sarcocornia utahensis \N \N \N \N \N 2946 A.corymbosoides Alyssum Alyssum corymbosoides \N \N \N \N \N 2947 A.trachycarpa Ainsworthia Ainsworthia trachycarpa \N \N \N \N \N 2948 \N genus Stephostachys \N \N \N \N \N 2949 \N genus Carnegiea \N \N \N \N \N 2950 A.donnell-smithii Arracacia Arracacia donnell-smithii \N \N \N \N \N 2951 H.mexicanum Hedyosmum Hedyosmum mexicanum \N \N \N \N \N 2952 V.alba Veillonia Veillonia alba \N \N \N \N \N 2953 D.ficulnea Dombeya Dombeya ficulnea \N \N \N \N \N 2954 M.elegans Moraea Moraea elegans \N \N \N \N \N 2955 R.formosanum Ribes Ribes formosanum \N \N \N \N \N 2956 P.calvescens Piptochaetium Piptochaetium calvescens \N \N \N \N \N 2957 V.lauta Varronia Varronia lauta \N \N \N \N \N 2958 C.podocephala Cordia Cordia podocephala \N \N \N \N \N 2959 P.SR596 Paederia Paederia sp. Razafimandimbison & Ravelo-narivo SR596 \N \N \N \N \N 2960 H.caribaea Heliconia Heliconia caribaea \N \N \N \N \N 2961 J.foliosa Jasione Jasione foliosa \N \N \N \N \N 2962 P.urbanianus Paepalanthus Paepalanthus urbanianus \N \N \N \N \N 2963 B.napellii Bulbophyllum Bulbophyllum napellii \N \N \N \N \N 2964 A.hottleyi Ampelocera Ampelocera hottleyi \N \N \N \N \N 2965 A.botelhoi Agrostis Agrostis botelhoi \N \N \N \N \N 2966 E.meganaesos Euphorbia Euphorbia meganaesos \N \N \N \N \N 2967 T.breweri Trifolium Trifolium breweri \N \N \N \N \N 2968 P.cauliflora Pycnarrhena Pycnarrhena cauliflora \N \N \N \N \N 2969 T.s1 unclassified Taraxacum Taraxacum (sect. Piesis) sp. s1 \N \N \N \N \N 2970 R.kunthiana Rhodostemonodaphne Rhodostemonodaphne kunthiana \N \N \N \N \N 2971 P.miyagawae Pfeiffera Pfeiffera miyagawae \N \N \N \N \N 2972 K.altissima Koellensteinia Koellensteinia altissima \N \N \N \N \N 2973 \N varietas Bidens pilosa var. minor \N \N \N \N \N 2974 P.arenaria Pratia Pratia arenaria \N \N \N \N \N 2975 \N genus Farsetia \N \N \N \N \N 2976 E.indica Euphorbia Euphorbia indica \N \N \N \N \N 2977 P.aucheri Plocama Plocama aucheri \N \N \N \N \N 2978 N.605 Napeanthus Napeanthus sp. Amaya & Smith 605 \N \N \N \N \N 2979 E.glaucus Erigeron Erigeron glaucus \N \N \N \N \N 2980 S.glaucescens Senecio Senecio glaucescens \N \N \N \N \N 2981 P.intaniae Paphiopedilum Paphiopedilum intaniae \N \N \N \N \N 2982 B.chondrosioides Bouteloua Bouteloua chondrosioides \N \N \N \N \N 2983 \N genus Oedematopus \N \N \N \N \N 2984 E.tenuis Eriochilus Eriochilus tenuis \N \N \N \N \N 2985 T.paucicostata Tilia Tilia paucicostata \N \N \N \N \N 2986 F.wagneri Festuca Festuca wagneri \N \N \N \N \N 2987 \N subspecies Pritzelago alpina subsp. auerswaldii \N \N \N \N \N 2988 H.825 Hippotis Hippotis sp. Clark and Watts 825 \N \N \N \N \N 2989 E.cerasiflora Eugenia Eugenia cerasiflora \N \N \N \N \N 2990 C.edulis Commiphora Commiphora edulis \N \N \N \N \N 2991 A.pfundii Aeschynomene Aeschynomene pfundii \N \N \N \N \N 2992 C.tinctoria Collomia Collomia tinctoria \N \N \N \N \N 2993 \N subspecies Cerinthe minor subsp. auriculata \N \N \N \N \N 2994 \N genus Oreoleysera \N \N \N \N \N 2995 A.pumila Asclepias Asclepias pumila \N \N \N \N \N 2996 A.152 Aconogonon Aconogonon sp. Won 152 \N \N \N \N \N 2997 \N subspecies Geranium pratense subsp. stewartianum \N \N \N \N \N 2998 R.odorata Rosa Rosa odorata tea rose \N \N \N \N 3000 O.sample environmental samples Taxonomy:321820 Oryza environmental sample \N \N \N \N \N 3001 A.sabulonum Astragalus Astragalus sabulonum \N \N \N \N \N 3002 E.flava Epipactis Epipactis flava \N \N \N \N \N 3003 S.rigoi Saxifraga Saxifraga rigoi \N \N \N \N \N 3004 C.spryginii Cousinia Cousinia spryginii \N \N \N \N \N 3005 P.scabra Pellionia Pellionia scabra \N \N \N \N \N 3006 S.alpina Synthyris Synthyris alpina \N \N \N \N \N 3007 C.mastersiana Coryanthes Coryanthes mastersiana \N \N \N \N \N 3008 D.setchuenensis Deutzia Deutzia setchuenensis \N \N \N \N \N 3009 L.lamiifolia Lepechinia Lepechinia lamiifolia \N \N \N \N \N 3010 S.9.1 Salicornia Salicornia aff. perennans Pankova & Demina 9.1 \N \N \N \N \N 3011 V.baoshanensis Viola Viola baoshanensis \N \N \N \N \N 3012 L.pusillus Lupinus Lupinus pusillus \N \N \N \N \N 3013 P.ruizlealii Prosopis Prosopis ruizlealii \N \N \N \N \N 3014 W.oblongifolia Wallichia Wallichia oblongifolia \N \N \N \N \N 3015 \N genus Leucosphaera \N \N \N \N \N 3016 C.vestita Carex Carex vestita velvet sedge \N \N \N \N 3017 R.acuta Reimarochloa Reimarochloa acuta \N \N \N \N \N 3018 \N varietas Dendrobium kingianum var. kingianum \N \N \N \N \N 3019 R.fiebrigii Rebutia Rebutia fiebrigii \N \N \N \N \N 3020 \N genus Acrotriche \N \N \N \N \N 3021 \N genus Helmiopsis \N \N \N \N \N 3022 G.tuerckheimii Guamatela Guamatela tuerckheimii \N \N \N \N \N 3023 R.hexamera Ruschia Ruschia hexamera \N \N \N \N \N 3024 S.gemmulosa Saxifraga Saxifraga gemmulosa \N \N \N \N \N 3025 \N subspecies Mammillaria melanocentra subsp. rubrograndis \N \N \N \N \N 3026 A.erikii Arabis Arabis erikii \N \N \N \N \N 3027 \N varietas Crassula perfoliata var. minor \N \N \N \N \N 3028 A.georgei Aconitum Aconitum georgei \N \N \N \N \N 3029 A.adinocephala Albizia Albizia adinocephala \N \N \N \N \N 3030 \N genus Legenere \N \N \N \N \N 3031 C.magnocarpa Camellia Camellia magnocarpa \N \N \N \N \N 3032 F.tetragona Fimbristylis Fimbristylis tetragona \N \N \N \N \N 3033 S.pygmaea Sagittaria Sagittaria pygmaea \N \N \N \N \N 3034 E.corifolia Erica Erica corifolia \N \N \N \N \N 3035 \N subspecies Echinops spinosissimus subsp. macrolepis \N \N \N \N \N 3036 A.ramosa Aechmea Aechmea ramosa \N \N \N \N \N 3037 C.YLS05021 Camellia Camellia sp. YLS05021 \N \N \N \N \N 3038 A.willdenowiana Aspalathus Aspalathus willdenowiana \N \N \N \N \N 3039 S.lanceolatum Symphyotrichum Symphyotrichum lanceolatum tall white aster \N \N \N \N 3040 L.rubtzovii Lepidium Lepidium rubtzovii \N \N \N \N \N 3041 A.canescens Albizia Albizia canescens \N \N \N \N \N 3042 H.lindleyanum Hymenidium Hymenidium lindleyanum \N \N \N \N \N 3043 \N genus Fernaldia \N \N \N \N \N 3044 \N genus Amydrium \N \N \N \N \N 3045 P.3013 Planchonella Planchonella sp. Meyer 3013 \N \N \N \N \N 3046 L.neurolobus Lathyrus Lathyrus neurolobus \N \N \N \N \N 3047 P.exigua Prenanthella Prenanthella exigua bright-white,thorny skeleton plant \N \N \N \N 3048 \N subspecies Brassica rapa subsp. rapa turnip \N \N \N \N 3049 L.37301 Leea Leea aff. setuligera Kress 37301 \N \N \N \N \N 3050 C.loureiroi Cinnamomum Cinnamomum loureiroi \N \N \N \N \N 3051 A.australe Antirrhinum Antirrhinum australe \N \N \N \N \N 3052 B.shweliensis Brassaiopsis Brassaiopsis shweliensis \N \N \N \N \N 3053 \N varietas Clinopodium chinense var. parviflorum \N \N \N \N \N 3054 P.nitidula Pseudocarapa Pseudocarapa nitidula \N \N \N \N \N 3055 N.rotundifolia Nicotiana Nicotiana rotundifolia \N \N \N \N \N 3056 \N genus Diplorhynchus \N \N \N \N \N 3057 S.howinsula Sophora Sophora howinsula \N \N \N \N \N 3058 M.moricandiana Mandevilla Mandevilla moricandiana \N \N \N \N \N 3059 C.minax Caesalpinia Caesalpinia minax \N \N \N \N \N 3060 S.pentstemonoides Salvia Salvia pentstemonoides \N \N \N \N \N 3061 P.croceoides Palicourea Palicourea croceoides \N \N \N \N \N 3062 E.triglochidiatus Echinocereus Echinocereus triglochidiatus kingcup cactus \N \N \N \N 3063 P.picta Pyrola Pyrola picta \N \N \N \N \N 3064 S.listerophora Stelis Stelis listerophora \N \N \N \N \N 3065 \N varietas Habranthus tubispathus var. texanus \N \N \N \N \N 3066 P.loratifolia Packera Packera loratifolia \N \N \N \N \N 3067 M.rhodantha Mammillaria Mammillaria rhodantha \N \N \N \N \N 3068 \N tribe Bryantheae \N \N \N \N \N 3069 \N subspecies Babiana mucronata subsp. mucronata \N \N \N \N \N 3070 C.divulsa Carex Carex divulsa \N \N \N \N \N 3071 \N genus Codonanthopsis \N \N \N \N \N 3072 T.punctulata Tillandsia Tillandsia punctulata \N \N \N \N \N 3073 A.333 Aechmanthera Aechmanthera sp. Wilson & Phillips 333 \N \N \N \N \N 3074 E.horrida Euphorbia Euphorbia horrida \N \N \N \N \N 3075 S.brevifolius Saribus Saribus brevifolius \N \N \N \N \N 3076 \N genus Euphorbia spurges \N \N \N \N 3077 B.baicalensis Borodinia Borodinia baicalensis \N \N \N \N \N 3078 P.meisneriana Persicaria Persicaria meisneriana \N \N \N \N \N 3079 M.glabra Macrocarpaea Macrocarpaea glabra \N \N \N \N \N 3080 C.sieboldiana Corylus Corylus sieboldiana \N \N \N \N \N 3081 E.glomerata Euchaetis Euchaetis glomerata \N \N \N \N \N 3082 A.parryi Agave Agave parryi \N \N \N \N \N 3083 B.touranensis Bauhinia Bauhinia touranensis \N \N \N \N \N 3084 P.pubens Prestoea Prestoea pubens \N \N \N \N \N 3085 T.virgata Trema Trema virgata \N \N \N \N \N 3086 S.SH1999 Schumacheria Schumacheria sp. SH1999 \N \N \N \N \N 3087 E.burmannii Euphorbia Euphorbia burmannii \N \N \N \N \N 3088 S.ulicinum Spyridium Spyridium ulicinum \N \N \N \N \N 3089 S.clavatum Sedum Sedum clavatum \N \N \N \N \N 3090 C.friburgensis Cyperus Cyperus friburgensis \N \N \N \N \N 3091 C.candida Cattleya Cattleya candida \N \N \N \N \N 3092 G.nobile Gymnostoma Gymnostoma nobile \N \N \N \N \N 3093 M.vigilans Moraea Moraea vigilans \N \N \N \N \N 3094 P.lanceolata Pentas Pentas lanceolata Egyptian star cluster \N \N \N \N 3095 C.leucocaulos Carthamus Carthamus leucocaulos \N \N \N \N \N 3096 P.simplex Prionosciadium Prionosciadium simplex \N \N \N \N \N 3097 C.pseudosetiflorum Canthium Canthium pseudosetiflorum \N \N \N \N \N 3098 S.floccosa Salix Salix floccosa \N \N \N \N \N 3099 A.funzana Aragoa Aragoa x funzana \N \N \N \N \N 4365 \N genus Richtersveldia \N \N \N \N \N 3100 N.glauca Nicotiana Nicotiana glauca glaucous tobacco,tree tobacco \N \N \N \N 3101 M.carthaginensis Manihot Manihot carthaginensis \N \N \N \N \N 3102 \N subspecies Ficus natalensis subsp. lepreurii \N \N \N \N \N 3103 B.sutherlandii Begonia Begonia sutherlandii \N \N \N \N \N 3104 P.yanaconasense Piper Piper yanaconasense \N \N \N \N \N 3105 \N genus Subularia \N \N \N \N \N 3106 F.acuminata Forestiera Forestiera acuminata \N \N \N \N \N 3107 F.nitida Fargesia Fargesia nitida \N \N \N \N \N 3108 M.ovata Mercurialis Mercurialis ovata \N \N \N \N \N 3109 E.arenarium Echium Echium arenarium \N \N \N \N \N 3110 R.maya Ruellia Ruellia maya \N \N \N \N \N 3111 \N genus Altoparadisium \N \N \N \N \N 3112 L.smallii Listera Listera smallii \N \N \N \N \N 3113 A.GX Anoectochilus Anoectochilus sp. GX \N \N \N \N \N 3114 P.hippiana Potentilla Potentilla hippiana \N \N \N \N \N 3115 B.biloba Blackallia Blackallia biloba \N \N \N \N \N 3116 F.wassa Ficus Ficus wassa \N \N \N \N \N 3117 C.mackenii Coccinia Coccinia mackenii \N \N \N \N \N 3118 A.megarrhizum Argyrolobium Argyrolobium megarrhizum \N \N \N \N \N 3119 A.uniflorus Astragalus Astragalus uniflorus \N \N \N \N \N 3120 H.alagoanum Hymenolobium Hymenolobium alagoanum \N \N \N \N \N 3121 L.arvensis Lupinus Lupinus arvensis \N \N \N \N \N 3122 Q.ilex Quercus Quercus ilex holly oak \N \N \N \N 3123 E.munizii Euphorbia Euphorbia munizii \N \N \N \N \N 3124 \N genus Leptostigma \N \N \N \N \N 3125 \N subspecies Circaea canadensis subsp. quadrisulcata \N \N \N \N \N 3126 A.flabellata Alchemilla Alchemilla flabellata \N \N \N \N \N 3127 \N varietas Cynoglossum dioscoridis var. maroccanum \N \N \N \N \N 3128 L.linifolia Lorandersonia Lorandersonia linifolia \N \N \N \N \N 3129 G.biflora Goodyera Goodyera biflora \N \N \N \N \N 3130 A.feddei Artemisia Artemisia feddei \N \N \N \N \N 3131 P.japonica Pyrola Pyrola japonica \N \N \N \N \N 3132 P.calophylla Periploca Periploca calophylla \N \N \N \N \N 3133 A.drummondii Arenaria Arenaria drummondii \N \N \N \N \N 3134 \N subspecies Sisyrinchium purpurellum subsp. trichospathum \N \N \N \N \N 3135 M.hypoglauca Mimosa Mimosa hypoglauca \N \N \N \N \N 3136 E.atrovirens Eragrostis Eragrostis atrovirens \N \N \N \N \N 3137 H.17408 Helwingia Helwingia sp. Peng et al. 17408 \N \N \N \N \N 3138 H.superflua Heterotaxis Heterotaxis superflua \N \N \N \N \N 3139 A.longifolia Amphirrhox Amphirrhox longifolia \N \N \N \N \N 3140 G.nannocarpa Guettarda Guettarda nannocarpa \N \N \N \N \N 3141 E.boivinii Euphorbia Euphorbia boivinii \N \N \N \N \N 3142 A.3112 Alphonsea Alphonsea sp. Kessler 3112 \N \N \N \N \N 3143 C.sublyratus Croton Croton sublyratus \N \N \N \N \N 3144 \N varietas Euclea undulata var. myrtina \N \N \N \N \N 3145 S.villasenorii Simsia Simsia villasenorii \N \N \N \N \N 3146 P.achoreum Polygonum Polygonum achoreum \N \N \N \N \N 3147 P.japonica Persicaria Persicaria japonica \N \N \N \N \N 3148 A.vermicularis Achillea Achillea vermicularis \N \N \N \N \N 3149 A.borneense Aridarum Aridarum borneense \N \N \N \N \N 3150 S.805 Solanum Solanum sp. Martine 805 \N \N \N \N \N 3151 S.04F/0060 Salicornia Salicornia aff. fragilis Teege 04F/0060 \N \N \N \N \N 3152 A.benthamii Arnebia Arnebia benthamii \N \N \N \N \N 3153 D.ericksoniae Drosera Drosera ericksoniae \N \N \N \N \N 3154 P.angustifolia Pictetia Pictetia angustifolia \N \N \N \N \N 3155 C.drummondii Cornus Cornus drummondii \N \N \N \N \N 3156 S.orientalis Stipa Stipa orientalis \N \N \N \N \N 3157 G.7277 Glossostigma Glossostigma sp. Barker 7277 \N \N \N \N \N 3158 E.wilcoxii Eriastrum Eriastrum wilcoxii \N \N \N \N \N 3159 E.platyclada Euphorbia Euphorbia platyclada \N \N \N \N \N 3160 M.gemmiparus Mimulus Mimulus gemmiparus \N \N \N \N \N 3161 M.limonensis Mammillaria Mammillaria limonensis \N \N \N \N \N 3162 I.repens Impatiens Impatiens repens \N \N \N \N \N 3163 I.halophila Iris Iris halophila \N \N \N \N \N 3164 \N varietas Boechera holboellii var. pinetorum \N \N \N \N \N 3165 D.ixioides Dilatris Dilatris ixioides \N \N \N \N \N 3166 P.lawrencii Pterygopappus Pterygopappus lawrencii \N \N \N \N \N 3167 G.scorzonerifolia Grindelia Grindelia scorzonerifolia \N \N \N \N \N 3168 A.VOV-2010 Anigozanthos Anigozanthos sp. VOV-2010 \N \N \N \N \N 3169 P.P140 Physalis Physalis sp. P140 \N \N \N \N \N 3170 \N genus Cracca \N \N \N \N \N 3171 C.heterophylla Coccinia Coccinia heterophylla \N \N \N \N \N 3172 U.longifolia Utricularia Utricularia longifolia \N \N \N \N \N 3173 O.trinervius Oxyrhynchus Oxyrhynchus trinervius \N \N \N \N \N 3174 \N genus Prinsepia \N \N \N \N \N 3175 S.organensis Stevia Stevia organensis \N \N \N \N \N 3176 C.boliviensis Cleome Cleome boliviensis \N \N \N \N \N 3177 O.wissmannii Orbea Orbea wissmannii \N \N \N \N \N 3178 Z.katharinae Zaluzianskya Zaluzianskya katharinae \N \N \N \N \N 3179 P.purpurascens Piptatherum Piptatherum purpurascens \N \N \N \N \N 3180 E.grandicornis Euphorbia Euphorbia grandicornis \N \N \N \N \N 3181 A.albanense Androcymbium Androcymbium albanense \N \N \N \N \N 3182 P.cymbalaria Pedicularis Pedicularis cymbalaria \N \N \N \N \N 3183 \N tribe Jacquemontieae \N \N \N \N \N 3184 \N subspecies Silene latifolia subsp. alba white campion,white cockle \N \N \N \N 3185 \N genus Asteriscus \N \N \N \N \N 3186 C.nudum Chondropetalum Chondropetalum nudum \N \N \N \N \N 3187 T.ledifolium Trymalium Trymalium ledifolium \N \N \N \N \N 3188 \N genus Melasma \N \N \N \N \N 3189 D.mozaffarianii Dionysia Dionysia mozaffarianii \N \N \N \N \N 3190 C.bungei Caragana Caragana bungei \N \N \N \N \N 3191 M.exiguus Mimulus Mimulus exiguus \N \N \N \N \N 3192 P.straminea Psychotria Psychotria straminea \N \N \N \N \N 3193 M.xiquexiquensis Mimosa Mimosa xiquexiquensis \N \N \N \N \N 3194 T.sauvallei Tabebuia Tabebuia sauvallei \N \N \N \N \N 3195 \N genus Hymenosporum \N \N \N \N \N 3196 I.regis-uzziae Iris Iris regis-uzziae \N \N \N \N \N 3197 L.abietina Leptecophylla Leptecophylla abietina \N \N \N \N \N 3198 C.macropodum Chaenorhinum Chaenorhinum macropodum \N \N \N \N \N 3199 L.cordifolia Lobelia Lobelia cordifolia \N \N \N \N \N 3200 \N genus Bredemeyera \N \N \N \N \N 3201 \N varietas Saxifraga egregia var. eciliata \N \N \N \N \N 3202 F.gul Ficus Ficus gul \N \N \N \N \N 3203 C.exilis Castilleja Castilleja exilis \N \N \N \N \N 3204 C.assimilis Courtoisina Courtoisina assimilis \N \N \N \N \N 3205 R.strigillosus Ranunculus Ranunculus strigillosus \N \N \N \N \N 3206 \N genus Boucerosia \N \N \N \N \N 3207 Q.quesneliana Quesnelia Quesnelia quesneliana \N \N \N \N \N 3208 L.gharbensis Linaria Linaria gharbensis \N \N \N \N \N 3209 M.porphyrocarpa Micropholis Micropholis porphyrocarpa \N \N \N \N \N 3210 H.parvum Hedysarum Hedysarum parvum \N \N \N \N \N 3211 S.smallii Sanicula Sanicula smallii Small's blacksnakeroot \N \N \N \N 3212 P.magnilobatus Phaseolus Phaseolus magnilobatus \N \N \N \N \N 3213 T.bulbiferum Typhonium Typhonium bulbiferum \N \N \N \N \N 3214 \N genus Ahernia \N \N \N \N \N 3215 E.linifolium Erysimum Erysimum linifolium \N \N \N \N \N 3216 T.cussackiana Trianthema Trianthema cussackiana \N \N \N \N \N 3217 T.archipelagi Terminalia Terminalia archipelagi \N \N \N \N \N 3218 \N genus Monochaetum \N \N \N \N \N 3219 A.aureus Adenocarpus Adenocarpus aureus \N \N \N \N \N 3220 M.odora Michelia Michelia odora \N \N \N \N \N 3221 D.pachycladus Drymophloeus Drymophloeus pachycladus \N \N \N \N \N 3222 L.macdanielii Leandra Leandra macdanielii \N \N \N \N \N 3223 F.umbellata Fuirena Fuirena umbellata \N \N \N \N \N 3224 \N subspecies Narcissus triandrus subsp. triandrus \N \N \N \N \N 3225 F.pringlei Flaveria Flaveria pringlei \N \N \N \N \N 3226 G.505530 Geranium Geranium aff. retorsum CHR 505530 \N \N \N \N \N 3227 C.tenuipile Cinnamomum Cinnamomum tenuipile \N \N \N \N \N 3228 \N varietas Agrostis stolonifera var. palustris \N \N \N \N \N 3229 V.cauliflora Versteegia Versteegia cauliflora \N \N \N \N \N 3230 \N varietas Dieteria canescens var. aristata \N \N \N \N \N 3231 C.maritima Cistanthe Cistanthe maritima \N \N \N \N \N 3232 G.conjugata Guibourtia Guibourtia conjugata \N \N \N \N \N 3233 \N genus Axiniphyllum \N \N \N \N \N 3234 M.vestita Myrcia Myrcia vestita \N \N \N \N \N 3235 C.troodi Cynoglossum Cynoglossum troodi \N \N \N \N \N 3236 \N genus Planodes \N \N \N \N \N 3237 B.myrtifolia Backhousia Backhousia myrtifolia \N \N \N \N \N 3238 N.carpentariae Nymphaea Nymphaea carpentariae \N \N \N \N \N 3239 C.stenocarpa Chamaedorea Chamaedorea stenocarpa \N \N \N \N \N 3240 T.nivale Trillium Trillium nivale dwarf white trillium \N \N \N \N 3241 Z.acuminatum Zanthoxylum Zanthoxylum acuminatum \N \N \N \N \N 3242 \N varietas Potentilla thurberi var. sanguinea \N \N \N \N \N 3243 B.mexicanum Brachypodium Brachypodium mexicanum \N \N \N \N \N 3244 \N varietas Mimosa montana var. sandemanii \N \N \N \N \N 3245 A.leucanthemoides Arctotis Arctotis leucanthemoides \N \N \N \N \N 3246 T.curassavica Tamonea Tamonea curassavica \N \N \N \N \N 3247 P.vaseyi Potamogeton Potamogeton berchtoldii subsp. gemmiparus x Potamogeton vaseyi \N \N \N \N \N 3248 P.maculata Phalaenopsis Phalaenopsis maculata \N \N \N \N \N 3249 \N genus Tachiadenus \N \N \N \N \N 3250 B.spatifolia Boechera Boechera retrofracta x Boechera spatifolia \N \N \N \N \N 3251 P.gigas Piper Piper gigas \N \N \N \N \N 3252 P.patula Pentaschistis Pentameris patula \N \N \N \N \N 3253 O.longistaminata Oryza Oryza longistaminata long-staminate rice,red rice \N \N \N \N 3254 F.sulcisquamosa Fritillaria Fritillaria sulcisquamosa \N \N \N \N \N 3255 P.suaveolens Poikilospermum Poikilospermum suaveolens \N \N \N \N \N 3256 G.glastifolia Glastaria Glastaria glastifolia \N \N \N \N \N 3257 D.pygmaea Disa Disa pygmaea \N \N \N \N \N 3258 O.capensis Olinia Olinia capensis \N \N \N \N \N 3259 B.juncoides Bulbostylis Bulbostylis juncoides \N \N \N \N \N 3260 S.orbicularis Saintpaulia Saintpaulia orbicularis \N \N \N \N \N 3261 V.plumosa Vanroyenella Vanroyenella plumosa \N \N \N \N \N 3262 L.bracteosa Leucas Leucas bracteosa \N \N \N \N \N 3263 \N varietas Sapindus saponaria var. drummondii \N \N \N \N \N 3264 \N tribe Culcasieae \N \N \N \N \N 3265 C.pulla Campanula Campanula pulla \N \N \N \N \N 3266 T.monticola Telipogon Telipogon monticola \N \N \N \N \N 3267 P.tropicum Pilidiostigma Pilidiostigma tropicum \N \N \N \N \N 3268 S.hilariana Senna Senna hilariana \N \N \N \N \N 3269 T.marum Teucrium Teucrium marum \N \N \N \N \N 3270 M.corymbosa Malaxis Malaxis corymbosa \N \N \N \N \N 3271 \N varietas Santalum insulare var. alticola \N \N \N \N \N 3272 S.560 Sebaea Sebaea sp. Forest 560 \N \N \N \N \N 3273 \N genus Piptadenia \N \N \N \N \N 3274 \N genus Lissanthe \N \N \N \N \N 3275 \N subspecies Silene pusilla subsp. candavica \N \N \N \N \N 3276 S.bicapsularis Senna Senna bicapsularis \N \N \N \N \N 3277 P.fastuosa Pycnandra Pycnandra fastuosa \N \N \N \N \N 3278 A.andrewsianum Abutilon Abutilon andrewsianum \N \N \N \N \N 3279 \N tribe Sphaerorrhizeae \N \N \N \N \N 3280 L.linearifolius Leucocroton Leucocroton linearifolius \N \N \N \N \N 3281 \N genus Oxyphyllum \N \N \N \N \N 3282 \N genus Dunalia \N \N \N \N \N 3283 \N genus Lophanthus \N \N \N \N \N 3284 \N genus Heliocauta \N \N \N \N \N 3285 S.materialis Shorea Shorea materialis \N \N \N \N \N 3286 \N genus Emex \N \N \N \N \N 3287 C.leonis Croton Croton leonis \N \N \N \N \N 3288 P.anvilensis Primula Primula anvilensis \N \N \N \N \N 3289 P.violacea Philenoptera Philenoptera violacea apple-leaf \N \N \N \N 3290 A.turbinocalyx Aechmea Aechmea turbinocalyx \N \N \N \N \N 3291 S.rivularis Stachys Stachys rivularis \N \N \N \N \N 3292 P.melanosticta Pomaria Pomaria melanosticta \N \N \N \N \N 3293 M.frutescens Myrospermum Myrospermum frutescens \N \N \N \N \N 3294 V.patulum Veratrum Veratrum patulum \N \N \N \N \N 3295 V.cerighellii Vaughania Vaughania cerighellii \N \N \N \N \N 3296 H.hunanensis Hilliella Hilliella hunanensis \N \N \N \N \N 3297 T.yunnanense Toxicodendron Toxicodendron yunnanense \N \N \N \N \N 3298 D.erythrorhiza Deppea Deppea erythrorhiza \N \N \N \N \N 3299 A.thalassophilum Argyranthemum Argyranthemum thalassophilum \N \N \N \N \N 3300 A.palmeri Ayenia Ayenia palmeri \N \N \N \N \N 3301 P.triloba Proboscidea Proboscidea triloba \N \N \N \N \N 3302 G.mihanovichii Gymnocalycium Gymnocalycium mihanovichii \N \N \N \N \N 3303 \N genus Pterocarpus \N \N \N \N \N 3304 \N genus Pheidonocarpa \N \N \N \N \N 3305 \N subspecies Asteriscus graveolens subsp. stenophyllus \N \N \N \N \N 3306 C.jutiapensis Croton Croton jutiapensis \N \N \N \N \N 3307 M.latifolia Miconia Miconia latifolia \N \N \N \N \N 3308 I.makinoi Ilex Ilex x makinoi \N \N \N \N \N 3309 R.subtomentosa Rudbeckia Rudbeckia subtomentosa \N \N \N \N \N 3310 R.compactum Rheum Rheum compactum \N \N \N \N \N 3311 C.decora Cyphia Cyphia decora \N \N \N \N \N 3312 H.monosperma Heliophila Heliophila monosperma \N \N \N \N \N 3313 G.montana Gomesa Gomesa montana \N \N \N \N \N 3314 \N genus Griffinia \N \N \N \N \N 3315 C.glauca Citrus Citrus glauca Australian desert-lime \N \N \N \N 3316 S.MAG-2009 Sloanea Sloanea sp. MAG-2009 \N \N \N \N \N 3317 S.melastomifolia Smilax Smilax melastomifolia \N \N \N \N \N 3318 B.curtisii Bridelia Bridelia curtisii \N \N \N \N \N 3319 \N genus Balfourodendron \N \N \N \N \N 3320 B.bifida Bactris Bactris bifida \N \N \N \N \N 3321 T.perfoliatum Thlaspi Thlaspi perfoliatum \N \N \N \N \N 3322 O.laciniata Oenothera Oenothera laciniata \N \N \N \N \N 3323 B.gregorii Baseonema Baseonema gregorii \N \N \N \N \N 3324 \N subspecies Hulsea vestita subsp. parryi \N \N \N \N \N 3325 A.pulverulentum Antirrhinum Antirrhinum pulverulentum \N \N \N \N \N 3326 M.karelinii Malcolmia Malcolmia karelinii \N \N \N \N \N 3327 P.mirabilis Pleurothallis Pleurothallis mirabilis \N \N \N \N \N 3328 S.137 Sorindeia Sorindeia sp. Buerki 137 \N \N \N \N \N 3329 O.unduavensis Oxalis Oxalis unduavensis \N \N \N \N \N 3330 \N genus Geranium \N \N \N \N \N 3331 F.paniculata Festuca Festuca paniculata \N \N \N \N \N 3332 \N subspecies Paloue induta subsp. glabra \N \N \N \N \N 3333 \N genus Ionopsis \N \N \N \N \N 3334 \N genus Flabellaria \N \N \N \N \N 3335 C.ME-2006 Carex Carex cf. flava ME-2006 \N \N \N \N \N 3336 \N genus Piptocarpha \N \N \N \N \N 3337 S.ligustrifolia Secamone Secamone ligustrifolia \N \N \N \N \N 3338 M.dubia Melia Melia dubia \N \N \N \N \N 3339 S.xanthophylla Shorea Shorea xanthophylla \N \N \N \N \N 3340 \N genus Sandbergia \N \N \N \N \N 3341 T.pentachaeta Thymophylla Thymophylla pentachaeta \N \N \N \N \N 3342 M.selebicum Myrmephytum Myrmephytum selebicum \N \N \N \N \N 3343 E.schweinfurthii Euphorbia Euphorbia schweinfurthii \N \N \N \N \N 3344 \N varietas Banksia nutans var. cernuella \N \N \N \N \N 3345 \N genus Paphiopedilum \N \N \N \N \N 3346 T.heucheriformis Telesonix Telesonix heucheriformis \N \N \N \N \N 3347 C.setifera Coleochloa Coleochloa setifera \N \N \N \N \N 3348 C.decandra Cuphea Cuphea decandra \N \N \N \N \N 3349 I.bombycina Impatiens Impatiens bombycina \N \N \N \N \N 3350 I.milesii Iris Iris milesii \N \N \N \N \N 3351 P.sarcophylla Pluchea Pluchea sarcophylla \N \N \N \N \N 3352 \N varietas Hibiscus sabdariffa var. sabdariffa \N \N \N \N \N 3353 S.densiflorum Sisyrinchium Sisyrinchium densiflorum \N \N \N \N \N 3354 N.vesicaria Nonea Nonea vesicaria \N \N \N \N \N 3355 K.erucifolia Klasea Klasea erucifolia \N \N \N \N \N 3356 C.perlaxus Chrysopogon Chrysopogon perlaxus \N \N \N \N \N 3357 T.involucrata Tetraria Tetraria involucrata \N \N \N \N \N 3358 M.edulis Monizia Monizia edulis \N \N \N \N \N 3359 R.lasiococcus Rubus Rubus lasiococcus \N \N \N \N \N 3360 C.forsteri Carex Carex forsteri \N \N \N \N \N 3361 F.equisetacea Ferula Ferula equisetacea \N \N \N \N \N 3362 S.dasyphylla Shorea Shorea dasyphylla \N \N \N \N \N 3363 \N genus Zinnia \N \N \N \N \N 3364 S.triptera Saussurea Saussurea triptera \N \N \N \N \N 3365 \N genus Proatriplex \N \N \N \N \N 3366 E.nocens Euphorbia Euphorbia nocens \N \N \N \N \N 3367 \N genus Specklinia \N \N \N \N \N 3368 L.pusillus Lagenias Lagenias pusillus \N \N \N \N \N 3369 C.microdonta Carex Carex microdonta \N \N \N \N \N 3370 N.leucophylloides Neoeplingia Neoeplingia leucophylloides \N \N \N \N \N 3371 M.kermadecense Myoporum Myoporum kermadecense \N \N \N \N \N 3372 C.sytsmae Colea Colea sytsmae \N \N \N \N \N 3373 G.gnaphiotricha Gomphrena Gomphrena gnaphiotricha \N \N \N \N \N 3374 \N genus Syringodium \N \N \N \N \N 3375 \N genus Asparagus \N \N \N \N \N 3376 P.torssanderi Potamogeton Potamogeton x torssanderi \N \N \N \N \N 3377 L.michiganense Lilium Lilium michiganense \N \N \N \N \N 3378 I.congolana Isolona Isolona congolana \N \N \N \N \N 3379 C.sativa Camelina Camelina sativa false flax,gold-of-pleasure \N \N \N \N 3380 P.hintoniorum Psathyrotopsis Psathyrotopsis hintoniorum \N \N \N \N \N 3381 P.albersiana Polyscias Polyscias albersiana \N \N \N \N \N 3382 \N subspecies Acaena pinnatifida subsp. grandiflora \N \N \N \N \N 3383 D.assurgens Diplotaxis Diplotaxis assurgens \N \N \N \N \N 3384 S.collaris Scaevola Scaevola collaris \N \N \N \N \N 3385 \N genus Fontanesia \N \N \N \N \N 3386 \N genus Holarrhena \N \N \N \N \N 3387 Z.harmsiana Zornia Zornia harmsiana \N \N \N \N \N 3388 T.andricum Trifolium Trifolium andricum \N \N \N \N \N 3389 A.1173 Anadendrum Anadendrum sp. Boyce 1173 \N \N \N \N \N 3390 S.modestum Sedum Sedum modestum \N \N \N \N \N 3391 H.aculeata Helminthotheca Helminthotheca aculeata \N \N \N \N \N 3392 Q.costaricensis Quararibea Quararibea costaricensis \N \N \N \N \N 3393 C.ophiochilus Ceanothus Ceanothus ophiochilus \N \N \N \N \N 3394 B.occlusum Bulbophyllum Bulbophyllum occlusum \N \N \N \N \N 3396 D.almedae Dahliaphyllum Dahliaphyllum almedae \N \N \N \N \N 3397 P.oblongifolia Photinia Photinia oblongifolia \N \N \N \N \N 3398 O.longiflora Ophiorrhiza Ophiorrhiza longiflora \N \N \N \N \N 3399 C.chacoense Capsicum Capsicum chacoense \N \N \N \N \N 3400 S.cubense Stegnosperma Stegnosperma cubense \N \N \N \N \N 3401 \N genus Callaeum \N \N \N \N \N 3402 P.flettii Packera Packera flettii \N \N \N \N \N 3403 G.verruculosa Guatteria Guatteria verruculosa \N \N \N \N \N 3404 C.rosea Carex Carex rosea \N \N \N \N \N 3405 B.tubiflora Bikkia Bikkia tubiflora \N \N \N \N \N 3406 S.ruthenica Salsola Salsola ruthenica \N \N \N \N \N 3407 C.gratopsis Clematis Clematis gratopsis \N \N \N \N \N 3408 P.corymbifera Palicourea Palicourea corymbifera \N \N \N \N \N 3409 C.tetraphyllum Cryptosepalum Cryptosepalum tetraphyllum \N \N \N \N \N 3410 \N genus Perrierbambus \N \N \N \N \N 3411 \N family Misodendraceae feathery mistletoe family \N \N \N \N 3412 E.inclaudens Erepsia Erepsia inclaudens \N \N \N \N \N 3413 \N genus Burchellia \N \N \N \N \N 3414 S.lucidus Scolosanthus Scolosanthus lucidus \N \N \N \N \N 3415 H.bussei Heinsia Heinsia bussei \N \N \N \N \N 3416 S.734 Sporobolus Sporobolus sp. Forest 734 \N \N \N \N \N 3417 R.nelsonii Rhodosciadium Rhodosciadium nelsonii \N \N \N \N \N 3418 L.exsertum Lithospermum Lithospermum exsertum \N \N \N \N \N 3419 C.koordersianus Calamus Calamus koordersianus \N \N \N \N \N 3420 C.lucida Carapichea Carapichea lucida \N \N \N \N \N 3421 S.nakamurana Salix Salix nakamurana \N \N \N \N \N 3422 \N varietas Macaranga lowii var. kostermansii \N \N \N \N \N 3423 E.bonplandii Eryngium Eryngium bonplandii \N \N \N \N \N 3424 R.schomburgkii Retiniphyllum Retiniphyllum schomburgkii \N \N \N \N \N 3425 P.pulverulenta Pachycentria Pachycentria pulverulenta \N \N \N \N \N 3426 C.filiformis Centaurea Centaurea filiformis \N \N \N \N \N 3427 P.immanifestus Penstemon Penstemon immanifestus \N \N \N \N \N 3428 M.leucaimata Maxillaria Maxillaria leucaimata \N \N \N \N \N 3429 E.O-795 Epistephium Epistephium cf. lucidum Chase O-795 \N \N \N \N \N 3430 V.incana Veronica Veronica incana \N \N \N \N \N 3431 P.rugelii Plantago Plantago rugelii blackseed plantain \N \N \N \N 3432 \N varietas Briza rufa var. sparsipilosa \N \N \N \N \N 3433 \N subspecies Primula clevelandii subsp. clevelandii \N \N \N \N \N 3434 O.harryanum Oncidium Oncidium harryanum \N \N \N \N \N 3435 O.dilatata Oxalis Oxalis dilatata \N \N \N \N \N 3436 G.bradeana Gaultheria Gaultheria bradeana \N \N \N \N \N 3437 M.blanchetii Mimosa Mimosa blanchetii \N \N \N \N \N 3438 \N subspecies Cornus hongkongensis subsp. tonkinensis \N \N \N \N \N 3439 P.specuicola Primula Primula specuicola \N \N \N \N \N 3440 C.polycephalum Clinopodium Clinopodium polycephalum \N \N \N \N \N 3441 \N genus Pleioceras \N \N \N \N \N 3442 C.alpinus Charianthus Charianthus alpinus \N \N \N \N \N 3443 C.ligerica Carex Carex ligerica \N \N \N \N \N 3444 D.longifolia Dendrocnide Dendrocnide longifolia \N \N \N \N \N 3445 \N genus Freycinetia \N \N \N \N \N 3446 S.violaceum Solanum Solanum violaceum \N \N \N \N \N 3447 S.amplexicaulis Solena Solena amplexicaulis \N \N \N \N \N 3448 M.verrucosa Mimosa Mimosa verrucosa \N \N \N \N \N 3449 S.campylantha Swainsona Swainsona campylantha \N \N \N \N \N 3450 B.aretioides Bryomorphe Bryomorphe aretioides \N \N \N \N \N 3451 P.pteroclada Piptadenia Piptadenia pteroclada \N \N \N \N \N 3452 Q.frainetto Quercus Quercus frainetto \N \N \N \N \N 3453 L.ewyckii Lithocarpus Lithocarpus ewyckii \N \N \N \N \N 3454 L.ovata Leptodermis Leptodermis ovata \N \N \N \N \N 3455 P.orbicularis Pyrostria Pyrostria orbicularis \N \N \N \N \N 3456 N.gaudichaudii Nassauvia Nassauvia gaudichaudii \N \N \N \N \N 3457 P.yuparensis Primula Primula yuparensis \N \N \N \N \N 3458 N.macrophylla Nepenthes Nepenthes macrophylla \N \N \N \N \N 3459 A.miyabei Acer Acer miyabei Miyabe maple \N \N \N \N 3460 A.swazicum Adenium Adenium swazicum \N \N \N \N \N 3461 C.affinis Cotoneaster Cotoneaster affinis \N \N \N \N \N 3462 \N subspecies Descurainia pinnata subsp. ochroleuca \N \N \N \N \N 3463 \N varietas Triticum dicoccoides var. aaronsohnii \N \N \N \N \N 3464 T.globosum Trifolium Trifolium globosum \N \N \N \N \N 3465 P.tomentosa Pometia Pometia tomentosa \N \N \N \N \N 3466 C.JAD-2009 Carex Carex sp. JAD-2009 \N \N \N \N \N 3467 N.tatarinowii Nabalus Nabalus tatarinowii \N \N \N \N \N 3468 M.portoricensis Magnolia Magnolia portoricensis Puerto Rico magnolia \N \N \N \N 3469 S.glabrescens Sigesbeckia Sigesbeckia glabrescens \N \N \N \N \N 3470 P.glomerata Pteronia Pteronia glomerata \N \N \N \N \N 3471 G.microphyllum Geranium Geranium microphyllum \N \N \N \N \N 3472 E.transvaalense Elaeodendron Elaeodendron transvaalense \N \N \N \N \N 3473 D.glaucum Delphinium Delphinium glaucum mountain larkspur \N \N \N \N 3474 M.brasiliensis Maxillaria Maxillaria brasiliensis \N \N \N \N \N 3475 A.duarteana Alcantarea Alcantarea duarteana \N \N \N \N \N 3476 B.gmelinii Bryanthus Bryanthus gmelinii \N \N \N \N \N 3477 \N varietas Thalictrum urbainii var. urbainii \N \N \N \N \N 3478 E.perspicua Erica Erica perspicua \N \N \N \N \N 3479 R.angustifolia Ruta Ruta angustifolia \N \N \N \N \N 3480 \N no rank Osmaronieae \N \N \N \N \N 3481 M.splendida Mimosa Mimosa splendida \N \N \N \N \N 3482 E.patens Eragrostis Eragrostis patens \N \N \N \N \N 3483 O.suarezii Ornithocephalus Ornithocephalus suarezii \N \N \N \N \N 3484 S.arachnoidea Saxifraga Saxifraga arachnoidea \N \N \N \N \N 3485 C.spinosus Ceanothus Ceanothus spinosus \N \N \N \N \N 3486 H.discolor Heterotaxis Heterotaxis discolor \N \N \N \N \N 3487 H.colchica Hedera Hedera colchica Persian ivy \N \N \N \N 3488 P.compacta Puya Puya compacta \N \N \N \N \N 3489 S.schomburgkii Solanum Solanum schomburgkii \N \N \N \N \N 3490 T.tasch-kala Tragopogon Tragopogon tasch-kala \N \N \N \N \N 3491 \N genus Baeometra \N \N \N \N \N 3494 H.mollis Holcus Holcus mollis \N \N \N \N \N 3495 L.salvadorensis Leucaena Leucaena salvadorensis aserillo,sepia vaina \N \N \N \N 3496 \N genus Phleum \N \N \N \N \N 3497 A.huttonii Aerides Aerides huttonii \N \N \N \N \N 3498 A.bicolor Aquilegia Aquilegia bicolor \N \N \N \N \N 3499 E.JK-2009 Exochaenium Exochaenium sp. A JK-2009 \N \N \N \N \N 3500 M.crocea Miconia Miconia crocea \N \N \N \N \N 3501 \N genus Peltastes \N \N \N \N \N 3502 E.monticola Erythrospermum Erythrospermum monticola \N \N \N \N \N 3503 M.petenensis Mesadenella Mesadenella petenensis \N \N \N \N \N 3504 A.eriopoda Anabasis Anabasis eriopoda \N \N \N \N \N 3505 C.pierotii Clematis Clematis pierotii \N \N \N \N \N 3506 \N subspecies Sclerocarya birrea subsp. caffra \N \N \N \N \N 3507 W.coccinea Warszewiczia Warszewiczia coccinea \N \N \N \N \N 3508 D.brownii Drypetes Drypetes brownii \N \N \N \N \N 3509 P.trichoides Potamogeton Potamogeton trichoides \N \N \N \N \N 3510 C.platyphyllum Crepidiastrum Crepidiastrum platyphyllum \N \N \N \N \N 3511 \N varietas Aconitum forrestii var. albovillosum \N \N \N \N \N 3512 B.splendida Banksia Banksia splendida \N \N \N \N \N 3513 \N family Hydatellaceae \N \N \N \N \N 3514 S.inflexa Succisella Succisella inflexa \N \N \N \N \N 3515 H.scarlatina Hippotis Hippotis scarlatina \N \N \N \N \N 3516 O.ghiesbreghtianum Oncidium Oncidium ghiesbreghtianum \N \N \N \N \N 3517 \N genus Zantedeschia \N \N \N \N \N 3518 H.procumbens Heliopsis Heliopsis procumbens \N \N \N \N \N 3519 P.corymbosa Pimpinella Pimpinella corymbosa \N \N \N \N \N 3520 A.przewalskianum Allium Allium przewalskianum \N \N \N \N \N 3521 \N genus Taplinia \N \N \N \N \N 3522 \N genus Brandegea \N \N \N \N \N 3523 H.guatemalensis Hohenbergiopsis Hohenbergiopsis guatemalensis \N \N \N \N \N 3524 C.micrantha Camellia Camellia micrantha \N \N \N \N \N 3525 \N genus Sesamoides \N \N \N \N \N 3526 \N varietas Celtis tournefortii var. glabrata \N \N \N \N \N 3527 T.jankae Thlaspi Thlaspi jankae \N \N \N \N \N 3528 \N subspecies Carex atlantica subsp. atlantica \N \N \N \N \N 3529 M.euneura Monocarpia Monocarpia euneura \N \N \N \N \N 3530 F.campestris Flaveria Flaveria campestris alkali yellowtops \N \N \N \N 3531 G.londonderriense Gossypium Gossypium londonderriense \N \N \N \N \N 3532 J.pulchella Jurinea Jurinea pulchella \N \N \N \N \N 3533 D.bellii Draba Draba bellii \N \N \N \N \N 3534 \N genus Distylium \N \N \N \N \N 3535 M.candicans Melolobium Melolobium candicans \N \N \N \N \N 3536 P.gibbilimbum Piper Piper gibbilimbum \N \N \N \N \N 3537 A.inaequalis Asclepias Asclepias inaequalis \N \N \N \N \N 3538 E.angolense Entandrophragma Entandrophragma angolense \N \N \N \N \N 3539 G.phaeotricha Gnidia Gnidia phaeotricha \N \N \N \N \N 3540 \N genus Pippenalia \N \N \N \N \N 3541 M.selleana Miconia Miconia selleana \N \N \N \N \N 3542 C.mollis Calycadenia Calycadenia mollis soft calycadenia \N \N \N \N 3543 P.flexuosa Poa Poa flexuosa \N \N \N \N \N 3544 H.canaliculatum Haplophyllum Haplophyllum canaliculatum \N \N \N \N \N 3545 L.confertum Lamium Lamium confertum \N \N \N \N \N 3546 D.eriocarpa Diplopeltis Diplopeltis eriocarpa \N \N \N \N \N 3547 S.SM328 Spathiphyllum Spathiphyllum sp. SM328 \N \N \N \N \N 3548 \N genus Abrophyllum \N \N \N \N \N 3549 K.venosa Keetia Keetia venosa \N \N \N \N \N 3550 \N genus Macrotomia \N \N \N \N \N 3551 \N genus Caulipsolon \N \N \N \N \N 3552 P.obconica Puya Puya obconica \N \N \N \N \N 3553 N.peltata Nymphoides Nymphoides peltata \N \N \N \N \N 3554 L.repens Laurembergia Laurembergia repens \N \N \N \N \N 3555 H.hamulosa Hibbertia Hibbertia hamulosa \N \N \N \N \N 3556 \N genus Chichicaste \N \N \N \N \N 3557 S.tzumu Sassafras Sassafras tzumu \N \N \N \N \N 3558 S.fragrans Sobralia Sobralia fragrans \N \N \N \N \N 3559 A.refracta Adenia Adenia refracta \N \N \N \N \N 3560 N.jonquilla Narcissus Narcissus jonquilla \N \N \N \N \N 3561 V.neomexicana Verbena Verbena neomexicana hillside vervain \N \N \N \N 3562 P.heterophylla Phacelia Phacelia heterophylla \N \N \N \N \N 3563 E.amethystinum Eryngium Eryngium amethystinum \N \N \N \N \N 3564 T.paniceum Trisetum Trisetum paniceum \N \N \N \N \N 3565 C.chapalaensis Cleome Cleome chapalaensis \N \N \N \N \N 3566 C.mairei Centaurium Centaurium mairei \N \N \N \N \N 3567 P.gramineus Potamogeton Potamogeton oakesianus x Potamogeton gramineus \N \N \N \N \N 3568 P.TJSW-2011 Polyalthia Polyalthia sp. TJSW-2011 \N \N \N \N \N 3569 P.trichocalyx Psychotria Psychotria trichocalyx \N \N \N \N \N 3570 H.strigosa Hydrangea Hydrangea strigosa \N \N \N \N \N 3571 A.leonis Angraecum Angraecum leonis \N \N \N \N \N 3572 C.kentukea Cladrastis Cladrastis kentukea Kentucky yellowwood \N \N \N \N 3573 \N subspecies Chrysanthemoides monilifera subsp. rotundata \N \N \N \N \N 3574 \N subfamily Pothoideae \N \N \N \N \N 3575 \N varietas Acer pseudosieboldianum var. koreanum \N \N \N \N \N 3576 V.unilateralis Vulpia Vulpia unilateralis mat-grass fescue \N \N \N \N 3577 B.insolitum Bulbophyllum Bulbophyllum insolitum \N \N \N \N \N 3578 S.ferocissimum Solanum Solanum ferocissimum \N \N \N \N \N 3579 A.mexicana Argemone Argemone mexicana \N \N \N \N \N 3580 C.myricoides Clutia Clutia myricoides \N \N \N \N \N 3581 S.minutiflora Scaphochlamys Scaphochlamys minutiflora \N \N \N \N \N 3582 B.setaceum Bunium Bunium setaceum \N \N \N \N \N 3583 \N subspecies Carex nigra subsp. juncella \N \N \N \N \N 3584 \N genus Metaplexis \N \N \N \N \N 3585 C.hyssopoides Cuphea Cuphea hyssopoides \N \N \N \N \N 3586 C.madagascariense Cynanchum Cynanchum madagascariense \N \N \N \N \N 3587 V.lasiocarpa Vigna Vigna lasiocarpa \N \N \N \N \N 3588 T.MVSP-2007 Trymalium Trymalium cf. floribundum MVSP-2007 \N \N \N \N \N 3589 H.floribunda Hasseltia Hasseltia floribunda \N \N \N \N \N 3590 \N genus Ceratocarpus \N \N \N \N \N 4561 \N genus Apteranthes \N \N \N \N \N 3591 O.125079 Octomeria Octomeria sp. Heidelberg BG 125079 \N \N \N \N \N 3592 \N genus Helicanthes \N \N \N \N \N 3593 C.tigrina Chaubardiella Chaubardiella tigrina \N \N \N \N \N 3594 \N genus Razisea \N \N \N \N \N 3595 A.pitcairnioides Acanthostachys Acanthostachys pitcairnioides \N \N \N \N \N 3596 P.paniculatum Protium Protium paniculatum \N \N \N \N \N 3597 \N subspecies Argyranthemum pinnatifidum subsp. succulentum \N \N \N \N \N 3598 P.glechomoides Pelargonium Pelargonium glechomoides \N \N \N \N \N 3599 P.senecioides Pelargonium Pelargonium senecioides \N \N \N \N \N 3600 B.monandra Briza Briza monandra \N \N \N \N \N 3601 \N genus Gyrostemon \N \N \N \N \N 3602 P.foliosa Protea Protea foliosa \N \N \N \N \N 3603 D.sanguinea Drimia Drimia sanguinea \N \N \N \N \N 3604 O.corymbosa Ocotea Ocotea corymbosa \N \N \N \N \N 3605 K.elegans Kerriodoxa Kerriodoxa elegans \N \N \N \N \N 3606 S.wonotoboense Sparattanthelium Sparattanthelium wonotoboense \N \N \N \N \N 3607 \N no rank Elatostema rostratum group \N \N \N \N \N 3608 V.reniformis Villarsia Villarsia reniformis \N \N \N \N \N 3609 P.amazonica Pentagonia Pentagonia amazonica \N \N \N \N \N 3610 \N genus Camptotheca \N \N \N \N \N 3611 C.pseudarctium Cousinia Cousinia pseudarctium \N \N \N \N \N 3612 C.latifolium Cerastium Cerastium latifolium \N \N \N \N \N 3613 D.cumminsii Danthonia Danthonia cumminsii \N \N \N \N \N 3614 \N varietas Salvia microphylla var. neurepia \N \N \N \N \N 3615 D.riodelayensis Deiregyne Deiregyne riodelayensis \N \N \N \N \N 3616 F.parodiana Festuca Festuca parodiana \N \N \N \N \N 3617 E.intermedium Exacum Exacum intermedium \N \N \N \N \N 3618 \N genus Clymenia \N \N \N \N \N 3619 S.schaffneri Sarcoglottis Sarcoglottis schaffneri \N \N \N \N \N 3620 P.macranthum Pleodendron Pleodendron macranthum \N \N \N \N \N 3621 \N genus Acomis \N \N \N \N \N 3622 \N genus Egletes \N \N \N \N \N 3623 A.18362 Alonsoa Alonsoa sp. Wood 18362 \N \N \N \N \N 3624 M.salzmannii Myriopus Myriopus salzmannii \N \N \N \N \N 3625 E.quercifolius Erigeron Erigeron quercifolius \N \N \N \N \N 3626 W.SH-2010 Wikstroemia Wikstroemia sp. SH-2010 \N \N \N \N \N 3627 \N tribe Arundinelleae \N \N \N \N \N 3628 D.pavonius Dianthus Dianthus pavonius \N \N \N \N \N 3629 S.atropurpureum Schizoglossum Schizoglossum atropurpureum \N \N \N \N \N 3630 P.vitiensis Planchonella Planchonella vitiensis \N \N \N \N \N 3631 S.campanulata Sutera Sutera campanulata \N \N \N \N \N 3632 S.oppositifolia Scaevola Scaevola oppositifolia \N \N \N \N \N 3633 \N varietas Gaillardia pulchella var. drummondii \N \N \N \N \N 3634 A.tibetica Arctopoa Arctopoa tibetica \N \N \N \N \N 3635 M.fulva Michelia Michelia fulva \N \N \N \N \N 3636 D.robinsoniana Dietes Dietes robinsoniana \N \N \N \N \N 3637 \N genus Roupala \N \N \N \N \N 3638 L.occimadrensis Leibnitzia Leibnitzia occimadrensis \N \N \N \N \N 3639 S.coptonogonus Stenocactus Stenocactus coptonogonus \N \N \N \N \N 3640 M.pendula Moraea Moraea pendula \N \N \N \N \N 3641 L.beyrichianum Lachnocaulon Lachnocaulon beyrichianum \N \N \N \N \N 3642 \N genus Hippomane \N \N \N \N \N 3643 O.grandiflora Oenothera Oenothera grandiflora \N \N \N \N \N 3644 A.latifolia Atriplex Atriplex latifolia \N \N \N \N \N 3645 T.africanum Trichodesma Trichodesma africanum \N \N \N \N \N 3646 A.humilis Aloe Aloe humilis \N \N \N \N \N 3647 S.903 Sarcolaena Sarcolaena sp. Chase 903 \N \N \N \N \N 3648 \N no rank Solanum hybrid sp. 84.194.30 \N \N \N \N \N 3649 L.nitida Llagunoa Llagunoa nitida \N \N \N \N \N 3650 P.acuminata Polygala Polygala acuminata \N \N \N \N \N 3651 \N no rank Saccharum hybrid cultivar R570 \N \N \N \N \N 3652 \N subspecies Conostylis crassinerva subsp. crassinerva \N \N \N \N \N 3653 \N genus Pinda \N \N \N \N \N 3654 H.parodii Hordeum Hordeum parodii \N \N \N \N \N 3655 \N varietas Aconitum hemsleyanum var. circinatum \N \N \N \N \N 3656 \N varietas Lycianthes moziniana var. margaretiana \N \N \N \N \N 3657 E.hemisphaericum Eryngium Eryngium hemisphaericum \N \N \N \N \N 3658 A.cantoniensis Ampelopsis Ampelopsis cantoniensis \N \N \N \N \N 3659 C.s.n. Casuarina Casuarina sp. Abe s.n. \N \N \N \N \N 3660 F.sachalinensis Fallopia Fallopia sachalinensis \N \N \N \N \N 3661 P.sagittifolium Piper Piper sagittifolium \N \N \N \N \N 3662 C.heldreichii Crataegus Crataegus heldreichii \N \N \N \N \N 3663 \N varietas Ceanothus cuneatus var. ramulosus \N \N \N \N \N 3664 R.macrophylla Roupala Roupala macrophylla \N \N \N \N \N 3665 J.dichotomum Jasminum Jasminum dichotomum Gold Coast jasmine \N \N \N \N 3666 B.kisuluana Begonia Begonia kisuluana \N \N \N \N \N 3667 \N varietas Mimosa pilulifera var. pseudincana \N \N \N \N \N 3668 \N varietas Coffea liberica var. dewevrei excelsa coffee \N \N \N \N 3669 \N subspecies Phyllobolus splendens subsp. splendens \N \N \N \N \N 3670 S.balansae Scaevola Scaevola balansae \N \N \N \N \N 3671 A.lagascana Anthyllis Anthyllis lagascana \N \N \N \N \N 3672 O.szovitsii Oxytropis Oxytropis szovitsii \N \N \N \N \N 3673 C.ledifolius Cercocarpus Cercocarpus ledifolius \N \N \N \N \N 3674 S.azorica Sanicula Sanicula azorica \N \N \N \N \N 3675 M.tiliifolius Mallotus Mallotus tiliifolius \N \N \N \N \N 3676 A.fascicularis Astartea Astartea fascicularis \N \N \N \N \N 3677 O.vulcanicum Oncidium Oncidium vulcanicum \N \N \N \N \N 3678 R.gunnii Richea Richea gunnii \N \N \N \N \N 3679 A.rubricaulis Actinidia Actinidia rubricaulis \N \N \N \N \N 3680 O.wiedemannii Ornithogalum Ornithogalum wiedemannii \N \N \N \N \N 3681 B.interruptus Bromus Bromus interruptus \N \N \N \N \N 3682 M.guangnanensis Magnolia Magnolia guangnanensis \N \N \N \N \N 3683 P.kermadecensis Pseudopanax Pseudopanax kermadecensis \N \N \N \N \N 3684 S.micromeris Suaeda Suaeda micromeris \N \N \N \N \N 3685 M.10300 Malope Malope sp. Romo et al. 10300 \N \N \N \N \N 3686 A.crataegifolium Acer Acer crataegifolium hawthorn maple \N \N \N \N 3687 O.oxyceras Oncidium Oncidium oxyceras \N \N \N \N \N 3688 T.macrocephalum Trifolium Trifolium macrocephalum \N \N \N \N \N 3689 S.dracocephaloides Salvia Salvia dracocephaloides \N \N \N \N \N 3690 P.sorbifolia Pedicularis Pedicularis sorbifolia \N \N \N \N \N 3691 R.eucleiforme Robsonodendron Robsonodendron eucleiforme \N \N \N \N \N 3692 O.1631 Oncidium Oncidium sp. Whitten 1631 \N \N \N \N \N 3693 P.stuartiana Phalaenopsis Phalaenopsis stuartiana \N \N \N \N \N 3694 C.765 Coffea Coffea sp. Pettersson and Nilsson 765 \N \N \N \N \N 3695 C.brevicaudata Clematis Clematis brevicaudata \N \N \N \N \N 3696 S.asperulus Senecio Senecio asperulus \N \N \N \N \N 3697 S.mitscherlichii Strychnos Strychnos mitscherlichii \N \N \N \N \N 3698 T.polymorpha Trochomeria Trochomeria polymorpha \N \N \N \N \N 3699 G.terraccianoana Gagea Gagea terraccianoana \N \N \N \N \N 3700 D.longicornu Dendrobium Dendrobium longicornu \N \N \N \N \N 3701 S.seua Sabicea Sabicea seua \N \N \N \N \N 3702 G.trichonemifolius Gladiolus Gladiolus trichonemifolius \N \N \N \N \N 3703 \N varietas Haworthia gracilis var. gracilis \N \N \N \N \N 3704 C.jackiana Carex Carex jackiana \N \N \N \N \N 3705 H.euclaston Hordeum Hordeum euclaston \N \N \N \N \N 3706 M.nutans Melica Melica nutans \N \N \N \N \N 3707 V.recondita Velascoa Velascoa recondita \N \N \N \N \N 3708 P.turneri Pittosporum Pittosporum turneri \N \N \N \N \N 3709 O.revolutus Ophiopogon Ophiopogon revolutus \N \N \N \N \N 3710 G.trifoliata Gillenia Gillenia trifoliata Bowman's root,mountain indian-physic \N \N \N \N 3711 S.anceps Strobilanthes Strobilanthes anceps \N \N \N \N \N 3712 B.parviflora Buddleja Buddleja parviflora \N \N \N \N \N 3713 T.tl211 unclassified Taraxacum Taraxacum (sect. Naevosa) sp. tl211 \N \N \N \N \N 3714 G.arboreum Gossypium Gossypium arboreum tree cotton \N \N \N \N 3715 \N subspecies Primula cuneifolia subsp. heterodonta \N \N \N \N \N 3716 I.geniculata Ilex Ilex geniculata \N \N \N \N \N 3717 \N genus Schismatoclada \N \N \N \N \N 3718 G.microcarpus Gladiolus Gladiolus microcarpus \N \N \N \N \N 3719 \N genus Oenothera evening primroses \N \N \N \N 3720 N.10 Neonauclea Neonauclea sp. 10 \N \N \N \N \N 3721 B.LY-2009 Begonia Begonia sp. LY-2009 \N \N \N \N \N 3722 \N forma Eleutherococcus divaricatus f. albeofructus \N \N \N \N \N 3723 G.palawanense Glyptopetalum Glyptopetalum palawanense \N \N \N \N \N 3724 C.tunganica Camellia Camellia tunganica \N \N \N \N \N 3725 E.axillare Enicostema Enicostema axillare \N \N \N \N \N 3726 S.villosus Sauropus Sauropus villosus \N \N \N \N \N 3727 B.echinosepala Begonia Begonia echinosepala \N \N \N \N \N 3728 C.bilamellatum Caularthron Caularthron bilamellatum \N \N \N \N \N 3729 O.greenmanii Oxypolis Oxypolis greenmanii \N \N \N \N \N 3730 S.spectabilis Senna Senna spectabilis \N \N \N \N \N 3731 C.heterotricha Chirita Chirita heterotricha \N \N \N \N \N 3732 E.cumbrae Euphorbia Euphorbia cumbrae \N \N \N \N \N 3733 \N genus Aphyllanthes \N \N \N \N \N 3734 C.andinus Croton Croton andinus \N \N \N \N \N 3735 H.balearica Hippocrepis Hippocrepis balearica \N \N \N \N \N 3736 \N genus Matthaea \N \N \N \N \N 3737 \N genus Sphenodesme \N \N \N \N \N 3738 A.costaricensis Ampelocissus Ampelocissus costaricensis \N \N \N \N \N 3739 L.virgata Lespedeza Lespedeza virgata \N \N \N \N \N 3740 G.ovalifolia Guatteria Guatteria ovalifolia \N \N \N \N \N 3741 S.cardiophyllum Solanum Solanum cardiophyllum heartleaf nightshade \N \N \N \N 3742 P.cirrhulosa Pentaschistis Pentameris cirrhulosa \N \N \N \N \N 3743 \N genus Phaeostigma \N \N \N \N \N 3744 \N genus Keetia \N \N \N \N \N 3745 S.longiflora Shorea Shorea longiflora \N \N \N \N \N 3746 P.27 Pseuduvaria Pseuduvaria sp. Chaowasku 27 \N \N \N \N \N 3747 C.sample environmental samples Taxonomy:404809 Cucurbitaceae environmental sample \N \N \N \N \N 3748 T.griseum Typhonium Typhonium griseum \N \N \N \N \N 3749 Z.ingramii Zieria Zieria ingramii \N \N \N \N \N 3750 C.speciosus Calolisianthus Calolisianthus speciosus \N \N \N \N \N 3751 \N genus Kinugasa \N \N \N \N \N 3752 H.GRG-2008 Hemigenia Hemigenia sp. 1 GRG-2008 \N \N \N \N \N 3753 B.davidsonii Boechera Boechera davidsonii \N \N \N \N \N 3754 T.pycnanthum Thesium Thesium pycnanthum \N \N \N \N \N 3755 S.alata Sarracenia Sarracenia alata yellow trumpets \N \N \N \N 3756 U.micrantha Urginavia Urginavia micrantha \N \N \N \N \N 3757 S.stapfianus Sporobolus Sporobolus stapfianus resurrection grass \N \N \N \N 3758 C.spectabilis Crotalaria Crotalaria spectabilis showy rattlebox \N \N \N \N 3759 D.occidentalis Dichondra Dichondra occidentalis \N \N \N \N \N 3760 G.occidentalis Glyceria Glyceria occidentalis \N \N \N \N \N 3761 \N genus Thlaspi \N \N \N \N \N 3762 \N genus Cyathopus \N \N \N \N \N 3763 M.aegyptia Merremia Merremia aegyptia \N \N \N \N \N 3764 S.terebinthinaceum Silphium Silphium terebinthinaceum \N \N \N \N \N 3765 C.tetrapterum Calophyllum Calophyllum tetrapterum \N \N \N \N \N 3766 C.atrilinguis Chondroscaphe Chondroscaphe atrilinguis \N \N \N \N \N 3767 \N genus Tonduzia \N \N \N \N \N 3768 B.occidentalis Boykinia Boykinia occidentalis \N \N \N \N \N 3769 O.berlandieri Oenothera Oenothera berlandieri \N \N \N \N \N 3770 B.sessiliflora Bauera Bauera sessiliflora \N \N \N \N \N 3771 H.bogdanii Hordeum Hordeum bogdanii \N \N \N \N \N 3772 A.asterias Astrophytum Astrophytum asterias star cactus,star-peyote \N \N \N \N 3773 O.insularis Ocotea Ocotea insularis \N \N \N \N \N 3774 \N genus Spigelia \N \N \N \N \N 3775 M.cumberlandensis Minuartia Minuartia cumberlandensis Cumberland stitchwort \N \N \N \N 3776 C.argenteum Cyathostemma Cyathostemma argenteum \N \N \N \N \N 3777 O.reticulatus Osmanthus Osmanthus reticulatus \N \N \N \N \N 3778 \N genus Oncosperma \N \N \N \N \N 3779 C.amara Cardamine Cardamine amara \N \N \N \N \N 3780 V.texana Varilla Varilla texana \N \N \N \N \N 3781 R.trigyna Reinwardtia Reinwardtia trigyna \N \N \N \N \N 3782 P.squarrosa Pitcairnia Pitcairnia squarrosa \N \N \N \N \N 3783 A.macranthera Andersonia Andersonia macranthera \N \N \N \N \N 3784 S.nokoensis Symplocos Symplocos nokoensis \N \N \N \N \N 3785 P.patulum Pelargonium Pelargonium patulum \N \N \N \N \N 3786 M.brazzavillensis Microberlinia Microberlinia brazzavillensis \N \N \N \N \N 3787 B.corallina Berberidopsis Berberidopsis corallina \N \N \N \N \N 3788 A.tridactylus Amellus Amellus tridactylus \N \N \N \N \N 3789 \N genus Dobinea \N \N \N \N \N 3790 T.acrophylla Tabebuia Tabebuia acrophylla \N \N \N \N \N 3791 D.portellae Dipteracanthus Dipteracanthus portellae \N \N \N \N \N 3792 S.panurensis Strychnos Strychnos panurensis \N \N \N \N \N 3793 D.hookeri Dillenia Dillenia hookeri \N \N \N \N \N 3794 C.purpurascens Curcuma Curcuma purpurascens \N \N \N \N \N 3795 P.angustifolia Pomaderris Pomaderris angustifolia \N \N \N \N \N 3796 M.shaferi Mazaea Mazaea shaferi \N \N \N \N \N 3797 A.aspera Arctotis Arctotis aspera \N \N \N \N \N 3798 E.pubifolia Euodia Euodia pubifolia \N \N \N \N \N 3799 A.karataviense Allium Allium karataviense \N \N \N \N \N 3800 \N genus Daboecia \N \N \N \N \N 3801 S.lundiana Stevia Stevia lundiana \N \N \N \N \N 3802 \N family Platanaceae plane-tree family \N \N \N \N 3803 P.jaubertii Pulicaria Pulicaria jaubertii \N \N \N \N \N 3804 L.elegans Luzula Luzula elegans \N \N \N \N \N 3805 G.adhaerans Globba Globba adhaerans \N \N \N \N \N 3806 L.maximowiczii Lespedeza Lespedeza maximowiczii \N \N \N \N \N 3807 \N forma Aristida pansa f. contracta \N \N \N \N \N 3808 T.sipyleus Thymus Thymus sipyleus \N \N \N \N \N 3809 M.salicifolia Miconia Miconia salicifolia \N \N \N \N \N 3810 E.amoena Echeveria Echeveria amoena \N \N \N \N \N 3811 \N genus Adenium \N \N \N \N \N 3812 L.manillensis Leea Leea manillensis \N \N \N \N \N 3813 R.berteroana Rondeletia Rondeletia berteroana \N \N \N \N \N 3814 P.missionis Pamburus Pamburus missionis \N \N \N \N \N 3815 A.brandegei Astragalus Astragalus brandegei \N \N \N \N \N 3816 M.adnata Melaleuca Melaleuca adnata \N \N \N \N \N 3817 P.roezlii Penstemon Penstemon roezlii \N \N \N \N \N 3818 M.gigantifolia Magnolia Magnolia gigantifolia \N \N \N \N \N 3819 A.microcarpa Acidonia Acidonia microcarpa \N \N \N \N \N 3820 C.rufescens Cordia Cordia rufescens \N \N \N \N \N 3821 C.cairnsiana Caladenia Caladenia cairnsiana \N \N \N \N \N 3822 \N subspecies Gentiana cruciata subsp. cruciata \N \N \N \N \N 3823 P.purulensis Pilea Pilea purulensis \N \N \N \N \N 3824 G.villosa Guioa Guioa villosa \N \N \N \N \N 3825 M.seguinii Myrsine Myrsine seguinii \N \N \N \N \N 3826 B.annua Bellis Bellis annua \N \N \N \N \N 3827 E.latifolia Ehretia Ehretia latifolia \N \N \N \N \N 3828 S.hispida Shibataea Shibataea hispida \N \N \N \N \N 3829 I.wilsonii Ilex Ilex wilsonii \N \N \N \N \N 3830 A.chrysanthus Astragalus Astragalus chrysanthus \N \N \N \N \N 3831 \N genus Didierea \N \N \N \N \N 3832 E.radicans Eleocharis Eleocharis radicans \N \N \N \N \N 3833 N.darwinii Nassauvia Nassauvia darwinii \N \N \N \N \N 3834 A.sample environmental samples Taxonomy:404789 Acacia environmental sample \N \N \N \N \N 3835 M.laevigata Miconia Miconia laevigata smooth johnnyberry \N \N \N \N 3836 \N genus Digitaria \N \N \N \N \N 3837 O.coeruleum Ormocarpum Ormocarpum coeruleum \N \N \N \N \N 3838 S.pohuashanensis Sorbus Sorbus pohuashanensis \N \N \N \N \N 3839 P.karooicus Plinthus Plinthus karooicus \N \N \N \N \N 3840 R.inundatum Rhododendron Rhododendron inundatum \N \N \N \N \N 3841 H.promontorii Hildebrandtia Hildebrandtia promontorii \N \N \N \N \N 3842 P.renovans Phyllostegia Phyllostegia renovans \N \N \N \N \N 3843 S.gentryi Sobralia Sobralia gentryi \N \N \N \N \N 3844 C.nardoides Christensonella Christensonella nardoides \N \N \N \N \N 3845 \N varietas Senna splendida var. gloriosa \N \N \N \N \N 3846 A.saxatilis Anisadenia Anisadenia saxatilis \N \N \N \N \N 3847 M.heteropodum Monadenium Monadenium heteropodum \N \N \N \N \N 3848 H.longiflora Heterosmilax Heterosmilax longiflora \N \N \N \N \N 3849 D.cochinchinensis Dalbergia Dalbergia cochinchinensis Thai rosewood \N \N \N \N 3850 T.baccata Tilesia Tilesia baccata \N \N \N \N \N 3851 P.longipetala Parnassia Parnassia longipetala \N \N \N \N \N 3852 G.hintoniorum Galium Galium hintoniorum \N \N \N \N \N 3853 A.hageniae Alchemilla Alchemilla hageniae \N \N \N \N \N 3854 \N subspecies Jacobaea vulgaris subsp. dunensis \N \N \N \N \N 3855 V.nipponica Vicia Vicia nipponica \N \N \N \N \N 3856 \N genus Bulbine \N \N \N \N \N 3857 P.santosii Puya Puya santosii \N \N \N \N \N 3858 \N tribe Lycieae \N \N \N \N \N 3859 G.caelestis Gagea Gagea caelestis \N \N \N \N \N 3860 T.bracteata Tradescantia Tradescantia bracteata \N \N \N \N \N 3861 D.norvegica Draba Draba norvegica \N \N \N \N \N 3862 G.rankinii Gelsemium Gelsemium rankinii \N \N \N \N \N 3863 P.leipoldtii Pelargonium Pelargonium leipoldtii \N \N \N \N \N 3864 L.guianensis Lissocarpa Lissocarpa guianensis \N \N \N \N \N 3865 C.oreodoxa Cousinia Cousinia oreodoxa \N \N \N \N \N 3866 O.teucrii Orobanche Orobanche teucrii \N \N \N \N \N 3867 T.lerouxiae Trichogyne Trichogyne lerouxiae \N \N \N \N \N 3868 L.occidentale Lilium Lilium occidentale \N \N \N \N \N 3869 \N genus Thomsonia \N \N \N \N \N 3870 D.37 Dehaasia Dehaasia sp. Arifiani & van der Werff 37 \N \N \N \N \N 3871 A.squarrosa Aciphylla Aciphylla squarrosa \N \N \N \N \N 3872 L.1764 Labordia Labordia sp. Motley 1764 \N \N \N \N \N 3873 \N varietas Boehmeria nivea var. tenacissima \N \N \N \N \N 3875 P.calcatum Polygonum Polygonum calcatum \N \N \N \N \N 3876 \N genus Pleonotoma \N \N \N \N \N 3877 M.1138 Massonia Massonia sp. Wetschnig 1138 \N \N \N \N \N 3878 T.MP-2011 Tenicroa Tenicroa sp. 1 MP-2011 \N \N \N \N \N 3879 E.EHR-2010 Eleocharis Eleocharis aff. dunensis EHR-2010 \N \N \N \N \N 3880 C.dipsacea Carex Carex dipsacea \N \N \N \N \N 3881 A.pectinata Aureolaria Aureolaria pectinata \N \N \N \N \N 3882 S.sincorana Sophronitis Sophronitis sincorana \N \N \N \N \N 3883 A.schoenoides Abildgaardia Abildgaardia schoenoides \N \N \N \N \N 3884 \N tribe Oxydendreae \N \N \N \N \N 3885 \N genus Aizoanthemum \N \N \N \N \N 3886 P.nitida Picralima Picralima nitida \N \N \N \N \N 3887 O.sagittata Onoseris Onoseris sagittata \N \N \N \N \N 3888 \N genus Duthiastrum \N \N \N \N \N 3889 A.ornatum Astrophytum Astrophytum ornatum \N \N \N \N \N 3890 E.venezolensis Echeveria Echeveria venezolensis \N \N \N \N \N 3891 A.anserinifolius Astragalus Astragalus anserinifolius \N \N \N \N \N 3892 R.cuneata Rhipsalis Rhipsalis cuneata \N \N \N \N \N 3893 C.arborescens Carthamus Carthamus arborescens \N \N \N \N \N 3894 E.fucata Elegia Elegia fucata \N \N \N \N \N 3895 \N varietas Eriodictyon crassifolium var. nigrescens \N \N \N \N \N 3896 C.heterophylla Collinsia Collinsia heterophylla Chinese houses \N \N \N \N 3897 T.subrepens Thymelaea Thymelaea subrepens \N \N \N \N \N 3898 P.ecuadorensis Psammisia Psammisia ecuadorensis \N \N \N \N \N 3899 \N genus Inga \N \N \N \N \N 3900 F.durum/aestivum unclassified Triticeae fossil Triticum durum/aestivum \N \N \N \N \N 3901 A.aetnensis Anthemis Anthemis aetnensis \N \N \N \N \N 3902 M.squalida Malacothrix Malacothrix squalida \N \N \N \N \N 3903 S.prostrata Salicornia Salicornia prostrata \N \N \N \N \N 3904 \N genus Anthocercis \N \N \N \N \N 3905 \N varietas Leptodermis velutiniflora var. tenera \N \N \N \N \N 3906 F.colubrinae Ficus Ficus colubrinae \N \N \N \N \N 3907 \N genus Polymeria \N \N \N \N \N 3908 P.laetevirens Planchonella Planchonella laetevirens \N \N \N \N \N 3909 H.artemisioides Helichrysum Helichrysum artemisioides \N \N \N \N \N 3910 C.pinetorum Carex Carex pinetorum \N \N \N \N \N 3911 S.ernestii Symplocos Symplocos ernestii \N \N \N \N \N 3912 D.glaucescens Dirichletia Dirichletia glaucescens \N \N \N \N \N 3913 \N subspecies Cerastium beeringianum subsp. beeringianum \N \N \N \N \N 3914 D.sinensis Dipteronia Dipteronia sinensis \N \N \N \N \N 3915 O.myrticola Ornithocephalus Ornithocephalus myrticola \N \N \N \N \N 3916 T.sample environmental samples Taxonomy:404793 Torricelliaceae environmental sample \N \N \N \N \N 3917 M.SH-2010 Margaritopsis Margaritopsis sp. SH-2010 \N \N \N \N \N 3918 I.magnifica Iris Iris magnifica \N \N \N \N \N 3919 I.radiata Impatiens Impatiens radiata \N \N \N \N \N 3920 S.longiflorus Symphoricarpos Symphoricarpos longiflorus fragrant snowberry \N \N \N \N 3921 D.simplex Dendrochilum Dendrochilum simplex \N \N \N \N \N 3922 A.nymphaeifolia Albidella Albidella nymphaeifolia \N \N \N \N \N 3923 F.minkwitzae Ferula Ferula minkwitzae \N \N \N \N \N 3924 H.huttonii Harveya Harveya huttonii \N \N \N \N \N 3925 \N genus Lingelsheimia \N \N \N \N \N 3926 \N genus Brassavola \N \N \N \N \N 3927 A.formosa Aquilegia Aquilegia formosa \N \N \N \N \N 3928 C.yunnanensis Curcuma Curcuma yunnanensis \N \N \N \N \N 3929 M.radiola Millegrana Millegrana radiola \N \N \N \N \N 3930 \N varietas Anticlea elegans var. glaucus \N \N \N \N \N 3931 S.polygaloides Streptanthus Streptanthus polygaloides milkwort jewelflower \N \N \N \N 3932 R.lanceolata Rodriguezia Rodriguezia lanceolata \N \N \N \N \N 3933 T.macdougallii Tillandsia Tillandsia macdougallii \N \N \N \N \N 3934 M.meditensis Mapania Mapania meditensis \N \N \N \N \N 3935 L.perennis Lupinus Lupinus perennis \N \N \N \N \N 3936 J.ibarii Jarava Jarava ibarii \N \N \N \N \N 3937 S.pentlandianus Styrax Styrax pentlandianus \N \N \N \N \N 3938 O.9096 Otiophora Otiophora sp. Luke 9096 \N \N \N \N \N 3939 L.foeniculaceum Lomatium Lomatium foeniculaceum \N \N \N \N \N 3940 G.petaloidea Gunnera Gunnera petaloidea \N \N \N \N \N 3941 C.geyeri Carex Carex geyeri \N \N \N \N \N 3942 G.fosteri Galanthus Galanthus fosteri \N \N \N \N \N 3943 \N genus Asteridea \N \N \N \N \N 3944 N.linearis Nepeta Nepeta linearis \N \N \N \N \N 3945 G.candicans Galtonia Galtonia candicans \N \N \N \N \N 3946 A.grandiflorus Ancistrocladus Ancistrocladus grandiflorus \N \N \N \N \N 3947 \N subspecies Thinopyrum intermedium subsp. intermedium \N \N \N \N \N 3948 S.capitata Spermacoce Spermacoce capitata \N \N \N \N \N 3949 S.agnewiorum Solanum Solanum agnewiorum \N \N \N \N \N 3950 C.limnocharis Croton Croton limnocharis \N \N \N \N \N 3951 A.nanpinensis Archiatriplex Archiatriplex nanpinensis \N \N \N \N \N 3952 S.gloriana Sobralia Sobralia gloriana \N \N \N \N \N 3953 \N subspecies Androcymbium circinatum subsp. vestitum \N \N \N \N \N 3954 G.bonaespei Gladiolus Gladiolus bonaespei \N \N \N \N \N 3955 F.elasticoides Ficus Ficus elasticoides \N \N \N \N \N 3956 \N genus Christolea \N \N \N \N \N 3957 C.floribundum Centaurium Centaurium floribundum \N \N \N \N \N 3958 O.chiriquense Otoglossum Otoglossum chiriquense \N \N \N \N \N 3959 A.GS-2009 Agathosma Agathosma sp. GS-2009 \N \N \N \N \N 3960 P.echinosperma Portulaca Portulaca echinosperma \N \N \N \N \N 3961 H.laurifolia Havetia Havetia laurifolia \N \N \N \N \N 3962 P.cararense Piper Piper cararense \N \N \N \N \N 3963 Z.857 Zygophyllum Zygophyllum sp. Bellstedt 857 \N \N \N \N \N 3964 M.eurycolpa Metagentiana Metagentiana eurycolpa \N \N \N \N \N 3965 R.elegans Racinaea Racinaea elegans \N \N \N \N \N 3966 L.hastata Leptadenia Leptadenia hastata \N \N \N \N \N 3967 C.nobile Chamaemelum Chamaemelum nobile \N \N \N \N \N 3968 F.chilensis Fagonia Fagonia chilensis \N \N \N \N \N 3969 C.canadensis Cryptotaenia Cryptotaenia canadensis \N \N \N \N \N 3970 G.amethystinum Graptopetalum Graptopetalum amethystinum \N \N \N \N \N 3971 A.sibirica Argusia Argusia sibirica \N \N \N \N \N 3972 S.album Santalum Santalum album white sandalwood \N \N \N \N 3973 \N family Philydraceae \N \N \N \N \N 3974 I.TP-2009 Inga Inga sp. 54 TP-2009 \N \N \N \N \N 3975 \N genus Tragus \N \N \N \N \N 3976 V.simplicifolia Vepris Vepris simplicifolia \N \N \N \N \N 3977 V.noveboracensis Vernonia Vernonia noveboracensis \N \N \N \N \N 3978 \N varietas Mentzelia laevicaulis var. parviflora \N \N \N \N \N 3979 A.gardneri Apterokarpos Apterokarpos gardneri \N \N \N \N \N 3980 D.peltata Drosera Drosera peltata mao gao cai \N \N \N \N 3981 M.japonicum Microstegium Microstegium japonicum \N \N \N \N \N 3982 M.delavayi Metapanax Metapanax delavayi \N \N \N \N \N 3983 A.crinita Alchemilla Alchemilla crinita \N \N \N \N \N 3984 \N forma Hordeum vulgare f. agriocrithon \N \N \N \N \N 3985 A.vaseyi Adelia Adelia vaseyi \N \N \N \N \N 3986 M.anomala Margaritaria Margaritaria anomala \N \N \N \N \N 3987 C.introloba Caltha Caltha introloba \N \N \N \N \N 3988 S.subulisquama Saussurea Saussurea subulisquama \N \N \N \N \N 3989 E.longifolius Echinops Echinops longifolius \N \N \N \N \N 3990 C.angulata Cardamine Cardamine angulata \N \N \N \N \N 3991 L.coccinea Leea Leea coccinea \N \N \N \N \N 3992 G.ferruginea Gomphrena Gomphrena ferruginea \N \N \N \N \N 3993 S.aurata Schefflera Schefflera aurata \N \N \N \N \N 3994 A.procera Actinodaphne Actinodaphne procera \N \N \N \N \N 3995 K.lindsayi Korthalsella Korthalsella lindsayi \N \N \N \N \N 3996 P.rhomboidea Peperomia Peperomia rhomboidea \N \N \N \N \N 3997 B.rotunda Boesenbergia Boesenbergia rotunda Chinese-keys \N \N \N \N 3998 D.grantii Dayia Dayia grantii \N \N \N \N \N 3999 \N genus Podolasia \N \N \N \N \N 4000 F.splendidissima Fordia Fordia splendidissima \N \N \N \N \N 4001 S.turbinata Silene Silene turbinata \N \N \N \N \N 4002 P.pyrenaica Potentilla Potentilla pyrenaica \N \N \N \N \N 4003 S.bulbosum Symphytum Symphytum bulbosum \N \N \N \N \N 4004 I.javanica Ixora Ixora javanica \N \N \N \N \N 4005 C.leptocarpa Consolida Consolida leptocarpa \N \N \N \N \N 4006 B.trifarium Bulbophyllum Bulbophyllum trifarium \N \N \N \N \N 4007 E.mikanioides Eupatorium Eupatorium mikanioides semaphore thoroughwort \N \N \N \N 4008 A.latifolia Aliciella Aliciella latifolia \N \N \N \N \N 4009 V.punctulata Vellozia Vellozia punctulata \N \N \N \N \N 4010 D.shiroumana Draba Draba shiroumana \N \N \N \N \N 4011 B.floccifera Begonia Begonia floccifera \N \N \N \N \N 4012 P.suberosum Pittosporum Pittosporum suberosum \N \N \N \N \N 4013 \N genus Guamia \N \N \N \N \N 4014 P.munsoniana Prunus Prunus cerasifera x Prunus munsoniana \N \N \N \N \N 4015 T.roxburghii Typhonium Typhonium roxburghii \N \N \N \N \N 4016 M.littoralis Medicago Medicago littoralis \N \N \N \N \N 4017 S.rigens Sporobolus Sporobolus rigens \N \N \N \N \N 4018 S.facchini Saxifraga Saxifraga facchini \N \N \N \N \N 4019 C.aurantiaca Cattleya Cattleya aurantiaca \N \N \N \N \N 4020 C.buchananii Cryptolepis Cryptolepis buchananii \N \N \N \N \N 4021 L.leipoldtii Lachnaea Lachnaea leipoldtii \N \N \N \N \N 4022 \N no rank Solanoideae incertae sedis \N \N \N \N \N 4023 A.gymnanthera Allocasuarina Allocasuarina gymnanthera \N \N \N \N \N 4024 \N genus Hohenbergia \N \N \N \N \N 4025 D.richardianum Dysoxylum Dysoxylum richardianum \N \N \N \N \N 4026 M.cordata Melaleuca Melaleuca cordata \N \N \N \N \N 4027 A.chloranthum Anomospermum Anomospermum chloranthum \N \N \N \N \N 4028 D.zimbabweensis Disa Disa zimbabweensis \N \N \N \N \N 4029 C.mollissima Comocladia Comocladia mollissima \N \N \N \N \N 4030 D.glaziovii Diplusodon Diplusodon glaziovii \N \N \N \N \N 4031 \N varietas Symphyotrichum patens var. patens \N \N \N \N \N 4032 T.nacapulensis Telosiphonia Telosiphonia nacapulensis \N \N \N \N \N 4033 H.nepalensis Hedera Hedera nepalensis \N \N \N \N \N 4034 \N subspecies Crocus biflorus subsp. pseudonubigena \N \N \N \N \N 4035 J.lomana Jaltomata Jaltomata lomana \N \N \N \N \N 4036 O.corticatum Ornithogalum Ornithogalum corticatum \N \N \N \N \N 4037 H.serpylloides Hilgeria Hilgeria serpylloides \N \N \N \N \N 4038 N.filipes Neoachmandra Neoachmandra filipes \N \N \N \N \N 4039 S.galioides Sipanea Sipanea galioides \N \N \N \N \N 4040 P.tuberculatum Piper Piper tuberculatum \N \N \N \N \N 4041 \N family Erythroxylaceae coca family \N \N \N \N 4042 G.rupestris Gaultheria Gaultheria rupestris \N \N \N \N \N 4043 E.cucullata Eugenia Eugenia cucullata \N \N \N \N \N 4044 T.ambigua Trichogyne Trichogyne ambigua \N \N \N \N \N 4045 D.flavus Drymoanthus Drymoanthus flavus \N \N \N \N \N 4046 C.caulescens Clivia Clivia caulescens \N \N \N \N \N 4047 \N genus Thelesperma \N \N \N \N \N 4048 L.amoenus Lembocarpus Lembocarpus amoenus \N \N \N \N \N 4049 F.150 Fosterella Fosterella sp. FAN RM 150 \N \N \N \N \N 4050 V.albiflora Hebe Veronica albiflora \N \N \N \N \N 4051 T.cretica Trigonella Trigonella cretica \N \N \N \N \N 4052 A.brisbanensis Alocasia Alocasia brisbanensis \N \N \N \N \N 4053 S.31.302 Salicornia Salicornia cf. patula Freitag 31.302 \N \N \N \N \N 4054 D.nana Discaria Discaria nana \N \N \N \N \N 4055 M.2374 Memecylon Memecylon cf. bakerianum Stone et al. 2374 \N \N \N \N \N 4056 S.riojense Solanum Solanum riojense \N \N \N \N \N 4057 G.lactea Gagea Gagea lactea \N \N \N \N \N 4058 \N varietas Allium plurifoliatum var. plurifoliatum \N \N \N \N \N 4059 Q.kautskyi Quesnelia Quesnelia kautskyi \N \N \N \N \N 4060 M.anniana Mammillaria Mammillaria anniana \N \N \N \N \N 4061 K.evansii Kniphofia Kniphofia evansii \N \N \N \N \N 4062 D.racemosus Dinetus Dinetus racemosus \N \N \N \N \N 4063 \N varietas Chamaecrista ramosa var. lucida \N \N \N \N \N 4064 S.canadensis Sanguinaria Sanguinaria canadensis red puccoon \N \N \N \N 4065 A.corniculata Allocasuarina Allocasuarina corniculata \N \N \N \N \N 4066 L.muscoides Lagarosiphon Lagarosiphon muscoides \N \N \N \N \N 4067 O.plumbea Ophiorrhiza Ophiorrhiza plumbea \N \N \N \N \N 4068 R.gramineus Ranunculus Ranunculus gramineus \N \N \N \N \N 4069 P.6682 Pulicaria Pulicaria cf. aylmeri Thulin & Dahir 6682 \N \N \N \N \N 4070 L.elongatum Lycium Lycium elongatum \N \N \N \N \N 6110 \N genus Asarina \N \N \N \N \N 4071 R.meridionale Rhododendron Rhododendron meridionale \N \N \N \N \N 4072 \N subspecies Spiraeanthemum macgillivrayi subsp. macgillivrayi \N \N \N \N \N 4073 R.kanehirai Rhododendron Rhododendron kanehirai \N \N \N \N \N 4074 C.sarkariae Caralluma Caralluma sarkariae \N \N \N \N \N 4075 L.pittieri Lozania Lozania pittieri \N \N \N \N \N 4076 \N genus Hysterionica \N \N \N \N \N 4077 \N genus Saphesia \N \N \N \N \N 4078 P.pumila Primula Primula pumila \N \N \N \N \N 4079 \N genus Voyria \N \N \N \N \N 4080 P.bennettiana Polystachya Polystachya bennettiana \N \N \N \N \N 4081 C.corymbosus Carphephorus Carphephorus corymbosus \N \N \N \N \N 4082 A.depressa Ardisia Ardisia depressa \N \N \N \N \N 4083 D.balansae Dracophyllum Dracophyllum balansae \N \N \N \N \N 4084 V.lanceifolium Vaccinium Vaccinium lanceifolium \N \N \N \N \N 4085 T.lanceipetala Trigynaea Trigynaea lanceipetala \N \N \N \N \N 4086 B.bladhii Bothriochloa Bothriochloa bladhii \N \N \N \N \N 4087 \N family Menispermaceae moonseed family \N \N \N \N 4088 D.ciliata Dombeya Dombeya ciliata \N \N \N \N \N 4089 M.quitense Myriophyllum Myriophyllum quitense \N \N \N \N \N 4090 A.shirasawanum Acer Acer shirasawanum \N \N \N \N \N 4091 E.rupestris Euphorbia Euphorbia rupestris \N \N \N \N \N 4092 \N genus Neotinea \N \N \N \N \N 4093 \N genus Trollius \N \N \N \N \N 4094 U.arrecta Urochloa Urochloa arrecta \N \N \N \N \N 4095 S.metallica Sansevieria Sansevieria metallica \N \N \N \N \N 4096 H.macrochilus Habracanthus Habracanthus macrochilus \N \N \N \N \N 4097 S.holocarpa Staphylea Staphylea holocarpa \N \N \N \N \N 4098 C.mcvaughii Cuscuta Cuscuta mcvaughii \N \N \N \N \N 4099 A.oblonga Anisoptera Anisoptera oblonga \N \N \N \N \N 4100 \N genus Fagraea \N \N \N \N \N 4101 A.arborescens Acnistus Acnistus arborescens \N \N \N \N \N 4102 M.sonchoides Malacothrix Malacothrix sonchoides \N \N \N \N \N 4103 \N genus Teclea \N \N \N \N \N 4104 \N varietas Geocharis fusiformis var. borneensis \N \N \N \N \N 4105 H.spicata Horsfieldia Horsfieldia spicata \N \N \N \N \N 4106 C.villosum Caryocar Caryocar villosum \N \N \N \N \N 4107 O.strigosa Oxalis Oxalis strigosa \N \N \N \N \N 4108 P.nitidus Phyllobolus Phyllobolus nitidus \N \N \N \N \N 4109 A.album Arisaema Arisaema album \N \N \N \N \N 4110 C.stumpflei Cyrtidiorchis Cyrtidiorchis stumpflei \N \N \N \N \N 4111 N.sellowiana Nassella Nassella sellowiana \N \N \N \N \N 4112 M.acuminatum Mecranium Mecranium acuminatum \N \N \N \N \N 4113 M.uniflora Masdevallia Masdevallia uniflora \N \N \N \N \N 4114 S.filifolia Schoenia Schoenia filifolia \N \N \N \N \N 4115 P.mexicana Poincianella Poincianella mexicana Mexican holdback \N \N \N \N 4116 M.duwei Mammillaria Mammillaria duwei \N \N \N \N \N 4117 \N genus Chaetopoa \N \N \N \N \N 4118 Y.reverchonii Yucca Yucca reverchonii San Angelo yucca \N \N \N \N 4119 \N genus Schelhammera \N \N \N \N \N 4120 \N genus Astridia \N \N \N \N \N 4121 C.fruticosa Cordyline Cordyline fruticosa good luck plant,ti plant \N \N \N \N 4122 \N genus Archangelica \N \N \N \N \N 4123 \N genus Litosanthes \N \N \N \N \N 4124 P.brevifolia Polygala Polygala brevifolia \N \N \N \N \N 4125 T.alpinum Trichophorum Trichophorum alpinum \N \N \N \N \N 4126 E.longifolia Euphorbia Euphorbia longifolia \N \N \N \N \N 4127 L.eenii Lycium Lycium eenii \N \N \N \N \N 4128 E.fendleri Echinocereus Echinocereus fendleri \N \N \N \N \N 4129 R.carphoides Rytidosperma Rytidosperma carphoides \N \N \N \N \N 4130 V.alata Vellozia Vellozia alata \N \N \N \N \N 4131 P.villosa Potentilla Potentilla villosa \N \N \N \N \N 4132 O.neocaledonica Oryza Oryza neocaledonica \N \N \N \N \N 4133 R.gracile Rytidosperma Rytidosperma gracile \N \N \N \N \N 4134 \N genus Apocopis \N \N \N \N \N 4135 T.webbii Tolpis Tolpis webbii \N \N \N \N \N 4136 G.cometerhizon Galium Galium cometerhizon \N \N \N \N \N 4137 M.leprosa Mimosa Mimosa leprosa \N \N \N \N \N 4138 C.elongata Conicosia Conicosia elongata \N \N \N \N \N 4139 S.bulbiferum Stylidium Stylidium bulbiferum \N \N \N \N \N 4140 P.clarkei Primula Primula clarkei \N \N \N \N \N 4141 S.pyrsodes Specklinia Specklinia pyrsodes \N \N \N \N \N 4142 C.gonarei Colchicum Colchicum gonarei \N \N \N \N \N 4143 P.cyanocaulis Penstemon Penstemon cyanocaulis \N \N \N \N \N 4144 H.arbainense Heliotropium Heliotropium arbainense \N \N \N \N \N 4145 S.mirandae Sophronitis Sophronitis mirandae \N \N \N \N \N 4146 I.leucoclada Inulanthera Inulanthera leucoclada \N \N \N \N \N 4147 C.wrightii Coreopsis Coreopsis wrightii \N \N \N \N \N 4148 A.selloi Arrabidaea Arrabidaea selloi \N \N \N \N \N 4149 M.flexialabastra Muellerina Muellerina flexialabastra \N \N \N \N \N 4150 A.pachypus Austrocylindropuntia Austrocylindropuntia pachypus \N \N \N \N \N 4151 M.echo Masdevallia Masdevallia echo \N \N \N \N \N 4152 L.2-CEH Lupinus Lupinus sp. 2-CEH \N \N \N \N \N 4153 \N genus Sarcopoterium \N \N \N \N \N 4154 I.mimosoides Indigofera Indigofera mimosoides \N \N \N \N \N 4155 R.bonariensis Ranunculus Ranunculus bonariensis \N \N \N \N \N 4156 P.franchetiana Pedicularis Pedicularis franchetiana \N \N \N \N \N 4157 S.pelophila Stevia Stevia pelophila \N \N \N \N \N 4158 T.albertii Tarasa Tarasa albertii \N \N \N \N \N 4159 G.1035 Geostachys Geostachys sp. Newman 1035 \N \N \N \N \N 4160 \N varietas Bystropogon origanifolius var. canariae \N \N \N \N \N 4161 A.haltonii Aechmea Aechmea haltonii \N \N \N \N \N 4162 B.ringens Babiana Babiana ringens \N \N \N \N \N 4163 M.jungermannioides Mimulus Mimulus jungermannioides \N \N \N \N \N 4164 V.hybrida Vicia Vicia hybrida \N \N \N \N \N 4165 \N subspecies Halosarcia pergranulata subsp. pergranulata \N \N \N \N \N 4166 E.tinifolia Eugenia Eugenia tinifolia \N \N \N \N \N 4167 D.truncata Diploprora Diploprora truncata \N \N \N \N \N 4168 \N genus Helmiopsiella \N \N \N \N \N 4169 H.rosmarinifolium Haplophyllum Haplophyllum rosmarinifolium \N \N \N \N \N 4170 S.erichsonii Strychnos Strychnos erichsonii \N \N \N \N \N 4171 \N genus Gouinia \N \N \N \N \N 4172 \N genus Altensteinia \N \N \N \N \N 4173 H.grandiflora Hypochaeris Hypochaeris grandiflora \N \N \N \N \N 4174 Z.smilesianum Zingiber Zingiber smilesianum \N \N \N \N \N 4175 \N genus Zombia \N \N \N \N \N 4176 A.tenium Alyssum Alyssum tenium \N \N \N \N \N 4177 A.kolomikta Actinidia Actinidia kolomikta miyama-mata-tabi \N \N \N \N 4178 \N subspecies Solanum nigrum subsp. nigrum \N \N \N \N \N 4179 R.niphophilus Ranunculus Ranunculus niphophilus \N \N \N \N \N 4180 N.pectinata Nepenthes Nepenthes pectinata \N \N \N \N \N 4181 S.stoloniferum Solanum Solanum stoloniferum \N \N \N \N \N 4182 A.elongatum Arum Arum elongatum \N \N \N \N \N 4183 M.miersiana Myrceugenia Myrceugenia miersiana \N \N \N \N \N 4184 C.cachinalensis Centaurea Centaurea cachinalensis \N \N \N \N \N 4185 B.macrophylla Bikkia Bikkia macrophylla \N \N \N \N \N 4186 G.gentryi Gymnosporia Gymnosporia gentryi \N \N \N \N \N 4187 L.brachyotum Lepidium Lepidium brachyotum \N \N \N \N \N 4188 C.briquetianus Cuphocarpus Cuphocarpus briquetianus \N \N \N \N \N 4189 F.315 Ficus Ficus sp. Moore 315 \N \N \N \N \N 4190 R.affinis Ranunculus Ranunculus affinis \N \N \N \N \N 4191 N.triangularis Nymphoides Nymphoides triangularis \N \N \N \N \N 4192 M.bigelovii Mirabilis Mirabilis bigelovii \N \N \N \N \N 4193 T.olimbophilum Taraxacum Taraxacum olimbophilum \N \N \N \N \N 4194 C.hystrix Cousinia Cousinia hystrix \N \N \N \N \N 4195 B.repanda Boechera Boechera repanda \N \N \N \N \N 4196 P.pteropoda Pluchea Pluchea pteropoda \N \N \N \N \N 4197 P.fernandopoensis Psychotria Psychotria fernandopoensis \N \N \N \N \N 4198 \N genus Thaleropia \N \N \N \N \N 4199 \N genus Barbeya \N \N \N \N \N 4200 O.megacantha Opuntia Opuntia megacantha \N \N \N \N \N 4201 C.tomentosa Carya Carya tomentosa mockernut hickory \N \N \N \N 4202 C.coriifolius Croton Croton coriifolius \N \N \N \N \N 4203 P.ranunculacea Phacelia Phacelia ranunculacea \N \N \N \N \N 4204 O.MVSP-2007 Oxera Oxera sp. MVSP-2007 \N \N \N \N \N 4205 J.tanjorensis Jatropha Jatropha tanjorensis \N \N \N \N \N 4206 P.dolomiticum Phyllopodium Phyllopodium dolomiticum \N \N \N \N \N 4207 P.cervicatum Panicum Panicum cervicatum \N \N \N \N \N 4208 M.pinocchio Masdevallia Masdevallia pinocchio \N \N \N \N \N 4209 K.grandiflora Kalanchoe Kalanchoe grandiflora \N \N \N \N \N 4210 A.wilhelminae Alcea Alcea wilhelminae \N \N \N \N \N 4211 A.pechoensis Arctostaphylos Arctostaphylos pechoensis \N \N \N \N \N 4212 P.desiderabilis Pentacalia Pentacalia desiderabilis \N \N \N \N \N 4213 W.japonica Weigela Weigela japonica \N \N \N \N \N 4214 I.koelzii Isatis Isatis koelzii \N \N \N \N \N 4215 R.manglesii Rhodanthe Rhodanthe manglesii \N \N \N \N \N 4216 C.annuum Capsicum Capsicum annuum \N \N \N \N \N 4217 F.kralikii Fumaria Fumaria kralikii \N \N \N \N \N 4218 M.juncea Maerua Maerua juncea \N \N \N \N \N 4219 P.fimbriulatum Piper Piper fimbriulatum \N \N \N \N \N 4220 \N subspecies Arctostaphylos crustacea subsp. subcordata \N \N \N \N \N 4221 \N genus Cascaronia \N \N \N \N \N 4222 D.corchorifolius Didymocarpus Didymocarpus corchorifolius \N \N \N \N \N 4223 \N genus Scleria \N \N \N \N \N 4224 L.desertii Lepidobolus Lepidobolus desertii \N \N \N \N \N 4225 A.s.n. Actinidia Actinidia sp. Morgan s.n. \N \N \N \N \N 4226 D.buccinatoria Distictis Distictis buccinatoria \N \N \N \N \N 4227 G.reflexum Geranium Geranium reflexum \N \N \N \N \N 4228 \N varietas Mimosa gemmulata var. gemmulata \N \N \N \N \N 4229 C.noorjahaniae Ceropegia Ceropegia noorjahaniae \N \N \N \N \N 4230 I.tayemonii Impatiens Impatiens tayemonii \N \N \N \N \N 4231 \N subspecies Ophrys ciliata subsp. lusitanica \N \N \N \N \N 4232 S.coccinea Schizostylis Schizostylis coccinea \N \N \N \N \N 4233 G.notabilis Guatteria Guatteria notabilis \N \N \N \N \N 4234 D.oerstedii Dieffenbachia Dieffenbachia oerstedii \N \N \N \N \N 4235 G.alta Guatteria Guatteria alta \N \N \N \N \N 4236 D.mollis Dimorphandra Dimorphandra mollis \N \N \N \N \N 4237 C.rubrobracteata Curcuma Curcuma rubrobracteata \N \N \N \N \N 4238 P.tripterantha Pabstiella Pabstiella tripterantha \N \N \N \N \N 4239 A.splendens Allium Allium splendens \N \N \N \N \N 4240 P.magellanica Primula Primula magellanica \N \N \N \N \N 4241 P.caryotoides Ptychosperma Ptychosperma caryotoides \N \N \N \N \N 4242 S.macrostachya Swartzia Swartzia macrostachya \N \N \N \N \N 4243 A.cordifolium Anthurium Anthurium cordifolium \N \N \N \N \N 4244 A.lemanniana Anthyllis Anthyllis lemanniana \N \N \N \N \N 4245 \N genus Palicourea \N \N \N \N \N 4246 H.discolor Haemodorum Haemodorum discolor \N \N \N \N \N 4247 \N varietas Potentilla ovina var. ovina \N \N \N \N \N 4248 \N varietas Symplocos pendula var. hirtistylis \N \N \N \N \N 4249 A.alopecuroides Agathophora Agathophora alopecuroides \N \N \N \N \N 4250 L.carnosa Litrisa Litrisa carnosa \N \N \N \N \N 4251 A.anthericoides Asyneuma Asyneuma anthericoides \N \N \N \N \N 4252 G.nigra Gagea Gagea nigra \N \N \N \N \N 4253 \N subspecies Citrullus lanatus subsp. mucosospermus egusi melon \N \N \N \N 4254 S.miamiensis Sabal Sabal miamiensis Miami palmetto \N \N \N \N 4255 M.infestus Megathyrsus Megathyrsus infestus \N \N \N \N \N 4256 E.odora Eschweilera Eschweilera odora \N \N \N \N \N 4257 T.emetica Trichilia Trichilia emetica \N \N \N \N \N 4258 R.aculeatus Ruscus Ruscus aculeatus \N \N \N \N \N 4259 Z.decumbens Zyrphelis Zyrphelis decumbens \N \N \N \N \N 4260 A.barberae Aloe Aloe barberae \N \N \N \N \N 4261 E.caespitosa Elegia Elegia caespitosa \N \N \N \N \N 4262 L.tanacetifolia Lachemilla Lachemilla tanacetifolia \N \N \N \N \N 4263 P.petiginosa Psychotria Psychotria petiginosa \N \N \N \N \N 4264 A.lavranosii Aloe Aloe lavranosii \N \N \N \N \N 4265 P.dhana Peucedanum Peucedanum dhana \N \N \N \N \N 4266 P.sibirica Prunus Prunus sibirica Siberian apricot \N \N \N \N 4267 P.kozhikodianus Phyllanthus Phyllanthus kozhikodianus \N \N \N \N \N 4268 \N genus Blossfeldia \N \N \N \N \N 4269 \N varietas Eragrostis pectinacea var. pectinacea \N \N \N \N \N 4270 P.pudens Protea Protea pudens \N \N \N \N \N 4271 C.feaniana Cyrtandra Cyrtandra feaniana \N \N \N \N \N 4272 D.schlechteriana Disa Disa schlechteriana \N \N \N \N \N 4273 V.mexicana Veronica Veronica mexicana \N \N \N \N \N 4274 C.humblotiana Coffea Coffea humblotiana \N \N \N \N \N 4275 S.lemuriana Sopubia Sopubia lemuriana \N \N \N \N \N 4276 R.9039 Rytigynia Rytigynia sp. Luke 9039 \N \N \N \N \N 4277 S.chinensis Swertia Swertia chinensis \N \N \N \N \N 4278 C.hispida Camelina Camelina hispida \N \N \N \N \N 4279 M.racemosa Meconopsis Meconopsis racemosa \N \N \N \N \N 4280 R.ruthenica Rhaponticoides Rhaponticoides ruthenica \N \N \N \N \N 4281 C.liebmannii Chusquea Chusquea liebmannii \N \N \N \N \N 4282 T.scandens Trophis Trophis scandens \N \N \N \N \N 4283 N.psilolepis Notoseris Notoseris psilolepis \N \N \N \N \N 4284 F.billotii Foleyola Foleyola billotii \N \N \N \N \N 4285 \N varietas Cotyledon orbiculata var. oblonga \N \N \N \N \N 4286 T.hainanensis Terminalia Terminalia hainanensis \N \N \N \N \N 4287 P.torta Pouteria Pouteria torta \N \N \N \N \N 4288 O.fulgor Olmeca Olmeca fulgor \N \N \N \N \N 4289 G.meliusculus Gladiolus Gladiolus meliusculus \N \N \N \N \N 4290 C.cajanifolius Cajanus Cajanus cajanifolius \N \N \N \N \N 4291 L.kating Lissocarpa Lissocarpa kating \N \N \N \N \N 4292 \N no rank Oncidium Goldiana \N \N \N \N \N 4293 R.milloides Rhodohypoxis Rhodohypoxis milloides \N \N \N \N \N 4294 E.wolfei Endiandra Endiandra wolfei \N \N \N \N \N 4295 \N varietas Catopsis nutans var. nutans \N \N \N \N \N 4296 A.campylachne Austrostipa Austrostipa campylachne \N \N \N \N \N 4297 A.thuscula Artemisia Artemisia thuscula \N \N \N \N \N 4298 \N subspecies Pluchea indica subsp. yemenensis \N \N \N \N \N 4299 D.formosum Dendrobium Dendrobium formosum \N \N \N \N \N 4300 A.elata Acomastylis Acomastylis elata \N \N \N \N \N 4301 O.GC0014 Oncidium Oncidium aff. damacenoi GC0014 \N \N \N \N \N 4302 M.shikokiana Mussaenda Mussaenda shikokiana \N \N \N \N \N 4303 L.acalycina Liquidambar Liquidambar acalycina \N \N \N \N \N 4304 C.bartsiifolia Collinsia Collinsia bartsiifolia \N \N \N \N \N 4305 L.bracteolaris Lupinus Lupinus bracteolaris \N \N \N \N \N 4306 M.minor Magnolia Magnolia minor \N \N \N \N \N 4307 E.breviflora Eulychnia Eulychnia breviflora \N \N \N \N \N 4308 A.asiatica Achillea Achillea asiatica \N \N \N \N \N 4309 D.senilis Draba Draba senilis \N \N \N \N \N 4310 P.piersii Polystachya Polystachya piersii \N \N \N \N \N 4311 S.phlebadenia Senna Senna phlebadenia \N \N \N \N \N 4312 C.kakeana Clermontia Clermontia kakeana \N \N \N \N \N 4313 \N genus Chamaescilla \N \N \N \N \N 4314 F.ochrochlora Ficus Ficus ochrochlora \N \N \N \N \N 4315 P.polymorphus Phaseolus Phaseolus polymorphus \N \N \N \N \N 4316 P.halleri Primula Primula halleri \N \N \N \N \N 4317 C.recta Clematis Clematis recta \N \N \N \N \N 4318 O.astroloba Olearia Olearia astroloba \N \N \N \N \N 4319 E.affine Exacum Exacum affine \N \N \N \N \N 4320 S.acutifolia Swartzia Swartzia acutifolia \N \N \N \N \N 4321 E.weberbaueri Eragrostis Eragrostis weberbaueri \N \N \N \N \N 4322 P.fruticosa Phylica Phylica fruticosa \N \N \N \N \N 4323 A.cimicina Alloteropsis Alloteropsis cimicina \N \N \N \N \N 4324 V.latifolia Vangueria Vangueria latifolia \N \N \N \N \N 4325 H.standleyana Hintonia Hintonia standleyana \N \N \N \N \N 4326 M.longiglumis Muhlenbergia Muhlenbergia longiglumis \N \N \N \N \N 4327 C.gauchowensis Camellia Camellia gauchowensis \N \N \N \N \N 4328 P.933 Piper Piper sp. MAJ 933 \N \N \N \N \N 4329 E.atropurpureus Euonymus Euonymus atropurpureus eastern wahoo \N \N \N \N 4330 D.versicolor Dalea Dalea versicolor \N \N \N \N \N 4331 \N genus Phalacrocarpum \N \N \N \N \N 4332 S.gigantea Solidago Solidago gigantea \N \N \N \N \N 4333 M.oligodon Mutisia Mutisia oligodon \N \N \N \N \N 4334 J.capillaceus Juncus Juncus capillaceus \N \N \N \N \N 4335 G.dschungarica Gagea Gagea dschungarica \N \N \N \N \N 4336 A.burle-marxii Aechmea Aechmea burle-marxii \N \N \N \N \N 4337 \N genus Eriastrum \N \N \N \N \N 4338 S.bruggemanii Sindora Sindora bruggemanii \N \N \N \N \N 4339 L.calycina Liparia Liparia calycina \N \N \N \N \N 4340 U.fissa Urtica Urtica fissa \N \N \N \N \N 4341 T.peruvianum Telitoxicum Telitoxicum peruvianum \N \N \N \N \N 4342 \N genus Schnarfia \N \N \N \N \N 4343 I.serrata Ilex Ilex serrata Japanese winterberry,ume modoki \N \N \N \N 4344 R.musicalis Ravenea Ravenea musicalis \N \N \N \N \N 4345 A.scandens Anthocleista Anthocleista scandens \N \N \N \N \N 4346 R.macrocalyx Rochelia Rochelia macrocalyx \N \N \N \N \N 4347 R.tuan-mudae Rafflesia Rafflesia tuan-mudae \N \N \N \N \N 4348 \N subspecies Stillingia sylvatica subsp. tenuis \N \N \N \N \N 4349 O.randonioides Ochradenus Ochradenus randonioides \N \N \N \N \N 4350 R.agudoensis Rhipsalis Rhipsalis agudoensis \N \N \N \N \N 4351 S.versicolor Spartina Spartina versicolor \N \N \N \N \N 4352 A.palmeri Artemisia Artemisia palmeri \N \N \N \N \N 4353 E.pulchellus Echinocereus Echinocereus pulchellus \N \N \N \N \N 4354 C.derderiifolia Centaurea Centaurea derderiifolia \N \N \N \N \N 4355 \N genus Steganthera \N \N \N \N \N 4356 M.mollis Mimosa Mimosa mollis \N \N \N \N \N 4357 C.200509081 Cleistogenes Cleistogenes sp. Li & Zhang 200509081 \N \N \N \N \N 4358 C.odoratus Cyperus Cyperus odoratus \N \N \N \N \N 4359 \N genus Tiputinia \N \N \N \N \N 4360 D.aizoides Draba Draba aizoides \N \N \N \N \N 4361 M.elegantula Maxillaria Maxillaria elegantula \N \N \N \N \N 4362 W.tenella Wurmbea Wurmbea tenella \N \N \N \N \N 4363 H.minutiflora Hekistocarpa Hekistocarpa minutiflora \N \N \N \N \N 4364 P.racemosa Pilea Pilea racemosa \N \N \N \N \N 4366 S.pungetium Solanum Solanum pungetium \N \N \N \N \N 4367 O.macrocalymmus Oligochaetochilus Oligochaetochilus macrocalymmus \N \N \N \N \N 4368 K.arborescens Kalanchoe Kalanchoe arborescens \N \N \N \N \N 4369 M.chinensis Merrilliopanax Merrilliopanax chinensis \N \N \N \N \N 4370 B.gnidioides Budawangia Budawangia gnidioides \N \N \N \N \N 4371 \N genus Sarcolaena \N \N \N \N \N 4372 N.ampla Nymphaea Nymphaea ampla \N \N \N \N \N 4373 S.hypsipeta Saussurea Saussurea hypsipeta \N \N \N \N \N 4374 P.rottboellioides Polygonum Polygonum rottboellioides \N \N \N \N \N 4375 E.fraternus Erigeron Erigeron fraternus \N \N \N \N \N 4376 S.emerici Salicornia Salicornia emerici \N \N \N \N \N 4377 E.prominens Elegia Elegia prominens \N \N \N \N \N 4378 \N subspecies Phlox alyssifolia subsp. alyssifolia \N \N \N \N \N 4379 R.longicaulis Ranunculus Ranunculus longicaulis \N \N \N \N \N 4380 D.smillieae Dendrobium Dendrobium smillieae \N \N \N \N \N 4381 A.tenuifolia Acacia Acacia tenuifolia \N \N \N \N \N 4382 P.cheirifolium Pardoglossum Pardoglossum cheirifolium \N \N \N \N \N 4383 S.sericea Sericorema Sericorema sericea \N \N \N \N \N 4384 N.sumatrana Nepenthes Nepenthes sumatrana \N \N \N \N \N 4385 \N genus Neosprucea \N \N \N \N \N 4386 T.levynsiae Thamnochortus Thamnochortus levynsiae \N \N \N \N \N 4387 M.whiteii Mondia Mondia whiteii \N \N \N \N \N 4388 C.acicularis Carex Carex acicularis \N \N \N \N \N 4389 C.erecta Crumenaria Crumenaria erecta \N \N \N \N \N 4390 R.trilobus Ranunculus Ranunculus trilobus \N \N \N \N \N 4391 M.zeereae Mammea Mammea zeereae \N \N \N \N \N 4392 O.bowiei Oxalis Oxalis bowiei \N \N \N \N \N 4393 N.brassii Nothofagus Nothofagus brassii \N \N \N \N \N 4394 \N subspecies Nigella degenii subsp. degenii \N \N \N \N \N 4395 P.talbotii Pausinystalia Pausinystalia talbotii \N \N \N \N \N 4396 C.peruviana Castilleja Castilleja peruviana \N \N \N \N \N 4397 P.paucifolium Paspalum Paspalum paucifolium \N \N \N \N \N 4398 C.armazica Campanula Campanula armazica \N \N \N \N \N 4399 \N genus Securinega \N \N \N \N \N 4400 S.dalatensis Stereochilus Stereochilus dalatensis \N \N \N \N \N 4401 M.crassifolia Mouriri Mouriri crassifolia \N \N \N \N \N 4402 E.miyabeanus Erigeron Erigeron miyabeanus \N \N \N \N \N 4403 \N forma Diospyros malabarica f. malabarica \N \N \N \N \N 4404 S.repens Silene Silene repens \N \N \N \N \N 4405 \N genus Deuteromallotus \N \N \N \N \N 4406 P.villosula Parrya Parrya villosula \N \N \N \N \N 4407 C.athur' Citrus Citrus sp. 'memang athur' \N \N \N \N \N 4408 P.hainanense Piper Piper hainanense \N \N \N \N \N 4409 T.sachensis Tamarix Tamarix sachensis \N \N \N \N \N 4410 L.brachysiphonia Lysipomia Lysipomia brachysiphonia \N \N \N \N \N 4411 S.brasiliensis Siparuna Siparuna brasiliensis \N \N \N \N \N 4412 \N subspecies Styrax platanifolius subsp. texanus \N \N \N \N \N 4413 M.chillanense Mulinum Mulinum chillanense \N \N \N \N \N 4414 C.peltoideus Croton Croton peltoideus \N \N \N \N \N 4415 \N genus Coridothymus \N \N \N \N \N 4416 H.bullatum Hypolytrum Hypolytrum bullatum \N \N \N \N \N 4417 H.furfuraceum Haplophyllum Haplophyllum furfuraceum \N \N \N \N \N 4418 R.CEH-2010 Rhynchospora Rhynchospora cf. corymbosa CEH-2010 \N \N \N \N \N 4419 P.williamsonii Pimelea Pimelea williamsonii \N \N \N \N \N 4420 C.quindiuense Ceroxylon Ceroxylon quindiuense \N \N \N \N \N 4421 A.filipes Astragalus Astragalus filipes \N \N \N \N \N 4422 \N genus Tetraberlinia \N \N \N \N \N 4423 I.macrophylla Inga Inga macrophylla \N \N \N \N \N 4424 C.ripleyi Cymopterus Cymopterus ripleyi \N \N \N \N \N 4425 O.tenuissima Oestlundia Oestlundia tenuissima \N \N \N \N \N 4426 \N genus Humulus \N \N \N \N \N 4427 \N genus Perymeniopsis \N \N \N \N \N 4428 B.ovatifolia Begonia Begonia ovatifolia \N \N \N \N \N 4429 B.lignifera Boechera Boechera lignifera desert rockcress \N \N \N \N 4430 C.villosus Cytisus Cytisus villosus \N \N \N \N \N 4431 L.angustiflorus Lupinus Lupinus angustiflorus \N \N \N \N \N 4432 I.arguta Incarvillea Incarvillea arguta \N \N \N \N \N 4433 \N varietas Colocasia affinis var. jenningsii \N \N \N \N \N 4434 A.glaucocarpa Acacia Acacia glaucocarpa \N \N \N \N \N 4435 \N family Byblidaceae \N \N \N \N \N 4436 C.urticifolia Chirita Chirita urticifolia \N \N \N \N \N 4437 C.19 Chlorophytum Chlorophytum sp. Hoell & Nordal 19 \N \N \N \N \N 4438 \N varietas Brassica rapa var. purpuraria purple stem mustard \N \N \N \N 4439 T.lutarioriparia Triarrhena Triarrhena lutarioriparia \N \N \N \N \N 4440 L.amphibolius Lampranthus Lampranthus amphibolius \N \N \N \N \N 4441 P.floccosa Persea Persea floccosa \N \N \N \N \N 4442 F.roemeri Festuca Festuca idahoensis x Festuca roemeri \N \N \N \N \N 4443 E.archeri Echidnopsis Echidnopsis archeri \N \N \N \N \N 4444 \N varietas Proboscidea parviflora var. hohokamiana \N \N \N \N \N 4445 P.koghiense Pittosporum Pittosporum koghiense \N \N \N \N \N 4446 H.stricta Hovea Hovea stricta \N \N \N \N \N 4447 P.suffruticosus Phyllobolus Phyllobolus suffruticosus \N \N \N \N \N 4448 L.texanum Lycium Lycium texanum Texas desert-thorn \N \N \N \N 4449 F.latiloba Ferula Ferula latiloba \N \N \N \N \N 4450 H.glandulosa Huertea Huertea glandulosa \N \N \N \N \N 4451 S.umbrosa Saussurea Saussurea umbrosa \N \N \N \N \N 4452 I.intricata Ilex Ilex intricata \N \N \N \N \N 4453 C.scandens Cephalostachyum Cephalostachyum scandens \N \N \N \N \N 4454 B.alopecuroides Brunia Brunia alopecuroides \N \N \N \N \N 4455 V.aphylla Veronica Veronica aphylla \N \N \N \N \N 4456 C.monticola Cyrtandra Cyrtandra monticola \N \N \N \N \N 4556 S.erecta Salpiglossis Salpiglossis erecta \N \N \N \N \N 4457 M.uniflora Monotropa Monotropa uniflora Indian-pipe,convulsion-root,shui jing lan \N \N \N \N 4458 P.schizogynoides Parolinia Parolinia schizogynoides \N \N \N \N \N 4459 B.burbidgei Begonia Begonia burbidgei \N \N \N \N \N 4460 T.OT2816 Tetrapterys Tetrapterys sp. OT2816 \N \N \N \N \N 4461 T.hillii Tecomanthe Tecomanthe hillii \N \N \N \N \N 4462 H.acutatum Helichrysum Helichrysum acutatum \N \N \N \N \N 4463 S.perlmanii Schiedea Schiedea perlmanii \N \N \N \N \N 4464 M.cambrica Meconopsis Meconopsis cambrica Welsh-poppy \N \N \N \N 4465 A.pinoniana Alyogyne Alyogyne pinoniana sand-hibiscus \N \N \N \N 4466 A.caven Acacia Acacia caven \N \N \N \N \N 4467 A.calcarea Anabasis Anabasis calcarea \N \N \N \N \N 4468 K.s.n. Kusibabella Kusibabella sp. Szlachetko s.n. \N \N \N \N \N 4469 P.senega Polygala Polygala senega Seneca snakeroot \N \N \N \N 4470 H.nycterodendron Herrania Herrania nycterodendron \N \N \N \N \N 4471 M.praestans Maxillaria Maxillaria praestans \N \N \N \N \N 4472 S.orthacantha Sanicula Sanicula orthacantha \N \N \N \N \N 4473 V.disticha Volkiella Volkiella disticha \N \N \N \N \N 4474 P.wernerrauhii Peperomia Peperomia wernerrauhii \N \N \N \N \N 4475 I.cubense Illicium Illicium cubense \N \N \N \N \N 4476 \N genus Agathophora \N \N \N \N \N 4477 \N varietas Arisaema sikokianum var. serratum \N \N \N \N \N 4478 P.infestum Panicum Panicum infestum \N \N \N \N \N 4479 C.amazonica Cissus Cissus amazonica \N \N \N \N \N 4480 S.formosana Spiraea Spiraea formosana \N \N \N \N \N 4481 R.prinoides Rhamnus Rhamnus prinoides \N \N \N \N \N 4482 C.villosa Chaetanthera Chaetanthera villosa \N \N \N \N \N 4483 P.subtiramulosum Panicum Panicum subtiramulosum \N \N \N \N \N 4484 N.lanceolata Nestegis Nestegis lanceolata \N \N \N \N \N 4485 \N genus Escontria \N \N \N \N \N 4486 O.whitei Ocotea Ocotea whitei \N \N \N \N \N 4487 S.insularis Sinningia Sinningia insularis \N \N \N \N \N 4488 \N genus Vitekorchis \N \N \N \N \N 4489 A.paysanii Ancistrorhynchus Ancistrorhynchus paysanii \N \N \N \N \N 4490 V.yonakuniense Vincetoxicum Vincetoxicum yonakuniense \N \N \N \N \N 4491 C.bijugum Cicer Cicer bijugum \N \N \N \N \N 4492 E.KMC1998 Encyclia Encyclia sp. KMC1998 \N \N \N \N \N 4493 A.truncata Anabasis Anabasis truncata \N \N \N \N \N 4494 O.pedunculatum Orbexilum Orbexilum pedunculatum \N \N \N \N \N 4495 C.caespitosa Cousinia Cousinia caespitosa \N \N \N \N \N 4496 M.frutescens Montanoa Montanoa frutescens \N \N \N \N \N 4497 C.paniculata Clematis Clematis paniculata \N \N \N \N \N 4498 H.dickiana Hexacyrtis Hexacyrtis dickiana \N \N \N \N \N 4499 A.vitoriana Arenaria Arenaria vitoriana \N \N \N \N \N 4500 \N genus Fibraurea \N \N \N \N \N 4501 K.tomentosa Kalanchoe Kalanchoe tomentosa \N \N \N \N \N 4502 D.carlueri Dracula Dracula carlueri \N \N \N \N \N 4503 P.kialensis Primula Primula kialensis \N \N \N \N \N 4504 R.insigne Rhaponticum Rhaponticum insigne \N \N \N \N \N 4505 C.umbellifera Cordia Cordia umbellifera \N \N \N \N \N 4506 \N genus Luvunga \N \N \N \N \N 4507 G.transcaucasicus Galanthus Galanthus transcaucasicus \N \N \N \N \N 4508 \N genus Cannaeorchis \N \N \N \N \N 4509 M.alba Mwasumbia Mwasumbia alba \N \N \N \N \N 4510 S.ruscifolia Sarcococca Sarcococca ruscifolia \N \N \N \N \N 4511 \N genus Carex sedges \N \N \N \N 4512 L.tetraphyllus Lotus Lotus tetraphyllus \N \N \N \N \N 4513 \N genus Ismene \N \N \N \N \N 4514 M.littorea Momordica Momordica littorea \N \N \N \N \N 4515 O.boerlagei Osmoxylon Osmoxylon boerlagei \N \N \N \N \N 4516 D.crumenatum Dendrobium Dendrobium crumenatum \N \N \N \N \N 4517 \N genus Enterolobium \N \N \N \N \N 4518 L.heterogenea Lysimachia Lysimachia heterogenea \N \N \N \N \N 4519 F.jimiensis Ficus Ficus jimiensis \N \N \N \N \N 4520 P.purpurea Pultenaea Pultenaea purpurea \N \N \N \N \N 4521 \N genus Nymania \N \N \N \N \N 4522 \N varietas Cristaria glaucophylla var. glaucophylla \N \N \N \N \N 4523 C.lappacea Clypeola Clypeola lappacea \N \N \N \N \N 4524 O.parviflora Othonna Othonna parviflora \N \N \N \N \N 4525 I.tataricum Ixiolirion Ixiolirion tataricum \N \N \N \N \N 4526 H.peleterianum Hieracium Hieracium peleterianum \N \N \N \N \N 4527 S.steinbachii Sulcorebutia Sulcorebutia steinbachii \N \N \N \N \N 4528 C.silvosa Calathea Calathea silvosa \N \N \N \N \N 4529 A.verticillata Androstoma Androstoma verticillata \N \N \N \N \N 4530 U.graminifolia Utricularia Utricularia graminifolia \N \N \N \N \N 4531 C.hooperiana Chamaedorea Chamaedorea hooperiana \N \N \N \N \N 4532 S.fruticulosa Simsia Simsia fruticulosa \N \N \N \N \N 4533 C.longituba Chamaepentas Chamaepentas longituba \N \N \N \N \N 4534 I.pauciflora Inga Inga pauciflora \N \N \N \N \N 4535 L.ornithopodioides Lotus Lotus ornithopodioides \N \N \N \N \N 4536 C.goldieanum Combretum Combretum goldieanum \N \N \N \N \N 4537 T.chilaloense Trifolium Trifolium chilaloense \N \N \N \N \N 4538 S.blumei Schizostachyum Schizostachyum blumei \N \N \N \N \N 4539 A.jianganfeng Alpinia Alpinia jianganfeng \N \N \N \N \N 4540 \N family Surianaceae \N \N \N \N \N 4541 S.shimidzuana Sasa Sasa shimidzuana \N \N \N \N \N 4542 \N genus Batopedina \N \N \N \N \N 4543 T.filamentosa Trithuria Trithuria filamentosa \N \N \N \N \N 4544 C.doniana Carex Carex doniana \N \N \N \N \N 4545 T.rigidissima Triodia Triodia rigidissima \N \N \N \N \N 4546 P.crassipetalum Protium Protium crassipetalum \N \N \N \N \N 4547 U.streptopodium Urophyllum Urophyllum streptopodium \N \N \N \N \N 4548 S.davidii Silene Silene davidii \N \N \N \N \N 4549 J.himalaica Jurinea Jurinea himalaica \N \N \N \N \N 4550 E.piperita Eucalyptus Eucalyptus piperita \N \N \N \N \N 4551 C.fischeri Centaurea Centaurea fischeri \N \N \N \N \N 4552 S.medusa Saussurea Saussurea medusa \N \N \N \N \N 4553 R.uniflorum Rhaponticum Rhaponticum uniflorum \N \N \N \N \N 4554 F.tiliifolia Ficus Ficus tiliifolia \N \N \N \N \N 4557 P.tovarii Piptochaetium Piptochaetium tovarii \N \N \N \N \N 4558 N.schomburgkii Notopora Notopora schomburgkii \N \N \N \N \N 4559 S.argentifolia Shorea Shorea argentifolia \N \N \N \N \N 4560 C.SH-2010 Cyanotis Cyanotis sp. SH-2010 \N \N \N \N \N 4562 S.celastrifolia Sladenia Sladenia celastrifolia \N \N \N \N \N 4563 L.spathulata Lorandersonia Lorandersonia spathulata \N \N \N \N \N 4564 \N genus Apodasmia \N \N \N \N \N 4565 F.coromotensis Festuca Festuca coromotensis \N \N \N \N \N 4566 C.quamash Camassia Camassia quamash \N \N \N \N \N 4567 P.argentifolium Pittosporum Pittosporum argentifolium \N \N \N \N \N 4568 P.geraensis Pseudolaelia Pseudolaelia geraensis \N \N \N \N \N 4569 C.muirii Carpobrotus Carpobrotus muirii \N \N \N \N \N 4570 C.paludosa Commelina Commelina paludosa \N \N \N \N \N 4571 P.scabra Pultenaea Pultenaea scabra \N \N \N \N \N 4572 G.acanthifolia Grevillea Grevillea acanthifolia \N \N \N \N \N 4573 P.angustifolia Pilea Pilea angustifolia \N \N \N \N \N 4574 S.lanuginosum Sideroxylon Sideroxylon lanuginosum chittamwood,false buckthorn,gum-elastic \N \N \N \N 4575 \N subspecies Vicia venosa subsp. cuspidata \N \N \N \N \N 4576 \N genus Hemiphylacus \N \N \N \N \N 4577 E.vagans Erica Erica vagans Cornish heath \N \N \N \N 4578 C.monoica Cordia Cordia monoica \N \N \N \N \N 4579 \N genus Synthlipsis \N \N \N \N \N 4580 H.scouleri Hieracium Hieracium scouleri \N \N \N \N \N 4581 C.petiolata Curcuma Curcuma petiolata \N \N \N \N \N 4582 D.solitaria Draba Draba solitaria \N \N \N \N \N 4583 O.organensis Oenothera Oenothera organensis \N \N \N \N \N 4584 \N varietas Phacelia lutea var. lutea \N \N \N \N \N 4585 \N varietas Cicuta maculata var. angustifolia \N \N \N \N \N 4586 A.lanata Anthaenantia Anthaenantia lanata rabo de zorra \N \N \N \N 4587 D.julianii Dicella Dicella julianii \N \N \N \N \N 4588 A.spinescens Aspalathus Aspalathus spinescens \N \N \N \N \N 4589 \N subspecies Conostylis seorsiflora subsp. seorsiflora \N \N \N \N \N 4590 S.rzedowskii Schoenocaulon Schoenocaulon rzedowskii \N \N \N \N \N 4591 M.apodocarpa Mimosa Mimosa apodocarpa \N \N \N \N \N 4592 A.89-07 Amasonia Amasonia sp. Wagstaff 89-07 \N \N \N \N \N 4593 \N genus Nectandra \N \N \N \N \N 4594 C.complectens Cavendishia Cavendishia complectens \N \N \N \N \N 4595 \N genus Lyginia \N \N \N \N \N 4596 \N genus Wachendorfia \N \N \N \N \N 4597 C.adanensis Crocus Crocus adanensis \N \N \N \N \N 4598 S.poilanei Symplocos Symplocos poilanei \N \N \N \N \N 4599 P.amygdalina Pongamiopsis Pongamiopsis amygdalina \N \N \N \N \N 4600 D.peltata Drymonia Drymonia peltata \N \N \N \N \N 4601 \N genus Bilacunaria \N \N \N \N \N 4602 \N varietas Lupinus albifrons var. albifrons \N \N \N \N \N 4603 T.suffruticosa Tidestromia Tidestromia suffruticosa shrubby honeysweet \N \N \N \N 4604 D.sulphurea Diuris Diuris sulphurea tiger orchid \N \N \N \N 4605 C.lusitanica Cleonia Cleonia lusitanica \N \N \N \N \N 4606 S.AK110019 Stelis Stelis sp. AK110019 \N \N \N \N \N 4607 S.nevadensis Senecio Senecio nevadensis \N \N \N \N \N 4608 I.fulva Iris Iris brevicaulis x Iris fulva \N \N \N \N \N 4609 D.intermedius Dontostemon Dontostemon intermedius \N \N \N \N \N 4610 P.framesii Piaranthus Piaranthus framesii \N \N \N \N \N 4611 D.kinabaluensis Diplycosia Diplycosia kinabaluensis \N \N \N \N \N 4612 P.schweinfurthii Pentanisia Pentanisia schweinfurthii \N \N \N \N \N 4613 \N genus Xeroaloysia \N \N \N \N \N 4614 M.horsfieldii Miliusa Miliusa horsfieldii \N \N \N \N \N 4615 R.hirticaule Ribes Ribes hirticaule \N \N \N \N \N 4616 V.geniculata Viscainoa Viscainoa geniculata \N \N \N \N \N 4617 L.decurrens Lysimachia Lysimachia decurrens \N \N \N \N \N 4618 C.similis Clarkia Clarkia similis \N \N \N \N \N 4619 Z.schreiberanum Zygophyllum Zygophyllum schreiberanum \N \N \N \N \N 4620 G.lucida Griselinia Griselinia lucida \N \N \N \N \N 4621 P.rigida Parapiptadenia Parapiptadenia rigida \N \N \N \N \N 4622 G.515 Gasteranthus Gasteranthus sp. Amaya & Smith 515 \N \N \N \N \N 4623 B.asteroides Boltonia Boltonia asteroides \N \N \N \N \N 4624 A.kiyomiense Aconitum Aconitum kiyomiense \N \N \N \N \N 4625 L.ovalis Ludwigia Ludwigia ovalis \N \N \N \N \N 4626 \N subspecies Cordylanthus eremicus subsp. eremicus \N \N \N \N \N 4627 M.amazonica Myrcia Myrcia amazonica \N \N \N \N \N 4628 C.integerrima Colliguaja Colliguaja integerrima \N \N \N \N \N 4629 H.petitiana Habenaria Habenaria petitiana \N \N \N \N \N 4630 S.angularis Sabatia Sabatia angularis \N \N \N \N \N 4631 M.cajuputi Melaleuca Melaleuca cajuputi \N \N \N \N \N 4632 E.schlueteri Echinodorus Echinodorus schlueteri \N \N \N \N \N 4633 S.oppositifolia Stadmannia Stadmannia oppositifolia \N \N \N \N \N 4634 C.cuspidatus Chamaecostus Chamaecostus cuspidatus \N \N \N \N \N 4635 M.acerosa Monanthochloe Monanthochloe acerosa \N \N \N \N \N 4636 A.matogrossense Angelphytum Angelphytum matogrossense \N \N \N \N \N 4637 S.hakonense Sedum Sedum hakonense \N \N \N \N \N 4638 N.spathulata Nolana Nolana spathulata \N \N \N \N \N 4639 \N varietas Correa glabra var. glabra \N \N \N \N \N 4640 \N genus Tripleurospermum \N \N \N \N \N 4641 D.peduncularis Dodonaea Dodonaea peduncularis \N \N \N \N \N 4642 E.piscidermis Euphorbia Euphorbia piscidermis \N \N \N \N \N 4643 I.ludwigii Iris Iris ludwigii \N \N \N \N \N 4644 N.monanthos Nematanthus Nematanthus monanthos \N \N \N \N \N 4645 O.furusei Orostachys Orostachys furusei \N \N \N \N \N 4646 A.cultivar Anigozanthos Anigozanthos hybrid cultivar \N \N \N \N \N 4647 P.supina Poa Poa supina \N \N \N \N \N 4648 \N tribe Sisymbrieae \N \N \N \N \N 4649 C.angustifolia Carapa Carapa angustifolia \N \N \N \N \N 4650 \N varietas Mimosa lanuginosa var. lanuginosa \N \N \N \N \N 4651 C.grandiflorus Chelonanthus Chelonanthus grandiflorus \N \N \N \N \N 4652 C.hyssopifolia Centaurea Centaurea hyssopifolia \N \N \N \N \N 4653 S.paniculata Spilanthes Spilanthes paniculata \N \N \N \N \N 4654 M.acervata Maxillaria Maxillaria acervata \N \N \N \N \N 4655 \N subspecies Sterigmapetalum guianense subsp. ichunense \N \N \N \N \N 4656 \N genus Tacitus \N \N \N \N \N 4657 R.SH-2010 Ruellia Ruellia sp. SH-2010 \N \N \N \N \N 4658 C.pseudovegetus Cyperus Cyperus pseudovegetus \N \N \N \N \N 4659 S.ditrichum Solanum Solanum ditrichum \N \N \N \N \N 4660 P.polifolia Phylica Phylica polifolia \N \N \N \N \N 4661 R.oreoboloides Rytidosperma Rytidosperma oreoboloides \N \N \N \N \N 4662 \N genus Saropsis \N \N \N \N \N 4663 M.tortilis Moraea Moraea tortilis \N \N \N \N \N 4664 C.argentea Centaurea Centaurea argentea \N \N \N \N \N 4665 H.yaviensis Hoffmannseggia Hoffmannseggia yaviensis \N \N \N \N \N 4666 \N varietas Hypericum canariense var. floribundum \N \N \N \N \N 4667 \N varietas Cryptandra arbutiflora var. borealis \N \N \N \N \N 4668 A.borneensis Agrostistachys Agrostistachys borneensis \N \N \N \N \N 4669 \N genus Nestegis \N \N \N \N \N 4670 E.campestris Euploca Euploca campestris \N \N \N \N \N 4671 P.revoilii Pleuropterantha Pleuropterantha revoilii \N \N \N \N \N 4672 G.franciscii Globba Globba franciscii \N \N \N \N \N 4673 A.subpectinata Aulonemia Aulonemia subpectinata \N \N \N \N \N 4674 A.petersiana Aristolochia Aristolochia petersiana \N \N \N \N \N 4675 L.disticha Liparis Liparis disticha \N \N \N \N \N 4676 G.bullatus Gladiolus Gladiolus bullatus \N \N \N \N \N 4677 E.eremioides Erica Erica eremioides \N \N \N \N \N 4678 A.botschantzevii Autumnalia Autumnalia botschantzevii \N \N \N \N \N 4679 \N genus Aphelia \N \N \N \N \N 4680 M.badia Morinda Morinda badia \N \N \N \N \N 4681 T.africanum x Triticosecale Triticum turgidum subsp. carthlicum x Secale strictum subsp. africanum \N \N \N \N \N 4682 D.cobbianum Dendrochilum Dendrochilum cobbianum \N \N \N \N \N 4683 S.filiforme Schoenoxiphium Schoenoxiphium filiforme \N \N \N \N \N 4684 S.beguei Sideroxylon Sideroxylon beguei \N \N \N \N \N 4685 H.speciosa Hoverdenia Hoverdenia speciosa \N \N \N \N \N 4686 O.tournefortii Ononis Ononis tournefortii \N \N \N \N \N 4687 S.amurensis Saussurea Saussurea amurensis \N \N \N \N \N 4688 Z.microsiphon Zaluzianskya Zaluzianskya microsiphon \N \N \N \N \N 4689 S.interrupta Sesamoides Sesamoides interrupta \N \N \N \N \N 4690 A.davyi Acacia Acacia davyi \N \N \N \N \N 4691 C.potaninii Clematis Clematis potaninii \N \N \N \N \N 4692 A.erythropoda Alchemilla Alchemilla erythropoda \N \N \N \N \N 4693 S.tirsa Stipa Stipa tirsa \N \N \N \N \N 4694 \N varietas Sophora tonkinensis var. polyphylla \N \N \N \N \N 4695 H.rapula Heracleum Heracleum rapula \N \N \N \N \N 4696 \N genus Ebertia \N \N \N \N \N 4697 V.triligulata Vriesea Vriesea triligulata \N \N \N \N \N 4698 \N family Calycanthaceae \N \N \N \N \N 4699 P.trigonum Piper Piper trigonum \N \N \N \N \N 4700 B.caroides Bunium Bunium caroides \N \N \N \N \N 4701 P.archeri Piper Piper archeri \N \N \N \N \N 4702 A.tenuis Alchemilla Alchemilla tenuis \N \N \N \N \N 4703 R.violaceum Rytidosperma Rytidosperma violaceum \N \N \N \N \N 4704 H.CQ-2001 Hyacinthus Hyacinthus sp. CQ-2001 \N \N \N \N \N 4705 A.opulenta Artemisia Artemisia opulenta \N \N \N \N \N 4706 \N subspecies Quercus petraea subsp. iberica \N \N \N \N \N 4707 C.rossii Cynanchum Cynanchum rossii \N \N \N \N \N 4708 T.alsinoides Thymus Thymus alsinoides \N \N \N \N \N 4709 L.piperi Luzula Luzula piperi \N \N \N \N \N 4710 C.wallisii Cattleya Cattleya wallisii \N \N \N \N \N 4711 S.taurica Sideritis Sideritis taurica \N \N \N \N \N 4712 P.12783 Plocoglottis Plocoglottis aff. quadrifolia Chase 12783 \N \N \N \N \N 4713 E.peziza Erica Erica peziza \N \N \N \N \N 4714 P.macrocarpa Phoebe Phoebe macrocarpa \N \N \N \N \N 4715 L.hookeri Lysiphyllum Lysiphyllum hookeri \N \N \N \N \N 4716 G.teucriifolia Glandularia Glandularia teucriifolia \N \N \N \N \N 4717 G.neglecta Gratiola Gratiola neglecta clammy hedgehyssop \N \N \N \N 4718 \N genus Placopoda \N \N \N \N \N 4719 P.calleryana Pyrus Pyrus calleryana Bradford pear,callery pear,dou li \N \N \N \N 4720 C.pterothecoides Crepis Crepis pterothecoides \N \N \N \N \N 4721 E.flexile Empodium Empodium flexile \N \N \N \N \N 4722 M.linifolia Mutisia Mutisia linifolia \N \N \N \N \N 4723 P.alacriportana Parodia Parodia alacriportana \N \N \N \N \N 4724 V.canadensis Viola Viola canadensis \N \N \N \N \N 4725 C.agrestina Crataegus Crataegus agrestina \N \N \N \N \N 4726 \N genus Vitaliana \N \N \N \N \N 4727 H.confertiflorum Heliotropium Heliotropium confertiflorum \N \N \N \N \N 4728 P.erythrocarpa Psychotria Psychotria erythrocarpa \N \N \N \N \N 4729 M.rattanii Mimulus Mimulus rattanii \N \N \N \N \N 4730 P.mexicana Pilea Pilea mexicana \N \N \N \N \N 4731 \N genus Rajania \N \N \N \N \N 4732 S.pleurocarpa Steenisia Steenisia pleurocarpa \N \N \N \N \N 4733 F.acuminata Flindersia Flindersia acuminata \N \N \N \N \N 4734 P.sprucei Pearcea Pearcea sprucei \N \N \N \N \N 4735 H.perrieri Hyperacanthus Hyperacanthus perrieri \N \N \N \N \N 4736 W.311 Woodiellantha Woodiellantha sp. Lugas 311 \N \N \N \N \N 4737 L.purpurata Laelia Laelia purpurata \N \N \N \N \N 4738 S.arenacea Sulcorebutia Sulcorebutia arenacea \N \N \N \N \N 4739 P.luteoalbum Pseudognaphalium Pseudognaphalium luteoalbum \N \N \N \N \N 4740 V.abyssinica Vernonia Vernonia abyssinica \N \N \N \N \N 4741 T.leptostachys Tamarix Tamarix leptostachys \N \N \N \N \N 4742 C.latifolia Caladenia Caladenia latifolia \N \N \N \N \N 4743 S.bucharica Semenovia Semenovia bucharica \N \N \N \N \N 4744 P.pusillus Potamogeton Potamogeton pusillus \N \N \N \N \N 4745 D.maackianum Delphinium Delphinium maackianum \N \N \N \N \N 4746 E.SH-2010 Eupatorium Eupatorium sp. SH-2010 \N \N \N \N \N 4747 R.phengodes Rubus Rubus phengodes \N \N \N \N \N 4748 \N varietas Vicia narbonensis var. salmonea \N \N \N \N \N 4749 X.Green' x Brassolaeliocattleya x Brassolaeliocattleya 'Sung Ya Green' \N \N \N \N \N 4750 P.abrotanoides Perovskia Perovskia abrotanoides \N \N \N \N \N 4751 L.spicata Liriope Liriope spicata \N \N \N \N \N 4752 O.portmannii Oncidium Oncidium portmannii \N \N \N \N \N 4753 \N subspecies Jasminum didymum subsp. lineare \N \N \N \N \N 4754 N.humifusa Nolana Nolana humifusa \N \N \N \N \N 4755 V.cheiranthifolia Viola Viola cheiranthifolia \N \N \N \N \N 4756 C.2002_05 Crataegus Crataegus sp. 2002_05 \N \N \N \N \N 4757 M.polypyrena Mitrephora Mitrephora polypyrena \N \N \N \N \N 4758 \N varietas Rebutia wessneriana var. berilloydes \N \N \N \N \N 4759 B.consanguinea Brasiliorchis Brasiliorchis consanguinea \N \N \N \N \N 4760 R.sulfureum Rhododendron Rhododendron sulfureum \N \N \N \N \N 4761 A.silvestris Aglaia Aglaia silvestris \N \N \N \N \N 4762 A.persepolitanus Astragalus Astragalus persepolitanus \N \N \N \N \N 4763 L.punctata Landoltia Landoltia punctata \N \N \N \N \N 4764 C.cooperi Caulanthus Caulanthus cooperi \N \N \N \N \N 4765 M.albiflora Malpighia Malpighia albiflora \N \N \N \N \N 4766 S.cordata Swertia Swertia cordata \N \N \N \N \N 4767 S.microphylla Salvia Salvia microphylla baby sage \N \N \N \N 4768 G.glabra Genlisea Genlisea glabra \N \N \N \N \N 4769 J.microsperma Jaeschkea Jaeschkea microsperma \N \N \N \N \N 4770 A.rhombifolia Alnus Alnus rhombifolia \N \N \N \N \N 4771 P.varians Plectocephalus Plectocephalus varians \N \N \N \N \N 4772 P.bracteata Pimelea Pimelea bracteata \N \N \N \N \N 4773 C.coolaminica Craspedia Craspedia coolaminica \N \N \N \N \N 4774 S.nipponica Smilax Smilax nipponica \N \N \N \N \N 4775 P.plumulosa Pilea Pilea plumulosa \N \N \N \N \N 4776 A.agavoides Ariocarpus Ariocarpus agavoides \N \N \N \N \N 4777 P.aucheriana Pycnocycla Pycnocycla aucheriana \N \N \N \N \N 4778 A.princeps Alocasia Alocasia princeps \N \N \N \N \N 4779 M.10 Melodorum Melodorum cf. fruticosum Mols 10 \N \N \N \N \N 4780 \N genus Borojoa \N \N \N \N \N 4781 S.MC Stephania Stephania sp. 37 MC \N \N \N \N \N 4782 C.digitata Callirhoe Callirhoe digitata \N \N \N \N \N 4783 \N genus Gagea \N \N \N \N \N 4784 T.dschungaricus Trollius Trollius dschungaricus \N \N \N \N \N 4785 P.minor Pogonia Pogonia minor \N \N \N \N \N 4786 L.polyphyllus Lotus Lotus polyphyllus \N \N \N \N \N 4787 \N varietas Gaultheria wardii var. elongata \N \N \N \N \N 4788 V.hancockii Viola Viola hancockii \N \N \N \N \N 4789 A.uliginosum Amomum Amomum uliginosum \N \N \N \N \N 4790 L.monoplocoides Lepidium Lepidium monoplocoides \N \N \N \N \N 4791 S.monophylla Sarcotheca Sarcotheca monophylla \N \N \N \N \N 4792 M.papillosa Macrocarpaea Macrocarpaea papillosa \N \N \N \N \N 4793 \N varietas Dyschoriste linearis var. cinerascens \N \N \N \N \N 4794 C.gracilis Cristaria Cristaria gracilis \N \N \N \N \N 4795 R.complexum Rhododendron Rhododendron complexum \N \N \N \N \N 4796 \N tribe Casselieae \N \N \N \N \N 4797 S.erectum Sparganium Sparganium erectum \N \N \N \N \N 4798 P.pusilla Palaua Palaua pusilla \N \N \N \N \N 4799 A.hartwegii Aa Aa hartwegii \N \N \N \N \N 4800 \N genus Physocalymma \N \N \N \N \N 4801 \N genus Ozothamnus \N \N \N \N \N 4802 P.spathulatus Pterocephalus Pterocephalus spathulatus \N \N \N \N \N 4803 L.philcoxii Lindernia Lindernia philcoxii \N \N \N \N \N 4804 D.glyptodon Drakaea Drakaea glyptodon king-in-his-carriage \N \N \N \N 4805 \N subspecies Bauhinia glauca subsp. glauca \N \N \N \N \N 4806 H.WB884 Hydriastele Hydriastele sp. A WB884 \N \N \N \N \N 4807 M.rockii Malus Malus rockii \N \N \N \N \N 4808 \N genus Ammannia \N \N \N \N \N 4809 S.duveenii Sophronitis Sophronitis duveenii \N \N \N \N \N 4810 D.repandula Daphnandra Daphnandra repandula northern sassafras,scentless sassafras \N \N \N \N 4811 L.texana Lindheimera Lindheimera texana \N \N \N \N \N 4812 A.tonduzii Aphelandra Aphelandra tonduzii \N \N \N \N \N 4813 \N genus Mangonia \N \N \N \N \N 4814 X.cultivar x Degarmoara x Degarmoara hybrid cultivar \N \N \N \N \N 4815 E.tashiroi Eupatorium Eupatorium tashiroi \N \N \N \N \N 4816 \N subspecies Anomospermum reticulatum subsp. idroboi \N \N \N \N \N 4817 W.backhousei Wilsonia Wilsonia backhousei \N \N \N \N \N 4818 A.orientalis Amsonia Amsonia orientalis \N \N \N \N \N 4819 C.obtectus Cymbopogon Cymbopogon obtectus \N \N \N \N \N 4820 C.monspeliaca Camphorosma Camphorosma monspeliaca \N \N \N \N \N 4821 C.wrightii Calycoseris Calycoseris wrightii white tackstem \N \N \N \N 4822 \N genus Chondrodendron \N \N \N \N \N 4823 C.lucidissima Camellia Camellia lucidissima \N \N \N \N \N 4824 \N varietas Ceanothus spinosus var. palmeri \N \N \N \N \N 4825 D.trinervis Draba Draba trinervis \N \N \N \N \N 4826 D.hospes Dalea Dalea hospes \N \N \N \N \N 4827 T.longifolia Tovomita Tovomita longifolia \N \N \N \N \N 4828 C.allenii Chrysochlamys Chrysochlamys allenii \N \N \N \N \N 4829 R.punctatum Ribes Ribes punctatum \N \N \N \N \N 4830 G.tenuifolia Glossogyne Glossogyne tenuifolia \N \N \N \N \N 4831 \N genus Haumaniastrum \N \N \N \N \N 4832 S.bractescens Schefflera Schefflera bractescens \N \N \N \N \N 4833 B.cinerea Baptisia Baptisia cinerea \N \N \N \N \N 4834 \N subspecies Androsace adfinis subsp. puberula \N \N \N \N \N 4835 D.curviflora Dionysia Dionysia curviflora \N \N \N \N \N 4836 \N genus Lepidotrichilia \N \N \N \N \N 4837 \N genus Amphithalea \N \N \N \N \N 4838 V.canescens Vitex Vitex canescens \N \N \N \N \N 4839 R.saruwagedicus Ranunculus Ranunculus saruwagedicus \N \N \N \N \N 4840 \N subspecies Hesperostipa comata subsp. comata \N \N \N \N \N 4841 P.asperrima Parrya Parrya asperrima \N \N \N \N \N 4842 \N genus Temochloa \N \N \N \N \N 4843 V.coarctata Valeriana Valeriana coarctata \N \N \N \N \N 4844 V.randaiense Vaccinium Vaccinium randaiense \N \N \N \N \N 4845 A.taiwaniana Apios Apios taiwaniana \N \N \N \N \N 4846 R.spinescens Roycea Roycea spinescens \N \N \N \N \N 4847 L.ekmanii Leucocroton Leucocroton ekmanii \N \N \N \N \N 4848 C.avigera Cuphea Cuphea avigera \N \N \N \N \N 4849 O.engelmannii Oenothera Oenothera engelmannii \N \N \N \N \N 4850 J.othonnae Jacobaea Jacobaea othonnae \N \N \N \N \N 4851 D.densiflorus Dithyridanthus Dithyridanthus densiflorus \N \N \N \N \N 4852 A.ciliatum Arisaema Arisaema ciliatum \N \N \N \N \N 4853 A.macrophyllus Anerincleistus Anerincleistus macrophyllus \N \N \N \N \N 4854 I.mairei Incarvillea Incarvillea mairei \N \N \N \N \N 4855 I.SH-2010 Icacina Icacina sp. SH-2010 \N \N \N \N \N 4856 C.gracilipes Crawfurdia Crawfurdia gracilipes \N \N \N \N \N 4857 C.canescens Conradina Conradina canescens false rosemary \N \N \N \N 4858 P.tragium Pimpinella Pimpinella tragium \N \N \N \N \N 4859 C.microtiglium Croton Croton microtiglium \N \N \N \N \N 4860 B.hillebrandiana Bidens Bidens hillebrandiana \N \N \N \N \N 4861 A.tsugense Arceuthobium Arceuthobium tsugense \N \N \N \N \N 4862 \N forma Aconitum nagarum f. dielsianum \N \N \N \N \N 4863 D.cana Draba Draba cana \N \N \N \N \N 4864 C.tchihatcheffii Centaurea Centaurea tchihatcheffii \N \N \N \N \N 4865 O.pectinatum Osmoxylon Osmoxylon pectinatum \N \N \N \N \N 4866 X.scottianum Xylomelum Xylomelum scottianum \N \N \N \N \N 4867 L.grandiflorum Lamprolobium Lamprolobium grandiflorum \N \N \N \N \N 4868 P.oreophila Pterostylis Pterostylis oreophila \N \N \N \N \N 4869 K.bolanderi Kyhosia Kyhosia bolanderi \N \N \N \N \N 4870 L.macedoi Luxemburgia Luxemburgia macedoi \N \N \N \N \N 4871 T.littorale Tristemma Tristemma littorale \N \N \N \N \N 4872 R.macrocarpa Rhodomyrtus Rhodomyrtus macrocarpa \N \N \N \N \N 4873 B.macrostachya Bucida Bucida macrostachya \N \N \N \N \N 4874 G.farquhariana Gymnacranthera Gymnacranthera farquhariana \N \N \N \N \N 4875 M.tanacetifolia Machaeranthera Machaeranthera tanacetifolia \N \N \N \N \N 4876 A.japonicum Acer Acer japonicum Japanese maple,full-moon maple \N \N \N \N 4877 \N genus Tetrapollinia \N \N \N \N \N 4878 P.sanderiana Phalaenopsis Phalaenopsis sanderiana \N \N \N \N \N 4879 F.sp. Fitchia Fitchia sp. \N \N \N \N \N 4880 R.selense Rhododendron Rhododendron selense \N \N \N \N \N 4881 A.daenensis Astragalus Astragalus daenensis \N \N \N \N \N 4882 A.hosseana Agapetes Agapetes hosseana \N \N \N \N \N 4883 D.deltoides Dianthus Dianthus deltoides maiden pink \N \N \N \N 4884 N.AS-2008 Narcissus Narcissus sp. AS-2008 \N \N \N \N \N 4885 V.dissecta Viola Viola dissecta \N \N \N \N \N 4886 S.brachiatum Silphium Silphium brachiatum \N \N \N \N \N 4887 L.cuneata Lespedeza Lespedeza cuneata Chinese bush-clover,perennial lespedeza,sericea lespedeza \N \N \N \N 4888 O.sceptrum Orectanthe Orectanthe sceptrum \N \N \N \N \N 4889 C.barrattii Carex Carex barrattii \N \N \N \N \N 4890 A.schischkinii Arctopoa Arctopoa schischkinii \N \N \N \N \N 4891 C.ficifolia Corymbia Corymbia ficifolia red-flowering gum \N \N \N \N 4892 Z.violacea Zinnia Zinnia violacea garden zinnia \N \N \N \N 4893 G.boliviana Grindelia Grindelia boliviana \N \N \N \N \N 4894 D.macropetalum Delphinium Delphinium macropetalum \N \N \N \N \N 4895 N.hookeri Nemcia Nemcia hookeri \N \N \N \N \N 4896 S.pentheri Searsia Searsia pentheri \N \N \N \N \N 4897 C.brachypodum Cerastium Cerastium brachypodum \N \N \N \N \N 4898 S.s.n. Schomburgkia Schomburgkia sp. Szlachetko s.n. \N \N \N \N \N 4899 B.angusta Babingtonia Babingtonia angusta \N \N \N \N \N 4900 B.atropurpurea Balduina Balduina atropurpurea \N \N \N \N \N 4901 V.grandifolia Versteegia Versteegia grandifolia \N \N \N \N \N 4902 P.maralia Polyscias Polyscias maralia \N \N \N \N \N 4903 C.capillaris Carex Carex capillaris \N \N \N \N \N 4904 T.micrantha Trema Trema micrantha \N \N \N \N \N 4905 \N genus Rhagodia \N \N \N \N \N 4906 S.commixtum Sedum Sedum commixtum \N \N \N \N \N 4907 P.kingii Ptilagrostis Ptilagrostis kingii \N \N \N \N \N 4908 \N genus Greeniopsis \N \N \N \N \N 4909 N.triandrus Narcissus Narcissus triandrus \N \N \N \N \N 4910 C.compacta Coryphantha Coryphantha compacta \N \N \N \N \N 4911 E.cisalpina Euphrasia Euphrasia cisalpina \N \N \N \N \N 4912 C.sulcata Cyrtandra Cyrtandra sulcata \N \N \N \N \N 4913 \N genus Protorhus \N \N \N \N \N 4914 A.muricata Asterolasia Asterolasia muricata \N \N \N \N \N 4915 C.fernandezia Cuminia Cuminia fernandezia \N \N \N \N \N 4916 M.laxiflora Mussaenda Mussaenda laxiflora \N \N \N \N \N 4917 H.propinquior Habenaria Habenaria propinquior \N \N \N \N \N 4918 C.vargasii Costus Costus vargasii \N \N \N \N \N 4919 G.chrysantha Gagea Gagea chrysantha \N \N \N \N \N 4920 A.dactylifer Amorphophallus Amorphophallus dactylifer \N \N \N \N \N 4921 D.bagmatiensis Draba Draba bagmatiensis \N \N \N \N \N 4922 C.elegans Cyperus Cyperus elegans \N \N \N \N \N 4923 A.excelsus Artocarpus Artocarpus excelsus \N \N \N \N \N 4924 P.rotundifolia Pereskiopsis Pereskiopsis rotundifolia \N \N \N \N \N 4925 I.SM-2010 Illicium Illicium sp. SM-2010 \N \N \N \N \N 4926 \N family Cardiopteridaceae \N \N \N \N \N 4927 D.hollrungii Decaisnina Decaisnina hollrungii \N \N \N \N \N 4928 R.angustata Rhaphidophora Rhaphidophora angustata \N \N \N \N \N 4929 C.integrifolia Cissus Cissus integrifolia \N \N \N \N \N 4930 I.longibarbata Indigofera Indigofera longibarbata \N \N \N \N \N 4931 \N tribe Gelonieae \N \N \N \N \N 4932 A.littorea Anthocercis Anthocercis littorea \N \N \N \N \N 4933 \N genus Neotina \N \N \N \N \N 4934 E.nana Ericameria Ericameria nana dwarf goldenbush \N \N \N \N 4935 A.prolixus Arthrochilus Arthrochilus prolixus \N \N \N \N \N 4936 R.globosa Rhynchospora Rhynchospora globosa \N \N \N \N \N 4937 L.pumila Lagenophora Lagenophora pumila \N \N \N \N \N 4938 A.rakotonasolianus Amphistemon Amphistemon rakotonasolianus \N \N \N \N \N 4939 R.alutaceum Rhododendron Rhododendron alutaceum \N \N \N \N \N 4940 C.laxa Chironia Chironia laxa \N \N \N \N \N 4941 U.38 Ursinia Ursinia sp. Balele 38 \N \N \N \N \N 4942 I.ternifolius Isodon Isodon ternifolius \N \N \N \N \N 4943 P.pimpinelloides Potentilla Potentilla pimpinelloides \N \N \N \N \N 4944 \N genus Valdivia \N \N \N \N \N 4945 \N varietas Mimosa oblonga var. oblonga \N \N \N \N \N 4946 T.alpestre Trifolium Trifolium alpestre owl-head clover,purple-globe clover \N \N \N \N 4947 H.verboonenii Hoffmannseggella Hoffmannseggella verboonenii \N \N \N \N \N 4948 \N subspecies Cyrtanthus sanguineus subsp. salmonoides \N \N \N \N \N 4949 M.splendens Maxillaria Maxillaria splendens \N \N \N \N \N 4950 A.gelasina Acacia Acacia gelasina \N \N \N \N \N 4951 L.humilis Livistona Livistona humilis \N \N \N \N \N 4952 K.asiatica Koeleria Koeleria asiatica \N \N \N \N \N 4953 G.horstii Gymnocalycium Gymnocalycium horstii \N \N \N \N \N 4954 C.kirondron Carphalea Carphalea kirondron \N \N \N \N \N 4955 O.pinguiculacea Oxalis Oxalis pinguiculacea \N \N \N \N \N 4956 C.thomasiana Calyptranthes Calyptranthes thomasiana \N \N \N \N \N 4957 A.latifolia Anogeissus Anogeissus latifolia \N \N \N \N \N 4958 O.caespitosa Ourisia Ourisia caespitosa \N \N \N \N \N 4959 L.fremontii Lycium Lycium fremontii Fremont's desert-thorn \N \N \N \N 4960 C.coeruleus Calochortus Calochortus coeruleus beavertail grass \N \N \N \N 4961 T.cilicicum Thlaspi Thlaspi cilicicum \N \N \N \N \N 4962 C.williamsii Clematis Clematis williamsii \N \N \N \N \N 4963 \N subspecies Alnus alnobetula subsp. sinuata \N \N \N \N \N 4964 P.galegoides Poitea Poitea galegoides \N \N \N \N \N 4965 C.warszewicziana Callisia Callisia warszewicziana \N \N \N \N \N 4966 P.yemenensis Plocama Plocama yemenensis \N \N \N \N \N 4967 C.dimorphantha Campanula Campanula dimorphantha \N \N \N \N \N 4968 V.cordifolia Vitis Vitis cordifolia \N \N \N \N \N 4969 \N genus Alvordia \N \N \N \N \N 4970 N.meleagrina Nomocharis Nomocharis meleagrina \N \N \N \N \N 4971 A.oreoprasum Allium Allium oreoprasum \N \N \N \N \N 4972 S.1997' Sparaxis Sparaxis sp. 'Lejeune 1997' \N \N \N \N \N 4973 C.andrewsii Campanula Campanula andrewsii \N \N \N \N \N 4974 M.ligustrifolium Memecylon Memecylon ligustrifolium \N \N \N \N \N 4975 N.brevipedicellata Nymphoides Nymphoides brevipedicellata \N \N \N \N \N 4976 \N varietas Setaria viridis var. major \N \N \N \N \N 4977 C.verna Collinsia Collinsia verna \N \N \N \N \N 4978 F.lasto Festuca Festuca lasto \N \N \N \N \N 4979 \N subspecies Vicia tenuifolia subsp. dalmatica \N \N \N \N \N 4980 D.hirsuta Diosma Diosma hirsuta \N \N \N \N \N 4981 E.geniculata Eleocharis Eleocharis geniculata \N \N \N \N \N 4982 D.africana Dorstenia Dorstenia africana \N \N \N \N \N 4983 S.elegans Sameraria Sameraria elegans \N \N \N \N \N 4984 \N genus Lozanella \N \N \N \N \N 4985 A.horrida Aciphylla Aciphylla horrida \N \N \N \N \N 4986 M.calantha Maxillaria Maxillaria calantha \N \N \N \N \N 4987 B.elegans Bactris Bactris elegans \N \N \N \N \N 4988 \N genus Angraecopsis \N \N \N \N \N 4989 M.coronata Medicago Medicago coronata \N \N \N \N \N 4990 P.anceps Pelargonium Pelargonium anceps \N \N \N \N \N 4991 A.puberulum Agropyron Agropyron puberulum \N \N \N \N \N 4992 \N varietas Stipa tianschanica var. gobica \N \N \N \N \N 4993 B.baueri Banksia Banksia baueri \N \N \N \N \N 4994 \N genus Exostyles \N \N \N \N \N 4995 S.acaulis Senecio Senecio acaulis \N \N \N \N \N 4996 M.schreberi Muhlenbergia Muhlenbergia schreberi \N \N \N \N \N 4997 B.obovata Bathysa Bathysa obovata \N \N \N \N \N 4998 \N genus Unonopsis \N \N \N \N \N 4999 H.heptaneuron Hubbardia Hubbardia heptaneuron \N \N \N \N \N 5000 S.caespitosa Sagina Sagina caespitosa \N \N \N \N \N 5001 S.96-5737 Saranthe Saranthe sp. Kress 96-5737 \N \N \N \N \N 5002 \N genus Lugoa \N \N \N \N \N 5003 S.sanguineum Schizachyrium Schizachyrium sanguineum crimson bluestem \N \N \N \N 5004 \N genus Harpullia \N \N \N \N \N 5005 C.robustus Croton Croton robustus \N \N \N \N \N 5006 A.aphanoclada Acacia Acacia aphanoclada \N \N \N \N \N 5007 V.bertolonii Viola Viola bertolonii \N \N \N \N \N 5008 C.argentinus Croton Croton argentinus \N \N \N \N \N 5009 A.osmitoides Adenanthellum Adenanthellum osmitoides \N \N \N \N \N 5010 R.scaberrima Rhopalephora Rhopalephora scaberrima \N \N \N \N \N 5011 P.gracilis Posoqueria Posoqueria gracilis \N \N \N \N \N 5012 C.sp. Cenchrus Cenchrus sp. \N \N \N \N \N 5013 \N genus Reynaudia \N \N \N \N \N 5014 G.ciliata Gomesa Gomesa ciliata \N \N \N \N \N 5015 C.pityoides Callistemon Callistemon pityoides \N \N \N \N \N 5016 E.durissima Elizabetha Elizabetha durissima \N \N \N \N \N 5017 S.langmaniae Stachys Stachys langmaniae \N \N \N \N \N 5018 \N subspecies Allium senescens subsp. senescens \N \N \N \N \N 5019 R.virginica Rhexia Rhexia virginica Virginia meadow beauty,handsome Harry \N \N \N \N 5020 G.64-1 Gossypium Gossypium sp. IA 64-1 \N \N \N \N \N 5021 C.fuliginosa Carex Carex fuliginosa \N \N \N \N \N 5022 U.praelonga Utricularia Utricularia praelonga \N \N \N \N \N 5023 \N subspecies Acer pectinatum subsp. taronense \N \N \N \N \N 5024 H.retusa Hoya Hoya retusa \N \N \N \N \N 5025 H.3159 Hydrocotyle Hydrocotyle cf. callicephala Fiaschi 3159 \N \N \N \N \N 5026 W.macrostachya Werdermannia Werdermannia macrostachya \N \N \N \N \N 5027 S.longifolium Spatholirion Spatholirion longifolium \N \N \N \N \N 5028 \N genus Janotia \N \N \N \N \N 5029 \N genus Batis \N \N \N \N \N 5030 C.flexuosa Coelogyne Coelogyne flexuosa \N \N \N \N \N 5031 E.grosii Eryngium Eryngium grosii \N \N \N \N \N 5032 P.orientalis Physochlaina Physochlaina orientalis \N \N \N \N \N 5033 \N subspecies Aspalathus cephalotes subsp. cephalotes \N \N \N \N \N 5034 \N genus Ormopterum \N \N \N \N \N 5035 \N genus Adenostyles \N \N \N \N \N 5036 \N tribe Philonotieae \N \N \N \N \N 5037 A.spiniflorum Acanthocalycium Acanthocalycium spiniflorum \N \N \N \N \N 5038 P.grandifolia Pereskia Pereskia grandifolia \N \N \N \N \N 5039 C.grbavacensis Centaurea Centaurea grbavacensis \N \N \N \N \N 5040 \N genus Psiloxylon \N \N \N \N \N 5041 A.lanceolata Ardisia Ardisia lanceolata \N \N \N \N \N 5042 I.SH-2010 Iva Iva sp. SH-2010 \N \N \N \N \N 5043 E.acunae Epidendrum Epidendrum acunae \N \N \N \N \N 5044 C.tigrina Cattleya Cattleya tigrina \N \N \N \N \N 6111 \N genus Podotheca \N \N \N \N \N 5045 \N no rank environmental samples Taxonomy:1008290 \N \N \N \N \N 5046 I.conyzae Inula Inula conyzae \N \N \N \N \N 5047 P.symplocoides Pauridiantha Pauridiantha symplocoides \N \N \N \N \N 5048 L.pseudothea Lippia Lippia pseudothea \N \N \N \N \N 5049 C.orizabae Carex Carex orizabae \N \N \N \N \N 5050 T.rezaiyensis Tragopogon Tragopogon rezaiyensis \N \N \N \N \N 5051 \N genus Poikilacanthus \N \N \N \N \N 5052 E.thapsoides Elaeoselinum Elaeoselinum thapsoides \N \N \N \N \N 5053 T.armeriifolium Taraxacum Taraxacum armeriifolium \N \N \N \N \N 5054 P.urssulensis Poa Poa urssulensis \N \N \N \N \N 5055 N.syriaca Notobasis Notobasis syriaca \N \N \N \N \N 5056 C.arborea Casearia Casearia arborea \N \N \N \N \N 5057 A.racemosa Antennaria Antennaria racemosa \N \N \N \N \N 5058 D.melanocarpa Dysphania Dysphania melanocarpa \N \N \N \N \N 5059 \N subspecies Plantago triandra subsp. triandra \N \N \N \N \N 5060 D.gyrans Desmodium Desmodium gyrans \N \N \N \N \N 5061 A.parva Arachnorchis Arachnorchis parva \N \N \N \N \N 5062 \N genus Cienfuegosia \N \N \N \N \N 5063 N.cutleri Nicotiana Nicotiana cutleri \N \N \N \N \N 5064 L.oblongum Lepidium Lepidium oblongum \N \N \N \N \N 5065 D.giganteus Dianthus Dianthus giganteus \N \N \N \N \N 5066 B.zebrina Billbergia Billbergia zebrina \N \N \N \N \N 5067 E.megalatlantica Euphorbia Euphorbia megalatlantica \N \N \N \N \N 5068 \N subspecies Euphorbia alluaudii subsp. oncoclada \N \N \N \N \N 5069 C.australis Carmichaelia Carmichaelia australis \N \N \N \N \N 5070 O.iricolor Ophrys Ophrys iricolor \N \N \N \N \N 5071 H.boreale Hedysarum Hedysarum boreale \N \N \N \N \N 5072 C.abortivus Chordifex Chordifex abortivus \N \N \N \N \N 5073 N.cleopatra Neoguillauminia Neoguillauminia cleopatra \N \N \N \N \N 5074 \N genus Dodonaea \N \N \N \N \N 5075 R.succothii Rhododendron Rhododendron succothii \N \N \N \N \N 5076 E.ligulatum Eriocaulon Eriocaulon ligulatum \N \N \N \N \N 5077 \N varietas Senna acuruensis var. catingae \N \N \N \N \N 5078 B.jucunda Bletia Bletia jucunda \N \N \N \N \N 5079 I.flexicaulis Isodon Isodon flexicaulis \N \N \N \N \N 5080 G.36 Glochidion Glochidion cf. nemorale Kathriarachchi et al. 36 \N \N \N \N \N 5081 B.spinosa Bellonia Bellonia spinosa \N \N \N \N \N 5082 \N genus Symphyotrichum \N \N \N \N \N 5083 B.porrecta Bonatea Bonatea porrecta \N \N \N \N \N 5084 P.cernuum Piper Piper cernuum \N \N \N \N \N 5085 B.microphylla Byttneria Byttneria microphylla \N \N \N \N \N 5086 K.fluviatilis Kadua Kadua fluviatilis \N \N \N \N \N 5087 \N subspecies Margaretta rosea subsp. corallina \N \N \N \N \N 5088 A.veitchii Aechmea Aechmea veitchii \N \N \N \N \N 5089 C.longifolia Ceropegia Ceropegia longifolia \N \N \N \N \N 5090 P.lanata Polylepis Polylepis lanata \N \N \N \N \N 5091 \N varietas Lessingia glandulifera var. tomentosa \N \N \N \N \N 5092 C.polymorphum Cerastium Cerastium polymorphum \N \N \N \N \N 5093 E.kigeziensis Eleusine Eleusine kigeziensis \N \N \N \N \N 5094 O.glabrescens Oligostachyum Oligostachyum glabrescens \N \N \N \N \N 5095 C.cupulifer Croton Croton cupulifer \N \N \N \N \N 5096 N.tenerinervia Nymphaea Nymphaea tenerinervia \N \N \N \N \N 5097 D.imbricatus Diplusodon Diplusodon imbricatus \N \N \N \N \N 5098 \N varietas Viburnum plicatum var. tomentosum \N \N \N \N \N 5099 A.serpens Aspalathus Aspalathus serpens \N \N \N \N \N 5100 \N no rank Phyllanthaceae incertae sedis \N \N \N \N \N 5101 F.utahense Funastrum Funastrum utahense \N \N \N \N \N 5102 C.quercetorum Cirsium Cirsium quercetorum Alameda County thistle \N \N \N \N 5103 L.divulgata Luzula Luzula divulgata \N \N \N \N \N 5104 M.fruticosum Melodorum Melodorum fruticosum \N \N \N \N \N 5105 M.purpurea Mutellina Mutellina purpurea \N \N \N \N \N 5106 C.mucronulata Cistanthe Cistanthe mucronulata \N \N \N \N \N 5107 R.diemenicum Rytidosperma Rytidosperma diemenicum \N \N \N \N \N 5108 B.magellanica Boea Boea magellanica \N \N \N \N \N 5109 S.henryana Shorea Shorea henryana \N \N \N \N \N 5110 \N genus Antegibbaeum \N \N \N \N \N 5111 \N genus Cistanthe pussypaws \N \N \N \N 5112 O.lindleyana Ochagavia Ochagavia lindleyana \N \N \N \N \N 5113 N.afzelii Nephthytis Nephthytis afzelii \N \N \N \N \N 5114 C.quadrangularis Cissus Cissus quadrangularis veldt-grape,winged treebine \N \N \N \N 5115 P.mysorensis Parnassia Parnassia mysorensis \N \N \N \N \N 5116 \N genus Colymbada \N \N \N \N \N 5117 N.herzogiana Neoraimondia Neoraimondia herzogiana \N \N \N \N \N 5118 V.atrocyaneum Viburnum Viburnum atrocyaneum \N \N \N \N \N 5119 \N genus Succisa \N \N \N \N \N 5120 E.clavatus Enarthrocarpus Enarthrocarpus clavatus \N \N \N \N \N 5121 \N subspecies Crocus flavus subsp. flavus \N \N \N \N \N 5122 E.shuichengense Epimedium Epimedium shuichengense \N \N \N \N \N 5123 B.mamoninha Brasiliocroton Brasiliocroton mamoninha \N \N \N \N \N 5124 T.macrostachyum Thesium Thesium macrostachyum \N \N \N \N \N 5125 P.strictiformis Penstemon Penstemon strictiformis \N \N \N \N \N 5126 S.paoshingensis Sinocrassula Sinocrassula paoshingensis \N \N \N \N \N 5127 A.5007 Afrostyrax Afrostyrax sp. Cheek 5007 \N \N \N \N \N 5128 A.virginicum Asarum Asarum virginicum \N \N \N \N \N 5129 G.blepharophora Gentianopsis Gentianopsis blepharophora \N \N \N \N \N 5130 E.formosa Endlicheria Endlicheria formosa \N \N \N \N \N 5131 Q.kelloggii Quercus Quercus kelloggii California black oak \N \N \N \N 5132 H.funifera Hesperaloe Hesperaloe funifera \N \N \N \N \N 5133 S.maritima Strumpfia Strumpfia maritima \N \N \N \N \N 5134 \N genus Margaranthus \N \N \N \N \N 5135 \N genus Peplidium \N \N \N \N \N 5136 D.artanthifolia Diospyros Diospyros artanthifolia \N \N \N \N \N 5139 E.chrysocodon Erica Erica chrysocodon \N \N \N \N \N 5140 S.pustulatus Sonchus Sonchus pustulatus \N \N \N \N \N 5141 N.aquatica Neobeckia Neobeckia aquatica \N \N \N \N \N 5142 G.multiflorum Galium Galium multiflorum \N \N \N \N \N 5143 T.laurifolia Thunbergia Thunbergia laurifolia \N \N \N \N \N 5144 \N genus Acanthophyllum \N \N \N \N \N 5145 T.simplex Temburongia Temburongia simplex \N \N \N \N \N 5146 \N varietas Rosa lucieae var. paniculigera \N \N \N \N \N 5147 C.aitchisonii Cousinia Cousinia aitchisonii \N \N \N \N \N 5148 M.falcatum Micromelum Micromelum falcatum \N \N \N \N \N 5149 \N genus Leysera \N \N \N \N \N 5150 E.parciramulosa Euphorbia Euphorbia parciramulosa \N \N \N \N \N 5151 L.procteri Lijndenia Lijndenia procteri \N \N \N \N \N 5152 R.soongarica Reaumuria Reaumuria soongarica \N \N \N \N \N 5153 R.brasiliensis Raddia Raddia brasiliensis \N \N \N \N \N 5154 H.vespertina Hemerocallis Hemerocallis vespertina \N \N \N \N \N 5155 C.cinerarius Cymopterus Cymopterus cinerarius gray springparsley \N \N \N \N 5156 G.shikokianum Geranium Geranium shikokianum \N \N \N \N \N 5157 F.curtipes Ficus Ficus curtipes \N \N \N \N \N 5158 H.pacalaensis Haageocereus Haageocereus pacalaensis \N \N \N \N \N 5159 \N tribe Epidendreae \N \N \N \N \N 5160 S.loeselii Sisymbrium Sisymbrium loeselii \N \N \N \N \N 5161 M.(GB) Macaranga Macaranga sp. A (GB) \N \N \N \N \N 5162 P.stricta Pueraria Pueraria stricta \N \N \N \N \N 5163 H.densifrons Heisteria Heisteria densifrons \N \N \N \N \N 5164 S.dasycarpa Semenovia Semenovia dasycarpa \N \N \N \N \N 5165 \N varietas Ficus deltoidea var. angustifolia \N \N \N \N \N 5166 \N genus Stomatostemma \N \N \N \N \N 5167 A.jinshajiangense Arisaema Arisaema jinshajiangense \N \N \N \N \N 5168 \N genus Sotoa \N \N \N \N \N 5169 D.japonica Draba Draba japonica \N \N \N \N \N 5170 \N genus Aspidonepsis \N \N \N \N \N 5171 D.ellipticifolium Dactylopetalum Dactylopetalum ellipticifolium \N \N \N \N \N 5172 S.pendulinus Streblus Streblus pendulinus \N \N \N \N \N 5173 B.marginata Banksia Banksia marginata \N \N \N \N \N 5174 E.valliniana Euphorbia Euphorbia valliniana \N \N \N \N \N 5175 A.letouzeyi Adenia Adenia letouzeyi \N \N \N \N \N 5176 C.glomerata Carpha Carpha glomerata \N \N \N \N \N 5177 H.falconeri Hepatica Hepatica falconeri \N \N \N \N \N 5178 P.immaculata Pinguicula Pinguicula immaculata \N \N \N \N \N 5179 \N genus Diodella \N \N \N \N \N 5180 D.pavettifolia Duperrea Duperrea pavettifolia \N \N \N \N \N 5181 W.longifolia Westringia Westringia longifolia \N \N \N \N \N 5182 B.harlandii Balanophora Balanophora harlandii \N \N \N \N \N 5183 S.tarijensis Sulcorebutia Sulcorebutia tarijensis \N \N \N \N \N 5184 P.capensis Pentaschistis Pentameris capensis \N \N \N \N \N 5185 R.sericophyllus Ranunculus Ranunculus sericophyllus \N \N \N \N \N 5186 C.scabiosifolia Calotis Calotis scabiosifolia \N \N \N \N \N 5187 \N varietas Brassica juncea var. juncea \N \N \N \N \N 5188 G.depressa Gaultheria Gaultheria depressa \N \N \N \N \N 5189 C.maritima Charybdis Charybdis maritima \N \N \N \N \N 5190 C.lucorum Ctenolepis Ctenolepis lucorum \N \N \N \N \N 5191 I.salicina Inula Inula salicina \N \N \N \N \N 5192 \N order Escalloniales \N \N \N \N \N 5193 C.linearis Crotonopsis Crotonopsis linearis \N \N \N \N \N 5194 \N genus Leucopoa \N \N \N \N \N 5195 O.conicum Ornithogalum Ornithogalum conicum \N \N \N \N \N 5196 \N genus Thuranthos \N \N \N \N \N 5197 S.ciliata Searsia Searsia ciliata \N \N \N \N \N 5198 A.deserticola Atriplex Atriplex deserticola \N \N \N \N \N 5199 S.praecox Stachyurus Stachyurus praecox \N \N \N \N \N 5200 M.virginiana Medeola Medeola virginiana \N \N \N \N \N 5201 C.brevispina Caragana Caragana brevispina \N \N \N \N \N 5202 \N genus Haloxylon \N \N \N \N \N 5203 B.occidentalis Berlinia Berlinia occidentalis \N \N \N \N \N 5204 \N genus Cyclolepis \N \N \N \N \N 5205 E.discolor Evacidium Evacidium discolor \N \N \N \N \N 5206 S.pseudocamellia Stewartia Stewartia pseudocamellia Japanese stewartia \N \N \N \N 5207 \N subspecies Ficus americana subsp. guianensis \N \N \N \N \N 5208 L.pygmaeus Leptosiphon Leptosiphon pygmaeus \N \N \N \N \N 5209 \N subspecies Juncus balticus subsp. ater \N \N \N \N \N 5210 C.membranifolia Capparis Capparis membranifolia \N \N \N \N \N 5211 B.arenarius Bromus Bromus arenarius Australian brome,Australian cheat,sand brome \N \N \N \N 5212 I.muticum Ischaemum Ischaemum muticum \N \N \N \N \N 5213 C.051 Carex Carex cf. echinata KSRB 051 \N \N \N \N \N 5214 R.amanoi Rhododendron Rhododendron amanoi \N \N \N \N \N 5215 B.FS745 Bulbophyllum Bulbophyllum sp. FS745 \N \N \N \N \N 5216 S.chiwensis Salsola Salsola chiwensis \N \N \N \N \N 5217 L.alopecuroides Linconia Linconia alopecuroides \N \N \N \N \N 5218 D.marmorata Dossinia Dossinia marmorata \N \N \N \N \N 5219 \N genus Malleostemon \N \N \N \N \N 5220 \N varietas Lamium amplexicaule var. amplexicaule \N \N \N \N \N 5221 \N genus Isoetopsis \N \N \N \N \N 5222 C.grisebachii Centaurea Centaurea grisebachii \N \N \N \N \N 5223 H.magellanica Hamadryas Hamadryas magellanica \N \N \N \N \N 5224 M.alopecuroides Muraltia Muraltia alopecuroides \N \N \N \N \N 5225 A.yezoense Aconitum Aconitum yezoense \N \N \N \N \N 5226 \N subspecies Eriosyce subgibbosa subsp. vallenarensis \N \N \N \N \N 5227 D.elegans Dalbergia Dalbergia elegans \N \N \N \N \N 5228 \N subspecies Polygonum norvegicum subsp. norvegicum \N \N \N \N \N 5229 R.bahiensis Rayleya Rayleya bahiensis \N \N \N \N \N 5230 S.longipes Sedum Sedum longipes \N \N \N \N \N 5231 I.wightii Ipomoea Ipomoea wightii \N \N \N \N \N 5232 A.campanulata Arctotis Arctotis campanulata \N \N \N \N \N 5233 M.barkerae Moraea Moraea barkerae \N \N \N \N \N 5234 C.glomerata Centaurea Centaurea glomerata \N \N \N \N \N 5235 T.calidaria Tzeltalia Tzeltalia calidaria \N \N \N \N \N 6302 \N genus Cnesmocarpon \N \N \N \N \N 16016 \N genus Gontscharovia \N \N \N \N \N 5236 A.mitriformis Aloe Aloe mitriformis \N \N \N \N \N 5237 M.gratissima Miconia Miconia gratissima \N \N \N \N \N 5238 C.sinensis Camellia Camellia sinensis black tea \N \N \N \N 5239 E.2182 Eremitis Eremitis sp. Soderstrom 2182 \N \N \N \N \N 5240 C.fenestratum Coscinium Coscinium fenestratum false calumba \N \N \N \N 5241 C.selloana Cortaderia Cortaderia selloana \N \N \N \N \N 5242 \N varietas Neolitsea ovatifolia var. puberula \N \N \N \N \N 5243 \N genus Bastardia \N \N \N \N \N 5244 P.racemosa Pyrrocoma Pyrrocoma racemosa \N \N \N \N \N 5245 A.hallii Asclepias Asclepias hallii \N \N \N \N \N 5246 G.oxylepis Grindelia Grindelia oxylepis \N \N \N \N \N 5247 I.tomentosa Inga Inga tomentosa \N \N \N \N \N 5248 D.batocana Diospyros Diospyros batocana \N \N \N \N \N 5249 L.lancifolia Litsea Litsea lancifolia \N \N \N \N \N 5250 L.ruderale Lepidium Lepidium ruderale \N \N \N \N \N 5251 C.CSB-2008a Crinum Crinum sp. CSB-2008a \N \N \N \N \N 5252 P.caucasicum Peucedanum Peucedanum caucasicum \N \N \N \N \N 5253 S.pubifolia Saussurea Saussurea pubifolia \N \N \N \N \N 5254 P.inscriptiosinensis Phalaenopsis Phalaenopsis inscriptiosinensis \N \N \N \N \N 5255 N.kaessneri Nectaropetalum Nectaropetalum kaessneri \N \N \N \N \N 5256 A.tenuis Aliciella Aliciella tenuis \N \N \N \N \N 5257 P.leptophyllum Phymaspermum Phymaspermum leptophyllum \N \N \N \N \N 5258 \N genus Vanroyenella \N \N \N \N \N 5259 S.tetrandra Salsola Salsola tetrandra \N \N \N \N \N 5260 C.hunua Crassula Crassula hunua \N \N \N \N \N 5261 H.purpurea Herrania Herrania purpurea \N \N \N \N \N 5262 N.globosa Nectandra Nectandra globosa \N \N \N \N \N 5263 B.pentamera Bellucia Bellucia pentamera \N \N \N \N \N 5264 C.baezanus Centropogon Centropogon baezanus \N \N \N \N \N 5265 C.suaedifolia Clappia Clappia suaedifolia \N \N \N \N \N 5266 P.stachyoides Phyllostegia Phyllostegia stachyoides \N \N \N \N \N 5267 A.reversa Alocasia Alocasia reversa \N \N \N \N \N 5268 M.harlingii Macrocarpaea Macrocarpaea harlingii \N \N \N \N \N 5269 M.mayfieldii Melampodium Melampodium mayfieldii \N \N \N \N \N 5270 S.aizoides Saxifraga Saxifraga aizoides yellow mountain saxifrage \N \N \N \N 5271 L.bipinnatifidum Lepidium Lepidium bipinnatifidum \N \N \N \N \N 5272 \N varietas Ceanothus integerrimus var. macrothyrsus \N \N \N \N \N 5273 J.hondurensis Javorkaea Javorkaea hondurensis \N \N \N \N \N 5274 \N genus Todaroa \N \N \N \N \N 5275 B.grandiflorum Blepharodon Blepharodon grandiflorum \N \N \N \N \N 5276 L.boryi Leontodon Leontodon boryi \N \N \N \N \N 5277 M.cerviana Mollugo Mollugo cerviana slender carpetweed \N \N \N \N 5278 P.foliosissimum Polemonium Polemonium foliosissimum \N \N \N \N \N 5279 S.griffithii Santiria Santiria griffithii \N \N \N \N \N 5280 G.sclerophylla Gaultheria Gaultheria sclerophylla \N \N \N \N \N 5281 Q.hemisphaerica Quercus Quercus hemisphaerica \N \N \N \N \N 5282 A.paniculata Andrographis Andrographis paniculata \N \N \N \N \N 5283 T.platypteris Thamnochortus Thamnochortus platypteris \N \N \N \N \N 5284 D.siliquosa Draba Draba siliquosa \N \N \N \N \N 5285 S.colombianum Solanum Solanum colombianum \N \N \N \N \N 5286 R.alismifolius Ranunculus Ranunculus alismifolius \N \N \N \N \N 5287 D.ellipsophyllum Dendrobium Dendrobium ellipsophyllum \N \N \N \N \N 5288 \N subtribe Verschaffeltiinae \N \N \N \N \N 5289 R.glabra Raoulia Raoulia glabra \N \N \N \N \N 5290 \N genus Glaucium \N \N \N \N \N 5291 H.compactum Helichrysum Helichrysum compactum \N \N \N \N \N 5292 N.chilensis Nassella Nassella chilensis \N \N \N \N \N 5293 D.hamiltonii Drosera Drosera hamiltonii \N \N \N \N \N 5294 C.spatulatus Calochortus Calochortus spatulatus \N \N \N \N \N 5295 A.pyrethrum Anacyclus Anacyclus pyrethrum Spanish pellitory \N \N \N \N 5296 \N genus Mechowia \N \N \N \N \N 5297 D.thibeticum Delphinium Delphinium thibeticum \N \N \N \N \N 5298 C.ligustrinum Citharexylum Citharexylum ligustrinum \N \N \N \N \N 5299 P.microphylla Pentaschistis Pentameris microphylla \N \N \N \N \N 5300 D.maculata Duvalia Duvalia maculata \N \N \N \N \N 5301 H.candicans Heracleum Heracleum candicans \N \N \N \N \N 5302 C.cordillerana Carex Carex cordillerana \N \N \N \N \N 5303 \N genus Bashania \N \N \N \N \N 5304 O.oakesiana Oenothera Oenothera oakesiana \N \N \N \N \N 5305 P.keysseri Poa Poa keysseri \N \N \N \N \N 5306 C.12709 Cyrtandra Cyrtandra sp. Wiriadinata 12709 \N \N \N \N \N 5307 \N varietas Chorizanthe pungens var. hartwegiana \N \N \N \N \N 5308 \N subspecies Calamagrostis stricta subsp. inexpansa \N \N \N \N \N 5309 B.pleniradiata Baileya Baileya pleniradiata \N \N \N \N \N 5310 C.quadrifidus Carpobrotus Carpobrotus quadrifidus \N \N \N \N \N 5311 \N varietas Olearia stellulata var. lirata \N \N \N \N \N 5312 T.TL260-1 unclassified Taraxacum Taraxacum (sect. Naevosa) sp. TL260-1 \N \N \N \N \N 5313 S.bipontini Sonchus Sonchus bipontini \N \N \N \N \N 5314 U.laciniata Ulmus Ulmus laciniata Manchurian elm \N \N \N \N 5315 D.reinwardtiana Dendromyza Dendromyza reinwardtiana \N \N \N \N \N 5316 M.gracile Mostacillastrum Mostacillastrum gracile \N \N \N \N \N 5317 M.speciosa Meconopsis Meconopsis speciosa \N \N \N \N \N 5318 C.abyssinica Caylusea Caylusea abyssinica \N \N \N \N \N 5319 Z.armatum Zanthoxylum Zanthoxylum armatum winged prickly-ash \N \N \N \N 5320 E.caroliniana Euthamia Euthamia caroliniana \N \N \N \N \N 5321 \N genus Photinia chokeberry \N \N \N \N 5322 V.luzonicum Viburnum Viburnum luzonicum \N \N \N \N \N 5323 H.adriaticum Himantoglossum Himantoglossum adriaticum \N \N \N \N \N 5324 A.elegans Anarthrophyllum Anarthrophyllum elegans \N \N \N \N \N 5325 H.dubium Hypericum Hypericum dubium \N \N \N \N \N 5326 \N genus Neomarica \N \N \N \N \N 5327 S.sylvatica Spiranthes Spiranthes sylvatica \N \N \N \N \N 5328 B.manarae Bulbophyllum Bulbophyllum manarae \N \N \N \N \N 5329 B.FS602 Bulbophyllum Bulbophyllum sp. FS602 \N \N \N \N \N 5330 R.amplexicaulis Roella Roella amplexicaulis \N \N \N \N \N 5331 E.wislizenii Erigeron Erigeron wislizenii \N \N \N \N \N 5332 H.scandens Hydrangea Hydrangea scandens \N \N \N \N \N 5333 \N no rank Persea americana 'costaricensis' \N \N \N \N \N 5334 \N genus Pogoniopsis \N \N \N \N \N 5335 \N genus Cedronella \N \N \N \N \N 5336 R.cicanoba Reinwardtia Reinwardtia cicanoba \N \N \N \N \N 5337 S.tetrapterum Syzygium Syzygium tetrapterum \N \N \N \N \N 5338 P.fortunei Pleioblastus Pleioblastus fortunei \N \N \N \N \N 5339 D.kienastii Domingoa Domingoa kienastii \N \N \N \N \N 5340 D.retroversum Diplosoma Diplosoma retroversum \N \N \N \N \N 5341 A.podolepidium Anemocarpa Anemocarpa podolepidium \N \N \N \N \N 5342 C.07nia999 Cucumis Cucumis sp. 07nia999 \N \N \N \N \N 5343 L.lindleyanus Lupinus Lupinus lindleyanus \N \N \N \N \N 5344 T.parviflora Thottea Thottea parviflora \N \N \N \N \N 5345 C.brassii Chionanthus Chionanthus brassii \N \N \N \N \N 5346 L.alaica Littledalea Littledalea alaica \N \N \N \N \N 5347 D.byronensis Diuris Diuris byronensis \N \N \N \N \N 5348 L.ledermannii Ledermanniella Ledermanniella ledermannii \N \N \N \N \N 5349 C.bicolor Cordia Cordia bicolor \N \N \N \N \N 5350 A.aureum Aeonium Aeonium aureum \N \N \N \N \N 5351 \N genus Pseudocarum \N \N \N \N \N 5352 V.niphobia Valeriana Valeriana niphobia \N \N \N \N \N 5353 T.paynterae Tetratheca Tetratheca paynterae \N \N \N \N \N 5354 S.nigricans Strychnos Strychnos nigricans \N \N \N \N \N 5355 P.xerophila Paratriaina Paratriaina xerophila \N \N \N \N \N 5356 N.odorus Narcissus Narcissus x odorus \N \N \N \N \N 5357 M.radula Mimosa Mimosa radula \N \N \N \N \N 5358 P.zanthoxyloides Polyscias Polyscias zanthoxyloides \N \N \N \N \N 5359 \N genus Mediasia \N \N \N \N \N 5360 \N genus Billardiera \N \N \N \N \N 5361 P.megalanthum Pediomelum Pediomelum megalanthum \N \N \N \N \N 5362 \N genus Tragiella \N \N \N \N \N 5363 \N genus Ancylostemon \N \N \N \N \N 5364 \N subspecies Luzula multiflora subsp. hibernica \N \N \N \N \N 5365 \N forma Ficus tannoensis f. rhombifolia \N \N \N \N \N 5366 S.jitinae Schismatoglottis Schismatoglottis jitinae \N \N \N \N \N 5367 W.biglandulosa Wurmbea Wurmbea biglandulosa \N \N \N \N \N 5368 \N genus Plectrachne \N \N \N \N \N 5369 B.anthelmintica Baccharoides Baccharoides anthelmintica kinka-oil \N \N \N \N 5370 C.2461 Cischweinfia Cischweinfia sp. Whitten 2461 \N \N \N \N \N 5371 A.filipes Antirrhinum Antirrhinum filipes \N \N \N \N \N 5372 O.striata Ononis Ononis striata \N \N \N \N \N 5373 P.cordistipula Peixotoa Peixotoa cordistipula \N \N \N \N \N 5374 P.gymnostachyum Piper Piper gymnostachyum \N \N \N \N \N 5375 U.rosea Urceola Urceola rosea \N \N \N \N \N 5376 B.punicea Blandfordia Blandfordia punicea \N \N \N \N \N 5377 \N subspecies Pseudoroegneria tauri subsp. tauri \N \N \N \N \N 5378 \N varietas Brassica oleracea var. gemmifera Brussels sprouts \N \N \N \N 5379 P.peltata Pinellia Pinellia peltata \N \N \N \N \N 5380 P.stricta Pogonolepis Pogonolepis stricta \N \N \N \N \N 5381 \N genus Moritzia \N \N \N \N \N 5382 A.alexeianum Allium Allium alexeianum \N \N \N \N \N 5383 T.aegyptiacum Tordylium Tordylium aegyptiacum \N \N \N \N \N 5384 \N genus Dendroarabis \N \N \N \N \N 5385 B.franksiae Brachystelma Brachystelma franksiae \N \N \N \N \N 5386 \N genus Physaria bladderpods \N \N \N \N 5387 M.garipensis Moraea Moraea garipensis \N \N \N \N \N 5388 \N genus Nothaphoebe \N \N \N \N \N 5389 C.laureltyanus Croton Croton laureltyanus \N \N \N \N \N 5390 \N subspecies Pelargonium auritum subsp. auritum \N \N \N \N \N 5391 C.domestica Cormus Cormus domestica \N \N \N \N \N 5392 M.205 Micromeria Micromeria cf. madagascariensis Morawetz 205 \N \N \N \N \N 5393 C.cymbacantha Calotis Calotis cymbacantha \N \N \N \N \N 5394 S.cocoides Syagrus Syagrus cocoides \N \N \N \N \N 5395 P.radicatum Papaver Papaver radicatum \N \N \N \N \N 5396 C.fremontii Calycadenia Calycadenia fremontii Fremont's calycadenia,Klamath calycadenia \N \N \N \N 5397 V.canescens Verbena Verbena canescens gray vervain \N \N \N \N 5398 E.Espluis1 Elleanthus Elleanthus sp. Espluis1 \N \N \N \N \N 5399 S.preussii Spondianthus Spondianthus preussii \N \N \N \N \N 5400 H.drymarioides Hesperolinon Hesperolinon drymarioides \N \N \N \N \N 5401 P.sprucei Passiflora Passiflora sprucei \N \N \N \N \N 5402 B.australiana Balanops Balanops australiana pimplebark \N \N \N \N 5403 C.neglecta Cliffortia Cliffortia neglecta \N \N \N \N \N 5404 \N genus Idiospermum \N \N \N \N \N 5405 \N subspecies Rhipsalis floccosa subsp. hohenauensis \N \N \N \N \N 5406 B.koenigii Bergera Bergera koenigii \N \N \N \N \N 5407 F.texensis Fraxinus Fraxinus texensis \N \N \N \N \N 5408 \N subspecies Hystrix duthiei subsp. longearistata \N \N \N \N \N 5409 P.contermina Packera Packera contermina \N \N \N \N \N 5410 \N genus Gardenia \N \N \N \N \N 5411 \N tribe Descurainieae \N \N \N \N \N 5412 \N genus Vernonia \N \N \N \N \N 5413 Z.riedelianum Zanthoxylum Zanthoxylum riedelianum \N \N \N \N \N 5414 M.maritima Malcolmia Malcolmia maritima \N \N \N \N \N 5415 P.peduncularis Polygala Polygala peduncularis \N \N \N \N \N 5416 A.alpestris Anthemis Anthemis alpestris \N \N \N \N \N 5417 \N subtribe Oncospermatinae \N \N \N \N \N 5418 \N genus Ehrendorferia \N \N \N \N \N 5419 A.YD-2008 Amorphophallus Amorphophallus sp. YD-2008 \N \N \N \N \N 5420 M.biflora Milla Milla biflora \N \N \N \N \N 5421 S.paniculata Spananthe Spananthe paniculata \N \N \N \N \N 5422 D.physocarpa Dodonaea Dodonaea physocarpa \N \N \N \N \N 5423 S.baicalensis Stachys Stachys baicalensis \N \N \N \N \N 5424 A.caudatum Acer Acer caudatum \N \N \N \N \N 5425 P.correllii Physostegia Physostegia correllii \N \N \N \N \N 5426 M.bifida Moraea Moraea bifida \N \N \N \N \N 5427 C.sandwicensis Cyrtandra Cyrtandra sandwicensis \N \N \N \N \N 5428 S.scilloides Scilla Scilla scilloides Chinese squill,Japanese jacinth \N \N \N \N 5429 C.speciosa Coelogyne Coelogyne speciosa \N \N \N \N \N 5430 \N varietas Croton lanatus var. tatacuensis \N \N \N \N \N 5431 I.nipponica Ilex Ilex nipponica \N \N \N \N \N 5432 \N family Centrolepidaceae \N \N \N \N \N 5433 I.cassioides Indigofera Indigofera cassioides \N \N \N \N \N 5434 P.guamacho Pereskia Pereskia guamacho \N \N \N \N \N 5435 \N genus Algrizea \N \N \N \N \N 5436 H.alleniana Halenia Halenia alleniana \N \N \N \N \N 5437 A.glaucum Acanthocalycium Acanthocalycium glaucum \N \N \N \N \N 5438 E.croajingolensis Eucalyptus Eucalyptus croajingolensis \N \N \N \N \N 5439 P.JN-2011 Peperomia Peperomia aff. gracillima JN-2011 \N \N \N \N \N 5440 S.chingii Smilax Smilax chingii \N \N \N \N \N 5441 S.dichotoma Sobralia Sobralia dichotoma \N \N \N \N \N 5442 \N family Xyridaceae yellow-eye grass family \N \N \N \N 5443 D.geraniifolium Delphinium Delphinium geraniifolium \N \N \N \N \N 5444 S.hyssopifolia Sideritis Sideritis hyssopifolia \N \N \N \N \N 5445 \N genus Rhynchocorys \N \N \N \N \N 5446 C.canum Cirsium Cirsium canum Queen Anne's thistle \N \N \N \N 5447 \N genus Ayapana \N \N \N \N \N 5448 C.balfourii Campanula Campanula balfourii \N \N \N \N \N 5449 D.sphaeroides Draba Draba sphaeroides \N \N \N \N \N 5450 C.olivacea Caucaea Caucaea olivacea \N \N \N \N \N 5451 M.0702 Maxillaria Maxillaria cf. luteoalba Whitten 0702 \N \N \N \N \N 5452 V.robertianifolia Valeriana Valeriana robertianifolia \N \N \N \N \N 5453 \N genus Alophia \N \N \N \N \N 5454 \N genus Aerides \N \N \N \N \N 5455 L.pertusa Listrostachys Listrostachys pertusa \N \N \N \N \N 5456 A.micrantha Austrobryonia Austrobryonia micrantha \N \N \N \N \N 5457 F.latifolia Fosterella Fosterella latifolia \N \N \N \N \N 5458 \N varietas Salvia japonica var. japonica \N \N \N \N \N 5459 B.variegata Boesenbergia Boesenbergia variegata \N \N \N \N \N 5460 C.extensa Carex Carex extensa \N \N \N \N \N 5461 Z.muelleri Zostera Zostera muelleri \N \N \N \N \N 5462 R.arcticus Rubus Rubus arcticus Arctic raspberry \N \N \N \N 5463 \N subspecies Daucus carota subsp. azoricus \N \N \N \N \N 5464 C.tenuisecta Cousinia Cousinia tenuisecta \N \N \N \N \N 5465 \N genus Craibella \N \N \N \N \N 5466 \N genus Martiodendron \N \N \N \N \N 5467 T.glabra Trigonella Trigonella glabra \N \N \N \N \N 5468 E.globulus Eucalyptus Eucalyptus globulus blue gum \N \N \N \N 5469 \N varietas Hedyotis lessertiana var. marginata \N \N \N \N \N 5470 G.organensis Graphistylis Graphistylis organensis \N \N \N \N \N 5471 H.1091 Hanguana Hanguana sp. Pedersen 1091 \N \N \N \N \N 5472 I.atriceps Indigofera Indigofera atriceps \N \N \N \N \N 5473 C.aliciae Cyrtopodium Cyrtopodium aliciae \N \N \N \N \N 5474 A.hierrense Aeonium Aeonium hierrense \N \N \N \N \N 5475 N.elliptica Nymphoides Nymphoides elliptica \N \N \N \N \N 5476 \N genus Radiola \N \N \N \N \N 5477 V.excavata Vitekorchis Vitekorchis excavata \N \N \N \N \N 5478 H.eriogyne Hymenaea Hymenaea eriogyne \N \N \N \N \N 5479 \N genus Lindelofia \N \N \N \N \N 5480 V.taliense Veratrum Veratrum taliense \N \N \N \N \N 5481 B.latiglumis Bromus Bromus latiglumis \N \N \N \N \N 5482 A.reniformis Acacia Acacia reniformis \N \N \N \N \N 5483 \N varietas Xylorhiza tortifolia var. imberbis \N \N \N \N \N 5484 S.indica Saraca Saraca indica \N \N \N \N \N 5485 C.recurvatum Capsicum Capsicum recurvatum \N \N \N \N \N 5486 T.chinense Tripterospermum Tripterospermum chinense \N \N \N \N \N 5487 H.rectifolia Hosta Hosta rectifolia \N \N \N \N \N 5488 \N varietas Pentameris calcicola var. calcicola \N \N \N \N \N 5489 \N varietas Spondias mombin var. mombin \N \N \N \N \N 5490 A.brevicollis Aechmea Aechmea brevicollis \N \N \N \N \N 5491 G.flanaganii Greyia Greyia flanaganii \N \N \N \N \N 5492 M.glabra Maripa Maripa glabra \N \N \N \N \N 5493 E.ortegae Echinocereus Echinocereus ortegae \N \N \N \N \N 5494 U.subulata Utricularia Utricularia subulata zigzag bladderwort \N \N \N \N 5495 L.calcarata Lobelia Lobelia calcarata \N \N \N \N \N 5496 T.orizabensis Tetrachyron Tetrachyron orizabensis \N \N \N \N \N 5497 \N genus Cephalopentandra \N \N \N \N \N 5498 R.praeclara Rhodostemonodaphne Rhodostemonodaphne praeclara \N \N \N \N \N 5499 \N genus Quintinia \N \N \N \N \N 5500 C.hereroense Combretum Combretum hereroense \N \N \N \N \N 5501 \N subspecies Casuarina equisetifolia subsp. incana \N \N \N \N \N 5502 F.frigida Festuca Festuca frigida \N \N \N \N \N 5503 G.longibracteata Gavilea Gavilea longibracteata \N \N \N \N \N 5504 S.mociniana Scutellaria Scutellaria mociniana \N \N \N \N \N 5505 C.andrei Coutarea Coutarea andrei \N \N \N \N \N 5506 F.vvedenskyi Fessia Fessia vvedenskyi \N \N \N \N \N 5507 \N genus Palafoxia \N \N \N \N \N 5508 C.montanum Colchicum Colchicum montanum \N \N \N \N \N 5509 B.pedicellata Bouteloua Bouteloua pedicellata \N \N \N \N \N 5510 S.wittii Selenicereus Selenicereus wittii \N \N \N \N \N 5511 S.amarissima Salvia Salvia amarissima \N \N \N \N \N 5512 L.tenuicaule Limonium Limonium tenuicaule \N \N \N \N \N 5513 M.stylosa Mimosa Mimosa stylosa \N \N \N \N \N 5514 C.circinata Chusquea Chusquea circinata \N \N \N \N \N 5515 A.glandulosa Anticharis Anticharis glandulosa \N \N \N \N \N 5516 S.H608 Stellarioides Stellarioides sp. MP H608 \N \N \N \N \N 5517 P.cirsiifolium Psacalium Psacalium cirsiifolium \N \N \N \N \N 5518 \N genus Dendrocacalia \N \N \N \N \N 5519 D.olympica Draba Draba olympica \N \N \N \N \N 5520 \N genus Gardnerodoxa \N \N \N \N \N 5521 C.arenesiana Coffea Coffea arenesiana \N \N \N \N \N 5522 M.brauna Melanoxylon Melanoxylon brauna \N \N \N \N \N 5523 A.cupularis Actinodaphne Actinodaphne cupularis \N \N \N \N \N 5524 V.palmensis Viola Viola palmensis \N \N \N \N \N 5525 \N tribe Juanulloeae \N \N \N \N \N 5526 S.wrightii Sporobolus Sporobolus wrightii \N \N \N \N \N 5527 D.dictyonema Diospyros Diospyros dictyonema \N \N \N \N \N 5528 P.plantaginoidea Psychotria Psychotria plantaginoidea \N \N \N \N \N 5529 L.latifolius Lupinus Lupinus latifolius \N \N \N \N \N 5530 T.cespitosum Trichophorum Trichophorum cespitosum \N \N \N \N \N 5531 G.parviflorus Gonolobus Gonolobus parviflorus \N \N \N \N \N 5532 \N genus Aureolaria \N \N \N \N \N 5533 M.brachythyrsus Mallotus Mallotus brachythyrsus \N \N \N \N \N 5534 S.mucugensis Syngonanthus Syngonanthus mucugensis \N \N \N \N \N 5535 E.galioides Eryngium Eryngium galioides \N \N \N \N \N 5536 M.jackeyi Musa Musa jackeyi \N \N \N \N \N 5537 T.hollrungii Tapeinochilos Tapeinochilos hollrungii \N \N \N \N \N 5538 P.sprengelianum Piper Piper sprengelianum \N \N \N \N \N 5539 C.flahaultii Cryptotaenia Cryptotaenia flahaultii \N \N \N \N \N 5540 L.sessile Leucadendron Leucadendron sessile \N \N \N \N \N 5541 S.bennettii Systeloglossum Systeloglossum bennettii \N \N \N \N \N 5542 D.alata Dioscorea Dioscorea alata Guyana arrowroot,greater yam,name-de-agua,ten-months yam,water yam,white yam,winged yam,yam \N \N \N \N 5543 C.renifolia Chaetanthera Chaetanthera renifolia \N \N \N \N \N 5544 \N genus Papilionanthe \N \N \N \N \N 5545 \N genus Emorya \N \N \N \N \N 5546 T.longispica Tupistra Tupistra longispica \N \N \N \N \N 5547 \N genus Stelechocarpus \N \N \N \N \N 5548 M.nesophila Melaleuca Melaleuca nesophila \N \N \N \N \N 5549 \N genus Sium \N \N \N \N \N 5550 M.bracteolata Miconia Miconia bracteolata \N \N \N \N \N 5551 C.clarkeana Coronanthera Coronanthera clarkeana \N \N \N \N \N 5552 S.nakaharae Symplocos Symplocos nakaharae \N \N \N \N \N 5553 F.friedrichii Frailea Frailea friedrichii \N \N \N \N \N 5554 \N genus Suessenguthiella \N \N \N \N \N 5555 \N genus Altingia \N \N \N \N \N 5556 T.CH_E1Amono Triticum Triticum sp. CH_E1Amono \N \N \N \N \N 5557 I.laevigata Ilex Ilex laevigata smooth winterberry \N \N \N \N 5558 S.fusiforme Sedum Sedum fusiforme \N \N \N \N \N 5559 H.beanii Hypericum Hypericum beanii \N \N \N \N \N 5560 S.sagittifolia Sagittaria Sagittaria sagittifolia Old World arrowhead,swamp potato,swan potato \N \N \N \N 5561 \N genus Trichocarya \N \N \N \N \N 5562 M.sicyocarpa Mimosa Mimosa sicyocarpa \N \N \N \N \N 5563 A.hainanense Arisaema Arisaema hainanense \N \N \N \N \N 5564 \N genus Eranthis winter aconites \N \N \N \N 5565 D.MP-2011 Dipcadi Dipcadi sp. 3 MP-2011 \N \N \N \N \N 5566 S.racemosa Sagotia Sagotia racemosa \N \N \N \N \N 5567 E.loquaiana Eurya Eurya loquaiana \N \N \N \N \N 5568 V.longiflora Vasconcellea Vasconcellea longiflora \N \N \N \N \N 5569 S.simplicifolia Sarcomelicope Sarcomelicope simplicifolia \N \N \N \N \N 5570 P.protopunica Punica Punica protopunica \N \N \N \N \N 5571 H.pendula Hesperis Hesperis pendula \N \N \N \N \N 5572 C.phacota Carex Carex phacota \N \N \N \N \N 5573 P.willmottii Polyscias Polyscias willmottii \N \N \N \N \N 5574 A.minus Alyssum Alyssum minus \N \N \N \N \N 5575 \N subspecies Artemisia campestris subsp. canadensis \N \N \N \N \N 5576 C.eucausta Cordemoya Cordemoya eucausta \N \N \N \N \N 5577 E.polycarpa Euphorbia Euphorbia polycarpa \N \N \N \N \N 5578 P.mamorensis Pyrus Pyrus mamorensis \N \N \N \N \N 5579 \N varietas Globba albiflora var. aurea \N \N \N \N \N 5580 N.novocaledonica Neuburgia Neuburgia novocaledonica \N \N \N \N \N 5581 \N genus Chamaedorea \N \N \N \N \N 5582 P.chinense Polygonum Polygonum chinense \N \N \N \N \N 5583 P.ostii Paeonia Paeonia ostii \N \N \N \N \N 5584 T.krapovickasii Turnera Turnera krapovickasii \N \N \N \N \N 5585 P.confertiflora Peltogyne Peltogyne confertiflora \N \N \N \N \N 5586 \N genus Peucedanum \N \N \N \N \N 5587 \N varietas Rhododendron henryi var. dunnii \N \N \N \N \N 5588 C.pauneroi Centaurea Centaurea pauneroi \N \N \N \N \N 5589 K.stearnii Kalanchoe Kalanchoe stearnii \N \N \N \N \N 5590 E.cavaleriei Eriobotrya Eriobotrya cavaleriei \N \N \N \N \N 5591 C.flexuosa Crepis Crepis flexuosa \N \N \N \N \N 5592 E.multiscapideum Erythronium Erythronium multiscapideum Sierra fawnlily \N \N \N \N 5593 A.styracifolia Actinidia Actinidia styracifolia \N \N \N \N \N 5594 M.cistiflora Montiopsis Montiopsis cistiflora \N \N \N \N \N 5595 V.plicatum Viburnum Viburnum plicatum Japanese snowball \N \N \N \N 5596 C.falcata Crassula Crassula falcata \N \N \N \N \N 5597 \N genus Ryssopterys \N \N \N \N \N 5598 M.maritima Marina Marina maritima \N \N \N \N \N 5599 \N subspecies Iris hartwegii subsp. hartwegii \N \N \N \N \N 5600 A.adoxa Acacia Acacia adoxa \N \N \N \N \N 5601 R.dugesii Ribes Ribes dugesii \N \N \N \N \N 5602 G.philippensis Gmelina Gmelina philippensis \N \N \N \N \N 5603 A.polyneura Aesculus Aesculus polyneura \N \N \N \N \N 5604 G.bleasdalei Gevuina Gevuina bleasdalei \N \N \N \N \N 5605 M.nepenthoides Marcgravia Marcgravia nepenthoides \N \N \N \N \N 5606 C.sessilis Cyrtandra Cyrtandra sessilis \N \N \N \N \N 5607 I.barbata Inga Inga barbata \N \N \N \N \N 5608 S.digitata Schefflera Schefflera digitata \N \N \N \N \N 5609 F.oblata Feroniella Feroniella oblata \N \N \N \N \N 5610 O.SH-2010 Ochreinauclea Ochreinauclea sp. SH-2010 \N \N \N \N \N 5611 C.scaber Croton Croton scaber \N \N \N \N \N 5612 \N varietas Schoenoplectus pungens var. pungens \N \N \N \N \N 5613 \N genus Horsfieldia \N \N \N \N \N 5614 V.sulcata Vittadinia Vittadinia sulcata \N \N \N \N \N 5615 K.eriophylla Kalanchoe Kalanchoe eriophylla \N \N \N \N \N 5616 U.sanguineus Urochilus Urochilus sanguineus \N \N \N \N \N 5617 M.MA03 Microtis Microtis aff. angusii MA03 \N \N \N \N \N 5618 O.vulcanicola Oxalis Oxalis vulcanicola \N \N \N \N \N 5619 S.decandra Sphaerosacme Sphaerosacme decandra \N \N \N \N \N 5620 T.longiflorus Tachiadenus Tachiadenus longiflorus \N \N \N \N \N 5621 C.fissa Castanopsis Castanopsis fissa \N \N \N \N \N 5622 L.dissecta Lactuca Lactuca dissecta \N \N \N \N \N 5623 C.rhaetica Crepis Crepis rhaetica \N \N \N \N \N 5624 M.schlechteri Moraea Moraea schlechteri \N \N \N \N \N 6497 \N genus Blephilia \N \N \N \N \N 5625 C.bourgaei Conopodium Conopodium bourgaei \N \N \N \N \N 5626 \N varietas Lycium berlandieri var. berlandieri \N \N \N \N \N 5627 A.tytthocephalum Allium Allium tytthocephalum \N \N \N \N \N 5628 P.meyeri Podospermum Podospermum meyeri \N \N \N \N \N 5629 S.novae-angliae Symphyotrichum Symphyotrichum novae-angliae New England aster \N \N \N \N 5630 S.calycina Strobilanthes Strobilanthes calycina \N \N \N \N \N 5631 C.triplinervis Cryptocarya Cryptocarya triplinervis \N \N \N \N \N 5632 S.arborea Sorbaria Sorbaria arborea \N \N \N \N \N 5633 R.simplex Roussea Roussea simplex \N \N \N \N \N 5634 M.hypopitys Monotropa Monotropa hypopitys false beech-drops,pinesap,song xia lan \N \N \N \N 5635 P.popovii Phlojodicarpus Phlojodicarpus popovii \N \N \N \N \N 5636 M.macrophylla Moehringia Moehringia macrophylla \N \N \N \N \N 5637 S.californicus Schoenoplectus Schoenoplectus californicus California bulrush,tule \N \N \N \N 5638 L.balansae Lethedon Lethedon balansae \N \N \N \N \N 5639 A.candida Achimenes Achimenes candida \N \N \N \N \N 5640 C.8339 Comparettia Comparettia sp. Hirtz 8339 \N \N \N \N \N 5641 P.dulongensis Paris Paris dulongensis \N \N \N \N \N 5642 T.sample environmental samples Taxonomy:404807 Tofieldiaceae environmental sample \N \N \N \N \N 5643 F.stenophylla Fadogia Fadogia stenophylla \N \N \N \N \N 5644 \N varietas Pimelea curviflora var. gracilis \N \N \N \N \N 5645 B.bernardii Bellis Bellis bernardii \N \N \N \N \N 5646 O.visianii Onosma Onosma visianii \N \N \N \N \N 5647 S.pulchella Scaphyglottis Scaphyglottis pulchella \N \N \N \N \N 5648 C.bracteosa Couepia Couepia bracteosa \N \N \N \N \N 5649 E.lignumviridis Ericameria Ericameria lignumviridis \N \N \N \N \N 5650 \N subspecies Galium gilliesii subsp. telanthos \N \N \N \N \N 5651 T.hamiltonii Tetrachondra Tetrachondra hamiltonii \N \N \N \N \N 5652 E.abrotanifolius Euryops Euryops abrotanifolius \N \N \N \N \N 5653 C.nigra Crataegus Crataegus nigra \N \N \N \N \N 5654 T.spicata Trigonella Trigonella spicata \N \N \N \N \N 5655 N.sessiliflora Nolana Nolana sessiliflora \N \N \N \N \N 5656 A.javanica Anaphalis Anaphalis javanica \N \N \N \N \N 5657 L.KH-2011 Ludwigia Ludwigia sp. KH-2011 \N \N \N \N \N 5658 M.excoriata Moutabea Moutabea excoriata \N \N \N \N \N 5659 V.nummularia Vicia Vicia nummularia \N \N \N \N \N 5660 C.araneosa Cousinia Cousinia araneosa \N \N \N \N \N 5661 \N subtribe Catasetinae \N \N \N \N \N 5662 A.anomala Arracacia Arracacia anomala \N \N \N \N \N 5663 H.rueppellii Haplocarpha Haplocarpha rueppellii \N \N \N \N \N 5664 B.demissa Begonia Begonia demissa \N \N \N \N \N 5665 P.bleo Pereskia Pereskia bleo \N \N \N \N \N 5666 F.alamosanus Ferocactus Ferocactus alamosanus \N \N \N \N \N 5667 J.hopeiensis Juglans Juglans hopeiensis \N \N \N \N \N 5668 E.athericus Elymus Elymus athericus \N \N \N \N \N 5669 S.hispidum Solanum Solanum hispidum devil's-fig \N \N \N \N 5670 P.ramboi Paspalum Paspalum ramboi \N \N \N \N \N 5671 \N subtribe Prescottiinae \N \N \N \N \N 5672 N.demissa Nama Nama demissa \N \N \N \N \N 5673 N.414 Nolana Nolana sp. 414 \N \N \N \N \N 5674 C.bungei Calligonum Calligonum bungei \N \N \N \N \N 5675 R.macrophylla Ruta Ruta macrophylla \N \N \N \N \N 5676 P.pyrodiodes Polygonum Polygonum pyrodiodes \N \N \N \N \N 5677 C.pauper Chlorophytum Chlorophytum pauper \N \N \N \N \N 5678 C.cucullatum Cynanchum Cynanchum cucullatum \N \N \N \N \N 5679 O.pseudoserotina Ononis Ononis pseudoserotina \N \N \N \N \N 5680 S.venosa Sabicea Sabicea venosa \N \N \N \N \N 5681 S.papposa Stipa Stipa papposa \N \N \N \N \N 5682 S.5252 Schefflera Schefflera aff. schultzei Lowry 5252 \N \N \N \N \N 5683 L.monteiroi Lagynias Lagynias monteiroi \N \N \N \N \N 5684 \N genus Voacanga \N \N \N \N \N 5685 B.serrato-dentata Berberis Berberis serrato-dentata \N \N \N \N \N 5686 P.adenopoda Passiflora Passiflora adenopoda \N \N \N \N \N 5687 \N subspecies Tetratheca aphylla subsp. aphylla \N \N \N \N \N 5688 L.maculata Lotononis Lotononis maculata \N \N \N \N \N 5689 \N genus Brewcaria \N \N \N \N \N 5690 P.prunelloides Pentanisia Pentanisia prunelloides \N \N \N \N \N 5691 \N genus Astragalus \N \N \N \N \N 5692 P.griffithii Potentilla Potentilla griffithii \N \N \N \N \N 5693 R.amabilis Rhodiola Rhodiola amabilis \N \N \N \N \N 5694 \N varietas Guatteria sordida var. ovalis \N \N \N \N \N 5695 S.sessilistellatum Solanum Solanum sessilistellatum \N \N \N \N \N 5696 S.chrysantha Scrophularia Scrophularia chrysantha \N \N \N \N \N 5697 C.100 Crinum Crinum cf. macowanii RHA+CA 100 \N \N \N \N \N 5698 \N subspecies Manglietia conifera subsp. chingii \N \N \N \N \N 5699 V.decora Hebe Veronica decora \N \N \N \N \N 5700 R.simsii Rhododendron Rhododendron simsii \N \N \N \N \N 5701 H.dissectum Heracleum Heracleum dissectum \N \N \N \N \N 5702 \N varietas Vigna radiata var. radiata golden gram,green gram,mung bean \N \N \N \N 5703 A.compressus Axonopus Axonopus compressus broadleaf carpetgrass \N \N \N \N 5704 B.tilaranensis Beilschmiedia Beilschmiedia tilaranensis \N \N \N \N \N 5705 \N genus Thysanoglossa \N \N \N \N \N 5706 N.2001-2 Nepenthes Nepenthes sp. HHM 2001-2 \N \N \N \N \N 5707 O.natrix Ononis Ononis natrix \N \N \N \N \N 5708 S.inaequilaterum Solanum Solanum inaequilaterum \N \N \N \N \N 5709 P.horizontalis Psychotria Psychotria horizontalis \N \N \N \N \N 5710 Z.SRR-2011 unclassified Zygopetalinae Zygopetalinae sp. 3 SRR-2011 \N \N \N \N \N 5711 T.anomalum Tubocapsicum Tubocapsicum anomalum \N \N \N \N \N 5712 D.brumale Diplodium Diplodium brumale \N \N \N \N \N 5713 V.gardneri Viguiera Viguiera gardneri \N \N \N \N \N 5714 \N subspecies Senecio squalidus subsp. squalidus \N \N \N \N \N 5715 \N family Tecophilaeaceae \N \N \N \N \N 5716 I.luxurians Iseia Iseia luxurians \N \N \N \N \N 5717 O.maydelliana Oxytropis Oxytropis maydelliana \N \N \N \N \N 5718 P.souliei Primula Primula souliei \N \N \N \N \N 5719 \N genus Ericentrodea \N \N \N \N \N 5720 B.K16657 Bulbophyllum Bulbophyllum sp. K16657 \N \N \N \N \N 5721 A.propinquum Arisaema Arisaema propinquum \N \N \N \N \N 5722 P.micranthus Phaseolus Phaseolus micranthus \N \N \N \N \N 5723 C.tricolor Convolvulus Convolvulus tricolor \N \N \N \N \N 5724 H.oligocephala Hilliardiella Hilliardiella oligocephala \N \N \N \N \N 5725 A.chartaceus Atractocarpus Atractocarpus chartaceus \N \N \N \N \N 5726 H.angustifolia Hoheria Hoheria angustifolia \N \N \N \N \N 5727 Z.microcarpum Zygophyllum Zygophyllum microcarpum \N \N \N \N \N 5728 D.undulata Delissea Delissea undulata \N \N \N \N \N 5729 \N subspecies Pulicaria undulata subsp. undulata \N \N \N \N \N 5730 M.triptera Maireana Maireana triptera \N \N \N \N \N 5731 S.macrostachya Sinningia Sinningia macrostachya \N \N \N \N \N 5732 O.dichromaticum Oncidium Oncidium dichromaticum \N \N \N \N \N 5733 T.elliotii Tricalysia Tricalysia elliotii \N \N \N \N \N 5734 C.obovata Charpentiera Charpentiera obovata \N \N \N \N \N 5735 D.ceraula Dendrobium Dendrobium ceraula \N \N \N \N \N 5736 C.pubescens Costularia Costularia pubescens \N \N \N \N \N 5737 O.939 Ophiocolea Ophiocolea sp. Zjhra 939 \N \N \N \N \N 5738 C.effusa Calamagrostis Calamagrostis effusa \N \N \N \N \N 5739 \N varietas Tragopogon buphthalmoides var. latifolius \N \N \N \N \N 5740 E.salicifolia Euphorbia Euphorbia salicifolia \N \N \N \N \N 5741 W.07-1163 Wentsaiboea Wentsaiboea sp. 1 Moeller MMO 07-1163 \N \N \N \N \N 5742 C.42/78 Chenopodium Chenopodium sp. CHEN 42/78 \N \N \N \N \N 5743 B.JT-2006-1 Boesenbergia Boesenbergia cf. pulcherrima JT-2006-1 \N \N \N \N \N 5744 N.isaurica Nepeta Nepeta isaurica \N \N \N \N \N 5745 T.tetraquetrum Thaumatocaryon Thaumatocaryon tetraquetrum \N \N \N \N \N 5746 C.sample environmental samples Taxonomy:197745 Carya environmental sample \N \N \N \N \N 5747 C.asperifolia Chirita Chirita asperifolia \N \N \N \N \N 5748 P.bicolor Penstemon Penstemon bicolor \N \N \N \N \N 5749 C.acutifolium Cestrum Cestrum acutifolium \N \N \N \N \N 5750 L.fallacissima Leandra Leandra fallacissima \N \N \N \N \N 5751 \N subspecies Phyllanthus urinaria subsp. nudicarpus \N \N \N \N \N 5752 S.murrayana Swainsona Swainsona murrayana \N \N \N \N \N 5753 \N genus Callitriche water chickweed,water starwort \N \N \N \N 5754 D.pulchellum Dichelostemma Dichelostemma pulchellum \N \N \N \N \N 5755 D.stipulacea Dicoryphe Dicoryphe stipulacea \N \N \N \N \N 5756 \N genus Dactyloctenium \N \N \N \N \N 5757 A.sibirica Atriplex Atriplex sibirica \N \N \N \N \N 5758 M.siamensis Macaranga Macaranga siamensis \N \N \N \N \N 5759 L.persistens Lecythis Lecythis persistens \N \N \N \N \N 5760 B.sericea Breviea Breviea sericea \N \N \N \N \N 5761 \N subspecies Arachnorchis hirta subsp. rosea \N \N \N \N \N 5762 C.phillipsonianum Cynanchum Cynanchum phillipsonianum \N \N \N \N \N 5763 \N genus Cephalaralia \N \N \N \N \N 5764 \N subspecies Centaurea triumfettii subsp. lugdunensis \N \N \N \N \N 5765 J.delphiniifolia Jacobaea Jacobaea delphiniifolia \N \N \N \N \N 5766 H.rivularis Hemithrinax Hemithrinax rivularis \N \N \N \N \N 5767 F.albicaulis Frasera Frasera albicaulis \N \N \N \N \N 5768 F.biltmoreana Fraxinus Fraxinus biltmoreana \N \N \N \N \N 5769 \N subspecies Dactylis glomerata subsp. hackelii \N \N \N \N \N 5770 \N genus Polylepis \N \N \N \N \N 5771 C.oaxacensis Coursetia Coursetia oaxacensis \N \N \N \N \N 5772 V.discoidea Viguiera Viguiera discoidea \N \N \N \N \N 5773 P.letestui Pseudartabotrys Pseudartabotrys letestui \N \N \N \N \N 5774 L.jaegeri Linanthus Linanthus jaegeri San Jacinto prickly phlox \N \N \N \N 5775 C.mossii Carex Carex mossii \N \N \N \N \N 5776 \N genus Capparis \N \N \N \N \N 5777 C.palaestina Cota Cota palaestina \N \N \N \N \N 5778 M.punctatus Myoxanthus Myoxanthus punctatus \N \N \N \N \N 5779 \N genus Brachypterum \N \N \N \N \N 5780 H.benthamiana Hevea Hevea brasiliensis x Hevea benthamiana \N \N \N \N \N 5781 P.virginiana Persicaria Persicaria virginiana \N \N \N \N \N 5782 P.glabrata Patersonia Patersonia glabrata \N \N \N \N \N 5783 A.biuncialis Aegilops Aegilops biuncialis \N \N \N \N \N 5784 \N tribe Lavanduleae \N \N \N \N \N 5785 \N genus Fagaropsis \N \N \N \N \N 5786 A.arkitense Allium Allium arkitense \N \N \N \N \N 5787 \N subspecies Viscum album subsp. abietis \N \N \N \N \N 5788 S.bigelovii Salicornia Salicornia bigelovii \N \N \N \N \N 5789 S.trisectum Solanum Solanum trisectum \N \N \N \N \N 5790 \N genus Telipogon \N \N \N \N \N 5791 C.icaco Chrysobalanus Chrysobalanus icaco \N \N \N \N \N 5792 T.wiensii Taxillus Taxillus wiensii \N \N \N \N \N 5793 \N varietas Chamaecrista flexuosa var. flexuosa \N \N \N \N \N 5794 \N genus Ophrestia \N \N \N \N \N 5795 S.multiflorus Scadoxus Scadoxus multiflorus \N \N \N \N \N 5796 U.noctiflora Urginea Urginea noctiflora \N \N \N \N \N 5797 C.integerrima Cliffortia Cliffortia integerrima \N \N \N \N \N 5798 A.horridus Acanthocereus Acanthocereus horridus \N \N \N \N \N 5799 M.rubrifrons Medinilla Medinilla rubrifrons \N \N \N \N \N 5800 M.masticata Michelia Michelia masticata \N \N \N \N \N 5801 T.serrulata Tripogandra Tripogandra serrulata \N \N \N \N \N 5802 P.camanensis Palaua Palaua camanensis \N \N \N \N \N 5803 M.sphaeroidea Montrouziera Montrouziera sphaeroidea \N \N \N \N \N 5804 A.pratensis Asclepias Asclepias pratensis \N \N \N \N \N 5805 \N subspecies Gazania krebsiana subsp. arctotoides \N \N \N \N \N 5806 D.revoluta Dionysia Dionysia revoluta \N \N \N \N \N 5807 P.145 Psorospermum Psorospermum aff. androsaemifolium Randrianaivo et al. 145 \N \N \N \N \N 5808 S.platycarpus Streptanthus Streptanthus platycarpus \N \N \N \N \N 5809 C.lawsonianus Cymbonotus Cymbonotus lawsonianus \N \N \N \N \N 5810 O.gerstneri Orbeopsis Orbeopsis gerstneri \N \N \N \N \N 5811 D.monticola Dalbergia Dalbergia monticola \N \N \N \N \N 5812 C.membranaceum Calophyllum Calophyllum membranaceum \N \N \N \N \N 5813 P.wallii Pachycladon Pachycladon wallii \N \N \N \N \N 5814 S.ovalifolia Scaevola Scaevola ovalifolia \N \N \N \N \N 5815 E.balansae Elaeocarpus Elaeocarpus balansae \N \N \N \N \N 5816 \N genus Pittoniotis \N \N \N \N \N 5817 \N subspecies Phlox pilosa subsp. sangamonensis \N \N \N \N \N 5818 L.africanum Linum Linum africanum \N \N \N \N \N 5819 \N subspecies Calceolaria valdiviana subsp. valdiviana \N \N \N \N \N 5820 S.997 Syringa Syringa sp. 997 \N \N \N \N \N 5821 N.4 Neonauclea Neonauclea sp. 4 \N \N \N \N \N 5822 \N genus Bituminaria \N \N \N \N \N 5823 P.hirsuta Primula Primula hirsuta \N \N \N \N \N 5824 \N genus Beesia \N \N \N \N \N 5825 M.pironae Medicago Medicago pironae \N \N \N \N \N 5826 P.montana Passerina Passerina montana \N \N \N \N \N 5827 \N genus Calostemma \N \N \N \N \N 5828 A.argyrophanes Aspalathus Aspalathus argyrophanes \N \N \N \N \N 5829 C.gracilior Carex Carex gracilior \N \N \N \N \N 5830 S.PF-2010 Schefflera Schefflera sp. A PF-2010 \N \N \N \N \N 5831 A.rupestris Artemisia Artemisia rupestris \N \N \N \N \N 5832 S.pentaphyllum Solanum Solanum pentaphyllum \N \N \N \N \N 5833 A.willardiana Acacia Acacia willardiana palo blanco \N \N \N \N 5834 \N genus Thyrsanthella \N \N \N \N \N 5835 C.gmelinii Cousinia Cousinia gmelinii \N \N \N \N \N 5836 I.firmula Impatiens Impatiens firmula \N \N \N \N \N 5837 \N genus Pterochaeta \N \N \N \N \N 5838 G.riedeliana Guapira Guapira riedeliana \N \N \N \N \N 5839 \N subspecies Hydrangea arborescens subsp. discolor \N \N \N \N \N 5840 K.lenensis Krascheninnikovia Krascheninnikovia lenensis \N \N \N \N \N 5841 S.chrysosticta Soldanella Soldanella chrysosticta \N \N \N \N \N 5842 I.hebepetala Indigofera Indigofera hebepetala \N \N \N \N \N 5843 S.ferruginea Symplocos Symplocos ferruginea \N \N \N \N \N 5844 C.gracilipes Calophyllum Calophyllum gracilipes \N \N \N \N \N 5845 M.souzae Malpighia Malpighia souzae \N \N \N \N \N 5846 S.dupeni Strobilanthes Strobilanthes dupeni \N \N \N \N \N 5847 S.molinae Simsia Simsia molinae \N \N \N \N \N 5848 P.longiseta Persicaria Persicaria longiseta \N \N \N \N \N 5849 P.longiflora Posoqueria Posoqueria longiflora \N \N \N \N \N 5850 E.oligantha Erica Erica oligantha \N \N \N \N \N 5851 V.lancifolia Valeriana Valeriana lancifolia \N \N \N \N \N 5852 P.pendulispicum Piper Piper pendulispicum \N \N \N \N \N 5853 \N varietas Cestrum aurantiacum var. macrocalyx \N \N \N \N \N 5854 L.archangelica Laserpitium Laserpitium archangelica \N \N \N \N \N 5855 S.parvifolia Secamone Secamone parvifolia \N \N \N \N \N 5856 \N family Zingiberaceae ginger family \N \N \N \N 5857 L.auriculata Litsea Litsea auriculata \N \N \N \N \N 5858 O.creberrima Ophrys Ophrys creberrima \N \N \N \N \N 5859 W.simsioides Wedelia Wedelia simsioides \N \N \N \N \N 5860 S.grayanum Sisymbrium Sisymbrium grayanum \N \N \N \N \N 5861 C.fluitans Castelnavia Castelnavia fluitans \N \N \N \N \N 5862 C.DT-1119 Cassinopsis Cassinopsis sp. DT-1119 \N \N \N \N \N 5863 \N genus Lophomyrtus \N \N \N \N \N 5864 P.tenuifolia Paeonia Paeonia tenuifolia \N \N \N \N \N 5865 \N subspecies Lepidium sisymbrioides subsp. matau \N \N \N \N \N 5866 R.palicoureoides Rudgea Rudgea palicoureoides \N \N \N \N \N 5867 P.burbidgeae Picris Picris burbidgeae \N \N \N \N \N 5868 M.lavinii Maraniona Maraniona lavinii \N \N \N \N \N 5869 D.273 Dombeya Dombeya sp. Chase 273 \N \N \N \N \N 5870 M.sparsifolia Manihot Manihot sparsifolia \N \N \N \N \N 5871 C.setiger Cenchrus Cenchrus setiger anjan,birdwood grass \N \N \N \N 5872 \N genus Callianthemoides \N \N \N \N \N 5873 H.aliena Heterolepis Heterolepis aliena \N \N \N \N \N 5874 D.2142 Donatia Donatia sp. Morgan 2142 \N \N \N \N \N 5875 \N subspecies Acacia robusta subsp. clavigera \N \N \N \N \N 5876 C.reticulata Clematis Clematis reticulata \N \N \N \N \N 5877 A.curtisii Aeschynanthus Aeschynanthus curtisii \N \N \N \N \N 5878 E.multiflora Endlicheria Endlicheria multiflora \N \N \N \N \N 5879 I.spiniflora Indigofera Indigofera spiniflora \N \N \N \N \N 5880 L.pachyphyllus Lithocarpus Lithocarpus pachyphyllus \N \N \N \N \N 5881 D.longifolia Debregeasia Debregeasia longifolia \N \N \N \N \N 5882 H.lushui Holcoglossum Holcoglossum sp. lushui \N \N \N \N \N 5883 E.squarrosa Euphorbia Euphorbia squarrosa \N \N \N \N \N 5884 E.suffruticosum Epilobium Epilobium suffruticosum \N \N \N \N \N 5885 A.paucinervis Aristolochia Aristolochia paucinervis \N \N \N \N \N 5886 \N varietas Rosa multiflora var. carnea \N \N \N \N \N 5887 M.2482 Maxillaria Maxillaria cf. splendens Whitten 2482 \N \N \N \N \N 5888 R.foliosa Rhodocoma Rhodocoma foliosa \N \N \N \N \N 5889 \N varietas Boehmeria malabarica var. malabarica \N \N \N \N \N 5890 A.sinomontanum Aconitum Aconitum sinomontanum \N \N \N \N \N 5891 D.leucotricha Dionysia Dionysia leucotricha \N \N \N \N \N 5892 D.concinna Dodonaea Dodonaea concinna \N \N \N \N \N 5893 F.dubia Fraxinus Fraxinus dubia \N \N \N \N \N 5894 V.membranaceum Vaccinium Vaccinium membranaceum \N \N \N \N \N 5895 A.speltoides Aegilops Aegilops speltoides \N \N \N \N \N 5896 M.clematoides Mikaniopsis Mikaniopsis clematoides \N \N \N \N \N 5897 S.attenuata Schiedea Schiedea attenuata \N \N \N \N \N 5898 V.lanciflora Vangueriopsis Vangueriopsis lanciflora \N \N \N \N \N 5899 \N varietas Samolus ebracteatus var. breviflorus \N \N \N \N \N 5900 B.pedicellaris Balanites Balanites pedicellaris \N \N \N \N \N 5901 O.silvatica Ochrosia Ochrosia silvatica \N \N \N \N \N 5902 C.viridiflava Chiloschista Chiloschista viridiflava \N \N \N \N \N 5903 \N genus Nitraria \N \N \N \N \N 5904 A.trilobata Abrotanella Abrotanella trilobata \N \N \N \N \N 5905 B.maximilianii Braunsia Braunsia maximilianii \N \N \N \N \N 5906 O.hirta Ononis Ononis hirta \N \N \N \N \N 5907 R.arevaloi Rodriguezia Rodriguezia arevaloi \N \N \N \N \N 5908 M.2912 Maxillaria Maxillaria aff. nutans Whitten 2912 \N \N \N \N \N 5909 C.elata Cyphia Cyphia elata \N \N \N \N \N 5910 L.subspicata Lonicera Lonicera subspicata \N \N \N \N \N 6006 G.homeanum Geranium Geranium homeanum \N \N \N \N \N 5911 C.umbellatus Calochortus Calochortus umbellatus Oakland mariposa lily \N \N \N \N 5912 \N genus Chamguava \N \N \N \N \N 5913 E.shockleyi Eriogonum Eriogonum shockleyi \N \N \N \N \N 5914 M.arizonica Muhlenbergia Muhlenbergia arizonica \N \N \N \N \N 5915 A.SM-1999 Annona Annona sp. SM-1999 \N \N \N \N \N 5916 A.saxatilis Aurinia Aurinia saxatilis basket-of-gold,gold-dust,golden-tuft alyssum \N \N \N \N 5917 P.minor Pritchardia Pritchardia minor \N \N \N \N \N 5918 A.flemingii Aechmea Aechmea flemingii \N \N \N \N \N 5919 A.apulum Arum Arum apulum \N \N \N \N \N 5920 C.napoense Cremastosperma Cremastosperma napoense \N \N \N \N \N 5921 S.foetidus Symplocarpus Symplocarpus foetidus skunk cabbage \N \N \N \N 5922 P.endlicheri Pennantia Pennantia endlicheri \N \N \N \N \N 5923 L.rotundifolia Litsea Litsea rotundifolia \N \N \N \N \N 5924 S.hitchcockii Stegolepis Stegolepis hitchcockii \N \N \N \N \N 5925 T.versicolor Triphysaria Triphysaria versicolor \N \N \N \N \N 5926 \N subspecies Hieracium piloselloides subsp. praealtum \N \N \N \N \N 5927 \N genus Pseudomisopates \N \N \N \N \N 5928 \N genus Onychopetalum \N \N \N \N \N 5929 C.tabularis Chukrasia Chukrasia tabularis Burmese almondwood,chickrassy,yinma \N \N \N \N 5930 A.hirsuta Alnus Alnus hirsuta \N \N \N \N \N 5931 L.graniticola Lobelia Lobelia graniticola \N \N \N \N \N 5932 T.pulegioides Thymus Thymus pulegioides lemon thyme \N \N \N \N 5933 A.nelsonii Achnatherum Achnatherum nelsonii \N \N \N \N \N 5934 \N varietas Elymus dahuricus var. cylindricus \N \N \N \N \N 5935 T.quaquaflorifera Tillandsia Tillandsia quaquaflorifera \N \N \N \N \N 5936 A.eranthema Artemisia Artemisia eranthema \N \N \N \N \N 5937 C.95KL45298 Curcuma Curcuma aff. petiolata 95KL45298 \N \N \N \N \N 5938 G.flexuosa Gomesa Gomesa flexuosa \N \N \N \N \N 5939 \N varietas Magnolia nitida var. lotungensis \N \N \N \N \N 5940 D.kerrii Dipterocarpus Dipterocarpus kerrii \N \N \N \N \N 5941 C.lagotum Colchicum Colchicum lagotum \N \N \N \N \N 5942 \N varietas Cymbidium lancifolium var. aspidistrifolium \N \N \N \N \N 5943 P.cruenta Pericallis Pericallis cruenta \N \N \N \N \N 5944 E.crispa Euclea Euclea crispa \N \N \N \N \N 5945 D.paradoxa Delarbrea Delarbrea paradoxa \N \N \N \N \N 5946 F.dichotoma Fimbristylis Fimbristylis dichotoma \N \N \N \N \N 5947 M.salsolacea Muraltia Muraltia salsolacea \N \N \N \N \N 5948 D.amplum Dendrobium Dendrobium amplum \N \N \N \N \N 5949 \N genus Bellevalia \N \N \N \N \N 5950 C.fragrans Combretum Combretum fragrans \N \N \N \N \N 5951 P.megistophylla Psychotria Psychotria megistophylla \N \N \N \N \N 5952 P.flexuosa Phyllostachys Phyllostachys flexuosa \N \N \N \N \N 5953 Y.treculeana Yucca Yucca treculeana Spanish dagger \N \N \N \N 5954 E.umbra Eucalyptus Eucalyptus umbra \N \N \N \N \N 5955 P.guineensis Paropsia Paropsia guineensis \N \N \N \N \N 5956 S.variegata Sparaxis Sparaxis variegata \N \N \N \N \N 5957 S.91025 Sabia Sabia sp. Qiu 91025 \N \N \N \N \N 5958 M.glaucescens Morinda Morinda glaucescens \N \N \N \N \N 5959 P.sinkiangensis Pyrus Pyrus sinkiangensis \N \N \N \N \N 5960 L.nipponica Lespedeza Lespedeza nipponica \N \N \N \N \N 5961 C.multiflorus Cotoneaster Cotoneaster multiflorus \N \N \N \N \N 5962 L.brevipes Lefebvrea Lefebvrea brevipes \N \N \N \N \N 5963 C.gracilis Coleocarya Coleocarya gracilis \N \N \N \N \N 5964 S.standleyi Swartzia Swartzia standleyi \N \N \N \N \N 5965 A.ostiolatum Arisaema Arisaema ostiolatum \N \N \N \N \N 5966 C.albula Carex Carex albula \N \N \N \N \N 5967 R.virens Rhus Rhus virens \N \N \N \N \N 5968 P.rupestris Patrinia Patrinia rupestris \N \N \N \N \N 5969 \N genus Coleostephus \N \N \N \N \N 5970 C.gracilis Catalepis Catalepis gracilis \N \N \N \N \N 5971 L.speciosa Lagerstroemia Lagerstroemia speciosa pride-of-India,pyinma,reseda-flor-da-rainha \N \N \N \N 5972 A.lijiangensis Ainsliaea Ainsliaea lijiangensis \N \N \N \N \N 5973 B.medwediewii Betula Betula medwediewii \N \N \N \N \N 5974 C.celebensis Coelogyne Coelogyne celebensis \N \N \N \N \N 5975 A.yunnanensis Actaea Actaea yunnanensis \N \N \N \N \N 5976 P.taliensis Pleione Pleione x taliensis \N \N \N \N \N 5977 G.oenanthemum Gymnocalycium Gymnocalycium oenanthemum \N \N \N \N \N 5978 L.glandulifera Leandra Leandra glandulifera \N \N \N \N \N 5979 \N subspecies Carthamus glaucus subsp. anatolicus \N \N \N \N \N 5980 \N genus Balmea \N \N \N \N \N 5981 C.cunninghamii Centipeda Centipeda cunninghamii \N \N \N \N \N 5982 O.MO1143 Oxalis Oxalis sp. MO1143 \N \N \N \N \N 5983 L.senegalensis Lasimorpha Lasimorpha senegalensis \N \N \N \N \N 5984 M.512 Manulea Manulea sp. Forest 512 \N \N \N \N \N 5985 \N genus Hypelate \N \N \N \N \N 5986 A.quinquevulnera Aerides Aerides quinquevulnera \N \N \N \N \N 5987 T.quadricornis Tetracme Tetracme quadricornis \N \N \N \N \N 5988 A.pulchella Aganisia Aganisia pulchella \N \N \N \N \N 5989 L.sparsiflora Lotononis Lotononis sparsiflora \N \N \N \N \N 5990 \N genus Petiniotia \N \N \N \N \N 5991 \N subspecies Erica pilosiflora subsp. pilosiflora \N \N \N \N \N 5992 A.ascendens Alluaudia Alluaudia ascendens \N \N \N \N \N 5993 P.oblata Petrocosmea Petrocosmea oblata \N \N \N \N \N 5994 \N varietas Gardenia jasminoides var. grandiflora \N \N \N \N \N 5995 S.platyclados Shorea Shorea platyclados \N \N \N \N \N 5996 M.metcalfianus Mallotus Mallotus metcalfianus \N \N \N \N \N 5997 S.chinensis Sindechites Sindechites chinensis \N \N \N \N \N 5998 S.cremeiflorus Senecio Senecio cremeiflorus \N \N \N \N \N 5999 H.mollissima Halimocnemis Halimocnemis mollissima \N \N \N \N \N 6000 B.grandiflora Brunfelsia Brunfelsia grandiflora \N \N \N \N \N 6001 F.donax Festuca Festuca donax \N \N \N \N \N 6002 I.angustifolia Indigofera Indigofera angustifolia \N \N \N \N \N 6003 \N varietas Veratrum maackii var. maackii \N \N \N \N \N 6004 S.145 Symbegonia Symbegonia sp. Forrest 145 \N \N \N \N \N 6005 O.namaquana Oxalis Oxalis namaquana \N \N \N \N \N 6007 T.longifolia Thryallis Thryallis longifolia \N \N \N \N \N 6008 \N genus Sauroglossum \N \N \N \N \N 6009 E.chamissonis Euphorbia Euphorbia chamissonis \N \N \N \N \N 6010 O.pinnatus Ornithopus Ornithopus pinnatus orange birdsfoot \N \N \N \N 6011 D.fasciculata Deinandra Deinandra fasciculata \N \N \N \N \N 6012 S.eremaeus Samolus Samolus eremaeus \N \N \N \N \N 6013 B.teysmanniana Begonia Begonia teysmanniana \N \N \N \N \N 6014 H.sinensis Hanceola Hanceola sinensis \N \N \N \N \N 6015 \N varietas Aloe compressa var. compressa \N \N \N \N \N 6016 S.hispanica Salvia Salvia hispanica \N \N \N \N \N 6017 G.deusta Gahnia Gahnia deusta \N \N \N \N \N 6018 E.obtusifolia Ehretia Ehretia obtusifolia \N \N \N \N \N 6019 \N genus Exomis \N \N \N \N \N 6020 C.regelii Cousinia Cousinia regelii \N \N \N \N \N 6021 \N genus Archiserratula \N \N \N \N \N 6022 N.dupontii Nesogenes Nesogenes dupontii \N \N \N \N \N 6023 K.pyramidata Koeleria Koeleria pyramidata \N \N \N \N \N 6024 M.korsakowii Monochoria Monochoria korsakowii \N \N \N \N \N 6025 O.lagunae Opuntia Opuntia lagunae \N \N \N \N \N 6026 S.rilaensis Scorzoneroides Scorzoneroides rilaensis \N \N \N \N \N 6027 C.luzulifolia Carex Carex luzulifolia \N \N \N \N \N 6028 G.rosmarinifolia Grevillea Grevillea rosmarinifolia \N \N \N \N \N 6029 \N genus Schiedea \N \N \N \N \N 6030 S.viminea Stackhousia Stackhousia viminea \N \N \N \N \N 6031 I.leiophyllum Illicium Illicium leiophyllum \N \N \N \N \N 6032 D.pauciflora Draba Draba pauciflora \N \N \N \N \N 6033 P.buchananii Plectranthus Plectranthus buchananii \N \N \N \N \N 6034 \N genus Hoffmannseggia \N \N \N \N \N 6035 E.acicularis Enteropogon Enteropogon acicularis \N \N \N \N \N 6036 D.elegans Downingia Downingia elegans \N \N \N \N \N 6037 \N genus Microgyne \N \N \N \N \N 6038 C.subtilis Chrysopogon Chrysopogon subtilis \N \N \N \N \N 6039 C.geifolia Cineraria Cineraria geifolia \N \N \N \N \N 6040 F.matthewsii Festuca Festuca matthewsii \N \N \N \N \N 6041 C.muelleri Carex Carex muelleri \N \N \N \N \N 6042 C.monticola Crepis Crepis monticola \N \N \N \N \N 6043 B.kaoi Bupleurum Bupleurum kaoi \N \N \N \N \N 6044 B.scirpeum Blastocaulon Blastocaulon scirpeum \N \N \N \N \N 6045 M.douglasii Mimulus Mimulus douglasii \N \N \N \N \N 6046 B.cerasifolia Bursera Bursera cerasifolia \N \N \N \N \N 6047 V.pusilla Vietnamosasa Vietnamosasa pusilla \N \N \N \N \N 6048 V.ciliatum Vaccinium Vaccinium ciliatum \N \N \N \N \N 6049 \N varietas Metrosideros collina var. fruticosa \N \N \N \N \N 6050 M.capensis Mammillaria Mammillaria capensis \N \N \N \N \N 6051 P.wrightii Potamogeton Potamogeton nodosus x Potamogeton wrightii \N \N \N \N \N 6052 C.cuprina Carex Carex cuprina \N \N \N \N \N 6053 B.congesta Burmannia Burmannia congesta \N \N \N \N \N 6054 C.lanuginosus Convolvulus Convolvulus lanuginosus \N \N \N \N \N 6055 C.macrostemon Cinnamomum Cinnamomum macrostemon \N \N \N \N \N 6056 O.filiformis Oxytropis Oxytropis filiformis \N \N \N \N \N 6057 T.ramosissima Tamarix Tamarix ramosissima \N \N \N \N \N 6058 O.suavis Osmanthus Osmanthus suavis \N \N \N \N \N 6059 Q.myrtifolia Quercus Quercus myrtifolia \N \N \N \N \N 6060 S.martii Styrax Styrax martii \N \N \N \N \N 6061 L.californicum Lomatium Lomatium californicum California lomatium \N \N \N \N 6062 N.veitchii Nierembergia Nierembergia veitchii \N \N \N \N \N 6063 \N genus Triomma \N \N \N \N \N 6064 L.revoluta Lugoa Lugoa revoluta \N \N \N \N \N 6065 \N genus Anthodiscus \N \N \N \N \N 6066 V.microstachys Vulpia Vulpia microstachys \N \N \N \N \N 6067 D.reticulata Derris Derris reticulata \N \N \N \N \N 6068 C.lindsayi Cuscuta Cuscuta lindsayi \N \N \N \N \N 6069 P.besseri Polylepis Polylepis besseri \N \N \N \N \N 6070 L.dasystachyus Lithocarpus Lithocarpus dasystachyus \N \N \N \N \N 6071 W.refracta Wislizenia Wislizenia refracta jackass clover,spectacle fruit \N \N \N \N 6072 E.parviflora Erica Erica parviflora \N \N \N \N \N 6073 G.inflatus Gladiolus Gladiolus inflatus \N \N \N \N \N 6074 C.ciliata Calandrinia Calandrinia ciliata red maids \N \N \N \N 6075 \N genus Victoria \N \N \N \N \N 6076 U.plantaginea Urochloa Urochloa plantaginea \N \N \N \N \N 6077 H.ocamponis Hylocereus Hylocereus ocamponis \N \N \N \N \N 6078 T.effusa Tropidia Tropidia effusa \N \N \N \N \N 6079 H.tenuifolium Haemodorum Haemodorum tenuifolium \N \N \N \N \N 6080 K.trullata Kefersteinia Kefersteinia trullata \N \N \N \N \N 6081 P.sinensis Panax Panax sinensis \N \N \N \N \N 6082 T.moritzianum Tropaeolum Tropaeolum moritzianum \N \N \N \N \N 6083 \N varietas Gomphostemma strobilinum var. acaule \N \N \N \N \N 6084 P.pickeringii Psychotria Psychotria pickeringii \N \N \N \N \N 6085 A.scorodoprasum Allium Allium scorodoprasum \N \N \N \N \N 6086 G.leptanthum Gymnocalycium Gymnocalycium leptanthum \N \N \N \N \N 6087 R.BAW-2010 Rulingia Rulingia aff. luteiflora BAW-2010 \N \N \N \N \N 6088 O.rhynchophylla Ocotea Ocotea rhynchophylla \N \N \N \N \N 6089 H.trilocularis Howittia Howittia trilocularis blue howittia \N \N \N \N 6090 L.heterophyllum Lithophragma Lithophragma heterophyllum \N \N \N \N \N 6091 S.DES-2011 Sarcandra Sarcandra sp. DES-2011 \N \N \N \N \N 6092 G.BG-2009a Gundelia Gundelia sp. BG-2009a \N \N \N \N \N 6093 \N varietas Pinaropappus spathulatus var. chiapensis \N \N \N \N \N 6094 D.thyrsiflora Dichorisandra Dichorisandra thyrsiflora \N \N \N \N \N 6095 \N genus Pachyelasma \N \N \N \N \N 6096 \N genus Rhaphithamnus \N \N \N \N \N 6097 A.kaschianum Allium Allium kaschianum \N \N \N \N \N 6098 L.arnhemiaca Lobelia Lobelia arnhemiaca \N \N \N \N \N 6099 H.elsiae Hydroidea Hydroidea elsiae \N \N \N \N \N 6100 H.2000.256 Hypochaeris Hypochaeris sp. Weigend 2000.256 \N \N \N \N \N 6101 I.kirilowii Indigofera Indigofera kirilowii \N \N \N \N \N 6102 B.wittigii Bifrenaria Bifrenaria wittigii \N \N \N \N \N 6103 C.birmanicum Cleisostoma Cleisostoma birmanicum \N \N \N \N \N 6104 T.4226 unclassified Taraxacum Taraxacum (sect. Leucantha) sp. 4226 \N \N \N \N \N 6105 C.streptanthum Cynanchum Cynanchum streptanthum \N \N \N \N \N 6106 \N genus Charybdis \N \N \N \N \N 6107 I.cinnamomea Inga Inga cinnamomea \N \N \N \N \N 6108 M.corniculata Microstachys Microstachys corniculata \N \N \N \N \N 6109 C.turbaria Cortaderia Cortaderia turbaria \N \N \N \N \N 6112 P.calliantha Primula Primula calliantha \N \N \N \N \N 6113 P.bababudanii Psilanthus Psilanthus bababudanii \N \N \N \N \N 6114 R.intermixta Rondeletia Rondeletia intermixta \N \N \N \N \N 6115 \N genus Toxocarpus \N \N \N \N \N 6116 C.ramillatus Croton Croton ramillatus \N \N \N \N \N 6117 \N genus Rogiera \N \N \N \N \N 6118 P.scolopendriifolia Protea Protea scolopendriifolia \N \N \N \N \N 6119 E.discolor Erica Erica discolor \N \N \N \N \N 6120 \N subspecies Crepis albida subsp. scorzoneroides \N \N \N \N \N 6121 G.aculeolatum Geranium Geranium aculeolatum \N \N \N \N \N 6122 \N subspecies Cynoglottis barrelieri subsp. barrelieri \N \N \N \N \N 6123 C.MG-2007 Catasetum Catasetum sp. MG-2007 \N \N \N \N \N 6124 E.effusum Eriogonum Eriogonum effusum \N \N \N \N \N 6125 L.longipes Lindmania Lindmania longipes \N \N \N \N \N 6126 D.variabilis Drypetes Drypetes variabilis \N \N \N \N \N 6127 C.panapanari Clusia Clusia panapanari \N \N \N \N \N 6128 \N subspecies Festuca rivas-martinezii subsp. rectifolia \N \N \N \N \N 6129 S.iberica Scandix Scandix iberica \N \N \N \N \N 6130 A.muricarpum Amomum Amomum muricarpum \N \N \N \N \N 6131 S.alpina Saussurea Saussurea alpina \N \N \N \N \N 6132 S.brasiliensis Sarcaulus Sarcaulus brasiliensis \N \N \N \N \N 6133 N.colorata Nymphaea Nymphaea colorata \N \N \N \N \N 6134 I.dimidiata Indigofera Indigofera dimidiata \N \N \N \N \N 6135 C.plicatus Costus Costus plicatus \N \N \N \N \N 6136 T.kurabayashii Trillium Trillium kurabayashii \N \N \N \N \N 6137 \N genus Acropogon \N \N \N \N \N 6138 G.marginatum Graptopetalum Graptopetalum marginatum \N \N \N \N \N 6139 \N varietas Myrceugenia alpigena var. fuliginea \N \N \N \N \N 6140 C.monantha Cota Cota monantha \N \N \N \N \N 6141 Z.800 Zygophyllum Zygophyllum sp. Bellstedt 800 \N \N \N \N \N 6142 B.fungosa Balanophora Balanophora fungosa \N \N \N \N \N 6143 H.microspadix Hydriastele Hydriastele microspadix \N \N \N \N \N 6144 \N genus Dielsiocharis \N \N \N \N \N 6145 E.zeyheri Eugenia Eugenia zeyheri \N \N \N \N \N 6146 S.coloratum Sinocarum Sinocarum coloratum \N \N \N \N \N 6147 A.plantago-aquatica Alisma Alisma plantago-aquatica \N \N \N \N \N 6148 \N genus Mezobromelia \N \N \N \N \N 6149 G.trifida Gahnia Gahnia trifida \N \N \N \N \N 6150 \N varietas Peperomia andina var. pseudoperuviana \N \N \N \N \N 6151 C.serpens Chamaedorea Chamaedorea serpens \N \N \N \N \N 6152 \N genus Nautonia \N \N \N \N \N 6153 \N subspecies Langloisia setosissima subsp. punctata \N \N \N \N \N 6154 P.anisum Pimpinella Pimpinella anisum \N \N \N \N \N 6155 \N genus Vaccinium \N \N \N \N \N 6156 \N subspecies Gentianella chathamica subsp. nemorosa \N \N \N \N \N 6157 T.orbifolium Typhonium Typhonium orbifolium \N \N \N \N \N 6158 C.nebrascensis Carex Carex nebrascensis \N \N \N \N \N 6159 C.pubipetala Camellia Camellia pubipetala \N \N \N \N \N 6160 C.952 Calamagrostis Calamagrostis cf. erectifolia Koeppen & Iltis 952 \N \N \N \N \N 6161 \N forma Eleutherococcus trifoliatus f. spinifolia \N \N \N \N \N 6162 S.nigrum Solanum Solanum nigrum black nightshade \N \N \N \N 6163 L.peruviana Luziola Luziola peruviana \N \N \N \N \N 6164 G.radiatus Glinus Glinus radiatus \N \N \N \N \N 6165 \N genus Parrotia \N \N \N \N \N 6166 \N subspecies Thymbra sintenisii subsp. isaurica \N \N \N \N \N 6167 S.concinnum Syzygium Syzygium concinnum \N \N \N \N \N 6168 Z.elongata Zaluzianskya Zaluzianskya elongata \N \N \N \N \N 6169 A.platycaule Allium Allium platycaule \N \N \N \N \N 6170 D.obovatipetala Dichaea Dichaea obovatipetala \N \N \N \N \N 6171 S.lissocarpus Sauropus Sauropus lissocarpus \N \N \N \N \N 6172 P.comans Paepalanthus Paepalanthus comans \N \N \N \N \N 6173 P.albescens Polystachya Polystachya albescens \N \N \N \N \N 6174 D.bourgeauana Descurainia Descurainia bourgeauana \N \N \N \N \N 6175 H.humilis Haemanthus Haemanthus humilis \N \N \N \N \N 6176 L.adpressa Lotononis Lotononis adpressa \N \N \N \N \N 6177 T.spicatus Trachypogon Trachypogon spicatus \N \N \N \N \N 6178 E.senilis Erica Erica senilis \N \N \N \N \N 6179 T.maculata Trichopilia Trichopilia maculata \N \N \N \N \N 6180 C.warburgii Calamus Calamus warburgii \N \N \N \N \N 6181 \N forma Ormosia semicastrata f. pallida \N \N \N \N \N 6182 E.humilis Eucomis Eucomis humilis \N \N \N \N \N 6183 \N genus Cyphanthera \N \N \N \N \N 6184 T.uniflorum Trifolium Trifolium uniflorum \N \N \N \N \N 6185 A.brevipes Anaxagorea Anaxagorea brevipes \N \N \N \N \N 6186 M.angustifolia Morinda Morinda angustifolia \N \N \N \N \N 6187 I.clarkei Iris Iris clarkei \N \N \N \N \N 6188 O.scariosa Oxychloris Oxychloris scariosa \N \N \N \N \N 6189 Q.myrsinifolia Quercus Quercus myrsinifolia shira-kashi \N \N \N \N 6190 G.marchantii Gossypium Gossypium marchantii \N \N \N \N \N 6191 R.roxieanum Rhododendron Rhododendron roxieanum \N \N \N \N \N 6192 \N tribe Empetreae \N \N \N \N \N 6193 \N varietas Ivesia aperta var. aperta \N \N \N \N \N 6194 A.lindleyi Actephila Actephila lindleyi \N \N \N \N \N 6195 J.BAC-2010 unclassified Juncaceae Juncaceae sp. A10 BAC-2010 \N \N \N \N \N 6196 D.floribunda Delonix Delonix floribunda \N \N \N \N \N 6197 B.odora Barcella Barcella odora \N \N \N \N \N 6198 P.glandulosa Populus Populus alba x Populus tremula var. glandulosa \N \N \N \N \N 6199 \N tribe Trilepideae \N \N \N \N \N 6200 \N varietas Castilleja hispida var. hispida \N \N \N \N \N 6201 E.missurica Euphorbia Euphorbia missurica \N \N \N \N \N 6202 \N genus Androstephium \N \N \N \N \N 6203 C.conferta Caragana Caragana conferta \N \N \N \N \N 6204 C.micrantha Corynotheca Corynotheca micrantha \N \N \N \N \N 6205 P.schottii Peucephyllum Peucephyllum schottii \N \N \N \N \N 6206 B.fluggeiformis Baudouinia Baudouinia fluggeiformis \N \N \N \N \N 6207 F.arborescens Fuchsia Fuchsia arborescens aretillo \N \N \N \N 6208 S.clusiana Sternbergia Sternbergia clusiana \N \N \N \N \N 6209 H.adpressus Halimolobos Halimolobos adpressus \N \N \N \N \N 6210 H.mantegazzianum Heracleum Heracleum mantegazzianum cartwheel-flower,giant cow parsnip,giant hogweed \N \N \N \N 6211 L.cultivar Lilium Lilium hybrid cultivar \N \N \N \N \N 6212 W.hedbergiorum Warneckea Warneckea hedbergiorum \N \N \N \N \N 6213 \N varietas Phellodendron chinense var. glabriusculum \N \N \N \N \N 6214 T.cyathiflora Tersonia Tersonia cyathiflora \N \N \N \N \N 6215 J.CSU045 Jasminum Jasminum sp. CSU045 \N \N \N \N \N 6216 S.airoides Sporobolus Sporobolus airoides alkali sacaton \N \N \N \N 6217 \N genus Cynorkis \N \N \N \N \N 6218 A.rhodosemius Astragalus Astragalus rhodosemius \N \N \N \N \N 6219 R.divaricata Rorippa Rorippa divaricata \N \N \N \N \N 6220 A.cuspidata Aspalathus Aspalathus cuspidata \N \N \N \N \N 6221 S.donnell-smithii Sommera Sommera donnell-smithii \N \N \N \N \N 6222 N.monophylla Neocogniauxia Neocogniauxia monophylla \N \N \N \N \N 6223 L.triandra Licaria Licaria triandra \N \N \N \N \N 6224 E.globoidea Eucalyptus Eucalyptus globoidea white stringybark \N \N \N \N 6225 L.6564 Latrobea Latrobea sp. 6564 \N \N \N \N \N 6226 \N varietas Camellia tachangensis var. remotiserrata \N \N \N \N \N 6227 G.longifolia Galactia Galactia longifolia \N \N \N \N \N 6228 P.glanduliflora Phyllodoce Phyllodoce glanduliflora \N \N \N \N \N 6229 F.mcdougallii Flaveria Flaveria mcdougallii \N \N \N \N \N 6230 C.clusiifolia Casasia Casasia clusiifolia \N \N \N \N \N 6231 C.glaucus Cymopterus Cymopterus glaucus \N \N \N \N \N 6232 \N genus Iochroma \N \N \N \N \N 6233 W.canescens Wikstroemia Wikstroemia canescens \N \N \N \N \N 6234 O.sanguineum Odontoglossum Odontoglossum sanguineum \N \N \N \N \N 6235 G.renardii Geranium Geranium renardii \N \N \N \N \N 6236 D.arguta Drymocallis Drymocallis arguta \N \N \N \N \N 6237 C.cupulata Cladocolea Cladocolea cupulata \N \N \N \N \N 6238 \N subspecies Reseda alba subsp. decursiva \N \N \N \N \N 6239 \N genus Neosinocalamus \N \N \N \N \N 6240 S.racemosa Swertia Swertia racemosa \N \N \N \N \N 6241 C.reghidensis Chapmannia Chapmannia reghidensis \N \N \N \N \N 6242 \N tribe Acacieae \N \N \N \N \N 6243 C.diepenhorstii Calamus Calamus diepenhorstii \N \N \N \N \N 6244 \N family Rapateaceae \N \N \N \N \N 6245 S.sessilis Sporobolus Sporobolus sessilis \N \N \N \N \N 6246 H.telephium Hylotelephium Hylotelephium telephium live-forever,orpine \N \N \N \N 6247 \N varietas Prunus padus var. padus \N \N \N \N \N 6248 \N varietas Schisandra propinqua var. sinensis \N \N \N \N \N 6249 \N genus Ericameria goldenbush \N \N \N \N 6250 A.macilenta Artemisia Artemisia macilenta \N \N \N \N \N 6251 P.macrostegia Peliosanthes Peliosanthes macrostegia \N \N \N \N \N 6252 A.heringeri Aniba Aniba heringeri \N \N \N \N \N 6253 R.muirii Rhinephyllum Rhinephyllum muirii \N \N \N \N \N 6254 O.brachystemma Oxypetalum Oxypetalum brachystemma \N \N \N \N \N 6255 D.increscens Deinandra Deinandra increscens \N \N \N \N \N 6256 \N subspecies Dichromanthus cinnabarinus subsp. galeottianus \N \N \N \N \N 6257 A.littorea Anchusa Anchusa littorea \N \N \N \N \N 6258 \N genus Ceratocnemum \N \N \N \N \N 6259 A.acuta Agalinis Agalinis acuta \N \N \N \N \N 6260 \N no rank unclassified Fabaceae \N \N \N \N \N 6261 M.bavarica Moehringia Moehringia bavarica \N \N \N \N \N 6262 V.pseudofficinalis Valeriana Valeriana pseudofficinalis \N \N \N \N \N 6263 \N genus Reynoldsia \N \N \N \N \N 6264 T.glauca Tauschia Tauschia glauca \N \N \N \N \N 6265 T.pleiostigma Trichospermum Trichospermum pleiostigma \N \N \N \N \N 6266 R.agrestis Rosa Rosa agrestis field briar \N \N \N \N 6267 H.151 Homalomena Homalomena sp. Barabe 151 \N \N \N \N \N 6268 E.ceracea Eucalyptus Eucalyptus ceracea \N \N \N \N \N 6269 P.obliquum Ptaeroxylon Ptaeroxylon obliquum \N \N \N \N \N 6270 \N genus Trichocereus \N \N \N \N \N 6271 \N genus Symphoricarpos \N \N \N \N \N 6272 L.algarviana Linaria Linaria algarviana \N \N \N \N \N 6273 H.arachnoideus Halogeton Halogeton arachnoideus \N \N \N \N \N 6274 S.fernandesiana Sebaea Sebaea fernandesiana \N \N \N \N \N 6275 \N genus Uvariastrum \N \N \N \N \N 6276 B.vanzijliae Babiana Babiana vanzijliae \N \N \N \N \N 6277 G.australis Gavilea Gavilea australis \N \N \N \N \N 6278 C.kosaninii Crocus Crocus kosaninii \N \N \N \N \N 6279 P.eberhardtii Passiflora Passiflora eberhardtii \N \N \N \N \N 6280 \N genus Flaveria \N \N \N \N \N 6281 M.glabribracteatum Melampodium Melampodium glabribracteatum \N \N \N \N \N 6282 R.lagopus Rhododendron Rhododendron lagopus \N \N \N \N \N 6283 S.nubicola Salvia Salvia nubicola \N \N \N \N \N 6284 C.muscosa Crassula Crassula muscosa \N \N \N \N \N 6285 C.H5_17 Castilleja Castilleja sp. H5_17 \N \N \N \N \N 6286 A.heterophylla Adenia Adenia heterophylla \N \N \N \N \N 6287 L.emeroides Lotus Lotus emeroides \N \N \N \N \N 6288 B.fallax Begonia Begonia fallax \N \N \N \N \N 6289 P.morrisonensis Pyrola Pyrola morrisonensis \N \N \N \N \N 6290 \N tribe Sabaleae \N \N \N \N \N 6291 C.kasbek Cerastium Cerastium kasbek \N \N \N \N \N 6292 L.nivea Luzula Luzula nivea \N \N \N \N \N 6293 E.anomala Endlicheria Endlicheria anomala \N \N \N \N \N 6294 L.divaricata Lobelia Lobelia divaricata \N \N \N \N \N 6295 T.rollinsii Thelypodium Thelypodium rollinsii \N \N \N \N \N 6296 \N genus Hygrochilus \N \N \N \N \N 6297 L.callicarpus Leucomphalos Leucomphalos callicarpus \N \N \N \N \N 6298 M.acuminata Magnolia Magnolia acuminata \N \N \N \N \N 6299 S.velutinella Stevia Stevia velutinella \N \N \N \N \N 6300 G.multivenia Guatteria Guatteria multivenia \N \N \N \N \N 6301 M.villosa Monardella Monardella villosa coyote mint \N \N \N \N 6303 \N varietas Chenopodium gigantospermum var. standleyanum \N \N \N \N \N 6304 R.tenuis Rhynchospora Rhynchospora tenuis \N \N \N \N \N 6305 S.wardii Salweenia Salweenia wardii \N \N \N \N \N 6306 M.communis Myrtus Myrtus communis \N \N \N \N \N 6307 L.benthamii Lupinus Lupinus benthamii \N \N \N \N \N 6308 P.P080 Physalis Physalis sp. P080 \N \N \N \N \N 6309 T.palmeri Tiquilia Tiquilia palmeri \N \N \N \N \N 6310 A.nebrodense Arrhenatherum Arrhenatherum nebrodense \N \N \N \N \N 6311 \N subspecies Polylepis tomentella subsp. incanoides \N \N \N \N \N 6312 L.campanulatum Lithophragma Lithophragma campanulatum \N \N \N \N \N 6313 P.stricta Pultenaea Pultenaea stricta \N \N \N \N \N 6314 S.polytrichum Solanum Solanum polytrichum \N \N \N \N \N 6315 P.inflexum Polygonum Polygonum inflexum \N \N \N \N \N 6316 G.araucana Glandularia Glandularia araucana \N \N \N \N \N 6317 E.villosa Erica Erica villosa \N \N \N \N \N 6318 \N genus Albertisia \N \N \N \N \N 6319 P.halophila Pimelea Pimelea halophila \N \N \N \N \N 6320 \N subspecies Setaria viridis subsp. pycnocoma \N \N \N \N \N 6321 A.YN1 Anoectochilus Anoectochilus sp. YN1 \N \N \N \N \N 6322 G.dumosum Genistidium Genistidium dumosum \N \N \N \N \N 6323 V.lanceolata Viguiera Viguiera lanceolata \N \N \N \N \N 6324 \N genus Otanthus \N \N \N \N \N 6325 E.limosa Eleocharis Eleocharis limosa \N \N \N \N \N 6326 R.menthifolia Ruellia Ruellia menthifolia \N \N \N \N \N 6327 \N genus Diospyros \N \N \N \N \N 6328 C.fascicularis Capparis Capparis fascicularis \N \N \N \N \N 6329 \N subspecies Stachys cretica subsp. cassia \N \N \N \N \N 6330 C.micropetala Cuphea Cuphea micropetala \N \N \N \N \N 6331 S.pamirica Stuckenia Stuckenia amblyophylla x Stuckenia pamirica \N \N \N \N \N 6332 T.oblongata Tetracera Tetracera oblongata \N \N \N \N \N 6333 A.fangchi Aristolochia Aristolochia fangchi \N \N \N \N \N 6334 S.talarense Solanum Solanum talarense \N \N \N \N \N 6335 \N genus Goniolimon \N \N \N \N \N 6336 \N subspecies Primula chionantha subsp. chionantha \N \N \N \N \N 6337 A.triptera Acacia Acacia triptera spur-wing wattle \N \N \N \N 6338 G.galpinii Gnidia Gnidia galpinii \N \N \N \N \N 6339 P.SWG-2004 Petrosavia Petrosavia sp. SWG-2004 \N \N \N \N \N 6340 L.cooperi Ledebouria Ledebouria cooperi \N \N \N \N \N 6341 B.378 Boesenbergia Boesenbergia aff. burttiana Sakai 378 \N \N \N \N \N 6342 A.calcareus Ampelocalamus Ampelocalamus calcareus \N \N \N \N \N 6343 C.'Congo' Coffea Coffea sp. 'Congo' \N \N \N \N \N 6344 D.burkeana Drosera Drosera burkeana \N \N \N \N \N 6345 N.petunioides Nicotiana Nicotiana petunioides \N \N \N \N \N 6346 M.echinatum Myriophyllum Myriophyllum echinatum \N \N \N \N \N 6347 T.caulescens Telipogon Telipogon caulescens \N \N \N \N \N 6348 R.corniculata Rhynchospora Rhynchospora corniculata \N \N \N \N \N 6349 C.aquatica Coix Coix aquatica \N \N \N \N \N 6350 C.arenaria Chylismia Chylismia arenaria \N \N \N \N \N 6351 P.glauca Pachycentria Pachycentria glauca \N \N \N \N \N 6352 B.stewartiae Brachyglottis Brachyglottis stewartiae \N \N \N \N \N 6353 W.ceracea Wahlenbergia Wahlenbergia ceracea \N \N \N \N \N 6354 C.acuta Cuscuta Cuscuta acuta \N \N \N \N \N 6355 U.albiflorum Urocarpidium Urocarpidium albiflorum \N \N \N \N \N 6356 H.beninensis Hernandia Hernandia beninensis \N \N \N \N \N 6357 \N varietas Arrhenatherum album var. album \N \N \N \N \N 6358 M.spinosum Mulinum Mulinum spinosum \N \N \N \N \N 6359 \N varietas Stipa dregeana var. dregeana \N \N \N \N \N 6360 \N genus Vandopsis \N \N \N \N \N 6361 W.capillipes Whiteochloa Whiteochloa capillipes \N \N \N \N \N 6362 P.leptocarpa Perideridia Perideridia leptocarpa \N \N \N \N \N 6363 P.uniflorus Paranephelius Paranephelius uniflorus \N \N \N \N \N 6364 \N subspecies Ourisia macrophylla subsp. macrophylla \N \N \N \N \N 6365 L.suffruticosa Larnax Larnax suffruticosa \N \N \N \N \N 6366 E.graminea Euphorbia Euphorbia graminea \N \N \N \N \N 6367 \N genus Odontoglossum \N \N \N \N \N 6368 S.gallica Silene Silene gallica \N \N \N \N \N 6369 K.candel Kandelia Kandelia candel \N \N \N \N \N 6370 P.sarmentosum Piper Piper sarmentosum \N \N \N \N \N 6371 L.tricolor Loasa Loasa tricolor \N \N \N \N \N 6372 \N subspecies Banksia integrifolia subsp. aquilonia \N \N \N \N \N 6373 \N genus Bahiopsis \N \N \N \N \N 6374 B.kautskyi Bulbophyllum Bulbophyllum kautskyi \N \N \N \N \N 6375 P.vermiferum Pterygodium Pterygodium vermiferum \N \N \N \N \N 6376 O.174318 Oxypolis Oxypolis cf. filiformis FLAS 174318 \N \N \N \N \N 6377 S.tysonii Scabiosa Scabiosa tysonii \N \N \N \N \N 6378 C.elata Castilleja Castilleja elata \N \N \N \N \N 6379 E.Creek' Erythroxylum Erythroxylum sp. 'Cholmondely Creek' \N \N \N \N \N 6380 A.nana Acourtia Acourtia nana \N \N \N \N \N 6381 P.aristata Pinanga Pinanga aristata \N \N \N \N \N 6382 D.amplexicaulis Domeykoa Domeykoa amplexicaulis \N \N \N \N \N 6383 A.nanodealbata Acacia Acacia nanodealbata \N \N \N \N \N 6384 D.composita Dioscorea Dioscorea composita \N \N \N \N \N 6385 M.velutina Macaranga Macaranga velutina \N \N \N \N \N 6386 H.amaricaulis Hyophorbe Hyophorbe amaricaulis \N \N \N \N \N 6387 T.werneriana Tillandsia Tillandsia werneriana \N \N \N \N \N 6388 C.priscus Croton Croton priscus \N \N \N \N \N 6389 H.rhodorrhachis Hemiorchis Hemiorchis rhodorrhachis \N \N \N \N \N 6390 D.castanea Diospyros Diospyros castanea \N \N \N \N \N 6391 V.lanigera Vitex Vitex lanigera \N \N \N \N \N 6392 S.oreades Sedum Sedum oreades \N \N \N \N \N 6393 O.amphibolum Ornithogalum Ornithogalum amphibolum \N \N \N \N \N 6394 \N genus Tradescantia spiderworts \N \N \N \N 6395 E.morrisonensis Erigeron Erigeron morrisonensis \N \N \N \N \N 6396 P.pusilla Pentaschistis Pentameris pusilla \N \N \N \N \N 6397 P.rhinostigma Polygala Polygala rhinostigma \N \N \N \N \N 6398 \N genus Anthaenantia \N \N \N \N \N 6399 H.multifidus Helleborus Helleborus multifidus \N \N \N \N \N 7366 \N genus Diastatea \N \N \N \N \N 6400 D.lituiflorum Dendrobium Dendrobium lituiflorum \N \N \N \N \N 6401 R.parviflorus Rubus Rubus parviflorus \N \N \N \N \N 6402 G.germanica Gentianella Gentianella germanica \N \N \N \N \N 6403 O.tenella Osmadenia Osmadenia tenella \N \N \N \N \N 6404 \N genus Corymbia \N \N \N \N \N 6405 V.japonica Viola Viola japonica \N \N \N \N \N 6406 C.novissima Cousinia Cousinia novissima \N \N \N \N \N 6407 \N genus Presliophytum \N \N \N \N \N 6408 \N genus Hexalectris \N \N \N \N \N 6409 \N genus Pteroglossa \N \N \N \N \N 6410 \N genus Lignocarpa \N \N \N \N \N 6411 C.iynx Carex Carex iynx \N \N \N \N \N 6412 \N tribe Cyclospatheae \N \N \N \N \N 6413 D.ericoides Dolichothrix Dolichothrix ericoides \N \N \N \N \N 6414 C.bulbifera Cardamine Cardamine bulbifera coralroot bittercress \N \N \N \N 6415 E.Esp23 Elleanthus Elleanthus sp. Esp23 \N \N \N \N \N 6416 D.cdK74 Dictamnus Dictamnus sp. cdK74 \N \N \N \N \N 6417 B.longiflorum Bulbophyllum Bulbophyllum longiflorum \N \N \N \N \N 6418 \N genus Cosmocalyx \N \N \N \N \N 6419 A.ampullaceum Ascocentrum Ascocentrum ampullaceum \N \N \N \N \N 6420 C.velutina Coelogyne Coelogyne velutina \N \N \N \N \N 6421 F.erigeroides Felicia Felicia erigeroides \N \N \N \N \N 6422 C.amplexicaulis Caulanthus Caulanthus amplexicaulis \N \N \N \N \N 6423 L.principis Leuchtenbergia Leuchtenbergia principis \N \N \N \N \N 6424 B.goudotii Begonia Begonia goudotii \N \N \N \N \N 6425 C.palustris Claytonia Claytonia palustris \N \N \N \N \N 6426 H.calyptrata Halosarcia Halosarcia calyptrata \N \N \N \N \N 6427 P.californicus Platystemon Platystemon californicus \N \N \N \N \N 6428 D.fafnir Dracula Dracula fafnir \N \N \N \N \N 6429 L.peploides Ludwigia Ludwigia peploides \N \N \N \N \N 6430 \N genus Tapura \N \N \N \N \N 6431 D.4466 Dendromyza Dendromyza cf. ledermannii Nickrent 4466 \N \N \N \N \N 6432 P.nevadensis Pinguicula Pinguicula nevadensis \N \N \N \N \N 6433 F.pallida Forchhammeria Forchhammeria pallida \N \N \N \N \N 6434 \N subspecies Streptanthus glandulosus subsp. glandulosus uncommon jewelflower \N \N \N \N 6435 S.carnosilabia Stelis Stelis carnosilabia \N \N \N \N \N 6436 C.acanthifolia Carlina Carlina acanthifolia \N \N \N \N \N 6437 \N varietas Meineckia fruticans var. engleri \N \N \N \N \N 6438 A.gentryi Amphitecna Amphitecna gentryi \N \N \N \N \N 6439 P.44 Poliothyrsis Poliothyrsis sp. Alford 44 \N \N \N \N \N 6440 A.255 Altingia Altingia sp. WP 255 \N \N \N \N \N 6441 \N genus Satyrium \N \N \N \N \N 6442 D.pinifolia Diplycosia Diplycosia pinifolia \N \N \N \N \N 6443 E.mohrii Eupatorium Eupatorium mohrii Mohr's thoroughwort \N \N \N \N 6444 S.velutinum Stenopetalum Stenopetalum velutinum velvet threadpetal \N \N \N \N 6445 A.isosciadium Anisosciadium Anisosciadium isosciadium \N \N \N \N \N 6446 P.hygrophila Polygala Polygala hygrophila \N \N \N \N \N 6447 E.latifolia Eleutherine Eleutherine latifolia \N \N \N \N \N 6448 C.lasiandra Cousinia Cousinia lasiandra \N \N \N \N \N 6449 \N genus Apodiscus \N \N \N \N \N 6450 O.hedysaroides Ophrestia Ophrestia hedysaroides \N \N \N \N \N 6451 T.setispinus Thelocactus Thelocactus setispinus \N \N \N \N \N 6452 M.jaenensis Mimosa Mimosa jaenensis \N \N \N \N \N 6453 P.traversii Pimelea Pimelea traversii \N \N \N \N \N 6454 S.linifolia Sida Sida linifolia \N \N \N \N \N 6455 E.cherrevensis Ellipeiopsis Ellipeiopsis cherrevensis \N \N \N \N \N 6456 S.petiolata Staehelina Staehelina petiolata \N \N \N \N \N 6457 \N varietas Metrosideros polymorpha var. pumila \N \N \N \N \N 6458 A.micholitziana Alocasia Alocasia micholitziana \N \N \N \N \N 6459 \N subspecies Elaeocarpus largiflorens subsp. retinervis \N \N \N \N \N 6460 E.spinigemmatus Echinocereus Echinocereus spinigemmatus \N \N \N \N \N 6461 S.haygarthii Streptocarpus Streptocarpus haygarthii \N \N \N \N \N 6462 M.mccomishii Myrsine Myrsine mccomishii \N \N \N \N \N 6463 I.JPM013 Ipomoea Ipomoea sp. JPM013 \N \N \N \N \N 6464 F.reflexa Ficus Ficus reflexa \N \N \N \N \N 6465 P.morongii Piriqueta Piriqueta morongii \N \N \N \N \N 6466 \N genus Bigelowia \N \N \N \N \N 6467 D.inopinum Delphinium Delphinium inopinum unexpected larkspur \N \N \N \N 6468 \N subspecies Hippophae neurocarpa subsp. stellatopilosa \N \N \N \N \N 6469 M.angustifolia Monsonia Monsonia angustifolia \N \N \N \N \N 6470 S.ligulatum Satyrium Satyrium ligulatum \N \N \N \N \N 6471 \N genus Deianira \N \N \N \N \N 6472 A.sieberi Artemisia Artemisia sieberi \N \N \N \N \N 6473 L.hispidula Lithodora Lithodora hispidula \N \N \N \N \N 6474 E.uniglumis Eleocharis Eleocharis uniglumis \N \N \N \N \N 6475 R.hydrophilus Ranunculus Ranunculus hydrophilus \N \N \N \N \N 6476 M.SH-2010 Morinda Morinda sp. SH-2010 \N \N \N \N \N 6477 O.hirsuta Orthomene Orthomene hirsuta \N \N \N \N \N 6478 S.sanguinea Simsia Simsia sanguinea \N \N \N \N \N 6479 A.minorense Allium Allium minorense \N \N \N \N \N 6480 \N genus Eriopsis \N \N \N \N \N 6481 R.leptothrium Rhododendron Rhododendron leptothrium \N \N \N \N \N 6482 C.cymosa Cistanthe Cistanthe cymosa \N \N \N \N \N 6483 O.corymbosum Osteospermum Osteospermum corymbosum \N \N \N \N \N 6484 B.spinosissima Berkheya Berkheya spinosissima \N \N \N \N \N 6485 B.maughamii Balanites Balanites maughamii \N \N \N \N \N 6486 S.acre Sedum Sedum acre \N \N \N \N \N 6487 A.viridula Asclepias Asclepias viridula \N \N \N \N \N 6488 \N varietas Jacobaea aquatica var. aquatica \N \N \N \N \N 6489 C.aplolepa Centaurea Centaurea aplolepa \N \N \N \N \N 6490 P.flexuosa Pityopsis Pityopsis flexuosa \N \N \N \N \N 6491 A.tomentosa Arenaria Arenaria tomentosa \N \N \N \N \N 6492 H.australis Halophila Halophila australis \N \N \N \N \N 6493 \N subspecies Psathyrostachys fragilis subsp. villosus \N \N \N \N \N 6494 S.scuticum Solanum Solanum scuticum \N \N \N \N \N 6495 C.luteum Chamaelirium Chamaelirium luteum \N \N \N \N \N 6496 G.saccatus Gladiolus Gladiolus saccatus \N \N \N \N \N 6498 G.krusei Gaudichaudia Gaudichaudia krusei \N \N \N \N \N 6499 \N varietas Santalum insulare var. raivavense \N \N \N \N \N 6500 G.carolinianum Geranium Geranium carolinianum \N \N \N \N \N 6501 A.anthelmintica Albizia Albizia anthelmintica \N \N \N \N \N 6502 P.ML-2010 Philodendron Philodendron sp. ML-2010 \N \N \N \N \N 6503 O.minor Osmanthus Osmanthus minor \N \N \N \N \N 6504 \N genus Ruprechtia \N \N \N \N \N 6505 \N genus Acosmium \N \N \N \N \N 6506 N.cataria Nepeta Nepeta cataria catmint,catnip \N \N \N \N 6507 D.namorokensis Dioscorea Dioscorea namorokensis \N \N \N \N \N 6508 \N genus Melanoselinum \N \N \N \N \N 6509 \N subspecies Triteleia ixioides subsp. scabra \N \N \N \N \N 6510 M.fruticulosa Manihot Manihot fruticulosa \N \N \N \N \N 6511 \N subspecies Brassica souliei subsp. amplexicaulis \N \N \N \N \N 6512 P.fulgens Pleurothallis Pleurothallis fulgens \N \N \N \N \N 6513 R.grandifolia Robbrechtia Robbrechtia grandifolia \N \N \N \N \N 6514 I.varia Indigofera Indigofera varia \N \N \N \N \N 6515 A.terniflora Anthyllis Anthyllis terniflora \N \N \N \N \N 6516 \N genus Oestlundia \N \N \N \N \N 6517 H.immaculatus Habranthus Habranthus immaculatus \N \N \N \N \N 6518 S.haussknechtii Silene Silene haussknechtii \N \N \N \N \N 6519 \N subspecies Schizodium obliquum subsp. clavigerum \N \N \N \N \N 6520 A.plantagineum Arnoglossum Arnoglossum plantagineum \N \N \N \N \N 6521 \N genus Sphenoclea \N \N \N \N \N 6522 M.papillosum Monotagma Monotagma papillosum \N \N \N \N \N 6523 W.hooglandii Weinmannia Weinmannia hooglandii \N \N \N \N \N 6524 \N genus Hydrocotyle navelworts,water pennyworts \N \N \N \N 6525 \N genus Toiyabea \N \N \N \N \N 6526 M.utile Marathrum Marathrum utile \N \N \N \N \N 6527 R.macrantha Ruellia Ruellia macrantha \N \N \N \N \N 6528 R.marretii Rosa Rosa marretii \N \N \N \N \N 6529 A.sinensis Annamocarya Annamocarya sinensis \N \N \N \N \N 6530 S.chinensis Schoepfia Schoepfia chinensis \N \N \N \N \N 6531 \N subspecies Calystegia sepium subsp. americana \N \N \N \N \N 6532 C.124-562 Centaurium Centaurium cf. barrelieri Mainz BG 124-562 \N \N \N \N \N 6533 L.junceum Lythrum Lythrum junceum \N \N \N \N \N 6534 D.nudicaule Delphinium Delphinium nudicaule red larkspur \N \N \N \N 6535 A.revoluta Arctotis Arctotis revoluta \N \N \N \N \N 6536 G.hessii Garcinia Garcinia hessii \N \N \N \N \N 6537 A.diffusa Acleisanthes Acleisanthes diffusa \N \N \N \N \N 6538 P.macrorhiza Plantago Plantago macrorhiza \N \N \N \N \N 6539 R.simoneae Rinorea Rinorea simoneae \N \N \N \N \N 6540 P.monticola Polygala Polygala monticola \N \N \N \N \N 6541 \N subspecies Tropaeolum ciliatum subsp. septentrionale \N \N \N \N \N 6542 C.aprica Clausia Clausia aprica \N \N \N \N \N 6543 A.mollifolia Anna Anna mollifolia \N \N \N \N \N 6544 M.hirtum Machaerium Machaerium hirtum \N \N \N \N \N 6545 C.pulchellum Coleonema Coleonema pulchellum \N \N \N \N \N 6546 H.polyneura Hoya Hoya polyneura \N \N \N \N \N 6547 C.thyrsoideum Cestrum Cestrum thyrsoideum \N \N \N \N \N 6548 C.lucorum Carex Carex lucorum \N \N \N \N \N 6549 T.reticulinervis Trichosanthes Trichosanthes reticulinervis \N \N \N \N \N 6550 V.balansana Vitis Vitis balansana \N \N \N \N \N 6551 A.rivetii Arcytophyllum Arcytophyllum rivetii \N \N \N \N \N 6552 \N genus Phoenicophorium \N \N \N \N \N 6553 \N genus Tractema \N \N \N \N \N 6554 \N genus Thymophylla \N \N \N \N \N 6555 B.khasiana Bauhinia Bauhinia khasiana \N \N \N \N \N 6556 C.molle Cypripedium Cypripedium molle \N \N \N \N \N 6557 C.reginae Cypripedium Cypripedium reginae \N \N \N \N \N 6558 S.formosa Sesbania Sesbania formosa \N \N \N \N \N 6559 \N subspecies Vella pseudocytisus subsp. glabrata \N \N \N \N \N 6560 G.erecta Gaultheria Gaultheria erecta \N \N \N \N \N 6561 A.suaedifolia Atraphaxis Atraphaxis suaedifolia \N \N \N \N \N 6562 L.uniflora Lachnaea Lachnaea uniflora \N \N \N \N \N 6563 O.pannosum Oxypetalum Oxypetalum pannosum \N \N \N \N \N 6564 M.tejedensis Moehringia Moehringia tejedensis \N \N \N \N \N 6565 \N varietas Calamovilfa longifolia var. longifolia \N \N \N \N \N 6566 O.lanata Oxalis Oxalis lanata \N \N \N \N \N 6567 C.auricomum Chenopodium Chenopodium auricomum \N \N \N \N \N 6568 B.setulosa Bactris Bactris setulosa \N \N \N \N \N 6569 P.leptocaulis Polygala Polygala leptocaulis \N \N \N \N \N 6570 I.pedunculosa Ilex Ilex pedunculosa \N \N \N \N \N 6571 L.sessiliflora Lappula Lappula sessiliflora \N \N \N \N \N 6572 S.pungens Siebera Siebera pungens \N \N \N \N \N 6573 C.archboldii Cortaderia Cortaderia archboldii \N \N \N \N \N 6574 G.s.n. Grastidium Grastidium sp. Szlachetko s.n. \N \N \N \N \N 6575 S.origanoides Stevia Stevia origanoides \N \N \N \N \N 6576 V.atropurpurea Viscaria Viscaria atropurpurea \N \N \N \N \N 6577 C.fragrans Chamaedorea Chamaedorea fragrans \N \N \N \N \N 6578 C.granulosa Cardamine Cardamine granulosa \N \N \N \N \N 6579 B.94206 Bursera Bursera sp. Qiu 94206 \N \N \N \N \N 6580 T.hirsuta Tylophora Tylophora hirsuta \N \N \N \N \N 6581 A.939 Acridocarpus Acridocarpus sp. Bourobou 939 \N \N \N \N \N 6582 \N family Alismataceae water-plantain family \N \N \N \N 6583 R.patma Rafflesia Rafflesia patma \N \N \N \N \N 6584 B.chrysantha Bromelia Bromelia chrysantha \N \N \N \N \N 6585 \N genus Indotristicha \N \N \N \N \N 6586 \N varietas Corallorhiza maculata var. maculata \N \N \N \N \N 6587 A.massaessylum Allium Allium massaessylum \N \N \N \N \N 6588 O.squarrosa Oxalis Oxalis squarrosa \N \N \N \N \N 6589 P.coriscensis Polystachya Polystachya coriscensis \N \N \N \N \N 6590 R.canescens Rhododendron Rhododendron canescens \N \N \N \N \N 6591 E.stepposa Euphorbia Euphorbia stepposa \N \N \N \N \N 6592 \N genus Picrolemma \N \N \N \N \N 6593 S.glomerata Sipanea Sipanea glomerata \N \N \N \N \N 6594 G.gracilipes Gentiana Gentiana gracilipes \N \N \N \N \N 6595 G.marsoneri Gymnocalycium Gymnocalycium marsoneri \N \N \N \N \N 6596 C.canariense Cicer Cicer canariense \N \N \N \N \N 6597 P.lamarinensis Psychotria Psychotria lamarinensis \N \N \N \N \N 6598 T.laceribractea Trichosanthes Trichosanthes laceribractea \N \N \N \N \N 6599 G.cymosum Geitonoplesium Geitonoplesium cymosum \N \N \N \N \N 6600 \N varietas Datura stramonium var. tatula \N \N \N \N \N 6601 \N genus Greslania \N \N \N \N \N 6602 C.flaccida Cardamine Cardamine flaccida \N \N \N \N \N 6603 \N varietas Isodon lophanthoides var. micranthus \N \N \N \N \N 6604 P.latiflora Philibertia Philibertia latiflora \N \N \N \N \N 6605 C.surinamensis Carapa Carapa surinamensis \N \N \N \N \N 6606 M.kentii Mitrella Mitrella kentii \N \N \N \N \N 6607 C.fauriei Coprosma Coprosma fauriei \N \N \N \N \N 6608 C.santosii Crambe Crambe santosii \N \N \N \N \N 6609 C.lessingii Camphorosma Camphorosma lessingii \N \N \N \N \N 6610 B.brevidentata Banksia Banksia brevidentata \N \N \N \N \N 6611 \N varietas Tillandsia recurvifolia var. subsecundifolia \N \N \N \N \N 6612 P.458 Peponidium Peponidium sp. 6 Razafimandimbison & Andrianatoanina 458 \N \N \N \N \N 6613 O.EE592 Oxalis Oxalis sp. EE592 \N \N \N \N \N 6614 \N genus Leptactina \N \N \N \N \N 6615 A.tenuifolium Acer Acer tenuifolium \N \N \N \N \N 6616 M.sicula Myosotis Myosotis sicula \N \N \N \N \N 6617 M.lucida Melicope Melicope lucida \N \N \N \N \N 6618 \N genus Rhadamanthus \N \N \N \N \N 6619 A.quinti-martii Amelanchier Amelanchier quinti-martii \N \N \N \N \N 6620 C.tetragonolobum Calycogonium Calycogonium tetragonolobum \N \N \N \N \N 6621 \N varietas Lilium brownii var. viridulum \N \N \N \N \N 6622 E.sanguis-christi Erodium Erodium sanguis-christi \N \N \N \N \N 6623 K.286088 Kunzea Kunzea aff. ericoides AK 286088 \N \N \N \N \N 6624 \N genus Petalidium \N \N \N \N \N 6625 C.cerasifolia Calantica Calantica cerasifolia \N \N \N \N \N 6626 C.deserticola Cymopterus Cymopterus deserticola desert springparsley \N \N \N \N 6627 P.sladeniana Prenia Prenia sladeniana \N \N \N \N \N 6628 T.endochrysea Tilia Tilia endochrysea \N \N \N \N \N 6629 A.pycnanthum Acer Acer pycnanthum \N \N \N \N \N 6630 A.maritima Alnus Alnus maritima \N \N \N \N \N 6631 O.chinensis Orchidantha Orchidantha chinensis \N \N \N \N \N 6632 C.lividula Cryptocarya Cryptocarya lividula \N \N \N \N \N 6633 G.camana Geonoma Geonoma camana \N \N \N \N \N 6634 C.purpurascens Cyclamen Cyclamen purpurascens \N \N \N \N \N 6635 G.turkestanorum Gentianella Gentianella turkestanorum \N \N \N \N \N 6636 A.mairei Ancylostemon Ancylostemon mairei \N \N \N \N \N 6637 C.reuteriana Centaurea Centaurea reuteriana \N \N \N \N \N 6638 P.palinuri Primula Primula palinuri \N \N \N \N \N 6639 B.graveolens Bursera Bursera graveolens crispin,palo santo \N \N \N \N 6640 I.fargesii Illicium Illicium fargesii \N \N \N \N \N 6641 A.pinifolia Adesmia Adesmia pinifolia \N \N \N \N \N 6642 S.tenax Sideroxylon Sideroxylon tenax \N \N \N \N \N 6643 \N genus Acridocarpus \N \N \N \N \N 6644 O.polyphlebia Oldfeltia Oldfeltia polyphlebia \N \N \N \N \N 6645 S.alpina Sanguisorba Sanguisorba alpina \N \N \N \N \N 6646 P.oxystachyum Piper Piper oxystachyum \N \N \N \N \N 6647 O.mandrarensis Ormocarpopsis Ormocarpopsis mandrarensis \N \N \N \N \N 6648 C.venezuelanense Chrysophyllum Chrysophyllum venezuelanense \N \N \N \N \N 6649 F.aragonensis Festuca Festuca aragonensis \N \N \N \N \N 6650 \N varietas Achyranthes aspera var. sicula \N \N \N \N \N 6651 C.minor Cobaea Cobaea minor \N \N \N \N \N 6652 P.daemia Pergularia Pergularia daemia \N \N \N \N \N 6653 A.preussii Astragalus Astragalus preussii \N \N \N \N \N 6654 N.linearifolia Navarretia Navarretia linearifolia \N \N \N \N \N 6655 C.mongolica Crucihimalaya Crucihimalaya mongolica \N \N \N \N \N 6656 O.verrucosa Oreoschimperella Oreoschimperella verrucosa \N \N \N \N \N 6657 V.agrestis Veronica Veronica agrestis field speedwell \N \N \N \N 6658 C.monticola Chlorochorion Chlorochorion monticola \N \N \N \N \N 6659 P.revolutum Pittosporum Pittosporum revolutum \N \N \N \N \N 6660 P.schlechteri Prismatocarpus Prismatocarpus schlechteri \N \N \N \N \N 6661 T.persicariifolia Tabernaemontana Tabernaemontana persicariifolia \N \N \N \N \N 6662 S.selleana Solenandra Solenandra selleana \N \N \N \N \N 6663 S.canescens Syncarpha Syncarpha canescens \N \N \N \N \N 6664 \N varietas Pediomelum aromaticum var. barnebyi \N \N \N \N \N 6665 H.heterophylla Hanseniella Hanseniella heterophylla \N \N \N \N \N 6666 E.minima Euphrasia Euphrasia minima \N \N \N \N \N 6667 H.pedunculosum Herpetospermum Herpetospermum pedunculosum \N \N \N \N \N 6668 P.lutea Pinguicula Pinguicula lutea yellow butterwort \N \N \N \N 6669 P.modesta Phalaenopsis Phalaenopsis modesta \N \N \N \N \N 6670 D.graminifolia Drosera Drosera graminifolia \N \N \N \N \N 6671 A.coluteocarpus Astragalus Astragalus coluteocarpus \N \N \N \N \N 6672 L.sula Liparis Liparis sula \N \N \N \N \N 6673 J.sikkimensis Juncus Juncus sikkimensis \N \N \N \N \N 6674 A.lappa Arctium Arctium lappa great burdock \N \N \N \N 6675 R.mogollonicum Ribes Ribes mogollonicum \N \N \N \N \N 6676 \N genus Gymnopogon \N \N \N \N \N 6677 T.passerina Thymelaea Thymelaea passerina spurge-flax \N \N \N \N 6678 A.sciophilum Astrocaryum Astrocaryum sciophilum \N \N \N \N \N 6679 K.stricta Kniphofia Kniphofia stricta \N \N \N \N \N 6680 C.crassinervis Cliffortia Cliffortia crassinervis \N \N \N \N \N 6681 P.fruticosa Phlomis Phlomis fruticosa Jerusalem sage \N \N \N \N 6682 S.salzmannii Sida Sida salzmannii \N \N \N \N \N 6683 \N varietas Cuscuta racemosa var. miniata \N \N \N \N \N 6684 C.adalinae Cynanchum Cynanchum adalinae \N \N \N \N \N 6685 M.dura Merxmuellera Merxmuellera dura \N \N \N \N \N 6686 D.fulva Dicrastylis Dicrastylis fulva \N \N \N \N \N 6687 T.atropurpurea Trichoglottis Trichoglottis atropurpurea \N \N \N \N \N 6688 P.hawaiiensis Psychotria Psychotria hawaiiensis \N \N \N \N \N 6689 V.monbeigii Viola Viola monbeigii \N \N \N \N \N 6690 L.echinotholus Lithocarpus Lithocarpus echinotholus \N \N \N \N \N 6691 C.JID-2010 Chusquea Chusquea aff. subulata JID-2010 \N \N \N \N \N 6692 N.paleacea Nebelia Nebelia paleacea \N \N \N \N \N 6693 T.stylopodifera Trichosanthes Trichosanthes stylopodifera \N \N \N \N \N 6694 G.clivorum Gilia Gilia clivorum \N \N \N \N \N 6695 \N genus Abolboda \N \N \N \N \N 6696 P.raupingensis Photinia Photinia raupingensis \N \N \N \N \N 6697 C.intaminatum Cyclamen Cyclamen intaminatum \N \N \N \N \N 6698 P.longifolium Pachystroma Pachystroma longifolium \N \N \N \N \N 6699 \N family Chloranthaceae \N \N \N \N \N 6700 D.lebeckioides Dichilus Dichilus lebeckioides \N \N \N \N \N 6701 \N genus Phtheirospermum \N \N \N \N \N 6702 S.acaulis Sarcoglottis Sarcoglottis acaulis \N \N \N \N \N 6703 K.foliatum Kalidium Kalidium foliatum \N \N \N \N \N 6704 G.dilatata Grevillea Grevillea dilatata \N \N \N \N \N 6705 O.GMS-2005 Orobanche Orobanche cf. tunetana GMS-2005 \N \N \N \N \N 6706 \N varietas Phyllostachys glauca var. variabilis \N \N \N \N \N 6707 N.guineensis Nymphaea Nymphaea guineensis \N \N \N \N \N 6708 \N genus Norantea \N \N \N \N \N 6709 \N genus Anisomeles \N \N \N \N \N 6710 E.kachinensis Erigeron Erigeron kachinensis \N \N \N \N \N 6711 \N genus Tricliceras \N \N \N \N \N 6712 \N genus Brosimum \N \N \N \N \N 6713 B.erucago Bunias Bunias erucago \N \N \N \N \N 6714 L.rigidum Lomatium Lomatium rigidum Big Pine biscuitroot \N \N \N \N 6715 \N varietas Ourisia macrophylla var. crosbyi \N \N \N \N \N 6716 P.Nepal Pilea Pilea sp. Nepal \N \N \N \N \N 6717 \N genus Neptunia \N \N \N \N \N 6718 \N subspecies Lotononis involucrata subsp. peduncularis \N \N \N \N \N 6719 O.reflexa Olmeca Olmeca reflexa \N \N \N \N \N 6720 R.delavayi Rhododendron Rhododendron delavayi \N \N \N \N \N 6721 \N genus Peraxilla \N \N \N \N \N 6722 P.xiangchengensis Pedicularis Pedicularis xiangchengensis \N \N \N \N \N 6723 B.pseudodanthoniae Bromus Bromus pseudodanthoniae \N \N \N \N \N 6724 M.leuconeura Maranta Maranta leuconeura \N \N \N \N \N 6725 \N subspecies Ononis antennata subsp. antennata \N \N \N \N \N 6726 P.australis Posidonia Posidonia australis \N \N \N \N \N 6727 A.pungens Armeria Armeria pubigera x Armeria pungens \N \N \N \N \N 6728 S.tamnifolium Sicydium Sicydium tamnifolium \N \N \N \N \N 6729 A.BAC-2010 unclassified Asteraceae Asteraceae sp. B1 BAC-2010 \N \N \N \N \N 6730 \N genus Corydalis \N \N \N \N \N 6731 S.arenarius Senecio Senecio arenarius \N \N \N \N \N 6732 K.brevifolia Kyllinga Kyllinga brevifolia \N \N \N \N \N 6733 R.atuntsuensis Rhodiola Rhodiola atuntsuensis \N \N \N \N \N 6734 S.insularum Schleinitzia Schleinitzia insularum \N \N \N \N \N 6735 C.cartwrightianus Crocus Crocus cartwrightianus \N \N \N \N \N 6736 A.balsamiferum Aeonium Aeonium balsamiferum \N \N \N \N \N 6737 E.glaber Euonymus Euonymus glaber \N \N \N \N \N 6738 \N varietas Aechmea servitensis var. exigua \N \N \N \N \N 6739 \N varietas Dracaena reflexa var. nervosa \N \N \N \N \N 6740 \N subtribe Bletiinae \N \N \N \N \N 6741 M.tomentosum Monotagma Monotagma tomentosum \N \N \N \N \N 6742 B.tobiracola Balanophora Balanophora tobiracola \N \N \N \N \N 6743 N.schubertii Neoregelia Neoregelia schubertii \N \N \N \N \N 6744 E.hieracifolium Erysimum Erysimum hieracifolium \N \N \N \N \N 6745 E.ferox Euryale Euryale ferox \N \N \N \N \N 6746 P.littoralis Petunia Petunia littoralis \N \N \N \N \N 6747 \N genus Dimerostemma \N \N \N \N \N 6748 E.siamensis Eulalia Eulalia siamensis \N \N \N \N \N 6749 \N genus Chiliadenus \N \N \N \N \N 6750 \N genus Winika \N \N \N \N \N 6751 T.JS5129 unclassified Taraxacum Taraxacum (sect. Sikimensia) sp. JS5129 \N \N \N \N \N 6752 T.vaseyi Thelypodiopsis Thelypodiopsis vaseyi \N \N \N \N \N 6753 \N subspecies Tidestromia lanuginosa subsp. eliassoniana \N \N \N \N \N 6754 M.duartei Mandevilla Mandevilla duartei \N \N \N \N \N 6755 \N genus Syncalathium \N \N \N \N \N 6756 A.farctum Allium Allium farctum \N \N \N \N \N 6757 G.nevadensis Gagea Gagea nevadensis \N \N \N \N \N 6758 C.altaica Chamaerhodos Chamaerhodos altaica \N \N \N \N \N 6759 A.paxii Acer Acer paxii \N \N \N \N \N 6760 M.strigillosa Mimosa Mimosa strigillosa \N \N \N \N \N 6761 M.flava Maxillaria Maxillaria flava \N \N \N \N \N 6762 P.sandsii Papuacalia Papuacalia sandsii \N \N \N \N \N 6763 \N varietas Castanea pumila var. pumila \N \N \N \N \N 6764 H.brevipedicellatus Heteropanax Heteropanax brevipedicellatus \N \N \N \N \N 6765 A.cohune Attalea Attalea cohune \N \N \N \N \N 6766 O.gracilis Orobanche Orobanche gracilis \N \N \N \N \N 6767 T.carlos-hankii Tillandsia Tillandsia carlos-hankii \N \N \N \N \N 6768 P.giraldii Pleurospermum Pleurospermum giraldii \N \N \N \N \N 6769 L.naviculifolia Lachnaea Lachnaea naviculifolia \N \N \N \N \N 6770 F.yulongshanensis Fargesia Fargesia yulongshanensis \N \N \N \N \N 6771 C.pratensis Cardamine Cardamine pratensis cuckoo flower \N \N \N \N 6772 C.officinalis Copaifera Copaifera officinalis \N \N \N \N \N 6773 S.platyphylla Shafera Shafera platyphylla \N \N \N \N \N 6774 W.repanda Wolffiella Wolffiella repanda \N \N \N \N \N 6775 C.sinclairii Crassula Crassula sinclairii \N \N \N \N \N 6776 M.proboscidea Maxillaria Maxillaria proboscidea \N \N \N \N \N 6777 L.sativa Lactuca Lactuca sativa cultivated lettuce,garden lettuce \N \N \N \N 6778 P.mantiqueirensis Petunia Petunia mantiqueirensis \N \N \N \N \N 6779 F.rigida Ficinia Ficinia rigida \N \N \N \N \N 6780 D.cylindrostachya Dienia Dienia cylindrostachya \N \N \N \N \N 6781 M.phoenicis Machilus Machilus phoenicis \N \N \N \N \N 6782 C.SH-2010 Cajanus Cajanus sp. SH-2010 \N \N \N \N \N 6783 P.melastomoides Piper Piper melastomoides \N \N \N \N \N 6784 E.engelmannii Eleocharis Eleocharis engelmannii \N \N \N \N \N 6785 C.africana Commelina Commelina africana \N \N \N \N \N 6786 R.serrata Rosularia Rosularia serrata \N \N \N \N \N 6787 E.denisii Euphorbia Euphorbia denisii \N \N \N \N \N 6788 C.brachyacantha Crataegus Crataegus brachyacantha \N \N \N \N \N 6789 C.grandiflora Chaetoseris Chaetoseris grandiflora \N \N \N \N \N 6790 I.madagascariensis Illigera Illigera madagascariensis \N \N \N \N \N 6791 L.capuronii Landiopsis Landiopsis capuronii \N \N \N \N \N 6792 A.secunda Arachnothryx Arachnothryx secunda \N \N \N \N \N 6793 C.involucrata Campanula Campanula involucrata \N \N \N \N \N 6794 \N genus Tetradiclis \N \N \N \N \N 6795 P.coronata Protea Protea coronata \N \N \N \N \N 6796 \N genus Symphyllophyton \N \N \N \N \N 6797 D.colombianum Dasyphyllum Dasyphyllum colombianum \N \N \N \N \N 6798 P.fluvialis Portulaca Portulaca fluvialis \N \N \N \N \N 6799 G.bergii Gagea Gagea bergii \N \N \N \N \N 6800 W.serpyllifolia Woehleria Woehleria serpyllifolia \N \N \N \N \N 6801 C.superba Cordia Cordia superba \N \N \N \N \N 6802 P.excelsa Picrasma Picrasma excelsa \N \N \N \N \N 6803 T.longipes Tridentea Tridentea longipes \N \N \N \N \N 6804 G.tubulosa Gurania Gurania tubulosa \N \N \N \N \N 6805 \N genus Microlobius \N \N \N \N \N 6806 E.lansdowneana Eucalyptus Eucalyptus lansdowneana \N \N \N \N \N 6807 A.viridis Anigozanthos Anigozanthos viridis \N \N \N \N \N 6808 A.diegoense Achnatherum Achnatherum diegoense \N \N \N \N \N 6809 M.backebergiana Mammillaria Mammillaria backebergiana \N \N \N \N \N 6810 D.discolor Datura Datura discolor \N \N \N \N \N 6811 M.flumensevera Mentzelia Mentzelia flumensevera \N \N \N \N \N 6812 \N subspecies Circaea alpina subsp. imaicola \N \N \N \N \N 6813 D.capuronii Deuteromallotus Deuteromallotus capuronii \N \N \N \N \N 6814 I.longimucronata Indigofera Indigofera longimucronata \N \N \N \N \N 6815 H.imbricata Hoya Hoya imbricata \N \N \N \N \N 6816 S.hopeifolia Shorea Shorea hopeifolia \N \N \N \N \N 6817 V.epipsila Viola Viola epipsila \N \N \N \N \N 6818 S.sinensis Symphoricarpos Symphoricarpos sinensis \N \N \N \N \N 6819 P.343 Phyla Phyla sp. Sosa 343 \N \N \N \N \N 6820 C.bicolorum Corycium Corycium bicolorum \N \N \N \N \N 6821 A.guttata Arnebia Arnebia guttata \N \N \N \N \N 6822 D.albertina Draba Draba albertina slender draba \N \N \N \N 6823 F.striata Fritillaria Fritillaria striata \N \N \N \N \N 6824 P.bracteata Pinckneya Pinckneya bracteata \N \N \N \N \N 6825 E.melanocarpa Eleocharis Eleocharis melanocarpa \N \N \N \N \N 6826 \N genus Rhynchoglossum \N \N \N \N \N 6827 Z.dayanum Zootrophion Zootrophion dayanum \N \N \N \N \N 6828 S.recordiana Sterculia Sterculia recordiana \N \N \N \N \N 6829 P.ruscifolia Phyllonoma Phyllonoma ruscifolia \N \N \N \N \N 6830 C.ciliolata Cassytha Cassytha ciliolata \N \N \N \N \N 6831 P.hebeclada Polygala Polygala hebeclada \N \N \N \N \N 6832 \N genus Callisia \N \N \N \N \N 6833 S.hollandii Senecio Senecio hollandii \N \N \N \N \N 6834 M.porteri Muhlenbergia Muhlenbergia porteri \N \N \N \N \N 6835 R.dregeana Raspalia Raspalia dregeana \N \N \N \N \N 6836 A.roseana Angelica Angelica roseana \N \N \N \N \N 6837 E.schlechtendalii Euphorbia Euphorbia schlechtendalii \N \N \N \N \N 6838 L.citroides Leptaulus Leptaulus citroides \N \N \N \N \N 6839 C.waterloti Cyperus Cyperus waterloti \N \N \N \N \N 6840 O.aymoninii Ophrys Ophrys aymoninii \N \N \N \N \N 6841 P.anomalum Ptychosema Ptychosema anomalum \N \N \N \N \N 6842 \N subspecies Armeria arenaria subsp. segoviensis \N \N \N \N \N 6843 \N varietas Carex fissa var. aristata \N \N \N \N \N 6844 F.fischeri Ficus Ficus fischeri \N \N \N \N \N 6845 C.effusa Chaetopappa Chaetopappa effusa \N \N \N \N \N 6846 A.parvifolia Amphithalea Amphithalea parvifolia \N \N \N \N \N 6847 \N genus Corytoplectus \N \N \N \N \N 6848 U.nana Utricularia Utricularia nana \N \N \N \N \N 6849 E.amplexicaulis Echinops Echinops amplexicaulis \N \N \N \N \N 6850 \N genus Cymophyllus \N \N \N \N \N 6851 P.payettensis Penstemon Penstemon payettensis \N \N \N \N \N 6852 \N subfamily Acanthoideae \N \N \N \N \N 6853 S.remotiserrata Schima Schima remotiserrata \N \N \N \N \N 6854 C.rosulatum Carpesium Carpesium rosulatum \N \N \N \N \N 6855 L.rosella Lippia Lippia rosella \N \N \N \N \N 6856 L.arenicola Lycium Lycium arenicola \N \N \N \N \N 6857 C.limicola Cordia Cordia limicola \N \N \N \N \N 6858 P.conjugatum Paspalum Paspalum conjugatum \N \N \N \N \N 6859 C.erythraea Centaurium Centaurium erythraea \N \N \N \N \N 6860 \N varietas Elaeocarpus sylvestris var. pachycarpus \N \N \N \N \N 6861 S.PB2C0105 Syzygium Syzygium sp. PB2C0105 \N \N \N \N \N 6862 C.moggii Combretum Combretum moggii \N \N \N \N \N 6863 E.asiatica Epigaea Epigaea asiatica \N \N \N \N \N 6864 T.hodgsonii Talauma Talauma hodgsonii \N \N \N \N \N 6865 B.mexicana Bactris Bactris mexicana \N \N \N \N \N 6866 T.drummondii Tarenna Tarenna drummondii \N \N \N \N \N 6867 O.lubricum Oligostachyum Oligostachyum lubricum \N \N \N \N \N 6868 I.oligandrum Illicium Illicium oligandrum \N \N \N \N \N 6869 T.nanum Trifolium Trifolium nanum \N \N \N \N \N 6870 P.picta Pulmonaria Pulmonaria picta \N \N \N \N \N 6871 A.mildbraedii Aframomum Aframomum mildbraedii \N \N \N \N \N 6872 S.stenotomum Solanum Solanum phureja x Solanum stenotomum \N \N \N \N \N 6873 H.argophyllus Helianthus Helianthus annuus x Helianthus argophyllus \N \N \N \N \N 6874 M.cyphocarpa Mouriri Mouriri cyphocarpa \N \N \N \N \N 6875 P.cirsiifolia Perezia Perezia cirsiifolia \N \N \N \N \N 6876 S.campestre Stenachaenium Stenachaenium campestre \N \N \N \N \N 6877 H.variabilis Hyparrhenia Hyparrhenia variabilis \N \N \N \N \N 6878 V.pauciramosa Hebe Veronica pauciramosa \N \N \N \N \N 6879 P.floresensis Phalaenopsis Phalaenopsis floresensis \N \N \N \N \N 6880 M.pungens Metalasia Metalasia pungens \N \N \N \N \N 6881 S.insolens Saxifraga Saxifraga insolens \N \N \N \N \N 6882 P.hastiformis Parasenecio Parasenecio hastiformis \N \N \N \N \N 6883 A.burkartii Arachis Arachis burkartii \N \N \N \N \N 7661 \N genus Elephantorrhiza \N \N \N \N \N 6884 G.palmatum Glaucidium Glaucidium palmatum \N \N \N \N \N 6885 G.polyantha Gilia Gilia polyantha \N \N \N \N \N 6886 A.campanulatum Allium Allium campanulatum \N \N \N \N \N 6887 M.pinnatipartita Munnozia Munnozia pinnatipartita \N \N \N \N \N 6888 H.hookerianum Heracleum Heracleum hookerianum \N \N \N \N \N 6889 \N genus Oreochloa \N \N \N \N \N 6890 G.howellii Grindelia Grindelia howellii \N \N \N \N \N 6891 \N varietas Hepatica nobilis var. pubescens \N \N \N \N \N 6892 L.rosea Lachenalia Lachenalia rosea \N \N \N \N \N 6893 T.scottellii Tridactyle Tridactyle scottellii \N \N \N \N \N 6894 T.vernix Toxicodendron Toxicodendron vernix poison ash,poison sumac \N \N \N \N 6895 D.UWG Dianthus Dianthus sp. UWG \N \N \N \N \N 6896 C.polystachys Chlorophytum Chlorophytum polystachys \N \N \N \N \N 6897 C.salicifolius Cotoneaster Cotoneaster salicifolius \N \N \N \N \N 6898 L.cumulicola Lupinus Lupinus cumulicola \N \N \N \N \N 6899 A.eichlerianum Angraecum Angraecum eichlerianum \N \N \N \N \N 6900 S.lanceolatum Saccellium Saccellium lanceolatum \N \N \N \N \N 6901 A.rhagodioides Atriplex Atriplex rhagodioides silver saltbush \N \N \N \N 6902 P.crista-galli Polylepis Polylepis crista-galli \N \N \N \N \N 6903 S.lancifolia Schisandra Schisandra lancifolia \N \N \N \N \N 6904 A.chinense Amesiodendron Amesiodendron chinense \N \N \N \N \N 6905 E.muticus Elionurus Elionurus muticus \N \N \N \N \N 6906 E.pachyloma Eucalyptus Eucalyptus pachyloma \N \N \N \N \N 6907 P.megalopus Pseuduvaria Pseuduvaria megalopus \N \N \N \N \N 6908 P.fasciculare Pseudosorghum Pseudosorghum fasciculare \N \N \N \N \N 6909 H.rhombea Hedera Hedera rhombea \N \N \N \N \N 6910 C.hiemalis Conostylis Conostylis hiemalis \N \N \N \N \N 6911 \N genus Leucocyclus \N \N \N \N \N 6912 M.gracilipes Mangifera Mangifera gracilipes \N \N \N \N \N 6913 \N genus Fiebrigiella \N \N \N \N \N 6914 \N genus Rhuacophila \N \N \N \N \N 6915 T.nilotica Turraea Turraea nilotica \N \N \N \N \N 6916 \N genus Adenopeltis \N \N \N \N \N 6917 M.gayanum Misodendrum Misodendrum gayanum \N \N \N \N \N 6918 F.stigmatoloba Fadogiella Fadogiella stigmatoloba \N \N \N \N \N 6919 E.tiegeliana Echinopsis Echinopsis tiegeliana \N \N \N \N \N 6920 V.spectabilis Hebe Veronica spectabilis \N \N \N \N \N 6921 P.biseriata Pseudorlaya Pseudorlaya biseriata \N \N \N \N \N 6922 C.filipendulum Chlorophytum Chlorophytum filipendulum \N \N \N \N \N 6923 H.microcephalus Helianthus Helianthus microcephalus \N \N \N \N \N 6924 B.shaferi Bonellia Bonellia shaferi \N \N \N \N \N 6925 C.J148 Centaurea Centaurea sp. J148 \N \N \N \N \N 6926 \N genus Stenotus mock goldenweeds \N \N \N \N 6927 \N genus Briegeria \N \N \N \N \N 6928 I.gesnerioides Iochroma Iochroma gesnerioides \N \N \N \N \N 6929 G.melanoptera Grubovia Grubovia melanoptera \N \N \N \N \N 6930 A.104/99 Asarina Asarina sp. 104/99 \N \N \N \N \N 6931 S.gazulensis Silene Silene gazulensis \N \N \N \N \N 6932 \N genus Trithrinax \N \N \N \N \N 6933 L.concinna Livistona Livistona concinna \N \N \N \N \N 6934 C.crinita Carex Carex crinita \N \N \N \N \N 6935 E.lundellii Eleocharis Eleocharis lundellii \N \N \N \N \N 6936 C.sylvatica Carex Carex sylvatica \N \N \N \N \N 6937 P.podlechii Passiflora Passiflora podlechii \N \N \N \N \N 6938 P.pumila Puccinellia Puccinellia pumila \N \N \N \N \N 6939 B.coloratus Bromus Bromus coloratus \N \N \N \N \N 6940 H.nujiangense Holcoglossum Holcoglossum nujiangense \N \N \N \N \N 6941 E.setiloba Euphorbia Euphorbia setiloba \N \N \N \N \N 6942 A.lanata Adesmia Adesmia lanata \N \N \N \N \N 6943 \N subspecies Cassia javanica subsp. nodosa \N \N \N \N \N 6944 S.maritima Stachys Stachys maritima \N \N \N \N \N 6945 M.comorensis Mimusops Mimusops comorensis \N \N \N \N \N 6946 H.decapetalus Helianthus Helianthus decapetalus \N \N \N \N \N 6947 S.mellifera Salvia Salvia mellifera \N \N \N \N \N 6948 P.dauciodora Pilea Pilea dauciodora \N \N \N \N \N 6949 I.megathyrsus Isodon Isodon megathyrsus \N \N \N \N \N 6950 J.membranaceus Juncus Juncus membranaceus \N \N \N \N \N 6951 C.trivalvis Cedrelopsis Cedrelopsis trivalvis \N \N \N \N \N 6952 A.bromoides Achnatherum Achnatherum bromoides \N \N \N \N \N 6953 \N genus Osteomeles \N \N \N \N \N 6954 P.gentryi Platanus Platanus gentryi \N \N \N \N \N 6955 D.trifoliata Dalechampia Dalechampia trifoliata \N \N \N \N \N 6956 S.palmifolium Sisyrinchium Sisyrinchium palmifolium \N \N \N \N \N 6957 \N varietas Potentilla rhyolitica var. rhyolitica \N \N \N \N \N 6958 N.guadalupensis Najas Najas guadalupensis \N \N \N \N \N 6959 C.mannii Cucumeropsis Cucumeropsis mannii white-seed melon \N \N \N \N 6960 E.picta Echinochloa Echinochloa picta \N \N \N \N \N 6961 E.compressum Eriocaulon Eriocaulon compressum \N \N \N \N \N 6962 A.ulei Aiphanes Aiphanes ulei \N \N \N \N \N 6963 P.hirtiflora Passiflora Passiflora hirtiflora \N \N \N \N \N 6964 \N genus Rostrinucula \N \N \N \N \N 6965 L.campanulatum Linum Linum campanulatum \N \N \N \N \N 6966 Y.16107 Yucca Yucca sp. Quagliariello 16107 \N \N \N \N \N 6967 A.rhodantha Arrojadoa Arrojadoa rhodantha \N \N \N \N \N 6968 O.guthrieae Oscularia Oscularia guthrieae \N \N \N \N \N 6969 A.joubertiana Aspalathus Aspalathus joubertiana \N \N \N \N \N 6970 \N subspecies Echinops sphaerocephalus subsp. albidus \N \N \N \N \N 6971 H.suavissima Heliophila Heliophila suavissima gousblom \N \N \N \N 6972 P.banksiensis Puccinellia Puccinellia banksiensis \N \N \N \N \N 6973 A.maingayi Actinodaphne Actinodaphne maingayi \N \N \N \N \N 6974 A.formosanus Anoectochilus Anoectochilus formosanus \N \N \N \N \N 6975 D.carbonaria Dicoma Dicoma carbonaria \N \N \N \N \N 6976 R.boliviana Randia Randia boliviana \N \N \N \N \N 6977 \N genus Ada \N \N \N \N \N 6978 C.cuneata Chesneya Chesneya cuneata \N \N \N \N \N 6979 T.subciliata Tococa Tococa subciliata \N \N \N \N \N 6980 C.popovii Corydalis Corydalis popovii \N \N \N \N \N 8537 \N genus Pigafetta \N \N \N \N \N 6981 G.tetragonophyllum Gastrolobium Gastrolobium tetragonophyllum \N \N \N \N \N 6982 L.ocreata Lachemilla Lachemilla ocreata \N \N \N \N \N 6983 C.pondii Cochemiea Cochemiea pondii \N \N \N \N \N 6984 P.P119 Physalis Physalis sp. P119 \N \N \N \N \N 6985 A.boonei Alstonia Alstonia boonei \N \N \N \N \N 6986 \N genus Helcia \N \N \N \N \N 6987 P.involucrata Primula Primula involucrata \N \N \N \N \N 6988 S.gracilicaulis Silene Silene gracilicaulis \N \N \N \N \N 6989 P.pacorensis Psychotria Psychotria pacorensis \N \N \N \N \N 6990 K.nepalensis Kobresia Kobresia nepalensis \N \N \N \N \N 6991 A.pinnatifidum Aethephyllum Aethephyllum pinnatifidum \N \N \N \N \N 6992 L.JA-2007 Linaria Linaria sp. JA-2007 \N \N \N \N \N 6993 W.arguta Weinmannia Weinmannia arguta \N \N \N \N \N 6994 S.2982 Stilpnogyne Stilpnogyne sp. Manning 2982 \N \N \N \N \N 6995 C.monandrum Calyptridium Calyptridium monandrum \N \N \N \N \N 6996 S.jambos Syzygium Syzygium jambos Malabar-plum,jambos,rose-apple \N \N \N \N 6997 P.lutea Paederota Paederota lutea \N \N \N \N \N 6998 N.rafflesiana Nepenthes Nepenthes rafflesiana \N \N \N \N \N 6999 \N subspecies Erica regia subsp. mariae \N \N \N \N \N 7000 T.503 Triainolepis Triainolepis sp. Razafimandimbison & Bremer 503 \N \N \N \N \N 7001 T.argutum Trifolium Trifolium argutum \N \N \N \N \N 7002 P.hirsutus Pogostemon Pogostemon hirsutus \N \N \N \N \N 7003 P.myrtillifolium Polygonum Polygonum myrtillifolium \N \N \N \N \N 7004 B.lehmannii Bomarea Bomarea lehmannii \N \N \N \N \N 7005 L.santarosanus Lonchocarpus Lonchocarpus santarosanus \N \N \N \N \N 7006 \N genus Aglaonema \N \N \N \N \N 7007 C.rubra Cosmelia Cosmelia rubra \N \N \N \N \N 7008 C.piperitum Clinopodium Clinopodium piperitum \N \N \N \N \N 7009 P.aparinoides Polygala Polygala aparinoides \N \N \N \N \N 7010 S.sciodaphyllum Schefflera Schefflera sciodaphyllum \N \N \N \N \N 7011 S.excelsa Smilax Smilax excelsa \N \N \N \N \N 7012 L.leucophyllus Lupinus Lupinus leucophyllus woolly-leaf lupine \N \N \N \N 7013 I.tasmanica Isophysis Isophysis tasmanica \N \N \N \N \N 7014 A.carolinianus Ampelaster Ampelaster carolinianus \N \N \N \N \N 7015 G.sturtianum Gossypium Gossypium sturtianum \N \N \N \N \N 7016 S.hougasii Solanum Solanum hougasii \N \N \N \N \N 7017 D.articulata Discaria Discaria articulata \N \N \N \N \N 7018 R.praecox Roscoea Roscoea praecox \N \N \N \N \N 7019 S.tristis Salpichroa Salpichroa tristis \N \N \N \N \N 7020 \N subspecies Anthyllis vulneraria subsp. weldeniana \N \N \N \N \N 7021 \N genus Dionaea \N \N \N \N \N 7022 A.perennis Asclepias Asclepias perennis \N \N \N \N \N 7023 G.brachyceras Goodyera Goodyera brachyceras \N \N \N \N \N 7024 S.woodsonii Solanum Solanum woodsonii \N \N \N \N \N 7025 H.nigripetalus Homalocarpus Homalocarpus nigripetalus \N \N \N \N \N 7026 C.denticulata Cuphea Cuphea denticulata \N \N \N \N \N 7027 \N genus Bostrychanthera \N \N \N \N \N 7028 M.tessmanniana Metteniusa Metteniusa tessmanniana \N \N \N \N \N 7029 E.fauriei Euphorbia Euphorbia fauriei \N \N \N \N \N 7030 A.taliscana Aristolochia Aristolochia taliscana \N \N \N \N \N 7031 C.atriplicifolium Cycloloma Cycloloma atriplicifolium \N \N \N \N \N 7032 \N genus Phormium \N \N \N \N \N 7033 C.filiformis Chionanthus Chionanthus filiformis \N \N \N \N \N 7034 P.vera Pistacia Pistacia vera pistachio \N \N \N \N 7035 C.jamaicense Campylocentrum Campylocentrum jamaicense \N \N \N \N \N 7036 \N subspecies Montanoa tomentosa subsp. xanthiifolia \N \N \N \N \N 7037 C.gmelinii Carex Carex gmelinii \N \N \N \N \N 7038 P.enysii Pachycladon Pachycladon enysii \N \N \N \N \N 7039 C.serpenticola Carex Carex serpenticola \N \N \N \N \N 7040 A.siskiyouense Allium Allium siskiyouense \N \N \N \N \N 7041 C.aspera Crepis Crepis aspera \N \N \N \N \N 7042 S.reptans Sidalcea Sidalcea reptans \N \N \N \N \N 7043 A.ericifolia Aspalathus Aspalathus ericifolia \N \N \N \N \N 7044 C.waimeae Coprosma Coprosma waimeae \N \N \N \N \N 7045 \N genus Baimashania \N \N \N \N \N 7046 B.33 Begonia Begonia sp. Forrest 33 \N \N \N \N \N 7047 C.lewisii Clarkia Clarkia lewisii \N \N \N \N \N 7048 O.oporina Olearia Olearia oporina \N \N \N \N \N 7049 A.microcarpa Arenga Arenga microcarpa \N \N \N \N \N 7050 D.congestiflora Dalbergia Dalbergia congestiflora \N \N \N \N \N 7051 A.mala Aframomum Aframomum mala \N \N \N \N \N 7052 R.pachyrrhizus Ranunculus Ranunculus pachyrrhizus \N \N \N \N \N 7053 \N genus Pteroceltis \N \N \N \N \N 7054 M.carstiense Melampyrum Melampyrum carstiense \N \N \N \N \N 7055 C.vesicaria Cysticapnos Cysticapnos vesicaria \N \N \N \N \N 7056 C.acuminata Cymaria Cymaria acuminata \N \N \N \N \N 7057 P.kotovi Polygonum Polygonum kotovi \N \N \N \N \N 7058 \N no rank Saccharum hybrid cultivar ROC22 \N \N \N \N \N 7059 C.rostrata Cuscuta Cuscuta rostrata \N \N \N \N \N 7060 \N genus Hakea \N \N \N \N \N 7061 P.modestum Paspalum Paspalum modestum \N \N \N \N \N 7062 I.fluviatilis Isotoma Isotoma fluviatilis \N \N \N \N \N 7063 E.'albiflora' Etlingera Etlingera sp. nov. 'albiflora' \N \N \N \N \N 7064 R.lutescens Rhododendron Rhododendron lutescens \N \N \N \N \N 7065 H.macgregori Halesia Halesia macgregori \N \N \N \N \N 7066 R.tenuicaulis Raoulia Raoulia tenuicaulis \N \N \N \N \N 7067 U.lucida Uvaria Uvaria lucida \N \N \N \N \N 7068 C.exasperata Chusquea Chusquea exasperata \N \N \N \N \N 7069 K.corneri Kayea Kayea corneri \N \N \N \N \N 7070 M.stevensii Malpighia Malpighia stevensii \N \N \N \N \N 7071 S.arguta Sanicula Sanicula arguta sharptooth blacksnakeroot \N \N \N \N 7072 \N genus Zizania wild rice \N \N \N \N 7073 B.dolichocarpus Bromus Bromus dolichocarpus \N \N \N \N \N 7074 P.natalensis Phylica Phylica natalensis \N \N \N \N \N 7075 B.NFL-2003-2 Boesenbergia Boesenbergia sp. NFL-2003-2 \N \N \N \N \N 7076 P.aneityensis Psychotria Psychotria aneityensis \N \N \N \N \N 8830 \N genus Phaenocoma \N \N \N \N \N 7077 C.prenanthoides Campanula Campanula prenanthoides \N \N \N \N \N 7078 G.fecunda Globba Globba fecunda \N \N \N \N \N 7079 B.ruboides Begonia Begonia ruboides \N \N \N \N \N 7080 E.oerstediana Euphorbia Euphorbia oerstediana \N \N \N \N \N 7081 C.speciosa Callerya Callerya speciosa \N \N \N \N \N 7082 S.nigricans Schoenus Schoenus nigricans \N \N \N \N \N 7083 A.agglutinata Allotoonia Allotoonia agglutinata \N \N \N \N \N 7084 D.rhombifolia Diospyros Diospyros rhombifolia \N \N \N \N \N 7085 E.reichardii Erodium Erodium reichardii \N \N \N \N \N 7086 \N varietas Ceanothus tomentosus var. tomentosus \N \N \N \N \N 7087 R.multicolor Rhododendron Rhododendron multicolor \N \N \N \N \N 7088 M.lhou Morus Morus lhou \N \N \N \N \N 7089 \N tribe Danaideae \N \N \N \N \N 7090 C.yemenensis Ceropegia Ceropegia yemenensis \N \N \N \N \N 7091 V.aridicola Vigna Vigna aridicola \N \N \N \N \N 7092 H.littorea Hemerocallis Hemerocallis littorea \N \N \N \N \N 7093 T.spathulata Thompsonella Thompsonella spathulata \N \N \N \N \N 7094 T.diversifolium Typhonium Typhonium diversifolium \N \N \N \N \N 7095 T.angulata Thunbergia Thunbergia angulata \N \N \N \N \N 7096 V.acuminata Viola Viola acuminata \N \N \N \N \N 7097 T.maximum Tordylium Tordylium maximum \N \N \N \N \N 7098 R.cautleyoides Roscoea Roscoea cautleyoides \N \N \N \N \N 7099 P.cavaleriei Peperomia Peperomia cavaleriei \N \N \N \N \N 7100 \N subspecies Epilobium billardiereanum subsp. cinereum \N \N \N \N \N 7101 T.epiphytica Themistoclesia Themistoclesia epiphytica \N \N \N \N \N 7102 D.anomalum Doniophyton Doniophyton anomalum \N \N \N \N \N 7103 C.hindsii Chrysochloa Chrysochloa hindsii \N \N \N \N \N 7104 H.seselifolia Heliophila Heliophila seselifolia \N \N \N \N \N 7105 I.sericea Itzaea Itzaea sericea \N \N \N \N \N 7106 P.acuminatus Paepalanthus Paepalanthus acuminatus \N \N \N \N \N 7107 A.chrysocephala Acacia Acacia chrysocephala \N \N \N \N \N 7108 N.afzelii Necepsia Necepsia afzelii \N \N \N \N \N 7109 H.gabunense Hylodendron Hylodendron gabunense mvana \N \N \N \N 7110 P.herbertiana Passiflora Passiflora herbertiana \N \N \N \N \N 7111 H.platyptera Horaninovia Horaninovia platyptera \N \N \N \N \N 7112 P.bifolia Platanthera Platanthera bifolia \N \N \N \N \N 7113 O.16746 Oreopanax Oreopanax sp. 16746 \N \N \N \N \N 7114 C.capitata Clidemia Clidemia capitata \N \N \N \N \N 7115 M.yoshinagae Mitella Mitella yoshinagae \N \N \N \N \N 7116 G.atlanticum Geranium Geranium atlanticum \N \N \N \N \N 7117 \N subtribe Cardopatiinae \N \N \N \N \N 7118 S.latimeri Saltugilia Saltugilia latimeri \N \N \N \N \N 7119 P.SH-2010 Pachira Pachira sp. SH-2010 \N \N \N \N \N 7120 T.blackburniana Trochetia Trochetia blackburniana \N \N \N \N \N 7121 E.horemanii Echinodorus Echinodorus horemanii \N \N \N \N \N 7122 E.suberea Eucalyptus Eucalyptus suberea \N \N \N \N \N 7123 R.rhabdocalyx Retiniphyllum Retiniphyllum rhabdocalyx \N \N \N \N \N 7124 \N genus Macphersonia \N \N \N \N \N 7125 R.heterorrhizus Ranunculus Ranunculus heterorrhizus \N \N \N \N \N 7126 H.erecta Hoffmannseggia Hoffmannseggia erecta \N \N \N \N \N 7127 E.bruynsii Euphorbia Euphorbia bruynsii \N \N \N \N \N 7128 I.polymorpha Ipomoea Ipomoea polymorpha \N \N \N \N \N 7129 C.veitchii Coelogyne Coelogyne veitchii \N \N \N \N \N 7130 C.eugenioidea Carallia Carallia eugenioidea \N \N \N \N \N 7131 P.incompta Psychotria Psychotria incompta \N \N \N \N \N 7132 P.stenophylla Parrya Parrya stenophylla \N \N \N \N \N 7133 \N genus Maddenia \N \N \N \N \N 7134 \N forma Iresine diffusa f. lindenii \N \N \N \N \N 7135 S.globiger Sinosenecio Sinosenecio globiger \N \N \N \N \N 7136 C.viridiflora Chloraea Chloraea viridiflora \N \N \N \N \N 7137 C.nudata Carex Carex nudata \N \N \N \N \N 7138 O.owerinii Orobanche Orobanche owerinii \N \N \N \N \N 7139 \N subspecies Armeria filicaulis subsp. trevenqueana \N \N \N \N \N 7140 \N genus Achlaena \N \N \N \N \N 7141 \N varietas Erigeron glabellus var. glabellus \N \N \N \N \N 7142 M.angustisegmenta Maxillaria Maxillaria angustisegmenta \N \N \N \N \N 7143 P.involucrata Pentachondra Pentachondra involucrata \N \N \N \N \N 7144 W.jiulongensis Wikstroemia Wikstroemia jiulongensis \N \N \N \N \N 7145 T.orientalis Typha Typha orientalis \N \N \N \N \N 7146 L.tanakae Lysimachia Lysimachia tanakae \N \N \N \N \N 7147 \N genus Uncinia \N \N \N \N \N 7148 L.divaricatum Lysiloma Lysiloma divaricatum \N \N \N \N \N 7149 S.pedicellata Swertia Swertia pedicellata \N \N \N \N \N 7150 A.humilis Anarthria Anarthria humilis \N \N \N \N \N 7151 S.myricoides Stevia Stevia myricoides \N \N \N \N \N 7152 P.foliosum Psilocaulon Psilocaulon foliosum \N \N \N \N \N 7153 A.elegans Adinandra Adinandra elegans \N \N \N \N \N 7154 S.sylvaticus Senecio Senecio sylvaticus woodland ragwort \N \N \N \N 7155 E.byunsanensis Eranthis Eranthis byunsanensis \N \N \N \N \N 7156 B.stricta Barbarea Barbarea stricta \N \N \N \N \N 7157 P.nodosa Pedicularis Pedicularis nodosa \N \N \N \N \N 7158 C.transandina Carex Carex transandina \N \N \N \N \N 7159 M.regeliana Marlierea Marlierea regeliana \N \N \N \N \N 7160 \N varietas Bromus diandrus var. rigidus \N \N \N \N \N 7161 \N varietas Solanum grayi var. grayi \N \N \N \N \N 7162 R.PGGS-2007 Rubus Rubus aff. idaeus PGGS-2007 \N \N \N \N \N 7163 R.insleayi Rossioglossum Rossioglossum insleayi \N \N \N \N \N 7164 S.boonjee Syzygium Syzygium boonjee \N \N \N \N \N 7165 C.tinctoria Collinsia Collinsia tinctoria \N \N \N \N \N 7166 T.dubia Trivalvaria Trivalvaria dubia \N \N \N \N \N 7167 S.multifida Sidalcea Sidalcea multifida \N \N \N \N \N 7168 \N varietas Macrotyloma uniflorum var. benadirianum \N \N \N \N \N 7169 L.glutinosa Lysimachia Lysimachia filifolia x Lysimachia glutinosa \N \N \N \N \N 7170 S.lundii Sophronitis Sophronitis lundii \N \N \N \N \N 7171 R.aucheri Ranunculus Ranunculus aucheri \N \N \N \N \N 7172 C.saxifraga Cineraria Cineraria saxifraga \N \N \N \N \N 7173 M.inflata Madangia Madangia inflata \N \N \N \N \N 7174 A.edulis Acidosasa Acidosasa edulis \N \N \N \N \N 7175 B.candida Brugmansia Brugmansia candida angel's-trumpet,floripondio \N \N \N \N 7176 T.hirta Tricyrtis Tricyrtis hirta \N \N \N \N \N 7177 \N genus Coriandrum \N \N \N \N \N 7178 \N varietas Vitex negundo var. negundo \N \N \N \N \N 7179 G.bruchii Gymnocalycium Gymnocalycium bruchii \N \N \N \N \N 7180 G.ciliata Gamblea Gamblea ciliata \N \N \N \N \N 7181 P.candolleana Pimpinella Pimpinella candolleana \N \N \N \N \N 7182 A.xanthomeloides Astragalus Astragalus xanthomeloides \N \N \N \N \N 7183 A.rubra Acanthophoenix Acanthophoenix rubra \N \N \N \N \N 7184 S.alajuelensis Stelis Stelis alajuelensis \N \N \N \N \N 7185 B.grandis Bromus Bromus grandis tall brome \N \N \N \N 7186 C.maculata Cyclopia Cyclopia maculata \N \N \N \N \N 7187 C.marchantii Chamelaucium Chamelaucium marchantii \N \N \N \N \N 7188 A.tenerrima Agrostis Agrostis tenerrima \N \N \N \N \N 7189 O.mirandum Oncidium Oncidium mirandum \N \N \N \N \N 7190 \N genus Oplopanax \N \N \N \N \N 7191 O.heterophylla Oenothera Oenothera heterophylla \N \N \N \N \N 7192 G.sulphurea Gentianella Gentianella sulphurea \N \N \N \N \N 7193 P.avium Prunus Prunus avium gean,mazzard,sweet cherry \N \N \N \N 7194 S.moranensis Smilax Smilax moranensis \N \N \N \N \N 7195 R.carolinianus Ranunculus Ranunculus carolinianus \N \N \N \N \N 7196 N.serotinus Narcissus Narcissus serotinus \N \N \N \N \N 7197 M.umbrosa Mapouria Mapouria umbrosa \N \N \N \N \N 7198 P.glaucifolia Petrocoptis Petrocoptis glaucifolia \N \N \N \N \N 7199 A.glaucum Antheroporum Antheroporum glaucum \N \N \N \N \N 7200 R.solandri Rhabdothamnus Rhabdothamnus solandri \N \N \N \N \N 7201 T.bathyschistum Thesium Thesium bathyschistum \N \N \N \N \N 7202 A.albidus Aeschynanthus Aeschynanthus albidus \N \N \N \N \N 7203 I.conzattii Ipomoea Ipomoea conzattii \N \N \N \N \N 7204 \N varietas Orostachys malacophylla var. aggregata \N \N \N \N \N 7205 P.subrotunda Passiflora Passiflora subrotunda \N \N \N \N \N 7206 T.leucanthum Taraxacum Taraxacum leucanthum \N \N \N \N \N 7207 M.princeps Metternichia Metternichia princeps \N \N \N \N \N 7208 S.lutea Sternbergia Sternbergia lutea \N \N \N \N \N 7209 R.flammea Rigidella Rigidella flammea \N \N \N \N \N 7210 C.guianensis Croton Croton guianensis \N \N \N \N \N 7211 \N genus Matayba \N \N \N \N \N 7212 A.majus Agrostophyllum Agrostophyllum majus \N \N \N \N \N 7213 N.MR-2009 Nervilia Nervilia sp. MR-2009 \N \N \N \N \N 7214 \N subspecies Ipomopsis spicata subsp. capitata \N \N \N \N \N 7215 H.lanceolata Hebenstretia Hebenstretia lanceolata \N \N \N \N \N 7216 B.multiradiata Baileya Baileya multiradiata \N \N \N \N \N 7217 C.tripartita Cienfuegosia Cienfuegosia tripartita \N \N \N \N \N 7218 \N subspecies Senecio glaucophyllus subsp. glaucophyllus \N \N \N \N \N 7219 C.'lukei' Commelina Commelina sp. 'lukei' \N \N \N \N \N 7220 \N varietas Stachyurus macrocarpus var. prunifolius \N \N \N \N \N 7221 M.vittoriana Myrcia Myrcia vittoriana \N \N \N \N \N 7222 N.520 Napeanthus Napeanthus sp. Amaya & Smith 520 \N \N \N \N \N 7223 K.acraea Kniphofia Kniphofia acraea \N \N \N \N \N 7224 C.magniflora Camellia Camellia magniflora \N \N \N \N \N 7225 C.chamissonis Campanula Campanula chamissonis \N \N \N \N \N 7226 C.crocata Centaurea Centaurea crocata \N \N \N \N \N 7227 T.leontopetaloides Tacca Tacca leontopetaloides Polynesian arrowroot,tia \N \N \N \N 7228 C.concinna Clarkia Clarkia concinna red ribbons \N \N \N \N 7229 S.demersa Sagittaria Sagittaria demersa \N \N \N \N \N 7230 \N varietas Kerria japonica var. pleniflora \N \N \N \N \N 7231 F.iturupensis Fragaria Fragaria iturupensis \N \N \N \N \N 7232 J.adonidifolia Jacobaea Jacobaea adonidifolia \N \N \N \N \N 7233 \N class Liliopsida monocots,monocotyledons \N \N \N \N 7234 C.carinata Cliffortia Cliffortia carinata \N \N \N \N \N 7235 T.tenuifolium Taraxacum Taraxacum tenuifolium \N \N \N \N \N 7236 R.irroratum Rhododendron Rhododendron irroratum \N \N \N \N \N 7237 \N genus Lysinema \N \N \N \N \N 7238 S.superandinus Senecio Senecio superandinus \N \N \N \N \N 7239 E.niciciana Euphorbia Euphorbia niciciana \N \N \N \N \N 7240 P.antioquensis Pentacalia Pentacalia antioquensis \N \N \N \N \N 7241 A.alata Atalaya Atalaya alata \N \N \N \N \N 7242 M.usambarensis Mammea Mammea usambarensis \N \N \N \N \N 7243 S.bangii Salvia Salvia bangii \N \N \N \N \N 7244 H.longipes Heterospathe Heterospathe longipes \N \N \N \N \N 7245 B.cochinchinensis Blastus Blastus cochinchinensis \N \N \N \N \N 7246 D.extinctoria Disa Disa extinctoria \N \N \N \N \N 7247 A.wilhelmsii Achillea Achillea wilhelmsii \N \N \N \N \N 7248 P.angulata Physalis Physalis angulata \N \N \N \N \N 7249 P.WSY0032114-7 Penstemon Penstemon sp. WSY0032114-7 \N \N \N \N \N 7250 \N genus Lallemantia \N \N \N \N \N 7251 M.moralesii Maxillaria Maxillaria moralesii \N \N \N \N \N 7252 A.lithophila Artemisia Artemisia lithophila \N \N \N \N \N 7253 T.calophyllophylla Tovomita Tovomita calophyllophylla \N \N \N \N \N 7254 G.tetragynus Gonocarpus Gonocarpus tetragynus \N \N \N \N \N 7255 \N genus Rupiphila \N \N \N \N \N 7256 N.angustifolia Nageliella Nageliella angustifolia \N \N \N \N \N 7257 S.hederiformis Senecio Senecio hederiformis \N \N \N \N \N 7258 S.multiceps Sedum Sedum multiceps \N \N \N \N \N 7259 L.obliqua Lomandra Lomandra obliqua \N \N \N \N \N 7260 F.hyperborea Festuca Festuca hyperborea \N \N \N \N \N 7261 \N genus Dovyalis \N \N \N \N \N 7262 P.caudiculata Pseudocatalpa Pseudocatalpa caudiculata \N \N \N \N \N 7263 L.microcarpa Ludwigia Ludwigia microcarpa \N \N \N \N \N 7264 P.cordata Physalis Physalis cordata \N \N \N \N \N 7265 \N genus Tectona \N \N \N \N \N 7266 K.verticillata Kogelbergia Kogelbergia verticillata \N \N \N \N \N 7267 E.obtusiflora Eucalyptus Eucalyptus obtusiflora \N \N \N \N \N 7268 A.navicularis Aristolochia Aristolochia navicularis \N \N \N \N \N 7269 I.integrifolia Ilex Ilex integrifolia \N \N \N \N \N 7270 B.lobata Babiana Babiana lobata \N \N \N \N \N 7271 C.anomala Cousinia Cousinia anomala \N \N \N \N \N 7272 C.tenuis Castilleja Castilleja tenuis \N \N \N \N \N 7273 G.scabra Grindelia Grindelia scabra \N \N \N \N \N 7274 \N no rank unclassified Sapindaceae \N \N \N \N \N 7275 H.sargentiana Hydrangea Hydrangea sargentiana \N \N \N \N \N 7276 D.crassiflora Diospyros Diospyros crassiflora \N \N \N \N \N 7277 P.carrii Prenanthes Prenanthes carrii \N \N \N \N \N 7278 M.doumeri Malus Malus doumeri \N \N \N \N \N 7279 \N varietas Rorippa indica var. indica variableleaf yellowcress \N \N \N \N 7280 M.conduplicata Maxillaria Maxillaria conduplicata \N \N \N \N \N 7281 A.ragusina Andryala Andryala ragusina \N \N \N \N \N 7282 \N genus Menispermum \N \N \N \N \N 7283 \N genus Hydrolea \N \N \N \N \N 7284 A.iberica Aristolochia Aristolochia iberica \N \N \N \N \N 7285 B.inaequalis Bartsia Bartsia inaequalis \N \N \N \N \N 7286 S.pusilla Saintpaulia Saintpaulia pusilla \N \N \N \N \N 7287 T.foliosum Trachycalymma Trachycalymma foliosum \N \N \N \N \N 7288 A.microstachyum Anadendrum Anadendrum microstachyum \N \N \N \N \N 7289 V.fordii Vernicia Vernicia fordii tung oil tree \N \N \N \N 7290 U.subsacculata Uncinia Uncinia subsacculata \N \N \N \N \N 7291 E.knorringianus Echinops Echinops knorringianus \N \N \N \N \N 7292 P.segoviensis Pleurothallis Pleurothallis segoviensis \N \N \N \N \N 7293 C.singularis Centrochloa Centrochloa singularis \N \N \N \N \N 7294 \N genus Tephrothamnus \N \N \N \N \N 7295 C.dissectus Centropogon Centropogon dissectus \N \N \N \N \N 7296 \N genus Symphyoloma \N \N \N \N \N 7297 S.polhillii Solanum Solanum polhillii \N \N \N \N \N 7298 \N genus Thinopyrum x Triticum \N \N \N \N \N 7299 C.schliebenii Coffea Coffea schliebenii \N \N \N \N \N 7300 J.regia Juglans Juglans regia English walnut \N \N \N \N 7301 G.arvensis Guiraoa Guiraoa arvensis \N \N \N \N \N 7302 \N subspecies Festuca rubra subsp. juncea \N \N \N \N \N 7303 \N subspecies Amaranthus blitum subsp. oleraceus \N \N \N \N \N 7304 M.cabrae Momordica Momordica cabrae \N \N \N \N \N 7305 C.furva Carex Carex furva \N \N \N \N \N 7306 V.hondurensis Vochysia Vochysia hondurensis \N \N \N \N \N 7307 A.4018 Artabotrys Artabotrys sp. Wieringa 4018 \N \N \N \N \N 7308 D.pentaphylla Dioscorea Dioscorea pentaphylla wu ye shu yu \N \N \N \N 7309 P.690 Pterocarpus Pterocarpus sp. Pennington 690 \N \N \N \N \N 7310 B.pellitus Bromus Bromus pellitus \N \N \N \N \N 7311 C.betuloides Cercocarpus Cercocarpus betuloides \N \N \N \N \N 7312 \N genus Thaia \N \N \N \N \N 7313 I.caudata Iteadaphne Iteadaphne caudata \N \N \N \N \N 7314 \N genus Nerisyrenia \N \N \N \N \N 7315 C.elegans Chesneya Chesneya elegans \N \N \N \N \N 7316 A.pendulus Amorphophallus Amorphophallus pendulus \N \N \N \N \N 7317 A.paupercula Alstroemeria Alstroemeria paupercula \N \N \N \N \N 7318 D.estevesii Dyckia Dyckia estevesii \N \N \N \N \N 7319 \N genus Zelenkoa \N \N \N \N \N 7320 P.geminiflora Passiflora Passiflora geminiflora \N \N \N \N \N 7321 H.bahiensis Heteropterys Heteropterys bahiensis \N \N \N \N \N 7322 T.hastifer Thelocactus Thelocactus hastifer \N \N \N \N \N 7323 V.mexicana Vanilla Vanilla mexicana \N \N \N \N \N 7324 C.5962 Cypholophus Cypholophus aff. trapula Pullen 5962 \N \N \N \N \N 7325 G.O-90153 Glomera Glomera sp. Chase O-90153 \N \N \N \N \N 7326 M.psilogyne Maniltoa Maniltoa psilogyne \N \N \N \N \N 7327 P.ceratocarpa Passiflora Passiflora ceratocarpa \N \N \N \N \N 7328 \N subspecies Ulex europaeus subsp. latebracteatus \N \N \N \N \N 7329 S.covillei Sidalcea Sidalcea covillei Owen's valley checkerbloom \N \N \N \N 7330 P.partschiana Primula Primula partschiana \N \N \N \N \N 7331 I.homblei Indigofera Indigofera homblei \N \N \N \N \N 7332 G.citriodora Guatteria Guatteria citriodora \N \N \N \N \N 7333 S.1986-0516C Stegolepis Stegolepis sp. MSBG 1986-0516C \N \N \N \N \N 7334 A.chrysantha Aquilegia Aquilegia chrysantha \N \N \N \N \N 7335 G.ciliaris Gethyllis Gethyllis ciliaris \N \N \N \N \N 7336 C.flaviglandulosus Croton Croton flaviglandulosus \N \N \N \N \N 7337 H.diplandra Hyparrhenia Hyparrhenia diplandra \N \N \N \N \N 7338 P.pallidus Penstemon Penstemon pallidus \N \N \N \N \N 7339 S.reticosa Siphonochilus Siphonochilus reticosa \N \N \N \N \N 7340 P.cerina Pseuduvaria Pseuduvaria cerina \N \N \N \N \N 7341 P.ciliosa Perezia Perezia ciliosa \N \N \N \N \N 7342 A.tweedianum Asterostigma Asterostigma tweedianum \N \N \N \N \N 7343 P.aucheri Phyllocara Phyllocara aucheri \N \N \N \N \N 7344 A.thomsonii Aerangis Aerangis thomsonii \N \N \N \N \N 7345 Z.caulescens Zostera Zostera caulescens \N \N \N \N \N 7346 C.buhsei Colutea Colutea buhsei \N \N \N \N \N 7347 F.lucida Fagus Fagus lucida \N \N \N \N \N 7348 M.drucei Melicytus Melicytus drucei \N \N \N \N \N 7349 \N genus Howea \N \N \N \N \N 7350 W.indica Waltheria Waltheria indica basora prieta,boater bush,escobillo blanco,guimauve,sleepy-morning \N \N \N \N 7351 E.cheiradenia Euphorbia Euphorbia cheiradenia \N \N \N \N \N 7352 C.discolor Codia Codia discolor \N \N \N \N \N 7353 H.cintranum Helictotrichon Helictotrichon cintranum \N \N \N \N \N 7354 C.excelsa Colombobalanus Colombobalanus excelsa \N \N \N \N \N 7355 O.quadrisepalum Octopoma Octopoma quadrisepalum \N \N \N \N \N 7356 M.pulsiferae Mimulus Mimulus pulsiferae \N \N \N \N \N 7357 C.herreanthus Conophytum Conophytum herreanthus \N \N \N \N \N 7358 H.bacciferum Heliotropium Heliotropium bacciferum \N \N \N \N \N 7359 B.PS1386570 Brassia Brassia sp. PS1386570 \N \N \N \N \N 7360 C.curassavica Cordia Cordia curassavica \N \N \N \N \N 7361 N.riparia Nectandra Nectandra riparia \N \N \N \N \N 7362 J.pontica Jurinea Jurinea pontica \N \N \N \N \N 7363 O.discolor Oxalis Oxalis discolor \N \N \N \N \N 7364 \N tribe Physarieae \N \N \N \N \N 7365 J.gigantea Jacobaea Jacobaea gigantea \N \N \N \N \N 7367 S.hendersonii Sidalcea Sidalcea hendersonii \N \N \N \N \N 7368 D.calcicola Dioscorea Dioscorea calcicola \N \N \N \N \N 7369 L.simplex Loudetia Loudetia simplex \N \N \N \N \N 7370 \N genus Ptilochaeta \N \N \N \N \N 7371 N.immutabilis Nymphaea Nymphaea immutabilis \N \N \N \N \N 7372 S.actinophylla Schefflera Schefflera actinophylla \N \N \N \N \N 7373 E.boissieri Euphorbia Euphorbia boissieri \N \N \N \N \N 7374 A.vogelii Astragalus Astragalus vogelii \N \N \N \N \N 7375 \N subtribe Caladeniinae \N \N \N \N \N 7376 \N genus Rhyncholacis \N \N \N \N \N 7377 O.s.n. Ornithocephalus Ornithocephalus sp. Szlachetko s.n. \N \N \N \N \N 7378 G.ilicifolia Gochnatia Gochnatia ilicifolia \N \N \N \N \N 7379 C.pilosissimus Cymatocarpus Cymatocarpus pilosissimus \N \N \N \N \N 7380 R.MVSP-2007 Riedelia Riedelia sp. MVSP-2007 \N \N \N \N \N 7381 C.gracilis Clusia Clusia gracilis \N \N \N \N \N 7382 G.tergiversum Gastrolobium Gastrolobium tergiversum \N \N \N \N \N 7383 D.kutejensis Durio Durio kutejensis \N \N \N \N \N 7384 \N genus Dalbergiella \N \N \N \N \N 7385 C.dissita Carex Carex dissita \N \N \N \N \N 7386 D.XMW-2002-4 Dendrobium Dendrobium sp. XMW-2002-4 \N \N \N \N \N 7387 \N subspecies Wahlenbergia albomarginata subsp. flexilis \N \N \N \N \N 7388 Z.98702 Zeltnera Zeltnera sp. 98702 \N \N \N \N \N 7389 A.1137 Aspidopterys Aspidopterys sp. Srisanga 1137 \N \N \N \N \N 7390 L.mauritiana Lysimachia Lysimachia mauritiana \N \N \N \N \N 7391 \N genus Salicornia \N \N \N \N \N 7392 M.bubalina Moraea Moraea bubalina \N \N \N \N \N 7393 B.verrucosa Brassia Brassia verrucosa \N \N \N \N \N 7394 R.javanica Ryparosa Ryparosa javanica \N \N \N \N \N 7395 D.nivicola Draba Draba nivicola \N \N \N \N \N 7396 \N genus Calamagrostis \N \N \N \N \N 7397 B.FS933 Bulbophyllum Bulbophyllum sp. FS933 \N \N \N \N \N 7398 P.aquilonis Platanthera Platanthera aquilonis \N \N \N \N \N 7399 B.elegans Billbergia Billbergia elegans \N \N \N \N \N 7400 \N tribe Aphragmeae \N \N \N \N \N 7401 C.atlantica Colutea Colutea atlantica \N \N \N \N \N 7402 M.274 Myrcia Myrcia aff. selloi Lucas 274 \N \N \N \N \N 7403 C.incana Crepis Crepis incana \N \N \N \N \N 7404 T.pentandra Tribulopis Tribulopis pentandra \N \N \N \N \N 7405 C.sampatik Croton Croton sampatik \N \N \N \N \N 7406 S.serra Senecio Senecio serra tall ragwort \N \N \N \N 7407 \N genus Callistephus \N \N \N \N \N 7408 S.plumosa Stachys Stachys plumosa \N \N \N \N \N 7409 H.rubribracteata Hemiboea Hemiboea rubribracteata \N \N \N \N \N 7410 H.SH-2010 Hypoestes Hypoestes sp. SH-2010 \N \N \N \N \N 7411 \N genus Aphanopleura \N \N \N \N \N 7412 P.bucharica Prunus Prunus bucharica \N \N \N \N \N 7413 E.vicina Eucalyptus Eucalyptus vicina Manara Hills red gum \N \N \N \N 7414 \N varietas Berberis amurensis var. amurensis \N \N \N \N \N 7415 R.rigida Rupertia Rupertia rigida \N \N \N \N \N 7416 R.eymae Rhododendron Rhododendron eymae \N \N \N \N \N 7417 L.vaginalis Logania Logania vaginalis \N \N \N \N \N 7418 R.surigaoensis Rhodomyrtus Rhodomyrtus surigaoensis \N \N \N \N \N 7419 S.arctophila Salix Salix arctophila \N \N \N \N \N 7420 \N genus Holostylis \N \N \N \N \N 7421 S.kanneliyensis Stemonoporus Stemonoporus kanneliyensis \N \N \N \N \N 7422 \N varietas Potentilla ancistrifolia var. ancistrifolia \N \N \N \N \N 7423 M.zanguebarica Majidea Majidea zanguebarica \N \N \N \N \N 7424 L.spicata Lawrencia Lawrencia spicata \N \N \N \N \N 7425 P.coriaceum Peucedanum Peucedanum coriaceum \N \N \N \N \N 7426 R.lasiocarpus Ranunculus Ranunculus lasiocarpus \N \N \N \N \N 7427 B.tadgellii Brachyscome Brachyscome tadgellii \N \N \N \N \N 7428 \N subspecies Genista hispanica subsp. occidentalis \N \N \N \N \N 7429 H.keniensis Huernia Huernia keniensis \N \N \N \N \N 7430 H.patulum Helichrysum fulvescens Helichrysum patulum \N \N \N \N \N 7431 \N varietas Lonicera japonica var. chinensis \N \N \N \N \N 7432 H.drummondii Hibiscus Hibiscus drummondii \N \N \N \N \N 7433 J.fluminense Jasminum Jasminum fluminense \N \N \N \N \N 7434 \N genus Dugesia \N \N \N \N \N 7435 A.damascena Asphodeline Asphodeline damascena \N \N \N \N \N 7436 T.stenophylla Templetonia Templetonia stenophylla \N \N \N \N \N 7437 A.smithii Alseis Alseis smithii \N \N \N \N \N 7438 D.fissum Delphinium Delphinium fissum \N \N \N \N \N 7439 P.steyermarkii Parabignonia Parabignonia steyermarkii \N \N \N \N \N 7440 T.compacta Trianthema Trianthema compacta \N \N \N \N \N 7441 P.3378 Planchonella Planchonella aff. pohlmaniana McDonald 3378 \N \N \N \N \N 7442 \N genus Calycanthus \N \N \N \N \N 7443 C.nubigena Carex Carex nubigena \N \N \N \N \N 7444 R.chinensis Rosa Rosa chinensis China rose \N \N \N \N 7445 \N forma Rhipsalis micrantha f. rauhiorum \N \N \N \N \N 7446 \N genus Tetratheca \N \N \N \N \N 7447 C.acuminatus Cotoneaster Cotoneaster acuminatus \N \N \N \N \N 7448 C.oleraceum Cirsium Cirsium oleraceum \N \N \N \N \N 7449 P.novae-zelandiae Poa Poa novae-zelandiae \N \N \N \N \N 7450 D.crispum Dipcadi Dipcadi crispum \N \N \N \N \N 7451 T.leiboldii Tolumnia Tolumnia leiboldii \N \N \N \N \N 7452 P.hartiana Packera Packera hartiana \N \N \N \N \N 7453 L.riograndensis Leandra Leandra riograndensis \N \N \N \N \N 7454 R.enysii Ranunculus Ranunculus enysii \N \N \N \N \N 7455 O.andina Ovidia Ovidia andina \N \N \N \N \N 7456 B.balearica Brassica Brassica balearica \N \N \N \N \N 7457 C.ecuadoriana Calathea Calathea ecuadoriana \N \N \N \N \N 7458 A.vesiculosa Aldrovanda Aldrovanda vesiculosa \N \N \N \N \N 7459 B.chrysoglossa Brachyscome Brachyscome chrysoglossa \N \N \N \N \N 7460 A.tatarica Atriplex Atriplex tatarica \N \N \N \N \N 7461 T.politoria Trema Trema politoria \N \N \N \N \N 7462 M.concanensis Moringa Moringa concanensis \N \N \N \N \N 7463 \N genus Greenea \N \N \N \N \N 7464 R.retusa Rhynchostylis Rhynchostylis retusa \N \N \N \N \N 7465 A.rotundifolia Amauria Amauria rotundifolia \N \N \N \N \N 7466 L.fenestratus Lithocarpus Lithocarpus fenestratus \N \N \N \N \N 7467 T.oxystegium Tanacetum Tanacetum oxystegium \N \N \N \N \N 7468 G.118 Guatteria Guatteria sp. Chatrou et al. 118 \N \N \N \N \N 7469 S.aturense Solanum Solanum aturense \N \N \N \N \N 7470 C.glomerata Colignonia Colignonia glomerata \N \N \N \N \N 7471 \N varietas Asarum heterotropoides var. seoulense \N \N \N \N \N 7472 L.enantiophylla Lozanella Lozanella enantiophylla \N \N \N \N \N 7670 \N genus Spartina \N \N \N \N \N 7473 L.oblongifolium Lithospermum Lithospermum oblongifolium \N \N \N \N \N 7474 E.petaloideum Eupatorium Eupatorium petaloideum \N \N \N \N \N 7475 \N genus Neoregelia \N \N \N \N \N 7476 H.indica Halosarcia Halosarcia indica \N \N \N \N \N 7477 C.grandiflora Cosmibuena Cosmibuena grandiflora \N \N \N \N \N 7478 W.mollis Wyethia Wyethia mollis \N \N \N \N \N 7479 A.catamarcensis Aloysia Aloysia catamarcensis \N \N \N \N \N 7480 T.serotinus Tragopogon Tragopogon serotinus \N \N \N \N \N 7481 I.quitensis Idiopappus Idiopappus quitensis \N \N \N \N \N 7482 R.puniceodiscus Rhipsalis Rhipsalis puniceodiscus \N \N \N \N \N 7483 \N varietas Artemisia absinthium var. calcigena \N \N \N \N \N 7484 G.spectabilis Gastonia Gastonia spectabilis \N \N \N \N \N 7485 H.trichodontum Hieracium Hieracium trichodontum \N \N \N \N \N 7486 R.retusum Rhododendron Rhododendron retusum \N \N \N \N \N 7487 W.parviflora Weinmannia Weinmannia parviflora \N \N \N \N \N 7488 L.cretica Lecokia Lecokia cretica \N \N \N \N \N 7489 M.ovalifolia Maasia Maasia ovalifolia \N \N \N \N \N 7490 E.montanum Erythronium Erythronium montanum white avalanche-lily \N \N \N \N 7491 C.breweri Carex Carex breweri \N \N \N \N \N 7492 \N genus Reinhardtia \N \N \N \N \N 7493 P.mutica Pleiocarpa Pleiocarpa mutica \N \N \N \N \N 7494 C.stapfiana Centaurea Centaurea stapfiana \N \N \N \N \N 7495 P.rhombea Peperomia Peperomia rhombea \N \N \N \N \N 7496 P.heterophylla Pitcairnia Pitcairnia heterophylla \N \N \N \N \N 7497 \N genus Psychine \N \N \N \N \N 7498 \N no rank unclassified Lythraceae \N \N \N \N \N 7499 A.tejedensis Anthyllis Anthyllis tejedensis \N \N \N \N \N 7500 C.gmelini Cousinia Cousinia gmelini \N \N \N \N \N 7501 T.ixioides Tillandsia Tillandsia ixioides \N \N \N \N \N 7502 \N genus Griselinia \N \N \N \N \N 7503 R.edulis Rollinia Rollinia edulis \N \N \N \N \N 7504 \N genus Thysanolaena \N \N \N \N \N 7505 R.corchorifolius Rubus Rubus corchorifolius \N \N \N \N \N 7506 M.isaiana Myrcia Myrcia isaiana \N \N \N \N \N 7507 C.pachyrrhizum Campylocentrum Campylocentrum pachyrrhizum \N \N \N \N \N 7508 A.spectabilis Apalochlamys Apalochlamys spectabilis \N \N \N \N \N 7509 \N genus Hechtia \N \N \N \N \N 7510 C.fenestrellata Campanula Campanula fenestrellata \N \N \N \N \N 7511 P.rigidifolia Palicourea Palicourea rigidifolia \N \N \N \N \N 7512 C.umbellata Clidemia Clidemia umbellata \N \N \N \N \N 7513 B.hainanense Bulbophyllum Bulbophyllum hainanense \N \N \N \N \N 7514 \N genus Cecropia \N \N \N \N \N 7515 \N genus Honorius \N \N \N \N \N 7516 \N forma Salvia castanea f. castanea \N \N \N \N \N 7517 R.peduncularis Ratibida Ratibida peduncularis \N \N \N \N \N 7518 H.vitellinoides Hoya Hoya vitellinoides \N \N \N \N \N 7519 R.lambertianus Rubus Rubus lambertianus \N \N \N \N \N 7520 E.jansenvillensis Euphorbia Euphorbia jansenvillensis \N \N \N \N \N 7521 \N subspecies Brodiaea terrestris subsp. terrestris \N \N \N \N \N 7522 \N genus Adenothamnus \N \N \N \N \N 7523 \N genus Psammagrostis \N \N \N \N \N 7524 A.ornans Abrophyllum Abrophyllum ornans \N \N \N \N \N 7525 B.gelatinosa Boesenbergia Boesenbergia gelatinosa \N \N \N \N \N 7526 L.kumokiri Liparis Liparis kumokiri \N \N \N \N \N 7527 \N subspecies Festuca trichophylla subsp. scabrescens \N \N \N \N \N 7528 E.schmollii Echinocereus Echinocereus schmollii \N \N \N \N \N 7529 P.murucuja Passiflora Passiflora murucuja \N \N \N \N \N 7530 C.domingensis Cleome Cleome domingensis \N \N \N \N \N 7531 \N genus Eubotryoides \N \N \N \N \N 7532 A.purpureostylus Acrodon Acrodon purpureostylus \N \N \N \N \N 7533 \N subspecies Sidalcea hickmanii subsp. anomala Cuesta Pass checkerbloom \N \N \N \N 7534 \N genus Sansevieria bowstring hemps \N \N \N \N 7535 \N genus Borinda \N \N \N \N \N 7536 \N genus Diostea \N \N \N \N \N 7537 L.burchellii Lophiocarpus Lophiocarpus burchellii \N \N \N \N \N 7538 O.helicterifolia Ocotea Ocotea helicterifolia \N \N \N \N \N 7539 R.induratus Rumex Rumex induratus \N \N \N \N \N 7540 I.compacta Incarvillea Incarvillea compacta \N \N \N \N \N 7541 P.vana Prunus Prunus vana \N \N \N \N \N 7542 \N genus Pachyneurum \N \N \N \N \N 7543 T.laxa Triteleia Triteleia laxa \N \N \N \N \N 7544 P.rubiginosum Pittosporum Pittosporum rubiginosum \N \N \N \N \N 7545 A.16 Alphonsea Alphonsea sp. Mols 16 \N \N \N \N \N 7546 \N subspecies Silene acaulis subsp. acaulis \N \N \N \N \N 7547 \N genus Sympegma \N \N \N \N \N 7548 A.scopulorum Anthemis Anthemis scopulorum \N \N \N \N \N 7549 \N subspecies Euphorbia enterophora subsp. crassa \N \N \N \N \N 7550 A.sericea Aspalathus Aspalathus sericea \N \N \N \N \N 7551 \N subspecies Senecio glaucus subsp. glaucus \N \N \N \N \N 7552 \N genus Goldmanella \N \N \N \N \N 7553 R.humulifolius Rubus Rubus humulifolius \N \N \N \N \N 7554 T.lopollense Thesium Thesium lopollense \N \N \N \N \N 7555 E.supina Euphorbia Euphorbia supina \N \N \N \N \N 7556 P.moupinensis Primula Primula moupinensis \N \N \N \N \N 7557 C.triternata Cayratia Cayratia triternata \N \N \N \N \N 7558 L.encleisocarpus Lithocarpus Lithocarpus encleisocarpus ko-paen,pasang bungkus beranak \N \N \N \N 7559 G.sordida Guatteria Guatteria sordida \N \N \N \N \N 7560 \N genus Hyphaene \N \N \N \N \N 7561 S.campestre Sisyrinchium Sisyrinchium campestre \N \N \N \N \N 7562 \N varietas Oplismenus undulatifolius var. japonicus \N \N \N \N \N 7563 \N tribe Agrostistachydeae \N \N \N \N \N 7564 H.lambertianum Helichrysum Helichrysum lambertianum \N \N \N \N \N 7565 B.membranifolium Bulbophyllum Bulbophyllum membranifolium \N \N \N \N \N 7566 R.oblongifolia Rinorea Rinorea oblongifolia \N \N \N \N \N 7567 S.condensata Stomatochaeta Stomatochaeta condensata \N \N \N \N \N 7568 P.klugii Protium Protium klugii \N \N \N \N \N 7569 C.macrodontus Croton Croton macrodontus \N \N \N \N \N 7570 E.tricuspidata Euphrasia Euphrasia tricuspidata \N \N \N \N \N 7571 C.cordulatus Ceanothus Ceanothus cordulatus \N \N \N \N \N 7572 S.officinalis Sanguisorba Sanguisorba officinalis \N \N \N \N \N 7573 \N subfamily Larreoideae \N \N \N \N \N 7574 \N genus Cleome \N \N \N \N \N 7575 A.curvicaulis Astragalus Astragalus curvicaulis \N \N \N \N \N 7576 H.scabrum Hedyosmum Hedyosmum scabrum \N \N \N \N \N 7577 G.tetragonoides Glossoloma Glossoloma tetragonoides \N \N \N \N \N 7578 A.chlorantha Annickia Annickia chlorantha \N \N \N \N \N 7579 \N varietas Senecio lautus var. esperensis \N \N \N \N \N 7580 S.racemosum Syzygium Syzygium racemosum \N \N \N \N \N 7581 A.chinensis Antirhea Antirhea chinensis \N \N \N \N \N 7582 A.laevis Amelanchier Amelanchier sp. 'erecta' x Amelanchier laevis \N \N \N \N \N 7583 M.lancifolia Mandevilla Mandevilla lancifolia \N \N \N \N \N 7584 G.rhytidophyllum Glyptopetalum Glyptopetalum rhytidophyllum \N \N \N \N \N 7585 E.herrei Euphorbia Euphorbia herrei \N \N \N \N \N 7586 P.australiana Polyscias Polyscias australiana \N \N \N \N \N 7587 H.drummondii Hibbertia Hibbertia drummondii \N \N \N \N \N 7588 E.aloifolium Eryngium Eryngium aloifolium \N \N \N \N \N 7589 \N genus Physoptychis \N \N \N \N \N 7590 P.longipetala Pentopetia Pentopetia longipetala \N \N \N \N \N 7591 P.succulenta Pilea Pilea succulenta \N \N \N \N \N 7592 D.berthautii Diplotaxis Diplotaxis berthautii \N \N \N \N \N 7593 N.319KM Nervilia Nervilia cf. aragoana 319KM \N \N \N \N \N 7594 C.huana Camellia Camellia huana \N \N \N \N \N 7595 A.90.129 Agalinis Agalinis sp. CWD 90.129 \N \N \N \N \N 7596 A.latifolia Aldina Aldina latifolia \N \N \N \N \N 7597 M.discoidea Matricaria Matricaria discoidea \N \N \N \N \N 7598 \N genus Waltheria \N \N \N \N \N 7599 M.peruviana Monticalia Monticalia peruviana \N \N \N \N \N 7600 P.microchila Pedicularis Pedicularis microchila \N \N \N \N \N 7601 \N genus Ocimum basils \N \N \N \N 7602 C.debilis Collomia Collomia debilis \N \N \N \N \N 7603 \N genus Christensonella \N \N \N \N \N 7604 \N subspecies Platymiscium pubescens subsp. fragrans \N \N \N \N \N 7605 \N genus Paliavana \N \N \N \N \N 7606 E.giganteum Eriogonum Eriogonum giganteum \N \N \N \N \N 7607 H.rugulosum Helichrysum Helichrysum rugulosum \N \N \N \N \N 7608 \N subspecies Combretum celastroides subsp. celastroides \N \N \N \N \N 7609 G.corymbosa Gundlachia Gundlachia corymbosa \N \N \N \N \N 7610 \N genus Dinetus \N \N \N \N \N 7611 N.3835 Nymphaea Nymphaea cf. colorata Borsch 3835 \N \N \N \N \N 7612 P.fragarioides Potentilla Potentilla fragarioides \N \N \N \N \N 7613 I.bulghardaghensis Iranecio Iranecio bulghardaghensis \N \N \N \N \N 7614 L.krylovii Lotus Lotus krylovii \N \N \N \N \N 7615 S.vespertilio Solanum Solanum vespertilio \N \N \N \N \N 7616 V.minutiflora Villadia Villadia minutiflora \N \N \N \N \N 7617 E.cotyledon Eurystyles Eurystyles cotyledon \N \N \N \N \N 7618 C.bigibbosa Conostegia Conostegia bigibbosa \N \N \N \N \N 7619 N.acuminatum Neisosperma Neisosperma acuminatum \N \N \N \N \N 7620 L.37221 Scorzoneroides Leontodon aff. nevadensis Gutermann 37221 \N \N \N \N \N 7621 H.leptocarpum Hypecoum Hypecoum leptocarpum \N \N \N \N \N 7622 H.conjugatus Heterostemon Heterostemon conjugatus \N \N \N \N \N 7623 A.psychotrichoides Argostemma Argostemma psychotrichoides \N \N \N \N \N 7624 H.foetidum Homalium Homalium foetidum \N \N \N \N \N 7625 \N genus Hakonechloa \N \N \N \N \N 7626 L.LM201001/9B Ledebouria Ledebouria sp. Mucina LM201001/9B \N \N \N \N \N 7627 \N tribe Stifftieae \N \N \N \N \N 7628 D.arborea Daviesia Daviesia arborea \N \N \N \N \N 7629 T.1150 Tagetes Tagetes sp. 1150 \N \N \N \N \N 7630 Q.suber Quercus Quercus suber cork oak \N \N \N \N 7631 N.gracillima Nepenthes Nepenthes gracillima \N \N \N \N \N 7632 A.apoiense Aconitum Aconitum apoiense \N \N \N \N \N 7633 R.villarsii Ranunculus Ranunculus villarsii \N \N \N \N \N 7634 E.stipitatum Elatostema Elatostema stipitatum \N \N \N \N \N 7635 R.curvipes Rorippa Rorippa curvipes \N \N \N \N \N 7636 C.camilli-schneideri Caragana Caragana camilli-schneideri \N \N \N \N \N 7637 P.americana Prunus Prunus americana American red plum,goose plum \N \N \N \N 7638 D.radiosa Dracula Dracula radiosa \N \N \N \N \N 7639 \N genus Hooglandia \N \N \N \N \N 7640 \N varietas Cucumis melo var. cantalupensis netted muskmelon,nutmeg melon \N \N \N \N 7641 G.cdK93 Gentiana Gentiana sp. cdK93 \N \N \N \N \N 7642 \N genus Cymopterus \N \N \N \N \N 7643 C.alpinum Ceroxylon Ceroxylon alpinum \N \N \N \N \N 7644 M.acerosa Mutisia Mutisia acerosa \N \N \N \N \N 7645 A.nitidula Anthocarapa Anthocarapa nitidula \N \N \N \N \N 7646 \N varietas Cristaria integerrima var. lobulata \N \N \N \N \N 7647 L.guadalupensis Lupinus Lupinus guadalupensis \N \N \N \N \N 7648 S.tenuifolia Stachys Stachys tenuifolia \N \N \N \N \N 7649 V.furcatum Viburnum Viburnum furcatum \N \N \N \N \N 7650 F.copiosa Ficus Ficus copiosa \N \N \N \N \N 7651 S.schweinfurthianum Sarcophrynium Sarcophrynium schweinfurthianum \N \N \N \N \N 7652 B.radula Brunsvigia Brunsvigia radula \N \N \N \N \N 7653 D.schizantha Dracaena Dracaena schizantha \N \N \N \N \N 7654 A.tenuisecta Anthemis Anthemis tenuisecta \N \N \N \N \N 7655 L.coriifolia Lopholaena Lopholaena coriifolia \N \N \N \N \N 7656 \N genus Rhazya \N \N \N \N \N 7657 C.ANM-2010 Cedrela Cedrela sp. 2 ANM-2010 \N \N \N \N \N 7658 \N genus Carlephyton \N \N \N \N \N 7659 G.glabra Goupia Goupia glabra \N \N \N \N \N 7660 C.liparocarpos Carex Carex liparocarpos \N \N \N \N \N 7662 D.labillardierei Diospyros Diospyros labillardierei \N \N \N \N \N 7663 \N varietas Kaempferia galanga var. latifolia \N \N \N \N \N 7664 A.purpusiana Acleisanthes Acleisanthes purpusiana \N \N \N \N \N 7665 P.speciosa Potentilla Potentilla speciosa \N \N \N \N \N 7666 D.petiolaris Diclis Diclis petiolaris \N \N \N \N \N 7667 \N genus Cyanixia \N \N \N \N \N 7668 P.dichotoma Ptilagrostis Ptilagrostis dichotoma \N \N \N \N \N 7669 M.diffusa Montia Montia diffusa \N \N \N \N \N 7671 A.sempervirens Acer Acer sempervirens \N \N \N \N \N 7672 A.rusticana Armoracia Armoracia rusticana horseradish \N \N \N \N 7673 S.meyeri Streptocarpus Streptocarpus meyeri \N \N \N \N \N 7674 A.nitida Alchemilla Alchemilla nitida \N \N \N \N \N 7675 \N varietas Capsicum baccatum var. baccatum locoto \N \N \N \N 7676 P.glabellus Phaseolus Phaseolus glabellus \N \N \N \N \N 7677 A.microcephala Arctotis Arctotis microcephala \N \N \N \N \N 7678 C.simplex Collabium Collabium simplex \N \N \N \N \N 7679 \N genus Chondrilla \N \N \N \N \N 7680 \N varietas Mimosa arenosa var. leiocarpa \N \N \N \N \N 7681 P.pelonae Pilea Pilea pelonae \N \N \N \N \N 7682 T.nordtiana Tetracera Tetracera nordtiana \N \N \N \N \N 7683 C.greggii Calanticaria Calanticaria greggii \N \N \N \N \N 7684 P.scaberrimum Phoradendron Phoradendron scaberrimum \N \N \N \N \N 7685 A.kirkii Acacia Acacia kirkii \N \N \N \N \N 7686 M.reichenheimiana Maxillaria Maxillaria reichenheimiana \N \N \N \N \N 7687 B.equitantifolia Briegeria Briegeria equitantifolia \N \N \N \N \N 7688 F.macnaughtonii Faurea Faurea macnaughtonii \N \N \N \N \N 7689 C.nitidum Chasmanthium Chasmanthium nitidum \N \N \N \N \N 7690 \N no rank Saccharum hybrid cultivar Co 94012 \N \N \N \N \N 7691 M.schimperiana Merendera Merendera schimperiana \N \N \N \N \N 7692 P.ornata Parolinia Parolinia ornata \N \N \N \N \N 7693 M.sphaerocarpa Melothria Melothria sphaerocarpa \N \N \N \N \N 7694 D.novomexicanum Delphinium Delphinium novomexicanum \N \N \N \N \N 7695 S.usambarensis Strychnos Strychnos usambarensis \N \N \N \N \N 7696 \N genus Megathyrsus \N \N \N \N \N 7697 T.cheranganiense Trifolium Trifolium cheranganiense \N \N \N \N \N 7698 F.chrysacanthus Ferocactus Ferocactus chrysacanthus \N \N \N \N \N 7699 M.lurida Moraea Moraea lurida \N \N \N \N \N 7700 N.kingii Neoscortechinia Neoscortechinia kingii \N \N \N \N \N 7701 S.elongata Saussurea Saussurea elongata \N \N \N \N \N 7702 H.concolor Hybanthus Hybanthus concolor \N \N \N \N \N 7703 Z.madecassum Zygophyllum Zygophyllum madecassum \N \N \N \N \N 7704 C.obtusa Cecropia Cecropia obtusa \N \N \N \N \N 7705 D.semilunulata Diuris Diuris semilunulata \N \N \N \N \N 7706 \N genus Philacra \N \N \N \N \N 7707 \N subspecies Veronica hectorii subsp. hectorii \N \N \N \N \N 7708 E.espinosa Euphorbia Euphorbia espinosa \N \N \N \N \N 7709 P.oligandrum Pseudognaphalium Pseudognaphalium oligandrum \N \N \N \N \N 7710 B.africana Ballota Ballota africana \N \N \N \N \N 7711 \N subspecies Lachnagrostis littoralis subsp. littoralis \N \N \N \N \N 7712 P.fruticulosa Pfaffia Pfaffia fruticulosa \N \N \N \N \N 7713 M.masoalense Martellidendron Martellidendron masoalense \N \N \N \N \N 7714 S.obliqua Solenophora Solenophora obliqua \N \N \N \N \N 7715 A.MPM2 Alocasia Alocasia sp. MPM2 \N \N \N \N \N 7716 P.hartzii Poa Poa hartzii \N \N \N \N \N 7717 T.curtisii Tetrastigma Tetrastigma curtisii \N \N \N \N \N 7718 S.jamesiana Stellaria Stellaria jamesiana \N \N \N \N \N 7719 A.alnobetula Alnus Alnus alnobetula European green alder \N \N \N \N 7720 A.purpusii Acourtia Acourtia purpusii \N \N \N \N \N 7721 S.brevifolius Schoenus Schoenus brevifolius \N \N \N \N \N 7722 C.torreyana Carlowrightia Carlowrightia torreyana \N \N \N \N \N 7723 M.stipitatum Machaerium Machaerium stipitatum \N \N \N \N \N 7724 S.splendens Spigelia Spigelia splendens \N \N \N \N \N 7725 A.macrosemius Astragalus Astragalus macrosemius \N \N \N \N \N 7726 C.liesneri Clusia Clusia liesneri \N \N \N \N \N 7727 A.simplicifolia Aglaia Aglaia simplicifolia \N \N \N \N \N 7728 A.magistratus Astragalus Astragalus magistratus \N \N \N \N \N 7729 \N varietas Begonia masoniana var. maculata \N \N \N \N \N 7730 D.toposia Diospyros Diospyros toposia \N \N \N \N \N 7731 G.cernua Globba Globba cernua \N \N \N \N \N 7732 P.kerneri Pedicularis Pedicularis kerneri \N \N \N \N \N 7733 \N genus Cranichis \N \N \N \N \N 7734 S.dimorphantha Stawellia Stawellia dimorphantha \N \N \N \N \N 7735 P.sandwicensis Peperomia Peperomia sandwicensis \N \N \N \N \N 7736 \N genus Harrysmithia \N \N \N \N \N 7737 \N genus Emarhendia \N \N \N \N \N 7738 \N genus Trichoceros \N \N \N \N \N 7739 C.suaveolens Citronella Citronella suaveolens \N \N \N \N \N 7740 P.cinerea Psychotria Psychotria cinerea \N \N \N \N \N 7741 M.begoniifolia Mellissia Mellissia begoniifolia \N \N \N \N \N 7742 C.esculenta Colocasia Colocasia esculenta cocoyam,dasheen,eddo,elephant's ear,kalo,malanga,taro \N \N \N \N 7743 L.squarrulosa Liatris Liatris squarrulosa \N \N \N \N \N 7744 T.microcarpa Tutcheria Tutcheria microcarpa \N \N \N \N \N 7745 C.guatemalensis Coelia Coelia guatemalensis \N \N \N \N \N 7746 T.azurea Tamaulipa Tamaulipa azurea \N \N \N \N \N 7747 V.lanuginosa Veronica Veronica lanuginosa \N \N \N \N \N 7748 S.trichromum Sedum Sedum trichromum \N \N \N \N \N 7749 C.prolifera Cousinia Cousinia prolifera \N \N \N \N \N 7750 S.sericeus Syncretocarpus Syncretocarpus sericeus \N \N \N \N \N 7751 M.paradoxa Mapania Mapania paradoxa \N \N \N \N \N 7752 S.peduncularis Schizoptera Schizoptera peduncularis \N \N \N \N \N 7753 \N genus Anigozanthos \N \N \N \N \N 7754 J.steyermarkii Jasarum Jasarum steyermarkii \N \N \N \N \N 7755 \N genus Perymenium \N \N \N \N \N 7756 S.geminata Scaphyglottis Scaphyglottis geminata \N \N \N \N \N 7757 R.kamelinii Rhammatophyllum Rhammatophyllum kamelinii \N \N \N \N \N 7758 \N subspecies Coprosma propinqua subsp. propinqua \N \N \N \N \N 8831 M.picta Melica Melica picta \N \N \N \N \N 7759 M.darwinii Maihueniopsis Maihueniopsis darwinii \N \N \N \N \N 7760 M.adenophora Morella Morella adenophora \N \N \N \N \N 7761 \N genus Anthurium \N \N \N \N \N 7762 M.halmaturorum Melaleuca Melaleuca halmaturorum Kangaroo Island honey myrtle \N \N \N \N 7763 P.thompsoniae Psorothamnus Psorothamnus thompsoniae \N \N \N \N \N 7764 P.harrisii Pilea Pilea harrisii \N \N \N \N \N 7765 C.calcarata Cuphea Cuphea calcarata \N \N \N \N \N 7766 D.tripunctatus Dianthus Dianthus tripunctatus \N \N \N \N \N 7767 M.vestita Meineckia Meineckia vestita \N \N \N \N \N 7768 C.6814 Cyphostemma Cyphostemma sp. RG 6814 \N \N \N \N \N 7769 A.oligantha Anagallis Anagallis oligantha \N \N \N \N \N 7770 C.eximium Capsicum Capsicum eximium ulapuca,ulupica \N \N \N \N 7771 C.ecuadorensis Cardamine Cardamine ecuadorensis \N \N \N \N \N 7772 \N genus Mesanthemum \N \N \N \N \N 7773 P.sessiliflora Polyscias Polyscias sessiliflora \N \N \N \N \N 7774 A.sukauensis Aerides Aerides sukauensis \N \N \N \N \N 7775 B.plumeriana Bactris Bactris plumeriana \N \N \N \N \N 7776 L.nieuwenhuisii Lithocarpus Lithocarpus nieuwenhuisii \N \N \N \N \N 7777 C.baueri Coprosma Coprosma baueri \N \N \N \N \N 7778 H.juncea Hibbertia Hibbertia juncea \N \N \N \N \N 7779 E.glomeratum Eryngium Eryngium glomeratum \N \N \N \N \N 7780 B.eminii Begonia Begonia eminii \N \N \N \N \N 7781 A.TJSW-2011 Artocarpus Artocarpus sp. TJSW-2011 \N \N \N \N \N 7782 T.tenuisectum Tanacetum Tanacetum tenuisectum \N \N \N \N \N 7783 J.paucijuga Johrenia Johrenia paucijuga \N \N \N \N \N 7784 \N genus Salacighia \N \N \N \N \N 7785 \N genus Solenostemon \N \N \N \N \N 7786 \N genus Aplectrum \N \N \N \N \N 7787 D.schusteri Draba Draba schusteri \N \N \N \N \N 7788 E.K' Escallonia Escallonia sp. 'Chase 2499 K' \N \N \N \N \N 7789 P.sofiense Pachypodium Pachypodium sofiense \N \N \N \N \N 7790 V.uliginosa Viola Viola uliginosa \N \N \N \N \N 7791 \N genus Condylocarpon \N \N \N \N \N 7792 N.officinalis Nauclea Nauclea officinalis \N \N \N \N \N 7793 C.6201' Carmichaelia Carmichaelia sp. 'Lavin 6201' \N \N \N \N \N 7794 C.plantaginifolius Cyperus Cyperus plantaginifolius \N \N \N \N \N 7795 \N genus Phacellaria \N \N \N \N \N 7796 \N genus Vanoverberghia \N \N \N \N \N 7797 R.aureum Rhododendron Rhododendron aureum \N \N \N \N \N 7798 S.eminii Strophanthus Strophanthus eminii \N \N \N \N \N 7799 R.asiaticus Ranunculus Ranunculus asiaticus Asian buttercup,Persian crowfoot \N \N \N \N 7800 G.gossypioides Gossypium Gossypium gossypioides \N \N \N \N \N 7801 \N genus Batesia \N \N \N \N \N 7802 C.nitidus Carthamus Carthamus nitidus \N \N \N \N \N 7803 \N genus Uapaca \N \N \N \N \N 7804 G.uvarioides Goniothalamus Goniothalamus uvarioides \N \N \N \N \N 7805 D.nantouense Disporum Disporum nantouense \N \N \N \N \N 7806 L.occidentalis Lilaeopsis Lilaeopsis occidentalis \N \N \N \N \N 7807 F.cubensis Feddea Feddea cubensis \N \N \N \N \N 7808 \N genus Copiapoa \N \N \N \N \N 7809 E.leptocaula Euphorbia Euphorbia leptocaula \N \N \N \N \N 7810 M.marajoara Manihot Manihot marajoara \N \N \N \N \N 7811 A.papposa Artemisia Artemisia papposa \N \N \N \N \N 7812 G.setacea Gaimardia Gaimardia setacea \N \N \N \N \N 7813 O.graminifolium Ornithogalum Ornithogalum graminifolium \N \N \N \N \N 7814 V.heterostachys Vriesea Vriesea heterostachys \N \N \N \N \N 7815 S.'Robertson' Saintpaulia Saintpaulia sp. 'Robertson' \N \N \N \N \N 7816 I.nana Impatiens Impatiens nana \N \N \N \N \N 7817 E.viviparum Eryngium Eryngium viviparum \N \N \N \N \N 7818 \N genus Kedhalia \N \N \N \N \N 7819 D.smithii Diploglottis Diploglottis smithii \N \N \N \N \N 7820 R.tenuiflora Ruprechtia Ruprechtia tenuiflora \N \N \N \N \N 7821 M.adenantheroides Mimosa Mimosa adenantheroides \N \N \N \N \N 7822 B.brasiliensis Briza Briza brasiliensis \N \N \N \N \N 7823 B.monnieri Bacopa Bacopa monnieri \N \N \N \N \N 7824 P.villosulum Phrynium Phrynium villosulum \N \N \N \N \N 7825 C.reticulata Caladenia Caladenia reticulata \N \N \N \N \N 7826 Z.attopensis Ziziphus Ziziphus attopensis \N \N \N \N \N 7827 C.angustifolia Calamagrostis Calamagrostis angustifolia \N \N \N \N \N 7828 A.montelinasana Anchusa Anchusa montelinasana \N \N \N \N \N 7829 C.floribunda Conyza Conyza floribunda \N \N \N \N \N 7830 \N tribe Verbeneae \N \N \N \N \N 7831 P.comptonii Protea Protea comptonii \N \N \N \N \N 7832 P.pavoninum Papaver Papaver pavoninum \N \N \N \N \N 7833 C.androyense Capurodendron Capurodendron androyense \N \N \N \N \N 7834 K.pallida Klasea Klasea pallida \N \N \N \N \N 7835 C.talbotii Costus Costus talbotii \N \N \N \N \N 7836 H.roxburghii Habenaria Habenaria roxburghii \N \N \N \N \N 7837 A.spathulata Arnica Arnica spathulata \N \N \N \N \N 7838 X.tripartitus Xerosicyos Xerosicyos tripartitus \N \N \N \N \N 7839 \N genus Praxelis \N \N \N \N \N 7840 \N subspecies Sparganium eurycarpum subsp. coreanum \N \N \N \N \N 7841 A.cleefii Aragoa Aragoa cleefii \N \N \N \N \N 7842 S.EGG-2011 unclassified Spathicarpeae Spathicarpeae sp. EGG-2011 \N \N \N \N \N 7843 P.AV-2008 Pagamea Pagamea sp. AV-2008 \N \N \N \N \N 7844 L.zeylanica Lobelia Lobelia zeylanica \N \N \N \N \N 7845 \N genus Gilmania \N \N \N \N \N 7846 S.lanceolatum Santalum Santalum lanceolatum blue bush,bush plum,northern sandalbox,plumwood \N \N \N \N 7847 \N genus Ochoterenaea \N \N \N \N \N 7848 P.wheeleri Potentilla Potentilla wheeleri \N \N \N \N \N 7849 C.frigida Chionochloa Chionochloa frigida \N \N \N \N \N 7850 A.fulva Arctophila Arctophila fulva \N \N \N \N \N 7851 H.angustifolia Haworthia Haworthia angustifolia \N \N \N \N \N 7852 G.chamaecyparis Gymnostoma Gymnostoma chamaecyparis \N \N \N \N \N 7853 \N genus Koeberlinia \N \N \N \N \N 7854 A.pachyacra Acacia Acacia pachyacra \N \N \N \N \N 7855 D.macrocalyx Dovyalis Dovyalis macrocalyx \N \N \N \N \N 7856 O.pseudofasciculata Ophiorrhiza Ophiorrhiza pseudofasciculata \N \N \N \N \N 7857 \N varietas Portea petropolitana var. extensa \N \N \N \N \N 7858 \N genus Adenochilus \N \N \N \N \N 7859 C.graminea Callisia Callisia graminea \N \N \N \N \N 7860 R.planisiliqua Rhodopis Rhodopis planisiliqua \N \N \N \N \N 7861 S.gesnerioides Striga Striga gesnerioides indigo witchweed,tobacco witchweed \N \N \N \N 7862 \N genus Odosicyos \N \N \N \N \N 7863 L.filicaulis Lampranthus Lampranthus filicaulis \N \N \N \N \N 7864 H.schimperi Haplocarpha Haplocarpha schimperi \N \N \N \N \N 7865 R.californicus Ranunculus Ranunculus californicus \N \N \N \N \N 7866 C.foetida Carex Carex foetida \N \N \N \N \N 7867 E.odontocarpa Eucalyptus Eucalyptus odontocarpa Sturt Creek mallee \N \N \N \N 7868 B.psammophila Blumea Blumea psammophila \N \N \N \N \N 7869 C.suksdorfii Crataegus Crataegus suksdorfii \N \N \N \N \N 7870 P.odora Pulicaria Pulicaria odora \N \N \N \N \N 7871 \N varietas Penstemon newberryi var. newberryi \N \N \N \N \N 7872 I.A110048 Ilex Ilex sp. A110048 \N \N \N \N \N 7873 E.diphylla Exothea Exothea diphylla \N \N \N \N \N 7874 O.subulatum Osteospermum Osteospermum subulatum \N \N \N \N \N 7875 \N subspecies Origanum vulgare subsp. viridulum \N \N \N \N \N 7876 A.squarrosa Argemone Argemone squarrosa \N \N \N \N \N 7877 \N forma Angelica decursiva f. albiflora \N \N \N \N \N 7878 \N genus Schizostachyum \N \N \N \N \N 7879 C.leucochnous Convolvulus Convolvulus leucochnous \N \N \N \N \N 7880 C.alpina Craspedia Craspedia alpina \N \N \N \N \N 7881 \N varietas Paphiopedilum insigne var. sanderae \N \N \N \N \N 7882 \N genus Coleocephalocereus \N \N \N \N \N 7883 M.saniculifolia Megaleranthis Megaleranthis saniculifolia \N \N \N \N \N 7884 M.gonocarpa Matelea Matelea gonocarpa \N \N \N \N \N 7885 \N genus Diplectria \N \N \N \N \N 7886 P.urceolata Pedicularis Pedicularis urceolata \N \N \N \N \N 7887 A.michauxiana Artemisia Artemisia michauxiana \N \N \N \N \N 7888 \N genus Lehmanniella \N \N \N \N \N 7889 A.cotula Anthemis Anthemis cotula \N \N \N \N \N 7890 D.macrostigma Drypetes Drypetes macrostigma \N \N \N \N \N 7891 \N genus Limodorum \N \N \N \N \N 7892 S.lanceolatus Styrax Styrax lanceolatus \N \N \N \N \N 7893 H.kurtzii Heliotropium Heliotropium kurtzii \N \N \N \N \N 7894 I.membranaceum Iseilema Iseilema membranaceum \N \N \N \N \N 7895 L.biennis Lactuca Lactuca biennis \N \N \N \N \N 7896 P.bullatum Pinarophyllon Pinarophyllon bullatum \N \N \N \N \N 7897 \N varietas Planchonella cotinifolia var. cotinifolia \N \N \N \N \N 7898 C.mucronata Cleistogenes Cleistogenes mucronata \N \N \N \N \N 7899 C.olgae Cousinia Cousinia olgae \N \N \N \N \N 7900 \N varietas Lilium callosum var. flaviflorum \N \N \N \N \N 7901 \N genus Sibaropsis \N \N \N \N \N 7902 B.roezlii Bletia Bletia roezlii \N \N \N \N \N 7903 A.serrata Arabis Arabis serrata \N \N \N \N \N 7904 \N no rank unclassified eudicotyledons \N \N \N \N \N 7905 C.DS14537_JM1602 Chloroleucon Chloroleucon sp. DS14537_JM1602 \N \N \N \N \N 7906 M.multiflora Menziesia Menziesia multiflora \N \N \N \N \N 7907 M.normae Macrocarpaea Macrocarpaea normae \N \N \N \N \N 7908 \N subtribe Coeliopsidinae \N \N \N \N \N 7909 \N subspecies Schiekia orinocensis subsp. silvestris \N \N \N \N \N 7910 \N subspecies Hordeum brevisubulatum subsp. brevisubulatum \N \N \N \N \N 7911 P.ambigua Passiflora Passiflora ambigua \N \N \N \N \N 7912 \N tribe Gomphogyneae \N \N \N \N \N 7913 M.concarenae Moehringia Moehringia concarenae \N \N \N \N \N 7914 \N genus Heliotropium \N \N \N \N \N 7915 \N genus Lamium \N \N \N \N \N 7916 P.steudneri Polystachya Polystachya steudneri \N \N \N \N \N 7917 C.nobilis Clematis Clematis nobilis \N \N \N \N \N 7918 \N varietas Suaeda maritima var. perennans \N \N \N \N \N 7919 S.semiarmatum Solanum Solanum semiarmatum \N \N \N \N \N 7920 M.calcaratum Monochaetum Monochaetum calcaratum \N \N \N \N \N 7921 N.damascena Nigella Nigella damascena jack-in-the-green,love-in-a-mist \N \N \N \N 7922 Z.steigeriana Zomicarpa Zomicarpa steigeriana \N \N \N \N \N 7923 M.mandiae Michelia Michelia mandiae \N \N \N \N \N 7924 X.subpulchrum Xylobium Xylobium subpulchrum \N \N \N \N \N 7925 R.cupreus Ranunculus Ranunculus cupreus \N \N \N \N \N 7926 M.primulina Meconopsis Meconopsis primulina \N \N \N \N \N 7927 C.BL-2011 Chassalia Chassalia sp. BL-2011 \N \N \N \N \N 7928 T.pauckertianum Taraxacum Taraxacum pauckertianum \N \N \N \N \N 7929 L.virosa Lactuca Lactuca virosa \N \N \N \N \N 7930 H.deserticola Helianthus Helianthus deserticola \N \N \N \N \N 7931 M.laxum Myriophyllum Myriophyllum laxum \N \N \N \N \N 7932 D.galpinii Disa Disa galpinii \N \N \N \N \N 7933 N.micrantha Nierembergia Nierembergia micrantha \N \N \N \N \N 7934 S.beccariana Sonerila Sonerila beccariana \N \N \N \N \N 7935 D.elephantipes Dioscorea Dioscorea elephantipes elephant's-foot \N \N \N \N 7936 \N genus Edgeworthia \N \N \N \N \N 7937 A.tibetense Arceuthobium Arceuthobium tibetense \N \N \N \N \N 7938 E.'Lindisfarne' Epipactis Epipactis sp. 'Lindisfarne' \N \N \N \N \N 7939 O.nepalensis Osbeckia Osbeckia nepalensis \N \N \N \N \N 7940 J.fontanesii Juncus Juncus fontanesii \N \N \N \N \N 7941 F.nigricans Fuchsia Fuchsia nigricans \N \N \N \N \N 7942 C.varians Colchicum Colchicum varians \N \N \N \N \N 7943 D.latifolium Dracophyllum Dracophyllum latifolium \N \N \N \N \N 7944 S.comosus Senecio Senecio comosus \N \N \N \N \N 7945 \N genus Mitrephora \N \N \N \N \N 7946 P.ringens Prasophyllum Prasophyllum ringens \N \N \N \N \N 7947 P.cicutariifolia Primula Primula cicutariifolia \N \N \N \N \N 7948 A.aristata Aloe Aloe aristata \N \N \N \N \N 7949 B.rubens Bromus Bromus rubens Madrid brome,compact brome,wall brome \N \N \N \N 7950 P.crandallii Penstemon Penstemon crandallii \N \N \N \N \N 7951 H.azarbaijanensis Halimocnemis Halimocnemis azarbaijanensis \N \N \N \N \N 7952 F.curvifolia Festuca Festuca curvifolia \N \N \N \N \N 7953 \N varietas Camellia euryoides var. nokoensis \N \N \N \N \N 7954 M.variifolia Matelea Matelea variifolia \N \N \N \N \N 7955 \N genus Salaciopsis \N \N \N \N \N 7956 C.calcicola Cypripedium Cypripedium calcicola \N \N \N \N \N 7957 \N genus Coptosperma \N \N \N \N \N 7958 M.buchii Morinda Morinda buchii \N \N \N \N \N 7959 A.parvifolia Abelia Abelia parvifolia \N \N \N \N \N 7960 G.02-578 Globba Globba sp. Williams 02-578 \N \N \N \N \N 7961 R.neapolitanus Ranunculus Ranunculus neapolitanus \N \N \N \N \N 7962 T.antiquorum Triticum Triticum antiquorum \N \N \N \N \N 7963 \N genus Amoreuxia \N \N \N \N \N 7964 \N forma Pappostipa vaginata f. inmersa \N \N \N \N \N 7965 \N genus Viviania \N \N \N \N \N 7966 T.lineare Typhonium Typhonium lineare \N \N \N \N \N 7967 D.maritima Diospyros Diospyros maritima \N \N \N \N \N 7968 M.cauliflora Mycetia Mycetia cauliflora \N \N \N \N \N 7969 M.squarrosa Munroa Munroa squarrosa \N \N \N \N \N 7970 P.hosackioides Podolotus Podolotus hosackioides \N \N \N \N \N 7971 T.S5599 unclassified Taraxacum Taraxacum (sect. Erythrocarpa/Erythrosperma) sp. S5599 \N \N \N \N \N 7972 P.montana Pagamea Pagamea montana \N \N \N \N \N 7973 T.JS6329 unclassified Taraxacum Taraxacum (sect. Alpina) sp. JS6329 \N \N \N \N \N 7974 R.ganeshensis Roscoea Roscoea ganeshensis \N \N \N \N \N 7975 P.subspinosa Polygala Polygala subspinosa \N \N \N \N \N 7976 P.niponica Potentilla Potentilla niponica \N \N \N \N \N 7977 \N subspecies Carex lepidocarpa subsp. lepidocarpa \N \N \N \N \N 7978 S.cinnabarinus Scadoxus Scadoxus cinnabarinus \N \N \N \N \N 7979 T.crassiusculum Thlaspi Thlaspi crassiusculum \N \N \N \N \N 7980 E.wrightii Echinopepon Echinopepon wrightii \N \N \N \N \N 7981 E.uncinatum Erisma Erisma uncinatum \N \N \N \N \N 7982 \N tribe Pappophoreae \N \N \N \N \N 7983 C.JD-2011 Carapa Carapa sp. JD-2011 \N \N \N \N \N 7984 C.babylonica Cuscuta Cuscuta babylonica \N \N \N \N \N 7985 R.nivale Rhododendron Rhododendron nivale \N \N \N \N \N 7986 \N family Bonnetiaceae \N \N \N \N \N 7987 \N genus Dictyophleba \N \N \N \N \N 7988 P.punctulata Psiadia Psiadia punctulata \N \N \N \N \N 7989 C.kapakata Coffea Coffea kapakata \N \N \N \N \N 7990 C.hystrix Citrus Citrus hystrix Makrut lime,Mauritius papeda,Thai lime \N \N \N \N 7991 \N genus Reverchonia \N \N \N \N \N 7992 C.Bindoon Commersonia Commersonia sp. Bindoon \N \N \N \N \N 7993 R.krociana Ravenea Ravenea krociana \N \N \N \N \N 7994 S.mollis Scorzonera Scorzonera mollis \N \N \N \N \N 7995 \N varietas Narcissus tazetta var. chinensis \N \N \N \N \N 7996 P.intermedia Patrinia Patrinia intermedia \N \N \N \N \N 7997 T.lausseri Thelocactus Thelocactus lausseri \N \N \N \N \N 7998 C.repens Cissus Cissus repens \N \N \N \N \N 7999 C.mayeriana Coelogyne Coelogyne mayeriana \N \N \N \N \N 8000 R.lasiostylus Rubus Rubus lasiostylus \N \N \N \N \N 8001 C.sciaphila Cissus Cissus sciaphila \N \N \N \N \N 8002 T.valenciae Telipogon Telipogon valenciae \N \N \N \N \N 8003 \N genus Hypseocharis \N \N \N \N \N 8004 L.havanensis Leucocroton Leucocroton havanensis \N \N \N \N \N 8005 L.meridianum Leucadendron Leucadendron meridianum \N \N \N \N \N 8006 A.holophyllus Aster Aster holophyllus \N \N \N \N \N 8007 R.calycinus Rubus Rubus calycinus \N \N \N \N \N 8008 P.glabrum Pittosporum Pittosporum glabrum \N \N \N \N \N 8009 M.australis Mascagnia Mascagnia australis \N \N \N \N \N 8010 B.gladiata Bobartia Bobartia gladiata \N \N \N \N \N 8011 \N genus Ternstroemia \N \N \N \N \N 8012 O.bulbocastanum Oxalis Oxalis bulbocastanum \N \N \N \N \N 8013 S.nigrescens Saussurea Saussurea nigrescens \N \N \N \N \N 8014 T.pseudachillea Tanacetum Tanacetum pseudachillea \N \N \N \N \N 8015 M.elongatum Mostacillastrum Mostacillastrum elongatum \N \N \N \N \N 8016 A.burchellii Androcymbium Androcymbium burchellii \N \N \N \N \N 8017 G.lanuginosa Gethyllis Gethyllis lanuginosa \N \N \N \N \N 8018 A.vogelii Anthocleista Anthocleista vogelii \N \N \N \N \N 8019 \N varietas Ivesia baileyi var. beneolens \N \N \N \N \N 8020 E.exasperata Eragrostis Eragrostis exasperata \N \N \N \N \N 8021 C.squamulatus Cenchrus Cenchrus squamulatus \N \N \N \N \N 8022 \N genus Pelargonium \N \N \N \N \N 8023 O.muricatum Osteospermum Osteospermum muricatum \N \N \N \N \N 8024 \N genus Aceratium \N \N \N \N \N 8025 T.impeditum Thesium Thesium impeditum \N \N \N \N \N 8026 \N varietas Bambusa bambos var. gigantea \N \N \N \N \N 8027 \N subfamily Ehrhartoideae \N \N \N \N \N 8028 L.SH-2010 Logania Logania sp. SH-2010 \N \N \N \N \N 8029 \N genus Pleione Indian crocus \N \N \N \N 8030 S.pinetorum Sporobolus Sporobolus pinetorum \N \N \N \N \N 8031 C.pacifica Cuscuta Cuscuta pacifica \N \N \N \N \N 8032 C.fragrans Catostemma Catostemma fragrans \N \N \N \N \N 8033 E.racemosa Exochorda Exochorda racemosa \N \N \N \N \N 8034 \N genus Anemonopsis \N \N \N \N \N 8035 C.denudatus Cyperus Cyperus denudatus \N \N \N \N \N 8036 O.NFL-2010 Olea Olea sp. 3 NFL-2010 \N \N \N \N \N 8037 P.sanguinolentus Pycreus Pycreus sanguinolentus \N \N \N \N \N 8038 P.nutans Puya Puya nutans \N \N \N \N \N 8039 \N varietas Cucurbita pepo var. ozarkana Ozark melon \N \N \N \N 8040 \N genus Eremocharis \N \N \N \N \N 8041 N.amplifolia Neea Neea amplifolia \N \N \N \N \N 8042 A.meyeri Astragalus Astragalus meyeri \N \N \N \N \N 8043 \N genus Mosquitoxylum \N \N \N \N \N 8044 C.lanata Climacoptera Climacoptera lanata \N \N \N \N \N 8045 N.repanda Nicotiana Nicotiana repanda \N \N \N \N \N 8046 \N subspecies Hypericum nitidum subsp. nitidum \N \N \N \N \N 8047 A.speciosum Arisaema Arisaema speciosum \N \N \N \N \N 8048 C.baldaccii Crepis Crepis baldaccii \N \N \N \N \N 8049 \N subtribe Cynosurinae \N \N \N \N \N 8050 C.judaicum Cicer Cicer judaicum \N \N \N \N \N 8051 E.equisetiformis Euphorbia Euphorbia equisetiformis \N \N \N \N \N 8052 G.814 Gomesa Gomesa sp. Pansarin & Simoes 814 \N \N \N \N \N 8053 B.aculeata Byttneria Byttneria aculeata \N \N \N \N \N 8054 S.undulata Salacia Salacia undulata \N \N \N \N \N 8055 C.SM-2010 Canella Canella sp. SM-2010 \N \N \N \N \N 8056 S.brevicaulis Sideritis Sideritis brevicaulis \N \N \N \N \N 8057 \N genus Conradina \N \N \N \N \N 8058 \N family Symplocaceae sweetleaf family \N \N \N \N 8059 I.macropoda Ilex Ilex macropoda \N \N \N \N \N 8060 R.stellaris Richardia Richardia stellaris \N \N \N \N \N 8061 K.dubia Kadenia Kadenia dubia \N \N \N \N \N 8062 D.maculata Diuris Diuris maculata \N \N \N \N \N 8063 R.intermedia Rufodorsia Rufodorsia intermedia \N \N \N \N \N 8064 C.bellidioides Celmisia Celmisia bellidioides \N \N \N \N \N 8065 \N genus Lepidopetalum \N \N \N \N \N 8066 A.hohenlohii Anguloa Anguloa hohenlohii \N \N \N \N \N 8067 P.mayumbensis Pseudocinchona Pseudocinchona mayumbensis \N \N \N \N \N 8068 \N genus Xeroderris \N \N \N \N \N 8069 S.angustissima Sacciolepis Sacciolepis angustissima \N \N \N \N \N 8070 C.merrillianum Cyclophyllum Cyclophyllum merrillianum \N \N \N \N \N 8071 \N subspecies Genista spartioides subsp. pseudoretamoides \N \N \N \N \N 8072 A.amplexicaulis Alibertia Alibertia amplexicaulis \N \N \N \N \N 8073 H.odorus Helleborus Helleborus odorus \N \N \N \N \N 8074 M.schizocarpa Musa Musa schizocarpa \N \N \N \N \N 8075 D.reticulata Dicrastylis Dicrastylis reticulata \N \N \N \N \N 8076 C.praecox Caladenia Caladenia praecox \N \N \N \N \N 8077 \N subspecies Chrysanthemum zawadskii subsp. yezoense \N \N \N \N \N 8078 \N genus Falcaria \N \N \N \N \N 8079 E.guatemalensis Encyclia Encyclia guatemalensis \N \N \N \N \N 8080 \N subspecies Crocus biflorus subsp. wattiorum \N \N \N \N \N 8081 M.subsagittata Mandevilla Mandevilla subsagittata \N \N \N \N \N 8082 \N varietas Paris polyphylla var. minor \N \N \N \N \N 8083 \N genus Oreocereus \N \N \N \N \N 8084 M.obstrigosa Mimosa Mimosa obstrigosa \N \N \N \N \N 8085 \N family Smilacaceae catbrier famly \N \N \N \N 8086 V.lapathifolia Valeriana Valeriana lapathifolia \N \N \N \N \N 8087 G.widgrenii Gomesa Gomesa widgrenii \N \N \N \N \N 8088 C.arisanense Chrysanthemum Chrysanthemum arisanense \N \N \N \N \N 8089 D.MDG-54296 Dipcadi Dipcadi cf. heterocuspe MDG-54296 \N \N \N \N \N 8090 S.longipes Serruria Serruria longipes \N \N \N \N \N 8091 S.pretoriae Syncolostemon Syncolostemon pretoriae \N \N \N \N \N 8092 S.kerrii Sporobolus Sporobolus kerrii \N \N \N \N \N 8093 \N varietas Dracaena reflexa var. lanceolata \N \N \N \N \N 8094 E.cortesia Ehretia Ehretia cortesia \N \N \N \N \N 8095 T.eglandulosa Tabernaemontana Tabernaemontana eglandulosa \N \N \N \N \N 8096 M.rigiduloides Medicago Medicago rigiduloides \N \N \N \N \N 8097 P.bicarinata Polystachya Polystachya bicarinata \N \N \N \N \N 8098 B.cauda-felis Bulbinella Bulbinella cauda-felis \N \N \N \N \N 8099 P.californicum Pediomelum Pediomelum californicum \N \N \N \N \N 8100 E.moluccanum Endospermum Endospermum moluccanum \N \N \N \N \N 8101 G.brecciarum Gilia Gilia brecciarum \N \N \N \N \N 8102 C.kauaiensis Canavalia Canavalia kauaiensis \N \N \N \N \N 8103 S.mucronifera Senna Senna mucronifera \N \N \N \N \N 8104 V.crispa Valeriana Valeriana crispa \N \N \N \N \N 8105 G.barbatus Gonolobus Gonolobus barbatus \N \N \N \N \N 8106 \N genus Hydrophyllum \N \N \N \N \N 8107 T.chapelieriana Tina Tina chapelieriana \N \N \N \N \N 8108 M.laterita Musa Musa laterita \N \N \N \N \N 8109 D.pumila Delonix Delonix pumila \N \N \N \N \N 8110 \N genus Pelagodoxa \N \N \N \N \N 8111 O.xerophilus Oligochaetochilus Oligochaetochilus xerophilus \N \N \N \N \N 8112 \N genus Swida \N \N \N \N \N 8113 O.fuscatum Oncidium Oncidium fuscatum \N \N \N \N \N 8114 M.294 Moutabea Moutabea cf. chodatiana Tavares 294 \N \N \N \N \N 8115 V.annulata Hebe Veronica annulata \N \N \N \N \N 8116 L.xanthoconus Leucadendron Leucadendron xanthoconus \N \N \N \N \N 8117 A.caudatifolium Acer Acer caudatifolium \N \N \N \N \N 8118 \N tribe Trichosporeae \N \N \N \N \N 8119 S.hillii Sarcochilus Sarcochilus hillii \N \N \N \N \N 8120 \N genus Tapeinochilos \N \N \N \N \N 8121 C.diffusa Commelina Commelina diffusa \N \N \N \N \N 8122 V.platynema Vriesea Vriesea platynema \N \N \N \N \N 8123 F.tubiformis Fritillaria Fritillaria tubiformis \N \N \N \N \N 8124 E.karvinskianus Erigeron Erigeron karvinskianus \N \N \N \N \N 8125 B.morisiana Borago Borago morisiana \N \N \N \N \N 8126 A.schmidelyana Alchemilla Alchemilla schmidelyana \N \N \N \N \N 8127 C.lehmanniana Calceolaria Calceolaria lehmanniana \N \N \N \N \N 8128 C.bifurcata Cordia Cordia bifurcata \N \N \N \N \N 8129 A.japonica Aucuba Aucuba japonica \N \N \N \N \N 8130 \N varietas Skimmia japonica var. distinctevenulosa \N \N \N \N \N 8131 H.philippianum Heliotropium Heliotropium philippianum \N \N \N \N \N 8132 A.JLZ-2011 Agave Agave sp. JLZ-2011 \N \N \N \N \N 8133 C.pachyphylla Cleyera Cleyera pachyphylla \N \N \N \N \N 8134 R.galeottii Ruellia Ruellia galeottii \N \N \N \N \N 8135 A.macrocarpa Abronia Abronia macrocarpa \N \N \N \N \N 8136 R.sinogrande Rhododendron Rhododendron sinogrande \N \N \N \N \N 8137 C.amarissima Curcuma Curcuma amarissima \N \N \N \N \N 8138 P.oreocharis Polystachya Polystachya oreocharis \N \N \N \N \N 8139 A.bakeri Arctostaphylos Arctostaphylos bakeri \N \N \N \N \N 8140 T.purpurascens Tasmannia Tasmannia purpurascens broad leaved pepperbush \N \N \N \N 8141 A.argyi Artemisia Artemisia argyi \N \N \N \N \N 8142 A.aquarii Austrostipa Austrostipa aquarii \N \N \N \N \N 8143 M.pygmaea Massonia Massonia pygmaea \N \N \N \N \N 8144 \N genus Praecitrullus \N \N \N \N \N 8145 \N genus Paracorynanthe \N \N \N \N \N 8146 P.sambucifolia Polyscias Polyscias sambucifolia \N \N \N \N \N 8147 A.SH-2010 Amaracarpus Amaracarpus sp. SH-2010 \N \N \N \N \N 8148 B.micrantha Bryodes Bryodes micrantha \N \N \N \N \N 8149 \N genus Ibervillea \N \N \N \N \N 8150 R.idaeus Rubus Rubus caesius x Rubus idaeus \N \N \N \N \N 8151 E.longifolius Euphorianthus Euphorianthus longifolius \N \N \N \N \N 8152 E.baricum Echiochilon Echiochilon baricum \N \N \N \N \N 8153 M.megaphylla Manglietia Manglietia megaphylla \N \N \N \N \N 8154 M.guyanensis Micropholis Micropholis guyanensis \N \N \N \N \N 8155 M.caffra Monanthotaxis Monanthotaxis caffra \N \N \N \N \N 8156 P.camtschatica Plantago Plantago camtschatica \N \N \N \N \N 8157 S.stracheyana Saussurea Saussurea stracheyana \N \N \N \N \N 8158 E.varia Elymus Elymus varia \N \N \N \N \N 8159 V.frutescens Vigna Vigna frutescens \N \N \N \N \N 8160 \N varietas Vigna mungo var. mungo \N \N \N \N \N 8161 V.molle Viburnum Viburnum molle soft-leaf arrowwood \N \N \N \N 8162 \N varietas Tetrastigma henryi var. mollifolium \N \N \N \N \N 8163 A.lupulina Ajuga Ajuga lupulina \N \N \N \N \N 8164 \N genus Santolina \N \N \N \N \N 8165 \N family Styracaceae storax family \N \N \N \N 8166 B.778 Brachiaria Brachiaria sp. Forest 778 \N \N \N \N \N 8167 B.condapanna Bentinckia Bentinckia condapanna \N \N \N \N \N 8168 C.lutzeyeri Capnophyllum Capnophyllum lutzeyeri \N \N \N \N \N 8169 S.soda Salsola Salsola soda su da zhu mao cai \N \N \N \N 8170 \N genus Trieenea \N \N \N \N \N 8171 H.undulata Halosarcia Halosarcia undulata \N \N \N \N \N 8172 \N genus Globba \N \N \N \N \N 8173 A.antarctica Amphibolis Amphibolis antarctica \N \N \N \N \N 8174 C.axilliflora Cuphea Cuphea axilliflora \N \N \N \N \N 8175 D.parryi Danthonia Danthonia parryi \N \N \N \N \N 8176 S.takesimensis Scrophularia Scrophularia takesimensis \N \N \N \N \N 8177 A.silvicola Arctostaphylos Arctostaphylos silvicola \N \N \N \N \N 8178 D.corrugata Draba Draba corrugata Southern California draba \N \N \N \N 8179 G.lanipes Germainia Germainia lanipes \N \N \N \N \N 8180 \N subspecies Campanula sparsa subsp. sphaerotrix \N \N \N \N \N 8181 H.glabra Hypochaeris Hypochaeris glabra smooth cat's-ear \N \N \N \N 8182 G.pinifolium Gypothamnium Gypothamnium pinifolium \N \N \N \N \N 8183 P.caucasica Pterocarya Pterocarya caucasica \N \N \N \N \N 8184 \N genus Lepidagathis \N \N \N \N \N 8185 H.salsoloides Hypertelis Hypertelis salsoloides \N \N \N \N \N 8186 E.ilicifolius Echinops Echinops ilicifolius \N \N \N \N \N 8187 V.labrusca Vitis Vitis labrusca Concord grape \N \N \N \N 8188 \N genus Rennellia \N \N \N \N \N 8189 F.orientalis Fagonia Fagonia orientalis \N \N \N \N \N 8190 A.pleiacantha Argemone Argemone pleiacantha \N \N \N \N \N 8191 \N varietas Prunus davidiana var. potaninii \N \N \N \N \N 8192 \N genus Phaulopsis \N \N \N \N \N 8193 N.leucocarpa Neoachmandra Neoachmandra leucocarpa \N \N \N \N \N 8194 M.synsepala Maxillaria Maxillaria synsepala \N \N \N \N \N 8195 P.zeyheri Pygmaeothamnus Pygmaeothamnus zeyheri \N \N \N \N \N 8196 R.macrantha Rauvolfia Rauvolfia macrantha \N \N \N \N \N 8197 L.acronemifolia Lalldhwojia Lalldhwojia acronemifolia \N \N \N \N \N 8198 S.acuminatum Santalum Santalum acuminatum katunga,quandong \N \N \N \N 8199 U.vietnamensis Uvaria Uvaria vietnamensis \N \N \N \N \N 8200 M.jaliscana Muhlenbergia Muhlenbergia jaliscana \N \N \N \N \N 8201 \N genus Brachyglottis \N \N \N \N \N 8202 I.shirensis Inula Inula shirensis \N \N \N \N \N 8203 Z.littoralis Zieria Zieria littoralis \N \N \N \N \N 8204 G.tomentosa Guatteriella Guatteriella tomentosa \N \N \N \N \N 8205 P.pilosa Pinguicula Pinguicula pilosa \N \N \N \N \N 8206 L.leucanthum Ligustrum Ligustrum leucanthum \N \N \N \N \N 8207 C.eichleri Caiophora Caiophora eichleri \N \N \N \N \N 8208 D.gilesii Dicrastylis Dicrastylis gilesii \N \N \N \N \N 8209 S.media Stellaria Stellaria media \N \N \N \N \N 8210 C.296284 Carthamus Carthamus sp. PI 296284 \N \N \N \N \N 8211 A.lasiandra Aenigmatanthera Aenigmatanthera lasiandra \N \N \N \N \N 8212 \N subspecies Pelargonium auritum subsp. carneum \N \N \N \N \N 8213 S.arborea Symplocos Symplocos arborea \N \N \N \N \N 8214 I.faberi Impatiens Impatiens faberi \N \N \N \N \N 8215 P.inquinans Pelargonium Pelargonium inquinans \N \N \N \N \N 8216 T.pallescens Trifolium Trifolium pallescens \N \N \N \N \N 8217 P.wallichiana Polytoca Polytoca wallichiana \N \N \N \N \N 8218 R.henryi Rehmannia Rehmannia henryi \N \N \N \N \N 8219 E.kotschyi Eryngium Eryngium kotschyi \N \N \N \N \N 8220 \N genus Burnettia \N \N \N \N \N 8221 \N varietas Lenbrassia australiana var. glabrescens \N \N \N \N \N 8222 A.swamyana Ascarina Ascarina swamyana \N \N \N \N \N 8223 E.tulearensis Euphorbia Euphorbia tulearensis \N \N \N \N \N 8224 \N family Sapotaceae sapodilla family \N \N \N \N 8225 A.sanbilingensis Astragalus Astragalus sanbilingensis \N \N \N \N \N 8226 S.acidum Sarcostemma Sarcostemma acidum \N \N \N \N \N 8227 P.molle Pycnophyllum Pycnophyllum molle \N \N \N \N \N 8228 C.platyphyllum Cheirodendron Cheirodendron platyphyllum \N \N \N \N \N 8229 \N genus Ammoides \N \N \N \N \N 8230 S.albida Scaevola Scaevola albida \N \N \N \N \N 8231 \N genus Drakonorchis \N \N \N \N \N 8232 P.mirabile Pachyctenium Pachyctenium mirabile \N \N \N \N \N 8233 M.longiloba Mentzelia Mentzelia longiloba \N \N \N \N \N 8234 Y.oblonga Yushania Yushania oblonga \N \N \N \N \N 8235 \N genus Neoalsomitra \N \N \N \N \N 8236 A.korthalsii Alocasia Alocasia korthalsii \N \N \N \N \N 8237 G.sample environmental samples Taxonomy:1096686 Gustavia environmental sample \N \N \N \N \N 8238 S.gracile Schizostachyum Schizostachyum gracile \N \N \N \N \N 8239 I.TP-2009 Inga Inga sp. 17 TP-2009 \N \N \N \N \N 8240 \N genus Pleurothyrium \N \N \N \N \N 8241 \N genus x Tritordeum \N \N \N \N \N 8242 \N genus Lopezia \N \N \N \N \N 8243 \N genus Dicrastylis \N \N \N \N \N 8244 O.alpina Oreoxis Oreoxis alpina \N \N \N \N \N 8245 D.pulidoi Dendriopoterium Dendriopoterium pulidoi \N \N \N \N \N 8246 P.hypargyreus Pappobolus Pappobolus hypargyreus \N \N \N \N \N 8247 D.scabrida Dinochloa Dinochloa scabrida \N \N \N \N \N 8248 E.rigida Ehretia Ehretia rigida \N \N \N \N \N 8249 C.complanata Cliffortia Cliffortia complanata \N \N \N \N \N 8250 G.752 Greenea Greenea sp. Beusekom 752 \N \N \N \N \N 8251 C.gemmata Cyanicula Cyanicula gemmata \N \N \N \N \N 8252 P.gamal-eldiniae Pulicaria Pulicaria gamal-eldiniae \N \N \N \N \N 8253 \N genus Scorpiurus \N \N \N \N \N 8254 S.limoncochaense Solanum Solanum limoncochaense \N \N \N \N \N 8255 A.radicans Anthurium Anthurium radicans \N \N \N \N \N 8256 \N genus Afrocarum \N \N \N \N \N 8257 R.brownii Rosa Rosa brownii \N \N \N \N \N 10001 \N genus Dendrophorbium \N \N \N \N \N 8258 M.hieroglyphica Masdevallia Masdevallia hieroglyphica \N \N \N \N \N 8259 M.humboldtiana Metrosideros Metrosideros humboldtiana \N \N \N \N \N 8260 V.undulata Veronica Veronica undulata \N \N \N \N \N 8261 \N subfamily Opuntioideae \N \N \N \N \N 8262 D.ochotense Delphinium Delphinium ochotense \N \N \N \N \N 8263 \N subspecies Trifolium rusbyi subsp. oreganum \N \N \N \N \N 8264 S.monroi Senecio Senecio monroi \N \N \N \N \N 8265 B.grossularioides Bellucia Bellucia grossularioides \N \N \N \N \N 8266 T.balsamifera Tetragastris Tetragastris balsamifera \N \N \N \N \N 8267 I.lazica Iris Iris lazica \N \N \N \N \N 8268 \N genus Zygosicyos \N \N \N \N \N 8269 C.monticola Canacomyrica Canacomyrica monticola \N \N \N \N \N 8270 P.mauritiana Polyscias Polyscias mauritiana \N \N \N \N \N 8271 M.griffithianus Mallotus Mallotus griffithianus \N \N \N \N \N 8272 G.sinuata Gilia Gilia sinuata \N \N \N \N \N 8273 A.griscomii Arnica Arnica griscomii \N \N \N \N \N 8274 T.sylvatica Tetraria Tetraria sylvatica \N \N \N \N \N 8275 T.decorticans Tetrazygia Tetrazygia decorticans \N \N \N \N \N 8276 H.harpachnoides Harpachne Harpachne harpachnoides \N \N \N \N \N 8277 P.gracilipes Peliosanthes Peliosanthes gracilipes \N \N \N \N \N 8278 H.balearicum Hypericum Hypericum balearicum \N \N \N \N \N 8279 E.strobiliformis Encephalocarpus Encephalocarpus strobiliformis \N \N \N \N \N 8280 \N forma Prunus persica f. duplex \N \N \N \N \N 8281 \N subspecies Olea capensis subsp. capensis \N \N \N \N \N 8282 \N genus Haplostichanthus \N \N \N \N \N 8283 \N no rank environmental samples Taxonomy:205882 \N \N \N \N \N 8284 C.obovatifolia Camellia Camellia obovatifolia \N \N \N \N \N 8285 P.rhytidocarpum Pittosporum Pittosporum rhytidocarpum \N \N \N \N \N 8286 W.clemensiae Weinmannia Weinmannia clemensiae \N \N \N \N \N 8287 E.sinclairii Ewartia Ewartia sinclairii \N \N \N \N \N 8288 D.cochliops Dracula Dracula cochliops \N \N \N \N \N 8289 D.polyphylla Draba Draba polyphylla \N \N \N \N \N 8290 \N genus Seguieria \N \N \N \N \N 8291 P.eximia Protea Protea eximia \N \N \N \N \N 8292 P.davidsonii Philodendron Philodendron davidsonii \N \N \N \N \N 8293 P.pinifolia Pultenaea Pultenaea pinifolia \N \N \N \N \N 8294 Z.splendens Zollernia Zollernia splendens \N \N \N \N \N 8295 V.dubia Ventenata Ventenata dubia \N \N \N \N \N 8296 S.variabilis Symplocos Symplocos variabilis \N \N \N \N \N 8297 P.glaucescens Puccinellia Puccinellia glaucescens \N \N \N \N \N 8298 B.multijuga Brownea Brownea multijuga \N \N \N \N \N 8299 C.eriopodum Calligonum Calligonum eriopodum \N \N \N \N \N 8300 P.chiapensis Peniocereus Peniocereus chiapensis \N \N \N \N \N 8301 B.platylepis Babcockia Babcockia platylepis \N \N \N \N \N 8302 \N varietas Mimosa polycarpa var. redundans \N \N \N \N \N 8303 I.gypsacea Indigofera Indigofera gypsacea \N \N \N \N \N 8304 B.palmata Bowlesia Bowlesia palmata \N \N \N \N \N 8305 P.californicum Papaver Papaver californicum fire poppy,western poppy \N \N \N \N 8306 N.poeppigiana Nassella Nassella poeppigiana \N \N \N \N \N 8307 O.falcatula Oxalis Oxalis falcatula \N \N \N \N \N 8308 \N genus Potamogeton pondweeds \N \N \N \N 8309 A.taurotesticulata Andira Andira taurotesticulata \N \N \N \N \N 8310 H.frondosum Hypericum Hypericum frondosum \N \N \N \N \N 8311 G.fruticosus Gomphocarpus Gomphocarpus fruticosus \N \N \N \N \N 8312 \N varietas Corylopsis sinensis var. calvescens \N \N \N \N \N 8313 P.oxyspermum Polygonum Polygonum oxyspermum \N \N \N \N \N 8314 L.crispidens Lysimachia Lysimachia crispidens \N \N \N \N \N 8315 \N genus Atylosia \N \N \N \N \N 8316 M.africana Maclura Maclura africana \N \N \N \N \N 8317 \N subspecies Cynara baetica subsp. baetica \N \N \N \N \N 8318 R.uncinata Reynosia Reynosia uncinata \N \N \N \N \N 8319 M.tenacissima Macrochloa Macrochloa tenacissima \N \N \N \N \N 8320 C.8000736 Coptosperma Coptosperma sp. 8000736 \N \N \N \N \N 8321 B.ankaranensis Begonia Begonia ankaranensis \N \N \N \N \N 8322 G.dulcis Garcinia Garcinia dulcis \N \N \N \N \N 8323 Z.leptopetalum Zygophyllum Zygophyllum leptopetalum \N \N \N \N \N 8324 S.pentantha Strychnos Strychnos pentantha \N \N \N \N \N 8325 S.humillimus Senecio Senecio humillimus \N \N \N \N \N 8326 P.7904 Paronychia Paronychia sp. Chase 7904 \N \N \N \N \N 8327 G.silvana Gomesa Gomesa silvana \N \N \N \N \N 8328 T.trifoliata Tiarella Tiarella trifoliata threeleaf foamflower \N \N \N \N 8329 Z.leucocladum Zygophyllum Zygophyllum leucocladum \N \N \N \N \N 8330 B.iridifolia Bolusiella Bolusiella iridifolia \N \N \N \N \N 8331 P.trisecta Passiflora Passiflora trisecta \N \N \N \N \N 8332 B.breweri Boechera Boechera breweri \N \N \N \N \N 8333 E.CANU38103 Euchiton Euchiton sp. CANU38103 \N \N \N \N \N 8334 P.IP-2011 Phalaenopsis Phalaenopsis sp. IP-2011 \N \N \N \N \N 8335 M.reverchonii Muhlenbergia Muhlenbergia reverchonii \N \N \N \N \N 8336 S.bucharica Salvia Salvia bucharica \N \N \N \N \N 8337 D.chinensis Dischidia Dischidia chinensis \N \N \N \N \N 8338 \N genus Leptopus \N \N \N \N \N 8339 V.formosanum Veratrum Veratrum formosanum \N \N \N \N \N 8340 C.saximontana Carex Carex saximontana \N \N \N \N \N 8341 T.orientalis Turnera Turnera orientalis \N \N \N \N \N 8342 S.polyadenia Salix Salix polyadenia \N \N \N \N \N 8343 S.scaberrimus Schismus Schismus scaberrimus \N \N \N \N \N 8344 I.23622 Indigofera Indigofera sp. Mackee 23622 \N \N \N \N \N 8345 C.vulcanica Calamagrostis Calamagrostis vulcanica \N \N \N \N \N 8346 O.sublanatum Oxypetalum Oxypetalum sublanatum \N \N \N \N \N 8347 G.tenuifolia Gunniopsis Gunniopsis tenuifolia \N \N \N \N \N 8348 D.requienii Delphinium Delphinium requienii \N \N \N \N \N 8349 P.persicum Phagnalon Phagnalon persicum \N \N \N \N \N 8350 S.andina Sarcocornia Sarcocornia andina \N \N \N \N \N 8351 \N genus Stenoseris \N \N \N \N \N 8352 M.alba Morus Morus alba white mulberry \N \N \N \N 8353 \N genus Silaum \N \N \N \N \N 11264 \N genus Leptinella \N \N \N \N \N 8354 T.amara Trichosanthes Trichosanthes amara \N \N \N \N \N 8355 P.pancherianus Phyllanthus Phyllanthus pancherianus \N \N \N \N \N 8356 \N genus Richteria \N \N \N \N \N 8357 \N genus Melocactus \N \N \N \N \N 8358 R.spinifex Randia Randia spinifex \N \N \N \N \N 8359 Z.drummondii Zephyranthes Zephyranthes drummondii \N \N \N \N \N 8360 O.robusta Opuntia Opuntia robusta bartolona,joconoxtle,nopal camueso,tuna bartolona,tuna tapona,wheel cactus \N \N \N \N 8361 E.lacustre Eryngium Eryngium lacustre \N \N \N \N \N 8362 \N subspecies Prunus domestica subsp. insititia damson plum \N \N \N \N 8363 S.speciosa Sabicea Sabicea speciosa \N \N \N \N \N 8364 B.decora Billbergia Billbergia decora \N \N \N \N \N 8365 C.chlorantha Cousinia Cousinia chlorantha \N \N \N \N \N 8366 L.clidemioides Leandra Leandra clidemioides \N \N \N \N \N 8367 E.eruptens Erigeron Erigeron eruptens \N \N \N \N \N 8368 E.subcarnosus Euryops Euryops subcarnosus \N \N \N \N \N 8369 N.chancoana Nolana Nolana chancoana \N \N \N \N \N 8370 G.wrightii Galium Galium wrightii \N \N \N \N \N 8371 P.autumnalis Prenanthes Prenanthes autumnalis \N \N \N \N \N 8372 \N genus Hladnikia \N \N \N \N \N 8373 \N genus Ochlandra \N \N \N \N \N 8374 G.odoratissima Gavilea Gavilea odoratissima \N \N \N \N \N 8375 \N genus Spiradiclis \N \N \N \N \N 8376 M.richardsonis Muhlenbergia Muhlenbergia richardsonis \N \N \N \N \N 8377 O.bodinieri Oldenlandia Oldenlandia bodinieri \N \N \N \N \N 8378 D.rhodacantha Denmoza Denmoza rhodacantha \N \N \N \N \N 8379 S.flaccidus Senecio Senecio flaccidus threadleaf ragwort \N \N \N \N 8380 C.pachysepala Cobaea Cobaea pachysepala \N \N \N \N \N 8381 C.occidentalis Castilleja Castilleja occidentalis \N \N \N \N \N 8382 D.papilio Dendrobium Dendrobium papilio \N \N \N \N \N 8383 D.squarrosa Diospyros Diospyros squarrosa \N \N \N \N \N 8384 G.veitchiorum Gentiana Gentiana veitchiorum \N \N \N \N \N 8385 S.alternatopinnatum Solanum Solanum alternatopinnatum \N \N \N \N \N 8386 P.incana Potentilla Potentilla incana \N \N \N \N \N 8387 L.cyrtocarpus Lithocarpus Lithocarpus cyrtocarpus \N \N \N \N \N 8388 P.hirtum Panicum Panicum hirtum \N \N \N \N \N 8389 C.H5_44 Castilleja Castilleja sp. H5_44 \N \N \N \N \N 8390 L.sarawacensis Litsea Litsea sarawacensis \N \N \N \N \N 8391 B.exaristata Bruguiera Bruguiera exaristata \N \N \N \N \N 8392 B.glabella Braya Braya glabella \N \N \N \N \N 8393 T.lucens Thamnochortus Thamnochortus lucens \N \N \N \N \N 8394 S.septemtrionalis Senna Senna septemtrionalis \N \N \N \N \N 8395 P.6903 Paphiopedilum Paphiopedilum sp. Hahn 6903 \N \N \N \N \N 8396 A.rainbowensis Arctostaphylos Arctostaphylos rainbowensis \N \N \N \N \N 8397 C.radicans Ceropegia Ceropegia radicans \N \N \N \N \N 8398 H.myrtifolia Hopea Hopea myrtifolia \N \N \N \N \N 8399 L.rigidum Lolium Lolium rigidum \N \N \N \N \N 8400 P.trichophyllus Paepalanthus Paepalanthus trichophyllus \N \N \N \N \N 8401 N.3698 Nemesia Nemesia sp. Steiner 3698 \N \N \N \N \N 8402 P.pubescens Polygonatum Polygonatum pubescens \N \N \N \N \N 8403 T.commutatum Thesium Thesium commutatum \N \N \N \N \N 8404 D.porrectus Dendrophylax Dendrophylax porrectus \N \N \N \N \N 8405 \N genus Leontochir \N \N \N \N \N 8406 A.sample environmental samples Taxonomy:979580 Arabidopsis environmental sample \N \N \N \N \N 8407 C.crenopetala Cleome Cleome crenopetala \N \N \N \N \N 8408 S.vagans Sinclairia Sinclairia vagans \N \N \N \N \N 8409 D.tapetodes Dionysia Dionysia tapetodes \N \N \N \N \N 8410 D.glaucescens Delphinium Delphinium glaucescens \N \N \N \N \N 8411 P.schelpei Pterygodium Pterygodium schelpei \N \N \N \N \N 8412 B.00/0528 Begonia Begonia sp. 00/0528 \N \N \N \N \N 8413 S.holguinensis Spirotecoma Spirotecoma holguinensis \N \N \N \N \N 8414 C.dictyoneuron Cinnamomum Cinnamomum dictyoneuron \N \N \N \N \N 8415 \N subspecies Scrophularia vernalis subsp. clausii \N \N \N \N \N 8416 \N genus Dymondia \N \N \N \N \N 8417 C.luederitziana Cleome Cleome luederitziana \N \N \N \N \N 8418 \N genus Coeliopsis \N \N \N \N \N 8419 N.dioica Napaea Napaea dioica \N \N \N \N \N 8420 P.anguineus Penstemon Penstemon anguineus \N \N \N \N \N 8421 C.pillansii Cephalophyllum Cephalophyllum pillansii \N \N \N \N \N 8422 B.articulata Baumea Baumea articulata \N \N \N \N \N 8423 S.hirtella Salvia Salvia hirtella \N \N \N \N \N 8424 T.kingii Tropaeolum Tropaeolum kingii \N \N \N \N \N 8425 R.woodsii Rosa Rosa woodsii western wild rose \N \N \N \N 8426 O.maculatum Ornithogalum Ornithogalum maculatum \N \N \N \N \N 8427 B.edulis Blepharis Blepharis edulis \N \N \N \N \N 8428 H.obtusifolia Hugonia Hugonia obtusifolia \N \N \N \N \N 8429 \N no rank unclassified Asteraceae \N \N \N \N \N 8430 S.biawak Shorea Shorea biawak \N \N \N \N \N 8431 \N genus Cyphophoenix \N \N \N \N \N 8432 D.aromaticus Didymocarpus Didymocarpus aromaticus \N \N \N \N \N 8433 \N subspecies Disa oreophila subsp. oreophila \N \N \N \N \N 8434 A.pacifica Ajania Ajania pacifica \N \N \N \N \N 8435 V.epetiolaris Vicia Vicia epetiolaris \N \N \N \N \N 8436 C.oranensis Cerinthe Cerinthe oranensis \N \N \N \N \N 8437 A.zambalensis Androsace Androsace zambalensis \N \N \N \N \N 8438 C.sibirica Chorispora Chorispora sibirica \N \N \N \N \N 8439 \N subspecies Gentiana verna subsp. delphinensis \N \N \N \N \N 8440 \N genus Jubelina \N \N \N \N \N 8441 \N subclass commelinids \N \N \N \N \N 8442 G.BL1328 Galium Galium sp. BL1328 \N \N \N \N \N 8443 S.galeatum Sideroxylon Sideroxylon galeatum \N \N \N \N \N 8444 L.calocephala Lomelosia Lomelosia calocephala \N \N \N \N \N 8445 C.tapia Crateva Crateva tapia garlic-pear \N \N \N \N 8446 P.anjozorabensis Polyscias Polyscias anjozorabensis \N \N \N \N \N 8447 \N genus Sclerocarpus \N \N \N \N \N 8448 D.punctatus Dendropanax Dendropanax punctatus \N \N \N \N \N 8449 C.willdenowii Croton Croton willdenowii \N \N \N \N \N 8450 C.drummondii Cirsium Cirsium drummondii \N \N \N \N \N 8451 N.rupicola Napeanthus Napeanthus rupicola \N \N \N \N \N 8452 L.matudae Leucaena Leucaena matudae guaje brujo,guaje chismoso,tlapaloaxin \N \N \N \N 8453 A.mellodora Asclepias Asclepias mellodora \N \N \N \N \N 8454 \N subspecies Matthiola longipetala subsp. bicornis \N \N \N \N \N 8455 A.crassispatha Attalea Attalea crassispatha \N \N \N \N \N 8456 P.vaginatus Paepalanthus Paepalanthus vaginatus \N \N \N \N \N 8457 L.australiana Lenbrassia Lenbrassia australiana \N \N \N \N \N 8458 A.zanthodacryon Asclepias Asclepias zanthodacryon \N \N \N \N \N 8459 P.multijuga Parkia Parkia multijuga \N \N \N \N \N 8460 G.brentae Gentiana Gentiana brentae \N \N \N \N \N 8461 \N subspecies Gymnocalycium mostii subsp. valnicekianum \N \N \N \N \N 8462 \N tribe Gochnatieae \N \N \N \N \N 8463 \N genus Rhyssolobium \N \N \N \N \N 8464 I.sulcata Impatiens Impatiens sulcata \N \N \N \N \N 8465 R.telmaticum Rytidosperma Rytidosperma telmaticum \N \N \N \N \N 8466 O.californica Oenothera Oenothera californica \N \N \N \N \N 8467 R.bulbifera Ruellia Ruellia bulbifera \N \N \N \N \N 8468 L.dolichobotrys Ligularia Ligularia dolichobotrys \N \N \N \N \N 8469 V.popenoei Vitis Vitis popenoei totoloche grape \N \N \N \N 8470 C.angustifolia Conostylis Conostylis angustifolia \N \N \N \N \N 8471 T.nana Tricyrtis Tricyrtis nana \N \N \N \N \N 8472 R.rochussenii Rafflesia Rafflesia rochussenii \N \N \N \N \N 8473 H.tenella Hoffmannseggia Hoffmannseggia tenella slender rushpea \N \N \N \N 8474 A.depressum Aptosimum Aptosimum depressum \N \N \N \N \N 8475 M.africana Maprounea Maprounea africana \N \N \N \N \N 8476 K.fibrosa Kniphofia Kniphofia fibrosa \N \N \N \N \N 8477 A.cooperi Albuca Albuca cooperi \N \N \N \N \N 8478 P.compressifolium Paspalum Paspalum compressifolium \N \N \N \N \N 8479 S.pallida Stenia Stenia pallida \N \N \N \N \N 8480 H.sulcata Heteropholis Heteropholis sulcata \N \N \N \N \N 8481 A.punctata Anthemis Anthemis punctata \N \N \N \N \N 8482 M.intermedium Melastoma Melastoma intermedium \N \N \N \N \N 8483 D.andersonii Delphinium Delphinium andersonii \N \N \N \N \N 8484 Z.SRR-2011 unclassified Zygopetalinae Zygopetalinae sp. 4 SRR-2011 \N \N \N \N \N 8485 C.vietnamensis Camellia Camellia vietnamensis \N \N \N \N \N 8486 G.ilicifolia Gibbaria Gibbaria ilicifolia \N \N \N \N \N 8487 D.fragrantissima Diaphananthe Diaphananthe fragrantissima \N \N \N \N \N 8488 B.oxyphylla Begonia Begonia oxyphylla \N \N \N \N \N 8489 H.scandens Hewittia Hewittia scandens \N \N \N \N \N 8490 M.galeottii Mimosa Mimosa galeottii \N \N \N \N \N 8491 A.unalaschcensis Arnica Arnica unalaschcensis \N \N \N \N \N 8492 \N forma Rhipsalis neves-armondii f. megalantha \N \N \N \N \N 8493 A.fleckii Acrotome Acrotome fleckii \N \N \N \N \N 8494 P.sample environmental samples Taxonomy:404787 Phytolaccaceae environmental sample \N \N \N \N \N 8495 G.capillaris Gymnodiscus Gymnodiscus capillaris \N \N \N \N \N 8496 S.toxotis Senecio Senecio toxotis \N \N \N \N \N 8497 C.parviflora Chiococca Chiococca parviflora \N \N \N \N \N 8498 C.shimotomaii Chrysanthemum Chrysanthemum x shimotomaii \N \N \N \N \N 8499 \N varietas Forsythia japonica var. saxatilis \N \N \N \N \N 8500 I.discolor Impatiens Impatiens discolor \N \N \N \N \N 8501 T.CH_M8Sdcum Triticum Triticum sp. CH_M8Sdcum \N \N \N \N \N 8502 B.1665 Boechera Boechera sp. KG 1665 \N \N \N \N \N 8503 S.tubulosa Samanea Samanea tubulosa \N \N \N \N \N 8504 H.hyssopifolia Hedeoma Hedeoma hyssopifolia \N \N \N \N \N 8505 L.bilineata Lysipomia Lysipomia bilineata \N \N \N \N \N 8506 C.rufina Carex Carex rufina \N \N \N \N \N 8507 P.tomentosa Packera Packera tomentosa \N \N \N \N \N 8508 G.mexicana Gaillardia Gaillardia mexicana \N \N \N \N \N 8509 S.1363' Stylogyne Stylogyne sp. 'Staahl & Knudsen 1363' \N \N \N \N \N 8510 \N varietas Grindelia stricta var. stricta \N \N \N \N \N 8511 L.spathulata Lachnocapsa Lachnocapsa spathulata \N \N \N \N \N 8512 \N subspecies Polygonum ramosissimum subsp. prolificum \N \N \N \N \N 8513 B.karatavica Botschantzevia Botschantzevia karatavica \N \N \N \N \N 8514 S.pubivena Sorocea Sorocea pubivena \N \N \N \N \N 8515 L.uruguayensis Ludwigia Ludwigia uruguayensis \N \N \N \N \N 8516 D.kopetdaghense Dorema Dorema kopetdaghense \N \N \N \N \N 8517 C.SRR-2011 Chondrorhyncha Chondrorhyncha sp. 1 SRR-2011 \N \N \N \N \N 8518 P.pallida Prosopis Prosopis pallida kiawe \N \N \N \N 8519 T.latisepala Trichoglottis Trichoglottis latisepala \N \N \N \N \N 8520 R.alternans Rhododendron Rhododendron alternans \N \N \N \N \N 8521 P.glabra Pullea Pullea glabra \N \N \N \N \N 8522 P.echinatus Pterocelastrus Pterocelastrus echinatus \N \N \N \N \N 8523 T.pichisermollii Trifolium Trifolium pichisermollii \N \N \N \N \N 8524 S.longispicata Salvia Salvia longispicata \N \N \N \N \N 8525 O.sphegodes Ophrys Ophrys sphegodes \N \N \N \N \N 8526 P.neesianum Piper Piper neesianum \N \N \N \N \N 8527 G.tomentosa Gaylussacia Gaylussacia tomentosa \N \N \N \N \N 8528 D.lamingtonii Dionysia Dionysia lamingtonii \N \N \N \N \N 8529 H.hyobanchoides Harveya Harveya hyobanchoides \N \N \N \N \N 8530 P.05021 Populus Populus sp. Qiu 05021 \N \N \N \N \N 8531 E.odorata Erica Erica odorata \N \N \N \N \N 8532 V.rossii Viola Viola rossii \N \N \N \N \N 8533 \N genus Bracteantha \N \N \N \N \N 8534 C.peploides Callitriche Callitriche peploides \N \N \N \N \N 8535 C.divaricata Cousinia Cousinia divaricata \N \N \N \N \N 8536 S.xanthina Sophronitis Sophronitis xanthina \N \N \N \N \N 8538 \N subspecies Carlina acaulis subsp. acaulis \N \N \N \N \N 8539 C.capitella Crassula Crassula capitella \N \N \N \N \N 8540 \N genus Potamoganos \N \N \N \N \N 8541 C.valida Calamagrostis Calamagrostis valida \N \N \N \N \N 8542 \N varietas Salvia lutescens var. lutescens \N \N \N \N \N 8543 S.stipulata Sterculia Sterculia stipulata \N \N \N \N \N 8544 A.grisolleoides Alangium Alangium grisolleoides \N \N \N \N \N 8545 H.leptantha Helmontia Helmontia leptantha \N \N \N \N \N 8546 A.leptomerioides Anthobolus Anthobolus leptomerioides \N \N \N \N \N 8547 A.sulcocarpa Arctotis Arctotis sulcocarpa \N \N \N \N \N 8548 N.anthemidifolia Nototriche Nototriche anthemidifolia \N \N \N \N \N 8549 A.mollis Abrus Abrus mollis \N \N \N \N \N 8550 P.ehlersiae Pinguicula Pinguicula ehlersiae \N \N \N \N \N 8551 \N genus Ziziphora \N \N \N \N \N 8552 I.ventricosa Iris Iris ventricosa \N \N \N \N \N 8553 L.L13 Lonchocarpus Lonchocarpus sp. Hu L13 \N \N \N \N \N 8554 F.gydomontana Ficinia Ficinia gydomontana \N \N \N \N \N 8555 W.sessilifolia Warea Warea sessilifolia \N \N \N \N \N 8556 C.gardenii Clivia Clivia gardenii \N \N \N \N \N 8557 R.campylogynum Rhododendron Rhododendron campylogynum \N \N \N \N \N 8558 S.uleanum Solanum Solanum uleanum \N \N \N \N \N 8559 H.eyreana Harperia Harperia eyreana \N \N \N \N \N 8560 T.rhomboideum Tropaeolum Tropaeolum rhomboideum \N \N \N \N \N 8561 E.meuleniana Euphorbia Euphorbia meuleniana \N \N \N \N \N 8562 S.thorelii Shorea Shorea thorelii \N \N \N \N \N 8563 T.salsoloides Teline Teline salsoloides \N \N \N \N \N 8564 I.cremnophila Ivania Ivania cremnophila \N \N \N \N \N 8565 P.englishiae Prenia Prenia englishiae \N \N \N \N \N 8566 F.bourjotiana Flindersia Flindersia bourjotiana \N \N \N \N \N 8567 C.ramulosa Campanula Campanula ramulosa \N \N \N \N \N 8568 \N subspecies Senecio aegyptius subsp. thebanus \N \N \N \N \N 8569 I.umbellata Iberis Iberis umbellata globe candytuft \N \N \N \N 8570 D.alabamicum Delphinium Delphinium alabamicum \N \N \N \N \N 8571 C.decumbens Cromidon Cromidon decumbens \N \N \N \N \N 8572 \N varietas Lathyrus multiceps var. setiger \N \N \N \N \N 8573 D.bruniifolia Draba Draba bruniifolia \N \N \N \N \N 8574 \N genus Cussonia \N \N \N \N \N 8575 C.lehmannianum Corispermum Corispermum lehmannianum \N \N \N \N \N 8576 C.subfenestratum Conophytum Conophytum subfenestratum \N \N \N \N \N 8577 \N genus Sporobolus dropseed \N \N \N \N 8578 O.poikilostalix Oncidium Oncidium poikilostalix \N \N \N \N \N 8579 E.kerneri Euphrasia Euphrasia kerneri \N \N \N \N \N 8580 P.griseosepala Pycnandra Pycnandra griseosepala \N \N \N \N \N 8581 K.induta Kadsura Kadsura induta \N \N \N \N \N 8582 V.sieheana Viola Viola sieheana \N \N \N \N \N 8583 R.1587 Rhaponticoides Rhaponticoides cf. hajastana Susanna et al. 1587 \N \N \N \N \N 8584 \N genus Eysenhardtia \N \N \N \N \N 8585 X.capensis Xyris Xyris capensis \N \N \N \N \N 8586 \N genus Gmelina \N \N \N \N \N 8587 \N subspecies Hibiscus moscheutos subsp. lasiocarpos \N \N \N \N \N 8588 P.304 Peponidium Peponidium sp. Karehed et al. 304 \N \N \N \N \N 8589 M.mannii Musa Musa mannii \N \N \N \N \N 8590 P.rectifolia Pinguicula Pinguicula rectifolia \N \N \N \N \N 8591 D.juvenilis Draba Draba juvenilis \N \N \N \N \N 8592 D.parvibracteata Dalechampia Dalechampia parvibracteata \N \N \N \N \N 8593 O.lupinellum Orbexilum Orbexilum lupinellum \N \N \N \N \N 8594 C.1726 Cyrtochilum Cyrtochilum cf. porrigens Whitten 1726 \N \N \N \N \N 8595 C.mixtus Cladanthus Cladanthus mixtus \N \N \N \N \N 8596 S.barbata Stipa Stipa barbata \N \N \N \N \N 8597 P.alcalina Primula Primula alcalina \N \N \N \N \N 8598 \N tribe Potentilleae \N \N \N \N \N 8599 S.tillaeacea Synaptantha Synaptantha tillaeacea \N \N \N \N \N 8600 I.rosthornii Isodon Isodon rosthornii \N \N \N \N \N 8601 O.reynosoana Otatea Otatea reynosoana \N \N \N \N \N 8602 C.subnigricans Carex Carex subnigricans \N \N \N \N \N 8603 G.dolichopoda Gaultheria Gaultheria dolichopoda \N \N \N \N \N 8604 R.lomensis Rondeletia Rondeletia lomensis \N \N \N \N \N 8605 P.cornubiense Physospermum Physospermum cornubiense \N \N \N \N \N 8606 P.paniculata Persicaria Persicaria paniculata \N \N \N \N \N 8607 F.rumphii Ficus Ficus rumphii xin ye rong \N \N \N \N 8608 R.umbellulata Rytigynia Rytigynia umbellulata \N \N \N \N \N 8609 P.parviflora Paraknoxia Paraknoxia parviflora \N \N \N \N \N 8610 \N genus Metastelma \N \N \N \N \N 8611 O.venosus Osmanthus Osmanthus venosus \N \N \N \N \N 8612 B.cyclanthum Bulbophyllum Bulbophyllum cyclanthum \N \N \N \N \N 8613 \N subspecies Acacia nilotica subsp. leiocarpa \N \N \N \N \N 8614 \N subspecies Eremalche parryi subsp. kernensis \N \N \N \N \N 8615 N.asarifolius Nirarathamnos Nirarathamnos asarifolius \N \N \N \N \N 8616 \N genus Glomera \N \N \N \N \N 8617 \N genus Hexinia \N \N \N \N \N 8618 B.calcarata Bifrenaria Bifrenaria calcarata \N \N \N \N \N 8619 T.JK4034 unclassified Taraxacum Taraxacum (sect. Tibetana) sp. JK4034 \N \N \N \N \N 8620 H.candidissimum Hedysarum Hedysarum candidissimum \N \N \N \N \N 8621 C.funale Cynanchum Cynanchum funale \N \N \N \N \N 8622 \N varietas Vigna mungo var. silvestris \N \N \N \N \N 8623 K.flava Kyllinga Kyllinga flava \N \N \N \N \N 8624 C.tenuiflora Castilleja Castilleja tenuiflora \N \N \N \N \N 8625 P.torreyi Phyllospadix Phyllospadix torreyi \N \N \N \N \N 8626 P.garcinii Polygala Polygala garcinii \N \N \N \N \N 8627 S.tridynamum Solanum Solanum tridynamum \N \N \N \N \N 8628 A.cordifolia Anisotoma Anisotoma cordifolia \N \N \N \N \N 8629 L.laxa Lachnaea Lachnaea laxa \N \N \N \N \N 8630 \N genus Distictella \N \N \N \N \N 8631 N.planosperma Nymphoides Nymphoides planosperma \N \N \N \N \N 8632 B.montanus Bunochilus Bunochilus montanus \N \N \N \N \N 8633 \N genus Witheringia \N \N \N \N \N 8634 O.bullata Ocotea Ocotea bullata \N \N \N \N \N 9601 \N genus Osa \N \N \N \N \N 8635 G.pseudoevodiifolia Gamblea Gamblea pseudoevodiifolia \N \N \N \N \N 8636 B.12 Brownea Brownea sp. Archambault 12 \N \N \N \N \N 8637 K.retrorsa Kohautia Kohautia retrorsa \N \N \N \N \N 8638 A.falcifolium Allium Allium falcifolium \N \N \N \N \N 8639 N.laevigatum Notobubon Notobubon laevigatum \N \N \N \N \N 8640 A.leiophyllus Astragalus Astragalus leiophyllus \N \N \N \N \N 8641 V.parvifolium Vaccinium Vaccinium parvifolium red-huckleberry \N \N \N \N 8642 B.remotiflora Bambusa Bambusa remotiflora \N \N \N \N \N 8643 I.hirtivaginatus Indocalamus Indocalamus hirtivaginatus \N \N \N \N \N 8644 M.todiltoensis Mentzelia Mentzelia todiltoensis \N \N \N \N \N 8645 C.concinna Cristaria Cristaria concinna \N \N \N \N \N 8646 R.stipularis Rondeletia Rondeletia stipularis \N \N \N \N \N 8647 D.africana Didelotia Didelotia africana \N \N \N \N \N 8648 C.pubescens Chaubardiella Chaubardiella pubescens \N \N \N \N \N 8649 S.splendens Spathelia Spathelia splendens \N \N \N \N \N 8650 T.mossambicensis Tetrapogon Tetrapogon mossambicensis \N \N \N \N \N 8651 \N genus Trizeuxis \N \N \N \N \N 8652 \N genus Myagrum \N \N \N \N \N 8653 H.laristanicum Haplophyllum Haplophyllum laristanicum \N \N \N \N \N 8654 C.capilliflora Clidemia Clidemia capilliflora \N \N \N \N \N 8655 B.fruticosa Breynia Breynia fruticosa \N \N \N \N \N 8656 F.vasta Ficus Ficus vasta \N \N \N \N \N 8657 \N subspecies Tasmannia xerophila subsp. robusta \N \N \N \N \N 8658 L.incarnata Linaria Linaria incarnata \N \N \N \N \N 8659 E.decumbens Echinodorus Echinodorus decumbens \N \N \N \N \N 8660 O.gratiosa Orobanche Orobanche gratiosa \N \N \N \N \N 8661 V.lutea Vicia Vicia lutea yellow vetch \N \N \N \N 8662 H.lucidum Hieracium Hieracium lucidum \N \N \N \N \N 8663 H.mastersianus Hibiscus Hibiscus mastersianus \N \N \N \N \N 8664 T.IR701 unclassified Taraxacum Taraxacum (sect. Dioszegia) sp. IR701 \N \N \N \N \N 8665 P.maguireorum Potalia Potalia maguireorum \N \N \N \N \N 8666 R.lyratum Rhaponticum Rhaponticum lyratum \N \N \N \N \N 8667 T.prunioides Terminalia Terminalia prunioides \N \N \N \N \N 8668 \N genus Lasjia \N \N \N \N \N 8669 P.hymenophyllum Piper Piper hymenophyllum \N \N \N \N \N 8670 E.totta Erica Erica totta \N \N \N \N \N 8671 C.nigrescens Cerastium Cerastium nigrescens \N \N \N \N \N 8672 P.barbellatum Piptatherum Piptatherum barbellatum \N \N \N \N \N 8673 L.tongolensis Ligularia Ligularia tongolensis \N \N \N \N \N 8674 \N genus Pillansia \N \N \N \N \N 8675 H.torquatus Helleborus Helleborus torquatus \N \N \N \N \N 8676 \N subspecies Vitellaria paradoxa subsp. nilotica \N \N \N \N \N 8677 T.065 Tovomita Tovomita sp. HCV 065 \N \N \N \N \N 8678 \N subspecies Viola epipsila subsp. epipsila \N \N \N \N \N 8679 M.aurea Moltkia Moltkia aurea \N \N \N \N \N 8680 E.physophylla Erica Erica physophylla \N \N \N \N \N 8681 E.clarkei Esmeralda Esmeralda clarkei \N \N \N \N \N 8682 P.graveolens Pelargonium Pelargonium graveolens rose geranium \N \N \N \N 8683 L.guppyi Litsea Litsea guppyi \N \N \N \N \N 8684 L.pseudocreticus Lotus Lotus pseudocreticus \N \N \N \N \N 8685 E.sousae Erythrina Erythrina sousae \N \N \N \N \N 8686 A.serrulatoides Alnus Alnus serrulatoides \N \N \N \N \N 8687 \N genus Caldcluvia \N \N \N \N \N 8688 C.pubifurfuracea Camellia Camellia pubifurfuracea \N \N \N \N \N 8689 W.sola Winifredia Winifredia sola \N \N \N \N \N 8690 L.heptaphyllus Lonchocarpus Lonchocarpus heptaphyllus \N \N \N \N \N 8691 C.mesochorea Carex Carex mesochorea \N \N \N \N \N 8692 D.deplanchei Drypetes Drypetes deplanchei \N \N \N \N \N 8693 P.patagonica Plantago Plantago patagonica woolly plantain \N \N \N \N 8694 \N no rank environmental samples Taxonomy:979584 \N \N \N \N \N 8695 E.Eluis2 Elleanthus Elleanthus sp. Eluis2 \N \N \N \N \N 8696 S.06098 Sasa Sasa sp. 1 Zeng & Zhang 06098 \N \N \N \N \N 8697 P.decompositum Panicum Panicum decompositum \N \N \N \N \N 8698 \N subspecies Aegilops longissima subsp. TA 1921 \N \N \N \N \N 8699 M.sample environmental samples Taxonomy:1096693 Malpighiaceae environmental sample \N \N \N \N \N 8700 \N genus Kunzea x Leptospermum \N \N \N \N \N 8701 B.biloba Boehmeria Boehmeria biloba \N \N \N \N \N 8702 C.obtusa Caryota Caryota obtusa \N \N \N \N \N 8703 D.cryptarrhena Dichaea Dichaea cryptarrhena \N \N \N \N \N 8704 H.haitiensis Herodotia Herodotia haitiensis \N \N \N \N \N 8705 \N varietas Maxillaria heterophylla var. pygmaea \N \N \N \N \N 8706 B.luxurians Begonia Begonia luxurians \N \N \N \N \N 8707 P.crocatum Piper Piper crocatum \N \N \N \N \N 8708 T.schlechteri Thamnochortus Thamnochortus schlechteri \N \N \N \N \N 8709 \N varietas Cirsium hydrophilum var. hydrophilum Suisun thistle \N \N \N \N 8710 L.HD-2010 Lonicera Lonicera sp. HD-2010 \N \N \N \N \N 8711 E.palmeri Eryngium Eryngium palmeri \N \N \N \N \N 8712 C.wiedmanniana Cardamine Cardamine wiedmanniana \N \N \N \N \N 8713 O.linearis Oxalis Oxalis linearis \N \N \N \N \N 8714 L.sempervirens Lonicera Lonicera sempervirens \N \N \N \N \N 8715 \N subspecies Gayophytum diffusum subsp. diffusum \N \N \N \N \N 8716 I.myrtifolia Ilex Ilex myrtifolia myrtle dahoon,myrtle-leaf holly \N \N \N \N 8717 I.smitinandiana Isachne Isachne smitinandiana \N \N \N \N \N 8718 D.campanulata Dubouzetia Dubouzetia campanulata \N \N \N \N \N 8719 E.hoefftianum Erodium Erodium hoefftianum \N \N \N \N \N 8720 \N varietas Corallorhiza striata var. vreelandii \N \N \N \N \N 8721 O.fimbriata Orthaea Orthaea fimbriata \N \N \N \N \N 8722 \N genus Poa bluegrass \N \N \N \N 8723 \N subspecies Macaranga motleyana subsp. griffithiana \N \N \N \N \N 8724 \N genus Callicephalus \N \N \N \N \N 8725 C.atrosanguineus Cosmos Cosmos atrosanguineus \N \N \N \N \N 8726 B.guehoi Byblis Byblis guehoi \N \N \N \N \N 8727 \N genus Nenax \N \N \N \N \N 8728 A.s.n. Astilbe Astilbe sp. Yoshikawa s.n. \N \N \N \N \N 8729 \N order Vitales \N \N \N \N \N 8730 \N genus Pueraria \N \N \N \N \N 8731 H.microsiphon Helicteropsis Helicteropsis microsiphon \N \N \N \N \N 8732 B.subspinosum Bupleurum Bupleurum subspinosum \N \N \N \N \N 8733 I.vespertilio Illigera Illigera vespertilio \N \N \N \N \N 8734 K.(i) Kunzea Kunzea aff. peduncularis (i) \N \N \N \N \N 8735 F.insularis Fraxinus Fraxinus insularis \N \N \N \N \N 8736 \N varietas Symplocos prunifolia var. tawadae \N \N \N \N \N 8737 C.wheeleri Cirsium Cirsium wheeleri \N \N \N \N \N 8738 S.miniatum Stenomesson Stenomesson miniatum \N \N \N \N \N 8739 P.terryae Piper Piper terryae \N \N \N \N \N 8740 V.dentatum Vaccinium Vaccinium dentatum \N \N \N \N \N 8741 L.chinensis Leptopus Leptopus chinensis \N \N \N \N \N 8742 \N genus Micromonolepis \N \N \N \N \N 8743 S.s.n. Satyrium Satyrium sp. Johnson s.n. \N \N \N \N \N 8744 S.austriaca Salvia Salvia austriaca \N \N \N \N \N 8745 V.achilleoides Villanova Villanova achilleoides \N \N \N \N \N 8746 \N genus Ixerba \N \N \N \N \N 8747 C.major Coreopsis Coreopsis major \N \N \N \N \N 8748 \N genus Otostegia \N \N \N \N \N 8749 R.stipulacea Rudgea Rudgea stipulacea \N \N \N \N \N 8750 \N subspecies Euphorbia tithymaloides subsp. tithymaloides \N \N \N \N \N 8751 E.aureoviridiflora Euphorbia Euphorbia aureoviridiflora \N \N \N \N \N 8752 C.asumaniae Crocus Crocus asumaniae \N \N \N \N \N 8753 L.AA2 Lithocarpus Lithocarpus sp. AA2 \N \N \N \N \N 8754 L.alternifolius Leucopogon Leucopogon alternifolius \N \N \N \N \N 8755 \N subspecies Mimulus longiflorus subsp. calycinus \N \N \N \N \N 8756 M.sericea Melaleuca Melaleuca sericea \N \N \N \N \N 8757 E.pulchellum Eranthemum Eranthemum pulchellum \N \N \N \N \N 8758 C.dentatus Carthamus Carthamus dentatus \N \N \N \N \N 8759 T.aspera Tibouchina Tibouchina aspera \N \N \N \N \N 8760 G.eriocarpum Glochidion Glochidion eriocarpum \N \N \N \N \N 8761 \N genus Gilruthia \N \N \N \N \N 8762 \N genus Bunchosia \N \N \N \N \N 8763 M.pruriens Mucuna Mucuna pruriens \N \N \N \N \N 8764 \N genus Leptostylis \N \N \N \N \N 8765 F.XYH-2011 Fritillaria Fritillaria sp. XYH-2011 \N \N \N \N \N 8766 C.lanceolatum Capsicum Capsicum lanceolatum \N \N \N \N \N 8767 \N tribe Pogostemoneae \N \N \N \N \N 8768 S.rostratum Solanum Solanum rostratum \N \N \N \N \N 8769 C.elatior Chamaedorea Chamaedorea elatior \N \N \N \N \N 8770 H.simplicifolia Heritiera Heritiera simplicifolia \N \N \N \N \N 8771 B.saxicola Banksia Banksia saxicola \N \N \N \N \N 8772 B.leprosa Begonia Begonia leprosa \N \N \N \N \N 8773 M.chinense Monimopetalum Monimopetalum chinense \N \N \N \N \N 8774 P.martensianum Piper Piper martensianum \N \N \N \N \N 8775 S.apiculata Senna Senna apiculata \N \N \N \N \N 8776 P.multiflora Petraeovitex Petraeovitex multiflora \N \N \N \N \N 8777 P.argentata Pedersenia Pedersenia argentata \N \N \N \N \N 8778 K.thodei Kniphofia Kniphofia thodei \N \N \N \N \N 8779 R.virescens Rytidosperma Rytidosperma virescens \N \N \N \N \N 8780 P.trifolius Panax Panax trifolius \N \N \N \N \N 8781 \N genus Pradosia \N \N \N \N \N 8782 B.spinescens Brassica Brassica spinescens \N \N \N \N \N 8783 P.triandra Poranthera Poranthera triandra \N \N \N \N \N 8784 L.articulata Lepironia Lepironia articulata \N \N \N \N \N 8785 \N no rank environmental samples Taxonomy:979580 \N \N \N \N \N 8786 \N varietas Psorothamnus arborescens var. pubescens \N \N \N \N \N 8787 L.schinzii Lepidium Lepidium schinzii \N \N \N \N \N 8788 E.smaragdinum Epidendrum Epidendrum smaragdinum \N \N \N \N \N 8789 R.crassifolia Rafnia Rafnia crassifolia \N \N \N \N \N 8790 H.nunezii Haplolophium Haplolophium nunezii \N \N \N \N \N 8791 O.hookerii Onosma Onosma hookerii \N \N \N \N \N 8792 I.sceptrum Isoplexis Isoplexis sceptrum \N \N \N \N \N 8793 \N genus Tetraplandra \N \N \N \N \N 8794 O.sericea Oxytropis Oxytropis sericea \N \N \N \N \N 8795 \N subspecies Descurainia pinnata subsp. brachycarpa \N \N \N \N \N 8796 \N subspecies Iris hymenospatha subsp. leptoneura \N \N \N \N \N 8797 S.consanguineus Senecio Senecio consanguineus \N \N \N \N \N 8798 G.marlothii Gladiolus Gladiolus marlothii \N \N \N \N \N 8799 \N genus Barneoudia \N \N \N \N \N 8800 \N tribe Nassauvieae \N \N \N \N \N 8801 E.spinulosa Eurybia Eurybia spinulosa Apalachicola aster \N \N \N \N 8802 R.1996-0702A Rapatea Rapatea sp. MSBG 1996-0702A \N \N \N \N \N 8803 R.neglectum Ribes Ribes neglectum \N \N \N \N \N 8804 E.punctulata Endlicheria Endlicheria punctulata \N \N \N \N \N 8805 C.odontolepis Cuscuta Cuscuta odontolepis \N \N \N \N \N 8806 \N subfamily Euphorbioideae \N \N \N \N \N 8807 P.parvispica Pariana Pariana parvispica \N \N \N \N \N 8808 T.smallii Trillium Trillium smallii \N \N \N \N \N 8809 S.kawaguchii Syncalathium Syncalathium kawaguchii \N \N \N \N \N 8810 L.alpinopilosa Luzula Luzula alpinopilosa \N \N \N \N \N 8811 A.citrinoviridis Acacia Acacia citrinoviridis milhan,river jam,wantan \N \N \N \N 8812 B.telmatiaea Banksia Banksia telmatiaea \N \N \N \N \N 8813 \N varietas Carex fissa var. fissa \N \N \N \N \N 8814 \N genus Athamanta \N \N \N \N \N 8815 E.pauciflora Eucalyptus Eucalyptus pauciflora \N \N \N \N \N 8816 C.dura Calopsis Calopsis dura \N \N \N \N \N 8817 \N genus Aphanactis \N \N \N \N \N 8818 A.subplanum Aeonium Aeonium subplanum \N \N \N \N \N 8819 E.schizolepis Euphorbia Euphorbia schizolepis \N \N \N \N \N 8820 M.similis Malacothrix Malacothrix similis \N \N \N \N \N 8821 K.excelsa Koompassia Koompassia excelsa \N \N \N \N \N 8822 O.EE259 Oxalis Oxalis cf. tuberosa EE259 \N \N \N \N \N 8823 P.brachyloba Phacelia Phacelia brachyloba \N \N \N \N \N 8824 F.oopoda Ferula Ferula oopoda \N \N \N \N \N 8825 D.bicolor Dioclea Dioclea bicolor \N \N \N \N \N 8826 O.rufescens Oreocnide Oreocnide rufescens \N \N \N \N \N 8827 T.microdon Trifolium Trifolium microdon \N \N \N \N \N 8828 A.sphaeranthus Astragalus Astragalus sphaeranthus \N \N \N \N \N 8829 P.quarciticola Pelargonium Pelargonium quarciticola \N \N \N \N \N 8832 E.rupicola Erodium Erodium rupicola \N \N \N \N \N 8833 P.tuerckheimii Piper Piper tuerckheimii \N \N \N \N \N 8834 P.argophyllum Pediomelum Pediomelum argophyllum \N \N \N \N \N 8835 A.umbellata Abronia Abronia umbellata \N \N \N \N \N 8836 \N genus Trigonidium \N \N \N \N \N 8837 F.liliacea Fritillaria Fritillaria liliacea \N \N \N \N \N 8838 Q.laeta Quercus Quercus laeta \N \N \N \N \N 8839 M.hainanensis Mucuna Mucuna hainanensis \N \N \N \N \N 8840 L.maximiliani Lotononis Lotononis maximiliani \N \N \N \N \N 8841 T.elegans Trichoneura Trichoneura elegans \N \N \N \N \N 8842 H.dubia Hydrocharis Hydrocharis dubia \N \N \N \N \N 8843 G.4008-B8 Gaertnera Gaertnera sp. Bremer et al. 4008-B8 \N \N \N \N \N 8844 B.grahamii Bothriochloa Bothriochloa grahamii \N \N \N \N \N 8845 P.triacontandra Polylepis Polylepis triacontandra \N \N \N \N \N 8846 D.fimbriatum Dendrobium Dendrobium fimbriatum \N \N \N \N \N 8847 D.hammenii Draba Draba hammenii \N \N \N \N \N 8848 O.tenthredinifera Ophrys Ophrys tenthredinifera \N \N \N \N \N 8849 \N varietas Halimium halimifolium var. riphaeum \N \N \N \N \N 8850 G.flavescens Glischrocaryon Glischrocaryon flavescens \N \N \N \N \N 8851 E.geroldii Euphorbia Euphorbia geroldii \N \N \N \N \N 8852 G.hispidula Gaultheria Gaultheria hispidula creeping snowberry \N \N \N \N 8853 O.pyriformis Oxyanthus Oxyanthus pyriformis \N \N \N \N \N 8854 R.gracilis Robinsonia Robinsonia gracilis \N \N \N \N \N 8855 C.amomum Cornus Cornus amomum kinnikinnik,silky dogwood \N \N \N \N 8856 S.erythrostoma Salvia Salvia erythrostoma \N \N \N \N \N 8857 A.leschenaultii Aralia Aralia leschenaultii \N \N \N \N \N 8858 T.coriacea Tylophora Tylophora coriacea \N \N \N \N \N 8859 A.winteri Argyranthemum Argyranthemum winteri \N \N \N \N \N 8860 C.leucophaea Centaurea Centaurea leucophaea \N \N \N \N \N 8861 B.sinensis Bretschneidera Bretschneidera sinensis \N \N \N \N \N 8862 \N genus Aptandra \N \N \N \N \N 8863 T.TNS:TL-1402 Terniopsis Terniopsis sp. TNS:TL-1402 \N \N \N \N \N 8864 R.guerrerensis Ruellia Ruellia guerrerensis \N \N \N \N \N 8865 E.sessiliflora Erica Erica sessiliflora \N \N \N \N \N 8866 M.retrorsa Mutisia Mutisia retrorsa \N \N \N \N \N 8867 A.adoense Asterolinon Asterolinon adoense \N \N \N \N \N 8868 E.mombergerianus Echinocereus Echinocereus mombergerianus \N \N \N \N \N 8869 A.divaricata Agalinis Agalinis divaricata \N \N \N \N \N 8870 E.ilicifolium Eryngium Eryngium ilicifolium \N \N \N \N \N 8871 \N genus Lauridia \N \N \N \N \N 8872 A.moyanoi Astragalus Astragalus moyanoi \N \N \N \N \N 8873 \N genus Batopilasia \N \N \N \N \N 8874 D.gracilis Diplotaxis Diplotaxis gracilis \N \N \N \N \N 8875 A.alexandri Acacia Acacia alexandri \N \N \N \N \N 8876 P.saundersiana Potentilla Potentilla saundersiana \N \N \N \N \N 8877 C.1 Calandrinia Calandrinia sp. Falkland Islands 1 \N \N \N \N \N 8878 S.spetana Scilla Scilla spetana \N \N \N \N \N 8879 V.jacksonii Verbesina Verbesina jacksonii \N \N \N \N \N 8880 B.vulgaris Beta Beta vulgaris beet \N \N \N \N 8881 G.paniculata Gaertnera Gaertnera paniculata \N \N \N \N \N 8882 S.queenslandica Sylvipoa Sylvipoa queenslandica \N \N \N \N \N 8883 C.hirsuta Cephalaria Cephalaria hirsuta \N \N \N \N \N 8884 H.tenellum Helanthium Helianthium tenellum \N \N \N \N \N 8885 \N genus Grewia \N \N \N \N \N 8886 S.378) Swartzia Swartzia sp. C (Torke 378) \N \N \N \N \N 8887 A.tentaculata Aristolochia Aristolochia tentaculata \N \N \N \N \N 8888 S.microphylla Schmardaea Schmardaea microphylla \N \N \N \N \N 8889 H.TL208 Hydrobryum Hydrobryum sp. TL208 \N \N \N \N \N 8890 A.anagyrifolius Adenocarpus Adenocarpus anagyrifolius \N \N \N \N \N 8891 G.steiglitziana Grevillea Grevillea steiglitziana \N \N \N \N \N 8892 S.chamaejasme Stellera Stellera chamaejasme \N \N \N \N \N 8893 C.chamissonis Cyrtosperma Cyrtosperma chamissonis swamp taro \N \N \N \N 8894 \N genus Pleiocarpidia \N \N \N \N \N 8895 L.flos-cuculi Lychnis Lychnis flos-cuculi cuckoo flower,ragged-robin \N \N \N \N 8896 C.lyngbyei Carex Carex lyngbyei \N \N \N \N \N 8897 E.cuneifolia Ellipeia Ellipeia cuneifolia \N \N \N \N \N 8898 P.grandiflorum Polypsecadium Polypsecadium grandiflorum \N \N \N \N \N 8899 G.boivinii Grandidiera Grandidiera boivinii \N \N \N \N \N 8900 B.calophylla Banksia Banksia calophylla \N \N \N \N \N 8901 S.wightii Stenosiphonium Stenosiphonium wightii \N \N \N \N \N 8902 C.belemii Chamaecrista Chamaecrista belemii \N \N \N \N \N 8903 P.amarus Phyllanthus Phyllanthus amarus carry-me seed \N \N \N \N 8904 P.divaricatus Plagianthus Plagianthus regius x Plagianthus divaricatus \N \N \N \N \N 8905 G.brevifolius Gymnopogon Gymnopogon brevifolius \N \N \N \N \N 8906 C.astrantiae Chaerophyllum Chaerophyllum astrantiae \N \N \N \N \N 8907 H.brachystachys Hypenia Hypenia brachystachys \N \N \N \N \N 8908 \N genus Trautvetteria \N \N \N \N \N 8909 \N genus Tripodion \N \N \N \N \N 8910 P.triantha Plantago Plantago triantha \N \N \N \N \N 8911 M.suaveolens Maxillaria Maxillaria suaveolens \N \N \N \N \N 8912 S.platense Solanum Solanum platense \N \N \N \N \N 8913 P.parkinsonii Peucedanum Peucedanum parkinsonii \N \N \N \N \N 8914 C.justiniana Campanula Campanula justiniana \N \N \N \N \N 8915 H.capitata Hyptis Hyptis capitata \N \N \N \N \N 8916 \N varietas Coptis japonica var. anemonifolia \N \N \N \N \N 8917 \N genus Cypella \N \N \N \N \N 8918 M.sinaloense Molinadendron Molinadendron sinaloense \N \N \N \N \N 8919 B.cubensis Bactris Bactris cubensis \N \N \N \N \N 8920 C.holosericeus Convolvulus Convolvulus holosericeus \N \N \N \N \N 8921 S.nebrodensis Senecio Senecio nebrodensis \N \N \N \N \N 8922 H.echinus Hirpicium Hirpicium echinus \N \N \N \N \N 8923 R.sylvestris Rhaphidophora Rhaphidophora sylvestris \N \N \N \N \N 8924 H.rotundiloba Habenaria Habenaria rotundiloba \N \N \N \N \N 8925 D.cantabrica Daboecia Daboecia cantabrica \N \N \N \N \N 8926 T.ericifolium Thesium Thesium ericifolium \N \N \N \N \N 8927 \N varietas Correa lawrenceana var. lawrenceana \N \N \N \N \N 8928 \N subspecies Trifolium nigrescens subsp. nigrescens \N \N \N \N \N 8929 S.diversifolia Sabicea Sabicea diversifolia \N \N \N \N \N 8930 L.muehlbergianus Lonchocarpus Lonchocarpus muehlbergianus rabo molle \N \N \N \N 8931 D.kongboiana Draba Draba kongboiana \N \N \N \N \N 8932 A.paniculatum Allium Allium paniculatum \N \N \N \N \N 14557 \N tribe Plantagineae \N \N \N \N \N 8933 C.leptoneurum Chlorophytum Chlorophytum leptoneurum \N \N \N \N \N 8934 A.rigida Amorimia Amorimia rigida \N \N \N \N \N 8935 P.remotum Paspalum Paspalum remotum \N \N \N \N \N 8936 M.aucheri Muscari Muscari aucheri \N \N \N \N \N 8937 H.congestum Hemitomes Hemitomes congestum \N \N \N \N \N 8938 I.sinensis Ipomoea Ipomoea sinensis \N \N \N \N \N 8939 P.nudifolium Piper Piper nudifolium \N \N \N \N \N 8940 \N genus Komaroffia \N \N \N \N \N 8941 P.s.n. Primula Primula aff. denticulata Mast s.n. \N \N \N \N \N 8942 S.ellipticum Spiraeanthemum Spiraeanthemum ellipticum \N \N \N \N \N 8943 L.pseudomacranthus Leonurus Leonurus pseudomacranthus \N \N \N \N \N 8944 \N genus Lysidice \N \N \N \N \N 8945 A.patagonicus Astragalus Astragalus patagonicus \N \N \N \N \N 8946 C.erythrosa Citrus Citrus erythrosa \N \N \N \N \N 8947 A.humilis Aeschynanthus Aeschynanthus humilis \N \N \N \N \N 8948 \N genus Chrysothamnus \N \N \N \N \N 8949 M.1738 Mesospinidium Mesospinidium sp. Whitten 1738 \N \N \N \N \N 8950 \N family Aptandraceae \N \N \N \N \N 8951 E.coccinea Echeveria Echeveria coccinea \N \N \N \N \N 8952 P.mollendoensis Palaua Palaua mollendoensis \N \N \N \N \N 8953 A.PA3E0160 Aglaia Aglaia sp. PA3E0160 \N \N \N \N \N 8954 P.riparia Paloue Paloue riparia \N \N \N \N \N 8955 S.aurea Selenia Selenia aurea golden selenia \N \N \N \N 8956 N.mauritianus Nesocodon Nesocodon mauritianus \N \N \N \N \N 8957 \N subspecies Eustoma exaltatum subsp. russellianum bluebells,prairie gentian \N \N \N \N 8958 S.linearifolia Stylosanthes Stylosanthes linearifolia \N \N \N \N \N 8959 G.descampsii Geissaspis Geissaspis descampsii \N \N \N \N \N 8960 C.thomsoniae Clerodendrum Clerodendrum thomsoniae bleeding-heart vine,glory-bower \N \N \N \N 8961 M.texana Mimosa Mimosa texana \N \N \N \N \N 8962 A.mearnsii Acacia Acacia mearnsii \N \N \N \N \N 8963 T.foenum-graecum Trigonella Trigonella foenum-graecum fenugreek \N \N \N \N 8964 C.densifrons Coccoloba Coccoloba densifrons \N \N \N \N \N 8965 F.chapelieri Fenerivia Fenerivia chapelieri \N \N \N \N \N 8966 \N varietas Saxifraga gemmigera var. gemmuligera \N \N \N \N \N 8967 F.linkii Ferula Ferula linkii \N \N \N \N \N 8968 \N genus Callilepis \N \N \N \N \N 8969 \N genus Arctopus \N \N \N \N \N 8970 \N subspecies Psathyrostachys fragilis subsp. fragilis \N \N \N \N \N 8971 \N subspecies Festuca vaginata subsp. vaginata \N \N \N \N \N 8972 C.calycina Cryptotaenia Cryptotaenia calycina \N \N \N \N \N 8973 F.mahrana Fagonia Fagonia mahrana \N \N \N \N \N 8974 T.tenella Tidestromia Tidestromia tenella \N \N \N \N \N 8975 \N genus Chapmannia \N \N \N \N \N 8976 C.horaimontanum Chrysanthemum Chrysanthemum horaimontanum \N \N \N \N \N 8977 \N varietas Mimosa myriadena var. dispersa \N \N \N \N \N 8978 \N subspecies Dubautia laxa subsp. hirsuta \N \N \N \N \N 8979 \N genus Guatteria \N \N \N \N \N 8980 C.humilis Cistanthe Cistanthe humilis \N \N \N \N \N 8981 H.parviflora Holboellia Holboellia parviflora \N \N \N \N \N 8982 \N genus Aucuba \N \N \N \N \N 8983 P.mulleri Plectocomia Plectocomia mulleri \N \N \N \N \N 8984 W.stenostachya Weinmannia Weinmannia stenostachya \N \N \N \N \N 8985 A.tridentata Aspalathus Aspalathus tridentata \N \N \N \N \N 8986 A.layneae Astragalus Astragalus layneae \N \N \N \N \N 8987 P.odorata Persicaria Persicaria odorata Vietnamese coriander,rau ram \N \N \N \N 8988 T.malayana Terniopsis Terniopsis malayana \N \N \N \N \N 8989 \N varietas Penstemon caespitosus var. desertipicti \N \N \N \N \N 8990 \N varietas Rorippa palustris var. glabra \N \N \N \N \N 8991 G.jatrophifolius Gyrocarpus Gyrocarpus jatrophifolius \N \N \N \N \N 8992 P.peduncularis Pueraria Pueraria peduncularis \N \N \N \N \N 8993 \N genus Macrocarpaea \N \N \N \N \N 8994 \N varietas Platanus occidentalis var. glabrata \N \N \N \N \N 8995 \N varietas Rosa clinophylla var. glabra \N \N \N \N \N 8996 T.arceuthoides Tamarix Tamarix arceuthoides \N \N \N \N \N 8997 \N subspecies Ribes malvaceum subsp. viridifolium \N \N \N \N \N 8998 P.cumingii Phacelia Phacelia cumingii \N \N \N \N \N 8999 H.reptans Hypericum Hypericum reptans \N \N \N \N \N 9000 M.matricarioides Matricaria Matricaria matricarioides \N \N \N \N \N 9001 C.sp. Cabomba Cabomba sp. \N \N \N \N \N 9002 C.racemiferum Cleisostoma Cleisostoma racemiferum \N \N \N \N \N 9003 Z.rogersii Zygophyllum Zygophyllum rogersii \N \N \N \N \N 9004 M.crockeri Mollugo Mollugo crockeri \N \N \N \N \N 9005 A.endlicheri Alania Alania endlicheri \N \N \N \N \N 9006 A.patagonica Atriplex Atriplex patagonica \N \N \N \N \N 9007 B.levigata Bonia Bonia levigata \N \N \N \N \N 9008 \N subspecies Cytisus arboreus subsp. baeticus \N \N \N \N \N 9009 C.meyeri Crataegus Crataegus meyeri \N \N \N \N \N 9010 \N genus Trinia \N \N \N \N \N 9011 \N genus Lankesteria \N \N \N \N \N 9012 S.javanica Shorea Shorea javanica \N \N \N \N \N 9013 S.gracilis Saussurea Saussurea gracilis \N \N \N \N \N 9014 R.dimidiatum Rytidosperma Rytidosperma dimidiatum \N \N \N \N \N 9015 A.neolongifolia Aristolochia Aristolochia neolongifolia \N \N \N \N \N 9016 T.MEM-2009 Tolpis Tolpis sp. 3 MEM-2009 \N \N \N \N \N 9017 \N genus Urceodiscus \N \N \N \N \N 9018 M.bicallosa Maxillaria Maxillaria bicallosa \N \N \N \N \N 9019 L.atlantica Luzula Luzula atlantica \N \N \N \N \N 9020 M.camdeboensis Monsonia Monsonia camdeboensis \N \N \N \N \N 9021 P.hainanensis Phalaenopsis Phalaenopsis hainanensis \N \N \N \N \N 9022 Z.cantoniensis Zornia Zornia cantoniensis \N \N \N \N \N 9023 K.ichopensis Kniphofia Kniphofia ichopensis \N \N \N \N \N 9024 F.letourneuxiana Festuca Festuca letourneuxiana \N \N \N \N \N 9025 T.hondoense Taraxacum Taraxacum hondoense \N \N \N \N \N 9026 A.gigas Angelica Angelica gigas \N \N \N \N \N 9027 \N genus Pyrrhopappus \N \N \N \N \N 9028 \N genus Bistorta \N \N \N \N \N 9029 \N subspecies Fragaria vesca subsp. bracteata \N \N \N \N \N 9030 C.odyssei Centaurea Centaurea odyssei \N \N \N \N \N 9031 R.hildebrandtii Ravenea Ravenea hildebrandtii \N \N \N \N \N 9032 O.tomentella Ocotea Ocotea tomentella \N \N \N \N \N 9033 M.collomiae Mentzelia Mentzelia collomiae \N \N \N \N \N 9034 M.transvaalense Melanospermum Melanospermum transvaalense \N \N \N \N \N 9035 D.cumingiana Descurainia Descurainia cumingiana \N \N \N \N \N 9036 \N genus Euploca \N \N \N \N \N 9037 P.watanaiana Pinanga Pinanga watanaiana \N \N \N \N \N 9038 B.iberidifolia Brachyscome Brachyscome iberidifolia \N \N \N \N \N 9039 \N genus Mitrantia \N \N \N \N \N 9040 D.grandiflora Dodecadenia Dodecadenia grandiflora \N \N \N \N \N 9041 A.lepsensis Astragalus Astragalus lepsensis \N \N \N \N \N 9042 F.interrupta Froelichia Froelichia interrupta Texas snakecotton \N \N \N \N 9043 H.incisa Hymenolepis Hymenolepis incisa \N \N \N \N \N 9044 E.glandulosa Entada Entada glandulosa \N \N \N \N \N 9045 C.ophiocephala Castilleja Castilleja ophiocephala \N \N \N \N \N 9046 C.nubigenus Croton Croton nubigenus \N \N \N \N \N 9047 P.simplex Protea Protea simplex \N \N \N \N \N 9048 P.cretica Plantago Plantago cretica \N \N \N \N \N 9049 C.officinalis Cyathula Cyathula officinalis \N \N \N \N \N 9050 C.pedunculatum Ceratolacis Ceratolacis pedunculatum \N \N \N \N \N 9051 E.deflexa Euphorbia Euphorbia deflexa \N \N \N \N \N 9052 C.KZN Combretum Combretum sp. KZN \N \N \N \N \N 9053 E.reticulatus Elaeocarpus Elaeocarpus reticulatus \N \N \N \N \N 9054 \N genus Bencomia \N \N \N \N \N 9055 D.palanderiana Draba Draba palanderiana \N \N \N \N \N 9056 L.noronhae Litsea Litsea noronhae \N \N \N \N \N 9057 T.solitaria Trianoptiles Trianoptiles solitaria \N \N \N \N \N 9058 \N subspecies Arabidopsis lyrata subsp. petraea \N \N \N \N \N 9059 M.fraxinifolius Myodocarpus Myodocarpus fraxinifolius \N \N \N \N \N 9060 L.rabenaviana Lotononis Lotononis rabenaviana \N \N \N \N \N 9061 P.anceps Polystachya Polystachya anceps \N \N \N \N \N 9062 O.versicolor Oenothera Oenothera versicolor \N \N \N \N \N 9063 C.werdermannii Cleome Cleome werdermannii \N \N \N \N \N 9064 N.JFM-2005 Nertera Nertera sp. JFM-2005 \N \N \N \N \N 9065 P.sinaica Poa Poa sinaica \N \N \N \N \N 9066 L.splendida Lachenalia Lachenalia splendida \N \N \N \N \N 9067 L.bennettii Lockhartia Lockhartia bennettii \N \N \N \N \N 9068 M.NR-2009 Muscari Muscari sp. NR-2009 \N \N \N \N \N 9069 A.styriaca Achillea millefolium complex Achillea styriaca \N \N \N \N \N 9070 \N genus Mitracarpus \N \N \N \N \N 9071 \N genus Synaptantha \N \N \N \N \N 9072 C.oculata Ceropegia Ceropegia oculata \N \N \N \N \N 9073 P.ooii Paphiopedilum Paphiopedilum ooii \N \N \N \N \N 9074 L.thomsonii Lindera Lindera thomsonii \N \N \N \N \N 9075 \N varietas Rhododendron emarginatum var. eriocarpum \N \N \N \N \N 9076 D.montana Dianella Dianella montana \N \N \N \N \N 9077 \N subspecies Primula veris subsp. columnae \N \N \N \N \N 9078 S.monadelpha Stewartia Stewartia monadelpha \N \N \N \N \N 9079 F.speciosa Frasera Frasera speciosa \N \N \N \N \N 9080 D.dyeri Dipterocarpus Dipterocarpus dyeri \N \N \N \N \N 9081 P.perniciosum Pseudosmodingium Pseudosmodingium perniciosum \N \N \N \N \N 9082 R.lanuginosa Rhanteriopsis Rhanteriopsis lanuginosa \N \N \N \N \N 9083 C.stylosa Carex Carex stylosa \N \N \N \N \N 9084 \N varietas Matricaria chamomilla var. recutita German chamomile \N \N \N \N 9085 R.amplexicaulis Ranunculus Ranunculus amplexicaulis \N \N \N \N \N 9086 K.laxiflora Kengyilia Kengyilia laxiflora \N \N \N \N \N 9087 R.microphylla Rhus Rhus microphylla \N \N \N \N \N 9088 F.persica Fritillaria Fritillaria persica Persian fritillary \N \N \N \N 9089 Q.edmundoi Quesnelia Quesnelia edmundoi \N \N \N \N \N 9090 I.saxosa Ivesia Ivesia saxosa \N \N \N \N \N 9091 L.inflata Lobelia Lobelia inflata Indian-tobacco \N \N \N \N 9092 M.gigandra Moraea Moraea gigandra \N \N \N \N \N 9093 C.superbus Calochortus Calochortus superbus \N \N \N \N \N 9094 \N genus Microrphium \N \N \N \N \N 9095 \N genus Corythophora \N \N \N \N \N 9096 X.fruticosa Xiphotheca Xiphotheca fruticosa \N \N \N \N \N 9097 \N genus Carinavalva \N \N \N \N \N 9098 \N no rank environmental samples Taxonomy:438339 \N \N \N \N \N 9099 M.psammodes Macroptilium Macroptilium psammodes \N \N \N \N \N 9100 A.elata Agnorhiza Agnorhiza elata \N \N \N \N \N 9101 S.pungens Schrenkia Schrenkia pungens \N \N \N \N \N 9102 L.2052 Leucaena Leucaena hybrid sp. Hughes 2052 \N \N \N \N \N 9103 \N genus Phreatia \N \N \N \N \N 9104 S.axillaris Stachystemon Stachystemon axillaris \N \N \N \N \N 9105 \N subspecies Mollugo flavescens subsp. insularis \N \N \N \N \N 9106 Z.coriaceum Zanthoxylum Zanthoxylum coriaceum \N \N \N \N \N 9107 P.vieillardii Pycnandra Pycnandra vieillardii \N \N \N \N \N 9108 T.ulugurensis Trichoscypha Trichoscypha ulugurensis \N \N \N \N \N 9109 B.veluticarpa Bunchosia Bunchosia veluticarpa \N \N \N \N \N 9110 P.polifolia Printzia Printzia polifolia \N \N \N \N \N 9111 \N subtribe Justiciinae \N \N \N \N \N 9112 \N no rank unclassified Adelieae \N \N \N \N \N 9113 B.6057 Besleria Besleria sp. J.L. Clark 6057 \N \N \N \N \N 9114 P.billietiae Philodendron Philodendron billietiae \N \N \N \N \N 9115 K.uniflora Kingdonia Kingdonia uniflora \N \N \N \N \N 9116 L.MP-2011 Ledebouria Ledebouria sp. 2 MP-2011 \N \N \N \N \N 9117 B.pumpellianus Bromus Bromus pumpellianus Arctic brome \N \N \N \N 9118 S.mucronata Schoenoplectiella Schoenoplectiella mucronata \N \N \N \N \N 9119 \N subspecies Gymnocalycium pflanzii subsp. argentinense \N \N \N \N \N 9120 P.viscosa Parentucellia Parentucellia viscosa \N \N \N \N \N 9121 M.nivea Mussaenda Mussaenda nivea \N \N \N \N \N 9122 \N varietas Poitea galegoides var. stenophylla \N \N \N \N \N 9123 S.borbonicum Sideroxylon Sideroxylon borbonicum \N \N \N \N \N 9124 \N tribe Cyrtandreae \N \N \N \N \N 9125 P.grandiflora Portulaca Portulaca grandiflora \N \N \N \N \N 9126 C.arabicus Costus Costus arabicus \N \N \N \N \N 9127 C.dielsii Columnea Columnea dielsii \N \N \N \N \N 9128 A.tecta Arundinaria Arundinaria gigantea x Arundinaria tecta \N \N \N \N \N 9129 C.infirminervia Carex Carex infirminervia \N \N \N \N \N 9130 \N subspecies Echinodorus cordifolius subsp. fluitans \N \N \N \N \N 9131 C.pectinata Cassiope Cassiope pectinata \N \N \N \N \N 9132 E.guerichiana Euphorbia Euphorbia guerichiana \N \N \N \N \N 9133 A.pruinocarpa Acacia Acacia pruinocarpa \N \N \N \N \N 9134 C.neaei Culcitium Culcitium neaei \N \N \N \N \N 9135 R.lobulata Raphionacme Raphionacme lobulata \N \N \N \N \N 9136 P.elliptica Pomaderris Pomaderris elliptica \N \N \N \N \N 9137 P.cervaria Peucedanum Peucedanum cervaria \N \N \N \N \N 9138 V.humilis Vicia Vicia humilis \N \N \N \N \N 9139 H.elliptica Halenia Halenia elliptica \N \N \N \N \N 9140 M.capillipes Meineckia Meineckia capillipes \N \N \N \N \N 9141 A.rivalis Augusta Augusta rivalis \N \N \N \N \N 9142 S.gentianoides Spigelia Spigelia gentianoides \N \N \N \N \N 9143 H.validus Haematocarpus Haematocarpus validus \N \N \N \N \N 9144 A.chingii Achnatherum Achnatherum chingii \N \N \N \N \N 9145 M.acantholoba Mimosa Mimosa acantholoba \N \N \N \N \N 9146 A.trinervis Agelaea Agelaea trinervis \N \N \N \N \N 9147 P.scrophulariifolia Perovskia Perovskia scrophulariifolia \N \N \N \N \N 9148 J.stygius Juncus Juncus stygius \N \N \N \N \N 9149 A.longipedicellata Apodanthera Apodanthera longipedicellata \N \N \N \N \N 9150 A.havilandii Alpinia Alpinia havilandii \N \N \N \N \N 9151 S.reynoldsiae Synima Synima reynoldsiae \N \N \N \N \N 9152 S.bolanderi Scutellaria Scutellaria bolanderi sierran skullcap \N \N \N \N 9153 L.pubescens Lathyrus Lathyrus pubescens \N \N \N \N \N 9154 O.mollissima Oxalis Oxalis mollissima \N \N \N \N \N 9155 A.spartioides Absolmsia Absolmsia spartioides \N \N \N \N \N 9156 \N varietas Gymnocalycium castellanosii var. armillatum \N \N \N \N \N 9157 D.burmanicus Dendropanax Dendropanax burmanicus \N \N \N \N \N 9158 S.myrtoides Strychnos Strychnos myrtoides \N \N \N \N \N 9159 S.hillebrandii Sicyos Sicyos hillebrandii \N \N \N \N \N 9160 C.foveata Chamaedorea Chamaedorea foveata \N \N \N \N \N 9161 \N order Picramniales \N \N \N \N \N 9162 E.arctica Euphrasia Euphrasia arctica \N \N \N \N \N 9163 Z.americanum Zanthoxylum Zanthoxylum americanum northern prickly-ash,toothache-tree \N \N \N \N 9164 R.nitens Rytidosperma Rytidosperma nitens \N \N \N \N \N 9165 D.cupulatum Dendrochilum Dendrochilum cupulatum \N \N \N \N \N 9166 C.jujuyensis Calceolaria Calceolaria jujuyensis \N \N \N \N \N 9167 \N genus Thladiantha \N \N \N \N \N 9168 F.popenoei Ficus Ficus popenoei \N \N \N \N \N 9169 C.semidecandrum Cerastium Cerastium semidecandrum \N \N \N \N \N 9170 P.atropurpurea Pyrola Pyrola atropurpurea \N \N \N \N \N 9171 S.montanus Stenocereus Stenocereus montanus \N \N \N \N \N 9172 \N genus Achyrocalyx \N \N \N \N \N 9173 C.colchaguensis Calandrinia Calandrinia colchaguensis \N \N \N \N \N 9174 \N genus Acanthogilia \N \N \N \N \N 9175 M.pseudostygia Mesomelaena Mesomelaena pseudostygia \N \N \N \N \N 9176 E.eriophoros Erica Erica eriophoros \N \N \N \N \N 9177 \N genus Pseudolaelia \N \N \N \N \N 9178 \N varietas Didymocarpus insulsus var. insulsus \N \N \N \N \N 9179 \N tribe Chironieae \N \N \N \N \N 9180 C.nigrofimbria Centaurea Centaurea nigrofimbria \N \N \N \N \N 9181 F.refracta Forsteronia Forsteronia refracta \N \N \N \N \N 9182 \N subspecies Manihot esculenta subsp. esculenta \N \N \N \N \N 9183 T.sK3752/7 unclassified Taraxacum Taraxacum (sect. Erythrocarpa) sp. sK3752/7 \N \N \N \N \N 9184 B.laevis Brunia Brunia laevis \N \N \N \N \N 9185 P.mullesua Piper Piper mullesua \N \N \N \N \N 9186 T.barthlottii Tillandsia Tillandsia barthlottii \N \N \N \N \N 9187 L.1997 Lupinus Lupinus sp. CEH 1997 \N \N \N \N \N 9188 P.acicularifolia Poa Poa acicularifolia \N \N \N \N \N 9189 S.jamaicensis Sida Sida jamaicensis \N \N \N \N \N 9190 P.latifolia Picramnia Picramnia latifolia \N \N \N \N \N 9191 \N subspecies Orobanche purpurea subsp. bohemica \N \N \N \N \N 9192 A.truncatum Acer Acer truncatum Shantung maple,purple-blow maple \N \N \N \N 9193 \N varietas Aesculus chinensis var. wilsonii \N \N \N \N \N 9194 A.kumageanum Asarum Asarum kumageanum \N \N \N \N \N 9195 E.meenae Euphorbia Euphorbia meenae \N \N \N \N \N 9196 E.perulatus Enkianthus Enkianthus perulatus \N \N \N \N \N 9197 C.aciculatus Chrysopogon Chrysopogon aciculatus \N \N \N \N \N 9198 T.calyptrocarpa Turnera Turnera calyptrocarpa \N \N \N \N \N 9199 W.pungens Woollsia Woollsia pungens \N \N \N \N \N 9200 \N forma Actinidia eriantha f. alba \N \N \N \N \N 9201 E.lanicaulis Eragrostis Eragrostis lanicaulis \N \N \N \N \N 9202 \N genus Merciera \N \N \N \N \N 9203 \N subspecies Ilex perado subsp. platyphylla Canary Island holly \N \N \N \N 9204 P.scandens Pothos Pothos scandens \N \N \N \N \N 9205 M.smilacifolium Myxopyrum Myxopyrum smilacifolium \N \N \N \N \N 9206 S.neomexicanum Schizachyrium Schizachyrium neomexicanum \N \N \N \N \N 9207 C.ochracea Ceanothus Ceanothus ochracea \N \N \N \N \N 9208 S.verbenaca Salvia Salvia verbenaca \N \N \N \N \N 9209 S.pungens Sideritis Sideritis pungens \N \N \N \N \N 9210 H.deserti Henophyton Henophyton deserti \N \N \N \N \N 9211 Z.chrysopteron Zygophyllum Zygophyllum chrysopteron \N \N \N \N \N 9212 R.scariosum Rhaponticum Rhaponticum scariosum \N \N \N \N \N 9213 C.aurantiacum Cyrtochilum Cyrtochilum aurantiacum \N \N \N \N \N 9214 \N subspecies Syzygium masukuense subsp. pachyphyllum \N \N \N \N \N 9215 C.uenoi Cryptocoryne Cryptocoryne uenoi \N \N \N \N \N 9216 A.cubensis Ateleia Ateleia cubensis \N \N \N \N \N 9217 C.incana Crotalaria Crotalaria incana \N \N \N \N \N 9218 P.ramosa Pinguicula Pinguicula ramosa \N \N \N \N \N 9219 \N genus Thrasyopsis \N \N \N \N \N 9220 L.679 Lonicera Lonicera sp. Palmer 679 \N \N \N \N \N 9221 B.marginalis Buxus Buxus marginalis \N \N \N \N \N 9222 C.oreothauma Ceratonia Ceratonia oreothauma \N \N \N \N \N 9223 R.blanda Rosa Rosa blanda \N \N \N \N \N 9224 L.bogotensis Lupinus Lupinus bogotensis \N \N \N \N \N 9225 \N subspecies Tillandsia complanata subsp. complanata \N \N \N \N \N 9226 M.SH-2010 Micholitzia Micholitzia sp. SH-2010 \N \N \N \N \N 9227 V.raoulii Hebe Veronica raoulii \N \N \N \N \N 9228 \N subspecies Asclepias tuberosa subsp. rolfsii \N \N \N \N \N 9229 K.brasiliensis Klotzschia Klotzschia brasiliensis \N \N \N \N \N 9230 C.cernuum Carpesium Carpesium cernuum \N \N \N \N \N 9231 C.hermoneus Crocus Crocus hermoneus \N \N \N \N \N 9232 \N subspecies Lomatium foeniculaceum subsp. foeniculaceum \N \N \N \N \N 9233 \N genus Donnellsmithia \N \N \N \N \N 9234 D.loureiriana Diospyros Diospyros loureiriana \N \N \N \N \N 9235 H.macgillivrayi Hoya Hoya macgillivrayi \N \N \N \N \N 9236 A.sericeus Asteriscus Asteriscus sericeus \N \N \N \N \N 9237 D.parviflora Deutzia Deutzia parviflora \N \N \N \N \N 9238 \N varietas Dendrobium speciosum var. speciosum \N \N \N \N \N 9239 H.fenzlii Hornstedtia Hornstedtia fenzlii \N \N \N \N \N 9240 S.pilosus Stapelianthus Stapelianthus pilosus \N \N \N \N \N 9241 F.petraea Festuca Festuca petraea \N \N \N \N \N 9242 V.taiwanianum Viburnum Viburnum taiwanianum \N \N \N \N \N 9243 C.728 Calyptrocalyx Calyptrocalyx sp. Dowe 728 \N \N \N \N \N 9244 R.carnea Reineckea Reineckea carnea \N \N \N \N \N 9245 E.blumenavia Eithea Eithea blumenavia \N \N \N \N \N 9246 T.contorta Tetracme Tetracme contorta \N \N \N \N \N 9247 F.1997' Freesia Freesia sp. 'Lejeune 1997' \N \N \N \N \N 9248 P.cornu-cervi Phalaenopsis Phalaenopsis cornu-cervi \N \N \N \N \N 9249 I.wilksiana Impatiens Impatiens wilksiana \N \N \N \N \N 9250 C.lutescens Cuphea Cuphea lutescens \N \N \N \N \N 9251 V.comollia Viola Viola comollia \N \N \N \N \N 9252 P.palustris Pandanus Pandanus palustris \N \N \N \N \N 9253 A.verus Astragalus Astragalus verus \N \N \N \N \N 9254 S.moncayensis Saxifraga Saxifraga moncayensis \N \N \N \N \N 9255 A.metteniae Ancistrorhynchus Ancistrorhynchus metteniae \N \N \N \N \N 9256 N.sanderae Nicotiana Nicotiana x sanderae \N \N \N \N \N 9257 S.cantoniensis Salomonia Salomonia cantoniensis \N \N \N \N \N 9258 H.micranthus Hibiscus Hibiscus micranthus \N \N \N \N \N 9259 M.bicolor Macaranga Macaranga bicolor \N \N \N \N \N 9260 H.unijuga Humboldtia Humboldtia unijuga \N \N \N \N \N 9261 \N genus Aspicarpa \N \N \N \N \N 9262 N.planifolia Nassauvia Nassauvia planifolia \N \N \N \N \N 9263 \N genus Miraglossum \N \N \N \N \N 9264 T.O-373 Thecostele Thecostele sp. Chase O-373 \N \N \N \N \N 9265 D.suffruticosa Dillenia Dillenia suffruticosa \N \N \N \N \N 9266 M.regina Mimosa Mimosa regina \N \N \N \N \N 9267 L.caucasica Lomelosia Lomelosia caucasica \N \N \N \N \N 9268 P.zanzibarica Pentas Pentas zanzibarica \N \N \N \N \N 9269 E.lobata Echinocystis Echinocystis lobata prickly cucumber,wild balsam-apple,wild cucumber \N \N \N \N 9270 \N varietas Pedicularis longiflora var. tubiformis \N \N \N \N \N 9271 \N genus Pyxidanthera \N \N \N \N \N 9272 S.crispus Sericocalyx Sericocalyx crispus \N \N \N \N \N 9273 P.kusanoi Persea Persea kusanoi \N \N \N \N \N 9274 A.arenaria Ammophila Ammophila arenaria \N \N \N \N \N 9275 C.nanchuanensis Actaea Cimicifuga nanchuanensis \N \N \N \N \N 9276 D.hirtellus Dendrocalamus Dendrocalamus hirtellus \N \N \N \N \N 9277 E.madagascariense Ecbolium Ecbolium madagascariense \N \N \N \N \N 9278 \N genus Elsholtzia \N \N \N \N \N 9279 P.glaucus Phyllanthus Phyllanthus glaucus \N \N \N \N \N 9280 \N genus Gochnatia \N \N \N \N \N 9281 V.luzonica Vanda Vanda luzonica \N \N \N \N \N 9282 K.marnieriana Kalanchoe Kalanchoe marnieriana \N \N \N \N \N 9283 \N genus Vouacapoua \N \N \N \N \N 9284 M.surculosa Mammillaria Mammillaria surculosa \N \N \N \N \N 9285 D.elongatus Desmocladus Desmocladus elongatus \N \N \N \N \N 9286 P.foremanii Palmeria Palmeria foremanii \N \N \N \N \N 9287 T.mwasumbii Trichaulax Trichaulax mwasumbii \N \N \N \N \N 9288 \N subspecies Chrysopogon gryllus subsp. echinulatus \N \N \N \N \N 9289 S.longa Stephania Stephania longa \N \N \N \N \N 9290 H.triphyllum Hylotelephium Hylotelephium triphyllum \N \N \N \N \N 9291 \N genus Cornus \N \N \N \N \N 9292 S.cuneata Sarcotoechia Sarcotoechia cuneata \N \N \N \N \N 9293 P.forrestiana Pyrola Pyrola forrestiana \N \N \N \N \N 9294 P.graniticola Pimelea Pimelea graniticola \N \N \N \N \N 9295 B.pulchella Boesenbergia Boesenbergia pulchella \N \N \N \N \N 9296 \N varietas Rosa cymosa var. cymosa \N \N \N \N \N 9297 F.brachypoda Ficus Ficus brachypoda \N \N \N \N \N 9298 B.klugii Basistemon Basistemon klugii \N \N \N \N \N 9299 C.violacea Cleome Cleome violacea \N \N \N \N \N 9300 P.96.3 Paeonia Paeonia sp. CWD 96.3 \N \N \N \N \N 9301 \N genus Ludisia \N \N \N \N \N 9302 M.ichthyostoma Mandirola Mandirola ichthyostoma \N \N \N \N \N 9303 \N genus Microlicia \N \N \N \N \N 9304 \N genus Lecanthus \N \N \N \N \N 9305 H.brassii Hydriastele Hydriastele brassii \N \N \N \N \N 9306 A.panamensis Aristolochia Aristolochia panamensis \N \N \N \N \N 9307 C.saligna Crataegus Crataegus saligna \N \N \N \N \N 9308 C.awa Calyptrocalyx Calyptrocalyx awa \N \N \N \N \N 9309 S.gracilis Sphallerocarpus Sphallerocarpus gracilis \N \N \N \N \N 9310 P.gigantifolium Paphiopedilum Paphiopedilum gigantifolium \N \N \N \N \N 9311 E.parviflorus Ephedranthus Ephedranthus parviflorus \N \N \N \N \N 9312 S.sample environmental samples Taxonomy:531405 Sapindaceae environmental sample \N \N \N \N \N 9313 P.ussuriensis Prunus Prunus ussuriensis \N \N \N \N \N 9314 L.yunnanensis Ligularia Ligularia yunnanensis \N \N \N \N \N 9315 D.aptera Dodonaea Dodonaea aptera \N \N \N \N \N 9316 M.virginiensis Micranthes Micranthes virginiensis \N \N \N \N \N 9317 \N genus Xenoscapa \N \N \N \N \N 9318 O.floribunda Oxalis Oxalis floribunda \N \N \N \N \N 9319 \N varietas Vaccinium smallii var. glabrum \N \N \N \N \N 9320 D.villosa Disperis Disperis villosa \N \N \N \N \N 14558 \N genus Eutaxia \N \N \N \N \N 9321 T.serratifolia Tabebuia Tabebuia serratifolia \N \N \N \N \N 9322 A.elichrysifolium Anchonium Anchonium elichrysifolium \N \N \N \N \N 9323 G.010816 Guarea Guarea sp. BCI 010816 \N \N \N \N \N 9324 C.somaliensis Campylanthus Campylanthus somaliensis \N \N \N \N \N 9325 \N varietas Claytonia lanceolata var. flava \N \N \N \N \N 9326 S.costus Saussurea Saussurea costus \N \N \N \N \N 9327 P.laxum Phacelophrynium Phacelophrynium laxum \N \N \N \N \N 9328 \N subspecies Banksia nivea subsp. uliginosa \N \N \N \N \N 9329 L.grandibractea Lockhartia Lockhartia grandibractea \N \N \N \N \N 9330 P.fremontii Phacelia Phacelia fremontii \N \N \N \N \N 9331 C.2280 Cynoglossum Cynoglossum sp. Styles 2280 \N \N \N \N \N 9332 R.solitarium Rhododendron Rhododendron solitarium \N \N \N \N \N 9333 P.cerasifera Prunus Prunus cerasifera cherry plum,myrobalan plum \N \N \N \N 9334 A.pindicola Achillea Achillea pindicola \N \N \N \N \N 9335 C.stevenii Colchicum Colchicum stevenii \N \N \N \N \N 9336 B.linearifolia Berberis Berberis linearifolia \N \N \N \N \N 9337 P.indica Polytrias Polytrias indica \N \N \N \N \N 9338 \N varietas Croton leucophyllus var. trisepalis \N \N \N \N \N 9339 H.stenura Hernandia Hernandia stenura \N \N \N \N \N 9340 O.monticola Ornithogalum Ornithogalum monticola \N \N \N \N \N 9341 K.gracilipes Kalanchoe Kalanchoe gracilipes \N \N \N \N \N 9342 T.hirsuta Thymelaea Thymelaea hirsuta \N \N \N \N \N 9343 N.plumbaginifolia Nicotiana Nicotiana rustica x Nicotiana plumbaginifolia \N \N \N \N \N 9344 N.myrtifolia Nesaea Nesaea myrtifolia \N \N \N \N \N 9345 D.SH-2010 Dumasia Dumasia sp. SH-2010 \N \N \N \N \N 9346 \N genus Stenoglottis \N \N \N \N \N 9347 U.4000 Ulmus Ulmus sp. Gravendeel 4000 \N \N \N \N \N 9348 D.tonkinensis Dalbergia Dalbergia tonkinensis \N \N \N \N \N 9349 M.schlechtendalii Miconia Miconia schlechtendalii \N \N \N \N \N 9350 S.interjectum Sorghum Sorghum interjectum \N \N \N \N \N 9351 T.buphthalmoides Tragopogon Tragopogon buphthalmoides \N \N \N \N \N 9352 V.jaubertiana Viola Viola jaubertiana \N \N \N \N \N 9353 L.schizocalyx Lycium Lycium schizocalyx \N \N \N \N \N 9354 U.australis Uromyrtus Uromyrtus australis \N \N \N \N \N 9355 S.venusta Senna Senna venusta \N \N \N \N \N 9356 L.cuspidifera Leea Leea cuspidifera \N \N \N \N \N 9357 B.nodiflora Brunia Brunia nodiflora \N \N \N \N \N 9358 S.boraginoides Stachys Stachys boraginoides \N \N \N \N \N 9359 M.GW2419 Myristica Myristica cf. sepicana GW2419 \N \N \N \N \N 9360 S.lanceolatus Streptopus Streptopus lanceolatus rose mandarin \N \N \N \N 9361 G.serpenticum Galium Galium serpenticum \N \N \N \N \N 9362 G.uliginosum Gnaphalium Gnaphalium uliginosum \N \N \N \N \N 9363 R.lomatocarpus Ranunculus Ranunculus lomatocarpus \N \N \N \N \N 9364 I.amicorum Itaya Itaya amicorum \N \N \N \N \N 9365 I.flaccida Impatiens Impatiens flaccida \N \N \N \N \N 9366 T.pannonicum Trifolium Trifolium pannonicum \N \N \N \N \N 9367 F.albicans Fosterella Fosterella albicans \N \N \N \N \N 9368 A.parviflorus Acmispon Acmispon parviflorus \N \N \N \N \N 9369 P.lancetillensis Passiflora Passiflora lancetillensis \N \N \N \N \N 9370 L.amplexicaule Lamium Lamium amplexicaule henbit,henbit deadnettle \N \N \N \N 9371 T.laevis Tetrarrhena Tetrarrhena laevis \N \N \N \N \N 9372 P.rhombifolia Pilea Pilea rhombifolia \N \N \N \N \N 9373 C.mackaui Celmisia Celmisia mackaui \N \N \N \N \N 9374 M.caudivolvula Masdevallia Masdevallia caudivolvula \N \N \N \N \N 9375 S.thomsonii Semenovia Semenovia thomsonii \N \N \N \N \N 9376 A.mccoyi Anomalluma Anomalluma mccoyi \N \N \N \N \N 9377 A.oblongifolia Alpinia Alpinia oblongifolia \N \N \N \N \N 9378 P.4356 Pygmaeothamnus Pygmaeothamnus sp. Bremer et al. 4356 \N \N \N \N \N 9379 E.cristata Erica Erica cristata \N \N \N \N \N 9380 C.scabriusculum Cotylelobium Cotylelobium scabriusculum \N \N \N \N \N 9381 S.cranwelliae Stenogyne Stenogyne cranwelliae \N \N \N \N \N 9382 G.virescens Gloriosa Gloriosa virescens \N \N \N \N \N 9383 A.brandisii Achnatherum Achnatherum brandisii \N \N \N \N \N 9384 M.witsenioides Maxillaria Maxillaria witsenioides \N \N \N \N \N 9385 T.hirticalyx Tripterospermum Tripterospermum hirticalyx \N \N \N \N \N 9386 K.coccinea Kennedia Kennedia coccinea \N \N \N \N \N 9387 \N genus Pachyphyllum \N \N \N \N \N 9388 T.gongylorrhizus Tragopogon Tragopogon gongylorrhizus \N \N \N \N \N 9389 C.nobilis Croton Croton nobilis \N \N \N \N \N 9390 L.filifolia Lysiana Lysiana filifolia \N \N \N \N \N 9391 C.watsonii Croton Croton watsonii \N \N \N \N \N 9392 A.asbestinum Aizoon Aizoon asbestinum \N \N \N \N \N 9393 \N genus Blepharandra \N \N \N \N \N 9394 A.seselifolia Astomaea Astomaea seselifolia \N \N \N \N \N 9395 \N genus Acokanthera \N \N \N \N \N 9396 E.parviflora Euphrasia Euphrasia parviflora \N \N \N \N \N 9397 L.capitata Luzula Luzula capitata \N \N \N \N \N 9398 C.breweri Clarkia Clarkia breweri fariy fans \N \N \N \N 9399 N.M740 Neoharmsia Neoharmsia sp. Andriantiana & Andrianantoanina M740 \N \N \N \N \N 9400 C.defloratus Carduus Carduus defloratus \N \N \N \N \N 9401 A.fargesii Arisaema Arisaema fargesii \N \N \N \N \N 9402 O.ferresii Olearia Olearia ferresii \N \N \N \N \N 9403 P.vvedenskyi Polygonum Polygonum vvedenskyi \N \N \N \N \N 9404 M.paniculata Myricaria Myricaria paniculata \N \N \N \N \N 9405 D.inflatus Didymocarpus Didymocarpus inflatus \N \N \N \N \N 9406 M.capitata Metalasia Metalasia capitata \N \N \N \N \N 9407 C.sclerolepis Centaurea Centaurea sclerolepis \N \N \N \N \N 9408 D.ellipsoidea Draba Draba ellipsoidea \N \N \N \N \N 9409 T.96-425 Typhonium Typhonium sp. Sizemore 96-425 \N \N \N \N \N 9410 G.obscura Globba Globba obscura \N \N \N \N \N 9411 P.linearis Pleioblastus Pleioblastus linearis \N \N \N \N \N 9412 \N genus Eligmocarpus \N \N \N \N \N 9413 T.oahuensis Tetraplasandra Tetraplasandra oahuensis \N \N \N \N \N 9414 M.prosthecidiscus Matelea Matelea prosthecidiscus \N \N \N \N \N 9415 H.bupleuroides Hieracium Hieracium bupleuroides \N \N \N \N \N 9416 C.kandavanensis Centaurea Centaurea kandavanensis \N \N \N \N \N 9417 M.MA37 Microtis Microtis sp. MA37 \N \N \N \N \N 9418 \N varietas Costus guanaiensis var. tarmicus \N \N \N \N \N 9419 A.gyrolophos Amomum Amomum gyrolophos \N \N \N \N \N 9420 A.neriniflorum Allium Allium neriniflorum \N \N \N \N \N 9421 C.wakasaense Chrysanthemum Chrysanthemum wakasaense \N \N \N \N \N 9422 H.brasiliensis Hevea Hevea brasiliensis Para rubber tree,jebe,rubbertree,siringa \N \N \N \N 9423 A.batodes Aspalathus Aspalathus batodes \N \N \N \N \N 9424 \N tribe Hamelieae \N \N \N \N \N 9425 D.angustissima Dalzellia Dalzellia angustissima \N \N \N \N \N 9426 T.raggiana Tococa Tococa raggiana \N \N \N \N \N 9427 M.puya Maoutia Maoutia puya \N \N \N \N \N 9428 A.anegadensis Acacia Acacia anegadensis \N \N \N \N \N 9429 D.purpurascens Disa Disa purpurascens \N \N \N \N \N 9430 M.dawsoniana Magnolia Magnolia dawsoniana \N \N \N \N \N 9431 P.harmala Peganum Peganum harmala \N \N \N \N \N 9432 P.grandibracteatum Phrynium Phrynium grandibracteatum \N \N \N \N \N 9433 \N subspecies Thymelaea coridifolia subsp. coridifolia \N \N \N \N \N 9434 A.haworthii Aeonium Aeonium haworthii \N \N \N \N \N 9435 O.psoraleoides Oxalis Oxalis psoraleoides \N \N \N \N \N 9436 \N genus Libanotis \N \N \N \N \N 9437 M.ximenae Masdevallia Masdevallia ximenae \N \N \N \N \N 9438 \N genus Petitiocodon \N \N \N \N \N 9439 \N genus Microplumeria \N \N \N \N \N 9440 O.daucifolia Oreomyrrhis Oreomyrrhis daucifolia \N \N \N \N \N 9441 C.hircinus Croton Croton hircinus \N \N \N \N \N 9442 C.congesta Cannomois Cannomois congesta \N \N \N \N \N 9443 D.testudinarius Durio Durio testudinarius \N \N \N \N \N 9444 O.volubilis Oxyrhynchus Oxyrhynchus volubilis \N \N \N \N \N 9445 P.nigra Prosopis Prosopis nigra algarrobillo,algarrobo negro \N \N \N \N 9446 C.dichotoma Calceolaria Calceolaria dichotoma \N \N \N \N \N 9447 A.kotschyi Aegilops Aegilops kotschyi \N \N \N \N \N 9448 C.integrifolia Calceolaria Calceolaria integrifolia \N \N \N \N \N 9449 O.nevadensis Oryctes Oryctes nevadensis \N \N \N \N \N 9450 A.nevskianum Allium Allium nevskianum \N \N \N \N \N 9451 C.aschersoniana Collaea Collaea aschersoniana \N \N \N \N \N 9452 V.cloiselii Vaughania Vaughania cloiselii \N \N \N \N \N 9453 H.panacis-scandens Hemsleya Hemsleya panacis-scandens \N \N \N \N \N 9454 H.taruga-gasso Halenia Halenia taruga-gasso \N \N \N \N \N 9455 S.dissachantha Schoenoplectiella Schoenoplectiella dissachantha \N \N \N \N \N 9456 I.savianum Ionopsidium Ionopsidium savianum \N \N \N \N \N 9457 C.swinglei Citrus Citrus swinglei \N \N \N \N \N 9458 \N genus Hemipogon \N \N \N \N \N 9459 O.trotteri Oreoxis Oreoxis trotteri \N \N \N \N \N 9460 P.hispidum Piper Piper hispidum \N \N \N \N \N 9461 C.polita Cliffortia Cliffortia polita \N \N \N \N \N 9462 L.paludosa Lindackeria Lindackeria paludosa \N \N \N \N \N 9463 P.lapathifolia Persicaria Persicaria lapathifolia \N \N \N \N \N 9464 C.hallii Columbiadoria Columbiadoria hallii \N \N \N \N \N 9465 P.werdermannii Paliavana Paliavana werdermannii \N \N \N \N \N 9466 P.cenepensis Psychotria Psychotria cenepensis \N \N \N \N \N 9467 C.parviflorum Coelanthum Coelanthum parviflorum \N \N \N \N \N 9468 G.recurvatus Gymnosiphon Gymnosiphon recurvatus \N \N \N \N \N 9469 E.soratensis Eragrostis Eragrostis soratensis \N \N \N \N \N 9470 S.incarnata Sinningia Sinningia incarnata \N \N \N \N \N 9471 H.salicornica Hammada Hammada salicornica \N \N \N \N \N 9472 \N varietas Pisum sativum var. arvense \N \N \N \N \N 9473 G.decora Gochnatia Gochnatia decora \N \N \N \N \N 9474 \N genus Beyeria \N \N \N \N \N 9475 \N genus Desmodium \N \N \N \N \N 9476 \N varietas Amorpha georgiana var. georgiana \N \N \N \N \N 9477 A.difforme Anginon Anginon difforme \N \N \N \N \N 9478 \N genus Epistephium \N \N \N \N \N 9479 P.catholicum Pterygodium Pterygodium acutifolium x Pterygodium catholicum \N \N \N \N \N 9480 C.tucumana Calceolaria Calceolaria tucumana \N \N \N \N \N 9481 \N genus Pavetta \N \N \N \N \N 9482 E.radicans Epidendrum Epidendrum radicans \N \N \N \N \N 9483 H.carnosa Hoya Hoya carnosa honeyplant,waxplant \N \N \N \N 9484 H.marginatum Helichrysum Helichrysum marginatum \N \N \N \N \N 9485 C.acaule Chrysactinium Chrysactinium acaule \N \N \N \N \N 9486 O.cyanocolumna Oestlundia Oestlundia cyanocolumna \N \N \N \N \N 9487 C.floribunda Cyathopsis Cyathopsis floribunda \N \N \N \N \N 9488 \N genus Paralepistemon \N \N \N \N \N 9489 D.macrophylla Drymonia Drymonia macrophylla \N \N \N \N \N 9490 S.fimbriatum Satyrium Satyrium fimbriatum \N \N \N \N \N 9491 M.elongata Muhlenbergia Muhlenbergia elongata \N \N \N \N \N 9492 P.phyllocardia Pleurothallis Pleurothallis phyllocardia \N \N \N \N \N 9493 D.edulis Dacryodes Dacryodes edulis \N \N \N \N \N 9494 L.bracteata Licuala Licuala bracteata \N \N \N \N \N 9495 L.watsonii Lysiloma Lysiloma watsonii \N \N \N \N \N 9496 V.polita Veronica Veronica polita \N \N \N \N \N 9497 S.dodecandra Samyda Samyda dodecandra \N \N \N \N \N 9498 S.nipponica Saussurea Saussurea nipponica \N \N \N \N \N 9499 A.scutellarioides Achetaria Achetaria scutellarioides \N \N \N \N \N 9500 E.triloba Eltroplectris Eltroplectris triloba \N \N \N \N \N 9501 A.hayatanum Asarum Asarum hayatanum \N \N \N \N \N 9502 M.rhodocarpa Mimosa Mimosa rhodocarpa \N \N \N \N \N 9503 E.galpinii Euryops Euryops galpinii \N \N \N \N \N 9504 \N subspecies Pittosporum tenuifolium subsp. colensoi \N \N \N \N \N 9505 M.stricta Mollugo Mollugo stricta \N \N \N \N \N 9506 T.huajuapanensis Tigridia Tigridia huajuapanensis \N \N \N \N \N 9507 \N genus Warionia \N \N \N \N \N 9508 G.racemosa Globba Globba racemosa \N \N \N \N \N 9509 E.esula Euphorbia Euphorbia esula leafy spurge,wolf's milk \N \N \N \N 9510 S.dictyocarpa Savia Savia dictyocarpa \N \N \N \N \N 9511 S.coriacea Symplocos Symplocos coriacea \N \N \N \N \N 9512 E.foulaensis Euphrasia Euphrasia foulaensis \N \N \N \N \N 9513 R.portoricensis Rondeletia Rondeletia portoricensis \N \N \N \N \N 9514 \N genus Diceratella \N \N \N \N \N 9515 P.3008 Palaua Palaua cf. tomentosa Schneider et al. 3008 \N \N \N \N \N 9516 C.sclerophyllum Centrolobium Centrolobium sclerophyllum \N \N \N \N \N 9517 S.litoralis Schoenoplectus Schoenoplectus litoralis \N \N \N \N \N 9518 V.stenoloba Viguiera Viguiera stenoloba \N \N \N \N \N 9519 A.media Arctostaphylos Arctostaphylos media \N \N \N \N \N 9520 T.divaricata Trixis Trixis divaricata \N \N \N \N \N 9521 G.kallunkii Gonzalagunia Gonzalagunia kallunkii \N \N \N \N \N 9522 B.mathewsii Bejaria Bejaria mathewsii \N \N \N \N \N 9523 P.vinasiana Peperomia Peperomia vinasiana \N \N \N \N \N 9524 \N genus Rapona \N \N \N \N \N 9525 D.latifolia Dienia Dienia latifolia \N \N \N \N \N 9526 P.pallidum Protium Protium pallidum \N \N \N \N \N 9527 I.mengtszeana Impatiens Impatiens mengtszeana \N \N \N \N \N 9528 \N genus Centunculus \N \N \N \N \N 9529 C.minahassae Clerodendrum Clerodendrum minahassae \N \N \N \N \N 9530 E.regnans Eucalyptus Eucalyptus regnans \N \N \N \N \N 9531 B.brachystachys Bromus Bromus brachystachys \N \N \N \N \N 9532 C.quercifolia Cantua Cantua quercifolia \N \N \N \N \N 9533 E.arcticum Epilobium Epilobium arcticum \N \N \N \N \N 9534 N.hyacinthoides Nectaroscilla Nectaroscilla hyacinthoides \N \N \N \N \N 9535 H.chorizemifolia Hovea Hovea chorizemifolia \N \N \N \N \N 9536 R.omeiensis Rosa Rosa omeiensis \N \N \N \N \N 9537 \N genus Ferraria \N \N \N \N \N 9538 E.neochamaeclada Euphorbia Euphorbia neochamaeclada \N \N \N \N \N 9539 \N genus Temburongia \N \N \N \N \N 9540 U.fuscovaginata Uncinia Uncinia fuscovaginata \N \N \N \N \N 9541 B.tinctoria Baptisia Baptisia tinctoria horseflyweed,indigo-broom,rattleweed,yellow-broom \N \N \N \N 9542 E.orientalis Echinophora Echinophora orientalis \N \N \N \N \N 9543 N.inermis Nepenthes Nepenthes inermis \N \N \N \N \N 9544 C.canadensis Collinsonia Collinsonia canadensis northern horse-balm,stoneroot \N \N \N \N 9545 K.linearifolia Kniphofia Kniphofia linearifolia \N \N \N \N \N 9546 H.undulatus Haplopappus Haplopappus undulatus \N \N \N \N \N 9547 S.sandwicense Solanum Solanum sandwicense 'aiakeakua,Hawai'i horsenettle,popolo \N \N \N \N 9548 M.bifurca Mimosa Mimosa bifurca \N \N \N \N \N 9549 \N subspecies Centaurea resupinata subsp. vulnerariifolia \N \N \N \N \N 9550 L.laxa Liparis Liparis laxa \N \N \N \N \N 9551 \N genus Polystemonanthus \N \N \N \N \N 9552 \N genus Cuminum \N \N \N \N \N 9553 \N tribe Stomatocalyceae \N \N \N \N \N 9554 A.turbinata Acourtia Acourtia turbinata \N \N \N \N \N 9555 A.bassleriana Attalea Attalea bassleriana \N \N \N \N \N 9556 S.oerstedii Struthanthus Struthanthus oerstedii \N \N \N \N \N 9557 S.guerreroense Solanum Solanum guerreroense \N \N \N \N \N 9558 C.H1_5 Castilleja Castilleja sp. H1_5 \N \N \N \N \N 9559 M.sessilis Microcharis Microcharis sessilis \N \N \N \N \N 9560 C.scapigera Calotis Calotis scapigera \N \N \N \N \N 9561 C.multinervosa Cornus Cornus multinervosa \N \N \N \N \N 9562 P.capense Piper Piper capense \N \N \N \N \N 9563 \N varietas Triticum aestivum var. albirubrinflatum \N \N \N \N \N 9564 M.repens Mimulus Mimulus repens creeping monkey flower \N \N \N \N 9565 A.californica Anemopsis Anemopsis californica yerba mansa \N \N \N \N 9566 H.tanzanica Harveya Harveya tanzanica \N \N \N \N \N 9567 O.inversa Oreobolopsis Oreobolopsis inversa \N \N \N \N \N 9568 S.superbiens Schomburgkia Schomburgkia superbiens \N \N \N \N \N 9569 H.multiflora Henriettea Henriettea multiflora \N \N \N \N \N 9570 C.proxima Carex Carex proxima \N \N \N \N \N 9571 O.keniense Ormocarpum Ormocarpum keniense \N \N \N \N \N 9572 A.graminea Arctotis Arctotis graminea \N \N \N \N \N 9573 C.eclipes Chrysochlamys Chrysochlamys eclipes \N \N \N \N \N 9574 D.bracteata Disa Disa bracteata \N \N \N \N \N 9575 P.leibergii Phacelia Phacelia leibergii \N \N \N \N \N 9576 \N genus Skiatophytum \N \N \N \N \N 9577 M.adhaerens Mentzelia Mentzelia adhaerens \N \N \N \N \N 9578 G.bennettsianum Gastrolobium Gastrolobium bennettsianum \N \N \N \N \N 9579 S.pinnatus Schizanthus Schizanthus pinnatus butterfly flower \N \N \N \N 9580 \N subspecies Polygala amara subsp. brachyptera \N \N \N \N \N 9581 C.turcomanica Climacoptera Climacoptera turcomanica \N \N \N \N \N 9582 G.occidentalis Gentiana Gentiana occidentalis \N \N \N \N \N 9583 \N genus Chenoleoides \N \N \N \N \N 9584 T.incisa Trachymene Trachymene incisa \N \N \N \N \N 9585 G.turanica Gagea Gagea x turanica \N \N \N \N \N 9586 D.virgata Dioclea Dioclea virgata \N \N \N \N \N 9587 T.alpinum Thalictrum Thalictrum alpinum \N \N \N \N \N 9588 C.discrepans Cyphonanthus Cyphonanthus discrepans \N \N \N \N \N 9589 F.obtusifolia Ficus Ficus obtusifolia \N \N \N \N \N 9590 O.nitida Oxandra Oxandra nitida \N \N \N \N \N 9591 \N genus Diplolophium \N \N \N \N \N 9592 H.sexstylosa Hoheria Hoheria sexstylosa \N \N \N \N \N 9593 \N genus Tetraria \N \N \N \N \N 9594 C.parviflora Canavalia Canavalia parviflora \N \N \N \N \N 9595 P.trifida Pentaschistis Pentameris trifida \N \N \N \N \N 9596 M.alainii Miconia Miconia alainii \N \N \N \N \N 9597 T.volubilis Tecomanthe Tecomanthe volubilis \N \N \N \N \N 9598 \N genus Leucas \N \N \N \N \N 9599 \N family Alstroemeriaceae \N \N \N \N \N 9600 E.perriniana Eucalyptus Eucalyptus perriniana \N \N \N \N \N 9602 M.eucalyptoides Muellerina Muellerina eucalyptoides \N \N \N \N \N 9603 S.semiglabra Sibbaldia Sibbaldia semiglabra \N \N \N \N \N 9604 \N genus Keraymonia \N \N \N \N \N 9605 T.formosanum Thrixspermum Thrixspermum formosanum \N \N \N \N \N 9606 C.Euro2 Cakile Cakile sp. Euro2 \N \N \N \N \N 9607 R.decora Rodriguezia Rodriguezia decora \N \N \N \N \N 9608 C.vulgaris Carlina Carlina vulgaris \N \N \N \N \N 14657 \N genus Tutcheria \N \N \N \N \N 9609 L.meijerii Lithocarpus Lithocarpus meijerii \N \N \N \N \N 9610 E.simplex Echium Echium simplex \N \N \N \N \N 9611 \N genus Sclerocarya \N \N \N \N \N 9612 C.1997' Calophyllum Calophyllum sp. 'Fay et al. 1997' \N \N \N \N \N 9613 V.cinnamomifolium Viburnum Viburnum cinnamomifolium \N \N \N \N \N 9614 C.glauca Calceolaria Calceolaria glauca \N \N \N \N \N 9615 A.nebrodense Alyssum Alyssum nebrodense \N \N \N \N \N 9616 A.aspera Aeschynomene Aeschynomene aspera \N \N \N \N \N 9617 C.ficifolium Chenopodium Chenopodium ficifolium \N \N \N \N \N 9618 C.persicifolia Clermontia Clermontia persicifolia \N \N \N \N \N 9619 \N genus Smyrniopsis \N \N \N \N \N 9620 P.pleiantha Pauridiantha Pauridiantha pleiantha \N \N \N \N \N 9621 B.killipii Bactris Bactris killipii \N \N \N \N \N 9622 P.macrocarpus Pterocarpus Pterocarpus macrocarpus \N \N \N \N \N 9623 L.cannella Licaria Licaria cannella \N \N \N \N \N 9624 P.angolana Phaulopsis Phaulopsis angolana \N \N \N \N \N 9625 S.californica Scrophularia Scrophularia californica \N \N \N \N \N 9626 C.SRR-2011 Cycnoches Cycnoches sp. SRR-2011 \N \N \N \N \N 9627 O.octandrus Oedematopus Oedematopus octandrus \N \N \N \N \N 9628 S.sagraeanum Stigmaphyllon Stigmaphyllon sagraeanum \N \N \N \N \N 9629 E.paradoxum Enicosanthum Enicosanthum paradoxum \N \N \N \N \N 9630 S.balansae Scandix Scandix balansae \N \N \N \N \N 9631 L.grandiflora Limosella Limosella grandiflora \N \N \N \N \N 9632 P.variolata Passiflora Passiflora variolata \N \N \N \N \N 9633 P.swinhoei Paraboea Paraboea swinhoei \N \N \N \N \N 9634 C.thomsonii Cousinia Cousinia thomsonii \N \N \N \N \N 9635 E.pauciflora Englerocharis Englerocharis pauciflora \N \N \N \N \N 9636 A.irigaensis Aeschynanthus Aeschynanthus irigaensis \N \N \N \N \N 9637 M.michelioides Mischogyne Mischogyne michelioides \N \N \N \N \N 9638 \N genus Gastrolobium \N \N \N \N \N 9639 E.lockyeri Eucalyptus Eucalyptus lockyeri \N \N \N \N \N 9640 G.graminifolia Gagea Gagea graminifolia \N \N \N \N \N 9641 C.iria Cyperus Cyperus iria \N \N \N \N \N 9642 S.incana Solms-laubachia Solms-laubachia incana \N \N \N \N \N 9643 G.lutescens Gentianella Gentianella lutescens \N \N \N \N \N 9644 B.grandidieri Bauhinia Bauhinia grandidieri \N \N \N \N \N 9645 \N genus Redfieldia \N \N \N \N \N 9646 \N genus Erithalis \N \N \N \N \N 9647 B.aucheri Ballota Ballota aucheri \N \N \N \N \N 9648 \N varietas Swartzia schomburgkii var. guayanensis \N \N \N \N \N 9649 A.torulosa Allocasuarina Allocasuarina torulosa \N \N \N \N \N 9650 M.apparata Macrocarpaea Macrocarpaea apparata \N \N \N \N \N 9651 \N varietas Olearia stellulata var. stellulata \N \N \N \N \N 9652 P.manicatus Paepalanthus Paepalanthus manicatus \N \N \N \N \N 9653 C.lehmannii Corpuscularia Corpuscularia lehmannii \N \N \N \N \N 9654 S.latelaminatus Schoenus Schoenus latelaminatus \N \N \N \N \N 9655 D.rodriguezii Daphne Daphne rodriguezii \N \N \N \N \N 9656 \N subspecies Ipomopsis longiflora subsp. longiflora \N \N \N \N \N 9657 E.racemosa Elegia Elegia racemosa \N \N \N \N \N 9658 \N genus Kafirnigania \N \N \N \N \N 9659 S.hyacinthoides Streptanthus Streptanthus hyacinthoides \N \N \N \N \N 9660 H.montana Heimia Heimia montana \N \N \N \N \N 9661 D.armeria Dianthus Dianthus armeria grass pink \N \N \N \N 9662 G.verna Gueldenstaedtia Gueldenstaedtia verna \N \N \N \N \N 9663 R.monadelpha Romulea Romulea monadelpha \N \N \N \N \N 9664 \N genus Crumenaria \N \N \N \N \N 9665 \N genus Adenostoma \N \N \N \N \N 9666 R.moorei Randia Randia moorei \N \N \N \N \N 9667 M.oxysepala Myrceugenia Myrceugenia oxysepala \N \N \N \N \N 9668 L.watsoniana Lactuca Lactuca watsoniana \N \N \N \N \N 9669 V.setigerum Viburnum Viburnum setigerum \N \N \N \N \N 9670 C.cupulata Clusia Clusia cupulata \N \N \N \N \N 9671 X.palmeri Xylothamia Xylothamia palmeri \N \N \N \N \N 9672 O.durangense Oncidium Oncidium durangense \N \N \N \N \N 9673 K.clypeata Krapfia Krapfia clypeata \N \N \N \N \N 9674 P.koidzumiana Pieris Pieris koidzumiana \N \N \N \N \N 9675 \N genus Horichia \N \N \N \N \N 9676 D.dodsonii Drymonia Drymonia dodsonii \N \N \N \N \N 9677 S.sayeri Syzygium Syzygium sayeri \N \N \N \N \N 9678 V.betulifolia Vitis Vitis betulifolia \N \N \N \N \N 9679 E.parryi Exhalimolobos Exhalimolobos parryi \N \N \N \N \N 9680 C.traillianum Comastoma Comastoma traillianum \N \N \N \N \N 9681 E.glaucissimus Elymus Elymus glaucissimus \N \N \N \N \N 9682 \N family Nothofagaceae southern beech family \N \N \N \N 9683 \N genus Gliricidia \N \N \N \N \N 9684 L.fasciculiflora Lespedeza Lespedeza fasciculiflora \N \N \N \N \N 9685 C.8188 Columnea Columnea sp. Clark 8188 \N \N \N \N \N 9686 \N genus Alysicarpus \N \N \N \N \N 9687 Q.indica Quisqualis Quisqualis indica Rangoon-creeper,shi jun zi \N \N \N \N 9688 T.kauaiensis Trematolobelia Trematolobelia kauaiensis \N \N \N \N \N 9689 \N varietas Smelowskia borealis var. borealis \N \N \N \N \N 9690 A.perrieri Adansonia Adansonia perrieri \N \N \N \N \N 9691 D.inopinata Dioscorea Dioscorea inopinata \N \N \N \N \N 9692 E.fimbriobracteata Etlingera Etlingera fimbriobracteata \N \N \N \N \N 9693 \N no rank Lamioideae incertae sedis \N \N \N \N \N 9694 T.turgidifolia Trianthema Trianthema turgidifolia \N \N \N \N \N 9695 \N genus Steriphoma \N \N \N \N \N 9696 H.056 Hapaline Hapaline sp. HAR 056 \N \N \N \N \N 9697 A.nelsonii Arracacia Arracacia nelsonii \N \N \N \N \N 9698 B.densiflorum Brachystachyum Brachystachyum densiflorum \N \N \N \N \N 9699 L.diversifolia Leucaena Leucaena diversifolia guaje,wild tamarind \N \N \N \N 9700 B.calophyllum Blumeodendron Blumeodendron calophyllum \N \N \N \N \N 9701 M.patagonica Maihuenia Maihuenia patagonica \N \N \N \N \N 9702 C.scabrella Campanula Campanula scabrella \N \N \N \N \N 9703 G.fragrantissima Gaultheria Gaultheria fragrantissima \N \N \N \N \N 9704 S.sparsiflora Secamone Secamone sparsiflora \N \N \N \N \N 9705 D.marlothii Disa Disa marlothii \N \N \N \N \N 9706 L.angustifolius Lupinus Lupinus angustifolius narrow-leaved blue lupine \N \N \N \N 9707 C.peruviana Chaetanthera Chaetanthera peruviana \N \N \N \N \N 9708 P.clementis Pilea Pilea clementis \N \N \N \N \N 9709 L.ambiguus Leymus Leymus ambiguus \N \N \N \N \N 9710 C.elegans Chaetanthera Chaetanthera elegans \N \N \N \N \N 9711 M.longiflorus Mimulus Mimulus longiflorus \N \N \N \N \N 9712 L.eriocarpa Libanotis Libanotis eriocarpa \N \N \N \N \N 9713 G.uebelmannianum Gymnocalycium Gymnocalycium uebelmannianum \N \N \N \N \N 9714 \N genus Torralbasia \N \N \N \N \N 9715 S.dregeanus Senecio Senecio dregeanus \N \N \N \N \N 9716 P.inclinata Potentilla Potentilla inclinata \N \N \N \N \N 9717 C.pindicola Centaurea Centaurea pindicola \N \N \N \N \N 9718 \N genus Corema \N \N \N \N \N 9719 M.portoricensis Machaonia Machaonia portoricensis \N \N \N \N \N 9720 C.pulchellus Calochortus Calochortus pulchellus Mount Diablo fairy-lantern \N \N \N \N 9721 \N genus Stenostephanus \N \N \N \N \N 9722 A.pseudoaleppica Achillea Achillea pseudoaleppica \N \N \N \N \N 9723 A.rostrata Amphithalea Amphithalea rostrata \N \N \N \N \N 9724 C.roseum Cymbidium Cymbidium roseum \N \N \N \N \N 9725 L.ciliatum Lilium Lilium ciliatum \N \N \N \N \N 9726 P.gruina Pedicularis Pedicularis gruina \N \N \N \N \N 9727 \N genus Paracalia \N \N \N \N \N 9728 M.baillonii Michelia Michelia baillonii \N \N \N \N \N 9729 M.thymifolia Muraltia Muraltia thymifolia \N \N \N \N \N 9730 M.dioica Myripnois Myripnois dioica \N \N \N \N \N 9731 A.commutatus Amorphophallus Amorphophallus commutatus \N \N \N \N \N 9732 \N genus Leucogenes \N \N \N \N \N 9733 S.palmatisectus Sinosenecio Sinosenecio palmatisectus \N \N \N \N \N 9734 S.JT2005-15 Stahlianthus Stahlianthus sp. JT2005-15 \N \N \N \N \N 9735 K.134 Kallstroemia Kallstroemia sp. Villalobos 134 \N \N \N \N \N 9736 R.heterodonta Rhodiola Rhodiola heterodonta \N \N \N \N \N 9737 \N tribe Octotropideae \N \N \N \N \N 9738 L.chinense Loropetalum Loropetalum chinense \N \N \N \N \N 9739 E.multiflora Eleusine Eleusine multiflora \N \N \N \N \N 9740 T.gitingensis Talauma Talauma gitingensis \N \N \N \N \N 9741 I.diversifolia Indigofera Indigofera diversifolia \N \N \N \N \N 9742 S.masguindalii Sonchus Sonchus masguindalii \N \N \N \N \N 9743 \N subspecies Androsace adfinis subsp. brigantiaca \N \N \N \N \N 9744 S.confusus Styrax Styrax confusus \N \N \N \N \N 9745 C.floribundum Clerodendrum Clerodendrum floribundum lolly bush,thurkoo \N \N \N \N 9746 L.heleocharoides Lepyrodia Lepyrodia heleocharoides \N \N \N \N \N 9747 G.sibiricum Geranium Geranium sibiricum \N \N \N \N \N 9748 A.stylidioides Apostasia Apostasia stylidioides \N \N \N \N \N 9749 O.zimmermannii Odyendyea Odyendyea zimmermannii \N \N \N \N \N 9750 G.moritziana Graffenrieda Graffenrieda moritziana \N \N \N \N \N 9751 \N genus Chenolea \N \N \N \N \N 9752 C.nivicola Carpha Carpha nivicola \N \N \N \N \N 9753 \N genus Goniocaulon \N \N \N \N \N 9754 E.poiformis Elleanthus Elleanthus poiformis \N \N \N \N \N 9755 \N genus Macarisia \N \N \N \N \N 9756 A.randii Asclepias Asclepias randii \N \N \N \N \N 9757 P.minor Poupartia Poupartia minor \N \N \N \N \N 9758 P.francii Piliocalyx Piliocalyx francii \N \N \N \N \N 9759 T.sericea Turraea Turraea sericea \N \N \N \N \N 9760 M.mennyae Magodendron Magodendron mennyae \N \N \N \N \N 9761 P.densiflora Pinanga Pinanga densiflora \N \N \N \N \N 9762 H.platytaenium Heracleum Heracleum platytaenium \N \N \N \N \N 9763 \N family Velloziaceae \N \N \N \N \N 9764 S.dasygnaphala Sideritis Sideritis dasygnaphala \N \N \N \N \N 9765 M.transsilvanica Melica Melica transsilvanica \N \N \N \N \N 9766 B.verna Bartonia Bartonia verna \N \N \N \N \N 9767 E.russanthus Echinocereus Echinocereus russanthus \N \N \N \N \N 9768 G.bornmuelleri Geocaryum Geocaryum bornmuelleri \N \N \N \N \N 9769 P.gracillima Pseudoclausia Pseudoclausia gracillima \N \N \N \N \N 9770 \N genus Bidens \N \N \N \N \N 9771 \N genus Tumamoca \N \N \N \N \N 9772 \N varietas Lilium japonicum var. abeanum \N \N \N \N \N 9773 \N subspecies Cytisus arboreus subsp. catalaunicus \N \N \N \N \N 9774 A.fontanesii Aristolochia Aristolochia fontanesii \N \N \N \N \N 9775 P.abalienatum Piper Piper abalienatum \N \N \N \N \N 9776 \N subspecies Pereskia grandifolia subsp. grandifolia \N \N \N \N \N 9777 H.papuodendron Hibiscus Hibiscus papuodendron \N \N \N \N \N 9778 P.aequatorialis Phytelephas Phytelephas aequatorialis \N \N \N \N \N 9779 \N genus Liparia \N \N \N \N \N 9780 C.cadmea Centaurea Centaurea cadmea \N \N \N \N \N 9781 F.tingitana Ferula Ferula tingitana \N \N \N \N \N 9782 P.guerkeana Psychotria Psychotria guerkeana \N \N \N \N \N 9783 E.mellifera Euphorbia Euphorbia mellifera \N \N \N \N \N 9784 \N family Hypericaceae \N \N \N \N \N 9785 E.moorcroftii Elaeagnus Elaeagnus moorcroftii \N \N \N \N \N 9786 H.nigra Hopea Hopea nigra \N \N \N \N \N 9787 T.surinamensis Trichilia Trichilia surinamensis \N \N \N \N \N 9788 F.magdalenae Fuchsia Fuchsia magdalenae \N \N \N \N \N 9789 J.ambracea Jacobaea Jacobaea ambracea \N \N \N \N \N 9790 H.95076 Heuchera Heuchera sp. Qiu 95076 \N \N \N \N \N 9791 S.impedita Selago Selago impedita \N \N \N \N \N 9792 C.valerioi Clusia Clusia valerioi \N \N \N \N \N 9793 M.bracteosa Memora Memora bracteosa \N \N \N \N \N 9794 L.montana Licuala Licuala montana \N \N \N \N \N 9795 V.paucijuga Vicia Vicia paucijuga \N \N \N \N \N 9796 \N genus Phlox phloxes \N \N \N \N 9798 C.688 Cabomba Cabomba sp. Palmer 688 \N \N \N \N \N 9799 C.uncinata Cliffortia Cliffortia uncinata \N \N \N \N \N 9800 N.scabra Niphogeton Niphogeton scabra \N \N \N \N \N 9801 A.obtusum Allium Allium obtusum \N \N \N \N \N 9802 \N varietas Aristida purpurea var. nealleyi \N \N \N \N \N 9803 H.discolor Hopea Hopea discolor \N \N \N \N \N 9804 M.clevelandii Malacothrix Malacothrix clevelandii \N \N \N \N \N 9805 P.heydeanum Phoradendron Phoradendron heydeanum \N \N \N \N \N 9806 A.lehmannii Alexandra Alexandra lehmannii \N \N \N \N \N 9807 R.cacuminis Ranunculus Ranunculus cacuminis \N \N \N \N \N 9808 \N genus Tarasa \N \N \N \N \N 9809 P.venusta Parnassia Parnassia venusta \N \N \N \N \N 9810 T.siamense Tetrastigma Tetrastigma siamense \N \N \N \N \N 9811 L.heterobotrys Lysimachia Lysimachia heterobotrys \N \N \N \N \N 9812 P.hemiepiphytica Pinguicula Pinguicula hemiepiphytica \N \N \N \N \N 9813 \N genus Stenosiphon \N \N \N \N \N 9814 \N genus Dalhousiea \N \N \N \N \N 9815 \N genus Petersianthus \N \N \N \N \N 9816 E.alfaroi Epidendrum Epidendrum alfaroi \N \N \N \N \N 9817 T.delavayi Thalictrum Thalictrum delavayi \N \N \N \N \N 9818 D.descolei Diplolepis Diplolepis descolei \N \N \N \N \N 9819 G.mexicana Gunnera Gunnera mexicana \N \N \N \N \N 9820 C.pentadactylon Chiranthodendron Chiranthodendron pentadactylon \N \N \N \N \N 9821 I.fanchoniana Inga Inga fanchoniana \N \N \N \N \N 9822 M.katsumatae Menziesia Menziesia katsumatae \N \N \N \N \N 9823 R.monsalveae Roucheria Roucheria monsalveae \N \N \N \N \N 9824 H.parviflorum Haemodorum Haemodorum parviflorum \N \N \N \N \N 9825 E.25606 Eschweilera Eschweilera sp. Mori et al. 25606 \N \N \N \N \N 9826 C.indica Citrus Citrus indica Indian wild orange \N \N \N \N 9827 M.namaquamontana Moraea Moraea namaquamontana \N \N \N \N \N 9828 C.archibaldii Cousinia Cousinia archibaldii \N \N \N \N \N 9829 S.montigena Streptocarpus Streptocarpus montigena \N \N \N \N \N 9830 T.cardonae Tepuia Tepuia cardonae \N \N \N \N \N 9831 A.filicina Actinocheita Actinocheita filicina \N \N \N \N \N 9832 L.macranthoides Lonicera Lonicera macranthoides \N \N \N \N \N 9833 P.sericea Phacelia Phacelia sericea \N \N \N \N \N 9834 G.kola Garcinia Garcinia kola \N \N \N \N \N 9835 S.cunninghamii Senecio Senecio cunninghamii \N \N \N \N \N 9836 A.fragrans Astragalus Astragalus fragrans \N \N \N \N \N 9837 M.lutea Musa Musa lutea \N \N \N \N \N 9838 H.biddulphiana Hemigenia Hemigenia biddulphiana \N \N \N \N \N 9839 A.suishaensis Alpinia Alpinia suishaensis \N \N \N \N \N 9840 O.oxyrrhynchos Ophrys Ophrys oxyrrhynchos \N \N \N \N \N 9841 \N genus Aronia \N \N \N \N \N 9842 A.inermis Acaena Acaena inermis \N \N \N \N \N 9843 H.kanukuensis Herrania Herrania kanukuensis \N \N \N \N \N 9844 F.turkestanica Fraxinus Fraxinus turkestanica \N \N \N \N \N 9845 E.villosa Eulalia Eulalia villosa \N \N \N \N \N 9846 D.madagascariensis Dodonaea Dodonaea madagascariensis \N \N \N \N \N 9847 \N genus Candolleodendron \N \N \N \N \N 9848 L.operculata Luffa Luffa operculata \N \N \N \N \N 9849 \N forma Haworthia glauca f. armstrongii \N \N \N \N \N 9850 D.scaposum Delphinium Delphinium scaposum \N \N \N \N \N 9851 S.laurocerasus Sapium Sapium laurocerasus \N \N \N \N \N 9852 A.glomerata Actinodaphne Actinodaphne glomerata \N \N \N \N \N 9853 C.longifolia Calamovilfa Calamovilfa longifolia \N \N \N \N \N 9854 M.harleyi Mandevilla Mandevilla harleyi \N \N \N \N \N 9855 V.587 Vatairea Vatairea sp. Pennington 587 \N \N \N \N \N 9856 \N genus Lepionurus \N \N \N \N \N 9857 \N genus Ctenium \N \N \N \N \N 9858 P.pyramidalis Pterostylis Pterostylis pyramidalis \N \N \N \N \N 9859 \N genus Trichanthemis \N \N \N \N \N 9860 S.villosa Selago Selago villosa \N \N \N \N \N 9861 M.hexagona Montanoa Montanoa hexagona \N \N \N \N \N 9862 R.laciniata Rorippa Rorippa laciniata \N \N \N \N \N 9863 H.serpens Hedyotis Hedyotis serpens \N \N \N \N \N 9864 S.blumei Spiraea Spiraea blumei \N \N \N \N \N 9865 \N genus Noronhia \N \N \N \N \N 9866 T.paniculata Tachigali Tachigali paniculata \N \N \N \N \N 9867 P.jackii Populus Populus x jackii balm-of-Gilead \N \N \N \N 9868 D.viridissima Denhamia Denhamia viridissima \N \N \N \N \N 9869 E.pentadactyla Euphorbia Euphorbia pentadactyla \N \N \N \N \N 9870 E.elaterium Ecballium Ecballium elaterium jumping cucumber \N \N \N \N 9871 C.specularioides Campanula Campanula specularioides \N \N \N \N \N 9872 G.13291B Gaudichaudia Gaudichaudia sp. Anderson 13291B \N \N \N \N \N 9873 D.chilensis Danthonia Danthonia chilensis \N \N \N \N \N 9874 \N varietas Actinidia cylindrica var. reticulata \N \N \N \N \N 9875 S.insignis Streptanthus Streptanthus insignis San Benito jewelflower \N \N \N \N 9876 \N order Nymphaeales \N \N \N \N \N 9877 G.teretifolia Genista Genista teretifolia \N \N \N \N \N 9878 P.tripartita Pinellia Pinellia tripartita \N \N \N \N \N 9879 C.hexapetala Clematis Clematis hexapetala \N \N \N \N \N 9880 A.nudicaulis Aralia Aralia nudicaulis \N \N \N \N \N 9881 O.polyantha Ourisia Ourisia polyantha \N \N \N \N \N 9882 C.flagellifera Carex Carex flagellifera \N \N \N \N \N 9883 R.cereum Ribes Ribes cereum wax currant \N \N \N \N 9884 A.obtusifolia Androsace Androsace obtusifolia \N \N \N \N \N 9885 C.nutans Cremnophila Cremnophila nutans \N \N \N \N \N 9886 D.alsinoides Didymaea Didymaea alsinoides \N \N \N \N \N 9887 M.alopecuroides Myricaria Myricaria alopecuroides \N \N \N \N \N 9888 \N varietas Paris polyphylla var. polyphylla \N \N \N \N \N 9889 S.gandarillasii Solanum Solanum gandarillasii \N \N \N \N \N 9890 H.auriculus Halothamnus Halothamnus auriculus \N \N \N \N \N 9891 B.pauciflora Bourreria Bourreria pauciflora \N \N \N \N \N 9892 D.retusa Dioscorea Dioscorea retusa \N \N \N \N \N 9893 D.graciliscapum Dendrochilum Dendrochilum graciliscapum \N \N \N \N \N 9894 A.nabataea Anthemis Anthemis nabataea \N \N \N \N \N 9895 G.aureum Glischrocaryon Glischrocaryon aureum \N \N \N \N \N 9896 P.Popov Prescottia Prescottia sp. 1 ex cult. Popov \N \N \N \N \N 9897 E.billardiereanum Epilobium Epilobium billardiereanum \N \N \N \N \N 9898 G.acuta Gentianella Gentianella acuta \N \N \N \N \N 9899 C.flexuosus Calochortus Calochortus flexuosus \N \N \N \N \N 9900 C.balansae Cyphosperma Cyphosperma balansae \N \N \N \N \N 9901 I.killipiana Inga Inga killipiana \N \N \N \N \N 9902 C.gymnandra Cerinthe Cerinthe gymnandra \N \N \N \N \N 9903 B.populneus Brachychiton Brachychiton populneus kurrajong \N \N \N \N 9904 P.algida Pinguicula Pinguicula algida \N \N \N \N \N 9905 K.excentrica Kefersteinia Kefersteinia excentrica \N \N \N \N \N 9906 M.seibertii Morinda Morinda seibertii \N \N \N \N \N 9907 S.polyphylla Serjania Serjania polyphylla \N \N \N \N \N 9908 \N varietas Mimosa dolens var. dolens \N \N \N \N \N 9909 P.parvifolia Potentilla Potentilla parvifolia \N \N \N \N \N 9910 S.pinheiroi Senna Senna pinheiroi \N \N \N \N \N 9911 P.latifolium Piptatherum Piptatherum latifolium \N \N \N \N \N 9912 I.vera Inga Inga vera \N \N \N \N \N 9913 \N genus Acianthera \N \N \N \N \N 9914 \N tribe Aulacocalyceae \N \N \N \N \N 9915 D.fawcettii Dorstenia Dorstenia fawcettii \N \N \N \N \N 9916 \N genus Cyathodes \N \N \N \N \N 9917 \N genus Drimia \N \N \N \N \N 9918 O.lindleyi Oncidium Oncidium lindleyi \N \N \N \N \N 9919 \N genus Phalaenopsis x Doritaenopsis \N \N \N \N \N 9920 \N tribe Paederieae \N \N \N \N \N 9921 \N varietas Astragalus atropilosulus var. venosus \N \N \N \N \N 9922 C.panamensis Coussapoa Coussapoa panamensis \N \N \N \N \N 9923 \N genus Podagrostis \N \N \N \N \N 9924 E.pygmaea Evax Evax pygmaea \N \N \N \N \N 9925 I.volkensii Impatiens Impatiens volkensii \N \N \N \N \N 9926 G.sessilicarpa Guatteria Guatteria sessilicarpa \N \N \N \N \N 9927 P.madagascariensis Polyscias Polyscias madagascariensis \N \N \N \N \N 9928 \N genus Cyphochlaena \N \N \N \N \N 9929 C.pedunculata Callicarpa Callicarpa pedunculata \N \N \N \N \N 9930 P.545 Phyllopodium Phyllopodium sp. Forest 545 \N \N \N \N \N 9931 \N varietas Sorbus aria var. salicifolia \N \N \N \N \N 9932 \N genus Delairea \N \N \N \N \N 9933 M.paniculata Mertensia Mertensia paniculata \N \N \N \N \N 9934 V.rufescens Vochysia Vochysia rufescens \N \N \N \N \N 9935 P.major Plantago Plantago major cart-track plant,common plantain,white-man's-foot \N \N \N \N 9936 P.fluitans Phyllanthus Phyllanthus fluitans \N \N \N \N \N 9937 F.betulifolia Frangula Frangula betulifolia birchleaf buckthorn \N \N \N \N 9938 B.involucrosa Bomarea Bomarea involucrosa \N \N \N \N \N 9939 N.capnoides Neoconopodium Neoconopodium capnoides \N \N \N \N \N 9940 I.calcicola Isodon Isodon calcicola \N \N \N \N \N 9941 C.grandifolia Cornutia Cornutia grandifolia \N \N \N \N \N 9942 C.genistoides Chorizema Chorizema genistoides \N \N \N \N \N 9943 L.marrubiastrum Lagopsis Lagopsis marrubiastrum \N \N \N \N \N 9944 D.rhaptodes Dionysia Dionysia rhaptodes \N \N \N \N \N 9945 D.chinensis Dipsacus Dipsacus chinensis \N \N \N \N \N 9946 C.cernuum Chascanum Chascanum cernuum \N \N \N \N \N 9947 T.antarctica Tupeia Tupeia antarctica \N \N \N \N \N 9948 C.endlicheri Cestrum Cestrum endlicheri \N \N \N \N \N 9949 C.boissieri Colchicum Colchicum boissieri \N \N \N \N \N 9950 T.tenella Tetradiclis Tetradiclis tenella \N \N \N \N \N 9951 P.humilis Psychotria Psychotria humilis \N \N \N \N \N 9952 F.striata Ficinia Ficinia striata \N \N \N \N \N 9953 \N tribe Manihoteae \N \N \N \N \N 9954 \N varietas Ochrosia mariannensis var. crassicarpa \N \N \N \N \N 9955 H.limifolia Haworthia Haworthia limifolia \N \N \N \N \N 9956 \N varietas Vicia johannis var. procumbens \N \N \N \N \N 9957 C.lycastoides Coelogyne Coelogyne lycastoides \N \N \N \N \N 9958 S.patoiensis Shorea Shorea patoiensis \N \N \N \N \N 9959 G.kamtschaticum Galium Galium kamtschaticum \N \N \N \N \N 9960 \N genus Pilocarpus \N \N \N \N \N 9961 R.seguieri Ranunculus Ranunculus seguieri \N \N \N \N \N 9962 T.volubile Tripterospermum Tripterospermum volubile \N \N \N \N \N 9963 S.fruticosa Sarcocornia Sarcocornia fruticosa \N \N \N \N \N 9964 Z.robusta Zieria Zieria robusta \N \N \N \N \N 9965 D.citrea Distichochlamys Distichochlamys citrea \N \N \N \N \N 9966 S.gracile Sedum Sedum gracile \N \N \N \N \N 9967 A.germinyana Aechmea Aechmea germinyana \N \N \N \N \N 9968 \N family Plumbaginaceae leadwort family \N \N \N \N 9969 S.dryas Sinosenecio Sinosenecio dryas \N \N \N \N \N 9970 \N genus Schoenefeldia \N \N \N \N \N 9971 \N subspecies Quercus infectoria subsp. infectoria \N \N \N \N \N 9972 A.sublestus Acianthus Acianthus sublestus \N \N \N \N \N 9973 A.pygmaea Artemisia Artemisia pygmaea \N \N \N \N \N 9974 \N genus Sidasodes \N \N \N \N \N 9975 M.robecchii Melocarpum Melocarpum robecchii \N \N \N \N \N 9976 C.austro-osumiensis Cladopus Cladopus austro-osumiensis \N \N \N \N \N 9977 G.sakellariadis Genista Genista sakellariadis \N \N \N \N \N 9978 P.lorifolia Protea Protea lorifolia \N \N \N \N \N 9979 A.desertorum Agropyron Agropyron desertorum \N \N \N \N \N 9980 \N varietas Sarcococca hookeriana var. humilis \N \N \N \N \N 9981 P.guachapele Pseudosamanea Pseudosamanea guachapele \N \N \N \N \N 9982 A.viscosa Anthocercis Anthocercis viscosa \N \N \N \N \N 9983 C.guerckeana Cordia Cordia guerckeana \N \N \N \N \N 9984 C.munroanum Cymbidium Cymbidium munroanum \N \N \N \N \N 9985 Z.formosa Zieria Zieria formosa \N \N \N \N \N 9986 \N varietas Desmodium heterocarpon var. strigosum \N \N \N \N \N 9987 M.scandens Melocalamus Melocalamus scandens \N \N \N \N \N 9988 C.wenyujin Curcuma Curcuma wenyujin \N \N \N \N \N 9989 I.venustula Isolepis Isolepis venustula \N \N \N \N \N 9990 R.euphemiae Rhadinothamnus Rhadinothamnus euphemiae \N \N \N \N \N 9991 \N genus Cytisus \N \N \N \N \N 9992 \N genus Tuberaria \N \N \N \N \N 10576 C.lutea Cobaea Cobaea lutea \N \N \N \N \N 9993 T.tianschanica Trigonella Trigonella tianschanica \N \N \N \N \N 9994 M.whitakeri Metrosideros Metrosideros whitakeri \N \N \N \N \N 9995 H.stylosum Hippeastrum Hippeastrum stylosum \N \N \N \N \N 9996 G.heleonastes Gentiana Gentiana heleonastes \N \N \N \N \N 9997 \N subspecies Brassica fruticulosa subsp. mauritanica \N \N \N \N \N 9998 L.saxatilis Leontodon Leontodon saxatilis \N \N \N \N \N 9999 \N subspecies Lecythis corrugata subsp. corrugata \N \N \N \N \N 10000 \N subfamily Polygonoideae \N \N \N \N \N 10002 A.pishchakensis Astragalus Astragalus pishchakensis \N \N \N \N \N 10003 \N subspecies Fontanesia phillyreoides subsp. fortunei \N \N \N \N \N 10004 D.thouarsii Dilobeia Dilobeia thouarsii \N \N \N \N \N 10005 A.rosea Antennaria Antennaria rosea \N \N \N \N \N 10006 C.echinochila Christensonella Christensonella echinochila \N \N \N \N \N 10007 E.gallicum Erucastrum Erucastrum gallicum dog mustard \N \N \N \N 10008 \N genus Nernstia \N \N \N \N \N 10009 S.alfredii Sedum Sedum alfredii \N \N \N \N \N 10010 \N genus Noltea \N \N \N \N \N 10011 F.tonduzii Ficus Ficus tonduzii \N \N \N \N \N 10012 S.divaricata Salsola Salsola divaricata \N \N \N \N \N 10013 \N genus Dryadodaphne \N \N \N \N \N 10014 W.marginata Wurmbea Wurmbea marginata \N \N \N \N \N 10015 L.cynaroides Lamyropsis Lamyropsis cynaroides \N \N \N \N \N 10016 T.cuneatum Tylopsacas Tylopsacas cuneatum \N \N \N \N \N 10017 C.arborea Careya Careya arborea \N \N \N \N \N 10018 J.brachycephalus Juncus Juncus brachycephalus \N \N \N \N \N 10019 A.subhastata Ancistrotropis Ancistrotropis subhastata \N \N \N \N \N 10020 \N subspecies Reseda aucheri subsp. rotundifolia \N \N \N \N \N 10021 \N family Salicaceae willow family \N \N \N \N 10022 P.pyrifolia Pyrus Pyrus pyrifolia sha li \N \N \N \N 10023 L.peacockiae Lampranthus Lampranthus peacockiae \N \N \N \N \N 10024 E.nitidus Euonymus Euonymus nitidus \N \N \N \N \N 10025 A.pachyrrhachis Ancistrocladus Ancistrocladus pachyrrhachis \N \N \N \N \N 10026 H.coccinea Harveya Harveya coccinea \N \N \N \N \N 10027 \N genus Copaifera \N \N \N \N \N 10028 P.brevistyla Pimelea Pimelea brevistyla \N \N \N \N \N 10029 L.delicatulum Limonium Limonium delicatulum \N \N \N \N \N 10030 \N genus Calodendrum \N \N \N \N \N 10031 S.perrinii Sophronitis Sophronitis perrinii \N \N \N \N \N 10032 S.purpurea Straussiella Straussiella purpurea \N \N \N \N \N 10033 P.bogotensis Plagiocheilus Plagiocheilus bogotensis \N \N \N \N \N 10034 D.hjertingii Dahlia Dahlia hjertingii \N \N \N \N \N 10035 T.esculentum Tylosema Tylosema esculentum camel's foot,gemsbuck bean \N \N \N \N 10036 S.sarmentosum Sisyrinchium Sisyrinchium sarmentosum \N \N \N \N \N 10037 N.ephedroides Neosparton Neosparton ephedroides \N \N \N \N \N 10038 D.19211 Depanthus Depanthus sp. Savolainen 19211 \N \N \N \N \N 10039 S.trichocarpum Stenocoelium Stenocoelium trichocarpum \N \N \N \N \N 10040 \N genus Sphenostemon \N \N \N \N \N 10041 \N subspecies Lamium garganicum subsp. corsicum \N \N \N \N \N 10042 D.peekelii Diospyros Diospyros peekelii \N \N \N \N \N 10043 E.lancifolium Exostema Exostema lancifolium \N \N \N \N \N 10044 G.lingulata Guzmania Guzmania wittmackii x Guzmania lingulata \N \N \N \N \N 10045 P.arnottianum Polypsecadium Polypsecadium arnottianum \N \N \N \N \N 10046 C.talamancensis Chusquea Chusquea talamancensis \N \N \N \N \N 10047 M.peninsularis Mammillaria Mammillaria peninsularis \N \N \N \N \N 10048 \N forma Eleutherococcus sessiliflorus f. chungbuensis \N \N \N \N \N 10049 P.macrantha Pouteria Pouteria macrantha \N \N \N \N \N 10050 C.moabiticus Crocus Crocus moabiticus \N \N \N \N \N 10051 S.saturejoides Saccocalyx Saccocalyx saturejoides \N \N \N \N \N 10052 E.rupestre Epistemma Epistemma rupestre \N \N \N \N \N 10053 M.autumnalis Moraea Moraea autumnalis \N \N \N \N \N 10054 S.tetrasperma Salix Salix tetrasperma Indian willow \N \N \N \N 10055 \N subspecies Rhipsalis baccifera subsp. baccifera \N \N \N \N \N 10056 P.insularis Phacelia Phacelia insularis \N \N \N \N \N 10057 L.itatiaiae Leandra Leandra itatiaiae \N \N \N \N \N 10058 C.monbeigii Cornus Cornus monbeigii \N \N \N \N \N 10059 \N subtribe Dipterocypselinae \N \N \N \N \N 10060 M.nasuta Maxillaria Maxillaria nasuta \N \N \N \N \N 10061 A.laeve Anaxeton Anaxeton laeve \N \N \N \N \N 10062 L.japonica Lonicera Lonicera japonica Japanese honeysuckle \N \N \N \N 10063 V.bridgesii Valeriana Valeriana bridgesii \N \N \N \N \N 10064 S.8252 Symplocos Symplocos sp. Clark et al. 8252 \N \N \N \N \N 10065 C.mira Carex Carex mira \N \N \N \N \N 10066 C.grandiflora Crossostylis Crossostylis grandiflora \N \N \N \N \N 10067 G.elliptica Guettarda Guettarda elliptica \N \N \N \N \N 10068 P.morii Protium Protium morii \N \N \N \N \N 10069 M.guianensis Minquartia Minquartia guianensis \N \N \N \N \N 10070 E.flavicoma Euphorbia Euphorbia flavicoma \N \N \N \N \N 10071 P.sanguinea Pitcairnia Pitcairnia sanguinea \N \N \N \N \N 10072 C.uniflora Craspedia Craspedia uniflora \N \N \N \N \N 10073 S.patens Symphyotrichum Symphyotrichum patens late purple aster,spreading aster \N \N \N \N 10074 U.lucida Urceola Urceola lucida \N \N \N \N \N 10075 \N genus Chersodoma \N \N \N \N \N 10076 L.pendulosa Leptecophylla Leptecophylla pendulosa \N \N \N \N \N 10077 A.petelotii Artocarpus Artocarpus petelotii \N \N \N \N \N 10078 L.lobatum Limonium Limonium lobatum \N \N \N \N \N 10079 O.bourgaeanum Ornithogalum Ornithogalum bourgaeanum \N \N \N \N \N 10080 K.alatavica Kengyilia Kengyilia alatavica \N \N \N \N \N 10081 I.ciliata Isoglossa Isoglossa ciliata \N \N \N \N \N 10082 C.hytivus Cucumis Cucumis x hytivus \N \N \N \N \N 10083 E.sessilanthera Etlingera Etlingera sessilanthera \N \N \N \N \N 10084 C.andina Caiophora Caiophora andina \N \N \N \N \N 10085 \N genus Marianthus \N \N \N \N \N 10086 S.minutiflora Schefflera Schefflera minutiflora \N \N \N \N \N 10087 T.pachyphyllum Tetrastigma Tetrastigma pachyphyllum \N \N \N \N \N 10088 C.ferdinandiana Christensonella Christensonella ferdinandiana \N \N \N \N \N 10967 \N genus Schradera \N \N \N \N \N 10089 L.arunachalensis Larsenianthus Larsenianthus arunachalensis \N \N \N \N \N 10090 S.minutiflora Scaphyglottis Scaphyglottis minutiflora \N \N \N \N \N 10091 \N tribe Malaxideae \N \N \N \N \N 10092 L.californicus Linanthus Linanthus californicus \N \N \N \N \N 10093 O.SH-2010 Ochrosia Ochrosia sp. SH-2010 \N \N \N \N \N 10094 G.tilcarense Gymnocalycium Gymnocalycium tilcarense \N \N \N \N \N 10095 C.delagoense Crinum Crinum delagoense \N \N \N \N \N 10096 T.hugo-schlechteri Titanopsis Titanopsis hugo-schlechteri \N \N \N \N \N 10097 P.praelongus Potamogeton Potamogeton perfoliatus x Potamogeton praelongus \N \N \N \N \N 10098 B.whartoniana Barkeria Barkeria whartoniana \N \N \N \N \N 10099 I.burchellii Indigofera Indigofera burchellii \N \N \N \N \N 10100 A.aciphylla Aspalathus Aspalathus aciphylla \N \N \N \N \N 10101 \N genus Talauma \N \N \N \N \N 10102 S.hupehensis Sorbus Sorbus hupehensis \N \N \N \N \N 10103 V.dichroma Verticordia Verticordia dichroma \N \N \N \N \N 10104 E.herniariifolia Euphorbia Euphorbia herniariifolia \N \N \N \N \N 10105 P.ostenfeldii Posidonia Posidonia ostenfeldii \N \N \N \N \N 10106 D.papuanum Dysoxylum Dysoxylum papuanum \N \N \N \N \N 10107 C.mongensis Coffea Coffea mongensis \N \N \N \N \N 10108 S.trifida Stevia Stevia trifida \N \N \N \N \N 10109 P.coronopifolia Picris Picris coronopifolia \N \N \N \N \N 10110 K.leptospermoides Kunzea Kunzea leptospermoides \N \N \N \N \N 10111 \N subspecies Chionochloa flavescens subsp. lupeola \N \N \N \N \N 10112 S.candidus Schizanthus Schizanthus candidus \N \N \N \N \N 10113 B.guttapila Begonia Begonia guttapila \N \N \N \N \N 10114 V.odora Hebe Veronica odora \N \N \N \N \N 10115 C.9187 Carpinus Carpinus sp. Wen 9187 \N \N \N \N \N 10116 N.AN411 Nectandra Nectandra sp. 1 AN411 \N \N \N \N \N 10117 H.coriacea Holboellia Holboellia coriacea \N \N \N \N \N 10118 \N subspecies Grevillea montis-cole subsp. montis-cole \N \N \N \N \N 10119 W.gracilis Wendlandiella Wendlandiella gracilis \N \N \N \N \N 10120 M.brassavolae Macradenia Macradenia brassavolae \N \N \N \N \N 10121 L.galpiniae Lampranthus Lampranthus galpiniae \N \N \N \N \N 10122 \N genus Cyphotheca \N \N \N \N \N 10123 L.incarnata Lycoris Lycoris incarnata \N \N \N \N \N 10124 \N genus Choristylis \N \N \N \N \N 10125 X.mekongensis Xylocarpus Xylocarpus mekongensis \N \N \N \N \N 10126 C.498 Carex Carex cf. gravida Hipp 498 \N \N \N \N \N 10127 A.galeottiana Andira Andira galeottiana \N \N \N \N \N 10128 C.creticus Cistus Cistus creticus \N \N \N \N \N 10129 P.racemosa Ponthieva Ponthieva racemosa \N \N \N \N \N 10130 D.arachnoideum Diplocaulobium Diplocaulobium arachnoideum \N \N \N \N \N 10131 S.burahol Stelechocarpus Stelechocarpus burahol \N \N \N \N \N 10132 C.planisiliqua Conringia Conringia planisiliqua \N \N \N \N \N 10133 C.ericae Columnea Columnea ericae \N \N \N \N \N 10134 S.toxifera Strychnos Strychnos toxifera \N \N \N \N \N 10135 S.pilosa Stylosanthes Stylosanthes pilosa \N \N \N \N \N 10136 S.tobagense Solanum Solanum tobagense \N \N \N \N \N 10137 C.andrewsiana Clintonia Clintonia andrewsiana \N \N \N \N \N 10138 B.alterna Bocoa Bocoa alterna \N \N \N \N \N 10139 T.bioritsense Tetrastigma Tetrastigma bioritsense \N \N \N \N \N 10140 N.aticoana Nolana Nolana aticoana \N \N \N \N \N 10141 P.torulosum Pelargonium Pelargonium torulosum \N \N \N \N \N 10142 \N varietas Dioscorea cirrhosa var. cylindrica \N \N \N \N \N 10143 B.gracile Baloskion Baloskion gracile \N \N \N \N \N 10144 C.rautanenianum Crinum Crinum rautanenianum \N \N \N \N \N 10145 S.alata Schrebera Schrebera alata \N \N \N \N \N 10146 W.brevidentata Wisteria Wisteria brevidentata \N \N \N \N \N 10147 S.celastrifolia Symplocos Symplocos celastrifolia \N \N \N \N \N 10148 O.calypsus Ophrys Ophrys calypsus \N \N \N \N \N 10149 \N genus Carpolobia \N \N \N \N \N 10150 F.1398 Fosterella Fosterella sp. FAN TK 1398 \N \N \N \N \N 10151 S.nemorosa Salvia Salvia nemorosa \N \N \N \N \N 10152 B.mihieri Briggsia Briggsia mihieri \N \N \N \N \N 10153 P.obtusilimbum Piper Piper obtusilimbum \N \N \N \N \N 10154 E.woodwardii Eucalyptus Eucalyptus woodwardii \N \N \N \N \N 10155 R.parviflora Reyesia Reyesia parviflora \N \N \N \N \N 10156 M.eriocarpa Mausolea Mausolea eriocarpa \N \N \N \N \N 10157 \N genus Thaminophyllum \N \N \N \N \N 10158 \N genus Paraholcoglossum \N \N \N \N \N 10159 T.vagans Tetramolopium Tetramolopium vagans \N \N \N \N \N 10160 C.ornatum Cyrtochilum Cyrtochilum ornatum \N \N \N \N \N 10161 P.flexilis Pultenaea Pultenaea flexilis \N \N \N \N \N 10162 \N varietas Neolitsea sutchuanensis var. gongshanensis \N \N \N \N \N 10163 C.3418 Cremastosperma Cremastosperma sp. Foster 3418 \N \N \N \N \N 10164 P.subulata Phlox Phlox subulata \N \N \N \N \N 10165 L.bangii Lupinus Lupinus bangii \N \N \N \N \N 10166 P.acuminata Pinguicula Pinguicula acuminata \N \N \N \N \N 10167 I.heterotricha Indigofera Indigofera heterotricha \N \N \N \N \N 10168 C.oblonga Cydonia Cydonia oblonga quince,wen po \N \N \N \N 10169 A.stillmanii Achnatherum Achnatherum stillmanii \N \N \N \N \N 10170 \N genus Tolumnia \N \N \N \N \N 10171 P.linosae Pancratium Pancratium linosae \N \N \N \N \N 10172 \N genus Moronobea \N \N \N \N \N 10173 \N genus Tanaecium \N \N \N \N \N 10174 B.bodinieri Berberis Berberis bodinieri \N \N \N \N \N 10175 C.elegans Codonanthe Codonanthe elegans \N \N \N \N \N 10176 H.mandrarensis Hibiscus Hibiscus mandrarensis \N \N \N \N \N 10177 \N genus Garuleum \N \N \N \N \N 10178 C.woodsonii Costus Costus woodsonii \N \N \N \N \N 10179 B.bussei Brachystegia Brachystegia bussei \N \N \N \N \N 10180 \N tribe Dontostemoneae \N \N \N \N \N 10181 R.penicillatum Rytidosperma Rytidosperma penicillatum \N \N \N \N \N 10182 B.edulis Begonia Begonia edulis \N \N \N \N \N 10183 \N varietas Vicia sativa var. angustifolia \N \N \N \N \N 10184 T.8465 Tetrastigma Tetrastigma sp. Wen 8465 \N \N \N \N \N 10185 M.erioclada Maireana Maireana erioclada \N \N \N \N \N 11548 \N genus Rigidella \N \N \N \N \N 10186 H.decipiens Halophila Halophila decipiens \N \N \N \N \N 10187 N.spodiotricha Newcastelia Newcastelia spodiotricha \N \N \N \N \N 10188 P.adiantoides Piptadenia Piptadenia adiantoides \N \N \N \N \N 10189 S.densum Stenanthium Stenanthium densum \N \N \N \N \N 10190 M.largifolius Mischocarpus Mischocarpus largifolius \N \N \N \N \N 10191 E.cerinthoides Erica Erica cerinthoides \N \N \N \N \N 10192 S.minutiflora Sebaea Sebaea minutiflora \N \N \N \N \N 10193 T.6270Hnew unclassified Taraxacum Taraxacum (sect. Dioszegia) sp. 6270Hnew \N \N \N \N \N 10194 D.butcheriana Dietes Dietes butcheriana \N \N \N \N \N 10195 \N genus Biondia \N \N \N \N \N 10196 R.longifalcatum Rhododendron Rhododendron longifalcatum \N \N \N \N \N 10197 P.verecunda Prunus Prunus verecunda \N \N \N \N \N 10198 C.cornutus Centropogon Centropogon cornutus \N \N \N \N \N 10199 M.aplostachya Miconia Miconia aplostachya \N \N \N \N \N 10200 S.angustifolius Senecio Senecio angustifolius \N \N \N \N \N 10201 A.crispa Anchusa Anchusa crispa \N \N \N \N \N 10202 D.adelae Drosera Drosera adelae \N \N \N \N \N 10203 O.echios Opuntia Opuntia echios tree prickly-pear \N \N \N \N 10204 B.violacea Banksia Banksia violacea \N \N \N \N \N 10205 M.Fiji Malaxis Malaxis sp. Fiji \N \N \N \N \N 10206 D.pulchella Downingia Downingia pulchella \N \N \N \N \N 10207 R.grandiflora Raoulia Raoulia grandiflora \N \N \N \N \N 10208 \N varietas Aconitum volubile var. latisectum \N \N \N \N \N 10209 \N genus Vagaria \N \N \N \N \N 10210 \N family Griseliniaceae \N \N \N \N \N 10211 \N subspecies Artemisia cana subsp. bolanderi \N \N \N \N \N 10212 M.phrygia Medicago Medicago phrygia \N \N \N \N \N 10213 C.filifolia Cliffortia Cliffortia filifolia \N \N \N \N \N 10214 T.404aa Tovomitopsis Tovomitopsis sp. HG 404aa \N \N \N \N \N 10215 C.chapadae Chamaecrista Chamaecrista chapadae \N \N \N \N \N 10216 \N genus Chrysoma \N \N \N \N \N 10217 R.pungens Relhania Relhania pungens \N \N \N \N \N 10218 P.blancheanus Pachyanthus Pachyanthus blancheanus \N \N \N \N \N 10219 R.caesius Rubus Rubus caesius \N \N \N \N \N 10220 T.isthmocarpum Trifolium Trifolium isthmocarpum \N \N \N \N \N 10221 \N genus Cryptostegia \N \N \N \N \N 10222 A.microspadix Arisaema Arisaema microspadix \N \N \N \N \N 10223 C.nationsiana Chamaedorea Chamaedorea nationsiana \N \N \N \N \N 10224 \N genus Modiolastrum \N \N \N \N \N 10225 H.petraea Hornungia Hornungia petraea \N \N \N \N \N 10226 A.confusa Arenaria Arenaria confusa \N \N \N \N \N 10227 \N genus Strasburgeria \N \N \N \N \N 10228 C.richardii Cortaderia Cortaderia richardii \N \N \N \N \N 10229 W.robusta Washingtonia Washingtonia robusta \N \N \N \N \N 10230 A.sceptrum Arrabidaea Arrabidaea sceptrum \N \N \N \N \N 10231 S.constrictum Sphinctospermum Sphinctospermum constrictum \N \N \N \N \N 10232 A.amazonica Amorimia Amorimia amazonica \N \N \N \N \N 10233 S.kralikii Scorzoneroides Scorzoneroides kralikii \N \N \N \N \N 10234 S.ferrugineus Sporadanthus Sporadanthus ferrugineus \N \N \N \N \N 10235 \N family Juncaginaceae arrow-grass family \N \N \N \N 10236 G.scabridum Grammosciadium Grammosciadium scabridum \N \N \N \N \N 10237 \N genus Parkinsonia \N \N \N \N \N 10238 Z.sylvaticus Zeugites Zeugites sylvaticus \N \N \N \N \N 10239 M.karroica Muraltia Muraltia karroica \N \N \N \N \N 10240 R.906 Rhopalocarpus Rhopalocarpus sp. Chase 906 \N \N \N \N \N 10241 P.gratrixianum Paphiopedilum Paphiopedilum gratrixianum \N \N \N \N \N 10242 I.umbellifera Inga Inga umbellifera \N \N \N \N \N 10243 \N genus Callicoma \N \N \N \N \N 10244 \N subspecies Rhododendron jasminiflorum subsp. heusseri \N \N \N \N \N 10245 N.cordobensis Nassella Nassella cordobensis \N \N \N \N \N 10246 \N genus Robsonodendron \N \N \N \N \N 10247 A.praecox Agapanthus Agapanthus praecox \N \N \N \N \N 10248 P.s.n. Paphiopedilum Paphiopedilum sp. Kusibab s.n. \N \N \N \N \N 10249 O.verbesinoides Otopappus Otopappus verbesinoides \N \N \N \N \N 10250 A.cruentus Amaranthus Amaranthus cruentus African-spinach,blood amaranth,prince's feather,purple amaranth \N \N \N \N 10251 P.diacanthus Ptilostemon Ptilostemon diacanthus \N \N \N \N \N 10252 \N tribe Millerieae \N \N \N \N \N 10253 I.sebertii Ilex Ilex sebertii \N \N \N \N \N 10254 A.californica Aristida Aristida californica \N \N \N \N \N 10255 C.tenuivalvis Camellia Camellia tenuivalvis \N \N \N \N \N 10256 D.traversii Dracophyllum Dracophyllum traversii \N \N \N \N \N 10257 A.chingchengense Asarum Asarum chingchengense \N \N \N \N \N 10258 C.karatavica Cousinia Cousinia karatavica \N \N \N \N \N 10259 P.vitifolium Pelargonium Pelargonium vitifolium \N \N \N \N \N 10260 L.heterantha Logfia Logfia heterantha \N \N \N \N \N 10261 P.alata Plectrophora Plectrophora alata \N \N \N \N \N 10262 M.pectinata Muhlenbergia Muhlenbergia pectinata \N \N \N \N \N 10263 P.alensis Pilosocereus Pilosocereus alensis \N \N \N \N \N 10264 O.inouei Orchidantha Orchidantha inouei \N \N \N \N \N 10265 A.fragrans Anneslea Anneslea fragrans \N \N \N \N \N 10266 P.parvifolia Persea Persea parvifolia \N \N \N \N \N 10267 P.hispanica Prolongoa Prolongoa hispanica \N \N \N \N \N 10268 P.maximum Pancratium Pancratium maximum \N \N \N \N \N 10269 \N subtribe Rhizanthellinae \N \N \N \N \N 10270 A.pulchella Agalinis Agalinis pulchella \N \N \N \N \N 10271 E.stenosiphon Elettariopsis Elettariopsis stenosiphon \N \N \N \N \N 10272 \N genus Libertia \N \N \N \N \N 10273 C.repanda Cissus Cissus repanda \N \N \N \N \N 10274 M.heynei Macaranga Macaranga heynei \N \N \N \N \N 10275 C.blancoi Calophyllum Calophyllum blancoi \N \N \N \N \N 10276 A.5462 Argophyllum Argophyllum sp. Telford 5462 \N \N \N \N \N 10277 B.tricholepis Blepharoneuron Blepharoneuron tricholepis \N \N \N \N \N 10278 O.micrantha Ossaea Ossaea micrantha \N \N \N \N \N 10279 L.JAS-2011a Leitneria Leitneria sp. JAS-2011a \N \N \N \N \N 10280 \N genus Gagnebina \N \N \N \N \N 10281 \N subspecies Swainsona microphylla subsp. glabrescens \N \N \N \N \N 10282 A.penangiana Adenia Adenia penangiana \N \N \N \N \N 10283 \N genus Octolobus \N \N \N \N \N 10284 L.tortuosum Lepidosperma Lepidosperma tortuosum \N \N \N \N \N 10285 F.multijuga Filipendula Filipendula multijuga \N \N \N \N \N 10286 T.tomentosa Trichoglottis Trichoglottis tomentosa \N \N \N \N \N 10287 E.lipskyi Echinops Echinops lipskyi \N \N \N \N \N 10288 E.venustum Eryngium Eryngium venustum \N \N \N \N \N 10289 H.pergranulata Halosarcia Halosarcia pergranulata \N \N \N \N \N 10290 B.coriacea Bikinia Bikinia coriacea \N \N \N \N \N 10291 C.cordifolium Cyanastrum Cyanastrum cordifolium \N \N \N \N \N 10292 D.saniculifolium Dracosciadium Dracosciadium saniculifolium \N \N \N \N \N 10293 O.neocaledonicum Oceanopapaver Oceanopapaver neocaledonicum \N \N \N \N \N 10294 C.caboensis Croton Croton caboensis \N \N \N \N \N 10295 \N genus Asaemia \N \N \N \N \N 10296 N.anfracta Nemesia Nemesia anfracta \N \N \N \N \N 10297 F.sonorensis Flaveria Flaveria sonorensis \N \N \N \N \N 10298 U.ectomycorrhiza environmental samples Taxonomy:197740 uncultured Carpinus betulus from ectomycorrhiza \N \N \N \N \N 10299 \N genus Pharnaceum \N \N \N \N \N 10300 E.macrotrema Erica Erica macrotrema \N \N \N \N \N 10301 B.campos-portoi Bulbophyllum Bulbophyllum campos-portoi \N \N \N \N \N 10302 \N subspecies Corynocarpus rupestris subsp. rupestris \N \N \N \N \N 10303 F.MV-2009 Ficus Ficus sp. MV-2009 \N \N \N \N \N 10304 P.lobatum Pelargonium Pelargonium lobatum \N \N \N \N \N 10305 O.benthamii Oreocharis Oreocharis benthamii \N \N \N \N \N 10306 \N subspecies Crocus cancellatus subsp. lycius \N \N \N \N \N 10307 N.yunnanensis Nemosenecio Nemosenecio yunnanensis \N \N \N \N \N 10308 A.platyphylla Aliella Aliella platyphylla \N \N \N \N \N 10309 C.mirandae Campylanthus Campylanthus mirandae \N \N \N \N \N 10310 D.aurantiacum Dendrobium Dendrobium aurantiacum \N \N \N \N \N 10311 T.sophiae Tutcheria Tutcheria sophiae \N \N \N \N \N 10312 O.hebes Ophrys Ophrys hebes \N \N \N \N \N 10313 I.indicum Ischaemum Ischaemum indicum \N \N \N \N \N 10314 \N family Dipentodontaceae \N \N \N \N \N 10315 S.sibirica Stipa Stipa sibirica \N \N \N \N \N 10316 R.s.n.' Roridula Roridula sp. 'Soltis s.n.' \N \N \N \N \N 10317 C.macrophylla Coussarea Coussarea macrophylla \N \N \N \N \N 10318 A.ageratoides Aster Aster ageratoides \N \N \N \N \N 10319 C.cuneatum Cicer Cicer cuneatum \N \N \N \N \N 10320 R.capensis Rothmannia Rothmannia capensis \N \N \N \N \N 10321 S.suffruticosa Securinega Securinega suffruticosa \N \N \N \N \N 10322 P.prasinus Phyllobolus Phyllobolus prasinus \N \N \N \N \N 10323 A.excelsa Aloe Aloe excelsa \N \N \N \N \N 10324 L.revolutum Lithospermum Lithospermum revolutum \N \N \N \N \N 10325 P.coronarius Pachycarpus Pachycarpus coronarius \N \N \N \N \N 10326 I.fosteriana Iris Iris fosteriana \N \N \N \N \N 10327 B.emiliorum Bulbophyllum Bulbophyllum emiliorum \N \N \N \N \N 10328 P.venosa Peltogyne Peltogyne venosa \N \N \N \N \N 10329 \N genus Hormuzakia \N \N \N \N \N 10330 A.comosiforme Asyneuma Asyneuma comosiforme \N \N \N \N \N 10331 Z.macropodum Zygophyllum Zygophyllum macropodum \N \N \N \N \N 10332 N.truncatula Neoschischkinia Neoschischkinia truncatula \N \N \N \N \N 10333 O.silvestris Ocotea Ocotea silvestris \N \N \N \N \N 10334 C.psyllium Conostylis Conostylis psyllium \N \N \N \N \N 10335 B.humilis Braya Braya humilis \N \N \N \N \N 10336 D.cissifolia Dalechampia Dalechampia cissifolia \N \N \N \N \N 10337 B.S41 Begonia Begonia sp. Rajbhandary S41 \N \N \N \N \N 10338 \N genus Gentianothamnus \N \N \N \N \N 10339 P.sprucei Pleuropetalum Pleuropetalum sprucei \N \N \N \N \N 10340 S.bellidioides Stilpnogyne Stilpnogyne bellidioides \N \N \N \N \N 10341 B.thomeana Begonia Begonia thomeana \N \N \N \N \N 10342 G.conrauana Garcinia Garcinia conrauana \N \N \N \N \N 10343 C.ater Croton Croton ater \N \N \N \N \N 10344 P.persistentus Phaseolus Phaseolus persistentus \N \N \N \N \N 10345 \N varietas Pimpinella cretica var. cretica \N \N \N \N \N 10346 \N genus Canbya \N \N \N \N \N 10347 T.87 Tiquilia Tiquilia cf. turneri Moore 87 \N \N \N \N \N 10348 D.griseum Delphinium Delphinium griseum \N \N \N \N \N 10349 C.speciosus Croton Croton speciosus \N \N \N \N \N 10350 R.bachii Rhododendron Rhododendron bachii \N \N \N \N \N 10351 C.tinctoria Chrozophora Chrozophora tinctoria \N \N \N \N \N 10352 S.mulgraveanum Syzygium Syzygium mulgraveanum \N \N \N \N \N 10353 O.capensis Olea Olea capensis black ironwood,ijzerhout \N \N \N \N 10354 B.tectorum Bromus Bromus tectorum Dachtrespe,June grass,brome-de-toits,bromo-velloso,bronco grass,cheatgrass,downy brome,downy chess,drooping brome,espiguilla-colgante \N \N \N \N 10355 P.tenella Polystachya Polystachya tenella \N \N \N \N \N 10356 O.inschanica Oxytropis Oxytropis inschanica \N \N \N \N \N 10357 D.mahafaliense Dicraeopetalum Dicraeopetalum mahafaliense \N \N \N \N \N 10358 M.lacei Michelia Michelia lacei \N \N \N \N \N 10359 S.townsendii Spartina Spartina x townsendii \N \N \N \N \N 10360 O.blastorrhiza Oxalis Oxalis blastorrhiza \N \N \N \N \N 10361 \N genus Cylindrocline \N \N \N \N \N 10362 W.procumbens Wahlenbergia Wahlenbergia procumbens \N \N \N \N \N 10363 O.siculum Ornithogalum Ornithogalum siculum \N \N \N \N \N 10364 S.tashiroi Swertia Swertia tashiroi \N \N \N \N \N 10365 C.edulis Carpobrotus Carpobrotus edulis \N \N \N \N \N 10366 P.centranthifolius Penstemon Penstemon centranthifolius \N \N \N \N \N 10367 O.dioica Octolepis Octolepis dioica \N \N \N \N \N 10368 C.atopa Compsoneura Compsoneura atopa \N \N \N \N \N 10369 D.reticulata Dubautia Dubautia reticulata \N \N \N \N \N 10370 M.oligantha Microlicia Microlicia oligantha \N \N \N \N \N 10371 V.albicans Hebe Veronica albicans \N \N \N \N \N 10372 \N genus Coccoceras \N \N \N \N \N 10373 C.papillosus Ceanothus Ceanothus papillosus \N \N \N \N \N 10374 D.amaliae Dracula Dracula amaliae \N \N \N \N \N 10375 T.tarmensis Tournefortia Tournefortia tarmensis \N \N \N \N \N 10376 \N varietas Coix lacryma-jobi var. ma-yuen \N \N \N \N \N 10377 B.edgeworthiana Berberis Berberis edgeworthiana \N \N \N \N \N 10378 R.explodens Ronnbergia Ronnbergia explodens \N \N \N \N \N 10379 \N subspecies Ipomoea carnea subsp. fistulosa bush morning-glory \N \N \N \N 10380 B.attenuata Buchnera Buchnera attenuata \N \N \N \N \N 10381 P.szechuanica Populus Populus szechuanica \N \N \N \N \N 10382 D.cryophila Draba Draba cryophila \N \N \N \N \N 10383 A.paracleta Aristolochia Aristolochia paracleta \N \N \N \N \N 10384 S.eustegioides Schizoglossum Schizoglossum eustegioides \N \N \N \N \N 10385 A.factorovskyi Aaronsohnia Aaronsohnia factorovskyi \N \N \N \N \N 10386 N.aspera Nesaea Nesaea aspera \N \N \N \N \N 10387 \N subspecies Daviesia ulicifolia subsp. aridicola \N \N \N \N \N 10388 C.poilanei Callicarpa Callicarpa poilanei \N \N \N \N \N 10389 O.maingayi Ochreinauclea Ochreinauclea maingayi \N \N \N \N \N 10390 \N genus Telopea \N \N \N \N \N 10391 A.morrisonense Acer Acer morrisonense \N \N \N \N \N 10392 B.cymosa Becquerelia Becquerelia cymosa \N \N \N \N \N 10393 \N genus Pereskia \N \N \N \N \N 10394 R.gracilis Reinhardtia Reinhardtia gracilis \N \N \N \N \N 10395 M.japonica Moliniopsis Moliniopsis japonica \N \N \N \N \N 10396 \N genus Cistanche \N \N \N \N \N 10397 C.elegans Cyphophoenix Cyphophoenix elegans \N \N \N \N \N 10398 \N genus Allochrusa \N \N \N \N \N 10399 P.posumbu Persicaria Persicaria posumbu \N \N \N \N \N 10400 C.houghtoniana Carex Carex houghtoniana \N \N \N \N \N 10401 D.walleri Disa Disa walleri \N \N \N \N \N 10402 S.decaryi Stapelianthus Stapelianthus decaryi \N \N \N \N \N 10403 O.hydrolithica Ophiochloa Ophiochloa hydrolithica \N \N \N \N \N 10404 A.zerdanus Astragalus Astragalus zerdanus \N \N \N \N \N 10405 A.formosana Alpinia Alpinia formosana \N \N \N \N \N 10406 A.caudatum Asarum Asarum caudatum \N \N \N \N \N 10407 \N subspecies Veronica hectorii subsp. coarctata \N \N \N \N \N 10408 P.campostyla Paradrymonia Paradrymonia campostyla \N \N \N \N \N 10409 G.linearis Gymnosporia Gymnosporia linearis \N \N \N \N \N 10410 S.velutina Solidago Solidago velutina \N \N \N \N \N 10411 \N tribe Allieae \N \N \N \N \N 10412 X.cambodiana Xantolis Xantolis cambodiana \N \N \N \N \N 10413 K.orygalis Kalanchoe Kalanchoe orygalis \N \N \N \N \N 10414 P.obtusa Plumeria Plumeria obtusa \N \N \N \N \N 10415 P.urnifolia Passiflora Passiflora urnifolia \N \N \N \N \N 10416 G.griffithii Goniothalamus Goniothalamus griffithii \N \N \N \N \N 10417 S.lanceolatum Sedum Sedum lanceolatum \N \N \N \N \N 10418 \N genus Mulguraea \N \N \N \N \N 10419 B.FS669 Bulbophyllum Bulbophyllum sp. FS669 \N \N \N \N \N 10420 \N genus Hugonia \N \N \N \N \N 10421 H.WB1103 Hydriastele Hydriastele sp. A WB1103 \N \N \N \N \N 10422 A.muraltioides Aspalathus Aspalathus muraltioides \N \N \N \N \N 10423 I.alternans Indigofera Indigofera alternans \N \N \N \N \N 10424 I.venulosa Indigofera Indigofera venulosa \N \N \N \N \N 10425 A.axillaris Asperuginoides Asperuginoides axillaris \N \N \N \N \N 10426 \N genus Piloblephis \N \N \N \N \N 10427 \N genus Cyclorhiza \N \N \N \N \N 10428 A.griffithianum Allium Allium griffithianum \N \N \N \N \N 10429 S.SH-2010 Saurauia Saurauia sp. SH-2010 \N \N \N \N \N 10430 T.ZF-2009 Tripsacum Tripsacum sp. ZF-2009 \N \N \N \N \N 10431 A.mandonii Andeimalva Andeimalva mandonii \N \N \N \N \N 10432 G.oligocarpa Guatteria Guatteria oligocarpa \N \N \N \N \N 10433 C.euryoides Camellia Camellia euryoides \N \N \N \N \N 10434 \N genus Neatostema \N \N \N \N \N 10435 M.yunnanensis Machilus Machilus yunnanensis \N \N \N \N \N 10436 G.variabilis Globba Globba variabilis \N \N \N \N \N 10437 P.xanthobasis Primula Primula xanthobasis \N \N \N \N \N 10438 O.xylocarpa Oenothera Oenothera xylocarpa \N \N \N \N \N 10439 \N genus Smelowskia \N \N \N \N \N 10440 \N genus Cucumis \N \N \N \N \N 10441 S.ulei Spathelia Spathelia ulei \N \N \N \N \N 10442 A.cysticalyx Astragalus Astragalus cysticalyx \N \N \N \N \N 10443 \N family Nyctaginaceae four o'clock family \N \N \N \N 10444 A.nova Arabis Arabis nova \N \N \N \N \N 10445 \N genus Pomaria \N \N \N \N \N 10446 S.grandifolia Sylvichadsia Sylvichadsia grandifolia \N \N \N \N \N 10447 \N genus Diphylleia \N \N \N \N \N 10448 \N subtribe Amyeminae \N \N \N \N \N 10449 B.gracilis Begonia Begonia gracilis \N \N \N \N \N 10450 M.adansonii Monstera Monstera adansonii \N \N \N \N \N 10451 \N subspecies Crocus sieberi subsp. nivalis \N \N \N \N \N 10452 C.subpilosum Cerastium Cerastium subpilosum \N \N \N \N \N 10453 P.norvegica Potentilla Potentilla norvegica \N \N \N \N \N 10454 C.chinensis Cuscuta Cuscuta chinensis \N \N \N \N \N 10455 C.oblongifolia Couratari Couratari oblongifolia \N \N \N \N \N 10456 A.castellana Agrostis Agrostis castellana highland bent \N \N \N \N 10457 A.fastuosa Arctotis Arctotis fastuosa Cape daisy \N \N \N \N 10458 F.mekongensis Formania Formania mekongensis \N \N \N \N \N 10459 C.triflora Cremaspora Cremaspora triflora \N \N \N \N \N 10460 M.365 Microsteira Microsteira sp. Randrianaivo et al. 365 \N \N \N \N \N 10461 A.imbricatus Asteriscus Asteriscus imbricatus \N \N \N \N \N 10462 S.arctata Scaphyglottis Scaphyglottis arctata \N \N \N \N \N 10463 P.glabrinode Paspalum Paspalum glabrinode \N \N \N \N \N 10464 D.balsensis Desmanthus Desmanthus balsensis \N \N \N \N \N 10465 L.simplex Lomelosia Lomelosia simplex \N \N \N \N \N 10466 T.ciliolatum Trifolium Trifolium ciliolatum \N \N \N \N \N 10467 D.pusillus Daucus Daucus pusillus \N \N \N \N \N 10468 L.kleinii Leandra Leandra kleinii \N \N \N \N \N 10469 P.camtschaticum Pleurospermum Pleurospermum camtschaticum \N \N \N \N \N 10470 A.racemosus Astragalus Astragalus racemosus \N \N \N \N \N 10471 M.sativa Medicago Medicago sativa alfalfa,lucerne \N \N \N \N 10472 \N varietas Anaxagorea javanica var. javanica \N \N \N \N \N 10473 P.harmsii Puya Puya harmsii \N \N \N \N \N 10474 S.1717 unclassified Sapotaceae Sapotaceae sp. Munzinger 1717 \N \N \N \N \N 10475 S.gulngai Sonneratia Sonneratia x gulngai \N \N \N \N \N 10476 \N genus Sameraria \N \N \N \N \N 10477 B.simplicifrons Bactris Bactris simplicifrons \N \N \N \N \N 12126 \N subtribe Senecioninae \N \N \N \N \N 10478 P.pernambucensis Peperomia Peperomia pernambucensis \N \N \N \N \N 10479 C.cinerea Cupania Cupania cinerea \N \N \N \N \N 10480 O.integrifolia Ourisia Ourisia integrifolia \N \N \N \N \N 10481 M.caryophyllacea Montinia Montinia caryophyllacea \N \N \N \N \N 10482 C.medium Campanula Campanula medium Canterbury bells,Canterbury-bells,cup-and-saucer \N \N \N \N 10483 R.heliopsidis Rudbeckia Rudbeckia heliopsidis \N \N \N \N \N 10484 S.anadenotricha Stevia Stevia anadenotricha \N \N \N \N \N 10485 O.cinnamomeum Oncidium Oncidium cinnamomeum \N \N \N \N \N 10486 P.inopinatum Pachypodium Pachypodium inopinatum \N \N \N \N \N 10487 A.nikoense Arisaema Arisaema nikoense \N \N \N \N \N 10488 R.MAB-2005 Romanschulzia Romanschulzia sp. MAB-2005 \N \N \N \N \N 10489 P.domingensis Petitia Petitia domingensis \N \N \N \N \N 10490 B.scabrifolia Babiana Babiana scabrifolia \N \N \N \N \N 10491 A.leiocarpa Apuleia Apuleia leiocarpa \N \N \N \N \N 10492 C.antitauri Centaurea Centaurea antitauri \N \N \N \N \N 10493 A.spinosa Aspalathus Aspalathus spinosa \N \N \N \N \N 10494 E.pusillus Elachanthus Elachanthus pusillus \N \N \N \N \N 10495 I.thompsonii Iris Iris thompsonii \N \N \N \N \N 10496 L.stoechas Lavandula Lavandula stoechas \N \N \N \N \N 10497 C.speciosa Coryanthes Coryanthes speciosa \N \N \N \N \N 10498 \N genus Acanthephippium \N \N \N \N \N 10499 M.figo Michelia Michelia figo \N \N \N \N \N 10500 \N genus Metaporana \N \N \N \N \N 10501 \N genus Aristea \N \N \N \N \N 10502 A.rubricaulis Anagallis Anagallis rubricaulis \N \N \N \N \N 10503 E.bancroftii Elaeocarpus Elaeocarpus bancroftii \N \N \N \N \N 10504 N.spiculata Neohenricia Neohenricia spiculata \N \N \N \N \N 10505 C.massonii Convolvulus Convolvulus massonii \N \N \N \N \N 10506 C.speciosum Clinopodium Clinopodium speciosum \N \N \N \N \N 10507 E.acuminatum Elatostema Elatostema acuminatum \N \N \N \N \N 10508 A.lanata Aerva Aerva lanata \N \N \N \N \N 10509 \N subspecies Lepidium sisymbrioides subsp. sisymbrioides \N \N \N \N \N 10510 \N genus Nechamandra \N \N \N \N \N 10511 \N genus Gelasine \N \N \N \N \N 10512 E.EHR-2010 Eleocharis Eleocharis aff. viridans EHR-2010 \N \N \N \N \N 10513 B.davidii Buddleja Buddleja davidii summer lilac \N \N \N \N 10514 D.divaricata Diastella Diastella divaricata \N \N \N \N \N 10515 G.demarcoi Genista Genista demarcoi \N \N \N \N \N 10516 P.tobira Pittosporum Pittosporum tobira tobira \N \N \N \N 10517 A.cardenasii Arachis Arachis cardenasii \N \N \N \N \N 10518 A.parviflora Aesculus Aesculus glabra var. arguta x Aesculus parviflora \N \N \N \N \N 10519 P.tinajita Pentagonia Pentagonia tinajita \N \N \N \N \N 10520 S.parcistrigosum Solanum Solanum parcistrigosum \N \N \N \N \N 10521 H.macra Heliophila Heliophila macra \N \N \N \N \N 10522 C.lamellata Chloraea Chloraea lamellata \N \N \N \N \N 10523 \N genus Streptogyna \N \N \N \N \N 10524 \N genus Crabbea \N \N \N \N \N 10525 M.vernale Milium Milium vernale \N \N \N \N \N 10526 X.poposum Xenophyllum Xenophyllum poposum \N \N \N \N \N 10527 \N genus Gouldia \N \N \N \N \N 10528 T.queenslandica Torrenticola Torrenticola queenslandica \N \N \N \N \N 10529 P.hamata Puya Puya hamata \N \N \N \N \N 10530 E.laurina Eupomatia Eupomatia laurina \N \N \N \N \N 10531 S.eurotioides Sclerolaena Sclerolaena eurotioides \N \N \N \N \N 10532 \N genus Pterogastra \N \N \N \N \N 10533 A.mackeyana Acacia Acacia mackeyana \N \N \N \N \N 10534 D.californica Digitaria Digitaria californica \N \N \N \N \N 10535 \N genus Leuchtenbergia \N \N \N \N \N 10536 P.lawrenceanum Paphiopedilum Paphiopedilum lawrenceanum \N \N \N \N \N 10537 \N genus Tornabenea \N \N \N \N \N 10538 W.rosmariniformis Westringia Westringia rosmariniformis \N \N \N \N \N 10539 F.suffruticosa Flueggea Flueggea suffruticosa \N \N \N \N \N 10540 A.quinquefolia Aspalathus Aspalathus quinquefolia \N \N \N \N \N 10541 \N family Calophyllaceae \N \N \N \N \N 10542 \N tribe Urophylleae \N \N \N \N \N 10543 C.cyrtosaccus Carex Carex cyrtosaccus \N \N \N \N \N 10544 B.procumbens Brassica Brassica procumbens \N \N \N \N \N 10545 P.arborea Phylica Phylica arborea \N \N \N \N \N 10546 \N varietas Dendrobium tetragonum var. tetragonum \N \N \N \N \N 10547 \N genus Gaillardia \N \N \N \N \N 10548 \N genus Stelechantha \N \N \N \N \N 10549 \N subspecies Alnus alnobetula subsp. crispa \N \N \N \N \N 10550 S.globulifera Setaria Setaria globulifera \N \N \N \N \N 10551 J.1008 Jurinea Jurinea sp. Dogan 1008 \N \N \N \N \N 10552 S.pallida Saxifraga Saxifraga pallida \N \N \N \N \N 10553 H.longifolium Hypolytrum Hypolytrum longifolium \N \N \N \N \N 10554 S.megistophylla Shorea Shorea megistophylla \N \N \N \N \N 10555 \N subspecies Triphysaria versicolor subsp. faucibarbata \N \N \N \N \N 10556 \N varietas Elizabetha coccinea var. oxyphylla \N \N \N \N \N 10557 M.balsamum Myroxylon Myroxylon balsamum \N \N \N \N \N 10558 P.fruticosa Polyscias Polyscias fruticosa \N \N \N \N \N 10559 \N varietas Incarvillea sinensis var. sinensis \N \N \N \N \N 10560 C.udicola Cardamine Cardamine udicola \N \N \N \N \N 10561 I.umbrosus Isodon Isodon umbrosus \N \N \N \N \N 10562 L.przewalskii Ligularia Ligularia przewalskii \N \N \N \N \N 10563 P.fowliei Paphiopedilum Paphiopedilum fowliei \N \N \N \N \N 10564 A.incana Asimina Asimina incana \N \N \N \N \N 10565 \N genus Mesadenella \N \N \N \N \N 10566 T.omeiense Thalictrum Thalictrum omeiense \N \N \N \N \N 10567 \N subspecies Gentiana verna subsp. balcanica \N \N \N \N \N 10568 \N genus Cycnium \N \N \N \N \N 10569 E.parviflora Exalaria Exalaria parviflora \N \N \N \N \N 10570 C.abyssinica Coleochloa Coleochloa abyssinica \N \N \N \N \N 10571 P.pradhanii Paphiopedilum Paphiopedilum x pradhanii \N \N \N \N \N 10572 E.Esp5ekw Elleanthus Elleanthus sp. Esp5ekw \N \N \N \N \N 10573 X.tortifolia Xylorhiza Xylorhiza tortifolia Mojave woody-aster \N \N \N \N 10574 M.aprica Micranthes Micranthes aprica Sierra saxifrage \N \N \N \N 10575 G.coahuilensis Grahamia Grahamia coahuilensis \N \N \N \N \N 10577 M.elsiae Moraea Moraea elsiae \N \N \N \N \N 10578 \N genus Sarcostemma \N \N \N \N \N 10579 \N genus Phemeranthus \N \N \N \N \N 10580 S.santarosensis Simsia Simsia santarosensis \N \N \N \N \N 10581 S.palmeri Sideroxylon Sideroxylon palmeri \N \N \N \N \N 10582 P.schomburgkiana Pradosia Pradosia schomburgkiana \N \N \N \N \N 10583 P.fausta Prosthechea Prosthechea fausta \N \N \N \N \N 10584 E.gypsicola Euphorbia Euphorbia gypsicola \N \N \N \N \N 15820 \N genus Eremitis \N \N \N \N \N 10585 \N subspecies Limnanthes douglasii subsp. douglasii \N \N \N \N \N 10586 \N genus Gymnopetalum \N \N \N \N \N 10587 E.moschatum Erodium Erodium moschatum \N \N \N \N \N 10588 S.pentandra Salix Salix alba x Salix pentandra \N \N \N \N \N 10589 O.linearis Oreomyrrhis Oreomyrrhis linearis \N \N \N \N \N 10590 A.splendens Artemisia Artemisia splendens \N \N \N \N \N 10591 C.sonoranus Coreocarpus Coreocarpus sonoranus \N \N \N \N \N 10592 V.crenatum Vaccinium Vaccinium crenatum \N \N \N \N \N 10593 O.peruvianoides Oncidium Oncidium peruvianoides \N \N \N \N \N 10594 P.eucalyptiphyllum Piper Piper eucalyptiphyllum \N \N \N \N \N 10595 A.630 Angelphytum Angelphytum sp. Moraes 630 \N \N \N \N \N 10596 \N genus Dipsacus teasels \N \N \N \N 10597 L.brachyphylla Luzula Luzula brachyphylla \N \N \N \N \N 10598 O.wilcoxii Opuntia Opuntia wilcoxii \N \N \N \N \N 10599 E.EHR-2010 Eleocharis Eleocharis aff. nigrescens EHR-2010 \N \N \N \N \N 10600 T.heldreichianum Trifolium Trifolium heldreichianum \N \N \N \N \N 10601 N.apodemus Napeanthus Napeanthus apodemus \N \N \N \N \N 10602 T.cordifolia Thladiantha Thladiantha cordifolia \N \N \N \N \N 10603 C.campestris Calochilus Calochilus campestris \N \N \N \N \N 10604 K.stipulacea Kummerowia Kummerowia stipulacea \N \N \N \N \N 10605 \N varietas Mimosa setosa var. paludosa \N \N \N \N \N 10606 \N genus Werdermannia \N \N \N \N \N 10607 A.macrophylla Atalantia Atalantia macrophylla \N \N \N \N \N 10608 \N genus Iberis \N \N \N \N \N 10609 N.sagittatus Nabalus Nabalus sagittatus \N \N \N \N \N 10610 C.tangutorum Cardamine Cardamine tangutorum \N \N \N \N \N 10611 R.lancerotae Reseda Reseda lancerotae \N \N \N \N \N 10612 C.elliottii Croton Croton elliottii \N \N \N \N \N 10613 M.lanceolata Maesa Maesa lanceolata \N \N \N \N \N 10614 C.peduncularis Crassula Crassula peduncularis \N \N \N \N \N 10615 M.oligostachyus Miscanthus Miscanthus oligostachyus \N \N \N \N \N 10616 M.ledifolia Mutisia Mutisia ledifolia \N \N \N \N \N 10617 S.lineariformis Sebaea Sebaea lineariformis \N \N \N \N \N 10618 G.malayana Gamblea Gamblea malayana \N \N \N \N \N 10619 \N genus Polypremum \N \N \N \N \N 10620 E.chionantha Eomecon Eomecon chionantha \N \N \N \N \N 10621 C.freitagii Cousinia Cousinia freitagii \N \N \N \N \N 10622 S.eriocarpa Swartzia Swartzia eriocarpa \N \N \N \N \N 10623 B.tozerensis Babingtonia Babingtonia tozerensis \N \N \N \N \N 10624 \N subspecies Arctostaphylos hookeri subsp. hearstiorum \N \N \N \N \N 10625 \N varietas Hypochaeris microcephala var. albiflora \N \N \N \N \N 10626 L.lenticula Lotononis Lotononis lenticula \N \N \N \N \N 10627 O.sedifolia Othonna Othonna sedifolia \N \N \N \N \N 10628 A.canadensis Albuca Albuca canadensis \N \N \N \N \N 10629 R.sessilifolius Rhodothamnus Rhodothamnus sessilifolius \N \N \N \N \N 10630 F.pleurocarpa Ficus Ficus pleurocarpa \N \N \N \N \N 10631 E.fulgens Epidendrum Epidendrum fulgens \N \N \N \N \N 10632 S.nitidum Spyridium Spyridium nitidum \N \N \N \N \N 10633 P.subsericans Polylepis Polylepis subsericans \N \N \N \N \N 10634 Y.linearifolia Yucca Yucca linearifolia \N \N \N \N \N 10635 C.crenata Cliffortia Cliffortia crenata \N \N \N \N \N 10636 G.stipitata Guatteria Guatteria stipitata \N \N \N \N \N 10637 \N subtribe Phymasperminae \N \N \N \N \N 10638 S.tetrandra Spinacia Spinacia tetrandra \N \N \N \N \N 10639 G.95025 Galium Galium sp. Qiu 95025 \N \N \N \N \N 10640 E.glaucus Elymus Elymus glaucus \N \N \N \N \N 10641 \N genus Chuanminshen \N \N \N \N \N 10642 I.masia Iris Iris masia \N \N \N \N \N 10643 A.sample environmental samples Taxonomy:417453 Alseuosmiaceae environmental sample \N \N \N \N \N 10644 R.ferruginea Rapanea Rapanea ferruginea \N \N \N \N \N 10645 \N genus Stizolophus \N \N \N \N \N 10646 T.thouarsiana Tina Tina thouarsiana \N \N \N \N \N 10647 \N genus Raoulia \N \N \N \N \N 10648 B.enquistii Brazoria Brazoria enquistii \N \N \N \N \N 10649 B.dominii Boerhavia Boerhavia dominii \N \N \N \N \N 10650 \N genus Robynsia \N \N \N \N \N 10651 \N genus Astrebla \N \N \N \N \N 10652 H.1992 Hemerocallis Hemerocallis sp. Hansen s.n. 1992 \N \N \N \N \N 10653 P.mollis Primula Primula mollis \N \N \N \N \N 10654 S.caripense Solanum Solanum caripense lloron,mamoncillo \N \N \N \N 10655 A.stolonifera Agrostis Agrostis stolonifera creeping bent grass \N \N \N \N 10656 A.sempervivoides Androsace Androsace sempervivoides \N \N \N \N \N 10657 P.mystasipum Panicum Panicum mystasipum \N \N \N \N \N 10658 S.fasciculata Sabia Sabia fasciculata \N \N \N \N \N 10659 H.saussureoides Hieracium Hieracium saussureoides \N \N \N \N \N 10660 A.longifolia Aristida Aristida longifolia \N \N \N \N \N 10661 H.earlei Harrisia Harrisia earlei \N \N \N \N \N 10662 T.dregeana Trichilia Trichilia dregeana \N \N \N \N \N 10663 K.sinclairii Kunzea Kunzea sinclairii \N \N \N \N \N 10664 D.asperatum Dimerostemma Dimerostemma asperatum \N \N \N \N \N 10665 S.concolor Salvia Salvia concolor \N \N \N \N \N 10666 \N subspecies Gahnia aspera subsp. globosa \N \N \N \N \N 10667 \N genus Velleia \N \N \N \N \N 10668 \N genus Isodon \N \N \N \N \N 10669 P.macrocephalus Paepalanthus Paepalanthus macrocephalus \N \N \N \N \N 10670 P.galeata Polystachya Polystachya galeata \N \N \N \N \N 10671 C.juncea Crotalaria Crotalaria juncea sunn hemp \N \N \N \N 10672 \N genus Catalepidia \N \N \N \N \N 10673 \N genus Androlepis \N \N \N \N \N 10674 N.cyclamineus Narcissus Narcissus cyclamineus \N \N \N \N \N 10675 J.odoratissimum Jasminum Jasminum odoratissimum yellow jasmine \N \N \N \N 10676 B.wilsonae Berberis Berberis wilsonae \N \N \N \N \N 10677 S.harlingii Stelis Stelis harlingii \N \N \N \N \N 10678 A.saposhnikovii Allium Allium saposhnikovii \N \N \N \N \N 10679 \N varietas Allium sanbornii var. sanbornii \N \N \N \N \N 10680 M.candollei Morinda Morinda candollei \N \N \N \N \N 10681 P.pannonica Poa Poa pannonica \N \N \N \N \N 10682 \N genus Huarpea \N \N \N \N \N 10683 C.sample environmental samples Taxonomy:404809 Cucurbita environmental sample \N \N \N \N \N 10684 O.rapum-genistae Orobanche Orobanche rapum-genistae \N \N \N \N \N 10685 L.nervosa Leandra Leandra nervosa \N \N \N \N \N 10686 S.kentrophyllus Sporobolus Sporobolus kentrophyllus \N \N \N \N \N 10687 G.polidorii Gagea Gagea polidorii \N \N \N \N \N 10688 I.476 Iochroma Iochroma sp. Smith 476 \N \N \N \N \N 10689 Z.obtusifolia Ziziphus Ziziphus obtusifolia gumdrop-tree,lotebush \N \N \N \N 10690 H.cuprea Hamelia Hamelia cuprea \N \N \N \N \N 10691 C.solida Corydalis Corydalis solida bird-in-a-bush,fumewort \N \N \N \N 10692 P.helodoxa Primula Primula helodoxa \N \N \N \N \N 10693 T.maculatum Trillium Trillium maculatum spotted trillium \N \N \N \N 10694 T.fryeri Triainolepis Triainolepis fryeri \N \N \N \N \N 10695 \N genus Hylebates \N \N \N \N \N 10696 \N genus Ludia \N \N \N \N \N 10697 M.annua Muhlenbergia Muhlenbergia annua \N \N \N \N \N 10698 C.11072 Cyrtandra Cyrtandra aff. bidwillii Wood 11072 \N \N \N \N \N 10699 \N subspecies Armeria arenaria subsp. praecox \N \N \N \N \N 10700 A.peschii Australluma Australluma peschii \N \N \N \N \N 10701 G.clandestina Glycine Glycine clandestina twining glycine \N \N \N \N 10702 \N genus Sasaella \N \N \N \N \N 10703 \N genus Neoboutonia \N \N \N \N \N 10704 I.5771 Ixora Ixora sp. Vidal 5771 \N \N \N \N \N 10705 \N varietas Platymiscium floribundum var. obtusifolium \N \N \N \N \N 10706 \N genus Rayjacksonia \N \N \N \N \N 10707 D.fuchsii Dactylorhiza Dactylorhiza fuchsii \N \N \N \N \N 10708 P.rhodosperma Plantago Plantago rhodosperma redseed plantain \N \N \N \N 10709 H.barbata Hutchinsonia Hutchinsonia barbata \N \N \N \N \N 10710 P.mandonii Ponthieva Ponthieva mandonii \N \N \N \N \N 10711 \N genus Graphephorum \N \N \N \N \N 10712 D.pseudonitens Dioscorea Dioscorea pseudonitens \N \N \N \N \N 10713 C.lineare Crinum Crinum lineare \N \N \N \N \N 10714 G.setifolia Gahnia Gahnia setifolia \N \N \N \N \N 10715 M.kraussii Merwilla Merwilla kraussii \N \N \N \N \N 10716 F.tacaco Frantzia Frantzia tacaco \N \N \N \N \N 10717 D.galpinii Dalechampia Dalechampia galpinii \N \N \N \N \N 10718 C.prancei Crepidospermum Crepidospermum prancei \N \N \N \N \N 10719 T.antiatlantica Thymelaea Thymelaea antiatlantica \N \N \N \N \N 10720 P.cihuatlanense Piper Piper cihuatlanense \N \N \N \N \N 10721 \N genus Gymnema \N \N \N \N \N 10722 D.eschscholtzii Draba Draba eschscholtzii \N \N \N \N \N 10723 R.litorea Rostraria Rostraria litorea \N \N \N \N \N 10724 H.clavata Habenaria Habenaria clavata \N \N \N \N \N 10725 C.6903 Cissus Cissus sp. 6903 \N \N \N \N \N 10726 \N genus Sphaerocoma \N \N \N \N \N 10727 P.decumanum Piper Piper decumanum \N \N \N \N \N 10728 T.pubescens Thalictrum Thalictrum pubescens king-of-the-meadow,tall meadow-rue \N \N \N \N 10729 I.cuernavacana Indigofera Indigofera cuernavacana \N \N \N \N \N 10730 C.4 Craigia Craigia sp. Kubitzki and Appel 4 \N \N \N \N \N 10731 G.davidsonii Gossypium Gossypium davidsonii \N \N \N \N \N 10732 A.lanceifolius Artocarpus Artocarpus lanceifolius \N \N \N \N \N 10733 \N tribe Antidesmeae \N \N \N \N \N 10734 \N genus Erythrophysa \N \N \N \N \N 10735 \N genus Merope \N \N \N \N \N 10736 P.12828 Plagiosiphon Plagiosiphon sp. Breteler 12828 \N \N \N \N \N 10737 L.lempirana Leucaena Leucaena lempirana hoja menuda \N \N \N \N 10738 \N genus Kopsia \N \N \N \N \N 10739 T.compacta Tetraria Tetraria compacta \N \N \N \N \N 10740 O.horridus Oplopanax Oplopanax horridus \N \N \N \N \N 10741 \N varietas Aconitum tanguticum var. trichocarpum \N \N \N \N \N 10742 O.strictum Ornithogalum Ornithogalum strictum \N \N \N \N \N 10743 G.illyricus Gladiolus Gladiolus illyricus \N \N \N \N \N 10744 C.nitidus Calochortus Calochortus nitidus \N \N \N \N \N 10745 G.superba Gloriosa Gloriosa superba glory lily,superb climbing lily \N \N \N \N 10746 P.spinulosa Prunus Prunus spinulosa \N \N \N \N \N 10747 \N subspecies Helleborus multifidus subsp. bocconei \N \N \N \N \N 10748 M.brevifolia Melaleuca Melaleuca brevifolia \N \N \N \N \N 10749 A.bijuga Arabis Arabis bijuga \N \N \N \N \N 10750 G.setiflorus Glinus Glinus setiflorus \N \N \N \N \N 10751 P.reticulata Primula Primula reticulata \N \N \N \N \N 10752 B.cornigerum Bunium Bunium cornigerum \N \N \N \N \N 10753 C.raynoldsii Carex Carex raynoldsii \N \N \N \N \N 10754 D.glutinosa Drymocallis Drymocallis glutinosa \N \N \N \N \N 10755 A.pubescens Aesculus Aesculus pavia x Aesculus sylvatica var. pubescens \N \N \N \N \N 10756 A.tenellus Aegopogon Aegopogon tenellus \N \N \N \N \N 10757 A.oligophylla Aglaia Aglaia oligophylla \N \N \N \N \N 10758 A.gabonensis Afrothismia Afrothismia gabonensis \N \N \N \N \N 10759 H.perrieri Haplocoelum Haplocoelum perrieri \N \N \N \N \N 10760 I.peruviana Ixora Ixora peruviana \N \N \N \N \N 10761 \N genus Chaunochiton \N \N \N \N \N 10762 C.gerardiana Caragana Caragana gerardiana \N \N \N \N \N 10763 C.arkansana Carex Carex arkansana \N \N \N \N \N 10764 P.SH-2010 Porana Porana sp. SH-2010 \N \N \N \N \N 10765 P.davisii Primula Primula davisii \N \N \N \N \N 10766 P.sphondylodes Poa Poa sphondylodes \N \N \N \N \N 10767 \N genus Mortoniodendron \N \N \N \N \N 10768 A.muticum Amblyopyrum Amblyopyrum muticum \N \N \N \N \N 10769 C.fascicularis Camellia Camellia fascicularis \N \N \N \N \N 10770 C.obispoensis Carex Carex obispoensis \N \N \N \N \N 10771 M.tomentosa Magnolia Magnolia tomentosa \N \N \N \N \N 10772 G.texana Galactia Galactia texana \N \N \N \N \N 10773 P.flexuosa Phanera Phanera flexuosa \N \N \N \N \N 10774 I.congesta Indigofera Indigofera congesta \N \N \N \N \N 10775 S.lignicaule Solanum Solanum lignicaule \N \N \N \N \N 10776 R.mesembryanthemoides Rhipsalis Rhipsalis mesembryanthemoides \N \N \N \N \N 10777 C.foliosa Ceropegia Ceropegia foliosa \N \N \N \N \N 10778 N.panamensis Nautilocalyx Nautilocalyx panamensis \N \N \N \N \N 10779 P.richardiifolium Piper Piper richardiifolium \N \N \N \N \N 10780 L.heterocarpa Lisaea Lisaea heterocarpa \N \N \N \N \N 10781 D.glanduligera Drosera Drosera glanduligera \N \N \N \N \N 10782 S.retinervia Salvia Salvia retinervia \N \N \N \N \N 10783 \N genus Elaeosticta \N \N \N \N \N 10784 M.JJS-2010e Mentzelia Mentzelia sp. JJS-2010e \N \N \N \N \N 10785 \N genus Aptenia \N \N \N \N \N 10786 \N genus Dendroseris \N \N \N \N \N 10787 F.elegans Festuca Festuca elegans \N \N \N \N \N 10788 M.trifidus Mesechites Mesechites trifidus \N \N \N \N \N 10789 A.coriacea Axinandra Axinandra coriacea \N \N \N \N \N 10790 \N genus Barbosella \N \N \N \N \N 10791 S.tulae Simarouba Simarouba tulae \N \N \N \N \N 10792 M.solmsii Mimulopsis Mimulopsis solmsii \N \N \N \N \N 10793 T.pedata Telfairia Telfairia pedata oysternut \N \N \N \N 10794 P.rotundifolius Pterostemon Pterostemon rotundifolius \N \N \N \N \N 10795 A.xichuanense Allium Allium xichuanense \N \N \N \N \N 10796 D.distichophylla Distichlis Distichlis distichophylla \N \N \N \N \N 10797 G.californicum Geranium Geranium californicum \N \N \N \N \N 10798 C.rodwayi Carpha Carpha rodwayi \N \N \N \N \N 10799 P.daveauana Pellionia Pellionia daveauana \N \N \N \N \N 10800 \N genus Caularthron \N \N \N \N \N 10801 H.cantabricum Helictotrichon Helictotrichon cantabricum \N \N \N \N \N 10802 J.verticillata Jacquemontia Jacquemontia verticillata \N \N \N \N \N 10803 E.eduardoi Euphorbia Euphorbia eduardoi \N \N \N \N \N 10804 E.florida Euphorbia Euphorbia florida \N \N \N \N \N 10805 \N genus Trymalium \N \N \N \N \N 10806 \N varietas Medicago truncatula var. longiaculeata \N \N \N \N \N 10807 S.tuerckheimiana Solenophora Solenophora tuerckheimiana \N \N \N \N \N 10808 P.liemianum Paphiopedilum Paphiopedilum liemianum \N \N \N \N \N 10809 O.epidendroides Oncidium Oncidium epidendroides \N \N \N \N \N 10810 P.membranacea Paraphlomis Paraphlomis membranacea \N \N \N \N \N 10811 C.3748 Clusia Clusia sp. JA 3748 \N \N \N \N \N 10812 P.anserina Potentilla Potentilla anserina \N \N \N \N \N 10813 P.lancifolium Pittosporum Pittosporum lancifolium \N \N \N \N \N 10814 R.acetosa Rumex Rumex acetosa garden sorrel,sour dock \N \N \N \N 10815 C.arcuata Calanthe Calanthe arcuata \N \N \N \N \N 10816 A.kosiensis Acacia Acacia kosiensis \N \N \N \N \N 10817 S.salicifolium Sideroxylon Sideroxylon salicifolium \N \N \N \N \N 10818 S.madagascariensis Stapelianthus Stapelianthus madagascariensis \N \N \N \N \N 10819 R.limbata Rydingia Rydingia limbata \N \N \N \N \N 10820 S.morellifolium Solanum Solanum morellifolium \N \N \N \N \N 10821 C.desvauxii Chamaecrista Chamaecrista desvauxii \N \N \N \N \N 10822 C.cymosa Clidemia Clidemia cymosa \N \N \N \N \N 10823 A.donax Arundo Arundo donax giant reed \N \N \N \N 10824 B.'megaflora' Baeckea Baeckea sp. 'megaflora' \N \N \N \N \N 10825 D.glabra Deprea Deprea glabra \N \N \N \N \N 10826 C.spermacocea Carpacoce Carpacoce spermacocea \N \N \N \N \N 10827 \N genus Ivania \N \N \N \N \N 10828 M.farinosa Mimosa Mimosa farinosa \N \N \N \N \N 10829 A.skinneri Aquilegia Aquilegia skinneri \N \N \N \N \N 10830 C.planiflora Cuscuta Cuscuta planiflora \N \N \N \N \N 10831 L.trichandra Leucaena Leucaena trichandra guaje chiquito,lobadaviyia \N \N \N \N 10832 C.virgata Chloris Chloris virgata feather finger grass,klossiegras,oldland grass \N \N \N \N 10833 \N genus Albizia \N \N \N \N \N 10834 \N tribe Feddeeae \N \N \N \N \N 10835 \N varietas Clivia miniata var. citrina \N \N \N \N \N 10836 \N genus Dodartia \N \N \N \N \N 10837 E.superbum Ensete Ensete superbum \N \N \N \N \N 10838 M.lophatum Myriophyllum Myriophyllum lophatum \N \N \N \N \N 10839 \N genus Acrorchis \N \N \N \N \N 10840 P.subtusalbida Polylepis Polylepis subtusalbida \N \N \N \N \N 10841 \N genus Posidonia \N \N \N \N \N 10842 R.albiceps Rhynchospora Rhynchospora albiceps \N \N \N \N \N 10843 \N genus Dichilus \N \N \N \N \N 10844 B.imbricata Baeckea Baeckea imbricata \N \N \N \N \N 10845 J.polycephalus Juncus Juncus polycephalus \N \N \N \N \N 10846 \N subspecies Begonia grandis subsp. holostyla \N \N \N \N \N 10847 K.nyikae Kalanchoe Kalanchoe nyikae \N \N \N \N \N 10848 S.italicum Sempervivum Sempervivum italicum \N \N \N \N \N 10849 P.1414 Piper Piper sp. Tepe 1414 \N \N \N \N \N 10850 D.albovaginata Deiregyne Deiregyne albovaginata \N \N \N \N \N 10851 \N varietas Oxytropis besseyi var. ventosa \N \N \N \N \N 10852 H.purpurascens Horkeliella Horkeliella purpurascens \N \N \N \N \N 10853 H.WM9531 Helleborus Helleborus sp. McLewin WM9531 \N \N \N \N \N 10854 A.CVM-2007 Antirrhinum Antirrhinum sp. CVM-2007 \N \N \N \N \N 10855 F.arnhemensis Fimbristylis Fimbristylis arnhemensis \N \N \N \N \N 10856 R.aperantum Rhododendron Rhododendron aperantum \N \N \N \N \N 10857 \N genus Xanthorhiza \N \N \N \N \N 10858 \N genus Eucryphia \N \N \N \N \N 10859 \N genus Cucurbita marrows,pumpkins,squashes \N \N \N \N 10860 C.danguyanum Cynanchum Cynanchum danguyanum \N \N \N \N \N 10861 E.diffusa Erithalis Erithalis diffusa \N \N \N \N \N 10862 C.carpatica Campanula Campanula carpatica tussock bellflower \N \N \N \N 10863 P.humilis Pterostylis Pterostylis humilis \N \N \N \N \N 10864 \N genus Omphalocarpum \N \N \N \N \N 10865 P.echinata Pericallis Pericallis echinata \N \N \N \N \N 10866 R.robusta Rhynchospora Rhynchospora robusta \N \N \N \N \N 10867 C.trachylepis Cousinia Cousinia trachylepis \N \N \N \N \N 10868 O.stricta Oxalis Oxalis stricta \N \N \N \N \N 10869 H.mandonii Heliotropium Heliotropium mandonii \N \N \N \N \N 12226 \N genus Orostachys \N \N \N \N \N 10870 \N subspecies Anthyllis vulneraria subsp. reuteri \N \N \N \N \N 10871 C.alba Copernicia Copernicia alba \N \N \N \N \N 10872 G.boveanum Glossonema Glossonema boveanum \N \N \N \N \N 10873 R.przewalskyi Rheum Rheum przewalskyi \N \N \N \N \N 10874 P.pseudoputus Penstemon Penstemon pseudoputus \N \N \N \N \N 10875 P.purpureum Podospermum Podospermum purpureum \N \N \N \N \N 10876 G.texense Galium Galium texense \N \N \N \N \N 10877 \N genus Bulnesia \N \N \N \N \N 10878 C.exarata Centaurea Centaurea exarata \N \N \N \N \N 10879 L.virginica Lespedeza Lespedeza virginica \N \N \N \N \N 10880 P.tuberosa Pedicularis Pedicularis tuberosa \N \N \N \N \N 10881 P.cultivar Penstemon Penstemon hybrid cultivar \N \N \N \N \N 10882 O.fordiana Ormosia Ormosia fordiana \N \N \N \N \N 10883 C.heterophyllum Cirsium Cirsium heterophyllum \N \N \N \N \N 10884 N.phanerophlebia Neolitsea Neolitsea phanerophlebia \N \N \N \N \N 10885 \N genus Cosmos \N \N \N \N \N 10886 \N varietas Muraltia satureioides var. satureioides \N \N \N \N \N 10887 P.fujianensis Pinellia Pinellia fujianensis \N \N \N \N \N 10888 A.camptoclada Acacia Acacia camptoclada \N \N \N \N \N 10889 E.corniculata Euphorbia Euphorbia corniculata \N \N \N \N \N 10890 \N varietas Dendrobium kingianum var. pulcherrimum \N \N \N \N \N 10891 \N subspecies Gentiana verna subsp. verna \N \N \N \N \N 10892 N.acuminatum Nematoceras Nematoceras acuminatum \N \N \N \N \N 10893 K.peltata Kalanchoe Kalanchoe peltata \N \N \N \N \N 10894 S.radians Stellaria Stellaria radians \N \N \N \N \N 10895 A.pulchella Abolboda Abolboda pulchella \N \N \N \N \N 10896 S.nuttallii Stachys Stachys nuttallii \N \N \N \N \N 10897 \N genus Gastonia \N \N \N \N \N 10898 O.holosericea Oxalis Oxalis holosericea \N \N \N \N \N 10899 A.jauari Astrocaryum Astrocaryum jauari \N \N \N \N \N 10900 R.gabunensis Rinorea Rinorea gabunensis \N \N \N \N \N 10901 \N varietas Brassica oleracea var. acephala kale \N \N \N \N 10902 S.ursinum Solanum Solanum ursinum \N \N \N \N \N 10903 C.flexuosa Calceolaria Calceolaria flexuosa \N \N \N \N \N 10904 R.millefolius Ranunculus Ranunculus millefolius \N \N \N \N \N 10905 B.M140902 Berkheya Berkheya sp. M140902 \N \N \N \N \N 10906 M.gilliesii Montiopsis Montiopsis gilliesii \N \N \N \N \N 10907 C.fimbrillifera Corydalis Corydalis fimbrillifera \N \N \N \N \N 10908 S.thysanodes Silene Silene thysanodes \N \N \N \N \N 10909 D.canescens Diplostigma Diplostigma canescens \N \N \N \N \N 10910 \N family Dichapetalaceae \N \N \N \N \N 10911 B.pulchella Bauhinia Bauhinia pulchella \N \N \N \N \N 10912 R.sonorensis Randia Randia sonorensis \N \N \N \N \N 10913 B.ovalifoliolata Boswellia Boswellia ovalifoliolata \N \N \N \N \N 10914 H.hexantha Hylaeanthe Hylaeanthe hexantha \N \N \N \N \N 10915 \N genus Russowia \N \N \N \N \N 10916 G.bulbifera Globba Globba bulbifera \N \N \N \N \N 10917 S.elegans Sigmoidotropis Sigmoidotropis elegans \N \N \N \N \N 10918 \N varietas Aechmea miniata var. discolor \N \N \N \N \N 10919 S.lanata Seetzenia Seetzenia lanata \N \N \N \N \N 10920 G.spectabilis Galearis Galearis spectabilis \N \N \N \N \N 10921 O.densiflora Orobanche Orobanche densiflora \N \N \N \N \N 10922 C.arachnoidea Caralluma Caralluma arachnoidea \N \N \N \N \N 10923 X.canescens Xiphotheca Xiphotheca canescens \N \N \N \N \N 10924 D.lorifolia Diaphananthe Diaphananthe lorifolia \N \N \N \N \N 10925 O.chilensis Orobanche Orobanche chilensis \N \N \N \N \N 10926 C.amplexistipula Cliffortia Cliffortia amplexistipula \N \N \N \N \N 10927 S.echinospermoides Silene Silene echinospermoides \N \N \N \N \N 10928 \N genus Ameghinoa \N \N \N \N \N 10929 A.triloba Anisodontea Anisodontea triloba \N \N \N \N \N 10930 C.wolgarica Calophaca Calophaca wolgarica \N \N \N \N \N 10931 S.petraeum Stenanthemum Stenanthemum petraeum \N \N \N \N \N 10932 V.trinervia Vigna Vigna trinervia \N \N \N \N \N 10933 S.decussilvae Satranala Satranala decussilvae \N \N \N \N \N 10934 H.stipulacea Halophila Halophila stipulacea \N \N \N \N \N 10935 R.melzeri Ranunculus Ranunculus melzeri \N \N \N \N \N 10936 S.speciosa Solidago Solidago speciosa noble goldenrod,showy goldenrod \N \N \N \N 10937 B.yunnanensis Buddleja Buddleja yunnanensis \N \N \N \N \N 10938 M.542 Myriophyllum Myriophyllum sp. Les 542 \N \N \N \N \N 10939 C.oreocreticus Crocus Crocus oreocreticus \N \N \N \N \N 10940 G.trinervia Gagea Gagea trinervia \N \N \N \N \N 10941 F.scariosa Festuca Festuca scariosa \N \N \N \N \N 10942 \N genus Sarcocephalus \N \N \N \N \N 10943 A.acaule Anthurium Anthurium acaule \N \N \N \N \N 10944 M.phlomoides Meriania Meriania phlomoides \N \N \N \N \N 10945 Z.giessii Zygophyllum Zygophyllum giessii \N \N \N \N \N 10946 E.scaber Echinodorus Echinodorus scaber \N \N \N \N \N 10947 \N genus Phaeanthus \N \N \N \N \N 10948 C.polyclada Campanula Campanula polyclada \N \N \N \N \N 10949 D.japonicus Dianthus Dianthus japonicus \N \N \N \N \N 10950 P.multilobata Packera Packera multilobata \N \N \N \N \N 10951 D.wurdackii Draba Draba wurdackii \N \N \N \N \N 10952 A.studiosorum Androsace Androsace studiosorum \N \N \N \N \N 10953 G.comesperma Guioa Guioa comesperma \N \N \N \N \N 10954 \N varietas Miscanthus sinensis var. chejuensis \N \N \N \N \N 10955 \N genus Aegilops x Secale \N \N \N \N \N 10956 C.decumbens Correa Correa decumbens \N \N \N \N \N 10957 \N tribe Cardueae \N \N \N \N \N 10958 C.ustulatus Cyperus Cyperus ustulatus \N \N \N \N \N 10959 B.umbellatus Butomus Butomus umbellatus flowering-rush,grassy-rush \N \N \N \N 10960 I.vohemarensis Indigofera Indigofera vohemarensis \N \N \N \N \N 10961 H.spathulata Hesperozygis Hesperozygis spathulata \N \N \N \N \N 10962 T.goudotiana Tetrapterys Tetrapterys goudotiana \N \N \N \N \N 10963 P.macrophylla Pentagonia Pentagonia macrophylla \N \N \N \N \N 10964 M.1663 Mesospinidium Mesospinidium sp. Whitten 1663 \N \N \N \N \N 10965 K.alternifolium Kingiodendron Kingiodendron alternifolium \N \N \N \N \N 10966 I.baileyi Ivesia Ivesia baileyi \N \N \N \N \N 10968 \N subspecies Disperis circumflexa subsp. aemula \N \N \N \N \N 10969 S.ilicifolius Sclerochiton Sclerochiton ilicifolius \N \N \N \N \N 10970 G.glauca Guioa Guioa glauca \N \N \N \N \N 10971 T.canescens Tanacetum Tanacetum canescens \N \N \N \N \N 10972 L.ononopsis Lotus Lotus ononopsis \N \N \N \N \N 10973 F.sundaica Ficus Ficus sundaica \N \N \N \N \N 10974 \N genus Hymenolaena \N \N \N \N \N 10975 C.dwyeri Cordia Cordia dwyeri \N \N \N \N \N 10976 T.albidum Trillium Trillium albidum \N \N \N \N \N 10977 T.microcarpum Thesidium Thesidium microcarpum \N \N \N \N \N 10978 S.komarowii Syringa Syringa komarowii \N \N \N \N \N 10979 V.'erecta' Vallisneria Vallisneria sp. 'erecta' \N \N \N \N \N 10980 V.pendula Vanhouttea Vanhouttea pendula \N \N \N \N \N 10981 L.pilosum Leptostigma Leptostigma pilosum \N \N \N \N \N 10982 D.splendens Draba Draba splendens \N \N \N \N \N 10983 D.craibiana Dimetra Dimetra craibiana \N \N \N \N \N 10984 C.angustifolius Centranthus Centranthus angustifolius \N \N \N \N \N 10985 \N genus Aethephyllum \N \N \N \N \N 10986 V.palustris Viola Viola palustris \N \N \N \N \N 10987 L.lankongense Lilium Lilium lankongense \N \N \N \N \N 10988 F.lusitanica Filago Filago lusitanica \N \N \N \N \N 10989 L.alpigena Lonicera Lonicera alpigena \N \N \N \N \N 10990 A.rosea Alpinia Alpinia rosea \N \N \N \N \N 10991 P.coccineum Pittosporum Pittosporum coccineum \N \N \N \N \N 10992 M.lineare Musineon Musineon lineare narrowleaf wildparsley \N \N \N \N 10993 G.mollugo Galium Galium mollugo false baby's breath \N \N \N \N 10994 C.rupestris Carex Carex rupestris \N \N \N \N \N 10995 C.inocephala Calathea Calathea inocephala \N \N \N \N \N 10996 T.condamineoides Tresanthera Tresanthera condamineoides \N \N \N \N \N 10997 \N genus Aequatorium \N \N \N \N \N 10998 L.cervinus Lupinus Lupinus cervinus \N \N \N \N \N 10999 \N genus Naravelia \N \N \N \N \N 11000 \N subspecies Lonicera caerulea subsp. stenantha \N \N \N \N \N 11001 M.saxatilis Medicago Medicago saxatilis \N \N \N \N \N 11002 \N genus Joycea \N \N \N \N \N 11003 A.humifusa Arenaria Arenaria humifusa \N \N \N \N \N 11004 C.complanata Carex Carex complanata \N \N \N \N \N 11005 L.montanus Lobostemon Lobostemon montanus \N \N \N \N \N 11006 F.haussknechtii Ferula Ferula haussknechtii \N \N \N \N \N 11007 \N genus Norrisia \N \N \N \N \N 11008 D.ovata Dyschoriste Dyschoriste ovata \N \N \N \N \N 11009 S.lutescens Scopolia Scopolia lutescens \N \N \N \N \N 11010 S.zeyheri Staavia Staavia zeyheri \N \N \N \N \N 11011 P.kuntzei Pterocactus Pterocactus kuntzei \N \N \N \N \N 11012 M.australis Moraea Moraea australis \N \N \N \N \N 11013 M.coruscocaesia Mimosa Mimosa coruscocaesia \N \N \N \N \N 11014 A.elata Aegiphila Aegiphila elata \N \N \N \N \N 11015 I.glaucescens Indigofera Indigofera glaucescens \N \N \N \N \N 11016 A.arnowiae Achnatherum Achnatherum arnowiae \N \N \N \N \N 11017 M.trachyphylla Macaranga Macaranga trachyphylla \N \N \N \N \N 11018 C.paludosa Crepis Crepis paludosa \N \N \N \N \N 11019 C.s.n. Cranichis Cranichis sp. Christenson s.n. \N \N \N \N \N 11020 M.solomonii Masdevallia Masdevallia solomonii \N \N \N \N \N 11021 L.variabilis Litsea Litsea variabilis \N \N \N \N \N 11022 M.acutistipula Mimosa Mimosa acutistipula \N \N \N \N \N 11023 D.lucida Dombeya Dombeya lucida \N \N \N \N \N 11024 C.himalaica Crucihimalaya Crucihimalaya himalaica \N \N \N \N \N 11025 P.membranifolia Primula Primula membranifolia \N \N \N \N \N 11026 C.baylopiorum Crocus Crocus baylopiorum \N \N \N \N \N 11027 L.demissus Linanthus Linanthus demissus desertsnow \N \N \N \N 11028 M.brevilabia Maxillaria Maxillaria brevilabia \N \N \N \N \N 11029 \N varietas Calochortus albus var. albus \N \N \N \N \N 11030 H.parvula Hypoxis Hypoxis parvula \N \N \N \N \N 11031 P.buchananii Pimpinella Pimpinella buchananii \N \N \N \N \N 11032 M.2400 Maxillaria Maxillaria cf. loretoensis Whitten 2400 \N \N \N \N \N 11033 M.pinnulosa Munnozia Munnozia pinnulosa \N \N \N \N \N 11034 \N no rank Saccharum hybrid cultivar B4362 \N \N \N \N \N 11035 \N genus Peripentadenia \N \N \N \N \N 11036 S.cotyledon Saxifraga Saxifraga cotyledon \N \N \N \N \N 11037 T.brachystemma Terminalia Terminalia brachystemma \N \N \N \N \N 11038 A.guerrerense Arnicastrum Arnicastrum guerrerense \N \N \N \N \N 11039 T.philistaeum Trifolium Trifolium philistaeum \N \N \N \N \N 11040 P.4128 Pelargonium Pelargonium sp. STEU 4128 \N \N \N \N \N 11041 H.quitensis Hymenostephium Hymenostephium quitensis \N \N \N \N \N 11042 S.lepida Solidago Solidago lepida western Canada goldenrod \N \N \N \N 11043 C.spinosum Citharexylum Citharexylum spinosum \N \N \N \N \N 11044 P.pedatisecta Pinellia Pinellia pedatisecta \N \N \N \N \N 11045 C.cuspidata Camellia Camellia cuspidata \N \N \N \N \N 11046 A.colombiana Amphidasya Amphidasya colombiana \N \N \N \N \N 11047 \N subspecies Leptosiphon aureus subsp. aureus \N \N \N \N \N 11048 E.hybridus Erigeron Erigeron hybridus \N \N \N \N \N 11049 E.dodii Erica Erica dodii \N \N \N \N \N 11050 A.cremnophila Aloe Aloe cremnophila \N \N \N \N \N 11051 H.stenostachys Hordeum Hordeum stenostachys \N \N \N \N \N 11052 G.buxifolia Gymnosporia Gymnosporia buxifolia \N \N \N \N \N 11053 \N subspecies Halimium lasianthum subsp. alyssoides \N \N \N \N \N 11054 P.acuminata Pterostylis Pterostylis acuminata \N \N \N \N \N 11055 G.s.n. Gnidia Gnidia aff. viridis Beaumont s.n. \N \N \N \N \N 11056 \N varietas Lilium maculatum var. monticola \N \N \N \N \N 11057 T.6282 unclassified Taraxacum Taraxacum (sect. Pyrenaica) sp. 6282 \N \N \N \N \N 11058 S.mannii Sopubia Sopubia mannii \N \N \N \N \N 11059 M.lamellata Macaranga Macaranga lamellata \N \N \N \N \N 11060 C.adoensis Coccinia Coccinia adoensis \N \N \N \N \N 11061 A.reticulatum Asterostigma Asterostigma reticulatum \N \N \N \N \N 11062 A.cyclophyllon Astragalus Astragalus cyclophyllon \N \N \N \N \N 11063 L.excubitus Lupinus Lupinus excubitus Inyo bush lupine \N \N \N \N 13485 \N genus Dressleria \N \N \N \N \N 11064 O.georgii-reuteri Orobanche Orobanche georgii-reuteri \N \N \N \N \N 11065 C.tinctorius Carthamus Carthamus tinctorius safflower \N \N \N \N 11066 M.galpinii Moraea Moraea galpinii \N \N \N \N \N 11067 S.peglerae Stapelia Stapelia peglerae \N \N \N \N \N 11068 A.divaricata Aspalathus Aspalathus divaricata \N \N \N \N \N 11069 D.mirandae Dyscritothamnus Dyscritothamnus mirandae \N \N \N \N \N 11070 L.2152 Lucinaea Lucinaea sp. 1 Ridsdale 2152 \N \N \N \N \N 11071 M.728 Miconia Miconia cf. amilcariana Michelangeli 728 \N \N \N \N \N 11072 L.trifida Lichtensteinia Lichtensteinia trifida \N \N \N \N \N 11073 A.tomentosa Aspidopterys Aspidopterys tomentosa \N \N \N \N \N 11074 B.leucorrhoda Bifrenaria Bifrenaria leucorrhoda \N \N \N \N \N 11075 P.arnhemica Pouteria Pouteria arnhemica \N \N \N \N \N 11076 C.tashkorganica Chorispora Chorispora tashkorganica \N \N \N \N \N 11077 A.sardoa Armeria Armeria sardoa \N \N \N \N \N 11078 P.umbellata Pomax Pomax umbellata \N \N \N \N \N 11079 G.macropus Guatteria Guatteria macropus \N \N \N \N \N 11080 E.polyphylla Entada Entada polyphylla \N \N \N \N \N 11081 S.abutifolia Sida Sida abutifolia \N \N \N \N \N 11082 \N genus Conium \N \N \N \N \N 11083 S.patagonicum Sisymbrium Sisymbrium patagonicum \N \N \N \N \N 11084 A.oswaldii Acacia Acacia oswaldii \N \N \N \N \N 11085 A.spathulata Abelia Abelia spathulata \N \N \N \N \N 11086 A.ebracteatus Acanthus Acanthus ebracteatus \N \N \N \N \N 11087 O.magniflora Olearia Olearia magniflora \N \N \N \N \N 11088 A.modesta Aerangis Aerangis modesta \N \N \N \N \N 11089 E.Espluis75 Elleanthus Elleanthus sp. Espluis75 \N \N \N \N \N 11090 R.procera Richea Richea procera \N \N \N \N \N 11091 P.prunifolia Pomaderris Pomaderris prunifolia \N \N \N \N \N 11092 L.ovata Lagenandra Lagenandra ovata \N \N \N \N \N 11093 V.seoulensis Viola Viola seoulensis \N \N \N \N \N 11094 R.ficariifolius Ranunculus Ranunculus ficariifolius \N \N \N \N \N 11095 \N subspecies Turnera sidoides subsp. carnea \N \N \N \N \N 11096 A.08095 Aechmea Aechmea sp. 08095 \N \N \N \N \N 11097 C.bushii Carex Carex bushii \N \N \N \N \N 11098 \N genus Maresia \N \N \N \N \N 11099 E.chilensis Elytropus Elytropus chilensis \N \N \N \N \N 11100 \N subspecies Primula chionantha subsp. sinopurpurea \N \N \N \N \N 11101 P.fragrans Pseudephedranthus Pseudephedranthus fragrans \N \N \N \N \N 11102 C.acanthocarpa Cylindropuntia Cylindropuntia acanthocarpa \N \N \N \N \N 11103 S.vantsilana Schefflera Schefflera vantsilana \N \N \N \N \N 11104 R.purpureoviridis Rhodiola Rhodiola purpureoviridis \N \N \N \N \N 11105 A.conifera Aloe Aloe conifera \N \N \N \N \N 11106 C.excelsa Cochlearia Cochlearia excelsa \N \N \N \N \N 11107 C.reboudiana Choulettia Choulettia reboudiana \N \N \N \N \N 11108 T.6225Hnew unclassified Taraxacum Taraxacum (sect. Mongolica) sp. 6225Hnew \N \N \N \N \N 11109 E.caput-medusae Euphorbia Euphorbia caput-medusae \N \N \N \N \N 11110 B.swinnyi Bersama Bersama swinnyi \N \N \N \N \N 11111 V.vinifera Vitis Vitis pseudoreticulata x Vitis vinifera \N \N \N \N \N 11112 E.cinerascens Echinocereus Echinocereus cinerascens \N \N \N \N \N 11113 \N genus Petermannia \N \N \N \N \N 11114 M.rigidiuscula Miconia Miconia rigidiuscula \N \N \N \N \N 11115 P.tuerckheimii Ponthieva Ponthieva tuerckheimii \N \N \N \N \N 11116 P.mandonii Peperomia Peperomia mandonii \N \N \N \N \N 11117 G.papuanum Gymnostoma Gymnostoma papuanum \N \N \N \N \N 11118 B.platyphylla Boehmeria Boehmeria platyphylla \N \N \N \N \N 11119 P.reitzii Petunia Petunia reitzii \N \N \N \N \N 11120 I.doka Isoberlinia Isoberlinia doka \N \N \N \N \N 11121 C.turczaninovii Campanula Campanula turczaninovii \N \N \N \N \N 11122 C.ferruginea Cliffortia Cliffortia ferruginea \N \N \N \N \N 11123 L.mollis Leymus Leymus mollis \N \N \N \N \N 11124 C.sericea Calpurnia Calpurnia sericea \N \N \N \N \N 11125 G.elegans Goetzea Goetzea elegans mata buey \N \N \N \N 11126 P.cordata Pyrus Pyrus cordata Plymouth pear \N \N \N \N 11127 L.perenne Lolium Lolium perenne perennial ryegrass \N \N \N \N 11128 L.kauaensis Lobelia Lobelia kauaensis \N \N \N \N \N 11129 S.kautskyi Sophronitis Sophronitis kautskyi \N \N \N \N \N 11130 O.asperifolia Oryzopsis Oryzopsis asperifolia \N \N \N \N \N 11131 \N varietas Tylophora ovata var. brownii \N \N \N \N \N 11132 C.BWvE-2008 Croton Croton aff. mazapensis var. obtusifolius BWvE-2008 \N \N \N \N \N 11133 V.pierrei Vitex Vitex pierrei \N \N \N \N \N 11134 A.BAC-2010 unclassified Asteraceae Asteraceae sp. B2 BAC-2010 \N \N \N \N \N 11135 N.fernandesii Narcissus Narcissus fernandesii \N \N \N \N \N 11136 B.inermis Bromus Bromus inermis Hungarian brome grass,awnless brome grass,smooth brome grass \N \N \N \N 11137 A.mollis Arnica Arnica mollis \N \N \N \N \N 11138 C.desmouliniana Cuscuta Cuscuta desmouliniana \N \N \N \N \N 11139 M.greenmaniana Monticalia Monticalia greenmaniana \N \N \N \N \N 11140 E.stricta Euphrasia Euphrasia stricta \N \N \N \N \N 11141 \N subtribe Lepidaploinae \N \N \N \N \N 11142 S.palmeri Symphoricarpos Symphoricarpos palmeri \N \N \N \N \N 11143 S.acaulis Stemmacantha Stemmacantha acaulis \N \N \N \N \N 11144 A.scleroxyla Acacia Acacia scleroxyla \N \N \N \N \N 11145 D.officinale Dendrobium Dendrobium officinale \N \N \N \N \N 11146 E.cunninghamii Elaeodendron Elaeodendron cunninghamii \N \N \N \N \N 11147 L.masaiensis Leucas Leucas masaiensis \N \N \N \N \N 11148 C.pallidicaule Chenopodium Chenopodium pallidicaule \N \N \N \N \N 11149 M.acerina Mitella Mitella acerina \N \N \N \N \N 11150 S.ambigua Sagittaria Sagittaria ambigua \N \N \N \N \N 11151 P.praestans Paphiopedilum Paphiopedilum praestans \N \N \N \N \N 11152 A.umbellata Androsace Androsace umbellata \N \N \N \N \N 11153 M.pentaphylla Mollugo Mollugo pentaphylla \N \N \N \N \N 11154 A.martii Aeschynomene Aeschynomene martii \N \N \N \N \N 11155 B.027 Brugmansia Brugmansia sp. Robadey 027 \N \N \N \N \N 11156 P.rusbyi Primula Primula rusbyi \N \N \N \N \N 11157 C.cainii Calamagrostis Calamagrostis cainii \N \N \N \N \N 11158 M.cultivar Musa Musa hybrid cultivar \N \N \N \N \N 11159 \N subspecies Bupleurum rigidum subsp. rigidum \N \N \N \N \N 11160 \N subspecies Anthriscus sylvestris subsp. fumarioides \N \N \N \N \N 11161 S.pallida Sulla Sulla pallida \N \N \N \N \N 11162 A.unilateralis Athysanus Athysanus unilateralis \N \N \N \N \N 11163 M.127 Mitragyna Mitragyna sp. Munzinger 127 \N \N \N \N \N 11164 T.sintenisii Thymbra Thymbra sintenisii \N \N \N \N \N 11165 H.paphlagonicum Heracleum Heracleum paphlagonicum \N \N \N \N \N 15821 \N genus Dicerandra \N \N \N \N \N 11166 C.polyphylla Coursetia Coursetia polyphylla \N \N \N \N \N 11167 \N genus Hydrocharis \N \N \N \N \N 11168 P.anthriscoides Pimpinella Pimpinella anthriscoides \N \N \N \N \N 11169 A.gamosepala Aechmea Aechmea gamosepala \N \N \N \N \N 11170 V.nipponica Veronica Veronica nipponica hime-kuwagata \N \N \N \N 11171 B.multinervia Boeica Boeica multinervia \N \N \N \N \N 11172 L.benthamiana Lotononis Lotononis benthamiana \N \N \N \N \N 11173 \N tribe Maripeae \N \N \N \N \N 11174 A.undulata Anchusa Anchusa undulata \N \N \N \N \N 11175 T.subericinum Taraxacum Taraxacum subericinum \N \N \N \N \N 11176 P.roseus Pinaropappus Pinaropappus roseus \N \N \N \N \N 11177 T.coccineum Tanacetum Tanacetum coccineum \N \N \N \N \N 11178 \N genus Richardia \N \N \N \N \N 11179 S.rosulata Scrophularia Scrophularia rosulata \N \N \N \N \N 11180 M.bolanderi Mimulus Mimulus bolanderi \N \N \N \N \N 11181 D.miyakei Dendrobium Dendrobium miyakei \N \N \N \N \N 11182 A.adscendens Adelobotrys Adelobotrys adscendens \N \N \N \N \N 11183 \N varietas Muraltia filiformis var. filiformis \N \N \N \N \N 11184 I.wrightii Ipomopsis Ipomopsis wrightii \N \N \N \N \N 11185 P.poikilantha Polystachya Polystachya poikilantha \N \N \N \N \N 11186 E.clavellatum Eriogonum Eriogonum clavellatum \N \N \N \N \N 11187 M.longituba Moringa Moringa longituba \N \N \N \N \N 11188 N.porphyrocoma Narenga Narenga porphyrocoma \N \N \N \N \N 11189 B.erectum Brachyelytrum Brachyelytrum erectum \N \N \N \N \N 11190 T.berteroi Tabebuia Tabebuia berteroi \N \N \N \N \N 11191 E.dasyacantha Escobaria Escobaria dasyacantha \N \N \N \N \N 11192 \N subspecies Hieracium hoppeanum subsp. hoppeanum \N \N \N \N \N 11193 R.lanceolata Rhamnus Rhamnus lanceolata \N \N \N \N \N 11194 S.subpanduratum Solanum Solanum subpanduratum \N \N \N \N \N 11195 P.versteeghii Parkia Parkia versteeghii \N \N \N \N \N 11196 V.retusum Vaccinium Vaccinium retusum \N \N \N \N \N 11197 L.excelsa Luzula Luzula excelsa \N \N \N \N \N 11198 I.teratopis Ilex Ilex teratopis \N \N \N \N \N 11199 C.herbaceus Ceanothus Ceanothus herbaceus \N \N \N \N \N 11200 P.choretroides Psammomoya Psammomoya choretroides \N \N \N \N \N 11201 \N genus Chaetium \N \N \N \N \N 11202 S.undatum Solanum Solanum undatum \N \N \N \N \N 11203 \N genus Aaronsohnia \N \N \N \N \N 11204 C.macrosolen Carex Carex macrosolen \N \N \N \N \N 11205 S.isoptera Shorea Shorea isoptera \N \N \N \N \N 11206 E.602 Echeandia Echeandia sp. Chase 602 \N \N \N \N \N 11207 G.novoguineense Glochidion Glochidion novoguineense \N \N \N \N \N 11208 C.henryi Castanea Castanea henryi zhui li \N \N \N \N 11209 P.erodioides Pelargonium Pelargonium erodioides \N \N \N \N \N 11210 C.porphyroglossa Cattleya Cattleya porphyroglossa \N \N \N \N \N 11211 C.sphaerogynus Croton Croton sphaerogynus \N \N \N \N \N 11212 P.phaeosticta Prunus Prunus phaeosticta \N \N \N \N \N 11213 L.echinocephala Leiothrix Leiothrix echinocephala \N \N \N \N \N 11214 A.alpinum Arum Arum alpinum \N \N \N \N \N 11215 A.cordifolia Aotus Aotus cordifolia \N \N \N \N \N 11216 A.SZ666878 Angelica Angelica sp. SZ666878 \N \N \N \N \N 11217 S.douglasii Spiraea Spiraea douglasii \N \N \N \N \N 11218 I.alaica Iskandera Iskandera alaica \N \N \N \N \N 11219 L.davidii Lilium Lilium davidii \N \N \N \N \N 11220 I.paniculata Indigofera Indigofera paniculata \N \N \N \N \N 11221 F.californica Frangula Frangula californica California buckthorn,California coffeeberry \N \N \N \N 11222 \N genus Prestoea \N \N \N \N \N 11223 \N genus Mauloutchia \N \N \N \N \N 11224 B.minutiflora Banara Banara minutiflora \N \N \N \N \N 11225 P.uniglumis Plantago Plantago uniglumis \N \N \N \N \N 11226 \N subspecies Felicia clavipilosa subsp. clavipilosa \N \N \N \N \N 11227 P.guentheri Palaua Palaua guentheri \N \N \N \N \N 11228 L.bicolor Lupinus Lupinus bicolor \N \N \N \N \N 11229 \N varietas Mimosa texana var. texana \N \N \N \N \N 11230 P.toppingii Piper Piper toppingii \N \N \N \N \N 11231 V.atratum Vincetoxicum Vincetoxicum atratum \N \N \N \N \N 11232 E.schieliana Echinopsis Echinopsis schieliana \N \N \N \N \N 11233 I.tenuissima Ipomoea Ipomoea tenuissima \N \N \N \N \N 11234 M.junceus Miscanthus Miscanthus junceus \N \N \N \N \N 11235 P.'Ecuagenera' Pelexia Pelexia sp. 1 'Ecuagenera' \N \N \N \N \N 11236 E.steelei Eutrochium Eutrochium steelei \N \N \N \N \N 11237 L.barkerae Leucadendron Leucadendron barkerae \N \N \N \N \N 11238 C.castaneifolium Cleidion Cleidion castaneifolium \N \N \N \N \N 11239 M.suaveolens Mentha Mentha suaveolens applemint,pineapple mint \N \N \N \N 11240 E.balansae Eryngium Eryngium balansae \N \N \N \N \N 11241 H.erythrostictum Hylotelephium Hylotelephium erythrostictum \N \N \N \N \N 11242 L.nieva Larnax Larnax nieva \N \N \N \N \N 11243 B.spinescens Bentleya Bentleya spinescens \N \N \N \N \N 11244 \N genus Condylostylis \N \N \N \N \N 11245 \N genus Hesperolinon \N \N \N \N \N 11246 \N genus Indofevillea \N \N \N \N \N 11247 C.103 Cremastosperma Cremastosperma sp. Chatrou et al. 103 \N \N \N \N \N 11248 C.oleifolium Cinnamomum Cinnamomum oleifolium \N \N \N \N \N 11249 A.cowanii Allium Allium cowanii \N \N \N \N \N 11250 N.tomentosiformis Nicotiana Nicotiana tomentosiformis \N \N \N \N \N 11251 C.tricostatum Cyrtochilum Cyrtochilum tricostatum \N \N \N \N \N 11252 \N genus Comocladia \N \N \N \N \N 11253 P.crebridens Potentilla Potentilla crebridens \N \N \N \N \N 11254 P.brevifolium Panicum Panicum brevifolium \N \N \N \N \N 11255 D.pentaphylla Dalechampia Dalechampia pentaphylla \N \N \N \N \N 11256 L.delicatula Lysipomia Lysipomia delicatula \N \N \N \N \N 11257 F.eugenii Ferula Ferula eugenii \N \N \N \N \N 11258 A.gabunensis Anthonotha Anthonotha gabunensis \N \N \N \N \N 11259 \N genus Neuwiedia \N \N \N \N \N 11260 L.capensis Leucas Leucas capensis \N \N \N \N \N 11261 O.spinosa Orostachys Orostachys spinosa \N \N \N \N \N 11262 \N varietas Emilia sonchifolia var. javanica \N \N \N \N \N 11263 \N genus Anaxagorea \N \N \N \N \N 11265 O.yungasensis Oxalis Oxalis yungasensis \N \N \N \N \N 11266 S.parviflora Stipa Stipa parviflora \N \N \N \N \N 11267 E.capitatum Erysimum Erysimum capitatum \N \N \N \N \N 11268 P.latifolia Phillyrea Phillyrea latifolia \N \N \N \N \N 11269 S.tragioides Semenovia Semenovia tragioides \N \N \N \N \N 11270 P.canadensis Polymnia Polymnia canadensis \N \N \N \N \N 11271 B.142 Burmeistera Burmeistera sp. Muchhala 142 \N \N \N \N \N 11272 M.ichthyochtona Millettia Millettia ichthyochtona \N \N \N \N \N 11273 M.bituminosa Moraea Moraea bituminosa \N \N \N \N \N 11274 P.linarioides Penstemon Penstemon linarioides toadflax penstemon \N \N \N \N 11275 B.3969) Brachyscome Brachyscome cf. nova-anglica A (Short 3969) \N \N \N \N \N 11276 U.macropoda Uvaria Uvaria macropoda \N \N \N \N \N 11277 L.hirsuta Lepiderema Lepiderema hirsuta \N \N \N \N \N 11278 S.urens Spilanthes Spilanthes urens \N \N \N \N \N 11279 S.canicortex Syzygium Syzygium canicortex \N \N \N \N \N 11280 A.rotundifolia Andrachne Andrachne rotundifolia \N \N \N \N \N 11281 G.corymbosa Gorteria Gorteria corymbosa \N \N \N \N \N 11282 F.convolvulus Fallopia Fallopia convolvulus cipo-de-veado,enredadeira,wan shou wu,wild buckwheat \N \N \N \N 11283 G.carminanthum Gymnocalycium Gymnocalycium carminanthum \N \N \N \N \N 11284 N.ossifragum Narthecium Narthecium ossifragum \N \N \N \N \N 11285 \N subfamily Mastixioideae \N \N \N \N \N 11286 T.acuminata Thouinia Thouinia acuminata \N \N \N \N \N 11287 \N family Hanguanaceae \N \N \N \N \N 11288 K.scandens Kadsura Kadsura scandens \N \N \N \N \N 11289 P.hernandii Piper Piper hernandii \N \N \N \N \N 11290 \N forma Eleocharis wichurae f. teres \N \N \N \N \N 11291 P.lagascae Physalis Physalis lagascae \N \N \N \N \N 11292 \N genus Tainia \N \N \N \N \N 11293 R.subcanescens Rondeletia Rondeletia subcanescens \N \N \N \N \N 11294 H.SK-2009g Hydrobryum Hydrobryum sp. SK-2009g \N \N \N \N \N 11295 L.langmaniae Lopezia Lopezia langmaniae \N \N \N \N \N 11296 M.hypoleuca Maddenia Maddenia hypoleuca madden cherry \N \N \N \N 11297 P.delus Phyllobolus Phyllobolus delus \N \N \N \N \N 11298 S.argentea Swartzia Swartzia argentea \N \N \N \N \N 11299 G.waltonii Gentiana Gentiana waltonii \N \N \N \N \N 11300 S.aberrans Stigmaphyllon Stigmaphyllon aberrans \N \N \N \N \N 11301 T.urbainii Thalictrum Thalictrum urbainii \N \N \N \N \N 11302 R.fruticosa Ruttya Ruttya fruticosa \N \N \N \N \N 11303 \N genus Horwoodia \N \N \N \N \N 11304 M.longipetiolata Maxillaria Maxillaria longipetiolata \N \N \N \N \N 11305 \N genus Oenocarpus \N \N \N \N \N 11306 B.nanum Blennosperma Blennosperma nanum \N \N \N \N \N 11307 E.petricola Eriochilus Eriochilus petricola \N \N \N \N \N 11308 S.inappendiculata Shorea Shorea inappendiculata \N \N \N \N \N 11309 A.pusilla Alepidea Alepidea pusilla \N \N \N \N \N 11310 A.fruticosa Argemone Argemone fruticosa \N \N \N \N \N 11311 P.subspicata Pultenaea Pultenaea subspicata \N \N \N \N \N 11312 L.ohlingerae Liatris Liatris ohlingerae \N \N \N \N \N 11313 \N genus Bagassa \N \N \N \N \N 11314 C.marileoniae Chytroglossa Chytroglossa marileoniae \N \N \N \N \N 11315 P.ariadnes Polyscias Polyscias ariadnes \N \N \N \N \N 11316 A.scrophulariifolia Agastache Agastache scrophulariifolia \N \N \N \N \N 11317 A.ovatus Artocarpus Artocarpus ovatus \N \N \N \N \N 11318 E.tjanschanicus Echinops Echinops tjanschanicus \N \N \N \N \N 11319 \N subspecies Alnus incana subsp. kolaensis \N \N \N \N \N 11320 C.cruentum Crinum Crinum cruentum \N \N \N \N \N 11321 O.spathulatus Oligochaetochilus Oligochaetochilus spathulatus \N \N \N \N \N 11322 G.pubescens Goodyera Goodyera pubescens \N \N \N \N \N 11323 M.polyceratia Medicago Medicago polyceratia \N \N \N \N \N 11324 \N genus Paraquilegia \N \N \N \N \N 11325 S.yunnanensis Salvia Salvia yunnanensis \N \N \N \N \N 11326 P.amphibium Polygonum Polygonum amphibium \N \N \N \N \N 11327 G.nana Grindelia Grindelia nana \N \N \N \N \N 11328 I.nitida Ilex Ilex nitida \N \N \N \N \N 11329 S.glabrescens Salacca Salacca glabrescens \N \N \N \N \N 11330 I.spongiosa Indosasa Indosasa spongiosa \N \N \N \N \N 11331 \N subspecies Ribes oxyacanthoides subsp. oxycanthoides \N \N \N \N \N 11332 \N varietas Taraxacum platycarpum var. longeappendiculatum \N \N \N \N \N 11333 C.kesselringii Colchicum Colchicum kesselringii \N \N \N \N \N 11334 \N genus Picrosia \N \N \N \N \N 11335 A.chevalieri Apodiscus Apodiscus chevalieri \N \N \N \N \N 11336 A.margaritifer Amorphophallus Amorphophallus margaritifer \N \N \N \N \N 11337 \N subfamily Arbutoideae \N \N \N \N \N 11338 \N subspecies Pimelea cracens subsp. cracens \N \N \N \N \N 11339 T.boquetensis Talamancalia Talamancalia boquetensis \N \N \N \N \N 11340 \N genus Banksia \N \N \N \N \N 11341 N.macrantha Nasa Nasa macrantha \N \N \N \N \N 11342 \N subspecies Klasea flavescens subsp. leucantha \N \N \N \N \N 11343 T.nudicaulis Teesdalia Teesdalia nudicaulis \N \N \N \N \N 11344 B.henryi Biondia Biondia henryi \N \N \N \N \N 11345 \N subspecies Hoffmannseggia oxycarpa subsp. arida \N \N \N \N \N 11346 P.grayanus Phaseolus Phaseolus grayanus \N \N \N \N \N 11347 P.caudatus Plectrelminthus Plectrelminthus caudatus \N \N \N \N \N 11348 B.pyrrhoclada Bauhinia Bauhinia pyrrhoclada \N \N \N \N \N 11349 \N genus Gaussia \N \N \N \N \N 11350 \N subspecies Carex scirpoidea subsp. stenochlaena \N \N \N \N \N 11351 L.7324 Linum Linum cf. prostratum Weigend 7324 \N \N \N \N \N 11352 H.pusillus Hyoscyamus Hyoscyamus pusillus \N \N \N \N \N 11353 V.saxatilis Valeriana Valeriana saxatilis \N \N \N \N \N 11354 A.montana Anemone Anemone montana \N \N \N \N \N 11355 M.nobilis Meriania Meriania nobilis \N \N \N \N \N 11356 C.conspicua Chionochloa Chionochloa conspicua \N \N \N \N \N 11357 H.ludwigii Hibiscus Hibiscus ludwigii \N \N \N \N \N 11358 E.bayeri Eriospermum Eriospermum bayeri \N \N \N \N \N 11359 C.montanus Costus Costus montanus \N \N \N \N \N 11360 A.reficiens Acacia Acacia reficiens \N \N \N \N \N 11361 \N species group Labiatoides \N \N \N \N \N 11362 O.6689 Orchidantha Orchidantha cf. borneensis Nagamasu 6689 \N \N \N \N \N 11363 A.cullmaniorum Aripuana Aripuana cullmaniorum \N \N \N \N \N 11364 M.sagittifolia Malvella Malvella sagittifolia \N \N \N \N \N 11365 \N varietas Croton ramillatus var. magniglandulifer \N \N \N \N \N 11366 O.hastatum Oncidium Oncidium hastatum \N \N \N \N \N 11367 D.geyeri Delphinium Delphinium geyeri \N \N \N \N \N 11368 B.azorica Bellis Bellis azorica \N \N \N \N \N 11369 B.repens Bouteloua Bouteloua repens \N \N \N \N \N 11370 \N subspecies Akebia trifoliata subsp. trifoliata \N \N \N \N \N 11371 P.viridis Psychotria Psychotria viridis \N \N \N \N \N 11372 J.dubia Jordaaniella Jordaaniella dubia \N \N \N \N \N 11373 S.perparva Sebaea Sebaea perparva \N \N \N \N \N 11374 M.achradifolia Myrsine Myrsine achradifolia \N \N \N \N \N 11375 \N genus Geissoloma \N \N \N \N \N 11376 R.ochroleuca Ruellia Ruellia ochroleuca \N \N \N \N \N 11377 L.stellata Lomelosia Lomelosia stellata \N \N \N \N \N 11378 S.lawsonii Strobilanthes Strobilanthes lawsonii \N \N \N \N \N 11379 A.atrorubens Allium Allium atrorubens \N \N \N \N \N 11380 \N subspecies Aichryson pachycaulon subsp. gonzalez-hernandezii \N \N \N \N \N 11381 \N genus Triglochin \N \N \N \N \N 11382 V.15645 unclassified Vaccinieae Vaccinieae sp. Luteyn & Pedraza 15645 \N \N \N \N \N 11383 N.celebica Neuburgia Neuburgia celebica \N \N \N \N \N 11384 S.93 Sebaea Sebaea cf. albens Kissling 93 \N \N \N \N \N 11385 \N genus Xylophragma \N \N \N \N \N 11386 P.rivularis Pseudomussaenda Pseudomussaenda rivularis \N \N \N \N \N 11387 M.depauperata Mimosa Mimosa depauperata \N \N \N \N \N 11388 M.packardiae Mentzelia Mentzelia packardiae \N \N \N \N \N 11389 A.4325 Amyema Amyema sp. Takeuichi 4325 \N \N \N \N \N 11390 A.bodinii Astragalus Astragalus bodinii \N \N \N \N \N 11391 \N no rank environmental samples Taxonomy:321820 \N \N \N \N \N 11392 \N genus Aulotandra \N \N \N \N \N 11393 E.irwinii Encholirium Encholirium irwinii \N \N \N \N \N 11394 S.graciliflora Stenoseris Stenoseris graciliflora \N \N \N \N \N 11395 D.scapigera Dahlia Dahlia scapigera \N \N \N \N \N 11396 \N genus Tetragonotheca \N \N \N \N \N 11397 P.formosa Pieris Pieris formosa \N \N \N \N \N 11398 E.minuta Eustegia Eustegia minuta \N \N \N \N \N 11399 S.acrisepala Specklinia Specklinia acrisepala \N \N \N \N \N 11400 R.rubineiflorum Rhododendron Rhododendron rubineiflorum \N \N \N \N \N 11401 \N genus Tetrachondra \N \N \N \N \N 11402 \N genus Carduus \N \N \N \N \N 11403 B.epica Banksia Banksia epica \N \N \N \N \N 11404 S.pulvinata Shoshonea Shoshonea pulvinata \N \N \N \N \N 11405 M.beillei Macaranga Macaranga beillei \N \N \N \N \N 11406 P.salicina Prunus Prunus salicina Japanese plum,su-momo \N \N \N \N 11407 B.rubella Begonia Begonia rubella \N \N \N \N \N 11408 A.fritzmuelleri Ananas Ananas fritzmuelleri \N \N \N \N \N 11409 R.tomentella Rosa Rosa tomentella \N \N \N \N \N 11410 V.vandellioides Veronica Veronica vandellioides \N \N \N \N \N 11411 A.maquilingensis Alocasia Alocasia maquilingensis \N \N \N \N \N 11412 A.karina Acacia Acacia karina \N \N \N \N \N 11413 H.sonora Hernandia Hernandia sonora \N \N \N \N \N 11414 E.foetidum Eryngium Eryngium foetidum culantro,false coriander \N \N \N \N 11415 C.fragrans Chonemorpha Chonemorpha fragrans \N \N \N \N \N 11416 H.oldhamii Hylodesmum Hylodesmum oldhamii \N \N \N \N \N 11417 \N subspecies Erica benguelensis subsp. benguelensis \N \N \N \N \N 11418 \N genus Lafoensia \N \N \N \N \N 11419 P.pumila Psychotria Psychotria pumila \N \N \N \N \N 11420 \N genus Pithecellobium \N \N \N \N \N 11421 \N genus Sauropus \N \N \N \N \N 11422 B.vejar-vazquezii Bursera Bursera vejar-vazquezii \N \N \N \N \N 11423 P.reticulatus Pogonolobus Pogonolobus reticulatus \N \N \N \N \N 11424 P.physaloides Physochlaina Physochlaina physaloides \N \N \N \N \N 11425 E.strigosum Elatostema Elatostema strigosum \N \N \N \N \N 11426 D.latiflorus Dendrocalamus Dendrocalamus latiflorus sweet bamboo \N \N \N \N 11427 E.laciniatum Erodium Erodium laciniatum \N \N \N \N \N 11428 I.agrestis Ichthyothere Ichthyothere agrestis \N \N \N \N \N 11429 \N genus Strychnopsis \N \N \N \N \N 11430 T.chrysotricha Tabebuia Tabebuia chrysotricha \N \N \N \N \N 11431 A.oncocalyx Auxemma Auxemma oncocalyx \N \N \N \N \N 11432 C.kalachariensis Cleome Cleome kalachariensis \N \N \N \N \N 11433 C.glomerabilis Carex Carex glomerabilis \N \N \N \N \N 11434 S.resinosa Shorea Shorea resinosa \N \N \N \N \N 11435 \N genus Temnadenia \N \N \N \N \N 11436 \N genus Sophronitella \N \N \N \N \N 11437 R.chiangii Rhus Rhus chiangii \N \N \N \N \N 11438 C.SIM-2007 Cardamine Cardamine sp. SIM-2007 \N \N \N \N \N 11439 X.angustiflorus Xerosiphon Xerosiphon angustiflorus \N \N \N \N \N 11440 A.undulatifolia Arenga Arenga undulatifolia \N \N \N \N \N 11441 P.cocomilia Prunus Prunus cocomilia \N \N \N \N \N 11442 A.eriopoda Acacia Acacia eriopoda \N \N \N \N \N 11443 L.singulare Leucadendron Leucadendron singulare \N \N \N \N \N 11444 R.spathacea Rhaphidophora Rhaphidophora spathacea \N \N \N \N \N 11445 C.maxima Cardamine Cardamine maxima large toothwort \N \N \N \N 11446 G.calochlorum Gymnocalycium Gymnocalycium calochlorum \N \N \N \N \N 11447 H.laxum Haemodorum Haemodorum laxum \N \N \N \N \N 11448 A.flava Achimenes Achimenes flava \N \N \N \N \N 11449 C.flammosus Cyrtanthus Cyrtanthus flammosus \N \N \N \N \N 11450 \N genus Parajubaea \N \N \N \N \N 11451 C.exalata Crowea Crowea exalata \N \N \N \N \N 11452 A.fusciflorus Adiscanthus Adiscanthus fusciflorus \N \N \N \N \N 11453 \N genus Barjonia \N \N \N \N \N 11454 E.bemarahaensis Euphorbia Euphorbia bemarahaensis \N \N \N \N \N 11455 I.swaziensis Indigofera Indigofera swaziensis \N \N \N \N \N 11456 C.furfuracea Callicarpa Callicarpa furfuracea \N \N \N \N \N 11457 B.sphaerocephala Borya Borya sphaerocephala \N \N \N \N \N 11458 L.rigidus Lotus Lotus rigidus \N \N \N \N \N 11459 T.brahuica Thuspeinanta Thuspeinanta brahuica \N \N \N \N \N 11460 S.JY-2007-1 Solms-laubachia Solms-laubachia sp. JY-2007-1 \N \N \N \N \N 11461 \N varietas Pieris formosa var. forrestii \N \N \N \N \N 11462 M.microspermus Mitracarpus Mitracarpus microspermus \N \N \N \N \N 11463 M.2670 Maxillaria Maxillaria cf. uncata Whitten 2670 \N \N \N \N \N 11464 R.tomentosa Ruellia Ruellia tomentosa \N \N \N \N \N 11465 S.wightiana Sambucus Sambucus wightiana \N \N \N \N \N 11466 E.multiflexuosa Erica Erica multiflexuosa \N \N \N \N \N 11467 P.lachnocarpa Pseudoweinmannia Pseudoweinmannia lachnocarpa \N \N \N \N \N 11468 A.barbatum Alangium Alangium barbatum \N \N \N \N \N 11469 C.scorzonerifolia Castilleja Castilleja scorzonerifolia \N \N \N \N \N 11470 N.disperma Nymphoides Nymphoides disperma \N \N \N \N \N 11471 E.hexandra Elatine Elatine hexandra \N \N \N \N \N 11472 A.coccineum Amblyopetalum Amblyopetalum coccineum \N \N \N \N \N 11473 D.thodei Disa Disa thodei \N \N \N \N \N 11474 R.prostratum Ribes Ribes prostratum \N \N \N \N \N 11475 C.joanneana Claytonia Claytonia joanneana \N \N \N \N \N 11476 N.hildebrandtii Newtonia Newtonia hildebrandtii \N \N \N \N \N 11477 C.72-2017 Cynanchum Cynanchum sp. 72-2017 \N \N \N \N \N 11478 V.cracca Vicia Vicia cracca bird vetch \N \N \N \N 11479 M.decussatum Myriophyllum Myriophyllum decussatum \N \N \N \N \N 11480 E.longipes Erigeron Erigeron longipes \N \N \N \N \N 11481 P.mandonii Perezia Perezia mandonii \N \N \N \N \N 11482 M.denticulata Matelea Matelea denticulata \N \N \N \N \N 11483 A.triplinervis Ayapana Ayapana triplinervis \N \N \N \N \N 11484 A.tessellata Amsinckia Amsinckia tessellata \N \N \N \N \N 11485 R.309 Rytidosperma Rytidosperma aff. pilosum Pirie 309 \N \N \N \N \N 11486 A.asterias Asteranthe Asteranthe asterias \N \N \N \N \N 11487 S.eremophilus Senecio Senecio eremophilus desert ragwort \N \N \N \N 11488 \N family Hydrostachyaceae \N \N \N \N \N 11489 P.mucida Plagiostachys Plagiostachys mucida \N \N \N \N \N 11490 Y.alpina Yushania Yushania alpina \N \N \N \N \N 11491 D.peregrina Dicentra Dicentra peregrina \N \N \N \N \N 11492 I.linearis Isolona Isolona linearis \N \N \N \N \N 11493 H.heterophylla Haloragis Haloragis heterophylla \N \N \N \N \N 11494 \N tribe Humbertieae \N \N \N \N \N 11495 I.candidissimum Indigastrum Indigastrum candidissimum \N \N \N \N \N 11496 A.amplexicaulis Anthocleista Anthocleista amplexicaulis \N \N \N \N \N 11497 \N genus Ophiorrhiza \N \N \N \N \N 11498 P.filifolia Pinguicula Pinguicula filifolia \N \N \N \N \N 11499 \N varietas Pityopsis graminifolia var. aequifolia \N \N \N \N \N 11500 E.carnosus Euonymus Euonymus carnosus \N \N \N \N \N 11501 R.BAC-2010 unclassified Rutaceae Rutaceae sp. F BAC-2010 \N \N \N \N \N 11502 C.chapalana Cuscuta Cuscuta chapalana \N \N \N \N \N 11503 \N subspecies Eriosyce senilis subsp. coimasensis \N \N \N \N \N 11504 A.hookeri Alstroemeria Alstroemeria hookeri \N \N \N \N \N 11505 T.penitilobata Thottea Thottea penitilobata \N \N \N \N \N 11506 E.medusae Epidendrum Epidendrum medusae \N \N \N \N \N 11507 H.acutifolium Haplophyllum Haplophyllum acutifolium \N \N \N \N \N 11508 U.inflata Utricularia Utricularia inflata swollen bladderwort \N \N \N \N 11509 A.calcarea Archanthemis Archanthemis calcarea \N \N \N \N \N 11510 \N genus Syreitschikovia \N \N \N \N \N 11511 \N varietas Betula platyphylla var. japonica \N \N \N \N \N 11512 \N varietas Lycium berlandieri var. parviflorum \N \N \N \N \N 11513 E.rhopalantha Erica Erica rhopalantha \N \N \N \N \N 11514 P.hindsii Pseudosasa Pseudosasa hindsii \N \N \N \N \N 11515 V.dichrus Veronica Veronica dichrus \N \N \N \N \N 11516 R.latifolia Rhynchospora Rhynchospora latifolia \N \N \N \N \N 11517 T.hispida Tamarix Tamarix hispida \N \N \N \N \N 11518 L.canum Leucosceptrum Leucosceptrum canum \N \N \N \N \N 11519 S.incanus Syncolostemon Syncolostemon incanus \N \N \N \N \N 11520 \N genus Atractocarpus \N \N \N \N \N 11521 G.megabracteolatus Gonocalyx Gonocalyx megabracteolatus \N \N \N \N \N 11522 D.michieana Delarbrea Delarbrea michieana \N \N \N \N \N 11523 T.capsulifera Tamridaea Tamridaea capsulifera \N \N \N \N \N 11524 U.membranacea Urtica Urtica membranacea \N \N \N \N \N 11525 E.salteri Erica Erica salteri \N \N \N \N \N 11526 C.arabica Ceropegia Ceropegia arabica \N \N \N \N \N 11527 P.macrophylla Pentaclethra Pentaclethra macrophylla \N \N \N \N \N 11528 G.hypoleuca Gochnatia Gochnatia hypoleuca \N \N \N \N \N 11529 A.JM02 Aristolochia Aristolochia sp. JM02 \N \N \N \N \N 11530 A.laricifolia Aspalathus Aspalathus laricifolia \N \N \N \N \N 11531 C.humboldtianus Calamus Calamus humboldtianus \N \N \N \N \N 11532 L.seseloides Ledebouriella Ledebouriella seseloides \N \N \N \N \N 11533 \N family Anarthriaceae \N \N \N \N \N 11534 G.populifolium Gossypium Gossypium populifolium \N \N \N \N \N 11535 S.platycarpa Synthyris Synthyris platycarpa \N \N \N \N \N 11536 S.glandulosa Stevia Stevia glandulosa \N \N \N \N \N 11537 L.confertifolia Lysimachia Lysimachia confertifolia \N \N \N \N \N 11538 C.mariscus Cladium Cladium mariscus \N \N \N \N \N 11539 C.cylindrica Calathea Calathea cylindrica \N \N \N \N \N 11540 L.roodii Leucadendron Leucadendron roodii \N \N \N \N \N 11541 B.vanrensburgii Braunsia Braunsia vanrensburgii \N \N \N \N \N 11542 E.corticosa Eucalyptus Eucalyptus corticosa \N \N \N \N \N 11543 \N genus Killickia \N \N \N \N \N 11544 O.anatolica Orobanche Orobanche anatolica \N \N \N \N \N 11545 S.dominii Solenogyne Solenogyne dominii \N \N \N \N \N 11546 \N genus Palmerella \N \N \N \N \N 11547 W.sinensis Wisteria Wisteria sinensis \N \N \N \N \N 11549 E.penicilliformis Erica Erica penicilliformis \N \N \N \N \N 11550 \N genus Polycalymma \N \N \N \N \N 11551 P.gypsicola Pinguicula Pinguicula gypsicola \N \N \N \N \N 11552 F.oxystachya Fimbristylis Fimbristylis oxystachya \N \N \N \N \N 11553 A.leucodes Artemisia Artemisia leucodes \N \N \N \N \N 11554 B.lullfitzii Banksia Banksia lullfitzii \N \N \N \N \N 11555 G.expansus Goniothalamus Goniothalamus expansus \N \N \N \N \N 11556 \N subspecies Clermontia arborescens subsp. waihiae \N \N \N \N \N 11557 \N genus Andersonia \N \N \N \N \N 11558 U.setigera Urochloa Urochloa setigera \N \N \N \N \N 11559 A.greggii Acacia Acacia greggii catclaw acacia \N \N \N \N 11560 E.subholarcticum Empetrum Empetrum subholarcticum \N \N \N \N \N 11561 H.affine Haplophyllum Haplophyllum affine \N \N \N \N \N 11562 N.madagascariense Neoapaloxylon Neoapaloxylon madagascariense \N \N \N \N \N 11563 C.microzyga Cardamine Cardamine microzyga \N \N \N \N \N 11564 O.argyrophylla Oxalis Oxalis argyrophylla \N \N \N \N \N 11565 T.K3670 unclassified Taraxacum Taraxacum (sect. Sinensia) sp. K3670 \N \N \N \N \N 11566 \N genus Saxifragella \N \N \N \N \N 11567 P.capensis Pappea Pappea capensis \N \N \N \N \N 11568 \N varietas Rosa odorata var. pseudindica \N \N \N \N \N 11569 C.flava Crossyne Crossyne flava \N \N \N \N \N 11570 M.montanum Myoporum Myoporum montanum \N \N \N \N \N 11571 I.bosseri Indigofera Indigofera bosseri \N \N \N \N \N 11572 S.diversifolia Scopellaria Scopellaria diversifolia \N \N \N \N \N 11573 \N genus Dicorynia \N \N \N \N \N 11574 P.glabrata Phyllostachys Phyllostachys glabrata \N \N \N \N \N 11575 F.gracile Funastrum Funastrum gracile \N \N \N \N \N 11576 A.petaloideum Amomum Amomum petaloideum \N \N \N \N \N 11577 M.littoralis Monanthochloe Monanthochloe littoralis \N \N \N \N \N 11578 I.cylindrica Imperata Imperata cylindrica \N \N \N \N \N 11579 E.fiherenensis Euphorbia Euphorbia fiherenensis \N \N \N \N \N 11580 G.microphylla Gaertnera Gaertnera microphylla \N \N \N \N \N 11581 R.lesterae Rosa Rosa lesterae \N \N \N \N \N 11582 T.JK3710 unclassified Taraxacum Taraxacum (sect. Dioszegia) sp. JK3710 \N \N \N \N \N 11583 E.cinerea Eucalyptus Eucalyptus cinerea Argyle apple \N \N \N \N 11584 M.grisea Mirandea Mirandea grisea \N \N \N \N \N 11585 D.gratianopolitanus Dianthus Dianthus gratianopolitanus cheddar pink \N \N \N \N 11586 S.dulcis Spondias Spondias dulcis Otaheite-apple,Polynesian-plum,ambarella,golden-apple,wi-tree,yellow plum \N \N \N \N 11587 R.celebicum Rhododendron Rhododendron celebicum \N \N \N \N \N 11588 L.atrata Lepanthes Lepanthes atrata \N \N \N \N \N 11589 E.chartaceifolia Eschweilera Eschweilera chartaceifolia \N \N \N \N \N 11590 W.littoricola Wahlenbergia Wahlenbergia littoricola \N \N \N \N \N 11591 C.fallax Colocasia Colocasia fallax \N \N \N \N \N 11592 \N varietas Pancratium foetidum var. tunetanum \N \N \N \N \N 11593 V.gracilipes Valeriana Valeriana gracilipes \N \N \N \N \N 11594 D.macrophyllus Damnacanthus Damnacanthus macrophyllus \N \N \N \N \N 11595 N.astrocarpa Neobassia Neobassia astrocarpa \N \N \N \N \N 11596 H.hamata Habenaria Habenaria hamata \N \N \N \N \N 11597 P.clavatum Phebalium Phebalium clavatum \N \N \N \N \N 11598 T.impetiginosa Tabebuia Tabebuia impetiginosa \N \N \N \N \N 11599 F.splendida Faradaya Faradaya splendida \N \N \N \N \N 11600 S.panamensis Strychnos Strychnos panamensis \N \N \N \N \N 11601 L.multiflora Lebeckia Lebeckia multiflora \N \N \N \N \N 11602 \N genus Eriocnema \N \N \N \N \N 11603 N.papa Nematoceras Nematoceras papa \N \N \N \N \N 11604 S.MAG-2009 Strychnos Strychnos sp. MAG-2009 \N \N \N \N \N 11605 T.haitiensis Tolumnia Tolumnia haitiensis \N \N \N \N \N 11606 L.meyerianum Leucadendron Leucadendron meyerianum \N \N \N \N \N 11607 \N subtribe Scolochloinae \N \N \N \N \N 11608 E.gunnii Eucalyptus Eucalyptus gunnii cider tree \N \N \N \N 11609 R.stylosa Rhizophora Rhizophora stylosa \N \N \N \N \N 11610 \N genus Amethystea \N \N \N \N \N 11611 D.welwitschii Dactyliandra Dactyliandra welwitschii \N \N \N \N \N 11612 \N genus Comparettia \N \N \N \N \N 11613 I.365 Indigofera Indigofera sp. 1 Taylor 365 \N \N \N \N \N 11614 C.rhytidocarpa Camellia Camellia rhytidocarpa \N \N \N \N \N 11615 D.virginalis Disa Disa virginalis \N \N \N \N \N 11616 G.vaginata Gaertnera Gaertnera vaginata \N \N \N \N \N 11617 \N genus Leycesteria \N \N \N \N \N 11618 H.gallaense Haplocoelum Haplocoelum gallaense \N \N \N \N \N 11619 P.limminghei Psychopsis Psychopsis limminghei \N \N \N \N \N 11620 D.draconis Disa Disa draconis \N \N \N \N \N 11621 N.minor Neogoezia Neogoezia minor \N \N \N \N \N 11622 A.maderensis Armeria Armeria maderensis \N \N \N \N \N 11623 B.tenerrima Basedowia Basedowia tenerrima \N \N \N \N \N 11624 E.salsugineum Eutrema Eutrema salsugineum \N \N \N \N \N 11625 T.parviceps Taxandria Taxandria parviceps \N \N \N \N \N 11626 C.thorelii Curcuma Curcuma thorelii \N \N \N \N \N 11627 \N genus Angelonia \N \N \N \N \N 11628 M.apetala Matayba Matayba apetala \N \N \N \N \N 11629 S.surattensis Senna Senna surattensis \N \N \N \N \N 11630 \N genus Caiophora \N \N \N \N \N 11631 P.hieroglyphica Phalaenopsis Phalaenopsis hieroglyphica \N \N \N \N \N 11632 A.sphaerocarpa Adenia Adenia sphaerocarpa \N \N \N \N \N 11633 \N genus Ornithogalum \N \N \N \N \N 11634 D.cynanchoides Dolichandra Dolichandra cynanchoides \N \N \N \N \N 11635 A.6697 Allium Allium sp. GAT 6697 \N \N \N \N \N 11636 T.peculiaris Tridentea Tridentea peculiaris \N \N \N \N \N 11637 O.gillettii Ormocarpum Ormocarpum gillettii \N \N \N \N \N 11638 W.subsessilis Weigela Weigela subsessilis \N \N \N \N \N 11639 I.phyllopodus Isodon Isodon phyllopodus \N \N \N \N \N 11640 S.deferens Senecio Senecio deferens \N \N \N \N \N 11641 C.longifolia Cyclopia Cyclopia longifolia \N \N \N \N \N 11642 \N genus Gethyllis \N \N \N \N \N 11643 P.dentata Pentzia Pentzia dentata \N \N \N \N \N 11644 F.ottoniifolia Ficus Ficus ottoniifolia \N \N \N \N \N 11645 S.karuizawensis Scirpus Scirpus karuizawensis \N \N \N \N \N 11646 V.hookeri Valeriana Valeriana hookeri \N \N \N \N \N 11647 G.cinerea Genista Genista cinerea \N \N \N \N \N 11648 M.colchaguensis Myrceugenia Myrceugenia colchaguensis \N \N \N \N \N 11649 A.chamaemeniscus Astragalus Astragalus chamaemeniscus \N \N \N \N \N 11650 C.araliifolia Carnarvonia Carnarvonia araliifolia \N \N \N \N \N 11651 O.hedysaroides Oxalis Oxalis hedysaroides \N \N \N \N \N 11652 \N genus Aster \N \N \N \N \N 11653 P.recta Potentilla Potentilla recta \N \N \N \N \N 11654 \N genus Mezilaurus \N \N \N \N \N 11655 C.macromeris Coryphantha Coryphantha macromeris \N \N \N \N \N 11656 O.dayi Origanum Origanum dayi \N \N \N \N \N 11657 E.eanophylla Euphorbia Euphorbia eanophylla \N \N \N \N \N 11658 \N subspecies Senecio talinoides subsp. cylindricus \N \N \N \N \N 11659 C.stapfianum Cicer Cicer stapfianum \N \N \N \N \N 11660 B.hildebrandtii Blepharis Blepharis hildebrandtii \N \N \N \N \N 11661 B.1046 Byttneria Byttneria sp. E Sidiyasa 1046 \N \N \N \N \N 11662 A.ochreatus Astragalus Astragalus ochreatus \N \N \N \N \N 11663 P.arenarius Phyllanthus Phyllanthus arenarius \N \N \N \N \N 11664 P.maxonii Pedicularis Pedicularis maxonii \N \N \N \N \N 11665 E.gamophylla Eucalyptus Eucalyptus gamophylla \N \N \N \N \N 11666 H.populnea Hoheria Hoheria populnea \N \N \N \N \N 11667 \N subspecies Fuchsia regia subsp. regia \N \N \N \N \N 11668 R.amplexifolia Richterago Richterago amplexifolia \N \N \N \N \N 11669 P.arbelaezii Passiflora Passiflora arbelaezii \N \N \N \N \N 11670 P.worcesterae Pelargonium Pelargonium worcesterae \N \N \N \N \N 11671 O.montis-khortiati Oenanthe Oenanthe montis-khortiati \N \N \N \N \N 11672 V.californica Valeriana Valeriana californica \N \N \N \N \N 11673 P.alpinus Penstemon Penstemon alpinus \N \N \N \N \N 11674 M.cabucu Miconia Miconia cabucu \N \N \N \N \N 11675 L.letouzeyi Ledermanniella Ledermanniella letouzeyi \N \N \N \N \N 11676 L.insularis Lordhowea Lordhowea insularis \N \N \N \N \N 11677 S.enneaphylla Sarcocapnos Sarcocapnos enneaphylla \N \N \N \N \N 11678 M.maguirei Mimosa Mimosa maguirei \N \N \N \N \N 11679 A.digyna Arenaria Arenaria digyna \N \N \N \N \N 11680 \N varietas Trichosanthes kirilowii var. japonica \N \N \N \N \N 11681 \N tribe Bembicieae \N \N \N \N \N 11682 S.vierlingii Schunkea Schunkea vierlingii \N \N \N \N \N 11683 I.21829 Iris Iris aff. nusairiensis Chase 21829 \N \N \N \N \N 11684 P.cornifolium Pittosporum Pittosporum cornifolium \N \N \N \N \N 11685 F.diguetii Fouquieria Fouquieria diguetii \N \N \N \N \N 11686 D.govidjoae Dendrobium Dendrobium govidjoae \N \N \N \N \N 11687 R.wardii Rhododendron Rhododendron wardii \N \N \N \N \N 11688 S.sylvatica Stillingia Stillingia sylvatica queen's-delight \N \N \N \N 11689 N.montana Nymphoides Nymphoides montana \N \N \N \N \N 11690 \N genus Eritrichium \N \N \N \N \N 11691 S.dehiscens Schizomussaenda Schizomussaenda dehiscens \N \N \N \N \N 11692 \N genus Angadenia \N \N \N \N \N 11693 A.glomerata Artemisia Artemisia glomerata \N \N \N \N \N 11694 B.brachycarpa Braya Braya brachycarpa \N \N \N \N \N 11695 \N genus Popowia \N \N \N \N \N 11696 M.breviflora Munronia Munronia breviflora \N \N \N \N \N 11697 A.bicornis Aegilops Aegilops bicornis \N \N \N \N \N 11698 \N genus Acrosanthes \N \N \N \N \N 11699 L.accommodata Linzia Linzia accommodata \N \N \N \N \N 11700 A.tashkenticum Allium Allium tashkenticum \N \N \N \N \N 11701 \N genus Siebera \N \N \N \N \N 11702 A.alpina Adenostyles Adenostyles alpina \N \N \N \N \N 11703 X.alsaticum Xanthoselinum Xanthoselinum alsaticum \N \N \N \N \N 11704 A.alpinus Aster Aster alpinus \N \N \N \N \N 11705 A.oblongum Acer Acer oblongum \N \N \N \N \N 11706 C.sericea Cyanicula Cyanicula sericea \N \N \N \N \N 11707 M.pleiogynus Mallotus Mallotus pleiogynus \N \N \N \N \N 11708 R.minus Rhododendron Rhododendron minus piedmont rhododendron \N \N \N \N 11709 G.fruticosa Galvezia Galvezia fruticosa \N \N \N \N \N 11710 A.velutinum Acer Acer velutinum velvet maple \N \N \N \N 11711 P.tongkanensis Pulsatilla Pulsatilla tongkanensis \N \N \N \N \N 11712 \N genus Thompsonella \N \N \N \N \N 11713 C.oxyacanthus Carthamus Carthamus oxyacanthus wild safflower \N \N \N \N 11714 \N genus Kumlienia \N \N \N \N \N 11715 R.peregrina Rubia Rubia peregrina Levantine madder \N \N \N \N 11716 G.cosmantha Gentianella Gentianella cosmantha \N \N \N \N \N 11717 P.elatior Primula Primula elatior oxlip \N \N \N \N 11718 P.hirsutissima Paraphlomis Paraphlomis hirsutissima \N \N \N \N \N 11719 A.helicophyllum Allium Allium helicophyllum \N \N \N \N \N 11720 R.ollissiponensis Ranunculus Ranunculus ollissiponensis \N \N \N \N \N 11721 E.baramensis Etlingera Etlingera baramensis \N \N \N \N \N 11722 L.thamnia Laetia Laetia thamnia \N \N \N \N \N 11723 \N varietas Physalis philadelphica var. immaculata \N \N \N \N \N 11724 E.pauliani Euphorbia Euphorbia pauliani \N \N \N \N \N 11725 S.vvedenskyi Salsola Salsola vvedenskyi \N \N \N \N \N 11726 L.serpens Lignariella Lignariella serpens \N \N \N \N \N 11727 L.grandiflora Licuala Licuala grandiflora \N \N \N \N \N 11728 M.gracilis Mimosa Mimosa gracilis \N \N \N \N \N 11729 L.erosipetala Lysimachia Lysimachia erosipetala \N \N \N \N \N 11730 C.macrophylla Callicarpa Callicarpa macrophylla \N \N \N \N \N 11731 B.longirostris Balaka Balaka longirostris \N \N \N \N \N 11732 \N genus Bambekea \N \N \N \N \N 11733 \N genus Stenotyla \N \N \N \N \N 11734 N.D1 Neonauclea Neonauclea sp. D1 \N \N \N \N \N 11735 H.thamnoideus Hedythyrsus Hedythyrsus thamnoideus \N \N \N \N \N 11736 A.brevilabris Alpinia Alpinia brevilabris \N \N \N \N \N 11737 C.apiifolia Clematis Clematis apiifolia \N \N \N \N \N 11738 A.linearis Abrotanella Abrotanella linearis \N \N \N \N \N 11739 R.rugosum Rhododendron Rhododendron rugosum \N \N \N \N \N 11740 P.picturata Passiflora Passiflora picturata \N \N \N \N \N 11741 \N genus Meryta \N \N \N \N \N 11742 R.vindobonensis Ranunculus Ranunculus vindobonensis \N \N \N \N \N 13776 \N genus Aphanelytrum \N \N \N \N \N 11743 P.polycarpoides Polycarpon Polycarpon polycarpoides \N \N \N \N \N 11744 L.alpestris Lathyrus Lathyrus alpestris \N \N \N \N \N 11745 P.venenosus Parartocarpus Parartocarpus venenosus \N \N \N \N \N 11746 R.dimitrum Rhododendron Rhododendron dimitrum \N \N \N \N \N 11747 E.bocquetii Erica Erica bocquetii \N \N \N \N \N 11748 T.S5649 unclassified Taraxacum Taraxacum (sect. Kashmirana) sp. S5649 \N \N \N \N \N 11749 B.carinata Brassica Brassica carinata Abyssinian mustard,Ethiopian mustard \N \N \N \N 11750 G.graminea Gomphrena Gomphrena graminea \N \N \N \N \N 11751 M.alnifolia Macaranga Macaranga alnifolia \N \N \N \N \N 11752 C.133 Conradina Conradina sp. Edwards et al. 133 \N \N \N \N \N 11753 S.09.2003 Salicornia Salicornia aff. perennans Wucherer 09.2003 \N \N \N \N \N 11754 C.regelii Cestrum Cestrum regelii \N \N \N \N \N 11755 H.rivularis Hymenostephium Hymenostephium rivularis \N \N \N \N \N 11756 F.inflata Fuchsia Fuchsia inflata \N \N \N \N \N 11757 A.barbata Aconitella Aconitella barbata \N \N \N \N \N 11758 S.gracilis Schoenefeldia Schoenefeldia gracilis \N \N \N \N \N 11759 T.TKX521 unclassified Taraxacum Taraxacum (sect. Celtica) sp. TKX521 \N \N \N \N \N 11760 S.stenopetalum Satyrium Satyrium stenopetalum \N \N \N \N \N 11761 T.JG-2004 Tamarix Tamarix hybrid sp. JG-2004 \N \N \N \N \N 11762 D.sprucei Duranta Duranta sprucei \N \N \N \N \N 11763 L.akkusianum Lilium Lilium akkusianum \N \N \N \N \N 11764 \N genus Pityopus \N \N \N \N \N 11765 \N subspecies Genista florida subsp. maroccana \N \N \N \N \N 11766 \N varietas Polystachya poikilantha var. leucorhoda \N \N \N \N \N 11767 \N tribe Beslerieae \N \N \N \N \N 11768 \N genus Rondeletia \N \N \N \N \N 11769 W.aphylla Wullschlaegelia Wullschlaegelia aphylla \N \N \N \N \N 11770 \N genus Hexalobus \N \N \N \N \N 11771 P.xanthina Polygala Polygala xanthina \N \N \N \N \N 11772 S.paniculata Schoenorchis Schoenorchis paniculata \N \N \N \N \N 11773 R.sphaerospermus Ranunculus Ranunculus sphaerospermus \N \N \N \N \N 11774 R.chilensis Rhodophiala Rhodophiala chilensis \N \N \N \N \N 11775 \N varietas Festuca marginata var. alopecuroides \N \N \N \N \N 11776 T.mexicana Tiquilia Tiquilia mexicana \N \N \N \N \N 11777 C.fraseri Commersonia Commersonia fraseri \N \N \N \N \N 11778 P.marginatum Pseudobombax Pseudobombax marginatum \N \N \N \N \N 11779 \N varietas Artemisia mendozana var. mendozana \N \N \N \N \N 11780 \N genus Exocarpos \N \N \N \N \N 11781 C.cordatum Cyrtochilum Cyrtochilum cordatum \N \N \N \N \N 11782 N.pubiflora Nassella Nassella pubiflora \N \N \N \N \N 11783 F.luschnathiana Ficus Ficus luschnathiana \N \N \N \N \N 11784 C.elongatum Cinnamomum Cinnamomum elongatum \N \N \N \N \N 11785 A.acutibractea Atriplex Atriplex acutibractea \N \N \N \N \N 11786 E.intricatissima Eremodraba Eremodraba intricatissima \N \N \N \N \N 11787 D.formosana Drypetes Drypetes formosana \N \N \N \N \N 11788 T.undulatum Trillium Trillium undulatum painted trillium \N \N \N \N 11789 R.primuliflorum Rhododendron Rhododendron primuliflorum \N \N \N \N \N 11790 C.SRR-2011 Chondrorhyncha Chondrorhyncha sp. SRR-2011 \N \N \N \N \N 11791 B.131 Begonia Begonia sp. Forrest 131 \N \N \N \N \N 11792 C.alopecoidea Carex Carex alopecoidea \N \N \N \N \N 11793 S.prolixus Streptocarpus Streptocarpus prolixus \N \N \N \N \N 11794 D.rhombifolia Daviesia Daviesia rhombifolia \N \N \N \N \N 11795 P.dichotoma Pedicularis Pedicularis dichotoma \N \N \N \N \N 11796 M.winkleriella Macaranga Macaranga winkleriella \N \N \N \N \N 11797 N.sericisepala Neofabricia Neofabricia sericisepala \N \N \N \N \N 11798 \N varietas Vigna hosei var. hosei \N \N \N \N \N 11799 L.graecus Leontodon Leontodon graecus \N \N \N \N \N 11800 B.rupestris Brachychiton Brachychiton rupestris Queensland bottletree,narrow-leaf bottletree \N \N \N \N 11801 C.oleosum Canarium Canarium oleosum \N \N \N \N \N 11802 \N genus Sebastiania \N \N \N \N \N 11803 \N genus Empodium \N \N \N \N \N 11804 E.peplus Euphorbia Euphorbia peplus \N \N \N \N \N 11805 S.capsicibaccatum Solanum Solanum capsicibaccatum \N \N \N \N \N 11806 P.robusta Piptadenia Piptadenia robusta \N \N \N \N \N 11807 A.oenotheroides Asclepias Asclepias oenotheroides \N \N \N \N \N 11808 D.hirta Draba Draba hirta \N \N \N \N \N 11809 F.schwarzii Ferocactus Ferocactus schwarzii \N \N \N \N \N 11810 \N varietas Phyllostegia glabra var. glabra \N \N \N \N \N 11811 R.TZA-4328 Resnova Resnova sp. TZA-4328 \N \N \N \N \N 11812 P.broteri Paeonia Paeonia broteri \N \N \N \N \N 11813 \N subspecies Arisaema thunbergii subsp. urashima \N \N \N \N \N 11814 B.ES97 Boechera Boechera sp. ES97 \N \N \N \N \N 11815 E.sphaerocephala Erica Erica sphaerocephala \N \N \N \N \N 11816 B.vitellina Bifrenaria Bifrenaria vitellina \N \N \N \N \N 11817 O.bilunulata Ophrys Ophrys bilunulata \N \N \N \N \N 11818 C.seminuda Conostylis Conostylis seminuda \N \N \N \N \N 11819 S.latiflorum Solanum Solanum latiflorum \N \N \N \N \N 11820 C.capitatum Clerodendrum Clerodendrum capitatum \N \N \N \N \N 11821 S.brevilabra Salvia Salvia brevilabra \N \N \N \N \N 11822 C.ferruginea Coursetia Coursetia ferruginea \N \N \N \N \N 11823 C.flavicans Chionochloa Chionochloa flavicans \N \N \N \N \N 11824 A.karasmontana Anacampseros Anacampseros karasmontana \N \N \N \N \N 11825 C.brachystachya Cyclanthera Cyclanthera brachystachya cuchinito \N \N \N \N 11826 N.vieillardii Nepenthes Nepenthes vieillardii \N \N \N \N \N 11827 P.bicilium Paspalum Paspalum bicilium \N \N \N \N \N 11828 O.heydeana Ocotea Ocotea heydeana \N \N \N \N \N 11829 B.fusialata Begonia Begonia fusialata \N \N \N \N \N 11830 S.romana Sideritis Sideritis romana \N \N \N \N \N 11831 P.centradenioides Pilea Pilea centradenioides \N \N \N \N \N 11832 C.THH-2011 Coryphantha Coryphantha aff. salinensis THH-2011 \N \N \N \N \N 11833 C.boreale Chrysanthemum Chrysanthemum boreale \N \N \N \N \N 11834 V.rupestris Vitis Vitis rupestris bush grape,rock grape,sand grape \N \N \N \N 11835 \N genus Camassia camases,camasses \N \N \N \N 13967 \N genus Rinoreocarpus \N \N \N \N \N 11836 H.liliputana Hoffmannseggella Hoffmannseggella liliputana \N \N \N \N \N 11837 \N genus Cladoraphis \N \N \N \N \N 11838 A.pontica Artemisia Artemisia pontica \N \N \N \N \N 11839 M.uniflora Melica Melica uniflora \N \N \N \N \N 11840 \N tribe Streptochaeteae \N \N \N \N \N 11841 B.05009 Begonia Begonia sp. Qiu 05009 \N \N \N \N \N 11842 A.MG-2009f Allium Allium sp. MG-2009f \N \N \N \N \N 11843 V.anagalloides Veronica Veronica anagalloides \N \N \N \N \N 11844 H.pinangoides Hydriastele Hydriastele pinangoides \N \N \N \N \N 11845 T.ciliata Toona Toona ciliata \N \N \N \N \N 11846 E.komaroviana Euphorbia Euphorbia komaroviana \N \N \N \N \N 11847 P.johnstonii Pilea Pilea johnstonii \N \N \N \N \N 11848 \N varietas Ficus pumila var. awkeotsang jelly fig \N \N \N \N 11849 V.galamensis Vernonia Vernonia galamensis \N \N \N \N \N 11850 A.dispar Arrabidaea Arrabidaea dispar \N \N \N \N \N 11851 R.lanata Riedelia Riedelia lanata \N \N \N \N \N 11852 O.harrisiana Ophiorrhiza Ophiorrhiza harrisiana \N \N \N \N \N 11853 M.farinosa Matthiola Matthiola farinosa \N \N \N \N \N 11854 M.mexicana Magnolia Magnolia mexicana \N \N \N \N \N 11855 \N genus Scirpus \N \N \N \N \N 11856 B.JT-2006-2 Boesenbergia Boesenbergia cf. pulcherrima JT-2006-2 \N \N \N \N \N 11857 \N varietas Phaius pulchellus var. pulchellus \N \N \N \N \N 11858 R.BAW-2010b Rulingia Rulingia sp. BAW-2010b \N \N \N \N \N 11859 A.palaestinum Arum Arum palaestinum Solomon's-lily,black calla \N \N \N \N 11860 \N varietas Chamaecrista nictitans var. ramosa \N \N \N \N \N 11861 A.remotijugus Astragalus Astragalus remotijugus \N \N \N \N \N 11862 E.japonicus Euchiton Euchiton japonicus \N \N \N \N \N 11863 A.bertolonii Alyssum Alyssum bertolonii \N \N \N \N \N 11864 E.traversii Euchiton Euchiton traversii \N \N \N \N \N 11865 Z.elegans Zephyra Zephyra elegans \N \N \N \N \N 11866 \N genus Trochocarpa \N \N \N \N \N 11867 S.affinis Salsola Salsola affinis \N \N \N \N \N 11868 S.dioecus Scirpoides Scirpoides dioecus \N \N \N \N \N 11869 S.graminifolia Scorzonera Scorzonera graminifolia \N \N \N \N \N 11870 S.haematodes Stenostephanus Stenostephanus haematodes \N \N \N \N \N 11871 \N varietas Lithops marmorata var. marmorata \N \N \N \N \N 11872 \N genus Ochroma \N \N \N \N \N 11873 \N genus Stipularia \N \N \N \N \N 11874 S.haastii Schizeilema Schizeilema haastii \N \N \N \N \N 11875 T.8455 Tetrastigma Tetrastigma sp. Wen 8455 \N \N \N \N \N 11876 A.repens Actinoschoenus Actinoschoenus repens \N \N \N \N \N 11877 Z.modesta Zollernia Zollernia modesta \N \N \N \N \N 11878 \N genus Oddoniodendron \N \N \N \N \N 11879 C.monantha Clidemia Clidemia monantha \N \N \N \N \N 11880 L.densa Lotononis Lotononis densa \N \N \N \N \N 11881 H.grandiflorum Helianthemum Helianthemum grandiflorum \N \N \N \N \N 11882 \N genus Maschalocephalus \N \N \N \N \N 11883 A.procurrens Arabis Arabis procurrens \N \N \N \N \N 11884 F.christophii Fosterella Fosterella christophii \N \N \N \N \N 11885 S.gracilis Sphenotoma Sphenotoma gracilis \N \N \N \N \N 11886 P.P077 Physalis Physalis sp. P077 \N \N \N \N \N 11887 P.cerasoides Polyalthia Polyalthia cerasoides \N \N \N \N \N 11888 P.texensis Phaseolus Phaseolus texensis \N \N \N \N \N 11889 C.perrieri Cynanchum Cynanchum perrieri \N \N \N \N \N 11890 C.mollissima Cayratia Cayratia mollissima \N \N \N \N \N 11891 M.grandis Manglietia Manglietia grandis \N \N \N \N \N 11892 \N subspecies Paeonia mascula subsp. hellenica \N \N \N \N \N 11893 R.multifidus Ranunculus Ranunculus multifidus \N \N \N \N \N 11894 S.bigelovii Scoliopus Scoliopus bigelovii \N \N \N \N \N 11895 E.blandfordii Erica Erica blandfordii \N \N \N \N \N 11896 A.brachypoda Arrabidaea Arrabidaea brachypoda \N \N \N \N \N 11897 N.poissonii Nephthytis Nephthytis poissonii \N \N \N \N \N 11898 T.terrestris Tribulus Tribulus terrestris \N \N \N \N \N 11899 P.nemorosa Pleurothallopsis Pleurothallopsis nemorosa \N \N \N \N \N 11900 S.compressum Sphaerocardamum Sphaerocardamum compressum \N \N \N \N \N 11901 P.AK286708 Poa Poa aff. colensoi AK286708 \N \N \N \N \N 11902 \N genus Eremophea \N \N \N \N \N 11903 D.ferox Diospyros Diospyros ferox \N \N \N \N \N 11904 \N varietas Prunus nipponica var. kurilensis Kurile cherry \N \N \N \N 11905 \N subspecies Festuca trichophylla subsp. asperifolia \N \N \N \N \N 11906 M.microhelia Mammillaria Mammillaria microhelia \N \N \N \N \N 11907 C.gratissimus Croton Croton gratissimus \N \N \N \N \N 11908 M.brevipetiolata Mimosa Mimosa brevipetiolata \N \N \N \N \N 11909 \N subspecies Androsace cylindrica subsp. cylindrica \N \N \N \N \N 11910 D.falconeri Dendrobium Dendrobium falconeri \N \N \N \N \N 11911 O.anatolica Orchis Orchis anatolica \N \N \N \N \N 11912 \N genus Neuroloma \N \N \N \N \N 11913 B.parodiana Briza Briza parodiana \N \N \N \N \N 11914 B.coriaria Berberis Berberis coriaria \N \N \N \N \N 11915 D.imbricata Dubautia Dubautia imbricata \N \N \N \N \N 11916 E.ustulescens Erica Erica ustulescens \N \N \N \N \N 11917 H.dasygynum Haplophyllum Haplophyllum dasygynum \N \N \N \N \N 11918 \N varietas Piper capense var. brachyrachis \N \N \N \N \N 11919 A.laxiflora Alchornea Alchornea laxiflora \N \N \N \N \N 11920 S.asper Streblus Streblus asper \N \N \N \N \N 11921 S.phyllantha Stemona Stemona phyllantha \N \N \N \N \N 11922 V.assyriaca Vicia Vicia assyriaca \N \N \N \N \N 11923 S.formosana Strobilanthes Strobilanthes formosana \N \N \N \N \N 11924 K.graniticola Kunzea Kunzea graniticola \N \N \N \N \N 11925 D.setacea Deschampsia Deschampsia setacea \N \N \N \N \N 11926 R.lehmannii Rodriguezia Rodriguezia lehmannii \N \N \N \N \N 11927 S.diversifolium Stigmaphyllon Stigmaphyllon diversifolium \N \N \N \N \N 11928 N.leucophoea Neoregelia Neoregelia leucophoea \N \N \N \N \N 11929 A.polyphyllum Arisaema Arisaema polyphyllum \N \N \N \N \N 11930 T.aurantiaca Tabernaemontana Tabernaemontana aurantiaca \N \N \N \N \N 11931 \N tribe Phytelepheae \N \N \N \N \N 11932 I.burtonii Impatiens Impatiens burtonii \N \N \N \N \N 11933 P.obconica Plantago Plantago obconica \N \N \N \N \N 11934 \N subspecies Carex umbrosa subsp. sabynensis \N \N \N \N \N 11935 C.japonicus Chloranthus Chloranthus japonicus \N \N \N \N \N 11936 \N varietas Platostoma cambodgense var. subulatum \N \N \N \N \N 11937 A.delavayi Aconitum Aconitum delavayi \N \N \N \N \N 11938 L.eriobotrya Lachnostachys Lachnostachys eriobotrya \N \N \N \N \N 11939 P.rupicola Psychotria Psychotria rupicola \N \N \N \N \N 11940 C.communis Carex Carex communis \N \N \N \N \N 11941 A.soyeri Arabis Arabis soyeri \N \N \N \N \N 11942 H.bifoliatum Hydrobryum Hydrobryum bifoliatum \N \N \N \N \N 11943 C.canariensis Carex Carex canariensis \N \N \N \N \N 11944 P.lanceolata Plantago Plantago lanceolata narrow-leaved plantain,ribgrass \N \N \N \N 11945 M.filiforme Myriophyllum Myriophyllum filiforme \N \N \N \N \N 11946 H.decumbens Hypserpa Hypserpa decumbens \N \N \N \N \N 11947 E.bicolor Euphorbia Euphorbia bicolor \N \N \N \N \N 11948 U.lagopodoides Uraria Uraria lagopodoides \N \N \N \N \N 11949 G.1799-6 Gymnocalycium Gymnocalycium aff. sutterianum HA 1799-6 \N \N \N \N \N 11950 \N subspecies Carex echinata subsp. phyllomanica \N \N \N \N \N 11951 C.radula Campanula Campanula radula \N \N \N \N \N 11952 O.urceolatus Osmanthus Osmanthus urceolatus \N \N \N \N \N 11953 L.prostrata Lonicera Lonicera prostrata \N \N \N \N \N 11954 C.ptilosperma Camellia Camellia ptilosperma \N \N \N \N \N 11955 V.retordii Vitis Vitis retordii \N \N \N \N \N 11956 R.madagascariense Rhigozum Rhigozum madagascariense \N \N \N \N \N 11957 P.scandens Pentaschistis Pentameris scandens \N \N \N \N \N 11958 O.gore Ongokea Ongokea gore \N \N \N \N \N 11959 B.ficifolia Brassaiopsis Brassaiopsis ficifolia \N \N \N \N \N 11960 P.pseudopygmaea Prosthechea Prosthechea pseudopygmaea \N \N \N \N \N 11961 M.carmenae Mammillaria Mammillaria carmenae \N \N \N \N \N 11962 S.ranunculina Synthyris Synthyris ranunculina \N \N \N \N \N 11963 V.odorata Vatica Vatica odorata \N \N \N \N \N 11964 \N genus Lesliea \N \N \N \N \N 11965 P.punicea Periptera Periptera punicea \N \N \N \N \N 11966 \N genus Chenopodiopsis \N \N \N \N \N 11967 T.pulposus Timonius Timonius pulposus \N \N \N \N \N 11968 D.anceps Daviesia Daviesia anceps \N \N \N \N \N 11969 H.glabra Hoya Hoya glabra \N \N \N \N \N 11970 L.woodburyana Lepanthes Lepanthes woodburyana \N \N \N \N \N 11971 \N subspecies Polygala amara subsp. amara \N \N \N \N \N 11972 S.rigidifolia Streptostachys Streptostachys rigidifolia \N \N \N \N \N 11973 N.8 Neonauclea Neonauclea sp. 8 \N \N \N \N \N 11974 P.404 Phyllanthus Phyllanthus cf. chamaecristoides Van Ee et al. 404 \N \N \N \N \N 11975 I.trilobata Iostephane Iostephane trilobata \N \N \N \N \N 11976 E.callianthum Echiochilon Echiochilon callianthum \N \N \N \N \N 11977 \N genus Anthotium \N \N \N \N \N 11978 P.fragilis Psathyrostachys Psathyrostachys fragilis \N \N \N \N \N 11979 C.diclina Chersodoma Chersodoma diclina \N \N \N \N \N 11980 L.59 Lupinus Lupinus sp. RJE 59 \N \N \N \N \N 11981 P.TL318 Polypleurum Polypleurum sp. TL318 \N \N \N \N \N 11982 S.lanata Stelis Stelis lanata \N \N \N \N \N 11983 P.dichotoma Pyrostegia Pyrostegia dichotoma \N \N \N \N \N 11984 E.artemisioides Erica Erica artemisioides \N \N \N \N \N 11985 G.talangensis Globba Globba talangensis \N \N \N \N \N 11986 G.scabra Gentiana Gentiana scabra \N \N \N \N \N 11987 B.horizontalis Babiana Babiana horizontalis \N \N \N \N \N 11988 U.heylandianus Umbilicus Umbilicus heylandianus \N \N \N \N \N 11989 O.modesta Otostegia Otostegia modesta \N \N \N \N \N 11990 C.tomentosa Cervantesia Cervantesia tomentosa \N \N \N \N \N 11991 C.baytopiorum Colchicum Colchicum baytopiorum \N \N \N \N \N 11992 A.atroviolacea Asclepias Asclepias atroviolacea \N \N \N \N \N 11993 P.microtrichus Polyceratocarpus Polyceratocarpus microtrichus \N \N \N \N \N 11994 \N genus Operculicarya \N \N \N \N \N 11995 J.dendroidea Jaltomata Jaltomata dendroidea \N \N \N \N \N 11996 M.latifolia Minthostachys Minthostachys latifolia \N \N \N \N \N 11997 \N varietas Silene mellifera var. elata \N \N \N \N \N 11998 A.unifoliolata Andira Andira unifoliolata \N \N \N \N \N 11999 D.burchellii Deverra Deverra burchellii \N \N \N \N \N 12000 \N genus Maclura \N \N \N \N \N 12001 \N varietas Silphium radula var. gracile \N \N \N \N \N 12002 B.coriophorum Bulbophyllum Bulbophyllum coriophorum \N \N \N \N \N 12003 D.caroliniana Draba Draba caroliniana \N \N \N \N \N 12004 E.veroscriptum Epidendrum Epidendrum veroscriptum \N \N \N \N \N 12005 \N genus Krugiodendron \N \N \N \N \N 12006 L.minutum Limonium Limonium minutum \N \N \N \N \N 12007 O.geophila Oldenlandia Oldenlandia geophila \N \N \N \N \N 12008 \N subspecies Corymbia ptychocarpa subsp. ptychocarpa \N \N \N \N \N 12009 \N subspecies Disa aconitoides subsp. goetzeana \N \N \N \N \N 12010 W.hylandii Wilkiea Wilkiea hylandii \N \N \N \N \N 12011 \N subspecies Cytisus grandiflorus subsp. haplophyllus \N \N \N \N \N 12012 H.lucens Heywoodia Heywoodia lucens \N \N \N \N \N 12013 \N genus Tara \N \N \N \N \N 12014 R.878 Rhipsalis Rhipsalis cf. floccosa Braun 878 \N \N \N \N \N 12015 H.confertospicata Harperia Harperia confertospicata \N \N \N \N \N 12016 C.pendens Croton Croton pendens \N \N \N \N \N 12017 A.deflexa Arabis Arabis deflexa \N \N \N \N \N 12018 L.flagellifera Leucas Leucas flagellifera \N \N \N \N \N 12019 P.P112 Physalis Physalis sp. P112 \N \N \N \N \N 12020 H.cupressinum Heliotropium Heliotropium cupressinum \N \N \N \N \N 12021 G.boquillensis Gaura Gaura boquillensis Rio Grande beeblossoms \N \N \N \N 12022 \N varietas Santalum ellipticum var. littorale \N \N \N \N \N 12023 H.shanesii Hannafordia Hannafordia shanesii \N \N \N \N \N 12024 G.pensylvanica Gamochaeta Gamochaeta pensylvanica \N \N \N \N \N 12025 P.auritum Pelargonium Pelargonium auritum \N \N \N \N \N 12026 M.subspicata Manihot Manihot subspicata \N \N \N \N \N 12027 S.squalidus Senecio Senecio squalidus \N \N \N \N \N 12028 S.shumensis Saintpaulia Saintpaulia shumensis \N \N \N \N \N 12029 L.pinifolia Linaria Linaria pinifolia \N \N \N \N \N 12030 O.cristata Ononis Ononis cristata \N \N \N \N \N 12031 \N genus Eucomis \N \N \N \N \N 12032 A.falcata Arachnorchis Arachnorchis falcata \N \N \N \N \N 12033 N.altimontanum Nidularium Nidularium altimontanum \N \N \N \N \N 12034 C.thurberi Carex Carex thurberi \N \N \N \N \N 12035 R.crenulata Rhodiola Rhodiola crenulata da hua hong jing tian \N \N \N \N 12036 B.medranoana Bursera Bursera medranoana \N \N \N \N \N 12037 P.crenata Passiflora Passiflora crenata \N \N \N \N \N 12038 T.microcarpa Terminalia Terminalia microcarpa \N \N \N \N \N 12039 \N subspecies Poa secunda subsp. juncifolia \N \N \N \N \N 12040 A.deltoidefistulosum Allium Allium deltoidefistulosum \N \N \N \N \N 12041 A.glaucophylla Actinidia Actinidia glaucophylla \N \N \N \N \N 12042 \N genus Indomelothria \N \N \N \N \N 12043 \N genus Alonsoa \N \N \N \N \N 12044 M.floccifera Malacothrix Malacothrix floccifera \N \N \N \N \N 12045 D.ida-maia Dichelostemma Dichelostemma ida-maia firecracker flower \N \N \N \N 12046 M.hemsleyana Matelea Matelea hemsleyana \N \N \N \N \N 12047 A.imbricata Anisotome Anisotome imbricata \N \N \N \N \N 12048 M.montana Mimosa Mimosa montana \N \N \N \N \N 12049 A.insufficiens Allium Allium insufficiens \N \N \N \N \N 12050 L.pisonis Lecythis Lecythis pisonis \N \N \N \N \N 12051 \N subspecies Ranunculus serpens subsp. nemorosus \N \N \N \N \N 12052 E.flava Eulophia Eulophia flava \N \N \N \N \N 12053 S.trinitense Solanum Solanum trinitense \N \N \N \N \N 12054 E.puniceoluteum Epidendrum Epidendrum puniceoluteum \N \N \N \N \N 12055 A.gonoclados Asparagus Asparagus gonoclados \N \N \N \N \N 12056 P.692 Platymiscium Platymiscium sp. Pennington 692 \N \N \N \N \N 12057 S.uniflora Sclerolaena Sclerolaena uniflora \N \N \N \N \N 12058 G.reticulata Gaultheria Gaultheria reticulata \N \N \N \N \N 12059 \N genus Campylostemon \N \N \N \N \N 12060 E.bruniifolia Erica Erica bruniifolia \N \N \N \N \N 12061 D.armbrusteri Dalechampia Dalechampia armbrusteri \N \N \N \N \N 12062 P.macdougallii Peniocereus Peniocereus macdougallii \N \N \N \N \N 12063 P.affinis Polystachya Polystachya affinis \N \N \N \N \N 12064 A.subfusiformis Argemone Argemone subfusiformis \N \N \N \N \N 12065 \N genus Malesherbia \N \N \N \N \N 12066 L.peirsonii Lorandersonia Lorandersonia peirsonii \N \N \N \N \N 12067 \N subspecies Ononis natrix subsp. prostrata \N \N \N \N \N 12068 A.delicatula Astiella Astiella delicatula \N \N \N \N \N 12069 A.geniculatum Aconitum Aconitum geniculatum \N \N \N \N \N 12070 \N genus Caryota fishtail palms \N \N \N \N 12071 A.subcordatum Alisma Alisma subcordatum \N \N \N \N \N 12072 S.brasiliensis Siolmatra Siolmatra brasiliensis \N \N \N \N \N 12073 T.fragiferum Trifolium Trifolium fragiferum \N \N \N \N \N 12074 C.cernua Campylostachys Campylostachys cernua \N \N \N \N \N 12075 O.urubambensis Oxalis Oxalis urubambensis \N \N \N \N \N 12076 C.coccinea Caesalpinia Caesalpinia coccinea \N \N \N \N \N 12077 D.tenella Deschampsia Deschampsia tenella \N \N \N \N \N 12078 H.sulphurea Halocharis Halocharis sulphurea \N \N \N \N \N 12079 A.pellucida Asclepias Asclepias pellucida \N \N \N \N \N 12080 \N genus Peritassa \N \N \N \N \N 12081 P.arizonica Potentilla Potentilla arizonica \N \N \N \N \N 12082 C.polyclada Calceolaria Calceolaria polyclada \N \N \N \N \N 12083 B.binata Bignonia Bignonia binata \N \N \N \N \N 12084 N.longipedicellata Noronhia Noronhia longipedicellata \N \N \N \N \N 12085 M.creaghii Mezzettiopsis Mezzettiopsis creaghii \N \N \N \N \N 12086 \N genus Geissanthus \N \N \N \N \N 12087 P.calabra Potentilla Potentilla calabra \N \N \N \N \N 12088 \N varietas Celtis tournefortii var. aetnensis \N \N \N \N \N 12089 G.megapotamicum Galium Galium megapotamicum \N \N \N \N \N 12090 \N genus Pitcairnia \N \N \N \N \N 12091 A.laevis Acronychia Acronychia laevis hard aspen \N \N \N \N 12092 M.millefolia Mariosousa Mariosousa millefolia \N \N \N \N \N 12093 E.ferruginiflorus Elaeocarpus Elaeocarpus ferruginiflorus \N \N \N \N \N 12094 M.tenuifolium Musineon Musineon tenuifolium \N \N \N \N \N 12095 M.podistra Morinda Morinda podistra \N \N \N \N \N 12096 A.adenophorus Acridocarpus Acridocarpus adenophorus \N \N \N \N \N 12097 P.53 Pentagonia Pentagonia sp. Persson and Gustafsson 53 \N \N \N \N \N 12098 \N genus Amaryllis \N \N \N \N \N 12099 C.cyanea Chaetoseris Chaetoseris cyanea \N \N \N \N \N 12100 A.anderssonii Anathallis Anathallis anderssonii \N \N \N \N \N 12101 C.sinensis Celtis Celtis sinensis \N \N \N \N \N 12102 E.xylocarpum Elaeodendron Elaeodendron xylocarpum \N \N \N \N \N 12103 \N genus Zataria \N \N \N \N \N 12104 I.chartacifolia Inti Inti chartacifolia \N \N \N \N \N 12105 P.lapponicum Papaver Papaver lapponicum \N \N \N \N \N 12106 R.maguirei Retiniphyllum Retiniphyllum maguirei \N \N \N \N \N 12107 V.stenocalyx Viburnum Viburnum stenocalyx \N \N \N \N \N 12108 \N subspecies Satyrium stenopetalum subsp. stenopetalum \N \N \N \N \N 12109 M.scratchleyi Mussaenda Mussaenda scratchleyi \N \N \N \N \N 12110 \N subspecies Reseda alba subsp. alba \N \N \N \N \N 12111 C.grevei Coffea Coffea grevei \N \N \N \N \N 12112 X.bicolor Xylococcus Xylococcus bicolor \N \N \N \N \N 12113 C.tetragona Carlemannia Carlemannia tetragona \N \N \N \N \N 12114 D.paradoxa Decorsella Decorsella paradoxa \N \N \N \N \N 12115 M.malabathricum Melastoma Melastoma malabathricum \N \N \N \N \N 12116 A.arabicum Aethionema Aethionema arabicum \N \N \N \N \N 12117 T.mongolicum Taraxacum Taraxacum mongolicum \N \N \N \N \N 12118 S.caespitans Schoenus Schoenus caespitans \N \N \N \N \N 12119 L.SH-2010 Lysimachia Lysimachia sp. SH-2010 \N \N \N \N \N 12120 P.becquetii Pseudosabicea Pseudosabicea becquetii \N \N \N \N \N 12121 N.hornii Nasa Nasa hornii \N \N \N \N \N 12122 B.longipes Briggsia Briggsia longipes \N \N \N \N \N 12123 S.grandiflora Stewartia Stewartia pseudocamellia x Stewartia ovata var. grandiflora \N \N \N \N \N 12124 G.foetidum Giliastrum Giliastrum foetidum \N \N \N \N \N 12125 \N genus Sarcotheca \N \N \N \N \N 12127 C.incognita Ceratostylis Ceratostylis incognita \N \N \N \N \N 12128 F.rigescens Festuca Festuca rigescens \N \N \N \N \N 12129 P.umbrosa Pilea Pilea umbrosa \N \N \N \N \N 12130 A.chlorantha Asperula Asperula chlorantha \N \N \N \N \N 12131 P.loniceroides Psychotria Psychotria loniceroides \N \N \N \N \N 12132 \N genus Tribulocarpus \N \N \N \N \N 12133 O.albicaulis Oenothera Oenothera albicaulis \N \N \N \N \N 12134 I.warleyensis Iris Iris warleyensis \N \N \N \N \N 12135 M.rehderi Machilus Machilus rehderi \N \N \N \N \N 12136 D.saeneb Debregeasia Debregeasia saeneb \N \N \N \N \N 12137 C.caespitosa Cleistogenes Cleistogenes caespitosa \N \N \N \N \N 12138 C.platymamma Citrus Citrus platymamma mandarinier \N \N \N \N 12139 P.terebinthaceum Peucedanum Peucedanum terebinthaceum \N \N \N \N \N 12140 A.5550 Ayenia Ayenia sp. A Boyle et al. 5550 \N \N \N \N \N 12141 S.bimaculata Swertia Swertia bimaculata \N \N \N \N \N 12142 A.pannonica Achillea Achillea pannonica \N \N \N \N \N 12143 H.ammodendron Haloxylon Haloxylon ammodendron \N \N \N \N \N 12144 E.autumnalis Eucomis Eucomis autumnalis \N \N \N \N \N 12145 O.spicata Ossaea Ossaea spicata \N \N \N \N \N 12146 P.heterophylla Pinguicula Pinguicula heterophylla \N \N \N \N \N 12147 T.montanum Trifolium Trifolium montanum \N \N \N \N \N 12148 C.masonii Ceanothus Ceanothus masonii \N \N \N \N \N 12149 \N genus Hebenstretia \N \N \N \N \N 12150 Z.maculatum Zygopetalum Zygopetalum maculatum \N \N \N \N \N 12151 M.denticulata Monnina Monnina denticulata \N \N \N \N \N 12152 M.irrigua Mimosa Mimosa irrigua \N \N \N \N \N 12153 C.caryophyllea Carex Carex caryophyllea \N \N \N \N \N 12154 J.maritimus Juncus Juncus maritimus \N \N \N \N \N 12155 V.texana Vernonia Vernonia texana \N \N \N \N \N 12156 L.bipartita Linaria Linaria bipartita \N \N \N \N \N 12157 \N varietas Arabidopsis arenicola var. arenicola \N \N \N \N \N 12158 C.resectans Carex Carex resectans \N \N \N \N \N 12159 S.sibirica Suaeda Suaeda sibirica \N \N \N \N \N 12160 B.nelumbiifolia Begonia Begonia nelumbiifolia \N \N \N \N \N 12161 A.calceata Aa Aa calceata \N \N \N \N \N 12162 T.involucellatum Trachydium Trachydium involucellatum \N \N \N \N \N 12163 C.verticillaris Curtia Curtia verticillaris \N \N \N \N \N 12164 I.clavicornu Impatiens Impatiens clavicornu \N \N \N \N \N 12165 C.primulifolia Campanula Campanula primulifolia \N \N \N \N \N 12166 P.davidsonii Penstemon Penstemon davidsonii \N \N \N \N \N 12167 C.hemiargyreus Croton Croton hemiargyreus \N \N \N \N \N 12168 B.arcuata Boechera Boechera arcuata \N \N \N \N \N 12169 E.lividiflora Euphorbia Euphorbia lividiflora \N \N \N \N \N 12170 G.pulchella Githopsis Githopsis pulchella \N \N \N \N \N 12171 \N genus Satranala \N \N \N \N \N 12172 T.hookeri Townsendia Townsendia hookeri \N \N \N \N \N 12173 \N varietas Fuchsia boliviana var. luxurians \N \N \N \N \N 12174 \N genus Dimorphotheca \N \N \N \N \N 12175 M.kleinii Myrceugenia Myrceugenia kleinii \N \N \N \N \N 12176 D.macrocentrum Delphinium Delphinium macrocentrum \N \N \N \N \N 12177 B.elegans Bessera Bessera elegans \N \N \N \N \N 12178 \N family Ancistrocladaceae \N \N \N \N \N 12179 L.cattienensis Licuala Licuala cattienensis \N \N \N \N \N 12180 \N genus Leiothylax \N \N \N \N \N 12181 P.mollis Polyscias Polyscias mollis \N \N \N \N \N 12182 C.henryanus Cotoneaster Cotoneaster henryanus \N \N \N \N \N 12183 \N varietas Mimosa debilis var. debilis \N \N \N \N \N 12184 G.antarctica Gentianella Gentianella antarctica \N \N \N \N \N 12185 R.exsertum Rhytidophyllum Rhytidophyllum exsertum \N \N \N \N \N 12186 \N genus Diploprora \N \N \N \N \N 12187 I.abulense Ionopsidium Ionopsidium abulense \N \N \N \N \N 12188 P.burbidgei Piptospatha Piptospatha burbidgei \N \N \N \N \N 12189 D.yatesiana Diospyros Diospyros yatesiana \N \N \N \N \N 12190 C.edulis Casimiroa Casimiroa edulis Mexican-apple,matasano,white sapote \N \N \N \N 12191 A.ubensis Anthemis Anthemis ubensis \N \N \N \N \N 12192 E.junonia Erica Erica junonia \N \N \N \N \N 12193 K.littoralis Kadua Kadua littoralis \N \N \N \N \N 12194 \N genus Zexmenia \N \N \N \N \N 12195 L.horridum Lycium Lycium horridum \N \N \N \N \N 12196 G.linifolia Genista Genista linifolia \N \N \N \N \N 12197 \N tribe Dipterygeae \N \N \N \N \N 12198 M.undata Miconia Miconia undata \N \N \N \N \N 12199 S.scirpoidea Spartochloa Spartochloa scirpoidea \N \N \N \N \N 12200 O.gabonensis Odyendyea Odyendyea gabonensis \N \N \N \N \N 12201 \N varietas Rhododendron championiae var. ovatifolium \N \N \N \N \N 12202 \N genus Mitragyna \N \N \N \N \N 12203 \N genus Pseudobahia \N \N \N \N \N 12204 G.orientalis Grewia Grewia orientalis \N \N \N \N \N 12205 M.louisabolusiae Moraea Moraea louisabolusiae \N \N \N \N \N 12206 N.subintegerrima Nuphar Nuphar subintegerrima \N \N \N \N \N 12207 T.uniflora Tribonanthes Tribonanthes uniflora \N \N \N \N \N 12208 S.tamnoides Smilax Smilax tamnoides \N \N \N \N \N 12209 H.vernonii Hybanthus Hybanthus vernonii \N \N \N \N \N 12210 S.capuronii Staufferia Staufferia capuronii \N \N \N \N \N 12211 B.convolvulacea Begonia Begonia convolvulacea \N \N \N \N \N 12212 U.baumannii Uvaria Uvaria baumannii \N \N \N \N \N 12213 L.rotundifolia Lindernia Lindernia rotundifolia \N \N \N \N \N 12214 \N varietas Leucaena confertiflora var. adenotheloidea \N \N \N \N \N 12215 P.schneideriana Prunus Prunus schneideriana \N \N \N \N \N 12216 Z.bella Zaluzianskya Zaluzianskya bella \N \N \N \N \N 12217 M.lanuginosa Mimosa Mimosa lanuginosa \N \N \N \N \N 12218 O.deflexa Oxytropis Oxytropis deflexa nodding locoweed \N \N \N \N 12219 \N subtribe Phalaridinae \N \N \N \N \N 12220 \N varietas Photinia beauverdiana var. beauverdiana \N \N \N \N \N 12221 S.suffruticosa Sweetia Sweetia suffruticosa \N \N \N \N \N 12222 \N genus Krigia \N \N \N \N \N 12223 C.lasiocalyx Cordia Cordia lasiocalyx \N \N \N \N \N 12224 A.sessiliflorus Aletes Aletes sessiliflorus \N \N \N \N \N 12225 \N subspecies Castilleja exserta subsp. exserta \N \N \N \N \N 12227 P.alpina Pyrola Pyrola alpina \N \N \N \N \N 12228 P.humilis Pentaloncha Pentaloncha humilis \N \N \N \N \N 12229 N.grandiflora Neosprucea Neosprucea grandiflora \N \N \N \N \N 12230 T.5983 Tetrastigma Tetrastigma sp. Wen 5983 \N \N \N \N \N 12231 \N varietas Neolitsea wushanica var. wushanica \N \N \N \N \N 12232 Z.pellucida Zygostates Zygostates pellucida \N \N \N \N \N 12233 F.trifoliolata Fraxinus Fraxinus trifoliolata \N \N \N \N \N 12234 B.gamosepala Braya Braya gamosepala \N \N \N \N \N 12235 H.aspera Haloragis Haloragis aspera \N \N \N \N \N 12236 R.muscifera Restrepia Restrepia muscifera \N \N \N \N \N 12237 S.petiolata Swertia Swertia petiolata \N \N \N \N \N 12238 \N genus Rauhocereus \N \N \N \N \N 12239 \N genus Westringia \N \N \N \N \N 12240 P.sancti-georgii Polygala Polygala sancti-georgii \N \N \N \N \N 12241 P.marginatus Pachycereus Pachycereus marginatus \N \N \N \N \N 12242 E.ericoides Erica Erica ericoides \N \N \N \N \N 12243 C.exorrhizum Clinostigma Clinostigma exorrhizum \N \N \N \N \N 12244 \N genus Barnebya \N \N \N \N \N 12245 C.evolvuloides Crotalaria Crotalaria evolvuloides \N \N \N \N \N 12246 \N genus Phylloscirpus \N \N \N \N \N 12247 E.carunculifera Euphorbia Euphorbia carunculifera \N \N \N \N \N 12248 M.latifolia Meconopsis Meconopsis latifolia \N \N \N \N \N 12249 O.lanceolatum Ornithogalum Ornithogalum lanceolatum \N \N \N \N \N 12250 P.verticillata Paris Paris verticillata \N \N \N \N \N 12251 P.furcata Psychotria Psychotria furcata \N \N \N \N \N 12252 P.roseus Phyllanthus Phyllanthus roseus \N \N \N \N \N 12253 T.timon Timonius Timonius timon \N \N \N \N \N 12254 C.nebrodense Cynoglossum Cynoglossum nebrodense \N \N \N \N \N 12255 P.4026 Prismatomeris Prismatomeris sp. 3 Davis 4026 \N \N \N \N \N 12256 B.imperialis Begonia Begonia imperialis \N \N \N \N \N 12257 \N genus Peltocalathos \N \N \N \N \N 12258 C.cleistogama Calanthe Calanthe cleistogama \N \N \N \N \N 12259 P.venezuelana Prosthechea Prosthechea venezuelana \N \N \N \N \N 12260 C.loeseneri Calathea Calathea loeseneri \N \N \N \N \N 12261 P.mirandae Psychotria Psychotria mirandae \N \N \N \N \N 12262 S.incurva Spatalla Spatalla incurva \N \N \N \N \N 12263 R.sinensis Rhabdothamnopsis Rhabdothamnopsis sinensis \N \N \N \N \N 12264 D.milaneziana Dorstenia Dorstenia milaneziana \N \N \N \N \N 12265 A.leiocarpa Anogeissus Anogeissus leiocarpa \N \N \N \N \N 12266 A.carduifolia Acanthopsis Acanthopsis carduifolia \N \N \N \N \N 12267 \N forma Pyrola japonica f. subaphylla \N \N \N \N \N 12268 C.rugulosus Callistemon Callistemon rugulosus \N \N \N \N \N 12269 S.yunnanensis Sinopyrenaria Sinopyrenaria yunnanensis \N \N \N \N \N 12270 C.ericoides Ceratiola Ceratiola ericoides Florida rosemary,sand heath,sandhill rosemary \N \N \N \N 12271 \N genus Duroia \N \N \N \N \N 12272 L.englerianum Lepidium Lepidium englerianum \N \N \N \N \N 12273 R.metzae Ruellia Ruellia metzae \N \N \N \N \N 12274 E.vulgare Echium Echium vulgare \N \N \N \N \N 12275 \N genus Arrhenatherum \N \N \N \N \N 12276 C.pycnoneuroides Cynanchum Cynanchum pycnoneuroides \N \N \N \N \N 12277 A.shimadae Alpinia Alpinia shimadae \N \N \N \N \N 12278 A.collina Aspalathus Aspalathus collina \N \N \N \N \N 12279 T.dioicum Trichophorum Trichophorum dioicum \N \N \N \N \N 12280 T.ulmifolia Turnera Turnera ulmifolia \N \N \N \N \N 12281 C.marginatus Cyperus Cyperus marginatus \N \N \N \N \N 12282 H.wiedeana Hiraea Hiraea wiedeana \N \N \N \N \N 12283 M.latissima Megastylis Megastylis latissima \N \N \N \N \N 12284 P.oleifolia Pyrostria Pyrostria oleifolia \N \N \N \N \N 12285 C.8/82 Cyanotis Cyanotis sp. Faden 8/82 \N \N \N \N \N 12286 C.pilosa Cortaderia Cortaderia pilosa \N \N \N \N \N 12287 S.subinerme Solanum Solanum subinerme \N \N \N \N \N 12288 \N subspecies Antirrhinum vexillocalyculatum subsp. vexillocalyculatum \N \N \N \N \N 12289 V.procera Vriesea Vriesea procera \N \N \N \N \N 12290 H.sibiricum Heracleum Heracleum sibiricum \N \N \N \N \N 12291 P.bokhariensis Prunus Prunus bokhariensis \N \N \N \N \N 12292 E.amplum Epigeneium Epigeneium amplum \N \N \N \N \N 12293 M.zygophylla Mimosa Mimosa zygophylla \N \N \N \N \N 12294 \N genus Dorycnopsis \N \N \N \N \N 12295 \N subspecies Dactylorhiza incarnata subsp. incarnata \N \N \N \N \N 12296 M.mollis Mentzelia Mentzelia mollis \N \N \N \N \N 12297 A.boveana Anthemis Anthemis boveana \N \N \N \N \N 12298 S.whipplei Sclerocactus Sclerocactus whipplei \N \N \N \N \N 12299 C.plumbagineus Commicarpus Commicarpus plumbagineus \N \N \N \N \N 12300 A.galpinii Alepidea Alepidea galpinii \N \N \N \N \N 12301 M.amparoana Maxillaria Maxillaria amparoana \N \N \N \N \N 12302 L.glaucescens Litsea Litsea glaucescens \N \N \N \N \N 12303 \N genus Dactylis \N \N \N \N \N 12304 \N genus Codon \N \N \N \N \N 12305 R.oreophytus Ranunculus Ranunculus oreophytus \N \N \N \N \N 12306 P.crosbyi Porterandia Porterandia crosbyi \N \N \N \N \N 12307 \N genus Stenocereus \N \N \N \N \N 12308 D.hecatocephala Decazesia Decazesia hecatocephala \N \N \N \N \N 12309 P.strigosa Pseudoroegneria Pseudoroegneria strigosa \N \N \N \N \N 12310 P.standleyana Palicourea Palicourea standleyana \N \N \N \N \N 12311 F.longifolia Fusaea Fusaea longifolia \N \N \N \N \N 12312 P.acuminatum Prionosciadium Prionosciadium acuminatum \N \N \N \N \N 12313 A.dictyoneura Acacia Acacia dictyoneura \N \N \N \N \N 12314 P.schumanniana Phyllopentas Phyllopentas schumanniana \N \N \N \N \N 12315 C.cylindrostachys Clinopodium Clinopodium cylindrostachys \N \N \N \N \N 12316 S.reuteriana Saxifraga Saxifraga reuteriana \N \N \N \N \N 12317 G.bickii Gossypium Gossypium bickii \N \N \N \N \N 12318 B.auriculata Biscutella Biscutella auriculata \N \N \N \N \N 12319 C.condalia Coccocypselum Coccocypselum condalia \N \N \N \N \N 12320 C.tonduzii Cyclanthera Cyclanthera tonduzii \N \N \N \N \N 12321 I.younghusbandii Incarvillea Incarvillea younghusbandii \N \N \N \N \N 12322 S.angustissima Sinclairia Sinclairia angustissima \N \N \N \N \N 12323 O.pabstii Oncidium Oncidium pabstii \N \N \N \N \N 12324 \N varietas Peucedanum dhana var. dalzellii \N \N \N \N \N 12325 L.prancei Lecythis Lecythis prancei \N \N \N \N \N 12326 E.nitidus Erigeron Erigeron nitidus \N \N \N \N \N 12327 \N varietas Tofieldia coccinea var. coccinea \N \N \N \N \N 12328 P.oxyodonta Pegolettia Pegolettia oxyodonta \N \N \N \N \N 12329 T.zambesiaca Tinnea Tinnea zambesiaca \N \N \N \N \N 12330 C.cyphopetalum Cyphostemma Cyphostemma cyphopetalum \N \N \N \N \N 12331 \N genus Cyanotis \N \N \N \N \N 12332 C.siliquastrum Cercis Cercis siliquastrum \N \N \N \N \N 12333 T.horridifrons Taraxacum Taraxacum horridifrons \N \N \N \N \N 12334 C.coggygria Cotinus Cotinus coggygria smokebush \N \N \N \N 12335 P.vaginatum Paspalum Paspalum vaginatum \N \N \N \N \N 12336 \N varietas Brachyscome nivalis var. nivalis \N \N \N \N \N 12337 B.sargentiana Berberis Berberis sargentiana \N \N \N \N \N 12338 B.buttiana Bougainvillea Bougainvillea x buttiana \N \N \N \N \N 12339 H.fuegianum Hordeum Hordeum fuegianum \N \N \N \N \N 12340 E.montis-hominis Erica Erica montis-hominis \N \N \N \N \N 12341 C.11649 Crabbea Crabbea sp. Balkwill et al. 11649 \N \N \N \N \N 12342 O.apulica Ophrys Ophrys apulica \N \N \N \N \N 12343 L.mantiqueirae Laelia Laelia mantiqueirae \N \N \N \N \N 12344 C.wardii Cypripedium Cypripedium wardii \N \N \N \N \N 12345 E.multiceps Euphorbia Euphorbia multiceps \N \N \N \N \N 12346 N.maculata Neotinea Neotinea maculata \N \N \N \N \N 12347 I.eriocalyx Isodon Isodon eriocalyx \N \N \N \N \N 12348 P.tremuloides Populus Populus alba x Populus tremuloides \N \N \N \N \N 12349 H.oppositifolia Heliopsis Heliopsis oppositifolia \N \N \N \N \N 12350 M.platyphylla Myricaria Myricaria platyphylla \N \N \N \N \N 12351 A.oblongifolium Anodendron Anodendron oblongifolium \N \N \N \N \N 12352 L.caudata Lagerstroemia Lagerstroemia caudata \N \N \N \N \N 12353 E.4485 Eurybia Eurybia aff. divaricata Wells 4485 \N \N \N \N \N 12354 E.nitens Emmotum Emmotum nitens \N \N \N \N \N 12355 D.semibarbatum Delphinium Delphinium semibarbatum \N \N \N \N \N 12356 \N genus Leptocereus \N \N \N \N \N 12357 \N subspecies Delphinium carolinianum subsp. virescens \N \N \N \N \N 12358 P.turgidum Panicum Panicum turgidum markuba,taman \N \N \N \N 12359 C.fargesii Corylus Corylus fargesii \N \N \N \N \N 12360 S.cinnabarina Smithiantha Smithiantha cinnabarina \N \N \N \N \N 12361 P.dimorphandrum Platymiscium Platymiscium dimorphandrum \N \N \N \N \N 12362 T.violacea Tulbaghia Tulbaghia violacea \N \N \N \N \N 12363 C.pulchellum Colchicum Colchicum pulchellum \N \N \N \N \N 12364 E.nesemannii Euphorbia Euphorbia nesemannii \N \N \N \N \N 12365 A.myristicifolium Aspidosperma Aspidosperma myristicifolium \N \N \N \N \N 12366 E.terminalis Erica Erica terminalis \N \N \N \N \N 12367 G.hamulosum Gastrolobium Gastrolobium hamulosum \N \N \N \N \N 12368 P.augusti Phaseolus Phaseolus augusti \N \N \N \N \N 12369 \N subspecies Ononis spinosa subsp. arvensis \N \N \N \N \N 12370 I.chamaedryfolia Ilex Ilex chamaedryfolia \N \N \N \N \N 12371 \N genus Trouettia \N \N \N \N \N 12372 P.insignis Platonia Platonia insignis bacury \N \N \N \N 12373 \N genus Laplacea \N \N \N \N \N 12374 G.schwendimanii Gossypium Gossypium schwendimanii \N \N \N \N \N 12375 F.neowawraea Flueggea Flueggea neowawraea \N \N \N \N \N 12376 \N genus Tripolium \N \N \N \N \N 12377 G.bilobum Gastrolobium Gastrolobium bilobum \N \N \N \N \N 12378 \N genus Echinaria \N \N \N \N \N 12379 A.curranii Acacia Acacia curranii \N \N \N \N \N 12380 M.1712 Maesobotrya Maesobotrya sp. Smith 1712 \N \N \N \N \N 12381 B.thunbergiana Bonamia Bonamia thunbergiana \N \N \N \N \N 12382 C.oligodon Casuarina Casuarina oligodon \N \N \N \N \N 12383 M.excelsa Metrosideros Metrosideros excelsa New Zealand Christmas tree \N \N \N \N 12384 O.haenseleri Orobanche Orobanche haenseleri \N \N \N \N \N 12385 A.rugosum Anginon Anginon rugosum \N \N \N \N \N 12386 D.buxifolia Diospyros Diospyros buxifolia \N \N \N \N \N 12387 T.amoenum Trifolium Trifolium amoenum \N \N \N \N \N 12388 \N genus Rosenia \N \N \N \N \N 12389 C.maideniana Cadetia Cadetia maideniana \N \N \N \N \N 12390 C.teydis Cheirolophus Cheirolophus teydis \N \N \N \N \N 12391 \N genus Poecilocalyx \N \N \N \N \N 12392 D.serratifolium Dasylirion Dasylirion serratifolium \N \N \N \N \N 12393 M.pungens Mirbelia Mirbelia pungens \N \N \N \N \N 12394 C.gladiiformis Casearia Casearia gladiiformis \N \N \N \N \N 12395 \N varietas Platostoma coloratum var. coloratum \N \N \N \N \N 12396 A.laramiensis Aquilegia Aquilegia laramiensis \N \N \N \N \N 12397 I.formosana Ilex Ilex formosana \N \N \N \N \N 12398 H.heterophyllus Helianthus Helianthus heterophyllus \N \N \N \N \N 12399 \N genus Adenoglossa \N \N \N \N \N 12400 N.arequipensis Neoraimondia Neoraimondia arequipensis \N \N \N \N \N 12401 \N genus Alphitonia \N \N \N \N \N 12402 C.teretiuscula Conostylis Conostylis teretiuscula \N \N \N \N \N 12403 \N subspecies Genista pumila subsp. pumila \N \N \N \N \N 12404 P.deltophyllus Parasenecio Parasenecio deltophyllus \N \N \N \N \N 12405 A.lobbiana Amicia Amicia lobbiana \N \N \N \N \N 12406 I.crithmifolium Isostigma Isostigma crithmifolium \N \N \N \N \N 12407 O.fimbriatum Ornithogalum Ornithogalum fimbriatum \N \N \N \N \N 12408 C.conferta Cardamine Cardamine conferta \N \N \N \N \N 12409 M.nivea Melanthera Melanthera nivea \N \N \N \N \N 12410 A.hookeri Acrothamnus Acrothamnus hookeri \N \N \N \N \N 12411 S.guadeloupensis Symplocos Symplocos guadeloupensis \N \N \N \N \N 12412 S.saxatilis Selago Selago saxatilis \N \N \N \N \N 12413 \N genus Nothocalais \N \N \N \N \N 12414 D.geminiflora Diplolepis Diplolepis geminiflora \N \N \N \N \N 12415 K.elmeri Kayea Kayea elmeri \N \N \N \N \N 12416 E.rostratum Eryngium Eryngium rostratum blue-devil \N \N \N \N 12417 P.tahitensis Phreatia Phreatia tahitensis \N \N \N \N \N 12418 L.chalcedonica Lychnis Lychnis chalcedonica Jerusalem campion,Maltese cross,scarlet lychnis \N \N \N \N 12419 C.tonduzii Cedrela Cedrela tonduzii \N \N \N \N \N 12420 M.filicaulis Mimulus Mimulus filicaulis \N \N \N \N \N 12421 A.connivens Asclepias Asclepias connivens \N \N \N \N \N 12422 T.greggii Tiquilia Tiquilia greggii \N \N \N \N \N 12423 O.limprichtii Oreocome Oreocome limprichtii \N \N \N \N \N 12424 B.labordei Begonia Begonia labordei \N \N \N \N \N 12425 C.pumilum Cichorium Cichorium pumilum \N \N \N \N \N 12426 L.monopetalum Limoniastrum Limoniastrum monopetalum \N \N \N \N \N 12427 \N genus Lilium \N \N \N \N \N 12428 S.ovata Sebaea Sebaea ovata \N \N \N \N \N 12429 M.nutans Mirandea Mirandea nutans \N \N \N \N \N 12430 H.johnsonii Halophila Halophila johnsonii \N \N \N \N \N 12431 R.cordata Rajania Rajania cordata \N \N \N \N \N 12432 \N genus Gratiola \N \N \N \N \N 12433 W.prostrata Wedelia Wedelia prostrata \N \N \N \N \N 12434 \N genus Conchocarpus \N \N \N \N \N 12435 D.hirtzii Dryadella Dryadella hirtzii \N \N \N \N \N 12436 P.dispersus Paranomus Paranomus dispersus \N \N \N \N \N 12437 P.rydbergii Penstemon Penstemon rydbergii \N \N \N \N \N 12438 P.cavispicata Peperomia Peperomia cavispicata \N \N \N \N \N 12439 S.schultesiana Strychnos Strychnos schultesiana \N \N \N \N \N 12440 S.biflorus Scleranthus Scleranthus biflorus \N \N \N \N \N 12441 \N subspecies Carex elata subsp. mauritanica \N \N \N \N \N 12442 A.tener Astragalus Astragalus tener \N \N \N \N \N 12443 O.armatus Osmanthus Osmanthus armatus \N \N \N \N \N 12444 A.heterophylla Agalinis Agalinis heterophylla \N \N \N \N \N 12445 M.wilsonii Michelia Michelia wilsonii \N \N \N \N \N 12446 R.beniensis Rytigynia Rytigynia beniensis \N \N \N \N \N 12447 M.foliosa Malacothrix Malacothrix foliosa \N \N \N \N \N 12448 H.krasanii Hieracium Hieracium krasanii \N \N \N \N \N 12449 D.orchidacea Duparquetia Duparquetia orchidacea \N \N \N \N \N 12450 H.sharpii Hedyotis Hedyotis sharpii \N \N \N \N \N 12451 \N genus Sipaneopsis \N \N \N \N \N 12452 C.ulei Castilla Castilla ulei \N \N \N \N \N 12453 P.kashgaricum Phaeonychium Phaeonychium kashgaricum \N \N \N \N \N 12454 B.perstellata Boechera Boechera perstellata \N \N \N \N \N 12455 P.paniculata Poranopsis Poranopsis paniculata bridal-bouquet,snowcreeper \N \N \N \N 12456 A.negundo Acer Acer negundo box elder \N \N \N \N 12457 P.paludosa Pterostylis Pterostylis paludosa \N \N \N \N \N 12458 A.tribuloides Astragalus Astragalus tribuloides \N \N \N \N \N 12459 \N genus Diplatia \N \N \N \N \N 12460 \N genus Asteropyrum \N \N \N \N \N 12461 \N genus Atriplex \N \N \N \N \N 12462 E.schulzii Eutrema Eutrema schulzii \N \N \N \N \N 12463 B.glareicola Brownanthus Brownanthus glareicola \N \N \N \N \N 12464 \N tribe Thysanolaeneae \N \N \N \N \N 12465 E.ulmoides Eucommia Eucommia ulmoides \N \N \N \N \N 12466 \N genus Quassia \N \N \N \N \N 12467 B.crispa Babiana Babiana crispa \N \N \N \N \N 12468 \N varietas Lantana depressa var. floridana \N \N \N \N \N 12469 A.crassifolia Acleisanthes Acleisanthes crassifolia \N \N \N \N \N 12470 L.MDG-3723 Ledebouria Ledebouria sp. MDG-3723 \N \N \N \N \N 12471 A.laxifoliata Angelica Angelica laxifoliata \N \N \N \N \N 12472 L.crassifolia Lavoisiera Lavoisiera crassifolia \N \N \N \N \N 12473 C.virosa Cicuta Cicuta virosa \N \N \N \N \N 12474 M.mexicana Milla Milla mexicana \N \N \N \N \N 12475 I.inyangaensis Isolepis Isolepis inyangaensis \N \N \N \N \N 12476 S.gallinyi Silene Silene gallinyi \N \N \N \N \N 12477 C.1714 Costus Costus aff. globosus Mood 1714 \N \N \N \N \N 12478 H.densiflorum Hypericum Hypericum densiflorum \N \N \N \N \N 12479 \N subspecies Poa bulbosa subsp. vivipara \N \N \N \N \N 12480 C.yangshuo001 Chiritopsis Chiritopsis sp. yangshuo001 \N \N \N \N \N 12481 \N genus Paspalum crowngrass \N \N \N \N 12482 E.nana Eschweilera Eschweilera nana \N \N \N \N \N 12483 R.chiapensis Randia Randia chiapensis \N \N \N \N \N 12484 \N tribe Ampelodesmeae \N \N \N \N \N 12485 E.erubescens Euphorbia Euphorbia erubescens \N \N \N \N \N 12486 H.erythrostemma Hoya Hoya erythrostemma \N \N \N \N \N 12487 C.brevicollis Carex Carex brevicollis \N \N \N \N \N 12488 S.pensilis Salpistele Salpistele pensilis \N \N \N \N \N 12489 \N subspecies Astragalus tricholobus subsp. tricholobus \N \N \N \N \N 12490 G.angustifolium Geniostoma Geniostoma angustifolium \N \N \N \N \N 12491 C.maritimus Cynodon Cynodon maritimus \N \N \N \N \N 12492 S.amygdalifolium Solanum Solanum amygdalifolium \N \N \N \N \N 12493 P.oligantha Parsonsia Parsonsia oligantha \N \N \N \N \N 12494 L.spathulata Ludwigia Ludwigia spathulata \N \N \N \N \N 12495 D.peruviana Duguetia Duguetia peruviana \N \N \N \N \N 12496 A.microphylla Arytera Arytera microphylla \N \N \N \N \N 12497 H.loheri Hoya Hoya loheri \N \N \N \N \N 12498 \N genus Amianthium \N \N \N \N \N 12499 E.cooperi Ericameria Ericameria cooperi \N \N \N \N \N 12500 C.nobilis Chamaepentas Chamaepentas nobilis \N \N \N \N \N 12501 B.vanderbiltii Banara Banara vanderbiltii \N \N \N \N \N 12502 \N subspecies Cerastium fontanum subsp. vulgare \N \N \N \N \N 12503 A.harmandii Anisochilus Anisochilus harmandii \N \N \N \N \N 12504 C.appendiculata Cardamine Cardamine appendiculata \N \N \N \N \N 12505 \N genus Brassaiopsis \N \N \N \N \N 12506 S.riparium Satyrium Satyrium riparium \N \N \N \N \N 12507 R.mariesii Rhododendron Rhododendron mariesii \N \N \N \N \N 12508 G.macrophyllum Geum Geum macrophyllum \N \N \N \N \N 12509 R.carpinetorum Ranunculus Ranunculus carpinetorum \N \N \N \N \N 12510 P.obcordata Pomaderris Pomaderris obcordata \N \N \N \N \N 12511 S.trifoliatus Sapindus Sapindus trifoliatus saboeira \N \N \N \N 12512 P.anacantha Parkinsonia Parkinsonia anacantha \N \N \N \N \N 12513 S.barberi Saccharum officinarum complex Saccharum barberi Indian cane \N \N \N \N 12514 P.exaltatus Ptilotus Ptilotus exaltatus \N \N \N \N \N 12515 A.trachyphylla Armeria Armeria trachyphylla \N \N \N \N \N 12516 T.petitianum Trifolium Trifolium petitianum \N \N \N \N \N 12517 \N genus Hidalgoa \N \N \N \N \N 12518 P.subpedale Piper Piper subpedale \N \N \N \N \N 12519 E.brassiana Eucalyptus Eucalyptus brassiana \N \N \N \N \N 12520 C.polycladum Calyptrosciadium Calyptrosciadium polycladum \N \N \N \N \N 12521 F.utilis Fargesia Fargesia utilis \N \N \N \N \N 12522 \N genus Ananas \N \N \N \N \N 12523 S.rzedowskii Stevia Stevia rzedowskii \N \N \N \N \N 12524 B.arida Bursera Bursera arida \N \N \N \N \N 12525 C.caloneura Cryptocarya Cryptocarya caloneura \N \N \N \N \N 12526 T.panurensis Tynanthus Tynanthus panurensis \N \N \N \N \N 19805 \N genus Maurandya \N \N \N \N \N 12527 C.suffruticosum Chlorophytum Chlorophytum suffruticosum \N \N \N \N \N 12528 \N subspecies Bidens menziesii subsp. filiformis \N \N \N \N \N 12529 D.pinnatisecta Donnellsmithia Donnellsmithia pinnatisecta \N \N \N \N \N 12530 V.bipinnata Vicatia Vicatia bipinnata \N \N \N \N \N 12531 \N genus Brachysola \N \N \N \N \N 12532 P.chrysantha Potentilla Potentilla chrysantha \N \N \N \N \N 12533 C.caeruleus Ceanothus Ceanothus caeruleus \N \N \N \N \N 12534 E.lateriflorus Euryops Euryops lateriflorus \N \N \N \N \N 12535 \N varietas Leucas urticifolia var. urticifolia \N \N \N \N \N 12536 A.SH-2010 Aidia Aidia sp. SH-2010 \N \N \N \N \N 12537 N.hermaphrodita Neea Neea hermaphrodita \N \N \N \N \N 12538 \N tribe Elsholtzieae \N \N \N \N \N 12539 \N genus Maquira \N \N \N \N \N 12540 \N tribe Leucophylleae \N \N \N \N \N 12541 \N family Hyacinthaceae hyacinth family \N \N \N \N 12542 D.philippiana Daphnopsis Daphnopsis philippiana \N \N \N \N \N 12543 S.glaber Senecio Senecio glaber \N \N \N \N \N 12544 S.polymorphum Sisymbrium Sisymbrium polymorphum \N \N \N \N \N 12545 A.labriformis Asclepias Asclepias labriformis \N \N \N \N \N 12546 L.reitzii Lupinus Lupinus reitzii \N \N \N \N \N 12547 C.conferta Carex Carex conferta \N \N \N \N \N 12548 A.leucoclada Acacia Acacia leucoclada \N \N \N \N \N 12549 A.flavidus Anigozanthos Anigozanthos flavidus evergreen kangaroo-paw,tall kangaroo-paw \N \N \N \N 12550 T.T04 Tripsacum Tripsacum sp. T04 \N \N \N \N \N 12551 M.scabra Manfreda Manfreda scabra \N \N \N \N \N 12552 H.flavasulina Hoffmannseggella Hoffmannseggella flavasulina \N \N \N \N \N 12553 P.spinosa Pictetia Pictetia spinosa \N \N \N \N \N 12554 R.colorata Rhynchospora Rhynchospora colorata white-top sedge \N \N \N \N 12555 M.rufescens Macaranga Macaranga rufescens \N \N \N \N \N 12556 S.sedoides Saxifraga Saxifraga sedoides \N \N \N \N \N 12557 H.brachysiphonius Hibiscus Hibiscus brachysiphonius \N \N \N \N \N 12558 C.barkae Crotalaria Crotalaria barkae \N \N \N \N \N 12559 \N genus Cuphea \N \N \N \N \N 12560 C.umbellulata Clintonia Clintonia umbellulata \N \N \N \N \N 12561 G.crassa Gaultheria Gaultheria crassa \N \N \N \N \N 12562 V.pringlei Viguiera Viguiera pringlei \N \N \N \N \N 12563 H.scabrum Heracleum Heracleum scabrum \N \N \N \N \N 12564 E.tener Erigeron Erigeron tener \N \N \N \N \N 12565 L.chinensis Litchi Litchi chinensis litchi,lychee \N \N \N \N 12566 C.bracteosa Caesalpinia Caesalpinia bracteosa \N \N \N \N \N 12567 \N genus Uvaria \N \N \N \N \N 12568 V.persica Veronica Veronica persica Persian speedwell,bird-eye speedwell \N \N \N \N 12569 I.wandoensis Ilex Ilex x wandoensis \N \N \N \N \N 12570 S.hemisphericum Syzygium Syzygium hemisphericum \N \N \N \N \N 12571 C.madrequisa Caiophora Caiophora madrequisa \N \N \N \N \N 12572 C.mariana Chrysopsis Chrysopsis mariana \N \N \N \N \N 12573 D.hirtella Dignathia Dignathia hirtella \N \N \N \N \N 12574 G.aleppicum Geum Geum aleppicum \N \N \N \N \N 12575 S.nodiflorum Sclerosciadium Sclerosciadium nodiflorum \N \N \N \N \N 12576 J.gypsophila Jaimehintonia Jaimehintonia gypsophila \N \N \N \N \N 12577 L.cuneatus Lophopappus Lophopappus cuneatus \N \N \N \N \N 12578 D.sobolifera Draba Draba sobolifera stolon draba \N \N \N \N 12579 \N genus Bebbia \N \N \N \N \N 12580 \N genus Apeiba \N \N \N \N \N 12581 W.tsiangiana Whytockia Whytockia tsiangiana \N \N \N \N \N 12582 S.australis Siphonodon Siphonodon australis \N \N \N \N \N 12583 \N genus Dapsilanthus \N \N \N \N \N 12584 D.apoensis Drepananthus Drepananthus apoensis \N \N \N \N \N 12585 C.pseudoliatris Carphephorus Carphephorus pseudoliatris \N \N \N \N \N 12586 P.gunnii Pultenaea Pultenaea gunnii \N \N \N \N \N 12587 \N genus Siraitia \N \N \N \N \N 12588 C.pendulus Catolobus Catolobus pendulus \N \N \N \N \N 12589 S.thurberi Stephanomeria Stephanomeria thurberi \N \N \N \N \N 12590 \N genus Diplusodon \N \N \N \N \N 12591 H.sibthorpii Helichrysum Helichrysum sibthorpii \N \N \N \N \N 12592 P.paucispicula Poa Poa paucispicula \N \N \N \N \N 12593 \N subspecies Meineckia phyllanthoides subsp. trichopoda \N \N \N \N \N 12594 M.1665 Maxillaria Maxillaria aff. lepidota Whitten 1665 \N \N \N \N \N 12595 \N genus Crawfurdia \N \N \N \N \N 12596 C.fendleri Clidemia Clidemia fendleri \N \N \N \N \N 12597 T.ivorensis Terminalia Terminalia ivorensis \N \N \N \N \N 12598 S.griffithii Steudnera Steudnera griffithii \N \N \N \N \N 12599 S.viarum Solanum Solanum viarum tropical soda-apple \N \N \N \N 12600 \N genus Coryphantha \N \N \N \N \N 12601 \N genus Mycetia \N \N \N \N \N 12602 K.828 Kutchubaea Kutchubaea sp. Rodriguez 828 \N \N \N \N \N 12603 V.qatmensis Vicia Vicia qatmensis \N \N \N \N \N 12604 L.latifolia Liparis Liparis latifolia \N \N \N \N \N 12605 M.biolleyi Maxillaria Maxillaria biolleyi \N \N \N \N \N 12606 M.schenckii Myrtillocactus Myrtillocactus schenckii \N \N \N \N \N 12607 D.DraB35 Draba Draba sp. DraB35 \N \N \N \N \N 12608 B.erecta Bombycilaena Bombycilaena erecta \N \N \N \N \N 12609 E.haeleeleana Euphorbia Euphorbia haeleeleana \N \N \N \N \N 12610 \N varietas Tillandsia viridiflora var. viridiflora \N \N \N \N \N 12611 B.macrophylla Byrsonima Byrsonima macrophylla \N \N \N \N \N 12612 F.12472 Forsskaolea Forsskaolea sp. Goldblatt 12472 \N \N \N \N \N 12613 P.smirnowii Poa Poa smirnowii \N \N \N \N \N 12614 \N genus Plerandra \N \N \N \N \N 12615 \N genus Lophopappus \N \N \N \N \N 12616 M.glauca Monophyllaea Monophyllaea glauca \N \N \N \N \N 12617 F.trichopoda Ficus Ficus trichopoda \N \N \N \N \N 12618 P.vulgare Pternopetalum Pternopetalum vulgare \N \N \N \N \N 12619 C.aristolochioides Ceropegia Ceropegia aristolochioides \N \N \N \N \N 12620 \N genus Anethum \N \N \N \N \N 12621 A.cordatum Arisaema Arisaema cordatum \N \N \N \N \N 12622 N.strigillosus Nematanthus Nematanthus strigillosus \N \N \N \N \N 12623 S.grandiflora Schisandra Schisandra grandiflora \N \N \N \N \N 12624 G.vaginans Gaertnera Gaertnera vaginans \N \N \N \N \N 12625 C.malyschevii Comastoma Comastoma malyschevii \N \N \N \N \N 12626 L.philippinense Lilium Lilium philippinense \N \N \N \N \N 12627 \N varietas Rhododendron temenium var. dealbatum \N \N \N \N \N 12628 C.erubescens Circaea Circaea erubescens \N \N \N \N \N 12629 S.morelliforme Solanum Solanum morelliforme \N \N \N \N \N 12630 M.puncticulata Macaranga Macaranga puncticulata \N \N \N \N \N 12631 M.bipartita Moraea Moraea bipartita \N \N \N \N \N 12632 H.sabulosa Hemimeris Hemimeris sabulosa \N \N \N \N \N 12633 \N genus Aneilema \N \N \N \N \N 12634 S.marginata Saxifraga Saxifraga marginata \N \N \N \N \N 12635 G.spegazzinii Gymnocalycium Gymnocalycium spegazzinii \N \N \N \N \N 12636 E.nuda Echeveria Echeveria nuda \N \N \N \N \N 12637 D.poranoides Dipteropeltis Dipteropeltis poranoides \N \N \N \N \N 12638 C.commersoniana Coffea Coffea commersoniana \N \N \N \N \N 12639 M.baliensis Malleola Malleola baliensis \N \N \N \N \N 12640 S.hesperius Symphoricarpos Symphoricarpos hesperius \N \N \N \N \N 12641 S.minor Scutellaria Scutellaria minor \N \N \N \N \N 12642 \N genus Myriocarpa \N \N \N \N \N 12643 L.5008 Lachemilla Lachemilla sp. Romoleroux 5008 \N \N \N \N \N 12644 O.buchwaldii Oreobambos Oreobambos buchwaldii \N \N \N \N \N 12645 E.hercegovinus Edraianthus Edraianthus hercegovinus \N \N \N \N \N 12646 P.lignicola Pinguicula Pinguicula lignicola \N \N \N \N \N 12647 \N genus Manilkara \N \N \N \N \N 12648 B.rupestre Brachypodium Brachypodium rupestre \N \N \N \N \N 12649 \N genus Anatherostipa \N \N \N \N \N 12650 E.linearifolium Eriocaulon Eriocaulon linearifolium \N \N \N \N \N 12651 \N genus Cyphokentia \N \N \N \N \N 12652 B.mirandae Bursera Bursera mirandae \N \N \N \N \N 12653 L.lupulina Lippia Lippia lupulina \N \N \N \N \N 12654 \N subspecies Eragrostis lurida subsp. contracta \N \N \N \N \N 12655 \N family Helwingiaceae \N \N \N \N \N 12656 B.ameero Boswellia Boswellia ameero \N \N \N \N \N 12657 \N genus Ochrothallus \N \N \N \N \N 12658 C.longiflorum Clerodendrum Clerodendrum longiflorum \N \N \N \N \N 12659 H.pilosum Haplophyllum Haplophyllum pilosum \N \N \N \N \N 12660 A.cornuta Appendicula Appendicula cornuta \N \N \N \N \N 12661 C.lupulinus Cyperus Cyperus lupulinus \N \N \N \N \N 12662 \N genus Celastrus \N \N \N \N \N 12663 O.clelandii Oenothera Oenothera clelandii \N \N \N \N \N 12664 M.YLW-2002 Michelia Michelia sp. YLW-2002 \N \N \N \N \N 12665 \N varietas Genista numidica var. supravillosa \N \N \N \N \N 12666 A.coelicolor Astragalus Astragalus coelicolor \N \N \N \N \N 12667 C.clematidea Codonopsis Codonopsis clematidea \N \N \N \N \N 12668 E.ciliaris Erica Erica ciliaris Dorset heath \N \N \N \N 12669 T.guianensis Tococa Tococa guianensis \N \N \N \N \N 12670 H.webbii Hemmantia Hemmantia webbii \N \N \N \N \N 12671 B.elegans Bunium Bunium elegans \N \N \N \N \N 12672 G.AK-2011 Genista Genista cf. spachiana AK-2011 \N \N \N \N \N 12673 H.ovata Hydrolea Hydrolea ovata \N \N \N \N \N 12674 E.tunicatus Echinodorus Echinodorus tunicatus \N \N \N \N \N 12675 \N subspecies Salix glauca subsp. glauca \N \N \N \N \N 12676 S.s.n. Scelochilus Scelochilus sp. Luis Mendoza s.n. \N \N \N \N \N 12677 Z.aethiopica Zantedeschia Zantedeschia aethiopica arum-lily,calla-lily,pig-lily \N \N \N \N 12678 S.fastigiatum Syzygium Syzygium fastigiatum \N \N \N \N \N 12679 C.pseudoechinus Coryphantha Coryphantha pseudoechinus \N \N \N \N \N 12680 D.confinis Duguetia Duguetia confinis \N \N \N \N \N 12681 V.langsdorffii Viola Viola langsdorffii \N \N \N \N \N 12682 R.foliifera Renealmia Renealmia foliifera \N \N \N \N \N 12683 M.flexicaulis Moraea Moraea flexicaulis \N \N \N \N \N 12684 L.uniflorus Lycopus Lycopus uniflorus \N \N \N \N \N 12685 P.teta Peliosanthes Peliosanthes teta \N \N \N \N \N 12686 \N genus Couepia \N \N \N \N \N 12687 S.tristyla Saurauia Saurauia tristyla \N \N \N \N \N 12688 O.filiformis Oxypolis Oxypolis filiformis \N \N \N \N \N 12689 B.angustifolia Balduina Balduina angustifolia \N \N \N \N \N 12690 S.acaulis Silene Silene acaulis cushion pink,moss campion \N \N \N \N 12691 S.pterostylis Swainsona Swainsona pterostylis \N \N \N \N \N 12692 C.gracilis Calothamnus Calothamnus gracilis \N \N \N \N \N 12693 A.peduncularis Alcea Alcea peduncularis \N \N \N \N \N 12694 B.armeniaca Bunchosia Bunchosia armeniaca \N \N \N \N \N 12695 P.millefolia Potentilla Potentilla millefolia \N \N \N \N \N 12696 \N varietas Briza rufa var. rufa \N \N \N \N \N 12697 \N varietas Aucuba japonica var. borealis \N \N \N \N \N 12698 \N genus Lifago \N \N \N \N \N 12699 C.koehneana Cornus Cornus koehneana \N \N \N \N \N 12700 \N genus Clibadium \N \N \N \N \N 12701 X.texanum Xanthisma Xanthisma texanum Texas sleepydaisy \N \N \N \N 12702 P.junceum Psilocaulon Psilocaulon junceum \N \N \N \N \N 12703 A.moly Allium Allium moly lily leek \N \N \N \N 12704 M.weingartiana Mammillaria Mammillaria weingartiana \N \N \N \N \N 12705 S.exellii Sabicea Sabicea exellii \N \N \N \N \N 12706 S.madagascariensis Senecio Senecio madagascariensis \N \N \N \N \N 12707 D.scoparium Dracophyllum Dracophyllum scoparium \N \N \N \N \N 12708 M.sinistrohamata Mammillaria Mammillaria sinistrohamata \N \N \N \N \N 12709 T.stenostachya Triodia Triodia stenostachya \N \N \N \N \N 12710 H.luteovenosa Hydrangea Hydrangea luteovenosa \N \N \N \N \N 12711 F.tenera Felicia Felicia tenera \N \N \N \N \N 12712 V.pubescens Viola Viola pubescens \N \N \N \N \N 12713 \N genus Exbucklandia \N \N \N \N \N 12714 P.tomentosa Prunus Prunus tomentosa downy cherry,mao ying tao,yusura-ume \N \N \N \N 12715 C.texensis Croton Croton texensis \N \N \N \N \N 12716 R.amphibia Rorippa Rorippa amphibia \N \N \N \N \N 12717 \N subspecies Fraxinus chinensis subsp. chinensis \N \N \N \N \N 12718 P.marginatum Piper Piper marginatum \N \N \N \N \N 12719 C.lanata Campanula Campanula lanata \N \N \N \N \N 12720 D.australis Diospyros Diospyros australis \N \N \N \N \N 12721 G.SRR-2011 Gongora Gongora sp. SRR-2011 \N \N \N \N \N 23682 \N genus Johnsonia \N \N \N \N \N 12722 C.pubescens Carphalea Carphalea pubescens \N \N \N \N \N 12723 R.mannii Rauvolfia Rauvolfia mannii \N \N \N \N \N 12724 C.miradorense Cestrum Cestrum miradorense \N \N \N \N \N 12725 A.coursii Ascarina Ascarina coursii \N \N \N \N \N 12726 S.minutistellata Schefflera Schefflera minutistellata \N \N \N \N \N 12727 H.tigrina Houlletia Houlletia tigrina \N \N \N \N \N 12728 L.hispanica Loeflingia Loeflingia hispanica \N \N \N \N \N 12729 M.tomentosa Maireana Maireana tomentosa \N \N \N \N \N 12730 C.truxillensis Cressa Cressa truxillensis \N \N \N \N \N 12731 M.volkensii Melia Melia volkensii \N \N \N \N \N 12732 E.nitens Eucalyptus Eucalyptus grandis x Eucalyptus nitens \N \N \N \N \N 12733 C.kneuckeri Crucihimalaya Crucihimalaya kneuckeri \N \N \N \N \N 12734 R.spinuliferum Rhododendron Rhododendron spinuliferum \N \N \N \N \N 12735 P.uralense Pleurospermum Pleurospermum uralense \N \N \N \N \N 12736 C.epapillosa Carex Carex epapillosa \N \N \N \N \N 12737 D.kelloggii Deinandra Deinandra kelloggii \N \N \N \N \N 12738 C.cheotaiyienii Cardamine Cardamine cheotaiyienii \N \N \N \N \N 12739 A.humilis Amelanchier Amelanchier humilis \N \N \N \N \N 12740 E.glomerata Endlicheria Endlicheria glomerata \N \N \N \N \N 12741 B.patens Boechera Boechera patens \N \N \N \N \N 12742 \N genus Normanbya \N \N \N \N \N 12743 H.sanderi Houlletia Houlletia sanderi \N \N \N \N \N 12744 \N genus Osbeckia \N \N \N \N \N 12745 I.anisatum Illicium Illicium anisatum Japanese star-anise \N \N \N \N 12746 \N genus Baijiania \N \N \N \N \N 12747 D.truncatiales Dodonaea Dodonaea truncatiales \N \N \N \N \N 12748 P.dealbatus Pachycarpus Pachycarpus dealbatus \N \N \N \N \N 12749 C.mollis Colpias Colpias mollis \N \N \N \N \N 12750 \N genus Gymnachne \N \N \N \N \N 12751 \N order Paracryphiales \N \N \N \N \N 12752 C.cherokeensis Carex Carex cherokeensis \N \N \N \N \N 12753 P.longipes Pouzolzia Pouzolzia longipes \N \N \N \N \N 12754 A.collinus Acianthus Acianthus collinus \N \N \N \N \N 12755 B.meridense Bulbophyllum Bulbophyllum meridense \N \N \N \N \N 12756 C.aegyptiaca Conyza Conyza aegyptiaca \N \N \N \N \N 12757 \N varietas Scurrula parasitica var. graciliflora \N \N \N \N \N 12758 C.pterocaula Centaurea Centaurea pterocaula \N \N \N \N \N 12759 V.saccharifera Vitis Vitis saccharifera \N \N \N \N \N 12760 \N genus Paratheria \N \N \N \N \N 12761 I.bauchiensis Ixora Ixora bauchiensis \N \N \N \N \N 12762 D.alta Dorstenia Dorstenia alta \N \N \N \N \N 12763 T.concolor Tillandsia Tillandsia concolor \N \N \N \N \N 12764 P.capillaceum Ptilimnium Ptilimnium capillaceum \N \N \N \N \N 12765 N.revoluta Nolana Nolana revoluta \N \N \N \N \N 12766 J.chocola Jarilla Jarilla chocola berenjena,bonetillo,papayillo \N \N \N \N 12767 P.compressus Platycaulos Platycaulos compressus \N \N \N \N \N 12768 \N genus Sclerochloa \N \N \N \N \N 12769 H.occulta Halotis Halotis occulta \N \N \N \N \N 12770 P.sanderianum Paphiopedilum Paphiopedilum kolopakingii x Paphiopedilum sanderianum \N \N \N \N \N 12771 S.multiflora Schelhammera Schelhammera multiflora \N \N \N \N \N 12772 D.discolor Deutzia Deutzia discolor \N \N \N \N \N 12773 A.nidularioides Aechmea Aechmea nidularioides \N \N \N \N \N 12774 S.pseudoquina Strychnos Strychnos pseudoquina \N \N \N \N \N 12775 L.longiflorum Lilium Lilium formosanum x Lilium longiflorum \N \N \N \N \N 12776 C.valioi Caraipa Caraipa valioi \N \N \N \N \N 12777 P.hylaeicum Panicum Panicum hylaeicum \N \N \N \N \N 12778 R.colonorum Ranunculus Ranunculus colonorum \N \N \N \N \N 12779 S.jurgensenii Sedum Sedum jurgensenii \N \N \N \N \N 12780 I.unisetus Ixophorus Ixophorus unisetus \N \N \N \N \N 12781 G.peshmenii Galanthus Galanthus peshmenii \N \N \N \N \N 12782 A.siamensis Altingia Altingia siamensis \N \N \N \N \N 12783 E.peperomia Epidendrum Epidendrum peperomia \N \N \N \N \N 12784 \N subspecies Daviesia nudiflora subsp. amplectens \N \N \N \N \N 12785 R.armata Randia Randia armata \N \N \N \N \N 12786 P.00-6616 Phrynium Phrynium sp. Kress 00-6616 \N \N \N \N \N 12787 M.oculodracontis Machilus Machilus oculodracontis \N \N \N \N \N 12788 \N genus Celtis \N \N \N \N \N 12789 V.jatamansi Valeriana Valeriana jatamansi \N \N \N \N \N 12790 C.guatemalensis Croton Croton guatemalensis \N \N \N \N \N 12791 A.muricata Annona Annona muricata guanabana,prickly custard apple,soursop \N \N \N \N 12792 P.NSW416093 Pseudactinia Pseudactinia sp. NSW416093 \N \N \N \N \N 12793 P.pulvinatus Paepalanthus Paepalanthus pulvinatus \N \N \N \N \N 12794 \N varietas Lamium amplexicaule var. incisum \N \N \N \N \N 12795 O.arcuata Ophionella Ophionella arcuata \N \N \N \N \N 12796 S.aucheri Salvia Salvia aucheri \N \N \N \N \N 12797 F.trifoliata Forchhammeria Forchhammeria trifoliata \N \N \N \N \N 12798 D.ladyginii Draba Draba ladyginii \N \N \N \N \N 12799 E.insularis Echinopepon Echinopepon insularis \N \N \N \N \N 12800 M.fruticosa Moussonia Moussonia fruticosa \N \N \N \N \N 12801 D.magnificus Drepananthus Drepananthus magnificus \N \N \N \N \N 12802 J.subhumile Jasminum Jasminum subhumile \N \N \N \N \N 12803 P.junghuhnii Pothos Pothos junghuhnii \N \N \N \N \N 12804 C.anemonoides Callianthemum Callianthemum anemonoides \N \N \N \N \N 12805 M.prostratum Macroptilium Macroptilium prostratum \N \N \N \N \N 12806 P.neotropica Pentamerista Pentamerista neotropica \N \N \N \N \N 12807 P.californica Polygala Polygala californica California milkwort \N \N \N \N 12808 A.bidentatum Allium Allium bidentatum \N \N \N \N \N 12809 R.subtilis Rhapis Rhapis subtilis \N \N \N \N \N 12810 N.flexilis Najas Najas flexilis slender naiad \N \N \N \N 12811 S.dimorphispinum Solanum Solanum dimorphispinum \N \N \N \N \N 12812 S.prenanthoides Senecio Senecio prenanthoides \N \N \N \N \N 12813 T.caeruleum Trachelium Trachelium caeruleum \N \N \N \N \N 12814 U.costaricensis Utleya Utleya costaricensis \N \N \N \N \N 12815 M.laciniata Microseris Microseris laciniata \N \N \N \N \N 12816 A.boyceana Alocasia Alocasia boyceana \N \N \N \N \N 24170 \N genus Dodecastigma \N \N \N \N \N 12817 M.carolinae Monodora Monodora carolinae \N \N \N \N \N 12818 H.longzhouensis Hemiboea Hemiboea longzhouensis \N \N \N \N \N 12819 N.105750 Nectandra Nectandra sp. BCI 105750 \N \N \N \N \N 12820 R.zoelleri Rhododendron Rhododendron zoelleri \N \N \N \N \N 12821 F.potamophila Fraxinus Fraxinus potamophila \N \N \N \N \N 12822 S.sericeum Symphyotrichum Symphyotrichum sericeum western silvery aster \N \N \N \N 12823 N.tessellata Notechidnopsis Notechidnopsis tessellata \N \N \N \N \N 12824 A.della-cellae Athamanta Athamanta della-cellae \N \N \N \N \N 12825 L.grandiflora Leucophysalis Leucophysalis grandiflora \N \N \N \N \N 12826 C.subtessellata Chusquea Chusquea subtessellata \N \N \N \N \N 12827 A.lowii Artocarpus Artocarpus lowii \N \N \N \N \N 12828 G.pleurogynoides Gentiana Gentiana pleurogynoides \N \N \N \N \N 12829 \N genus Trithuria \N \N \N \N \N 12830 I.deightonii Indigofera Indigofera deightonii \N \N \N \N \N 12831 \N genus Agelaea \N \N \N \N \N 12832 \N genus Onosma \N \N \N \N \N 12833 P.7178 Pachyphyllum Pachyphyllum sp. Hirtz 7178 \N \N \N \N \N 12834 H.zhejiangensis Hemsleya Hemsleya zhejiangensis \N \N \N \N \N 12835 A.dimidiatum Asarum Asarum dimidiatum \N \N \N \N \N 12836 A.maroccana Andrachne Andrachne maroccana \N \N \N \N \N 12837 S.mossiana Sarcocornia Sarcocornia mossiana \N \N \N \N \N 12838 K.rotunda Kaempferia Kaempferia rotunda hai nan san qi,resurrection-lily \N \N \N \N 12839 C.oppositicordia Cabreriella Cabreriella oppositicordia \N \N \N \N \N 12840 M.prunifolia Malus Malus prunifolia \N \N \N \N \N 12841 P.ferrugineum Protium Protium ferrugineum \N \N \N \N \N 12842 D.rugulosa Doellingeria Doellingeria rugulosa \N \N \N \N \N 12843 \N subtribe Cryptostylidinae \N \N \N \N \N 12844 \N forma Phyllostachys aurea f. albovariegata \N \N \N \N \N 12845 \N genus Pseudosciadium \N \N \N \N \N 12846 E.reticulata Entada Entada reticulata \N \N \N \N \N 12847 I.purpurea Impatiens Impatiens purpurea \N \N \N \N \N 12848 \N genus Calolisianthus \N \N \N \N \N 12849 S.klotzscheana Sobralia Sobralia klotzscheana \N \N \N \N \N 12850 \N genus Grazielanthus \N \N \N \N \N 12851 \N no rank unclassified Lauraceae \N \N \N \N \N 12852 S.brevistaminea Silene Silene brevistaminea \N \N \N \N \N 12853 C.pseudocineraria Centaurea Centaurea pseudocineraria \N \N \N \N \N 12854 G.speciosum Goniolimon Goniolimon speciosum \N \N \N \N \N 12855 \N genus Cytinus \N \N \N \N \N 12856 A.coeruleoviridis Alpinia Alpinia coeruleoviridis \N \N \N \N \N 12857 S.bulbiferum Sedum Sedum bulbiferum \N \N \N \N \N 12858 S.alatum Sisyrinchium Sisyrinchium alatum \N \N \N \N \N 12859 \N genus Cheilosa \N \N \N \N \N 12860 E.mucronata Esterhuysenia Esterhuysenia mucronata \N \N \N \N \N 12861 H.sulcatum Helictotrichon Helictotrichon sulcatum \N \N \N \N \N 12862 S.lateriflora Scutellaria Scutellaria lateriflora \N \N \N \N \N 12863 \N subspecies Conostylis caricina subsp. elachys \N \N \N \N \N 12864 C.discolor Calandrinia Calandrinia discolor \N \N \N \N \N 12865 P.berchtoldii Potamogeton Potamogeton pusillus x Potamogeton berchtoldii \N \N \N \N \N 12866 N.sample environmental samples Taxonomy:1008290 Navarretia environmental sample \N \N \N \N \N 12867 P.filiformis Passerina Passerina filiformis \N \N \N \N \N 12868 A.bojeri Agathisanthemum Agathisanthemum bojeri \N \N \N \N \N 12869 \N subfamily Ornithogaloideae \N \N \N \N \N 12870 H.gentianoides Hexapterella Hexapterella gentianoides \N \N \N \N \N 12871 M.squarrosa Muraltia Muraltia squarrosa \N \N \N \N \N 12872 O.aliciae Orostachys Orostachys aliciae \N \N \N \N \N 12873 A.nipponensis Ajuga Ajuga nipponensis \N \N \N \N \N 12874 S.kilimandscharica Stoebe Stoebe kilimandscharica \N \N \N \N \N 12875 P.sanctifelicis Piper Piper sanctifelicis \N \N \N \N \N 12876 G.latifolia Gigantochloa Gigantochloa latifolia \N \N \N \N \N 12877 H.cylindrica Hainardia Hainardia cylindrica \N \N \N \N \N 12878 W.acaulis Wahlenbergia Wahlenbergia acaulis \N \N \N \N \N 12879 \N genus Tovomita \N \N \N \N \N 12880 \N genus Amphibolia \N \N \N \N \N 12881 \N genus Cassia \N \N \N \N \N 12882 F.microloba Ferula Ferula microloba \N \N \N \N \N 12883 M.longifolia Madhuca Madhuca longifolia mahua,moatree \N \N \N \N 12884 S.harveyanus Sclerochiton Sclerochiton harveyanus \N \N \N \N \N 12885 M.zehntneri Manihot Manihot zehntneri \N \N \N \N \N 12886 P.anjuicum Papaver Papaver anjuicum \N \N \N \N \N 12887 S.rhombifolia Sagittaria Sagittaria rhombifolia \N \N \N \N \N 12888 R.capensis Rhoiacarpos Rhoiacarpos capensis \N \N \N \N \N 12889 C.splendida Cousinia Cousinia splendida \N \N \N \N \N 12890 L.217 Lupinus Lupinus sp. Eastwood 217 \N \N \N \N \N 12891 M.flexuosa Meliosma Meliosma flexuosa \N \N \N \N \N 12892 \N varietas Prunus domestica var. juliana St. Julien plum \N \N \N \N 12893 P.perrieri Pimpinella Pimpinella perrieri \N \N \N \N \N 12894 R.exappendiculata Rinorea Rinorea exappendiculata \N \N \N \N \N 12895 P.velutina Phyllostegia Phyllostegia velutina \N \N \N \N \N 12896 C.rhaponticoides Carduncellus Carduncellus rhaponticoides \N \N \N \N \N 12897 P.somniferum Papaver Papaver somniferum opium poppy \N \N \N \N 12898 B.krusei Bursera Bursera krusei \N \N \N \N \N 12899 H.endecaphylla Hemsleya Hemsleya endecaphylla \N \N \N \N \N 12900 \N genus Pleuropterus \N \N \N \N \N 12901 \N subtribe Spiranthinae \N \N \N \N \N 12902 S.yunnanensis Saussurea Saussurea yunnanensis \N \N \N \N \N 12903 H.scaposa Haplocarpha Haplocarpha scaposa \N \N \N \N \N 12904 D.hookeri Draba Draba hookeri \N \N \N \N \N 12905 K.ericoides Kalmia Kalmia ericoides \N \N \N \N \N 12906 L.densiflora Luzula Luzula densiflora \N \N \N \N \N 12907 A.paniculata Adenophora Adenophora paniculata \N \N \N \N \N 12908 C.rugosum Commidendrum Commidendrum rugosum \N \N \N \N \N 12909 A.otarioides Asclepias Asclepias otarioides \N \N \N \N \N 12910 M.phymatochila Miltonia Miltonia phymatochila \N \N \N \N \N 12911 \N genus Virgilia \N \N \N \N \N 12912 P.marlothii Polemanniopsis Polemanniopsis marlothii \N \N \N \N \N 12913 E.hardeniana Eidothea Eidothea hardeniana \N \N \N \N \N 12914 \N forma Breynia disticha f. nivosa \N \N \N \N \N 12915 F.rupicola Fendlera Fendlera rupicola \N \N \N \N \N 12916 P.polyadenia Platylepis Platylepis polyadenia \N \N \N \N \N 12917 A.petraeum Allium Allium petraeum \N \N \N \N \N 12918 S.rigida Senna Senna rigida \N \N \N \N \N 12919 B.pictum Blepharodon Blepharodon pictum \N \N \N \N \N 12920 L.campylocladus Lotus Lotus campylocladus \N \N \N \N \N 12921 G.quadrangularis Gladiolus Gladiolus quadrangularis \N \N \N \N \N 12922 \N genus Dillandia \N \N \N \N \N 12923 P.tanacetifolia Potentilla Potentilla tanacetifolia \N \N \N \N \N 12924 G.superba Geissois Geissois superba \N \N \N \N \N 12925 I.producta Isolepis Isolepis producta \N \N \N \N \N 12926 \N genus Oxygyne \N \N \N \N \N 12927 M.havilandii Macaranga Macaranga havilandii \N \N \N \N \N 12928 \N varietas Peracarpa carnosa var. circaeoides \N \N \N \N \N 12929 S.tetragona Schinziella Schinziella tetragona \N \N \N \N \N 12930 \N subspecies Rhipsalis baccifera subsp. mauritiana \N \N \N \N \N 12931 \N varietas Clerodendrum aculeatum var. gracile \N \N \N \N \N 12932 C.occulta Cyrtandra Cyrtandra occulta \N \N \N \N \N 12933 S.richii Sinningia Sinningia richii \N \N \N \N \N 12934 T.grandisepala Thladiantha Thladiantha grandisepala \N \N \N \N \N 12935 P.confertifolia Pentanisia Pentanisia confertifolia \N \N \N \N \N 12936 A.pilulifera Adina Adina pilulifera \N \N \N \N \N 12937 E.ovalis Elmerrillia Elmerrillia ovalis \N \N \N \N \N 12938 S.asterophorum Solanum Solanum asterophorum \N \N \N \N \N 12939 E.francoisii Euphorbia Euphorbia francoisii \N \N \N \N \N 12940 G.bakoliae Gagnebina Gagnebina bakoliae \N \N \N \N \N 12941 \N subspecies Acer tschonoskii subsp. tschonoskii \N \N \N \N \N 12942 S.microcarpus Sapranthus Sapranthus microcarpus \N \N \N \N \N 12943 O.brasiliensis Oxalis Oxalis brasiliensis \N \N \N \N \N 12944 S.purpurascens Schizachne Schizachne purpurascens \N \N \N \N \N 12945 E.cordifolius Echinodorus Echinodorus cordifolius Texas mudbaby \N \N \N \N 12946 M.1134 Massonia Massonia sp. Wetschnig 1134 \N \N \N \N \N 12947 R.brittoniana Ruellia Ruellia brittoniana \N \N \N \N \N 12948 T.clusiana Tulipa Tulipa clusiana \N \N \N \N \N 12949 B.manhaoensis Begonia Begonia manhaoensis \N \N \N \N \N 12950 A.davisii Atriplex Atriplex davisii \N \N \N \N \N 12951 D.convallaria Drymocallis Drymocallis convallaria \N \N \N \N \N 12952 D.34 Dehaasia Dehaasia sp. Arifiani & van der Werff 34 \N \N \N \N \N 12953 M.chasei Macroclinium Macroclinium chasei \N \N \N \N \N 12954 P.plumigera Phylica Phylica plumigera \N \N \N \N \N 12955 C.angustilamina Clidemia Clidemia angustilamina \N \N \N \N \N 12956 A.cupaniana Aira Aira cupaniana \N \N \N \N \N 12957 E.aegyptiacum Eremobium Eremobium aegyptiacum \N \N \N \N \N 12958 I.lacustris Iris Iris lacustris \N \N \N \N \N 12959 R.loxensis Roupala Roupala loxensis \N \N \N \N \N 12960 C.dicksonii Chorizema Chorizema dicksonii \N \N \N \N \N 12961 E.canescens Encelia Encelia canescens \N \N \N \N \N 12962 T.stenocephalum Taraxacum Taraxacum stenocephalum \N \N \N \N \N 12963 M.perforata Metrosideros Metrosideros perforata \N \N \N \N \N 12964 N.cabrerae Nassella Nassella cabrerae \N \N \N \N \N 12965 L.divaricata Leptecophylla Leptecophylla divaricata \N \N \N \N \N 12966 D.plumarius Dianthus Dianthus plumarius \N \N \N \N \N 12967 R.neoregelioides Ronnbergia Ronnbergia neoregelioides \N \N \N \N \N 12968 Z.15 Zanthoxylum Zanthoxylum sp. Clayton 15 \N \N \N \N \N 12969 C.guatemalensis Cryptarrhena Cryptarrhena guatemalensis \N \N \N \N \N 12970 \N subspecies Scirpoides holoschoenus subsp. thunbergii \N \N \N \N \N 12971 \N varietas Cristaria dissecta var. dissecta \N \N \N \N \N 12972 \N subspecies Sinapis pubescens subsp. pubescens \N \N \N \N \N 12973 D.cuneifolia Drosera Drosera cuneifolia \N \N \N \N \N 12974 W.polyantha Wahlenbergia Wahlenbergia polyantha \N \N \N \N \N 12975 S.lydium Sedum Sedum lydium \N \N \N \N \N 12976 E.PB-2011 Euphorbia Euphorbia sp. 3 PB-2011 \N \N \N \N \N 12977 H.hirsuta Hypselodelphys Hypselodelphys hirsuta \N \N \N \N \N 12978 \N no rank unclassified Rutaceae \N \N \N \N \N 12979 P.coccinea Pyracantha Pyracantha coccinea scarlet firethorn \N \N \N \N 12980 O.pallens Oxalis Oxalis pallens \N \N \N \N \N 12981 C.junceus Campylanthus Campylanthus junceus \N \N \N \N \N 12982 O.argentina Oxalis Oxalis argentina \N \N \N \N \N 12983 S.koraiensis Scrophularia Scrophularia koraiensis \N \N \N \N \N 12984 M.scalariformis Maxillaria Maxillaria scalariformis \N \N \N \N \N 12985 E.candollei Encyclia Encyclia candollei \N \N \N \N \N 12986 \N genus Tahina \N \N \N \N \N 12987 P.laetus Pseudopanax Pseudopanax laetus \N \N \N \N \N 12988 L.mollis Lotononis Lotononis mollis \N \N \N \N \N 12989 A.angustifolia Anthocercis Anthocercis angustifolia \N \N \N \N \N 12990 \N genus Halimocnemis \N \N \N \N \N 12991 \N subspecies Campanula fragilis subsp. cavolinii \N \N \N \N \N 12992 C.azarolus Crataegus Crataegus azarolus Mediterranean medlar,azarole \N \N \N \N 12993 P.dulcis Prunus Prunus persica x Prunus dulcis \N \N \N \N \N 12994 A.siculiformis Acacia Acacia siculiformis \N \N \N \N \N 12995 M.shultziorum Mentzelia Mentzelia shultziorum \N \N \N \N \N 12996 C.6586 Cayratia Cayratia sp. 6586 \N \N \N \N \N 12997 G.spachiana Genista Genista spachiana \N \N \N \N \N 12998 \N genus Orchis \N \N \N \N \N 12999 N.johnstonii Nolana Nolana johnstonii \N \N \N \N \N 13000 T.grandiflora Thunbergia Thunbergia grandiflora \N \N \N \N \N 13001 H.curtisii Holarrhena Holarrhena curtisii \N \N \N \N \N 13002 C.natalensis Coleotrype Coleotrype natalensis \N \N \N \N \N 13003 P.loranthoides Phyllanthus Phyllanthus loranthoides \N \N \N \N \N 13004 C.90-3124 Costus Costus sp. Kress 90-3124 \N \N \N \N \N 13005 \N subspecies Hieracium iseranum subsp. confinium \N \N \N \N \N 13006 P.linearis Perezia Perezia linearis \N \N \N \N \N 13007 G.densiflora Gymnadenia Gymnadenia x densiflora \N \N \N \N \N 25826 \N genus Coelophragmus \N \N \N \N \N 13008 A.dioicus Aruncus Aruncus dioicus goat's beard \N \N \N \N 13009 P.ericoides Platysace Platysace ericoides \N \N \N \N \N 13010 C.xylobasis Centaurea Centaurea xylobasis \N \N \N \N \N 13011 T.nitens Tetrastigma Tetrastigma nitens \N \N \N \N \N 13012 D.fandra Dioscorea Dioscorea fandra \N \N \N \N \N 13013 P.aethiopica Polysphaeria Polysphaeria aethiopica \N \N \N \N \N 13014 C.gilanicus Crocus Crocus gilanicus \N \N \N \N \N 13015 \N genus Omphacomeria \N \N \N \N \N 13016 P.alliacea Petiveria Petiveria alliacea \N \N \N \N \N 13017 P.petrosa Pentatrichia Pentatrichia petrosa \N \N \N \N \N 13018 H.valenzuelana Heterotaxis Heterotaxis valenzuelana \N \N \N \N \N 13019 S.aciphyllus Syngonanthus Syngonanthus aciphyllus \N \N \N \N \N 13020 M.intermedia Moehringia Moehringia intermedia \N \N \N \N \N 13021 S.jonesii Sarracenia Sarracenia jonesii \N \N \N \N \N 13022 S.terminalioides Spathelia Spathelia terminalioides \N \N \N \N \N 13023 A.mannii Adenia Adenia mannii \N \N \N \N \N 13024 P.geniculatus Paepalanthus Paepalanthus geniculatus \N \N \N \N \N 13025 A.jackianum Arthrophyllum Arthrophyllum jackianum \N \N \N \N \N 13026 J.nicorae Jarava Jarava nicorae \N \N \N \N \N 13027 G.hispanica Gaudinia Gaudinia hispanica \N \N \N \N \N 13028 B.delavayi Briggsiopsis Briggsiopsis delavayi \N \N \N \N \N 13029 M.JCP-2003 Milligania Milligania sp. JCP-2003 \N \N \N \N \N 13030 \N varietas Celmisia adamsii var. rugosula \N \N \N \N \N 13031 \N genus Velascoa \N \N \N \N \N 13032 K.dieffenbachii Kelleria Kelleria dieffenbachii \N \N \N \N \N 13033 E.paludosa Eurybia Eurybia paludosa southern swamp aster \N \N \N \N 13034 C.glandulosa Chaetanthera Chaetanthera glandulosa \N \N \N \N \N 13035 \N genus Oplismenus \N \N \N \N \N 13036 G.jamaicensis Gesneria Gesneria jamaicensis \N \N \N \N \N 13037 O.tepalifera Oreobolopsis Oreobolopsis tepalifera \N \N \N \N \N 13038 P.kosaninii Pseudoroegneria Pseudoroegneria kosaninii \N \N \N \N \N 13039 A.calderae Arrhenatherum Arrhenatherum calderae \N \N \N \N \N 13040 \N genus Mysanthus \N \N \N \N \N 13041 O.distichus Oenocarpus Oenocarpus distichus \N \N \N \N \N 13042 C.comosum Chlorophytum Chlorophytum comosum \N \N \N \N \N 13043 \N genus Nemosenecio \N \N \N \N \N 13044 E.thouarsiana Euphorbia Euphorbia thouarsiana \N \N \N \N \N 13045 P.macrocarpa Pouteria Pouteria macrocarpa \N \N \N \N \N 13046 B.neglecta Boswellia Boswellia neglecta \N \N \N \N \N 13047 \N genus Calodecaryia \N \N \N \N \N 13048 \N genus Sechium \N \N \N \N \N 13049 N.benthamiana Nicotiana Nicotiana benthamiana \N \N \N \N \N 13050 G.rolfei Gleditsia Gleditsia rolfei \N \N \N \N \N 13051 A.Setiam Alocasia Alocasia sp. Setiam \N \N \N \N \N 13052 M.compressa Mammillaria Mammillaria compressa \N \N \N \N \N 13053 P.rablense Pteroselinum Pteroselinum rablense \N \N \N \N \N 13054 P.dubia Poitea Poitea dubia \N \N \N \N \N 13055 S.webbii Seseli Seseli webbii \N \N \N \N \N 13056 P.aridum Pelargonium Pelargonium aridum \N \N \N \N \N 13057 \N genus Justicia \N \N \N \N \N 13058 C.guianensis Couratari Couratari guianensis \N \N \N \N \N 13059 X.angustifolium Xylomelum Xylomelum angustifolium \N \N \N \N \N 13060 L.nodiflorum Linum Linum nodiflorum \N \N \N \N \N 13061 A.guerrerensis Arachnothryx Arachnothryx guerrerensis \N \N \N \N \N 13062 V.peduncularis Veronica Veronica peduncularis \N \N \N \N \N 13063 M.laxum Myriophyllum Myriophyllum heterophyllum x Myriophyllum laxum \N \N \N \N \N 13064 \N genus Straussia \N \N \N \N \N 13065 \N genus Isertia \N \N \N \N \N 13066 T.K187 unclassified Taraxacum Taraxacum (sect. Borealia) sp. K187 \N \N \N \N \N 13067 K.rupestris Kunzea Kunzea rupestris \N \N \N \N \N 13068 \N genus Baroniella \N \N \N \N \N 13069 A.cretica Anthemis Anthemis cretica \N \N \N \N \N 13070 A.kretschmeri Arachis Arachis kretschmeri \N \N \N \N \N 13071 P.myrrhifolium Pelargonium Pelargonium myrrhifolium \N \N \N \N \N 13072 C.leucanthum Cynanchum Cynanchum leucanthum \N \N \N \N \N 13073 E.magnicapsula Euphorbia Euphorbia magnicapsula \N \N \N \N \N 13074 A.baetica Atropa Atropa baetica \N \N \N \N \N 13075 C.maderaspatanus Cucumis Cucumis maderaspatanus \N \N \N \N \N 13076 T.hirsuta Tetratheca Tetratheca hirsuta \N \N \N \N \N 13077 S.gossipiphora Saussurea Saussurea gossipiphora \N \N \N \N \N 13078 M.parviflorus Mimulus Mimulus parviflorus \N \N \N \N \N 13079 C.repens Callisia Callisia repens \N \N \N \N \N 13080 E.multiformis Euphorbia Euphorbia multiformis \N \N \N \N \N 13081 \N genus Holandrea \N \N \N \N \N 13082 S.alba Sonneratia Sonneratia alba \N \N \N \N \N 13083 R.lonadioides Rhetinolepis Rhetinolepis lonadioides \N \N \N \N \N 13084 C.indecora Cuscuta Cuscuta indecora \N \N \N \N \N 13085 M.colensoi Metrosideros Metrosideros colensoi \N \N \N \N \N 13086 C.hexagona Caralluma Caralluma hexagona \N \N \N \N \N 13087 L.975877 Leea Leea sp. Kress 975877 \N \N \N \N \N 13088 B.cernua Breynia Breynia cernua \N \N \N \N \N 13089 D.BGB-2009 Dalechampia Dalechampia aff. gentryi BGB-2009 \N \N \N \N \N 13090 N.guadaliensis Najas Najas guadaliensis \N \N \N \N \N 13091 T.argentina Tillandsia Tillandsia argentina \N \N \N \N \N 13092 A.rosmarinifolia Athrixia Athrixia rosmarinifolia \N \N \N \N \N 13093 \N genus Cryptantha \N \N \N \N \N 13094 T.4348-1 Turraeanthus Turraeanthus sp. Carvalho 4348-1 \N \N \N \N \N 13095 V.diffusa Vigna Vigna diffusa \N \N \N \N \N 13096 D.mohlianum Dendrobium Dendrobium mohlianum \N \N \N \N \N 13097 A.commutata Aspalathus Aspalathus commutata \N \N \N \N \N 13098 H.goyderi Hibbertia Hibbertia goyderi \N \N \N \N \N 13099 P.axillaris Pellacalyx Pellacalyx axillaris \N \N \N \N \N 13100 E.himalaicus Eremurus Eremurus himalaicus \N \N \N \N \N 13101 B.pachypus Bulbophyllum Bulbophyllum pachypus \N \N \N \N \N 13102 \N genus Dolichopentas \N \N \N \N \N 13103 C.macrostachya Cordia Cordia macrostachya \N \N \N \N \N 13104 D.neglecta Dichaea Dichaea neglecta \N \N \N \N \N 13105 S.bakko Salix Salix bakko Japanese willow \N \N \N \N 13106 T.spiniger Thysanotus Thysanotus spiniger \N \N \N \N \N 13107 B.ningmingensis Begonia Begonia ningmingensis \N \N \N \N \N 13108 N.corynocarpum Neuburgia Neuburgia corynocarpum \N \N \N \N \N 13109 T.JK3725(3) unclassified Taraxacum Taraxacum (sect. Alpina) sp. JK3725(3) \N \N \N \N \N 13110 A.turanica Amberboa Amberboa turanica \N \N \N \N \N 13111 D.broteri Daucus Daucus broteri \N \N \N \N \N 13112 \N genus Baccharis \N \N \N \N \N 13113 O.aciculiformis Oligochaetochilus Oligochaetochilus aciculiformis \N \N \N \N \N 13114 A.purpusii Aeschynomene Aeschynomene purpusii \N \N \N \N \N 13115 \N genus Agonandra \N \N \N \N \N 13116 R.recurva Rudgea Rudgea recurva \N \N \N \N \N 13117 V.montevidensis Verbena Verbena montevidensis \N \N \N \N \N 13118 M.glabra Minuartia Minuartia glabra Appalachian stitchwort \N \N \N \N 13119 H.cochinchinensis Helicia Helicia cochinchinensis \N \N \N \N \N 13120 H.bonariensis Hydrocotyle Hydrocotyle bonariensis \N \N \N \N \N 13121 T.fallax Tragia Tragia fallax \N \N \N \N \N 13122 V.dieffenbachii Hebe Veronica dieffenbachii \N \N \N \N \N 13123 M.chrysantha Matelea Matelea chrysantha \N \N \N \N \N 13124 C.gracillima Cuscuta Cuscuta gracillima \N \N \N \N \N 13125 N.intermedia Nonea Nonea intermedia \N \N \N \N \N 13126 A.lotoides Anthyllis Anthyllis lotoides \N \N \N \N \N 13127 P.recurvata Perezia Perezia recurvata \N \N \N \N \N 13128 R.nitida Randia Randia nitida \N \N \N \N \N 13129 \N varietas Asparagus cochinchinensis var. pygmaeus Chinese asparagus,tiang dong \N \N \N \N 13130 B.thorild-wulffii Braya Braya thorild-wulffii \N \N \N \N \N 13131 A.blepharophylla Arabis Arabis blepharophylla rose rockcress \N \N \N \N 13132 T.tuberculata Trichilia Trichilia tuberculata \N \N \N \N \N 13133 D.oleifera Diospyros Diospyros oleifera you shi \N \N \N \N 13134 P.sparsiflora Plantago Plantago sparsiflora pineland plantain \N \N \N \N 13135 D.cardiophylla Dahlia Dahlia cardiophylla \N \N \N \N \N 13136 E.californica Encelia Encelia californica \N \N \N \N \N 13137 P.vulgaris Petalochilus Petalochilus vulgaris \N \N \N \N \N 13138 S.seoulensis Silene Silene seoulensis \N \N \N \N \N 13139 I.pandurata Ipomoea Ipomoea pandurata \N \N \N \N \N 13140 P.nivalis Pyrus Pyrus x nivalis \N \N \N \N \N 13141 C.laeta Caragana Caragana laeta \N \N \N \N \N 13142 A.menglaense Amomum Amomum menglaense \N \N \N \N \N 13143 \N genus Leucanthemella \N \N \N \N \N 13144 A.vulcanica Alpinia Alpinia vulcanica \N \N \N \N \N 13145 B.coloniata Bactris Bactris coloniata \N \N \N \N \N 13146 \N varietas Caralluma adscendens var. attenuata \N \N \N \N \N 13147 \N subspecies Poa violacea subsp. aetnensis \N \N \N \N \N 13148 C.rhamnifolia Coffea Coffea rhamnifolia \N \N \N \N \N 13149 P.tomentosa Pergularia Pergularia tomentosa \N \N \N \N \N 13150 N.delavayi Nannoglottis Nannoglottis delavayi \N \N \N \N \N 13151 D.wightii Drimia Drimia wightii \N \N \N \N \N 13152 P.wettsteinii Panicum Panicum wettsteinii \N \N \N \N \N 13153 A.arborescens Arfeuillea Arfeuillea arborescens \N \N \N \N \N 13154 G.burseri Gentiana Gentiana burseri \N \N \N \N \N 13155 P.spathacea Puya Puya spathacea \N \N \N \N \N 13156 \N genus Paraserianthes \N \N \N \N \N 13157 S.carpinterae Stelis Stelis carpinterae \N \N \N \N \N 13158 B.pulcherrima Boesenbergia Boesenbergia pulcherrima \N \N \N \N \N 13159 X.gerrardii Xysmalobium Xysmalobium gerrardii \N \N \N \N \N 13160 B.utahensis Buddleja Buddleja utahensis \N \N \N \N \N 13161 A.viridiflora Aquilegia Aquilegia viridiflora \N \N \N \N \N 13162 T.intermedia Triodia Triodia intermedia \N \N \N \N \N 13163 M.deltoidea Moraea Moraea deltoidea \N \N \N \N \N 13164 S.tabascana Strychnos Strychnos tabascana \N \N \N \N \N 13165 \N genus Streptocarpus \N \N \N \N \N 13166 G.grandis Gentianopsis Gentianopsis grandis \N \N \N \N \N 13167 A.baxteri Astroloma Astroloma baxteri \N \N \N \N \N 13168 W.tenerrima Wahlenbergia Wahlenbergia tenerrima \N \N \N \N \N 13169 T.O-241 Tropidia Tropidia sp. Chase O-241 \N \N \N \N \N 13170 P.41760 Platymiscium Platymiscium sp. Nee 41760 \N \N \N \N \N 13171 A.lesbiacum Alyssum Alyssum lesbiacum \N \N \N \N \N 13172 X.strumarium Xanthium Xanthium strumarium cocklebur \N \N \N \N 13173 A.rigidiseta Anatherostipa Anatherostipa rigidiseta \N \N \N \N \N 13174 D.fasciculatus Desmocladus Desmocladus fasciculatus \N \N \N \N \N 13175 C.mexicana Cardiostigma Cardiostigma mexicana \N \N \N \N \N 13176 C.CEH-2010b Calyptrocarya Calyptrocarya sp. CEH-2010b \N \N \N \N \N 13177 P.elegans Protium Protium elegans \N \N \N \N \N 13178 B.FMA-1999 environmental samples Bufo regularis gut clone FMA-1999 \N \N \N \N \N 13179 N.microphylla Nuphar Nuphar microphylla \N \N \N \N \N 13180 I.zenkeri Isolona Isolona zenkeri \N \N \N \N \N 13181 A.notabilis Acacia Acacia notabilis \N \N \N \N \N 13182 A.grossedentata Ainsliaea Ainsliaea grossedentata \N \N \N \N \N 13183 \N varietas Lecanorchis flavicans var. flavicans \N \N \N \N \N 13184 P.newdigatae Pterygodium Pterygodium newdigatae \N \N \N \N \N 13185 \N genus Thalassia \N \N \N \N \N 13186 \N genus Selago \N \N \N \N \N 13187 V.romanetii Vitis Vitis romanetii \N \N \N \N \N 13188 T.baoshanense Typhonium Typhonium baoshanense \N \N \N \N \N 13189 S.mucronatum Spyridium Spyridium mucronatum \N \N \N \N \N 13190 P.lilacinum Prionosciadium Prionosciadium lilacinum \N \N \N \N \N 13191 M.dubia Manulea Manulea dubia \N \N \N \N \N 13192 B.glabra Bauhinia Bauhinia glabra \N \N \N \N \N 14358 \N subtribe Hilariinae \N \N \N \N \N 13193 D.diacanthoides Dasyphyllum Dasyphyllum diacanthoides \N \N \N \N \N 13194 T.ZDY-001908 Tamarix Tamarix sp. ZDY-001908 \N \N \N \N \N 13195 S.myrtifolia Swartzia Swartzia myrtifolia \N \N \N \N \N 13196 S.polycephala Sachsia Sachsia polycephala \N \N \N \N \N 13197 P.peploides Pilea Pilea peploides \N \N \N \N \N 13198 A.ilicifolia Auranticarpa Auranticarpa ilicifolia \N \N \N \N \N 13199 \N subfamily Oziroeoideae \N \N \N \N \N 13200 R.penicillatus Ranunculus Ranunculus penicillatus \N \N \N \N \N 13201 I.vicinus Ichnanthus Ichnanthus vicinus \N \N \N \N \N 13202 E.urophylla Eucalyptus Eucalyptus grandis x Eucalyptus urophylla \N \N \N \N \N 13203 K.praecox Kniphofia Kniphofia praecox \N \N \N \N \N 13204 C.stricta Chamaedorea Chamaedorea stricta \N \N \N \N \N 13205 E.laurentii Eremospatha Eremospatha laurentii \N \N \N \N \N 13206 H.salicifolia Hippophae Hippophae salicifolia \N \N \N \N \N 13207 \N varietas Chamaecrista belemii var. belemii \N \N \N \N \N 13208 \N genus Packera \N \N \N \N \N 13209 \N genus Microgynoecium \N \N \N \N \N 13210 R.886 Rhaptopetalum Rhaptopetalum sp. Kew 886 \N \N \N \N \N 13211 I.dunensis Icuria Icuria dunensis \N \N \N \N \N 13212 S.SM-2010 Schisandra Schisandra sp. SM-2010 \N \N \N \N \N 13213 C.corymbosum Cardopatium Cardopatium corymbosum \N \N \N \N \N 13214 \N genus Telanthophora \N \N \N \N \N 13215 O.spixiana Ocotea Ocotea spixiana \N \N \N \N \N 13216 F.drymeja Festuca Festuca drymeja \N \N \N \N \N 13217 C.62 Coffea Coffea sp. IRD-Montpelier OB 62 \N \N \N \N \N 13218 R.schizostylus Rubus Rubus schizostylus \N \N \N \N \N 13219 P.schinzii Philyrophyllum Philyrophyllum schinzii \N \N \N \N \N 13220 E.speciosa Elizabetha Elizabetha speciosa \N \N \N \N \N 13221 \N genus Navaea \N \N \N \N \N 13222 \N varietas Enkianthus deflexus var. deflexus \N \N \N \N \N 13223 J.hirsuta Juglans Juglans hirsuta \N \N \N \N \N 13224 \N genus Leptospermum \N \N \N \N \N 13225 T.pusillus Tragopogon Tragopogon pusillus \N \N \N \N \N 13226 P.natalensis Pentaschistis Pentameris natalensis \N \N \N \N \N 13227 L.patersonia Lagunaria Lagunaria patersonia Norfolk Island-hibiscus \N \N \N \N 13228 F.vulgaris Filago Filago vulgaris \N \N \N \N \N 13229 P.smallii Polygala Polygala smallii \N \N \N \N \N 13230 H.microchlaenus Hibiscus Hibiscus microchlaenus \N \N \N \N \N 13231 T.glaciale Trisetum Trisetum glaciale \N \N \N \N \N 13232 A.undulata Acleisanthes Acleisanthes undulata \N \N \N \N \N 13233 A.triangularifolia Aerva Aerva triangularifolia \N \N \N \N \N 13234 H.fuscata Heteromera Heteromera fuscata \N \N \N \N \N 13235 A.integrifolium Allophyllum Allophyllum integrifolium \N \N \N \N \N 13236 F.sumatrensis Furtadoa Furtadoa sumatrensis \N \N \N \N \N 13237 C.leptostachyus Croton Croton leptostachyus \N \N \N \N \N 13238 \N genus Phlebotaenia \N \N \N \N \N 13239 C.perpusilla Coprosma Coprosma perpusilla \N \N \N \N \N 13240 A.platychilus Alpinia Alpinia platychilus \N \N \N \N \N 13241 \N genus Suzukia \N \N \N \N \N 13242 T.S5655 unclassified Taraxacum Taraxacum (sect. Obovata) sp. S5655 \N \N \N \N \N 13243 P.THH-2011 Pereskiopsis Pereskiopsis sp. THH-2011 \N \N \N \N \N 13244 M.rivas-martinezii Morella Morella rivas-martinezii \N \N \N \N \N 13245 B.septentrionalis Borya Borya septentrionalis \N \N \N \N \N 13246 D.8417 Dillenia Dillenia sp. 8417 \N \N \N \N \N 13247 T.pogonostalix Telipogon Telipogon pogonostalix \N \N \N \N \N 13248 C.mexicanus Croton Croton mexicanus \N \N \N \N \N 13249 D.JD-2006 Didymocarpus Didymocarpus cf. mengtze JD-2006 \N \N \N \N \N 13250 A.verrucosum Aframomum Aframomum verrucosum \N \N \N \N \N 13251 T.MEM-2009 Tolpis Tolpis sp. 5 MEM-2009 \N \N \N \N \N 13252 R.crystallina Reseda Reseda crystallina \N \N \N \N \N 13253 \N genus Calochilus \N \N \N \N \N 13254 C.brachyura Clematis Clematis brachyura \N \N \N \N \N 13255 \N genus Rhipogonum \N \N \N \N \N 13256 E.viridans Eleocharis Eleocharis viridans \N \N \N \N \N 13257 C.exigua Claytonia Claytonia exigua serpentine springbeauty \N \N \N \N 13258 E.pentalophus Echinocereus Echinocereus pentalophus \N \N \N \N \N 13259 C.ischnostachya Carex Carex ischnostachya \N \N \N \N \N 13260 C.elatus Cyclopogon Cyclopogon elatus \N \N \N \N \N 13261 \N genus Centauropsis \N \N \N \N \N 13262 P.verrucosa Putterlickia Putterlickia verrucosa \N \N \N \N \N 13263 C.corydaloides Comparettia Comparettia corydaloides \N \N \N \N \N 13264 P.pearcei Panopsis Panopsis pearcei \N \N \N \N \N 13265 P.capsularis Passiflora Passiflora capsularis \N \N \N \N \N 13266 D.uniflora Disa Disa uniflora \N \N \N \N \N 13267 C.albolutescens Carex Carex albolutescens \N \N \N \N \N 13268 S.candidans Senecio Senecio candidans \N \N \N \N \N 13269 \N varietas Oreostemma alpigenum var. andersonii \N \N \N \N \N 13270 B.siamense Bulbophyllum Bulbophyllum siamense \N \N \N \N \N 13271 S.capuronii Securinega Securinega capuronii \N \N \N \N \N 13272 B.grevilleana Berberis Berberis grevilleana \N \N \N \N \N 13273 P.palmeri Penstemon Penstemon palmeri \N \N \N \N \N 13274 M.pyria Maytenus Maytenus pyria \N \N \N \N \N 13275 \N genus Neuradopsis \N \N \N \N \N 13276 S.nivalis Sagina Sagina nivalis \N \N \N \N \N 13277 F.setifolia Fuernrohria Fuernrohria setifolia \N \N \N \N \N 13278 A.turbinata Atriplex Atriplex turbinata \N \N \N \N \N 13279 M.punctata Monarda Monarda punctata \N \N \N \N \N 13280 G.froelichii Gentiana Gentiana froelichii \N \N \N \N \N 13281 E.acuminatum Exostema Exostema acuminatum \N \N \N \N \N 13282 \N genus Petalonyx \N \N \N \N \N 13283 A.klaineana Aucoumea Aucoumea klaineana Gabon-mahogany,okoume \N \N \N \N 13284 C.grayanum Chrysosplenium Chrysosplenium grayanum \N \N \N \N \N 13285 P.walikalensis Psychotria Psychotria walikalensis \N \N \N \N \N 13286 W.pubescens Wilkiea Wilkiea pubescens \N \N \N \N \N 13287 C.dichotoma Callicarpa Callicarpa dichotoma \N \N \N \N \N 13288 P.subalata Polygala Polygala subalata \N \N \N \N \N 13289 S.simile Solanum Solanum simile \N \N \N \N \N 13290 P.cheelii Poa Poa cheelii \N \N \N \N \N 13291 L.illapelina Loasa Loasa illapelina \N \N \N \N \N 13292 C.aspera Clypeola Clypeola aspera \N \N \N \N \N 13293 \N subspecies Styrax platanifolius subsp. mollis \N \N \N \N \N 13294 S.wesa Syzygium Syzygium wesa \N \N \N \N \N 13295 A.parvifolia Anchietea Anchietea parvifolia \N \N \N \N \N 13296 M.hortensis Millingtonia Millingtonia hortensis \N \N \N \N \N 13297 A.bracteata Aechmea Aechmea bracteata \N \N \N \N \N 13298 C.moorei Coprosma Coprosma moorei \N \N \N \N \N 13299 H.8439 Holcoglossum Holcoglossum sp. 8439 \N \N \N \N \N 13300 S.pendula Saintpaulia Saintpaulia pendula \N \N \N \N \N 13301 \N genus Pyrola \N \N \N \N \N 13302 C.bracteata Cavendishia Cavendishia bracteata \N \N \N \N \N 13303 A.eremiticus Astragalus Astragalus eremiticus \N \N \N \N \N 13304 S.hybridus Streptocarpus Streptocarpus x hybridus Cape primrose \N \N \N \N 13305 M.californicus Micropus Micropus californicus \N \N \N \N \N 13306 M.8522 Microlicia Microlicia sp. Almeda et al. 8522 \N \N \N \N \N 13307 N.purpurea Nectandra Nectandra purpurea \N \N \N \N \N 13308 \N genus Moschopsis \N \N \N \N \N 13309 E.adustus Echinocereus Echinocereus adustus \N \N \N \N \N 13310 E.weberbaueri Euphorbia Euphorbia weberbaueri \N \N \N \N \N 13311 \N genus Esenbeckia \N \N \N \N \N 13312 L.utriculatum Lomatium Lomatium utriculatum bladder-parsnip \N \N \N \N 13313 C.marnieranum Cynanchum Cynanchum marnieranum \N \N \N \N \N 13314 C.s.n. Camassia Camassia sp. Sultany s.n. \N \N \N \N \N 13315 P.arietina Pycnospatha Pycnospatha arietina \N \N \N \N \N 13316 \N varietas Satyrium nepalense var. ciliatum \N \N \N \N \N 13317 A.hypoglauca Annona Annona hypoglauca \N \N \N \N \N 13318 P.acerosa Pseuduvaria Pseuduvaria acerosa \N \N \N \N \N 13319 X.borneense Xanthophytum Xanthophytum borneense \N \N \N \N \N 13320 A.praecox Achatocarpus Achatocarpus praecox \N \N \N \N \N 13321 T.bispinosa Trapa Trapa bispinosa \N \N \N \N \N 13322 O.1997' Ochthocosmus Ochthocosmus sp. 'Fay et al. 1997' \N \N \N \N \N 13323 B.laruei Begonia Begonia laruei \N \N \N \N \N 13324 F.brownii Flaveria Flaveria brownii \N \N \N \N \N 13325 N.chenopodiifolia Nasa Nasa chenopodiifolia \N \N \N \N \N 13326 D.celebica Diospyros Diospyros celebica \N \N \N \N \N 13327 T.suavissima Trigonella Trigonella suavissima \N \N \N \N \N 13328 S.evolvulifolium Solanum Solanum evolvulifolium \N \N \N \N \N 13329 R.SH-2010 Ruttya Ruttya sp. SH-2010 \N \N \N \N \N 13330 V.schindleri Veratrum Veratrum schindleri \N \N \N \N \N 13331 A.lavarum Arcytophyllum Arcytophyllum lavarum \N \N \N \N \N 13332 \N genus Lathrocasis \N \N \N \N \N 13333 E.macrocarpus Endopappus Endopappus macrocarpus \N \N \N \N \N 13334 P.lappacea Pupalia Pupalia lappacea \N \N \N \N \N 13335 \N tribe Plukenetieae \N \N \N \N \N 13336 O.GK-2004 Oenanthe Oenanthe sp. GK-2004 \N \N \N \N \N 13337 N.rupestris Nassella Nassella rupestris \N \N \N \N \N 13338 G.intricatus Gonocarpus Gonocarpus intricatus \N \N \N \N \N 13339 A.tetragona Aphelandra Aphelandra tetragona \N \N \N \N \N 13340 R.rufovirgata Rhodostemonodaphne Rhodostemonodaphne rufovirgata \N \N \N \N \N 13341 H.megalanthum Heliotropium Heliotropium megalanthum \N \N \N \N \N 13342 A.palestina Anthemis Anthemis palestina \N \N \N \N \N 13343 \N no rank Saccharum hybrid cultivar NCo 376 \N \N \N \N \N 13344 O.tenuipes Oldenlandia Oldenlandia tenuipes \N \N \N \N \N 13345 P.polybotrya Peperomia Peperomia polybotrya coin leaf plant \N \N \N \N 13346 N.shimadae Nuphar Nuphar shimadae \N \N \N \N \N 13347 Q.cocciferoides Quercus Quercus cocciferoides \N \N \N \N \N 13348 \N subspecies Rhytidocaulon macrolobum subsp. macrolobum \N \N \N \N \N 13349 G.decurrens Goodenia Goodenia decurrens \N \N \N \N \N 13350 S.johnstonii Sabicea Sabicea johnstonii \N \N \N \N \N 13351 \N genus Amesiella \N \N \N \N \N 13352 E.nanjenshanensis Eurya Eurya nanjenshanensis \N \N \N \N \N 13353 R.indecorum Ribes Ribes indecorum \N \N \N \N \N 13354 T.socotrana Thamnosma Thamnosma socotrana \N \N \N \N \N 13355 P.longifolia Protorhus Protorhus longifolia \N \N \N \N \N 13356 H.hispidula Horkelia Horkelia hispidula \N \N \N \N \N 13357 S.petraea Syagrus Syagrus petraea \N \N \N \N \N 13358 V.atroviolaceum Veratrum Veratrum atroviolaceum \N \N \N \N \N 13359 M.albiflora Metalepis Metalepis albiflora \N \N \N \N \N 13360 \N subspecies Genista cinerea subsp. ausetana \N \N \N \N \N 13361 \N genus Agation \N \N \N \N \N 13362 E.trinervium Exacum Exacum trinervium \N \N \N \N \N 13363 S.secundum Sorghastrum Sorghastrum secundum \N \N \N \N \N 13364 P.waltonii Primula Primula waltonii \N \N \N \N \N 13365 \N order Garryales \N \N \N \N \N 13366 M.wigandii Malva Malva wigandii \N \N \N \N \N 13367 J.seriphioides Junellia Junellia seriphioides \N \N \N \N \N 13368 B.scottii Begonia Begonia scottii \N \N \N \N \N 13369 C.brenesii Campylocentrum Campylocentrum brenesii \N \N \N \N \N 13370 S.savanillense Solanum Solanum savanillense \N \N \N \N \N 13371 F.zygophylloides Fadenia Fadenia zygophylloides \N \N \N \N \N 13372 P.nitens Potamogeton Potamogeton x nitens \N \N \N \N \N 13373 G.recurvisepala Guatteria Guatteria recurvisepala \N \N \N \N \N 13374 F.floridana Flaveria Flaveria floridana \N \N \N \N \N 13375 S.blakeoides Spathandra Spathandra blakeoides \N \N \N \N \N 13376 B.hemsleyana Buddleja Buddleja hemsleyana \N \N \N \N \N 13377 \N family Guamatelaceae \N \N \N \N \N 13378 \N genus Neesenbeckia \N \N \N \N \N 13379 \N genus Malephora \N \N \N \N \N 13380 U.simulans Utricularia Utricularia simulans fringed bladderwort \N \N \N \N 13381 H.quinquenervis Helianthella Helianthella quinquenervis \N \N \N \N \N 13382 C.alpina Carpha Carpha alpina \N \N \N \N \N 13383 C.allardii Clidemia Clidemia allardii \N \N \N \N \N 13384 M.undulata Mitchella Mitchella undulata \N \N \N \N \N 13385 T.calycina Thymelaea Thymelaea calycina \N \N \N \N \N 13386 D.bicolor Delphinium Delphinium bicolor flathead larkspur,little larkspur \N \N \N \N 13387 C.diversifolia Coccoloba Coccoloba diversifolia \N \N \N \N \N 13388 L.arizonicus Lupinus Lupinus arizonicus Arizona lupine \N \N \N \N 13389 G.longicollis Gladiolus Gladiolus longicollis \N \N \N \N \N 13390 P.ligneum Pentanema Pentanema ligneum \N \N \N \N \N 13391 \N genus Acanthomintha \N \N \N \N \N 13392 S.crocea Scorzoneroides Scorzoneroides crocea \N \N \N \N \N 13393 S.2002/2 Salicornia Salicornia aff. fragilis Kadereit 2002/2 \N \N \N \N \N 13394 O.palustris Oenanthe Oenanthe palustris \N \N \N \N \N 13395 O.escobarianus Ornithocephalus Ornithocephalus escobarianus \N \N \N \N \N 13396 S.cordatus Streblacanthus Streblacanthus cordatus \N \N \N \N \N 13397 O.hederae Orobanche Orobanche hederae \N \N \N \N \N 13398 P.buxifolia Phylica Phylica buxifolia \N \N \N \N \N 13399 \N varietas Prunus subhirtella var. subhirtella \N \N \N \N \N 13400 S.povedae Symplocos Symplocos povedae \N \N \N \N \N 13401 C.lasioclada Clematoclethra Clematoclethra lasioclada \N \N \N \N \N 13402 R.thouarsii Rhus Rhus thouarsii \N \N \N \N \N 13403 S.brasiliensis Schinopsis Schinopsis brasiliensis \N \N \N \N \N 13404 G.macrorhizus Gerrardanthus Gerrardanthus macrorhizus \N \N \N \N \N 13405 G.brasiliense Geranium Geranium brasiliense \N \N \N \N \N 13406 A.verticilliflorum Arceuthobium Arceuthobium verticilliflorum \N \N \N \N \N 13407 O.echioides Onosma Onosma echioides \N \N \N \N \N 13408 D.ovinala Dioscorea Dioscorea ovinala \N \N \N \N \N 13409 M.glomerata Melaleuca Melaleuca glomerata \N \N \N \N \N 13410 N.alentejanus Narcissus Narcissus x alentejanus \N \N \N \N \N 13411 \N genus Vangueria \N \N \N \N \N 13412 P.fendleriana Poa Poa fendleriana \N \N \N \N \N 13413 J.longii Justicia Justicia longii \N \N \N \N \N 13414 M.varieaculeata Mammillaria Mammillaria varieaculeata \N \N \N \N \N 13415 V.multicostata Virola Virola multicostata \N \N \N \N \N 13416 E.airoides Eragrostis Eragrostis airoides \N \N \N \N \N 13417 U.perfoliata Uvularia Uvularia perfoliata \N \N \N \N \N 13418 L.peregrinus Lotus Lotus peregrinus \N \N \N \N \N 13419 \N genus Halopegia \N \N \N \N \N 13420 L.communis Lapsana Lapsana communis \N \N \N \N \N 13421 D.saxicola Disa Disa saxicola \N \N \N \N \N 13422 \N subspecies Asclepias tuberosa subsp. interior \N \N \N \N \N 13423 N.kawakamii Nicotiana Nicotiana kawakamii \N \N \N \N \N 13424 \N genus Basiphyllaea \N \N \N \N \N 13425 S.klaineanum Scytopetalum Scytopetalum klaineanum \N \N \N \N \N 13426 M.guentheri Monadenium Monadenium guentheri \N \N \N \N \N 13427 P.betulinum Pelargonium Pelargonium betulinum \N \N \N \N \N 13428 S.perlongistylum Solanum Solanum perlongistylum \N \N \N \N \N 13429 P.tenuiflora Paliavana Paliavana tenuiflora \N \N \N \N \N 13430 T.subcordata Triclisia Triclisia subcordata \N \N \N \N \N 13431 A.golfodulcensis Aphelandra Aphelandra golfodulcensis \N \N \N \N \N 13432 B.hispanica Ballota Ballota hispanica \N \N \N \N \N 13433 \N genus Chrysocycnis \N \N \N \N \N 13434 R.ericoides Rhododendron Rhododendron ericoides \N \N \N \N \N 13435 M.jahnii Miconia Miconia jahnii \N \N \N \N \N 13436 D.aliciae Drosera Drosera aliciae \N \N \N \N \N 13437 \N genus Platymiscium \N \N \N \N \N 13438 P.bella Primula Primula bella \N \N \N \N \N 13439 S.minutifolia Secamone Secamone minutifolia \N \N \N \N \N 13440 T.occidentalis Turpinia Turpinia occidentalis muttonwood \N \N \N \N 13441 \N genus Hunnemannia \N \N \N \N \N 13442 V.loeseneri Viburnum Viburnum loeseneri \N \N \N \N \N 13443 S.pumilus Streptocarpus Streptocarpus pumilus \N \N \N \N \N 13444 C.woytkowskii Coreopsis Coreopsis woytkowskii \N \N \N \N \N 13445 P.morobense Palaquium Palaquium morobense \N \N \N \N \N 13446 S.spicatum Stachyphrynium Stachyphrynium spicatum \N \N \N \N \N 13447 \N subspecies Arctostaphylos tomentosa subsp. tomentosa \N \N \N \N \N 13448 \N family Clusiaceae mangosteen family \N \N \N \N 13449 K.oblongifolia Kayea Kayea oblongifolia \N \N \N \N \N 13450 \N genus Excoecaria \N \N \N \N \N 13451 C.khorossanicum Chaerophyllum Chaerophyllum khorossanicum \N \N \N \N \N 13452 B.sessilis Bonnetia Bonnetia sessilis \N \N \N \N \N 13453 S.orocense Solanum Solanum orocense \N \N \N \N \N 13454 P.peltatum Podophyllum Podophyllum peltatum \N \N \N \N \N 13455 H.aegyptiacum Helianthemum Helianthemum aegyptiacum \N \N \N \N \N 13456 O.vulcanica Ourisia Ourisia vulcanica \N \N \N \N \N 13457 A.grandiflora Actinidia Actinidia grandiflora \N \N \N \N \N 13458 D.neomexicana Draba Draba neomexicana \N \N \N \N \N 13459 \N genus Tilia lindens \N \N \N \N 13460 A.modesta Alpinia Alpinia modesta \N \N \N \N \N 13461 A.verticillatum Allium Allium verticillatum \N \N \N \N \N 13462 O.trichocarpon Ophiorrhiza Ophiorrhiza trichocarpon \N \N \N \N \N 13463 P.celebica Pinanga Pinanga celebica \N \N \N \N \N 13464 \N subspecies Acacia nilotica subsp. adstringens \N \N \N \N \N 13465 C.missouriensis Carex Carex missouriensis \N \N \N \N \N 13466 A.graminifolia Arundina Arundina graminifolia \N \N \N \N \N 13467 J.villosa Jatropha Jatropha villosa \N \N \N \N \N 13468 T.crotonifolia Tetrazygia Tetrazygia crotonifolia \N \N \N \N \N 13469 P.virginiana Physostegia Physostegia virginiana false dragonhead,obedient-plant \N \N \N \N 13470 N.1347 Nothoscordum Nothoscordum sp. 1347 \N \N \N \N \N 13471 D.trinervatus Dolichos Dolichos trinervatus \N \N \N \N \N 13472 E.aureus Elleanthus Elleanthus aureus \N \N \N \N \N 13473 J.aurantiaca Jacquinia Jacquinia aurantiaca \N \N \N \N \N 13474 P.nitida Pegia Pegia nitida \N \N \N \N \N 13475 S.procumbens Sibbaldia Sibbaldia procumbens \N \N \N \N \N 13476 C.idaea Carex Carex idaea \N \N \N \N \N 13477 C.macrocalyx Cinchona Cinchona macrocalyx \N \N \N \N \N 13478 \N genus Tolmiea \N \N \N \N \N 13479 M.paniculata Microcos Microcos paniculata bu za ye \N \N \N \N 13480 W.insignis Werauhia Werauhia insignis \N \N \N \N \N 13481 C.rivalis Calyptronoma Calyptronoma rivalis \N \N \N \N \N 13482 R.stenocarpum Ribes Ribes stenocarpum \N \N \N \N \N 13483 A.hystrix Anthyllis Anthyllis hystrix \N \N \N \N \N 13484 I.robynsi Inula Inula robynsi \N \N \N \N \N 13486 A.kalbarriensis Anigozanthos Anigozanthos kalbarriensis \N \N \N \N \N 13487 \N genus Chaenactis \N \N \N \N \N 13488 \N genus x Crataemespilus \N \N \N \N \N 13489 P.sikokianus Phedimus Phedimus sikokianus \N \N \N \N \N 13490 G.hydrophila Gomesa Gomesa hydrophila \N \N \N \N \N 13491 E.venenifica Euphorbia Euphorbia venenifica \N \N \N \N \N 13492 T.dubius Tragopogon Tragopogon dubius \N \N \N \N \N 13493 A.andersonii Arctostaphylos Arctostaphylos andersonii \N \N \N \N \N 13494 V.insignis Viguiera Viguiera insignis \N \N \N \N \N 13495 T.radicans Thesium Thesium radicans \N \N \N \N \N 13496 G.cossoniana Gagea Gagea cossoniana \N \N \N \N \N 13497 L.mesocoma Leucophrys Leucophrys mesocoma \N \N \N \N \N 13498 C.crispa Cousinia Cousinia crispa \N \N \N \N \N 13499 \N genus Coussapoa \N \N \N \N \N 13500 K.nudicaulis Klasea Klasea nudicaulis \N \N \N \N \N 13501 \N varietas Clematoclethra lasioclada var. grandis \N \N \N \N \N 13502 \N subspecies Silene laciniata subsp. laciniata \N \N \N \N \N 13503 \N subspecies Festuca matthewsii subsp. pisamontis \N \N \N \N \N 13504 G.siamensis Garrettia Garrettia siamensis \N \N \N \N \N 13505 \N varietas Cypripedium tibeticum var. corrugatum \N \N \N \N \N 13506 A.nematoloba Ajania Ajania nematoloba \N \N \N \N \N 13507 M.2751 Maxillaria Maxillaria aff. calantha Whitten 2751 \N \N \N \N \N 13508 \N subspecies Agave deserti subsp. deserti \N \N \N \N \N 13509 \N genus Solenomelus \N \N \N \N \N 13510 S.lactea Swertia Swertia lactea \N \N \N \N \N 13511 C.schinoides Cassine Cassine schinoides \N \N \N \N \N 13512 L.striata Loxocarya Loxocarya striata \N \N \N \N \N 13513 C.hirtella Cyanea Cyanea hirtella \N \N \N \N \N 13514 I.difengpium Illicium Illicium difengpium \N \N \N \N \N 13515 A.pringlei Arracacia Arracacia pringlei \N \N \N \N \N 13516 C.cheesemanii Corybas Corybas cheesemanii \N \N \N \N \N 13517 A.confertifolia Atriplex Atriplex confertifolia \N \N \N \N \N 13518 \N subspecies Iris tenax subsp. gormanii \N \N \N \N \N 13519 N.obsoletus Narcissus Narcissus obsoletus \N \N \N \N \N 13520 P.chinensis Pedicularis Pedicularis chinensis \N \N \N \N \N 13521 B.spectabilis Barkeria Barkeria spectabilis \N \N \N \N \N 13522 \N genus Medicosma \N \N \N \N \N 13523 L.MHL-2012 Lomatogonium Lomatogonium sp. MHL-2012 \N \N \N \N \N 13524 M.friedmaniorum Miconia Miconia friedmaniorum \N \N \N \N \N 13525 I.lanceolatum Illicium Illicium lanceolatum \N \N \N \N \N 13526 \N genus Dinebra \N \N \N \N \N 13527 L.floribunda Ledebouria Ledebouria floribunda \N \N \N \N \N 13528 R.glauca Rosa Rosa glauca \N \N \N \N \N 13529 P.costaricensis Panopsis Panopsis costaricensis \N \N \N \N \N 13530 C.broussonetiana Campanula Campanula broussonetiana \N \N \N \N \N 13531 Z.pellitum Zingiber Zingiber pellitum \N \N \N \N \N 13532 E.polyanthemos Eucalyptus Eucalyptus polyanthemos \N \N \N \N \N 13533 C.maxima Corylus Corylus maxima \N \N \N \N \N 13534 H.uncinatus Haplopappus Haplopappus uncinatus \N \N \N \N \N 13535 \N no rank environmental samples Taxonomy:404809 \N \N \N \N \N 13536 T.yunnanensis Tylophora Tylophora yunnanensis \N \N \N \N \N 13537 A.brasiliensis Asteranthos Asteranthos brasiliensis \N \N \N \N \N 13538 C.dicapuae Caralluma Caralluma dicapuae \N \N \N \N \N 13539 \N genus Restrepiopsis \N \N \N \N \N 13540 T.lanceolata Tricalysia Tricalysia lanceolata \N \N \N \N \N 13541 S.litoralis Stemmadenia Stemmadenia litoralis \N \N \N \N \N 13542 R.speciosa Ryania Ryania speciosa \N \N \N \N \N 13543 \N genus Pyrularia \N \N \N \N \N 13544 C.wisteriana Corallorhiza Corallorhiza wisteriana \N \N \N \N \N 13545 B.xiphostachya Boesenbergia Boesenbergia xiphostachya \N \N \N \N \N 13546 X.asper Xylocalyx Xylocalyx asper \N \N \N \N \N 13547 P.tuberosus Polyzygus Polyzygus tuberosus \N \N \N \N \N 13548 \N subspecies Laserpitium gallicum subsp. angustifolium \N \N \N \N \N 13549 H.taltalense Heliotropium Heliotropium taltalense \N \N \N \N \N 13550 \N forma Camellia sinensis f. formosensis \N \N \N \N \N 13551 O.furcillata Oxalis Oxalis furcillata \N \N \N \N \N 13552 L.europaeum Lycium Lycium europaeum \N \N \N \N \N 13553 H.eburnea Hunteria Hunteria eburnea \N \N \N \N \N 13554 \N varietas Hydrolea spinosa var. paraguayensis \N \N \N \N \N 13555 T.CVM-2007 Tetrazygia Tetrazygia sp. CVM-2007 \N \N \N \N \N 13556 P.natalensis Pachycarpus Pachycarpus natalensis \N \N \N \N \N 13557 \N genus Coincya \N \N \N \N \N 13558 T.WSP-2005 Toddalia Toddalia sp. WSP-2005 \N \N \N \N \N 13559 E.asplenioides Erodium Erodium asplenioides \N \N \N \N \N 13560 S.puberulum Sideroxylon Sideroxylon puberulum \N \N \N \N \N 13561 A.atrosanguineum Allium Allium atrosanguineum \N \N \N \N \N 13562 E.marschalliana Euphorbia Euphorbia marschalliana \N \N \N \N \N 13563 P.00-6800 Phacelophrynium Phrynium sp. Kress 00-6800 \N \N \N \N \N 13564 T.grandiflorum Toxicodendron Toxicodendron grandiflorum \N \N \N \N \N 13565 G.lucida Garcinia Garcinia lucida \N \N \N \N \N 13566 A.cryptostylum Asterostigma Asterostigma cryptostylum \N \N \N \N \N 13567 B.lupulina Bryaspis Bryaspis lupulina \N \N \N \N \N 13568 R.alifanus Rhexia Rhexia alifanus \N \N \N \N \N 13569 \N varietas Sorbaria arborea var. glabrata \N \N \N \N \N 13570 D.mutisii Duranta Duranta mutisii \N \N \N \N \N 13571 S.maculata Sucrea Sucrea maculata \N \N \N \N \N 13572 \N varietas Datura stramonium var. inermis \N \N \N \N \N 13573 \N subspecies Lomatium foeniculaceum subsp. macdougalii \N \N \N \N \N 13574 P.papilio Psychopsis Psychopsis papilio \N \N \N \N \N 13575 M.dolosum Monotagma Monotagma dolosum \N \N \N \N \N 13576 H.pungens Hovea Hovea pungens \N \N \N \N \N 13577 O.woodiana Olea Olea woodiana \N \N \N \N \N 13578 C.muscoides Colobanthus Colobanthus muscoides \N \N \N \N \N 13579 G.niger Gonolobus Gonolobus niger \N \N \N \N \N 13580 C.dicentrifolia Codonopsis Codonopsis dicentrifolia \N \N \N \N \N 13581 G.caffra Gnidia Gnidia caffra \N \N \N \N \N 13582 A.megobrebi Arum Arum megobrebi \N \N \N \N \N 13583 P.macounii Papaver Papaver macounii \N \N \N \N \N 13584 \N genus Heteropolygonatum \N \N \N \N \N 13585 B.cycloptera Bienertia Bienertia cycloptera \N \N \N \N \N 13586 H.chilensis Huidobria Huidobria chilensis \N \N \N \N \N 13587 I.noli-tangere Impatiens Impatiens noli-tangere \N \N \N \N \N 13588 D.schippii Desmopsis Desmopsis schippii \N \N \N \N \N 13589 C.schimperi Commiphora Commiphora schimperi \N \N \N \N \N 13590 F.rubroarenosa Ferula Ferula rubroarenosa \N \N \N \N \N 13591 D.spinosa Dunalia Dunalia spinosa \N \N \N \N \N 13592 \N varietas Balsamorhiza macrolepis var. platylepis \N \N \N \N \N 13593 R.pentagonus Rubus Rubus pentagonus \N \N \N \N \N 13594 P.walteri Physalis Physalis walteri \N \N \N \N \N 13595 \N genus Hymenostegia \N \N \N \N \N 13596 A.rufinerve Acer Acer rufinerve \N \N \N \N \N 13597 T.palmeri Tagetes Tagetes palmeri \N \N \N \N \N 13598 \N no rank Saccharum hybrid cultivar HoCP 85-845 \N \N \N \N \N 13599 S.eruca Stenocereus Stenocereus eruca \N \N \N \N \N 13600 P.wangianus Panax Panax wangianus \N \N \N \N \N 13601 C.monspeliensis Coris Coris monspeliensis \N \N \N \N \N 13602 D.SH-2010 Dioscorea Dioscorea sp. SH-2010 \N \N \N \N \N 13603 T.modestus Tetragamestus Tetragamestus modestus \N \N \N \N \N 13604 \N subspecies Hybanthus floribundus subsp. floribundus \N \N \N \N \N 13605 \N subspecies Erica macowanii subsp. macowanii \N \N \N \N \N 13606 \N forma Astragalus membranaceus f. pallidipurpureus \N \N \N \N \N 13607 R.tsusiophyllum Rhododendron Rhododendron tsusiophyllum \N \N \N \N \N 13608 G.pyroloides Gaultheria Gaultheria pyroloides \N \N \N \N \N 13609 \N tribe Psychotrieae \N \N \N \N \N 13610 S.salicifolius Stachyurus Stachyurus salicifolius \N \N \N \N \N 13611 \N genus Pholistoma \N \N \N \N \N 13612 C.oreades Croton Croton oreades \N \N \N \N \N 13613 \N subspecies Artemisia caerulescens subsp. cretacea \N \N \N \N \N 13614 T.aphylla Tamarix Tamarix aphylla \N \N \N \N \N 13615 P.reclinata Phoenix Phoenix reclinata Senegal date palm \N \N \N \N 13616 \N varietas Fallopia multiflora var. angulata \N \N \N \N \N 13617 B.virgata Babingtonia Babingtonia virgata \N \N \N \N \N 13618 U.thomasii Ulmus Ulmus thomasii cork elm,rock elm \N \N \N \N 13619 N.celebica Neonauclea Neonauclea celebica \N \N \N \N \N 13620 V.rosei Viguiera Viguiera rosei \N \N \N \N \N 13621 P.trichotoma Psychotria Psychotria trichotoma \N \N \N \N \N 13622 P.THH-2011 Pachycereus Pachycereus sp. THH-2011 \N \N \N \N \N 13623 \N genus Euphrasia \N \N \N \N \N 13624 I.mildbraedii Impatiens Impatiens mildbraedii \N \N \N \N \N 13625 S.silaus Silaum Silaum silaus \N \N \N \N \N 13626 \N subspecies Transberingia bursifolia subsp. virgata \N \N \N \N \N 13627 G.prorepens Gunnera Gunnera prorepens \N \N \N \N \N 13628 L.cyathiceps Ligularia Ligularia cyathiceps \N \N \N \N \N 13629 \N varietas Brassica juncea var. strumata \N \N \N \N \N 13630 R.lindeniana Robinsonella Robinsonella lindeniana \N \N \N \N \N 13631 D.bodkinii Disa Disa bodkinii \N \N \N \N \N 13632 S.berthaultii Solanum Solanum berthaultii \N \N \N \N \N 13633 C.tenuiflora Cerinthe Cerinthe tenuiflora \N \N \N \N \N 13634 B.tropaeolifolia Bowlesia Bowlesia tropaeolifolia \N \N \N \N \N 13635 B.O00B316_1 Bulbophyllum Bulbophyllum sp. O00B316_1 \N \N \N \N \N 13636 T.aurantiacum Tremacron Tremacron aurantiacum \N \N \N \N \N 13637 E.cochinchinensis Excoecaria Excoecaria cochinchinensis \N \N \N \N \N 13638 A.attenuata Agave Agave attenuata \N \N \N \N \N 13639 D.nothofagicola Dendrobium Dendrobium nothofagicola \N \N \N \N \N 13640 C.palmata Cayaponia Cayaponia palmata \N \N \N \N \N 13641 \N genus Antiaropsis \N \N \N \N \N 13642 \N varietas Astragalus lentiginosus var. variabilis \N \N \N \N \N 13643 F.polymorpha Frangula Frangula polymorpha \N \N \N \N \N 13644 S.pubescens Sedum Sedum pubescens \N \N \N \N \N 13645 S.coriaceum Sphaenolobium Sphaenolobium coriaceum \N \N \N \N \N 13646 C.eriolepis Chamaemelum Chamaemelum eriolepis \N \N \N \N \N 13647 \N varietas Hovenia trichocarpa var. robusta \N \N \N \N \N 13648 M.remotiflora Microcharis Microcharis remotiflora \N \N \N \N \N 13649 Z.caducibracteata Zieria Zieria caducibracteata \N \N \N \N \N 13650 T.spumosum Trifolium Trifolium spumosum \N \N \N \N \N 13651 P.uniflora Potentilla Potentilla uniflora \N \N \N \N \N 13652 A.tremula Arenga Arenga tremula \N \N \N \N \N 13653 R.incompta Ruellia Ruellia incompta \N \N \N \N \N 13654 B.californica Brickellia Brickellia californica \N \N \N \N \N 13655 N.maxii Nemesia Nemesia maxii \N \N \N \N \N 13656 B.JLC-2009 unclassified Beslerieae Beslerieae sp. JLC-2009 \N \N \N \N \N 13657 O.1691 Oncidium Oncidium sp. Whitten 1691 \N \N \N \N \N 13658 T.globulariifolia Tuberaria Tuberaria globulariifolia \N \N \N \N \N 13659 \N genus Chloraea \N \N \N \N \N 13660 P.tordyloides Pilopleura Pilopleura tordyloides \N \N \N \N \N 13661 E.grisea Echeveria Echeveria grisea \N \N \N \N \N 13662 S.minusculus Scleranthus Scleranthus minusculus \N \N \N \N \N 13663 P.apiculatum Protium Protium apiculatum \N \N \N \N \N 13664 P.cylindrica Pterygiella Pterygiella cylindrica \N \N \N \N \N 13665 O.abyssinica Oxytenanthera Oxytenanthera abyssinica \N \N \N \N \N 13666 C.roraimensis Carex Carex roraimensis \N \N \N \N \N 13667 C.lupulina Carex Carex lupulina \N \N \N \N \N 13668 A.sericea Artemisia Artemisia sericea \N \N \N \N \N 13669 \N subfamily Gymnostachydoideae \N \N \N \N \N 13670 M.fachinalensis Mimosa Mimosa fachinalensis \N \N \N \N \N 13671 P.rex Pedicularis Pedicularis rex \N \N \N \N \N 13672 S.oligophyllus Sapindus Sapindus oligophyllus \N \N \N \N \N 13673 \N tribe Epiprineae \N \N \N \N \N 13674 S.helleri Schiedea Schiedea helleri \N \N \N \N \N 13675 B.compressus Blysmus Blysmus compressus \N \N \N \N \N 13676 C.stenantha Carex Carex stenantha \N \N \N \N \N 13677 M.solanaceus Margaranthus Margaranthus solanaceus \N \N \N \N \N 13678 A.gratum Arum Arum gratum \N \N \N \N \N 13679 N.bracteosa Newcastelia Newcastelia bracteosa \N \N \N \N \N 14751 \N genus Masdevallia \N \N \N \N \N 13680 M.pubescens Muhlenbergia Muhlenbergia pubescens \N \N \N \N \N 13681 O.primavera Oxalis Oxalis primavera \N \N \N \N \N 13682 L.shannonii Leucaena Leucaena shannonii barba de jelote,guacamayo \N \N \N \N 13683 \N genus Eleocharis spikerushes \N \N \N \N 13684 K.pulchella Kurzamra Kurzamra pulchella \N \N \N \N \N 13685 M.minimifructus Mallotus Mallotus minimifructus \N \N \N \N \N 13686 K.khuzistanica Klasea Klasea khuzistanica \N \N \N \N \N 13687 A.tigrensis Anthemis Anthemis tigrensis \N \N \N \N \N 13688 S.splendens Saltugilia Saltugilia splendens \N \N \N \N \N 13689 \N varietas Penstemon laetus var. laetus \N \N \N \N \N 13690 N.denticulata Nemesia Nemesia denticulata \N \N \N \N \N 13691 M.robusta Maxillaria Maxillaria robusta \N \N \N \N \N 13692 B.verruculosa Berberis Berberis verruculosa \N \N \N \N \N 13693 P.flaviflorum Piper Piper flaviflorum \N \N \N \N \N 13694 A.stenocarpa Aconitella Aconitella stenocarpa \N \N \N \N \N 13695 T.montana Tinguarra Tinguarra montana \N \N \N \N \N 13696 L.elsieae Lachnaea Lachnaea elsieae \N \N \N \N \N 13697 E.hyalinobulbon Erycina Erycina hyalinobulbon \N \N \N \N \N 13698 S.iodostegia Saussurea Saussurea iodostegia \N \N \N \N \N 13699 M.s.n. Macarisia Macarisia sp. Clausing s.n. \N \N \N \N \N 13700 C.mathewii Crocus Crocus mathewii \N \N \N \N \N 13701 F.latifolia Fagonia Fagonia latifolia \N \N \N \N \N 13702 A.815 Allophylus Allophylus sp. Forest 815 \N \N \N \N \N 13703 T.pseudostriatum Trifolium Trifolium pseudostriatum \N \N \N \N \N 13704 \N subspecies Festuca arundinacea subsp. atlantigena \N \N \N \N \N 13705 T.s5633 unclassified Taraxacum Taraxacum (sect. Parvula) sp. s5633 \N \N \N \N \N 13706 \N subspecies Maerua juncea subsp. crustata \N \N \N \N \N 13707 C.maestrensis Croton Croton maestrensis \N \N \N \N \N 13708 C.forrestii Cymbidium Cymbidium forrestii \N \N \N \N \N 13709 R.farinifera Raphia Raphia farinifera \N \N \N \N \N 13710 K.longipetiolata Kanakomyrtus Kanakomyrtus longipetiolata \N \N \N \N \N 13711 A.taurica Artemisia Artemisia taurica \N \N \N \N \N 13712 A.symonianus Amorphophallus Amorphophallus symonianus \N \N \N \N \N 13713 O.lomana Oxalis Oxalis lomana \N \N \N \N \N 13714 P.heterorhyncha Polygala Polygala heterorhyncha \N \N \N \N \N 13715 G.brevifolius Gladiolus Gladiolus brevifolius \N \N \N \N \N 13716 \N subspecies Linum strictum subsp. strictum \N \N \N \N \N 13717 B.sakalava Bussea Bussea sakalava \N \N \N \N \N 13718 C.heterophylla Cuphea Cuphea heterophylla \N \N \N \N \N 13719 J.pringlei Jefea Jefea pringlei \N \N \N \N \N 13720 C.baccans Carex Carex baccans \N \N \N \N \N 13721 C.CG-2009 Carex Carex sp. 4 CG-2009 \N \N \N \N \N 13722 \N varietas Capsicum baccatum var. praetermissum \N \N \N \N \N 13723 A.roseum Androcymbium Androcymbium roseum \N \N \N \N \N 13724 T.villosa Trichosanthes Trichosanthes villosa \N \N \N \N \N 13725 A.ferruginea Arachnorchis Arachnorchis ferruginea \N \N \N \N \N 13726 P.SH-2010 Pterospermum Pterospermum sp. SH-2010 \N \N \N \N \N 13727 P.tessellata Polystachya Polystachya tessellata \N \N \N \N \N 13728 D.clavatum Dendrobium Dendrobium clavatum \N \N \N \N \N 13729 B.floribunda Bredemeyera Bredemeyera floribunda \N \N \N \N \N 13730 E.ampullacea Erica Erica ampullacea \N \N \N \N \N 13731 P.pimpinellifolia Pastinaca Pastinaca pimpinellifolia \N \N \N \N \N 13732 \N subspecies Avenula adsurgens subsp. adsurgens \N \N \N \N \N 13733 A.rubrostipa Adansonia Adansonia rubrostipa \N \N \N \N \N 13734 E.dracunculoides Euphorbia Euphorbia dracunculoides \N \N \N \N \N 13735 F.chitralensis Fritillaria Fritillaria chitralensis \N \N \N \N \N 13736 M.demissa Montiopsis Montiopsis demissa \N \N \N \N \N 13737 C.400aa Clusia Clusia sp. HG 400aa \N \N \N \N \N 13738 C.arboreus Ceanothus Ceanothus arboreus \N \N \N \N \N 13739 S.bannia Swartzia Swartzia bannia \N \N \N \N \N 13740 H.brasiliensis Hygrophila Hygrophila brasiliensis \N \N \N \N \N 13741 C.kennedyi Calochortus Calochortus kennedyi desert mariposa lily \N \N \N \N 13742 G.sinensis Gaultheria Gaultheria sinensis \N \N \N \N \N 13743 \N genus Mauritiella \N \N \N \N \N 13744 S.pannonica Suaeda Suaeda pannonica \N \N \N \N \N 13745 \N genus Cercocarpus \N \N \N \N \N 13746 P.caespitosum Peucedanum Peucedanum caespitosum \N \N \N \N \N 13747 L.grewingkii Loranthus Loranthus grewingkii \N \N \N \N \N 13748 R.nitida Ruellia Ruellia nitida \N \N \N \N \N 13749 \N genus Acanthocladium \N \N \N \N \N 13750 R.polygama Rouya Rouya polygama \N \N \N \N \N 13751 B.rotundifolia Berberis Berberis rotundifolia \N \N \N \N \N 13752 M.hippocrateoides Mascagnia Mascagnia hippocrateoides \N \N \N \N \N 13753 C.gnidioides Callistemon Callistemon gnidioides \N \N \N \N \N 13754 E.209 Elegia Elegia sp. Chase 209 \N \N \N \N \N 13755 H.sendtneri Halacsya Halacsya sendtneri \N \N \N \N \N 13756 S.beckii Scaevola Scaevola beckii \N \N \N \N \N 13757 S.albidomaculatum Stenorrhynchos Stenorrhynchos albidomaculatum \N \N \N \N \N 13758 C.3783 Calycosiphonia Calycosiphonia sp. Sonke 3783 \N \N \N \N \N 13759 T.roseum Tetraphyllum Tetraphyllum roseum \N \N \N \N \N 13760 I.acrocephala Inga Inga acrocephala \N \N \N \N \N 13761 \N genus Senefelderopsis \N \N \N \N \N 13762 X.kraussiana Xylotheca Xylotheca kraussiana \N \N \N \N \N 13763 S.sempervirens Solidago Solidago sempervirens \N \N \N \N \N 13764 F.ciliaris Fuirena Fuirena ciliaris \N \N \N \N \N 13765 C.radfordii Carex Carex radfordii \N \N \N \N \N 13766 C.marginatum Chrysanthemum Chrysanthemum marginatum \N \N \N \N \N 13767 \N genus Neopallasia \N \N \N \N \N 13768 O.rupifraga Oresitrophe Oresitrophe rupifraga \N \N \N \N \N 13769 M.albiflora Myosotis Myosotis albiflora \N \N \N \N \N 13770 \N varietas Raphanus sativus var. caudatus mougri,rat-tail radish \N \N \N \N 13771 T.H.AR.532 Typhonium Typhonium sp. Hetterscheid H.AR.532 \N \N \N \N \N 13772 C.castanea Carex Carex castanea \N \N \N \N \N 13773 \N genus Tapinanthus \N \N \N \N \N 13774 \N genus Harpochilus \N \N \N \N \N 13775 \N tribe Globularieae \N \N \N \N \N 13777 M.turcomanica Mandragora Mandragora turcomanica \N \N \N \N \N 13778 N.boliviana Nierembergia Nierembergia boliviana \N \N \N \N \N 13779 C.rausii Cuscuta Cuscuta rausii \N \N \N \N \N 13780 G.latifolia Graffenrieda Graffenrieda latifolia \N \N \N \N \N 13781 M.goyenii Myosotis Myosotis goyenii \N \N \N \N \N 13782 L.racemosa Lopezia Lopezia racemosa \N \N \N \N \N 13783 T.geminatum Taraxacum Taraxacum geminatum \N \N \N \N \N 13784 L.antipoda Lindernia Lindernia antipoda \N \N \N \N \N 13785 I.h-3b Impatiens Impatiens sp. h-3b \N \N \N \N \N 13786 S.goetzeana Saintpaulia Saintpaulia goetzeana \N \N \N \N \N 13787 P.cyanescens Panicum Panicum cyanescens \N \N \N \N \N 13788 A.microcarpa Acacia Acacia microcarpa \N \N \N \N \N 13789 P.maculifera Pseudosasa Pseudosasa maculifera \N \N \N \N \N 13790 T.suavis Trichopilia Trichopilia suavis \N \N \N \N \N 13791 B.lycioides Brachyclados Brachyclados lycioides \N \N \N \N \N 13792 C.kilimanjari Cuscuta Cuscuta kilimanjari \N \N \N \N \N 13793 C.drabifolia Centaurea Centaurea drabifolia \N \N \N \N \N 13794 \N genus Lupinus \N \N \N \N \N 13795 E.umbellata Elaeagnus Elaeagnus umbellata aki-gumi,autumn-olive \N \N \N \N 13796 E.pionosperma Euphorbia Euphorbia pionosperma \N \N \N \N \N 13797 H.papillosa Heteromorpha Heteromorpha papillosa \N \N \N \N \N 13798 V.foetidum Viburnum Viburnum foetidum \N \N \N \N \N 13799 D.parkeri Distictella Distictella parkeri \N \N \N \N \N 13800 \N genus Manettia \N \N \N \N \N 13801 C.latipes Citrus Citrus latipes \N \N \N \N \N 13802 T.delavayi Tetrastigma Tetrastigma delavayi \N \N \N \N \N 13803 D.5628-30 Dicerandra Dicerandra sp. Huck 5628-30 \N \N \N \N \N 13804 M.asperifolia Muhlenbergia Muhlenbergia asperifolia \N \N \N \N \N 13805 C.reniformis Cissus Cissus reniformis \N \N \N \N \N 13806 P.rubripilis Psychotria Psychotria rubripilis \N \N \N \N \N 13807 U.rosenbergiana Uvaria Uvaria rosenbergiana \N \N \N \N \N 13808 A.arida Andrachne Andrachne arida \N \N \N \N \N 13809 P.pittieri Pilea Pilea pittieri \N \N \N \N \N 13810 P.fastigiata Palicourea Palicourea fastigiata \N \N \N \N \N 13811 A.hirtella Anthemis Anthemis hirtella \N \N \N \N \N 13812 P.acutifolium Pterygodium Pterygodium acutifolium \N \N \N \N \N 13813 T.417 Triainolepis Triainolepis sp. Razafimandimbison 417 \N \N \N \N \N 13814 P.arzae Placea Placea arzae \N \N \N \N \N 13815 Z.andina Zephyranthes Zephyranthes andina \N \N \N \N \N 13816 L.berinii Leontodon Leontodon berinii \N \N \N \N \N 13817 R.grande Rhododendron Rhododendron grande \N \N \N \N \N 13818 A.lecheguilla Agave Agave lecheguilla \N \N \N \N \N 13819 L.JFS-2011 Lomatium Lomatium sp. JFS-2011 \N \N \N \N \N 13820 A.MP-2011 Albuca Albuca sp. 1 MP-2011 \N \N \N \N \N 13821 \N genus Timonius \N \N \N \N \N 13822 M.pseudospicata Moraea Moraea pseudospicata \N \N \N \N \N 13823 A.wrightii Amoreuxia Amoreuxia wrightii \N \N \N \N \N 13824 S.trachyphloium Syzygium Syzygium trachyphloium \N \N \N \N \N 13825 K.delagoensis Kalanchoe Kalanchoe delagoensis chandelier-plant,mother-of-millions \N \N \N \N 13826 L.mespiloides Loreya Loreya mespiloides \N \N \N \N \N 13827 A.scandens Annona Annona scandens \N \N \N \N \N 13828 S.bidentata Scaphyglottis Scaphyglottis bidentata \N \N \N \N \N 13829 L.uxpanapensis Lophostachys Lophostachys uxpanapensis \N \N \N \N \N 13830 D.macrophyllum Dendrobium Dendrobium macrophyllum \N \N \N \N \N 13831 \N genus Megistostegium \N \N \N \N \N 13832 C.propinqua Calathea Calathea propinqua \N \N \N \N \N 13833 N.alata Nicotiana Nicotiana alata Indian tobacco,Persian tobacco,flowering tobacco,ornamental tobacco,winged tobacco \N \N \N \N 13834 D.candelabrum Dudleya Dudleya candelabrum \N \N \N \N \N 13835 M.parviceps Mimosa Mimosa parviceps \N \N \N \N \N 13836 C.resupinatum Crepidium Crepidium resupinatum \N \N \N \N \N 13837 L.caloxantha Ligularia Ligularia caloxantha \N \N \N \N \N 13838 B.pachinensis Bambusa Bambusa pachinensis \N \N \N \N \N 13839 G.malaccensis Garcinia Garcinia malaccensis \N \N \N \N \N 13840 A.vriesianus Artocarpus Artocarpus vriesianus \N \N \N \N \N 13841 C.sigridiae Cynanchum Cynanchum sigridiae \N \N \N \N \N 13842 G.pusillum Graptopetalum Graptopetalum pusillum \N \N \N \N \N 13843 P.mannii Phalaenopsis Phalaenopsis mannii \N \N \N \N \N 13844 \N tribe Coffeeae \N \N \N \N \N 13845 C.quinqueloba Cayaponia Cayaponia quinqueloba \N \N \N \N \N 13846 D.mongolica Draba Draba mongolica \N \N \N \N \N 13847 \N subspecies Genista cinerea subsp. cinerea \N \N \N \N \N 13848 F.australis Citrus Fortunella australis \N \N \N \N \N 13849 B.suborbiculata Begonia Begonia suborbiculata \N \N \N \N \N 13850 A.procumbens Asarina Asarina procumbens \N \N \N \N \N 13851 \N varietas Rosa odorata var. erubescens \N \N \N \N \N 13852 \N genus Cyanthillium \N \N \N \N \N 13853 N.lanceolata Nectandra Nectandra lanceolata \N \N \N \N \N 13854 T.dichotoma Tiquilia Tiquilia dichotoma \N \N \N \N \N 13855 E.rara Eriachne Eriachne rara \N \N \N \N \N 13856 V.nemoralis Vetiveria Vetiveria nemoralis \N \N \N \N \N 13857 \N genus Anchietea \N \N \N \N \N 13858 T.candida Turnera Turnera candida \N \N \N \N \N 13859 \N genus Psophocarpus \N \N \N \N \N 13860 H.1993 Hydrostachys Hydrostachys sp. Hansen 1993 \N \N \N \N \N 13861 P.africanum Pierreodendron Pierreodendron africanum \N \N \N \N \N 13862 \N genus Meiostemon \N \N \N \N \N 13863 C.pomeridiana Carpanthea Carpanthea pomeridiana \N \N \N \N \N 13864 A.montana Acaena Acaena montana \N \N \N \N \N 13865 \N subspecies Perideridia gairdneri subsp. borealis common yampah \N \N \N \N 13866 \N varietas Aristida purpurea var. purpurea \N \N \N \N \N 13867 M.lasiophylla Menziesia Menziesia lasiophylla \N \N \N \N \N 13868 A.unilabiata Alonsoa Alonsoa unilabiata \N \N \N \N \N 13869 \N genus Tarenna \N \N \N \N \N 13870 N.grandiflora Nardostachys Nardostachys grandiflora \N \N \N \N \N 13871 E.glaucescens Eupatorium Eupatorium glaucescens waxy thoroughwort \N \N \N \N 13872 A.arendsii Astilbe Astilbe x arendsii garden astilbe \N \N \N \N 13873 D.covillei Desmanthus Desmanthus covillei \N \N \N \N \N 13874 J.brevicaudatus Juncus Juncus brevicaudatus \N \N \N \N \N 13875 M.myrtilloides Mouriri Mouriri myrtilloides \N \N \N \N \N 13876 \N subspecies Helianthus niveus subsp. niveus \N \N \N \N \N 13877 E.schlechterianum Epidendrum Epidendrum schlechterianum \N \N \N \N \N 13878 P.neurantha Phoebe Phoebe neurantha \N \N \N \N \N 26897 \N genus Zygophyllum \N \N \N \N \N 13879 \N subspecies Veronica saturejoides subsp. saturejoides \N \N \N \N \N 13880 Z.SRR-2011 unclassified Zygopetalinae Zygopetalinae sp. 2 SRR-2011 \N \N \N \N \N 13881 M.arvensis Mentha Mentha arvensis field mint,wild mint \N \N \N \N 13882 C.gardneri Clusia Clusia gardneri \N \N \N \N \N 13883 \N genus Blepharizonia \N \N \N \N \N 13884 I.baillonii Iteiluma Iteiluma baillonii \N \N \N \N \N 13885 A.sinclairii Acianthus Acianthus sinclairii \N \N \N \N \N 13886 C.multiflorum Cinnamomum Cinnamomum multiflorum \N \N \N \N \N 13887 M.armata Mauritiella Mauritiella armata \N \N \N \N \N 13888 R.speciosum Recordoxylon Recordoxylon speciosum \N \N \N \N \N 13889 S.sichuanicus Sinosenecio Sinosenecio sichuanicus \N \N \N \N \N 13890 A.puberula Asclepias Asclepias puberula \N \N \N \N \N 13891 \N subspecies Stachys germanica subsp. tymphaea \N \N \N \N \N 13892 C.kurdica Centaurea Centaurea kurdica \N \N \N \N \N 13893 C.3524 Caiophora Caiophora sp. Hufford 3524 \N \N \N \N \N 13894 E.himalayanus Elymus Elymus himalayanus \N \N \N \N \N 13895 L.16809 Leptotes Leptotes cf. tenuis IB 16809 \N \N \N \N \N 13896 C.nymphaeifolia Coussapoa Coussapoa nymphaeifolia \N \N \N \N \N 13897 I.obcordata Indigofera Indigofera obcordata \N \N \N \N \N 13898 R.acuminatum Ribes Ribes acuminatum \N \N \N \N \N 13899 A.imbricatum Afrocarum Afrocarum imbricatum \N \N \N \N \N 13900 N.delavayi Neocinnamomum Neocinnamomum delavayi \N \N \N \N \N 13901 M.dutrae Mimosa Mimosa dutrae \N \N \N \N \N 13902 \N genus Actinostemon \N \N \N \N \N 13903 A.asiatica Amelanchier Amelanchier asiatica \N \N \N \N \N 13904 S.mariversa Sanicula Sanicula mariversa Waianae Range blacksnakeroot \N \N \N \N 13905 S.thorelii Sauropus Sauropus thorelii \N \N \N \N \N 13906 A.sewerzowii Allium Allium sewerzowii \N \N \N \N \N 13907 A.O-149 Acriopsis Acriopsis sp. Chase O-149 \N \N \N \N \N 13908 O.acutissima Oenothera Oenothera acutissima \N \N \N \N \N 13909 \N subspecies Asclepias incarnata subsp. pulchra \N \N \N \N \N 13910 A.kasakstanicus Asparagus Asparagus kasakstanicus \N \N \N \N \N 13911 R.xerophila Ravenea Ravenea xerophila \N \N \N \N \N 13912 A.elatostemma Argostemma Argostemma elatostemma \N \N \N \N \N 13913 A.grandiflora Aeranthes Aeranthes grandiflora \N \N \N \N \N 13914 E.punicea Etlingera Etlingera punicea \N \N \N \N \N 13915 A.jackii Aristolochia Aristolochia jackii \N \N \N \N \N 13916 \N subspecies Silene caroliniana subsp. pensylvanica Pennsylvania catchfly \N \N \N \N 13917 D.morrisiana Diospyros Diospyros morrisiana \N \N \N \N \N 13918 C.africana Craspedorhachis Craspedorhachis africana \N \N \N \N \N 13919 C.trifoliata Citrus Citrus trifoliata hardy orange,trifoliate orange \N \N \N \N 13920 \N subspecies Leptospermum polygalifolium subsp. cismontanum \N \N \N \N \N 13921 M.coralloides Microcnemum Microcnemum coralloides \N \N \N \N \N 13922 Z.861 Zygophyllum Zygophyllum sp. Bellstedt 861 \N \N \N \N \N 13923 L.CVM-2007-2 Leandra Leandra sp. CVM-2007-2 \N \N \N \N \N 13924 P.flava Psychotria Psychotria flava \N \N \N \N \N 13925 \N genus Leontice \N \N \N \N \N 13926 \N subspecies Galium serpenticum subsp. warnerense \N \N \N \N \N 13927 G.sylvaticum Galium Galium sylvaticum Scotch-mist \N \N \N \N 13928 L.hispidula Lonicera Lonicera hispidula \N \N \N \N \N 13929 D.teretifolia Daviesia Daviesia teretifolia \N \N \N \N \N 13930 \N genus Myrospermum \N \N \N \N \N 13931 N.prunifera Niemeyera Niemeyera prunifera \N \N \N \N \N 13932 T.ruticarpum Tetradium Tetradium ruticarpum \N \N \N \N \N 13933 \N subspecies Miconia cinerascens subsp. cinerascens \N \N \N \N \N 13934 \N genus Asteropeia \N \N \N \N \N 13935 S.magellense Sedum Sedum magellense \N \N \N \N \N 13936 A.parvipinnula Acacia Acacia parvipinnula \N \N \N \N \N 13937 I.diamantinensis Ipomoea Ipomoea diamantinensis \N \N \N \N \N 13938 \N tribe Brassiceae \N \N \N \N \N 13939 \N subspecies Iris spuria subsp. notha \N \N \N \N \N 13940 O.guilanchi Opuntia Opuntia guilanchi \N \N \N \N \N 13941 \N subspecies Aspalathus acuminata subsp. acuminata \N \N \N \N \N 13942 A.denticulatus Acmispon Acmispon denticulatus \N \N \N \N \N 13943 L.pringlei Leucophyllum Leucophyllum pringlei \N \N \N \N \N 13944 C.platycarpa Callitriche Callitriche platycarpa \N \N \N \N \N 13945 O.semidentata Olearia Olearia semidentata \N \N \N \N \N 13946 S.laureola Skimmia Skimmia laureola \N \N \N \N \N 13947 D.luodianense Drepanostachyum Drepanostachyum luodianense \N \N \N \N \N 13948 \N genus Maxwellia \N \N \N \N \N 13949 H.turcomanicus Hyoscyamus Hyoscyamus turcomanicus \N \N \N \N \N 13950 H.velutinus Haplopappus Haplopappus velutinus \N \N \N \N \N 13951 P.elegans Phebalium Phebalium elegans \N \N \N \N \N 13952 B.purpurascens Boerhavia Boerhavia purpurascens \N \N \N \N \N 13953 D.serratifolia Dodonaea Dodonaea serratifolia \N \N \N \N \N 13954 B.cryptophorus Bathiorhamnus Bathiorhamnus cryptophorus \N \N \N \N \N 13955 \N genus Holttumochloa \N \N \N \N \N 13956 \N genus Streptoglossa \N \N \N \N \N 13957 C.longiflora Cleistogenes Cleistogenes longiflora \N \N \N \N \N 13958 P.haematostigma Passiflora Passiflora haematostigma \N \N \N \N \N 13959 N.longipedunculata Neonauclea Neonauclea longipedunculata \N \N \N \N \N 13960 M.cannifolia Myrosma Myrosma cannifolia \N \N \N \N \N 13961 G.umbellata Gentianella Gentianella umbellata \N \N \N \N \N 13962 D.triphylla Dalechampia Dalechampia triphylla \N \N \N \N \N 13963 Z.triloba Zaluzania Zaluzania triloba \N \N \N \N \N 13964 E.6572 Eschweilera Eschweilera sp. Aguilar 6572 \N \N \N \N \N 13965 M.dumosa Muhlenbergia Muhlenbergia dumosa \N \N \N \N \N 13966 B.mannii Brachystephanus Brachystephanus mannii \N \N \N \N \N 13968 P.maculatus Pleioblastus Pleioblastus maculatus \N \N \N \N \N 13969 \N varietas Racinaea multiflora var. decipiens \N \N \N \N \N 13970 C.glabrum Clerodendrum Clerodendrum glabrum \N \N \N \N \N 13971 C.behen Centaurea Centaurea behen \N \N \N \N \N 13972 C.sarandinakiae Centaurea Centaurea sarandinakiae \N \N \N \N \N 27473 \N genus Patrinia \N \N \N \N \N 13973 M.markgraviana Myristica Myristica markgraviana \N \N \N \N \N 13974 M.subpeltata Macaranga Macaranga subpeltata \N \N \N \N \N 13975 L.sulcatum Linum Linum sulcatum \N \N \N \N \N 13976 S.aspera Sabicea Sabicea aspera \N \N \N \N \N 13977 C.rhaphilepis Cirsium Cirsium rhaphilepis \N \N \N \N \N 13978 G.hyposericea Guatteria Guatteria hyposericea \N \N \N \N \N 13979 H.palustris Hypochaeris Hypochaeris palustris \N \N \N \N \N 13980 F.holotricha Fraxinus Fraxinus holotricha \N \N \N \N \N 13981 \N genus Phanera \N \N \N \N \N 13982 S.indica Sinocrassula Sinocrassula indica \N \N \N \N \N 13983 \N genus Quiabentia \N \N \N \N \N 13984 \N family Caprifoliaceae honeysuckle famly \N \N \N \N 13985 B.cinerea Bursera Bursera cinerea \N \N \N \N \N 13986 \N genus Marsippospermum \N \N \N \N \N 13987 F.nubicola Fragaria Fragaria vesca x Fragaria nubicola \N \N \N \N \N 13988 T.bornmuelleri Tragopogon Tragopogon bornmuelleri \N \N \N \N \N 13989 A.palmatum Aconitum Aconitum palmatum \N \N \N \N \N 13990 N.acianthiformis Nothostele Nothostele acianthiformis \N \N \N \N \N 13991 \N genus Pachycarpus \N \N \N \N \N 13992 E.munitus Euryops Euryops munitus \N \N \N \N \N 13993 A.hirsuta Althaea Althaea hirsuta \N \N \N \N \N 13994 S.glazioviana Sinningia Sinningia glazioviana \N \N \N \N \N 13995 \N genus Wettinia \N \N \N \N \N 13996 A.dubia Artemisia Artemisia dubia \N \N \N \N \N 13997 P.scabra Pulicaria Pulicaria scabra \N \N \N \N \N 13998 \N varietas Enkianthus deflexus var. glabrescens \N \N \N \N \N 13999 \N subspecies Hieracium pseudopilosella subsp. tenuicauleforme \N \N \N \N \N 14000 O.mannii Oxystigma Oxystigma mannii \N \N \N \N \N 14001 S.31.308 Salicornia Salicornia aff. patula Freitag 31.308 \N \N \N \N \N 14002 P.SH-2010 Physalis Physalis sp. SH-2010 \N \N \N \N \N 14003 A.obliquum Allium Allium obliquum \N \N \N \N \N 14004 \N genus Dolicholobium \N \N \N \N \N 14005 S.splendida Schomburgkia Schomburgkia splendida \N \N \N \N \N 14006 B.tenuiflora Behria Behria tenuiflora \N \N \N \N \N 14007 S.schweickerdtii Schoenoxiphium Schoenoxiphium schweickerdtii \N \N \N \N \N 14008 \N varietas Ivesia kingii var. kingii \N \N \N \N \N 14009 \N genus Zuelania \N \N \N \N \N 14010 I.lutea Ipomoea Ipomoea lutea \N \N \N \N \N 14011 G.ternifolia Gaertnera Gaertnera ternifolia \N \N \N \N \N 14012 C.menglaensis Colocasia Colocasia menglaensis \N \N \N \N \N 14013 \N subspecies Ranunculus kuepferi subsp. kuepferi \N \N \N \N \N 14014 \N subspecies Plantago triandra subsp. masoniae \N \N \N \N \N 14015 E.macrourus Elymus Elymus macrourus \N \N \N \N \N 14016 A.coriaceum Amomum Amomum coriaceum \N \N \N \N \N 14017 D.howellii Dimeresia Dimeresia howellii \N \N \N \N \N 14018 U.leptocladon Uvaria Uvaria leptocladon \N \N \N \N \N 14019 \N genus Archileptopus \N \N \N \N \N 14020 L.5-CEH Lupinus Lupinus sp. 5-CEH \N \N \N \N \N 14021 D.funiushanense Dendrobium Dendrobium funiushanense \N \N \N \N \N 14022 A.chodsha-bakirganicum Allium Allium chodsha-bakirganicum \N \N \N \N \N 14023 T.saprophytica Tropidia Tropidia saprophytica \N \N \N \N \N 14024 S.sulcatus Scorpiurus Scorpiurus sulcatus \N \N \N \N \N 14025 I.columbaria Impatiens Impatiens columbaria \N \N \N \N \N 14026 A.gentryi Agave Agave gentryi \N \N \N \N \N 14027 P.decaryi Pachypodium Pachypodium decaryi \N \N \N \N \N 14028 L.papilliferum Lepidium Lepidium papilliferum \N \N \N \N \N 14029 M.densiflora Malesherbia Malesherbia densiflora \N \N \N \N \N 14030 S.nematolepis Saussurea Saussurea nematolepis \N \N \N \N \N 14031 V.tubiflora Vellozia Vellozia tubiflora \N \N \N \N \N 14032 M.discolor Mammillaria Mammillaria discolor \N \N \N \N \N 14033 S.bifida Scaphyglottis Scaphyglottis bifida \N \N \N \N \N 14034 B.patens Bulbophyllum Bulbophyllum patens \N \N \N \N \N 14035 Z.calophylla Ziziphus Ziziphus calophylla \N \N \N \N \N 14036 \N genus Saprosma \N \N \N \N \N 14037 A.koreana Atractylodes Atractylodes koreana \N \N \N \N \N 14038 A.horridus Astragalus Astragalus horridus \N \N \N \N \N 14039 E.longifolia Ehrharta Ehrharta longifolia \N \N \N \N \N 14040 D.libanotis Dianthus Dianthus libanotis \N \N \N \N \N 14041 H.sphaerocarpum Hypericum Hypericum sphaerocarpum \N \N \N \N \N 14042 \N genus Lamprocapnos \N \N \N \N \N 14043 \N subspecies Androsace adfinis subsp. adfinis \N \N \N \N \N 14044 H.quinquenervia Hedyotis Hedyotis quinquenervia \N \N \N \N \N 14045 P.'socotrana' Pelargonium Pelargonium 'socotrana' \N \N \N \N \N 14046 E.desmantha Erica Erica desmantha \N \N \N \N \N 14047 Z.lichenoides Zeylanidium Zeylanidium lichenoides \N \N \N \N \N 14048 D.exaltatum Delphinium Delphinium exaltatum tall larkspur \N \N \N \N 14049 R.riedeliana Rhynchospora Rhynchospora riedeliana \N \N \N \N \N 14050 C.celebica Citrus Citrus celebica \N \N \N \N \N 14051 \N genus Scutellaria \N \N \N \N \N 14052 E.triandra Ehrharta Ehrharta triandra \N \N \N \N \N 14053 C.tocuchensis Clusia Clusia tocuchensis \N \N \N \N \N 14054 \N family Elaeagnaceae Russian olive family \N \N \N \N 14055 \N varietas Celtis philippensis var. consimilis \N \N \N \N \N 14056 P.veitchiana Primula Primula veitchiana \N \N \N \N \N 14057 D.rockii Dioscorea Dioscorea rockii \N \N \N \N \N 14058 A.legalis Andira Andira legalis \N \N \N \N \N 14059 A.pseudoheldreichii Acer Acer x pseudoheldreichii \N \N \N \N \N 14060 M.marmoliana Maxillaria Maxillaria marmoliana \N \N \N \N \N 14061 E.nitida Euceraea Euceraea nitida \N \N \N \N \N 14062 \N tribe Oroxyleae \N \N \N \N \N 14063 M.velutina Machilus Machilus velutina \N \N \N \N \N 14064 G.99-33 Globba Globba aff. winitii 99-33 \N \N \N \N \N 14065 D.multifida Disa Disa multifida \N \N \N \N \N 14066 I.suaveolens Indigofera Indigofera suaveolens \N \N \N \N \N 14067 S.paucidentata Stillingia Stillingia paucidentata Mojave toothleaf \N \N \N \N 14068 B.baranovii Brachanthemum Brachanthemum baranovii \N \N \N \N \N 14069 P.muliensis Physospermopsis Physospermopsis muliensis \N \N \N \N \N 14070 E.baojingense Epimedium Epimedium baojingense \N \N \N \N \N 14071 M.longistyla Moraea Moraea longistyla \N \N \N \N \N 14072 D.paraisoensis Diplusodon Diplusodon paraisoensis \N \N \N \N \N 14073 S.grayana Scrophularia Scrophularia grayana \N \N \N \N \N 14074 S.poinsettiifolium Solanum Solanum poinsettiifolium \N \N \N \N \N 14075 S.lacustris Scleria Scleria lacustris \N \N \N \N \N 14076 A.santolina Achillea Achillea santolina \N \N \N \N \N 14077 H.subsimile Helichrysum Helichrysum subsimile \N \N \N \N \N 14078 C.pinnatifida Crataegus Crataegus pinnatifida Chinese hawthorn,shan zha \N \N \N \N 14079 F.vivipara Festuca Festuca vivipara \N \N \N \N \N 14080 P.rotundifolia Pomaderris Pomaderris rotundifolia \N \N \N \N \N 14081 \N no rank Saccharum hybrid cultivar H65-7052 \N \N \N \N \N 14082 E.hystrichoides Echinops Echinops hystrichoides \N \N \N \N \N 14083 J.chihuahuensis Jaltomata Jaltomata chihuahuensis \N \N \N \N \N 14084 M.subsessile Marcgraviastrum Marcgraviastrum subsessile \N \N \N \N \N 14085 C.Sepidan Cousinia Cousinia sp. Sepidan \N \N \N \N \N 14086 \N varietas Paris fargesii var. fargesii \N \N \N \N \N 14087 M.angustifolia Massonia Massonia angustifolia \N \N \N \N \N 14088 H.wrightii Hymenothrix Hymenothrix wrightii \N \N \N \N \N 14089 L.muirii Lepyrodia Lepyrodia muirii \N \N \N \N \N 14090 M.macrantha Myosotis Myosotis macrantha \N \N \N \N \N 14091 H.grosseserrata Hydrangea Hydrangea grosseserrata \N \N \N \N \N 14092 S.grandifolius Styrax Styrax grandifolius \N \N \N \N \N 14093 M.dumaziana Mendoravia Mendoravia dumaziana \N \N \N \N \N 14094 P.fontinalis Parafaujasia Parafaujasia fontinalis \N \N \N \N \N 14095 M.elongata Maytenus Maytenus elongata \N \N \N \N \N 14096 P.trinervia Piqueria Piqueria trinervia \N \N \N \N \N 14097 T.patagonicum Trophaeastrum Trophaeastrum patagonicum \N \N \N \N \N 14098 U.urens Urtica Urtica urens \N \N \N \N \N 14099 L.pilifera Lycianthes Lycianthes pilifera \N \N \N \N \N 14100 C.pratensis Clusia Clusia pratensis \N \N \N \N \N 14101 A.laxa Aristida Aristida laxa \N \N \N \N \N 14102 \N genus Crithopsis \N \N \N \N \N 14103 \N genus Freesia \N \N \N \N \N 14104 M.papillosa Miconia Miconia papillosa \N \N \N \N \N 14105 \N genus Amphibolis \N \N \N \N \N 14106 D.venosa Diospyros Diospyros venosa \N \N \N \N \N 14107 S.sceptrum Sinningia Sinningia sceptrum \N \N \N \N \N 14108 M.horrida Muraltia Muraltia horrida \N \N \N \N \N 14109 E.coca Erythroxylum Erythroxylum coca coca,hayo \N \N \N \N 14110 S.atroviolacea Stelis Stelis atroviolacea \N \N \N \N \N 14111 P.lundborgii Plantago Plantago lundborgii \N \N \N \N \N 14112 O.calliantha Ophrys Ophrys calliantha \N \N \N \N \N 14113 V.cristata Vanda Vanda cristata \N \N \N \N \N 14114 A.phebalioides Asterolasia Asterolasia phebalioides \N \N \N \N \N 14115 V.sharpii Viguiera Viguiera sharpii \N \N \N \N \N 14116 P.hartwegianum Piper Piper hartwegianum \N \N \N \N \N 14117 M.lateriflora Moehringia Moehringia lateriflora \N \N \N \N \N 14118 \N genus Moutabea \N \N \N \N \N 14119 G.huochengensis Gagea Gagea huochengensis \N \N \N \N \N 14120 S.membranacea Spachea Spachea membranacea \N \N \N \N \N 14121 C.egglestonii Carex Carex egglestonii \N \N \N \N \N 14122 P.villosa Primula Primula villosa \N \N \N \N \N 14123 H.doerfleri Helichrysum Helichrysum doerfleri \N \N \N \N \N 14124 A.podocarpus Astragalus Astragalus podocarpus \N \N \N \N \N 14125 P.MW-2004 Physalis Physalis aff. heterophylla MW-2004 \N \N \N \N \N 14126 \N genus Valerianella \N \N \N \N \N 14127 L.bosniacum Lilium Lilium bosniacum \N \N \N \N \N 14128 \N subspecies Viscum album subsp. austriacum \N \N \N \N \N 14129 C.killinica Crataegus Crataegus x killinica \N \N \N \N \N 14130 P.canescens Pediomelum Pediomelum canescens \N \N \N \N \N 14131 D.aurata Disa Disa aurata \N \N \N \N \N 14132 P.fragiformis Potentilla Potentilla fragiformis \N \N \N \N \N 14133 J.canadensis Juncus Juncus canadensis \N \N \N \N \N 14134 M.75-650 Murdannia Murdannia sp. BH 75-650 \N \N \N \N \N 14135 V.galilaea Vicia Vicia galilaea \N \N \N \N \N 14136 A.balansae Artia Artia balansae \N \N \N \N \N 14137 \N genus Urtica \N \N \N \N \N 14138 \N varietas Carex scopulorum var. bracteosa \N \N \N \N \N 14139 C.rauhii Ceratostema Ceratostema rauhii \N \N \N \N \N 14140 A.inaequale Allium Allium inaequale \N \N \N \N \N 14141 M.denticulata Miconia Miconia denticulata \N \N \N \N \N 14142 C.bromoides Carex Carex bromoides \N \N \N \N \N 14143 S.chrysophylla Strychnos Strychnos chrysophylla \N \N \N \N \N 14144 P.floribunda Pseudosabicea Pseudosabicea floribunda \N \N \N \N \N 14145 C.elegans Carpolepis Carpolepis elegans \N \N \N \N \N 14146 A.ovalifolia Acaena Acaena ovalifolia \N \N \N \N \N 14147 P.neillii Psychotria Psychotria neillii \N \N \N \N \N 14148 \N genus Calophyllum \N \N \N \N \N 14149 O.sennoides Ormocarpum Ormocarpum sennoides \N \N \N \N \N 14150 G.dubia Gustavia Gustavia dubia \N \N \N \N \N 14151 O.bertoloniiformis Ophrys Ophrys bertoloniiformis \N \N \N \N \N 14152 S.sanguinea Stromanthe Stromanthe sanguinea \N \N \N \N \N 14153 \N varietas Ocimum gratissimum var. suave \N \N \N \N \N 14154 I.lukwangulensis Impatiens Impatiens lukwangulensis \N \N \N \N \N 14155 H.bracteatus Himatanthus Himatanthus bracteatus \N \N \N \N \N 14156 W.berteroi Wahlenbergia Wahlenbergia berteroi \N \N \N \N \N 14157 \N subspecies Acer davidii subsp. davidii \N \N \N \N \N 14158 \N subspecies Atuna racemosa subsp. racemosa \N \N \N \N \N 14159 A.cooleyae Arcteranthis Arcteranthis cooleyae \N \N \N \N \N 14160 G.lithuanica Glyceria Glyceria lithuanica \N \N \N \N \N 14161 C.juergensii Christensonella Christensonella juergensii \N \N \N \N \N 14162 A.campbellii Acer Acer campbellii \N \N \N \N \N 14163 C.choussyana Crudia Crudia choussyana \N \N \N \N \N 14164 U.botryoides Umbilicus Umbilicus botryoides \N \N \N \N \N 14165 R.brunonii Rosa Rosa brunonii Himalayan musk rose \N \N \N \N 14166 E.goetzei Euphorbia Euphorbia goetzei \N \N \N \N \N 14167 H.transalpinum Heliotropium Heliotropium transalpinum \N \N \N \N \N 14168 P.crinita Potentilla Potentilla crinita \N \N \N \N \N 14169 M.simplex Miconia Miconia simplex \N \N \N \N \N 14170 \N family Goodeniaceae \N \N \N \N \N 14171 J.P101 Jaltomata Jaltomata sp. P101 \N \N \N \N \N 14172 A.lanceolata Actinidia Actinidia lanceolata \N \N \N \N \N 14173 N.sinensis Neillia Neillia sinensis \N \N \N \N \N 14174 L.serreana Lonicera Lonicera serreana \N \N \N \N \N 14175 M.cretica Malva Malva cretica \N \N \N \N \N 14176 \N varietas Arisaema amurense var. serratum \N \N \N \N \N 14177 S.morongii Senna Senna morongii \N \N \N \N \N 14178 D.mejlandii Deschampsia Deschampsia mejlandii \N \N \N \N \N 14179 \N genus Simplicia \N \N \N \N \N 14180 \N genus Spongiosperma \N \N \N \N \N 14181 B.incurva Berzelia Berzelia incurva \N \N \N \N \N 14182 P.erratica Primula Primula erratica \N \N \N \N \N 14183 E.membranaceum Epimedium Epimedium membranaceum \N \N \N \N \N 14184 S.romanzoffiana Spiranthes Spiranthes romanzoffiana \N \N \N \N \N 14185 \N genus Baphiopsis \N \N \N \N \N 14186 S.bilineata Scaphyglottis Scaphyglottis bilineata \N \N \N \N \N 14187 A.seriphioides Acantholippia Acantholippia seriphioides \N \N \N \N \N 14188 A.peralatum Argyrodendron Argyrodendron peralatum red tulip oak \N \N \N \N 14189 C.arborescens Clermontia Clermontia arborescens \N \N \N \N \N 14190 S.amazonica Sciadotenia Sciadotenia amazonica \N \N \N \N \N 14191 H.delavayi Habenaria Habenaria delavayi \N \N \N \N \N 14192 E.syringifolium Ecbolium Ecbolium syringifolium \N \N \N \N \N 14193 \N genus Casuarina \N \N \N \N \N 14194 C.distans Carex Carex distans \N \N \N \N \N 14195 B.saxatilis Blumea Blumea saxatilis \N \N \N \N \N 14196 A.simplicifolia Aciphylla Aciphylla simplicifolia \N \N \N \N \N 14197 L.dodonaeifolius Lithocarpus Lithocarpus dodonaeifolius \N \N \N \N \N 14198 F.ulmaria Filipendula Filipendula ulmaria \N \N \N \N \N 14199 S.insularis Sesleria Sesleria insularis \N \N \N \N \N 14200 \N genus Phytelephas \N \N \N \N \N 14201 C.atticum Colchicum Colchicum atticum \N \N \N \N \N 14202 \N varietas Lilium auratum var. auratum \N \N \N \N \N 14203 \N genus Ixonanthes \N \N \N \N \N 14204 C.trigynum Cheirodendron Cheirodendron trigynum \N \N \N \N \N 14205 J.BAC-2010 unclassified Juncaceae Juncaceae sp. A7 BAC-2010 \N \N \N \N \N 14206 A.trachelioides Adenophora Adenophora trachelioides \N \N \N \N \N 14207 \N no rank Arachis hypogaea var. vulgaris Spanish peanut \N \N \N \N 14208 F.decussata Fuchsia Fuchsia decussata \N \N \N \N \N 14209 I.crassiuscula Isolepis Isolepis crassiuscula \N \N \N \N \N 14210 T.726 Taraxacum Taraxacum sp. Sojak 726 \N \N \N \N \N 14211 G.bradtiana Grusonia Grusonia bradtiana \N \N \N \N \N 14212 P.asperrima Podocoma Podocoma asperrima \N \N \N \N \N 14213 \N genus Tetrameles \N \N \N \N \N 14214 Q.sample environmental samples Taxonomy:197745 Quercus environmental sample \N \N \N \N \N 14215 A.forsythii Alectryon Alectryon forsythii \N \N \N \N \N 14216 P.juliae Primula Primula juliae \N \N \N \N \N 14217 E.excelsa Euphorbia Euphorbia excelsa \N \N \N \N \N 14218 F.papillosa Fraxinus Fraxinus papillosa Chihuahua ash \N \N \N \N 14219 C.brevistyla Camellia Camellia brevistyla \N \N \N \N \N 14220 C.parviflora Curcuma Curcuma parviflora \N \N \N \N \N 14221 P.rigida Palicourea Palicourea rigida \N \N \N \N \N 14222 \N subspecies Leymus salinus subsp. salmonis \N \N \N \N \N 14223 Z.sinica Zoysia Zoysia sinica \N \N \N \N \N 14224 I.celebica Illigera Illigera celebica \N \N \N \N \N 14225 \N genus Carica \N \N \N \N \N 14226 \N varietas Astragalus robbinsii var. minor \N \N \N \N \N 14227 C.congestiflora Clusia Clusia congestiflora \N \N \N \N \N 14228 \N genus Epipremnum \N \N \N \N \N 14229 A.squamata Artedia Artedia squamata \N \N \N \N \N 14230 A.montaraensis Arctostaphylos Arctostaphylos montaraensis \N \N \N \N \N 14231 D.aretioides Dionysia Dionysia aretioides \N \N \N \N \N 14232 N.resedifolia Nidorella Nidorella resedifolia \N \N \N \N \N 14233 D.bahiensis Dorstenia Dorstenia bahiensis \N \N \N \N \N 14234 M.palmeri Mimulus Mimulus palmeri \N \N \N \N \N 14235 I.h-2b Impatiens Impatiens sp. h-2b \N \N \N \N \N 14236 I.subecalcarata Impatiens Impatiens subecalcarata \N \N \N \N \N 14237 Z.grayana Zehneria Zehneria grayana \N \N \N \N \N 14238 I.catati Impatiens Impatiens catati \N \N \N \N \N 14239 M.2826 Maxillaria Maxillaria aff. acostae Blanco 2826 \N \N \N \N \N 14240 T.bejariense Trifolium Trifolium bejariense \N \N \N \N \N 14241 S.cucullata Suaeda Suaeda cucullata \N \N \N \N \N 14242 C.44 Cymbopetalum Cymbopetalum sp. Chatrou et al. 44 \N \N \N \N \N 14243 \N genus Tetrataxis \N \N \N \N \N 14244 P.aquatica Phalaris Phalaris aquatica canary grass \N \N \N \N 14245 \N genus Gevuina \N \N \N \N \N 14246 P.guianensis Pacouria Pacouria guianensis \N \N \N \N \N 14247 I.suaveolens Inga Inga suaveolens \N \N \N \N \N 14248 S.mitlense Solanum Solanum mitlense \N \N \N \N \N 14249 B.colleyi Batemania Batemania colleyi \N \N \N \N \N 14250 J.subulatus Juncus Juncus subulatus \N \N \N \N \N 14251 N.doerfleri Nigella Nigella doerfleri \N \N \N \N \N 14252 \N genus Lycopus \N \N \N \N \N 14253 M.2086 Macrocnemum Macrocnemum sp. Andersson et al. 2086 \N \N \N \N \N 14254 S.linifolius Senecio Senecio linifolius \N \N \N \N \N 14255 S.goetzei Streptocarpus Streptocarpus goetzei \N \N \N \N \N 14256 D.appendiculata Descurainia Descurainia appendiculata \N \N \N \N \N 14257 \N genus Oeonia \N \N \N \N \N 14258 V.inodora Vanilla Vanilla inodora \N \N \N \N \N 14259 E.schimperi Euclea Euclea schimperi \N \N \N \N \N 14260 P.quintasii Polyscias Polyscias quintasii \N \N \N \N \N 14261 W.incurvata Wiborgia Wiborgia incurvata \N \N \N \N \N 14262 C.cereifera Coccoloba Coccoloba cereifera \N \N \N \N \N 14263 D.hirsuta Dodonaea Dodonaea hirsuta \N \N \N \N \N 14264 C.nucele Cyphophoenix Cyphophoenix nucele \N \N \N \N \N 14265 P.vietnamensis Paris Paris vietnamensis \N \N \N \N \N 14266 A.indica Aeginetia Aeginetia indica \N \N \N \N \N 14267 C.arborea Clethra Clethra arborea folhado,lily of the valley tree \N \N \N \N 14268 \N subtribe Rhopalostylidinae \N \N \N \N \N 14269 \N subspecies Hibiscus moscheutos subsp. incanus \N \N \N \N \N 14270 S.angolensis Sphedamnocarpus Sphedamnocarpus angolensis \N \N \N \N \N 14271 \N genus Callothlaspi \N \N \N \N \N 14272 \N genus Adonidia \N \N \N \N \N 14273 B.letouzeyi Begonia Begonia letouzeyi \N \N \N \N \N 14274 M.minutissima Muhlenbergia Muhlenbergia minutissima \N \N \N \N \N 14275 P.seleri Piptochaetium Piptochaetium seleri \N \N \N \N \N 14276 B.dumosum Bupleurum Bupleurum dumosum \N \N \N \N \N 14277 \N varietas Croton morifolius var. sphaerocarpus \N \N \N \N \N 14278 L.bakeriana Lobanilia Lobanilia bakeriana \N \N \N \N \N 14279 M.stipulosa Mitragyna Mitragyna stipulosa \N \N \N \N \N 14280 A.ibericum Acer Acer ibericum \N \N \N \N \N 14281 C.convoluta Cuspidaria Cuspidaria convoluta \N \N \N \N \N 14282 \N subspecies Iris tenax subsp. klamathensis Orleans iris \N \N \N \N 14283 C.linearifolia Cleome Cleome linearifolia \N \N \N \N \N 14284 A.wettsteiniana Anthemis Anthemis wettsteiniana \N \N \N \N \N 14285 B.rubrosepala Burmeistera Burmeistera rubrosepala \N \N \N \N \N 14286 G.cantabrigiense Geranium Geranium x cantabrigiense \N \N \N \N \N 14287 \N genus Pomaderris \N \N \N \N \N 14288 I.madrensis Iostephane Iostephane madrensis \N \N \N \N \N 14289 C.arfakana Clethra Clethra arfakana \N \N \N \N \N 14290 C.rigida Chionochloa Chionochloa rigida \N \N \N \N \N 14291 T.s5110 unclassified Taraxacum Taraxacum (sect. Tibetana/Leucantha) sp. s5110 \N \N \N \N \N 14292 E.11024 Encyclia Encyclia aff. oncidioides ESA 11024 \N \N \N \N \N 14293 C.cogolloi Caryodaphnopsis Caryodaphnopsis cogolloi \N \N \N \N \N 14294 \N genus Dichelachne \N \N \N \N \N 14295 E.pyrenaica Euphorbia Euphorbia pyrenaica \N \N \N \N \N 14296 S.SP811 Sisyrinchium Sisyrinchium aff. strictum SP811 \N \N \N \N \N 14297 C.sieheanus Crocus Crocus sieheanus \N \N \N \N \N 14298 R.biolleyi Ruellia Ruellia biolleyi \N \N \N \N \N 14299 T.chilense Trifolium Trifolium chilense \N \N \N \N \N 14300 V.tuberosa Viguiera Viguiera tuberosa \N \N \N \N \N 14301 D.praecox Diuris Diuris praecox \N \N \N \N \N 14302 \N varietas Gymnocalycium ritterianum var. acentracanthum \N \N \N \N \N 14303 C.boinensis Coffea Coffea boinensis \N \N \N \N \N 14304 S.Mexico Salicornia Salicornia sp. Mexico \N \N \N \N \N 14305 \N genus Austromatthaea \N \N \N \N \N 14306 P.intortusifolius Potamogeton Potamogeton intortusifolius \N \N \N \N \N 14307 P.divaricata Pultenaea Pultenaea divaricata \N \N \N \N \N 14308 C.crassa Climacoptera Climacoptera crassa \N \N \N \N \N 14309 S.hispidulus Senecio Senecio hispidulus \N \N \N \N \N 14310 V.asterias Viscaria Viscaria asterias \N \N \N \N \N 14311 \N genus Welchiodendron \N \N \N \N \N 14312 C.loliacea Carex Carex loliacea \N \N \N \N \N 14313 I.arrecta Indigofera Indigofera arrecta \N \N \N \N \N 14314 E.stipularis Elegia Elegia stipularis \N \N \N \N \N 14315 F.gracilis Fragaria Fragaria gracilis \N \N \N \N \N 14316 F.congesta Ficus Ficus congesta \N \N \N \N \N 14317 S.leiostyla Sebaea Sebaea leiostyla \N \N \N \N \N 14318 \N genus Pectinaria \N \N \N \N \N 14319 A.haussknechtii Artemisia Artemisia haussknechtii \N \N \N \N \N 14320 S.spixiana Sigmoidotropis Sigmoidotropis spixiana \N \N \N \N \N 14321 B.SM-2010 Brasenia Brasenia sp. SM-2010 \N \N \N \N \N 14322 S.atrinervosa Shorea Shorea atrinervosa \N \N \N \N \N 14323 R.palicoureoides Raritebe Raritebe palicoureoides \N \N \N \N \N 14324 P.caudatus Phyllanthus Phyllanthus caudatus \N \N \N \N \N 14325 K.780 Koeleria Koeleria sp. Forest 780 \N \N \N \N \N 14326 C.veitchiana Corylopsis Corylopsis veitchiana \N \N \N \N \N 14327 V.myuros Vulpia Vulpia myuros \N \N \N \N \N 14328 V.perennis Verbena Verbena perennis \N \N \N \N \N 14329 P.serpens Philodendron Philodendron serpens \N \N \N \N \N 14330 S.04F/0063 Salicornia Salicornia aff. ramosissima Teege 04F/0063 \N \N \N \N \N 14331 C.3367 Croton Croton cf. lundellii Duran 3367 \N \N \N \N \N 14332 H.turkestana Hypogomphia Hypogomphia turkestana \N \N \N \N \N 14333 L.insons Loasa Loasa insons \N \N \N \N \N 14334 M.micrantha Mentzelia Mentzelia micrantha \N \N \N \N \N 14335 B.hiemalis Banksia Banksia hiemalis \N \N \N \N \N 14336 V.thessalica Veronica Veronica thessalica \N \N \N \N \N 14337 D.bigelovii Dieteria Dieteria bigelovii \N \N \N \N \N 14338 E.conferta Erica Erica conferta \N \N \N \N \N 14339 D.liebrechtsiana Dioscorea Dioscorea liebrechtsiana \N \N \N \N \N 14340 A.oreganus Astragalus Astragalus oreganus \N \N \N \N \N 14341 G.coleosperma Guibourtia Guibourtia coleosperma \N \N \N \N \N 14342 T.glabrescens Tolpis Tolpis glabrescens \N \N \N \N \N 14343 L.JP5 Lupinus Lupinus sp. JP5 \N \N \N \N \N 14344 A.trachyphloia Acacia Acacia trachyphloia \N \N \N \N \N 14345 T.latifolium Thaminophyllum Thaminophyllum latifolium \N \N \N \N \N 14346 E.octonaria Enarganthe Enarganthe octonaria \N \N \N \N \N 14347 M.19514782 unclassified Meliaceae Meliaceae sp. NBGB 19514782 \N \N \N \N \N 14348 D.cherrieri Diospyros Diospyros cherrieri \N \N \N \N \N 14349 S.viridiflora Stanleya Stanleya viridiflora \N \N \N \N \N 14350 S.leioneurus Storthocalyx Storthocalyx leioneurus \N \N \N \N \N 14351 D.simoniana Ditaxis Ditaxis simoniana \N \N \N \N \N 14352 \N genus Grammosciadium \N \N \N \N \N 14353 A.australasica Atriplex Atriplex australasica \N \N \N \N \N 14354 \N genus Doyerea \N \N \N \N \N 14355 C.kiriwongensis Caryota Caryota kiriwongensis \N \N \N \N \N 14356 S.merxmuelleri Salsola Salsola merxmuelleri \N \N \N \N \N 14357 P.autumnale Prospero Prospero autumnale autumn squill,starry hyacinth \N \N \N \N 14359 \N varietas Lomatium dissectum var. dissectum \N \N \N \N \N 14360 H.fryxellii Hibiscus Hibiscus fryxellii \N \N \N \N \N 14361 O.graeca Onosma Onosma graeca \N \N \N \N \N 14362 T.concolor Tricalysia Tricalysia concolor \N \N \N \N \N 27573 \N no rank unclassified Allium \N \N \N \N \N 14363 C.vinosa Calathea Calathea vinosa \N \N \N \N \N 14364 C.trifolia Coptis Coptis trifolia \N \N \N \N \N 14365 P.tomentosa Prestonia Prestonia tomentosa \N \N \N \N \N 14366 \N genus Elaeophorbia \N \N \N \N \N 14367 B.002-089-95 Begonia Begonia aff. palmata GBG 002-089-95 \N \N \N \N \N 14368 B.grandiflora Brassavola Brassavola grandiflora \N \N \N \N \N 14369 S.oraria Scorzoneroides Scorzoneroides oraria \N \N \N \N \N 14370 \N genus Angasomyrtus \N \N \N \N \N 14371 M.orbicularis Medicago Medicago orbicularis \N \N \N \N \N 14372 G.holopetala Gentianopsis Gentianopsis holopetala \N \N \N \N \N 14373 P.illicioides Pittosporum Pittosporum illicioides \N \N \N \N \N 14374 \N subspecies Nelumbo nucifera subsp. nucifera \N \N \N \N \N 14375 V.glauca Veronica Veronica glauca \N \N \N \N \N 14376 A.wallichii Allium Allium wallichii \N \N \N \N \N 14377 L.remotum Lolium Lolium remotum \N \N \N \N \N 14378 L.buddleiifolius Lessingianthus Lessingianthus buddleiifolius \N \N \N \N \N 14379 M.grandiflora Monotaxis Monotaxis grandiflora \N \N \N \N \N 14380 \N genus Saxipoa \N \N \N \N \N 14381 \N genus Alepis \N \N \N \N \N 14382 Q.velutina Quercus Quercus velutina \N \N \N \N \N 14383 G.ehrenbergii Gliricidia Gliricidia ehrenbergii \N \N \N \N \N 14384 O.6512 Orobanche Orobanche cf. rosmarina Jeanmonod 6512 \N \N \N \N \N 14385 C.996 Chionanthus Chionanthus sp. 996 \N \N \N \N \N 14386 C.binervis Carex Carex binervis \N \N \N \N \N 14387 I.ramosissima Ipomoea Ipomoea ramosissima \N \N \N \N \N 14388 \N genus Epidryos \N \N \N \N \N 14389 D.dodsonii Dracula Dracula dodsonii \N \N \N \N \N 14390 A.mendozana Artemisia Artemisia mendozana \N \N \N \N \N 14391 O.falconeri Oberonia Oberonia falconeri \N \N \N \N \N 14392 B.standleyana Bursera Bursera standleyana \N \N \N \N \N 14393 C.kotschyana Crambe Crambe kotschyana \N \N \N \N \N 14394 \N genus Earina \N \N \N \N \N 14395 G.blakeanum Gloeospermum Gloeospermum blakeanum \N \N \N \N \N 14396 \N varietas Vallisneria asiatica var. asiatica \N \N \N \N \N 14397 \N genus Bartholina \N \N \N \N \N 14398 \N subspecies Cordylanthus kingii subsp. kingii \N \N \N \N \N 14399 B.repens Baldellia Baldellia repens \N \N \N \N \N 14400 F.scandens Floscopa Floscopa scandens \N \N \N \N \N 14401 D.canescens Dalechampia Dalechampia canescens \N \N \N \N \N 14402 C.geniculata Cliffortia Cliffortia geniculata \N \N \N \N \N 14403 \N genus Monocarpia \N \N \N \N \N 14404 P.truncatum Piper Piper truncatum \N \N \N \N \N 14405 \N subspecies Prainea limpato subsp. papuana \N \N \N \N \N 14406 A.doniana Aenigmatanthera Aenigmatanthera doniana \N \N \N \N \N 14407 \N varietas Centaurea pinae var. integrifolia \N \N \N \N \N 14408 \N subspecies Wahlenbergia pygmaea subsp. drucei \N \N \N \N \N 14409 M.brachycaulon Monanthes Monanthes brachycaulon \N \N \N \N \N 14410 P.povilana Planchonella Planchonella povilana \N \N \N \N \N 14411 \N tribe Phyliceae \N \N \N \N \N 14412 Z.tuberculata Zieria Zieria tuberculata \N \N \N \N \N 14413 C.lappacea Cousinia Cousinia lappacea \N \N \N \N \N 14414 C.parviflora Caucasalia Caucasalia parviflora \N \N \N \N \N 14415 H.equitum Hoheria Hoheria equitum \N \N \N \N \N 14416 C.simulans Cyphostemma Cyphostemma simulans \N \N \N \N \N 14417 S.peruvianus Stenocereus Stenocereus peruvianus \N \N \N \N \N 14418 T.procumbens Tridax Tridax procumbens \N \N \N \N \N 14419 E.triflora Erica Erica triflora \N \N \N \N \N 14420 N.asper Nabalus Nabalus asper \N \N \N \N \N 14421 R.pseudolongicaudata Rytigynia Rytigynia pseudolongicaudata \N \N \N \N \N 14422 R.longisepala Rinorea Rinorea longisepala \N \N \N \N \N 14423 L.diversifolia Lignocarpa Lignocarpa diversifolia \N \N \N \N \N 14424 H.KK-2010 Hieracium Hieracium cf. guatemalense KK-2010 \N \N \N \N \N 14425 C.haplocarpa Carlowrightia Carlowrightia haplocarpa \N \N \N \N \N 14426 \N subspecies Gyrocarpus americanus subsp. africanus \N \N \N \N \N 14427 E.persicum Echiochilon Echiochilon persicum \N \N \N \N \N 14428 \N subspecies Ranunculus parnassiifolius subsp. parnassiifolius \N \N \N \N \N 14429 A.leptynticus Astragalus Astragalus leptynticus \N \N \N \N \N 14430 P.grandiflora Portlandia Portlandia grandiflora \N \N \N \N \N 14431 E.dammanniana Echidnopsis Echidnopsis dammanniana \N \N \N \N \N 14432 \N genus Sarcoglottis \N \N \N \N \N 14433 T.S5468 unclassified Taraxacum Taraxacum (sect. Tibetana) sp. S5468 \N \N \N \N \N 14434 C.fontanum Cerastium Cerastium fontanum \N \N \N \N \N 14435 \N genus Schizonepeta \N \N \N \N \N 14436 C.echinospermum Cicer Cicer echinospermum \N \N \N \N \N 14437 S.sisaroideum Sium Sium sisaroideum \N \N \N \N \N 14438 R.regelii Rhaphidophyton Rhaphidophyton regelii \N \N \N \N \N 14439 S.15748 Sirhookera Sirhookera sp. Chase 15748 \N \N \N \N \N 14440 \N subspecies Sinapis arvensis subsp. allionii \N \N \N \N \N 14441 \N genus Dystaenia \N \N \N \N \N 14442 H.marginata Hieronymiella Hieronymiella marginata \N \N \N \N \N 14443 N.eastii Nicotiana Nicotiana eastii \N \N \N \N \N 14444 \N genus Tabernaemontana \N \N \N \N \N 14445 S.pauciflorus Schoenus Schoenus pauciflorus \N \N \N \N \N 14446 I.ewartiana Indigofera Indigofera ewartiana \N \N \N \N \N 14447 A.monumentalis Astragalus Astragalus monumentalis \N \N \N \N \N 14448 A.anacamptus Astragalus Astragalus anacamptus \N \N \N \N \N 14449 T.ligusticum Trifolium Trifolium ligusticum Ligurian clover \N \N \N \N 14450 A.serpentaria Aristolochia Aristolochia serpentaria Virginia snakeroot \N \N \N \N 14451 \N varietas Sagittaria trifolia var. trifolia \N \N \N \N \N 14452 N.formicarum Nassella Nassella formicarum \N \N \N \N \N 14453 F.cronquistii Flaveria Flaveria cronquistii \N \N \N \N \N 14454 D.7170 Drosanthemum Drosanthemum sp. Bruyns 7170 \N \N \N \N \N 14455 B.oliveri Brunellia Brunellia oliveri \N \N \N \N \N 14456 L.2264 Lupinus Lupinus sp. CEH 2264 \N \N \N \N \N 14457 C.perspeciosus Croton Croton perspeciosus \N \N \N \N \N 14458 M.minutifolia Melaleuca Melaleuca minutifolia \N \N \N \N \N 14459 N.mekongense Neocinnamomum Neocinnamomum mekongense \N \N \N \N \N 14460 S.rubescens Scaphochlamys Scaphochlamys rubescens \N \N \N \N \N 14461 A.aubletii Andira Andira aubletii \N \N \N \N \N 14462 L.strictum Lithospermum Lithospermum strictum \N \N \N \N \N 14463 \N genus Kibara \N \N \N \N \N 14464 D.canariensis Dracunculus Dracunculus canariensis \N \N \N \N \N 14465 N.leptophylla Nolana Nolana leptophylla \N \N \N \N \N 14466 H.candidum Hieracium Hieracium candidum \N \N \N \N \N 14467 \N genus Reinwardtiodendron \N \N \N \N \N 14468 P.pygmaea Pimelea Pimelea pygmaea \N \N \N \N \N 14469 P.caudatus Phyllobolus Phyllobolus caudatus \N \N \N \N \N 14470 I.dialystemon Ipheion Ipheion dialystemon \N \N \N \N \N 14471 B.multijuga Bursera Bursera multijuga \N \N \N \N \N 14472 J.hunzikeri Jaltomata Jaltomata hunzikeri \N \N \N \N \N 14473 L.nana Lipocarpha Lipocarpha nana \N \N \N \N \N 14474 P.galapageia Polygala Polygala galapageia \N \N \N \N \N 14475 C.pyracanthoides Commiphora Commiphora pyracanthoides \N \N \N \N \N 14476 C.flavula Corydalis Corydalis flavula yellow harlequin \N \N \N \N 14477 A.majellensis Armeria Armeria majellensis \N \N \N \N \N 14478 T.3517 unclassified Taraxacum Taraxacum (sect. Piesis) sp. 3517 \N \N \N \N \N 14479 S.citrea Symplocos Symplocos citrea \N \N \N \N \N 14480 B.PS-2009 Bauhinia Bauhinia sp. PS-2009 \N \N \N \N \N 14481 \N subspecies Quercus infectoria subsp. boisseri \N \N \N \N \N 14482 \N genus Leipoldtia \N \N \N \N \N 14483 G.glutinosa Grindelia Grindelia glutinosa \N \N \N \N \N 14484 M.ciliata Melica Melica ciliata \N \N \N \N \N 14485 P.saragurense Pityphyllum Pityphyllum saragurense \N \N \N \N \N 14486 \N genus Nabaluia \N \N \N \N \N 14487 \N genus Cassytha \N \N \N \N \N 14488 \N genus Nematolepis \N \N \N \N \N 14489 F.hombroniana Ficus Ficus hombroniana \N \N \N \N \N 14490 P.gracile Piptatherum Piptatherum gracile \N \N \N \N \N 14491 B.pauciflora Burbidgea Burbidgea pauciflora \N \N \N \N \N 14492 \N genus Juttadinteria \N \N \N \N \N 14493 I.albomarginata Iris Iris albomarginata \N \N \N \N \N 14494 A.01-6855) Alpinia Alpinia sp. 2 (Kress 01-6855) \N \N \N \N \N 14495 P.laosanum Piper Piper laosanum \N \N \N \N \N 14496 P.candolleana Philibertia Philibertia candolleana \N \N \N \N \N 14497 E.amoena Elegia Elegia amoena \N \N \N \N \N 14498 I.bainesii Indigofera Indigofera bainesii \N \N \N \N \N 14499 \N genus Triadica \N \N \N \N \N 14500 D.raillardioides Dubautia Dubautia raillardioides \N \N \N \N \N 14501 \N genus Calymmanthium \N \N \N \N \N 14502 \N family Rafflesiaceae \N \N \N \N \N 14503 \N subspecies Acacia nilotica subsp. subalata \N \N \N \N \N 14504 \N genus Megaleranthis \N \N \N \N \N 14505 S.latifolium Sium Sium latifolium wideleaf waterparsnip \N \N \N \N 14506 C.humbertii Chascanum Chascanum humbertii \N \N \N \N \N 14507 G.stangeana Galeandra Galeandra stangeana \N \N \N \N \N 14508 O.cernua Ocotea Ocotea cernua \N \N \N \N \N 14509 \N genus Hohenackeria \N \N \N \N \N 14510 A.gracile Athroisma Athroisma gracile \N \N \N \N \N 14511 \N genus Asta \N \N \N \N \N 14512 I.nervulosa Ilex Ilex nervulosa \N \N \N \N \N 14513 C.limonia Citrus Citrus limonia Canton lemon,Rangpur lime,hime lemon,lemandarin,li meng,mandarin lime,sharbati,surkh nimboo,yi mu zi \N \N \N \N 14514 L.racemoides Lindsayomyrtus Lindsayomyrtus racemoides \N \N \N \N \N 14515 S.purpurea Salix Salix purpurea purple osier \N \N \N \N 14516 M.suffruticosa Medicago Medicago suffruticosa \N \N \N \N \N 14517 \N varietas Sinolimprichtia alpina var. dissecta \N \N \N \N \N 14518 C.DK-2009 Carapa Carapa sp. 6 DK-2009 \N \N \N \N \N 14519 A.glandulosa Ampelopsis Ampelopsis glandulosa \N \N \N \N \N 14520 V.spathulata Hebe Veronica spathulata \N \N \N \N \N 14521 N.fruticans Nypa Nypa fruticans nipa palm,nypa palm \N \N \N \N 14522 \N genus Mapouria \N \N \N \N \N 14523 R.M75P204 Riedelia Riedelia sp. Mood M75P204 \N \N \N \N \N 14524 C.07nia950 Coccinia Coccinia sp. 07nia950 \N \N \N \N \N 14525 \N genus Rothia \N \N \N \N \N 14526 L.gracile Ligustrum Ligustrum gracile \N \N \N \N \N 14527 C.biflora Conanthera Conanthera biflora \N \N \N \N \N 14528 C.01-6874 Curcuma Curcuma sp. Kress 01-6874 \N \N \N \N \N 14529 A.acuminata Aristolochia Aristolochia acuminata \N \N \N \N \N 14530 E.acicularis Eleocharis Eleocharis acicularis needle spikerush \N \N \N \N 14531 L.occidentalis Lavatera Lavatera occidentalis \N \N \N \N \N 14532 E.bracteata Elliottia Elliottia bracteata \N \N \N \N \N 14533 Z.macrantha Zoysia Zoysia macrantha \N \N \N \N \N 14534 P.tenuicaule Pelargonium Pelargonium tenuicaule \N \N \N \N \N 14535 S.DZL-2011 Sinosenecio Sinosenecio sp. DZL-2011 \N \N \N \N \N 14536 T.trifolia Triphasia Triphasia trifolia \N \N \N \N \N 14537 \N genus Arachis \N \N \N \N \N 14538 P.misera Passiflora Passiflora misera \N \N \N \N \N 14539 P.yixingensis Pleioblastus Pleioblastus yixingensis \N \N \N \N \N 14540 O.armeniacum Ornithogalum Ornithogalum armeniacum \N \N \N \N \N 14541 C.gargaricus Crocus Crocus gargaricus \N \N \N \N \N 14542 Z.470 unclassified Zingiberaceae Zingiberaceae sp. Ly 470 \N \N \N \N \N 14543 G.helicophylla Gagea Gagea helicophylla \N \N \N \N \N 14544 P.3925 Pleiostachya Pleiostachya aff. pruinosa Chase 3925 \N \N \N \N \N 14545 A.pedicularia Aureolaria Aureolaria pedicularia \N \N \N \N \N 14546 B.planiculmis Bolboschoenus Bolboschoenus planiculmis \N \N \N \N \N 14547 S.discolor Salix Salix discolor American pussy willow \N \N \N \N 14548 C.compressa Camellia Camellia compressa \N \N \N \N \N 14549 S.punctulata Scaphyglottis Scaphyglottis punctulata \N \N \N \N \N 14550 C.peglerae Chionanthus Chionanthus peglerae \N \N \N \N \N 14551 \N subspecies Pentameris airoides subsp. jugorum \N \N \N \N \N 14552 R.yakuinsulare Rhododendron Rhododendron yakuinsulare \N \N \N \N \N 14553 D.aprica Draba Draba aprica \N \N \N \N \N 14554 C.laxiflora Carex Carex laxiflora \N \N \N \N \N 14555 H.croaticus Helleborus Helleborus croaticus \N \N \N \N \N 14556 \N genus Rugelia \N \N \N \N \N 14559 G.scabrum Galium Galium scabrum \N \N \N \N \N 14560 A.kusnezoffii Aconitum Aconitum kusnezoffii \N \N \N \N \N 14561 S.henryi Saruma Saruma henryi \N \N \N \N \N 14562 \N genus Discaria \N \N \N \N \N 14563 D.lanceolata Drymonia Drymonia lanceolata \N \N \N \N \N 14564 F.dimorpha Festuca Festuca dimorpha \N \N \N \N \N 14565 M.lesinsii Medicago Medicago lesinsii \N \N \N \N \N 14566 C.dissimilis Columnea Columnea dissimilis \N \N \N \N \N 14567 A.langei Armeria Armeria langei \N \N \N \N \N 14568 C.pachyphylla Chiococca Chiococca pachyphylla \N \N \N \N \N 14569 H.flava Harperocallis Harperocallis flava \N \N \N \N \N 14570 M.breviflora Mohavea Mohavea breviflora \N \N \N \N \N 14571 C.acicularis Christensonella Christensonella acicularis \N \N \N \N \N 14572 A.officinalis Anchusa Anchusa officinalis \N \N \N \N \N 14573 F.trachycarpa Ferulago Ferulago trachycarpa \N \N \N \N \N 14574 C.occidentalis Calycanthus Calycanthus occidentalis California-allspice,western sweetshrub \N \N \N \N 14575 P.scotica Primula Primula scotica \N \N \N \N \N 14576 A.argentina Aniseia Aniseia argentina \N \N \N \N \N 14577 V.macrostachya Veronica Veronica macrostachya \N \N \N \N \N 14578 \N genus Daiotyla \N \N \N \N \N 14579 S.cana Scorzonera Scorzonera cana \N \N \N \N \N 14580 S.litwinowii Scorzonera Scorzonera litwinowii \N \N \N \N \N 14581 O.densiflorum Oncidium Oncidium densiflorum \N \N \N \N \N 14582 I.meyeriana Indigofera Indigofera meyeriana \N \N \N \N \N 14583 L.involucratum Ligusticum Ligusticum involucratum \N \N \N \N \N 14584 E.kingii Eremogone Eremogone kingii \N \N \N \N \N 14585 \N genus Sterigmostemum \N \N \N \N \N 14586 \N genus Saccocalyx \N \N \N \N \N 14587 C.juniperinum Chamelaucium Chamelaucium juniperinum \N \N \N \N \N 14588 M.balbisiana Musa Musa balbisiana \N \N \N \N \N 14589 S.linearis Spiloxene Spiloxene linearis \N \N \N \N \N 14590 N.forbesii Neoscortechinia Neoscortechinia forbesii \N \N \N \N \N 14591 R.purdiei Rondeletia Rondeletia purdiei \N \N \N \N \N 14592 C.vogelianum Ceroxylon Ceroxylon vogelianum \N \N \N \N \N 14593 C.rosea Canavalia Canavalia rosea \N \N \N \N \N 14594 J.pubescens Johnsonia Johnsonia pubescens \N \N \N \N \N 14595 H.comperianum Himantoglossum Himantoglossum comperianum \N \N \N \N \N 14596 S.persimilis Syncolostemon Syncolostemon persimilis \N \N \N \N \N 14597 C.hyemalis Crocus Crocus hyemalis \N \N \N \N \N 14598 A.madagascariensis Ambilobea Ambilobea madagascariensis \N \N \N \N \N 14599 M.floribunda Masdevallia Masdevallia floribunda \N \N \N \N \N 14600 S.boiviniana Suregada Suregada boiviniana \N \N \N \N \N 14601 S.foetidus Senecio Senecio foetidus \N \N \N \N \N 14602 Z.morgsana Zygophyllum Zygophyllum morgsana \N \N \N \N \N 14603 P.ottoniifolium Piper Piper ottoniifolium \N \N \N \N \N 14604 M.parvifolia Monsonia Monsonia parvifolia \N \N \N \N \N 14605 \N varietas Ceanothus foliosus var. foliosus \N \N \N \N \N 14606 \N subspecies Toxicodendron radicans subsp. radicans \N \N \N \N \N 14607 \N genus Komarovia \N \N \N \N \N 14608 A.6176 Amasonia Amasonia sp. PCD 6176 \N \N \N \N \N 14609 O.cruentoides Oncidium Oncidium cruentoides \N \N \N \N \N 14610 \N genus Wolffiella \N \N \N \N \N 14611 \N family Viscaceae \N \N \N \N \N 14612 A.longiglumis Avena Avena longiglumis \N \N \N \N \N 14613 S.lutescens Salvia Salvia lutescens \N \N \N \N \N 14614 E.zonosperma Euphorbia Euphorbia zonosperma \N \N \N \N \N 14615 R.tetracantha Randia Randia tetracantha \N \N \N \N \N 14616 P.penicillatum Panicum Panicum penicillatum \N \N \N \N \N 14617 H.umbellata Hunteria Hunteria umbellata \N \N \N \N \N 14618 R.strigosum Rhododendron Rhododendron strigosum \N \N \N \N \N 14619 \N varietas Tetrastigma henryi var. henryi \N \N \N \N \N 14620 C.montuosum Crassocephalum Crassocephalum montuosum \N \N \N \N \N 14621 U.simplex Utricularia Utricularia simplex \N \N \N \N \N 14622 M.leucanthum Melampodium Melampodium leucanthum \N \N \N \N \N 14623 P.aversum Paspalidium Paspalidium aversum \N \N \N \N \N 14624 D.cumbucana Dichanthelium Dichanthelium cumbucana \N \N \N \N \N 14625 O.purpureoalbus Orthocarpus Orthocarpus purpureoalbus \N \N \N \N \N 14626 A.urbicum Aeonium Aeonium urbicum \N \N \N \N \N 14627 A.japonica Ardisia Ardisia japonica \N \N \N \N \N 14628 C.alternata Clematis Clematis alternata \N \N \N \N \N 14629 W.helianthoides Wyethia Wyethia helianthoides \N \N \N \N \N 14630 V.bonplandii Varronia Varronia bonplandii \N \N \N \N \N 14631 C.lingulatum Colchicum Colchicum lingulatum \N \N \N \N \N 14632 \N genus Stenogyne \N \N \N \N \N 14633 S.orientalis Stubendorffia Stubendorffia orientalis \N \N \N \N \N 14634 B.lanata Bahiopsis Bahiopsis lanata \N \N \N \N \N 14635 N.chilensis Neowerdermannia Neowerdermannia chilensis \N \N \N \N \N 14636 A.scapiformis Acourtia Acourtia scapiformis \N \N \N \N \N 14637 G.densa Guilleminea Guilleminea densa small matweed \N \N \N \N 14638 C.pungens Chorizanthe Chorizanthe pungens \N \N \N \N \N 14639 \N genus Gymnostachyum \N \N \N \N \N 14640 F.paradoxa Ficinia Ficinia paradoxa \N \N \N \N \N 14641 P.fruticosus Prismatocarpus Prismatocarpus fruticosus \N \N \N \N \N 14642 \N varietas Nymphaea alba var. rubra \N \N \N \N \N 14643 \N genus Cipura \N \N \N \N \N 14644 \N subspecies Trifolium montanum subsp. humboldtianum \N \N \N \N \N 14645 G.senegalensis Gymnosporia Gymnosporia senegalensis \N \N \N \N \N 14646 \N genus Deinanthe \N \N \N \N \N 14647 M.aspera Mourera Mourera aspera \N \N \N \N \N 14648 C.elongata Cattleya Cattleya elongata \N \N \N \N \N 14649 R.virginiana Rosa Rosa virginiana \N \N \N \N \N 14650 O.2331 Oncidium Oncidium cf. abruptum Whitten 2331 \N \N \N \N \N 14651 T.cornigerum Thesium Thesium cornigerum \N \N \N \N \N 15235 \N genus Platycaulos \N \N \N \N \N 14652 T.douglasii Trifolium Trifolium douglasii \N \N \N \N \N 14653 \N genus Rhinanthus yellowrattle \N \N \N \N 14654 O.tuberosa Oxalis Oxalis tuberosa aleluya tuberosa,oca \N \N \N \N 14655 B.mucronifolium Bulbophyllum Bulbophyllum mucronifolium \N \N \N \N \N 14656 L.121 Lupinus Lupinus sp. Kenicer 121 \N \N \N \N \N 14658 N.atopocarpa Nolina Nolina atopocarpa \N \N \N \N \N 14659 E.glomerata Elegia Elegia glomerata \N \N \N \N \N 14660 F.oligocarpella Fatsia Fatsia oligocarpella \N \N \N \N \N 14661 \N genus Duchesnea \N \N \N \N \N 14662 \N genus Drypetes \N \N \N \N \N 14663 S.littoreus Senecio Senecio littoreus \N \N \N \N \N 14664 G.pusillum Geranium Geranium pusillum \N \N \N \N \N 14665 V.nummularia Veronica Veronica nummularia \N \N \N \N \N 14666 D.igaganga Dacryodes Dacryodes igaganga \N \N \N \N \N 14667 N.vieillardii Nemuaron Nemuaron vieillardii \N \N \N \N \N 14668 \N genus Ampelaster \N \N \N \N \N 14669 D.obtusum Didymostigma Didymostigma obtusum \N \N \N \N \N 14670 \N genus Huernia \N \N \N \N \N 14671 G.pumila Gesneria Gesneria pumila \N \N \N \N \N 14672 P.xyllophylloides Phylloxylon Phylloxylon xyllophylloides \N \N \N \N \N 14673 L.lanatus Lupinus Lupinus lanatus \N \N \N \N \N 14674 \N varietas Actinidia eriantha var. brunnea \N \N \N \N \N 14675 M.conspicua Mentzelia Mentzelia conspicua \N \N \N \N \N 14676 \N subspecies Dubautia imbricata subsp. imbricata \N \N \N \N \N 14677 \N genus Lenophyllum \N \N \N \N \N 14678 C.dependens Chasmanthera Chasmanthera dependens \N \N \N \N \N 14679 A.venosa Aspalathus Aspalathus venosa \N \N \N \N \N 14680 C.chinense Capsicum Capsicum chinense Scotch bonnet,bonnet pepper,habanero,rocotillo \N \N \N \N 14681 C.burle-marxii Calathea Calathea burle-marxii \N \N \N \N \N 14682 C.nutans Calycobolus Calycobolus nutans \N \N \N \N \N 14683 D.furcata Diplatia Diplatia furcata \N \N \N \N \N 14684 A.mathildae Androsace Androsace mathildae \N \N \N \N \N 14685 L.deflexa Lappula Lappula deflexa \N \N \N \N \N 14686 R.hookeri Rhododendron Rhododendron hookeri \N \N \N \N \N 14687 B.multiflora Bryonia Bryonia multiflora \N \N \N \N \N 14688 M.aspera Moraea Moraea aspera \N \N \N \N \N 14689 \N genus Tetracme \N \N \N \N \N 14690 Q.floribunda Quercus Quercus floribunda \N \N \N \N \N 14691 L.turbinatus Lithocarpus Lithocarpus turbinatus \N \N \N \N \N 14692 S.patinii Spathiphyllum Spathiphyllum patinii \N \N \N \N \N 14693 F.major Firmiana Firmiana major \N \N \N \N \N 14694 P.insularis Physocarpus Physocarpus insularis \N \N \N \N \N 14695 T.quadrivalvis Themeda Themeda quadrivalvis \N \N \N \N \N 14696 \N genus Eugeissona \N \N \N \N \N 14697 \N subspecies Erica abietina subsp. aurantiaca \N \N \N \N \N 14698 C.oxycarpa Calathodes Calathodes oxycarpa \N \N \N \N \N 14699 I.forrestii Iris Iris forrestii \N \N \N \N \N 14700 R.sororia Ruellia Ruellia sororia \N \N \N \N \N 14701 A.magdalenae Angraecum Angraecum magdalenae \N \N \N \N \N 14702 C.paspalanthus Calamus Calamus paspalanthus \N \N \N \N \N 14703 T.indicum Thuranthos Thuranthos indicum \N \N \N \N \N 14704 \N varietas Cliffortia cuneata var. cylindrica \N \N \N \N \N 14705 A.stylosum Aulacospermum Aulacospermum stylosum \N \N \N \N \N 14706 P.brevipes Pinanga Pinanga brevipes \N \N \N \N \N 14707 X.congesta Xylosma Xylosma congesta \N \N \N \N \N 14708 S.biseriatum Schizopetalon Schizopetalon biseriatum \N \N \N \N \N 14709 C.involucrata Callirhoe Callirhoe involucrata poppy mallow \N \N \N \N 14710 \N genus Butia \N \N \N \N \N 14711 C.leprantha Clusia Clusia leprantha \N \N \N \N \N 14712 C.uncinatum Chamelaucium Chamelaucium uncinatum \N \N \N \N \N 14713 S.pseudochina Smilax Smilax pseudochina \N \N \N \N \N 14714 \N genus Dendrolobium \N \N \N \N \N 14715 G.pedicellaris Gesneria Gesneria pedicellaris \N \N \N \N \N 14716 I.effusus Isodon Isodon effusus \N \N \N \N \N 14717 T.K3600(7) unclassified Taraxacum Taraxacum (sect. Alpestria/Fontana) sp. K3600(7) \N \N \N \N \N 14718 E.dulcis Euphorbia Euphorbia dulcis \N \N \N \N \N 14719 \N varietas Tephroseris integrifolia var. leiocarpa \N \N \N \N \N 14720 D.dumetorum Dioscorea Dioscorea dumetorum bitter yam \N \N \N \N 14721 \N genus Ifloga \N \N \N \N \N 14722 N.NR-2009 Narcissus Narcissus sp. NR-2009 \N \N \N \N \N 14723 B.cylindricum Bunium Bunium cylindricum \N \N \N \N \N 14724 E.armoracioides Erucastrum Erucastrum armoracioides \N \N \N \N \N 14725 A.fulgens Aeschynanthus Aeschynanthus fulgens \N \N \N \N \N 14726 A.olympica Aquilegia Aquilegia olympica \N \N \N \N \N 14727 C.vianneyi Coffea Coffea vianneyi \N \N \N \N \N 14728 C.gossypiifolius Croton Croton gossypiifolius \N \N \N \N \N 14729 C.violaceus Cenchrus Cenchrus violaceus \N \N \N \N \N 14730 S.cayennensis Stylosanthes Stylosanthes cayennensis \N \N \N \N \N 14731 M.puberulum Macropiper Macropiper puberulum \N \N \N \N \N 14732 T.maizar Tripsacum Tripsacum maizar \N \N \N \N \N 14733 \N subspecies Erica viscaria subsp. longifolia \N \N \N \N \N 14734 G.austroapenninum Geranium Geranium austroapenninum \N \N \N \N \N 14735 A.sandwicense Abutilon Abutilon sandwicense \N \N \N \N \N 14736 \N genus Mirbelia \N \N \N \N \N 14737 A.pseudopectinata Achillea Achillea pseudopectinata \N \N \N \N \N 14738 \N genus Aciphylla \N \N \N \N \N 14739 \N genus Mytilaria \N \N \N \N \N 14740 M.2388 Maxillaria Maxillaria cf. bennettii Whitten 2388 \N \N \N \N \N 14741 S.reissekii Stenanthemum Stenanthemum reissekii \N \N \N \N \N 14742 B.textilis Bambusa Bambusa textilis \N \N \N \N \N 14743 A.collina Achillea millefolium complex Achillea collina \N \N \N \N \N 14744 \N subspecies Gymnocalycium catamarcense subsp. acinacispinum \N \N \N \N \N 14745 C.novogranatense Cremastosperma Cremastosperma novogranatense \N \N \N \N \N 14746 H.peruvianus Hylocereus Hylocereus peruvianus \N \N \N \N \N 14747 C.paludosus Croton Croton paludosus \N \N \N \N \N 14748 T.bolanderi Trifolium Trifolium bolanderi \N \N \N \N \N 14749 C.disciflora Cornus Cornus disciflora \N \N \N \N \N 14750 L.fluitans Louisiella Louisiella fluitans \N \N \N \N \N 14752 P.laxiflorus Phaseolus Phaseolus laxiflorus \N \N \N \N \N 14753 E.limpopoana Euphorbia Euphorbia limpopoana \N \N \N \N \N 14754 J.cajamarca Jaltomata Jaltomata cajamarca \N \N \N \N \N 14755 T.roseum Tetranema Tetranema roseum \N \N \N \N \N 28826 \N tribe Paliureae \N \N \N \N \N 14756 P.braemii Paphiopedilum Paphiopedilum braemii \N \N \N \N \N 14757 S.pringlei Schoenocaulon Schoenocaulon pringlei \N \N \N \N \N 14758 A.trisperma Amphicarpaea Amphicarpaea trisperma \N \N \N \N \N 14759 A.schneideri Acronema Acronema schneideri \N \N \N \N \N 14760 X.minor Xanthorrhoea Xanthorrhoea minor \N \N \N \N \N 14761 C.strictum Canarium Canarium strictum black dammar,black dhup \N \N \N \N 14762 E.dietrichiana Eleocharis Eleocharis dietrichiana \N \N \N \N \N 14763 H.uniflora Hypochaeris Hypochaeris uniflora \N \N \N \N \N 14764 D.chinensis Dicliptera Dicliptera chinensis \N \N \N \N \N 14765 C.4074-16 Crepis Crepis sp. Sears & Lee 4074-16 \N \N \N \N \N 14766 \N genus Forsythia \N \N \N \N \N 14767 \N no rank Sorbarieae \N \N \N \N \N 14768 M.albicans Miconia Miconia albicans \N \N \N \N \N 14769 M.arenosa Mimosa Mimosa arenosa \N \N \N \N \N 14770 D.nudiflorum Desmodium Desmodium nudiflorum \N \N \N \N \N 14771 C.floribunda Cerbera Cerbera floribunda \N \N \N \N \N 14772 R.helenae Rosa Rosa helenae \N \N \N \N \N 14773 K.occidentalis Krigia Krigia occidentalis \N \N \N \N \N 14774 P.indica Perotis Perotis indica \N \N \N \N \N 14775 J.ventricosa Justicia Justicia ventricosa \N \N \N \N \N 14776 \N tribe Wunderlichieae \N \N \N \N \N 14777 A.charidemi Antirrhinum Antirrhinum charidemi \N \N \N \N \N 14778 \N genus Gavarretia \N \N \N \N \N 14779 \N no rank Saccharum hybrid cultivar LCP 85-384 \N \N \N \N \N 14780 S.jorullensis Sigesbeckia Sigesbeckia jorullensis \N \N \N \N \N 14781 H.oliverianum Heliotropium Heliotropium oliverianum \N \N \N \N \N 14782 O.panormitana Ophrys Ophrys panormitana \N \N \N \N \N 14783 \N genus Halopeplis \N \N \N \N \N 14784 \N genus Thaumatococcus \N \N \N \N \N 14785 A.gramineus Acorus Acorus gramineus shi chang pu \N \N \N \N 14786 A.odoratissima Aglaia Aglaia odoratissima \N \N \N \N \N 14787 E.ritteri Espostoa Espostoa ritteri \N \N \N \N \N 14788 S.acanthodapis Solanum Solanum acanthodapis \N \N \N \N \N 14789 F.subandina Ficus Ficus subandina \N \N \N \N \N 14790 A.battandieri Argyrocytisus Argyrocytisus battandieri \N \N \N \N \N 14791 A.ligustrina Atkinsonia Atkinsonia ligustrina \N \N \N \N \N 14792 E.parviflorus Echinops Echinops parviflorus \N \N \N \N \N 14793 W.ligustroides Wendlandia Wendlandia ligustroides \N \N \N \N \N 14794 D.boliviana Diogenesia Diogenesia boliviana \N \N \N \N \N 14795 F.cymbalarioides Felicia Felicia cymbalarioides \N \N \N \N \N 14796 D.africanum Dyerophytum Dyerophytum africanum \N \N \N \N \N 14797 C.alpina Chamorchis Chamorchis alpina \N \N \N \N \N 14798 M.schlechteri Mackinlaya Mackinlaya schlechteri \N \N \N \N \N 14799 G.poissonianum Gymnostoma Gymnostoma poissonianum \N \N \N \N \N 14800 A.abyssinica Avena Avena abyssinica Abyssinian oat \N \N \N \N 14801 E.axillaris Eugenia Eugenia axillaris white stopper \N \N \N \N 14802 \N genus Recordia \N \N \N \N \N 14803 F.orientalis Ferula Ferula orientalis \N \N \N \N \N 14804 H.bolivianum Helanthium Helanthium bolivianum \N \N \N \N \N 14805 E.duquei Euplassa Euplassa duquei \N \N \N \N \N 14806 N.baumanniae Nothofagus Nothofagus baumanniae \N \N \N \N \N 14807 P.secundiflora Primula Primula poissonii x Primula secundiflora \N \N \N \N \N 14808 T.flavicans Tabernaemontana Tabernaemontana flavicans \N \N \N \N \N 14809 G.karwinskyana Gibasis Gibasis karwinskyana \N \N \N \N \N 14810 \N genus Thymelaea \N \N \N \N \N 14811 \N genus Calopappus \N \N \N \N \N 14812 P.auritifolium Piper Piper auritifolium \N \N \N \N \N 14813 D.mexicana Discocnide Discocnide mexicana \N \N \N \N \N 14814 C.microglossum Cremanthodium Cremanthodium microglossum \N \N \N \N \N 14815 M.bidentata Manilkara Manilkara bidentata \N \N \N \N \N 14816 C.1875 Cyrtandra Cyrtandra sp. Plunkett 1875 \N \N \N \N \N 14817 O.1701 Operculina Operculina sp. Romero 1701 \N \N \N \N \N 14818 G.sleumeriana Gaultheria Gaultheria sleumeriana \N \N \N \N \N 14819 C.reticulatus Cotoneaster Cotoneaster reticulatus \N \N \N \N \N 14820 A.absinthium Artemisia Artemisia absinthium \N \N \N \N \N 14821 L.dictyoneura Ligularia Ligularia dictyoneura \N \N \N \N \N 14822 P.chinensis Pulsatilla Pulsatilla chinensis \N \N \N \N \N 14823 A.tepuiense Austroamericium Austroamericium tepuiense \N \N \N \N \N 14824 \N genus Karvandarina \N \N \N \N \N 14825 M.GOF13 Micromeria Micromeria cf. varia Franke GOF13 \N \N \N \N \N 14826 A.killipii Aiphanes Aiphanes killipii \N \N \N \N \N 14827 E.lagunensis Euphorbia Euphorbia lagunensis \N \N \N \N \N 14828 S.villosa Stewartia Stewartia villosa \N \N \N \N \N 14829 C.latifolia Campanula Campanula latifolia \N \N \N \N \N 14830 S.paniculata Saxifraga Saxifraga paniculata \N \N \N \N \N 14831 C.rhizantha Centaurea Centaurea rhizantha \N \N \N \N \N 14832 T.acutiflorum Tribolium Tribolium acutiflorum \N \N \N \N \N 14833 P.95090 Paeonia Paeonia sp. Qiu 95090 \N \N \N \N \N 14834 T.catappa Terminalia Terminalia catappa Indian almond,badam,kamani,myrobalan,tropical almond \N \N \N \N 14835 E.tradouwensis Erica Erica tradouwensis \N \N \N \N \N 14836 S.paracaseolaris Sonneratia Sonneratia paracaseolaris \N \N \N \N \N 14837 M.brevis Muhlenbergia Muhlenbergia brevis \N \N \N \N \N 14838 L.bangii Lomanthus Lomanthus bangii \N \N \N \N \N 14839 D.versicolor Disa Disa versicolor \N \N \N \N \N 14840 S.rugosa Stachys Stachys rugosa \N \N \N \N \N 14841 M.hexandra Manilkara Manilkara hexandra \N \N \N \N \N 14842 \N varietas Ceanothus velutinus var. laevigatus \N \N \N \N \N 14843 \N genus Laubertia \N \N \N \N \N 14844 R.apiculata Rhaphidophora Rhaphidophora apiculata \N \N \N \N \N 14845 A.aristatum Anthoxanthum Anthoxanthum aristatum \N \N \N \N \N 14846 \N genus Gerbera \N \N \N \N \N 14847 B.densiflora Burmannia Burmannia densiflora \N \N \N \N \N 14848 C.mrimaense Canthium Canthium mrimaense \N \N \N \N \N 14849 S.multifida Schizonepeta Schizonepeta multifida \N \N \N \N \N 14850 \N genus Pterogyne \N \N \N \N \N 14851 M.lucayanus Mesadenus Mesadenus lucayanus \N \N \N \N \N 14852 D.excelsa Dacryodes Dacryodes excelsa \N \N \N \N \N 14853 M.tezontle Mammillaria Mammillaria tezontle \N \N \N \N \N 14854 P.buchananii Pycnosphaera Pycnosphaera buchananii \N \N \N \N \N 14855 U.britannicum Urophyllum Urophyllum britannicum \N \N \N \N \N 14856 P.tuisana Peperomia Peperomia tuisana \N \N \N \N \N 14857 M.siamensis Mammea Mammea siamensis \N \N \N \N \N 14858 C.orientalis Chardinia Chardinia orientalis \N \N \N \N \N 14859 B.glumacea Brachtia Brachtia glumacea \N \N \N \N \N 14860 \N varietas Correa reflexa var. reflexa \N \N \N \N \N 14861 \N genus Burkartia \N \N \N \N \N 14862 P.unifoliolatum Protium Protium unifoliolatum \N \N \N \N \N 14863 A.7896 Anonidium Anonidium sp. Cheek 7896 \N \N \N \N \N 14864 S.7057 Serenoa Serenoa sp. Hahn 7057 \N \N \N \N \N 14865 T.urbaniana Tetrazygia Tetrazygia urbaniana \N \N \N \N \N 14866 I.cooperi Isolona Isolona cooperi \N \N \N \N \N 14867 \N varietas Parnassia mysorensis var. aucta \N \N \N \N \N 14868 \N genus Galtonia \N \N \N \N \N 14869 \N varietas Glossopetalon spinescens var. aridum \N \N \N \N \N 14870 R.salomonensis Rhodomyrtus Rhodomyrtus salomonensis \N \N \N \N \N 14871 M.eremophila Mentzelia Mentzelia eremophila \N \N \N \N \N 14872 P.MW-2004 Physalis Physalis aff. philadelphica MW-2004 \N \N \N \N \N 14873 G.shmakoviana Gagea Gagea shmakoviana \N \N \N \N \N 14874 G.filipes Gaura Gaura filipes \N \N \N \N \N 14875 \N genus Sicyosperma \N \N \N \N \N 14876 N.polycarpa Neolitsea Neolitsea polycarpa \N \N \N \N \N 14877 H.intermedia Hyalolaena Hyalolaena intermedia \N \N \N \N \N 14878 \N genus Kyllingiella \N \N \N \N \N 14879 S.capitata Strobilanthes Strobilanthes capitata \N \N \N \N \N 14880 S.chiapensis Stenostephanus Stenostephanus chiapensis \N \N \N \N \N 14881 A.excelsus Acridocarpus Acridocarpus excelsus \N \N \N \N \N 14882 \N genus Philyra \N \N \N \N \N 14883 D.macleanii Draba Draba macleanii \N \N \N \N \N 14884 S.fruticosa Staehelina Staehelina fruticosa \N \N \N \N \N 14885 E.teke Euphorbia Euphorbia teke \N \N \N \N \N 14886 \N genus Akania \N \N \N \N \N 14887 L.mariae-josephae Lupinus Lupinus mariae-josephae \N \N \N \N \N 14888 F.stuhlmannii Ficus Ficus stuhlmannii \N \N \N \N \N 14889 A.pynaertii Anthonotha Anthonotha pynaertii \N \N \N \N \N 14890 \N genus Diplotaxis \N \N \N \N \N 14891 A.submissa Aspalathus Aspalathus submissa \N \N \N \N \N 14892 P.WSY0032110-13 Penstemon Penstemon sp. WSY0032110-13 \N \N \N \N \N 14893 S.SP160 Sisyrinchium Sisyrinchium cf. marchioides SP160 \N \N \N \N \N 14894 S.cannabina Sesbania Sesbania cannabina canicha,dhaincha,sesbania pea \N \N \N \N 14895 G.brachystegioides Gilbertiodendron Gilbertiodendron brachystegioides \N \N \N \N \N 14896 S.abutiloides Solanum Solanum abutiloides \N \N \N \N \N 14897 N.menziesii Nemophila Nemophila menziesii \N \N \N \N \N 14898 E.leporina Ectrosia Ectrosia leporina \N \N \N \N \N 14899 C.subuligera Cuphea Cuphea subuligera \N \N \N \N \N 14900 P.myocephalus Paepalanthus Paepalanthus myocephalus \N \N \N \N \N 14901 D.brachycarpa Draba Draba brachycarpa \N \N \N \N \N 14902 N.plicata Nervilia Nervilia plicata \N \N \N \N \N 14903 S.hesperidium Senecio Senecio hesperidium \N \N \N \N \N 14904 G.grayanum Galium Galium grayanum \N \N \N \N \N 14905 S.pachybulbon Scaphyglottis Scaphyglottis pachybulbon \N \N \N \N \N 14906 G.thyrsoidea Gentianella Gentianella thyrsoidea \N \N \N \N \N 14907 C.umbellatum Calyptridium Calyptridium umbellatum \N \N \N \N \N 14908 T.capensis Tulbaghia Tulbaghia capensis \N \N \N \N \N 14909 \N genus Exochogyne \N \N \N \N \N 14910 U.salicifolium Urophyllum Urophyllum salicifolium \N \N \N \N \N 14911 \N subspecies Wurmbea dioica subsp. alba \N \N \N \N \N 14912 C.herminii Campanula Campanula herminii \N \N \N \N \N 14913 B.instabilis Bursera Bursera instabilis \N \N \N \N \N 14914 P.601 Piresia Piresia sp. Hodkinson 601 \N \N \N \N \N 14915 S.galacifolia Shortia Shortia galacifolia \N \N \N \N \N 14916 C.integrifolia Coreopsis Coreopsis integrifolia \N \N \N \N \N 14917 S.chingiana Saussurea Saussurea chingiana \N \N \N \N \N 14918 E.integrifolium Eryngium Eryngium integrifolium \N \N \N \N \N 14919 A.spinosus Acanthus Acanthus spinosus \N \N \N \N \N 14920 C.meyeri Cynanchum Cynanchum meyeri \N \N \N \N \N 14921 E.latifolius Euonymus Euonymus latifolius \N \N \N \N \N 14922 D.gracilis Dianthus Dianthus gracilis \N \N \N \N \N 14923 \N genus Sararanga \N \N \N \N \N 14924 \N genus Sipanea \N \N \N \N \N 14925 O.nidulans Olgaea Olgaea nidulans \N \N \N \N \N 14926 S.crassifolius Sonchus Sonchus crassifolius \N \N \N \N \N 14927 T.microphylla Talinella Talinella microphylla \N \N \N \N \N 14928 H.cincinnatum Helictotrichon Helictotrichon cincinnatum \N \N \N \N \N 14929 C.setosa Cuphea Cuphea setosa \N \N \N \N \N 14930 O.stenoglossum Oncidium Oncidium stenoglossum \N \N \N \N \N 14931 R.capixabae Rauvolfia Rauvolfia capixabae \N \N \N \N \N 14932 \N genus Whiteheadia \N \N \N \N \N 14933 N.savannarum Nematanthus Nematanthus savannarum \N \N \N \N \N 14934 A.refractus Astragalus Astragalus refractus \N \N \N \N \N 14935 B.nemorosa Belencita Belencita nemorosa \N \N \N \N \N 14936 \N genus Chimaphila \N \N \N \N \N 14937 E.ammak Euphorbia Euphorbia ammak \N \N \N \N \N 14938 P.sprucei Pepinia Pepinia sprucei \N \N \N \N \N 14939 E.grantii Euphorbia Euphorbia grantii \N \N \N \N \N 14940 R.bilsana Rustia Rustia bilsana \N \N \N \N \N 14941 C.douglasii Coreopsis Coreopsis douglasii \N \N \N \N \N 14942 P.herniarioides Pilea Pilea herniarioides \N \N \N \N \N 14943 A.leistneri Androcymbium Androcymbium leistneri \N \N \N \N \N 14944 P.bacigalupii Perideridia Perideridia bacigalupii Mother Lode yampah \N \N \N \N 14945 \N subspecies Hedera maderensis subsp. maderensis \N \N \N \N \N 14946 \N genus Xylopia \N \N \N \N \N 14947 B.longifolia Boscia Boscia longifolia \N \N \N \N \N 14948 M.vaccinioides Monticalia Monticalia vaccinioides \N \N \N \N \N 14949 R.ciliolata Randia Randia ciliolata \N \N \N \N \N 14950 S.calcaratum Stigmaphyllon Stigmaphyllon calcaratum \N \N \N \N \N 14951 E.cornigerus Echinops Echinops cornigerus \N \N \N \N \N 14952 C.atropurpureum Cymbidium Cymbidium atropurpureum \N \N \N \N \N 14953 R.pilosum Rytidosperma Rytidosperma pilosum \N \N \N \N \N 14954 G.hiriartiana Gochnatia Gochnatia hiriartiana \N \N \N \N \N 14955 \N genus Isolatocereus \N \N \N \N \N 14956 D.ophioliticum Dracophyllum Dracophyllum ophioliticum \N \N \N \N \N 14957 T.tuberosus Tragopogon Tragopogon tuberosus \N \N \N \N \N 14958 G.serotina Gentianella Gentianella serotina \N \N \N \N \N 14959 H.syriacum Hedysarum Hedysarum syriacum \N \N \N \N \N 14960 \N genus Alepidocline \N \N \N \N \N 14961 S.coeli-rosa Silene Silene coeli-rosa \N \N \N \N \N 14962 B.sessiliflora Bartholomaea Bartholomaea sessiliflora \N \N \N \N \N 14963 R.Crete-39 Rumex Rumex sp. Kim & Chae Crete-39 \N \N \N \N \N 14964 \N no rank environmental samples Taxonomy:205885 \N \N \N \N \N 14965 N.colusana Neostapfia Neostapfia colusana \N \N \N \N \N 14966 T.stenostachya Terminalia Terminalia stenostachya \N \N \N \N \N 14967 F.sericea Fimbristylis Fimbristylis sericea \N \N \N \N \N 14968 L.acerifolia Loasa Loasa acerifolia \N \N \N \N \N 14969 W.fraxinea Weinmannia Weinmannia fraxinea \N \N \N \N \N 14970 C.ternata Choisya Choisya ternata Mexican orange \N \N \N \N 14971 A.ryaniana Acacia Acacia ryaniana \N \N \N \N \N 14972 S.33.055a Salicornia Salicornia aff. perennans Freitag 33.055a \N \N \N \N \N 14973 H.hookeri Hypochaeris Hypochaeris hookeri \N \N \N \N \N 14974 S.penicillata Stipa Stipa penicillata \N \N \N \N \N 14975 D.nicholasii Dicrastylis Dicrastylis nicholasii \N \N \N \N \N 14976 D.lurorum Dionysia Dionysia lurorum \N \N \N \N \N 14977 C.sagittata Caltha Caltha sagittata \N \N \N \N \N 14978 O.EE807 Oxalis Oxalis cf. villosula EE807 \N \N \N \N \N 14979 B.trifoliolata Berberis Berberis trifoliolata \N \N \N \N \N 14980 S.sessile Sesuvium Sesuvium sessile \N \N \N \N \N 14981 C.calculus Conophytum Conophytum calculus \N \N \N \N \N 14982 D.flexuosum Delphinium Delphinium flexuosum \N \N \N \N \N 14983 A.verdickii Aerangis Aerangis verdickii \N \N \N \N \N 14984 S.tampicensis Suaeda Suaeda tampicensis \N \N \N \N \N 14985 A.cambagei Amyema Amyema cambagei \N \N \N \N \N 14986 \N genus Oxysepala \N \N \N \N \N 14987 D.multiflorus Doliocarpus Doliocarpus multiflorus \N \N \N \N \N 14988 F.trichophylla Festuca Festuca trichophylla \N \N \N \N \N 14989 \N genus Aralidium \N \N \N \N \N 14990 C.mogensii Cousinia Cousinia mogensii \N \N \N \N \N 14991 S.angophoroides Syzygium Syzygium angophoroides \N \N \N \N \N 14992 R.dumalis Rosa Rosa dumalis dog-rose \N \N \N \N 14993 M.borziana Moringa Moringa borziana \N \N \N \N \N 14994 A.brachycalyx Astragalus Astragalus brachycalyx \N \N \N \N \N 14995 P.2048 Phreatia Phreatia sp. Cameron 2048 \N \N \N \N \N 14996 V.armena Veronica Veronica armena \N \N \N \N \N 14997 B.SS-2007 Brachystelma Brachystelma sp. 3 SS-2007 \N \N \N \N \N 14998 N.ecuadorensis Notylia Notylia ecuadorensis \N \N \N \N \N 14999 \N varietas Ainsliaea acerifolia var. subapoda \N \N \N \N \N 15000 \N genus Acicarpha \N \N \N \N \N 15001 P.michelianum Piper Piper michelianum \N \N \N \N \N 15002 C.ramiflorus Chionanthus Chionanthus ramiflorus \N \N \N \N \N 15003 C.parviflorum Capillipedium Capillipedium parviflorum \N \N \N \N \N 15004 I.arbuscula Iresine Iresine arbuscula \N \N \N \N \N 15005 M.verdickii Moraea Moraea verdickii \N \N \N \N \N 15006 S.leucophylla Sommieria Sommieria leucophylla \N \N \N \N \N 15007 M.scapigera Microseris Microseris scapigera \N \N \N \N \N 15008 \N varietas Smilax china var. kuru \N \N \N \N \N 15009 \N genus Anthocarapa \N \N \N \N \N 15010 V.campechiana Vachellia Vachellia campechiana \N \N \N \N \N 15011 A.occidentalis Arbutus Arbutus occidentalis \N \N \N \N \N 15012 S.nummularium Solanum Solanum nummularium \N \N \N \N \N 15013 G.schottiana Geonoma Geonoma schottiana \N \N \N \N \N 15014 A.kiushianum Arisaema Arisaema kiushianum \N \N \N \N \N 15015 C.sylvatica Calanthe Calanthe sylvatica \N \N \N \N \N 15016 R.oblongata Rhodospatha Rhodospatha oblongata \N \N \N \N \N 15017 \N genus Vassobia \N \N \N \N \N 15018 S.cinereum Solanum Solanum cinereum \N \N \N \N \N 15019 A.digitata Adenia Adenia digitata \N \N \N \N \N 15020 T.coriacea Tabernaemontana Tabernaemontana coriacea \N \N \N \N \N 15021 S.nangxianensis Saxifraga Saxifraga nangxianensis \N \N \N \N \N 15022 P.daphniphylloides Pittosporum Pittosporum daphniphylloides \N \N \N \N \N 15023 P.japonicum Phtheirospermum Phtheirospermum japonicum \N \N \N \N \N 15024 D.carolinensis Dichondra Dichondra carolinensis \N \N \N \N \N 15025 C.muticum Cirsium Cirsium muticum swamp thistle \N \N \N \N 15026 F.songarica Ferula Ferula songarica \N \N \N \N \N 15027 M.grayi Maxillaria Maxillaria grayi \N \N \N \N \N 15028 A.canariensis Avena Avena canariensis \N \N \N \N \N 15029 L.campestre Leontopodium Leontopodium campestre \N \N \N \N \N 15030 \N genus Fragaria \N \N \N \N \N 15031 R.anthopogon Rhododendron Rhododendron anthopogon \N \N \N \N \N 15032 C.nieuwenhuisii Callerya Callerya nieuwenhuisii \N \N \N \N \N 15033 \N genus Planchonia \N \N \N \N \N 15034 P.concinna Potentilla Potentilla concinna \N \N \N \N \N 15035 L.bradshawii Lomatium Lomatium bradshawii \N \N \N \N \N 15036 A.arenaria Aechmea Aechmea arenaria \N \N \N \N \N 15037 P.antioquiense Pterostemma Pterostemma antioquiense \N \N \N \N \N 15038 S.adamantinus Senecio Senecio adamantinus \N \N \N \N \N 15039 C.australasica Citrus Citrus australasica Australian finger-lime \N \N \N \N 15040 D.vandellianum Dictyoloma Dictyoloma vandellianum \N \N \N \N \N 15041 C.roseocostatum Calophyllum Calophyllum roseocostatum \N \N \N \N \N 15042 S.villosa Senna Senna villosa \N \N \N \N \N 15043 T.capitata Thymbra Thymbra capitata \N \N \N \N \N 15044 C.japonicum Clerodendrum Clerodendrum japonicum \N \N \N \N \N 15045 S.praetermissum Solanum Solanum praetermissum \N \N \N \N \N 29509 \N genus Rhaptopetalum \N \N \N \N \N 15046 A.burchelliana Aspalathus Aspalathus burchelliana \N \N \N \N \N 15047 S.suaveolens Spermadictyon Spermadictyon suaveolens \N \N \N \N \N 15048 P.wingii Pittosporum Pittosporum wingii \N \N \N \N \N 15049 P.volucris Pterygodium Pterygodium volucris \N \N \N \N \N 15050 M.florentina Malus Malus florentina \N \N \N \N \N 15051 \N genus Triphora \N \N \N \N \N 15052 H.brownii Heterostemma Heterostemma brownii \N \N \N \N \N 15053 O.105B Oreobambos Oreobambos sp. Hodkinson 105B \N \N \N \N \N 15054 S.brevibarbe Saccharum Saccharum brevibarbe short-beard plumegrass \N \N \N \N 15055 S.guianense Stryphnodendron Stryphnodendron guianense \N \N \N \N \N 15056 G.japonicus Gastrochilus Gastrochilus japonicus \N \N \N \N \N 15057 D.cuneata Dehaasia Dehaasia cuneata \N \N \N \N \N 15058 H.praecelsa Hylenaea Hylenaea praecelsa \N \N \N \N \N 15059 M.axillaris Muehlenbeckia Muehlenbeckia axillaris \N \N \N \N \N 15060 S.magungensis Saintpaulia Saintpaulia magungensis \N \N \N \N \N 15061 P.delavayi Parnassia Parnassia delavayi \N \N \N \N \N 15062 S.exacoides Sebaea Sebaea exacoides \N \N \N \N \N 15063 \N genus Allocassine \N \N \N \N \N 15064 P.distans Phacelia Phacelia distans \N \N \N \N \N 15065 T.neriifolia Tristania Tristania neriifolia \N \N \N \N \N 15066 G.volcanense Galium Galium volcanense \N \N \N \N \N 15067 S.fasciculata Symphonia Symphonia fasciculata \N \N \N \N \N 15068 V.lutea Viola Viola lutea \N \N \N \N \N 15069 M.pentandra Menziesia Menziesia pentandra \N \N \N \N \N 15070 E.sample environmental samples Taxonomy:1008277 Epilobium environmental sample \N \N \N \N \N 15071 H.jucunda Hopea Hopea jucunda \N \N \N \N \N 15072 P.antillana Picrasma Picrasma antillana \N \N \N \N \N 15073 P.andringitrensis Pentaschistis Pentameris andringitrensis \N \N \N \N \N 15074 \N genus Scaphochlamys \N \N \N \N \N 15075 \N subtribe Loranthinae \N \N \N \N \N 15076 P.fragilis Patersonia Patersonia fragilis \N \N \N \N \N 15077 \N family Amphorogynaceae \N \N \N \N \N 15078 T.longipes Trifolium Trifolium longipes \N \N \N \N \N 15079 \N subspecies Drimiopsis botryoides subsp. botryoides \N \N \N \N \N 15080 \N genus Malaccotristicha \N \N \N \N \N 15081 G.oreophilus Gonocarpus Gonocarpus oreophilus \N \N \N \N \N 15082 A.campylorrhynchus Astragalus Astragalus campylorrhynchus \N \N \N \N \N 15083 A.macleayanus Anopterus Anopterus macleayanus \N \N \N \N \N 15084 D.lemurella Dracula Dracula lemurella \N \N \N \N \N 15085 S.pallescens Salacia Salacia pallescens \N \N \N \N \N 15086 \N varietas Passiflora foetida var. hastata \N \N \N \N \N 15087 N.brachiata Nothosaerva Nothosaerva brachiata \N \N \N \N \N 15088 S.257 Saldinia Saldinia sp. 2 Karehed et al. 257 \N \N \N \N \N 15089 F.brayleyana Flindersia Flindersia brayleyana \N \N \N \N \N 15090 D.glaber Depanthus Depanthus glaber \N \N \N \N \N 15091 P.montana Perityle Perityle montana \N \N \N \N \N 15092 C.rostrata Clarkia Clarkia rostrata \N \N \N \N \N 15093 \N genus Salpixantha \N \N \N \N \N 15094 \N genus Gelsemium \N \N \N \N \N 15095 E.caespitosa Erica Erica caespitosa \N \N \N \N \N 15096 W.8292 Wilkiea Wilkiea sp. Hyland 8292 \N \N \N \N \N 15097 O.humifusa Opuntia Opuntia humifusa creeping prickly-pear \N \N \N \N 15098 N.crenulata Nemcia Nemcia crenulata \N \N \N \N \N 15099 M.pruinosa Macaranga Macaranga gigantea x Macaranga pruinosa \N \N \N \N \N 15100 P.coloratus Potamogeton Potamogeton coloratus \N \N \N \N \N 15101 J.cooperi Juncus Juncus cooperi \N \N \N \N \N 15102 M.ledifolia Monotoca Monotoca ledifolia \N \N \N \N \N 15103 T.pyrenaicum Teucrium Teucrium pyrenaicum \N \N \N \N \N 15104 A.ferdinandi-coburgii Alnus Alnus ferdinandi-coburgii \N \N \N \N \N 15105 \N genus Dryobalanops \N \N \N \N \N 15106 \N genus Paramapania \N \N \N \N \N 15107 N.neocaledonica Normandia Normandia neocaledonica \N \N \N \N \N 15108 \N genus Pheladenia \N \N \N \N \N 15109 T.fosteriana Tulipa Tulipa fosteriana \N \N \N \N \N 15110 C.grandiflora Chloraea Chloraea grandiflora \N \N \N \N \N 15111 B.suaveolens Brugmansia Brugmansia suaveolens \N \N \N \N \N 15112 \N varietas Proboscidea parviflora var. parviflora \N \N \N \N \N 15113 O.subacaulis Onobrychis Onobrychis subacaulis \N \N \N \N \N 15114 V.opaca Veronica Veronica opaca \N \N \N \N \N 15115 A.muelleriana Acacia Acacia muelleriana \N \N \N \N \N 15116 T.caffrum Talinum Talinum caffrum \N \N \N \N \N 15117 C.pinnata Chirita Chirita pinnata \N \N \N \N \N 15118 P.coelospermum Psychotria Psychotria coelospermum \N \N \N \N \N 15119 C.japonicus Cladopus Cladopus japonicus \N \N \N \N \N 15120 \N genus Arachnothryx \N \N \N \N \N 15121 \N subspecies Berula erecta subsp. erecta \N \N \N \N \N 15122 E.italicum Echium Echium italicum \N \N \N \N \N 15123 \N genus Tupistra \N \N \N \N \N 15124 P.virgatus Phyllanthus Phyllanthus virgatus \N \N \N \N \N 15125 S.rodriguesiana Schefflera Schefflera rodriguesiana \N \N \N \N \N 15126 A.latifolia Amphitecna Amphitecna latifolia \N \N \N \N \N 15127 I.huberi Inga Inga huberi \N \N \N \N \N 15128 C.confusus Ceanothus Ceanothus confusus \N \N \N \N \N 15129 C.solstitialis Centaurea Centaurea solstitialis St. Barnaby's thistle,golden star thistle,yellow centaury \N \N \N \N 15130 K.schimperi Kniphofia Kniphofia schimperi \N \N \N \N \N 15131 G.laxiflora Gomesa Gomesa laxiflora \N \N \N \N \N 15132 C.ancashiana Caesalpinia Caesalpinia ancashiana \N \N \N \N \N 15133 A.gongshanensis Ainsliaea Ainsliaea gongshanensis \N \N \N \N \N 15134 E.1984-0364 Encholirium Encholirium sp. MSBG 1984-0364 \N \N \N \N \N 15135 E.agavifolium Eryngium Eryngium agavifolium \N \N \N \N \N 15136 C.siliqua Ceratonia Ceratonia siliqua St. John's-bread,carob \N \N \N \N 15137 A.onoei Aristolochia Aristolochia onoei \N \N \N \N \N 15138 D.grandiflorus Durio Durio grandiflorus \N \N \N \N \N 15139 A.insignis Aldina Aldina insignis \N \N \N \N \N 15140 P.rosulatum Pachypodium Pachypodium rosulatum \N \N \N \N \N 15141 \N genus Thunbergia \N \N \N \N \N 15142 P.laciniata Pulicaria Pulicaria laciniata \N \N \N \N \N 15143 P.proselyta Pseudosabicea Pseudosabicea proselyta \N \N \N \N \N 15144 \N genus Crocodylium \N \N \N \N \N 15145 \N genus Neocogniauxia \N \N \N \N \N 15146 P.polyphylla Potentilla Potentilla polyphylla \N \N \N \N \N 15147 O.eriocephalus Ozothamnus Ozothamnus eriocephalus \N \N \N \N \N 15148 T.dubia Thladiantha Thladiantha dubia \N \N \N \N \N 15149 E.hispiduloides Erica Erica hispiduloides \N \N \N \N \N 15150 \N genus Argentipallium \N \N \N \N \N 15151 O.9039 Oreopanax Oreopanax sp. 9039 \N \N \N \N \N 15152 \N varietas Salvia miltiorrhiza var. miltiorrhiza \N \N \N \N \N 15153 T.suborbicularis Thyrsanthera Thyrsanthera suborbicularis \N \N \N \N \N 15154 S.santolinifolia Salvia Salvia santolinifolia \N \N \N \N \N 15155 S.kingiana Saxifraga Saxifraga kingiana \N \N \N \N \N 15156 C.arachnoidea Calceolaria Calceolaria arachnoidea \N \N \N \N \N 15157 P.pennellianus Penstemon Penstemon pennellianus \N \N \N \N \N 15158 \N no rank environmental samples Taxonomy:531405 \N \N \N \N \N 15159 C.chiisanensis Clematis Clematis chiisanensis \N \N \N \N \N 15160 P.ricasoliana Podranea Podranea ricasoliana Zimbabwe-creeper \N \N \N \N 15161 B.OR2282003 Bulbophyllum Bulbophyllum sp. OR2282003 \N \N \N \N \N 15162 D.Ds2833 Dianthus Dianthus sp. Ds2833 \N \N \N \N \N 15163 E.planifolia Erica Erica planifolia \N \N \N \N \N 15164 D.banzhuana Dioscorea Dioscorea banzhuana \N \N \N \N \N 15165 R.ovata Rinorea Rinorea ovata \N \N \N \N \N 15166 B.rigidissima Boechera Boechera rigidissima \N \N \N \N \N 15167 K.ankaratrensis Kniphofia Kniphofia ankaratrensis \N \N \N \N \N 15168 \N subspecies Adenia wightiana subsp. africana \N \N \N \N \N 15169 D.tenuis Drymonia Drymonia tenuis \N \N \N \N \N 15170 E.koreanus Eleutherococcus Eleutherococcus koreanus \N \N \N \N \N 15171 D.C91-11 Dialium Dialium sp. McKey C91-11 \N \N \N \N \N 15172 C.orinocensis Croton Croton orinocensis \N \N \N \N \N 15173 \N genus Hygrochloa \N \N \N \N \N 15174 D.polycarpus Drepananthus Drepananthus polycarpus \N \N \N \N \N 15175 C.acutiformis Carex Carex acutiformis \N \N \N \N \N 15176 L.cordata Lavoisiera Lavoisiera cordata \N \N \N \N \N 15177 \N genus Selenipedium \N \N \N \N \N 15178 \N varietas Boesenbergia pulchella var. attenuata \N \N \N \N \N 15179 \N genus Scaevola \N \N \N \N \N 15180 P.tinctoria Pimelea Pimelea tinctoria \N \N \N \N \N 15181 \N varietas Bupleurum longicaule var. giraldii \N \N \N \N \N 15182 H.henryi Hepatica Hepatica henryi \N \N \N \N \N 15183 V.spinulosa Vallisneria Vallisneria spinulosa \N \N \N \N \N 15184 A.ciliatum Astroloma Astroloma ciliatum \N \N \N \N \N 15185 H.adenogynum Heliotropium Heliotropium adenogynum \N \N \N \N \N 15186 S.glomerata Symplocos Symplocos glomerata \N \N \N \N \N 15187 R.perakense Rhododendron Rhododendron perakense \N \N \N \N \N 15188 C.pseudobulbosum Cryptocentrum Cryptocentrum pseudobulbosum \N \N \N \N \N 15189 A.orientale Anisosciadium Anisosciadium orientale \N \N \N \N \N 15190 C.spiralis Costus Costus spiralis \N \N \N \N \N 15191 E.elephantina Elephantorrhiza Elephantorrhiza elephantina \N \N \N \N \N 15192 G.mossambicensis Gymnosporia Gymnosporia mossambicensis \N \N \N \N \N 15193 S.repens Samolus Samolus repens \N \N \N \N \N 15194 I.bojeri Indigofera Indigofera bojeri \N \N \N \N \N 15195 A.gmelinii Adenophora Adenophora gmelinii \N \N \N \N \N 15196 T.camphoratus Tarchonanthus Tarchonanthus camphoratus \N \N \N \N \N 15197 \N subspecies Leonardoxa africana subsp. rumpiensis \N \N \N \N \N 15198 S.pellucida Salsola Salsola pellucida \N \N \N \N \N 15199 V.incarum Villadia Villadia incarum \N \N \N \N \N 15200 A.pacifica Arctostaphylos Arctostaphylos pacifica \N \N \N \N \N 15201 C.martinii Cymbopogon Cymbopogon martinii \N \N \N \N \N 15202 C.quinoa Chenopodium Chenopodium quinoa quinoa \N \N \N \N 15203 C.joannis Caralluma Caralluma joannis \N \N \N \N \N 15204 L.hamatus Lotus Lotus hamatus \N \N \N \N \N 15205 \N subspecies Cyclamen repandum subsp. peloponnesiacum \N \N \N \N \N 15206 M.kyphonantha Masdevallia Masdevallia kyphonantha \N \N \N \N \N 15207 C.intybus Cichorium Cichorium intybus chicory,radicchio,succory,witloof \N \N \N \N 15208 \N subspecies Musa acuminata subsp. errans agutay,saging chongo,saging maching,saging na ligao \N \N \N \N 15209 \N subspecies Aichryson pachycaulon subsp. pachycaulon \N \N \N \N \N 15210 C.mannii Cynometra Cynometra mannii \N \N \N \N \N 15211 \N genus Tachia \N \N \N \N \N 15212 D.hirta Dorstenia Dorstenia hirta \N \N \N \N \N 15213 C.campanulata Cotyledon Cotyledon campanulata \N \N \N \N \N 15214 G.echinata Gomesa Gomesa echinata \N \N \N \N \N 15215 P.kelloggii Poa Poa kelloggii \N \N \N \N \N 15216 I.anovensis Impatiens Impatiens anovensis \N \N \N \N \N 15217 D.glomerata Draba Draba glomerata \N \N \N \N \N 15218 \N genus Turaniphytum \N \N \N \N \N 15219 S.cylindricum Solanum Solanum cylindricum \N \N \N \N \N 15220 \N varietas Isocoma acradenia var. eremophila \N \N \N \N \N 15221 \N subspecies Trifolium nigrescens subsp. petrisavii \N \N \N \N \N 15222 \N genus Durringtonia \N \N \N \N \N 15223 G.14745 Garcinia Garcinia sp. Tracey 14745 \N \N \N \N \N 15224 G.corymbosa Greenea Greenea corymbosa \N \N \N \N \N 15225 \N genus Podistera \N \N \N \N \N 15226 K.littoralis Kniphofia Kniphofia littoralis \N \N \N \N \N 15227 S.borealis Synthyris Synthyris borealis \N \N \N \N \N 15228 D.smaragdina Deherainia Deherainia smaragdina \N \N \N \N \N 15229 \N genus Colignonia \N \N \N \N \N 15230 E.streptopetala Eulophia Eulophia streptopetala \N \N \N \N \N 15231 S.occidentalis Symphoricarpos Symphoricarpos occidentalis \N \N \N \N \N 15232 \N subspecies Jacobaea incana subsp. incana \N \N \N \N \N 15233 G.falcatum Ganophyllum Ganophyllum falcatum \N \N \N \N \N 15234 \N genus Iguanura \N \N \N \N \N 15236 V.aragonensis Veronica Veronica aragonensis \N \N \N \N \N 15237 D.DraB32 Draba Draba sp. DraB32 \N \N \N \N \N 15238 M.pittieri Maxillaria Maxillaria pittieri \N \N \N \N \N 15239 C.subpetiolatum Chlorophytum Chlorophytum subpetiolatum \N \N \N \N \N 15240 C.elatirioides Coprosma Coprosma elatirioides \N \N \N \N \N 15241 A.227 Altingia Altingia sp. WP 227 \N \N \N \N \N 15242 P.franchetianum Pleurospermum Pleurospermum franchetianum \N \N \N \N \N 15243 \N subspecies Cardamine amara subsp. pyrenaea \N \N \N \N \N 15244 N.falcata Neofinetia Neofinetia falcata \N \N \N \N \N 15245 P.indofischeri Phyllanthus Phyllanthus indofischeri \N \N \N \N \N 15246 \N genus Matudaea \N \N \N \N \N 15247 C.hamulata Callitriche Callitriche hamulata \N \N \N \N \N 15248 D.staudtii Duguetia Duguetia staudtii \N \N \N \N \N 15249 R.multibracteata Rosa Rosa multibracteata \N \N \N \N \N 15250 A.sagittifolia Apodanthera Apodanthera sagittifolia \N \N \N \N \N 15251 \N genus Astomaea \N \N \N \N \N 15252 C.villosa Conostylis Conostylis villosa \N \N \N \N \N 15253 A.baileyana Acacia Acacia baileyana \N \N \N \N \N 15254 C.cultivar Citrus Citrus hybrid cultivar \N \N \N \N \N 15255 S.pentherianus Streptocarpus Streptocarpus pentherianus \N \N \N \N \N 15256 R.monosperma Richella Richella monosperma \N \N \N \N \N 15257 A.ternata Aspalathus Aspalathus ternata \N \N \N \N \N 15258 H.neurocarpa Hippophae Hippophae neurocarpa \N \N \N \N \N 15259 \N subspecies Festuca arundinacea subsp. uechtritziana \N \N \N \N \N 15260 S.uniflora Senna Senna uniflora \N \N \N \N \N 15261 \N subspecies Vicia sativa subsp. amphicarpa \N \N \N \N \N 15262 \N varietas Ilex paraguariensis var. vestita \N \N \N \N \N 15263 \N genus Rivina \N \N \N \N \N 15264 D.nigra Dianella Dianella nigra \N \N \N \N \N 15265 G.enthyle Gossypium Gossypium enthyle \N \N \N \N \N 15266 D.calocephalus Dianthus Dianthus calocephalus \N \N \N \N \N 15267 G.G2253 Glycine Glycine sp. G2253 \N \N \N \N \N 15268 M.japonica Microtropis Microtropis japonica \N \N \N \N \N 15269 O.parviflorum Oncidium Oncidium parviflorum \N \N \N \N \N 15270 C.insularis Carex Carex insularis \N \N \N \N \N 15271 L.capitatum Lepidium Lepidium capitatum \N \N \N \N \N 15272 A.multiceps Anemone Anemone multiceps \N \N \N \N \N 15273 \N genus Cathedra \N \N \N \N \N 15274 F.bullenei Ficus Ficus bullenei \N \N \N \N \N 15275 F.japonica Fatsia Fatsia japonica \N \N \N \N \N 15276 A.setosifolia Arabis Arabis setosifolia \N \N \N \N \N 15277 \N subspecies Coccothrinax miraguama subsp. miraguama \N \N \N \N \N 15278 S.souliei Syncalathium Syncalathium souliei \N \N \N \N \N 15279 M.praecocissima Magnolia Magnolia praecocissima \N \N \N \N \N 15280 S.malindiense Solanum Solanum malindiense \N \N \N \N \N 15281 C.xanthacantha Cousinia Cousinia xanthacantha \N \N \N \N \N 15282 P.cappadocica Pimpinella Pimpinella cappadocica \N \N \N \N \N 15283 S.quadridentatus Senecio Senecio quadridentatus \N \N \N \N \N 15284 C.kaulantha Cyrtandra Cyrtandra kaulantha \N \N \N \N \N 15285 \N genus Psydrax \N \N \N \N \N 15286 A.conchigera Alpinia Alpinia conchigera \N \N \N \N \N 15287 A.indica Aesculus Aesculus indica \N \N \N \N \N 15288 C.algarbiensis Cynara Cynara algarbiensis \N \N \N \N \N 15289 C.misera Carex Carex misera wretched sedge \N \N \N \N 15290 P.webbii Pericallis Pericallis webbii \N \N \N \N \N 15291 C.microcarpum Cremastosperma Cremastosperma microcarpum \N \N \N \N \N 15292 C.pumilum Cerastium Cerastium pumilum \N \N \N \N \N 15293 G.procumbens Gaultheria Gaultheria procumbens checkerberry,teaberry,wintergreen \N \N \N \N 15294 P.major Pyrostria Pyrostria major \N \N \N \N \N 15295 T.juncea Tillandsia Tillandsia juncea \N \N \N \N \N 15296 B.depauperata Blepharocarya Blepharocarya depauperata \N \N \N \N \N 15297 A.guerrerensis Aphelandra Aphelandra guerrerensis \N \N \N \N \N 15298 S.junceum Spartium Spartium junceum \N \N \N \N \N 15299 S.erianthum/lanceolatum Solanum Solanum erianthum/lanceolatum \N \N \N \N \N 15300 V.quercifolia Vasconcellea Vasconcellea quercifolia calasacha \N \N \N \N 15301 S.bifurcum Schistophyllidium Schistophyllidium bifurcum \N \N \N \N \N 15302 H.brachiata Heteropterys Heteropterys brachiata \N \N \N \N \N 15303 P.mexicana Prestonia Prestonia mexicana \N \N \N \N \N 15304 N.congesta Nepeta Nepeta congesta \N \N \N \N \N 15305 \N genus Pulicaria \N \N \N \N \N 15306 A.rigidifolius Aponogeton Aponogeton rigidifolius \N \N \N \N \N 15307 E.stephanianum Erodium Erodium stephanianum \N \N \N \N \N 15308 A.luteoalba Aerangis Aerangis luteoalba \N \N \N \N \N 15309 E.bannaticus Echinops Echinops bannaticus \N \N \N \N \N 15310 I.walleriana Impatiens Impatiens walleriana \N \N \N \N \N 15311 P.prolifera Phaenocoma Phaenocoma prolifera \N \N \N \N \N 15312 C.hispida Castilleja Castilleja hispida \N \N \N \N \N 15313 \N family Xeronemataceae \N \N \N \N \N 15314 A.lueddemanniana Aechmea Aechmea lueddemanniana \N \N \N \N \N 15315 \N subspecies Halosarcia halocnemoides subsp. longispicata \N \N \N \N \N 15316 D.mackeeanum Dracophyllum Dracophyllum mackeeanum \N \N \N \N \N 15317 I.pauciflora Iphigenia Iphigenia pauciflora \N \N \N \N \N 15318 S.treleasei Sedum Sedum treleasei \N \N \N \N \N 15319 M.senecionidis Munnozia Munnozia senecionidis \N \N \N \N \N 15320 A.palawanense Amomum Amomum palawanense \N \N \N \N \N 15321 T.asplundii Tropaeolum Tropaeolum asplundii \N \N \N \N \N 15322 M.integrifolia Menodora Menodora integrifolia \N \N \N \N \N 15323 O.uniflora Oldenlandia Oldenlandia uniflora \N \N \N \N \N 15324 L.hookeri Lasianthus Lasianthus hookeri \N \N \N \N \N 15325 O.pascheanum Ornithogalum Ornithogalum pascheanum \N \N \N \N \N 15326 \N family Nepenthaceae \N \N \N \N \N 15327 R.sessilifolia Rauvolfia Rauvolfia sessilifolia \N \N \N \N \N 15328 \N genus Telosiphonia \N \N \N \N \N 15329 Z.officinale Zingiber Zingiber officinale ginger \N \N \N \N 15330 R.megachlamys Ruellia Ruellia megachlamys \N \N \N \N \N 15331 A.homalantha Agalinis Agalinis homalantha \N \N \N \N \N 15332 G.boreale Galium Galium boreale \N \N \N \N \N 15333 \N tribe Amanoeae \N \N \N \N \N 15334 \N varietas Lilium longiflorum var. alexandrae \N \N \N \N \N 15335 \N varietas Iris potaninii var. potaninii \N \N \N \N \N 15336 O.pachyrrhiza Oxalis Oxalis pachyrrhiza \N \N \N \N \N 15337 \N varietas Helichrysum forskahlii var. forskahlii \N \N \N \N \N 15338 N.paniculata Nicotiana Nicotiana paniculata \N \N \N \N \N 15339 L.maculatus Linanthus Linanthus maculatus San Bernardino Mountain gilia \N \N \N \N 15340 M.tomentosa Mercurialis Mercurialis tomentosa \N \N \N \N \N 15341 A.barba-jovis Anthyllis Anthyllis barba-jovis Jupiter's beard \N \N \N \N 15342 C.spinosus Campylanthus Campylanthus spinosus \N \N \N \N \N 15343 G.dinarica Gentiana Gentiana dinarica \N \N \N \N \N 15344 M.MLM-2009 Myriophyllum Myriophyllum sp. MLM-2009 \N \N \N \N \N 15345 E.caribaeum Exostema Exostema caribaeum \N \N \N \N \N 15346 S.nitida Salacia Salacia nitida \N \N \N \N \N 15347 L.confertiflora Lecythis Lecythis confertiflora \N \N \N \N \N 15348 \N tribe Dicomeae \N \N \N \N \N 15349 N.boothii Nidema Nidema boothii \N \N \N \N \N 15350 S.stayneri Stapeliopsis Stapeliopsis stayneri \N \N \N \N \N 15351 S.petitii Sericanthe Sericanthe petitii \N \N \N \N \N 15352 \N subspecies Anthoxanthum monticola subsp. alpinum \N \N \N \N \N 15353 F.neomexicana Forestiera Forestiera neomexicana \N \N \N \N \N 15354 \N genus Atrichantha \N \N \N \N \N 15355 S.3421 Solanum Solanum aff. vansittartense Fryxell 3421 \N \N \N \N \N 15356 C.corymbosa Collinsia Collinsia corymbosa \N \N \N \N \N 15357 \N varietas Hylotelephium verticillatum var. lithophilos \N \N \N \N \N 15358 \N genus Cardwellia \N \N \N \N \N 15359 L.polycephala Lotononis Lotononis polycephala \N \N \N \N \N 15360 E.nuttallii Elodea Elodea nuttallii \N \N \N \N \N 15361 B.itzae Bursera Bursera itzae \N \N \N \N \N 15362 L.laoticus Lithocarpus Lithocarpus laoticus \N \N \N \N \N 15363 \N genus Stigmaphyllon \N \N \N \N \N 15364 P.benguetensis Pilea Pilea benguetensis \N \N \N \N \N 15365 \N genus Tricerma \N \N \N \N \N 15366 P.pavlovii Parrya Parrya pavlovii \N \N \N \N \N 15367 E.poselgeri Echinocereus Echinocereus poselgeri \N \N \N \N \N 15368 R.baileyi Rhododendron Rhododendron baileyi \N \N \N \N \N 15369 C.ceylanica Cassipourea Cassipourea ceylanica \N \N \N \N \N 15370 E.transoxana Euphorbia Euphorbia transoxana \N \N \N \N \N 15371 K.humboldtiana Karwinskia Karwinskia humboldtiana \N \N \N \N \N 15372 C.mitchelliana Carex Carex mitchelliana \N \N \N \N \N 15373 U.pusilla Urochlaena Urochlaena pusilla \N \N \N \N \N 15374 E.sellowii Eryngium Eryngium sellowii \N \N \N \N \N 15375 D.digitata Dactylopsis Dactylopsis digitata \N \N \N \N \N 15376 C.xyrekes Coelogyne Coelogyne xyrekes \N \N \N \N \N 15377 P.baccharifolius Penstemon Penstemon baccharifolius \N \N \N \N \N 15378 P.subulata Plantago Plantago subulata \N \N \N \N \N 15379 \N genus Bruckenthalia \N \N \N \N \N 15380 S.ferrensis Sideritis Sideritis ferrensis \N \N \N \N \N 15381 F.festucoides Festucopsis Festucopsis festucoides \N \N \N \N \N 15382 L.s.n. Lactuca Lactuca sp. Mavrodiev s.n. \N \N \N \N \N 15383 \N genus Baltimora \N \N \N \N \N 15384 H.gerontogea Hunga Hunga gerontogea \N \N \N \N \N 15385 P.madagascariensis Paropsia Paropsia madagascariensis \N \N \N \N \N 15386 R.scutatus Rumex Rumex scutatus French sorrel \N \N \N \N 15387 C.libonii Cleistes Cleistes libonii \N \N \N \N \N 15388 C.bottae Cichorium Cichorium bottae \N \N \N \N \N 15389 T.cinerascens Tapiphyllum Tapiphyllum cinerascens \N \N \N \N \N 15390 M.triphylla Manihot Manihot triphylla \N \N \N \N \N 15391 \N genus Phragmites \N \N \N \N \N 15392 \N varietas Mildbraedia carpinifolia var. strigosa \N \N \N \N \N 15393 E.elatus Elephantopus Elephantopus elatus \N \N \N \N \N 15394 C.colombiana Cuscuta Cuscuta colombiana \N \N \N \N \N 15395 P.hispanica Picris Picris hispanica \N \N \N \N \N 15396 C.monteleagreana Conostegia Conostegia monteleagreana \N \N \N \N \N 15397 L.altmannii Lonicera Lonicera altmannii \N \N \N \N \N 15398 M.silvana Maxillaria Maxillaria silvana \N \N \N \N \N 15399 T.mattirolianum Trifolium Trifolium mattirolianum \N \N \N \N \N 15400 \N genus Hectorella \N \N \N \N \N 15401 A.plumeriiflora Allomarkgrafia Allomarkgrafia plumeriiflora \N \N \N \N \N 15402 B.sinuspersici Bienertia Bienertia sinuspersici \N \N \N \N \N 15403 D.umbellata Doellingeria Doellingeria umbellata \N \N \N \N \N 15404 G.ferrugineus Gladiolus Gladiolus ferrugineus \N \N \N \N \N 15405 L.panamensis Lacmellea Lacmellea panamensis \N \N \N \N \N 15406 \N varietas Astilbe chinensis var. davidii \N \N \N \N \N 15407 P.liebrechtsiana Pauridiantha Pauridiantha liebrechtsiana \N \N \N \N \N 15408 D.atropurpurea Dahlia Dahlia atropurpurea \N \N \N \N \N 15409 S.jasminodora Schoepfia Schoepfia jasminodora \N \N \N \N \N 15410 H.eriocephala Hyptis Hyptis eriocephala \N \N \N \N \N 15411 I.distichophylla Isachne Isachne distichophylla \N \N \N \N \N 15412 R.fuegianus Ranunculus Ranunculus fuegianus \N \N \N \N \N 15413 L.fruticosus Lobostemon Lobostemon fruticosus \N \N \N \N \N 15414 A.cupanii Allium Allium cupanii \N \N \N \N \N 15415 \N varietas Ceanothus oliganthus var. sorediatus \N \N \N \N \N 15416 C.applanata Cuscuta Cuscuta applanata \N \N \N \N \N 15417 S.volkensii Swertia Swertia volkensii \N \N \N \N \N 15418 I.mackeyana Impatiens Impatiens mackeyana \N \N \N \N \N 15419 \N genus Cymbaria \N \N \N \N \N 15420 V.macrorhiza Viguiera Viguiera macrorhiza \N \N \N \N \N 15421 V.agnus-castus Vitex Vitex agnus-castus chasteberry,chastetree \N \N \N \N 15422 C.politifolium Crinum Crinum politifolium \N \N \N \N \N 15423 E.oakesiorum Erica Erica oakesiorum \N \N \N \N \N 15424 A.divergens Acer Acer divergens \N \N \N \N \N 15425 \N genus Antherothamnus \N \N \N \N \N 15426 C.rigescens Cyphocarpus Cyphocarpus rigescens \N \N \N \N \N 15427 C.dipterocarpa Cousinia Cousinia dipterocarpa \N \N \N \N \N 15428 \N genus Leeuwenbergia \N \N \N \N \N 15430 C.vinosus Costus Costus vinosus \N \N \N \N \N 15431 S.barbatus Schismus Schismus barbatus \N \N \N \N \N 15432 S.roborowskii Salvia Salvia roborowskii \N \N \N \N \N 15433 U.trifida Ursinia Ursinia trifida \N \N \N \N \N 15434 \N subspecies Cucumis melo subsp. agrestis \N \N \N \N \N 15435 S.deltoides Synurus Synurus deltoides \N \N \N \N \N 15436 L.SCM-2009 Limnanthes Limnanthes sp. SCM-2009 \N \N \N \N \N 15437 S.theophrastifolia Symplocos Symplocos theophrastifolia \N \N \N \N \N 15438 T.wagneriana Tillandsia Tillandsia wagneriana \N \N \N \N \N 15439 P.notatum Paspalum Paspalum notatum Bahia grass \N \N \N \N 15440 A.millefolium Achillea millefolium complex Achillea millefolium \N \N \N \N \N 15441 C.variegatum Colchicum Colchicum variegatum \N \N \N \N \N 15442 \N genus Cyrtochiloides \N \N \N \N \N 15443 M.gracilipes Mimulus Mimulus gracilipes \N \N \N \N \N 15444 I.malayana Irvingia Irvingia malayana \N \N \N \N \N 15445 C.parishii Corynopuntia Corynopuntia parishii \N \N \N \N \N 15446 E.chinensis Eremurus Eremurus chinensis \N \N \N \N \N 15447 H.galeottii Hybanthus Hybanthus galeottii \N \N \N \N \N 15448 \N genus Loxonia \N \N \N \N \N 15449 S.micrasterias Sauropus Sauropus micrasterias \N \N \N \N \N 15450 G.quadriflora Genista Genista quadriflora \N \N \N \N \N 15451 P.inflatus Penstemon Penstemon inflatus \N \N \N \N \N 15452 D.ferruginea Diacidia Diacidia ferruginea \N \N \N \N \N 15453 R.amblyolobus Ranunculus Ranunculus amblyolobus \N \N \N \N \N 15454 \N subspecies Sideritis gomeraea subsp. gomeraea \N \N \N \N \N 15455 S.hirsuta Stapelia Stapelia hirsuta \N \N \N \N \N 15456 \N genus Sacoglottis \N \N \N \N \N 15457 F.pedata Florestina Florestina pedata \N \N \N \N \N 15458 M.textilis Musa Musa acuminata x Musa textilis \N \N \N \N \N 15459 E.obconicum Excentrodendron Excentrodendron obconicum \N \N \N \N \N 15460 M.elegans Mussaenda Mussaenda elegans \N \N \N \N \N 15461 I.iberica Iris Iris iberica \N \N \N \N \N 15462 P.watieri Pardoglossum Pardoglossum watieri \N \N \N \N \N 15463 P.flavicans Piper Piper flavicans \N \N \N \N \N 15464 \N genus Campomanesia \N \N \N \N \N 15465 D.papilllatum Disphyma Disphyma papilllatum \N \N \N \N \N 15466 C.nigrescens Corycium Corycium nigrescens \N \N \N \N \N 15467 G.potentilloides Geranium Geranium potentilloides \N \N \N \N \N 15468 C.calycina Caesalpinia Caesalpinia calycina \N \N \N \N \N 15469 L.nobilis Laurus Laurus nobilis bay laurel \N \N \N \N 15470 C.00-207 Cistanthe Cistanthe aff. cymosa Hershkovitz 00-207 \N \N \N \N \N 15471 S.ambosinum Solanum Solanum ambosinum \N \N \N \N \N 15472 E.lonchophyllum Eriogonum Eriogonum lonchophyllum \N \N \N \N \N 15473 P.mundtii Pycreus Pycreus mundtii \N \N \N \N \N 15474 \N subspecies Crocus pallasii subsp. pallasii \N \N \N \N \N 15475 Q.austrina Quercus Quercus austrina \N \N \N \N \N 15476 G.tristis Gladiolus Gladiolus tristis \N \N \N \N \N 15477 P.lima Pentaschistis Pentameris lima \N \N \N \N \N 15478 G.parviflora Griffinia Griffinia parviflora \N \N \N \N \N 15479 P.chilensis Plectocephalus Plectocephalus chilensis \N \N \N \N \N 15480 O.argolica Ophrys Ophrys argolica \N \N \N \N \N 15481 S.ampla Stachys Stachys ampla \N \N \N \N \N 15482 P.takesimensis Prunus Prunus takesimensis \N \N \N \N \N 15483 D.leptocheilos Dypsis Dypsis leptocheilos \N \N \N \N \N 15484 P.hoffmeisteri Pedicularis Pedicularis hoffmeisteri \N \N \N \N \N 15485 B.crispa Byrsonima Byrsonima crispa \N \N \N \N \N 15486 P.costaricensis Prockia Prockia costaricensis \N \N \N \N \N 15487 \N genus Hedraianthera \N \N \N \N \N 15488 R.pratensis Rumex Rumex x pratensis \N \N \N \N \N 15489 \N varietas Spiraea japonica var. incisa \N \N \N \N \N 15490 B.amabilis Baillonia Baillonia amabilis \N \N \N \N \N 15491 B.sandrangatense Bulbophyllum Bulbophyllum sandrangatense \N \N \N \N \N 15492 J.montana Jasione Jasione montana \N \N \N \N \N 15493 \N genus Lennea \N \N \N \N \N 15494 \N genus Elatostema \N \N \N \N \N 15495 S.uplandicum Symphytum Symphytum x uplandicum Quaker comfrey,blue comfrey \N \N \N \N 15496 G.acaulis Gesneria Gesneria acaulis \N \N \N \N \N 15497 P.rotundifolia Peperomia Peperomia rotundifolia \N \N \N \N \N 15498 S.ciliaris Saussurea Saussurea ciliaris \N \N \N \N \N 15499 R.caprarum Ranunculus Ranunculus caprarum \N \N \N \N \N 15500 A.brutius Adenocarpus Adenocarpus brutius \N \N \N \N \N 15501 S.s.n. Skeptrostachys Skeptrostachys sp. Takase s.n. \N \N \N \N \N 15502 N.meyeri Nepeta Nepeta meyeri \N \N \N \N \N 15503 S.conglobatum Solanum Solanum conglobatum \N \N \N \N \N 15504 \N genus Soyauxia \N \N \N \N \N 15505 \N genus Ugni \N \N \N \N \N 15506 P.macrophylla Passiflora Passiflora macrophylla conch apple \N \N \N \N 15507 B.juncea Bebbia Bebbia juncea \N \N \N \N \N 15508 B.scaberulum Bulbophyllum Bulbophyllum scaberulum \N \N \N \N \N 15509 D.pentagyna Durandea Durandea pentagyna \N \N \N \N \N 15510 R.mollis Rudbeckia Rudbeckia mollis \N \N \N \N \N 15511 P.microphylla Premna Premna microphylla \N \N \N \N \N 15512 P.pulverulentum Pelargonium Pelargonium pulverulentum \N \N \N \N \N 15513 P.nidus-avis Pogoniopsis Pogoniopsis nidus-avis \N \N \N \N \N 15514 C.martinezii Calceolaria Calceolaria martinezii \N \N \N \N \N 15515 A.hispida Aeschynomene Aeschynomene hispida \N \N \N \N \N 15516 \N subspecies Raphanus raphanistrum subsp. raphanistrum \N \N \N \N \N 15517 \N genus Macroclinidium \N \N \N \N \N 15518 P.cheiranthoides Phoenicaulis Phoenicaulis cheiranthoides \N \N \N \N \N 15519 L.stricta Lotononis Lotononis stricta \N \N \N \N \N 15520 R.orthoneurus Rumex Rumex orthoneurus \N \N \N \N \N 15521 C.lucanusianus Costus Costus lucanusianus \N \N \N \N \N 15522 H.cinnamomifolia Hoya Hoya cinnamomifolia \N \N \N \N \N 15523 K.capensis Kissenia Kissenia capensis \N \N \N \N \N 15524 A.granvikii Alchemilla Alchemilla granvikii \N \N \N \N \N 15525 C.antoniensis Carex Carex antoniensis \N \N \N \N \N 15526 \N genus Ginalloa \N \N \N \N \N 15527 F.aurea Fritillaria Fritillaria aurea \N \N \N \N \N 15528 D.ampulliformis Donnellsmithia Donnellsmithia ampulliformis \N \N \N \N \N 15529 P.orientalis Potamogeton Potamogeton x orientalis \N \N \N \N \N 15530 S.laciniata Scorzoneroides Scorzoneroides laciniata \N \N \N \N \N 15531 R.stellata Rhynchostele Rhynchostele stellata \N \N \N \N \N 15532 O.dactylophylla Oldfieldia Oldfieldia dactylophylla \N \N \N \N \N 15533 \N tribe Tecomeae \N \N \N \N \N 15534 P.inflatum Polygonatum Polygonatum inflatum \N \N \N \N \N 15535 W.saharae Warionia Warionia saharae \N \N \N \N \N 15536 \N subspecies Argemone mexicana subsp. mexicana \N \N \N \N \N 15537 \N genus Phellolophium \N \N \N \N \N 15538 C.obesa Casuarina Casuarina obesa swamp she-oak \N \N \N \N 15539 C.1214 Salacia cf. Salacia sp. Chase 1214 \N \N \N \N \N 15540 C.bahiensis Cuphea Cuphea bahiensis \N \N \N \N \N 15541 M.kobus Magnolia Magnolia kobus \N \N \N \N \N 15542 A.krervanh Amomum Amomum krervanh \N \N \N \N \N 15543 H.mexicana Hamamelis Hamamelis mexicana Mexican witch-hazel \N \N \N \N 15544 P.polyantha Picramnia Picramnia polyantha \N \N \N \N \N 15545 H.eriostachya Hohenbergia Hohenbergia eriostachya \N \N \N \N \N 15546 V.neocronquistii Viguiera Viguiera neocronquistii \N \N \N \N \N 15547 I.nigrescens Indigofera Indigofera nigrescens \N \N \N \N \N 15548 B.laxiflora Billbergia Billbergia laxiflora \N \N \N \N \N 15549 P.concinna Primula Primula concinna \N \N \N \N \N 15550 \N subspecies Crambe hispanica subsp. hispanica \N \N \N \N \N 15551 F.laurifolia Ficalhoa Ficalhoa laurifolia \N \N \N \N \N 15552 O.tsoongii Olea Olea tsoongii yun nan mu xi lan \N \N \N \N 15553 C.aphylla Charybdis Charybdis aphylla \N \N \N \N \N 15554 V.subincisa Valeriana Valeriana subincisa \N \N \N \N \N 15555 C.finetiana Clematis Clematis finetiana \N \N \N \N \N 15556 E.multifolia Euphorbia Euphorbia multifolia \N \N \N \N \N 15557 N.1234 Nothoscordum Nothoscordum sp. 1234 \N \N \N \N \N 15558 \N subspecies Deverra scoparia subsp. scoparia \N \N \N \N \N 15559 G.SH-2010 Glomera Glomera sp. SH-2010 \N \N \N \N \N 15560 \N tribe Pavetteae \N \N \N \N \N 15561 L.niger Lathyrus Lathyrus niger \N \N \N \N \N 15562 O.epaleaceus Otopappus Otopappus epaleaceus \N \N \N \N \N 15563 H.fruticosa Hedyotis Hedyotis fruticosa \N \N \N \N \N 15564 V.rotundifolia Valeriana Valeriana rotundifolia \N \N \N \N \N 15565 M.perfoliatum Melampodium Melampodium perfoliatum \N \N \N \N \N 15566 I.cardiophylla Ipomoea Ipomoea cardiophylla \N \N \N \N \N 15567 \N genus Errazurizia \N \N \N \N \N 15568 \N forma Castelnavia multipartita f. pendulosa \N \N \N \N \N 15569 S.maritima Salicornia Salicornia maritima \N \N \N \N \N 15570 V.ovalifolium Vaccinium Vaccinium ovalifolium \N \N \N \N \N 15571 E.bractescens Encyclia Encyclia bractescens \N \N \N \N \N 15572 L.maximum Leucanthemum Leucanthemum maximum \N \N \N \N \N 15573 C.ovata Carissa Carissa ovata \N \N \N \N \N 15574 \N genus Desfontainia \N \N \N \N \N 15575 G.01-424 Globba Globba sp. Williams 01-424 \N \N \N \N \N 15576 \N genus Acalypha \N \N \N \N \N 15577 L.pseudohenryi Lysimachia Lysimachia pseudohenryi \N \N \N \N \N 15578 N.cuspidata Nectandra Nectandra cuspidata \N \N \N \N \N 15579 D.dasycaulon Delphinium Delphinium dasycaulon \N \N \N \N \N 15580 W.silaifolia Winklera Winklera silaifolia \N \N \N \N \N 15581 D.serotinum Dipcadi Dipcadi serotinum \N \N \N \N \N 15582 C.sumatrensis Conyza Conyza sumatrensis \N \N \N \N \N 15583 S.kleinii Sarcostigma Sarcostigma kleinii \N \N \N \N \N 15584 P.arundinaceum Paspalum Paspalum arundinaceum \N \N \N \N \N 15585 C.prolifera Cylindropuntia Cylindropuntia prolifera \N \N \N \N \N 15586 M.salicina Myrsine Myrsine salicina \N \N \N \N \N 15587 P.leucopoda Psychotria Psychotria leucopoda \N \N \N \N \N 15588 H.chorodanum Heracleum Heracleum chorodanum \N \N \N \N \N 15589 G.crenulatotruncata Gentiana Gentiana crenulatotruncata \N \N \N \N \N 15590 M.pajonalis Macrocarpaea Macrocarpaea pajonalis \N \N \N \N \N 15591 A.pierrei Aristolochia Aristolochia pierrei \N \N \N \N \N 15592 H.tridens Habenaria Habenaria tridens \N \N \N \N \N 15593 F.stuessyi Fulcaldea Fulcaldea stuessyi \N \N \N \N \N 15594 S.superba Schima Schima superba \N \N \N \N \N 15595 F.teterrima Ferula Ferula teterrima \N \N \N \N \N 15596 V.catenata Veronica Veronica catenata \N \N \N \N \N 15597 L.halleri Laserpitium Laserpitium halleri \N \N \N \N \N 15598 E.ghoranus Echinops Echinops ghoranus \N \N \N \N \N 15599 L.tomentosus Lupinus Lupinus tomentosus \N \N \N \N \N 15600 A.trautvetterianum Allium Allium trautvetterianum \N \N \N \N \N 15601 \N varietas Pisum sativum var. macrocarpon snow pea,sugar pea \N \N \N \N 15602 D.cadaverica Duguetia Duguetia cadaverica \N \N \N \N \N 15603 V.rafinesquianum Viburnum Viburnum rafinesquianum \N \N \N \N \N 15604 G.polyantha Guatteria Guatteria polyantha \N \N \N \N \N 15605 M.TSS-2006 Myodocarpus Myodocarpus sp. TSS-2006 \N \N \N \N \N 15606 D.ciliatum Dischisma Dischisma ciliatum \N \N \N \N \N 15607 E.cotinoides Embelia Embelia cotinoides \N \N \N \N \N 15608 L.holmgrenii Lachemilla Lachemilla holmgrenii \N \N \N \N \N 15609 \N genus Quisqueya \N \N \N \N \N 15610 R.yedoense Rhododendron Rhododendron yedoense \N \N \N \N \N 15611 H.3562 Halenia Halenia sp. Gonzales 3562 \N \N \N \N \N 15612 F.echidne Ferocactus Ferocactus echidne \N \N \N \N \N 15613 \N varietas Brassica oleracea var. viridis collards,fodder kale \N \N \N \N 15614 C.johnstonii Carex Carex johnstonii \N \N \N \N \N 15615 D.cheilanthum Delphinium Delphinium cheilanthum \N \N \N \N \N 15616 C.amaranthoides Calomeria Calomeria amaranthoides \N \N \N \N \N 15617 S.arundinacea Spartina Spartina arundinacea \N \N \N \N \N 15618 N.mucronatus Nemopanthus Nemopanthus mucronatus \N \N \N \N \N 15619 \N varietas Carex atroviridis var. scabrocaudata \N \N \N \N \N 15620 A.odorata Apostasia Apostasia odorata \N \N \N \N \N 15621 S.6287 Scaphyglottis Scaphyglottis sp. Dressler 6287 \N \N \N \N \N 15622 C.nitens Carpha Carpha nitens \N \N \N \N \N 15623 D.kunthii Davilla Davilla kunthii \N \N \N \N \N 15624 L.NSW367951 Lepyrodia Lepyrodia sp. NSW367951 \N \N \N \N \N 15625 L.tenuifolia Liatris Liatris tenuifolia \N \N \N \N \N 15626 Z.ornata Ziziphus Ziziphus ornata \N \N \N \N \N 30188 \N genus Riocreuxia \N \N \N \N \N 15627 S.gemmifer Schoenoplectus Schoenoplectus gemmifer \N \N \N \N \N 15628 \N genus Trachelium \N \N \N \N \N 15629 \N genus Soterosanthus \N \N \N \N \N 15630 E.risdonii Eucalyptus Eucalyptus risdonii \N \N \N \N \N 15631 \N genus Pycnosorus \N \N \N \N \N 15632 F.chiquitana Fosterella Fosterella chiquitana \N \N \N \N \N 15633 L.virgatum Leucanthemum Leucanthemum virgatum \N \N \N \N \N 15634 C.rhabdodes Cousinia Cousinia rhabdodes \N \N \N \N \N 15635 P.eugeniifolia Pouteria Pouteria eugeniifolia \N \N \N \N \N 15636 S.himalayensis Solms-laubachia Solms-laubachia himalayensis \N \N \N \N \N 15637 N.pallens Nonea Nonea pallens \N \N \N \N \N 15638 V.sebifera Virola Virola sebifera chalviande,red ucuuba,yayamadou \N \N \N \N 15639 R.mirheydari Rochelia Rochelia mirheydari \N \N \N \N \N 15640 H.caldensis Habenaria Habenaria caldensis \N \N \N \N \N 15641 H.nuda Habenaria Habenaria nuda \N \N \N \N \N 15642 P.parvipetala Pseuduvaria Pseuduvaria parvipetala \N \N \N \N \N 15643 M.pilosum Melampodium Melampodium pilosum \N \N \N \N \N 15644 A.brevistylum Allium Allium brevistylum \N \N \N \N \N 15645 \N subspecies Echinops spinosissimus subsp. spinosus \N \N \N \N \N 15646 C.giganteum Canistrum Canistrum giganteum \N \N \N \N \N 15647 H.recurva Haastia Haastia recurva \N \N \N \N \N 15648 H.humifusum Hypericum Hypericum humifusum \N \N \N \N \N 15649 F.pentaphylla Fragaria Fragaria pentaphylla \N \N \N \N \N 15650 M.quadriglandulosa Macaranga Macaranga quadriglandulosa \N \N \N \N \N 15651 \N genus Ligusticopsis \N \N \N \N \N 15652 T.alliaceum Thlaspi Thlaspi alliaceum \N \N \N \N \N 15653 \N genus Cabucala \N \N \N \N \N 15654 S.cupulare Synadenium Synadenium cupulare \N \N \N \N \N 15655 E.kinabaluensis Entomophobia Entomophobia kinabaluensis \N \N \N \N \N 15656 H.floribundum Hydrobryum Hydrobryum floribundum \N \N \N \N \N 15657 P.harleyi Pagamea Pagamea harleyi \N \N \N \N \N 15658 J.bulbosus Juncus Juncus bulbosus \N \N \N \N \N 15659 P.asarifolium Pelargonium Pelargonium asarifolium \N \N \N \N \N 15660 T.kiusiana Tilia Tilia kiusiana \N \N \N \N \N 15661 P.swinglei Pilea Pilea swinglei \N \N \N \N \N 15662 \N subspecies Phlox subulata subsp. subulata \N \N \N \N \N 15663 \N subspecies Foeniculum vulgare subsp. piperitum \N \N \N \N \N 15664 M.glochidisperma Moehringia Moehringia glochidisperma \N \N \N \N \N 15665 R.hispidus Ranunculus Ranunculus hispidus \N \N \N \N \N 15666 \N varietas Aerangis luteoalba var. rhodosticta \N \N \N \N \N 15667 C.sepium Calystegia Calystegia sepium hedge bindweed \N \N \N \N 15668 C.wellandii Cyrtanthus Cyrtanthus wellandii \N \N \N \N \N 15669 C.vesicaria Carex Carex vesicaria \N \N \N \N \N 15670 S.virgaurea Solidago Solidago virgaurea \N \N \N \N \N 15671 P.albiflora Plagiostachys Plagiostachys albiflora \N \N \N \N \N 15672 A.marschalliana Artemisia Artemisia marschalliana \N \N \N \N \N 15673 \N subspecies Corymbia trachyphloia subsp. trachyphloia \N \N \N \N \N 15674 S.yunnanensis Swertia Swertia yunnanensis \N \N \N \N \N 15675 B.reniformis Begonia Begonia reniformis \N \N \N \N \N 15676 \N genus Apodytes \N \N \N \N \N 15677 C.abscondita Carex Carex abscondita \N \N \N \N \N 15678 C.rapistroides Ceratocnemum Ceratocnemum rapistroides \N \N \N \N \N 15679 M.quinquenervia Melaleuca Melaleuca quinquenervia \N \N \N \N \N 15680 H.hasseltii Hedychium Hedychium gardnerianum x Hedychium hasseltii \N \N \N \N \N 15681 O.sordida Oxytropis Oxytropis sordida \N \N \N \N \N 15682 \N subspecies Ononis tridentata subsp. tridentata \N \N \N \N \N 15683 R.hasseltii Rafflesia Rafflesia hasseltii \N \N \N \N \N 15684 \N family Melianthaceae \N \N \N \N \N 15685 A.clusiana Achillea Achillea clusiana \N \N \N \N \N 15686 A.ichangense Asarum Asarum ichangense \N \N \N \N \N 15687 \N genus Yabea \N \N \N \N \N 15688 M.ciliata Muhlenbergia Muhlenbergia ciliata \N \N \N \N \N 15689 J.antillana Jaltomata Jaltomata antillana \N \N \N \N \N 15690 S.fuscata Symplocos Symplocos fuscata \N \N \N \N \N 15691 \N genus Oreorchis \N \N \N \N \N 15692 C.42-1 Cornus Cornus cf. canadensis Xiang and Fan 42-1 \N \N \N \N \N 15693 T.ranunculoides Trollius Trollius ranunculoides \N \N \N \N \N 15694 N.crociformis Nervilia Nervilia crociformis \N \N \N \N \N 15695 \N subspecies Protea aurea subsp. aurea \N \N \N \N \N 15696 S.apogon Schoenus Schoenus apogon \N \N \N \N \N 15697 D.tessmannii Dialium Dialium tessmannii \N \N \N \N \N 15698 \N tribe Coriandreae \N \N \N \N \N 15699 S.2004-5 Salicornia Salicornia sp. Yaprak 2004-5 \N \N \N \N \N 15700 \N subtribe Eriopsidinae \N \N \N \N \N 15701 \N tribe Tarchonantheae \N \N \N \N \N 15702 \N varietas Actinidia callosa var. discolor \N \N \N \N \N 15703 S.eremophilum Solanum Solanum eremophilum \N \N \N \N \N 15704 \N genus Rhabdodendron \N \N \N \N \N 15705 \N subspecies Gymnocalycium monvillei subsp. achirasense \N \N \N \N \N 15706 M.ciliata Micromyrtus Micromyrtus ciliata \N \N \N \N \N 15707 C.heterophylla Comparettia Comparettia heterophylla \N \N \N \N \N 15708 E.rubens Erica Erica rubens \N \N \N \N \N 15709 L.sierrae Lewisia Lewisia sierrae \N \N \N \N \N 15710 L.salignum Leucadendron Leucadendron salignum \N \N \N \N \N 15711 H.GVD-2011 Hymenidium Hymenidium sp. GVD-2011 \N \N \N \N \N 15712 L.2438 Lijndenia Lijndenia cf. brenanii Stone et al. 2438 \N \N \N \N \N 15713 N.203-00 Nematoceras Nematoceras aff. orbiculatum Molloy 203-00 \N \N \N \N \N 15714 H.pterygosperma Halosarcia Halosarcia pterygosperma \N \N \N \N \N 15715 T.minutiflorum Trymalium Trymalium minutiflorum \N \N \N \N \N 15716 E.tricallosus Elleanthus Elleanthus tricallosus \N \N \N \N \N 15717 M.alpinus Merrilliopanax Merrilliopanax alpinus \N \N \N \N \N 15718 C.disperma Crispiloba Crispiloba disperma \N \N \N \N \N 15719 P.agathicola Pterostylis Pterostylis agathicola \N \N \N \N \N 15720 H.parvifolia Haplocarpha Haplocarpha parvifolia \N \N \N \N \N 15721 V.balearica Viola Viola x balearica \N \N \N \N \N 15722 M.ischnocalyx Macrolobium Macrolobium ischnocalyx \N \N \N \N \N 94506 \N genus Pontederia \N \N \N \N \N 15723 S.scardica Sideritis Sideritis scardica \N \N \N \N \N 15724 S.garayi Sutrina Sutrina garayi \N \N \N \N \N 15725 C.ambigua Consolida Consolida ambigua \N \N \N \N \N 15726 B.s.n.' Bellonia Bellonia sp. 'Evans s.n.' \N \N \N \N \N 15727 M.punicea Meconopsis Meconopsis punicea red poppywort \N \N \N \N 15728 S.folgneri Sorbus Sorbus folgneri \N \N \N \N \N 15729 N.isoneura Neotina Neotina isoneura \N \N \N \N \N 15730 M.hutchisonii Mezobromelia Mezobromelia hutchisonii \N \N \N \N \N 15731 E.purpureum Exostema Exostema purpureum \N \N \N \N \N 15732 P.ramosissimum Polygonum Polygonum ramosissimum \N \N \N \N \N 15733 A.angustifolia Abronia Abronia angustifolia \N \N \N \N \N 15734 A.vulcanensis Anacampseros Anacampseros vulcanensis \N \N \N \N \N 15735 T.africanum Thylachium Thylachium africanum \N \N \N \N \N 15736 M.villosa Mentha Mentha x villosa \N \N \N \N \N 15737 \N subspecies Rhododendron rex subsp. fictolacteum \N \N \N \N \N 15738 R.grandiflorus Ranunculus Ranunculus grandiflorus \N \N \N \N \N 15739 A.pubescens Acronychia Acronychia pubescens \N \N \N \N \N 15740 M.carsonii Moraea Moraea carsonii \N \N \N \N \N 15741 L.2000 Lupinus Lupinus aff. sarmentosus Hughes 2000 \N \N \N \N \N 15742 P.filifolia Polycarpaea Polycarpaea filifolia \N \N \N \N \N 15743 E.hadramautica Euphorbia Euphorbia hadramautica \N \N \N \N \N 15744 C.insignis Cecropia Cecropia insignis \N \N \N \N \N 15745 S.oerstedianus Senecio Senecio oerstedianus \N \N \N \N \N 15746 A.1353 Acaena Acaena sp. LHMS 1353 \N \N \N \N \N 15747 P.umbrosa Peperomia Peperomia umbrosa \N \N \N \N \N 15748 C.flavisetula Cuphea Cuphea flavisetula \N \N \N \N \N 15749 \N genus Symplocos \N \N \N \N \N 15750 S.stenopterum Solanum Solanum stenopterum \N \N \N \N \N 15751 D.BGB-2009 Dalechampia Dalechampia aff. capensis BGB-2009 \N \N \N \N \N 15752 \N family Hypoxidaceae \N \N \N \N \N 15753 H.ameghinoi Halophytum Halophytum ameghinoi \N \N \N \N \N 15754 A.oliganthum Amomum Amomum oliganthum \N \N \N \N \N 15755 E.lucasii Eucalyptus Eucalyptus lucasii \N \N \N \N \N 15756 P.distichophyllus Paepalanthus Paepalanthus distichophyllus \N \N \N \N \N 15757 D.crassa Draba Draba crassa \N \N \N \N \N 15758 A.angustifoliolatus Astragalus Astragalus angustifoliolatus \N \N \N \N \N 15759 R.burejense Ribes Ribes burejense \N \N \N \N \N 15760 \N varietas Cucumis anguria var. longaculeata \N \N \N \N \N 15761 L.gayanum Lithospermum Lithospermum gayanum \N \N \N \N \N 15762 V.beckwithii Viola Viola beckwithii \N \N \N \N \N 15763 \N genus Tricholepis \N \N \N \N \N 15764 C.pascuorum Chamaecrista Chamaecrista pascuorum \N \N \N \N \N 15765 T.bermejoensis Tillandsia Tillandsia bermejoensis \N \N \N \N \N 15766 S.308 Schumacheria Schumacheria sp. Chase 308 \N \N \N \N \N 15767 P.saxatilis Pseudoscabiosa Pseudoscabiosa saxatilis \N \N \N \N \N 15768 E.benthamii Epithema Epithema benthamii \N \N \N \N \N 15769 H.magica Holttumochloa Holttumochloa magica \N \N \N \N \N 15770 C.truncata Callitriche Callitriche truncata \N \N \N \N \N 15771 S.drummondii Sphenotoma Sphenotoma drummondii \N \N \N \N \N 15772 A.cordifolium Aethionema Aethionema cordifolium \N \N \N \N \N 15773 S.uncinata Secamone Secamone uncinata \N \N \N \N \N 15774 U.platynota Urochloa Urochloa platynota \N \N \N \N \N 15775 P.venustum Paphiopedilum Paphiopedilum spicerianum x Paphiopedilum venustum \N \N \N \N \N 15776 C.refracta Camissonia Camissonia refracta \N \N \N \N \N 15777 J.crithmifolia Junellia Junellia crithmifolia \N \N \N \N \N 15778 B.auriculata Bambusa Bambusa auriculata \N \N \N \N \N 15779 E.montana Echidnopsis Echidnopsis montana \N \N \N \N \N 15780 \N genus Populina \N \N \N \N \N 15781 S.alpinii Secamone Secamone alpinii \N \N \N \N \N 15782 I.hirsuta Indigofera Indigofera hirsuta \N \N \N \N \N 15783 \N genus Pseudolithos \N \N \N \N \N 15784 P.lehmanniana Pimelea Pimelea lehmanniana \N \N \N \N \N 15785 S.amotapense Solanum Solanum amotapense \N \N \N \N \N 15786 R.volkensii Rauvolfia Rauvolfia volkensii \N \N \N \N \N 15787 A.schizophylla Alchemilla Alchemilla schizophylla \N \N \N \N \N 15788 \N genus Tetracoccus \N \N \N \N \N 15789 H.arenarium Helichrysum Helichrysum arenarium \N \N \N \N \N 15790 P.18643 Polyosma Polyosma sp. McPherson 18643 \N \N \N \N \N 15791 L.bicolor Limonium Limonium bicolor \N \N \N \N \N 15792 \N subspecies Navarretia divaricata subsp. vividior \N \N \N \N \N 15793 \N genus Nolletia \N \N \N \N \N 15794 E.kirkii Empogona Empogona kirkii \N \N \N \N \N 15795 S.fastuosa Semiarundinaria Semiarundinaria fastuosa \N \N \N \N \N 15796 G.equitans Gladiolus Gladiolus equitans \N \N \N \N \N 15797 I.sogdiana Iris Iris sogdiana \N \N \N \N \N 15798 O.silaifolia Oenanthe Oenanthe silaifolia narrow-leaf water-dropwort \N \N \N \N 15799 \N varietas Euphorbia lophogona var. tenuicaulis \N \N \N \N \N 15800 M.thunbergii Machilus Machilus thunbergii \N \N \N \N \N 15801 G.ilense Gongora Gongora ilense \N \N \N \N \N 15802 A.namaquensis Agathosma Agathosma namaquensis \N \N \N \N \N 15803 \N varietas Penstemon procerus var. formosus \N \N \N \N \N 15804 A.schmidtiana Artemisia Artemisia schmidtiana \N \N \N \N \N 15805 S.2210 Scaphyglottis Scaphyglottis cf. behrii DB 2210 \N \N \N \N \N 15806 \N subspecies Bartonia paniculata subsp. iodandra \N \N \N \N \N 15807 T.ovoidea Tirpitzia Tirpitzia ovoidea \N \N \N \N \N 15808 B.tilingii Borodinia Borodinia tilingii \N \N \N \N \N 15809 K.latericia Knema Knema latericia \N \N \N \N \N 15810 V.incisa Viola Viola incisa \N \N \N \N \N 15811 \N genus Pyrostria \N \N \N \N \N 15812 G.granatellii Gagea Gagea granatellii \N \N \N \N \N 15813 S.moranii Sanicula Sanicula moranii \N \N \N \N \N 15814 M.perrieri Melanophylla Melanophylla perrieri \N \N \N \N \N 15815 C.columbiana Crataegus Crataegus columbiana \N \N \N \N \N 15816 P.intrusa Poa Poa intrusa \N \N \N \N \N 15817 S.vilmorinii Sorbus Sorbus vilmorinii \N \N \N \N \N 15818 A.decasperma Ammandra Ammandra decasperma \N \N \N \N \N 15819 M.prostrata Medicago Medicago prostrata \N \N \N \N \N 15822 \N subspecies Crepis bakeri subsp. cusickii \N \N \N \N \N 15823 P.novoguineensis Pycnarrhena Pycnarrhena novoguineensis \N \N \N \N \N 15824 S.foetida Simsia Simsia foetida \N \N \N \N \N 15825 N.elatus Nastus Nastus elatus \N \N \N \N \N 15826 S.quinquangulata Senna Senna quinquangulata \N \N \N \N \N 15827 Z.magnifica Zollernia Zollernia magnifica \N \N \N \N \N 15828 A.calcarata Alpinia Alpinia calcarata \N \N \N \N \N 15829 \N subspecies Brownea coccinea subsp. capitella \N \N \N \N \N 15830 \N genus Nolina bear grasses \N \N \N \N 15831 S.cinerea Salix Salix cinerea gray willow,pussy willow \N \N \N \N 15832 M.gustavii Magnolia Magnolia gustavii \N \N \N \N \N 15833 O.corniculata Oxalis Oxalis corniculata \N \N \N \N \N 15834 \N genus Goyazia \N \N \N \N \N 15835 S.major Scyphocoronis Scyphocoronis major \N \N \N \N \N 15836 W.bifurcata Wodyetia Wodyetia bifurcata \N \N \N \N \N 15837 \N genus Thamnoldenlandia \N \N \N \N \N 15838 \N varietas Chamaecrista rotundifolia var. grandiflora \N \N \N \N \N 15839 R.1616 Rodriguezia Rodriguezia sp. Whitten 1616 \N \N \N \N \N 15840 N.laurifolia Naravelia Naravelia laurifolia \N \N \N \N \N 15841 S.diversipinnus Senecio Senecio diversipinnus \N \N \N \N \N 15842 B.6517 Brassaiopsis Brassaiopsis cf. fatsioides 6517 \N \N \N \N \N 15843 A.glaucacanthos Astragalus Astragalus glaucacanthos \N \N \N \N \N 15844 O.obovata Ozoroa Ozoroa obovata \N \N \N \N \N 15845 E.euryandrus Ennealophus Ennealophus euryandrus \N \N \N \N \N 15846 A.jorullensis Alnus Alnus jorullensis \N \N \N \N \N 15847 P.stylosa Phuopsis Phuopsis stylosa \N \N \N \N \N 15848 A.erythrocarpa Actaea Actaea erythrocarpa \N \N \N \N \N 15849 T.pedunculare Tetrastigma Tetrastigma pedunculare \N \N \N \N \N 15850 \N genus Shuteria \N \N \N \N \N 15851 C.kappleriana Cuervea Cuervea kappleriana \N \N \N \N \N 15852 D.polygalifolius Distephanus Distephanus polygalifolius \N \N \N \N \N 15853 \N genus Hionanthera \N \N \N \N \N 15854 \N subspecies Pimelea brevifolia subsp. brevifolia \N \N \N \N \N 15855 \N genus Actinodium \N \N \N \N \N 15856 B.hermosae Bethencourtia Bethencourtia hermosae \N \N \N \N \N 15857 M.cavaleriei Michelia Michelia cavaleriei \N \N \N \N \N 15858 S.phureja Solanum Solanum phureja chaucha,phureja \N \N \N \N 15859 N.ternata Niphogeton Niphogeton ternata \N \N \N \N \N 15860 V.clematitis Valeriana Valeriana clematitis \N \N \N \N \N 15861 D.microzyga Dodonaea Dodonaea microzyga \N \N \N \N \N 15862 C.ruscifolia Cliffortia Cliffortia ruscifolia \N \N \N \N \N 15863 F.robusta Ficus Ficus robusta \N \N \N \N \N 15864 G.trigonoclada Gaultheria Gaultheria trigonoclada \N \N \N \N \N 15865 E.randii Encyclia Encyclia randii \N \N \N \N \N 15866 S.atocioides Silene Silene atocioides \N \N \N \N \N 15867 I.microdonta Ilex Ilex microdonta \N \N \N \N \N 15868 P.viridiflora Parnassia Parnassia viridiflora \N \N \N \N \N 15869 P.venustus Penstemon Penstemon venustus \N \N \N \N \N 15870 D.tesselaria Diospyros Diospyros tesselaria \N \N \N \N \N 15871 D.cruciforme Dendrochilum Dendrochilum cruciforme \N \N \N \N \N 15872 G.7991 Gilia Gilia sp. Porter and Heil 7991 \N \N \N \N \N 15873 D.epidendropsis Dendrobium Dendrobium epidendropsis \N \N \N \N \N 15874 C.mathewsii Cyathostegia Cyathostegia mathewsii \N \N \N \N \N 15875 B.patersoniae Babiana Babiana patersoniae \N \N \N \N \N 15876 M.capillaris Muhlenbergia Muhlenbergia capillaris \N \N \N \N \N 15877 P.guineense Psidium Psidium guineense Brazilian guava,Guinea guava \N \N \N \N 15878 S.fernandezianum Santalum Santalum fernandezianum \N \N \N \N \N 15879 T.arguta Tauschia Tauschia arguta \N \N \N \N \N 15880 F.edlundiae Festuca Festuca edlundiae \N \N \N \N \N 15881 C.clavata Coryphantha Coryphantha clavata \N \N \N \N \N 15882 W.gracilis Walleria Walleria gracilis \N \N \N \N \N 15883 A.fissistipula Acaena Acaena fissistipula \N \N \N \N \N 15884 C.SS-2007 Ceropegia Ceropegia sp. 1 SS-2007 \N \N \N \N \N 15885 \N genus Frailea \N \N \N \N \N 15886 G.lobata Genlisea Genlisea lobata \N \N \N \N \N 15887 C.stenophylla Clusia Clusia stenophylla \N \N \N \N \N 15888 D.globosus Dendropanax Dendropanax globosus \N \N \N \N \N 15889 C.chrysantha Cousinia Cousinia chrysantha \N \N \N \N \N 15890 M.pardalina Maxillaria Maxillaria pardalina \N \N \N \N \N 15891 S.araneosa Sinningia Sinningia araneosa \N \N \N \N \N 15892 \N genus Lanaria \N \N \N \N \N 15893 D.DraB37 Draba Draba sp. DraB37 \N \N \N \N \N 15894 \N genus Crocanthemum \N \N \N \N \N 15895 \N tribe Gaultherieae \N \N \N \N \N 15896 T.disticha Tabernaemontana Tabernaemontana disticha \N \N \N \N \N 15897 J.digitata Jacaratia Jacaratia digitata \N \N \N \N \N 15898 R.decora Rauhia Rauhia decora \N \N \N \N \N 15899 A.solanacea Ardisia Ardisia solanacea \N \N \N \N \N 15900 V.oltensis Veronica Veronica oltensis \N \N \N \N \N 15901 C.guianensis Couepia Couepia guianensis \N \N \N \N \N 15902 S.ajanhuiri Solanum Solanum x ajanhuiri \N \N \N \N \N 15903 M.trilobata Malus Malus trilobata \N \N \N \N \N 15904 L.culinaris Lens Lens culinaris lentil \N \N \N \N 15905 C.papuana Corymbia Corymbia papuana \N \N \N \N \N 15906 F.paradoxa Fallugia Fallugia paradoxa \N \N \N \N \N 15907 E.lutea Erica Erica lutea \N \N \N \N \N 15908 H.SK-2009d Hydrobryum Hydrobryum sp. SK-2009d \N \N \N \N \N 15909 C.campanulatum Crinum Crinum campanulatum \N \N \N \N \N 15910 \N genus Calycacanthus \N \N \N \N \N 15911 \N family Cephalotaceae \N \N \N \N \N 15912 \N genus Apostasia \N \N \N \N \N 15913 \N subspecies Centaurea triumfettii subsp. triumfettii \N \N \N \N \N 15914 C.fragrans Callisia Callisia fragrans \N \N \N \N \N 15915 \N subspecies Triticum macha \N \N \N \N \N 15916 P.incompleta Paris Paris incompleta \N \N \N \N \N 15917 \N genus Calyculogygas \N \N \N \N \N 15918 M.Aq-red2 Myriophyllum Myriophyllum sp. Aq-red2 \N \N \N \N \N 15919 C.argyrophyllus Croton Croton argyrophyllus \N \N \N \N \N 15920 B.benguetensis Blumea Blumea benguetensis \N \N \N \N \N 15921 C.odora Crateva Crateva odora \N \N \N \N \N 15922 S.heterocarpa Stebbinsoseris Stebbinsoseris heterocarpa grassland silverpuffs \N \N \N \N 15923 S.decurrens Senecio Senecio decurrens \N \N \N \N \N 15924 S.sogarandinum Solanum Solanum sogarandinum \N \N \N \N \N 15925 \N genus Glycine \N \N \N \N \N 15926 \N genus Lelya \N \N \N \N \N 15927 \N subspecies Anthemis rosea subsp. carnea \N \N \N \N \N 15928 L.pedunculare Lasiospermum Lasiospermum pedunculare \N \N \N \N \N 15929 S.muricatum Solanum Solanum muricatum Peruvian pepino,mataserrano,melon-pear \N \N \N \N 15930 H.squamata Henriettea Henriettea squamata \N \N \N \N \N 15931 \N genus Whiteochloa \N \N \N \N \N 15932 C.xifongensis Camellia Camellia xifongensis \N \N \N \N \N 15933 A.longtouense Aconitum Aconitum longtouense \N \N \N \N \N 15934 \N genus Verschaffeltia \N \N \N \N \N 15935 E.hercegovina Euphorbia Euphorbia hercegovina \N \N \N \N \N 15936 \N varietas Mimosa ulei var. grallator \N \N \N \N \N 15937 S.reginae Schefflera Schefflera reginae \N \N \N \N \N 15938 T.sanamunda Thymelaea Thymelaea sanamunda \N \N \N \N \N 15939 O.latifolia Olyra Olyra latifolia \N \N \N \N \N 15940 A.solitaria Antennaria Antennaria solitaria \N \N \N \N \N 15941 L.flava Lavatera Lavatera flava \N \N \N \N \N 15942 C.scrobiculata Cupania Cupania scrobiculata \N \N \N \N \N 15943 D.pilosa Dombeya Dombeya pilosa \N \N \N \N \N 15944 \N varietas Philodendron hederaceum var. oxycardium \N \N \N \N \N 15945 P.munnarense Polypleurum Polypleurum munnarense \N \N \N \N \N 15946 C.656 Craterispermum Craterispermum sp. 2 Razafimandimbison & Ravelonarivo 656 \N \N \N \N \N 15947 G.krameri Geranium Geranium krameri \N \N \N \N \N 15948 B.porosa Boeica Boeica porosa \N \N \N \N \N 15949 \N tribe Jaboroseae \N \N \N \N \N 15950 D.fullonum Dipsacus Dipsacus fullonum \N \N \N \N \N 15951 A.alpina Azara Azara alpina \N \N \N \N \N 15952 C.linearis Ceropegia Ceropegia linearis \N \N \N \N \N 15953 I.pungens Isidorea Isidorea pungens \N \N \N \N \N 15954 \N family Solanaceae nightshade family \N \N \N \N 15955 \N genus Trifolium \N \N \N \N \N 15956 C.AC-2009 Calceolaria Calceolaria sp. 1 AC-2009 \N \N \N \N \N 15957 A.canariense Aizoon Aizoon canariense \N \N \N \N \N 15958 \N genus Kalmiopsis \N \N \N \N \N 15959 \N genus Hypocalyptus \N \N \N \N \N 15960 P.chaudocanum Piper Piper chaudocanum \N \N \N \N \N 15961 P.7281 Peplidium Peplidium sp. Barker 7281 \N \N \N \N \N 15962 P.racemosa Pimenta Pimenta racemosa West Indian bay,bay rum tree \N \N \N \N 15963 \N subspecies Descurainia incana subsp. incana \N \N \N \N \N 15964 T.brunneum Tetrastigma Tetrastigma brunneum \N \N \N \N \N 15965 \N genus Dithyrostegia \N \N \N \N \N 15966 W.modesta Whipplea Whipplea modesta \N \N \N \N \N 15967 F.communis Fargesia Fargesia communis \N \N \N \N \N 15968 M.carstiensis Medicago Medicago carstiensis \N \N \N \N \N 15969 A.canescens Aubrieta Aubrieta canescens \N \N \N \N \N 15970 G.nuda Globba Globba nuda \N \N \N \N \N 15971 N.AN410 Nectandra Nectandra sp. 1 AN410 \N \N \N \N \N 15972 \N genus Flueggea \N \N \N \N \N 15973 \N varietas Potentilla gracilis var. owyheensis \N \N \N \N \N 15974 C.quinquefolia Coptis Coptis quinquefolia \N \N \N \N \N 15975 E.humilis Euphorbia Euphorbia humilis \N \N \N \N \N 15976 A.myriophylla Albizia Albizia myriophylla \N \N \N \N \N 15977 X.violaceum Xanthosoma Xanthosoma violaceum \N \N \N \N \N 15978 \N genus Cionura \N \N \N \N \N 15979 G.multiflora Greeniopsis Greeniopsis multiflora \N \N \N \N \N 15980 K.germanae Kalanchoe Kalanchoe germanae \N \N \N \N \N 15981 E.sellowiana Eleocharis Eleocharis sellowiana \N \N \N \N \N 15982 D.romana Dactylorhiza Dactylorhiza romana \N \N \N \N \N 15983 A.fimbriata Anthemis Anthemis fimbriata \N \N \N \N \N 15984 C.lanceolata Calyptranthes Calyptranthes lanceolata \N \N \N \N \N 15985 \N genus Oryctanthus \N \N \N \N \N 15986 P.artanthe Piper Piper artanthe \N \N \N \N \N 15987 T.AK-2007 Tassadia Tassadia sp. 1 AK-2007 \N \N \N \N \N 15988 P.baluchistanicum Piptatherum Piptatherum baluchistanicum \N \N \N \N \N 15989 P.urosperma Pinanga Pinanga urosperma \N \N \N \N \N 15990 A.castelnavii Aechmea Aechmea castelnavii \N \N \N \N \N 15991 C.rapunculus Campanula Campanula rapunculus rampion bellflower,raponzolo \N \N \N \N 15992 R.hectorii Raoulia Raoulia hectorii \N \N \N \N \N 15993 \N genus Synurus \N \N \N \N \N 15994 K.8517 Kengyilia Kengyilia sp. 8517 \N \N \N \N \N 15995 S.abruptus Senecio Senecio abruptus \N \N \N \N \N 15996 O.rotatum Ornithogalum Ornithogalum rotatum \N \N \N \N \N 15997 A.sibuyanensis Alpinia Alpinia sibuyanensis \N \N \N \N \N 15998 L.calycina Lotononis Lotononis calycina \N \N \N \N \N 15999 P.harbourii Penstemon Penstemon harbourii \N \N \N \N \N 16000 \N varietas Prunus dulcis var. amara bitter almond \N \N \N \N 16001 N.otuzcensis Nasa Nasa otuzcensis \N \N \N \N \N 16002 M.ovalifolia Montanoa Montanoa ovalifolia \N \N \N \N \N 16003 P.ultima Puya Puya ultima \N \N \N \N \N 16004 M.pachyloba Millettia Millettia pachyloba \N \N \N \N \N 16005 M.glomerulatus Mallotus Mallotus glomerulatus \N \N \N \N \N 16006 \N genus Sapindus \N \N \N \N \N 16007 \N subspecies Ononis pusilla subsp. pusilla \N \N \N \N \N 16008 A.vilmoriniana Agave Agave vilmoriniana \N \N \N \N \N 16009 \N varietas Brachypodium sylvaticum var. miserum \N \N \N \N \N 16010 E.eumundi Elaeocarpus Elaeocarpus eumundi \N \N \N \N \N 16011 C.montevidensis Croton Croton montevidensis \N \N \N \N \N 16012 T.undulata Tabernaemontana Tabernaemontana undulata \N \N \N \N \N 16013 \N genus Ponthieva \N \N \N \N \N 16014 E.milliganii Eucryphia Eucryphia milliganii \N \N \N \N \N 16015 \N genus Barklya \N \N \N \N \N 16017 P.dicksonii Pinanga Pinanga dicksonii \N \N \N \N \N 16018 A.incisa Agrimonia Agrimonia incisa \N \N \N \N \N 16019 C.hastatus Cucumis Cucumis hastatus \N \N \N \N \N 16020 E.tomentosum Eriogonum Eriogonum tomentosum \N \N \N \N \N 16021 C.lambertiana Campanula Campanula lambertiana \N \N \N \N \N 16022 \N genus Van-royena \N \N \N \N \N 16023 R.acetosellifolius Ranunculus Ranunculus acetosellifolius \N \N \N \N \N 16024 A.alternifolius Acridocarpus Acridocarpus alternifolius \N \N \N \N \N 16025 S.armeniacum Symphytum Symphytum armeniacum \N \N \N \N \N 16026 M.layneae Mimulus Mimulus layneae \N \N \N \N \N 16027 P.elongata Plantago Plantago elongata prairie plantain \N \N \N \N 16028 I.chocoensis Inga Inga chocoensis \N \N \N \N \N 16029 G.costaricensis Gurania Gurania costaricensis \N \N \N \N \N 16030 S.lindheimeriana Senna Senna lindheimeriana \N \N \N \N \N 16031 P.caliginigaudens Peperomia Peperomia caliginigaudens \N \N \N \N \N 16032 \N subspecies Argemone corymbosa subsp. arenicola \N \N \N \N \N 16033 C.rugulosa Carex Carex rugulosa \N \N \N \N \N 16034 A.media Acrocomia Acrocomia media \N \N \N \N \N 16035 A.milingensis Astragalus Astragalus milingensis \N \N \N \N \N 16036 A.'Cass' Aciphylla Aciphylla sp. 'Cass' \N \N \N \N \N 16037 P.nivea Polycarpaea Polycarpaea nivea \N \N \N \N \N 16038 M.tashiroi Maackia Maackia tashiroi \N \N \N \N \N 16039 T.punctatum Tanacetum Tanacetum punctatum \N \N \N \N \N 16040 P.grandifolia Parnassia Parnassia grandifolia \N \N \N \N \N 16041 H.africana Haplocoelopsis Haplocoelopsis africana \N \N \N \N \N 16042 I.grandiflora Isoglossa Isoglossa grandiflora \N \N \N \N \N 16043 \N genus Mabea \N \N \N \N \N 16044 P.arctica Puccinellia Puccinellia arctica \N \N \N \N \N 16045 C.suaveolens Coilonox Coilonox suaveolens \N \N \N \N \N 16046 H.annulatum Hypericum Hypericum annulatum \N \N \N \N \N 16047 \N subspecies Lespedeza thunbergii subsp. thunbergii \N \N \N \N \N 16048 D.macrantha Drosera Drosera macrantha \N \N \N \N \N 16049 I.TP-2009 Inga Inga sp. 49 TP-2009 \N \N \N \N \N 16050 C.pflanzii Culcitium Culcitium pflanzii \N \N \N \N \N 16051 T.decorum Trifolium Trifolium decorum \N \N \N \N \N 16052 G.gymnocaulon Geranium Geranium gymnocaulon \N \N \N \N \N 16053 \N subspecies Brassica rapa subsp. chinensis bok-choy \N \N \N \N 16054 H.petiolaris Hylaeorchis Hylaeorchis petiolaris \N \N \N \N \N 16055 L.keningauensis Lithocarpus Lithocarpus keningauensis \N \N \N \N \N 16056 \N genus Murraya \N \N \N \N \N 16057 F.felina Faucaria Faucaria felina \N \N \N \N \N 16058 O.alopecuroides Ononis Ononis alopecuroides \N \N \N \N \N 16059 S.cernua Sasa Sasa cernua \N \N \N \N \N 16060 H.madagascariensis Harungana Harungana madagascariensis dragon's-blood-tree \N \N \N \N 16061 A.brunneum Aconitum Aconitum brunneum \N \N \N \N \N 16062 \N genus Heteroflorum \N \N \N \N \N 16063 B.nutans Banksia Banksia nutans \N \N \N \N \N 16064 \N genus Xymalos \N \N \N \N \N 16065 A.pedunculata Acronychia Acronychia pedunculata \N \N \N \N \N 16066 G.valdes-bermejoi Genista Genista valdes-bermejoi \N \N \N \N \N 16067 E.H947 Eriospermum Eriospermum sp. H947 \N \N \N \N \N 16068 A.pozoi Ada Ada pozoi \N \N \N \N \N 16069 \N tribe Eriachneae \N \N \N \N \N 16070 O.nitida Omphalodes Omphalodes nitida \N \N \N \N \N 16071 \N genus Eleusine \N \N \N \N \N 16072 S.multicostatus Stenocactus Stenocactus multicostatus \N \N \N \N \N 16073 P.quinquangularis Prestonia Prestonia quinquangularis \N \N \N \N \N 16074 G.leiopoda Gazania Gazania leiopoda \N \N \N \N \N 16075 B.nigra Brassica Brassica nigra black mustard \N \N \N \N 16076 C.planispicata Carex Carex planispicata \N \N \N \N \N 16077 P.avonensis Pimelea Pimelea avonensis \N \N \N \N \N 16078 R.coriacea Ruprechtia Ruprechtia coriacea \N \N \N \N \N 16079 M.rugosa Medicago Medicago rugosa \N \N \N \N \N 16080 A.stricta Adenophora Adenophora stricta \N \N \N \N \N 16081 M.soulei Malaxis Malaxis soulei \N \N \N \N \N 16082 A.tricolor Aeschynanthus Aeschynanthus tricolor \N \N \N \N \N 16083 S.gibbosa Shorea Shorea gibbosa \N \N \N \N \N 16084 D.denticulata Dalechampia Dalechampia denticulata \N \N \N \N \N 16085 P.nicoyanum Piper Piper nicoyanum \N \N \N \N \N 16086 S.cristatum Satyrium Satyrium cristatum \N \N \N \N \N 16087 C.fragilis Costularia Costularia fragilis \N \N \N \N \N 16088 C.12975 Cleistes Cleistes sp. Thomas 12975 \N \N \N \N \N 16089 S.divaricatus Strophanthus Strophanthus divaricatus \N \N \N \N \N 16090 T.dugesii Tillandsia Tillandsia dugesii \N \N \N \N \N 16091 A.limprichtii Androsace Androsace limprichtii \N \N \N \N \N 16092 \N genus Amblyopetalum \N \N \N \N \N 16093 \N genus Chrysosplenium \N \N \N \N \N 16094 D.drummondii Dryas Dryas drummondii \N \N \N \N \N 16095 S.perkinsiae Styrax Styrax perkinsiae \N \N \N \N \N 16096 E.vaginulata Elegia Elegia vaginulata \N \N \N \N \N 16097 K.cytisoides Krameria Krameria cytisoides \N \N \N \N \N 16098 L.ameghinoi Lycium Lycium ameghinoi \N \N \N \N \N 16099 D.racemosa Disa Disa racemosa \N \N \N \N \N 16100 B.1252 Blumeodendron Blumeodendron sp. Chase 1252 \N \N \N \N \N 16101 V.omnilingua Vasconcellea Vasconcellea omnilingua \N \N \N \N \N 16102 \N no rank Cinchonoideae incertae sedis \N \N \N \N \N 16103 \N genus Incarvillea \N \N \N \N \N 16104 M.laruotteana Myrcia Myrcia laruotteana \N \N \N \N \N 16105 \N genus Sphyrastylis \N \N \N \N \N 16106 \N genus Schaueria \N \N \N \N \N 16107 \N varietas Chenopodium glaucum var. salinum \N \N \N \N \N 16108 \N genus Bessera \N \N \N \N \N 16109 P.kaalaensis Pycnandra Pycnandra kaalaensis \N \N \N \N \N 16110 L.hirsutum Lycium Lycium hirsutum \N \N \N \N \N 16111 C.9031 Carpinus Carpinus sp. Wen 9031 \N \N \N \N \N 16112 L.microphyllus Leucopogon Leucopogon microphyllus \N \N \N \N \N 16113 \N genus Brochoneura \N \N \N \N \N 16114 C.16-1 Cornus Cornus cf. canadensis Xiang and Fan 16-1 \N \N \N \N \N 18342 \N genus Chiropetalum \N \N \N \N \N 16115 S.clandestinum Solanum Solanum clandestinum \N \N \N \N \N 16116 M.mesmeana Miconia Miconia mesmeana \N \N \N \N \N 16117 C.scariosum Chamaemelum Chamaemelum scariosum \N \N \N \N \N 16118 \N genus Dichocarpum \N \N \N \N \N 16119 O.broteroi Ornithogalum Ornithogalum broteroi \N \N \N \N \N 16120 H.tanjorense Heterostemma Heterostemma tanjorense \N \N \N \N \N 16121 P.pidax Pleurothallis Pleurothallis pidax \N \N \N \N \N 16122 \N genus Diplopanax \N \N \N \N \N 16123 M.otostegioides Moluccella Moluccella otostegioides \N \N \N \N \N 16124 N.pulchrum Nephelaphyllum Nephelaphyllum pulchrum \N \N \N \N \N 16125 S.xerophyta Solms-laubachia Solms-laubachia xerophyta \N \N \N \N \N 16126 R.platanifolius Ranunculus Ranunculus platanifolius \N \N \N \N \N 16127 \N genus Aosa \N \N \N \N \N 16128 \N varietas Pappostipa vaginata var. argyroidea \N \N \N \N \N 16129 Z.s.n. Zygophyllum Zygophyllum sp. Dreyer s.n. \N \N \N \N \N 16130 \N genus Ailanthus \N \N \N \N \N 16131 G.marginatum Geissoloma Geissoloma marginatum \N \N \N \N \N 16132 \N subspecies Ptilostemon afer subsp. eburneus \N \N \N \N \N 16133 G.purpurea Gamochaeta Gamochaeta purpurea purple cudweed \N \N \N \N 16134 N.dodsonii Nomopyle Nomopyle dodsonii \N \N \N \N \N 16135 G.pallida Gaylussacia Gaylussacia pallida \N \N \N \N \N 16136 O.7758 Oxanthera Oxanthera sp. V 7758 \N \N \N \N \N 16137 E.involucratus Euchiton Euchiton involucratus \N \N \N \N \N 16138 C.soloensis Curcuma Curcuma soloensis \N \N \N \N \N 16139 I.percoriacea Ilex Ilex percoriacea \N \N \N \N \N 16140 P.maritimus Polypogon Polypogon maritimus \N \N \N \N \N 16141 E.coalcomanensis Euphorbia Euphorbia coalcomanensis \N \N \N \N \N 16142 \N genus Alafia \N \N \N \N \N 16143 P.veraguasensis Persea Persea veraguasensis \N \N \N \N \N 16144 \N no rank environmental samples Taxonomy:417443 \N \N \N \N \N 16145 C.ghiesbreghtiana Calyptrogyne Calyptrogyne ghiesbreghtiana \N \N \N \N \N 16146 T.DR38204 Taraxacum Taraxacum sp. DR38204 \N \N \N \N \N 16147 H.macrostachya Heteropterys Heteropterys macrostachya \N \N \N \N \N 16148 L.floribunda Lespedeza Lespedeza floribunda \N \N \N \N \N 16149 S.erubescens Saussurea Saussurea erubescens \N \N \N \N \N 16150 \N subspecies Campanula dasyantha subsp. chamissonis \N \N \N \N \N 16151 A.galapagensis Alternanthera Alternanthera galapagensis \N \N \N \N \N 16152 P.chagrensis Psychotria Psychotria chagrensis \N \N \N \N \N 16153 A.bakeri Angophora Angophora bakeri \N \N \N \N \N 16154 D.sutchuenense Delphinium Delphinium sutchuenense \N \N \N \N \N 16155 R.YI00143-144 Ruppia Ruppia sp. YI00143-144 \N \N \N \N \N 16156 F.indica Ficinia Ficinia indica \N \N \N \N \N 16157 C.870434 Catasetum Catasetum aff. napoense HH 870434 \N \N \N \N \N 16158 D.parvifolia Dalechampia Dalechampia parvifolia \N \N \N \N \N 16159 V.congesta Viola Viola congesta \N \N \N \N \N 16160 K.bipinnata Koelreuteria Koelreuteria bipinnata \N \N \N \N \N 16161 \N varietas Heteromorpha arborescens var. abyssinica \N \N \N \N \N 16162 R.campoensis Rinorea Rinorea campoensis \N \N \N \N \N 16163 P.fairchildii Pittosporum Pittosporum fairchildii \N \N \N \N \N 16164 R.craurophylla Rulingia Rulingia craurophylla \N \N \N \N \N 16165 E.leptospermoides Euryomyrtus Euryomyrtus leptospermoides \N \N \N \N \N 16166 \N genus Dypsis \N \N \N \N \N 16167 A.dallachiana Acacia Acacia dallachiana \N \N \N \N \N 16168 J.grandiflora Jaltomata Jaltomata grandiflora \N \N \N \N \N 16169 N.crassifolia Nepeta Nepeta crassifolia \N \N \N \N \N 16170 H.incanum Heracleum Heracleum incanum \N \N \N \N \N 16171 P.campylostalix Prosthechea Prosthechea campylostalix \N \N \N \N \N 16172 J.HB214 Jacaranda Jacaranda sp. HB214 \N \N \N \N \N 16173 L.martagon Lobelia Lobelia martagon \N \N \N \N \N 16174 I.pulchella Isachne Isachne pulchella \N \N \N \N \N 16175 A.coreanum Aconitum Aconitum coreanum \N \N \N \N \N 16176 L.mutabilis Lachenalia Lachenalia mutabilis \N \N \N \N \N 16177 B.petiolulatum Bupleurum Bupleurum petiolulatum \N \N \N \N \N 16178 D.alcithoe Dracula Dracula alcithoe \N \N \N \N \N 16179 S.taxifolia Suaeda Suaeda taxifolia \N \N \N \N \N 16180 C.woodii Calophyllum Calophyllum woodii \N \N \N \N \N 16181 O.hookeri Oenanthe Oenanthe hookeri \N \N \N \N \N 16182 S.sp. Spinacia Spinacia sp. \N \N \N \N \N 16183 C.microphylla Codia Codia microphylla \N \N \N \N \N 16184 M.nummularia Myrteola Myrteola nummularia \N \N \N \N \N 16185 P.multibracteata Polyscias Polyscias multibracteata \N \N \N \N \N 16186 C.3629aa Clusia Clusia sp. JA 3629aa \N \N \N \N \N 16187 A.incurva Aspalathus Aspalathus incurva \N \N \N \N \N 16188 B.ovalifolia Betula Betula ovalifolia \N \N \N \N \N 16189 A.chiricahuensis Apacheria Apacheria chiricahuensis \N \N \N \N \N 16190 \N subtribe Zoysiinae \N \N \N \N \N 16191 \N genus Urobotrya \N \N \N \N \N 16192 G.album Galium Galium album \N \N \N \N \N 16193 D.malayana Dinochloa Dinochloa malayana \N \N \N \N \N 16194 A.cultivar Annona Annona hybrid cultivar \N \N \N \N \N 16195 B.aquifolium Berberis Berberis aquifolium hollyleaf barberry \N \N \N \N 16196 C.prostratus Ceanothus Ceanothus prostratus \N \N \N \N \N 16197 P.sachalinense Phellodendron Phellodendron sachalinense \N \N \N \N \N 16198 C.canjerana Cabralea Cabralea canjerana \N \N \N \N \N 16199 A.tenuifolia Austrostipa Austrostipa tenuifolia \N \N \N \N \N 16200 \N varietas Carex viridula var. elatior \N \N \N \N \N 16201 S.parahyba Schizolobium Schizolobium parahyba Brazilian firetree,guapiruvu,parica \N \N \N \N 16202 \N subspecies Gaura hexandra subsp. gracilis \N \N \N \N \N 16203 T.anguina Trichosanthes cucumerina Trichosanthes anguina \N \N \N \N \N 16204 \N genus Roucheria \N \N \N \N \N 16205 A.salmoneus Amorphophallus Amorphophallus salmoneus \N \N \N \N \N 16206 C.kunzei Corynopuntia Corynopuntia kunzei \N \N \N \N \N 16207 C.verbenacea Cordia Cordia verbenacea \N \N \N \N \N 16208 \N forma Kniphofia laxiflora form B \N \N \N \N \N 16209 A.intermedius Asteriscus Asteriscus intermedius \N \N \N \N \N 18439 \N genus Jerdonia \N \N \N \N \N 16210 V.cotinifolium Viburnum Viburnum cotinifolium \N \N \N \N \N 16211 A.cissifolium Acer Acer cissifolium \N \N \N \N \N 16212 A.skinneri Androlepis Androlepis skinneri \N \N \N \N \N 16213 B.grandis Begonia Begonia grandis \N \N \N \N \N 16214 \N genus Mullerochloa \N \N \N \N \N 16215 A.s.n. Androsace Androsace sp. Anderberg s.n. \N \N \N \N \N 16216 P.aristata Plantago Plantago aristata largebracted plantain \N \N \N \N 16217 V.Louise' Viola Viola sp. 'Marie Louise' \N \N \N \N \N 16218 \N subspecies Artocarpus nitidus subsp. lingnannensis \N \N \N \N \N 16219 C.xanthotricha Castilleja Castilleja xanthotricha \N \N \N \N \N 16220 H.cuspidatum Heterostemma Heterostemma cuspidatum \N \N \N \N \N 16221 S.parviflora Sabia Sabia parviflora \N \N \N \N \N 16222 B.formosana Bletilla Bletilla formosana \N \N \N \N \N 16223 \N genus Kickxia \N \N \N \N \N 16224 P.barbiflora Psychotria Psychotria barbiflora \N \N \N \N \N 16225 L.nuttallianus Lotus Lotus nuttallianus \N \N \N \N \N 16226 C.gracilis Cayratia Cayratia gracilis \N \N \N \N \N 16227 T.floribunda Tabernaemontana Tabernaemontana floribunda \N \N \N \N \N 16228 B.robert-readii Billbergia Billbergia robert-readii \N \N \N \N \N 16229 L.461 Leiothrix Leiothrix sp. Andrade 461 \N \N \N \N \N 16230 S.pubigera Schefflera Schefflera pubigera \N \N \N \N \N 16231 T.peduncularis Triteleia Triteleia peduncularis long-rayed brodiaea \N \N \N \N 16232 P.calabrica Plocama Plocama calabrica \N \N \N \N \N 16233 \N genus Xylotheca \N \N \N \N \N 16234 E.grandis Eragrostis Eragrostis grandis \N \N \N \N \N 16235 P.graciliflora Psychotria Psychotria graciliflora \N \N \N \N \N 16236 P.andrearum Polyscias Polyscias andrearum \N \N \N \N \N 16237 C.argenteum Crocanthemum Crocanthemum argenteum \N \N \N \N \N 16238 \N genus Scopulophila \N \N \N \N \N 16239 I.rubrostriata Impatiens Impatiens rubrostriata \N \N \N \N \N 16240 M.aetheadenia Macaranga Macaranga aetheadenia \N \N \N \N \N 16241 B.angolensis Berkheya Berkheya angolensis \N \N \N \N \N 16242 \N genus Isolepis \N \N \N \N \N 16243 L.tisserantii Leersia Leersia tisserantii \N \N \N \N \N 16244 V.gayana Valdivia Valdivia gayana \N \N \N \N \N 16245 S.baudertii Streptocarpus Streptocarpus baudertii \N \N \N \N \N 16246 S.fimbriolata Sclerolaena Sclerolaena fimbriolata \N \N \N \N \N 16247 Q.merrillii Quercus Quercus merrillii \N \N \N \N \N 16248 V.minutiflora Valeriana Valeriana minutiflora \N \N \N \N \N 16249 C.spiralis Cyrtanthus Cyrtanthus spiralis \N \N \N \N \N 16250 I.1510 Irvingbaileya Irvingbaileya sp. Plunkett 1510 \N \N \N \N \N 16251 I.arachnoides Impatiens Impatiens arachnoides \N \N \N \N \N 16252 V.sample environmental samples Taxonomy:493874 Vulpia environmental sample \N \N \N \N \N 16253 L.fragrantissima Lonicera Lonicera fragrantissima \N \N \N \N \N 16254 F.puschkinioides Fessia Fessia puschkinioides \N \N \N \N \N 16255 T.6522 Tetrastigma Tetrastigma sp. 6522 \N \N \N \N \N 16256 L.amplexicaulis Leucopogon Leucopogon amplexicaulis \N \N \N \N \N 16257 P.cobanensis Pleurothallis Pleurothallis cobanensis \N \N \N \N \N 16258 \N genus Petrocoptis \N \N \N \N \N 16259 C.sp. Conyza Conyza sp. \N \N \N \N \N 16260 A.maxima Astrantia Astrantia maxima \N \N \N \N \N 16261 A.ciliatum Aeonium Aeonium ciliatum \N \N \N \N \N 16262 \N subspecies Gomphocarpus fruticosus subsp. fruticosus \N \N \N \N \N 16263 \N varietas Carex pseudocyperus var. fascicularis \N \N \N \N \N 16264 A.1141 Aulotandra Aulotandra cf. trigonocarpa Wilkin 1141 \N \N \N \N \N 16265 \N genus Penstemon \N \N \N \N \N 16266 P.vulgaris Pulicaria Pulicaria vulgaris \N \N \N \N \N 16267 L.viminea Lactuca Lactuca viminea \N \N \N \N \N 16268 C.longiflora Curcumorpha Curcumorpha longiflora \N \N \N \N \N 16269 A.pulvinata Aciachne Aciachne pulvinata \N \N \N \N \N 16270 I.sokotrana Indigofera Indigofera sokotrana \N \N \N \N \N 16271 A.pedunculata Achimenes Achimenes pedunculata \N \N \N \N \N 16272 R.ciliatiflora Ruellia Ruellia ciliatiflora \N \N \N \N \N 16273 V.guestphalica Viola Viola guestphalica \N \N \N \N \N 16274 \N genus Phyllodoce \N \N \N \N \N 16275 M.lanceolata Myrceugenia Myrceugenia lanceolata \N \N \N \N \N 16276 E.densifolia Encelia Encelia densifolia \N \N \N \N \N 16277 E.polystachya Eriochloa Eriochloa polystachya \N \N \N \N \N 16278 \N genus Deppea \N \N \N \N \N 16279 D.stuartii Diplopeltis Diplopeltis stuartii \N \N \N \N \N 16280 \N genus Macranthera \N \N \N \N \N 16281 P.stoloniformis Psathyrostachys Psathyrostachys stoloniformis \N \N \N \N \N 16282 \N genus Pycnostachys \N \N \N \N \N 16283 \N genus Roella \N \N \N \N \N 16284 C.squamulosum Calycogonium Calycogonium squamulosum \N \N \N \N \N 16285 C.2151 Carallia Carallia sp. Chase 2151 \N \N \N \N \N 16286 S.atlantica Strychnos Strychnos atlantica \N \N \N \N \N 16287 C.irrasa Crataegus Crataegus irrasa zigzagthorn \N \N \N \N 16288 S.intermedium Sarcostemma Sarcostemma intermedium \N \N \N \N \N 16289 \N varietas Aristida californica var. californica \N \N \N \N \N 16290 C.dinteri Cucumis Cucumis dinteri \N \N \N \N \N 16291 \N genus Lamprocephalus \N \N \N \N \N 16292 E.crassifolium Erodium Erodium crassifolium \N \N \N \N \N 16293 R.minusculus Rubus Rubus minusculus \N \N \N \N \N 16294 P.grandiflora Phacelia Phacelia grandiflora \N \N \N \N \N 16295 M.SH-2010 Macaranga Macaranga sp. SH-2010 \N \N \N \N \N 16296 K.grantii Kniphofia Kniphofia grantii \N \N \N \N \N 16297 C.compressa Calandrinia Calandrinia compressa \N \N \N \N \N 16298 A.latifolius Acorus Acorus latifolius \N \N \N \N \N 16299 \N genus Odontadenia \N \N \N \N \N 16300 M.azorica Myosotis Myosotis azorica \N \N \N \N \N 16301 A.suprafoliata Aloe Aloe suprafoliata \N \N \N \N \N 16302 \N genus Walleria \N \N \N \N \N 16303 C.coclensis Clusia Clusia coclensis \N \N \N \N \N 16304 M.acuminatissima Myrcia Myrcia acuminatissima \N \N \N \N \N 16305 F.alpina Festuca Festuca alpina \N \N \N \N \N 16306 P.kamogawaensis Potamogeton Potamogeton x kamogawaensis \N \N \N \N \N 18537 \N genus Barthlottia \N \N \N \N \N 16307 K.(a) Kunzea Kunzea aff. ericoides (a) \N \N \N \N \N 16308 C.repens Cliffortia Cliffortia repens \N \N \N \N \N 16309 S.bahioides Senecio Senecio bahioides \N \N \N \N \N 16310 A.halimus Atriplex Atriplex halimus Mediterranean saltbush,sea orache \N \N \N \N 16311 A.lonchophylla Arnica Arnica lonchophylla \N \N \N \N \N 16312 A.umbellata Aulax Aulax umbellata \N \N \N \N \N 16313 P.hirsutus Penstemon Penstemon hirsutus hairy beardtongue \N \N \N \N 16314 \N genus Amana \N \N \N \N \N 16315 F.oligosperma Fenerivia Fenerivia oligosperma \N \N \N \N \N 16316 C.septentrionalis Cyrtosia Cyrtosia septentrionalis \N \N \N \N \N 16317 \N varietas Carex deweyana var. senanensis \N \N \N \N \N 16318 S.brownii Staavia Staavia brownii \N \N \N \N \N 16319 L.deltoidea Lysimachia Lysimachia deltoidea \N \N \N \N \N 16320 F.villosa Fagonia Fagonia villosa \N \N \N \N \N 16321 E.helleborine Epipactis Epipactis helleborine \N \N \N \N \N 16322 G.puberum Glochidion Glochidion puberum \N \N \N \N \N 16323 \N genus Arabidopsis \N \N \N \N \N 16324 B.morii Byttneria Byttneria morii \N \N \N \N \N 16325 C.candicans Cerastium Cerastium candicans \N \N \N \N \N 16326 \N tribe Ricinocarpeae \N \N \N \N \N 16327 T.integerrima Taenidia Taenidia integerrima \N \N \N \N \N 16328 A.stylosus Amphisiphon Amphisiphon stylosus \N \N \N \N \N 16329 C.neglecta Crepis Crepis neglecta \N \N \N \N \N 16330 S.granulata Saxifraga Saxifraga granulata \N \N \N \N \N 16331 F.vargasiana Fuchsia Fuchsia vargasiana \N \N \N \N \N 16332 P.myosuros Plantago Plantago myosuros \N \N \N \N \N 16333 G.sarcodes Gomesa Gomesa sarcodes \N \N \N \N \N 16334 \N genus Achyrachaena \N \N \N \N \N 16335 A.stenolepis Astragalus Astragalus stenolepis \N \N \N \N \N 16336 S.malchairii Strychnos Strychnos malchairii \N \N \N \N \N 16337 \N genus Enneapogon \N \N \N \N \N 16338 A.minamitanianum Asarum Asarum minamitanianum \N \N \N \N \N 16339 A.gracilis Alvimia Alvimia gracilis \N \N \N \N \N 16340 G.s.n. Gratiola Gratiola sp. Wofford et al. s.n. \N \N \N \N \N 16341 \N genus Cleyera \N \N \N \N \N 16342 D.curranii Diospyros Diospyros curranii \N \N \N \N \N 16343 C.minutiflorum Capsicum Capsicum minutiflorum \N \N \N \N \N 16344 N.6 Neonauclea Neonauclea sp. 6 \N \N \N \N \N 16345 C.gueneri Chrysophthalmum Chrysophthalmum gueneri \N \N \N \N \N 16346 M.khasianus Mallotus Mallotus khasianus \N \N \N \N \N 16347 A.'Isabella' Astrotricha Astrotricha sp. 'Isabella' \N \N \N \N \N 16348 P.coriacea Pozoa Pozoa coriacea \N \N \N \N \N 16349 \N genus Guazuma \N \N \N \N \N 16350 R.brassii Ranunculus Ranunculus brassii \N \N \N \N \N 16351 P.umbonata Planchonella Planchonella umbonata \N \N \N \N \N 16352 D.sengteeanum Drepanostachyum Drepanostachyum sengteeanum \N \N \N \N \N 16353 B.morsei Begonia Begonia morsei \N \N \N \N \N 16354 \N no rank unclassified Spathicarpeae \N \N \N \N \N 16355 D.novae-guineae Dactyliophora Dactyliophora novae-guineae \N \N \N \N \N 16356 M.crinita Mammillaria Mammillaria crinita \N \N \N \N \N 16357 J.ancyrensis Jurinea Jurinea ancyrensis \N \N \N \N \N 16358 A.mauritiana Anthemis Anthemis mauritiana \N \N \N \N \N 16359 F.ovina Festuca Festuca ovina \N \N \N \N \N 16360 L.alatus Leucocarpus Leucocarpus alatus \N \N \N \N \N 16361 P.rigida Piloblephis Piloblephis rigida \N \N \N \N \N 16362 \N tribe Robinieae \N \N \N \N \N 16363 S.glabra Sinclairia Sinclairia glabra \N \N \N \N \N 16364 A.acanthocarpa Atriplex Atriplex acanthocarpa \N \N \N \N \N 16365 C.panamensis Cordia Cordia panamensis \N \N \N \N \N 16366 C.alchorneicarpus Croton Croton alchorneicarpus \N \N \N \N \N 16367 A.helodes Arachis Arachis helodes \N \N \N \N \N 16368 C.infortunatum Clerodendrum Clerodendrum infortunatum \N \N \N \N \N 16369 C.grandidentatus Centropogon Centropogon grandidentatus \N \N \N \N \N 16370 T.plebeium Trifolium Trifolium plebeium \N \N \N \N \N 16371 A.multistipula Andira Andira multistipula \N \N \N \N \N 16372 P.wuyishanensis Pleioblastus Pleioblastus wuyishanensis \N \N \N \N \N 16373 E.sarcostemmoides Euphorbia Euphorbia sarcostemmoides \N \N \N \N \N 16374 M.chamissois Miconia Miconia chamissois \N \N \N \N \N 16375 \N genus Ruizterania \N \N \N \N \N 16376 C.plumeriana Calyptronoma Calyptronoma plumeriana \N \N \N \N \N 16377 \N varietas Salvia dorrii var. dorrii \N \N \N \N \N 16378 T.guilielmi Trigonotis Trigonotis guilielmi \N \N \N \N \N 16379 G.willisii Grevillea Grevillea willisii \N \N \N \N \N 16380 R.sinofalconeri Rhododendron Rhododendron sinofalconeri \N \N \N \N \N 16381 E.batemanii Eriogonum Eriogonum batemanii \N \N \N \N \N 16382 S.arboreum Syzygium Syzygium arboreum \N \N \N \N \N 16383 R.edulis Rhagadiolus Rhagadiolus edulis \N \N \N \N \N 16384 D.acrotrichum Dasylirion Dasylirion acrotrichum \N \N \N \N \N 16385 S.39 Scabiosa Scabiosa sp. Albach 39 \N \N \N \N \N 16386 H.mollis Hamamelis Hamamelis mollis Chinese witch hazel \N \N \N \N 16387 H.imberbe Helictotrichon Helictotrichon imberbe \N \N \N \N \N 16388 S.bilabiata Striga Striga bilabiata \N \N \N \N \N 16389 O.gracilis Octomeria Octomeria gracilis \N \N \N \N \N 16390 C.serotina Cleistogenes Cleistogenes serotina \N \N \N \N \N 16391 P.clathrata Passiflora Passiflora clathrata \N \N \N \N \N 16392 I.rubens Ipomoea Ipomoea rubens \N \N \N \N \N 16393 \N subspecies Vernonia mespilifolia subsp. tomentosa \N \N \N \N \N 16394 O.chrysotricha Oldenlandia Oldenlandia chrysotricha \N \N \N \N \N 16395 \N varietas Ceanothus papillosus var. papillosus \N \N \N \N \N 16396 G.zeylanica Gastrodia Gastrodia zeylanica \N \N \N \N \N 16397 P.crebriflora Parsonsia Parsonsia crebriflora \N \N \N \N \N 16398 P.breweri Phacelia Phacelia breweri \N \N \N \N \N 16399 P.amplituba Pedicularis Pedicularis amplituba \N \N \N \N \N 16400 \N genus Campylosiphon \N \N \N \N \N 16401 P.rufescens Paraboea Paraboea rufescens \N \N \N \N \N 16402 S.s.n. Symplocos Symplocos sp. Prince s.n. \N \N \N \N \N 16403 J.potaninii Juncus Juncus potaninii \N \N \N \N \N 18733 \N genus Microsaccus \N \N \N \N \N 16404 \N subspecies Chisocheton pentandrus subsp. medius \N \N \N \N \N 16405 E.longiflora Ehretia Ehretia longiflora \N \N \N \N \N 16406 S.patagonicum Sisyrinchium Sisyrinchium patagonicum \N \N \N \N \N 16407 D.megacarpa Dioclea Dioclea megacarpa \N \N \N \N \N 16408 C.leptopoda Carex Carex leptopoda \N \N \N \N \N 16409 L.urceolata Ledebouria Ledebouria urceolata \N \N \N \N \N 95186 \N tribe Solaneae \N \N \N \N \N 16410 \N subspecies Eriosyce subgibbosa subsp. nigrihorrida \N \N \N \N \N 16411 I.rugosus Isodon Isodon rugosus \N \N \N \N \N 16412 \N genus Cymatocarpus \N \N \N \N \N 16413 R.mandshuricum Ribes Ribes mandshuricum \N \N \N \N \N 16414 S.yapa Sabal Sabal yapa \N \N \N \N \N 16415 C.hercegovina Campanula Campanula hercegovina \N \N \N \N \N 16416 I.tenuirostris Ipomoea Ipomoea tenuirostris \N \N \N \N \N 16417 A.vesicarius Astragalus Astragalus vesicarius \N \N \N \N \N 16418 A.vaginata Allenrolfea Allenrolfea vaginata \N \N \N \N \N 16419 W.gracilis Wahlenbergia Wahlenbergia gracilis \N \N \N \N \N 16420 \N varietas Dombeya elegans var. virescens \N \N \N \N \N 16421 C.bangii Canna Canna bangii \N \N \N \N \N 16422 P.P113 Physalis Physalis sp. P113 \N \N \N \N \N 16423 C.Rh-77 Ceriops Ceriops sp. KDAIS Rh-77 \N \N \N \N \N 16424 B.zhengyiana Begonia Begonia zhengyiana \N \N \N \N \N 16425 C.tomentosa Clutia Clutia tomentosa \N \N \N \N \N 16426 B.speciosus Bolusanthus Bolusanthus speciosus \N \N \N \N \N 16427 B.195 Begonia Begonia sp. Forrest 195 \N \N \N \N \N 16428 A.garapatica Alibertia Alibertia garapatica \N \N \N \N \N 16429 L.tilcarensis Lantana Lantana tilcarensis \N \N \N \N \N 16430 L.ilicifolius Lagochilus Lagochilus ilicifolius \N \N \N \N \N 16431 P.secundiflorus Penstemon Penstemon secundiflorus \N \N \N \N \N 16432 C.aromaticum Cinnamomum Cinnamomum aromaticum Chinese cinnamon,cassia-bark \N \N \N \N 16433 E.library unclassified Triticeae Elymus wawawaiensis/Elymus lanceolatus mixed EST library \N \N \N \N \N 16434 P.unguiculata Pseuduvaria Pseuduvaria unguiculata \N \N \N \N \N 16435 A.MAK-2008 Aubrieta Aubrieta sp. MAK-2008 \N \N \N \N \N 16436 C.elegans Cryptotaenia Cryptotaenia elegans \N \N \N \N \N 16437 A.colorata Armeria Armeria villosa subsp. longiaristata x Armeria colorata \N \N \N \N \N 16438 S.oryzifolium Sedum Sedum oryzifolium \N \N \N \N \N 16439 P.vietnamense Paphiopedilum Paphiopedilum vietnamense \N \N \N \N \N 16440 P.glaucescens Protium Protium glaucescens \N \N \N \N \N 16441 R.tibeticum Rheum Rheum tibeticum \N \N \N \N \N 16442 E.margaritacea Eleocharis Eleocharis margaritacea \N \N \N \N \N 16443 R.marauensis Renvoizea Renvoizea marauensis \N \N \N \N \N 16444 R.eurycodon Ruellia Ruellia eurycodon \N \N \N \N \N 16445 O.orthopoda Oxalis Oxalis orthopoda \N \N \N \N \N 16446 \N genus Enkianthus \N \N \N \N \N 16447 P.norvegicum Polygonum Polygonum norvegicum \N \N \N \N \N 16448 D.botryoides Drimiopsis Drimiopsis botryoides \N \N \N \N \N 16449 A.parviflora Aristolochia Aristolochia parviflora \N \N \N \N \N 16450 \N subspecies Crepis vesicaria subsp. stellata \N \N \N \N \N 16451 \N genus Petkovia \N \N \N \N \N 16452 S.giuseppi Sempervivum Sempervivum giuseppi \N \N \N \N \N 16453 R.orthantha Rigidella Rigidella orthantha \N \N \N \N \N 16454 C.calliopsidea Coreopsis Coreopsis calliopsidea \N \N \N \N \N 16455 G.mexiae Galphimia Galphimia mexiae \N \N \N \N \N 16456 \N varietas Pteronia camphorata var. camphorata \N \N \N \N \N 16457 A.lyallii Aciphylla Aciphylla lyallii \N \N \N \N \N 16458 K.(g) Kunzea Kunzea aff. ericoides (g) \N \N \N \N \N 16459 F.citrifolia Ficus Ficus citrifolia wild banyan tree \N \N \N \N 16460 A.chrysocephalum Allium Allium chrysocephalum \N \N \N \N \N 16461 P.spinosa Pultenaea Pultenaea spinosa \N \N \N \N \N 16462 E.littoralis Ernodea Ernodea littoralis \N \N \N \N \N 16463 L.cylindrocarpa Lysipomia Lysipomia cylindrocarpa \N \N \N \N \N 16464 C.murauchii Camellia Camellia murauchii \N \N \N \N \N 16465 \N genus Meriandra \N \N \N \N \N 16466 C.floridus Calycanthus Calycanthus floridus Carolina-allspice,eastern sweetshrub \N \N \N \N 16467 P.florindae Primula Primula florindae \N \N \N \N \N 16468 C.microscopica Constantia Constantia microscopica \N \N \N \N \N 16469 \N genus Heimia \N \N \N \N \N 16470 \N subspecies Carex ornithopoda subsp. ornithopodioides \N \N \N \N \N 16471 B.graminea Bellida Bellida graminea \N \N \N \N \N 16472 B.wrightii Basiphyllaea Basiphyllaea wrightii \N \N \N \N \N 16473 S.filiformis Sagittaria Sagittaria filiformis \N \N \N \N \N 16474 A.hondurensis Allenanthus Allenanthus hondurensis \N \N \N \N \N 16475 A.microphylla Aspalathus Aspalathus microphylla \N \N \N \N \N 16476 D.lutescens Disporum Disporum lutescens \N \N \N \N \N 16477 B.africana Burkea Burkea africana \N \N \N \N \N 16478 E.uralensis Euphorbia Euphorbia uralensis \N \N \N \N \N 16479 P.hemisphaericum Phyteuma Phyteuma hemisphaericum \N \N \N \N \N 16480 H.goebelii Hymenostephium Hymenostephium goebelii \N \N \N \N \N 16481 C.spathulata Cliffortia Cliffortia spathulata \N \N \N \N \N 16482 \N no rank Delphinium 'MagicFountains dark blue' \N \N \N \N \N 16483 A.edgeworthii Amphicarpaea Amphicarpaea edgeworthii Chinese hog-peanut,yabumame \N \N \N \N 16484 A.menziesii Arbutus Arbutus menziesii Pacific madrone,madrone \N \N \N \N 16485 S.multiflora Sarcolaena Sarcolaena multiflora \N \N \N \N \N 16486 H.lobata Heliciopsis Heliciopsis lobata \N \N \N \N \N 16487 B.krylovianum Bupleurum Bupleurum krylovianum \N \N \N \N \N 16488 \N varietas Carex aquatilis var. substricta \N \N \N \N \N 16489 A.borealimongolicus Astragalus Astragalus borealimongolicus \N \N \N \N \N 16490 A.lobata Adenia Adenia lobata \N \N \N \N \N 16491 \N genus Vanda \N \N \N \N \N 16492 R.marginatus Ranunculus Ranunculus marginatus \N \N \N \N \N 16493 G.anomala Geschollia Geschollia anomala \N \N \N \N \N 16494 M.micrantha Mikania Mikania micrantha bittervine,climbing hempweed,mile-a-minute \N \N \N \N 16495 I.pseudobuxus Ilex Ilex pseudobuxus \N \N \N \N \N 16496 G.crassifolius Gladiolus Gladiolus crassifolius \N \N \N \N \N 16497 R.vitis-idaea Rhododendron Rhododendron vitis-idaea \N \N \N \N \N 16498 D.domingensis Danthonia Danthonia domingensis \N \N \N \N \N 16499 C.zedoaria Curcuma Curcuma zedoaria zedoary \N \N \N \N 16500 G.eucleoides Glochidion Glochidion eucleoides \N \N \N \N \N 16501 H.californica Hulsea Hulsea californica San Diego sunflower \N \N \N \N 16502 S.robusta Sidalcea Sidalcea robusta Butte county checkerbloom \N \N \N \N 16503 P.hansenii Pericallis Pericallis hansenii \N \N \N \N \N 16504 \N genus Habracanthus \N \N \N \N \N 16505 A.nudicaulis Alcea Alcea nudicaulis \N \N \N \N \N 16506 C.conferta Campanula Campanula conferta \N \N \N \N \N 16507 G.patula Garnotia Garnotia patula \N \N \N \N \N 16508 \N genus Hippocratea \N \N \N \N \N 16509 V.canadensis Verbena Verbena canadensis \N \N \N \N \N 16510 P.lotungensis Parakmeria Parakmeria lotungensis \N \N \N \N \N 16511 V.piroliformis Veronica Veronica piroliformis \N \N \N \N \N 16512 E.hellwigii Erycibe Erycibe hellwigii \N \N \N \N \N 16513 E.haploclada Echinochloa Echinochloa haploclada \N \N \N \N \N 16514 F.exasperata Ficus Ficus exasperata \N \N \N \N \N 16515 \N genus Schlechterella \N \N \N \N \N 16516 R.suffruticosus Rumex Rumex suffruticosus \N \N \N \N \N 16517 \N genus Cladopus \N \N \N \N \N 16518 G.iyanolensis Gonolobus Gonolobus iyanolensis \N \N \N \N \N 16519 I.dendroides Indigofera Indigofera dendroides \N \N \N \N \N 16520 D.longifolium Dipcadi Dipcadi longifolium \N \N \N \N \N 16521 \N genus Apluda \N \N \N \N \N 16522 M.conferta Maxillaria Maxillaria conferta \N \N \N \N \N 16523 C.euchlora Cousinia Cousinia euchlora \N \N \N \N \N 16524 \N genus Angraecum \N \N \N \N \N 16525 S.armerioides Stenotus Stenotus armerioides \N \N \N \N \N 16526 S.cabulica Salvia Salvia cabulica \N \N \N \N \N 16527 T.matsumurae Tylophora Tylophora matsumurae \N \N \N \N \N 16528 C.hildebrandtii Clerodendrum Clerodendrum hildebrandtii \N \N \N \N \N 16529 A.alpina Arctous Arctous alpina alpine bearberry,mountain bearberry,torpedoberry \N \N \N \N 16530 G.spathulata Gaillardia Gaillardia spathulata \N \N \N \N \N 16531 G.4285 Gentianella Gentianella sp. Halloy 4285 \N \N \N \N \N 16532 P.persicus Psephellus Psephellus persicus \N \N \N \N \N 16533 E.leucographus Echinops Echinops leucographus \N \N \N \N \N 16534 D.denudans Dendrobium Dendrobium denudans \N \N \N \N \N 16535 D.trifida Dodonaea Dodonaea trifida \N \N \N \N \N 16536 A.elegans Anticlea Anticlea elegans \N \N \N \N \N 16537 \N genus Geocaulon \N \N \N \N \N 16538 D.knappii Dianthus Dianthus knappii \N \N \N \N \N 16539 L.80 Lupinus Lupinus sp. Oropeza 80 \N \N \N \N \N 16540 G.peruviana Gentianella Gentianella peruviana \N \N \N \N \N 16541 \N genus Liparophyllum \N \N \N \N \N 16542 I.hispida Indosasa Indosasa hispida \N \N \N \N \N 16543 \N genus Hemicrambe \N \N \N \N \N 16544 S.juncea Schoenolaena Schoenolaena juncea \N \N \N \N \N 16545 C.multijuga Copaifera Copaifera multijuga Brazilian copaiba \N \N \N \N 16546 G.tuberculosa Gastrorchis Gastrorchis tuberculosa \N \N \N \N \N 16547 \N varietas Pieris japonica var. taiwanensis \N \N \N \N \N 16548 A.peregrina Anthemis Anthemis peregrina \N \N \N \N \N 16549 C.tarsodes Craterocapsa Craterocapsa tarsodes \N \N \N \N \N 16550 A.kirkii Adenia Adenia kirkii \N \N \N \N \N 16551 V.reichenbachiana Viola Viola reichenbachiana \N \N \N \N \N 16552 S.odorata Spiranthes Spiranthes odorata \N \N \N \N \N 16553 L.costata Labramia Labramia costata \N \N \N \N \N 16554 G.chomutovae Gagea Gagea chomutovae \N \N \N \N \N 16555 E.hirsutum Epilobium Epilobium hirsutum \N \N \N \N \N 16556 A.leptodictya Arachnothryx Arachnothryx leptodictya \N \N \N \N \N 16557 G.784 Globba Globba sp. Lindstrom 784 \N \N \N \N \N 16558 \N genus Acanthothamnus \N \N \N \N \N 16559 G.obliquus Gastrochilus Gastrochilus obliquus \N \N \N \N \N 16560 M.333 Meliosma Meliosma aff. cuneifolia M. J. Moore 333 \N \N \N \N \N 16561 V.tachirensis Valeriana Valeriana tachirensis \N \N \N \N \N 16562 K.villosa Kohleria Kohleria villosa \N \N \N \N \N 16563 P.pinnata Primula Primula pinnata \N \N \N \N \N 16564 E.OM473 Eulophia Eulophia sp. OM473 \N \N \N \N \N 16565 S.johorensis Shorea Shorea johorensis \N \N \N \N \N 16566 C.recurvata Coryphantha Coryphantha recurvata \N \N \N \N \N 16567 A.agardhii Andryala Andryala agardhii \N \N \N \N \N 16568 T.laxmannii Typha Typha laxmannii \N \N \N \N \N 16569 N.reynaudiana Neyraudia Neyraudia reynaudiana \N \N \N \N \N 16570 \N genus Douepea \N \N \N \N \N 16571 L.maackii Lonicera Lonicera maackii amur honeysuckle \N \N \N \N 16572 \N subspecies Vicia villosa subsp. eriocarpa \N \N \N \N \N 16573 P.macrophylla Polysphaeria Polysphaeria macrophylla \N \N \N \N \N 16574 L.puberulum Lycium Lycium puberulum downy desert-thorn \N \N \N \N 16575 T.rhombifolia Tarasa Tarasa rhombifolia \N \N \N \N \N 16576 A.bakaliensis Astragalus Astragalus bakaliensis \N \N \N \N \N 16577 B.50 Bassia Bassia sp. Palmer 50 \N \N \N \N \N 16578 D.ischaemum Digitaria Digitaria ischaemum smooth crabgrass \N \N \N \N 16579 C.multiflorum Colchicum Colchicum multiflorum \N \N \N \N \N 16580 M.ursina Mimosa Mimosa ursina \N \N \N \N \N 16581 F.prolixa Ficus Ficus prolixa \N \N \N \N \N 16582 A.hirta Amasonia Amasonia hirta \N \N \N \N \N 16583 O.polysperma Ononis Ononis polysperma \N \N \N \N \N 16584 M.angustissima Maxillaria Maxillaria angustissima \N \N \N \N \N 16585 M.metallica Malaxis Malaxis metallica \N \N \N \N \N 16586 O.mogadorensis Ononis Ononis mogadorensis \N \N \N \N \N 16587 A.sample environmental samples asterid environmental sample \N \N \N \N \N 16588 C.kelamensis Coelogyne Coelogyne kelamensis \N \N \N \N \N 16589 \N genus Adenocarpus \N \N \N \N \N 16590 D.pinetorum Dalea Dalea pinetorum \N \N \N \N \N 16591 S.kopetdaghensis Salsola Salsola kopetdaghensis \N \N \N \N \N 16592 P.inconspicua Palaua Palaua inconspicua \N \N \N \N \N 16593 R.hybridum Rheum Rheum x hybridum garden rhubarb,rhubarb \N \N \N \N 16594 D.ptarmicifolia Dodonaea Dodonaea ptarmicifolia \N \N \N \N \N 16595 F.herrerae Ferocactus Ferocactus herrerae \N \N \N \N \N 16596 A.lysicephala Asteromyrtus Asteromyrtus lysicephala \N \N \N \N \N 16597 F.turbinata Ficus Ficus turbinata \N \N \N \N \N 16598 S.dshugdshurica Salix Salix dshugdshurica \N \N \N \N \N 16599 H.angustum Hylotelephium Hylotelephium angustum \N \N \N \N \N 16600 \N genus Scagea \N \N \N \N \N 16601 T.monospermum Trymalium Trymalium monospermum \N \N \N \N \N 16602 A.nana Acleisanthes Acleisanthes nana \N \N \N \N \N 16603 E.duckei Elizabetha Elizabetha duckei \N \N \N \N \N 16604 M.fosbergii Munnozia Munnozia fosbergii \N \N \N \N \N 16605 C.diphylla Cranichis Cranichis diphylla \N \N \N \N \N 16606 S.malviflora Sidalcea Sidalcea malviflora checker mallow \N \N \N \N 16607 P.alectroides Parastriga Parastriga alectroides \N \N \N \N \N 16608 H.sample environmental samples Taxonomy:662429 Haloragaceae environmental sample \N \N \N \N \N 16609 E.andina Eschweilera Eschweilera andina \N \N \N \N \N 16610 L.8656/c Linnaeopsis Linnaeopsis sp. 8656/c \N \N \N \N \N 16611 P.multicaulis Potentilla Potentilla multicaulis \N \N \N \N \N 16612 \N genus Dipteronia \N \N \N \N \N 16613 C.OM&MvdB24 Combretum Combretum sp. OM&MvdB24 \N \N \N \N \N 16614 S.hirsuta Sinningia Sinningia hirsuta \N \N \N \N \N 16615 M.sinuata Mutisia Mutisia sinuata \N \N \N \N \N 16616 M.paracoccinea Musa Musa paracoccinea \N \N \N \N \N 16617 S.graminea Saussurea Saussurea graminea \N \N \N \N \N 16618 T.pusilla Tofieldia Tofieldia pusilla \N \N \N \N \N 16619 A.macranthum Allium Allium macranthum \N \N \N \N \N 16620 \N genus Hesperostipa \N \N \N \N \N 16621 C.orientalis Cenchrus Cenchrus orientalis \N \N \N \N \N 16622 C.dahurica Crataegus Crataegus dahurica \N \N \N \N \N 16623 H.serra Haloragis Haloragis serra \N \N \N \N \N 16624 G.diablophyllum Gastrolobium Gastrolobium diablophyllum \N \N \N \N \N 16625 \N genus Commiphora \N \N \N \N \N 16626 N.distillatoria Nepenthes Nepenthes distillatoria \N \N \N \N \N 16627 \N genus Chondrostylis \N \N \N \N \N 16628 C.maraniona Coursetia Coursetia maraniona \N \N \N \N \N 16629 G.estebani Galium Galium estebani \N \N \N \N \N 16630 L.praetermissus Lotus Lotus praetermissus \N \N \N \N \N 16631 L.quichensis Lisianthius Lisianthius quichensis \N \N \N \N \N 16632 C.graciliflora Camissonia Camissonia graciliflora hill suncup \N \N \N \N 16633 \N tribe Mutisieae \N \N \N \N \N 16634 P.esfandiarii Pseudofortuynia Pseudofortuynia esfandiarii \N \N \N \N \N 16635 A.trichophylla Acis Acis trichophylla \N \N \N \N \N 16636 D.bolivarensis Diclidanthera Diclidanthera bolivarensis \N \N \N \N \N 16637 S.pennata Stipagrostis Stipagrostis pennata \N \N \N \N \N 16638 T.tomentosa Trema Trema tomentosa \N \N \N \N \N 16639 C.roborowskii Chaetoseris Chaetoseris roborowskii \N \N \N \N \N 16640 H.ariadna Hoya Hoya ariadna \N \N \N \N \N 16641 F.bicolor Fascicularia Fascicularia bicolor \N \N \N \N \N 16642 E.barthelowanus Echinocereus Echinocereus barthelowanus \N \N \N \N \N 16643 A.azutavicum Allium Allium azutavicum \N \N \N \N \N 16644 S.arbusculoides Salix Salix arbusculoides \N \N \N \N \N 16645 M.astroplocama Miconia Miconia astroplocama \N \N \N \N \N 16646 R.davurica Rhamnus Rhamnus davurica \N \N \N \N \N 16647 P.pruinosus Penstemon Penstemon pruinosus \N \N \N \N \N 16648 L.nissolia Lathyrus Lathyrus nissolia \N \N \N \N \N 16649 D.platycarpa Draba Draba platycarpa broadpod draba \N \N \N \N 16650 C.micans Croton Croton micans \N \N \N \N \N 16651 J.boliviana Juglans Juglans boliviana \N \N \N \N \N 16652 A.floribunda Alseis Alseis floribunda \N \N \N \N \N 16653 D.pseudopyramidalis Deiregyne Deiregyne pseudopyramidalis \N \N \N \N \N 16654 S.plumosum Symphyotrichum Symphyotrichum plumosum \N \N \N \N \N 16655 G.piasezkii Gentiana Gentiana piasezkii \N \N \N \N \N 16656 G.rongklanus Goniothalamus Goniothalamus rongklanus \N \N \N \N \N 16657 \N genus Mesomelaena \N \N \N \N \N 16658 I.hederacea Ipomoea Ipomoea hederacea \N \N \N \N \N 16659 L.gloeosperma Lathyrus Lathyrus gloeosperma \N \N \N \N \N 16660 D.bolusiana Disperis Disperis bolusiana \N \N \N \N \N 16661 \N subspecies Sidalcea malviflora subsp. purpurea \N \N \N \N \N 16662 F.caroliniensis Frasera Frasera caroliniensis \N \N \N \N \N 16663 D.afghanicum Delphinium Delphinium afghanicum \N \N \N \N \N 16664 \N genus Munnozia \N \N \N \N \N 16665 P.comosa Pseudeminia Pseudeminia comosa \N \N \N \N \N 16666 \N family Strelitziaceae bird-of-paradise family \N \N \N \N 16667 M.s.n. Marcgravia Marcgravia sp. Anderberg s.n. \N \N \N \N \N 16668 J.solanifolia Jacquemontia Jacquemontia solanifolia \N \N \N \N \N 16669 E.radians Euphorbia Euphorbia radians \N \N \N \N \N 16670 \N varietas Carex communis var. amplisquama \N \N \N \N \N 16671 O.euneura Oxandra Oxandra euneura \N \N \N \N \N 16672 B.terrestris Brodiaea Brodiaea terrestris \N \N \N \N \N 16673 E.sp. Epacris Epacris sp. \N \N \N \N \N 16674 \N subfamily Lomandroideae \N \N \N \N \N 16675 J.serrata Jagera Jagera serrata \N \N \N \N \N 16676 P.suaveolens Populus Populus suaveolens Mongolian poplar,tian yang \N \N \N \N 16677 P.pterotum Philodendron Philodendron pterotum \N \N \N \N \N 16678 F.desmoides Friesodielsia Friesodielsia desmoides \N \N \N \N \N 16679 E.anthonyi Euphorbia Euphorbia anthonyi \N \N \N \N \N 16680 C.tenuisepala Chamaecrista Chamaecrista tenuisepala \N \N \N \N \N 16681 S.acanthodes Scolosanthus Scolosanthus acanthodes \N \N \N \N \N 16682 V.triangulifolia Viola Viola triangulifolia \N \N \N \N \N 16683 \N genus Macrosolen \N \N \N \N \N 16684 C.clandestinus Cenchrus Cenchrus clandestinus \N \N \N \N \N 16685 P.cubensis Pinguicula Pinguicula cubensis \N \N \N \N \N 16686 C.esulifolium Comesperma Comesperma esulifolium \N \N \N \N \N 16687 A.trichoachaenia Abrotanella Abrotanella trichoachaenia \N \N \N \N \N 16688 E.nauseosa Ericameria Ericameria nauseosa rubber rabbitbrush \N \N \N \N 16689 J.arenaria Jovibarba Jovibarba arenaria \N \N \N \N \N 16690 B.flava Burmannia Burmannia flava \N \N \N \N \N 16691 M.semiamplexicaulis Myosotis Myosotis semiamplexicaulis \N \N \N \N \N 16692 L.corymbulosum Linum Linum corymbulosum \N \N \N \N \N 16693 P.badia Pinanga Pinanga badia \N \N \N \N \N 16694 C.tangerina Citrus Citrus tangerina dancy tangerine \N \N \N \N 16695 A.exaltata Asclepias Asclepias exaltata \N \N \N \N \N 16696 R.sanctus Rubus Rubus sanctus \N \N \N \N \N 16697 T.phlomoides Tetrapterys Tetrapterys phlomoides \N \N \N \N \N 16698 H.excelsa Hortia Hortia excelsa \N \N \N \N \N 16699 O.cheesemanii Olearia Olearia cheesemanii \N \N \N \N \N 16700 C.cardiochila Cyrtochiloides Cyrtochiloides cardiochila \N \N \N \N \N 16701 T.urschii Tinopsis Tinopsis urschii \N \N \N \N \N 16702 B.grandiflora Blandfordia Blandfordia grandiflora \N \N \N \N \N 16703 A.parviflora Agave Agave parviflora \N \N \N \N \N 16704 \N no rank Bignoniaceae incertae sedis \N \N \N \N \N 16705 D.LYJ-2011a Dichocarpum Dichocarpum sp. LYJ-2011a \N \N \N \N \N 16706 \N genus Aptosimum \N \N \N \N \N 16707 G.salicifolia Guatteria Guatteria salicifolia \N \N \N \N \N 16708 \N genus Elleanthus \N \N \N \N \N 16709 A.inundata Anaxagorea Anaxagorea inundata \N \N \N \N \N 16710 D.sarapiquiensis Dichaea Dichaea sarapiquiensis \N \N \N \N \N 16711 A.hymenorrhizum Allium Allium hymenorrhizum \N \N \N \N \N 16712 T.alba Thunia Thunia alba \N \N \N \N \N 16713 S.microphyllum Sphyrospermum Sphyrospermum microphyllum \N \N \N \N \N 16714 S.grandiflorus Styrax Styrax grandiflorus \N \N \N \N \N 16715 H.tsangii Hoya Hoya tsangii \N \N \N \N \N 16716 H.reniformis Holostylis Holostylis reniformis \N \N \N \N \N 16717 \N genus Balaustion \N \N \N \N \N 16718 R.amurensis Ranunculus Ranunculus amurensis \N \N \N \N \N 16719 P.trifoliatus Platylophus Platylophus trifoliatus white-elder \N \N \N \N 16720 A.shelkovnikovii Allium Allium shelkovnikovii \N \N \N \N \N 16721 P.dolichotrichum Piper Piper dolichotrichum \N \N \N \N \N 16722 C.cerasinus Corybas Corybas cerasinus \N \N \N \N \N 16723 N.s.n. Nardus Nardus sp. Hodkinson s.n. \N \N \N \N \N 16724 \N genus Chrysolaena \N \N \N \N \N 16725 D.sprengelianum Dasyphyllum Dasyphyllum sprengelianum \N \N \N \N \N 16726 P.pentherianum Pterygodium Pterygodium pentherianum \N \N \N \N \N 16727 C.cristata Celosia Celosia cristata cultivated cockscomb \N \N \N \N 16728 T.oblonga Tylophora Tylophora oblonga \N \N \N \N \N 16729 C.spicata Coccoloba Coccoloba spicata \N \N \N \N \N 16730 P.boliviana Philibertia Philibertia boliviana \N \N \N \N \N 16731 E.neesii Elegia Elegia neesii \N \N \N \N \N 16732 C.pluviosa Caesalpinia Caesalpinia pluviosa \N \N \N \N \N 16733 P.grafii Pitcairnia Pitcairnia grafii \N \N \N \N \N 16734 \N tribe Gastrodieae \N \N \N \N \N 16735 S.ficoides Senecio Senecio ficoides \N \N \N \N \N 16736 C.paradoxa Combera Combera paradoxa \N \N \N \N \N 16737 R.dichroanthum Rhododendron Rhododendron dichroanthum \N \N \N \N \N 16738 \N genus Tanacetopsis \N \N \N \N \N 16739 \N tribe Plumerieae \N \N \N \N \N 16740 C.bella Centaurea Centaurea bella \N \N \N \N \N 16741 P.aretioides Paepalanthus Paepalanthus aretioides \N \N \N \N \N 16742 H.homalocarpum Homalosciadium Homalosciadium homalocarpum \N \N \N \N \N 16743 E.edulis Euterpe Euterpe edulis assai palm,jicara \N \N \N \N 16744 \N genus Zea \N \N \N \N \N 16745 S.nemoralis Solidago Solidago nemoralis gray goldenrod,oldfield goldenrod \N \N \N \N 16746 C.etruscus Crocus Crocus etruscus \N \N \N \N \N 16747 \N genus Xeranthemum \N \N \N \N \N 16748 J.griffithiana Jansenella Jansenella griffithiana \N \N \N \N \N 16749 C.arborea Crambe Crambe arborea \N \N \N \N \N 16750 P.trifoliolatum Platymiscium Platymiscium trifoliolatum \N \N \N \N \N 16751 N.chrysotricha Neolitsea Neolitsea chrysotricha \N \N \N \N \N 16752 P.pallasii Primula Primula pallasii \N \N \N \N \N 16753 \N subspecies Holboellia latifolia subsp. latifolia \N \N \N \N \N 16754 \N genus Eubotrys \N \N \N \N \N 16755 P.lucida Payena Payena lucida \N \N \N \N \N 16756 A.dregei Arctotis Arctotis dregei \N \N \N \N \N 16757 \N family Huaceae \N \N \N \N \N 16758 M.oligophylla Mimosa Mimosa oligophylla \N \N \N \N \N 16759 B.major Bactris Bactris major beach palm,biscoyol,hiuscoyol,prickly palm \N \N \N \N 16760 A.mariae-reginae Aechmea Aechmea mariae-reginae \N \N \N \N \N 16761 N.lingulata Nymphaea Nymphaea lingulata \N \N \N \N \N 16762 G.lobata Gagria Gagria lobata \N \N \N \N \N 16763 P.pacifica Pedicularis Pedicularis pacifica \N \N \N \N \N 16764 L.klainei Librevillea Librevillea klainei ngaba \N \N \N \N 16765 \N varietas Heteromorpha arborescens var. arborescens \N \N \N \N \N 16766 D.beesianum Delphinium Delphinium beesianum \N \N \N \N \N 16767 M.albescens Macaranga Macaranga albescens \N \N \N \N \N 16768 S.multisetosa Suessenguthia Suessenguthia multisetosa \N \N \N \N \N 16769 B.circumserrata Berberis Berberis circumserrata \N \N \N \N \N 16770 D.appendiculatum Disterigma Disterigma appendiculatum \N \N \N \N \N 16771 S.polycolea Saussurea Saussurea polycolea \N \N \N \N \N 16772 \N genus Averrhoa \N \N \N \N \N 16773 E.sinuatum Elatostema Elatostema sinuatum \N \N \N \N \N 16774 \N genus Zenobia \N \N \N \N \N 16775 \N genus Cladrastis \N \N \N \N \N 16776 \N varietas Vicia narbonensis var. jordanica \N \N \N \N \N 16777 M.excelsa Milicia Milicia excelsa African teak,iroko,mvule,odum \N \N \N \N 16778 B.eradicatum Batrachium Batrachium eradicatum \N \N \N \N \N 16779 \N subspecies Aspalathus shawii subsp. shawii \N \N \N \N \N 16780 M.zuihoensis Machilus Machilus zuihoensis \N \N \N \N \N 16781 O.spruneri Ophrys Ophrys spruneri \N \N \N \N \N 16782 \N genus Paracoffea \N \N \N \N \N 16783 T.microcarpa Taeckholmia Taeckholmia microcarpa \N \N \N \N \N 16784 D.NSW731460 Diuris Diuris aff. semilunulata NSW731460 \N \N \N \N \N 16785 V.changii Viola Viola changii \N \N \N \N \N 16786 B.gracilis Brachyscome Brachyscome gracilis \N \N \N \N \N 16787 L.quadriflora Lysimachia Lysimachia quadriflora \N \N \N \N \N 16788 A.macroura Asclepias Asclepias macroura \N \N \N \N \N 16789 \N genus Onosmodium \N \N \N \N \N 16790 Q.guajavifolia Quercus Quercus guajavifolia \N \N \N \N \N 16791 I.cyathiflora Impatiens Impatiens cyathiflora \N \N \N \N \N 16792 C.crassiflora Cuphea Cuphea crassiflora \N \N \N \N \N 16793 G.pygmaea Genlisea Genlisea pygmaea \N \N \N \N \N 16794 N.ferruginea Nasa Nasa ferruginea \N \N \N \N \N 16795 H.carvifolia Holandrea Holandrea carvifolia \N \N \N \N \N 16796 E.barbatum Exellodendron Exellodendron barbatum \N \N \N \N \N 16797 P.ledermannii Pimpinella Pimpinella ledermannii \N \N \N \N \N 16798 A.clathratum Allium Allium clathratum \N \N \N \N \N 16799 C.viminalis Callistemon Callistemon viminalis \N \N \N \N \N 16800 \N genus Cirrhaea \N \N \N \N \N 16801 E.fimbriata Episcia Episcia fimbriata \N \N \N \N \N 16802 K.komarovii Kaschgaria Kaschgaria komarovii \N \N \N \N \N 16803 H.macowaniana Heliophila Heliophila macowaniana \N \N \N \N \N 16804 \N genus Raspalia \N \N \N \N \N 16805 \N genus Zizaniopsis \N \N \N \N \N 16806 C.beccarii Coelogyne Coelogyne beccarii \N \N \N \N \N 16807 M.jeffreyana Muellerargia Muellerargia jeffreyana \N \N \N \N \N 16808 V.pulverulentum Verbascum Verbascum pulverulentum \N \N \N \N \N 16809 G.hystrix Genista Genista hystrix \N \N \N \N \N 16810 S.forte Syzygium Syzygium forte \N \N \N \N \N 16811 M.4983 Machaonia Machaonia sp. McDowell et al. 4983 \N \N \N \N \N 16812 C.umbellata Comandra Comandra umbellata bastard toadflax \N \N \N \N 16813 T.leptocaule Thesium Thesium leptocaule \N \N \N \N \N 16814 S.microrrhynchum Satyrium Satyrium microrrhynchum \N \N \N \N \N 16815 P.compactum Pachyphytum Pachyphytum compactum \N \N \N \N \N 16816 \N genus Stenosiphonium \N \N \N \N \N 16817 \N varietas Ceanothus megacarpus var. megacarpus \N \N \N \N \N 16818 E.rotundifolia Eremophila Eremophila rotundifolia \N \N \N \N \N 16819 P.longifolia Picrosia Picrosia longifolia \N \N \N \N \N 16820 \N genus Trachystylis \N \N \N \N \N 16821 A.jorullensis Aristida Aristida jorullensis \N \N \N \N \N 16822 P.melanocladum Piper Piper melanocladum \N \N \N \N \N 16823 \N subspecies Prunus ilicifolia subsp. ilicifolia holly-leaf cherry,islay \N \N \N \N 16824 A.bernardii Aquilegia Aquilegia bernardii \N \N \N \N \N 16825 S.oligantha Sebaea Sebaea oligantha \N \N \N \N \N 16826 P.consanguineum Piper Piper consanguineum \N \N \N \N \N 16827 S.cordierorum Synima Synima cordierorum \N \N \N \N \N 16828 P.mannianus Phyllanthus Phyllanthus mannianus \N \N \N \N \N 16829 C.speciosa Caralluma Caralluma speciosa \N \N \N \N \N 16830 O.tenuifolia Oxalis Oxalis tenuifolia \N \N \N \N \N 16831 \N genus Orychophragmus \N \N \N \N \N 16832 P.canescens Psammogeton Psammogeton canescens \N \N \N \N \N 16833 \N genus Suriana \N \N \N \N \N 16834 G.lilloi Galium Galium lilloi \N \N \N \N \N 16835 E.fontanum Eutrema Eutrema fontanum \N \N \N \N \N 16836 E.sesquifolium Elatostema Elatostema sesquifolium \N \N \N \N \N 16837 C.rex Cattleya Cattleya rex \N \N \N \N \N 16838 S.correae Spachea Spachea correae \N \N \N \N \N 16839 P.elegans Pentaschistis Pentameris elegans \N \N \N \N \N 16840 M.revoluta Megalochlamys Megalochlamys revoluta \N \N \N \N \N 16841 P.epihydrus Potamogeton Potamogeton epihydrus \N \N \N \N \N 16842 \N genus Castanopsis \N \N \N \N \N 16843 S.lindleyi Sinningia Sinningia lindleyi \N \N \N \N \N 16844 \N genus Acanthocalyx \N \N \N \N \N 16845 C.platyloba Cuscuta Cuscuta platyloba \N \N \N \N \N 16846 D.opuntioides Dendrophthora Dendrophthora opuntioides \N \N \N \N \N 16847 V.macrocephalum Viburnum Viburnum macrocephalum \N \N \N \N \N 16848 S.reinii Salix Salix reinii \N \N \N \N \N 16849 \N genus Soulamea \N \N \N \N \N 16850 \N genus Billburttia \N \N \N \N \N 16851 S.'moratiana' Schefflera Schefflera sp. ined. 'moratiana' \N \N \N \N \N 16852 A.weberbaueri Arnaldoa Arnaldoa weberbaueri \N \N \N \N \N 16853 I.foliosa Isotropis Isotropis foliosa \N \N \N \N \N 16854 \N genus Oedera \N \N \N \N \N 16855 S.bracteatus Streptanthus Streptanthus bracteatus \N \N \N \N \N 16856 \N genus Waireia \N \N \N \N \N 16857 L.yaoshanensis Litsea Litsea yaoshanensis \N \N \N \N \N 16858 P.macrophyllum Pachyphragma Pachyphragma macrophyllum \N \N \N \N \N 16859 D.pubescens Dracula Dracula pubescens \N \N \N \N \N 16860 F.bergiana Ficinia Ficinia bergiana \N \N \N \N \N 16861 S.lanceifolium Solanum Solanum lanceifolium \N \N \N \N \N 16862 A.spinosa Atalantia Atalantia spinosa \N \N \N \N \N 16863 \N tribe Schradereae \N \N \N \N \N 16864 \N genus Culcasia \N \N \N \N \N 16865 C.tachangensis Camellia Camellia tachangensis \N \N \N \N \N 16866 E.tubiglans Euphorbia Euphorbia tubiglans \N \N \N \N \N 16867 H.viridis Helleborus Helleborus viridis green hellebore \N \N \N \N 16868 C.mascarenica Commelina Commelina mascarenica \N \N \N \N \N 16869 R.exaltatum Rhaponticum Rhaponticum exaltatum \N \N \N \N \N 16870 B.mauiensis Bidens Bidens mauiensis \N \N \N \N \N 16871 T.ariza-juliae Tillandsia Tillandsia ariza-juliae \N \N \N \N \N 16872 H.brasiliense Hedyosmum Hedyosmum brasiliense \N \N \N \N \N 16873 A.centralasiatica Atriplex Atriplex centralasiatica \N \N \N \N \N 16874 C.rugosa Cornus Cornus rugosa \N \N \N \N \N 16875 \N varietas Juncus falcatus var. sitchensis \N \N \N \N \N 16876 P.buckleyi Phlox Phlox buckleyi \N \N \N \N \N 16877 A.MPM1 Alocasia Alocasia sp. MPM1 \N \N \N \N \N 16878 N.acutifolia Niedenzuella Niedenzuella acutifolia \N \N \N \N \N 16879 H.fritzii Heterotaxis Heterotaxis fritzii \N \N \N \N \N 16880 V.clauseniana Viola Viola clauseniana \N \N \N \N \N 16881 J.lanata Jaltomata Jaltomata lanata \N \N \N \N \N 16882 S.rufescens Senecio Senecio rufescens \N \N \N \N \N 16883 \N varietas Euphorbia theriaca var. spurca \N \N \N \N \N 16884 C.lawrenceana Cattleya Cattleya lawrenceana \N \N \N \N \N 16885 S.tigrina Stanhopea Stanhopea tigrina \N \N \N \N \N 16886 B.pedatifida Begonia Begonia pedatifida \N \N \N \N \N 16887 G.yedoense Geranium Geranium yedoense \N \N \N \N \N 16888 O.squamata Oxalis Oxalis squamata \N \N \N \N \N 16889 R.macrocephala Revealia Revealia macrocephala \N \N \N \N \N 16890 F.alatamaha Franklinia Franklinia alatamaha Franklin-tree \N \N \N \N 16891 D.pimpinellifolia Descurainia Descurainia pimpinellifolia \N \N \N \N \N 16892 D.mcvaughii Dioscorea Dioscorea mcvaughii \N \N \N \N \N 16893 A.laxum Argophyllum Argophyllum laxum \N \N \N \N \N 16894 A.inculta Artemisia Artemisia inculta \N \N \N \N \N 16895 I.pumila Ipomopsis Ipomopsis pumila \N \N \N \N \N 16896 B.karooica Babiana Babiana karooica \N \N \N \N \N 16897 \N genus Sisyranthus \N \N \N \N \N 16898 P.citronellum Pelargonium Pelargonium citronellum \N \N \N \N \N 16899 N.1390 Nothoscordum Nothoscordum sp. 1390 \N \N \N \N \N 16900 E.mesochoreum Erythronium Erythronium mesochoreum \N \N \N \N \N 16901 \N genus Stomatanthes \N \N \N \N \N 16902 B.coddii Berkheya Berkheya coddii \N \N \N \N \N 16903 C.macroptera Citrus Citrus macroptera Melanesian papeda \N \N \N \N 16904 S.obtusa Shorea Shorea obtusa \N \N \N \N \N 16905 \N genus Rhizobotrya \N \N \N \N \N 16906 S.serrata Scrophularia Scrophularia serrata \N \N \N \N \N 16907 \N varietas Myxopyrum smilacifolium var. confertum \N \N \N \N \N 16908 S.hayekiana Silene Silene hayekiana \N \N \N \N \N 16909 P.inundata Phacelia Phacelia inundata playa phacelia \N \N \N \N 16910 M.gemma Meiracyllium Meiracyllium gemma \N \N \N \N \N 16911 P.africana Pseudobaeckea Pseudobaeckea africana \N \N \N \N \N 16912 O.lotoides Oxalis Oxalis lotoides \N \N \N \N \N 16913 C.crassicaulis Columnea Columnea crassicaulis \N \N \N \N \N 16914 T.coffeoides Tabernaemontana Tabernaemontana coffeoides \N \N \N \N \N 16915 A.thozetiana Archidendropsis Archidendropsis thozetiana \N \N \N \N \N 16916 \N genus Encelia \N \N \N \N \N 16917 F.depressa Filago Filago depressa \N \N \N \N \N 16918 L.shockleyi Lupinus Lupinus shockleyi \N \N \N \N \N 16919 T.buckleyi Tradescantia Tradescantia buckleyi \N \N \N \N \N 16920 T.laniflora Trembleya Trembleya laniflora \N \N \N \N \N 16921 S.mollifolia Symplocos Symplocos mollifolia \N \N \N \N \N 16922 M.papulosa Moehringia Moehringia papulosa \N \N \N \N \N 16923 B.tetraphyllum Baloskion Baloskion tetraphyllum \N \N \N \N \N 16924 \N genus Adenanthellum \N \N \N \N \N 16925 G.makoyana Gurania Gurania makoyana \N \N \N \N \N 16926 O.pubescens Oenothera Oenothera pubescens \N \N \N \N \N 16927 M.valtherii Miconia Miconia valtherii \N \N \N \N \N 16928 F.arida Ferula Ferula arida \N \N \N \N \N 16929 D.newtonianum Delphinium Delphinium newtonianum \N \N \N \N \N 16930 P.abbreviata Prosthechea Prosthechea abbreviata \N \N \N \N \N 16931 T.macrophyllum Tanacetum Tanacetum macrophyllum \N \N \N \N \N 16932 G.clandestina Gesneria Gesneria clandestina \N \N \N \N \N 16933 O.lapethica Ophrys Ophrys lapethica \N \N \N \N \N 16934 O.najada Oplismenopsis Oplismenopsis najada \N \N \N \N \N 16935 P.crocea Pyrrocoma Pyrrocoma crocea \N \N \N \N \N 16936 \N genus Acrocarpus \N \N \N \N \N 16937 D.venusta Disa Disa venusta \N \N \N \N \N 16938 I.funis Ipomoea Ipomoea funis \N \N \N \N \N 16939 D.310 Dombeya Dombeya sp. Rakotonirina 310 \N \N \N \N \N 16940 R.balansae Rauvolfia Rauvolfia balansae \N \N \N \N \N 16941 E.macrocalyx Eugenia Eugenia macrocalyx \N \N \N \N \N 16942 P.agleniana Primula Primula agleniana \N \N \N \N \N 16943 M.villosum Machaerium Machaerium villosum \N \N \N \N \N 16944 C.madagascariensis Cryptostegia Cryptostegia madagascariensis \N \N \N \N \N 16945 C.dentata Cardamine Cardamine dentata \N \N \N \N \N 16946 A.reuterianum Atocion Atocion reuterianum \N \N \N \N \N 16947 S.azaleiflora Schaueria Schaueria azaleiflora \N \N \N \N \N 16948 \N varietas Bambusa multiplex var. riviereorum \N \N \N \N \N 16949 A.roseana Acharagma Acharagma roseana \N \N \N \N \N 16950 D.cacaliifolium Doronicum Doronicum cacaliifolium \N \N \N \N \N 16951 \N subspecies Margaritaria discoidea subsp. nitida \N \N \N \N \N 16952 \N genus Baxteria \N \N \N \N \N 16953 \N subspecies Carex viridula subsp. cedercreutzii \N \N \N \N \N 16954 C.platyacantha Castanopsis Castanopsis platyacantha \N \N \N \N \N 16955 C.aziziana Centaurea Centaurea aziziana \N \N \N \N \N 16956 C.cochinchinensis Cordia Cordia cochinchinensis \N \N \N \N \N 16957 \N genus Lachnoloma \N \N \N \N \N 16958 E.fangii Epimedium Epimedium fangii \N \N \N \N \N 16959 P.pulverulentus Pterocephalus Pterocephalus pulverulentus \N \N \N \N \N 16960 P.ullepitschii Pilosella Pilosella ullepitschii \N \N \N \N \N 16961 D.confertus Dendropanax Dendropanax confertus \N \N \N \N \N 16962 P.ephedroides Polygala Polygala ephedroides \N \N \N \N \N 16963 S.JTM-2009a Speculantha Speculantha sp. JTM-2009a \N \N \N \N \N 16964 P.hieronymusii Pappostipa Pappostipa hieronymusii \N \N \N \N \N 16965 F.vaginalis Festuca Festuca vaginalis \N \N \N \N \N 16966 O.candollii Oreocome Oreocome candollii \N \N \N \N \N 16967 N.saccharata Nepeta Nepeta saccharata \N \N \N \N \N 16968 T.lucidum Thalictrum Thalictrum lucidum \N \N \N \N \N 16969 R.watsonianum Ribes Ribes watsonianum \N \N \N \N \N 16970 M.laciniatus Mimulus Mimulus laciniatus cutleaf monkeyflower \N \N \N \N 16971 E.megalantha Elattostachys Elattostachys megalantha \N \N \N \N \N 16972 I.germanica Inula Inula germanica \N \N \N \N \N 16973 E.esterhuyseniae Erica Erica esterhuyseniae \N \N \N \N \N 16974 \N genus Brachionidium \N \N \N \N \N 16975 D.humilis Dieffenbachia Dieffenbachia humilis \N \N \N \N \N 16976 B.balearicum Bunium Bunium balearicum \N \N \N \N \N 16977 D.hederifolia Draba Draba hederifolia \N \N \N \N \N 16978 \N varietas Semenovia thomsonii var. glabrior \N \N \N \N \N 16979 T.leucocarpa Tricalysia Tricalysia leucocarpa \N \N \N \N \N 16980 A.blaui Avenula Avenula blaui \N \N \N \N \N 16981 M.ctenoides Melaleuca Melaleuca ctenoides \N \N \N \N \N 16982 S.borealis Smelowskia Smelowskia borealis \N \N \N \N \N 16983 R.pubescens Rostraria Rostraria pubescens \N \N \N \N \N 16984 M.MA36 Microtis Microtis aff. angusii MA36 \N \N \N \N \N 16985 L.davisiae Leucothoe Leucothoe davisiae \N \N \N \N \N 16986 D.elliptica Debregeasia Debregeasia elliptica \N \N \N \N \N 16987 T.93-204 Tetrorchidium Tetrorchidium sp. Bell 93-204 \N \N \N \N \N 16988 A.eminens Acanthus Acanthus eminens \N \N \N \N \N 16989 T.alpina Toiyabea Toiyabea alpina alpine serpentweed \N \N \N \N 16990 S.glabrus Styrax Styrax glabrus \N \N \N \N \N 16991 \N genus Mitriostigma \N \N \N \N \N 16992 \N genus Stawellia \N \N \N \N \N 16993 \N varietas Chamaecrista desvauxii var. langsdorffii \N \N \N \N \N 16994 B.alopecuros Betonica Betonica alopecuros \N \N \N \N \N 16995 G.barbosanum Gossypium Gossypium barbosanum \N \N \N \N \N 16996 \N varietas Cercis canadensis var. mexicana \N \N \N \N \N 16997 E.curtipedicellata Eragrostis Eragrostis curtipedicellata \N \N \N \N \N 16998 P.robustissimum Phoradendron Phoradendron robustissimum \N \N \N \N \N 16999 \N genus Alyssopsis \N \N \N \N \N 17000 A.passiflorifolia Aristolochia Aristolochia passiflorifolia \N \N \N \N \N 17001 A.tuguancunense Aconitum Aconitum tuguancunense \N \N \N \N \N 17002 \N genus Pycnoplinthopsis \N \N \N \N \N 17003 J.purpurea Jacqueshuberia Jacqueshuberia purpurea \N \N \N \N \N 17004 B.prestinaria Bidens Bidens prestinaria \N \N \N \N \N 17005 K.oblongifolia Kadsura Kadsura oblongifolia \N \N \N \N \N 17006 A.johnsonii Amorphophallus Amorphophallus johnsonii \N \N \N \N \N 17007 O.mendocinensis Oenothera Oenothera mendocinensis \N \N \N \N \N 17008 \N varietas Pisum sativum var. tibetanicum \N \N \N \N \N 17009 I.digitata Isolepis Isolepis digitata \N \N \N \N \N 17010 C.lawrenceana Correa Correa lawrenceana \N \N \N \N \N 17011 \N subspecies Disa erubescens subsp. erubescens \N \N \N \N \N 17012 H.maranguense Helichrysum Helichrysum maranguense \N \N \N \N \N 17013 H.congestum Hesperolinon Hesperolinon congestum \N \N \N \N \N 17014 \N genus Hippuris \N \N \N \N \N 17015 E.xanthinum Epidendrum Epidendrum xanthinum \N \N \N \N \N 17016 \N genus Ancistrocladus \N \N \N \N \N 17017 I.wendtii Ipomopsis Ipomopsis wendtii \N \N \N \N \N 17018 S.lacera Spiranthes Spiranthes lacera \N \N \N \N \N 17019 D.populifolia Dalembertia Dalembertia populifolia \N \N \N \N \N 17020 F.valentina Festuca Festuca valentina \N \N \N \N \N 17021 \N genus Lepidorrhachis \N \N \N \N \N 17022 H.thebaica Hyphaene Hyphaene thebaica \N \N \N \N \N 17023 A.acuta Adenocline Adenocline acuta \N \N \N \N \N 17024 C.lateritia Caiophora Caiophora lateritia \N \N \N \N \N 17025 P.kingdon-wardii Physospermopsis Physospermopsis kingdon-wardii \N \N \N \N \N 17026 T.balsamita Tanacetum Tanacetum balsamita \N \N \N \N \N 17027 C.trichosantha Clidemia Clidemia trichosantha \N \N \N \N \N 17028 \N varietas Pyrus pyrifolia var. culta Asian pear,Japanese pear,yama-nashi \N \N \N \N 17029 \N genus Centaurea \N \N \N \N \N 17030 G.mcvaughii Gaudichaudia Gaudichaudia mcvaughii \N \N \N \N \N 17031 I.aspera Inula Inula aspera \N \N \N \N \N 17032 W.parviflora Willardia Willardia parviflora \N \N \N \N \N 17033 H.mexicanum Hieracium Hieracium mexicanum \N \N \N \N \N 17034 M.MA13 Microtis Microtis aff. angusii MA13 \N \N \N \N \N 17035 P.uniflora Panisea Panisea uniflora \N \N \N \N \N 17036 D.cymosa Dombeya Dombeya cymosa \N \N \N \N \N 17037 S.ramirezii Styrax Styrax ramirezii \N \N \N \N \N 17038 D.reflexus Dichilus Dichilus reflexus \N \N \N \N \N 17039 T.elegans Thelypodiopsis Thelypodiopsis elegans \N \N \N \N \N 17040 \N genus Struthiola \N \N \N \N \N 17041 S.neaei Stipa Stipa neaei \N \N \N \N \N 17042 V.dionaeifolia Vaughania Vaughania dionaeifolia \N \N \N \N \N 17043 C.1980 Cyrtandra Cyrtandra sp. Plunkett 1980 \N \N \N \N \N 17044 F.brevipila Festuca Festuca brevipila \N \N \N \N \N 17045 G.oppositifolius Glinus Glinus oppositifolius \N \N \N \N \N 17046 L.confusum Ligustrum Ligustrum confusum \N \N \N \N \N 17047 \N genus Lenbrassia \N \N \N \N \N 17048 E.SL-2011 Echinodorus Echinodorus sp. 3 SL-2011 \N \N \N \N \N 17049 A.latifolia Actinidia Actinidia latifolia \N \N \N \N \N 17050 H.gabunensis Hugonia Hugonia gabunensis \N \N \N \N \N 17051 K.(i) Kunzea Kunzea aff. ericoides (i) \N \N \N \N \N 17052 P.arinasae Pinanga Pinanga arinasae \N \N \N \N \N 17053 C.cymosa Coprosma Coprosma cymosa \N \N \N \N \N 17054 E.cinnabarina Echinopsis Echinopsis cinnabarina \N \N \N \N \N 17055 A.beirana Armeria Armeria beirana \N \N \N \N \N 17056 \N varietas Hedychium spicatum var. acuminatum \N \N \N \N \N 17057 A.braunii Angylocalyx Angylocalyx braunii \N \N \N \N \N 17058 D.buettneri Dacryodes Dacryodes buettneri \N \N \N \N \N 17059 C.kirkii Crinum Crinum kirkii \N \N \N \N \N 17060 R.chocoensis Restrepia Restrepia chocoensis \N \N \N \N \N 17061 E.canadensis Elodea Elodea canadensis \N \N \N \N \N 17062 C.pseudoprocumbens Cytisus Cytisus pseudoprocumbens \N \N \N \N \N 17063 B.184b Bulbostylis Bulbostylis sp. Clarke 184b \N \N \N \N \N 17064 P.pygmaea Prosthechea Prosthechea pygmaea \N \N \N \N \N 17065 E.aristidea Eriachne Eriachne aristidea \N \N \N \N \N 17066 P.cupana Paullinia Paullinia cupana guarana \N \N \N \N 17067 P.cerasoides Prunus Prunus cerasoides \N \N \N \N \N 17068 H.macrosperma Heliophila Heliophila macrosperma \N \N \N \N \N 17069 A.pictum Apocynum Apocynum pictum \N \N \N \N \N 17070 L.densiflora Leucas Leucas densiflora \N \N \N \N \N 17071 A.pauciflora Aletris Aletris pauciflora \N \N \N \N \N 17072 \N genus Gomphia \N \N \N \N \N 17073 B.arborescens Brachyglottis Brachyglottis arborescens \N \N \N \N \N 17074 A.juncifolia Austrostipa Austrostipa juncifolia \N \N \N \N \N 17075 I.anabibensis Indigofera Indigofera anabibensis \N \N \N \N \N 17076 C.porphyrochrysea Cousinia Cousinia porphyrochrysea \N \N \N \N \N 17077 \N genus Raphidiocystis \N \N \N \N \N 17078 S.petri Spathoglottis Spathoglottis petri \N \N \N \N \N 17079 \N varietas Rosa banksiae var. normalis wild banksia rose \N \N \N \N 17080 R.alba Reseda Reseda alba white upright mignonette \N \N \N \N 17081 O.andersonii Opuntia Opuntia x andersonii \N \N \N \N \N 17082 J.thomsonii Juncus Juncus thomsonii \N \N \N \N \N 17083 M.rotundifolia Mentha Mentha x rotundifolia \N \N \N \N \N 17084 \N genus Dentella \N \N \N \N \N 17085 E.venustiflora Erica Erica venustiflora \N \N \N \N \N 17086 \N subspecies Macaranga motleyana subsp. motleyana \N \N \N \N \N 17087 N.setiloba Navarretia Navarretia setiloba \N \N \N \N \N 17088 A.prostratum Apium Apium prostratum \N \N \N \N \N 17089 A.dissecta Amauriopsis Amauriopsis dissecta \N \N \N \N \N 17090 A.convolvulacea Aristolochia Aristolochia convolvulacea \N \N \N \N \N 17091 P.repanda Polyscias Polyscias repanda \N \N \N \N \N 17092 M.arietinus Microchilus Microchilus arietinus \N \N \N \N \N 17093 L.citrinus Lupinus Lupinus citrinus \N \N \N \N \N 17094 C.incana Chrysanthemoides Chrysanthemoides incana \N \N \N \N \N 17095 \N varietas Cotyledon orbiculata var. flanaganii \N \N \N \N \N 17096 \N subspecies Centaurea alba subsp. latronum \N \N \N \N \N 17097 P.patens Perotis Perotis patens \N \N \N \N \N 17098 M.multinervis Maasia Maasia multinervis \N \N \N \N \N 17099 H.aspera Hibbertia Hibbertia aspera \N \N \N \N \N 17100 L.prunus-spinosa Lycium Lycium prunus-spinosa \N \N \N \N \N 17101 S.seidlitzii Scorzonera Scorzonera seidlitzii \N \N \N \N \N 17102 N.albus Nabalus Nabalus albus \N \N \N \N \N 17103 C.vitifolium Corynabutilon Corynabutilon vitifolium \N \N \N \N \N 17104 C.speciosa Crawfurdia Crawfurdia speciosa \N \N \N \N \N 17105 C.lineatus Convolvulus Convolvulus lineatus \N \N \N \N \N 17106 R.gallica Rosa Rosa gallica French rose,apothecary rose,red-rose-of-Lancaster \N \N \N \N 17107 C.anderssonii Carolus Carolus anderssonii \N \N \N \N \N 17108 G.kaufmanniana Gentiana Gentiana kaufmanniana \N \N \N \N \N 17109 P.weberbaueri Pelexia Pelexia weberbaueri \N \N \N \N \N 17110 \N genus Letestuella \N \N \N \N \N 17111 S.hexandrum Sinopodophyllum Sinopodophyllum hexandrum \N \N \N \N \N 17112 \N genus Hordelymus \N \N \N \N \N 17113 B.grandis Boehmeria Boehmeria grandis \N \N \N \N \N 17114 M.michaelis Manihot Manihot michaelis \N \N \N \N \N 17115 P.membranacea Passiflora Passiflora membranacea \N \N \N \N \N 17116 H.omphalandra Hennecartia Hennecartia omphalandra \N \N \N \N \N 17117 H.striatus Hibiscus Hibiscus striatus \N \N \N \N \N 17118 S.suckleyana Suckleya Suckleya suckleyana \N \N \N \N \N 17119 C.balansanum Coelospermum Coelospermum balansanum \N \N \N \N \N 17120 \N subfamily Morkillioideae \N \N \N \N \N 17121 S.tabernaemontani Schoenoplectus Schoenoplectus tabernaemontani \N \N \N \N \N 17122 G.aetnensis Genista Genista aetnensis \N \N \N \N \N 17123 S.iltisiana Stevia Stevia iltisiana \N \N \N \N \N 17124 P.maximowiczii Primula Primula maximowiczii \N \N \N \N \N 17125 I.tadshikorum Iris Iris tadshikorum \N \N \N \N \N 17126 P.exile Pachycladon Pachycladon exile \N \N \N \N \N 17127 H.umbellatum Hieracium Hieracium umbellatum \N \N \N \N \N 17128 D.peruvianum Dissanthelium Dissanthelium peruvianum \N \N \N \N \N 17129 B.brevipes Begonia Begonia brevipes \N \N \N \N \N 17130 P.brassicoides Physaria Physaria brassicoides \N \N \N \N \N 17131 P.virgatum Panicum Panicum virgatum switchgrass \N \N \N \N 17132 \N genus Pteronia \N \N \N \N \N 17133 L.rufescens Leandra Leandra rufescens \N \N \N \N \N 17134 \N subspecies Campanula stevenii subsp. stevenii \N \N \N \N \N 17135 M.bonarotiana Medicago Medicago bonarotiana \N \N \N \N \N 17136 R.bussei Rhodopentas Rhodopentas bussei \N \N \N \N \N 17137 L.flavescens Leiothrix Leiothrix flavescens \N \N \N \N \N 17138 Z.marlothii Zehneria Zehneria marlothii \N \N \N \N \N 17139 E.simii Erica Erica simii \N \N \N \N \N 17140 V.castrilensis Vella Vella castrilensis \N \N \N \N \N 17141 E.microphylla Exomis Exomis microphylla \N \N \N \N \N 17142 A.campanensis Aphelandra Aphelandra campanensis \N \N \N \N \N 17143 C.dentata Curtisia Curtisia dentata \N \N \N \N \N 17144 T.semitriloba Triumfetta Triumfetta semitriloba \N \N \N \N \N 17145 C.aphylla Cleistes Cleistes aphylla \N \N \N \N \N 17146 E.SH-2010 Eulophia Eulophia sp. SH-2010 \N \N \N \N \N 17147 M.arborescens Mimulopsis Mimulopsis arborescens \N \N \N \N \N 17148 B.neglecta Brunia Brunia neglecta \N \N \N \N \N 17149 M.perakensis Malaxis Malaxis perakensis \N \N \N \N \N 17150 S.borysthenica Stipa Stipa borysthenica \N \N \N \N \N 17151 C.choruhensis Campanula Campanula choruhensis \N \N \N \N \N 17152 H.blumei Halopegia Halopegia blumei \N \N \N \N \N 17153 T.cereale x Triticosecale Triticum turgidum subsp. durum x Secale cereale hexaploid triticale \N \N \N \N 17154 C.parnassicum Colchicum Colchicum parnassicum \N \N \N \N \N 17155 E.EHR-2010 Eleocharis Eleocharis aff. urceolata EHR-2010 \N \N \N \N \N 17156 O.nigra Ocotea Ocotea nigra \N \N \N \N \N 17157 A.gigantophylla Anaxagorea Anaxagorea gigantophylla \N \N \N \N \N 17158 F.nevadensis Festuca Festuca nevadensis \N \N \N \N \N 17159 S.scandens Salmea Salmea scandens \N \N \N \N \N 17160 D.buxifolia Daviesia Daviesia buxifolia \N \N \N \N \N 17161 T.kopetdaghense Trachydium Trachydium kopetdaghense \N \N \N \N \N 17162 Q.libani Quercus Quercus libani \N \N \N \N \N 17163 A.semialata Alloteropsis Alloteropsis semialata \N \N \N \N \N 17164 H.andina Huanaca Huanaca andina \N \N \N \N \N 17165 E.amplexifolia Eurya Eurya amplexifolia \N \N \N \N \N 17166 Y.arizonica Yucca Yucca arizonica \N \N \N \N \N 17167 A.lindleyi Atriplex Atriplex lindleyi \N \N \N \N \N 17168 C.nebulosa Cedrela Cedrela nebulosa \N \N \N \N \N 17169 S.porocarya Scaevola Scaevola porocarya \N \N \N \N \N 17170 T.venenosum Toxicoscordion Toxicoscordion venenosum \N \N \N \N \N 17171 O.coarctiflora Ossaea Ossaea coarctiflora \N \N \N \N \N 17172 B.diffusa Bassia Bassia diffusa \N \N \N \N \N 17173 M.miniata Maxillaria Maxillaria miniata \N \N \N \N \N 17174 S.leptolobus Senecio Senecio leptolobus \N \N \N \N \N 17175 F.virgata Ficus Ficus virgata dao rong \N \N \N \N 17176 N.madagascariensis Neoharmsia Neoharmsia madagascariensis \N \N \N \N \N 17177 S.caudatus Strophanthus Strophanthus caudatus \N \N \N \N \N 17178 N.erinaceum Nanophyton Nanophyton erinaceum \N \N \N \N \N 17179 L.lauterbachii Licuala Licuala lauterbachii \N \N \N \N \N 17180 \N genus Iostephane \N \N \N \N \N 17181 C.wilsoniana Cornus Cornus wilsoniana \N \N \N \N \N 17182 \N genus Echinocereus \N \N \N \N \N 17183 G.latisepala Guatteria Guatteria latisepala \N \N \N \N \N 17184 B.cleopatrae Begonia Begonia cleopatrae \N \N \N \N \N 17185 D.minimifolia Diospyros Diospyros minimifolia \N \N \N \N \N 17186 L.nepetifolia Leonotis Leonotis nepetifolia \N \N \N \N \N 17187 \N genus Triticum \N \N \N \N \N 17188 A.noeanum Allium Allium noeanum \N \N \N \N \N 17189 S.filifolia Sohnsia Sohnsia filifolia \N \N \N \N \N 17190 M.gummifera Marlothiella Marlothiella gummifera \N \N \N \N \N 17191 C.grandiflora Ceratandra Ceratandra grandiflora \N \N \N \N \N 17192 P.molinioides Piptatherum Piptatherum molinioides \N \N \N \N \N 17193 T.10768 Tetrastigma Tetrastigma sp. Wen 10768 \N \N \N \N \N 17194 I.minutiflora Ipomoea Ipomoea minutiflora \N \N \N \N \N 17195 A.trilobata Aristolochia Aristolochia trilobata \N \N \N \N \N 17196 \N genus Distichlis \N \N \N \N \N 17197 P.pulcherrima Phalaenopsis Phalaenopsis parishii x Phalaenopsis pulcherrima \N \N \N \N \N 17198 C.glandulosa Cardamine Cardamine glandulosa \N \N \N \N \N 17199 C.cheiranthifolia Centaurea Centaurea cheiranthifolia \N \N \N \N \N 17200 P.melanantha Phlomoides Phlomoides melanantha \N \N \N \N \N 17201 N.nipponica Nervilia Nervilia nipponica \N \N \N \N \N 17202 \N no rank Digitifolieae \N \N \N \N \N 17203 \N genus Pleiospilos \N \N \N \N \N 17204 C.tumulicola Carex Carex tumulicola \N \N \N \N \N 17205 P.ramosissima Piptadenia Piptadenia ramosissima \N \N \N \N \N 17206 \N genus x Chitalpa \N \N \N \N \N 17207 \N varietas Digitalis minor var. minor \N \N \N \N \N 17208 \N genus Wendlandia \N \N \N \N \N 17209 A.rigens Acacia Acacia rigens nealie,needle-bush wattle \N \N \N \N 17210 A.grapsospadix Arisaema Arisaema grapsospadix \N \N \N \N \N 17211 \N genus Sinodielsia \N \N \N \N \N 17212 M.quadricornis Macaranga Macaranga quadricornis \N \N \N \N \N 17213 Q.cornelius-mulleri Quercus Quercus cornelius-mulleri \N \N \N \N \N 17214 C.clavatus Calochortus Calochortus clavatus \N \N \N \N \N 17215 S.depsangensis Saussurea Saussurea depsangensis \N \N \N \N \N 17216 C.bordasii Cordia Cordia bordasii \N \N \N \N \N 17217 \N genus Hypochaeris \N \N \N \N \N 17218 \N genus Anthodon \N \N \N \N \N 17219 S.longistylum Sterigmostemum Sterigmostemum longistylum \N \N \N \N \N 17220 C.lainzii Centaurea Centaurea lainzii \N \N \N \N \N 17221 H.alchorneoides Hieronyma Hieronyma alchorneoides \N \N \N \N \N 17222 M.lucida Muhlenbergia Muhlenbergia lucida \N \N \N \N \N 17223 \N genus Podopterus \N \N \N \N \N 17224 M.bangiana Macrocarpaea Macrocarpaea bangiana \N \N \N \N \N 17225 D.durieua Daucus Daucus durieua \N \N \N \N \N 17226 P.flavus Phaius Phaius flavus \N \N \N \N \N 17227 S.trifoliolatum Schizeilema Schizeilema trifoliolatum \N \N \N \N \N 17228 \N genus Arisarum \N \N \N \N \N 17229 A.paradoxa Acacia Acacia paradoxa \N \N \N \N \N 17230 J.darcyana Jaltomata Jaltomata darcyana \N \N \N \N \N 17231 R.macrosiphon Raphiocarpus Raphiocarpus macrosiphon \N \N \N \N \N 17232 S.prolifera Scaphyglottis Scaphyglottis prolifera \N \N \N \N \N 17233 \N genus Ornithopus \N \N \N \N \N 17234 \N genus Keysseria \N \N \N \N \N 17235 P.parvula Protea Protea parvula \N \N \N \N \N 17236 S.woodfordii Saribus Saribus woodfordii \N \N \N \N \N 17237 A.maximum Amomum Amomum maximum \N \N \N \N \N 17238 C.truncata Chloris Chloris truncata \N \N \N \N \N 17239 H.lessertiana Hedyotis Hedyotis lessertiana \N \N \N \N \N 17240 P.spathulatum Pycnophyllum Pycnophyllum spathulatum \N \N \N \N \N 17241 M.minima Microcarpaea Microcarpaea minima \N \N \N \N \N 17242 S.gibberosum Scaphosepalum Scaphosepalum gibberosum \N \N \N \N \N 17243 M.polyandra Miconia Miconia polyandra \N \N \N \N \N 17244 A.homogamos Anacyclus Anacyclus homogamos \N \N \N \N \N 17245 S.geniculata Selago Selago geniculata \N \N \N \N \N 17246 C.myriophylla Calceolaria Calceolaria myriophylla \N \N \N \N \N 17247 \N subspecies Laserpitium nestleri subsp. flabellatum \N \N \N \N \N 17248 C.mertensiana Cassiope Cassiope mertensiana western moss heather,western mountain heather,white-heather \N \N \N \N 17249 \N subspecies Euphorbia knuthii subsp. knuthii \N \N \N \N \N 17250 S.farinosum Sedum Sedum farinosum \N \N \N \N \N 17251 G.obtusa Grabowskia Grabowskia obtusa \N \N \N \N \N 17252 M.leucadendra Melaleuca Melaleuca leucadendra \N \N \N \N \N 17253 \N genus Astrocasia \N \N \N \N \N 17254 S.glaucescens Sericocalyx Sericocalyx glaucescens \N \N \N \N \N 17255 S.montanum Sisyrinchium Sisyrinchium montanum \N \N \N \N \N 17256 \N genus Athroisma \N \N \N \N \N 17257 \N genus Coopernookia \N \N \N \N \N 17258 R.howellii Ribes Ribes howellii \N \N \N \N \N 17259 V.madagascariensis Vangueria Vangueria madagascariensis Spanish tamarind,tamarindo extranjero,vavangue \N \N \N \N 17260 B.hindsiana Bursera Bursera hindsiana \N \N \N \N \N 17261 C.brevipes Croton Croton brevipes \N \N \N \N \N 17262 P.beccarii Pseuduvaria Pseuduvaria beccarii \N \N \N \N \N 17263 \N genus Vaupesia \N \N \N \N \N 17264 P.bonarota Paederota Paederota bonarota \N \N \N \N \N 17265 C.humile Chaerophyllum Chaerophyllum humile \N \N \N \N \N 17266 D.tenuifolia Disa Disa tenuifolia \N \N \N \N \N 17267 L.formosanum Lilium Lilium formosanum \N \N \N \N \N 17268 H.acerosus Hemipogon Hemipogon acerosus \N \N \N \N \N 17269 P.ferganensis Prunus Prunus ferganensis \N \N \N \N \N 17270 \N genus Toxicoscordion \N \N \N \N \N 17271 A.denticulata Acrisione Acrisione denticulata \N \N \N \N \N 17272 C.maritima Cutandia Cutandia maritima \N \N \N \N \N 17273 \N subspecies Hydrangea scandens subsp. chinensis \N \N \N \N \N 17274 D.tetrandra Diospyros Diospyros tetrandra \N \N \N \N \N 19796 O.tenax Obetia Obetia tenax \N \N \N \N \N 17275 B.anomala Bonetiella Bonetiella anomala \N \N \N \N \N 17276 T.14 Tamarix Tamarix cf. africana 14 \N \N \N \N \N 17277 G.aspera Gahnia Gahnia aspera \N \N \N \N \N 17278 M.acipetala Muraltia Muraltia acipetala \N \N \N \N \N 17279 \N genus Arapatiella \N \N \N \N \N 17280 S.zalacca Salacca Salacca zalacca \N \N \N \N \N 17281 F.berlandieriana Fraxinus Fraxinus berlandieriana Mexican ash,fresno \N \N \N \N 17282 L.pauciflora Liatris Liatris pauciflora \N \N \N \N \N 17283 A.hohenackeri Aconitella Aconitella hohenackeri \N \N \N \N \N 17284 I.palpebrata Impatiens Impatiens palpebrata \N \N \N \N \N 17285 A.deminuta Annona Annona deminuta \N \N \N \N \N 17286 \N genus Isidrogalvia \N \N \N \N \N 17287 P.gibbosa Palicourea Palicourea gibbosa \N \N \N \N \N 17288 C.sordidus Calamus Calamus sordidus \N \N \N \N \N 17289 C.speciosum Colchicum Colchicum speciosum \N \N \N \N \N 17290 \N genus Shaniodendron \N \N \N \N \N 17291 I.pratensis Indigofera Indigofera pratensis \N \N \N \N \N 17292 E.balladoniensis Eucalyptus Eucalyptus balladoniensis \N \N \N \N \N 17293 A.spicatum Allium Allium spicatum \N \N \N \N \N 17294 T.flavus Tridens Tridens flavus \N \N \N \N \N 17295 P.louisiana Proboscidea Proboscidea louisiana \N \N \N \N \N 17296 P.malvifolia Pyrenacantha Pyrenacantha malvifolia \N \N \N \N \N 17297 I.superba Indigofera Indigofera superba \N \N \N \N \N 17298 \N varietas Stylosanthes guianensis var. microcephala \N \N \N \N \N 17299 P.butyracea Pentadesma Pentadesma butyracea \N \N \N \N \N 17300 A.tenella Agalinis Agalinis tenella \N \N \N \N \N 17301 C.longzhouensis Camellia Camellia longzhouensis \N \N \N \N \N 17302 A.epipsila Alchemilla Alchemilla epipsila \N \N \N \N \N 17303 S.sancona Syagrus Syagrus sancona \N \N \N \N \N 17304 P.polycladus Paepalanthus Paepalanthus polycladus \N \N \N \N \N 17305 L.apicidens Lysionotus Lysionotus apicidens \N \N \N \N \N 17306 \N genus Scaphopetalum \N \N \N \N \N 17307 E.1148 Euphorbia Euphorbia aff. ariensis Steinmann 1148 \N \N \N \N \N 17308 A.henryi Amorphophallus Amorphophallus henryi \N \N \N \N \N 17309 N.macrothyrsa Nasa Nasa macrothyrsa \N \N \N \N \N 17310 S.cyrenaica Salsola Salsola cyrenaica \N \N \N \N \N 17311 A.SH-2010 Aleurites Aleurites sp. SH-2010 \N \N \N \N \N 17312 B.occidentalis Benitoa Benitoa occidentalis \N \N \N \N \N 17313 C.cultivar Cytisus Cytisus hybrid cultivar \N \N \N \N \N 17314 E.madagascariensis Erica Erica madagascariensis \N \N \N \N \N 17315 L.chinense Lycium Lycium chinense Chinese boxthorn,Chinese wolfberry,gou qi,kuko \N \N \N \N 17316 \N varietas Sclerolaena bicornis var. horrida \N \N \N \N \N 17317 F.glaucescens Fissistigma Fissistigma glaucescens \N \N \N \N \N 17318 G.subnigricans Gasteria Gasteria subnigricans \N \N \N \N \N 17319 V.vernicosa Hebe Veronica vernicosa \N \N \N \N \N 17320 \N genus Colletogyne \N \N \N \N \N 17321 C.amystia Commersonia Commersonia amystia \N \N \N \N \N 17322 C.renae Coelogyne Coelogyne renae \N \N \N \N \N 17323 \N subspecies Iris hartwegii subsp. australis \N \N \N \N \N 17324 H.robertianum Himantoglossum Himantoglossum robertianum \N \N \N \N \N 17325 P.guilinensis Parnassia Parnassia guilinensis \N \N \N \N \N 17326 T.CH_E76Smono Triticum Triticum sp. CH_E76Smono \N \N \N \N \N 17327 C.variegata Catabrosella Catabrosella variegata \N \N \N \N \N 17328 M.lasiantha Millettia Millettia lasiantha \N \N \N \N \N 17329 L.2095 Loeseneriella Loeseneriella sp. Chase 2095 \N \N \N \N \N 17330 B.polystachya Boehmeria Boehmeria polystachya \N \N \N \N \N 17331 S.evansiana Salvia Salvia evansiana \N \N \N \N \N 17332 \N genus Leonurus \N \N \N \N \N 17333 E.gossypina Euphorbia Euphorbia gossypina \N \N \N \N \N 17334 E.caespitosus Echinopogon Echinopogon caespitosus \N \N \N \N \N 17335 P.austriacum Pteroselinum Pteroselinum austriacum \N \N \N \N \N 17336 P.macvaughii Phaseolus Phaseolus macvaughii \N \N \N \N \N 17337 \N subspecies Fraxinus angustifolia subsp. angustifolia \N \N \N \N \N 17338 N.DG-2010 Neuroloma Neuroloma aff. kunawarensis DG-2010 \N \N \N \N \N 17339 C.pyramidata Cornutia Cornutia pyramidata \N \N \N \N \N 17340 \N genus Acioa \N \N \N \N \N 17341 \N genus Triaspis \N \N \N \N \N 17342 G.procera Grindelia Grindelia procera \N \N \N \N \N 17343 B.cynapiifolia Bidens Bidens cynapiifolia \N \N \N \N \N 17344 A.merrillii Adonidia Adonidia merrillii \N \N \N \N \N 17345 O.turpethum Operculina Operculina turpethum \N \N \N \N \N 17346 C.albanicus Cistus Cistus albanicus \N \N \N \N \N 17347 \N genus Torilis \N \N \N \N \N 17348 \N genus Lagurus \N \N \N \N \N 17349 E.perlata Erica Erica perlata \N \N \N \N \N 17350 L.rubriflorus Lupinus Lupinus rubriflorus \N \N \N \N \N 17351 \N genus Vatovaea \N \N \N \N \N 17352 C.bakossi Coffea Coffea bakossi \N \N \N \N \N 17353 P.cinereus Paepalanthus Paepalanthus cinereus \N \N \N \N \N 17354 G.cult.17(KYO) Globba Globba sp. Takano cult.17(KYO) \N \N \N \N \N 17355 X.venosa Xylosma Xylosma venosa \N \N \N \N \N 17356 D.dilatata Daviesia Daviesia dilatata \N \N \N \N \N 17357 \N genus Polygonella \N \N \N \N \N 17358 \N varietas Heracleum moellendorffii var. paucivittatum \N \N \N \N \N 17359 \N subspecies Chironia palustris subsp. transvaalensis \N \N \N \N \N 17360 \N genus Aphyllocladus \N \N \N \N \N 17361 R.americanum Ribes Ribes americanum eastern black currant,wild black currant \N \N \N \N 17362 G.NR-2009 Galanthus Galanthus sp. NR-2009 \N \N \N \N \N 17363 S.diaschides Senecio Senecio diaschides \N \N \N \N \N 17364 \N subspecies Pimelea serpyllifolia subsp. occidentalis \N \N \N \N \N 17365 S.stenophyllidium Solanum Solanum stenophyllidium \N \N \N \N \N 17366 J.sinense Jasminum Jasminum sinense \N \N \N \N \N 17367 \N genus Parryella \N \N \N \N \N 17368 \N varietas Taraxacum platycarpum var. platycarpum \N \N \N \N \N 17369 C.spathulata Crataegus Crataegus spathulata \N \N \N \N \N 17370 A.crenata Ardisia Ardisia crenata \N \N \N \N \N 17371 A.16105 Asphodelus Asphodelus sp. Quagliariello 16105 \N \N \N \N \N 17372 M.bicornis Masdevallia Masdevallia bicornis \N \N \N \N \N 17373 E.luzulaefolium Eryngium Eryngium luzulaefolium \N \N \N \N \N 17374 S.japonica Salvia Salvia japonica \N \N \N \N \N 17375 H.436-86 Hoheria Hoheria sp. 436-86 \N \N \N \N \N 17376 I.06088 Indosasa Indosasa sp. Zhang & Zeng 06088 \N \N \N \N \N 17377 \N subspecies Salix caprea subsp. caprea \N \N \N \N \N 17378 L.occidentale Lomatophyllum Lomatophyllum occidentale \N \N \N \N \N 17379 M.afghanica Matthiola Matthiola afghanica \N \N \N \N \N 17380 G.angustifolium Guaiacum Guaiacum angustifolium \N \N \N \N \N 17381 S.diplodactyla Schefflera Schefflera diplodactyla \N \N \N \N \N 17382 \N genus Stauracanthus \N \N \N \N \N 17383 A.orientalis Acantholepis Acantholepis orientalis \N \N \N \N \N 17384 O.34531 Orchis Orchis sp. 34531 \N \N \N \N \N 17385 D.soubreana Diospyros Diospyros soubreana \N \N \N \N \N 17386 D.retusa Ditassa Ditassa retusa \N \N \N \N \N 17387 R.occidentalis Rudbeckia Rudbeckia occidentalis \N \N \N \N \N 17388 P.regularis Phragmanthera Phragmanthera regularis \N \N \N \N \N 17389 H.cephaloideum Helichrysum Helichrysum cephaloideum \N \N \N \N \N 17390 \N genus Cratystylis \N \N \N \N \N 17391 \N subspecies Arrhenatherum elatius subsp. elatius \N \N \N \N \N 17392 H.ramsayi Hydriastele Hydriastele ramsayi \N \N \N \N \N 17393 S.hemmendorffii Senecio Senecio hemmendorffii \N \N \N \N \N 17394 \N genus Sachsia \N \N \N \N \N 17395 A.amorphoides Alvaradoa Alvaradoa amorphoides \N \N \N \N \N 17396 P.machrisii Pilosocereus Pilosocereus machrisii \N \N \N \N \N 17397 D.pearcei Demosthenesia Demosthenesia pearcei \N \N \N \N \N 17398 S.yetii Silene Silene yetii \N \N \N \N \N 17399 P.subpenninerve Piper Piper subpenninerve \N \N \N \N \N 17400 A.ellipticum Archidendron Archidendron ellipticum \N \N \N \N \N 17401 \N genus Nerium \N \N \N \N \N 17402 A.tomentosa Arctostaphylos Arctostaphylos tomentosa \N \N \N \N \N 17403 \N genus Cryptospora \N \N \N \N \N 17404 M.2332 Maxillaria Maxillaria cf. exaltata Whitten 2332 \N \N \N \N \N 17405 C.cumandae Cyrtochilum Cyrtochilum cumandae \N \N \N \N \N 17406 P.densum Piper Piper densum \N \N \N \N \N 17407 D.micrantha Dichondra Dichondra micrantha \N \N \N \N \N 17408 P.caesius Penstemon Penstemon caesius \N \N \N \N \N 17409 C.furcata Craniotome Craniotome furcata \N \N \N \N \N 17410 A.armindae Argyrolobium Argyrolobium armindae \N \N \N \N \N 17411 H.pumilio Homalopetalum Homalopetalum pumilio \N \N \N \N \N 17412 \N genus Iodanthus \N \N \N \N \N 17413 T.papyrifer Tetrapanax Tetrapanax papyrifer \N \N \N \N \N 17414 \N subspecies Anacyclus radiatus subsp. coronatus \N \N \N \N \N 17415 R.amabilis Rubus Rubus amabilis \N \N \N \N \N 17416 S.odontopetala Silene Silene odontopetala \N \N \N \N \N 17417 A.breviscapum Allium Allium breviscapum \N \N \N \N \N 17418 P.pseudocaryophyllus Pimenta Pimenta pseudocaryophyllus \N \N \N \N \N 17419 M.obovata Martinella Martinella obovata \N \N \N \N \N 17420 D.NSW720057 Diuris Diuris aff. alba NSW720057 \N \N \N \N \N 17421 C.kibweziense Cyphostemma Cyphostemma kibweziense \N \N \N \N \N 17422 C.divaricatus Carthamus Carthamus divaricatus \N \N \N \N \N 17423 C.dactylon Cynodon Cynodon dactylon Bermuda grass \N \N \N \N 17424 \N genus Loeselia \N \N \N \N \N 17425 T.foetidissimum Trillium Trillium foetidissimum stinking trillium \N \N \N \N 17426 E.littoreum Erucastrum Erucastrum littoreum \N \N \N \N \N 17427 \N varietas Lycoris sanguinea var. sanguinea \N \N \N \N \N 17428 D.floribunda Dielsiochloa Dielsiochloa floribunda \N \N \N \N \N 17429 C.erecta Castela Castela erecta \N \N \N \N \N 17430 \N varietas Poa alpina var. vivipara \N \N \N \N \N 17431 S.maternum Solanum Solanum maternum \N \N \N \N \N 17432 H.articulata Hammada Hammada articulata \N \N \N \N \N 17433 T.yunnanensis Trollius Trollius yunnanensis \N \N \N \N \N 17434 C.varium Chorizema Chorizema varium \N \N \N \N \N 17435 A.masanderanus Astragalus Astragalus masanderanus \N \N \N \N \N 17436 D.alyssoides Draba Draba alyssoides \N \N \N \N \N 17437 \N varietas Begonia morsei var. myriotricha \N \N \N \N \N 17438 \N genus Stonesia \N \N \N \N \N 17439 \N genus Patersonia \N \N \N \N \N 17440 R.millefoliatus Ranunculus Ranunculus millefoliatus \N \N \N \N \N 17441 H.multiflora Heliomeris Heliomeris multiflora \N \N \N \N \N 17442 P.laxiflorum Pseudocarum Pseudocarum laxiflorum \N \N \N \N \N 17443 B.peltata Begonia Begonia peltata \N \N \N \N \N 17444 C.scaposa Chamaechaenactis Chamaechaenactis scaposa \N \N \N \N \N 17445 A.pubescens Angelonia Angelonia pubescens \N \N \N \N \N 17446 S.asperolanatum Solanum Solanum asperolanatum \N \N \N \N \N 17447 \N subspecies Crocus kotschyanus subsp. suworowianus \N \N \N \N \N 17448 \N genus Jamesianthus \N \N \N \N \N 17449 A.obtusifolius Astragalus Astragalus obtusifolius \N \N \N \N \N 17450 \N subtribe Basseliniinae \N \N \N \N \N 17451 \N subspecies Navarretia prolifera subsp. prolifera \N \N \N \N \N 17452 D.samoensis Diospyros Diospyros samoensis \N \N \N \N \N 17453 \N genus Choulettia \N \N \N \N \N 17454 \N subspecies Disphyma australe subsp. stricticaule \N \N \N \N \N 17455 C.sullivanii Campylocentrum Campylocentrum sullivanii \N \N \N \N \N 17456 S.longicuspis Sclerolaena Sclerolaena longicuspis \N \N \N \N \N 17457 P.4046-B46 Peponidium Peponidium sp. 3 Bremer et al. 4046-B46 \N \N \N \N \N 17458 \N genus Deeringia \N \N \N \N \N 17459 \N tribe Sesbanieae \N \N \N \N \N 17460 O.95s123_1 Ochrosia Ochrosia sp. 95s123_1 \N \N \N \N \N 17461 M.tomentosa Myrcia Myrcia tomentosa \N \N \N \N \N 17462 \N subspecies Carex mannii subsp. thomasii \N \N \N \N \N 17463 \N varietas Pityopsis graminifolia var. tenuifolia \N \N \N \N \N 17464 \N genus Ophellantha \N \N \N \N \N 17465 L.SH-2010 Liatris Liatris sp. SH-2010 \N \N \N \N \N 17466 C.cocciferum Cyrtochilum Cyrtochilum cocciferum \N \N \N \N \N 17467 M.thomasiana Miconia Miconia thomasiana \N \N \N \N \N 17468 E.schweinfurthii Eragrostis Eragrostis schweinfurthii \N \N \N \N \N 17469 \N varietas Viola grypoceras var. exilis \N \N \N \N \N 17470 M.foetida Moricandia Moricandia foetida \N \N \N \N \N 17471 \N varietas Schoenocaulon megarrhizum var. megarrhizum \N \N \N \N \N 17472 L.diplospermus Leptopus Leptopus diplospermus \N \N \N \N \N 17473 C.flavescens Caulanthus Caulanthus flavescens \N \N \N \N \N 17474 T.altaicus Trollius Trollius altaicus \N \N \N \N \N 17475 \N genus Blotia \N \N \N \N \N 17476 M.apiifolium Mesogramma Mesogramma apiifolium \N \N \N \N \N 17477 M.nerioides Mandevilla Mandevilla nerioides \N \N \N \N \N 17478 L.WOC5 Liparis Liparis sp. WOC5 \N \N \N \N \N 17479 \N genus Diarthron \N \N \N \N \N 17480 S.macrostachys Sideritis Sideritis macrostachys \N \N \N \N \N 17481 \N genus Drymocallis \N \N \N \N \N 17482 P.roseum Polygonatum Polygonatum roseum xin jiang huang jing \N \N \N \N 17483 A.cardaminifolia Andrzeiowskia Andrzeiowskia cardaminifolia \N \N \N \N \N 17484 C.navicularis Callisia Callisia navicularis \N \N \N \N \N 17485 \N genus Thaumatocaryon \N \N \N \N \N 17486 D.leptophyllus Desmanthus Desmanthus leptophyllus \N \N \N \N \N 17487 C.dayana Coelogyne Coelogyne dayana \N \N \N \N \N 17488 L.juniperina Leptecophylla Leptecophylla juniperina \N \N \N \N \N 17489 E.viridicarinatum Eriophorum Eriophorum viridicarinatum \N \N \N \N \N 17490 G.attenuata Gaussia Gaussia attenuata \N \N \N \N \N 17491 C.pruinosus Corybas Corybas pruinosus \N \N \N \N \N 17492 P.cocosensis Psychotria Psychotria cocosensis \N \N \N \N \N 17493 \N genus Bijlia \N \N \N \N \N 17494 \N genus Melochia \N \N \N \N \N 17495 C.gigantea Carnegiea Carnegiea gigantea saguaro \N \N \N \N 17496 P.obtusifolia Passerina Passerina obtusifolia \N \N \N \N \N 17497 M.demissa Moraea Moraea demissa \N \N \N \N \N 17498 C.piptocephala Cousinia Cousinia piptocephala \N \N \N \N \N 17499 \N genus Coleotrype \N \N \N \N \N 17500 H.austroibericum Helictotrichon Helictotrichon austroibericum \N \N \N \N \N 17501 T.ceratopetalum Tetrastigma Tetrastigma ceratopetalum \N \N \N \N \N 17502 C.villosa Chusquea Chusquea villosa \N \N \N \N \N 17503 O.viscosa Ononis Ononis viscosa \N \N \N \N \N 17504 \N genus Lemurella \N \N \N \N \N 17505 A.sparsifolia Alhagi Alhagi sparsifolia \N \N \N \N \N 17506 N.macrocarpa Nannoglottis Nannoglottis macrocarpa \N \N \N \N \N 17507 A.sarawakensis Alocasia Alocasia sarawakensis \N \N \N \N \N 17508 \N subspecies Crepis foetida subsp. afghanistanica \N \N \N \N \N 17509 B.luzhaiensis Begonia Begonia luzhaiensis \N \N \N \N \N 17510 E.recurvata Erica Erica recurvata \N \N \N \N \N 17511 \N subspecies Pinguicula grandiflora subsp. grandiflora \N \N \N \N \N 17512 V.apiifolia Valeriana Valeriana apiifolia \N \N \N \N \N 17513 B.serratuloides Banksia Banksia serratuloides \N \N \N \N \N 17514 \N genus Bottegoa \N \N \N \N \N 17515 \N subtribe Ptychospermatinae \N \N \N \N \N 17516 A.gmelinii Angelica Angelica gmelinii \N \N \N \N \N 17517 I.quadrilocularis Ixora Ixora quadrilocularis \N \N \N \N \N 17518 T.laciniatum Thelypodium Thelypodium laciniatum \N \N \N \N \N 17519 A.tuberculata Alkanna Alkanna tuberculata \N \N \N \N \N 17520 \N family Hydroleaceae \N \N \N \N \N 17521 \N subspecies Salix alba subsp. vitellina golden willow \N \N \N \N 17522 A.bulgaensis Acacia Acacia bulgaensis \N \N \N \N \N 17523 P.grandiflora Pleurothallis Pleurothallis grandiflora \N \N \N \N \N 17524 H.lactucella Hieracium Hieracium lactucella \N \N \N \N \N 17525 C.parqui Cestrum Cestrum parqui green cestrum,green poison-berry,willow-leaf-jessamine \N \N \N \N 17526 T.nienkui Tripterospermum Tripterospermum nienkui \N \N \N \N \N 17527 L.timothyi Linguella Linguella timothyi \N \N \N \N \N 17528 P.singularis Pouteria Pouteria singularis \N \N \N \N \N 17529 S.suaveolens Senecio Senecio suaveolens \N \N \N \N \N 17530 R.rivulare Rhododendron Rhododendron rivulare \N \N \N \N \N 17531 C.ecomata Curcuma Curcuma ecomata \N \N \N \N \N 17532 \N genus Sessea \N \N \N \N \N 17533 O.rupestre Ornithogalum Ornithogalum rupestre \N \N \N \N \N 17534 L.aguana Lobelia Lobelia aguana \N \N \N \N \N 17535 M.uncinata Mammillaria Mammillaria uncinata \N \N \N \N \N 17536 L.involucratum Lysiosepalum Lysiosepalum involucratum \N \N \N \N \N 17537 \N varietas Saintpaulia pendula var. kizarae \N \N \N \N \N 17538 P.grandiflora Pinguicula Pinguicula grandiflora \N \N \N \N \N 17539 M.panamensis Markea Markea panamensis \N \N \N \N \N 17540 T.seidenfadenii Trichoglottis Trichoglottis seidenfadenii \N \N \N \N \N 17541 \N varietas Argostemma parvifolium var. involucratum \N \N \N \N \N 17542 V.rzedowskiorum Valeriana Valeriana rzedowskiorum \N \N \N \N \N 17543 H.suborbicularis Heliophila Heliophila suborbicularis \N \N \N \N \N 17544 \N genus Ongokea \N \N \N \N \N 17545 V.angularis Vigna Vigna angularis adzuki bean,azuki bean \N \N \N \N 17546 P.grandiflorum Polemonium Polemonium grandiflorum \N \N \N \N \N 17547 T.hirtum Trifolium Trifolium hirtum \N \N \N \N \N 17548 S.sessilifolia Stemona Stemona sessilifolia \N \N \N \N \N 17549 A.wiestii Avena Avena wiestii \N \N \N \N \N 17550 \N genus Neoveitchia \N \N \N \N \N 17551 R.sativus Raphanus Raphanus sativus radish \N \N \N \N 17552 N.bivalve Nothoscordum Nothoscordum bivalve \N \N \N \N \N 17553 \N genus Conobea \N \N \N \N \N 17554 A.smilacifolia Astronia Astronia smilacifolia \N \N \N \N \N 17555 E.trifoliatus Eleutherococcus Eleutherococcus trifoliatus \N \N \N \N \N 17556 A.lobatum Achnatherum Achnatherum lobatum \N \N \N \N \N 17557 E.sibiricum Empetrum Empetrum sibiricum \N \N \N \N \N 17558 \N genus Heeria \N \N \N \N \N 17559 C.burgersii Cliffortia Cliffortia burgersii \N \N \N \N \N 17560 M.aliceae Mystacidium Mystacidium aliceae \N \N \N \N \N 17561 F.punctata Ficus Ficus punctata \N \N \N \N \N 17562 \N genus Klasea \N \N \N \N \N 17563 \N subfamily Goetzeoideae \N \N \N \N \N 17564 L.javanica Lippia Lippia javanica \N \N \N \N \N 17565 C.variegata Calathea Calathea variegata \N \N \N \N \N 17566 A.fulvicoma Actinidia Actinidia fulvicoma \N \N \N \N \N 17567 P.katerae Persoonia Persoonia katerae \N \N \N \N \N 17568 C.multipartita Castelnavia Castelnavia multipartita \N \N \N \N \N 17569 P.thunbergii Persicaria Persicaria thunbergii \N \N \N \N \N 17570 W.tegetis Wedelia Wedelia tegetis \N \N \N \N \N 17571 \N genus Mitrocereus \N \N \N \N \N 17572 \N genus Cycladenia \N \N \N \N \N 17573 C.rotundifolia Chamaecrista Chamaecrista rotundifolia \N \N \N \N \N 96152 \N genus Leptarrhena \N \N \N \N \N 17574 D.ramulosum Dicrocaulon Dicrocaulon ramulosum \N \N \N \N \N 17575 W.cuneata Witheringia Witheringia cuneata \N \N \N \N \N 17576 \N genus Pogoneura \N \N \N \N \N 17577 E.trichophylla Erica Erica trichophylla \N \N \N \N \N 17578 B.resinosa Bejaria Bejaria resinosa pega pega \N \N \N \N 17579 M.glauca Manglietia Manglietia glauca \N \N \N \N \N 17580 \N no rank environmental samples Taxonomy:404796 \N \N \N \N \N 17581 \N subspecies Helianthus petiolaris subsp. fallax \N \N \N \N \N 17582 H.solomonensis Heliconia Heliconia solomonensis \N \N \N \N \N 17583 C.pulchella Cyrtandra Cyrtandra pulchella \N \N \N \N \N 17584 F.rusbyi Fosterella Fosterella rusbyi \N \N \N \N \N 17585 B.brevipapposa Brachythrix Brachythrix brevipapposa \N \N \N \N \N 17586 M.dissita Miconia Miconia dissita \N \N \N \N \N 17587 B.cebadilla Bromus Bromus cebadilla \N \N \N \N \N 17588 I.polycarpa Idesia Idesia polycarpa \N \N \N \N \N 17589 F.pottsii Ferocactus Ferocactus pottsii \N \N \N \N \N 17590 I.melanadenia Indigofera Indigofera melanadenia \N \N \N \N \N 17591 M.multiplinervia Miconia Miconia multiplinervia \N \N \N \N \N 17592 A.avicularis Achyropsis Achyropsis avicularis \N \N \N \N \N 17593 F.albivenis Fittonia Fittonia albivenis \N \N \N \N \N 17594 B.wiesei Bulbine Bulbine wiesei \N \N \N \N \N 17595 \N varietas Cymbidium goeringii var. formosanum \N \N \N \N \N 17596 S.zeyheri Scolopia Scolopia zeyheri \N \N \N \N \N 17597 M.karaka Martellidendron Martellidendron karaka \N \N \N \N \N 17598 \N varietas Brassica oleracea var. oleracea \N \N \N \N \N 17599 \N family Oxalidaceae wood-sorrel family \N \N \N \N 17600 A.siculum Antirrhinum Antirrhinum siculum \N \N \N \N \N 17601 S.anomala Symplocos Symplocos anomala \N \N \N \N \N 17602 E.coronatum Eryngium Eryngium coronatum \N \N \N \N \N 17603 R.spicatus Ranunculus Ranunculus spicatus \N \N \N \N \N 17604 \N varietas Pediomelum megalanthum var. megalanthum \N \N \N \N \N 17605 S.integrifolium Schizophragma Schizophragma integrifolium \N \N \N \N \N 17606 K.subsucculenta Kunkeliella Kunkeliella subsucculenta \N \N \N \N \N 17607 S.pompalis Stelis Stelis pompalis \N \N \N \N \N 17608 V.liquidambaricola Viscum Viscum liquidambaricola \N \N \N \N \N 17609 P.pygmaea Philydrella Philydrella pygmaea \N \N \N \N \N 17610 V.rubella Viola Viola rubella \N \N \N \N \N 17611 R.nipponicum Rhododendron Rhododendron nipponicum \N \N \N \N \N 17612 S.viridis Styphelia Styphelia viridis \N \N \N \N \N 17613 S.johnsonii Strychnos Strychnos johnsonii \N \N \N \N \N 17614 J.biflora Jaltomata Jaltomata biflora \N \N \N \N \N 17615 J.selaginoides Junellia Junellia selaginoides \N \N \N \N \N 17616 T.jahnii Thibaudia Thibaudia jahnii \N \N \N \N \N 17617 P.andilanensis Pyrostria Pyrostria andilanensis \N \N \N \N \N 17618 \N genus Paris \N \N \N \N \N 17619 S.aurea Stylosanthes Stylosanthes aurea \N \N \N \N \N 17620 \N tribe Alchorneae \N \N \N \N \N 17621 C.adspersus Croton Croton adspersus \N \N \N \N \N 17622 P.densifolia Pseudoselago Pseudoselago densifolia \N \N \N \N \N 17623 E.pyriformis Endlicheria Endlicheria pyriformis \N \N \N \N \N 17624 H.heyneana Habenaria Habenaria heyneana \N \N \N \N \N 17625 U.pierreanum Uvariastrum Uvariastrum pierreanum \N \N \N \N \N 17626 C.aesculifolia Ceiba Ceiba aesculifolia \N \N \N \N \N 17627 A.forrestii Acer Acer forrestii \N \N \N \N \N 17628 S.gaumeri Senegalia Senegalia gaumeri \N \N \N \N \N 17629 D.pulchra Dalea Dalea pulchra Santa Catalina prairie-clover \N \N \N \N 17630 O.pusillum Ogastemma Ogastemma pusillum \N \N \N \N \N 17631 C.douglasii Crataegus Crataegus douglasii black hawthorn \N \N \N \N 17632 F.lanuginosa Fraxinus Fraxinus lanuginosa \N \N \N \N \N 17633 O.schroederianum Oncidium Oncidium schroederianum \N \N \N \N \N 17634 C.cochlearifolia Chaetanthera Chaetanthera cochlearifolia \N \N \N \N \N 17635 R.transiens Rhododendron Rhododendron transiens \N \N \N \N \N 17636 V.yakushimense Vaccinium Vaccinium yakushimense \N \N \N \N \N 17637 S.SC Stenocactus Stenocactus sp. SC \N \N \N \N \N 17638 P.sakuraii Petrosavia Petrosavia sakuraii \N \N \N \N \N 17639 M.9039 Muschleria Muschleria sp. Milne-Redhead & Taylor 9039 \N \N \N \N \N 17640 C.madagascariensis Cardiochlamys Cardiochlamys madagascariensis \N \N \N \N \N 17641 C.perfoliata Claytonia Claytonia perfoliata miner's lettuce \N \N \N \N 17642 C.tomentosus Ceanothus Ceanothus tomentosus \N \N \N \N \N 17643 E.pinnatifida Eruca Eruca pinnatifida \N \N \N \N \N 17644 R.nobilis Ruellia Ruellia nobilis \N \N \N \N \N 17645 S.malacitanus Senecio Senecio malacitanus \N \N \N \N \N 17646 G.eugeniifolia Garcinia Garcinia eugeniifolia \N \N \N \N \N 17647 P.cordulatum Piper Piper cordulatum \N \N \N \N \N 17648 T.monanthum Trifolium Trifolium monanthum \N \N \N \N \N 17649 S.patens Spartina Spartina patens \N \N \N \N \N 17650 \N genus Rudolfiella \N \N \N \N \N 17651 I.elachoglossa Ischnea Ischnea elachoglossa \N \N \N \N \N 17652 G.cornifolia Gonzalagunia Gonzalagunia cornifolia \N \N \N \N \N 17653 G.meridionalis Gladiolus Gladiolus meridionalis \N \N \N \N \N 17654 \N order Ranunculales \N \N \N \N \N 17655 T.platyphylla Thompsonella Thompsonella platyphylla \N \N \N \N \N 17656 \N genus Bignonia \N \N \N \N \N 17657 D.borealis Draba Draba borealis \N \N \N \N \N 17658 P.miyabei Potentilla Potentilla miyabei \N \N \N \N \N 17659 T.canescens Tiquilia Tiquilia canescens \N \N \N \N \N 17660 C.ADW-2005-1 Castilleja Castilleja sp. ADW-2005-1 \N \N \N \N \N 17661 C.mandshurica Carex Carex mandshurica \N \N \N \N \N 17662 T.lophophoroides Turbinicarpus Turbinicarpus lophophoroides \N \N \N \N \N 17663 O.acaulis Onobrychis Onobrychis acaulis \N \N \N \N \N 17664 T.hartwegii Telipogon Telipogon hartwegii \N \N \N \N \N 17665 L.diosmoides Lachnaea Lachnaea diosmoides \N \N \N \N \N 17666 P.novae-zealandiae Psychrophila Psychrophila novae-zealandiae \N \N \N \N \N 17667 M.petterssonii Mammillaria Mammillaria petterssonii \N \N \N \N \N 17668 A.vogelii Alectra Alectra vogelii \N \N \N \N \N 17669 L.mexicanum Louteridium Louteridium mexicanum \N \N \N \N \N 17670 B.sagittata Balsamorhiza Balsamorhiza sagittata \N \N \N \N \N 17671 P.A11 Platanus Platanus cf. orientalis A11 \N \N \N \N \N 17672 C.leucophloea Caragana Caragana leucophloea \N \N \N \N \N 17673 A.transcaspica Agrostis Agrostis transcaspica \N \N \N \N \N 17674 D.glaucum Dipterygium Dipterygium glaucum \N \N \N \N \N 17675 N.punensis Nassella Nassella punensis \N \N \N \N \N 17676 D.panamensis Dichaea Dichaea panamensis \N \N \N \N \N 17677 T.S5634 unclassified Taraxacum Taraxacum (sect. Kashmirana) sp. S5634 \N \N \N \N \N 17678 P.smithii Prosartes Prosartes smithii \N \N \N \N \N 17679 O.thesioides Oreobliton Oreobliton thesioides \N \N \N \N \N 17680 A.incisa Alchemilla Alchemilla incisa \N \N \N \N \N 17681 O.spathulata Ourisia Ourisia spathulata \N \N \N \N \N 17682 G.repens Genlisea Genlisea repens \N \N \N \N \N 17683 F.alpina Fourraea Fourraea alpina \N \N \N \N \N 17684 S.cordifolia Shorea Shorea cordifolia \N \N \N \N \N 17685 S.virescens Shorea Shorea virescens \N \N \N \N \N 17686 Q.cerris Quercus Quercus cerris Turkey oak \N \N \N \N 17687 E.melanocaulon Epilobium Epilobium melanocaulon \N \N \N \N \N 17688 T.circinnatum Typhonium Typhonium circinnatum \N \N \N \N \N 17689 P.nobilis Pseudosabicea Pseudosabicea nobilis \N \N \N \N \N 17690 C.lugardiae Crinum Crinum lugardiae \N \N \N \N \N 17691 B.surrecta Bambusa Bambusa surrecta \N \N \N \N \N 17692 D.kaki Diospyros Diospyros kaki Japanese persimmon,kaki,kaki persimmon \N \N \N \N 17693 E.subulata Erica Erica subulata \N \N \N \N \N 17694 L.rufovillosus Lithocarpus Lithocarpus rufovillosus \N \N \N \N \N 17695 O.forrestii Omphalogramma Omphalogramma forrestii \N \N \N \N \N 17696 B.ungulata Bauhinia Bauhinia ungulata \N \N \N \N \N 17697 S.foliosa Suaeda Suaeda foliosa \N \N \N \N \N 17698 H.populifolium Hylotelephium Hylotelephium populifolium \N \N \N \N \N 17699 O.aegirtica Ophrys Ophrys aegirtica \N \N \N \N \N 17700 C.125239 Cephalantheropsis Cephalantheropsis sp. Heidelberg BG 125239 \N \N \N \N \N 17701 E.medullosum Endospermum Endospermum medullosum \N \N \N \N \N 17702 D.retroflexa Dinebra Dinebra retroflexa \N \N \N \N \N 17703 E.cockayniana Euphrasia Euphrasia cockayniana \N \N \N \N \N 17704 \N subspecies Primula cuneifolia subsp. saxifragifolia \N \N \N \N \N 17705 \N genus Byttneria \N \N \N \N \N 17706 A.undulatus Aponogeton Aponogeton undulatus \N \N \N \N \N 17707 \N tribe Zeugiteae \N \N \N \N \N 17708 I.omeiensis Itea Itea omeiensis \N \N \N \N \N 17709 I.haenkeana Isertia Isertia haenkeana \N \N \N \N \N 17710 O.hirta Oxalis Oxalis hirta \N \N \N \N \N 17711 M.spinosa Momordica Momordica spinosa \N \N \N \N \N 17712 C.pernambucensis Clusia Clusia pernambucensis \N \N \N \N \N 17713 \N genus Pogonolepis \N \N \N \N \N 17714 E.catamarcensis Euphorbia Euphorbia catamarcensis \N \N \N \N \N 17715 E.seibanica Euphorbia Euphorbia seibanica \N \N \N \N \N 17716 R.hirtellus Ranunculus Ranunculus hirtellus \N \N \N \N \N 17717 N.intertexta Navarretia Navarretia intertexta \N \N \N \N \N 17718 A.acuminatum Acer Acer acuminatum \N \N \N \N \N 17719 H.pratense Helictotrichon Helictotrichon pratense \N \N \N \N \N 17720 P.aculeata Pictetia Pictetia aculeata \N \N \N \N \N 17721 P.englerianus Paracostus Paracostus englerianus \N \N \N \N \N 17722 C.'Haiti' Cinnamodendron Cinnamodendron sp. 'Haiti' \N \N \N \N \N 17723 P.fortunei Paulownia Paulownia fortunei \N \N \N \N \N 17724 E.aggregata Eremophea Eremophea aggregata \N \N \N \N \N 17725 G.circumplexa Gagea Gagea circumplexa \N \N \N \N \N 17726 A.viridissimus Astragalus Astragalus viridissimus \N \N \N \N \N 17727 M.trifurcata Microgyne Microgyne trifurcata \N \N \N \N \N 17728 L.gesnerioides Lysimachia Lysimachia gesnerioides \N \N \N \N \N 17729 A.dasylirioides Agave Agave dasylirioides \N \N \N \N \N 17730 T.dendrophila Tecomanthe Tecomanthe dendrophila \N \N \N \N \N 17731 L.pedunculata Linaria Linaria pedunculata \N \N \N \N \N 17732 A.kunthianum Allium Allium kunthianum \N \N \N \N \N 17733 M.pectinata Mentzelia Mentzelia pectinata \N \N \N \N \N 17734 E.namuliensis Euphorbia Euphorbia namuliensis \N \N \N \N \N 17735 M.macrophylla Mussaenda Mussaenda macrophylla \N \N \N \N \N 17736 \N genus Coris \N \N \N \N \N 17737 S.lacustris Schoenoplectus Schoenoplectus lacustris \N \N \N \N \N 17738 S.tomentosum Solanum Solanum tomentosum \N \N \N \N \N 17739 F.gomelleira Ficus Ficus gomelleira \N \N \N \N \N 17740 P.pallida Passiflora Passiflora pallida \N \N \N \N \N 17741 F.arenicola Fadogia Fadogia arenicola \N \N \N \N \N 17742 C.splendens Cortaderia Cortaderia splendens \N \N \N \N \N 17743 A.sazensoo Arisaema Arisaema sazensoo \N \N \N \N \N 17744 M.kurtzii Mutisia Mutisia kurtzii \N \N \N \N \N 17745 I.argyrocoma Ivesia Ivesia argyrocoma \N \N \N \N \N 17746 \N genus Spathanthus \N \N \N \N \N 17747 L.leptostachyus Leymus Leymus leptostachyus \N \N \N \N \N 17748 \N genus Polevansia \N \N \N \N \N 17749 E.bromoides Elytraria Elytraria bromoides \N \N \N \N \N 17750 S.houghtonii Solidago Solidago houghtonii \N \N \N \N \N 17751 G.rigidipes Guatteria Guatteria rigidipes \N \N \N \N \N 17752 D.tasmanica Dianella Dianella tasmanica \N \N \N \N \N 17753 A.holosericea Allowissadula Allowissadula holosericea \N \N \N \N \N 17754 R.abyssinicus Rumex Rumex abyssinicus \N \N \N \N \N 17755 C.stocksii Cousinia Cousinia stocksii \N \N \N \N \N 17756 L.longirostris Leontodon Leontodon longirostris \N \N \N \N \N 17757 S.commiphoroides Steganotaenia Steganotaenia commiphoroides \N \N \N \N \N 19991 \N genus Leucadendron \N \N \N \N \N 17758 R.sericocephalus Ranunculus Ranunculus sericocephalus \N \N \N \N \N 17759 P.ppucu-ppucu Peperomia Peperomia ppucu-ppucu \N \N \N \N \N 17760 P.catophylla Pavetta Pavetta catophylla \N \N \N \N \N 17761 M.rodrigueziana Maxillaria Maxillaria rodrigueziana \N \N \N \N \N 17762 S.viscosus Senecio Senecio viscosus sticky ragwort \N \N \N \N 17763 P.clausii Pastinaca Pastinaca clausii \N \N \N \N \N 96251 L.sp. Lilium Lilium sp. \N \N \N \N \N 17764 I.boranica Indigofera Indigofera boranica \N \N \N \N \N 17765 H.simplex Haemodorum Haemodorum simplex \N \N \N \N \N 17766 P.lasiophylla Plagiostachys Plagiostachys lasiophylla \N \N \N \N \N 17767 D.chionophila Draba Draba chionophila \N \N \N \N \N 17768 C.sonorae Croton Croton sonorae \N \N \N \N \N 17769 M.niesseniae Maxillaria Maxillaria niesseniae \N \N \N \N \N 17770 C.rodiei Chlorocardium Chlorocardium rodiei \N \N \N \N \N 17771 M.sartorii Mammillaria Mammillaria sartorii \N \N \N \N \N 17772 P.jacquemontii Prunus Prunus jacquemontii flowering almond \N \N \N \N 17773 C.tonkinense Cinnamomum Cinnamomum tonkinense \N \N \N \N \N 17774 L.60 Lupinus Lupinus sp. RJE 60 \N \N \N \N \N 17775 S.verticillata Stemodia Stemodia verticillata whorled twintip \N \N \N \N 17776 P.boehmeriifolium Piper Piper boehmeriifolium \N \N \N \N \N 17777 S.pilifera Sagina Sagina pilifera \N \N \N \N \N 17778 T.litoralis Tiquilia Tiquilia litoralis \N \N \N \N \N 17779 C.macrantha Chaenactis Chaenactis macrantha \N \N \N \N \N 17780 \N tribe Maxillarieae \N \N \N \N \N 17781 S.congestus Sonchus Sonchus congestus \N \N \N \N \N 17782 L.pilosa Lespedeza Lespedeza pilosa \N \N \N \N \N 17783 N.japonicum Nothosmyrnium Nothosmyrnium japonicum \N \N \N \N \N 17784 M.setosissima Mimosa Mimosa setosissima \N \N \N \N \N 17785 C.malambo Croton Croton malambo \N \N \N \N \N 17786 E.triflora Erythrocoma Erythrocoma triflora \N \N \N \N \N 17787 P.scabrum Pelargonium Pelargonium scabrum \N \N \N \N \N 17788 \N genus Borszczowia \N \N \N \N \N 17789 S.papilionacea Schweinfurthia Schweinfurthia papilionacea \N \N \N \N \N 17790 S.annectens Simsia Simsia annectens \N \N \N \N \N 17791 E.nitens Exostema Exostema nitens \N \N \N \N \N 17792 E.oakesii Euphrasia Euphrasia oakesii \N \N \N \N \N 17793 A.potaninii Ajania Ajania potaninii \N \N \N \N \N 17794 F.angustifolia Fraxinus Fraxinus angustifolia \N \N \N \N \N 17795 E.littoralis Etlingera Etlingera littoralis \N \N \N \N \N 17796 L.neglecta Leucogenes Leucogenes neglecta \N \N \N \N \N 17797 L.BA2 Lithocarpus Lithocarpus sp. BA2 \N \N \N \N \N 17798 \N subspecies Phlox maculata subsp. maculata \N \N \N \N \N 17799 H.aculeata Harmsiopanax Harmsiopanax aculeata \N \N \N \N \N 17800 A.trichophyllus Asparagus Asparagus trichophyllus \N \N \N \N \N 17801 C.GUY-72 unclassified Cucurbitaceae Cucurbitaceae sp. GUY-72 \N \N \N \N \N 17802 \N genus Crepidium \N \N \N \N \N 17803 \N genus Vittadinia \N \N \N \N \N 17804 H.pendulum Heteropolygonatum Heteropolygonatum pendulum \N \N \N \N \N 17805 \N genus Convolvulus \N \N \N \N \N 17806 G.aucheri Genista Genista aucheri \N \N \N \N \N 17807 A.dolichopus Anathallis Anathallis dolichopus \N \N \N \N \N 17808 M.acacioides Melaleuca Melaleuca acacioides \N \N \N \N \N 17809 \N genus Rupichloa \N \N \N \N \N 17810 B.trifoliata Bellevalia Bellevalia trifoliata \N \N \N \N \N 17811 S.alliiligneum Syzygium Syzygium alliiligneum \N \N \N \N \N 17812 P.olacoides Ptychopetalum Ptychopetalum olacoides \N \N \N \N \N 17813 N.2429 Niemeyera Niemeyera sp. Ford 2429 \N \N \N \N \N 17814 \N subspecies Lilium pyrenaicum subsp. carniolicum \N \N \N \N \N 17815 C.punctatum Cyrtopodium Cyrtopodium punctatum \N \N \N \N \N 17816 K.foetidissima Kedrostis Kedrostis foetidissima \N \N \N \N \N 17817 \N genus Chaetoseris \N \N \N \N \N 17818 \N order Commelinales \N \N \N \N \N 17819 M.bucharica Moluccella Moluccella bucharica \N \N \N \N \N 17820 A.vestitum Aeonium Aeonium vestitum \N \N \N \N \N 17821 C.napaliensis Canavalia Canavalia napaliensis \N \N \N \N \N 17822 L.clarkei Leptopus Leptopus clarkei \N \N \N \N \N 17823 M.lecardii Meryta Meryta lecardii \N \N \N \N \N 17824 E.sp. Elodea Elodea sp. \N \N \N \N \N 17825 V.hirsutum Vaccinium Vaccinium hirsutum \N \N \N \N \N 17826 L.coniifolia Ligusticopsis Ligusticopsis coniifolia \N \N \N \N \N 17827 C.jacquemontii Corylus Corylus jacquemontii \N \N \N \N \N 17828 D.sessilifolia Diervilla Diervilla sessilifolia \N \N \N \N \N 17829 L.kagerensis Loudetia Loudetia kagerensis \N \N \N \N \N 17830 B.macdougallii Begonia Begonia macdougallii \N \N \N \N \N 17831 S.cordifolium Smyrnium Smyrnium cordifolium \N \N \N \N \N 17832 N.2-1334 Nasa Nasa cf. cymbopetala 2-1334 \N \N \N \N \N 17833 I.crinicalyx Ipomoea Ipomoea crinicalyx \N \N \N \N \N 17834 C.trollii Columnea Columnea trollii \N \N \N \N \N 17835 B.sebertii Beccariella Beccariella sebertii \N \N \N \N \N 17836 A.glabra Aesculus Aesculus glabra Ohio buckeye \N \N \N \N 17837 \N genus Punica \N \N \N \N \N 17838 D.cotinifolia Dais Dais cotinifolia \N \N \N \N \N 17839 \N subspecies Asteriscus graveolens subsp. odorus \N \N \N \N \N 17840 P.fosterii Peperomia Peperomia fosterii \N \N \N \N \N 17841 B.engleriana Bomarea Bomarea engleriana \N \N \N \N \N 17842 \N genus Ichthyothere \N \N \N \N \N 17843 M.ovalifolia Myrceugenia Myrceugenia ovalifolia \N \N \N \N \N 17844 Z.SRR-2011 unclassified Zygopetalinae Zygopetalinae sp. 5 SRR-2011 \N \N \N \N \N 17845 M.revoluta Melicope Melicope revoluta \N \N \N \N \N 17846 A.austrosibiricum Allium Allium austrosibiricum \N \N \N \N \N 17847 \N genus Sinoleontopodium \N \N \N \N \N 17848 C.lowei Carex Carex lowei \N \N \N \N \N 17849 H.albicans Havardia Havardia albicans \N \N \N \N \N 17850 L.chilense Lycium Lycium chilense \N \N \N \N \N 17851 P.glutinosa Pulicaria Pulicaria glutinosa \N \N \N \N \N 17852 M.illustris Mandevilla Mandevilla illustris \N \N \N \N \N 17853 \N genus Schmalhausenia \N \N \N \N \N 17854 H.elongatum Heliotropium Heliotropium elongatum \N \N \N \N \N 17855 L.californicum Lycium Lycium californicum California desert-thorn \N \N \N \N 17856 B.dipetala Bauhinia Bauhinia dipetala \N \N \N \N \N 17857 \N order Celastrales \N \N \N \N \N 17858 B.macrostachya Buddleja Buddleja macrostachya \N \N \N \N \N 17859 P.carinata Pitcairnia Pitcairnia carinata \N \N \N \N \N 17860 A.hiepiana Aralia Aralia hiepiana \N \N \N \N \N 17861 \N genus Cercidiphyllum \N \N \N \N \N 17862 C.itzaeus Croton Croton itzaeus \N \N \N \N \N 17863 T.672 Tachigali Tachigali sp. Klitgaard 672 \N \N \N \N \N 17864 \N genus Ochreinauclea \N \N \N \N \N 17865 B.integrifolia Blumea Blumea integrifolia \N \N \N \N \N 17866 H.umbraculigerum Helichrysum Helichrysum umbraculigerum \N \N \N \N \N 17867 G.guttata Gravesia Gravesia guttata \N \N \N \N \N 17868 I.rhizocephala Inula Inula rhizocephala \N \N \N \N \N 17869 C.longipes Cleomella Cleomella longipes \N \N \N \N \N 17870 P.dregeanum Panicum Panicum dregeanum \N \N \N \N \N 17871 A.ballii Aliella Aliella ballii \N \N \N \N \N 17872 I.anthemidifolia Iphiona Iphiona anthemidifolia \N \N \N \N \N 17873 A.chittagonga Aglaia Aglaia chittagonga \N \N \N \N \N 17874 C.wagneri Cyrtandra Cyrtandra wagneri \N \N \N \N \N 17875 V.ovalifolium Viscum Viscum ovalifolium \N \N \N \N \N 17876 S.australiensis Semecarpus Semecarpus australiensis \N \N \N \N \N 17877 A.aurantiaca Alectra Alectra aurantiaca \N \N \N \N \N 17878 F.xylophylla Ficus Ficus xylophylla \N \N \N \N \N 17879 \N genus Pseudophoenix \N \N \N \N \N 17880 A.arida Argemone Argemone arida \N \N \N \N \N 17881 R.monteiroae Raphionacme Raphionacme monteiroae \N \N \N \N \N 17882 O.ridleyana Ophiorrhiza Ophiorrhiza ridleyana \N \N \N \N \N 17883 O.elegantissima Onosma Onosma elegantissima \N \N \N \N \N 17884 \N genus Herreranthus \N \N \N \N \N 17885 L.wahlenbergii Luzula Luzula wahlenbergii \N \N \N \N \N 17886 \N genus Lacistema \N \N \N \N \N 17887 N.japonica Neoachmandra Neoachmandra japonica \N \N \N \N \N 17888 \N genus Martellidendron \N \N \N \N \N 17889 \N genus Anacampseros \N \N \N \N \N 17890 \N varietas Veronica orchidea var. glandulopilosa \N \N \N \N \N 17891 \N tribe Manicarieae \N \N \N \N \N 17892 \N genus Catesbaea \N \N \N \N \N 17893 J.nipensis Jacquemontia Jacquemontia nipensis \N \N \N \N \N 17894 P.allemanii Prosthechea Prosthechea allemanii \N \N \N \N \N 17895 \N genus Nashia \N \N \N \N \N 17896 S.vermiculata Salsola Salsola vermiculata \N \N \N \N \N 17897 \N genus Stereospermum \N \N \N \N \N 17898 S.spartea Sisyndite Sisyndite spartea \N \N \N \N \N 17899 \N genus Lasiocroton \N \N \N \N \N 17900 O.MO1119 Oxalis Oxalis sp. MO1119 \N \N \N \N \N 17901 P.pertenuis Pseudoroegneria Pseudoroegneria pertenuis \N \N \N \N \N 17902 C.falcata Commiphora Commiphora falcata \N \N \N \N \N 17903 G.diffusa Gorteria Gorteria diffusa \N \N \N \N \N 17904 C.glabra Cyrtandra Cyrtandra glabra \N \N \N \N \N 17905 T.echinatum Trifolium Trifolium echinatum \N \N \N \N \N 17906 \N varietas Brassica juncea var. gracilis \N \N \N \N \N 17907 T.asiatica Tetracera Tetracera asiatica \N \N \N \N \N 17908 E.godoyensis Exostyles Exostyles godoyensis \N \N \N \N \N 17909 N.grandiflora Nepeta Nepeta grandiflora \N \N \N \N \N 17910 R.leeana Rodriguezia Rodriguezia leeana \N \N \N \N \N 17911 U.foveolata Utricularia Utricularia foveolata \N \N \N \N \N 17912 \N genus Bellardiochloa \N \N \N \N \N 17913 P.darienense Piper Piper darienense \N \N \N \N \N 17914 D.virgatus Desmanthus Desmanthus virgatus wild tantan \N \N \N \N 17915 L.silvicolarum Lithocarpus Lithocarpus silvicolarum \N \N \N \N \N 17916 T.egena Templetonia Templetonia egena \N \N \N \N \N 17917 O.pleurostachys Orleanesia Orleanesia pleurostachys \N \N \N \N \N 17918 E.sp. Euphrasia Euphrasia sp. \N \N \N \N \N 17919 N.sarcophylla Neoalsomitra Neoalsomitra sarcophylla \N \N \N \N \N 17920 S.lurida Strobilanthes Strobilanthes lurida \N \N \N \N \N 17921 E.2907 Eriospermum Eriospermum cf. flagelliforme Nordal 2907 \N \N \N \N \N 17922 D.procumbens Dodonaea Dodonaea procumbens \N \N \N \N \N 17923 \N subspecies Nasa pteridophylla subsp. pteridophylla \N \N \N \N \N 17924 A.rosea Asclepias Asclepias rosea \N \N \N \N \N 17925 P.tubulosus Pogonopus Pogonopus tubulosus \N \N \N \N \N 17926 \N genus Tremacron \N \N \N \N \N 17927 O.comosa Oxalis Oxalis comosa \N \N \N \N \N 17928 A.grandifolium Anomospermum Anomospermum grandifolium \N \N \N \N \N 17929 B.aggregata Besleria Besleria aggregata \N \N \N \N \N 17930 B.glutinosum Bulbophyllum Bulbophyllum glutinosum \N \N \N \N \N 17931 P.salicornioides Psilocaulon Psilocaulon salicornioides \N \N \N \N \N 17932 P.angkorensis Phyllanthus Phyllanthus angkorensis \N \N \N \N \N 17933 \N subspecies Acer tataricum subsp. aidzuense \N \N \N \N \N 17934 S.sessei Salvia Salvia sessei \N \N \N \N \N 17935 Q.robur Quercus Quercus robur English oak,pedunculate oak,truffle oak \N \N \N \N 17936 L.cossonianum Limonium Limonium cossonianum \N \N \N \N \N 17937 I.grandiflorum Iochroma Iochroma grandiflorum \N \N \N \N \N 17938 T.glabrum Talipariti Talipariti glabrum \N \N \N \N \N 17939 \N varietas Lilium bakerianum var. rubrum \N \N \N \N \N 17940 V.bullata Varronia Varronia bullata \N \N \N \N \N 17941 L.amara Lunasia Lunasia amara \N \N \N \N \N 17942 A.carvalhoi Andira Andira carvalhoi \N \N \N \N \N 17943 M.albidum Machairophyllum Machairophyllum albidum \N \N \N \N \N 17944 A.inebrians Achnatherum Achnatherum inebrians \N \N \N \N \N 17945 P.fenzliana Prunus Prunus fenzliana \N \N \N \N \N 17946 \N varietas Penstemon scariosus var. albifluvis \N \N \N \N \N 17947 \N subtribe Livistoninae \N \N \N \N \N 17948 R.nitida Ramirezella Ramirezella nitida \N \N \N \N \N 17949 F.1658 Fridericia Fridericia sp. Folli 1658 \N \N \N \N \N 17950 D.rubiginosa Daviesia Daviesia rubiginosa \N \N \N \N \N 17951 C.malayanum Cotylelobium Cotylelobium malayanum \N \N \N \N \N 17952 A.furcata Artemisia Artemisia furcata \N \N \N \N \N 17953 Z.galericulata Zaleya Zaleya galericulata \N \N \N \N \N 17954 S.cochoae Solanum Solanum cochoae \N \N \N \N \N 17955 S.physophora Suaeda Suaeda physophora \N \N \N \N \N 17956 P.mitiqui Podanthus Podanthus mitiqui \N \N \N \N \N 17957 F.javorkae Festuca Festuca javorkae \N \N \N \N \N 17958 \N genus Cinchonopsis \N \N \N \N \N 17959 P.chlorantha Pyrola Pyrola chlorantha \N \N \N \N \N 17960 S.cultivar Saintpaulia Saintpaulia hybrid cultivar \N \N \N \N \N 17961 P.piscipula Piscidia Piscidia piscipula \N \N \N \N \N 17962 M.tenuifolium Microloma Microloma tenuifolium \N \N \N \N \N 17963 G.sanguineum Geranium Geranium sanguineum \N \N \N \N \N 17964 C.aromaticum Chaerophyllum Chaerophyllum aromaticum \N \N \N \N \N 17965 P.capillaris Primula Primula capillaris Ruby Mountain primrose \N \N \N \N 17966 \N genus Cordemoya \N \N \N \N \N 17967 C.longiflora Cyanea Cyanea longiflora \N \N \N \N \N 17968 C.bivonae Colchicum Colchicum bivonae \N \N \N \N \N 17969 F.sibirica Ferula Ferula sibirica \N \N \N \N \N 17970 C.crinita Coccothrinax Coccothrinax crinita thatch palm \N \N \N \N 17971 P.venusta Pyrostegia Pyrostegia venusta \N \N \N \N \N 17972 H.hirsutissima Hemigraphis Hemigraphis hirsutissima \N \N \N \N \N 17973 C.flagelliferum Chrysosplenium Chrysosplenium flagelliferum \N \N \N \N \N 17974 M.nodiflorum Mesembryanthemum Mesembryanthemum nodiflorum \N \N \N \N \N 17975 \N subspecies Berula erecta subsp. thunbergii \N \N \N \N \N 17976 \N genus Potoxylon \N \N \N \N \N 17977 \N genus Baillonella \N \N \N \N \N 17978 H.retzdorffianum Heliosperma Heliosperma retzdorffianum \N \N \N \N \N 17979 A.turneri Alseuosmia Alseuosmia turneri \N \N \N \N \N 17980 D.plantaginea Dubautia Dubautia plantaginea \N \N \N \N \N 17981 G.arizonica Grayia Grayia arizonica \N \N \N \N \N 17982 M.gaudialis Macrocarpaea Macrocarpaea gaudialis \N \N \N \N \N 17983 \N varietas Bruguiera sexangula var. rhynchopetala \N \N \N \N \N 17984 P.muscosa Psychotria Psychotria muscosa \N \N \N \N \N 17985 B.subacaulis Berardia Berardia subacaulis \N \N \N \N \N 17986 \N genus Curio \N \N \N \N \N 17987 G.trichoclonia Guatteria Guatteria trichoclonia \N \N \N \N \N 17988 P.amethystina Passiflora Passiflora amethystina \N \N \N \N \N 17989 \N genus Bombax \N \N \N \N \N 17990 D.villosus Dicranostyles Dicranostyles villosus \N \N \N \N \N 17991 O.longiglumis Oryza Oryza longiglumis \N \N \N \N \N 17992 F.galpinii Faurea Faurea galpinii \N \N \N \N \N 17993 P.scabrida Pterostylis Pterostylis scabrida \N \N \N \N \N 17994 L.scabrum Lomatium Lomatium scabrum \N \N \N \N \N 17995 E.willkommii Euphrasia Euphrasia willkommii \N \N \N \N \N 17996 E.rzedowskii Euphorbia Euphorbia rzedowskii \N \N \N \N \N 17997 G.aphanodioica Gaertnera Gaertnera aphanodioica \N \N \N \N \N 17998 P.tetraphylla Paris Paris tetraphylla \N \N \N \N \N 17999 D.spectabilis Dombeya Dombeya spectabilis \N \N \N \N \N 18000 H.epilobioides Hoehnea Hoehnea epilobioides \N \N \N \N \N 18001 \N subspecies Cleome spinosa subsp. longicarpa \N \N \N \N \N 18002 \N genus Ballantinia \N \N \N \N \N 18003 \N genus Kaempferia \N \N \N \N \N 18004 R.moyesii Rosa Rosa moyesii \N \N \N \N \N 18005 C.seguinii Castanea Castanea seguinii \N \N \N \N \N 18006 D.thymelaeoides Diastella Diastella thymelaeoides \N \N \N \N \N 18007 M.677 Mesua Mesua sp. Chase 677 \N \N \N \N \N 18008 M.confusa Metalasia Metalasia confusa \N \N \N \N \N 18009 M.ternata Maesa Maesa ternata \N \N \N \N \N 18010 V.populnea Vigna Vigna populnea \N \N \N \N \N 18011 M.spinosissima Mammillaria Mammillaria spinosissima \N \N \N \N \N 18012 C.echinocarpa Castanopsis Castanopsis echinocarpa \N \N \N \N \N 18013 D.acuminatus Desmanthus Desmanthus acuminatus \N \N \N \N \N 18014 X.oligandra Xylosma Xylosma oligandra \N \N \N \N \N 18015 \N genus Leucospora \N \N \N \N \N 18016 \N subspecies Circaea alpina subsp. alpina \N \N \N \N \N 18017 F.hirsuta Frankenia Frankenia hirsuta \N \N \N \N \N 18018 \N genus Dickasonia \N \N \N \N \N 18019 \N genus Ammodendron \N \N \N \N \N 18020 E.copiosa Erica Erica copiosa \N \N \N \N \N 18021 C.latifolia Clavija Clavija latifolia \N \N \N \N \N 18022 T.pilosum Tripsacum Tripsacum pilosum \N \N \N \N \N 18023 \N genus Aerva \N \N \N \N \N 18024 \N genus Diogoa \N \N \N \N \N 18025 \N genus Aphragmus \N \N \N \N \N 18026 H.scandens Hydrangea Hydrangea hirta x Hydrangea scandens \N \N \N \N \N 18027 G.congesta Geonoma Geonoma congesta \N \N \N \N \N 18028 \N genus Pseudolachnostylis \N \N \N \N \N 18029 \N genus Marantochloa \N \N \N \N \N 18030 T.14477 Tristellateia Tristellateia sp. Leeuwenberg & Rafamantanansoa 14477 \N \N \N \N \N 18031 G.dayana Gagea Gagea dayana \N \N \N \N \N 18032 E.anatona Euryblema Euryblema anatona \N \N \N \N \N 18033 R.yezoensis Ranunculus Ranunculus yezoensis \N \N \N \N \N 18034 P.holstii Pilea Pilea holstii \N \N \N \N \N 18035 L.pentandrum Lonchostoma Lonchostoma pentandrum \N \N \N \N \N 18036 P.arifolium Pachyplectron Pachyplectron arifolium \N \N \N \N \N 18037 E.multifidus Euryops Euryops multifidus \N \N \N \N \N 18038 L.bequaertii Leonardoxa Leonardoxa bequaertii \N \N \N \N \N 18039 \N varietas Clivia miniata var. miniata \N \N \N \N \N 18040 F.cestrifolia Ficus Ficus cestrifolia \N \N \N \N \N 18041 A.villosum Alantsilodendron Alantsilodendron villosum \N \N \N \N \N 18042 \N subspecies Stuckenia filiformis subsp. occidentalis \N \N \N \N \N 18043 C.coriacea Chamaecrista Chamaecrista coriacea \N \N \N \N \N 18044 A.leiocarpa Arctotis Arctotis leiocarpa \N \N \N \N \N 18045 F.fedoroviorum Ferula Ferula fedoroviorum \N \N \N \N \N 18046 H.foetidus Helleborus Helleborus foetidus stinking hellebore \N \N \N \N 18047 S.pearsonii Sarcostemma Sarcostemma pearsonii \N \N \N \N \N 18048 S.cajanumense Solanum Solanum cajanumense \N \N \N \N \N 18049 O.549 Orthogynium Orthogynium sp. CB 549 \N \N \N \N \N 18050 A.robusta Argylia Argylia robusta \N \N \N \N \N 18051 A.2462 Aristida Aristida sp. Cerros 2462 \N \N \N \N \N 18052 H.bigibbosus Hybanthus Hybanthus bigibbosus \N \N \N \N \N 18053 D.arida Deinandra Deinandra arida \N \N \N \N \N 18054 I.byobiensis Indigofera Indigofera byobiensis \N \N \N \N \N 18055 S.pyramidatus Senecio Senecio pyramidatus \N \N \N \N \N 18056 C.angustifolium Chamerion Chamerion angustifolium fireweed \N \N \N \N 18057 H.arizonensis Helianthus Helianthus arizonensis \N \N \N \N \N 18058 P.obscurum Phrynium Phrynium obscurum \N \N \N \N \N 96252 \N genus Borya \N \N \N \N \N 18059 C.lemmonii Ceanothus Ceanothus lemmonii \N \N \N \N \N 18060 C.oblongifolia Columnea Columnea oblongifolia \N \N \N \N \N 18061 \N varietas Cirsium scariosum var. citrinum La Graciosa thistle \N \N \N \N 18062 E.rigidum Epilobium Epilobium rigidum \N \N \N \N \N 18063 N.elongatus Nastus Nastus elongatus \N \N \N \N \N 18064 N.spadiceum Nemum Nemum spadiceum \N \N \N \N \N 18065 \N tribe Coleeae \N \N \N \N \N 18066 R.polyanthemoides Ranunculus Ranunculus polyanthemoides \N \N \N \N \N 18067 K.rosei Kalanchoe Kalanchoe rosei \N \N \N \N \N 18068 V.pilosiuscula Valeriana Valeriana pilosiuscula \N \N \N \N \N 18069 P.mata' Pimelea Pimelea sp. 'Te mata' \N \N \N \N \N 18070 \N genus Pseudogynoxys \N \N \N \N \N 18071 J.6170 Jurinea Jurinea sp. Duran 6170 \N \N \N \N \N 18072 N.acuminatissima Neo-uvaria Neo-uvaria acuminatissima \N \N \N \N \N 18073 M.vulpina Muraltia Muraltia vulpina \N \N \N \N \N 18074 K.HG-98/1 Kalanchoe Kalanchoe sp. HG-98/1 \N \N \N \N \N 18075 T.micrantha Triphysaria Triphysaria micrantha \N \N \N \N \N 18076 T.austrosinense Tetradium Tetradium austrosinense \N \N \N \N \N 18077 H.pedunculata Helicostylis Helicostylis pedunculata \N \N \N \N \N 18078 A.platycaulis Aristea Aristea platycaulis \N \N \N \N \N 18079 S.graminifolium Sisyrinchium Sisyrinchium graminifolium \N \N \N \N \N 18080 P.viscidula Pultenaea Pultenaea viscidula \N \N \N \N \N 18081 L.diffusa Lophophora Lophophora diffusa \N \N \N \N \N 18082 A.yuanum Allium Allium yuanum \N \N \N \N \N 18083 \N no rank Podostemaceae incertae sedis \N \N \N \N \N 18084 \N subspecies Ipomopsis congesta subsp. congesta \N \N \N \N \N 18085 \N no rank environmental samples Taxonomy:1096680 \N \N \N \N \N 18086 C.capense Cerastium Cerastium capense \N \N \N \N \N 18087 \N genus Costularia \N \N \N \N \N 18088 D.setacea Diuris Diuris setacea \N \N \N \N \N 18089 I.linearis Isochilus Isochilus linearis \N \N \N \N \N 18090 C.persica Chorispora Chorispora persica \N \N \N \N \N 18091 C.velutina Cattleya Cattleya velutina \N \N \N \N \N 18092 E.connata Euphorbia Euphorbia connata \N \N \N \N \N 18093 M.tequilana Mimosa Mimosa tequilana \N \N \N \N \N 18094 \N varietas Barnadesia lehmannii var. lehmannii \N \N \N \N \N 18095 \N genus Anaphyllopsis \N \N \N \N \N 18096 \N genus Allamanda \N \N \N \N \N 18097 S.liebmannii Sinclairia Sinclairia liebmannii \N \N \N \N \N 18098 \N family Ticodendraceae \N \N \N \N \N 18099 E.mertonii Euphorbia Euphorbia mertonii \N \N \N \N \N 18100 C.abyssinicus Cenchrus Cenchrus abyssinicus \N \N \N \N \N 18101 P.pubescens Platymiscium Platymiscium pubescens \N \N \N \N \N 18102 N.novarae Nassella Nassella novarae \N \N \N \N \N 18103 A.umbelliformis Artemisia Artemisia umbelliformis \N \N \N \N \N 18104 F.chartacea Ficus Ficus chartacea \N \N \N \N \N 18105 \N genus Osteocarpum \N \N \N \N \N 18106 D.pachyphylla Daviesia Daviesia pachyphylla \N \N \N \N \N 18107 M.grandifolia Macaranga Macaranga grandifolia \N \N \N \N \N 18108 C.argutus Corchorus Corchorus argutus \N \N \N \N \N 18109 T.606 Thyrsanthemum Thyrsanthemum sp. Chase 606 \N \N \N \N \N 18110 \N genus Actinocephalus \N \N \N \N \N 18111 S.nobilis Sterculia Sterculia nobilis \N \N \N \N \N 18112 M.lappacea Miconia Miconia lappacea \N \N \N \N \N 18113 M.(GB) Macaranga Macaranga sp. D (GB) \N \N \N \N \N 18114 H.auriculata Halosarcia Halosarcia auriculata \N \N \N \N \N 18115 L.albifrons Lupinus Lupinus albifrons \N \N \N \N \N 18116 \N genus Balsamocitrus \N \N \N \N \N 18117 P.subintegrifolia Paradrypetes Paradrypetes subintegrifolia \N \N \N \N \N 18118 S.9466 Sidalcea Sidalcea sp. Oswald 9466 \N \N \N \N \N 18119 \N subspecies Virgilia oroboides subsp. oroboides \N \N \N \N \N 18120 P.metallica Peperomia Peperomia metallica \N \N \N \N \N 18121 \N genus Gymnotheca \N \N \N \N \N 18122 R.speciosa Rhynchospora Rhynchospora speciosa \N \N \N \N \N 18123 B.bullata Buddleja Buddleja bullata \N \N \N \N \N 18124 M.pinnata Meliosma Meliosma pinnata \N \N \N \N \N 18125 C.s.n. Chrysocoma Chrysocoma sp. 1 Forest s.n. \N \N \N \N \N 18126 \N genus Excentrodendron \N \N \N \N \N 18127 B.cuneata Berkheya Berkheya cuneata \N \N \N \N \N 18128 A.heterophyllum Aspidoglossum Aspidoglossum heterophyllum \N \N \N \N \N 18129 \N subspecies Schizodium obliquum subsp. obliquum \N \N \N \N \N 18130 O.wigginsii Oenothera Oenothera wigginsii \N \N \N \N \N 18131 \N genus Ampelocalamus \N \N \N \N \N 18132 C.brasiliana Chomelia Chomelia brasiliana \N \N \N \N \N 18133 G.albida Gaudichaudia Gaudichaudia albida \N \N \N \N \N 18134 \N subspecies Nicoraepoa subenervis subsp. spegazziniana \N \N \N \N \N 18135 C.chica Chloraea Chloraea chica \N \N \N \N \N 18136 L.peltata Licuala Licuala peltata \N \N \N \N \N 18137 S.blumenscheinii Sophronitis Sophronitis blumenscheinii \N \N \N \N \N 18138 \N varietas Rhododendron zaleucum var. pubifolium \N \N \N \N \N 18139 S.macgillivrayi Spiraeanthemum Spiraeanthemum macgillivrayi \N \N \N \N \N 18140 P.957 Peniocereus Peniocereus sp. Guzman 957 \N \N \N \N \N 18141 S.dryophila Symplocos Symplocos dryophila \N \N \N \N \N 18142 \N varietas Euphorbia deltoidea var. serpyllum \N \N \N \N \N 18143 B.calophleba Boehmeria Boehmeria calophleba \N \N \N \N \N 18144 \N genus Plectranthus Swedish begonias,Swedish ivies,spur flowers \N \N \N \N 18145 \N genus Rhytidocaulon \N \N \N \N \N 18146 B.anjozorobeense Bulbophyllum Bulbophyllum anjozorobeense \N \N \N \N \N 18147 O.hallii Oncidium Oncidium hallii \N \N \N \N \N 18148 R.platyacantha Rosa Rosa platyacantha \N \N \N \N \N 18149 D.fissa Daemonorops Daemonorops fissa \N \N \N \N \N 18150 A.schimperi Aeschynomene Aeschynomene schimperi \N \N \N \N \N 18151 A.brizula Aphelia Aphelia brizula \N \N \N \N \N 18152 \N varietas Sorbus sambucifolia var. pseudogracilis \N \N \N \N \N 18153 \N genus Halimione \N \N \N \N \N 18154 P.perfoliatus Potamogeton Potamogeton perfoliatus \N \N \N \N \N 18155 O.ortizii Oliveriana Oliveriana ortizii \N \N \N \N \N 18156 \N genus Elsiea \N \N \N \N \N 18157 R.andromedoides Rhodamnia Rhodamnia andromedoides \N \N \N \N \N 18158 D.exalata Dioscorea Dioscorea exalata \N \N \N \N \N 18159 G.tetragona Geissomeria Geissomeria tetragona \N \N \N \N \N 18160 S.tianschanicum Sphaenolobium Sphaenolobium tianschanicum \N \N \N \N \N 18161 V.schistosa Veronica Veronica schistosa \N \N \N \N \N 18162 P.2215 Poincianella Poincianella sp. Hughes 2215 \N \N \N \N \N 18163 I.thibaudiana Indigofera Indigofera thibaudiana \N \N \N \N \N 18164 R.subcollina Rosa Rosa subcollina \N \N \N \N \N 18165 O.hypsophila Oxalis Oxalis hypsophila \N \N \N \N \N 18166 C.chelidonioides Calceolaria Calceolaria chelidonioides \N \N \N \N \N 18167 C.quintanilhae Cucumis Cucumis quintanilhae \N \N \N \N \N 18168 F.sur Ficus Ficus sur \N \N \N \N \N 18169 M.phytocrenoides Mendoncia Mendoncia phytocrenoides \N \N \N \N \N 18170 S.jonesii Selenia Selenia jonesii \N \N \N \N \N 18171 D.ericoides Disparago Disparago ericoides \N \N \N \N \N 18172 \N genus Mecardonia \N \N \N \N \N 18173 O.taurica Onosma Onosma taurica \N \N \N \N \N 18174 G.croceus Gonolobus Gonolobus croceus \N \N \N \N \N 18175 \N genus Micranthocereus \N \N \N \N \N 18176 G.phillyreifolia Gaultheria Gaultheria phillyreifolia \N \N \N \N \N 18177 M.myrtifolium Metastelma Metastelma myrtifolium \N \N \N \N \N 18178 D.fascicularis Darwinia Darwinia fascicularis \N \N \N \N \N 18179 H.murinum Hordeum Hordeum murinum \N \N \N \N \N 18180 M.chilensis Myzorrhiza Myzorrhiza chilensis \N \N \N \N \N 18181 D.caryophyllus Dianthus Dianthus caryophyllus carnation,clove pink \N \N \N \N 18182 B.longistipes Bauhinia Bauhinia longistipes \N \N \N \N \N 18183 C.setosa Conostegia Conostegia setosa \N \N \N \N \N 18184 V.takahashii Viola Viola albida x Viola x takahashii \N \N \N \N \N 18185 A.2470 Acranthera Acranthera sp. 1 Ridsdale 2470 \N \N \N \N \N 18186 S.rupestris Senecio Senecio rupestris \N \N \N \N \N 18187 \N genus Resia \N \N \N \N \N 18188 S.repens Sebaea Sebaea repens \N \N \N \N \N 18189 C.savoryanum Clinostigma Clinostigma savoryanum \N \N \N \N \N 18190 \N genus Balgoya \N \N \N \N \N 18191 C.KM-2004 Crepidorhopalon Crepidorhopalon sp. KM-2004 \N \N \N \N \N 18192 D.cristata Dysphania Dysphania cristata \N \N \N \N \N 18193 \N varietas Oldenlandia echinulosa var. pellucida \N \N \N \N \N 18194 D.cinerea Draba Draba cinerea \N \N \N \N \N 18195 \N family Pentaphylacaceae \N \N \N \N \N 18196 H.cultivar Hemerocallis Hemerocallis hybrid cultivar daylily \N \N \N \N 18197 K.kunstleri Kayea Kayea kunstleri \N \N \N \N \N 18198 S.EVM-2009 Sparganium Sparganium sp. EVM-2009 \N \N \N \N \N 18199 T.EVM-2008 Tragopogon Tragopogon cf. tasch-kala EVM-2008 \N \N \N \N \N 18200 P.prattii Pleurospermum Pleurospermum prattii \N \N \N \N \N 18201 C.schiedeana Chamaedorea Chamaedorea schiedeana \N \N \N \N \N 18202 P.amabilis Phalaenopsis Phalaenopsis amabilis \N \N \N \N \N 18203 S.angustifolia Streptochaeta Streptochaeta angustifolia \N \N \N \N \N 18204 C.virgata Centaurea Centaurea virgata \N \N \N \N \N 18205 A.line unclassified Allium Allium fistulosum/Allium cepa monosomic addition line \N \N \N \N \N 18206 P.lindeniana Pilea Pilea lindeniana \N \N \N \N \N 18207 B.densa Bulbostylis Bulbostylis densa \N \N \N \N \N 18208 B.handroi Barbosella Barbosella handroi \N \N \N \N \N 18209 A.amatymbica Alepidea Alepidea amatymbica \N \N \N \N \N 18210 C.namaquensis Ceraria Ceraria namaquensis \N \N \N \N \N 18211 \N varietas Tillandsia xiphioides var. xiphioides \N \N \N \N \N 18212 K.chinensis Kelloggia Kelloggia chinensis \N \N \N \N \N 18213 P.xiikzodz Passiflora Passiflora coriacea x Passiflora xiikzodz \N \N \N \N \N 18214 G.rivularis Greslania Greslania rivularis \N \N \N \N \N 18215 C.podospermifolia Centaurea Centaurea podospermifolia \N \N \N \N \N 18216 \N tribe Erycibeae \N \N \N \N \N 18217 \N genus Coleochloa \N \N \N \N \N 18218 P.kirkii Poa Poa kirkii \N \N \N \N \N 18219 M.huebschii Maxillaria Maxillaria huebschii \N \N \N \N \N 18220 V.officinalis Verbena Verbena officinalis common verbena,kumatsuzura,ma bian cao,pigeon's-grass \N \N \N \N 18221 M.polycarpa Mimosa Mimosa polycarpa \N \N \N \N \N 18222 \N genus Hypodiscus \N \N \N \N \N 18223 D.reticulatum Doronicum Doronicum reticulatum \N \N \N \N \N 18224 \N tribe Centropodieae \N \N \N \N \N 18225 O.lindia Ophrys Ophrys lindia \N \N \N \N \N 18226 T.longisepala Thladiantha Thladiantha longisepala \N \N \N \N \N 18227 A.kurssanovii Allium Allium kurssanovii \N \N \N \N \N 18228 C.glabrescens Circaea Circaea glabrescens \N \N \N \N \N 18229 E.hsienmu Excentrodendron Excentrodendron hsienmu \N \N \N \N \N 18230 P.deserticola Phylloscirpus Phylloscirpus deserticola \N \N \N \N \N 18231 C.edwardii Cyrtochilum Cyrtochilum edwardii \N \N \N \N \N 18232 \N genus Arbelaezaster \N \N \N \N \N 18233 P.nervosa Petrocosmea Petrocosmea nervosa \N \N \N \N \N 18234 \N subspecies Cota tinctoria subsp. subtinctoria \N \N \N \N \N 18235 A.pubescens Asemnantha Asemnantha pubescens \N \N \N \N \N 18236 A.shikokiana Angelica Angelica shikokiana \N \N \N \N \N 18237 M.apodocephala Melaleuca Melaleuca apodocephala \N \N \N \N \N 18238 P.taipingensis Pseuduvaria Pseuduvaria taipingensis \N \N \N \N \N 18239 I.cylindracea Indigofera Indigofera cylindracea \N \N \N \N \N 18240 M.cristatum Macrocentrum Macrocentrum cristatum \N \N \N \N \N 18241 A.plukenetii Agalinis Agalinis plukenetii \N \N \N \N \N 18242 C.scabra Calceolaria Calceolaria scabra \N \N \N \N \N 18243 L.assakensis Lotus Lotus assakensis \N \N \N \N \N 18244 C.cuspidispathum Cyrtosperma Cyrtosperma cuspidispathum \N \N \N \N \N 18245 J.albata Juttadinteria Juttadinteria albata \N \N \N \N \N 18246 E.hemispherica Eurybia Eurybia hemispherica southern prairie aster \N \N \N \N 18247 S.SRR-2011 Stanhopea Stanhopea sp. SRR-2011 \N \N \N \N \N 18248 F.serpentini Festucopsis Festucopsis serpentini \N \N \N \N \N 18249 \N no rank Lichtensteinia clade \N \N \N \N \N 18250 \N genus Restio \N \N \N \N \N 18251 E.shannonii Erica Erica shannonii \N \N \N \N \N 18252 S.cernuus Saururus Saururus cernuus swamp lily,water-dragon \N \N \N \N 18253 \N genus Portlandia \N \N \N \N \N 18254 P.P142 Physalis Physalis sp. P142 \N \N \N \N \N 18255 \N varietas Schisandra bicolor var. tuberculata \N \N \N \N \N 18256 G.sanctum Guaiacum Guaiacum sanctum holy-wood,lignum-vitae \N \N \N \N 18257 C.fremontii Chenopodium Chenopodium fremontii \N \N \N \N \N 18258 T.peruvianum Tetrastylidium Tetrastylidium peruvianum \N \N \N \N \N 18259 T.405aa Tovomitopsis Tovomitopsis sp. HG 405aa \N \N \N \N \N 18260 T.37481a unclassified Taraxacum Taraxacum (sect. Erythrocarpa) sp. 37481a \N \N \N \N \N 18261 T.tenella Torilis Torilis tenella \N \N \N \N \N 18262 C.gracilis Caesalpinia Caesalpinia gracilis \N \N \N \N \N 18263 H.ulmoides Hymenocardia Hymenocardia ulmoides \N \N \N \N \N 18264 B.confusa Babiana Babiana confusa \N \N \N \N \N 18265 P.uloptera Prangos Prangos uloptera \N \N \N \N \N 18266 F.pulchella Festuca Festuca pulchella \N \N \N \N \N 18267 P.uniflora Pearsonia Pearsonia uniflora \N \N \N \N \N 18268 \N varietas Gentiana macrophylla var. fetissowii \N \N \N \N \N 18269 \N varietas Setaria vulpiseta var. reversipila \N \N \N \N \N 18270 C.speciosa Capparis Capparis speciosa \N \N \N \N \N 18271 H.bivittatum Heracleum Heracleum bivittatum \N \N \N \N \N 18272 S.balsamita Stizolophus Stizolophus balsamita \N \N \N \N \N 18273 V.epidendroides Vellozia Vellozia epidendroides \N \N \N \N \N 18274 P.verbascina Pityrodia Pityrodia verbascina \N \N \N \N \N 18275 S.conicum Solanum Solanum conicum \N \N \N \N \N 18276 C.wiluica Carex Carex wiluica \N \N \N \N \N 18277 A.korolkowii Arum Arum korolkowii \N \N \N \N \N 18278 S.tetragona Symplocos Symplocos tetragona \N \N \N \N \N 18279 P.peduncularis Potentilla Potentilla peduncularis \N \N \N \N \N 18280 C.heteracanthus Calamus Calamus heteracanthus \N \N \N \N \N 18281 P.umbrosa Psiguria Psiguria umbrosa \N \N \N \N \N 18282 C.laui Copiapoa Copiapoa laui \N \N \N \N \N 18283 P.cubensis Plumeria Plumeria cubensis \N \N \N \N \N 18284 D.800 Dracaena Dracaena sp. Forest 800 \N \N \N \N \N 18285 P.calophlebia Palicourea Palicourea calophlebia \N \N \N \N \N 18286 M.cuspidata Mesadenella Mesadenella cuspidata \N \N \N \N \N 18287 A.tricholobus Astragalus Astragalus tricholobus \N \N \N \N \N 18288 C.echinatum Ceratophyllum Ceratophyllum echinatum \N \N \N \N \N 18289 T.mortonii Tintinnabularia Tintinnabularia mortonii \N \N \N \N \N 18290 S.rupestris Stilbe Stilbe rupestris \N \N \N \N \N 18291 D.cirrhosa Dioscorea Dioscorea cirrhosa \N \N \N \N \N 18292 \N varietas Thysanocarpus laciniatus var. rigidus \N \N \N \N \N 18293 \N subspecies Anchusa crispa subsp. crispa \N \N \N \N \N 18294 M.neophylla Maxillaria Maxillaria neophylla \N \N \N \N \N 18295 \N genus Puschkinia \N \N \N \N \N 18296 \N genus Phyllomelia \N \N \N \N \N 18297 C.attenuata Calathea Calathea attenuata \N \N \N \N \N 18298 C.conspicuus Cotoneaster Cotoneaster conspicuus \N \N \N \N \N 18299 B.listada Begonia Begonia listada \N \N \N \N \N 18300 A.cytisoides Aspalathus Aspalathus cytisoides \N \N \N \N \N 18301 C.aurea Crepis Crepis aurea \N \N \N \N \N 18302 G.sprucei Glossoloma Glossoloma sprucei \N \N \N \N \N 18303 P.kamerunana Peperomia Peperomia kamerunana \N \N \N \N \N 18304 \N genus Geosiris \N \N \N \N \N 18305 H.litoreum Helichrysum Helichrysum litoreum \N \N \N \N \N 18306 A.lenticellata Abrahamia Abrahamia lenticellata \N \N \N \N \N 18307 C.grandiflorus Calochilus Calochilus grandiflorus \N \N \N \N \N 18308 B.croatica Berberis Berberis croatica \N \N \N \N \N 18309 S.croizatii Senefelderopsis Senefelderopsis croizatii \N \N \N \N \N 18310 A.williamsii Astragalus Astragalus williamsii \N \N \N \N \N 18311 A.caerulea Alpinia Alpinia caerulea \N \N \N \N \N 18312 T.simplex Thalictrum Thalictrum simplex \N \N \N \N \N 18313 S.aviculare Solanum Solanum aviculare \N \N \N \N \N 18314 A.pimenti-velosoi Aechmea Aechmea pimenti-velosoi \N \N \N \N \N 18315 S.speciosus Sonderothamnus Sonderothamnus speciosus \N \N \N \N \N 18316 I.cava Illigera Illigera cava \N \N \N \N \N 18317 \N subspecies Poa laxa subsp. fernaldiana \N \N \N \N \N 18318 G.hispida Gastrocotyle Gastrocotyle hispida \N \N \N \N \N 18319 T.mantaly Terminalia Terminalia mantaly \N \N \N \N \N 18320 C.tweedii Castela Castela tweedii \N \N \N \N \N 18321 E.95028 Elaeagnus Elaeagnus sp. Qiu 95028 \N \N \N \N \N 18322 M.domingensis Matayba Matayba domingensis \N \N \N \N \N 18323 I.typhifolia Iris Iris typhifolia \N \N \N \N \N 18324 M.pubiflora Moraea Moraea pubiflora \N \N \N \N \N 18325 L.taquetii Ligularia Ligularia taquetii \N \N \N \N \N 18326 B.367 Boesenbergia Boesenbergia sp. Sakai 367 \N \N \N \N \N 18327 A.polyanthum Aframomum Aframomum polyanthum \N \N \N \N \N 18328 R.roseus Rumex Rumex roseus \N \N \N \N \N 18329 M.guianensis Macoubea Macoubea guianensis \N \N \N \N \N 18330 E.amygdalina Eucalyptus Eucalyptus amygdalina black peppermint gum \N \N \N \N 18331 D.distichum Delphinium Delphinium distichum \N \N \N \N \N 18332 R.sanctum Rhododendron Rhododendron sanctum \N \N \N \N \N 18333 O.multicaulis Oxalis Oxalis multicaulis \N \N \N \N \N 18334 A.serrata Azara Azara serrata \N \N \N \N \N 18335 C.rhamnoides Coprosma Coprosma rhamnoides \N \N \N \N \N 18336 T.punae Talinum Talinum punae \N \N \N \N \N 18337 C.volkameriana Citrus Citrus volkameriana \N \N \N \N \N 18338 \N genus Drepananthus \N \N \N \N \N 18339 \N subtribe Athanasiinae \N \N \N \N \N 18340 A.armatus Astragalus Astragalus armatus \N \N \N \N \N 18341 V.lasiostachys Verbena Verbena lasiostachys \N \N \N \N \N 18343 B.5 Bauhinia Bauhinia sp. Li and Huang 5 \N \N \N \N \N 18344 B.transvaalensis Brachylaena Brachylaena transvaalensis \N \N \N \N \N 18345 H.insignis Homalomena Homalomena insignis \N \N \N \N \N 18346 C.stenoglossum Cremanthodium Cremanthodium stenoglossum \N \N \N \N \N 18347 D.amparoana Dichaea Dichaea amparoana \N \N \N \N \N 18348 S.parviflora Sterculia Sterculia parviflora \N \N \N \N \N 18349 A.filifolium Argyranthemum Argyranthemum filifolium \N \N \N \N \N 18350 \N forma Rhipsalis dissimilis f. epiphyllanthoides \N \N \N \N \N 18351 S.pungens Schoenoplectus Schoenoplectus pungens \N \N \N \N \N 18352 C.dichrostachyus Cyperus Cyperus dichrostachyus \N \N \N \N \N 18353 \N subspecies Alyssum montanum subsp. montanum \N \N \N \N \N 18354 C.praecox Cytisus Cytisus x praecox Warminster broom \N \N \N \N 18355 B.goniorrhachis Bocquillonia Bocquillonia goniorrhachis \N \N \N \N \N 18356 A.strictum Allium Allium strictum \N \N \N \N \N 18357 T.longii Tromotriche Tromotriche longii \N \N \N \N \N 18358 \N genus Pseudonoseris \N \N \N \N \N 18359 D.crenatum Duosperma Duosperma crenatum \N \N \N \N \N 18360 E.azorica Euphrasia Euphrasia azorica \N \N \N \N \N 18361 P.brasiliensis Psychotria Psychotria brasiliensis \N \N \N \N \N 18362 \N subspecies Leucojum aestivum subsp. pulchellum \N \N \N \N \N 18363 \N varietas Citrus medica var. sarcodactylis \N \N \N \N \N 18364 A.trifolia Anemone Anemone trifolia \N \N \N \N \N 18365 E.fallax Eleocharis Eleocharis fallax \N \N \N \N \N 18366 A.keiskei Angelica Angelica keiskei \N \N \N \N \N 18367 S.vitiensis Strychnos Strychnos vitiensis \N \N \N \N \N 18368 P.cephalantha Pedicularis Pedicularis cephalantha \N \N \N \N \N 18369 \N no rank Homochrominae \N \N \N \N \N 18370 D.hamiltonii Dendrocalamus Dendrocalamus hamiltonii tama bamboo \N \N \N \N 18371 \N genus Baccaurea \N \N \N \N \N 18372 K.microcephala Kyllingiella Kyllingiella microcephala \N \N \N \N \N 18373 E.glandulosum Erodium Erodium glandulosum \N \N \N \N \N 18374 C.decipiens Chondropetalum Chondropetalum decipiens \N \N \N \N \N 18375 C.rhoifolium Crepidospermum Crepidospermum rhoifolium \N \N \N \N \N 18376 H.repens Habenaria Habenaria repens \N \N \N \N \N 18377 B.callistegioides Bignonia Bignonia callistegioides \N \N \N \N \N 18378 C.323 Calophyllum Calophyllum sp. Damon 323 \N \N \N \N \N 18379 M.1715 Mimosa Mimosa cf. incarum Pennington 1715 \N \N \N \N \N 18380 P.curranii Pinanga Pinanga curranii \N \N \N \N \N 18381 \N varietas Dendrobium clavatum var. aurantiacum \N \N \N \N \N 18382 A.dalyi Averrhoidium Averrhoidium dalyi \N \N \N \N \N 18383 P.bolleana Populus Populus alba x Populus bolleana \N \N \N \N \N 18384 C.toliari Cynanchum Cynanchum toliari \N \N \N \N \N 18385 \N genus Pentopetia \N \N \N \N \N 18386 L.luzulina Luzula Luzula luzulina \N \N \N \N \N 18387 C.uechtritziana Consolida Consolida uechtritziana \N \N \N \N \N 18388 L.polyphylla Lobelia Lobelia polyphylla \N \N \N \N \N 18389 P.leipoldtii Podalyria Podalyria leipoldtii \N \N \N \N \N 18390 \N genus Erisma \N \N \N \N \N 18391 C.01-40 Crocus Crocus sp. 01-40 \N \N \N \N \N 18392 P.cyclophylla Portulaca Portulaca cyclophylla \N \N \N \N \N 18393 L.amoena Lockhartia Lockhartia amoena \N \N \N \N \N 18394 \N genus Cleistogenes \N \N \N \N \N 18395 K.pusilla Klasea Klasea pusilla \N \N \N \N \N 18396 C.pyrifolia Coccoloba Coccoloba pyrifolia \N \N \N \N \N 18397 F.pergamentacea Fevillea Fevillea pergamentacea \N \N \N \N \N 18398 P.MAC10990 Plumatichilos Plumatichilos sp. MAC10990 \N \N \N \N \N 18399 \N genus Exhalimolobos \N \N \N \N \N 18400 \N genus Flickingeria \N \N \N \N \N 18401 V.mahafalensis Vaughania Vaughania mahafalensis \N \N \N \N \N 18402 P.cottia Primula Primula cottia \N \N \N \N \N 18403 T.flaksbergeri Triticum Triticum flaksbergeri \N \N \N \N \N 18404 P.notata Pilea Pilea notata \N \N \N \N \N 18405 R.sumatranum Rhododendron Rhododendron sumatranum \N \N \N \N \N 18406 F.eskia Festuca Festuca eskia \N \N \N \N \N 18407 A.australe Aspidosperma Aspidosperma australe \N \N \N \N \N 18408 A.punctum Allium Allium punctum \N \N \N \N \N 18409 L.rupicola Lonicera Lonicera rupicola \N \N \N \N \N 18410 T.bombiformis Telipogon Telipogon bombiformis \N \N \N \N \N 18411 M.decorticans Mimosa Mimosa decorticans \N \N \N \N \N 18412 \N forma Plantago asiatica f. yakusimensis \N \N \N \N \N 18413 \N subspecies Echinocereus triglochidiatus subsp. triglochidiatus \N \N \N \N \N 18414 G.oblongifolia Garcinia Garcinia oblongifolia \N \N \N \N \N 18415 C.coquimbensis Cistanthe Cistanthe coquimbensis \N \N \N \N \N 18416 G.marcanii Goniothalamus Goniothalamus marcanii \N \N \N \N \N 18417 V.laevigata Vieraea Vieraea laevigata \N \N \N \N \N 18418 H.aquatica Hygrochloa Hygrochloa aquatica \N \N \N \N \N 18419 \N forma Oxalis articulata f. crassipes \N \N \N \N \N 18420 A.dolichocarpa Anaxagorea Anaxagorea dolichocarpa \N \N \N \N \N 18421 C.multiflorum Cerastium Cerastium multiflorum \N \N \N \N \N 18422 S.wellbyi Saussurea Saussurea wellbyi \N \N \N \N \N 18423 A.pseudarmeria Armeria Armeria pseudarmeria \N \N \N \N \N 18424 T.pseudofimbriatum Trachycalymma Trachycalymma pseudofimbriatum \N \N \N \N \N 18425 O.stellata Osbeckia Osbeckia stellata \N \N \N \N \N 18426 C.hofmannii Campanula Campanula hofmannii \N \N \N \N \N 18427 P.usawae Pseudosasa Pseudosasa usawae \N \N \N \N \N 18428 \N family Petrosaviaceae \N \N \N \N \N 18429 F.bizanae Ficus Ficus bizanae \N \N \N \N \N 18430 I.asperifolia Indigofera Indigofera asperifolia \N \N \N \N \N 18431 E.silenifolia Euphorbia Euphorbia silenifolia \N \N \N \N \N 18432 P.sargentianum Phragmipedium Phragmipedium sargentianum \N \N \N \N \N 18433 A.dawsonii Acacia Acacia dawsonii poverty wattle \N \N \N \N 18434 N.atrans Nymphaea Nymphaea atrans \N \N \N \N \N 18435 N.rothrockii Nama Nama rothrockii \N \N \N \N \N 18436 D.cacuminum Dombeya Dombeya cacuminum \N \N \N \N \N 18437 P.MEM-2007 Polyachyrus Polyachyrus sp. MEM-2007 \N \N \N \N \N 18438 O.serrata Ononis Ononis serrata \N \N \N \N \N 18440 P.dichotomum Pseudotrachydium Pseudotrachydium dichotomum \N \N \N \N \N 18441 \N genus Cypholophus \N \N \N \N \N 18442 \N genus Phyllota \N \N \N \N \N 18443 C.floribundum Calycogonium Calycogonium floribundum \N \N \N \N \N 18444 S.Mulligan' Syzygium Syzygium sp. 'Mt. Mulligan' \N \N \N \N \N 18445 E.spiralis Entada Entada spiralis \N \N \N \N \N 18446 P.megalocephala Perityle Perityle megalocephala \N \N \N \N \N 18447 D.glandulosa Drymocallis Drymocallis glandulosa \N \N \N \N \N 18448 P.emoryi Perityle Perityle emoryi \N \N \N \N \N 18449 C.00-139 Cistanthe Cistanthe sp. Hershkovitz 00-139 \N \N \N \N \N 18450 A.laevis Amphibolia Amphibolia laevis \N \N \N \N \N 18451 I.pes-tigridis Ipomoea Ipomoea pes-tigridis \N \N \N \N \N 18452 P.trichophylla Pultenaea Pultenaea trichophylla \N \N \N \N \N 18453 P.fasciata Phalaenopsis Phalaenopsis fasciata \N \N \N \N \N 18454 C.paniculatum Cynanchum Cynanchum paniculatum \N \N \N \N \N 18455 P.P118 Physalis Physalis sp. P118 \N \N \N \N \N 18456 L.metcalfiana Lindera Lindera metcalfiana \N \N \N \N \N 18457 D.mindanaensis Diospyros Diospyros mindanaensis \N \N \N \N \N 18458 M.lindleyi Microseris Microseris lindleyi \N \N \N \N \N 18459 S.salteri Struthiola Struthiola salteri \N \N \N \N \N 18460 A.keiskeana Artemisia Artemisia keiskeana \N \N \N \N \N 18461 S.bosseri Secamone Secamone bosseri \N \N \N \N \N 18462 \N subspecies Illicium cubense subsp. bissei \N \N \N \N \N 18463 A.MG-2009a Allium Allium sp. MG-2009a \N \N \N \N \N 18464 I.latifolia Iris Iris latifolia \N \N \N \N \N 18465 \N family Linderniaceae \N \N \N \N \N 18466 S.latouchei Sinosenecio Sinosenecio latouchei \N \N \N \N \N 18467 D.WP2C0391 Decaspermum Decaspermum sp. WP2C0391 \N \N \N \N \N 18468 T.canariensis Tamarix Tamarix canariensis \N \N \N \N \N 18469 M.94-3730 Maranta Maranta sp. Kress 94-3730 \N \N \N \N \N 18470 L.rupestre Linum Linum rupestre \N \N \N \N \N 18471 B.baldaccii Bornmuellera Bornmuellera baldaccii \N \N \N \N \N 18472 O.noezlianum Oncidium Oncidium noezlianum \N \N \N \N \N 18473 \N genus Solandra \N \N \N \N \N 18474 \N varietas Citrus japonica var. margarita nagami kumquat \N \N \N \N 18475 M.ramosa Muhlenbergia Muhlenbergia ramosa \N \N \N \N \N 18476 T.malayana Trigonopleura Trigonopleura malayana \N \N \N \N \N 18477 M.trifoliata Menyanthes Menyanthes trifoliata \N \N \N \N \N 18478 \N varietas Correa calycina var. calycina \N \N \N \N \N 18479 \N genus Dolichandra \N \N \N \N \N 18480 G.diplopetala Guioa Guioa diplopetala \N \N \N \N \N 18481 H.cusickii Helianthus Helianthus cusickii \N \N \N \N \N 18482 P.khinjuk Pistacia Pistacia khinjuk \N \N \N \N \N 18483 C.lanceolatum Clerodendrum Clerodendrum lanceolatum \N \N \N \N \N 18484 A.carniolicoides Anisodus Anisodus carniolicoides \N \N \N \N \N 18485 P.hirsuta Polyspatha Polyspatha hirsuta \N \N \N \N \N 18486 M.clausseniana Marlierea Marlierea clausseniana \N \N \N \N \N 18487 C.trisperma Carex Carex trisperma \N \N \N \N \N 18488 P.compressus Potamogeton Potamogeton compressus \N \N \N \N \N 18489 C.bromoides Chaetium Chaetium bromoides \N \N \N \N \N 18490 P.tsaratananae Polystachya Polystachya tsaratananae \N \N \N \N \N 18491 L.munzii Layia Layia munzii Munz' tidy-tips \N \N \N \N 18492 G.calcicola Gagea Gagea calcicola \N \N \N \N \N 18493 E.SL-2011 Echinodorus Echinodorus cf. osiris SL-2011 \N \N \N \N \N 18494 A.fissuratus Ariocarpus Ariocarpus fissuratus \N \N \N \N \N 18495 P.brasiliensis Polygala Polygala brasiliensis \N \N \N \N \N 18496 S.allantoides Sedum Sedum allantoides \N \N \N \N \N 18497 \N genus Thelionema \N \N \N \N \N 18498 P.geminatum Paspalidium Paspalidium geminatum \N \N \N \N \N 18499 \N genus Triantha \N \N \N \N \N 18500 \N subspecies Rubus idaeus subsp. strigosus \N \N \N \N \N 18501 A.punctata Aerangis Aerangis punctata \N \N \N \N \N 18502 A.tenuissimum Allium Allium tenuissimum \N \N \N \N \N 18503 L.longifolius Lupinus Lupinus longifolius \N \N \N \N \N 18504 E.sessilis Enydra Enydra sessilis \N \N \N \N \N 18505 K.beckxiana Kennedia Kennedia beckxiana \N \N \N \N \N 18506 C.hookeri Cyathostemma Cyathostemma hookeri \N \N \N \N \N 18507 A.colensoi Acrothamnus Acrothamnus colensoi \N \N \N \N \N 18508 A.otopyrenum Arthrophyllum Arthrophyllum otopyrenum \N \N \N \N \N 18509 P.linearis Persoonia Persoonia linearis \N \N \N \N \N 18510 S.cardenasiana Sulcorebutia Sulcorebutia cardenasiana \N \N \N \N \N 18511 \N genus Forgesia \N \N \N \N \N 18512 O.damacenoi Oncidium Oncidium damacenoi \N \N \N \N \N 18513 P.discolor Potentilla Potentilla discolor \N \N \N \N \N 18514 T.galpinii Thunbergia Thunbergia galpinii \N \N \N \N \N 18515 K.tahelacana Kengyilia Kengyilia tahelacana \N \N \N \N \N 18516 P.spathulatus Pinaropappus Pinaropappus spathulatus rocklettuce \N \N \N \N 18517 F.shrevei Fouquieria Fouquieria shrevei \N \N \N \N \N 18518 \N varietas Chenopodium berlandieri var. boscianum \N \N \N \N \N 18519 C.sylvicola Chione Chione sylvicola \N \N \N \N \N 18520 L.polyphyllus Lathyrus Lathyrus polyphyllus \N \N \N \N \N 18521 H.pendula Heliconia Heliconia pendula \N \N \N \N \N 18522 \N varietas Kalmia angustifolia var. carolina \N \N \N \N \N 18523 C.obliqua Chelone Chelone obliqua \N \N \N \N \N 18524 J.jacquinii Juncus Juncus jacquinii \N \N \N \N \N 18525 C.pawlowskii Centaurea Centaurea pawlowskii \N \N \N \N \N 18526 V.guanacastensis Varronia Varronia guanacastensis \N \N \N \N \N 18527 E.lepidota Erica Erica lepidota \N \N \N \N \N 18528 G.dalmaticum Geranium Geranium dalmaticum \N \N \N \N \N 18529 H.elastica Helicanthes Helicanthes elastica \N \N \N \N \N 18530 E.pubescens Echinodorus Echinodorus pubescens \N \N \N \N \N 18531 P.trichocymba Pedicularis Pedicularis trichocymba \N \N \N \N \N 18532 \N no rank BEP clade \N \N \N \N \N 18533 C.citricolor Centaurea Centaurea citricolor \N \N \N \N \N 18534 E.ebano Ebenopsis Ebenopsis ebano \N \N \N \N \N 18535 B.vageleri Brachycylix Brachycylix vageleri \N \N \N \N \N 18536 I.pubilimba Ilex Ilex pubilimba \N \N \N \N \N 18538 C.venustum Capillipedium Capillipedium venustum \N \N \N \N \N 18539 \N genus Dendrosida \N \N \N \N \N 18540 F.longispina Fagonia Fagonia longispina \N \N \N \N \N 18541 P.rovirosae Passiflora Passiflora rovirosae \N \N \N \N \N 18542 \N genus Chascolytrum \N \N \N \N \N 96450 \N genus Pterogaillonia \N \N \N \N \N 18543 G.maderense Geranium Geranium maderense Madiera cranesbill \N \N \N \N 18544 \N subspecies Penstemon crandallii subsp. crandallii \N \N \N \N \N 18545 C.ferruginea Cousinia Cousinia ferruginea \N \N \N \N \N 18546 \N genus Zhumeria \N \N \N \N \N 18547 \N varietas Machilus zuihoensis var. mushaensis \N \N \N \N \N 18548 S.celebica Spiraeopsis Spiraeopsis celebica \N \N \N \N \N 18549 B.tawa Beilschmiedia Beilschmiedia tawa \N \N \N \N \N 18550 A.revolutus Acrosynanthus Acrosynanthus revolutus \N \N \N \N \N 18551 C.echinulatum Ceroxylon Ceroxylon echinulatum \N \N \N \N \N 18552 S.77-214 Saccharum officinarum complex Saccharum sp. clone NG 77-214 \N \N \N \N \N 18553 O.connatum Octopoma Octopoma connatum \N \N \N \N \N 18554 G.incana Gaylussacia Gaylussacia incana \N \N \N \N \N 18555 P.cuneata Physospermopsis Physospermopsis cuneata \N \N \N \N \N 18556 P.hierochuntica Pallenis Pallenis hierochuntica \N \N \N \N \N 18557 S.eupatoria Stevia Stevia eupatoria \N \N \N \N \N 18558 A.guangxiensis Allocheilos Allocheilos guangxiensis \N \N \N \N \N 18559 M.divaricata Mussaenda Mussaenda divaricata \N \N \N \N \N 18560 S.capillata Stipa Stipa capillata \N \N \N \N \N 18561 A.moringifolium Adenocalymma Adenocalymma moringifolium \N \N \N \N \N 18562 S.auriculata Setariopsis Setariopsis auriculata \N \N \N \N \N 18563 \N genus Hutchinsonia \N \N \N \N \N 18564 C.carnosum Corycium Corycium carnosum \N \N \N \N \N 18565 L.flexuosum Leucadendron Leucadendron flexuosum \N \N \N \N \N 18566 \N genus Annona \N \N \N \N \N 18567 S.melissarum Solanum Solanum melissarum \N \N \N \N \N 18568 \N subtribe Osmitopsidinae \N \N \N \N \N 18569 \N genus Rhodospatha \N \N \N \N \N 18570 M.alticola Maxillaria Maxillaria alticola \N \N \N \N \N 18571 H.rupestre Holcoglossum Holcoglossum rupestre \N \N \N \N \N 18572 \N genus Didymaea \N \N \N \N \N 18573 \N genus Capirona \N \N \N \N \N 18574 T.durangensis Tigridia Tigridia durangensis \N \N \N \N \N 18575 F.acuminata Fimbristylis Fimbristylis acuminata \N \N \N \N \N 18576 S.cossoniana Saxifraga Saxifraga cossoniana \N \N \N \N \N 18577 C.moramangense Cynanchum Cynanchum moramangense \N \N \N \N \N 18578 M.fontanesii Micromeria Micromeria fontanesii \N \N \N \N \N 18579 Z.breviflora Zeltnera Zeltnera breviflora \N \N \N \N \N 18580 G.kraussiana Gnidia Gnidia kraussiana \N \N \N \N \N 18581 V.blackii Vittadinia Vittadinia blackii \N \N \N \N \N 18582 \N genus Cionosicyos \N \N \N \N \N 18583 C.comosa Carex Carex comosa longhair sedge \N \N \N \N 18584 C.filipes Carex Carex filipes \N \N \N \N \N 18585 T.makoyana Tillandsia Tillandsia makoyana \N \N \N \N \N 18586 \N varietas Lecanorchis flavicans var. acutiloba \N \N \N \N \N 18587 N.guianensis Naucleopsis Naucleopsis guianensis \N \N \N \N \N 18588 \N varietas Oxytropis campestris var. jordalii \N \N \N \N \N 18589 A.capensis Augea Augea capensis \N \N \N \N \N 18590 X.caffra Ximenia Ximenia caffra \N \N \N \N \N 18591 D.marahuacensis Duidaea Duidaea marahuacensis \N \N \N \N \N 18592 \N subspecies Turnera sidoides subsp. holosericea \N \N \N \N \N 18593 B.9) Brachyscome Brachyscome cf. nova-anglica B (Watanabe 9) \N \N \N \N \N 18594 E.raveretiana Eucalyptus Eucalyptus raveretiana \N \N \N \N \N 18595 O.caespitosa Oenothera Oenothera caespitosa \N \N \N \N \N 18596 \N subspecies Erica globiceps subsp. globiceps \N \N \N \N \N 18597 C.lasiocarpa Crucihimalaya Crucihimalaya lasiocarpa \N \N \N \N \N 18598 O.deltoides Oscularia Oscularia deltoides \N \N \N \N \N 18599 P.lucida Phelline Phelline lucida \N \N \N \N \N 18600 S.floribundum Syzygium Syzygium floribundum \N \N \N \N \N 18601 \N varietas Cymopterus acaulis var. greeleyorum \N \N \N \N \N 18602 D.koeiei Draba Draba koeiei \N \N \N \N \N 18603 P.orosiana Psychotria Psychotria orosiana \N \N \N \N \N 18604 \N genus Ophionella \N \N \N \N \N 18605 D.streptocarpa Descurainia Descurainia streptocarpa \N \N \N \N \N 18606 P.strictifolius Potamogeton Potamogeton strictifolius \N \N \N \N \N 18607 H.chapmanii Hypericum Hypericum chapmanii \N \N \N \N \N 18608 \N genus Hemarthria \N \N \N \N \N 18609 H.detergens Hiptage Hiptage detergens \N \N \N \N \N 18610 \N subspecies Ammophila arenaria subsp. arundinacea \N \N \N \N \N 18611 L.rufa Luzula Luzula rufa \N \N \N \N \N 18612 \N subspecies Dubautia scabra subsp. leiophylla \N \N \N \N \N 18613 G.multiflora Gardenia Gardenia multiflora \N \N \N \N \N 18614 P.cesatiana Paraskevia Paraskevia cesatiana \N \N \N \N \N 18615 H.glomeratum Hieracium Hieracium glomeratum \N \N \N \N \N 18616 E.platydisca Eucalyptus Eucalyptus platydisca \N \N \N \N \N 18617 M.blairii Munzothamnus Munzothamnus blairii \N \N \N \N \N 18618 \N genus Ourisia \N \N \N \N \N 18619 F.CAM-2005 Ficus Ficus sp. CAM-2005 \N \N \N \N \N 18620 D.parishii Delphinium Delphinium parishii \N \N \N \N \N 18621 \N varietas Disa patula var. transvaalensis \N \N \N \N \N 18622 P.P145 Physalis Physalis sp. P145 \N \N \N \N \N 18623 P.00-6799 Phrynium Phrynium sp. Kress 00-6799 \N \N \N \N \N 18624 C.juzepczukii Calliandra Calliandra juzepczukii \N \N \N \N \N 18625 I.pseudomacroptera Impatiens Impatiens pseudomacroptera \N \N \N \N \N 18626 S.dolichocnema Socotrella Socotrella dolichocnema \N \N \N \N \N 18627 M.dressleriana Maxillaria Maxillaria dressleriana \N \N \N \N \N 18628 \N subtribe Hesperomanniinae \N \N \N \N \N 18629 O.MO519 Oxalis Oxalis cf. compressa MO519 \N \N \N \N \N 18630 P.horstii Parodia Parodia horstii \N \N \N \N \N 18631 P.jorullensis Passiflora Passiflora jorullensis \N \N \N \N \N 18632 C.albidus Chamaecytisus Chamaecytisus albidus \N \N \N \N \N 18633 A.ciliatus Actinocephalus Actinocephalus ciliatus \N \N \N \N \N 21245 \N genus Gomphostemma \N \N \N \N \N 18634 P.floribunda Peltanthera Peltanthera floribunda \N \N \N \N \N 18635 I.narynensis Iris Iris narynensis \N \N \N \N \N 18636 \N varietas Caulanthus amplexicaulis var. amplexicaulis \N \N \N \N \N 18637 O.incana Oxalis Oxalis incana \N \N \N \N \N 18638 P.bella Pedicularis Pedicularis bella \N \N \N \N \N 18639 P.cladantha Pouteria Pouteria cladantha \N \N \N \N \N 18640 P.hookeri Pterocephalodes Pterocephalodes hookeri \N \N \N \N \N 18641 C.franciscana Commiphora Commiphora franciscana \N \N \N \N \N 18642 P.4443 Phyla Phyla sp. Heard & Segura 4443 \N \N \N \N \N 18643 B.foliosa Buchnera Buchnera foliosa \N \N \N \N \N 18644 M.trifolium Maianthemum Maianthemum trifolium \N \N \N \N \N 18645 B.saligna Buddleja Buddleja saligna \N \N \N \N \N 18646 T.fibrosus Tragopogon Tragopogon fibrosus \N \N \N \N \N 18647 \N genus Homalosciadium \N \N \N \N \N 18648 G.balui Gigantochloa Gigantochloa balui \N \N \N \N \N 18649 D.hilaireana Dyckia Dyckia hilaireana \N \N \N \N \N 18650 A.aulacocarpa Acacia Acacia aulacocarpa \N \N \N \N \N 18651 \N subspecies Erica junonia subsp. minor \N \N \N \N \N 18652 T.boecheri Trichocline Trichocline boecheri \N \N \N \N \N 18653 A.decipiens Aconitum Aconitum decipiens \N \N \N \N \N 18654 \N genus Neomicrocalamus \N \N \N \N \N 18655 C.lindleyanus Cyclopogon Cyclopogon lindleyanus \N \N \N \N \N 18656 \N genus Thecanthes \N \N \N \N \N 18657 B.nana Babiana Babiana nana \N \N \N \N \N 18658 O.arachnoidea Ornithoboea Ornithoboea arachnoidea \N \N \N \N \N 18659 \N no rank Lilium hybrid division VII \N \N \N \N \N 18660 S.480 Symplocos Symplocos sp. 480 \N \N \N \N \N 18661 H.fulcrata Heterotheca Heterotheca fulcrata \N \N \N \N \N 18662 A.lanceolata Asclepias Asclepias lanceolata \N \N \N \N \N 18663 A.tinctoria Alkanna Alkanna tinctoria \N \N \N \N \N 18664 O.peruvianum Oritrophium Oritrophium peruvianum \N \N \N \N \N 18665 C.00-10 Cistanthe Cistanthe sp. Hershkovitz 00-10 \N \N \N \N \N 18666 \N genus Bonamia \N \N \N \N \N 18667 S.losae Saxifraga Saxifraga losae \N \N \N \N \N 18668 B.forbesii Bidens Bidens forbesii \N \N \N \N \N 18669 G.christii Gesneria Gesneria christii \N \N \N \N \N 18670 C.rufescens Conostegia Conostegia rufescens \N \N \N \N \N 18671 A.heldreichii Allium Allium heldreichii \N \N \N \N \N 18672 \N varietas Corylus sieboldiana var. sieboldiana \N \N \N \N \N 18673 M.thonningii Millettia Millettia thonningii \N \N \N \N \N 18674 E.coloradoensis Eugenia Eugenia coloradoensis \N \N \N \N \N 18675 P.s.n. Phymatidium Phymatidium sp. Szlachetko s.n. \N \N \N \N \N 18676 C.tuberosa Cissus Cissus tuberosa \N \N \N \N \N 18677 C.9563 Carpodetus Carpodetus sp. Johns 9563 \N \N \N \N \N 18678 H.turbinata Hemsleya Hemsleya turbinata \N \N \N \N \N 18679 C.pulleineana Coryphantha Coryphantha pulleineana \N \N \N \N \N 18680 P.urvillei Paspalum Paspalum urvillei \N \N \N \N \N 18681 I.frutescens Iva Iva frutescens \N \N \N \N \N 18682 S.scabrelloides Stevia Stevia scabrelloides \N \N \N \N \N 18683 S.sibundoyense Solanum Solanum sibundoyense \N \N \N \N \N 18684 E.diphyllum Epimedium Epimedium diphyllum \N \N \N \N \N 18685 C.obovata Couepia Couepia obovata \N \N \N \N \N 18686 P.elliptica Phoebe Phoebe elliptica \N \N \N \N \N 18687 \N genus Limonia \N \N \N \N \N 18688 C.schilleriana Cattleya Cattleya schilleriana \N \N \N \N \N 18689 C.fulvus Chrysopogon Chrysopogon fulvus \N \N \N \N \N 18690 C.praemorsa Crepis Crepis praemorsa \N \N \N \N \N 18691 B.morelensis Bursera Bursera morelensis \N \N \N \N \N 18692 A.serpyllifolia Arabis Arabis serpyllifolia \N \N \N \N \N 18693 H.MH403 Harpullia Harpullia sp. Harrington MH403 \N \N \N \N \N 18694 S.uva-ursi Salix Salix uva-ursi \N \N \N \N \N 18695 \N varietas Rhododendron sikangense var. exquisitum \N \N \N \N \N 18696 P.pulvinata Pulicaria Pulicaria pulvinata \N \N \N \N \N 18697 \N genus Melothria \N \N \N \N \N 18698 \N subspecies Uebelinia kiwuensis subsp. erlangeriana \N \N \N \N \N 18699 E.peristenia Engelmannia Engelmannia peristenia Engelmann daisy,cutleaf daisy \N \N \N \N 18700 C.wohlschlageri Coryphantha Coryphantha wohlschlageri \N \N \N \N \N 18701 \N genus Dictamnus \N \N \N \N \N 18702 H.hainanensis Hornstedtia Hornstedtia hainanensis \N \N \N \N \N 18703 M.boaria Maytenus Maytenus boaria \N \N \N \N \N 18704 W.inframediana Wurmbea Wurmbea inframediana \N \N \N \N \N 18705 \N subtribe Arnicinae \N \N \N \N \N 18706 N.conardii Nymphaea Nymphaea conardii \N \N \N \N \N 18707 T.fernandezii Turnera Turnera fernandezii \N \N \N \N \N 18708 E.discoidea Ericameria Ericameria discoidea whitestem goldenbush \N \N \N \N 18709 M.bombycina Machilus Machilus bombycina \N \N \N \N \N 18710 B.JFS-2010 Besleria Besleria sp. JFS-2010 \N \N \N \N \N 18711 \N genus Papaver \N \N \N \N \N 18712 \N genus Bracisepalum \N \N \N \N \N 18713 \N genus Parinari \N \N \N \N \N 18714 C.cristata Cliffortia Cliffortia cristata \N \N \N \N \N 18715 \N varietas Cotoneaster horizontalis var. horizontalis \N \N \N \N \N 18716 \N genus Pseudephedranthus \N \N \N \N \N 18717 U.ADW-2005 Utricularia Utricularia sp. ADW-2005 \N \N \N \N \N 18718 E.fistulosum Eutrochium Eutrochium fistulosum trumpetweed \N \N \N \N 18719 A.lineatus Aeschynanthus Aeschynanthus lineatus \N \N \N \N \N 18720 L.erythrorhizon Lithospermum Lithospermum erythrorhizon \N \N \N \N \N 18721 \N varietas Chasmanthium laxum var. sessiliflorum \N \N \N \N \N 18722 R.laciniata Rudbeckia Rudbeckia laciniata \N \N \N \N \N 18723 M.henrici Meconopsis Meconopsis henrici \N \N \N \N \N 18724 P.japonicus Petasites Petasites japonicus \N \N \N \N \N 18725 S.chinensis Stauntonia Stauntonia chinensis \N \N \N \N \N 18726 C.womersleyi Croton Croton womersleyi \N \N \N \N \N 18727 J.68 Jasminum Jasminum sp. 68 \N \N \N \N \N 18728 A.meyenii Agrostis Agrostis meyenii \N \N \N \N \N 18729 \N genus Povedadaphne \N \N \N \N \N 18730 G.superba Gustavia Gustavia superba \N \N \N \N \N 18731 L.pendulus Leucopogon Leucopogon pendulus \N \N \N \N \N 18732 I.uniflora Indigofera Indigofera uniflora \N \N \N \N \N 18734 T.concolor Torenia Torenia concolor \N \N \N \N \N 18735 P.himalaica Pseudodanthonia Pseudodanthonia himalaica \N \N \N \N \N 18736 \N varietas Viola pubescens var. scabriuscula \N \N \N \N \N 18737 H.maritima Hydrophylax Hydrophylax maritima \N \N \N \N \N 18738 A.rupestris Albuca Albuca rupestris \N \N \N \N \N 18739 D.greeneana Deinandra Deinandra greeneana \N \N \N \N \N 18740 B.evrardii Bikinia Bikinia evrardii \N \N \N \N \N 18741 A.velutinum Apiopetalum Apiopetalum velutinum \N \N \N \N \N 18742 E.speciosus Erigeron Erigeron speciosus \N \N \N \N \N 18743 \N subtribe Torreyochloinae \N \N \N \N \N 18744 M.tenellum Melampodium Melampodium tenellum \N \N \N \N \N 18745 N.lavicola Nepenthes Nepenthes lavicola \N \N \N \N \N 18746 D.crystallinum Dendrobium Dendrobium crystallinum \N \N \N \N \N 18747 M.oblongifolia Mangifera Mangifera oblongifolia \N \N \N \N \N 18748 P.arietina Paeonia Paeonia arietina \N \N \N \N \N 18749 \N genus Microterangis \N \N \N \N \N 18750 P.sonorensis Phaseolus Phaseolus sonorensis \N \N \N \N \N 18751 G.2094 Gonzalagunia Gonzalagunia sp. Andersson et al. 2094 \N \N \N \N \N 18752 P.brownsbergense Piper Piper brownsbergense \N \N \N \N \N 18753 P.picta Philibertia Philibertia picta \N \N \N \N \N 18754 D.chinensis Dianthus Dianthus chinensis China pink,rainbow pink,sekichiku,shi zhu \N \N \N \N 18755 S.hassleri Setaria Setaria hassleri \N \N \N \N \N 18756 G.barbadense Gossypium Gossypium barbadense Egyptian cotton,sea-island cotton \N \N \N \N 18757 \N varietas Waitzia suaveolens var. suaveolens \N \N \N \N \N 18758 A.granatensis Artemisia Artemisia granatensis \N \N \N \N \N 18759 A.rosulatus Arthrochilus Arthrochilus rosulatus \N \N \N \N \N 18760 G.ritterianum Gymnocalycium Gymnocalycium ritterianum \N \N \N \N \N 18761 M.capensis Muraltia Muraltia capensis \N \N \N \N \N 18762 C.africanum Cynanchum Cynanchum africanum \N \N \N \N \N 18763 F.macrorrhiza Felicia Felicia macrorrhiza \N \N \N \N \N 18764 B.frutescens Boehmeria Boehmeria frutescens \N \N \N \N \N 18765 C.altaica Cortusa Cortusa altaica \N \N \N \N \N 18766 P.agrimonioides Potentilla Potentilla agrimonioides \N \N \N \N \N 18767 R.kotschyi Ranunculus Ranunculus kotschyi \N \N \N \N \N 18768 S.bogotense Stigmaphyllon Stigmaphyllon bogotense \N \N \N \N \N 18769 C.forbesii Cattleya Cattleya forbesii \N \N \N \N \N 18770 \N subfamily Arecoideae \N \N \N \N \N 18771 T.JK4065 unclassified Taraxacum Taraxacum (sect. Tibetana) sp. JK4065 \N \N \N \N \N 18772 E.articulatum Eryngium Eryngium articulatum \N \N \N \N \N 18773 B.lepida Begonia Begonia lepida \N \N \N \N \N 18774 E.ossenbachiana Encyclia Encyclia ossenbachiana \N \N \N \N \N 18775 \N genus Argyrolobium \N \N \N \N \N 18776 C.pacayense Cestrum Cestrum pacayense \N \N \N \N \N 18777 C.welwitschii Caloncoba Caloncoba welwitschii \N \N \N \N \N 18778 D.deltoideus Drepananthus Drepananthus deltoideus \N \N \N \N \N 18779 G.humilis Gnidia Gnidia humilis \N \N \N \N \N 18780 \N subspecies Tofieldia pusilla subsp. austriaca \N \N \N \N \N 18781 A.flava Amphithalea Amphithalea flava \N \N \N \N \N 18782 M.foliosa Mandevilla Mandevilla foliosa \N \N \N \N \N 18783 B.zygodioides Baissea Baissea zygodioides \N \N \N \N \N 18784 \N subspecies Cistus clusii subsp. multiflorus \N \N \N \N \N 18785 H.cooperi Haworthia Haworthia cooperi \N \N \N \N \N 18786 C.nubigena Chesneya Chesneya nubigena \N \N \N \N \N 18787 B.tenuiramea Blepharis Blepharis tenuiramea \N \N \N \N \N 18788 C.palmata Coccinia Coccinia palmata \N \N \N \N \N 18789 T.brachiatum Trichostema Trichostema brachiatum false pennyroyal \N \N \N \N 18790 B.caryophylla Barnadesia Barnadesia caryophylla \N \N \N \N \N 18791 L.carruthersii Leionema Leionema carruthersii \N \N \N \N \N 18792 R.forrestii Rhododendron Rhododendron forrestii \N \N \N \N \N 18793 P.LA-2002 Psychotria Psychotria aff. brackenridgei LA-2002 \N \N \N \N \N 18794 \N genus Chamaerops \N \N \N \N \N 18795 H.kahiricum Helianthemum Helianthemum kahiricum \N \N \N \N \N 18796 \N subspecies Heliopsis helianthoides subsp. helianthoides \N \N \N \N \N 18797 \N genus Galeomma \N \N \N \N \N 18798 \N genus Adenopappus \N \N \N \N \N 18799 B.crystallina Begonia Begonia crystallina \N \N \N \N \N 18800 \N tribe Senecioneae \N \N \N \N \N 18801 A.bertinii Austrocactus Austrocactus bertinii \N \N \N \N \N 18802 S.cakilefolius Senecio Senecio cakilefolius \N \N \N \N \N 18803 G.jepsonii Galium Galium jepsonii \N \N \N \N \N 18804 M.kingii Macaranga Macaranga kingii \N \N \N \N \N 18805 S.personata Salvia Salvia personata \N \N \N \N \N 18806 N.NB17 Nierembergia Nierembergia sp. NB17 \N \N \N \N \N 18807 R.glabra Rhus Rhus glabra red sumac,smooth sumac,vinegar-tree \N \N \N \N 18808 \N no rank Primula modesta var. matsumurae \N \N \N \N \N 18809 \N genus Swainsona \N \N \N \N \N 18810 B.grandiflora Burretiokentia Burretiokentia grandiflora \N \N \N \N \N 18811 C.lobata Cineraria Cineraria lobata \N \N \N \N \N 18812 O.diandra Omphalea Omphalea diandra \N \N \N \N \N 18813 H.mucronatum Hymenostephium Hymenostephium mucronatum \N \N \N \N \N 18814 S.1002 Saussurea Saussurea cf. tatsienensis Liu 1002 \N \N \N \N \N 18815 H.translucidum Hedyosmum Hedyosmum translucidum \N \N \N \N \N 18816 \N subspecies Ficus polita subsp. polita \N \N \N \N \N 18817 P.officinalis Pulmonaria Pulmonaria officinalis lungwort \N \N \N \N 18818 C.glaucum Cratoxylum Cratoxylum glaucum \N \N \N \N \N 18819 M.houtteana Maxillaria Maxillaria houtteana \N \N \N \N \N 18820 C.spinosissimum Cirsium Cirsium spinosissimum \N \N \N \N \N 18821 R.hebecarpa Randia Randia hebecarpa \N \N \N \N \N 18822 C.miniata Castilleja Castilleja miniata \N \N \N \N \N 18823 C.smilacifolium Clematepistephium Clematepistephium smilacifolium \N \N \N \N \N 18824 \N tribe Vandeae \N \N \N \N \N 18825 S.campanulata Stenogyne Stenogyne campanulata \N \N \N \N \N 18826 B.porphyrostele Brasiliorchis Brasiliorchis porphyrostele \N \N \N \N \N 18827 P.orphanidea Petkovia Petkovia orphanidea \N \N \N \N \N 18828 C.chilensis Croton Croton chilensis \N \N \N \N \N 18829 C.notha Coreopsis Coreopsis notha \N \N \N \N \N 18830 G.megistantha Gurania Gurania megistantha \N \N \N \N \N 18831 A.roigii Acacia Acacia roigii \N \N \N \N \N 18832 I.stenobasis Ipomoea Ipomoea stenobasis \N \N \N \N \N 18833 L.piurensis Lupinus Lupinus piurensis \N \N \N \N \N 18834 M.hildebrandtii Moringa Moringa hildebrandtii \N \N \N \N \N 18835 L.cylindracea Liatris Liatris cylindracea Ontario blazing star \N \N \N \N 18836 D.purpurata Disperis Disperis purpurata \N \N \N \N \N 18837 H.intricata Hoffmannseggia Hoffmannseggia intricata \N \N \N \N \N 18838 N.chinensis Nardostachys Nardostachys chinensis \N \N \N \N \N 18839 H.trimera Hemiscolopia Hemiscolopia trimera \N \N \N \N \N 18840 R.elegans Ruellia Ruellia elegans \N \N \N \N \N 18841 P.velutinum Peponidium Peponidium velutinum \N \N \N \N \N 18842 N.aperta Nomocharis Nomocharis aperta \N \N \N \N \N 18843 M.grisebachiana Maxillaria Maxillaria grisebachiana \N \N \N \N \N 18844 V.tenuicaulis Ventricularia Ventricularia tenuicaulis \N \N \N \N \N 18845 R.superbum Rhododendron Rhododendron superbum \N \N \N \N \N 18846 H.90162 Homalomena Homalomena sp. Croat 90162 \N \N \N \N \N 18847 L.peduncularis Lysimachia Lysimachia peduncularis \N \N \N \N \N 18848 C.decumbens Corbichonia Corbichonia decumbens \N \N \N \N \N 18849 E.populnea Exbucklandia Exbucklandia populnea \N \N \N \N \N 18850 G.procera Goodyera Goodyera procera \N \N \N \N \N 18851 P.myrtoides Pultenaea Pultenaea myrtoides \N \N \N \N \N 18852 B.cumbrensis Bomarea Bomarea cumbrensis \N \N \N \N \N 18853 N.holochila Nervilia Nervilia holochila \N \N \N \N \N 18854 C.argenteus Croton Croton argenteus \N \N \N \N \N 18855 \N genus Apopyros \N \N \N \N \N 18856 S.ciliata Spartina Spartina ciliata \N \N \N \N \N 18857 L.105 Lupinus Lupinus sp. Oropeza 105 \N \N \N \N \N 18858 B.inyoensis Boechera Boechera inyoensis \N \N \N \N \N 18859 S.pacifica Stachys Stachys pacifica \N \N \N \N \N 18860 C.goreensis Crotalaria Crotalaria goreensis \N \N \N \N \N 18861 A.paniculatum Askidiosperma Askidiosperma paniculatum \N \N \N \N \N 18862 T.lancifolium Thysselinum Thysselinum lancifolium \N \N \N \N \N 18863 P.biennis Potentilla Potentilla biennis \N \N \N \N \N 18864 P.grosii Pseudoscabiosa Pseudoscabiosa grosii \N \N \N \N \N 18865 C.delavayi Campylotropis Campylotropis delavayi \N \N \N \N \N 18866 \N subspecies Colchicum szovitsii subsp. szovitsii \N \N \N \N \N 18867 C.szechuanensis Chimonobambusa Chimonobambusa szechuanensis \N \N \N \N \N 18868 A.fraxinifolius Acrocarpus Acrocarpus fraxinifolius \N \N \N \N \N 18869 C.turczaninovii Carpinus Carpinus turczaninovii Korean hornbeam \N \N \N \N 18870 \N genus Centaurium \N \N \N \N \N 18871 C.pungens Conostephium Conostephium pungens \N \N \N \N \N 18872 M.armeniacum Muscari Muscari armeniacum \N \N \N \N \N 18873 M.insubrica Moehringia Moehringia insubrica \N \N \N \N \N 18874 N.maculata Nemophila Nemophila maculata \N \N \N \N \N 18875 T.palmeri Talinaria Talinaria palmeri \N \N \N \N \N 18876 \N genus Basedowia \N \N \N \N \N 18877 \N forma Cinnamomum micranthum f. kanehirae \N \N \N \N \N 18878 \N tribe Triticeae \N \N \N \N \N 18879 \N genus Ornithocarpa \N \N \N \N \N 18880 T.triquetra Tolumnia Tolumnia triquetra \N \N \N \N \N 18881 P.schottii Phytelephas Phytelephas schottii \N \N \N \N \N 18882 S.prunifera Selysia Selysia prunifera \N \N \N \N \N 18883 \N varietas Polygonatum lasianthum var. coreanum \N \N \N \N \N 18884 H.fruticosa Hemichaena Hemichaena fruticosa \N \N \N \N \N 18885 C.79639 Craspedia Craspedia cf. lanata WELT 79639 \N \N \N \N \N 18886 M.patens Moraea Moraea patens \N \N \N \N \N 18887 M.glabra Mendoncia Mendoncia glabra \N \N \N \N \N 18888 S.mollissima Silene Silene mollissima \N \N \N \N \N 18889 R.apiculata Rhizophora Rhizophora apiculata \N \N \N \N \N 18890 H.cumulicola Hypericum Hypericum cumulicola \N \N \N \N \N 18891 C.BWvE-2008 Croton Croton aff. pachypodus BWvE-2008 \N \N \N \N \N 18892 M.laevilabris Maxillaria Maxillaria laevilabris \N \N \N \N \N 18893 P.falcifolia Passerina Passerina falcifolia \N \N \N \N \N 18894 P.acetosum Pelargonium Pelargonium acetosum \N \N \N \N \N 18895 C.lihengiana Cardamine Cardamine lihengiana \N \N \N \N \N 18896 S.salicaria Schiedea Schiedea menziesii x Schiedea salicaria \N \N \N \N \N 18897 A.crassisepala Aspalathus Aspalathus crassisepala \N \N \N \N \N 18898 L.barbosae Lepanthes Lepanthes barbosae \N \N \N \N \N 18899 \N genus Anisosciadium \N \N \N \N \N 18900 \N subspecies Prenia pallens subsp. lutea \N \N \N \N \N 18901 R.aucheri Reseda Reseda aucheri \N \N \N \N \N 18902 A.maritima Anthemis Anthemis maritima \N \N \N \N \N 18903 \N genus Campylandra \N \N \N \N \N 18904 M.insignis Mesogyne Mesogyne insignis \N \N \N \N \N 18905 A.monococcum x Aegilotriticum Aegilops sharonensis x Triticum monococcum \N \N \N \N \N 18906 E.dichrophylla Endiandra Endiandra dichrophylla \N \N \N \N \N 18907 \N tribe Jatropheae \N \N \N \N \N 18908 C.gracilis Camptacra Camptacra gracilis \N \N \N \N \N 18909 \N subspecies Carlina biebersteinii subsp. biebersteinii \N \N \N \N \N 18910 C.sphaerogyna Carex Carex sphaerogyna \N \N \N \N \N 18911 \N varietas Plantago asiatica var. densiuscula \N \N \N \N \N 18912 \N genus Kelleria \N \N \N \N \N 18913 P.aurea Polycarena Polycarena aurea \N \N \N \N \N 18914 V.luteola Vigna Vigna luteola \N \N \N \N \N 18915 E.embothriifolia Erica Erica embothriifolia \N \N \N \N \N 18916 C.pulmonarium Comastoma Comastoma pulmonarium \N \N \N \N \N 18917 A.eriantha Actinidia Actinidia eriantha \N \N \N \N \N 18918 \N varietas Luzula picta var. limosa \N \N \N \N \N 18919 T.CH_E24Amono Triticum Triticum sp. CH_E24Amono \N \N \N \N \N 18920 \N genus Prismatomeris \N \N \N \N \N 18921 V.HNK1008 Vitex Vitex cf. quinata Nguyen van Du et al. HNK1008 \N \N \N \N \N 18922 B.cribbianum Bulbophyllum Bulbophyllum cribbianum \N \N \N \N \N 18923 \N genus Renata \N \N \N \N \N 18924 B.machadonis Borassodendron Borassodendron machadonis \N \N \N \N \N 21928 \N tribe Buniadeae \N \N \N \N \N 18925 L.kunawurensis Lagotis Lagotis kunawurensis \N \N \N \N \N 18926 S.Sap unclassified Sapindaceae Sapindaceae sp. Sap \N \N \N \N \N 18927 N.imperialis Napoleona Napoleona imperialis \N \N \N \N \N 18928 M.suffruticosa Myrcia Myrcia suffruticosa \N \N \N \N \N 18929 A.humbertii Alluaudia Alluaudia humbertii \N \N \N \N \N 18930 E.inaequalis Erica Erica inaequalis \N \N \N \N \N 18931 M.papposa Mimosa Mimosa papposa \N \N \N \N \N 18932 P.phylicifolia Pomaderris Pomaderris phylicifolia \N \N \N \N \N 18933 F.hystrix Ferulopsis Ferulopsis hystrix \N \N \N \N \N 18934 R.elaeocarpum Rhamnidium Rhamnidium elaeocarpum \N \N \N \N \N 18935 I.hians Impatiens Impatiens hians \N \N \N \N \N 18936 E.petersii Eulophia Eulophia petersii \N \N \N \N \N 18937 P.leptostachya Peperomia Peperomia leptostachya \N \N \N \N \N 18938 P.YCFS-2009a Pseuduvaria Pseuduvaria sp. YCFS-2009a \N \N \N \N \N 18939 \N genus Actinotus \N \N \N \N \N 18940 \N genus Arfeuillea \N \N \N \N \N 18941 \N genus Halotis \N \N \N \N \N 18942 \N genus Abrahamia \N \N \N \N \N 18943 \N genus Rhetinolepis \N \N \N \N \N 18944 P.2489 Psychotria Psychotria sp. Rova 2489 \N \N \N \N \N 18945 R.duttonianum Rytidosperma Rytidosperma duttonianum \N \N \N \N \N 18946 C.intertexta Clusia Clusia intertexta \N \N \N \N \N 18947 N.longifolium Nothocestrum Nothocestrum longifolium \N \N \N \N \N 18948 P.berolinensis Populus Populus alba x Populus x berolinensis \N \N \N \N \N 18949 C.pallidivirens Cousinia Cousinia pallidivirens \N \N \N \N \N 18950 Z.brasiliensis Zornia Zornia brasiliensis \N \N \N \N \N 18951 V.davidii Viola Viola davidii \N \N \N \N \N 18952 V.sintenisii Viola Viola sintenisii \N \N \N \N \N 18953 P.pseudonotata Pilea Pilea pseudonotata \N \N \N \N \N 18954 D.lindenioides Dolichopentas Dolichopentas lindenioides \N \N \N \N \N 18955 A.malaccensis Alpinia Alpinia malaccensis \N \N \N \N \N 18956 E.pervilleana Euphorbia Euphorbia pervilleana \N \N \N \N \N 18957 \N genus Brownea \N \N \N \N \N 18958 B.venenifera Buddleja Buddleja venenifera \N \N \N \N \N 18959 O.macbridei Opuntia Opuntia macbridei \N \N \N \N \N 18960 \N genus Czernaevia \N \N \N \N \N 18961 C.oxiana Cousinia Cousinia oxiana \N \N \N \N \N 18962 M.longipedunculatum Macroptilium Macroptilium longipedunculatum \N \N \N \N \N 18963 O.ebracteata Oxalis Oxalis ebracteata \N \N \N \N \N 18964 G.bernieriana Gagnebina Gagnebina bernieriana \N \N \N \N \N 18965 \N genus Trochomeria \N \N \N \N \N 18966 S.canariensis Sideritis Sideritis canariensis \N \N \N \N \N 18967 \N varietas Salvia axillaris var. axillaris \N \N \N \N \N 18968 S.parviflora Scopolia Scopolia parviflora \N \N \N \N \N 18969 \N genus Xerocladia \N \N \N \N \N 18970 \N genus Dactyliandra \N \N \N \N \N 18971 A.deltoideodonta Aloe Aloe deltoideodonta \N \N \N \N \N 18972 M.decumana Masdevallia Masdevallia decumana \N \N \N \N \N 18973 C.cymosa Cordia Cordia cymosa \N \N \N \N \N 18974 K.amabilis Kohleria Kohleria amabilis \N \N \N \N \N 18975 D.sergievskianus Dimorphostemon Dimorphostemon sergievskianus \N \N \N \N \N 18976 P.reflexus Paranomus Paranomus reflexus \N \N \N \N \N 18977 \N genus Eugenia \N \N \N \N \N 18978 Z.montana Zeyheria Zeyheria montana \N \N \N \N \N 18979 E.hortensis Euodia Euodia hortensis \N \N \N \N \N 18980 \N genus Cardionema \N \N \N \N \N 18981 D.burkei Draba Draba burkei snowbasin draba \N \N \N \N 18982 \N no rank environmental samples Taxonomy:1008286 \N \N \N \N \N 18983 \N genus Eremogone \N \N \N \N \N 18984 \N family Nartheciaceae \N \N \N \N \N 18985 D.halteratum Delphinium Delphinium halteratum \N \N \N \N \N 18986 L.oligandrum Leptospermum Leptospermum oligandrum \N \N \N \N \N 18987 K.drymeia Knautia Knautia drymeia \N \N \N \N \N 18988 A.globularia Artemisia Artemisia globularia \N \N \N \N \N 18989 \N subspecies Impatiens meruensis subsp. meruensis \N \N \N \N \N 18990 \N genus Agastachys \N \N \N \N \N 18991 P.2624 Pycnandra Pycnandra sp. Munzinger 2624 \N \N \N \N \N 18992 \N genus Crossopetalum \N \N \N \N \N 18993 P.jishanensis Paeonia Paeonia jishanensis \N \N \N \N \N 18994 M.butayei Magnistipula Magnistipula butayei \N \N \N \N \N 18995 E.holtzii Elachyptera Elachyptera holtzii \N \N \N \N \N 18996 S.semperflorens Soemmeringia Soemmeringia semperflorens \N \N \N \N \N 18997 P.lyrata Perezia Perezia lyrata \N \N \N \N \N 18998 \N genus Chouxia \N \N \N \N \N 18999 D.incerta Draba Draba incerta Yellowstone draba \N \N \N \N 19000 C.moritzii Cleistes Cleistes moritzii \N \N \N \N \N 19001 C.macrocarpa Chazaliella Chazaliella macrocarpa \N \N \N \N \N 19002 C.protogerberi Centaurea Centaurea protogerberi \N \N \N \N \N 19003 \N genus Lipochaeta \N \N \N \N \N 19004 N.moroensis Nasa Nasa moroensis \N \N \N \N \N 19005 F.WO2004106530 Fragaria Fragaria sp. WO2004106530 \N \N \N \N \N 19006 \N family Musaceae banana family \N \N \N \N 19007 C.santapaui Ceropegia Ceropegia santapaui \N \N \N \N \N 19008 P.quarinii Paspalum Paspalum quarinii \N \N \N \N \N 19009 V.peregrina Vicia Vicia peregrina \N \N \N \N \N 19010 R.canariense Rhaponticum Rhaponticum canariense \N \N \N \N \N 19011 S.montana Scrophularia Scrophularia montana \N \N \N \N \N 19012 R.buxifolium Rhododendron Rhododendron buxifolium \N \N \N \N \N 19013 C.ligustrinum Clerodendrum Clerodendrum ligustrinum \N \N \N \N \N 19014 R.petrosum Rytidosperma Rytidosperma petrosum \N \N \N \N \N 19015 B.repens Boerhavia Boerhavia repens \N \N \N \N \N 19016 \N genus Xanthocercis \N \N \N \N \N 19017 C.arborea Corynostylis Corynostylis arborea \N \N \N \N \N 19018 B.frereana Boswellia Boswellia frereana \N \N \N \N \N 19019 \N genus Artorima \N \N \N \N \N 19020 O.caput-galli Onobrychis Onobrychis caput-galli \N \N \N \N \N 19021 T.lampas Thespesia Thespesia lampas \N \N \N \N \N 19022 \N varietas Raphanus sativus var. sativus \N \N \N \N \N 19023 E.EHR-2010 Eleocharis Eleocharis aff. bonariensis EHR-2010 \N \N \N \N \N 19024 A.cordifolia Alchornea Alchornea cordifolia \N \N \N \N \N 19025 \N subspecies Androcymbium melanthioides subsp. melanthioides \N \N \N \N \N 19026 \N family Cyrillaceae \N \N \N \N \N 19027 C.tibeticum Corispermum Corispermum tibeticum \N \N \N \N \N 19028 E.macropterus Euonymus Euonymus macropterus \N \N \N \N \N 19029 \N genus Herpetacanthus \N \N \N \N \N 97430 C.aperta Carex Carex aperta \N \N \N \N \N 19030 L.linarioides Lechenaultia Lechenaultia linarioides \N \N \N \N \N 19031 \N genus Voanioala \N \N \N \N \N 19032 P.cantonensis Pholidota Pholidota cantonensis \N \N \N \N \N 19033 A.abietis-religiosae Arceuthobium Arceuthobium abietis-religiosae \N \N \N \N \N 19034 F.cretica Fagonia Fagonia cretica \N \N \N \N \N 19035 T.orientalis Tabernaemontana Tabernaemontana orientalis \N \N \N \N \N 19036 C.12396 Cysticapnos Cysticapnos sp. Goldblatt 12396 \N \N \N \N \N 19037 P.caroliniana Prunus Prunus caroliniana Carolina laurel cherry,laurel cherry \N \N \N \N 19038 C.erectus Conocarpus Conocarpus erectus \N \N \N \N \N 19039 A.longissima Aegilops Aegilops longissima \N \N \N \N \N 19040 P.ruptilis Phlomis Phlomis ruptilis \N \N \N \N \N 19041 \N genus Darmera \N \N \N \N \N 19042 P.hypoleucum Pelargonium Pelargonium hypoleucum \N \N \N \N \N 19043 O.cinerascens Orbivestus Orbivestus cinerascens \N \N \N \N \N 19044 \N subspecies Eucalyptus globulus subsp. bicostata \N \N \N \N \N 19045 O.maximowiczii Orostachys Orostachys maximowiczii \N \N \N \N \N 19046 G.wallichii Gongronema Gongronema wallichii \N \N \N \N \N 19047 P.fagerlindii Peperomia Peperomia fagerlindii \N \N \N \N \N 19048 \N subfamily Rubioideae \N \N \N \N \N 19049 G.cruentus Gladiolus Gladiolus cruentus \N \N \N \N \N 19050 A.vidalii Asteriscium Asteriscium vidalii \N \N \N \N \N 19051 O.gracillimum Ornithogalum Ornithogalum gracillimum \N \N \N \N \N 19052 T.hohenackeri Tamarix Tamarix hohenackeri \N \N \N \N \N 19053 C.okeechobeensis Cucurbita Cucurbita okeechobeensis \N \N \N \N \N 19054 \N varietas Swartzia sprucei var. sprucei \N \N \N \N \N 19055 G.subalpina Grindelia Grindelia subalpina \N \N \N \N \N 19056 \N subspecies Shorea macroptera subsp. macropterifolia \N \N \N \N \N 19057 D.arctica Douglasia Douglasia arctica \N \N \N \N \N 19058 C.pachysepalus Croton Croton pachysepalus \N \N \N \N \N 19059 P.clementis Pyrrocoma Pyrrocoma clementis \N \N \N \N \N 19060 S.trullipetalum Sedum Sedum trullipetalum \N \N \N \N \N 19061 \N genus Elatine \N \N \N \N \N 19062 A.relictum Aconogonon Aconogonon relictum \N \N \N \N \N 19063 J.juncoides Jarava Jarava juncoides \N \N \N \N \N 19064 T.lenticellatum Tetrastigma Tetrastigma lenticellatum \N \N \N \N \N 19065 I.theezans Ilex Ilex theezans \N \N \N \N \N 19066 C.radiata Carex Carex radiata eastern star sedge \N \N \N \N 19067 \N genus Payena \N \N \N \N \N 19068 S.altaica Salicornia Salicornia altaica \N \N \N \N \N 19069 D.hildebrandtii Dorstenia Dorstenia hildebrandtii \N \N \N \N \N 19070 L.pedunculosus Lepidostemon Lepidostemon pedunculosus \N \N \N \N \N 19071 N.glandulifera Nepenthes Nepenthes glandulifera \N \N \N \N \N 19072 D.papposa Dyssodia Dyssodia papposa \N \N \N \N \N 19073 \N subspecies Salsola kali subsp. austroafricana \N \N \N \N \N 19074 C.declinata Carex Carex declinata \N \N \N \N \N 19075 A.zacharensis Astragalus Astragalus zacharensis \N \N \N \N \N 19076 C.latebracteata Carex Carex latebracteata \N \N \N \N \N 19077 C.oliganthus Cotoneaster Cotoneaster oliganthus \N \N \N \N \N 19078 \N genus Lycocarpus \N \N \N \N \N 19079 P.menglaensis Pyrenaria Pyrenaria menglaensis \N \N \N \N \N 19080 D.4483 Dendromyza Dendromyza sp. Nickrent & Banka 4483 \N \N \N \N \N 19081 P.atriplicifolia Pachylaena Pachylaena atriplicifolia \N \N \N \N \N 19082 L.luzuloides Luzula Luzula luzuloides \N \N \N \N \N 19083 F.cinnamometorum Fimbristylis Fimbristylis cinnamometorum \N \N \N \N \N 19084 C.alternifolia Cornus Cornus alternifolia green osier,pagoda dogwood \N \N \N \N 19085 D.broteri Dianthus Dianthus broteri \N \N \N \N \N 19086 Q.castaneifolia Quercus Quercus castaneifolia \N \N \N \N \N 19087 A.acuminata Alnus Alnus acuminata \N \N \N \N \N 19088 O.capitatum Oxypetalum Oxypetalum capitatum \N \N \N \N \N 19089 M.tinctoria Maclura Maclura tinctoria \N \N \N \N \N 19090 G.brevitubus Gladiolus Gladiolus brevitubus \N \N \N \N \N 19091 R.micranthum Rhododendron Rhododendron micranthum \N \N \N \N \N 19092 C.angustata Cardamine Cardamine angustata slender toothwort \N \N \N \N 19093 B.truncata Brazoria Brazoria truncata \N \N \N \N \N 19094 B.exalata Blumenbachia Blumenbachia exalata \N \N \N \N \N 19095 L.coronaria Lychnis Lychnis coronaria mullein pink,rose campion \N \N \N \N 19096 \N genus Malacothrix desert-dandelions \N \N \N \N 19097 M.parkinsonii Metrosideros Metrosideros parkinsonii \N \N \N \N \N 19098 \N genus Davidia \N \N \N \N \N 19099 T.stricta Tillandsia Tillandsia stricta \N \N \N \N \N 19100 \N varietas Haworthia cymbiformis var. cymbiformis \N \N \N \N \N 19101 H.alaeflavum Halanthium Halanthium alaeflavum \N \N \N \N \N 19102 \N genus Trichloris \N \N \N \N \N 19103 S.elegans Smilax Smilax elegans \N \N \N \N \N 19104 R.borboniana Rosa Rosa x borboniana Bourbon rose \N \N \N \N 19105 P.veresczaginii Poa Poa veresczaginii \N \N \N \N \N 19106 \N genus Graphorkis \N \N \N \N \N 19107 E.hoffmannii Eriogonum Eriogonum hoffmannii \N \N \N \N \N 19108 D.RW-2006-1 Dendrobium Dendrobium sp. RW-2006-1 \N \N \N \N \N 19109 C.triumvirati Cuscuta Cuscuta triumvirati \N \N \N \N \N 19110 E.petrophila Erica Erica petrophila \N \N \N \N \N 19111 T.microcarpa Tripteris Tripteris microcarpa \N \N \N \N \N 19112 P.purpusii Psacaliopsis Psacaliopsis purpusii \N \N \N \N \N 19113 P.succulenta Psychotria Psychotria succulenta \N \N \N \N \N 19114 P.baccatum Piper Piper baccatum \N \N \N \N \N 19115 \N genus Lepidosperma \N \N \N \N \N 19116 S.inopinata Smelowskia Smelowskia inopinata \N \N \N \N \N 19117 E.tonkinensis Eberhardtia Eberhardtia tonkinensis \N \N \N \N \N 19118 \N genus Saxicolella \N \N \N \N \N 19119 V.herbacea Vernonia Vernonia herbacea \N \N \N \N \N 19120 A.alpina Androsace Androsace alpina \N \N \N \N \N 19121 Q.KJS-2004 Qualea Qualea sp. KJS-2004 \N \N \N \N \N 19122 E.bungei Eryngium Eryngium bungei \N \N \N \N \N 19123 F.splendens Fuchsia Fuchsia splendens \N \N \N \N \N 19124 H.mexicana Havardia Havardia mexicana \N \N \N \N \N 19125 E.monopyrena Ehretia Ehretia monopyrena \N \N \N \N \N 19126 A.filicaulis Astragalus Astragalus filicaulis \N \N \N \N \N 19127 M.cinnamomoidea Mocinnodaphne Mocinnodaphne cinnamomoidea \N \N \N \N \N 19128 H.annua Heliopsis Heliopsis annua \N \N \N \N \N 19129 P.longifolium Pseudarrhenatherum Pseudarrhenatherum longifolium \N \N \N \N \N 19130 T.hookeri Toxicodendron Toxicodendron hookeri \N \N \N \N \N 19131 \N genus Chrysanthemoides \N \N \N \N \N 19132 \N genus Haploesthes \N \N \N \N \N 19133 A.588 Aristolochia Aristolochia aff. ringens 588 \N \N \N \N \N 19134 R.pseudomontanus Ranunculus Ranunculus pseudomontanus \N \N \N \N \N 19135 D.futschauensis Dioscorea Dioscorea futschauensis \N \N \N \N \N 19136 Z.atriplicoides Zygophyllum Zygophyllum atriplicoides \N \N \N \N \N 19137 R.sacra Rhodiola Rhodiola sacra \N \N \N \N \N 19138 G.jimenezii Ginoria Ginoria jimenezii \N \N \N \N \N 19139 P.tetragonum Pelargonium Pelargonium tetragonum \N \N \N \N \N 19140 A.pedunculata Anthemis Anthemis pedunculata \N \N \N \N \N 19141 C.lanuginosus Corallodiscus Corallodiscus lanuginosus \N \N \N \N \N 19142 C.bealiana Conostylis Conostylis bealiana \N \N \N \N \N 19143 P.tennesseensis Potamogeton Potamogeton tennesseensis \N \N \N \N \N 19144 E.rigida Elegia Elegia rigida \N \N \N \N \N 19145 \N genus Endocellion \N \N \N \N \N 19146 L.malesherbioides Loasa Loasa malesherbioides \N \N \N \N \N 19147 A.trachyscordum Allium Allium trachyscordum \N \N \N \N \N 19148 \N family Urticaceae nettle family \N \N \N \N 19149 G.schomburgkiana Guatteria Guatteria schomburgkiana \N \N \N \N \N 19150 P.polyphyllum Paspalum Paspalum polyphyllum \N \N \N \N \N 19151 A.trichophyllus Acidocroton Acidocroton trichophyllus \N \N \N \N \N 19152 \N genus Bryobium \N \N \N \N \N 19153 P.ambelaniifolia Pouteria Pouteria ambelaniifolia \N \N \N \N \N 19154 E.purpurascens Erythronium Erythronium purpurascens purple fawnlily \N \N \N \N 19155 C.floribundum Cynanchum Cynanchum floribundum \N \N \N \N \N 19156 \N genus Caryotophora \N \N \N \N \N 19157 E.hamiltonii Exacum Exacum hamiltonii \N \N \N \N \N 19158 P.nobile Piper Piper nobile \N \N \N \N \N 19159 F.diphylloides Fimbristylis Fimbristylis diphylloides \N \N \N \N \N 19160 O.N138 Oncidium Oncidium aff. aureum Williams N138 \N \N \N \N \N 19161 R.sambiranensis Ravenea Ravenea sambiranensis \N \N \N \N \N 19162 \N genus Cyamopsis \N \N \N \N \N 19163 M.guillarmodae Merxmuellera Merxmuellera guillarmodae \N \N \N \N \N 19164 M.limnophilum Myriophyllum Myriophyllum limnophilum \N \N \N \N \N 19165 L.ferrugineus Lithocarpus Lithocarpus ferrugineus \N \N \N \N \N 19166 D.obtusa Descurainia Descurainia obtusa \N \N \N \N \N 19167 E.pumilio Erycina Erycina pumilio \N \N \N \N \N 19168 \N genus Dietes \N \N \N \N \N 19169 C.integrifolia Cordemoya Cordemoya integrifolia \N \N \N \N \N 19170 G.balansae Glandularia Glandularia balansae \N \N \N \N \N 19171 H.cauliflora Heisteria Heisteria cauliflora \N \N \N \N \N 19172 D.chrysanthum Dendrobium Dendrobium chrysanthum \N \N \N \N \N 19173 B.minor Brodiaea Brodiaea minor \N \N \N \N \N 19174 E.punctata Episcia Episcia punctata \N \N \N \N \N 19175 D.longicornu Disa Disa longicornu \N \N \N \N \N 19176 \N genus Protarum \N \N \N \N \N 19177 S.veneta Salicornia Salicornia veneta \N \N \N \N \N 19178 C.uniflora Campanula Campanula uniflora Arctic bellflower \N \N \N \N 19179 A.chiclayensis Aristida Aristida chiclayensis \N \N \N \N \N 19180 F.taipaiensis Fritillaria Fritillaria taipaiensis \N \N \N \N \N 19181 \N genus Ulex \N \N \N \N \N 19182 J.nigricolor Jaltomata Jaltomata nigricolor \N \N \N \N \N 19183 E.zwageri Eusideroxylon Eusideroxylon zwageri \N \N \N \N \N 19184 \N genus Hopkinsia \N \N \N \N \N 19185 E.rotundifolia Eremalche Eremalche rotundifolia desert fivespot \N \N \N \N 19186 P.saxosorum Penstemon Penstemon saxosorum \N \N \N \N \N 19187 \N varietas Draba asprella var. stelligera \N \N \N \N \N 19188 L.scabra Lissanthe Lissanthe scabra \N \N \N \N \N 19189 O.liukiuensis Ophiorrhiza Ophiorrhiza liukiuensis \N \N \N \N \N 19190 \N subfamily Epacridoideae \N \N \N \N \N 19191 \N genus Yvesia \N \N \N \N \N 19192 T.persica Thuspeinanta Thuspeinanta persica \N \N \N \N \N 19193 \N genus Welfia \N \N \N \N \N 19194 C.funis Cyrtochilum Cyrtochilum funis \N \N \N \N \N 19195 H.foliosus Haplopappus Haplopappus foliosus \N \N \N \N \N 19196 A.flagelliformis Acacia Acacia flagelliformis \N \N \N \N \N 19197 Z.maryanna Zeltnera Zeltnera maryanna \N \N \N \N \N 19198 H.patagonicum Hordeum Hordeum patagonicum \N \N \N \N \N 19199 D.sambucina Dactylorhiza Dactylorhiza sambucina \N \N \N \N \N 19200 S.decipiens Stenopetalum Stenopetalum decipiens \N \N \N \N \N 19201 R.carthamoides Rhaponticum Rhaponticum carthamoides \N \N \N \N \N 19202 M.suberosa Marsdenia Marsdenia suberosa \N \N \N \N \N 19203 B.ARB-2011 Berberis Berberis sp. 3 ARB-2011 \N \N \N \N \N 19204 P.4620 Peplidium Peplidium sp. Chinnock 4620 \N \N \N \N \N 19205 V.lasiosperma Villarsia Villarsia lasiosperma \N \N \N \N \N 19206 F.lapidosa Ferula Ferula lapidosa \N \N \N \N \N 19207 P.tenella Parnassia Parnassia tenella \N \N \N \N \N 19208 M.cumingii Mallotus Mallotus cumingii \N \N \N \N \N 19209 J.perrieri Jumelleanthus Jumelleanthus perrieri \N \N \N \N \N 19210 \N genus Auxemma \N \N \N \N \N 19211 L.nutans Lintonia Lintonia nutans \N \N \N \N \N 19212 N.citrodorum Neisosperma Neisosperma citrodorum \N \N \N \N \N 19213 C.1417) Coffea Coffea sp. G (Mabberley 1417) \N \N \N \N \N 19214 \N subspecies Conostylis aculeata subsp. aculeata \N \N \N \N \N 19215 L.triphylla Licuala Licuala triphylla \N \N \N \N \N 19216 \N tribe Aleuritideae \N \N \N \N \N 19217 C.napulifera Centaurea Centaurea napulifera \N \N \N \N \N 19218 P.jilekii Passiflora Passiflora jilekii \N \N \N \N \N 19219 F.elastica Funtumia Funtumia elastica Lagos rubber tree,West African rubber tree,bush rubber \N \N \N \N 19220 L.ohsumiensis Lysimachia Lysimachia ohsumiensis \N \N \N \N \N 19221 C.engelmannii Carex Carex engelmannii \N \N \N \N \N 19222 C.papillatum Cynanchum Cynanchum papillatum \N \N \N \N \N 19223 B.rzedowskii Bursera Bursera rzedowskii \N \N \N \N \N 19224 C.scaber Costus Costus scaber \N \N \N \N \N 19225 C.yunnanensis Celtis Celtis yunnanensis \N \N \N \N \N 19226 \N family Polygalaceae \N \N \N \N \N 19227 U.truncatum Uranthoecium Uranthoecium truncatum \N \N \N \N \N 19228 P.fremontii Polyctenium Polyctenium fremontii \N \N \N \N \N 19229 E.johnstonii Echiochilon Echiochilon johnstonii \N \N \N \N \N 19230 V.cambodiana Villarsia Villarsia cambodiana \N \N \N \N \N 19231 P.elegans Polemonium Polemonium elegans \N \N \N \N \N 19232 \N varietas Lithops fulviceps var. fulviceps \N \N \N \N \N 19233 A.SM-1999 Aquilegia Aquilegia sp. SM-1999 \N \N \N \N \N 19234 \N genus Billbergia \N \N \N \N \N 19235 S.baiogoinensis Solms-laubachia Solms-laubachia baiogoinensis \N \N \N \N \N 19236 P.limprichtii Pleione Pleione limprichtii \N \N \N \N \N 19237 A.clandestina Amelichloa Amelichloa clandestina \N \N \N \N \N 19238 \N varietas Sporobolus indicus var. pyramidalis \N \N \N \N \N 19239 \N varietas Moricandia arvensis var. garamantum \N \N \N \N \N 19240 N.heterandra Navarretia Navarretia heterandra \N \N \N \N \N 19241 T.lyallii Tonestus Tonestus lyallii \N \N \N \N \N 19242 C.integrifolia Casselia Casselia integrifolia \N \N \N \N \N 19243 C.graminifolia Carex Carex graminifolia \N \N \N \N \N 19244 C.quadrangulum Cinnamomum Cinnamomum quadrangulum \N \N \N \N \N 19245 L.nigricans Lyperanthus Lyperanthus nigricans \N \N \N \N \N 19246 F.latifolia Froelichia Froelichia latifolia \N \N \N \N \N 19247 I.argyroides Indigastrum Indigastrum argyroides \N \N \N \N \N 19248 D.cordatum Doronicum Doronicum cordatum \N \N \N \N \N 19249 \N subspecies Triticum monococcum subsp. aegilopoides wild einkorn \N \N \N \N 19250 P.madagascariense Protium Protium madagascariense \N \N \N \N \N 19251 V.tetragona Hebe Veronica tetragona \N \N \N \N \N 19252 C.fluviatilis Commelina Commelina fluviatilis \N \N \N \N \N 19253 \N genus Geoblasta \N \N \N \N \N 19254 P.widgrenii Prosthechea Prosthechea widgrenii \N \N \N \N \N 19255 D.aulacosperma Diodia Diodia aulacosperma \N \N \N \N \N 19256 \N subspecies Veronica prostrata subsp. prostrata \N \N \N \N \N 19257 A.bigeniculata Austrostipa Austrostipa bigeniculata \N \N \N \N \N 19258 A.faurieana Ainsliaea Ainsliaea faurieana \N \N \N \N \N 19259 L.gratissima Luculia Luculia gratissima \N \N \N \N \N 19260 S.cretica Sideritis Sideritis cretica \N \N \N \N \N 19261 E.paniculata Eichhornia Eichhornia paniculata \N \N \N \N \N 19262 L.2KBT9 Lithocarpus Lithocarpus sp. 2KBT9 \N \N \N \N \N 19263 T.lindenii Tropaeolum Tropaeolum lindenii \N \N \N \N \N 19264 \N subspecies Satyrium stenopetalum subsp. brevicalcaratum \N \N \N \N \N 19265 D.amoena Disa Disa amoena \N \N \N \N \N 19266 S.pyramidalis Sabicea Sabicea pyramidalis \N \N \N \N \N 19267 \N varietas Eleutherococcus divaricatus var. flavi-flos \N \N \N \N \N 19268 S.hispida Sutera Sutera hispida \N \N \N \N \N 19269 E.cubensis Euphorbia Euphorbia cubensis \N \N \N \N \N 19270 M.insignis Marojejya Marojejya insignis \N \N \N \N \N 19271 L.adustum Leucanthemum Leucanthemum adustum \N \N \N \N \N 19272 B.falcifructa Boechera Boechera falcifructa \N \N \N \N \N 19273 \N subspecies Phlox longifolia subsp. calva \N \N \N \N \N 19274 T.JS6270 unclassified Taraxacum Taraxacum (sect. Dioszegia) sp. JS6270 \N \N \N \N \N 19275 C.arenaria Camissonia Camissonia arenaria \N \N \N \N \N 19276 G.angustiloba Grevillea Grevillea angustiloba \N \N \N \N \N 19277 E.cotinifolia Euphorbia Euphorbia cotinifolia \N \N \N \N \N 19278 L.alba Limnanthes Limnanthes alba white meadowfoam \N \N \N \N 19279 W.sasakii Whytockia Whytockia sasakii \N \N \N \N \N 19280 D.fasciculosa Diospyros Diospyros fasciculosa \N \N \N \N \N 19281 S.salicifolia Spiraea Spiraea salicifolia \N \N \N \N \N 19282 E.remota Eucalyptus Eucalyptus remota Kangaroo Island mallee ash \N \N \N \N 19283 D.brachycarpa Diplotaxis Diplotaxis brachycarpa \N \N \N \N \N 19284 S.garipensis Salvia Salvia garipensis \N \N \N \N \N 19285 G.ciliata Galeottia Galeottia ciliata \N \N \N \N \N 19286 \N subspecies Sambucus ebulus subsp. africana \N \N \N \N \N 19287 C.macrostachya Cyphokentia Cyphokentia macrostachya \N \N \N \N \N 19288 B.poculifera Begonia Begonia poculifera \N \N \N \N \N 19289 C.arcuatus Ceanothus Ceanothus arcuatus \N \N \N \N \N 19290 M.kwangsiensis Murraya Murraya kwangsiensis \N \N \N \N \N 19291 A.laevis Arctotis Arctotis laevis \N \N \N \N \N 19292 N.megapotamia Nassella Nassella megapotamia \N \N \N \N \N 19293 C.bequaertii Campylostemon Campylostemon bequaertii \N \N \N \N \N 19294 L.album Leucadendron Leucadendron album \N \N \N \N \N 19295 V.cusickii Veronica Veronica cusickii \N \N \N \N \N 19296 A.erianthum Alococarpum Alococarpum erianthum \N \N \N \N \N 19297 \N subtribe Scorzonerinae \N \N \N \N \N 19298 L.abortivum Limodorum Limodorum abortivum \N \N \N \N \N 19299 R.punctatus Ranunculus Ranunculus punctatus \N \N \N \N \N 19300 C.stenosepala Capparis Capparis stenosepala \N \N \N \N \N 19301 S.andrieuxii Senna Senna andrieuxii \N \N \N \N \N 19302 M.venulosa Mandevilla Mandevilla venulosa \N \N \N \N \N 19303 L.maculata Leea Leea maculata \N \N \N \N \N 19304 \N subspecies Helictotrichon filifolium subsp. filifolium \N \N \N \N \N 19305 I.violacea Ipomoea Ipomoea violacea beach moonflower,ololiuqui \N \N \N \N 19306 E.aristiglumis Elymus Elymus aristiglumis \N \N \N \N \N 19307 D.biserratus Didymocarpus Didymocarpus biserratus \N \N \N \N \N 19308 L.multiflora Lecanorchis Lecanorchis multiflora \N \N \N \N \N 19309 M.teaguei Masdevallia Masdevallia teaguei \N \N \N \N \N 19310 D.deweyi Douglasdeweya Douglasdeweya deweyi \N \N \N \N \N 19311 L.SH-2010 Lantana Lantana sp. SH-2010 \N \N \N \N \N 19312 B.ferruginea Brucea Brucea ferruginea \N \N \N \N \N 19313 A.glomerata Asperula Asperula glomerata \N \N \N \N \N 19314 C.dielsii Chirita Chirita dielsii \N \N \N \N \N 19315 G.vegeta Gagea Gagea vegeta \N \N \N \N \N 19316 C.angolensis Cuviera Cuviera angolensis \N \N \N \N \N 19317 B.balcooa Bambusa Bambusa balcooa balku,boro bans \N \N \N \N 19318 \N genus Plagius \N \N \N \N \N 19319 \N genus Physospermum \N \N \N \N \N 19320 N.tomoriana Nepenthes Nepenthes tomoriana \N \N \N \N \N 19321 T.windhamii Thelesperma Thelesperma windhamii \N \N \N \N \N 19322 \N varietas Acacia sieberiana var. woodii \N \N \N \N \N 19323 A.cordifolia Anredera Anredera cordifolia Madeira vine,enredadera del mosquito \N \N \N \N 19324 A.chinensis Astragalus Astragalus chinensis \N \N \N \N \N 19325 \N genus Cheiloclinium \N \N \N \N \N 19326 C.draboides Calymmatium Calymmatium draboides \N \N \N \N \N 19327 \N genus Menonvillea \N \N \N \N \N 19328 L.alpestris Lysimachia Lysimachia alpestris \N \N \N \N \N 19329 \N genus Dendrobangia \N \N \N \N \N 19330 M.divaricata Myrsine Myrsine divaricata \N \N \N \N \N 19331 \N genus Amorphophallus \N \N \N \N \N 19332 P.caespitosum Pappophorum Pappophorum caespitosum \N \N \N \N \N 19333 S.hastifolia Spathicarpa Spathicarpa hastifolia \N \N \N \N \N 19334 W.indica Wikstroemia Wikstroemia indica \N \N \N \N \N 19335 M.hirsuta Mostuea Mostuea hirsuta \N \N \N \N \N 19336 M.fusciduliflorum Maianthemum Maianthemum fusciduliflorum \N \N \N \N \N 19337 C.multiloba Cousinia Cousinia multiloba \N \N \N \N \N 19338 T.squamiferum Thalictrum Thalictrum squamiferum \N \N \N \N \N 19339 \N genus Seddera \N \N \N \N \N 19340 C.kianjavatensis Coffea Coffea kianjavatensis \N \N \N \N \N 19341 P.beccariana Prismatomeris Prismatomeris beccariana \N \N \N \N \N 19342 O.involucellata Oreocome Oreocome involucellata \N \N \N \N \N 19343 R.grallatrix Rhaphidophora Rhaphidophora grallatrix \N \N \N \N \N 19344 S.parviflorus Spatholobus Spatholobus parviflorus \N \N \N \N \N 19345 M.argentea Maesa Maesa argentea \N \N \N \N \N 19346 S.petiolata Setaria Setaria petiolata \N \N \N \N \N 19347 C.verticillata Cissus Cissus verticillata \N \N \N \N \N 19348 P.azorica Platanthera Platanthera azorica \N \N \N \N \N 19349 \N subspecies Primula cuneifolia subsp. cuneifolia \N \N \N \N \N 19350 C.mendelii Cattleya Cattleya mendelii \N \N \N \N \N 19351 M.ovatifolia Matthiola Matthiola ovatifolia \N \N \N \N \N 19352 E.leptochila Epipactis Epipactis leptochila \N \N \N \N \N 19353 M.rubra Matelea Matelea rubra \N \N \N \N \N 19354 M.coulteri Malacothrix Malacothrix coulteri snake's head \N \N \N \N 19355 V.321 Virectaria Virectaria sp. Nemba & Thomas 321 \N \N \N \N \N 19356 C.amorimii Chamaecrista Chamaecrista amorimii \N \N \N \N \N 19357 P.myrsinites Paxistima Paxistima myrsinites \N \N \N \N \N 19358 E.castellana Endressia Endressia castellana \N \N \N \N \N 19359 N.dubia Nepenthes Nepenthes dubia \N \N \N \N \N 19360 P.nothisii Polyscias Polyscias nothisii \N \N \N \N \N 19361 \N subspecies Jacobaea vulgaris subsp. vulgaris \N \N \N \N \N 19362 \N varietas Chaetanthera chilensis var. chilensis \N \N \N \N \N 19363 A.stoechadifolia Arctotis Arctotis stoechadifolia \N \N \N \N \N 19364 P.tenuissima Psychotria Psychotria tenuissima \N \N \N \N \N 19365 G.eriospermum Gayophytum Gayophytum eriospermum \N \N \N \N \N 19366 \N subspecies Combretum collinum subsp. gazense \N \N \N \N \N 19367 L.flagellaris Leiothrix Leiothrix flagellaris \N \N \N \N \N 19368 T.barberi Thottea Thottea barberi \N \N \N \N \N 19369 C.medicaginea Crotalaria Crotalaria medicaginea \N \N \N \N \N 19370 C.pingguoensis Camellia Camellia pingguoensis \N \N \N \N \N 19371 C.rostrata Coursetia Coursetia rostrata \N \N \N \N \N 19372 A.proliferum Allium Allium x proliferum Beltsville bunching onion,Catawissa onion,Egyptian onion,ou zi cong,top onion,wakegi \N \N \N \N 19373 L.coreana Libanotis Libanotis coreana \N \N \N \N \N 19374 P.paradoxa Plantago Plantago paradoxa \N \N \N \N \N 19375 A.cardiostemon Allium Allium cardiostemon \N \N \N \N \N 19376 C.subsessiliflora Coccinia Coccinia subsessiliflora \N \N \N \N \N 19377 \N genus x Citrofortunella \N \N \N \N \N 19378 A.cubense Asterostigma Asterostigma cubense \N \N \N \N \N 19379 M.ramosissima Myosotis Myosotis ramosissima \N \N \N \N \N 19380 F.repens Falkia Falkia repens \N \N \N \N \N 19381 P.'Ahipara' Pimelea Pimelea sp. 'Ahipara' \N \N \N \N \N 19382 H.phaea Haplosphaera Haplosphaera phaea \N \N \N \N \N 19383 \N genus Lophopyxis \N \N \N \N \N 19384 S.tetracuspis Sclerolaena Sclerolaena tetracuspis \N \N \N \N \N 19385 A.pedicellata Asclepias Asclepias pedicellata \N \N \N \N \N 19386 S.connata Stevia Stevia connata \N \N \N \N \N 19387 P.delenatii Paphiopedilum Paphiopedilum bellatulum x Paphiopedilum delenatii \N \N \N \N \N 19388 A.pseudowinklerianum Allium Allium pseudowinklerianum \N \N \N \N \N 19389 A.leiosolenus Anulocaulis Anulocaulis leiosolenus \N \N \N \N \N 19390 T.cattapa Terminalia Terminalia cattapa \N \N \N \N \N 19391 \N genus Cremocarpon \N \N \N \N \N 19392 S.liaotungensis Suaeda Suaeda liaotungensis \N \N \N \N \N 19393 \N subspecies Cissus striata subsp. argentina \N \N \N \N \N 19394 P.macconnelliae Psychilis Psychilis macconnelliae \N \N \N \N \N 19395 R.ophiocephala Restrepiella Restrepiella ophiocephala \N \N \N \N \N 19396 L.argophyllus Lotus Lotus argophyllus \N \N \N \N \N 19397 A.trifurcata Athanasia Athanasia trifurcata \N \N \N \N \N 19398 S.bermudianum Sisyrinchium Sisyrinchium bermudianum \N \N \N \N \N 19399 \N tribe Nicotianeae \N \N \N \N \N 19400 L.ervoides Lens Lens ervoides \N \N \N \N \N 19401 S.rupestre Satyrium Satyrium rupestre \N \N \N \N \N 19402 V.epacridea Hebe Veronica epacridea \N \N \N \N \N 19403 M.calophylla Maquira Maquira calophylla \N \N \N \N \N 19404 C.guianensis Couma Couma guianensis \N \N \N \N \N 23284 \N no rank Pimpinella clade \N \N \N \N \N 19405 G.arizonicus Gonolobus Gonolobus arizonicus \N \N \N \N \N 19406 M.scorpoidea Maxillaria Maxillaria scorpoidea \N \N \N \N \N 19407 \N varietas Prunus incisa var. kinkiensis \N \N \N \N \N 19408 S.oleraceus Sonchus Sonchus oleraceus common sow-thistle \N \N \N \N 19409 P.depressa Plantago Plantago depressa \N \N \N \N \N 19410 M.daltonii Macrotyloma Macrotyloma daltonii \N \N \N \N \N 19411 P.mannii Psychotria Psychotria mannii \N \N \N \N \N 19412 M.andina Muehlenbeckia Muehlenbeckia andina \N \N \N \N \N 19413 S.berteroana Simarouba Simarouba berteroana \N \N \N \N \N 19414 H.violacea Halocharis Halocharis violacea \N \N \N \N \N 19415 M.smithii Myrceugenia Myrceugenia smithii \N \N \N \N \N 19416 \N genus Jasminum jasmines,jessamines \N \N \N \N 19417 B.nobilis Bolboschoenus Bolboschoenus nobilis \N \N \N \N \N 19418 M.sulcatus Melilotus Melilotus sulcatus \N \N \N \N \N 19419 D.californica Darlingtonia Darlingtonia californica California pitcherplant \N \N \N \N 19420 \N genus Gloxiniopsis \N \N \N \N \N 19421 \N forma Passiflora edulis f. flavicarpa \N \N \N \N \N 19422 \N genus Paramachaerium \N \N \N \N \N 19423 F.verna Ficaria Ficaria verna \N \N \N \N \N 19424 J.DH-2011 Jasminum Jasminum sp. DH-2011 \N \N \N \N \N 19425 C.altissima Calathea Calathea altissima \N \N \N \N \N 19426 C.06nia052 Coccinia Coccinia sp. 06nia052 \N \N \N \N \N 19427 L.nevadensis Lotus Lotus nevadensis \N \N \N \N \N 19428 R.hastatus Rumex Rumex hastatus \N \N \N \N \N 19429 \N varietas Musa balbisiana var. balbisiana \N \N \N \N \N 19430 P.divaricatum Pentanema Pentanema divaricatum \N \N \N \N \N 19431 \N genus Galearia \N \N \N \N \N 19432 P.ochracea Prosthechea Prosthechea ochracea \N \N \N \N \N 19433 P.spicatum Phyteuma Phyteuma spicatum \N \N \N \N \N 19434 \N genus Monanthotaxis \N \N \N \N \N 19435 C.trichosepala Clausia Clausia trichosepala \N \N \N \N \N 19436 T.nervosa Talisia Talisia nervosa \N \N \N \N \N 19437 G.arkeocarpus Grazielanthus Grazielanthus arkeocarpus \N \N \N \N \N 19438 C.africanum Cyclamen Cyclamen africanum \N \N \N \N \N 19439 \N genus Trianthema \N \N \N \N \N 19440 C.congesta Craterocapsa Craterocapsa congesta \N \N \N \N \N 19441 P.lessonii Podolepis Podolepis lessonii \N \N \N \N \N 19442 V.urceolatum Viburnum Viburnum urceolatum \N \N \N \N \N 19443 \N varietas Swartzia apetala var. apetala \N \N \N \N \N 19444 D.depressa Draba Draba depressa \N \N \N \N \N 19445 P.clevelandii Primula Primula clevelandii padre's shootingstar \N \N \N \N 19446 O.MO583 Oxalis Oxalis sp. MO583 \N \N \N \N \N 19447 P.debilis Phyllanthus Phyllanthus debilis niruri \N \N \N \N 19448 F.lanuginosa Finlaysonia Finlaysonia lanuginosa \N \N \N \N \N 19449 D.dispermum Dendrolobium Dendrolobium dispermum \N \N \N \N \N 19450 \N genus Dendrocalamus \N \N \N \N \N 19451 A.salicifolia Agarista Agarista salicifolia \N \N \N \N \N 19452 S.lanciflora Streptostachys Streptostachys lanciflora \N \N \N \N \N 19453 \N genus Perideridia \N \N \N \N \N 19454 K.curva Karroochloa Karroochloa curva \N \N \N \N \N 19455 B.hookeriana Banksia Banksia hookeriana \N \N \N \N \N 19456 C.adelostoma Carex Carex adelostoma \N \N \N \N \N 19457 L.steyermarkii Lepanthes Lepanthes steyermarkii \N \N \N \N \N 19458 H.oligocephala Hypochaeris Hypochaeris oligocephala \N \N \N \N \N 19459 E.laevigata Eremostachys Eremostachys laevigata \N \N \N \N \N 19460 I.coccinea Isertia Isertia coccinea \N \N \N \N \N 19461 S.simplex Solidago Solidago simplex \N \N \N \N \N 19462 E.ibericum Echinospartum Echinospartum ibericum \N \N \N \N \N 19463 \N genus Cardenasiodendron \N \N \N \N \N 19464 E.johnstonii Euphorbia Euphorbia johnstonii \N \N \N \N \N 19465 H.alashanensis Hippolytia Hippolytia alashanensis \N \N \N \N \N 19466 P.angustifolia Phillyrea Phillyrea angustifolia \N \N \N \N \N 19467 C.pityophila Carex Carex pityophila \N \N \N \N \N 19468 C.pentacaenoides Chaetanthera Chaetanthera pentacaenoides \N \N \N \N \N 19469 R.eschscholtzii Ranunculus Ranunculus eschscholtzii \N \N \N \N \N 19470 \N genus Pennellia \N \N \N \N \N 19471 C.hamosa Chirita Chirita hamosa \N \N \N \N \N 19472 \N genus Hyacinthoides \N \N \N \N \N 19473 A.teres Angraecum Angraecum teres \N \N \N \N \N 19474 A.clauda Avena Avena clauda \N \N \N \N \N 19475 C.montanum Cinnamomum Cinnamomum montanum \N \N \N \N \N 19476 \N genus Vermifrux \N \N \N \N \N 19477 B.fragrans Babiana Babiana fragrans \N \N \N \N \N 19478 C.flexuosa' Cardamine Cardamine sp. 'Asian flexuosa' \N \N \N \N \N 19479 L.serriola Lactuca Lactuca serriola prickly lettuce \N \N \N \N 19480 H.IND-JM3091 Hybanthus Hybanthus sp. IND-JM3091 \N \N \N \N \N 19481 S.muricata Siparuna Siparuna muricata \N \N \N \N \N 19482 E.colligata Euphorbia Euphorbia colligata \N \N \N \N \N 19483 X.7760 Xanthophyllum Xanthophyllum sp. Coode 7760 \N \N \N \N \N 19484 I.subbiflora Iris Iris subbiflora \N \N \N \N \N 19485 \N genus Manglietia \N \N \N \N \N 19486 G.pohliana Guatteria Guatteria pohliana \N \N \N \N \N 19487 M.myrtifolia Morinda Morinda myrtifolia \N \N \N \N \N 19488 S.97132 Stegolepis Stegolepis sp. Qiu 97132 \N \N \N \N \N 19489 S.vermiculatus Scorpiurus Scorpiurus vermiculatus \N \N \N \N \N 19490 H.sp. Hippeastrum Hippeastrum sp. \N \N \N \N \N 19491 C.syrdariensis Cousinia Cousinia syrdariensis \N \N \N \N \N 19492 \N genus Alcantarea \N \N \N \N \N 19493 B.tricuspis Boehmeria Boehmeria tricuspis \N \N \N \N \N 19494 E.petiolatum Eryngium Eryngium petiolatum \N \N \N \N \N 19495 \N genus Chresta \N \N \N \N \N 19496 O.tenuifolium Oncidium Oncidium tenuifolium \N \N \N \N \N 19497 \N genus Gilberta \N \N \N \N \N 19498 U.rubra Uncinia Uncinia rubra \N \N \N \N \N 19499 L.stephanocalyx Lycianthes Lycianthes stephanocalyx \N \N \N \N \N 19500 A.toxicaria Antiaris Antiaris toxicaria jian xue feng hou,upas \N \N \N \N 19501 P.muelleri Plantago Plantago muelleri \N \N \N \N \N 19502 B.NFL-2003-4 Boesenbergia Boesenbergia sp. NFL-2003-4 \N \N \N \N \N 23960 I.fulva Iris Iris fulva \N \N \N \N \N 19503 M.angustifolia Malus Malus angustifolia southern crabapple \N \N \N \N 19504 A.rumicifolia Adenia Adenia rumicifolia \N \N \N \N \N 19505 P.fruticiformis Penstemon Penstemon fruticiformis \N \N \N \N \N 19506 A.latilabris Alpinia Alpinia latilabris \N \N \N \N \N 19507 \N genus Corynopuntia \N \N \N \N \N 19508 \N genus Megaskepasma \N \N \N \N \N 19509 L.ohbana Lignariella Lignariella ohbana \N \N \N \N \N 19510 \N genus Andrachne \N \N \N \N \N 19511 D.cuspidatum Diploon Diploon cuspidatum \N \N \N \N \N 19512 H.sieboldii Hosta Hosta sieboldii \N \N \N \N \N 19513 L.viridiflora Lennea Lennea viridiflora \N \N \N \N \N 19514 \N genus Pachyphragma \N \N \N \N \N 19515 T.virgata Tournefortia Tournefortia virgata \N \N \N \N \N 19516 C.palmeri Crateva Crateva palmeri \N \N \N \N \N 19517 B.pelecinus Biserrula Biserrula pelecinus \N \N \N \N \N 19518 \N genus Thecorchus \N \N \N \N \N 19519 \N genus Lasianthus \N \N \N \N \N 19520 G.rubicunda Gentiana Gentiana rubicunda \N \N \N \N \N 19521 K.prominens Kanakomyrtus Kanakomyrtus prominens \N \N \N \N \N 19522 H.leona Heteropterys Heteropterys leona \N \N \N \N \N 19523 P.acuminatum Polygonum Polygonum acuminatum \N \N \N \N \N 19524 D.pictum Delphinium Delphinium pictum \N \N \N \N \N 19525 F.crassifolia Fritillaria Fritillaria crassifolia \N \N \N \N \N 19526 A.nelsonii Aulosepalum Aulosepalum nelsonii \N \N \N \N \N 19527 I.95091 Iris Iris sp. Qiu 95091 \N \N \N \N \N 19528 J.aspera Jaltomata Jaltomata aspera \N \N \N \N \N 19529 A.nodosus Aetanthus Aetanthus nodosus \N \N \N \N \N 19530 C.insigne Cymbidium Cymbidium insigne \N \N \N \N \N 19531 C.stuebelii Chusquea Chusquea stuebelii \N \N \N \N \N 19532 A.bourgaei Anthemis Anthemis bourgaei \N \N \N \N \N 19533 R.lavanduloides Rhabdocaulon Rhabdocaulon lavanduloides \N \N \N \N \N 19534 \N genus Canistrum \N \N \N \N \N 19535 \N varietas Actephila excelsa var. acuminata \N \N \N \N \N 19536 M.NSW713870 Meeboldina Meeboldina sp. NSW713870 \N \N \N \N \N 19537 V.reticulatum Vaccinium Vaccinium reticulatum \N \N \N \N \N 19538 S.pyracanthum Solanum Solanum pyracanthum \N \N \N \N \N 19539 V.rupestris Viola Viola rupestris \N \N \N \N \N 19540 L.pilonensis Leandra Leandra pilonensis \N \N \N \N \N 19541 T.microphylla Talisia Talisia microphylla \N \N \N \N \N 19542 V.noeana Vicia Vicia noeana \N \N \N \N \N 19543 A.baetica Aristolochia Aristolochia baetica \N \N \N \N \N 19544 M.tenuiflora Muhlenbergia Muhlenbergia tenuiflora \N \N \N \N \N 19545 E.segetalis Euphorbia Euphorbia segetalis \N \N \N \N \N 19546 G.rupicola Goyazia Goyazia rupicola \N \N \N \N \N 19547 A.ciliolatum Arcytophyllum Arcytophyllum ciliolatum \N \N \N \N \N 19548 \N genus Bossiaea \N \N \N \N \N 19549 S.kalahariensis Schmidtia Schmidtia kalahariensis \N \N \N \N \N 19550 T.cuspidata Tabernaemontana Tabernaemontana cuspidata \N \N \N \N \N 19551 E.selachiana Eucalyptus Eucalyptus selachiana \N \N \N \N \N 19552 A.melo Alocasia Alocasia melo \N \N \N \N \N 19553 M.winkleri Macaranga Macaranga winkleri \N \N \N \N \N 19554 L.oncidioides Leochilus Leochilus oncidioides \N \N \N \N \N 19555 C.malvaviscifolius Croton Croton malvaviscifolius \N \N \N \N \N 19556 \N genus Balsamocarpon \N \N \N \N \N 19557 A.fulvicortex Artocarpus Artocarpus fulvicortex \N \N \N \N \N 19558 A.elata Acacia Acacia elata \N \N \N \N \N 19559 \N subspecies Paeonia officinalis subsp. banatica \N \N \N \N \N 19560 R.brevipes Rockinghamia Rockinghamia brevipes \N \N \N \N \N 19561 A.amazonicum Antrocaryon Antrocaryon amazonicum \N \N \N \N \N 19562 S.pendula Symplocos Symplocos pendula \N \N \N \N \N 19563 C.australis Celtis Celtis australis \N \N \N \N \N 19564 G.oliveri Greenwayodendron Greenwayodendron oliveri \N \N \N \N \N 19565 S.fistulosa Solidago Solidago fistulosa \N \N \N \N \N 19566 G.capusii Gagea Gagea capusii \N \N \N \N \N 19567 B.cirrosa Begonia Begonia cirrosa \N \N \N \N \N 19568 R.arcticus Ranunculus Ranunculus arcticus \N \N \N \N \N 19569 D.cuneatum Delphinium Delphinium cuneatum \N \N \N \N \N 19570 D.hispidum Dasispermum Dasispermum hispidum \N \N \N \N \N 19571 V.dealbatum Vellereophyton Vellereophyton dealbatum \N \N \N \N \N 19572 S.nigra Sambucus Sambucus nigra European elder \N \N \N \N 19573 C.1664 Cyrtochilum Cyrtochilum sp. Whitten 1664 \N \N \N \N \N 19574 M.velutinum Megaphrynium Megaphrynium velutinum \N \N \N \N \N 19575 \N subspecies Festuca arvernensis subsp. costei \N \N \N \N \N 19576 L.hammelii Lophanthera Lophanthera hammelii \N \N \N \N \N 19577 U.procera Ulmus Ulmus procera English elm \N \N \N \N 19578 B.pasamanensis Begonia Begonia pasamanensis \N \N \N \N \N 19579 N.radicans Nesaea Nesaea radicans \N \N \N \N \N 19580 P.bremekampiana Psychotria Psychotria bremekampiana \N \N \N \N \N 19581 C.pubescens Coccoloba Coccoloba pubescens \N \N \N \N \N 19582 A.serenoi Astragalus Astragalus serenoi \N \N \N \N \N 19583 \N genus Hunzikeria \N \N \N \N \N 19584 \N genus Decaisnea \N \N \N \N \N 19585 C.tataria Crambe Crambe tataria \N \N \N \N \N 19586 E.deglupta Eucalyptus Eucalyptus deglupta \N \N \N \N \N 19587 E.splendens Eritrichium Eritrichium splendens \N \N \N \N \N 19588 O.nitida Oncidium Oncidium nitida \N \N \N \N \N 19589 A.cantabrica Armeria Armeria cantabrica \N \N \N \N \N 19590 J.tenuis Juncus Juncus tenuis slender rush \N \N \N \N 19591 S.pseudopentandra Salix Salix pseudopentandra \N \N \N \N \N 19592 T.canescens Tetrataenium Tetrataenium canescens \N \N \N \N \N 19593 A.umbrosa Artemisia Artemisia umbrosa \N \N \N \N \N 19594 P.elongatus Paepalanthus Paepalanthus elongatus \N \N \N \N \N 19595 E.paludicola Eucalyptus Eucalyptus paludicola \N \N \N \N \N 19596 H.kalmianum Hypericum Hypericum kalmianum \N \N \N \N \N 19597 E.nubigena Erica Erica nubigena \N \N \N \N \N 19598 S.pubescens Spiraeanthemum Spiraeanthemum pubescens \N \N \N \N \N 19599 B.madagascariensis Bobgunnia Bobgunnia madagascariensis \N \N \N \N \N 19600 B.lactea Brunfelsia Brunfelsia lactea \N \N \N \N \N 19601 P.azureum Pseudomuscari Pseudomuscari azureum \N \N \N \N \N 19602 P.chacoense Paspalum Paspalum chacoense \N \N \N \N \N 19603 C.juncea Chionochloa Chionochloa juncea \N \N \N \N \N 19604 \N subspecies Impatiens hochstetteri subsp. hochstetteri \N \N \N \N \N 19605 \N genus Calanticaria \N \N \N \N \N 19606 C.pachyphyllus Callistemon Callistemon pachyphyllus \N \N \N \N \N 19607 C.Nakada Coronanthera Coronanthera sp. Nakada \N \N \N \N \N 19608 \N genus Aeluropus \N \N \N \N \N 19609 P.australiensis Pseudochaetochloa Pseudochaetochloa australiensis \N \N \N \N \N 19610 D.puncticulosa Diospyros Diospyros puncticulosa \N \N \N \N \N 19611 S.thessala Stipa Stipa thessala \N \N \N \N \N 19612 S.sclarea Salvia Salvia sclarea clary \N \N \N \N 19613 S.tashiroi Strobilanthes Strobilanthes tashiroi \N \N \N \N \N 19614 \N genus Stilbocarpa \N \N \N \N \N 19615 C.ciliata Campanula Campanula ciliata \N \N \N \N \N 19616 C.rumphianus Cucumis Cucumis rumphianus \N \N \N \N \N 19617 R.australis Roscoea Roscoea australis \N \N \N \N \N 19618 D.humilis Dioscorea Dioscorea humilis \N \N \N \N \N 19619 R.concolor Retiniphyllum Retiniphyllum concolor \N \N \N \N \N 19620 \N subspecies Gilia leptantha subsp. purpusii \N \N \N \N \N 19621 M.exiliflora Moraea Moraea exiliflora \N \N \N \N \N 19622 L.parvifolia Ledebouria Ledebouria parvifolia \N \N \N \N \N 19623 T.papuana Trichosanthes Trichosanthes papuana \N \N \N \N \N 19624 L.quinquedentata Leandra Leandra quinquedentata \N \N \N \N \N 19625 L.aberdarica Lobelia Lobelia aberdarica \N \N \N \N \N 19626 D.ilorcitana Diplotaxis Diplotaxis ilorcitana \N \N \N \N \N 19627 \N genus Sajanella \N \N \N \N \N 19628 R.zambesiacum Rhigozum Rhigozum zambesiacum \N \N \N \N \N 19629 P.fabiobarrosii Pleurothallis Pleurothallis fabiobarrosii \N \N \N \N \N 19630 R.media Rauvolfia Rauvolfia media \N \N \N \N \N 19631 S.nitida Salzmannia Salzmannia nitida \N \N \N \N \N 19632 C.iyo Citrus Citrus iyo \N \N \N \N \N 19633 M.cordifolia Manaosella Manaosella cordifolia \N \N \N \N \N 19634 G.eumarginata Gentianodes Gentianodes eumarginata \N \N \N \N \N 19635 \N genus Hibiscus rosemallows \N \N \N \N 19636 A.nigricans Acacia Acacia nigricans \N \N \N \N \N 19637 G.scopulorum Gilia Gilia scopulorum \N \N \N \N \N 19638 G.eurypleurum Gymnocalycium Gymnocalycium eurypleurum \N \N \N \N \N 19639 C.nelsonii Carex Carex nelsonii \N \N \N \N \N 19640 T.sulcata Templetonia Templetonia sulcata \N \N \N \N \N 19641 S.33.235 Salicornia Salicornia cf. borysthenica Freitag 33.235 \N \N \N \N \N 19642 M.sp. Malus Malus sp. \N \N \N \N \N 19643 A.ryukyuensis Arenga Arenga ryukyuensis \N \N \N \N \N 19644 C.boryi Crocus Crocus boryi \N \N \N \N \N 19645 \N genus Barringtonia \N \N \N \N \N 19646 \N varietas Pseudochirita guangxiensis var. glauca \N \N \N \N \N 19647 \N tribe Clusieae \N \N \N \N \N 19648 P.nodosus Potamogeton Potamogeton gramineus x Potamogeton nodosus \N \N \N \N \N 19649 A.norvegica Artemisia Artemisia norvegica \N \N \N \N \N 19650 \N genus Brachanthemum \N \N \N \N \N 19651 G.littoralis Glehnia Glehnia littoralis \N \N \N \N \N 19652 E.larica Euphorbia Euphorbia larica \N \N \N \N \N 19653 L.linifolia Leptoglossis Leptoglossis linifolia \N \N \N \N \N 19654 C.bicalliata Caladenia Caladenia bicalliata \N \N \N \N \N 19655 P.2984 Palaua Palaua aff. tomentosa Schneider & Huertas 2984 \N \N \N \N \N 19656 T.minutiflora Thompsonella Thompsonella minutiflora \N \N \N \N \N 19657 \N genus Achatocarpus \N \N \N \N \N 19658 \N genus Pyrrocoma \N \N \N \N \N 19659 D.racemosa Diogenesia Diogenesia racemosa \N \N \N \N \N 19660 P.multiflorum Pittosporum Pittosporum multiflorum \N \N \N \N \N 19661 L.micradenia Lessingia Lessingia micradenia \N \N \N \N \N 19662 M.linearilobum Melampodium Melampodium linearilobum \N \N \N \N \N 19663 C.campylopodium Capsicum Capsicum campylopodium \N \N \N \N \N 19664 R.bahiensis Rauvolfia Rauvolfia bahiensis \N \N \N \N \N 19665 F.caroliniana Frangula Frangula caroliniana Carolina buckthorn \N \N \N \N 19666 C.truncata Chiloglottis Chiloglottis truncata \N \N \N \N \N 19667 M.richii Maxillaria Maxillaria richii \N \N \N \N \N 19668 P.sinomollis Primula Primula sinomollis \N \N \N \N \N 19669 \N subspecies Acer mono subsp. trichobasis \N \N \N \N \N 19670 S.molloyi Sophora Sophora molloyi \N \N \N \N \N 19671 \N varietas Genista sericea var. rigida \N \N \N \N \N 19672 S.nevadensis Scorzoneroides Scorzoneroides nevadensis \N \N \N \N \N 19673 \N subspecies Artemisia campestris subsp. campestris \N \N \N \N \N 19674 M.ova-avis Masdevallia Masdevallia ova-avis \N \N \N \N \N 19675 G.1579 Grammadenia Grammadenia sp. Stahl 1579 \N \N \N \N \N 19676 C.borinquensis Chromolaena Chromolaena borinquensis \N \N \N \N \N 19677 A.titanota Agave Agave titanota \N \N \N \N \N 19678 Z.ovata Zimmermannia Zimmermannia ovata \N \N \N \N \N 19679 H.tubulosum Heliotropium Heliotropium tubulosum \N \N \N \N \N 19680 \N genus Tamarindus \N \N \N \N \N 19681 P.tetrandra Primula Primula tetrandra alpine shootingstar \N \N \N \N 19682 A.undulata Aralia Aralia undulata \N \N \N \N \N 19683 B.biflorum Bulbophyllum Bulbophyllum biflorum \N \N \N \N \N 19684 C.laxiculmis Carex Carex laxiculmis \N \N \N \N \N 19685 M.parvifolia Maerua Maerua parvifolia \N \N \N \N \N 19686 H.zuurbergensis Hilliardia Hilliardia zuurbergensis \N \N \N \N \N 19687 L.panamensis Lagenophora Lagenophora panamensis \N \N \N \N \N 19688 C.nagbettai Calamus Calamus nagbettai \N \N \N \N \N 19689 G.holttumii Goniothalamus Goniothalamus holttumii \N \N \N \N \N 19690 R.decandrum Rhododendron Rhododendron decandrum \N \N \N \N \N 19691 E.Esp8201 Elleanthus Elleanthus sp. Esp8201 \N \N \N \N \N 19692 E.stygiana Euphorbia Euphorbia stygiana \N \N \N \N \N 19693 M.librina Mentzelia Mentzelia librina \N \N \N \N \N 19694 P.decora Petronymphe Petronymphe decora \N \N \N \N \N 19695 S.fruticosa Stylosanthes Stylosanthes fruticosa \N \N \N \N \N 19696 T.ventricosus Tylecodon Tylecodon ventricosus \N \N \N \N \N 19697 X.154 Xyris Xyris sp. Chase 154 \N \N \N \N \N 19698 A.geniculatus Alopecurus Alopecurus geniculatus \N \N \N \N \N 19699 E.tetrodonta Eucalyptus Eucalyptus tetrodonta \N \N \N \N \N 19700 \N genus Scirpoides \N \N \N \N \N 19701 \N varietas Aconitum carmichaelii var. hwangshanicum \N \N \N \N \N 19702 I.gracillima Isoglossa Isoglossa gracillima \N \N \N \N \N 19703 I.locusta Ida Ida locusta \N \N \N \N \N 19704 \N genus Salomonia \N \N \N \N \N 19705 R.scillifolia Roscoea Roscoea scillifolia \N \N \N \N \N 19706 G.warmingii Gomesa Gomesa warmingii \N \N \N \N \N 19707 \N genus Foetidia \N \N \N \N \N 19708 V.bellula Vitis Vitis bellula \N \N \N \N \N 19709 \N genus Spergula \N \N \N \N \N 19710 S.aromaticum Syzygium Syzygium aromaticum clove \N \N \N \N 19711 C.sinensis Cryptocoryne Cryptocoryne sinensis \N \N \N \N \N 19712 \N genus Heteromorpha \N \N \N \N \N 19713 S.minor Sarracenia Sarracenia minor hooded pitcherplant \N \N \N \N 19714 C.29462 Chamarea Chamarea sp. Esterhuysen 29462 \N \N \N \N \N 19715 P.subniveus Pappobolus Pappobolus subniveus \N \N \N \N \N 19716 L.sibirica Ligularia Ligularia sibirica \N \N \N \N \N 19717 S.oblongifolius Stachyurus Stachyurus oblongifolius \N \N \N \N \N 19718 D.dilecta Dressleria Dressleria dilecta \N \N \N \N \N 19719 \N subspecies Petunia axillaris subsp. axillaris \N \N \N \N \N 19720 Y.pallida Yucca Yucca pallida \N \N \N \N \N 19721 B.lancifolium Bupleurum Bupleurum lancifolium \N \N \N \N \N 19722 C.pedata Cardamine Cardamine pedata \N \N \N \N \N 19723 J.pseudoichu Jarava Jarava pseudoichu \N \N \N \N \N 19724 P.flammea Pedicularis Pedicularis flammea \N \N \N \N \N 19725 R.londesboroughiana Rhynchostele Rhynchostele londesboroughiana \N \N \N \N \N 19726 C.tubulosa Codonopsis Codonopsis tubulosa \N \N \N \N \N 19727 B.alba Burmannia Burmannia alba \N \N \N \N \N 19728 \N subspecies Lepidobolus preissianus subsp. volubilis \N \N \N \N \N 19729 M.rara Megastylis Megastylis rara \N \N \N \N \N 19730 \N genus Craigia \N \N \N \N \N 19731 P.schweinfurthii Potamogeton Potamogeton schweinfurthii \N \N \N \N \N 19732 C.perfoliata Conringia Conringia perfoliata \N \N \N \N \N 19733 D.veillonii Diospyros Diospyros veillonii \N \N \N \N \N 19734 C.turfosa Chiloglottis Chiloglottis turfosa \N \N \N \N \N 19735 C.leopardina Calathea Calathea leopardina \N \N \N \N \N 19736 L.innovatus Leymus Leymus innovatus \N \N \N \N \N 19737 M.globosa Myristica Myristica globosa \N \N \N \N \N 19738 C.ptilophylla Camellia Camellia ptilophylla \N \N \N \N \N 19739 P.salviiflora Pedicularis Pedicularis salviiflora \N \N \N \N \N 19740 A.elburzense Allium Allium elburzense \N \N \N \N \N 19741 B.succulenta Burmeistera Burmeistera succulenta \N \N \N \N \N 19742 A.marginata Arctotheca Arctotheca marginata \N \N \N \N \N 19743 E.ciliaris Eragrostis Eragrostis ciliaris gophertail lovegrass,woolly lovegrass \N \N \N \N 19744 L.salzmannii Linaria Linaria salzmannii \N \N \N \N \N 19745 N.cylindricus Nabalus Nabalus cylindricus \N \N \N \N \N 19746 \N genus Maieta \N \N \N \N \N 19747 \N genus Dolichlasium \N \N \N \N \N 19748 E.wendlandiana Eremospatha Eremospatha wendlandiana \N \N \N \N \N 19749 \N subspecies Commelina foliacea subsp. amplexicaulis \N \N \N \N \N 19750 C.acinos Clinopodium Clinopodium acinos \N \N \N \N \N 19751 R.amplexicaulis Rudbeckia Rudbeckia amplexicaulis \N \N \N \N \N 19752 P.tsinjoarivensis Polystachya Polystachya tsinjoarivensis \N \N \N \N \N 19753 \N genus Parasenecio \N \N \N \N \N 19754 C.lansbergii Campylocentrum Campylocentrum lansbergii \N \N \N \N \N 19755 C.calycioides Chamaecrista Chamaecrista calycioides \N \N \N \N \N 19756 \N genus Karroochloa \N \N \N \N \N 19757 S.tanakae Silene Silene tanakae \N \N \N \N \N 19758 P.ianthothele Pfeiffera Pfeiffera ianthothele \N \N \N \N \N 19759 O.pectinatus Oreobolus Oreobolus pectinatus \N \N \N \N \N 19760 \N genus Anagallis \N \N \N \N \N 19761 O.roseoides Oncidium Oncidium roseoides \N \N \N \N \N 19762 A.auriculata Asclepias Asclepias auriculata \N \N \N \N \N 19763 A.brevidens Allium Allium brevidens \N \N \N \N \N 19764 \N genus Spirodela \N \N \N \N \N 19765 M.parviflora Muraltia Muraltia parviflora \N \N \N \N \N 19766 \N genus Hoheria \N \N \N \N \N 19767 R.hookeri Raphia Raphia hookeri \N \N \N \N \N 19768 K.fragilis Kobresia Kobresia fragilis \N \N \N \N \N 19769 C.inopinata Carex Carex inopinata \N \N \N \N \N 19770 S.fructo-tecto Solanum Solanum fructo-tecto \N \N \N \N \N 19771 \N varietas Altingia gracilipes var. serrulata \N \N \N \N \N 19772 \N genus Lamprothyrsus \N \N \N \N \N 19773 E.eylesii Euphorbia Euphorbia eylesii \N \N \N \N \N 19774 S.pseudolulo Solanum Solanum pseudolulo \N \N \N \N \N 19775 \N genus Euphronia \N \N \N \N \N 19776 T.broteriana Thymelaea Thymelaea broteriana \N \N \N \N \N 19777 H.wurdackii Humiria Humiria wurdackii \N \N \N \N \N 19778 C.nivalis Cymopterus Cymopterus nivalis \N \N \N \N \N 19779 S.plicatum Sedum Sedum plicatum \N \N \N \N \N 19780 V.montana Vernicia Vernicia montana \N \N \N \N \N 19781 T.ochroleucum Trifolium Trifolium ochroleucum \N \N \N \N \N 19782 H.pulchella Halenia Halenia pulchella \N \N \N \N \N 19783 M.nudatus Mimulus Mimulus nudatus \N \N \N \N \N 19784 C.lineata Canavalia Canavalia lineata \N \N \N \N \N 19785 H.hedysaroides Hedysarum Hedysarum hedysaroides \N \N \N \N \N 19786 S.campestre Symphyotrichum Symphyotrichum campestre western meadow aster \N \N \N \N 19787 V.angustifolia Varronia Varronia angustifolia \N \N \N \N \N 19788 R.pneumonanthum Rhododendron Rhododendron pneumonanthum \N \N \N \N \N 19789 M.granadensis Medicago Medicago granadensis \N \N \N \N \N 19790 R.angolensis Raphionacme Raphionacme angolensis \N \N \N \N \N 19791 \N genus Echiochilon \N \N \N \N \N 19792 R.SH-2010 Rorippa Rorippa sp. SH-2010 \N \N \N \N \N 19793 L.kariensis Lindera Lindera kariensis \N \N \N \N \N 19794 I.aucklandica Isolepis Isolepis aucklandica \N \N \N \N \N 19795 Z.debile Zygophyllum Zygophyllum debile \N \N \N \N \N 19797 S.caryophylloides Silene Silene caryophylloides \N \N \N \N \N 19798 C.microphylla Caragana Caragana microphylla \N \N \N \N \N 19799 A.hybrida Axyris Axyris hybrida \N \N \N \N \N 19800 K.digorica Koeleria Koeleria digorica \N \N \N \N \N 19801 C.stricta Caladenia Caladenia stricta \N \N \N \N \N 19802 T.maduroi Telipogon Telipogon maduroi \N \N \N \N \N 19803 \N genus Ardisia \N \N \N \N \N 19804 A.diploglossa Aspidonepsis Aspidonepsis diploglossa \N \N \N \N \N 19806 N.veratrifolia Neuwiedia Neuwiedia veratrifolia \N \N \N \N \N 19807 U.pilifera Ursinia Ursinia pilifera \N \N \N \N \N 19808 E.2979 Empodium Empodium sp. Desmet 2979 \N \N \N \N \N 19809 S.1997' Sisyrinchium Sisyrinchium sp. 'Lejeune 1997' \N \N \N \N \N 19810 M.capixaba Miconia Miconia capixaba \N \N \N \N \N 19811 S.omerocalyx Salvia Salvia omerocalyx \N \N \N \N \N 19812 H.repens Helosciadium Helosciadium repens \N \N \N \N \N 19813 A.sogdiana Argusia Argusia sogdiana \N \N \N \N \N 19814 \N genus Tetragamestus \N \N \N \N \N 19815 \N genus Avena oats \N \N \N \N 19816 S.purpurascens Sesamoides Sesamoides purpurascens \N \N \N \N \N 19817 L.hermannioides Lippia Lippia hermannioides \N \N \N \N \N 19818 C.folotsioides Cynanchum Cynanchum folotsioides \N \N \N \N \N 19819 S.glaberrimus Senecio Senecio glaberrimus \N \N \N \N \N 19820 E.gracile Eryngium Eryngium gracile \N \N \N \N \N 19821 M.pachyphylla Macrocarpaea Macrocarpaea pachyphylla \N \N \N \N \N 19822 C.aristatus Chaetanthus Chaetanthus aristatus \N \N \N \N \N 19823 L.grandiflora Lopezia Lopezia grandiflora \N \N \N \N \N 19824 E.inpai Echinodorus Echinodorus inpai \N \N \N \N \N 19825 A.ovata Agnorhiza Agnorhiza ovata \N \N \N \N \N 19826 C.bowringiana Cattleya Cattleya bowringiana \N \N \N \N \N 19827 L.sessiliflorus Ledothamnus Ledothamnus sessiliflorus \N \N \N \N \N 19828 D.brevipetiolata Dioscorea Dioscorea brevipetiolata \N \N \N \N \N 19829 C.glaucodea Carex Carex glaucodea \N \N \N \N \N 19830 C.munroi Cyrtandra Cyrtandra munroi \N \N \N \N \N 19831 N.normanbyi Normanbya Normanbya normanbyi \N \N \N \N \N 19832 \N subspecies Pimelea lehmanniana subsp. lehmanniana \N \N \N \N \N 19833 \N no rank unclassified Eucalyptus \N \N \N \N \N 19834 M.hamata Mutisia Mutisia hamata \N \N \N \N \N 19835 \N genus Neobeguea \N \N \N \N \N 19836 H.oblongifolia Helia Helia oblongifolia \N \N \N \N \N 19837 Y.cernua Yucca Yucca cernua \N \N \N \N \N 19838 M.refracta Myosotis Myosotis refracta \N \N \N \N \N 19839 M.densiflorum Monotagma Monotagma densiflorum \N \N \N \N \N 19840 T.siliquosa Thottea Thottea siliquosa \N \N \N \N \N 19841 C.stowardii Commersonia Commersonia stowardii \N \N \N \N \N 19842 \N genus Medusandra \N \N \N \N \N 19843 \N tribe Streptogyneae \N \N \N \N \N 19844 \N varietas Rosa odorata var. gigantea \N \N \N \N \N 19845 C.sericea Chapmannia Chapmannia sericea \N \N \N \N \N 19846 S.splendens Shorea Shorea splendens \N \N \N \N \N 19847 L.lanceolata Leucaena Leucaena lanceolata \N \N \N \N \N 19848 A.wickhamii Alloxylon Alloxylon wickhamii \N \N \N \N \N 19849 G.298474 Geranium Geranium sp. AK 298474 \N \N \N \N \N 19850 E.falcata Euphorbia Euphorbia falcata \N \N \N \N \N 19851 S.laevicarpa Swartzia Swartzia laevicarpa \N \N \N \N \N 19852 C.tomentosa Carex Carex tomentosa \N \N \N \N \N 19853 V.subplumosa Vernonia Vernonia subplumosa \N \N \N \N \N 19854 \N genus Baillonia \N \N \N \N \N 19855 \N genus Gavilea \N \N \N \N \N 19856 C.2576 Canthium Canthium sp. 5 Davis & Rakotonasolo 2576 \N \N \N \N \N 19857 S.cordatum Spyridium Spyridium cordatum \N \N \N \N \N 19858 \N varietas Litsea coreana var. sinensis \N \N \N \N \N 19859 \N subspecies Maackia amurensis subsp. buergeri \N \N \N \N \N 19860 G.glaucescens Gymnostoma Gymnostoma glaucescens \N \N \N \N \N 19861 T.sagittata Tinospora Tinospora sagittata \N \N \N \N \N 19862 H.vicinum Heracleum Heracleum vicinum \N \N \N \N \N 19863 R.pubescens Rubus Rubus pubescens dwarf raspberry \N \N \N \N 19864 D.tubulata Dahlia Dahlia tubulata \N \N \N \N \N 19865 E.criniferum Epidendrum Epidendrum criniferum \N \N \N \N \N 19866 S.synantherum Sicydium Sicydium synantherum \N \N \N \N \N 19867 M.17574 Meineckia Meineckia sp. McPherson 17574 \N \N \N \N \N 19868 L.osbornei Leucadendron Leucadendron osbornei \N \N \N \N \N 19869 S.aucuparia Sorbus Sorbus aucuparia European mountain ash,quickbeam,rowan \N \N \N \N 19870 D.viscosum Delphinium Delphinium viscosum \N \N \N \N \N 19871 M.leptophylla Minuria Minuria leptophylla \N \N \N \N \N 19872 C.pilosus Cenchrus Cenchrus pilosus \N \N \N \N \N 19873 P.pattersonii Phlox Phlox pattersonii \N \N \N \N \N 19874 S.2004-1 Salicornia Salicornia sp. Yaprak 2004-1 \N \N \N \N \N 19875 P.antongiliense Phyllarthron Phyllarthron antongiliense \N \N \N \N \N 19876 A.hockii Aristolochia Aristolochia hockii \N \N \N \N \N 19877 P.cirrosa Petermannia Petermannia cirrosa \N \N \N \N \N 19878 Z.inaequalis Zygia Zygia inaequalis \N \N \N \N \N 19879 L.uncialis Linanthus Linanthus uncialis \N \N \N \N \N 19880 A.ramosii Alocasia Alocasia ramosii \N \N \N \N \N 19881 D.valida Dendrocalamopsis Dendrocalamopsis valida \N \N \N \N \N 19882 P.tenuifolium Pancratium Pancratium tenuifolium \N \N \N \N \N 19883 S.parvifolium Spyridium Spyridium parvifolium \N \N \N \N \N 19884 H.parasitica Hillia Hillia parasitica \N \N \N \N \N 19885 I.sellowiana Inga Inga sellowiana \N \N \N \N \N 19886 D.humilis Distichlis Distichlis humilis \N \N \N \N \N 19887 M.salicina Machilus Machilus salicina \N \N \N \N \N 19888 \N subspecies Renealmia thyrsoidea subsp. thyrsoidea \N \N \N \N \N 19889 S.aromaticus Symonanthus Symonanthus aromaticus \N \N \N \N \N 19890 \N genus Zygopetalum \N \N \N \N \N 19891 \N species group Hebe \N \N \N \N \N 19892 E.californica Euphorbia Euphorbia californica \N \N \N \N \N 19893 \N subspecies Dorstenia cayapia subsp. vitifolia \N \N \N \N \N 19894 C.baccans Cliffortia Cliffortia baccans \N \N \N \N \N 19895 D.caffra Disa Disa caffra \N \N \N \N \N 19896 M.xalapensis Monnina Monnina xalapensis \N \N \N \N \N 19897 W.multifida Wiedemannia Wiedemannia multifida \N \N \N \N \N 19898 \N subspecies Angraecum eburneum subsp. xerophilum \N \N \N \N \N 19899 K.piersoniorum Kentiopsis Kentiopsis piersoniorum \N \N \N \N \N 19900 A.asparagoides Aspalathus Aspalathus asparagoides \N \N \N \N \N 19901 N.gaditanus Narcissus Narcissus gaditanus \N \N \N \N \N 19902 \N varietas Disperis capensis var. brevicaudata \N \N \N \N \N 19903 B.comptonii Brunsvigia Brunsvigia comptonii \N \N \N \N \N 19904 C.11163 Croton Croton sp. Neill 11163 \N \N \N \N \N 19905 \N genus Froesia \N \N \N \N \N 19906 M.japonicus Mallotus Mallotus japonicus \N \N \N \N \N 19907 G.pepo Gunnessia Gunnessia pepo \N \N \N \N \N 19908 D.brasiliensis Dorstenia Dorstenia brasiliensis \N \N \N \N \N 19909 M.jacobita Mimosa Mimosa jacobita \N \N \N \N \N 19910 A.sinkatana Aloe Aloe sinkatana \N \N \N \N \N 19911 N.dimorphantha Neptunia Neptunia dimorphantha \N \N \N \N \N 19912 H.LW-2011 Hoya Hoya sp. 1 LW-2011 \N \N \N \N \N 19913 L.viride Lithospermum Lithospermum viride \N \N \N \N \N 19914 C.umbrosa Clidemia Clidemia umbrosa \N \N \N \N \N 19915 S.laxeracemosum Syzygium Syzygium laxeracemosum \N \N \N \N \N 19916 E.grandiflorum Erythronium Erythronium grandiflorum yellow avalanche-lily \N \N \N \N 19917 L.hybrida Legousia Legousia hybrida \N \N \N \N \N 19918 S.quitensis Saracha Saracha quitensis \N \N \N \N \N 19919 \N genus Glischrocolla \N \N \N \N \N 19920 C.martinii Ceanothus Ceanothus martinii \N \N \N \N \N 19921 D.barberae Diascia Diascia barberae \N \N \N \N \N 19922 D.mengtze Didymocarpus Didymocarpus mengtze \N \N \N \N \N 19923 O.echinops Oreopanax Oreopanax echinops \N \N \N \N \N 19924 E.occulta Eleocharis Eleocharis occulta \N \N \N \N \N 19925 C.roscoeana Curcuma Curcuma roscoeana \N \N \N \N \N 19926 \N subspecies Crepis atribarba subsp. originalis \N \N \N \N \N 19927 \N genus Scyphonychium \N \N \N \N \N 19928 A.belgenciensis Armeria Armeria belgenciensis \N \N \N \N \N 19929 L.dedekensii Leontopodium Leontopodium dedekensii \N \N \N \N \N 19930 P.crystallinus Poecilocalyx Poecilocalyx crystallinus \N \N \N \N \N 19931 P.aurifodinae Pseudosabicea Pseudosabicea aurifodinae \N \N \N \N \N 19932 V.szyszylowiczii Viguiera Viguiera szyszylowiczii \N \N \N \N \N 19933 G.PEC-2011 Gymnosiphon Gymnosiphon sp. PEC-2011 \N \N \N \N \N 19934 \N subspecies Polygonum aviculare subsp. neglectum \N \N \N \N \N 19935 P.microcarpum Ptychosperma Ptychosperma microcarpum \N \N \N \N \N 19936 P.pulchellum Panicum Panicum pulchellum \N \N \N \N \N 19937 S.saxorum Streptocarpus Streptocarpus saxorum \N \N \N \N \N 19938 A.0965 Apostasia Apostasia cf. nipponica 0965 \N \N \N \N \N 19939 C.moesta Columnea Columnea moesta \N \N \N \N \N 19940 E.bokei Epithelantha Epithelantha bokei \N \N \N \N \N 19941 G.malayana Gaultheria Gaultheria malayana \N \N \N \N \N 19942 G.nealleyi Gomphrena Gomphrena nealleyi \N \N \N \N \N 19943 R.gerberifolius Robinsonecio Robinsonecio gerberifolius \N \N \N \N \N 19944 M.muralis Mycelis Mycelis muralis \N \N \N \N \N 19945 M.oreas Masdevallia Masdevallia oreas \N \N \N \N \N 19946 D.albida Diaspis Diaspis albida \N \N \N \N \N 19947 P.alata Pterostylis Pterostylis alata \N \N \N \N \N 19948 A.cordubensis Atriplex Atriplex cordubensis \N \N \N \N \N 19949 \N varietas Gymnocalycium reductum var. platense \N \N \N \N \N 19950 C.vilis Corynopuntia Corynopuntia vilis \N \N \N \N \N 19951 J.rhombifolia Jodina Jodina rhombifolia \N \N \N \N \N 19952 K.stylosa Kayea Kayea stylosa \N \N \N \N \N 19953 G.tsaratananae Garcinia Garcinia tsaratananae \N \N \N \N \N 19954 \N genus Billieturnera \N \N \N \N \N 19955 D.macropodus Dendropanax Dendropanax macropodus \N \N \N \N \N 19956 I.TP-2009 Inga Inga sp. 75 TP-2009 \N \N \N \N \N 19957 C.reticulata Citrus Citrus sinensis x Citrus reticulata \N \N \N \N \N 19958 \N subspecies Dubautia scabra subsp. scabra \N \N \N \N \N 19959 \N genus Urceolina \N \N \N \N \N 19960 R.xiphoides Rapatea Rapatea xiphoides \N \N \N \N \N 19961 C.crocifolium Colchicum Colchicum crocifolium \N \N \N \N \N 19962 L.lanuginosus Lotus Lotus lanuginosus \N \N \N \N \N 19963 O.sanguinea Ossaea Ossaea sanguinea \N \N \N \N \N 19964 G.crassifolia Gilia Gilia crassifolia \N \N \N \N \N 19965 S.linicola Silene Silene linicola \N \N \N \N \N 19966 P.cajambrense Piper Piper cajambrense \N \N \N \N \N 19967 \N genus Namibia \N \N \N \N \N 19968 A.longistylum Allium Allium longistylum \N \N \N \N \N 19969 A.lancesmithii Aponogeton Aponogeton lancesmithii \N \N \N \N \N 19970 B.934 Boesenbergia Boesenbergia aff. longiflora Newman 934 \N \N \N \N \N 19971 C.multiflorus Cytisus Cytisus multiflorus Portuguese broom,Spanish broom,escobo blanca,retama blanca \N \N \N \N 19972 M.inamoena Macaranga Macaranga inamoena \N \N \N \N \N 19973 \N subspecies Ranunculus parnassiifolius subsp. muniellensis \N \N \N \N \N 19974 P.muticum Pycnanthemum Pycnanthemum muticum \N \N \N \N \N 19975 T.acaulis Tetraneuris Tetraneuris acaulis \N \N \N \N \N 19976 L.leochilinus Leochilus Leochilus leochilinus \N \N \N \N \N 19977 H.zosterifolia Heteranthera Heteranthera zosterifolia \N \N \N \N \N 19978 T.litensis Thibaudia Thibaudia litensis \N \N \N \N \N 19979 V.fauriei Valeriana Valeriana fauriei \N \N \N \N \N 19980 P.senensis Polygala Polygala senensis \N \N \N \N \N 19981 E.dewuense Epimedium Epimedium dewuense \N \N \N \N \N 19982 S.passargei Synsepalum Synsepalum passargei \N \N \N \N \N 19983 H.longipes Hovea Hovea longipes \N \N \N \N \N 19984 M.splendens Magnolia Magnolia splendens laurel magnolia \N \N \N \N 19985 \N subspecies Reseda undata subsp. leucantha \N \N \N \N \N 19986 \N varietas Taxillus sutchuenensis var. duclouxii \N \N \N \N \N 19987 F.bucharica Fragaria Fragaria bucharica \N \N \N \N \N 19988 C.distichum Crinum Crinum distichum \N \N \N \N \N 19989 L.lanigerum Leptospermum Leptospermum lanigerum \N \N \N \N \N 19990 S.orbignyanum Spathantheum Spathantheum orbignyanum \N \N \N \N \N 19992 A.squarrosus Astragalus Astragalus squarrosus \N \N \N \N \N 19993 \N genus Suberanthus \N \N \N \N \N 19994 A.pallens Agrostis Agrostis pallens \N \N \N \N \N 19995 S.hotarui Schoenoplectiella Schoenoplectiella hotarui \N \N \N \N \N 19996 D.columnae Doronicum Doronicum columnae \N \N \N \N \N 19997 A.involucrata Ardisia Ardisia involucrata \N \N \N \N \N 19998 C.nodosa Cissus Cissus nodosa \N \N \N \N \N 19999 P.microphysa Physalis Physalis microphysa \N \N \N \N \N 20000 P.laetus Penstemon Penstemon laetus \N \N \N \N \N 20001 A.corymbosa Amaioua Amaioua corymbosa \N \N \N \N \N 20002 E.sample environmental samples Taxonomy:1096684 Erisma environmental sample \N \N \N \N \N 20003 D.validicolle Diplocaulobium Diplocaulobium validicolle \N \N \N \N \N 20004 A.glutinosa Alnus Alnus glutinosa \N \N \N \N \N 20005 C.3612 Clusia Clusia sp. JA 3612 \N \N \N \N \N 20006 A.JPM-2004 Alonsoa Alonsoa sp. JPM-2004 \N \N \N \N \N 20007 \N genus Erodiophyllum \N \N \N \N \N 20008 D.mitis Dipsacus Dipsacus mitis \N \N \N \N \N 20009 T.natans Trapa Trapa natans water chestnut \N \N \N \N 20010 S.obtusifolia Senna Senna obtusifolia \N \N \N \N \N 20011 H.lividus Helleborus Helleborus lividus \N \N \N \N \N 20012 P.hosmeri Pittosporum Pittosporum hosmeri \N \N \N \N \N 20013 P.buchtienii Paradrymonia Paradrymonia buchtienii \N \N \N \N \N 20014 \N genus Psychilis \N \N \N \N \N 20015 T.ajanensis Tilingia Tilingia ajanensis \N \N \N \N \N 20016 I.albicoria Inga Inga albicoria \N \N \N \N \N 20017 P.angolensis Protea Protea angolensis \N \N \N \N \N 20018 A.incarnata Allionia Allionia incarnata \N \N \N \N \N 20019 \N genus Stratiotes \N \N \N \N \N 20020 S.hirsutus Sauropus Sauropus hirsutus \N \N \N \N \N 20021 T.strictum Thesium Thesium strictum \N \N \N \N \N 20022 \N subspecies Limnanthes douglasii subsp. nivea \N \N \N \N \N 20023 A.silvestris Acacia Acacia silvestris \N \N \N \N \N 20024 P.iodocarpa Passiflora Passiflora iodocarpa \N \N \N \N \N 20025 P.andapensis Polyscias Polyscias andapensis \N \N \N \N \N 20026 P.coriacea Posidonia Posidonia coriacea \N \N \N \N \N 20027 \N tribe Calypsoae \N \N \N \N \N 20028 D.ciliolata Diplycosia Diplycosia ciliolata \N \N \N \N \N 20029 P.inconstans Paspalum Paspalum inconstans \N \N \N \N \N 20030 M.JJS-2010b Mentzelia Mentzelia sp. JJS-2010b \N \N \N \N \N 20031 \N genus Micronychia \N \N \N \N \N 20032 D.hadrantha Duguetia Duguetia hadrantha \N \N \N \N \N 20033 P.porteri Pereskiopsis Pereskiopsis porteri \N \N \N \N \N 20034 B.sanguinea Broughtonia Broughtonia sanguinea \N \N \N \N \N 20035 \N varietas Rubus inopertus var. echinocalyx \N \N \N \N \N 20036 C.kelloggii Carex Carex kelloggii \N \N \N \N \N 20037 \N subspecies Helichrysum arenarium subsp. arenarium \N \N \N \N \N 20038 M.phitauiana Mammillaria Mammillaria phitauiana \N \N \N \N \N 20039 S.vitiensis Smilax Smilax vitiensis \N \N \N \N \N 20040 S.samarangense Syzygium Syzygium samarangense Java-apple,makopa,wax jambu \N \N \N \N 20041 A.venosus Adenanthos Adenanthos venosus \N \N \N \N \N 20042 P.chamissonis Pedicularis Pedicularis chamissonis \N \N \N \N \N 20043 B.mexicana Bealia Bealia mexicana \N \N \N \N \N 20044 R.phillipsonii Rhynchophora Rhynchophora phillipsonii \N \N \N \N \N 20045 A.lycopodioides Azorella Azorella lycopodioides \N \N \N \N \N 20046 E.pseudo-obtusa Eragrostis Eragrostis x pseudo-obtusa \N \N \N \N \N 20047 H.obtusa Hopia Hopia obtusa \N \N \N \N \N 20048 G.producta Gentiana Gentiana producta \N \N \N \N \N 20049 S.chinensis Symplocos Symplocos chinensis \N \N \N \N \N 20050 B.petersiana Bauhinia Bauhinia petersiana \N \N \N \N \N 20051 D.aspersa Disporopsis Disporopsis aspersa \N \N \N \N \N 20052 D.cercidifolius Disanthus Disanthus cercidifolius \N \N \N \N \N 20053 \N varietas Ligustrum sinense var. sinense \N \N \N \N \N 20054 C.lepidocarpa Carex Carex demissa x Carex lepidocarpa \N \N \N \N \N 20055 T.uchiyamae Thalictrum Thalictrum uchiyamae \N \N \N \N \N 20056 C.sordida Chamaesaracha Chamaesaracha sordida hairy five-eyes \N \N \N \N 20057 M.oreophila Mentzelia Mentzelia oreophila \N \N \N \N \N 20058 S.scabribractea Selago Selago scabribractea \N \N \N \N \N 20059 \N varietas Cirsium scariosum var. congdonii rosette thistle \N \N \N \N 20060 A.moneta Atriplex Atriplex moneta \N \N \N \N \N 20061 A.khartensis Ajania Ajania khartensis \N \N \N \N \N 20062 C.sousae Croton Croton sousae \N \N \N \N \N 20063 P.dissectifolia Pedicularis Pedicularis dissectifolia \N \N \N \N \N 20064 \N subtribe Artemisiinae \N \N \N \N \N 20065 R.merophylla Roupala Roupala merophylla \N \N \N \N \N 20066 P.xolocotzii Phaseolus Phaseolus xolocotzii \N \N \N \N \N 20067 M.lanceolatus Melicytus Melicytus lanceolatus \N \N \N \N \N 20068 C.parviflora Cyclantheropsis Cyclantheropsis parviflora \N \N \N \N \N 20069 I.desmantha Impatiens Impatiens desmantha \N \N \N \N \N 20070 \N genus Pleodendron \N \N \N \N \N 20071 \N genus Nanuza \N \N \N \N \N 20072 E.niveus Echinops Echinops niveus \N \N \N \N \N 20073 P.polyantha Pentace Pentace polyantha \N \N \N \N \N 20074 C.utriculosa Cuphea Cuphea utriculosa \N \N \N \N \N 20075 E.impressinervis Eurya Eurya impressinervis \N \N \N \N \N 20076 V.pycnostelma Vincetoxicum Vincetoxicum pycnostelma \N \N \N \N \N 20077 T.erythroxylon Trochetiopsis Trochetiopsis erythroxylon \N \N \N \N \N 20078 M.pauciflora Maxillaria Maxillaria pauciflora \N \N \N \N \N 20079 \N genus Tidestromia \N \N \N \N \N 20080 V.pisiformis Vicia Vicia pisiformis \N \N \N \N \N 20081 P.roxburghii Parkia Parkia roxburghii \N \N \N \N \N 20082 \N varietas Orostachys malacophylla var. iwarenge \N \N \N \N \N 20083 \N genus Iseilema \N \N \N \N \N 20084 \N genus Albuca \N \N \N \N \N 20085 \N forma Rhipsalis clavata f. clavata \N \N \N \N \N 20086 C.esterhuyseniae Cliffortia Cliffortia esterhuyseniae \N \N \N \N \N 20087 \N subfamily Mackinlayoideae \N \N \N \N \N 20088 C.calceolus Cypripedium Cypripedium calceolus \N \N \N \N \N 29395 \N genus Duosperma \N \N \N \N \N 20089 C.arbutoides Comarostaphylis Comarostaphylis arbutoides \N \N \N \N \N 20090 K.grandiflora Kohautia Kohautia grandiflora \N \N \N \N \N 20091 O.leucoxylon Ocotea Ocotea leucoxylon \N \N \N \N \N 20092 F.altissima Festuca Festuca altissima \N \N \N \N \N 20093 G.correllii Galium Galium correllii \N \N \N \N \N 20094 D.lowii Dimorphorchis Dimorphorchis lowii \N \N \N \N \N 20095 D.nudiflorus Dendrocereus Dendrocereus nudiflorus \N \N \N \N \N 20096 G.maderaspatana Grangea Grangea maderaspatana \N \N \N \N \N 20097 T.33879 Trigonella Trigonella sp. TU 33879 \N \N \N \N \N 20098 G.modesta Gloriosa Gloriosa modesta \N \N \N \N \N 20099 P.sphaerocarpa Patinoa Patinoa sphaerocarpa \N \N \N \N \N 20100 I.inornus Ixocactus Ixocactus inornus \N \N \N \N \N 20101 A.contorta Aristida Aristida contorta \N \N \N \N \N 20102 G.ikariae Galanthus Galanthus ikariae \N \N \N \N \N 20103 S.hederifolius Sinosenecio Sinosenecio hederifolius \N \N \N \N \N 20104 M.japonica Muhlenbergia Muhlenbergia japonica \N \N \N \N \N 20105 V.erosum Viburnum Viburnum erosum \N \N \N \N \N 20106 \N varietas Reldia minutiflora var. minutiflora \N \N \N \N \N 20107 R.pumilum Rheum Rheum pumilum \N \N \N \N \N 20108 C.speciosus Crocus Crocus speciosus \N \N \N \N \N 20109 \N family Anacardiaceae sumac family \N \N \N \N 20110 C.linearis Columnea Columnea linearis \N \N \N \N \N 20111 A.viridiflorum Allium Allium viridiflorum \N \N \N \N \N 20112 E.decora Erythrina Erythrina decora \N \N \N \N \N 20113 \N genus Saharanthus \N \N \N \N \N 20114 \N subspecies Lomatium foeniculaceum subsp. fimbriatum \N \N \N \N \N 20115 L.suaveolens Lotus Lotus suaveolens \N \N \N \N \N 20116 I.beanii Ilex Ilex beanii \N \N \N \N \N 20117 S.fulvida Sophora Sophora fulvida \N \N \N \N \N 20118 Z.integrifolia Zabelia Zabelia integrifolia \N \N \N \N \N 20119 O.verna Omphalodes Omphalodes verna blue-eyed-Mary \N \N \N \N 20120 Z.punctata Zuccagnia Zuccagnia punctata \N \N \N \N \N 20121 \N genus Litchi \N \N \N \N \N 20122 A.misandrum Asarum Asarum misandrum \N \N \N \N \N 20123 L.12462 Luxemburgia Luxemburgia sp. CFCR 12462 \N \N \N \N \N 20124 D.millarii Diaphananthe Diaphananthe millarii \N \N \N \N \N 20125 E.cupularis Euphorbia Euphorbia cupularis \N \N \N \N \N 20126 P.aequata Physalis Physalis aequata \N \N \N \N \N 20127 C.serratifolium Culcitium Culcitium serratifolium \N \N \N \N \N 20128 \N varietas Gonolobus suberosus var. granulatus \N \N \N \N \N 20129 D.parvifolia Dillwynia Dillwynia parvifolia \N \N \N \N \N 20130 P.dubium Peltophorum Peltophorum dubium \N \N \N \N \N 20131 C.ventricosum Cypripedium Cypripedium x ventricosum \N \N \N \N \N 20132 E.veneris Euphorbia Euphorbia veneris \N \N \N \N \N 20133 A.harleyi Arrabidaea Arrabidaea harleyi \N \N \N \N \N 20134 S.gillii Soroseris Soroseris gillii \N \N \N \N \N 20135 E.botschantzevii Eutrema Eutrema botschantzevii \N \N \N \N \N 20136 N.xiphioides Nepenthes Nepenthes xiphioides \N \N \N \N \N 20137 A.sylvatica Aesculus Aesculus flava x Aesculus sylvatica \N \N \N \N \N 20138 \N genus Utleya \N \N \N \N \N 20139 \N varietas Physaria didymocarpa var. didymocarpa \N \N \N \N \N 20140 C.duparquetii Cyphostemma Cyphostemma duparquetii \N \N \N \N \N 20141 O.lancifolium Oncidium Oncidium lancifolium \N \N \N \N \N 20142 B.longifolia Burmannia Burmannia longifolia \N \N \N \N \N 20143 P.setulosa Pultenaea Pultenaea setulosa \N \N \N \N \N 20144 \N genus Oparanthus \N \N \N \N \N 20145 I.grandiflora Inula Inula grandiflora \N \N \N \N \N 20146 \N genus Aechmanthera \N \N \N \N \N 20147 A.leptocarpus Astragalus Astragalus leptocarpus \N \N \N \N \N 20148 R.prunifolium Rhododendron Rhododendron prunifolium \N \N \N \N \N 20149 G.sessilifolia Genista Genista sessilifolia \N \N \N \N \N 20150 P.2953 Peponidium Peponidium sp. RSS 2953 \N \N \N \N \N 20151 \N genus Phaulothamnus \N \N \N \N \N 20152 E.caspicus Eremoblastus Eremoblastus caspicus \N \N \N \N \N 20153 G.loteniensis Gladiolus Gladiolus loteniensis \N \N \N \N \N 20154 \N genus Rollinia \N \N \N \N \N 20155 \N genus Coccocypselum \N \N \N \N \N 20156 A.kochii Amaracarpus Amaracarpus kochii \N \N \N \N \N 20157 S.nikoensis Saussurea Saussurea nikoensis \N \N \N \N \N 20158 O.serpyllifolia Orthosia Orthosia serpyllifolia \N \N \N \N \N 20159 T.brevilobata Tournefortia Tournefortia brevilobata \N \N \N \N \N 20160 A.barteri Alafia Alafia barteri \N \N \N \N \N 20161 M.rotundifolia Macleania Macleania rotundifolia \N \N \N \N \N 20162 A.dentigerum Allium Allium dentigerum \N \N \N \N \N 20163 N.pulcherrima Nassauvia Nassauvia pulcherrima \N \N \N \N \N 20164 S.alternifolia Synaptolepis Synaptolepis alternifolia \N \N \N \N \N 20165 D.poilanei Dendropanax Dendropanax poilanei \N \N \N \N \N 20166 A.neglecta Antennaria Antennaria neglecta \N \N \N \N \N 20167 B.pallidiflora Billbergia Billbergia pallidiflora \N \N \N \N \N 20168 X.leontoglossum Xylobium Xylobium leontoglossum \N \N \N \N \N 20169 K.21772 Kairoa Kairoa sp. Takeuchi 21772 \N \N \N \N \N 20170 B.macrocarpa Beta Beta macrocarpa \N \N \N \N \N 20171 C.stellariifolium Comastoma Comastoma stellariifolium \N \N \N \N \N 20172 \N genus Pseudoselago \N \N \N \N \N 20173 P.septenatum Pseudobombax Pseudobombax septenatum \N \N \N \N \N 20174 S.lanceolata Silene Silene lanceolata \N \N \N \N \N 20175 M.leptospermoides Myrceugenia Myrceugenia leptospermoides \N \N \N \N \N 20176 T.tanakae Tylophora Tylophora tanakae \N \N \N \N \N 20177 M.modesta Maxillaria Maxillaria modesta \N \N \N \N \N 20178 E.cardiophorum Epidendrum Epidendrum cardiophorum \N \N \N \N \N 20179 S.auriculatum Syzygium Syzygium auriculatum \N \N \N \N \N 20180 N.ramirezii Nasa Nasa ramirezii \N \N \N \N \N 20181 L.aculeata Lactuca Lactuca aculeata \N \N \N \N \N 20182 G.ledermannii Garcinia Garcinia ledermannii \N \N \N \N \N 20183 R.chamaemorus Rubus Rubus chamaemorus \N \N \N \N \N 20184 C.crassicaulis Carmichaelia Carmichaelia crassicaulis \N \N \N \N \N 20185 O.ellemannii Orthosia Orthosia ellemannii \N \N \N \N \N 32098 \N genus Halenia \N \N \N \N \N 20186 D.hastata Dalechampia Dalechampia hastata \N \N \N \N \N 20187 \N genus Agathosma \N \N \N \N \N 20188 L.macrophyllus Lasiocroton Lasiocroton macrophyllus \N \N \N \N \N 20189 L.engleri Lysimachia Lysimachia engleri \N \N \N \N \N 20190 S.schunkei Swartzia Swartzia schunkei \N \N \N \N \N 20191 D.caveroi Dichaea Dichaea caveroi \N \N \N \N \N 20192 M.ruthenica Medicago Medicago ruthenica \N \N \N \N \N 20193 E.pannosa Espeletiopsis Espeletiopsis pannosa \N \N \N \N \N 20194 S.duckeanum Stryphnodendron Stryphnodendron duckeanum \N \N \N \N \N 20195 F.wabuensis Fritillaria Fritillaria wabuensis \N \N \N \N \N 20196 C.loddigesii Cycnoches Cycnoches loddigesii \N \N \N \N \N 20197 C.millotii Coffea Coffea millotii \N \N \N \N \N 20198 \N subspecies Helianthus debilis subsp. silvestris \N \N \N \N \N 20199 E.paniculata Ericameria Ericameria paniculata Mojave rabbitbrush \N \N \N \N 20200 E.modestum Eriocaulon Eriocaulon modestum \N \N \N \N \N 20201 M.cucullatus Mimetes Mimetes cucullatus \N \N \N \N \N 20202 \N genus Artedia \N \N \N \N \N 20203 S.rhodopeum Seseli Seseli rhodopeum \N \N \N \N \N 20204 \N genus Martynia \N \N \N \N \N 20205 A.striata Alcea Alcea striata \N \N \N \N \N 20206 \N genus Schleichera \N \N \N \N \N 20207 T.carneus Tripterocalyx Tripterocalyx carneus \N \N \N \N \N 20208 T.barbatum Trichodiadema Trichodiadema barbatum \N \N \N \N \N 20209 R.incisa Rotheca Rotheca incisa \N \N \N \N \N 20210 C.longebarbatus Calochortus Calochortus longebarbatus \N \N \N \N \N 20211 A.karelinii Allium Allium karelinii \N \N \N \N \N 20212 P.fissifolium Phrynium Phrynium fissifolium \N \N \N \N \N 20213 E.chrysantha Edgeworthia Edgeworthia chrysantha jie xiang,mitsumata,paperbush \N \N \N \N 20214 C.nanus Colobocarpos Colobocarpos nanus \N \N \N \N \N 20215 H.hylomeconoides Hylomecon Hylomecon hylomeconoides \N \N \N \N \N 20216 C.eliseae Cotyledon Cotyledon eliseae \N \N \N \N \N 20217 \N genus Pennantia \N \N \N \N \N 20218 I.biflora Ixora Ixora biflora \N \N \N \N \N 20219 C.brizoides Calotheca Calotheca brizoides \N \N \N \N \N 20220 I.cordatotriloba Ipomoea Ipomoea cordatotriloba \N \N \N \N \N 20221 A.acapulcensis Ampelocissus Ampelocissus acapulcensis \N \N \N \N \N 20222 V.lathyroides Vicia Vicia lathyroides \N \N \N \N \N 20223 A.patens Asarum Asarum patens \N \N \N \N \N 20224 P.silvatica Pentapeltis Pentapeltis silvatica \N \N \N \N \N 20225 L.lindenii Llerasia Llerasia lindenii \N \N \N \N \N 20226 A.fragilis Aciotis Aciotis fragilis \N \N \N \N \N 20227 A.odora Alocasia Alocasia odora \N \N \N \N \N 20228 C.viscida Clusia Clusia viscida \N \N \N \N \N 20229 N.grahamii Nogra Nogra grahamii \N \N \N \N \N 20230 S.grewiifolia Salvia Salvia grewiifolia \N \N \N \N \N 20231 A.densifolia Antennaria Antennaria densifolia \N \N \N \N \N 20232 W.longifolia Wahlenbergia Wahlenbergia longifolia \N \N \N \N \N 20233 F.mexicanum Fremontodendron Fremontodendron californicum x Fremontodendron mexicanum \N \N \N \N \N 20234 B.violacea Bellardiochloa Bellardiochloa violacea \N \N \N \N \N 20235 N.obliqua Nothofagus Nothofagus obliqua \N \N \N \N \N 20236 T.angustifolia Trema Trema angustifolia \N \N \N \N \N 20237 A.aspera Andrachne Andrachne aspera \N \N \N \N \N 20238 P.acuminata Prestoea Prestoea acuminata \N \N \N \N \N 20239 P.mysorensis Pinalia Pinalia mysorensis \N \N \N \N \N 20240 E.glandulosa Erica Erica glandulosa \N \N \N \N \N 20241 N.violacea Nymphaea Nymphaea violacea \N \N \N \N \N 20242 L.novae-zelandiae Laurelia Laurelia novae-zelandiae \N \N \N \N \N 20243 E.gamkensis Euphorbia Euphorbia gamkensis \N \N \N \N \N 20244 T.aristum Taraxacum Taraxacum aristum \N \N \N \N \N 20245 M.wiesingeri Mammillaria Mammillaria wiesingeri \N \N \N \N \N 20246 D.diphyllostegia Diploglottis Diploglottis diphyllostegia \N \N \N \N \N 20247 C.jenmanii Cattleya Cattleya jenmanii \N \N \N \N \N 20248 \N genus Almaleea \N \N \N \N \N 20249 V.occidentalis Viola Viola occidentalis \N \N \N \N \N 20250 P.occidentalis Platanus Platanus occidentalis American sycamore,eastern plane-tree,eastern sycamore \N \N \N \N 20251 \N subspecies Lonicera caerulea subsp. kamtschatica \N \N \N \N \N 20252 D.bejaudii Diospyros Diospyros bejaudii \N \N \N \N \N 20253 R.harmonicum Rhipidocladum Rhipidocladum harmonicum \N \N \N \N \N 20254 S.tectoria Sasa Sasa tectoria \N \N \N \N \N 20255 Y.cryptocarpa Yavia Yavia cryptocarpa \N \N \N \N \N 20256 P.trinitatis Plantago Plantago trinitatis \N \N \N \N \N 20257 Q.marilandica Quercus Quercus marilandica blackjack oak \N \N \N \N 20258 \N varietas Hatiora salicornioides var. stricta \N \N \N \N \N 20259 N.lutea Nuphar Nuphar lutea yellow water lily \N \N \N \N 20260 G.robusta Gentiana Gentiana robusta \N \N \N \N \N 20261 P.baptistii Pterostylis Pterostylis baptistii \N \N \N \N \N 20262 E.intermedia Eleusine Eleusine intermedia \N \N \N \N \N 20263 A.hendersonii Archidendron Archidendron hendersonii \N \N \N \N \N 20264 C.intermedia Ceropegia Ceropegia intermedia \N \N \N \N \N 20265 \N subspecies Echium tenue subsp. dumosum \N \N \N \N \N 20266 R.longipes Rhodosciadium Rhodosciadium longipes \N \N \N \N \N 20267 S.pinetorum Silene Silene pinetorum \N \N \N \N \N 20268 N.spectabilis Nepenthes Nepenthes spectabilis \N \N \N \N \N 20269 \N genus Lavandula lavenders \N \N \N \N 20270 C.tenella Chamaedorea Chamaedorea tenella \N \N \N \N \N 20271 F.ancylantha Fadogia Fadogia ancylantha \N \N \N \N \N 20272 T.triaristatum Trifolium Trifolium triaristatum \N \N \N \N \N 20273 C.cubense Cinnamodendron Cinnamodendron cubense \N \N \N \N \N 20274 T.macilentum Trifolium Trifolium macilentum \N \N \N \N \N 20275 B.borneensis Baijiania Baijiania borneensis \N \N \N \N \N 20276 G.foliacea Guettarda Guettarda foliacea \N \N \N \N \N 20277 \N genus Petchia \N \N \N \N \N 20278 N.arborea Nesohedyotis Nesohedyotis arborea \N \N \N \N \N 20279 L.cuyacensis Larnax Larnax cuyacensis \N \N \N \N \N 20280 O.integerrima Ochna Ochna integerrima \N \N \N \N \N 33556 L.nana Lobelia Lobelia nana \N \N \N \N \N 20281 D.caucasica Dolichorrhiza Dolichorrhiza caucasica \N \N \N \N \N 20282 P.prominens Phyllostachys Phyllostachys prominens \N \N \N \N \N 20283 S.tangutica Saussurea Saussurea tangutica \N \N \N \N \N 20284 P.jardimii Physeterostemon Physeterostemon jardimii \N \N \N \N \N 20285 \N genus Telfairia \N \N \N \N \N 20286 M.utilis Magnolia Magnolia utilis \N \N \N \N \N 20287 G.algida Gentiana Gentiana algida \N \N \N \N \N 20288 L.bryoniifolia Lavatera Lavatera bryoniifolia \N \N \N \N \N 20289 N.affinis Neosinocalamus Neosinocalamus affinis \N \N \N \N \N 102971 \N no rank stem eudicotyledons \N \N \N \N \N 20290 G.spinosa Grayia Grayia spinosa \N \N \N \N \N 20291 M.auriazureus Micranthocereus Micranthocereus auriazureus \N \N \N \N \N 20292 G.SB-2009 Genlisea Genlisea aff. repens SB-2009 \N \N \N \N \N 20293 H.lasianthum Halimium Halimium lasianthum \N \N \N \N \N 20294 \N genus Indosasa \N \N \N \N \N 20295 S.jongheana Sophronitis Sophronitis jongheana \N \N \N \N \N 20296 A.blackii Austrosteenisia Austrosteenisia blackii \N \N \N \N \N 20297 B.vincentina Biscutella Biscutella vincentina \N \N \N \N \N 20298 I.goniocarpa Iris Iris goniocarpa \N \N \N \N \N 20299 A.pannosa Anthotroche Anthotroche pannosa \N \N \N \N \N 20300 \N varietas Cymopterus acaulis var. parvus \N \N \N \N \N 20301 D.latifolia Daviesia Daviesia latifolia \N \N \N \N \N 20302 L.coerulea Loeselia Loeselia coerulea \N \N \N \N \N 20303 S.tuberosum Lycopersicon Solanum lycopersicum x Solanum tuberosum \N \N \N \N \N 20304 P.leptarthron Psilocaulon Psilocaulon leptarthron \N \N \N \N \N 20305 P.extremensis Paepalanthus Paepalanthus extremensis \N \N \N \N \N 20306 S.rubescens Salsola Salsola rubescens \N \N \N \N \N 20307 M.fragrans Moraea Moraea fragrans \N \N \N \N \N 20308 \N genus Pozoa \N \N \N \N \N 20309 G.cuneatum Gastrolobium Gastrolobium cuneatum \N \N \N \N \N 20310 I.vomitoria Ilex Ilex vomitoria yaupon \N \N \N \N 20311 S.ravennae Saccharum Saccharum ravennae \N \N \N \N \N 20312 R.cryptantha Rorippa Rorippa cryptantha \N \N \N \N \N 20313 X.cylindraceum Xeranthemum Xeranthemum cylindraceum \N \N \N \N \N 20314 A.caespitosa Armeria Armeria caespitosa \N \N \N \N \N 20315 G.AK-2011 Genista Genista cf. monspessulana AK-2011 \N \N \N \N \N 20316 \N family Celastraceae bittersweet family \N \N \N \N 20317 \N varietas Pedicularis siphonantha var. stictochila \N \N \N \N \N 20318 C.sinensis Cladrastis Cladrastis sinensis \N \N \N \N \N 20319 D.kotschyi Dracocephalum Dracocephalum kotschyi \N \N \N \N \N 20320 \N genus Ormosia \N \N \N \N \N 20321 B.hirsuta Balsamorhiza Balsamorhiza hirsuta \N \N \N \N \N 20322 A.caryophyllaea Alstroemeria Alstroemeria caryophyllaea \N \N \N \N \N 20323 L.duranii Lupinus Lupinus duranii \N \N \N \N \N 20324 D.intermedia Dianella Dianella intermedia \N \N \N \N \N 20325 \N subspecies Descurainia pinnata subsp. halictorum \N \N \N \N \N 20326 S.dimidiatum Stenotaphrum Stenotaphrum dimidiatum \N \N \N \N \N 20327 E.eriopoda Eragrostis Eragrostis eriopoda \N \N \N \N \N 20328 \N genus Perianthomega \N \N \N \N \N 20329 \N genus Amanoa \N \N \N \N \N 20330 \N genus Duabanga \N \N \N \N \N 20331 \N subspecies Oenothera stricta subsp. stricta \N \N \N \N \N 20332 \N genus Gloxinia \N \N \N \N \N 20333 D.DraB33 Draba Draba sp. DraB33 \N \N \N \N \N 20334 L.japonicus Lathyrus Lathyrus japonicus beach-pea,sea-pea \N \N \N \N 20335 S.marinasense Solanum Solanum marinasense \N \N \N \N \N 20336 I.sinensis Incarvillea Incarvillea sinensis \N \N \N \N \N 20337 \N genus Cousiniopsis \N \N \N \N \N 20338 A.erosa Asclepias Asclepias erosa \N \N \N \N \N 20339 C.bracteale Clinosperma Clinosperma bracteale \N \N \N \N \N 20340 F.microcarpa Ferula Ferula microcarpa \N \N \N \N \N 20341 \N genus Laser \N \N \N \N \N 20342 S.spruceana Schefflera Schefflera spruceana \N \N \N \N \N 20343 G.mesostrobilum Gymnostoma Gymnostoma mesostrobilum \N \N \N \N \N 20344 O.cinereophila Ophrys Ophrys cinereophila \N \N \N \N \N 20345 A.pachyanthus Aeschynanthus Aeschynanthus pachyanthus \N \N \N \N \N 20346 C.taipaicum Callianthemum Callianthemum taipaicum \N \N \N \N \N 20347 S.laurifolia Smilax Smilax laurifolia \N \N \N \N \N 20348 O.heterocarpa Oresbia Oresbia heterocarpa \N \N \N \N \N 20349 \N genus Melampodium \N \N \N \N \N 20350 B.densiflora Bastardiopsis Bastardiopsis densiflora \N \N \N \N \N 20351 H.zwartbergense Helichrysum Helichrysum zwartbergense \N \N \N \N \N 20352 R.spinosus Rhaphithamnus Rhaphithamnus spinosus \N \N \N \N \N 20353 P.cauliflora Plinia Plinia cauliflora \N \N \N \N \N 20354 P.quartziticus Phyllobolus Phyllobolus quartziticus \N \N \N \N \N 20355 A.aestivalis Adonis Adonis aestivalis summer pheasant's eye \N \N \N \N 20356 \N genus Brya \N \N \N \N \N 20357 \N genus Corynanthe \N \N \N \N \N 20358 A.paniculatum Acronema Acronema paniculatum \N \N \N \N \N 20359 E.resinifera Euphorbia Euphorbia resinifera \N \N \N \N \N 20360 \N genus Sclerostegia \N \N \N \N \N 20361 A.elachophylla Atriplex Atriplex elachophylla \N \N \N \N \N 20362 A.gracilipes Alchemilla Alchemilla gracilipes \N \N \N \N \N 20363 T.mitchelliana Thyridolepis Thyridolepis mitchelliana \N \N \N \N \N 20364 P.perpusilla Pratia Pratia perpusilla \N \N \N \N \N 20365 P.mutabile Piper Piper mutabile \N \N \N \N \N 20366 \N genus Heterophyllaea \N \N \N \N \N 20367 \N genus Taralea \N \N \N \N \N 20368 L.grammica Lysimachia Lysimachia grammica \N \N \N \N \N 20369 S.racemosum Sanango Sanango racemosum \N \N \N \N \N 20370 S.scouleri Silene Silene scouleri \N \N \N \N \N 20371 C.philippensis Celtis Celtis philippensis \N \N \N \N \N 20372 C.basalticus Cymopterus Cymopterus basalticus \N \N \N \N \N 20373 M.saxicola Mentzelia Mentzelia saxicola \N \N \N \N \N 20374 A.warnieri Anthyllis Anthyllis warnieri \N \N \N \N \N 20375 C.filicaulis Cliffortia Cliffortia filicaulis \N \N \N \N \N 20376 P.pinifolia Pouteria Pouteria pinifolia \N \N \N \N \N 20377 O.iridifolia Oberonia Oberonia iridifolia \N \N \N \N \N 33944 \N genus Nothospondias \N \N \N \N \N 20378 \N subspecies Carlina hispanica subsp. globosa \N \N \N \N \N 20379 A.patens Atriplex Atriplex patens \N \N \N \N \N 20380 C.tigrinum Cymbidium Cymbidium tigrinum \N \N \N \N \N 20381 M.incanum Marrubium Marrubium incanum \N \N \N \N \N 20382 \N genus Mitrasacmopsis \N \N \N \N \N 20383 S.luzulifolia Schlechtendalia Schlechtendalia luzulifolia \N \N \N \N \N 20384 A.MG-2008b Allium Allium sp. MG-2008b \N \N \N \N \N 20385 M.bellendenii Moraea Moraea bellendenii \N \N \N \N \N 20386 M.hastilabia Malaxis Malaxis hastilabia \N \N \N \N \N 20387 E.anychioides Euphorbia Euphorbia anychioides \N \N \N \N \N 20388 T.howellii Trifolium Trifolium howellii \N \N \N \N \N 20389 P.contorta Pseudopiptadenia Pseudopiptadenia contorta \N \N \N \N \N 20390 T.stellata Tabernaemontana Tabernaemontana stellata \N \N \N \N \N 20391 P.grinnellii Penstemon Penstemon grinnellii \N \N \N \N \N 20392 M.integrifolia Macadamia Macadamia integrifolia macadamia nut \N \N \N \N 20393 K.angustifolia Kaempferia Kaempferia angustifolia \N \N \N \N \N 20394 A.hakusanense Aconitum Aconitum hakusanense \N \N \N \N \N 20395 P.indica Pavetta Pavetta indica \N \N \N \N \N 20396 A.spathaceus Acrothamnus Acrothamnus spathaceus \N \N \N \N \N 20397 P.hendersonii Pteryxia Pteryxia hendersonii \N \N \N \N \N 20398 \N genus Cyphosperma \N \N \N \N \N 20399 \N subspecies Mystroxylon aethiopicum subsp. schlechteri \N \N \N \N \N 20400 P.reflexiflora Passiflora Passiflora reflexiflora \N \N \N \N \N 20401 C.geophila Carex Carex geophila \N \N \N \N \N 20402 P.laxiflora Polystachya Polystachya laxiflora \N \N \N \N \N 20403 \N genus Michauxia \N \N \N \N \N 20404 T.chinense Thesium Thesium chinense \N \N \N \N \N 20405 C.poilanei Crawfurdia Crawfurdia poilanei \N \N \N \N \N 20406 M.motleyana Macaranga Macaranga motleyana \N \N \N \N \N 20407 K.fragrans Kalmiopsis Kalmiopsis fragrans \N \N \N \N \N 20408 S.tomentosa Scorzonera Scorzonera tomentosa \N \N \N \N \N 20409 B.diversispina Blepharis Blepharis diversispina \N \N \N \N \N 20410 H.leontonyx Helichrysum Helichrysum leontonyx \N \N \N \N \N 20411 S.sarmentiana Sphaerorrhiza Sphaerorrhiza sarmentiana \N \N \N \N \N 20412 D.sinicus Dendrocalamus Dendrocalamus sinicus \N \N \N \N \N 20413 E.pachycarpa Eleocharis Eleocharis pachycarpa \N \N \N \N \N 20414 A.suworowii Allium Allium suworowii \N \N \N \N \N 20415 P.reverchonii Pediomelum Pediomelum reverchonii \N \N \N \N \N 20416 P.caldense Piper Piper caldense \N \N \N \N \N 20417 G.monoica Gunnera Gunnera monoica \N \N \N \N \N 20418 \N genus Delonix \N \N \N \N \N 20419 \N genus Naregamia \N \N \N \N \N 20420 \N no rank environmental samples Taxonomy:418140 \N \N \N \N \N 20421 \N subspecies Sagittaria guayanensis subsp. lapulla \N \N \N \N \N 20422 \N genus Aporostylis \N \N \N \N \N 20423 R.dentata Rinorea Rinorea dentata \N \N \N \N \N 20424 S.sparsifolia Sidalcea Sidalcea sparsifolia \N \N \N \N \N 20425 P.maculosum Paspalum Paspalum maculosum \N \N \N \N \N 20426 \N varietas Crinum asiaticum var. japonicum \N \N \N \N \N 20427 T.bergeri Thesium Thesium bergeri \N \N \N \N \N 20428 H.montanus Haemanthus Haemanthus montanus \N \N \N \N \N 20429 \N genus Oroya \N \N \N \N \N 20430 S.galeottiana Senna Senna galeottiana \N \N \N \N \N 20431 \N genus Achlydosa \N \N \N \N \N 20432 I.hispida Indigofera Indigofera hispida \N \N \N \N \N 20433 V.umbricola Villarsia Villarsia umbricola \N \N \N \N \N 20434 O.lebruniana Otiophora Otiophora lebruniana \N \N \N \N \N 20435 A.simplex Aciphylla Aciphylla simplex \N \N \N \N \N 20436 A.sylvestre Aegilops x Secale Aegilops tauschii x Secale sylvestre \N \N \N \N \N 20437 E.1146 Etlingera Etlingera cf. brachychila Pedersen 1146 \N \N \N \N \N 20438 \N varietas Stewartia sinensis var. shensiensis \N \N \N \N \N 20439 L.s.n. Luetzelburgia Luetzelburgia sp. Pennington s.n. \N \N \N \N \N 20440 S.muellerii Syzygium Syzygium muellerii \N \N \N \N \N 20441 A.discophorus Amorphophallus Amorphophallus discophorus \N \N \N \N \N 20442 \N genus Dorema \N \N \N \N \N 20443 P.madrense Prionosciadium Prionosciadium madrense \N \N \N \N \N 20444 V.cucullata Viola Viola cucullata \N \N \N \N \N 20445 \N varietas Galanthus elwesii var. monostictus \N \N \N \N \N 20446 S.nahanniense Symphyotrichum Symphyotrichum nahanniense \N \N \N \N \N 20447 M.kwangtungensis Mussaenda Mussaenda kwangtungensis \N \N \N \N \N 20448 J.extensa Justicia Justicia extensa \N \N \N \N \N 20449 E.ogisui Epimedium Epimedium ogisui \N \N \N \N \N 20450 H.parodii Hippeastrum Hippeastrum parodii \N \N \N \N \N 20451 I.glomerata Ifloga Ifloga glomerata \N \N \N \N \N 20452 C.lamprocarpa Carex Carex lamprocarpa \N \N \N \N \N 20453 L.vernus Lathyrus Lathyrus vernus \N \N \N \N \N 20454 \N varietas Scurrula parasitica var. parasitica \N \N \N \N \N 20455 A.punctatum Aextoxicon Aextoxicon punctatum \N \N \N \N \N 20456 G.triflora Gentiana Gentiana scabra x Gentiana triflora \N \N \N \N \N 20457 C.cactiformis Cissus Cissus cactiformis \N \N \N \N \N 20458 M.lehmannii Maxillaria Maxillaria lehmannii \N \N \N \N \N 20459 A.varia Andryala Andryala varia \N \N \N \N \N 20460 R.maryonii Rhodanthe Rhodanthe maryonii \N \N \N \N \N 20461 X.peruviana Xylopia Xylopia peruviana \N \N \N \N \N 20462 P.s.n. Paramongaia Paramongaia sp. Oakeley s.n. \N \N \N \N \N 20463 P.uschakovii Papaver Papaver uschakovii \N \N \N \N \N 20464 L.madagascariensis Lagarosiphon Lagarosiphon madagascariensis \N \N \N \N \N 20465 C.punctata Crataegus Crataegus punctata \N \N \N \N \N 20466 G.juruensis Guatteria Guatteria juruensis \N \N \N \N \N 20467 B.rugosa Berendtiella Berendtiella rugosa \N \N \N \N \N 20468 P.macrophylla Pseudolmedia Pseudolmedia macrophylla \N \N \N \N \N 20469 O.delavayi Osmanthus Osmanthus delavayi \N \N \N \N \N 20470 L.HGK-2000 Leucheria Leucheria sp. HGK-2000 \N \N \N \N \N 20471 C.brasiliensis Coccoloba Coccoloba brasiliensis \N \N \N \N \N 20472 \N genus Euchresta \N \N \N \N \N 20473 F.minuta Fritillaria Fritillaria minuta \N \N \N \N \N 20474 T.gauntlettii Tolumnia Tolumnia gauntlettii \N \N \N \N \N 20475 B.apiculata Barringtonia Barringtonia apiculata \N \N \N \N \N 20476 E.siliculosum Erysimum Erysimum siliculosum \N \N \N \N \N 20477 \N genus Ulearum \N \N \N \N \N 20478 B.plebeja Begonia Begonia plebeja \N \N \N \N \N 20479 A.panamensis Anaxagorea Anaxagorea panamensis \N \N \N \N \N 20480 D.aletriformis Dracaena Dracaena aletriformis \N \N \N \N \N 20481 A.elliptica Acsmithia Acsmithia elliptica \N \N \N \N \N 20482 \N subspecies Triticum aestivum subsp. yunnanense \N \N \N \N \N 20483 T.pallida Torreyochloa Torreyochloa pallida \N \N \N \N \N 20484 C.2519 Coffea Coffea sp. Davis 2519 \N \N \N \N \N 20485 \N subspecies Carex microglochin subsp. microglochin \N \N \N \N \N 20486 P.poiretii Pachyanthus Pachyanthus poiretii \N \N \N \N \N 20487 C.chinamadensis Cistus Cistus chinamadensis \N \N \N \N \N 20488 P.volubilis Porana Porana volubilis \N \N \N \N \N 20489 I.omissa Indigofera Indigofera omissa \N \N \N \N \N 20490 B.absinthifolia Bahia Bahia absinthifolia \N \N \N \N \N 20491 S.gelida Stelis Stelis gelida \N \N \N \N \N 20492 \N genus Leutea \N \N \N \N \N 20493 I.canariensis Isoplexis Isoplexis canariensis \N \N \N \N \N 20494 P.doerfleri Paramoltkia Paramoltkia doerfleri \N \N \N \N \N 20495 M.dimera Malmea Malmea dimera \N \N \N \N \N 20496 T.rhodesiana Tinnea Tinnea rhodesiana \N \N \N \N \N 20497 H.MA438768 Hyacinthoides Hyacinthoides sp. MA438768 \N \N \N \N \N 20498 G.megalodonta Gaultheria Gaultheria megalodonta \N \N \N \N \N 20499 C.solenophora Caralluma Caralluma solenophora \N \N \N \N \N 20500 C.brachiata Climacoptera Climacoptera brachiata \N \N \N \N \N 20501 C.chloranthum Cymbidium Cymbidium chloranthum \N \N \N \N \N 20502 M.phleoides Mosdenia Mosdenia phleoides \N \N \N \N \N 20503 \N genus Lepidotrichum \N \N \N \N \N 20504 D.squamigera Dendrophthora Dendrophthora squamigera \N \N \N \N \N 20505 \N subspecies Camassia leichtlinii subsp. suksdorfii \N \N \N \N \N 20506 P.WSY0032094-96 Penstemon Penstemon sp. WSY0032094-96 \N \N \N \N \N 20507 \N genus Schizocarpum \N \N \N \N \N 20508 C.drakensbergense Colpodium Colpodium drakensbergense \N \N \N \N \N 20509 E.spinosus Eleutherococcus Eleutherococcus spinosus \N \N \N \N \N 20510 M.pauciflorum Memecylon Memecylon pauciflorum \N \N \N \N \N 20511 P.lowii Phalaenopsis Phalaenopsis lowii \N \N \N \N \N 20512 P.formosa Parodia Parodia formosa \N \N \N \N \N 20513 C.jorullensis Cuphea Cuphea jorullensis \N \N \N \N \N 20514 P.mazurenkoae Primula Primula mazurenkoae \N \N \N \N \N 20515 P.stellatum Pachycladon Pachycladon stellatum \N \N \N \N \N 20516 C.denticulata Cliffortia Cliffortia denticulata \N \N \N \N \N 20517 \N genus Pseudofumaria \N \N \N \N \N 20518 \N genus Phyllostegia \N \N \N \N \N 20519 \N genus Helonias \N \N \N \N \N 20520 C.hierapetrae Campanula Campanula hierapetrae \N \N \N \N \N 20521 \N subspecies Gazania linearis subsp. linearis \N \N \N \N \N 20522 A.rugulosa Aglaia Aglaia rugulosa \N \N \N \N \N 20523 P.sceptrum-carolinum Pedicularis Pedicularis sceptrum-carolinum \N \N \N \N \N 20524 B.cernua Bidens Bidens cernua \N \N \N \N \N 20525 A.forbesii Aloe Aloe forbesii \N \N \N \N \N 20526 \N genus Hyperbaena \N \N \N \N \N 20527 E.sericea Eriochloa Eriochloa sericea \N \N \N \N \N 20528 E.s.n. Erythrodes Erythrodes sp. Popov s.n. \N \N \N \N \N 20529 M.ligustriflora Mandevilla Mandevilla ligustriflora \N \N \N \N \N 20530 T.henryi Thladiantha Thladiantha henryi \N \N \N \N \N 20531 M.trichotoma Metadina Metadina trichotoma \N \N \N \N \N 20532 \N subspecies Antirrhinum majus subsp. linkianum \N \N \N \N \N 20533 S.aspera Sisymbrella Sisymbrella aspera \N \N \N \N \N 20534 C.adenogonium Combretum Combretum adenogonium \N \N \N \N \N 20535 W.glomerata Willdenowia Willdenowia glomerata \N \N \N \N \N 20536 H.nodosa Hakea Hakea nodosa \N \N \N \N \N 20537 O.dinsmorei Ophrys Ophrys dinsmorei \N \N \N \N \N 20538 A.acuminata Achillea Achillea acuminata \N \N \N \N \N 20539 C.sagittatus Convolvulus Convolvulus sagittatus \N \N \N \N \N 20540 \N genus Thamnochortus \N \N \N \N \N 20541 \N genus Luziola \N \N \N \N \N 20542 O.mexicana Oenothera Oenothera mexicana \N \N \N \N \N 20543 \N varietas Eriobotrya prinoides var. daduheensis \N \N \N \N \N 20544 H.darwinioides Homoranthus Homoranthus darwinioides \N \N \N \N \N 20545 P.electra Phyllostegia Phyllostegia electra \N \N \N \N \N 20546 A.longipetiolata Aiouea Aiouea longipetiolata \N \N \N \N \N 20547 S.neorickii Lycopersicon Solanum neorickii \N \N \N \N \N 20548 \N subspecies Biarum tenuifolium subsp. abbreviatum \N \N \N \N \N 20549 H.irazuense Hypericum Hypericum irazuense \N \N \N \N \N 20550 C.wallichii Croton Croton wallichii \N \N \N \N \N 20551 S.burragorang Spyridium Spyridium burragorang \N \N \N \N \N 20552 A.tabernaemontana Amsonia Amsonia tabernaemontana \N \N \N \N \N 20553 L.hypoleuca Lobelia Lobelia hypoleuca \N \N \N \N \N 20554 A.floridana Aristida Aristida floridana \N \N \N \N \N 20555 S.squarrosus Senecio Senecio squarrosus \N \N \N \N \N 20556 P.laxa Paraboea Paraboea laxa \N \N \N \N \N 20557 I.ulugurensis Impatiens Impatiens ulugurensis \N \N \N \N \N 20558 P.maackii Prunus Prunus maackii Amur chokecherry,Manchurian cherry \N \N \N \N 20559 P.arecina Pritchardia Pritchardia arecina \N \N \N \N \N 20560 \N subspecies Pericallis malvifolia subsp. caldeirae \N \N \N \N \N 20561 \N varietas Psidium cattleyanum var. littorale waiwai,yellow strawberry guava \N \N \N \N 20562 C.crassifolia Camissonia Camissonia crassifolia \N \N \N \N \N 20563 N.nikoensis Nemosenecio Nemosenecio nikoensis \N \N \N \N \N 20564 H.viscosa Hoffmannseggia Hoffmannseggia viscosa \N \N \N \N \N 20565 D.fasciata Disa Disa fasciata \N \N \N \N \N 20566 P.schneideriana Photinia Photinia schneideriana \N \N \N \N \N 20567 E.microphylla Eugenia Eugenia microphylla \N \N \N \N \N 20568 F.rupicaprina Festuca Festuca rupicaprina \N \N \N \N \N 20569 P.trifoliata Ptelea Ptelea trifoliata \N \N \N \N \N 20570 P.macounii Packera Packera macounii \N \N \N \N \N 20571 L.minimifolia Leucas Leucas minimifolia \N \N \N \N \N 20572 V.bonariensis Verbena Verbena bonariensis purpletop,purpletop vervain \N \N \N \N 20573 R.rionii Ranunculus Ranunculus rionii \N \N \N \N \N 20574 V.bullata Vernonia Vernonia bullata \N \N \N \N \N 20575 \N genus Amphilophium \N \N \N \N \N 20576 O.alba Onobrychis Onobrychis alba \N \N \N \N \N 20577 \N subspecies Lewisia columbiana subsp. columbiana \N \N \N \N \N 20578 \N genus Exocarya \N \N \N \N \N 20579 E.barbigeroides Erica Erica barbigeroides \N \N \N \N \N 20580 C.echinus Coryphantha Coryphantha echinus \N \N \N \N \N 20581 A.lepiorrhachis Aglaia Aglaia lepiorrhachis \N \N \N \N \N 20582 R.suaveolens Rhanterium Rhanterium suaveolens \N \N \N \N \N 20583 A.platyspathum Allium Allium platyspathum \N \N \N \N \N 20584 \N genus Celianella \N \N \N \N \N 20585 R.undulatum Rheum Rheum undulatum \N \N \N \N \N 20586 C.chapmanii Carex Carex chapmanii \N \N \N \N \N 20587 L.latifolia Lindera Lindera latifolia \N \N \N \N \N 20588 C.pancheri Callistemon Callistemon pancheri \N \N \N \N \N 20589 C.linguifolia Cremnophila Cremnophila linguifolia \N \N \N \N \N 20590 I.heterophylla Iresine Iresine heterophylla \N \N \N \N \N 20591 \N genus Staehelina \N \N \N \N \N 20592 S.patriotica Sutera Sutera patriotica \N \N \N \N \N 20593 \N genus Onuris \N \N \N \N \N 20594 A.emoryi Asclepias Asclepias emoryi \N \N \N \N \N 20595 R.aristeguietae Randia Randia aristeguietae \N \N \N \N \N 20596 \N genus Amphiachyris \N \N \N \N \N 20597 C.bonduc Caesalpinia Caesalpinia bonduc yellow nicker \N \N \N \N 20598 S.ericoides Symphyotrichum Symphyotrichum ericoides white heath aster \N \N \N \N 20599 P.suffruticosum Polycarpon Polycarpon suffruticosum \N \N \N \N \N 20600 \N genus Polytaenia \N \N \N \N \N 20601 A.californicum Arceuthobium Arceuthobium californicum \N \N \N \N \N 20602 M.exilis Microcoelia Microcoelia exilis \N \N \N \N \N 20603 P.longifolium Phragmipedium Phragmipedium longifolium \N \N \N \N \N 20604 E.unicapsulare Empleurum Empleurum unicapsulare \N \N \N \N \N 20605 D.resupinata Dicliptera Dicliptera resupinata \N \N \N \N \N 20606 C.trinervia Calliandra Calliandra trinervia \N \N \N \N \N 20607 C.mimetica Caucaea Caucaea mimetica \N \N \N \N \N 20608 \N genus Teucridium \N \N \N \N \N 20609 \N genus Rebutia \N \N \N \N \N 20610 P.juergensii Paspalum Paspalum juergensii \N \N \N \N \N 20611 C.ulcinus Convolvulus Convolvulus ulcinus \N \N \N \N \N 20612 L.1317 Leucaena Leucaena hybrid sp. Hughes 1317 \N \N \N \N \N 20613 P.callosum Piper Piper callosum \N \N \N \N \N 20614 P.forrestii Paris Paris forrestii \N \N \N \N \N 20615 C.fuertesii Clidemia Clidemia fuertesii \N \N \N \N \N 20616 H.kaengsophense Hydrobryum Hydrobryum kaengsophense \N \N \N \N \N 20617 A.brownii Apodasmia Apodasmia brownii \N \N \N \N \N 20618 S.platyphylla Sagittaria Sagittaria platyphylla \N \N \N \N \N 20619 \N genus Megalochlamys \N \N \N \N \N 20620 P.giganteus Paepalanthus Paepalanthus giganteus \N \N \N \N \N 20621 \N subtribe Gaillardiinae \N \N \N \N \N 20622 C.opacula Corymbia Corymbia opacula \N \N \N \N \N 20623 L.2501 Leroya Leroya aff. richardiae Davis & Rakotonasolo 2501 \N \N \N \N \N 20624 B.flexuosa Bambusa Bambusa flexuosa \N \N \N \N \N 20625 \N genus Eria \N \N \N \N \N 20626 \N genus Ostrearia \N \N \N \N \N 20627 S.atropurpurea Scabiosa Scabiosa atropurpurea \N \N \N \N \N 20628 R.roezlii Ribes Ribes roezlii Sierra gooseberry \N \N \N \N 20629 \N genus Broughtonia \N \N \N \N \N 20630 P.porrecta Pterostylis Pterostylis porrecta \N \N \N \N \N 20631 O.remotifolia Ourisia Ourisia remotifolia \N \N \N \N \N 20632 S.capensis Sarcocornia Sarcocornia capensis \N \N \N \N \N 20633 M.tommasinii Moehringia Moehringia tommasinii \N \N \N \N \N 20634 R.integrifolia Rhus Rhus integrifolia lemonade sumac \N \N \N \N 20635 R.hybosperma Rorippa Rorippa hybosperma \N \N \N \N \N 20636 S.divaricata Saposhnikovia Saposhnikovia divaricata \N \N \N \N \N 20637 A.flavescens Aquilegia Aquilegia flavescens \N \N \N \N \N 20638 R.ghoranum Rhammatophyllum Rhammatophyllum ghoranum \N \N \N \N \N 20639 M.acutifolia Murdannia Murdannia acutifolia \N \N \N \N \N 20640 S.racemosa Spatalla Spatalla racemosa \N \N \N \N \N 20641 R.triandra Rhagodia Rhagodia triandra \N \N \N \N \N 20642 T.parvifolia Thibaudia Thibaudia parvifolia \N \N \N \N \N 20643 A.saccata Aristolochia Aristolochia saccata \N \N \N \N \N 20644 E.enopla Euphorbia Euphorbia enopla \N \N \N \N \N 20645 P.korthalsii Piper Piper korthalsii \N \N \N \N \N 20646 \N subspecies Schlumbergera lutea subsp. bradei \N \N \N \N \N 20647 R.calophylla Roucheria Roucheria calophylla \N \N \N \N \N 20648 E.perralderianum Epimedium Epimedium perralderianum \N \N \N \N \N 20649 D.violaceum Dendrobium Dendrobium violaceum \N \N \N \N \N 20650 M.barnardiella Moraea Moraea barnardiella \N \N \N \N \N 20651 L.maldivica Lodoicea Lodoicea maldivica \N \N \N \N \N 20652 A.mundula Austrostipa Austrostipa mundula \N \N \N \N \N 20653 D.chryseum Dendrobium Dendrobium chryseum \N \N \N \N \N 20654 C.tucumanensis Cleome Cleome tucumanensis \N \N \N \N \N 20655 C.coriacea Comolia Comolia coriacea \N \N \N \N \N 20656 \N order Ceratophyllales \N \N \N \N \N 20657 S.longesetosum Saccharum Saccharum longesetosum \N \N \N \N \N 20658 P.comptus Piaranthus Piaranthus comptus \N \N \N \N \N 20659 L.llanganatensis Lachemilla Lachemilla llanganatensis \N \N \N \N \N 20660 A.oaxacana Adelia Adelia oaxacana \N \N \N \N \N 20661 S.aqueum Syzygium Syzygium aqueum \N \N \N \N \N 20662 \N subspecies Crocus kotschyanus subsp. cappadocicus \N \N \N \N \N 20663 R.pyrenaeus Ranunculus Ranunculus pyrenaeus \N \N \N \N \N 20664 C.calvus Carduncellus Carduncellus calvus \N \N \N \N \N 20665 P.P137 Physalis Physalis sp. P137 \N \N \N \N \N 20666 \N varietas Chrysanthemum indicum var. maruyamanum \N \N \N \N \N 20667 C.BWvE-2009 Croton Croton sp. BWvE-2009 \N \N \N \N \N 20668 R.germanicopolitana Reseda Reseda germanicopolitana \N \N \N \N \N 20669 K.scoparium Kunzea x Leptospermum Kunzea sinclairii x Leptospermum scoparium \N \N \N \N \N 20670 \N genus Cressa \N \N \N \N \N 20671 S.schomburgkii Swartzia Swartzia schomburgkii \N \N \N \N \N 20672 A.myriostigma Astrophytum Astrophytum myriostigma \N \N \N \N \N 20673 P.lehmannii Pescatoria Pescatoria lehmannii \N \N \N \N \N 20674 M.zeyheri Mimusops Mimusops zeyheri \N \N \N \N \N 20675 \N subspecies Combretum psidioides subsp. dinterii \N \N \N \N \N 20676 L.thunbergii Lespedeza Lespedeza thunbergii \N \N \N \N \N 20677 H.athoum Hypericum Hypericum athoum \N \N \N \N \N 20678 A.abbreviatus Ancistrocladus Ancistrocladus abbreviatus \N \N \N \N \N 20679 J.J004 Jaltomata Jaltomata sp. J004 \N \N \N \N \N 20680 S.samba Strychnos Strychnos samba \N \N \N \N \N 20681 A.corymbosa Azorella Azorella corymbosa \N \N \N \N \N 20682 S.uniflora Silene Silene uniflora \N \N \N \N \N 20683 S.parvulus Schizanthus Schizanthus parvulus \N \N \N \N \N 20684 C.godfreyi Carex Carex godfreyi \N \N \N \N \N 20685 \N genus Sida \N \N \N \N \N 20686 P.MG-2011 Polystachya Polystachya sp. MG-2011 \N \N \N \N \N 20687 A.nitida Austrostipa Austrostipa nitida \N \N \N \N \N 20688 P.flabellifolia Pimpinella Pimpinella flabellifolia \N \N \N \N \N 20689 P.morefieldii Potentilla Potentilla morefieldii \N \N \N \N \N 20690 R.pyrenaica Rorippa Rorippa pyrenaica \N \N \N \N \N 20691 \N genus Morella \N \N \N \N \N 20692 P.neglecta Polylepis Polylepis neglecta \N \N \N \N \N 20693 N.orientalis Nauclea Nauclea orientalis \N \N \N \N \N 20694 A.gryposepala Agrimonia Agrimonia gryposepala common agrimony \N \N \N \N 20695 M.trigonocarpus Moacroton Moacroton trigonocarpus \N \N \N \N \N 20696 \N genus Ignurbia \N \N \N \N \N 20697 M.paenetalauma Magnolia Magnolia paenetalauma \N \N \N \N \N 20698 M.arachnitiflora Maxillaria Maxillaria arachnitiflora \N \N \N \N \N 20699 N.thomsonianum Notholirion Notholirion thomsonianum \N \N \N \N \N 20700 A.sample environmental samples Taxonomy:1096667 Asplundia environmental sample \N \N \N \N \N 20701 A.945 Arytera Arytera sp. Munzinger 945 \N \N \N \N \N 20702 B.FS2287 Bulbophyllum Bulbophyllum sp. FS2287 \N \N \N \N \N 20703 A.spicata Aloe Aloe spicata \N \N \N \N \N 20704 \N genus Amphoricarpos \N \N \N \N \N 20705 P.speciosum Platymiscium Platymiscium speciosum \N \N \N \N \N 20706 I.MAG-2009 Inga Inga sp. MAG-2009 \N \N \N \N \N 20707 G.gracilis Gomesa Gomesa gracilis \N \N \N \N \N 20708 S.atrocinctus Scirpus Scirpus atrocinctus \N \N \N \N \N 20709 \N subspecies Pentameris barbata subsp. barbata \N \N \N \N \N 20710 \N varietas Tidestromia suffruticosa var. oblongifolia \N \N \N \N \N 20711 P.celebensis Phalaenopsis Phalaenopsis celebensis \N \N \N \N \N 20712 N.major Noaea Noaea major \N \N \N \N \N 20713 \N varietas Penstemon procerus var. tolmiei \N \N \N \N \N 20714 \N subtribe Laeliinae \N \N \N \N \N 20715 M.abyssinica Myosotis Myosotis abyssinica \N \N \N \N \N 20716 \N genus Myodocarpus \N \N \N \N \N 20717 N.C1 Neonauclea Neonauclea sp. C1 \N \N \N \N \N 20718 K.curticeps Kobresia Kobresia curticeps \N \N \N \N \N 20719 A.carnea Aesculus Aesculus x carnea red horse-chestnut \N \N \N \N 20720 C.pauciflora Caralluma Caralluma pauciflora \N \N \N \N \N 20721 \N genus Scleropogon \N \N \N \N \N 20722 P.338 Phyla Phyla sp. Sosa 338 \N \N \N \N \N 20723 \N genus Corynephorus \N \N \N \N \N 20724 L.verschaffeltii Latania Latania verschaffeltii \N \N \N \N \N 20725 M.latifolia Microcharis Microcharis latifolia \N \N \N \N \N 20726 S.tricolor Spyridium Spyridium tricolor \N \N \N \N \N 20727 M.chinensis Machilus Machilus chinensis \N \N \N \N \N 20728 R.webbianum Rheum Rheum webbianum \N \N \N \N \N 20729 P.J2-R2 Pagamea Pagamea sp. Fine J2-R2 \N \N \N \N \N 20730 L.cubeba Litsea Litsea cubeba may chang,mountain-pepper,sambal \N \N \N \N 20731 E.caesia Euphorbia Euphorbia caesia \N \N \N \N \N 20732 S.japonica Saussurea Saussurea japonica \N \N \N \N \N 20733 C.Schilling-95-1 Chrysogonum Chrysogonum sp. Schilling-95-1 \N \N \N \N \N 20734 M.kuhniorum Masdevallia Masdevallia kuhniorum \N \N \N \N \N 20735 S.hirtellus Sauropus Sauropus hirtellus \N \N \N \N \N 20736 I.macrophylla Indigofera Indigofera macrophylla \N \N \N \N \N 20737 E.juruensis Eschweilera Eschweilera juruensis \N \N \N \N \N 20738 P.monacantha Pfeiffera Pfeiffera monacantha \N \N \N \N \N 20739 T.geranioides Tarasa Tarasa geranioides \N \N \N \N \N 20740 G.acuminata Gaertnera Gaertnera acuminata \N \N \N \N \N 20741 M.fenestrata Moraea Moraea fenestrata \N \N \N \N \N 20742 S.clausseni Stevia Stevia clausseni \N \N \N \N \N 20743 C.pluricallata Chiloglottis Chiloglottis aff. pluricallata \N \N \N \N \N 20744 C.williamsonii Clarkia Clarkia williamsonii \N \N \N \N \N 20745 \N genus Pileanthus \N \N \N \N \N 20746 A.bilamellata Alpinia Alpinia bilamellata \N \N \N \N \N 20747 S.floridana Stachys Stachys floridana \N \N \N \N \N 20748 G.borbonicum Geniostoma Geniostoma borbonicum \N \N \N \N \N 20749 K.robustus Kostermanthus Kostermanthus robustus \N \N \N \N \N 20750 H.regnellii Habenaria Habenaria regnellii \N \N \N \N \N 20751 \N subtribe Goodyerinae \N \N \N \N \N 20752 L.japonicus Lotus Lotus japonicus \N \N \N \N \N 20753 C.wardii Camellia Camellia wardii \N \N \N \N \N 20754 A.dobsonii Aciphylla Aciphylla dobsonii \N \N \N \N \N 20755 L.glandulosus Lathyrus Lathyrus glandulosus redwood pea \N \N \N \N 20756 T.reticulatus Tragopogon Tragopogon reticulatus \N \N \N \N \N 20757 \N genus Villasenoria \N \N \N \N \N 20758 L.triticoides Leymus Leymus cinereus x Leymus triticoides \N \N \N \N \N 20759 D.petiolata Danthoniopsis Danthoniopsis petiolata \N \N \N \N \N 20760 M.tricuspidata Maclura Maclura tricuspidata \N \N \N \N \N 20761 B.luminifera Betula Betula luminifera liang ye hua \N \N \N \N 20762 G.inodorum Gymnema Gymnema inodorum \N \N \N \N \N 20763 S.pole-evansii Streptocarpus Streptocarpus pole-evansii \N \N \N \N \N 20764 B.pinnatifida Berkheya Berkheya pinnatifida \N \N \N \N \N 20765 A.aksuensis Astragalus Astragalus aksuensis \N \N \N \N \N 20766 \N subspecies Pearsonia grandifolia subsp. latibracteolata \N \N \N \N \N 20767 W.angustifolia Wyethia Wyethia angustifolia \N \N \N \N \N 20768 T.caerulea Trigonella Trigonella caerulea sweet trefoil \N \N \N \N 20769 A.papyrocarpa Acacia Acacia papyrocarpa western myall \N \N \N \N 20770 L.hispidula Lachemilla Lachemilla hispidula \N \N \N \N \N 20771 A.parkeri Anemopaegma Anemopaegma parkeri \N \N \N \N \N 20772 D.equitans Dendrobium Dendrobium equitans \N \N \N \N \N 20773 A.subcordata Aralia Aralia subcordata \N \N \N \N \N 20774 \N tribe Argostemmateae \N \N \N \N \N 20775 L.punctata Lysimachia Lysimachia punctata \N \N \N \N \N 20776 A.laguroides Alternanthera Alternanthera laguroides \N \N \N \N \N 20777 S.californica Suaeda Suaeda californica \N \N \N \N \N 20778 E.mapimiensis Echinocereus Echinocereus mapimiensis \N \N \N \N \N 20779 G.astragalina Glycyrrhiza Glycyrrhiza astragalina \N \N \N \N \N 20780 I.auricoma Indigofera Indigofera auricoma \N \N \N \N \N 20781 \N genus Distichostemon \N \N \N \N \N 20782 C.1100 Canthium Canthium sp. 6 de Block 1100 \N \N \N \N \N 20783 V.yunnanensis Viola Viola yunnanensis \N \N \N \N \N 20784 C.stellaris Cyclocarpa Cyclocarpa stellaris \N \N \N \N \N 20785 C.utahense Cirsium Cirsium utahense \N \N \N \N \N 20786 \N genus Lucinaea \N \N \N \N \N 20787 A.borealis Artemisia Artemisia borealis \N \N \N \N \N 20788 U.leersioides Urochloa Urochloa leersioides \N \N \N \N \N 20789 T.microphylla Ternstroemia Ternstroemia microphylla \N \N \N \N \N 20790 R.caryophyllacea Rosa Rosa caryophyllacea \N \N \N \N \N 20791 L.virgata Leucas Leucas virgata \N \N \N \N \N 20792 L.turkestanica Lepidolopsis Lepidolopsis turkestanica \N \N \N \N \N 20793 O.hebecarpa Ononis Ononis hebecarpa \N \N \N \N \N 20794 C.odorata Cedrela Cedrela odorata \N \N \N \N \N 20795 H.dentata Hibbertia Hibbertia dentata \N \N \N \N \N 20796 G.excelsa Gasteria Gasteria excelsa \N \N \N \N \N 20797 \N genus Amphianthus \N \N \N \N \N 20798 A.scapiformis Arctotis Arctotis scapiformis \N \N \N \N \N 20799 B.readeri Brachyscome Brachyscome readeri \N \N \N \N \N 20800 C.1760 Clusia Clusia flava Jacq. 1760 \N \N \N \N \N 20801 \N genus Daphnopsis \N \N \N \N \N 20802 Z.lichtensteinianum Zygophyllum Zygophyllum lichtensteinianum \N \N \N \N \N 20803 P.maconochiei Ptilotus Ptilotus maconochiei \N \N \N \N \N 20804 N.macvaughii Neogoezia Neogoezia macvaughii \N \N \N \N \N 20805 B.koreana Berberis Berberis koreana \N \N \N \N \N 20806 G.calycosa Gesneria Gesneria calycosa \N \N \N \N \N 20807 V.ensifolia Viguiera Viguiera ensifolia \N \N \N \N \N 20808 D.shimadai Disporum Disporum shimadai \N \N \N \N \N 20809 \N no rank PACMAD clade \N \N \N \N \N 20810 T.stellata Trigonella Trigonella stellata \N \N \N \N \N 20811 L.spartum Lygeum Lygeum spartum \N \N \N \N \N 20812 T.bauerifolia Tetratheca Tetratheca bauerifolia \N \N \N \N \N 20813 A.affinis Arrabidaea Arrabidaea affinis \N \N \N \N \N 20814 \N genus Glottiphyllum \N \N \N \N \N 20815 C.orbicularis Commiphora Commiphora orbicularis \N \N \N \N \N 20816 G.narcissoides Gentianella Gentianella narcissoides \N \N \N \N \N 20817 S.leiosperma Strophostyles Strophostyles leiosperma \N \N \N \N \N 20818 \N subspecies Cyclamen repandum subsp. repandum \N \N \N \N \N 20819 T.kok-saghyz Taraxacum Taraxacum kok-saghyz \N \N \N \N \N 20820 Z.maxillare Zygopetalum Zygopetalum maxillare \N \N \N \N \N 20821 \N genus Costera \N \N \N \N \N 20822 W.madagascariensis Weinmannia Weinmannia madagascariensis \N \N \N \N \N 20823 P.blattarum Piper Piper blattarum \N \N \N \N \N 20824 V.caillei Vahadenia Vahadenia caillei \N \N \N \N \N 20825 B.dongxingensis Briggsia Briggsia dongxingensis \N \N \N \N \N 20826 G.9549 Guatteria Guatteria cf. amplifolia Maas et al. 9549 \N \N \N \N \N 20827 C.hassleriana Cleome Cleome hassleriana spider flower \N \N \N \N 20828 A.semenovi Allium Allium semenovi \N \N \N \N \N 20829 \N subspecies Eleusine coracana subsp. africana African finger millet,osgras \N \N \N \N 20830 A.brasiliensis Ascolepis Ascolepis brasiliensis \N \N \N \N \N 20831 E.elegans Eastwoodia Eastwoodia elegans yellow aster \N \N \N \N 20832 A.bottendorfensis Armeria Armeria bottendorfensis \N \N \N \N \N 20833 P.tuberosus Pachyrhizus Pachyrhizus tuberosus jicama,jiquima,yam-bean \N \N \N \N 20834 C.hachijoensis Carex Carex hachijoensis \N \N \N \N \N 20835 B.rubellum Brachystelma Brachystelma rubellum \N \N \N \N \N 20836 R.sphaeroblastum Rhododendron Rhododendron sphaeroblastum \N \N \N \N \N 20837 \N subspecies Sedum jurgensenii subsp. attenuatum \N \N \N \N \N 20838 T.morenoi Trichocentrum Trichocentrum morenoi \N \N \N \N \N 20839 \N genus Panderia \N \N \N \N \N 20840 P.wrightii Potamogeton Potamogeton wrightii \N \N \N \N \N 20841 M.pachycarpa Millettia Millettia pachycarpa \N \N \N \N \N 20842 E.compacta Eurybia Eurybia compacta slender aster \N \N \N \N 20843 \N varietas Tripsacum dactyloides var. meridionale \N \N \N \N \N 20844 L.racemosa Laguncularia Laguncularia racemosa \N \N \N \N \N 20845 A.animarum Apochloa Apochloa animarum \N \N \N \N \N 20846 A.grandifolius Amaracarpus Amaracarpus grandifolius \N \N \N \N \N 20847 \N genus Idiopappus \N \N \N \N \N 20848 B.capitata Butia Butia capitata \N \N \N \N \N 20849 E.confusum Erythroxylum Erythroxylum confusum \N \N \N \N \N 20850 \N genus Tristellateia \N \N \N \N \N 20851 \N family Emblingiaceae \N \N \N \N \N 20852 S.palustris Scheuchzeria Scheuchzeria palustris \N \N \N \N \N 20853 R.truncata Randia Randia truncata \N \N \N \N \N 20854 P.reflexum Pharnaceum Pharnaceum reflexum \N \N \N \N \N 20855 B.muscicola Bulbophyllum Bulbophyllum muscicola \N \N \N \N \N 20856 V.calycinum Vaccinium Vaccinium calycinum \N \N \N \N \N 20857 S.umbratica Salvia Salvia umbratica \N \N \N \N \N 20858 M.littorea Malcolmia Malcolmia littorea \N \N \N \N \N 20859 R.samoensis Rhizophora Rhizophora samoensis \N \N \N \N \N 20860 Z.pisidica Zingeria Zingeria pisidica \N \N \N \N \N 20861 I.pedicellaris Isidorea Isidorea pedicellaris \N \N \N \N \N 20862 M.verrucifera Mansoa Mansoa verrucifera \N \N \N \N \N 20863 P.surinamensis Pradosia Pradosia surinamensis \N \N \N \N \N 20864 K.typhoides Kniphofia Kniphofia typhoides \N \N \N \N \N 20865 \N subspecies Grevillea acanthifolia subsp. acanthifolia \N \N \N \N \N 20866 S.ferruginea Sabicea Sabicea ferruginea \N \N \N \N \N 20867 P.purpureodisca Philoglossa Philoglossa purpureodisca \N \N \N \N \N 20868 L.virginalis Lundia Lundia virginalis \N \N \N \N \N 20869 H.obtusifolium Heracleum Heracleum obtusifolium \N \N \N \N \N 20870 P.tonkinense Phrynium Phrynium tonkinense \N \N \N \N \N 20871 \N genus Pseudodanthonia \N \N \N \N \N 20872 S.armata Senna Senna armata \N \N \N \N \N 20873 A.jaliscana Asclepias Asclepias jaliscana \N \N \N \N \N 20874 M.gariepinus Melianthus Melianthus gariepinus \N \N \N \N \N 20875 M.floribunda Maytenus Maytenus floribunda \N \N \N \N \N 20876 \N genus Amblyolepis \N \N \N \N \N 20877 A.rupestre Atocion Atocion rupestre \N \N \N \N \N 20878 C.ernesti-augustii Chamaedorea Chamaedorea ernesti-augustii \N \N \N \N \N 20879 D.majorensis Dysosma Dysosma majorensis \N \N \N \N \N 20880 H.bicornis Hirtella Hirtella bicornis \N \N \N \N \N 20881 P.cernuum Pentanema Pentanema cernuum \N \N \N \N \N 20882 S.symingtonii Shorea Shorea symingtonii \N \N \N \N \N 20883 C.idahoa Carex Carex idahoa \N \N \N \N \N 20884 P.papposus Pterocephalus Pterocephalus papposus \N \N \N \N \N 20885 H.MAB-2008 Heliophila Heliophila sp. MAB-2008 \N \N \N \N \N 20886 O.constrictum Oncidium Oncidium constrictum \N \N \N \N \N 20887 \N genus Ludovia \N \N \N \N \N 20888 D.glabella Draba Draba glabella smooth draba \N \N \N \N 20889 F.leonilae Fouquieria Fouquieria leonilae \N \N \N \N \N 20890 A.blumei Asarum Asarum blumei \N \N \N \N \N 20891 R.tenerrima Rhynchospora Rhynchospora tenerrima \N \N \N \N \N 20892 D.carduchorum Delphinium Delphinium carduchorum \N \N \N \N \N 20893 G.scortechinii Grevillea Grevillea scortechinii \N \N \N \N \N 20894 S.dabieshanensis Salvia Salvia dabieshanensis \N \N \N \N \N 20895 C.montanus Cymopterus Cymopterus montanus \N \N \N \N \N 20896 D.brownii Dorstenia Dorstenia brownii \N \N \N \N \N 20897 A.caulescens Aridarum Aridarum caulescens \N \N \N \N \N 20898 I.bifrons Inula Inula bifrons \N \N \N \N \N 20899 C.viscosissima Cuphea Cuphea viscosissima \N \N \N \N \N 20900 P.fulva Polyscias Polyscias fulva \N \N \N \N \N 20901 \N subspecies Conostylis dielsii subsp. teres \N \N \N \N \N 20902 H.echinatum Henleophytum Henleophytum echinatum \N \N \N \N \N 20903 \N subspecies Anchonium elichrysifolium subsp. elichrysifolium \N \N \N \N \N 20904 V.schultzii Viguiera Viguiera schultzii \N \N \N \N \N 20905 M.flagellaris Mecardonia Mecardonia flagellaris \N \N \N \N \N 20906 \N genus Castanospermum \N \N \N \N \N 20907 \N genus Tetrastylidium \N \N \N \N \N 20908 V.nagasawai Viola Viola nagasawai \N \N \N \N \N 20909 P.detonsum Pharnaceum Pharnaceum detonsum \N \N \N \N \N 20910 T.vanheurckii Tabernaemontana Tabernaemontana vanheurckii \N \N \N \N \N 20911 S.leucostoma Satyria Satyria leucostoma \N \N \N \N \N 20912 L.grayi Lupinus Lupinus grayi \N \N \N \N \N 20913 \N varietas Lilium philadelphicum var. andinum \N \N \N \N \N 20914 A.glutinosum Allophyllum Allophyllum glutinosum \N \N \N \N \N 20915 P.92-39 Pentas Pentas sp. Olmstead 92-39 \N \N \N \N \N 20916 \N varietas Malus baccata var. baccata \N \N \N \N \N 20917 P.micromega Pterostylis Pterostylis micromega \N \N \N \N \N 20918 C.karakuschensis Campanula Campanula karakuschensis \N \N \N \N \N 20919 B.hispidula Balsamorhiza Balsamorhiza hispidula \N \N \N \N \N 20920 I.fernaldii Iris Iris fernaldii \N \N \N \N \N 20921 C.venulosum Calophyllum Calophyllum venulosum \N \N \N \N \N 20922 G.O-146 Govenia Govenia sp. Chase O-146 \N \N \N \N \N 20923 \N genus Tylophora \N \N \N \N \N 20924 M.3122 Macroditassa Macroditassa sp. Liede and Conrad 3122 \N \N \N \N \N 20925 \N genus Cassinopsis \N \N \N \N \N 20926 A.scheffleri Acridocarpus Acridocarpus scheffleri \N \N \N \N \N 20927 H.limensis Haageocereus Haageocereus limensis \N \N \N \N \N 20928 S.macrophylla Swietenia Swietenia macrophylla \N \N \N \N \N 20929 B.aralocaspica Borszczowia Borszczowia aralocaspica \N \N \N \N \N 20930 D.benearnensis Dianthus Dianthus benearnensis \N \N \N \N \N 20931 P.jaliscanus Phaseolus Phaseolus jaliscanus \N \N \N \N \N 20932 \N tribe Cereeae \N \N \N \N \N 20933 G.mendocina Glandularia Glandularia mendocina \N \N \N \N \N 20934 C.greenei Calochortus Calochortus greenei \N \N \N \N \N 20935 C.nuttallii Chamaerhodos Chamaerhodos nuttallii \N \N \N \N \N 20936 W.axillaris Wahlenbergia Wahlenbergia axillaris \N \N \N \N \N 20937 P.crinita Phlomis Phlomis crinita \N \N \N \N \N 20938 U.sphenocarpa Uvaria Uvaria sphenocarpa \N \N \N \N \N 20939 A.pubigera Armeria Armeria pubigera \N \N \N \N \N 20940 S.fallax Strychnos Strychnos fallax \N \N \N \N \N 20941 \N genus Discolobium \N \N \N \N \N 20942 A.nummularia Arctostaphylos Arctostaphylos nummularia \N \N \N \N \N 20943 Q.'protoroburoides' Quercus Quercus sp. 'protoroburoides' \N \N \N \N \N 20944 A.canthioides Aidia Aidia canthioides \N \N \N \N \N 20945 L.bracteata Lerchea Lerchea bracteata \N \N \N \N \N 20946 M.bolivarensis Maxillaria Maxillaria bolivarensis \N \N \N \N \N 20947 \N genus Paradrypetes \N \N \N \N \N 20948 T.stenophylla Tonduzia Tonduzia stenophylla \N \N \N \N \N 20949 T.nw9 unclassified Taraxacum Taraxacum (sect. Hamata) sp. nw9 \N \N \N \N \N 20950 S.sareptana Stipa Stipa sareptana \N \N \N \N \N 20951 \N varietas Cynara cardunculus var. altilis cultivated cardoon \N \N \N \N 20952 L.garganicum Lamium Lamium garganicum \N \N \N \N \N 20953 H.serrata Hydrangea Hydrangea serrata tea of heaven \N \N \N \N 20954 C.globosa Ceratandra Ceratandra globosa \N \N \N \N \N 20955 C.applegatei Castilleja Castilleja applegatei \N \N \N \N \N 20956 D.welwitschii Dalbergiella Dalbergiella welwitschii \N \N \N \N \N 20957 S.pascoense Solanum Solanum pascoense \N \N \N \N \N 20958 C.concolor Ceratolobus Ceratolobus concolor \N \N \N \N \N 20959 F.profunda Fraxinus Fraxinus profunda pumpkin ash \N \N \N \N 20960 \N subspecies Secale cereale subsp. tetraploidum \N \N \N \N \N 20961 C.canoxyi Cucumis Cucumis canoxyi \N \N \N \N \N 20962 E.johnsonii Elingamita Elingamita johnsonii \N \N \N \N \N 20963 C.caespitosa Cortiella Cortiella caespitosa \N \N \N \N \N 20964 R.frutex Rhammatophyllum Rhammatophyllum frutex \N \N \N \N \N 20965 K.atropilosa Kegeliella Kegeliella atropilosa \N \N \N \N \N 20966 A.strobilacea Amanoa Amanoa strobilacea \N \N \N \N \N 20967 L.album Linum Linum album \N \N \N \N \N 20968 \N genus Nesampelos \N \N \N \N \N 103845 \N genus Stegostyla \N \N \N \N \N 20969 G.canadensis Glyceria Glyceria canadensis \N \N \N \N \N 20970 C.digna Codonanthe Codonanthe digna \N \N \N \N \N 20971 O.indecora Oenothera Oenothera indecora \N \N \N \N \N 20972 T.1043 Thesium Thesium cf. impeditum Verboom 1043 \N \N \N \N \N 20973 M.cayennensis Micropholis Micropholis cayennensis \N \N \N \N \N 20974 C.sanguinea Cornus Cornus sanguinea \N \N \N \N \N 20975 A.cancellatus Astragalus Astragalus cancellatus \N \N \N \N \N 20976 \N genus Petalacte \N \N \N \N \N 20977 C.subniveum Cirsium Cirsium subniveum \N \N \N \N \N 20978 S.speciosa Sanchezia Sanchezia speciosa \N \N \N \N \N 20979 F.macrocarpa Forchhammeria Forchhammeria macrocarpa \N \N \N \N \N 20980 H.almeriense Helianthemum Helianthemum almeriense \N \N \N \N \N 20981 S.revoluta Stevia Stevia revoluta \N \N \N \N \N 20982 K.elatine Kickxia Kickxia elatine \N \N \N \N \N 20983 O.pluridomatiata Ocotea Ocotea pluridomatiata \N \N \N \N \N 20984 L.clypeolum Liparis Liparis clypeolum \N \N \N \N \N 20985 \N genus Xylorhiza \N \N \N \N \N 20986 T.amplexicaulis Tamarix Tamarix amplexicaulis \N \N \N \N \N 20987 S.mesocopis Scaphyglottis Scaphyglottis mesocopis \N \N \N \N \N 20988 P.mollissima Pseudoclausia Pseudoclausia mollissima \N \N \N \N \N 20989 G.gomez-pompae Gaussia Gaussia gomez-pompae \N \N \N \N \N 20990 P.nephrodes Passiflora Passiflora nephrodes \N \N \N \N \N 20991 P.ficoidea Poecilolepis Poecilolepis ficoidea \N \N \N \N \N 20992 O.mexicana Orthosphenia Orthosphenia mexicana \N \N \N \N \N 20993 T.aspera Trattinnickia Trattinnickia aspera \N \N \N \N \N 20994 \N family Ximeniaceae \N \N \N \N \N 20995 N.pusilla Nama Nama pusilla \N \N \N \N \N 20996 \N tribe Samydeae \N \N \N \N \N 20997 P.nobilis Pulicaria Pulicaria nobilis \N \N \N \N \N 20998 C.virletianus Croton Croton virletianus \N \N \N \N \N 20999 T.tortilis Tillandsia Tillandsia tortilis \N \N \N \N \N 21000 \N genus Sinopodophyllum \N \N \N \N \N 21001 C.rubicundum Camptosema Camptosema rubicundum \N \N \N \N \N 21002 \N genus Hopia \N \N \N \N \N 21003 L.foliosa Leobordea Leobordea foliosa \N \N \N \N \N 21004 C.mooreana Cattleya Cattleya mooreana \N \N \N \N \N 21005 T.lilio-hyacinthus Tractema Tractema lilio-hyacinthus \N \N \N \N \N 21006 A.multiflorum Adenium Adenium multiflorum \N \N \N \N \N 21007 \N genus Calyptranthes \N \N \N \N \N 21008 D.kansuense Delphinium Delphinium kansuense \N \N \N \N \N 21009 O.japonica Orixa Orixa japonica \N \N \N \N \N 21010 L.tisserantii Letestuella Letestuella tisserantii \N \N \N \N \N 21011 H.pallida Holographis Holographis pallida \N \N \N \N \N 21012 P.minuscula Pseudorlaya Pseudorlaya minuscula \N \N \N \N \N 21013 A.hookeriana Alpinia Alpinia hookeriana \N \N \N \N \N 21014 \N genus Linconia \N \N \N \N \N 21015 \N genus Lecocarpus \N \N \N \N \N 21016 P.auricula Primula Primula auricula \N \N \N \N \N 21017 S.involucrata Strobilanthes Strobilanthes involucrata \N \N \N \N \N 21018 E.atacamensis Echinopsis Echinopsis atacamensis \N \N \N \N \N 21019 H.onegense Hieracium Hieracium lactucella x Hieracium onegense \N \N \N \N \N 21020 C.sichuanensis Chimonobambusa Chimonobambusa sichuanensis \N \N \N \N \N 21021 M.corymbifera Momordica Momordica corymbifera \N \N \N \N \N 21022 P.gyrorhyncha Pedicularis Pedicularis gyrorhyncha \N \N \N \N \N 21023 P.tenuissima Polystachya Polystachya tenuissima \N \N \N \N \N 21024 O.onites Origanum Origanum onites pot marjoram \N \N \N \N 21025 U.pittieri Unonopsis Unonopsis pittieri \N \N \N \N \N 21026 K.marginata Kalakia Kalakia marginata \N \N \N \N \N 21027 C.aculeatus Cuphocarpus Cuphocarpus aculeatus \N \N \N \N \N 21028 P.roseiliflora Plagiostachys Plagiostachys roseiliflora \N \N \N \N \N 21029 M.sodiroana Macrocarpaea Macrocarpaea sodiroana \N \N \N \N \N 21030 S.borneensis Stenomeris Stenomeris borneensis \N \N \N \N \N 21031 \N subspecies Hydrangea aspera subsp. aspera \N \N \N \N \N 21032 C.glaberrima Climacoptera Climacoptera glaberrima \N \N \N \N \N 21033 L.tulipifera Liriodendron Liriodendron chinense x Liriodendron tulipifera \N \N \N \N \N 21034 E.annae Euryops Euryops annae \N \N \N \N \N 21035 A.densiflorus Aeollanthus Aeollanthus densiflorus \N \N \N \N \N 21036 V.condyloides Vittadinia Vittadinia condyloides \N \N \N \N \N 21037 A.chartaceum Askidiosperma Askidiosperma chartaceum \N \N \N \N \N 21038 J.americana Justicia Justicia americana \N \N \N \N \N 21039 O.LuoYibo721 Oreorchis Oreorchis sp. LuoYibo721 \N \N \N \N \N 21040 S.indicus Streblus Streblus indicus \N \N \N \N \N 21041 O.multipetalus Ochrothallus Ochrothallus multipetalus \N \N \N \N \N 21042 \N genus Entoplocamia \N \N \N \N \N 21043 E.turneriana Echinochloa Echinochloa turneriana channel millet \N \N \N \N 21044 V.hispida Verbena Verbena hispida \N \N \N \N \N 21045 P.glandulosa Passiflora Passiflora glandulosa \N \N \N \N \N 21046 P.esperanzae Phaseolus Phaseolus esperanzae \N \N \N \N \N 21047 G.lutea Gastrorchis Gastrorchis lutea \N \N \N \N \N 21048 I.calycinum Iochroma Iochroma calycinum \N \N \N \N \N 21049 R.pamiricus Rumex Rumex pamiricus \N \N \N \N \N 21050 \N genus Chamaesaracha \N \N \N \N \N 21051 P.turfosa Pterostylis Pterostylis turfosa \N \N \N \N \N 21052 S.brachypoda Salix Salix brachypoda \N \N \N \N \N 21053 S.stigophlebius Senecio Senecio stigophlebius \N \N \N \N \N 21054 M.racemosum Muscari Muscari racemosum \N \N \N \N \N 21055 \N varietas Chrysophyllum lanceolatum var. stellatocarpon \N \N \N \N \N 21056 L.leonii Linum Linum leonii \N \N \N \N \N 21057 C.cineraria Centaurea Centaurea cineraria \N \N \N \N \N 21058 A.2541 Alangium Alangium sp. Chase 2541 \N \N \N \N \N 21059 H.sicanorum Helianthemum Helianthemum sicanorum \N \N \N \N \N 21060 \N genus Kyphocarpa \N \N \N \N \N 21061 H.linearifolius Hesperidanthus Hesperidanthus linearifolius \N \N \N \N \N 21062 H.colwillii Haptotrichion Haptotrichion colwillii \N \N \N \N \N 21063 \N subspecies Ecballium elaterium subsp. elaterium \N \N \N \N \N 21064 S.koetjape Sandoricum Sandoricum koetjape \N \N \N \N \N 21065 P.glabra Protea Protea glabra \N \N \N \N \N 21066 H.integrifolium Hirpicium Hirpicium integrifolium \N \N \N \N \N 21067 K.rothrockii Keckiella Keckiella rothrockii scarlet keckiella \N \N \N \N 21068 C.alternifolia Clidemia Clidemia alternifolia \N \N \N \N \N 21069 E.pristis Eryngium Eryngium pristis \N \N \N \N \N 21070 H.JP3 Hebestigma Hebestigma sp. JP3 \N \N \N \N \N 21071 A.pachytrichus Aeschynanthus Aeschynanthus pachytrichus \N \N \N \N \N 21072 M.collina Masdevallia Masdevallia collina \N \N \N \N \N 21073 K.pomifera Kunzea Kunzea pomifera \N \N \N \N \N 21074 Q.papinae Quivisianthe Quivisianthe papinae \N \N \N \N \N 21075 H.coccinea Hesperantha Hesperantha coccinea \N \N \N \N \N 21076 S.veitchii Spiraea Spiraea veitchii \N \N \N \N \N 21077 P.lignescens Phyllobolus Phyllobolus lignescens \N \N \N \N \N 21078 P.solidus Pleioblastus Pleioblastus solidus \N \N \N \N \N 21079 H.taxkargannica Hedinia Hedinia taxkargannica \N \N \N \N \N 21080 H.tozerensis Hibiscus Hibiscus tozerensis \N \N \N \N \N 21081 A.bipinnata Aralia Aralia bipinnata \N \N \N \N \N 21082 K.apterocarpum Kuhlmanniodendron Kuhlmanniodendron apterocarpum \N \N \N \N \N 21083 S.genistoides Salsola Salsola genistoides \N \N \N \N \N 21084 N.capense Notobubon Notobubon capense \N \N \N \N \N 21085 A.evenia Aeschynomene Aeschynomene evenia \N \N \N \N \N 21086 C.garberi Carex Carex garberi \N \N \N \N \N 21087 M.cephalotes Metalasia Metalasia cephalotes \N \N \N \N \N 21088 C.neoaurantium Citrus Citrus neoaurantium \N \N \N \N \N 21089 \N varietas Quercus serrata var. brevipetiolata \N \N \N \N \N 21090 \N varietas Lupinus microcarpus var. microcarpus \N \N \N \N \N 21091 \N subspecies Sisyrinchium commutatum subsp. capillare \N \N \N \N \N 21092 N.edwardsii Nicolletia Nicolletia edwardsii \N \N \N \N \N 21093 L.acanthifolia Loasa Loasa acanthifolia \N \N \N \N \N 21094 T.cilicica Thymelaea Thymelaea cilicica \N \N \N \N \N 21095 A.colei Acacia Acacia colei \N \N \N \N \N 21096 C.villosa Calicotome Calicotome villosa \N \N \N \N \N 21097 G.variegatus Gladiolus Gladiolus variegatus \N \N \N \N \N 21098 S.przewalskii Swertia Swertia przewalskii \N \N \N \N \N 21099 \N genus Pouchetia \N \N \N \N \N 21100 A.congestiflora Agrostis Agrostis congestiflora \N \N \N \N \N 21101 F.ecklonii Fuirena Fuirena ecklonii \N \N \N \N \N 21102 \N subspecies Paeonia rockii subsp. rockii \N \N \N \N \N 21103 L.laurina Lijndenia Lijndenia laurina \N \N \N \N \N 21104 P.centauroides Plagiobasis Plagiobasis centauroides \N \N \N \N \N 21105 A.madagascariensis Antirhea Antirhea madagascariensis \N \N \N \N \N 21106 K.longipedunculata Kadsura Kadsura longipedunculata \N \N \N \N \N 21107 D.sinoparviflora Dioscorea Dioscorea sinoparviflora \N \N \N \N \N 21108 J.leucophylla Jacobaea Jacobaea leucophylla \N \N \N \N \N 21109 V.interrupta Vaughania Vaughania interrupta \N \N \N \N \N 21110 P.turrita Pseudoturritis Pseudoturritis turrita \N \N \N \N \N 21111 D.sulcata Duvalia Duvalia sulcata \N \N \N \N \N 21112 P.caffensis Pentas Pentas caffensis \N \N \N \N \N 21113 C.castanocarpus Chaetocarpus Chaetocarpus castanocarpus \N \N \N \N \N 21114 \N subtribe Linospadicinae \N \N \N \N \N 21115 S.petrophilum Solanum Solanum petrophilum \N \N \N \N \N 21116 \N genus Hymenachne \N \N \N \N \N 21117 P.bhutanica Pycnoplinthopsis Pycnoplinthopsis bhutanica \N \N \N \N \N 21118 \N genus Cevallia \N \N \N \N \N 21119 \N genus Kusibabella \N \N \N \N \N 21120 S.redivivus Styrax Styrax redivivus \N \N \N \N \N 21121 T.purpusii Thelypodiopsis Thelypodiopsis purpusii \N \N \N \N \N 21122 E.pycnanthum Echium Echium pycnanthum \N \N \N \N \N 21123 \N subspecies Chrysanthemoides monilifera ssp. NPB-2009 \N \N \N \N \N 21124 G.spinulosa Gurania Gurania spinulosa \N \N \N \N \N 21125 \N genus Hemiscolopia \N \N \N \N \N 21126 H.hircinum Himantoglossum Himantoglossum hircinum \N \N \N \N \N 21127 C.litoralis Coccothrinax Coccothrinax litoralis \N \N \N \N \N 21128 E.obtusifolia Epacris Epacris obtusifolia \N \N \N \N \N 21129 A.roseisquamosum Amomum Amomum roseisquamosum \N \N \N \N \N 21130 \N no rank Physospermopsis clade \N \N \N \N \N 21131 M.capiomontiana Matthiola Matthiola capiomontiana \N \N \N \N \N 21132 T.duratii Tillandsia Tillandsia duratii \N \N \N \N \N 21133 P.duclouxii Pterygiella Pterygiella duclouxii \N \N \N \N \N 21134 L.schismatica Lacandonia Lacandonia schismatica \N \N \N \N \N 21135 S.incisa Stephanandra Stephanandra incisa \N \N \N \N \N 21136 R.sertata Rosa Rosa sertata \N \N \N \N \N 21137 R.sargentii Ranorchis Ranorchis sargentii \N \N \N \N \N 21138 P.laxa Puya Puya laxa \N \N \N \N \N 21139 A.wiegandii Amelanchier Amelanchier wiegandii \N \N \N \N \N 21140 C.borivilianum Chlorophytum Chlorophytum borivilianum \N \N \N \N \N 21141 T.guianensis Tolumnia Tolumnia guianensis \N \N \N \N \N 21142 H.macrocarpa Hemsleya Hemsleya macrocarpa \N \N \N \N \N 21143 T.guthrieae Thamnochortus Thamnochortus guthrieae \N \N \N \N \N 21144 E.pentlandii Echinopsis Echinopsis pentlandii \N \N \N \N \N 21145 C.pinarocephala Cousinia Cousinia pinarocephala \N \N \N \N \N 21146 T.paucifolia Tillandsia Tillandsia paucifolia \N \N \N \N \N 21147 S.subcoriaceus Sinosenecio Sinosenecio subcoriaceus \N \N \N \N \N 21148 H.acutifolia Hovea Hovea acutifolia \N \N \N \N \N 21149 V.variegata Viola Viola variegata \N \N \N \N \N 21150 C.szechuanensis Camellia Camellia szechuanensis \N \N \N \N \N 21151 V.umbilicata Valerianella Valerianella umbilicata \N \N \N \N \N 21152 S.humifusa Scaevola Scaevola humifusa \N \N \N \N \N 21153 V.macrophylla Vismia Vismia macrophylla \N \N \N \N \N 21154 M.ussuriense Myriophyllum Myriophyllum ussuriense \N \N \N \N \N 21155 E.campestre Epidendrum Epidendrum campestre \N \N \N \N \N 21156 C.amoena Clarkia Clarkia amoena farewell-to-spring \N \N \N \N 21157 E.ericoides Euryops Euryops ericoides \N \N \N \N \N 21158 C.Moloundou Coffea Coffea sp. Moloundou \N \N \N \N \N 21159 E.subrepens Epistephium Epistephium subrepens \N \N \N \N \N 21160 S.erysimoides Senecio Senecio erysimoides \N \N \N \N \N 21161 S.warmingii Sinningia Sinningia warmingii \N \N \N \N \N 21162 F.aurata Ficus Ficus aurata \N \N \N \N \N 21163 L.suaveolens Lyperanthus Lyperanthus suaveolens \N \N \N \N \N 21164 \N varietas Melampodium cinereum var. hirtellum \N \N \N \N \N 21165 E.JK-2010 Eleocharis Eleocharis aff. cellulosa JK-2010 \N \N \N \N \N 21166 \N varietas Lachenalia aloides var. aloides \N \N \N \N \N 21167 A.karwinskii Agave Agave karwinskii \N \N \N \N \N 21168 F.xantusii Froelichia Froelichia xantusii \N \N \N \N \N 21169 T.kwangtungensis Ternstroemia Ternstroemia kwangtungensis \N \N \N \N \N 21170 C.amblycarpa Citrus Citrus amblycarpa djerook leemo \N \N \N \N 21171 H.nivea Himalaiella Himalaiella nivea \N \N \N \N \N 21172 \N genus Dipodium \N \N \N \N \N 21173 \N subspecies Erodium foetidum subsp. celtibericum \N \N \N \N \N 21174 K.cupuliformis Klasea Klasea cupuliformis \N \N \N \N \N 21175 L.rubicundus Leucopogon Leucopogon rubicundus \N \N \N \N \N 21176 A.kingdonii Allium Allium kingdonii \N \N \N \N \N 21177 \N genus Boopis \N \N \N \N \N 21178 T.ovalifolia Tontelea Tontelea ovalifolia \N \N \N \N \N 21179 C.5823 Carex Carex sp. Hyatt 5823 \N \N \N \N \N 21180 H.myrtifolium Hypericum Hypericum myrtifolium \N \N \N \N \N 21181 \N genus Schmidtottia \N \N \N \N \N 21182 \N genus Ainsworthia \N \N \N \N \N 21183 H.hirta Hemigraphis Hemigraphis hirta \N \N \N \N \N 21184 E.turbiniformis Euphorbia Euphorbia turbiniformis \N \N \N \N \N 21185 S.gramineum Stenanthium Stenanthium gramineum eastern featherbells \N \N \N \N 21186 G.monochaeta Gratwickia Gratwickia monochaeta \N \N \N \N \N 21187 \N subspecies Ficus reflexa subsp. reflexa \N \N \N \N \N 21188 \N genus Helicteropsis \N \N \N \N \N 21189 E.hayatai Eurya Eurya hayatai \N \N \N \N \N 21190 P.castellae Peniocereus Peniocereus castellae \N \N \N \N \N 21191 \N subspecies Acer opalus subsp. granatense \N \N \N \N \N 21192 R.frondosa Radermachera Radermachera frondosa \N \N \N \N \N 21193 N.tetracmoides Neotorularia Neotorularia tetracmoides \N \N \N \N \N 21194 I.oppositifolia Ilex Ilex oppositifolia \N \N \N \N \N 21195 S.parvifolia Sirochloa Sirochloa parvifolia \N \N \N \N \N 21196 L.alpina Lachnaea Lachnaea alpina \N \N \N \N \N 21197 A.sosnovskyi Artemisia Artemisia sosnovskyi \N \N \N \N \N 21198 \N varietas Kniphofia ichopensis var. ichopensis \N \N \N \N \N 21199 P.contortum Pseudopogonatherum Pseudopogonatherum contortum \N \N \N \N \N 21200 R.12391 Rhynchopsidium Rhynchopsidium sp. Goldblatt 12391 \N \N \N \N \N 21201 K.tianschanica Kochia Kochia tianschanica \N \N \N \N \N 21202 H.kumaonense Hedysarum Hedysarum kumaonense \N \N \N \N \N 21203 \N subspecies Cyclamen coum subsp. coum \N \N \N \N \N 21204 \N genus Polyalthia \N \N \N \N \N 21205 L.fructoglabrum Lepidopetalum Lepidopetalum fructoglabrum \N \N \N \N \N 21206 A.guatemalensis Anaxagorea Anaxagorea guatemalensis \N \N \N \N \N 21207 P.lauterbachii Ptychosperma Ptychosperma lauterbachii \N \N \N \N \N 21208 P.virgatum Paspalum Paspalum virgatum \N \N \N \N \N 21209 S.thunbergii Selago Selago thunbergii \N \N \N \N \N 21210 T.SH-2010 Trema Trema sp. SH-2010 \N \N \N \N \N 21211 T.grandiflora Triplostegia Triplostegia grandiflora \N \N \N \N \N 21212 \N genus Dissanthelium \N \N \N \N \N 21213 A.colchica Andrachne Andrachne colchica \N \N \N \N \N 21214 S.taraxacifolia Salvia Salvia taraxacifolia \N \N \N \N \N 21215 E.sericeus Evolvulus Evolvulus sericeus \N \N \N \N \N 21216 D.alliariifolia Dauresia Dauresia alliariifolia \N \N \N \N \N 21217 T.formosanum Taraxacum Taraxacum formosanum \N \N \N \N \N 21218 C.festucacea Cleistogenes Cleistogenes festucacea \N \N \N \N \N 21219 R.lukiangense Rhododendron Rhododendron lukiangense \N \N \N \N \N 21220 T.TL264-2 unclassified Taraxacum Taraxacum (sect. Naevosa) sp. TL264-2 \N \N \N \N \N 21221 T.villosa Tylophora Tylophora villosa \N \N \N \N \N 21222 O.japonica Ostrya Ostrya japonica \N \N \N \N \N 21223 F.O-217 Fernandezia Fernandezia sp. Chase O-217 \N \N \N \N \N 21224 A.campaniflorum Asarum Asarum campaniflorum \N \N \N \N \N 21225 M.pinnatifida Moscharia Moscharia pinnatifida \N \N \N \N \N 21226 G.monticola Grewia Grewia monticola \N \N \N \N \N 21227 C.tonkinensis Cyclea Cyclea tonkinensis \N \N \N \N \N 21228 G.fruticosum Graptopetalum Graptopetalum fruticosum \N \N \N \N \N 21229 T.62382 unclassified Taraxacum Taraxacum (sect. Orientalia) sp. 62382 \N \N \N \N \N 21230 V.sichuanica Valeriana Valeriana sichuanica \N \N \N \N \N 21231 A.scandens Adelobotrys Adelobotrys scandens \N \N \N \N \N 21232 R.parvifolium Rhododendron Rhododendron parvifolium \N \N \N \N \N 21233 \N varietas Cyrtanthus stenanthus var. stenanthus \N \N \N \N \N 21234 \N genus Gynatrix \N \N \N \N \N 21235 S.coffaeoides Schizozygia Schizozygia coffaeoides \N \N \N \N \N 21236 S.venulosa Salvia Salvia venulosa \N \N \N \N \N 21237 A.lycopodioides Acantholimon Acantholimon lycopodioides \N \N \N \N \N 21238 L.littoralis Lathyrus Lathyrus littoralis silky beach pea \N \N \N \N 21239 M.fulgens Metrosideros Metrosideros fulgens \N \N \N \N \N 21240 \N tribe Montrichardieae \N \N \N \N \N 21241 \N varietas Isodon umbrosus var. leucanthus \N \N \N \N \N 21242 G.atroviridis Garcinia Garcinia atroviridis \N \N \N \N \N 21243 D.dewindtianum Dendrochilum Dendrochilum dewindtianum \N \N \N \N \N 21244 M.emodi Maharanga Maharanga emodi \N \N \N \N \N 21246 P.filicaule Polygonum Polygonum filicaule \N \N \N \N \N 21247 \N subspecies Onosma arenaria subsp. fallax \N \N \N \N \N 21248 \N genus Cibirhiza \N \N \N \N \N 21249 N.muluensis Nepenthes Nepenthes muluensis \N \N \N \N \N 21250 M.repens Macrocentrum Macrocentrum repens \N \N \N \N \N 21251 C.depressa Cortia Cortia depressa \N \N \N \N \N 21252 S.rubescens Simira Simira rubescens \N \N \N \N \N 21253 C.majus Chelidonium Chelidonium majus \N \N \N \N \N 21254 \N genus Laserpitium \N \N \N \N \N 21255 C.gracilis Cobaea Cobaea gracilis \N \N \N \N \N 21256 P.pringlei Peyritschia Peyritschia pringlei \N \N \N \N \N 21257 \N genus Mappianthus \N \N \N \N \N 21258 S.gummosus Stenocereus Stenocereus gummosus \N \N \N \N \N 21259 \N genus Colvillea \N \N \N \N \N 21260 \N genus Lepiniopsis \N \N \N \N \N 21261 D.unicum Dendrobium Dendrobium unicum \N \N \N \N \N 21262 S.macroptera Sebaea Sebaea macroptera \N \N \N \N \N 21263 R.pectinarioides Rubus Rubus pectinarioides \N \N \N \N \N 21264 \N genus Pleurospermopsis \N \N \N \N \N 21265 S.angolensis Salsola Salsola angolensis \N \N \N \N \N 21266 D.gangeticum Desmodium Desmodium gangeticum salpani,sarivan \N \N \N \N 21267 P.pronyensis Planchonella Planchonella pronyensis \N \N \N \N \N 21268 \N family Trimeniaceae \N \N \N \N \N 21269 I.5758B Ixora Ixora sp. Vidal 5758B \N \N \N \N \N 21270 L.macrosepala Lotononis Lotononis macrosepala \N \N \N \N \N 21271 B.velutina Basselinia Basselinia velutina \N \N \N \N \N 21272 P.sessilicarpa Pseuduvaria Pseuduvaria sessilicarpa \N \N \N \N \N 21273 M.(GB) Macaranga Macaranga sp. E (GB) \N \N \N \N \N 21274 S.brevifolia Stipa Stipa brevifolia \N \N \N \N \N 21275 A.nanum Alisma Alisma nanum \N \N \N \N \N 21276 \N varietas Panax japonicus var. major \N \N \N \N \N 21277 \N varietas Ceanothus megacarpus var. insularis \N \N \N \N \N 21278 P.BAC-2010 unclassified Poaceae Poaceae sp. E BAC-2010 \N \N \N \N \N 21279 \N genus Dinochloa \N \N \N \N \N 21280 \N genus Gladiolus \N \N \N \N \N 21281 H.atlantica Heliocauta Heliocauta atlantica \N \N \N \N \N 21282 \N subspecies Daviesia ulicifolia subsp. ulicifolia \N \N \N \N \N 21283 \N genus Gasteranthus \N \N \N \N \N 21284 H.candollei Hymenolaena Hymenolaena candollei \N \N \N \N \N 21285 C.atrata Cliffortia Cliffortia atrata \N \N \N \N \N 21286 V.diffusa Viola Viola diffusa \N \N \N \N \N 21287 N.sphaerophylla Nolana Nolana sphaerophylla \N \N \N \N \N 21288 \N varietas Shuteria involucrata var. vestita \N \N \N \N \N 21289 \N genus Enicostema \N \N \N \N \N 21290 T.fasciculata Tylophora Tylophora fasciculata \N \N \N \N \N 21291 P.SM01-43 Pachysandra Pachysandra sp. Mathews SM01-43 \N \N \N \N \N 21292 C.firma Carex Carex firma \N \N \N \N \N 21293 C.arborescens Colutea Colutea arborescens \N \N \N \N \N 21294 P.caroliniana Phalaris Phalaris caroliniana \N \N \N \N \N 21295 C.maculosa Centaurea Centaurea maculosa \N \N \N \N \N 21296 L.nodulosa Luzula Luzula nodulosa \N \N \N \N \N 21297 D.middendorffii Delphinium Delphinium middendorffii \N \N \N \N \N 21298 E.paliformis Eucalyptus Eucalyptus paliformis Wadbilliga ash \N \N \N \N 21299 H.sinuata Hilliella Hilliella sinuata \N \N \N \N \N 21300 M.irrorata Maxillaria Maxillaria irrorata \N \N \N \N \N 21301 A.eghimocymbion Androcymbium Androcymbium eghimocymbion \N \N \N \N \N 21302 L.shichuana Ligulariopsis Ligulariopsis shichuana \N \N \N \N \N 21303 A.hookeriana Androsace Androsace hookeriana \N \N \N \N \N 21304 P.AR-2009 Polystachya Polystachya aff. heckmanniana AR-2009 \N \N \N \N \N 21305 \N subspecies Scorzonera laciniata subsp. laciniata \N \N \N \N \N 21306 A.sativum Allium Allium sativum garlic \N \N \N \N 21307 C.nobilior Cattleya Cattleya nobilior \N \N \N \N \N 21308 \N varietas Allium ampeloprasum var. babingtonii \N \N \N \N \N 21309 D.surinamensis Duguetia Duguetia surinamensis \N \N \N \N \N 21310 N.angustibracteatum Nidularium Nidularium angustibracteatum \N \N \N \N \N 21311 V.rumicoides Valeriana Valeriana rumicoides \N \N \N \N \N 21312 P.euglaucus Penstemon Penstemon euglaucus \N \N \N \N \N 21313 A.SH-2010 Agalmyla Agalmyla sp. SH-2010 \N \N \N \N \N 21314 O.flaviuscula Oxalis Oxalis flaviuscula \N \N \N \N \N 21315 V.benghalensis Vicia Vicia benghalensis purple vetch,winter vetch \N \N \N \N 21316 M.tristaniana Monnina Monnina tristaniana \N \N \N \N \N 21317 M.supinum Macroptilium Macroptilium supinum \N \N \N \N \N 21318 P.tetraphyllum Polycarpon Polycarpon tetraphyllum \N \N \N \N \N 21319 A.sanjuanensis Asclepias Asclepias sanjuanensis \N \N \N \N \N 21320 N.staudtii Nothospondias Nothospondias staudtii \N \N \N \N \N 21321 P.riograndensis Petunia Petunia riograndensis \N \N \N \N \N 21322 A.penduliflora Aechmea Aechmea penduliflora \N \N \N \N \N 21323 M.deserticola Monsonia Monsonia deserticola \N \N \N \N \N 21324 C.heterophyllus Caulanthus Caulanthus heterophyllus \N \N \N \N \N 21325 V.profuga Vernonia Vernonia profuga \N \N \N \N \N 21326 M.bidwillii Muellerina Muellerina bidwillii \N \N \N \N \N 21327 E.horridum Echinospartum Echinospartum horridum \N \N \N \N \N 21328 H.bowlesioides Homalocarpus Homalocarpus bowlesioides \N \N \N \N \N 21329 E.paspaloides Eustachys Eustachys paspaloides \N \N \N \N \N 21330 \N genus Plantago ribworts \N \N \N \N 21331 S.crassa Shorea Shorea crassa \N \N \N \N \N 21332 C.auriculatus Caucanthus Caucanthus auriculatus \N \N \N \N \N 21333 L.texana Lespedeza Lespedeza texana \N \N \N \N \N 21334 M.tepicense Melampodium Melampodium tepicense \N \N \N \N \N 21335 G.verrucosa Garcinia Garcinia verrucosa \N \N \N \N \N 21336 F.longivaginata Festuca Festuca longivaginata \N \N \N \N \N 21337 O.sipyleum Origanum Origanum sipyleum \N \N \N \N \N 21338 M.bengalensis Meriandra Meriandra bengalensis \N \N \N \N \N 21339 \N family Dioncophyllaceae \N \N \N \N \N 21340 \N subspecies Gossypium herbaceum subsp. africanum \N \N \N \N \N 21341 D.arcturi Drosera Drosera arcturi \N \N \N \N \N 21342 M.waialealae Metrosideros Metrosideros waialealae Kauai bottlebrush \N \N \N \N 21343 H.anomala Heliopsis Heliopsis anomala \N \N \N \N \N 21344 Z.biflora Zabelia Zabelia biflora \N \N \N \N \N 21345 H.brunonis Humboldtia Humboldtia brunonis \N \N \N \N \N 21346 F.esquiroliana Ficus Ficus esquiroliana \N \N \N \N \N 21347 T.zeta Tetramerium Tetramerium zeta \N \N \N \N \N 21348 \N no rank unclassified Citrus \N \N \N \N \N 21349 P.purpurascens Pluchea Pluchea purpurascens \N \N \N \N \N 21350 V.ambacensis Vigna Vigna ambacensis \N \N \N \N \N 21351 S.adnata Sambucus Sambucus adnata \N \N \N \N \N 21352 G.heteromera Gaultheria Gaultheria heteromera \N \N \N \N \N 21353 P.curtisii Paphiopedilum Paphiopedilum curtisii \N \N \N \N \N 21354 \N tribe Oleeae \N \N \N \N \N 21355 H.reflexum Helichrysum Helichrysum reflexum \N \N \N \N \N 21356 P.carnosa Phylohydrax Phylohydrax carnosa \N \N \N \N \N 21357 Z.xanthoxylum Zygophyllum Zygophyllum xanthoxylum \N \N \N \N \N 21358 C.troodi Clinopodium Clinopodium troodi \N \N \N \N \N 21359 B.lyrifolia Brachyscome Brachyscome lyrifolia \N \N \N \N \N 21360 \N genus Oropetium \N \N \N \N \N 21361 P.empetriformis Phyllodoce Phyllodoce empetriformis pink mountain-heath \N \N \N \N 21362 M.pseudoaplostachya Miconia Miconia pseudoaplostachya \N \N \N \N \N 21363 A.foetida Aposeris Aposeris foetida \N \N \N \N \N 21364 S.ingens Syzygium Syzygium ingens \N \N \N \N \N 21365 O.leptophyllus Ozothamnus Ozothamnus leptophyllus \N \N \N \N \N 21366 G.myriantha Gentianella Gentianella myriantha \N \N \N \N \N 21367 \N genus Nesiota \N \N \N \N \N 21368 A.mongholicus Astragalus Astragalus mongholicus \N \N \N \N \N 21369 L.solomonii Lepidium Lepidium solomonii \N \N \N \N \N 21370 A.nipponicum Acer Acer nipponicum \N \N \N \N \N 21371 B.siamensis Bassecoia Bassecoia siamensis \N \N \N \N \N 21372 M.texana Micranthes Micranthes texana \N \N \N \N \N 21373 P.linguiformis Pandanus Pandanus linguiformis \N \N \N \N \N 21374 L.caulescens Lepechinia Lepechinia caulescens \N \N \N \N \N 21375 Z.cordifolium Zygophyllum Zygophyllum cordifolium \N \N \N \N \N 21376 \N subspecies Galium munzii subsp. munzii \N \N \N \N \N 21377 M.purpureum Maianthemum Maianthemum purpureum \N \N \N \N \N 21378 E.dalrympleana Eucalyptus Eucalyptus dalrympleana \N \N \N \N \N 21379 C.vietnamica Christensonia Christensonia vietnamica \N \N \N \N \N 21380 \N genus Tinnea \N \N \N \N \N 21381 C.ilicifolia Clarisia Clarisia ilicifolia \N \N \N \N \N 21382 G.pungens Guettarda Guettarda pungens \N \N \N \N \N 21383 S.slamatensis Strobilanthes Strobilanthes slamatensis \N \N \N \N \N 21384 \N varietas Ilex crenata var. paludosa \N \N \N \N \N 21385 G.domingensis Gaultheria Gaultheria domingensis \N \N \N \N \N 21386 P.phaseoloides Pueraria Pueraria phaseoloides tropical kudzu \N \N \N \N 21387 A.modesta Arenaria Arenaria modesta \N \N \N \N \N 21388 T.montana Trichosanthes Trichosanthes montana \N \N \N \N \N 21389 P.excavata Pleurothallis Pleurothallis excavata \N \N \N \N \N 21390 C.melvilla Cuphea Cuphea melvilla \N \N \N \N \N 21391 P.decorata Pyrola Pyrola decorata \N \N \N \N \N 21392 \N genus Rhinephyllum \N \N \N \N \N 21393 \N varietas Actinidia latifolia var. latifolia \N \N \N \N \N 21394 M.baueri Mirbelia Mirbelia baueri \N \N \N \N \N 21395 C.bulbosa Ceropegia Ceropegia bulbosa \N \N \N \N \N 21396 \N genus Kelleronia \N \N \N \N \N 21397 P.gracilis Podolepis Podolepis gracilis \N \N \N \N \N 21398 S.hirsuta Strychnos Strychnos hirsuta \N \N \N \N \N 21399 A.ellsworthii Arbelaezaster Arbelaezaster ellsworthii \N \N \N \N \N 21400 T.s5451 unclassified Taraxacum Taraxacum (sect. Ruderalia/Palustria) sp. s5451 \N \N \N \N \N 21401 D.falcata Dodonaea Dodonaea falcata \N \N \N \N \N 21402 P.eriocarpa Potentilla Potentilla eriocarpa \N \N \N \N \N 21403 \N genus Thapsia \N \N \N \N \N 21404 N.cultivar Nymphaea Nymphaea hybrid cultivar \N \N \N \N \N 21405 N.tomentosa Nicotiana Nicotiana tomentosa \N \N \N \N \N 21406 M.gracilis Megacarpaea Megacarpaea gracilis \N \N \N \N \N 21407 L.bilocularis Lachnostylis Lachnostylis bilocularis \N \N \N \N \N 21408 S.indica Samadera Samadera indica \N \N \N \N \N 21409 G.capillense Gymnocalycium Gymnocalycium capillense \N \N \N \N \N 21410 W.ugandensis Warburgia Warburgia ugandensis \N \N \N \N \N 21411 S.ruelliae Spermacoce Spermacoce ruelliae \N \N \N \N \N 21412 \N genus Emilia \N \N \N \N \N 21413 C.micrantha Citrus Citrus micrantha biasong \N \N \N \N 21414 \N genus Lachnaea \N \N \N \N \N 21415 N.pallidula Nolana Nolana pallidula \N \N \N \N \N 21416 E.mollis Elephantopus Elephantopus mollis devil's grandmother \N \N \N \N 21417 \N genus Oncinema \N \N \N \N \N 21418 H.caribaea Hymenocallis Hymenocallis caribaea \N \N \N \N \N 21419 \N genus Euchlora \N \N \N \N \N 21420 U.glabrum Urophyllum Urophyllum glabrum \N \N \N \N \N 21421 R.diffusum Rhodosciadium Rhodosciadium diffusum \N \N \N \N \N 21422 S.caesia Silene Silene caesia \N \N \N \N \N 21423 C.252988 Carex Carex aff. raoulii AK 252988 \N \N \N \N \N 21424 P.repens Protea Protea repens \N \N \N \N \N 21425 A.oppositifolia Amphithalea Amphithalea oppositifolia \N \N \N \N \N 21426 S.afra Schotia Schotia latifolia x Schotia afra \N \N \N \N \N 21427 B.fragilis Bursera Bursera fragilis \N \N \N \N \N 21428 C.latifolius Chrysopogon Chrysopogon latifolius \N \N \N \N \N 21429 S.sitchensis Sanguisorba Sanguisorba sitchensis \N \N \N \N \N 21430 \N genus Eidothea \N \N \N \N \N 21431 A.spinosa Atraphaxis Atraphaxis spinosa \N \N \N \N \N 21432 F.longicuspis Fraxinus Fraxinus longicuspis \N \N \N \N \N 21433 G.hispida Gratiola Gratiola hispida rough hedgehyssop \N \N \N \N 21434 E.pillansii Erica Erica pillansii \N \N \N \N \N 21435 S.habrochaites Lycopersicon Solanum lycopersicum x Solanum habrochaites \N \N \N \N \N 21436 C.affinis Centaurea Centaurea affinis \N \N \N \N \N 21437 P.corallina Pitcairnia Pitcairnia corallina \N \N \N \N \N 21438 P.potosinus Penstemon Penstemon potosinus \N \N \N \N \N 21439 F.africana Fegimanra Fegimanra africana \N \N \N \N \N 21440 S.kautskyi Schlumbergera Schlumbergera kautskyi \N \N \N \N \N 21441 \N genus Arenaria \N \N \N \N \N 21442 P.variabilis Polygala Polygala variabilis \N \N \N \N \N 21443 C.divaricata Calamagrostis Calamagrostis divaricata \N \N \N \N \N 21444 P.dertosensis Pinguicula Pinguicula dertosensis \N \N \N \N \N 21445 \N forma Viola tokubuchiana f. variegata \N \N \N \N \N 21446 N.maritima Nicotiana Nicotiana maritima \N \N \N \N \N 21447 P.hookeri Pseudarthria Pseudarthria hookeri \N \N \N \N \N 21448 C.maxima Caryota Caryota maxima \N \N \N \N \N 21449 C.flaviformis Carex Carex flaviformis \N \N \N \N \N 21450 C.macrospermum Chaerophyllum Chaerophyllum macrospermum \N \N \N \N \N 103942 \N genus Tridactylina \N \N \N \N \N 21451 T.thompsonii Trifolium Trifolium thompsonii \N \N \N \N \N 21452 C.macrophyllus Chisocheton Chisocheton macrophyllus \N \N \N \N \N 21453 H.wrightii Houstonia Houstonia wrightii pygmy bluet \N \N \N \N 21454 C.myriantha Cryptandra Cryptandra myriantha \N \N \N \N \N 21455 P.subviscosa Potentilla Potentilla subviscosa \N \N \N \N \N 21456 O.basilicum Ocimum Ocimum basilicum basil,sweet basil \N \N \N \N 21457 S.brasiliensis Sebastiania Sebastiania brasiliensis \N \N \N \N \N 21458 K.waldheimii Kalanchoe Kalanchoe waldheimii \N \N \N \N \N 21459 P.glabratus Plectranthus Plectranthus glabratus \N \N \N \N \N 21460 O.trinervis Ornichia Ornichia trinervis \N \N \N \N \N 21461 A.wootonii Astragalus Astragalus wootonii \N \N \N \N \N 21462 L.pratense Linum Linum pratense \N \N \N \N \N 21463 \N genus Dresslerella \N \N \N \N \N 21464 S.porosus Samolus Samolus porosus \N \N \N \N \N 21465 \N genus Chionophila \N \N \N \N \N 21466 L.septentrionalis Layia Layia septentrionalis \N \N \N \N \N 21467 T.pumilum Trichocentrum Trichocentrum pumilum \N \N \N \N \N 21468 A.hexaceras Allium Allium hexaceras \N \N \N \N \N 21469 \N subspecies Centaurea alba subsp. costae \N \N \N \N \N 21470 C.ekmanii Cinnamodendron Cinnamodendron ekmanii \N \N \N \N \N 21471 \N subspecies Erica alexandri subsp. alexandri \N \N \N \N \N 21472 C.montis-sacri Coffea Coffea montis-sacri \N \N \N \N \N 21473 P.bahiensis Pereskia Pereskia bahiensis \N \N \N \N \N 21474 \N subtribe Leucantheminae \N \N \N \N \N 21475 P.violoides Platystemma Platystemma violoides \N \N \N \N \N 21476 A.Xia-724 Amomum Amomum aff. krervahn Xia-724 \N \N \N \N \N 21477 H.lissonotum Haplophyllum Haplophyllum lissonotum \N \N \N \N \N 21478 G.aetnicum Galium Galium aetnicum \N \N \N \N \N 21479 J.pilosa Jouvea Jouvea pilosa \N \N \N \N \N 21480 I.cordatoalata Inga Inga cordatoalata \N \N \N \N \N 21481 C.diemenicus Corysanthes Corysanthes diemenicus \N \N \N \N \N 21482 C.grandiflora Coccinia Coccinia grandiflora \N \N \N \N \N 21483 F.kolymensis Festuca Festuca kolymensis \N \N \N \N \N 21484 B.bolivarii Bursera Bursera bolivarii \N \N \N \N \N 21485 \N genus Zygochloa \N \N \N \N \N 21486 L.tragophylla Lonicera Lonicera tragophylla \N \N \N \N \N 21487 X.compacta Xanthomyrtus Xanthomyrtus compacta \N \N \N \N \N 21488 T.burckii Trevesia Trevesia burckii \N \N \N \N \N 21489 L.retusa Leucaena Leucaena retusa cafecillo,woohoo \N \N \N \N 21490 C.lacustris Cardamine Cardamine lacustris \N \N \N \N \N 21491 O.wappeana Oberonia Oberonia wappeana \N \N \N \N \N 21492 \N genus Muretia \N \N \N \N \N 21493 G.ferruginea Guettarda Guettarda ferruginea \N \N \N \N \N 21494 C.1689 Comparettia Comparettia sp. Whitten 1689 \N \N \N \N \N 21495 H.capensis Harveya Harveya capensis \N \N \N \N \N 21496 S.mayoana Schismatoglottis Schismatoglottis mayoana \N \N \N \N \N 21497 I.nobilis Inga Inga nobilis \N \N \N \N \N 21498 C.barbata Chloris Chloris barbata \N \N \N \N \N 21499 C.trianae Cattleya Cattleya trianae \N \N \N \N \N 21500 D.oblonga Diospyros Diospyros oblonga \N \N \N \N \N 21501 C.rungweense Cynanchum Cynanchum rungweense \N \N \N \N \N 21502 P.bhatii Paracautleya Paracautleya bhatii \N \N \N \N \N 21503 S.meyeri-johannis Sedum Sedum meyeri-johannis \N \N \N \N \N 21504 G.calocephala Gnidia Gnidia calocephala \N \N \N \N \N 21505 A.corymbosa Adesmia Adesmia corymbosa \N \N \N \N \N 21506 H.szovitsii Heteracia Heteracia szovitsii \N \N \N \N \N 21507 O.modesta Ourisia Ourisia modesta \N \N \N \N \N 21508 K.sumatrensis Knoxia Knoxia sumatrensis \N \N \N \N \N 21509 \N genus Microtatorchis \N \N \N \N \N 21510 \N genus Gorceixia \N \N \N \N \N 21511 S.dianica Sideritis Sideritis dianica \N \N \N \N \N 21512 S.spicatus Sporobolus Sporobolus spicatus \N \N \N \N \N 21513 C.valida Chiloglottis Chiloglottis valida \N \N \N \N \N 21514 \N genus Nanodea \N \N \N \N \N 21515 N.papillosa Nigella Nigella papillosa \N \N \N \N \N 21516 \N genus Chamaemespilus \N \N \N \N \N 21517 A.mongolica Artemisia Artemisia mongolica \N \N \N \N \N 21518 P.597 Pycnandra Pycnandra sp. Swenson 597 \N \N \N \N \N 21519 I.sulcata Indigofera Indigofera sulcata \N \N \N \N \N 21520 S.leducii Swertia Swertia leducii \N \N \N \N \N 21521 A.preissianus Angianthus Angianthus preissianus \N \N \N \N \N 21522 A.deppeana Arundinella Arundinella deppeana \N \N \N \N \N 21523 M.sancta Mandevilla Mandevilla sancta \N \N \N \N \N 21524 H.salsaparilha Herreria Herreria salsaparilha \N \N \N \N \N 21525 C.elata Chloris Chloris elata \N \N \N \N \N 21526 \N genus Didymiandrum \N \N \N \N \N 21527 L.japonica Lemna Lemna japonica \N \N \N \N \N 21528 E.carolinianum Erodium Erodium carolinianum \N \N \N \N \N 21529 D.ranongensis Dalzellia Dalzellia ranongensis \N \N \N \N \N 21530 R.pluriplicata Renealmia Renealmia pluriplicata \N \N \N \N \N 21531 A.himalayense Allium Allium himalayense \N \N \N \N \N 21532 T.sinensis Tapiscia Tapiscia sinensis \N \N \N \N \N 21533 \N genus Rumia \N \N \N \N \N 21534 N.wushanica Neolitsea Neolitsea wushanica \N \N \N \N \N 21535 G.arenaria Gunnera Gunnera arenaria \N \N \N \N \N 21536 D.myrtifolia Diplolepis Diplolepis myrtifolia \N \N \N \N \N 21537 C.sessiliflora Ceriscoides Ceriscoides sessiliflora \N \N \N \N \N 21538 C.s.n. Cuscuta Cuscuta cf. chilensis Hichins & Munoz s.n. \N \N \N \N \N 21539 P.rosea Pimelea Pimelea rosea \N \N \N \N \N 21540 M.alticola Malagasia Malagasia alticola \N \N \N \N \N 21541 H.opposita Hoslundia Hoslundia opposita \N \N \N \N \N 21542 C.glaucum Crinum Crinum acaule x Crinum glaucum \N \N \N \N \N 21543 A.cymbifera Aristolochia Aristolochia cymbifera mil-homens \N \N \N \N 21544 E.pinifolius Euryops Euryops pinifolius \N \N \N \N \N 21545 A.occidentalis Alloschemone Alloschemone occidentalis \N \N \N \N \N 21546 O.weberbaueri Oxalis Oxalis weberbaueri \N \N \N \N \N 21547 P.pantherina Phalaenopsis Phalaenopsis pantherina \N \N \N \N \N 21548 A.hemsleyana Arracacia Arracacia hemsleyana \N \N \N \N \N 21549 C.kinokuni Citrus Citrus nobilis x Citrus kinokuni \N \N \N \N \N 21550 L.gloria-montis Lobelia Lobelia gloria-montis \N \N \N \N \N 21551 S.rizzinii Senna Senna rizzinii \N \N \N \N \N 21552 L.leonii Leptocereus Leptocereus leonii \N \N \N \N \N 21553 I.hartwegii Iris Iris hartwegii rainbow iris \N \N \N \N 21554 \N varietas Peucedanum terebinthaceum var. terebinthaceum \N \N \N \N \N 21555 M.degeneri Melicope Melicope degeneri \N \N \N \N \N 21556 L.medeoloides Lilium Lilium medeoloides \N \N \N \N \N 21557 B.densiflora Blumea Blumea densiflora \N \N \N \N \N 21558 \N genus Madhuca \N \N \N \N \N 21559 \N genus Sinopanax \N \N \N \N \N 21560 B.gagnepainii Berberis Berberis gagnepainii \N \N \N \N \N 21561 C.spiritu-sanctensis Clusia Clusia spiritu-sanctensis \N \N \N \N \N 21562 E.quinqueflorus Enkianthus Enkianthus quinqueflorus \N \N \N \N \N 21563 \N subfamily Teucrioideae \N \N \N \N \N 21564 L.hirtella Latrobea Latrobea hirtella \N \N \N \N \N 21565 H.umbellata Heloniopsis Heloniopsis umbellata \N \N \N \N \N 21566 A.hostmanniana Aniba Aniba hostmanniana \N \N \N \N \N 21567 \N genus Diplarche \N \N \N \N \N 21568 C.glabra Cyclopia Cyclopia glabra \N \N \N \N \N 21569 G.pulchella Genista Genista pulchella \N \N \N \N \N 21570 E.spiculosum Eryngium Eryngium spiculosum \N \N \N \N \N 21571 P.pectinatum Polemonium Polemonium pectinatum \N \N \N \N \N 21572 S.glauca Smilax Smilax glauca cat greenbrier,catbrier \N \N \N \N 21573 H.glaucophyllus Helianthus Helianthus glaucophyllus \N \N \N \N \N 21574 D.hebecarpa Diospyros Diospyros hebecarpa \N \N \N \N \N 21575 \N genus Basistemon \N \N \N \N \N 21576 C.gw1499 Castilla Castilla sp. gw1499 \N \N \N \N \N 21577 A.tenuicaulis Anemone Anemone tenuicaulis \N \N \N \N \N 21578 P.sordidum Phagnalon Phagnalon sordidum \N \N \N \N \N 21579 E.brunnescens Epilobium Epilobium brunnescens \N \N \N \N \N 21580 \N varietas Sidalcea oregana var. maxima \N \N \N \N \N 21581 \N varietas Mimosa leprosa var. parviceps \N \N \N \N \N 21582 C.genistoides Cyclopia Cyclopia genistoides \N \N \N \N \N 21583 P.fernandopoiana Peperomia Peperomia fernandopoiana \N \N \N \N \N 21584 A.menyharthii Actinanthella Actinanthella menyharthii \N \N \N \N \N 21585 \N genus Thomandersia \N \N \N \N \N 21586 S.MAG-2009 unclassified Sapotaceae Sapotaceae sp. MAG-2009 \N \N \N \N \N 21587 P.nemoralis Phacelia Phacelia nemoralis \N \N \N \N \N 21588 M.luteola Miconia Miconia luteola \N \N \N \N \N 21589 L.pinnatum Limnosciadium Limnosciadium pinnatum \N \N \N \N \N 21590 T.petalocalyx Thomasia Thomasia petalocalyx \N \N \N \N \N 21591 E.pitardii Echium Echium pitardii \N \N \N \N \N 21592 A.leptaleus Astragalus Astragalus leptaleus \N \N \N \N \N 21593 L.distichum Lithospermum Lithospermum distichum \N \N \N \N \N 21594 M.turbinata Maireana Maireana turbinata \N \N \N \N \N 21595 M.erecta Moenchia Moenchia erecta \N \N \N \N \N 21596 S.wrightii Solanum Solanum wrightii \N \N \N \N \N 21597 P.aphylla Psoralea Psoralea aphylla \N \N \N \N \N 21598 W.lobelioides Wahlenbergia Wahlenbergia lobelioides \N \N \N \N \N 21599 \N genus Anredera \N \N \N \N \N 21600 C.RR-2009 Coix Coix sp. RR-2009 \N \N \N \N \N 21601 \N genus Piptochaetium \N \N \N \N \N 21602 U.altissima Urginavia Urginavia altissima \N \N \N \N \N 21603 R.nanum Rheum Rheum nanum \N \N \N \N \N 21604 \N genus Pinaropappus \N \N \N \N \N 21605 S.molle Schizophragma Schizophragma molle \N \N \N \N \N 21606 A.involucrata Aechmea Aechmea involucrata \N \N \N \N \N 21607 I.stipitata Isoglossa Isoglossa stipitata \N \N \N \N \N 21608 \N genus Neoptychocarpus \N \N \N \N \N 21609 E.benthamii Errazurizia Errazurizia benthamii \N \N \N \N \N 21610 P.longipes Pentaschistis Pentameris longipes \N \N \N \N \N 21611 O.reichenheimii Oncidium Oncidium reichenheimii \N \N \N \N \N 21612 P.dahuricum Ptilotrichum Ptilotrichum dahuricum \N \N \N \N \N 21613 D.indicus Damnacanthus Damnacanthus indicus aridoshi \N \N \N \N 21614 P.TH-203 Phragmites Phragmites sp. TH-203 \N \N \N \N \N 21615 \N genus Pilgerina \N \N \N \N \N 21616 S.flavissima Smelowskia Smelowskia flavissima \N \N \N \N \N 21617 \N no rank Annesorhiza clade incertae sedis \N \N \N \N \N 21618 \N genus Epiblema \N \N \N \N \N 21619 \N genus Pemphis \N \N \N \N \N 21620 V.kwatae Virola Virola kwatae \N \N \N \N \N 21621 C.cristata Casuarina Casuarina cristata belah \N \N \N \N 21622 S.dianthophorum Solanum Solanum dianthophorum \N \N \N \N \N 21623 R.sinensis Rostrinucula Rostrinucula sinensis \N \N \N \N \N 21624 V.patrinii Viola Viola patrinii \N \N \N \N \N 21625 R.biflora Rhabdadenia Rhabdadenia biflora \N \N \N \N \N 21626 \N genus Hormathophylla \N \N \N \N \N 21627 A.CD-2009 Amomum Amomum sp. CD-2009 \N \N \N \N \N 21628 P.rotundifolius Phyllanthus Phyllanthus rotundifolius \N \N \N \N \N 21629 D.ramosus Dapsilanthus Dapsilanthus ramosus \N \N \N \N \N 21630 O.pardothyrsus Oncidium Oncidium pardothyrsus \N \N \N \N \N 21631 \N genus Cryptostephanus \N \N \N \N \N 21632 M.sericea Muhlenbergia Muhlenbergia sericea \N \N \N \N \N 21633 B.hintonii Bidens Bidens hintonii \N \N \N \N \N 21634 P.mollissimum Piper Piper mollissimum \N \N \N \N \N 21635 C.albata Carex Carex albata \N \N \N \N \N 21636 C.cneorum Convolvulus Convolvulus cneorum \N \N \N \N \N 21637 \N subspecies Gymnocalycium hyptiacanthum subsp. netrelianum \N \N \N \N \N 21638 E.hieraciifolius Erechtites Erechtites hieraciifolius \N \N \N \N \N 21639 \N genus Citrullus \N \N \N \N \N 21640 A.adpressa Arctotis Arctotis adpressa \N \N \N \N \N 21641 M.simplicifolia Meconopsis Meconopsis simplicifolia \N \N \N \N \N 21642 \N genus Grammadenia \N \N \N \N \N 21643 \N genus Utsetela \N \N \N \N \N 21644 V.californica Vitis Vitis californica \N \N \N \N \N 21645 S.micans Sinningia Sinningia micans \N \N \N \N \N 21646 A.gintungensis Aralia Aralia gintungensis \N \N \N \N \N 21647 \N varietas Carex aquatilis var. dives \N \N \N \N \N 104820 \N genus Kaschgaria \N \N \N \N \N 21648 Z.martinicense Zanthoxylum Zanthoxylum martinicense \N \N \N \N \N 21649 \N genus Lantana \N \N \N \N \N 21650 C.sichuanense Cypripedium Cypripedium sichuanense \N \N \N \N \N 21651 \N subspecies Tigridia alpestris subsp. alpestris \N \N \N \N \N 21652 H.patinoi Huberodendron Huberodendron patinoi \N \N \N \N \N 21653 \N varietas Vitis cinerea var. floridana \N \N \N \N \N 21654 D.utleyorum Disterigma Disterigma utleyorum \N \N \N \N \N 21655 P.americana Prosopanche Prosopanche americana \N \N \N \N \N 21656 D.luetzelburgii Dalechampia Dalechampia luetzelburgii \N \N \N \N \N 21657 S.6321 Scaphyglottis Scaphyglottis aff. punctulata Dressler 6321 \N \N \N \N \N 21658 A.formosa Achillea Achillea formosa \N \N \N \N \N 21659 \N varietas Prunus salicina var. cordata \N \N \N \N \N 21660 H.wilsonii Hymenidium Hymenidium wilsonii \N \N \N \N \N 21661 M.copiapina Montiopsis Montiopsis copiapina \N \N \N \N \N 21662 D.pendulum Dendrobium Dendrobium pendulum \N \N \N \N \N 21663 H.calycinus Hybanthus Hybanthus calycinus \N \N \N \N \N 21664 S.patagonica Suaeda Suaeda patagonica \N \N \N \N \N 21665 N.microcarpa Nolina Nolina microcarpa bear-grass,sacahuista \N \N \N \N 21666 C.fragile Cestrum Cestrum fragile \N \N \N \N \N 21667 \N genus Microcybe \N \N \N \N \N 21668 \N genus Calotropis \N \N \N \N \N 21669 A.laxiflorum Acer Acer laxiflorum \N \N \N \N \N 21670 L.pterocarpum Limeum Limeum pterocarpum \N \N \N \N \N 21671 Q.ekmanii Quisqueya Quisqueya ekmanii \N \N \N \N \N 21672 M.japonica Metaplexis Metaplexis japonica \N \N \N \N \N 21673 P.smallii Penstemon Penstemon smallii \N \N \N \N \N 21674 O.oreophila Oxalis Oxalis oreophila \N \N \N \N \N 21675 M.fuscus Miscanthus Miscanthus fuscus \N \N \N \N \N 21676 P.goetzei Pachycarpus Pachycarpus goetzei \N \N \N \N \N 21677 S.densiflora Sciaphila Sciaphila densiflora \N \N \N \N \N 21678 O.asbeckii Oxandra Oxandra asbeckii \N \N \N \N \N 21679 \N subspecies Allocasuarina mackliniana subsp. hirtilinea \N \N \N \N \N 21680 S.guiso Shorea Shorea guiso \N \N \N \N \N 21681 F.cotacajensis Fosterella Fosterella cotacajensis \N \N \N \N \N 21682 T.oreades Telopea Telopea oreades \N \N \N \N \N 21683 P.pittieri Passiflora Passiflora pittieri \N \N \N \N \N 21684 \N genus Acanthoprasium \N \N \N \N \N 21685 H.japonicum Hydrobryum Hydrobryum japonicum \N \N \N \N \N 21686 M.nepalensis Mallotus Mallotus nepalensis \N \N \N \N \N 21687 E.JNL3345 Euphorbia Euphorbia sp. JNL3345 \N \N \N \N \N 21688 \N subspecies Nasa triphylla subsp. flavipes \N \N \N \N \N 21689 \N genus Avenella \N \N \N \N \N 21690 M.tenuifolia Microcorys Microcorys tenuifolia \N \N \N \N \N 21691 Z.japonica Zoysia Zoysia japonica Japanese lawn grass,shiba,zoysia \N \N \N \N 21692 C.wootonii Carex Carex wootonii \N \N \N \N \N 21693 S.latifolius Styrax Styrax latifolius \N \N \N \N \N 21694 A.sosnovskyi Amberboa Amberboa sosnovskyi \N \N \N \N \N 21695 H.gramineum Hypericum Hypericum gramineum \N \N \N \N \N 21696 \N genus Tannodia \N \N \N \N \N 21697 G.rufidula Gagea Gagea rufidula \N \N \N \N \N 21698 \N genus Eremopoa \N \N \N \N \N 21699 M.hesperantha Moraea Moraea hesperantha \N \N \N \N \N 21700 R.divaricatum Ribes Ribes divaricatum coast gooseberry \N \N \N \N 21701 R.longiflora Rothmannia Rothmannia longiflora \N \N \N \N \N 21702 P.abunda Pearcea Pearcea abunda \N \N \N \N \N 21703 S.stewartii Solms-laubachia Solms-laubachia stewartii \N \N \N \N \N 21704 C.H5_10 Castilleja Castilleja sp. H5_10 \N \N \N \N \N 21705 I.lusitanica Isatis Isatis lusitanica \N \N \N \N \N 21706 S.scaposa Saussurea Saussurea scaposa \N \N \N \N \N 21707 P.stephanocarpa Pulicaria Pulicaria stephanocarpa \N \N \N \N \N 21708 H.polyandrus Homalocalyx Homalocalyx polyandrus \N \N \N \N \N 21709 S.turbinatus Schoenus Schoenus turbinatus \N \N \N \N \N 21710 S.4542 Schefflera Schefflera aff. varisiana Amorim 4542 \N \N \N \N \N 21711 O.gorovoii Orostachys Orostachys gorovoii \N \N \N \N \N 21712 B.scabra Bernardia Bernardia scabra \N \N \N \N \N 21713 M.alterniflorum Myriophyllum Myriophyllum alterniflorum \N \N \N \N \N 21714 M.quadrangularis Melicope Melicope quadrangularis \N \N \N \N \N 21715 M.muricatum Myriophyllum Myriophyllum muricatum \N \N \N \N \N 21716 P.linearisepala Psychotria Psychotria linearisepala \N \N \N \N \N 21717 \N genus Smithia \N \N \N \N \N 21718 \N genus Petalostylis \N \N \N \N \N 21719 \N genus Lophatherum \N \N \N \N \N 21720 C.petitiana Carex Carex petitiana \N \N \N \N \N 21721 C.polysperma Cabucala Cabucala polysperma \N \N \N \N \N 21722 R.championiae Rhododendron Rhododendron championiae \N \N \N \N \N 21723 W.paniculata Wahlenbergia Wahlenbergia paniculata \N \N \N \N \N 21724 T.frigida Tephroseris Tephroseris frigida \N \N \N \N \N 21725 D.hitchcockii Draba Draba hitchcockii Lost River draba \N \N \N \N 21726 H.auricularia Hedyotis Hedyotis auricularia \N \N \N \N \N 21727 \N genus Petalostigma \N \N \N \N \N 21728 F.tenella Felicia Felicia tenella \N \N \N \N \N 21729 \N tribe Physaleae \N \N \N \N \N 21730 \N genus Allosidastrum \N \N \N \N \N 21731 S.vaginata Stuckenia Stuckenia vaginata \N \N \N \N \N 21732 S.montanum Solanum Solanum montanum \N \N \N \N \N 21733 B.borjensis Burmeistera Burmeistera borjensis \N \N \N \N \N 21734 C.fimbriata Cleome Cleome fimbriata \N \N \N \N \N 21735 P.discolor Philibertia Philibertia discolor \N \N \N \N \N 21736 O.provincialis Orchis Orchis provincialis \N \N \N \N \N 21737 E.ocellata Erica Erica ocellata \N \N \N \N \N 21738 A.westerhoutii Arenga Arenga westerhoutii \N \N \N \N \N 21739 V.stipularis Vallea Vallea stipularis \N \N \N \N \N 21740 M.moschata Malva Malva moschata \N \N \N \N \N 21741 R.spicata Razisea Razisea spicata \N \N \N \N \N 21742 P.polystachya Pseudechinolaena Pseudechinolaena polystachya \N \N \N \N \N 21743 \N genus Allophylus \N \N \N \N \N 21744 A.virgata Arctostaphylos Arctostaphylos virgata \N \N \N \N \N 21745 \N tribe Arisaemateae \N \N \N \N \N 21746 D.kurdicum Delphinium Delphinium kurdicum \N \N \N \N \N 21747 A.handel-mazzettii Anthemis Anthemis handel-mazzettii \N \N \N \N \N 21748 E.porteriana Euphorbia Euphorbia porteriana \N \N \N \N \N 21749 \N genus Alfaropsis \N \N \N \N \N 21750 A.laxa Anomatheca Anomatheca laxa \N \N \N \N \N 21751 C.pinardii Centaurea Centaurea pinardii \N \N \N \N \N 21752 F.malayana Firmiana Firmiana malayana bullock's eye,mata lembu \N \N \N \N 21753 C.litardierei Centaurea Centaurea litardierei \N \N \N \N \N 21754 I.s.n. Ilex Ilex sp. Craven s.n. \N \N \N \N \N 21755 \N genus Prioria \N \N \N \N \N 21756 \N varietas Lithops gracilidelineata var. gracilidelineata \N \N \N \N \N 21757 S.limoncillo Symplocos Symplocos limoncillo \N \N \N \N \N 21758 \N genus Amphiasma \N \N \N \N \N 21759 \N genus Myriactis \N \N \N \N \N 21760 C.canephora Coffea Coffea arabica x Coffea canephora \N \N \N \N \N 21761 \N genus Sphaerosciadium \N \N \N \N \N 21762 E.papuana Eucalyptopsis Eucalyptopsis papuana \N \N \N \N \N 21763 C.scarlatinum Camptosema Camptosema scarlatinum \N \N \N \N \N 21764 \N genus Krameria \N \N \N \N \N 21765 S.retusa Saxifraga Saxifraga retusa \N \N \N \N \N 21766 \N genus Chaetadelpha \N \N \N \N \N 21767 \N genus Synaptophyllum \N \N \N \N \N 21768 B.sellowiana Banisteriopsis Banisteriopsis sellowiana \N \N \N \N \N 21769 \N varietas Ficus deltoidea var. kunstleri \N \N \N \N \N 21770 I.ocreata Ischyrolepis Ischyrolepis ocreata \N \N \N \N \N 21771 \N genus Duboisia \N \N \N \N \N 21772 S.GDA-2008 Sarcolobus Sarcolobus sp. GDA-2008 \N \N \N \N \N 21773 B.harlingii Blepharodon Blepharodon harlingii \N \N \N \N \N 21774 \N genus Platygyna \N \N \N \N \N 21775 G.cazorlense Geranium Geranium cazorlense \N \N \N \N \N 21776 \N genus Monophyllaea \N \N \N \N \N 21777 T.nodosa Torilis Torilis nodosa hedge parsley \N \N \N \N 21778 M.kamiesmontana Moraea Moraea kamiesmontana \N \N \N \N \N 21779 A.adstringens Amphipterygium Amphipterygium adstringens \N \N \N \N \N 21780 E.rangei Ellisochloa Ellisochloa rangei \N \N \N \N \N 21781 E.prolifera Echeveria Echeveria prolifera \N \N \N \N \N 21782 \N genus Glycyrrhiza licorice \N \N \N \N 21783 C.androcymbioides Colchicum Colchicum androcymbioides \N \N \N \N \N 21784 M.polyedra Mammillaria Mammillaria polyedra \N \N \N \N \N 21785 S.mexicanum Semialarium Semialarium mexicanum \N \N \N \N \N 21786 M.luederitziana Monsonia Monsonia luederitziana \N \N \N \N \N 21787 \N genus Kosopoljanskia \N \N \N \N \N 21788 I.salpoanum Iochroma Iochroma salpoanum \N \N \N \N \N 21789 \N genus Deiregyne \N \N \N \N \N 21790 B.rex Begonia Begonia rex king begonia,painted-leaf begonia \N \N \N \N 21791 C.sintenisii Crucianella Crucianella sintenisii \N \N \N \N \N 21792 A.nantucketensis Amelanchier Amelanchier nantucketensis \N \N \N \N \N 21793 H.peltata Halosarcia Halosarcia peltata \N \N \N \N \N 21794 C.megalophyllum Cremastosperma Cremastosperma megalophyllum \N \N \N \N \N 21795 M.domingensis Mimosa Mimosa domingensis \N \N \N \N \N 21796 P.haenkei Pseudogynoxys Pseudogynoxys haenkei \N \N \N \N \N 21797 D.biennis Donnellsmithia Donnellsmithia biennis \N \N \N \N \N 21798 B.paniculata Bufonia Bufonia paniculata \N \N \N \N \N 21799 S.barbatus Streptanthus Streptanthus barbatus \N \N \N \N \N 21800 D.BGB-2009 Dalechampia Dalechampia aff. bernieri BGB-2009 \N \N \N \N \N 21801 M.lugardae Monadenium Monadenium lugardae \N \N \N \N \N 21802 A.glabrata Adriana Adriana glabrata \N \N \N \N \N 21803 A.sphaerocephalus Acamptopappus Acamptopappus sphaerocephalus \N \N \N \N \N 21804 G.arnottiana Ginalloa Ginalloa arnottiana \N \N \N \N \N 21805 S.bialata Securidaca Securidaca bialata \N \N \N \N \N 21806 A.ADW-2005 Aeginetia Aeginetia sp. ADW-2005 \N \N \N \N \N 21807 S.arnottiana Senna Senna arnottiana \N \N \N \N \N 21808 A.hintoniorum Antiphytum Antiphytum hintoniorum \N \N \N \N \N 21809 C.castaneum Calophyllum Calophyllum castaneum \N \N \N \N \N 21810 A.hainanensis Adinandra Adinandra hainanensis \N \N \N \N \N 21811 J.podagrica Jatropha Jatropha podagrica purgingnut,white rhubarb \N \N \N \N 21812 S.gracilis Selago Selago gracilis \N \N \N \N \N 21813 C.angustata Crawfurdia Crawfurdia angustata \N \N \N \N \N 21814 A.patula Atriplex Atriplex patula spear oracle \N \N \N \N 21815 A.humilis Ajugoides Ajugoides humilis \N \N \N \N \N 21816 A.s.n. Athenaea Athenaea sp. D'Arcy s.n. \N \N \N \N \N 21817 C.erecta Cionura Cionura erecta \N \N \N \N \N 21818 C.numidica Charybdis Charybdis numidica \N \N \N \N \N 21819 C.fasciolatum Cypripedium Cypripedium fasciolatum \N \N \N \N \N 21820 A.amygdaloides Amorphophallus Amorphophallus amygdaloides \N \N \N \N \N 21821 R.aristatus Rhinanthus Rhinanthus aristatus \N \N \N \N \N 21822 I.Qiu95051 Ixora Ixora sp. Qiu95051 \N \N \N \N \N 21823 H.fortunei Hosta Hosta fortunei \N \N \N \N \N 21824 \N genus Uncaria \N \N \N \N \N 21825 C.tesajo Cylindropuntia Cylindropuntia tesajo \N \N \N \N \N 21826 M.asparagoides Myrsiphyllum Myrsiphyllum asparagoides \N \N \N \N \N 21827 F.caulocarpa Ficus Ficus caulocarpa \N \N \N \N \N 21828 T.repandum Tropaeolum Tropaeolum repandum \N \N \N \N \N 21829 A.6929/1 Atriplex Atriplex sp. Mucina 6929/1 \N \N \N \N \N 21830 S.intermedia Satureja Satureja intermedia \N \N \N \N \N 21831 T.sempervirens Thymelaea Thymelaea sempervirens \N \N \N \N \N 21832 P.umbilicata Passiflora Passiflora umbilicata \N \N \N \N \N 21833 M.angolensis Maerua Maerua angolensis \N \N \N \N \N 21834 D.cauliculimentum Dendrobium Dendrobium cauliculimentum \N \N \N \N \N 21835 P.neurocalyx Pultenaea Pultenaea neurocalyx \N \N \N \N \N 21836 P.florida Primula Primula florida \N \N \N \N \N 21837 C.graminea Cliffortia Cliffortia graminea \N \N \N \N \N 21838 V.japonica Vicia Vicia japonica \N \N \N \N \N 21839 A.laxesquamosum Amomum Amomum laxesquamosum \N \N \N \N \N 21840 \N genus Murbeckiella \N \N \N \N \N 21841 \N varietas Alseuosmia banksii var. banksii \N \N \N \N \N 21842 P.skottsbergii Planchonella Planchonella skottsbergii \N \N \N \N \N 105013 \N genus Plocama \N \N \N \N \N 21843 E.latisinensis Eucalyptus Eucalyptus latisinensis \N \N \N \N \N 21844 A.abundiflora Alpinia Alpinia abundiflora \N \N \N \N \N 21845 T.gardneriana Triplaris Triplaris gardneriana \N \N \N \N \N 21846 C.vestitum Chrysanthemum Chrysanthemum vestitum \N \N \N \N \N 21847 Z.atropurpureum Zootrophion Zootrophion atropurpureum \N \N \N \N \N 21848 A.semibarbata Austrostipa Austrostipa semibarbata \N \N \N \N \N 21849 S.chamissoniana Scaevola Scaevola chamissoniana \N \N \N \N \N 21850 \N varietas Lilium monadelphum var. armenum \N \N \N \N \N 21851 B.euphemiae Billbergia Billbergia euphemiae \N \N \N \N \N 21852 \N genus Chamaepentas \N \N \N \N \N 21853 L.nepalense Lilium Lilium nepalense \N \N \N \N \N 21854 D.elliptica Dorstenia Dorstenia elliptica \N \N \N \N \N 21855 D.palmatus Diplocyclos Diplocyclos palmatus \N \N \N \N \N 21856 B.mollis Bunchosia Bunchosia mollis \N \N \N \N \N 21857 G.orixensis Globba Globba orixensis \N \N \N \N \N 21858 A.erosa Arctotis Arctotis erosa \N \N \N \N \N 21859 I.hiranensis Indigofera Indigofera hiranensis \N \N \N \N \N 21860 E.leptophyllum Eupatorium Eupatorium leptophyllum false fennel \N \N \N \N 21861 \N varietas Cuscuta gronovii var. latiflora \N \N \N \N \N 21862 T.impressum Thesium Thesium impressum \N \N \N \N \N 21863 C.oblongata Chamaedorea Chamaedorea oblongata \N \N \N \N \N 21864 P.splendens Phaeanthus Phaeanthus splendens \N \N \N \N \N 21865 C.dressleri Columnea Columnea dressleri \N \N \N \N \N 21866 T.ranunculinus Trollius Trollius ranunculinus \N \N \N \N \N 21867 Z.bicolor Zygogynum Zygogynum bicolor \N \N \N \N \N 21868 C.07nia917 Coccinia Coccinia sp. 07nia917 \N \N \N \N \N 21869 B.laevigata Boechera Boechera laevigata smooth rockcress \N \N \N \N 21870 P.assamicus Panax Panax assamicus \N \N \N \N \N 21871 B.ulmifolia Begonia Begonia ulmifolia \N \N \N \N \N 21872 G.biebersteinii Gentianella Gentianella biebersteinii \N \N \N \N \N 21873 P.cordata Petenaea Petenaea cordata \N \N \N \N \N 21874 \N genus Salvia sages \N \N \N \N 21875 D.DES-2011 Degeneria Degeneria sp. DES-2011 \N \N \N \N \N 21876 B.framesii Babiana Babiana framesii \N \N \N \N \N 21877 P.schugnana Parrya Parrya schugnana \N \N \N \N \N 21878 \N genus Phelline \N \N \N \N \N 21879 M.gigantea Maxillaria Maxillaria gigantea \N \N \N \N \N 21880 G.brownii Gastrolobium Gastrolobium brownii \N \N \N \N \N 21881 G.maculata Gliricidia Gliricidia maculata \N \N \N \N \N 21882 \N subspecies Cineraria lobata subsp. lobata \N \N \N \N \N 21883 M.bigelovii Mimulus Mimulus bigelovii \N \N \N \N \N 21884 P.fontana Pilea Pilea fontana \N \N \N \N \N 21885 M.andina Minthostachys Minthostachys andina \N \N \N \N \N 21886 H.debilis Helianthus Helianthus annuus x Helianthus debilis subsp. debilis \N \N \N \N \N 21887 O.christii Ononis Ononis christii \N \N \N \N \N 21888 C.striata Corallorhiza Corallorhiza striata \N \N \N \N \N 21889 M.regalis Moraea Moraea regalis \N \N \N \N \N 21890 S.cyclocarpa Swainsona Swainsona cyclocarpa \N \N \N \N \N 21891 C.chamelensis Croton Croton chamelensis \N \N \N \N \N 21892 T.elegans Tynanthus Tynanthus elegans \N \N \N \N \N 21893 C.parodiana Cuscuta Cuscuta parodiana \N \N \N \N \N 21894 H.ternata Hidalgoa Hidalgoa ternata \N \N \N \N \N 21895 \N genus Gomphandra \N \N \N \N \N 21896 T.rockii Tetramolopium Tetramolopium rockii \N \N \N \N \N 21897 \N genus Tulipa \N \N \N \N \N 21898 I.zygophylla Ilex Ilex zygophylla \N \N \N \N \N 21899 H.percoriacea Heritiera Heritiera percoriacea \N \N \N \N \N 21900 A.capensis Anthochortus Anthochortus capensis \N \N \N \N \N 21901 F.stricta Festuca Festuca stricta \N \N \N \N \N 21902 \N genus Congea \N \N \N \N \N 21903 N.brachychaetoides Nassella Nassella brachychaetoides \N \N \N \N \N 21904 P.pseudopallescens Pentaschistis Pentameris pseudopallescens \N \N \N \N \N 21905 \N genus Pimpinella \N \N \N \N \N 21906 A.megaphylla Angelica Angelica megaphylla \N \N \N \N \N 21907 P.galpinii Passerina Passerina galpinii \N \N \N \N \N 21908 A.rufa Actinidia Actinidia rufa nashi-kazura \N \N \N \N 21909 \N genus Amelichloa \N \N \N \N \N 21910 \N genus Catharanthus \N \N \N \N \N 21911 A.taylorii Aspalathus Aspalathus taylorii \N \N \N \N \N 21912 T.cirrhifera Trichoglottis Trichoglottis cirrhifera \N \N \N \N \N 21913 R.papillaris Rumex Rumex papillaris \N \N \N \N \N 21914 T.heterophylla Tabebuia Tabebuia heterophylla pink manjack,pink trumpet-tree,white-cedar \N \N \N \N 21915 R.cassiquiarensis Ruizterania Ruizterania cassiquiarensis \N \N \N \N \N 21916 E.bifurcata Euphorbia Euphorbia bifurcata \N \N \N \N \N 21917 S.acutiflora Stipagrostis Stipagrostis acutiflora \N \N \N \N \N 21918 \N genus Callichlamys \N \N \N \N \N 21919 E.stokoei Elegia Elegia stokoei \N \N \N \N \N 21920 V.cultivar Vanda Vanda hybrid cultivar \N \N \N \N \N 21921 C.luteus Centropogon Centropogon luteus \N \N \N \N \N 21922 C.nivalis Calceolaria Calceolaria nivalis \N \N \N \N \N 21923 \N genus Aegilops \N \N \N \N \N 21924 Z.mucronata Ziziphus Ziziphus mucronata \N \N \N \N \N 21925 C.albus Calochortus Calochortus albus white fairy-lantern \N \N \N \N 21926 K.emersa Korthalsella Korthalsella emersa \N \N \N \N \N 21927 M.gracilenta Mentzelia Mentzelia gracilenta \N \N \N \N \N 21929 G.elliptica Garrya Garrya elliptica \N \N \N \N \N 21930 C.secundum Coilonox Coilonox secundum \N \N \N \N \N 21931 A.RJM-2008 Arctotis Arctotis sp. C RJM-2008 \N \N \N \N \N 21932 \N subspecies Phippsia algida subsp. concinna \N \N \N \N \N 21933 S.erectum Satyrium Satyrium erectum \N \N \N \N \N 21934 C.heterochroma Colocasia Colocasia heterochroma \N \N \N \N \N 21935 S.sexangulatum Syzygium Syzygium sexangulatum \N \N \N \N \N 21936 D.verticillatum Dracophyllum Dracophyllum verticillatum \N \N \N \N \N 21937 \N genus Briquetia \N \N \N \N \N 21938 D.bipindensis Diospyros Diospyros bipindensis \N \N \N \N \N 21939 N.hyalina Nassella Nassella hyalina \N \N \N \N \N 21940 P.berteriana Psychotria Psychotria berteriana \N \N \N \N \N 21941 C.burrelli Cuscuta Cuscuta burrelli \N \N \N \N \N 21942 P.rivale Pseudotrillium Pseudotrillium rivale \N \N \N \N \N 21943 S.greatae Salvia Salvia greatae lavender sage \N \N \N \N 21944 U.ectomycorrhiza environmental samples Taxonomy:197745 uncultured Fagus sylvatica from ectomycorrhiza \N \N \N \N \N 21945 P.rara Pimelea Pimelea rara \N \N \N \N \N 21946 J.micrantha Junellia Junellia micrantha \N \N \N \N \N 21947 C.maximus Clianthus Clianthus maximus \N \N \N \N \N 21948 \N genus Pleurostylia \N \N \N \N \N 21949 D.rabiensis Diospyros Diospyros rabiensis \N \N \N \N \N 21950 A.xerophytica Artemisia Artemisia xerophytica \N \N \N \N \N 21951 \N varietas Artemisia dracunculus var. changaica \N \N \N \N \N 21952 O.quadricolor Orchidantha Orchidantha quadricolor \N \N \N \N \N 21953 A.psilostachya Ambrosia Ambrosia psilostachya \N \N \N \N \N 21954 \N genus Ochthocosmus \N \N \N \N \N 21955 P.fasciculatum Piptatherum Piptatherum fasciculatum \N \N \N \N \N 21956 S.mexicana Stevia Stevia mexicana \N \N \N \N \N 21957 L.magnifica Lotononis Lotononis magnifica \N \N \N \N \N 21958 N.hamata Nepenthes Nepenthes hamata \N \N \N \N \N 21959 T.fasciatum Taraxacum Taraxacum fasciatum \N \N \N \N \N 21960 M.molluginis Mollugo Mollugo molluginis \N \N \N \N \N 21961 E.rengechiensis Eurya Eurya rengechiensis \N \N \N \N \N 21962 A.thuyoides Allocasuarina Allocasuarina thuyoides \N \N \N \N \N 21963 D.tenuifolia Dichrostachys Dichrostachys tenuifolia \N \N \N \N \N 21964 B.striata Bletilla Bletilla striata \N \N \N \N \N 21965 C.basedowii Cenchrus Cenchrus basedowii \N \N \N \N \N 21966 E.scabra Euphrasia Euphrasia scabra rough eyebright \N \N \N \N 21967 A.purpurea Actaea Actaea purpurea \N \N \N \N \N 21968 \N genus Ayensua \N \N \N \N \N 21969 N.aequilateralis Nothofagus Nothofagus aequilateralis \N \N \N \N \N 21970 P.subpunctata Psychotria Psychotria subpunctata \N \N \N \N \N 21971 P.petiolaris Primula Primula petiolaris \N \N \N \N \N 21972 S.imbricata Scaphyglottis Scaphyglottis imbricata \N \N \N \N \N 21973 T.wagnerianus Trachycarpus Trachycarpus wagnerianus \N \N \N \N \N 21974 A.arborescens Anaxeton Anaxeton arborescens \N \N \N \N \N 21975 C.schimperi Colchicum Colchicum schimperi \N \N \N \N \N 21976 \N varietas Lycopersicon peruvianum var. dentatum \N \N \N \N \N 21977 C.mandrarense Capurodendron Capurodendron mandrarense \N \N \N \N \N 21978 \N subfamily Barnadesioideae \N \N \N \N \N 21979 A.fimbriatum Arisaema Arisaema fimbriatum \N \N \N \N \N 21980 D.vitiensis Degeneria Degeneria vitiensis \N \N \N \N \N 21981 C.parvifolia Cordia Cordia parvifolia \N \N \N \N \N 21982 \N subspecies Scorzoneroides autumnalis subsp. pratensis \N \N \N \N \N 21983 S.birchii Sclerolaena Sclerolaena birchii \N \N \N \N \N 21984 C.bolensis Ceanothus Ceanothus bolensis \N \N \N \N \N 21985 A.mascaense Aeonium Aeonium mascaense \N \N \N \N \N 21986 \N genus Dieterlea \N \N \N \N \N 21987 \N genus Jepsonia \N \N \N \N \N 21988 L.candidum Lilium Lilium candidum \N \N \N \N \N 21989 \N genus Astilboides \N \N \N \N \N 21990 \N genus Cubanola \N \N \N \N \N 21991 E.culminicola Elaeocarpus Elaeocarpus culminicola \N \N \N \N \N 21992 A.macrophylla Alkanna Alkanna macrophylla \N \N \N \N \N 21993 C.tomentosum Cestrum Cestrum tomentosum \N \N \N \N \N 21994 \N subspecies Carex supina subsp. spaniocarpa \N \N \N \N \N 21995 O.persicus Opopanax Opopanax persicus \N \N \N \N \N 21996 C.unilobata Commiphora Commiphora unilobata \N \N \N \N \N 21997 D.coriacea Dioscorea Dioscorea coriacea \N \N \N \N \N 21998 G.nudicaulis Gymnosteris Gymnosteris nudicaulis \N \N \N \N \N 21999 S.torreyana Suaeda Suaeda torreyana \N \N \N \N \N 22000 C.lanceolaris Coprosma Coprosma lanceolaris \N \N \N \N \N 22001 \N genus Scaligeria \N \N \N \N \N 22002 Z.antillarum Zombia Zombia antillarum \N \N \N \N \N 22003 M.cerralboa Mammillaria Mammillaria cerralboa \N \N \N \N \N 22004 V.difformis Vinca Vinca difformis \N \N \N \N \N 22005 C.maxgrayi Craspedia Craspedia maxgrayi \N \N \N \N \N 22006 C.pervilleana Carphalea Carphalea pervilleana \N \N \N \N \N 22007 S.arabica Seddera Seddera arabica \N \N \N \N \N 22008 \N genus Coelia \N \N \N \N \N 22009 C.microphyllus Cotoneaster Cotoneaster microphyllus \N \N \N \N \N 22010 C.SH-2010 Cordia Cordia sp. SH-2010 \N \N \N \N \N 22011 \N genus Syzygium \N \N \N \N \N 22012 S.dives Saraca Saraca dives \N \N \N \N \N 22013 L.inermis Lawsonia Lawsonia inermis Jamaica mignonette,alcana,henna \N \N \N \N 22014 L.muelleri Livistona Livistona muelleri \N \N \N \N \N 22015 A.auriculata Ammannia Ammannia auriculata \N \N \N \N \N 22016 P.1207 Pyrostria Pyrostria sp. LN 1207 \N \N \N \N \N 22017 C.JS-2005 Clethra Clethra cf. ferruginea JS-2005 \N \N \N \N \N 22018 B.thyrsoides Buddleja Buddleja thyrsoides \N \N \N \N \N 22019 \N genus Curculigo \N \N \N \N \N 22020 E.hormorrhiza Euphorbia Euphorbia hormorrhiza \N \N \N \N \N 22021 X.phylicoides Xiphotheca Xiphotheca phylicoides \N \N \N \N \N 22022 G.1707 Goniolimon Goniolimon sp. Chase 1707 \N \N \N \N \N 22023 S.tuberifer Sonchus Sonchus tuberifer \N \N \N \N \N 22024 C.cerasiformis Ctenolepis Ctenolepis cerasiformis \N \N \N \N \N 22025 I.tuberosa Iris Iris tuberosa \N \N \N \N \N 22026 L.bicolor Lampranthus Lampranthus bicolor \N \N \N \N \N 22027 C.arundinacea Costularia Costularia arundinacea \N \N \N \N \N 22028 P.paraguayense Polygonum Polygonum paraguayense \N \N \N \N \N 22029 M.adenotricha Mimosa Mimosa adenotricha \N \N \N \N \N 22030 S.macrantha Scrophularia Scrophularia macrantha \N \N \N \N \N 22031 Q.integrifolia Quiina Quiina integrifolia \N \N \N \N \N 22032 \N subspecies Primula pauciflora var. pauciflora \N \N \N \N \N 22033 A.vulgare Arisarum Arisarum vulgare \N \N \N \N \N 22034 F.KS-2008 Fosterella Fosterella sp. KS-2008 \N \N \N \N \N 22035 C.poecilanthus Croton Croton poecilanthus \N \N \N \N \N 22036 V.ciliata Veronica Veronica ciliata \N \N \N \N \N 22037 H.canadense Hieracium Hieracium canadense \N \N \N \N \N 22038 E.bicolor Eragrostis Eragrostis bicolor \N \N \N \N \N 22039 T.limprichtii Taxillus Taxillus limprichtii \N \N \N \N \N 22040 \N genus Synostemon \N \N \N \N \N 22041 S.peruviana Stenoptera Stenoptera peruviana \N \N \N \N \N 22042 \N genus Caccinia \N \N \N \N \N 22043 E.caudata Echinochloa Echinochloa caudata \N \N \N \N \N 22044 \N varietas Rhynchospora corniculata var. interior \N \N \N \N \N 22045 \N genus Dorobaea \N \N \N \N \N 22046 S.outanscianensis Smilax Smilax outanscianensis \N \N \N \N \N 22047 N.ramosissmus Nemacladus Nemacladus ramosissmus \N \N \N \N \N 22048 L.sandwicense Lycium Lycium sandwicense \N \N \N \N \N 22049 C.ankaranensis Coffea Coffea ankaranensis \N \N \N \N \N 22050 P.lindheimeri Polygala Polygala lindheimeri shrubby milkwort \N \N \N \N 22051 \N genus Haemanthus African blood lilies,blood lilies \N \N \N \N 22052 C.pringlei Crocanthemum Crocanthemum pringlei \N \N \N \N \N 22053 G.superba Govenia Govenia superba \N \N \N \N \N 22054 B.schunkeana Brasiliorchis Brasiliorchis schunkeana \N \N \N \N \N 22055 \N genus Tauschia \N \N \N \N \N 22056 D.paradoxus Dissocarpus Dissocarpus paradoxus \N \N \N \N \N 22057 D.lanceolata Dypsis Dypsis lanceolata \N \N \N \N \N 22058 A.papuana Albertisia Albertisia papuana \N \N \N \N \N 22059 A.odontostephana Anthemis Anthemis odontostephana \N \N \N \N \N 22060 E.leiogyne Elizabetha Elizabetha leiogyne \N \N \N \N \N 22061 P.brachyspermum Piptochaetium Piptochaetium brachyspermum \N \N \N \N \N 22062 D.flavens Disporum Disporum flavens \N \N \N \N \N 22063 \N genus Pseudopeponidium \N \N \N \N \N 22064 D.mexicana Dugesia Dugesia mexicana \N \N \N \N \N 22065 \N genus Trichopetalum \N \N \N \N \N 22066 S.lichtensteinii Solanum Solanum lichtensteinii \N \N \N \N \N 22067 \N subspecies Vantanea compacta subsp. microcarpa \N \N \N \N \N 22068 D.vogelii Diplotaxis Diplotaxis vogelii \N \N \N \N \N 22069 G.ramosa Gentianella Gentianella ramosa \N \N \N \N \N 22070 G.mexiae Guatteria Guatteria mexiae \N \N \N \N \N 22071 B.dielsiana Berberis Berberis dielsiana \N \N \N \N \N 22072 M.mischophylla Myrcia Myrcia mischophylla \N \N \N \N \N 22073 C.longibrachiata Carex Carex longibrachiata \N \N \N \N \N 22074 B.leonensis Brachystegia Brachystegia leonensis \N \N \N \N \N 22075 H.flahaultiana Hyacinthoides Hyacinthoides flahaultiana \N \N \N \N \N 22076 \N genus Vanzijlia \N \N \N \N \N 22077 P.frigida Potentilla Potentilla frigida \N \N \N \N \N 22078 \N varietas Brazoria truncata var. truncata \N \N \N \N \N 22079 M.aitonis Mesembryanthemum Mesembryanthemum aitonis \N \N \N \N \N 22080 \N varietas Mimulus tenellus var. tenellus \N \N \N \N \N 22081 C.capitatus Croton Croton capitatus hogwort \N \N \N \N 22082 P.tenuiflora Puccinellia Puccinellia tenuiflora \N \N \N \N \N 22083 L.leontopodioides Leontopodium Leontopodium leontopodioides \N \N \N \N \N 22084 C.comosa Crotalaria Crotalaria comosa \N \N \N \N \N 22085 C.6188 Croton Croton aff. mutisianus Ceron 6188 \N \N \N \N \N 22086 B.cumingii Bulbophyllum Bulbophyllum cumingii \N \N \N \N \N 22087 T.aquilegifolium Tetrataenium Tetrataenium aquilegifolium \N \N \N \N \N 22088 E.luteum Epilobium Epilobium luteum \N \N \N \N \N 22089 \N genus Couratari \N \N \N \N \N 22090 V.chathamica Hebe Veronica chathamica \N \N \N \N \N 22091 N.drepanophylla Nogalia Nogalia drepanophylla \N \N \N \N \N 22092 I.mildbraediana Indigofera Indigofera mildbraediana \N \N \N \N \N 22093 T.dalzellii Thottea Thottea dalzellii \N \N \N \N \N 22094 M.velebiticum Melampyrum Melampyrum velebiticum \N \N \N \N \N 22095 \N genus Stoibrax \N \N \N \N \N 22096 P.camphorata Pteronia Pteronia camphorata \N \N \N \N \N 22097 C.aureola Corymbia Corymbia aureola \N \N \N \N \N 22098 S.setosum Stenosiphonium Stenosiphonium setosum \N \N \N \N \N 22099 F.thunbergii Fritillaria Fritillaria thunbergii \N \N \N \N \N 22100 \N genus Tragopogon \N \N \N \N \N 22101 T.multinoda Taverniera Taverniera multinoda \N \N \N \N \N 22102 E.fortunei Euonymus Euonymus fortunei winter creeper \N \N \N \N 22103 C.ficifolius Cucumis Cucumis ficifolius \N \N \N \N \N 22104 \N genus Saxifraga \N \N \N \N \N 22105 \N genus Hintonia \N \N \N \N \N 22106 Q.stellata Quercus Quercus stellata post oak \N \N \N \N 22107 M.euonymoides Mastixia Mastixia euonymoides \N \N \N \N \N 22108 S.subfragilis Salix Salix subfragilis \N \N \N \N \N 22109 G.scytophylla Guatteria Guatteria scytophylla \N \N \N \N \N 22110 \N genus Dimorphostemon \N \N \N \N \N 22111 M.schlechteri Menepetalum Menepetalum schlechteri \N \N \N \N \N 22112 P.ribesioides Piper Piper ribesioides \N \N \N \N \N 22113 B.sinuata Babiana Babiana sinuata \N \N \N \N \N 22114 A.serpyllifolia Arenaria Arenaria serpyllifolia thyme-leaf sandwort \N \N \N \N 22115 S.trilopha Serruria Serruria trilopha \N \N \N \N \N 22116 K.affinis Kohleria Kohleria affinis \N \N \N \N \N 22117 \N varietas Corispermum tibeticum var. pilocarpum \N \N \N \N \N 22118 P.brachycarpa Pomaria Pomaria brachycarpa \N \N \N \N \N 22119 P.rigidistyla Pimpinella Pimpinella rigidistyla \N \N \N \N \N 22120 T.CH_M5Sdcum Triticum Triticum sp. CH_M5Sdcum \N \N \N \N \N 22121 C.velutina Crabbea Crabbea velutina \N \N \N \N \N 22122 F.scabra Fagonia Fagonia scabra \N \N \N \N \N 22123 R.bracteata Renealmia Renealmia bracteata \N \N \N \N \N 22124 T.eriocephalum Trifolium Trifolium eriocephalum \N \N \N \N \N 22125 S.farahimpensis Schismatoclada Schismatoclada farahimpensis \N \N \N \N \N 22126 S.subsericea Stylosanthes Stylosanthes subsericea \N \N \N \N \N 22127 C.tommasinianus Crocus Crocus tommasinianus \N \N \N \N \N 22128 A.perrieri Adenia Adenia perrieri \N \N \N \N \N 22129 P.muelleri Podolepis Podolepis muelleri \N \N \N \N \N 22130 D.signata Decaisnina Decaisnina signata \N \N \N \N \N 22131 Z.baldschuanica Zoegea Zoegea baldschuanica \N \N \N \N \N 22132 L.penicilliloba Lasiobema Lasiobema penicilliloba \N \N \N \N \N 22133 A.firmula Ancistrotropis Ancistrotropis firmula \N \N \N \N \N 22134 K.pilosa Killickia Killickia pilosa \N \N \N \N \N 22135 P.mucronifolia Protea Protea mucronifolia \N \N \N \N \N 22136 \N subspecies Hedera helix subsp. rhizomatifera \N \N \N \N \N 22137 \N genus Shibataea \N \N \N \N \N 22138 V.juncea Viminaria Viminaria juncea \N \N \N \N \N 22139 B.caapi Banisteriopsis Banisteriopsis caapi \N \N \N \N \N 22140 A.schubertii Allium Allium schubertii \N \N \N \N \N 22141 C.bejolghota Cinnamomum Cinnamomum bejolghota \N \N \N \N \N 22142 G.arenaria Gentianella Gentianella arenaria \N \N \N \N \N 22143 A.senanense Aconitum Aconitum senanense \N \N \N \N \N 22144 \N genus Oreacanthus \N \N \N \N \N 22145 S.furfuraceum Solanum Solanum furfuraceum \N \N \N \N \N 22146 B.tokbrai Blumeodendron Blumeodendron tokbrai \N \N \N \N \N 22147 T.3339 Taraxacum Taraxacum sp. JK 3339 \N \N \N \N \N 22148 C.0311 Costus Costus aff. barbatus Kay 0311 \N \N \N \N \N 22149 C.cytisoides Crotalaria Crotalaria cytisoides \N \N \N \N \N 22150 S.ecuadorensis Siphocampylus Siphocampylus ecuadorensis \N \N \N \N \N 22151 A.trichotomum Airosperma Airosperma trichotomum \N \N \N \N \N 22152 \N genus Callopsis \N \N \N \N \N 22153 D.mooiensis Dianthus Dianthus mooiensis \N \N \N \N \N 22154 E.Esp8202 Elleanthus Elleanthus sp. Esp8202 \N \N \N \N \N 22155 B.tugwelliae Bijlia Bijlia tugwelliae \N \N \N \N \N 22156 W.discolor Warczewiczella Warczewiczella discolor \N \N \N \N \N 22157 I.wakefieldiana Isolepis Isolepis wakefieldiana \N \N \N \N \N 22158 C.baccatum Capsicum Capsicum baccatum \N \N \N \N \N 22159 \N subspecies Halimium halimifolium subsp. multiflorum \N \N \N \N \N 22160 O.mucronata Oreocallis Oreocallis mucronata \N \N \N \N \N 22161 M.debilis Myosotis Myosotis debilis \N \N \N \N \N 22162 A.amplectens Allium Allium amplectens \N \N \N \N \N 22163 \N subspecies Corema album subsp. azoricum \N \N \N \N \N 22164 D.aureoglandulosus Didymocarpus Didymocarpus aureoglandulosus \N \N \N \N \N 22165 C.tunghinensis Camellia Camellia tunghinensis \N \N \N \N \N 22166 T.xerographica Tillandsia Tillandsia xerographica \N \N \N \N \N 22167 \N genus Leptodermis \N \N \N \N \N 22168 \N genus Teyleria \N \N \N \N \N 22169 B.manipurana Berberis Berberis manipurana \N \N \N \N \N 22170 S.curtiflora Sinningia Sinningia curtiflora \N \N \N \N \N 22171 P.P094 Physalis Physalis sp. P094 \N \N \N \N \N 22172 P.urophyllidium Protium Protium urophyllidium \N \N \N \N \N 22173 D.oblongus Durio Durio oblongus \N \N \N \N \N 22174 C.africana Cayaponia Cayaponia africana \N \N \N \N \N 22175 L.resinosa Lourtella Lourtella resinosa \N \N \N \N \N 22176 S.suberosus Stenodon Stenodon suberosus \N \N \N \N \N 22177 L.vellerea Ligularia Ligularia vellerea \N \N \N \N \N 22178 C.rotundifolium Commidendrum Commidendrum rotundifolium \N \N \N \N \N 22179 D.candidum Dendrobium Dendrobium candidum \N \N \N \N \N 22180 \N genus Elettaria \N \N \N \N \N 22181 S.obtusatum Sedum Sedum obtusatum \N \N \N \N \N 22182 \N genus Stenomesson \N \N \N \N \N 22183 D.crassifolia Draba Draba crassifolia \N \N \N \N \N 22184 D.contrajerva Dorstenia Dorstenia contrajerva \N \N \N \N \N 22185 L.pectinata Leptinella Leptinella pectinata \N \N \N \N \N 22186 S.impressifolia Salacia Salacia impressifolia \N \N \N \N \N 22187 T.palmerii Triteleiopsis Triteleiopsis palmerii \N \N \N \N \N 22188 \N subspecies Viola brevistipulata subsp. hidakana \N \N \N \N \N 22189 \N varietas Festuca ovina var. brevifolia \N \N \N \N \N 22190 P.capitata Primula Primula capitata \N \N \N \N \N 22191 C.muricata Carex Carex muricata \N \N \N \N \N 22192 G.ovalifolia Garcinia Garcinia ovalifolia \N \N \N \N \N 22193 C.hookerianum Chondropetalum Chondropetalum hookerianum \N \N \N \N \N 22194 M.porphyrea Metrosideros Metrosideros porphyrea \N \N \N \N \N 22195 \N subspecies Isatis cappadocica subsp. macrocarpa \N \N \N \N \N 22196 H.pictum Hieracium Hieracium pictum \N \N \N \N \N 22197 E.burkii Elephantorrhiza Elephantorrhiza burkii \N \N \N \N \N 22198 C.sancta Crepis Crepis sancta \N \N \N \N \N 22199 \N genus Rulingia \N \N \N \N \N 22200 P.luzoniensis Psychotria Psychotria luzoniensis \N \N \N \N \N 22201 B.microphylla Balbisia Balbisia microphylla \N \N \N \N \N 22202 C.projecta Carex Carex projecta necklace sedge \N \N \N \N 22203 \N genus Anisotes \N \N \N \N \N 22204 S.catorce Sedum Sedum catorce \N \N \N \N \N 22205 D.702451 Daphnandra Daphnandra sp. CBG 702451 \N \N \N \N \N 22206 C.ignescens Colchicum Colchicum ignescens \N \N \N \N \N 22207 \N genus Calcareoboea \N \N \N \N \N 22208 \N subspecies Reseda aucheri subsp. afghanica \N \N \N \N \N 22209 C.micranthum Cypripedium Cypripedium micranthum \N \N \N \N \N 22210 L.pungens Lebeckia Lebeckia pungens \N \N \N \N \N 22211 P.polyphylla Pinellia Pinellia polyphylla \N \N \N \N \N 22212 E.tetragonum Exacum Exacum tetragonum \N \N \N \N \N 22213 \N genus Luxemburgia \N \N \N \N \N 22214 M.brevirostrata Monsonia Monsonia brevirostrata \N \N \N \N \N 22215 C.hispidula Chamaecrista Chamaecrista hispidula \N \N \N \N \N 22216 A.lipocarphoides Alinula Alinula lipocarphoides \N \N \N \N \N 22217 G.chinensis Gymnocladus Gymnocladus chinensis \N \N \N \N \N 22218 A.gabonii Atractogyne Atractogyne gabonii \N \N \N \N \N 22219 D.tysonii Dielitzia Dielitzia tysonii \N \N \N \N \N 22220 O.serpyllifolia Ourisia Ourisia serpyllifolia \N \N \N \N \N 22221 M.macrobotrys Mischarytera Mischarytera macrobotrys \N \N \N \N \N 22222 \N genus Peltanthera \N \N \N \N \N 22223 T.eliosurum Typhonium Typhonium eliosurum \N \N \N \N \N 22224 T.dasyanthum Thaumatocaryon Thaumatocaryon dasyanthum \N \N \N \N \N 22225 H.nothum Hieracium Hieracium nothum \N \N \N \N \N 22226 B.orientalis Boreava Boreava orientalis \N \N \N \N \N 22227 M.fuliginosa Macropidia Macropidia fuliginosa \N \N \N \N \N 22228 A.macrolema Actinolema Actinolema macrolema \N \N \N \N \N 22229 C.trifolia Cayratia Cayratia trifolia \N \N \N \N \N 22230 G.atroviolaceus Gladiolus Gladiolus atroviolaceus \N \N \N \N \N 22231 F.aethiopica Felicia Felicia aethiopica \N \N \N \N \N 22232 S.worthingtonii Shorea Shorea worthingtonii \N \N \N \N \N 105986 \N genus Nemesia \N \N \N \N \N 22233 O.decumbens Opuntia Opuntia decumbens \N \N \N \N \N 22234 M.brysiana Myrmecophila Myrmecophila brysiana \N \N \N \N \N 22235 \N genus Avonia \N \N \N \N \N 22236 S.amoena Scutellaria Scutellaria amoena \N \N \N \N \N 22237 \N genus Coccoloba \N \N \N \N \N 22238 B.nitida Baphia Baphia nitida \N \N \N \N \N 22239 E.longigluma Ehrharta Ehrharta longigluma \N \N \N \N \N 22240 W.amplexifolia Warea Warea amplexifolia \N \N \N \N \N 22241 M.nicotianifolia Macrocarpaea Macrocarpaea nicotianifolia \N \N \N \N \N 22242 N.marginatum Noticastrum Noticastrum marginatum \N \N \N \N \N 22243 I.30 Ixora Ixora sp. Andrianjafy et al. 30 \N \N \N \N \N 22244 C.1098 Cardamine Cardamine aff. flexuosa OSBU 1098 \N \N \N \N \N 22245 P.moschata Palaua Palaua moschata \N \N \N \N \N 22246 R.ilicifolia Rinorea Rinorea ilicifolia \N \N \N \N \N 22247 M.multiceps Mammillaria Mammillaria multiceps \N \N \N \N \N 22248 I.spuria Iris Iris spuria blue iris \N \N \N \N 22249 A.costulata Aspalathus Aspalathus costulata \N \N \N \N \N 22250 S.wuyiensis Sagittaria Sagittaria wuyiensis \N \N \N \N \N 22251 \N genus Lafuentea \N \N \N \N \N 22252 A.arborescens Achyranthes Achyranthes arborescens \N \N \N \N \N 22253 O.gordoniifolius Ochrothallus Ochrothallus gordoniifolius \N \N \N \N \N 22254 S.AFG-2011 Schefflera Schefflera sp. AFG-2011 \N \N \N \N \N 22255 G.1032 Gagea Gagea cf. reticulata Zarrei & Zarre 1032 \N \N \N \N \N 22256 A.ochroleuca Anchusa Anchusa ochroleuca \N \N \N \N \N 22257 A.abietina Aspalathus Aspalathus abietina \N \N \N \N \N 22258 \N no rank Chloridoideae incertae sedis \N \N \N \N \N 22259 O.lutea Orbea Orbea lutea \N \N \N \N \N 22260 B.sample environmental samples Taxonomy:531413 Bignoniaceae environmental sample \N \N \N \N \N 22261 \N genus Zenia \N \N \N \N \N 22262 R.gigantea Rorippa Rorippa gigantea \N \N \N \N \N 22263 L.stuevei Lespedeza Lespedeza stuevei \N \N \N \N \N 22264 R.sarcodes Rhododendron Rhododendron sarcodes \N \N \N \N \N 22265 P.pseudolyallii Pimelea Pimelea pseudolyallii \N \N \N \N \N 22266 V.8658 Vitis Vitis sp. 8658 \N \N \N \N \N 22267 P.elegans Peucedanum Peucedanum elegans \N \N \N \N \N 22268 C.pulcherrima Caesalpinia Caesalpinia pulcherrima pride-of-Barbados \N \N \N \N 22269 A.indica Aeschynomene Aeschynomene indica \N \N \N \N \N 22270 \N subspecies Arabidopsis halleri subsp. halleri \N \N \N \N \N 22271 A.hupehensis Anemone Anemone hupehensis \N \N \N \N \N 22272 D.brachyceras Disa Disa brachyceras \N \N \N \N \N 22273 \N genus Cycnoches \N \N \N \N \N 22274 M.brownii Meionectes Meionectes brownii \N \N \N \N \N 22275 O.SH-2010 Ophiorrhiza Ophiorrhiza sp. SH-2010 \N \N \N \N \N 22276 E.minimiflora Elachyptera Elachyptera minimiflora \N \N \N \N \N 22277 H.cymbiformis Haworthia Haworthia cymbiformis \N \N \N \N \N 22278 L.careyanus Larsenianthus Larsenianthus careyanus \N \N \N \N \N 22279 L.jaredii Lepidium Lepidium jaredii \N \N \N \N \N 22280 J.gendarussa Justicia Justicia gendarussa \N \N \N \N \N 22281 E.aestiva Erica Erica aestiva \N \N \N \N \N 22282 P.trinervis Pultenaea Pultenaea trinervis \N \N \N \N \N 22283 A.filipendulina Achillea Achillea filipendulina \N \N \N \N \N 22284 B.deliciosa Begonia Begonia deliciosa \N \N \N \N \N 22285 S.PF-2010 Schefflera Schefflera sp. C PF-2010 \N \N \N \N \N 22286 A.siamensis Acranthera Acranthera siamensis \N \N \N \N \N 22287 U.tridentata Utricularia Utricularia tridentata \N \N \N \N \N 22288 R.mayebarae Rhododendron Rhododendron mayebarae \N \N \N \N \N 22289 M.oligantha Microtis Microtis oligantha \N \N \N \N \N 22290 N.cochenillifera Nopalea Nopalea cochenillifera cochineal cactus \N \N \N \N 22291 C.River' Carex Carex sp. 'Buffalo River' \N \N \N \N \N 22292 O.quimilo Opuntia Opuntia quimilo \N \N \N \N \N 22293 H.piperita Hedeoma Hedeoma piperita \N \N \N \N \N 22294 P.DG-2010 Parrya Parrya aff. ajanensis DG-2010 \N \N \N \N \N 22295 K.macedonica Knautia Knautia macedonica \N \N \N \N \N 22296 \N varietas Triumfetta pilosa var. tomentosa \N \N \N \N \N 22297 \N subspecies Helminthotheca comosa subsp. comosa \N \N \N \N \N 22298 H.arequipensis Hoffmannseggia Hoffmannseggia arequipensis \N \N \N \N \N 22299 M.speciosus Maguireothamnus Maguireothamnus speciosus \N \N \N \N \N 22300 C.petiolaris Calceolaria Calceolaria petiolaris \N \N \N \N \N 22301 E.rubriseminalis Euphorbia Euphorbia rubriseminalis \N \N \N \N \N 22302 L.flexuosum Lamium Lamium flexuosum \N \N \N \N \N 22303 W.densiflora Wallichia Wallichia densiflora \N \N \N \N \N 22304 R.praevernum Rhododendron Rhododendron praevernum \N \N \N \N \N 22305 H.ballii Heliotropium Heliotropium ballii \N \N \N \N \N 22306 M.beneckei Mammillaria Mammillaria beneckei \N \N \N \N \N 22307 B.deplanchei Basselinia Basselinia deplanchei \N \N \N \N \N 22308 B.orientalis Berlinia Berlinia orientalis \N \N \N \N \N 22309 H.edeni Hoya Hoya edeni \N \N \N \N \N 22310 S.guiyangensis Smilax Smilax guiyangensis \N \N \N \N \N 22311 A.tocantina Aechmea Aechmea tocantina \N \N \N \N \N 22312 O.rufipogon Oryza Oryza nivara x Oryza rufipogon \N \N \N \N \N 22313 \N genus Beckmannia \N \N \N \N \N 22314 M.diplotricha Mimosa Mimosa diplotricha \N \N \N \N \N 22315 C.MG395 Clusia Clusia sp. MG395 \N \N \N \N \N 22316 T.chardonii Tamania Tamania chardonii \N \N \N \N \N 22317 C.falcata Cliffortia Cliffortia falcata \N \N \N \N \N 22318 P.induta Paloue Paloue induta \N \N \N \N \N 22319 C.mastersii Cymbidium Cymbidium mastersii \N \N \N \N \N 22320 G.anthracina Guatteria Guatteria anthracina \N \N \N \N \N 22321 F.brevifolia Felicia Felicia brevifolia \N \N \N \N \N 22322 A.roseiflora Arenaria Arenaria roseiflora \N \N \N \N \N 22323 \N genus Macrotorus \N \N \N \N \N 22324 R.concinna Renealmia Renealmia concinna \N \N \N \N \N 22325 S.hederaceus Scindapsus Scindapsus hederaceus \N \N \N \N \N 22326 P.alpicola Polygala Polygala alpicola \N \N \N \N \N 22327 O.aesculapii Ophrys Ophrys aesculapii \N \N \N \N \N 22328 \N genus Rosularia \N \N \N \N \N 106278 \N genus Procris \N \N \N \N \N 22329 P.sanguisorboides Packera Packera sanguisorboides burnet ragwort \N \N \N \N 22330 D.arborea Dubautia Dubautia arborea \N \N \N \N \N 22331 M.strasseri Medicago Medicago strasseri \N \N \N \N \N 22332 S.vallesia Silene Silene vallesia \N \N \N \N \N 22333 C.runcinata Crepis Crepis runcinata \N \N \N \N \N 22334 S.minuta Solenopsis Solenopsis minuta \N \N \N \N \N 22335 \N genus Serissa \N \N \N \N \N 22336 A.tenuifolia Abobra Abobra tenuifolia \N \N \N \N \N 22337 A.cameronii Aloe Aloe cameronii \N \N \N \N \N 22338 O.davidiana Ostryopsis Ostryopsis davidiana \N \N \N \N \N 22339 O.huadongense Ostericum Ostericum huadongense \N \N \N \N \N 22340 M.1617 Maranta Maranta aff. longipes Andersson 1617 \N \N \N \N \N 22341 S.taraikensis Salix Salix taraikensis \N \N \N \N \N 22342 \N genus Cyrtosia \N \N \N \N \N 22343 \N subspecies Laserpitium nestleri subsp. lainzii \N \N \N \N \N 22344 V.dentifolium Verbascum Verbascum dentifolium \N \N \N \N \N 22345 \N tribe Sinningieae \N \N \N \N \N 22346 P.fallens Piper Piper fallens \N \N \N \N \N 22347 E.repens Echidnopsis Echidnopsis repens \N \N \N \N \N 22348 S.pulverulenta Smilax Smilax pulverulenta downy carrionflower \N \N \N \N 22349 S.contumazaense Solanum Solanum contumazaense \N \N \N \N \N 22350 A.densiflora Asclepias Asclepias densiflora \N \N \N \N \N 22351 M.datura Masdevallia Masdevallia datura \N \N \N \N \N 22352 D.sericeus Davilanthus Davilanthus sericeus \N \N \N \N \N 22353 N.galbanum Notobubon Notobubon galbanum \N \N \N \N \N 22354 C.chrysantha Crepis Crepis chrysantha \N \N \N \N \N 22355 A.glechonophylla Ageratina Ageratina glechonophylla \N \N \N \N \N 22356 R.cardiophyllus Ranunculus Ranunculus cardiophyllus \N \N \N \N \N 22357 P.preussii Pristimera Pristimera preussii \N \N \N \N \N 22358 M.filipes Meximalva Meximalva filipes \N \N \N \N \N 22359 \N genus Sinningia \N \N \N \N \N 22360 S.haworthii Senecio Senecio haworthii \N \N \N \N \N 22361 N.pogonosperma Nepeta Nepeta pogonosperma \N \N \N \N \N 22362 \N subspecies Crocus speciosus subsp. xantholaimos \N \N \N \N \N 22363 \N genus Cocos \N \N \N \N \N 22364 D.borbonica Disa Disa borbonica \N \N \N \N \N 22365 D.acutangula Dombeya Dombeya acutangula \N \N \N \N \N 22366 B.alba Bidens Bidens alba \N \N \N \N \N 22367 P.nicandroides Physalis Physalis nicandroides \N \N \N \N \N 22368 B.halimifolia Baccharis Baccharis halimifolia \N \N \N \N \N 22369 \N genus Haplophyton \N \N \N \N \N 22370 O.longifolia Oserya Oserya longifolia \N \N \N \N \N 22371 \N varietas Lupinus excubitus var. excubitus \N \N \N \N \N 22372 \N genus Lefebvrea \N \N \N \N \N 22373 S.sanctae-rosae Solanum Solanum sanctae-rosae \N \N \N \N \N 22374 T.javanicum Thalictrum Thalictrum javanicum \N \N \N \N \N 22375 F.venosa Fontainea Fontainea venosa \N \N \N \N \N 22376 C.andicola Cristaria Cristaria andicola \N \N \N \N \N 22377 P.861 Prescottia Prescottia aff. oligantha da Silva 861 \N \N \N \N \N 22378 C.leptoloma Corymbia Corymbia leptoloma \N \N \N \N \N 22379 S.procumbens Solanum Solanum procumbens \N \N \N \N \N 22380 N.fimbriata Neohouzeaua Neohouzeaua fimbriata \N \N \N \N \N 22381 S.laciniata Seymeria Seymeria laciniata \N \N \N \N \N 22382 E.MD-2011 Elleanthus Elleanthus sp. MD-2011 \N \N \N \N \N 22383 D.hyssopifolius Dianthus Dianthus hyssopifolius \N \N \N \N \N 22384 P.parvulus Penstemon Penstemon parvulus \N \N \N \N \N 22385 E.montenegrina Euphorbia Euphorbia montenegrina \N \N \N \N \N 22386 F.hephaestophila Festuca Festuca hephaestophila \N \N \N \N \N 22387 C.cuatrecasasii Carduncellus Carduncellus cuatrecasasii \N \N \N \N \N 22388 A.geyeri Antennaria Antennaria geyeri \N \N \N \N \N 22389 \N family Muntingiaceae \N \N \N \N \N 22390 E.dahuricus Elymus Elymus dahuricus \N \N \N \N \N 22391 T.simense Trifolium Trifolium simense \N \N \N \N \N 22392 P.pauciflorum Polemonium Polemonium pauciflorum \N \N \N \N \N 22393 C.kotschyi Chesneya Chesneya kotschyi \N \N \N \N \N 22394 A.caerulea Arabis Arabis caerulea \N \N \N \N \N 22395 \N subspecies Asclepias asperula subsp. asperula \N \N \N \N \N 22396 G.oppositiflora Girgensohnia Girgensohnia oppositiflora \N \N \N \N \N 22397 L.hawaiiensis Luzula Luzula hawaiiensis Hawaii woodrush \N \N \N \N 22398 P.plantagineus Peristylus Peristylus plantagineus \N \N \N \N \N 22399 C.leiocarpon Capnophyllum Capnophyllum leiocarpon \N \N \N \N \N 22400 C.oxystachyum Combretum Combretum oxystachyum \N \N \N \N \N 22401 C.albida Crotalaria Crotalaria albida \N \N \N \N \N 22402 A.procumbens Aphanelytrum Aphanelytrum procumbens \N \N \N \N \N 22403 P.glomerata Pfaffia Pfaffia glomerata \N \N \N \N \N 22404 C.arundinacea Capeochloa Capeochloa arundinacea \N \N \N \N \N 22405 G.sicula Gagea Gagea sicula \N \N \N \N \N 22406 L.cuneatum Lycium Lycium cuneatum \N \N \N \N \N 22407 P.pittieri Psychotria Psychotria pittieri \N \N \N \N \N 22408 L.SH-2010 Lindera Lindera sp. SH-2010 \N \N \N \N \N 22409 T.lindleyanum Typhonodorum Typhonodorum lindleyanum \N \N \N \N \N 22410 \N subspecies Draba pulvinata subsp. berryi \N \N \N \N \N 22411 U.picta Uraria Uraria picta \N \N \N \N \N 22412 G.villosum Gastrolobium Gastrolobium villosum \N \N \N \N \N 22413 E.paradoxa Echinacea Echinacea paradoxa \N \N \N \N \N 22414 C.ericoides Chaetopappa Chaetopappa ericoides \N \N \N \N \N 22415 \N subspecies Genista linifolia subsp. pallida \N \N \N \N \N 22416 L.melampyroides Lysimachia Lysimachia melampyroides \N \N \N \N \N 22417 S.albida Shorea Shorea albida alan batu \N \N \N \N 22418 H.clivicola Hymenochilus Hymenochilus clivicola \N \N \N \N \N 22419 \N genus Scolochloa \N \N \N \N \N 22420 \N family Cytinaceae \N \N \N \N \N 22421 S.MG-2007 Stictophyllorchis Stictophyllorchis sp. MG-2007 \N \N \N \N \N 22422 M.tocopillana Malesherbia Malesherbia tocopillana \N \N \N \N \N 22423 S.sucrense Solanum Solanum sucrense \N \N \N \N \N 22424 D.macrocarpum Detarium Detarium macrocarpum \N \N \N \N \N 22425 P.lindheimeri Physaria Physaria lindheimeri \N \N \N \N \N 22426 D.lagascae Dolichlasium Dolichlasium lagascae \N \N \N \N \N 22427 P.cordovensis Parodiophyllochloa Parodiophyllochloa cordovensis \N \N \N \N \N 22428 \N genus Erythropalum \N \N \N \N \N 22429 \N genus Protoschwenkia \N \N \N \N \N 22430 S.brevipes Synsepalum Synsepalum brevipes \N \N \N \N \N 22431 C.capensis Cunonia Cunonia capensis \N \N \N \N \N 22432 A.hispanica Avena Avena hispanica \N \N \N \N \N 22433 M.americanum Malvastrum Malvastrum americanum \N \N \N \N \N 22434 I.cerotus Ischnosiphon Ischnosiphon cerotus \N \N \N \N \N 22435 T.cebolletum Trichocentrum Trichocentrum cebolletum \N \N \N \N \N 22436 \N varietas Penstemon fruticosus var. serratus \N \N \N \N \N 22437 S.rugosa Sagraea Sagraea rugosa \N \N \N \N \N 22438 G.gossypina Gerbera Gerbera gossypina \N \N \N \N \N 22439 V.SH-2010 Viburnum Viburnum sp. SH-2010 \N \N \N \N \N 22440 C.lancifolia Campanumoea Campanumoea lancifolia \N \N \N \N \N 22441 C.saltensis Cedrela Cedrela saltensis \N \N \N \N \N 22442 B.falcata Banksia Banksia falcata \N \N \N \N \N 22443 \N genus Sipolisia \N \N \N \N \N 22444 P.longipes Pseudoxandra Pseudoxandra longipes \N \N \N \N \N 22445 \N genus Swertia \N \N \N \N \N 22446 S.decorus Siphonochilus Siphonochilus decorus \N \N \N \N \N 22447 \N varietas Caulanthus heterophyllus var. heterophyllus \N \N \N \N \N 22448 C.rupestris Corynocarpus Corynocarpus rupestris \N \N \N \N \N 22449 \N genus Tengia \N \N \N \N \N 22450 R.pisocarpa Rosa Rosa pisocarpa cluster rose,pea rose \N \N \N \N 22451 P.filipes Passiflora Passiflora filipes \N \N \N \N \N 22452 \N varietas Stewartia ovata var. grandiflora \N \N \N \N \N 22453 C.grandis Caldesia Caldesia grandis \N \N \N \N \N 22454 \N genus Himalaiella \N \N \N \N \N 22455 H.mekongensis Harmandia Harmandia mekongensis \N \N \N \N \N 22456 E.prinoides Eriobotrya Eriobotrya prinoides \N \N \N \N \N 22457 \N genus Sarcochilus \N \N \N \N \N 22458 \N varietas Prunus serotina var. rufula \N \N \N \N \N 22459 B.944 Borya Borya aff. sphaerocephala Conran et al. 944 \N \N \N \N \N 22460 A.cordifolia Asclepias Asclepias cordifolia \N \N \N \N \N 22461 A.polystachyus Axonopus Axonopus polystachyus \N \N \N \N \N 22462 D.aggregatum Dendrobium Dendrobium aggregatum \N \N \N \N \N 22463 P.seemannii Passiflora Passiflora seemannii \N \N \N \N \N 22464 B.subaequalis Bambusa Bambusa subaequalis \N \N \N \N \N 22465 P.odoratissimus Pandanus Pandanus odoratissimus \N \N \N \N \N 22466 M.obtusa Malesherbia Malesherbia obtusa \N \N \N \N \N 22467 E.humile Echium Echium humile \N \N \N \N \N 22468 O.duparquetiana Ouratea Ouratea duparquetiana \N \N \N \N \N 22469 M.caeca Moraea Moraea caeca \N \N \N \N \N 22470 N.1530 Notylia Notylia sp. Whitten 1530 \N \N \N \N \N 22471 M.retusa Morinda Morinda retusa \N \N \N \N \N 22472 H.inconspicuum Heliotropium Heliotropium inconspicuum \N \N \N \N \N 22473 H.fusca Hierochloe Hierochloe fusca \N \N \N \N \N 22474 \N subspecies Taraxacum platycarpum subsp. hondoense \N \N \N \N \N 22475 D.zibethinus Durio Durio zibethinus durian \N \N \N \N 22476 D.tenuicaulis Dahlia Dahlia tenuicaulis \N \N \N \N \N 22477 O.xiangguiensis Oreocharis Oreocharis xiangguiensis \N \N \N \N \N 22478 V.tinus Viburnum Viburnum tinus laurustinus \N \N \N \N 22479 E.ferruginea Ellipeiopsis Ellipeiopsis ferruginea \N \N \N \N \N 22480 L.rotundifolius Lathyrus Lathyrus rotundifolius \N \N \N \N \N 22481 B.arborescens Buchanania Buchanania arborescens \N \N \N \N \N 22482 S.itatiaiae Symplocos Symplocos itatiaiae \N \N \N \N \N 22483 P.pinnata Pometia Pometia pinnata \N \N \N \N \N 22484 C.cuneata Coprosma Coprosma cuneata \N \N \N \N \N 22485 E.zhushanense Epimedium Epimedium zhushanense \N \N \N \N \N 22486 D.dicerochila Disperis Disperis dicerochila \N \N \N \N \N 22487 P.macranthus Poikilacanthus Poikilacanthus macranthus \N \N \N \N \N 22488 A.stipitata Atriplex Atriplex stipitata \N \N \N \N \N 22489 P.piauiense Panicum Panicum piauiense \N \N \N \N \N 22490 \N subspecies Galium catalinense subsp. acrispum \N \N \N \N \N 22491 L.shawii Lycium Lycium shawii \N \N \N \N \N 22492 S.285265 Senecio Senecio aff. wairauensis AK 285265 \N \N \N \N \N 22493 V.ceratocarpa Veronica Veronica ceratocarpa \N \N \N \N \N 22494 G.oreganum Galium Galium oreganum \N \N \N \N \N 22495 M.aurea Malabaila Malabaila aurea \N \N \N \N \N 22496 G.africana Gisekia Gisekia africana \N \N \N \N \N 22497 C.philydroides Cartonema Cartonema philydroides \N \N \N \N \N 22498 \N genus Triarrhena \N \N \N \N \N 22499 C.umbellatum Cathormion Cathormion umbellatum \N \N \N \N \N 22500 K.parvilabris Kefersteinia Kefersteinia parvilabris \N \N \N \N \N 22501 R.cultivar Rosa Rosa hybrid cultivar \N \N \N \N \N 22502 \N genus Willemetia \N \N \N \N \N 22503 C.kissii Camellia Camellia kissii \N \N \N \N \N 22504 T.guibertiana Tolumnia Tolumnia guibertiana \N \N \N \N \N 22505 A.franchetii Aconitum Aconitum franchetii \N \N \N \N \N 22506 \N genus Synthyris \N \N \N \N \N 22507 Q.caudata Quisqualis Quisqualis caudata \N \N \N \N \N 22508 S.genesiana Saxifraga Saxifraga genesiana \N \N \N \N \N 22509 P.spinuliferus Phyllobolus Phyllobolus spinuliferus \N \N \N \N \N 22510 V.acutiloba Valeriana Valeriana acutiloba \N \N \N \N \N 22511 M.richardiana Millettia Millettia richardiana \N \N \N \N \N 22512 P.talbotii Pauridiantha Pauridiantha talbotii \N \N \N \N \N 22513 A.carinata Aotus Aotus carinata \N \N \N \N \N 22514 S.tenacissima Setaria Setaria tenacissima \N \N \N \N \N 22515 D.ruaxes Draba Draba ruaxes \N \N \N \N \N 22516 C.cyathopoda Chionachne Chionachne cyathopoda \N \N \N \N \N 22517 H.schimperi Helichrysum Helichrysum schimperi \N \N \N \N \N 22518 A.kingii Antirrhinum Antirrhinum kingii \N \N \N \N \N 22519 S.bogneri Stylochaeton Stylochaeton bogneri \N \N \N \N \N 22520 P.subalbidum Panicum Panicum subalbidum \N \N \N \N \N 22521 \N genus Psilurus \N \N \N \N \N 22522 \N subspecies Anthyllis vulneraria subsp. pyrenaica \N \N \N \N \N 22523 S.atropubescens Sobralia Sobralia atropubescens \N \N \N \N \N 22524 S.natalensis Sporobolus Sporobolus natalensis \N \N \N \N \N 22525 G.intermedia Graffenrieda Graffenrieda intermedia \N \N \N \N \N 22526 L.peperomioides Lepanthes Lepanthes peperomioides \N \N \N \N \N 22527 A.dempsteri Acacia Acacia dempsteri \N \N \N \N \N 22528 C.pendulum Cremastosperma Cremastosperma pendulum \N \N \N \N \N 22529 \N genus Paphinia \N \N \N \N \N 22530 D.spruceana Draba Draba spruceana \N \N \N \N \N 22531 B.maurorum Brassica Brassica maurorum \N \N \N \N \N 22532 \N genus Uvularia \N \N \N \N \N 22533 T.polyphyllum Tropaeolum Tropaeolum polyphyllum \N \N \N \N \N 22534 C.crista Caesalpinia Caesalpinia crista \N \N \N \N \N 22535 P.odysseus Psilactis Psilactis odysseus \N \N \N \N \N 22536 \N subspecies Leucadendron spissifolium subsp. spissifolium \N \N \N \N \N 22537 L.speculum-veneris Legousia Legousia speculum-veneris \N \N \N \N \N 22538 A.columnaris Aegilops Aegilops columnaris \N \N \N \N \N 22539 P.ibiyensis Protorhus Protorhus ibiyensis \N \N \N \N \N 22540 P.concolor Paphiopedilum Paphiopedilum concolor \N \N \N \N \N 22541 S.doria Senecio Senecio doria \N \N \N \N \N 22542 \N subspecies Syzygium wilsonii subsp. wilsonii \N \N \N \N \N 22543 B.3272 Bathysa Bathysa sp. Stahl 3272 \N \N \N \N \N 22544 V.labradorica Viola Viola labradorica alpine violet \N \N \N \N 22545 G.dryophylla Grevillea Grevillea dryophylla \N \N \N \N \N 22546 B.liparidioides Bulbophyllum Bulbophyllum liparidioides \N \N \N \N \N 22547 \N subspecies Oenothera deltoides subsp. howellii \N \N \N \N \N 22548 C.sieberi Crocus Crocus sieberi \N \N \N \N \N 22549 G.reflexum Gastrolobium Gastrolobium reflexum \N \N \N \N \N 22550 P.brunoniana Parvatia Parvatia brunoniana \N \N \N \N \N 22551 R.caudifolius Rubus Rubus caudifolius \N \N \N \N \N 22552 R.macrocarpa Rhodiola Rhodiola macrocarpa \N \N \N \N \N 22553 P.procera Pedicularis Pedicularis procera \N \N \N \N \N 22554 S.junceus Schoenoplectus Schoenoplectus junceus \N \N \N \N \N 22555 H.litangensis Hippophae Hippophae litangensis \N \N \N \N \N 22556 R.officinale Rheum Rheum officinale yao yong da huang \N \N \N \N 22557 D.umbellata Dombeya Dombeya umbellata \N \N \N \N \N 22558 E.glabra Euchaetis Euchaetis glabra \N \N \N \N \N 22559 R.brevifolia Ruellia Ruellia brevifolia \N \N \N \N \N 22560 E.tragulifera Erica Erica tragulifera \N \N \N \N \N 22561 G.americana Genipa Genipa americana \N \N \N \N \N 22562 B.podopetala Bauhinia Bauhinia podopetala \N \N \N \N \N 22563 I.repanda Ilex Ilex repanda \N \N \N \N \N 22564 G.pratense Geranium Geranium pratense \N \N \N \N \N 22565 A.mikuniense Asarum Asarum mikuniense \N \N \N \N \N 22566 \N genus Petronymphe \N \N \N \N \N 22567 S.melanocentra Saxifraga Saxifraga melanocentra \N \N \N \N \N 22568 A.nigra Aspalathus Aspalathus nigra \N \N \N \N \N 22569 C.arborea Cleome Cleome arborea \N \N \N \N \N 22570 O.simpsonii Ourisia Ourisia simpsonii \N \N \N \N \N 22571 \N varietas Erigeron strigosus RDN-2005 \N \N \N \N \N 22572 R.nanophyton Rhododendron Rhododendron nanophyton \N \N \N \N \N 22573 C.runyonii Cuscuta Cuscuta runyonii \N \N \N \N \N 22574 \N genus Sartidia \N \N \N \N \N 22575 \N subspecies Gilia capitata subsp. pedemontana \N \N \N \N \N 22576 C.sterilis Centaurea Centaurea sterilis \N \N \N \N \N 22577 G.leptospadix Geonoma Geonoma leptospadix \N \N \N \N \N 22578 C.00-227 Cistanthe Cistanthe aff. calycina Hershkovitz 00-227 \N \N \N \N \N 22579 I.muricata Ipomoea Ipomoea muricata lilac-bell,purple moonflower \N \N \N \N 22580 P.hirsuta Phyllostegia Phyllostegia hirsuta \N \N \N \N \N 22581 M.davidii Metapanax Metapanax davidii \N \N \N \N \N 22582 A.sinensis Atropanthe Atropanthe sinensis \N \N \N \N \N 22583 V.s.n. Vallisneria Vallisneria sp. Owens & Doyle s.n. \N \N \N \N \N 22584 S.meiliensis Salvia Salvia meiliensis \N \N \N \N \N 22585 \N genus Tennantia \N \N \N \N \N 22586 \N genus Scutia \N \N \N \N \N 22587 P.marginata Pictetia Pictetia marginata \N \N \N \N \N 22588 S.thea Sageretia Sageretia thea \N \N \N \N \N 22589 A.buchananii Acaena Acaena buchananii \N \N \N \N \N 22590 P.incana Primula Primula incana \N \N \N \N \N 22591 D.teucrioides Dionysia Dionysia teucrioides \N \N \N \N \N 22592 \N genus Rotala \N \N \N \N \N 22593 A.huegeliana Allocasuarina Allocasuarina huegeliana \N \N \N \N \N 22594 P.planellasi Polygala Polygala planellasi \N \N \N \N \N 22595 I.pellocolea Isolepis Isolepis pellocolea \N \N \N \N \N 22596 Q.morisii Quercus Quercus x morisii \N \N \N \N \N 22597 G.latisiliqua Galactia Galactia latisiliqua \N \N \N \N \N 22598 \N genus Potentilla \N \N \N \N \N 22599 S.comarapanum Solanum Solanum comarapanum \N \N \N \N \N 22600 S.hickmanii Sidalcea Sidalcea hickmanii \N \N \N \N \N 22601 A.angulatum Abutilon Abutilon angulatum afopotsy \N \N \N \N 22602 \N genus Ichtyoselmis \N \N \N \N \N 22603 X.montivaga Xanthomyrtus Xanthomyrtus montivaga \N \N \N \N \N 22604 P.tripartita Passiflora Passiflora tripartita \N \N \N \N \N 22605 H.spiralepis Helichrysum Helichrysum spiralepis \N \N \N \N \N 22606 Z.muehlenbergii Zeltnera Zeltnera muehlenbergii \N \N \N \N \N 22607 P.CAM009 Phyteuma Phyteuma aff. orbiculare CAM009 \N \N \N \N \N 22608 A.martinezii Ateleia Ateleia martinezii \N \N \N \N \N 22609 \N genus Roylea \N \N \N \N \N 22610 A.cuspidatum Androcymbium Androcymbium cuspidatum \N \N \N \N \N 22611 L.sanctaeclarae Lycianthes Lycianthes sanctaeclarae \N \N \N \N \N 22612 C.minima Calamagrostis Calamagrostis minima \N \N \N \N \N 22613 T.opifera Turnera Turnera opifera \N \N \N \N \N 22614 \N genus Nannoglottis \N \N \N \N \N 22615 A.sumatrana Aphanamixis Aphanamixis sumatrana \N \N \N \N \N 22616 A.nivea Asterolasia Asterolasia nivea \N \N \N \N \N 22617 P.integrifolia Prunus Prunus integrifolia \N \N \N \N \N 22618 A.californica Aristolochia Aristolochia californica \N \N \N \N \N 22619 D.tomentosum Dasyphyllum Dasyphyllum tomentosum \N \N \N \N \N 22620 T.caudata Tococa Tococa caudata \N \N \N \N \N 106375 \N tribe Ipomoeeae \N \N \N \N \N 22621 G.wendelboi Gagea Gagea wendelboi \N \N \N \N \N 22622 S.whitedii Sandbergia Sandbergia whitedii \N \N \N \N \N 22623 E.plicarhachis Eleocharis Eleocharis plicarhachis \N \N \N \N \N 22624 C.wolffianum Chamaesium Chamaesium wolffianum \N \N \N \N \N 22625 C.inaequalis Callichilia Callichilia inaequalis \N \N \N \N \N 22626 \N genus Spilanthes \N \N \N \N \N 22627 \N subspecies Camassia quamash subsp. maxima \N \N \N \N \N 22628 A.sylvestris Anemone Anemone sylvestris \N \N \N \N \N 22629 R.arizelum Rhododendron Rhododendron arizelum \N \N \N \N \N 22630 C.rojasiana Chamaedorea Chamaedorea rojasiana \N \N \N \N \N 22631 S.succifera Stephania Stephania succifera \N \N \N \N \N 22632 D.affinis Durio Durio affinis \N \N \N \N \N 22633 \N varietas Wisteria frutescens var. macrostachya \N \N \N \N \N 22634 F.multinodis Festuca Festuca multinodis \N \N \N \N \N 22635 Q.pyrenaica Quercus Quercus pyrenaica \N \N \N \N \N 22636 M.spicata Moullava Moullava spicata \N \N \N \N \N 22637 A.tsinlingensis Angelica Angelica tsinlingensis \N \N \N \N \N 22638 \N genus Ampelocera \N \N \N \N \N 22639 T.granulata Trochetia Trochetia granulata \N \N \N \N \N 22640 F.coxii Festuca Festuca coxii \N \N \N \N \N 22641 C.nivale Chaerophyllum Chaerophyllum nivale \N \N \N \N \N 22642 \N genus Nuytsia \N \N \N \N \N 22643 C.acutifolius Croton Croton acutifolius \N \N \N \N \N 22644 \N genus Antinoria \N \N \N \N \N 22645 C.attenuata Ceropegia Ceropegia attenuata \N \N \N \N \N 22646 C.subpubescens Callicarpa Callicarpa subpubescens \N \N \N \N \N 22647 D.nigra Dalbergia Dalbergia nigra \N \N \N \N \N 22648 P.sphaerocarpa Planchonella Planchonella sphaerocarpa \N \N \N \N \N 22649 E.manipuliflora Erica Erica manipuliflora \N \N \N \N \N 22650 T.chrysantha Tulipa Tulipa chrysantha \N \N \N \N \N 22651 \N varietas Quercus mongolica var. grosseserrata \N \N \N \N \N 22652 P.aithocheilum Peplidium Peplidium aithocheilum \N \N \N \N \N 22653 S.ramosissimum Sterigmostemum Sterigmostemum ramosissimum \N \N \N \N \N 22654 D.macrantha Dombeya Dombeya macrantha \N \N \N \N \N 22655 T.dalstromii Telipogon Telipogon dalstromii \N \N \N \N \N 22656 N.MAB-2008 Noccaea Noccaea sp. MAB-2008 \N \N \N \N \N 22657 \N genus Dirichletia \N \N \N \N \N 22658 M.pacifica Mosannona Mosannona pacifica \N \N \N \N \N 22659 \N genus Gymnanthes \N \N \N \N \N 22660 C.micrantha Cuscuta Cuscuta micrantha \N \N \N \N \N 22661 A.molseedii Arracacia Arracacia molseedii \N \N \N \N \N 22662 P.aquosa Pereskiopsis Pereskiopsis aquosa \N \N \N \N \N 22663 L.pondoense Leucadendron Leucadendron pondoense \N \N \N \N \N 22664 S.bukasovii Solanum Solanum bukasovii \N \N \N \N \N 22665 M.scleroxylon Micrandropsis Micrandropsis scleroxylon \N \N \N \N \N 22666 C.violacea Cattleya Cattleya violacea \N \N \N \N \N 22667 D.versicolor Dianthus Dianthus versicolor \N \N \N \N \N 22668 S.3507) Swartzia Swartzia sp. E (Redden 3507) \N \N \N \N \N 22669 \N genus Uebelmannia \N \N \N \N \N 22670 M.hookerianus Mallotus Mallotus hookerianus \N \N \N \N \N 22671 F.vulgare Foeniculum Foeniculum vulgare fennel \N \N \N \N 22672 \N genus Northea \N \N \N \N \N 22673 V.daurica Veronica Veronica daurica \N \N \N \N \N 22674 E.paucicostata Eriosyce Eriosyce paucicostata \N \N \N \N \N 22675 C.scandens Cliffortia Cliffortia scandens \N \N \N \N \N 22676 H.conceicionensis Hoffmannseggella Hoffmannseggella conceicionensis \N \N \N \N \N 22677 H.odontocarpa Haloragis Haloragis odontocarpa \N \N \N \N \N 22678 E.repandum Erysimum Erysimum repandum treacle mustard \N \N \N \N 22679 S.SP809 Sisyrinchium Sisyrinchium aff. californicum SP809 \N \N \N \N \N 22680 \N tribe Triceratieae \N \N \N \N \N 22681 \N subtribe Disinae \N \N \N \N \N 22682 C.fragillimum Cerastium Cerastium fragillimum \N \N \N \N \N 22683 \N no rank campanulids \N \N \N \N \N 22684 E.capitatus Elleanthus Elleanthus capitatus \N \N \N \N \N 22685 S.KG-2010 Scabiosa Scabiosa sp. KG-2010 \N \N \N \N \N 22686 T.velutinum Theobroma Theobroma velutinum \N \N \N \N \N 22687 I.liebmannii Ilex Ilex liebmannii \N \N \N \N \N 22688 P.lamarckii Paepalanthus Paepalanthus lamarckii \N \N \N \N \N 22689 J.major Juglans Juglans major \N \N \N \N \N 22690 E.retorta Erica Erica retorta \N \N \N \N \N 22691 P.SM-2010 Piper Piper sp. SM-2010 \N \N \N \N \N 22692 \N varietas Echinops pungens var. transcaucasicus \N \N \N \N \N 22693 \N subspecies Platymiscium pinnatum subsp. polystachyum \N \N \N \N \N 22694 \N genus Bouteloua \N \N \N \N \N 22695 E.pumilus Erigeron Erigeron pumilus \N \N \N \N \N 22696 B.harmandii Bridelia Bridelia harmandii \N \N \N \N \N 22697 \N subspecies Illicium cubense subsp. guajaibonense \N \N \N \N \N 22698 L.cotyledon Lewisia Lewisia cotyledon \N \N \N \N \N 22699 \N genus Semiaquilegia \N \N \N \N \N 22700 N.elegantissimus Nastus Nastus elegantissimus \N \N \N \N \N 22701 \N genus Logfia \N \N \N \N \N 22702 M.lilacina Mascagnia Mascagnia lilacina \N \N \N \N \N 22703 B.samhaensis Begonia Begonia samhaensis \N \N \N \N \N 22704 C.pinnata Cineraria Cineraria pinnata \N \N \N \N \N 22705 F.drupacea Ficus Ficus drupacea zhen guo rong \N \N \N \N 22706 S.apodophyllum Syzygium Syzygium apodophyllum \N \N \N \N \N 22707 F.22955 Festuca Festuca sp. Goodrich 22955 \N \N \N \N \N 22708 A.alternifolia Anagallis Anagallis alternifolia \N \N \N \N \N 22709 \N genus Cardopatium \N \N \N \N \N 22710 E.crista-galli Erythrina Erythrina crista-galli ceibo,cockspur coraltree,cry-baby tree \N \N \N \N 22711 \N subspecies Scorzonera purpurea subsp. rosea \N \N \N \N \N 22712 G.albida Genista Genista albida \N \N \N \N \N 22713 D.lapponica Diapensia Diapensia lapponica \N \N \N \N \N 22714 P.campestris Prosopis Prosopis campestris \N \N \N \N \N 22715 C.milnei Cyrtandra Cyrtandra milnei \N \N \N \N \N 22716 \N varietas Cirsium occidentale var. venustum venus thistle \N \N \N \N 22717 G.macedonica Gastrocotyle Gastrocotyle macedonica \N \N \N \N \N 22718 R.pachyphylla Rondeletia Rondeletia pachyphylla \N \N \N \N \N 22719 S.bicolor Solidago Solidago bicolor \N \N \N \N \N 22720 T.12535 Troglophyton Troglophyton sp. Goldblatt 12535 \N \N \N \N \N 22721 R.turkestanica Reaumuria Reaumuria turkestanica \N \N \N \N \N 22722 F.schultzii Fimbristylis Fimbristylis schultzii \N \N \N \N \N 22723 A.dictyolobus Astragalus Astragalus dictyolobus \N \N \N \N \N 22724 L.lotononoides Lotononis Lotononis lotononoides \N \N \N \N \N 22725 \N genus Graphistemma \N \N \N \N \N 22726 G.anisitsii Gymnocalycium Gymnocalycium anisitsii \N \N \N \N \N 22727 A.myriosticta Anisophyllea Anisophyllea myriosticta \N \N \N \N \N 22728 P.alpinus Potamogeton Potamogeton alpinus \N \N \N \N \N 22729 P.sepialis Phyllanthus Phyllanthus sepialis \N \N \N \N \N 22730 T.alpinum Thesium Thesium alpinum \N \N \N \N \N 22731 C.officinalis Chloranthus Chloranthus officinalis \N \N \N \N \N 22732 F.bidwillii Forstera Forstera bidwillii \N \N \N \N \N 22733 D.saxatilis Dubouzetia Dubouzetia saxatilis \N \N \N \N \N 22734 P.potosiensis Pinguicula Pinguicula potosiensis \N \N \N \N \N 22735 B.patinii Bomarea Bomarea patinii \N \N \N \N \N 22736 J.cooperi Jessea Jessea cooperi \N \N \N \N \N 22737 \N genus Acoelorraphe \N \N \N \N \N 22738 \N subspecies Conophytum herreanthus subsp. herreanthus \N \N \N \N \N 22739 D.involucrata Dionysia Dionysia involucrata \N \N \N \N \N 22740 C.pallida Corydalis Corydalis pallida \N \N \N \N \N 22741 S.podenzanae Sauropus Sauropus podenzanae \N \N \N \N \N 22742 \N genus Richella \N \N \N \N \N 22743 C.trachyphloia Corymbia Corymbia trachyphloia \N \N \N \N \N 22744 \N genus Bocquillonia \N \N \N \N \N 22745 \N family Scrophulariaceae figwort family \N \N \N \N 22746 S.StS-2011 Solanum Solanum sp. StS-2011 \N \N \N \N \N 22747 T.tk45 unclassified Taraxacum Taraxacum (sect. Naevosa) sp. tk45 \N \N \N \N \N 22748 D.excelsa Doryanthes Doryanthes excelsa \N \N \N \N \N 22749 P.acutifolia Physalis Physalis acutifolia \N \N \N \N \N 22750 F.trinervia Flaveria Flaveria trinervia \N \N \N \N \N 22751 B.melanopetalum Brachysema Brachysema melanopetalum \N \N \N \N \N 22752 \N varietas Symphyotrichum concolor var. concolor \N \N \N \N \N 22753 \N genus Microcos \N \N \N \N \N 22754 P.sample environmental samples Taxonomy:1096714 Psychotria environmental sample \N \N \N \N \N 22755 M.argentea Myrsine Myrsine argentea \N \N \N \N \N 22756 C.abietina Campanula Campanula abietina \N \N \N \N \N 22757 \N subspecies Oenothera californica subsp. arizonica \N \N \N \N \N 22758 V.cornigera Vachellia Vachellia cornigera \N \N \N \N \N 22759 B.dryandroides Banksia Banksia dryandroides \N \N \N \N \N 22760 H.brevis Helcia Helcia brevis \N \N \N \N \N 22761 L.moncadae Leucocroton Leucocroton moncadae \N \N \N \N \N 22762 P.cowelli Polygala Polygala cowelli \N \N \N \N \N 22763 T.conjugata Tinopsis Tinopsis conjugata \N \N \N \N \N 22764 P.bournei Phoebe Phoebe bournei \N \N \N \N \N 22765 T.peruvianum Trichostigma Trichostigma peruvianum \N \N \N \N \N 22766 L.mcvaughii Lobelia Lobelia mcvaughii \N \N \N \N \N 22767 L.spinosa Lonicera Lonicera spinosa \N \N \N \N \N 22768 P.buxifolia Podalyria Podalyria buxifolia \N \N \N \N \N 22769 O.scaber Oxypappus Oxypappus scaber \N \N \N \N \N 22770 S.williamsii Senna Senna williamsii \N \N \N \N \N 22771 A.ternipes Aristida Aristida ternipes \N \N \N \N \N 22772 E.heydeana Enantiophylla Enantiophylla heydeana \N \N \N \N \N 22773 S.multinervia Schismatoglottis Schismatoglottis multinervia \N \N \N \N \N 22774 M.ligustrina Mulguraea Mulguraea ligustrina \N \N \N \N \N 22775 D.nagchana Dyschoriste Dyschoriste nagchana \N \N \N \N \N 22776 L.macrophylla Liquidambar Liquidambar macrophylla \N \N \N \N \N 22777 T.grandiflorus Tylecodon Tylecodon grandiflorus \N \N \N \N \N 22778 A.pungens Aeluropus Aeluropus pungens \N \N \N \N \N 22779 C.camposii Carex Carex camposii \N \N \N \N \N 22780 \N genus Apium \N \N \N \N \N 22781 D.funalis Dendrophylax Dendrophylax funalis \N \N \N \N \N 22782 E.trialata Euphorbia Euphorbia trialata \N \N \N \N \N 22783 \N subspecies Helleborus multifidus subsp. multifidus \N \N \N \N \N 22784 \N genus Sphinctanthus \N \N \N \N \N 22785 M.microphylla Mirbelia Mirbelia microphylla \N \N \N \N \N 22786 C.7321 Cissus Cissus sp. 7321 \N \N \N \N \N 22787 C.grandiflora Capsella Capsella grandiflora \N \N \N \N \N 22788 \N subspecies Lasthenia californica subsp. bakeri \N \N \N \N \N 22789 P.JEES-2007 Pauridiantha Pauridiantha sp. JEES-2007 \N \N \N \N \N 22790 \N genus Glyptopetalum \N \N \N \N \N 22791 B.sciaphile Bulbophyllum Bulbophyllum sciaphile \N \N \N \N \N 22792 A.odorata Aglaia Aglaia odorata \N \N \N \N \N 22793 B.modestum Brachysema Brachysema modestum \N \N \N \N \N 22794 P.SH-2010 Passiflora Passiflora sp. SH-2010 \N \N \N \N \N 22795 M.australis Myrsine Myrsine australis \N \N \N \N \N 22796 \N varietas Phaseolus acutifolius var. latifolius \N \N \N \N \N 22797 H.cochinchinense Homalium Homalium cochinchinense \N \N \N \N \N 22798 A.samoensis Aglaia Aglaia samoensis \N \N \N \N \N 22799 V.brevistipulata Viola Viola brevistipulata \N \N \N \N \N 22800 \N genus Tetrapleura \N \N \N \N \N 22801 C.petiolaris Clidemia Clidemia petiolaris \N \N \N \N \N 22802 D.valvata Diplopterys Diplopterys valvata \N \N \N \N \N 22803 P.dysenterica Pulicaria Pulicaria dysenterica \N \N \N \N \N 22804 \N genus Megahertzia \N \N \N \N \N 22805 C.odorifera Colliguaja Colliguaja odorifera \N \N \N \N \N 22806 S.lineata Sinningia Sinningia lineata \N \N \N \N \N 22807 Z.gontscharovii Zygophyllum Zygophyllum gontscharovii \N \N \N \N \N 22808 D.davurica Dasiphora Dasiphora davurica \N \N \N \N \N 22809 D.chapmanii Deschampsia Deschampsia chapmanii \N \N \N \N \N 22810 H.floridanus Helianthus Helianthus floridanus \N \N \N \N \N 22811 C.marshallii Crataegus Crataegus marshallii \N \N \N \N \N 22812 R.coriaceum Rhaptopetalum Rhaptopetalum coriaceum \N \N \N \N \N 22813 \N varietas Mimosa polycarpa var. polycarpa \N \N \N \N \N 22814 A.amazonica Annona Annona amazonica \N \N \N \N \N 22815 C.magellanica Carex Carex magellanica \N \N \N \N \N 22816 \N genus Ferulago \N \N \N \N \N 22817 Z.schinifolium Zanthoxylum Zanthoxylum schinifolium Sichuan-pepper,qing hua jiao \N \N \N \N 22818 C.debilis Carex Carex debilis \N \N \N \N \N 22819 A.tuberosa Arjona Arjona tuberosa \N \N \N \N \N 22820 A.forrestii Aconitum Aconitum forrestii \N \N \N \N \N 22821 A.baumannii Amorphophallus Amorphophallus baumannii \N \N \N \N \N 22822 H.steyermarkii Hypericum Hypericum steyermarkii \N \N \N \N \N 22823 P.hemirhoda Pleurothallis Pleurothallis hemirhoda \N \N \N \N \N 22824 P.procumbens Podolobium Podolobium procumbens \N \N \N \N \N 22825 G.fimbriatum Genoplesium Genoplesium fimbriatum \N \N \N \N \N 22826 G.pansamalanus Gasteranthus Gasteranthus pansamalanus \N \N \N \N \N 22827 A.eriantha Aristolochia Aristolochia eriantha \N \N \N \N \N 22828 U.gibba Utricularia Utricularia gibba humped bladderwort \N \N \N \N 22829 M.guatemalense Molinadendron Molinadendron guatemalense \N \N \N \N \N 22830 C.fischeri Carex Carex fischeri \N \N \N \N \N 22831 \N genus Schiekia \N \N \N \N \N 22832 A.schlechteri Agatea Agatea schlechteri \N \N \N \N \N 22833 \N tribe Chloantheae \N \N \N \N \N 22834 \N order Sapindales \N \N \N \N \N 22835 G.longistylus Gymnosiphon Gymnosiphon longistylus \N \N \N \N \N 22836 A.garipensis Adenolobus Adenolobus garipensis \N \N \N \N \N 22837 \N varietas Tillandsia latifolia var. divaricata \N \N \N \N \N 22838 A.wilsonii Acer Acer wilsonii \N \N \N \N \N 22839 W.citrina Wurmbea Wurmbea citrina \N \N \N \N \N 22840 P.miranda Pleurothallis Pleurothallis miranda \N \N \N \N \N 22841 \N subspecies Cistus ladanifer subsp. ladanifer \N \N \N \N \N 22842 I.heterophylla Inga Inga heterophylla \N \N \N \N \N 22843 K.foggiana Kadua Kadua foggiana \N \N \N \N \N 22844 D.302 Dioscorea Dioscorea cf. tanalarum Caddick et al. 302 \N \N \N \N \N 22845 \N subspecies Centaurea pomeliana subsp. pomeliana \N \N \N \N \N 22846 P.intermedium Pycnocomon Pycnocomon intermedium \N \N \N \N \N 22847 M.macgregorii Moraea Moraea macgregorii \N \N \N \N \N 22848 S.megacarpa Smilax Smilax megacarpa \N \N \N \N \N 22849 A.sessiliflora Alectra Alectra sessiliflora \N \N \N \N \N 22850 N.yapurensis Nealchornea Nealchornea yapurensis \N \N \N \N \N 22851 O.jucundum Osteospermum Osteospermum jucundum \N \N \N \N \N 22852 \N genus Choisya \N \N \N \N \N 22853 E.witmannii Erysimum Erysimum witmannii \N \N \N \N \N 22854 S.SP239 Sisyrinchium Sisyrinchium cf. macranthum SP239 \N \N \N \N \N 22855 S.zehzadii Salsola Salsola zehzadii \N \N \N \N \N 22856 D.tibetica Draba Draba tibetica \N \N \N \N \N 22857 E.heptagona Euphorbia Euphorbia heptagona \N \N \N \N \N 22858 H.hirsuta Hypoxis Hypoxis hirsuta \N \N \N \N \N 22859 B.macrobulbum Bulbophyllum Bulbophyllum macrobulbum \N \N \N \N \N 22860 C.gypsophiloides Cyphomeris Cyphomeris gypsophiloides \N \N \N \N \N 22861 S.calyptrata Schismatoglottis Schismatoglottis calyptrata \N \N \N \N \N 22862 B.paraguariensis Banisteriopsis Banisteriopsis paraguariensis \N \N \N \N \N 22863 S.nubicola Solanum Solanum nubicola \N \N \N \N \N 22864 A.chingacensis Aragoa Aragoa x chingacensis \N \N \N \N \N 22865 L.cruenta Lycaste Lycaste cruenta \N \N \N \N \N 22866 R.platyphyllus Rhadamanthus Rhadamanthus platyphyllus \N \N \N \N \N 22867 A.floribunda Adenaria Adenaria floribunda \N \N \N \N \N 22868 A.hayatae Aster Aster hayatae \N \N \N \N \N 22869 H.tonduzii Hyperbaena Hyperbaena tonduzii \N \N \N \N \N 22870 M.adenophylla Mimosa Mimosa adenophylla \N \N \N \N \N 22871 E.floribundum Erisma Erisma floribundum \N \N \N \N \N 22872 \N genus Hyalopoa \N \N \N \N \N 22873 \N varietas Cardamine parviflora var. parviflora \N \N \N \N \N 22874 C.verticillatum Calophyllum Calophyllum verticillatum \N \N \N \N \N 22875 B.foetida Boscia Boscia foetida \N \N \N \N \N 22876 M.leptophylla Manihot Manihot leptophylla \N \N \N \N \N 22877 C.micrantha Cliffortia Cliffortia micrantha \N \N \N \N \N 22878 A.bracteosa Agave Agave bracteosa \N \N \N \N \N 22879 C.catamarcensis Croton Croton catamarcensis \N \N \N \N \N 22880 B.flava Barbacenia Barbacenia flava \N \N \N \N \N 22881 C.chunii Castanopsis Castanopsis chunii \N \N \N \N \N 22882 S.tenuis Simsia Simsia tenuis \N \N \N \N \N 22883 V.vaginata Viola Viola vaginata \N \N \N \N \N 22884 C.corticosum Cinnamodendron Cinnamodendron corticosum \N \N \N \N \N 22885 C.uncata Christensonella Christensonella uncata \N \N \N \N \N 22886 \N subspecies Carthamus lanatus subsp. baeticus smooth distaff thistle \N \N \N \N 22887 E.carissoides Euphorbia Euphorbia carissoides \N \N \N \N \N 22888 A.billardierei Atraphaxis Atraphaxis billardierei \N \N \N \N \N 22889 A.trifoliolata Azorella Azorella trifoliolata \N \N \N \N \N 22890 B.ovata Bridelia Bridelia ovata \N \N \N \N \N 22891 S.tomentosa Schefflera Schefflera tomentosa \N \N \N \N \N 22892 T.chinensis Taxillus Taxillus chinensis \N \N \N \N \N 22893 P.ferruginea Pimelea Pimelea ferruginea \N \N \N \N \N 22894 P.lactucoides Perezia Perezia lactucoides \N \N \N \N \N 22895 S.paraplesia Salix Salix paraplesia \N \N \N \N \N 22896 \N forma Sasa senanensis f. nobilis \N \N \N \N \N 22897 J.drummondii Juncus Juncus drummondii \N \N \N \N \N 22898 P.griseoargentea Peperomia Peperomia griseoargentea ivy pepper,ivy-leaf pepper,platinum pepper,silver-leaf pepper \N \N \N \N 22899 B.bidentata Briza Briza bidentata \N \N \N \N \N 22900 F.macrocarpa Fibigia Fibigia macrocarpa \N \N \N \N \N 22901 D.breweri Draba Draba breweri \N \N \N \N \N 22902 \N genus Metcalfia \N \N \N \N \N 22903 L.hastata Lepechinia Lepechinia hastata \N \N \N \N \N 22904 P.lateralis Polycardia Polycardia lateralis \N \N \N \N \N 22905 A.caudatus Acianthus Acianthus caudatus \N \N \N \N \N 22906 L.australe Lepidosperma Lepidosperma australe \N \N \N \N \N 22907 \N subtribe Ancistrophyllinae \N \N \N \N \N 22908 A.anomalum Aulacospermum Aulacospermum anomalum \N \N \N \N \N 22909 P.basiramium Polygonum Polygonum basiramium \N \N \N \N \N 22910 C.dodii Chrysitrix Chrysitrix dodii \N \N \N \N \N 22911 H.lundelliorum Hechtia Hechtia lundelliorum \N \N \N \N \N 22912 M.hypoleuca Magnolia Magnolia hypoleuca \N \N \N \N \N 22913 S.hamata Stylosanthes Stylosanthes hamata Caribbean stylo,cheesytoes,verano \N \N \N \N 22914 \N varietas Lithocarpus densiflorus var. echinoides \N \N \N \N \N 22915 N.otophora Nicotiana Nicotiana otophora \N \N \N \N \N 22916 A.praetermissus Amaranthus Amaranthus praetermissus \N \N \N \N \N 22917 A.sharsmithiae Allium Allium sharsmithiae \N \N \N \N \N 22918 P.rostrata Parlatoria Parlatoria rostrata \N \N \N \N \N 22919 C.pygmaea Crepis Crepis pygmaea \N \N \N \N \N 22920 A.muelleri Austrostipa Austrostipa muelleri \N \N \N \N \N 22921 K.platyphylla Kohautia Kohautia platyphylla \N \N \N \N \N 22922 P.graeffei Piper Piper graeffei \N \N \N \N \N 22923 S.leucanthus Schultesianthus Schultesianthus leucanthus \N \N \N \N \N 22924 S.parvifolia Shorea Shorea leprosula x Shorea parvifolia \N \N \N \N \N 22925 D.heterobractea Dalechampia Dalechampia heterobractea \N \N \N \N \N 22926 A.elongata Alternanthera Alternanthera elongata \N \N \N \N \N 22927 P.flexuosa Parsonsia Parsonsia flexuosa \N \N \N \N \N 22928 S.odorata Sanicula Sanicula odorata clustered blacksnakeroot \N \N \N \N 22929 P.crystallinum Pachyphyllum Pachyphyllum crystallinum \N \N \N \N \N 22930 G.nuda Grindelia Grindelia nuda \N \N \N \N \N 22931 E.nudatus Elephantopus Elephantopus nudatus \N \N \N \N \N 22932 G.coahuilensis Gaillardia Gaillardia coahuilensis \N \N \N \N \N 22933 E.delicatula Euphorbia Euphorbia delicatula \N \N \N \N \N 22934 K.axillaris Kadua Kadua axillaris \N \N \N \N \N 22935 \N no rank environmental samples Taxonomy:197745 \N \N \N \N \N 22936 \N varietas Acaciella angustissima var. angustissima \N \N \N \N \N 22937 \N varietas Paphiopedilum malipoense var. jackii \N \N \N \N \N 22938 S.candolleanum Solanum Solanum candolleanum \N \N \N \N \N 22939 T.grandiflora Turnera Turnera grandiflora \N \N \N \N \N 22940 H.racemosum Hedyosmum Hedyosmum racemosum \N \N \N \N \N 22941 \N genus Ammobium \N \N \N \N \N 22942 D.proteus Dendropanax Dendropanax proteus \N \N \N \N \N 22943 D.bicicatricata Dendrocalamopsis Dendrocalamopsis bicicatricata \N \N \N \N \N 22944 P.ceylanica Petchia Petchia ceylanica \N \N \N \N \N 22945 H.pubera Hoya Hoya pubera \N \N \N \N \N 22946 C.mariense Cynanchum Cynanchum mariense \N \N \N \N \N 22947 D.excelsa Dendrocnide Dendrocnide excelsa \N \N \N \N \N 22948 C.turkmenorum Cousinia Cousinia turkmenorum \N \N \N \N \N 22949 A.epidendroides Aspasia Aspasia epidendroides \N \N \N \N \N 22950 A.oestlundii Aulosepalum Aulosepalum oestlundii \N \N \N \N \N 22951 O.spinosa Ophellantha Ophellantha spinosa \N \N \N \N \N 22952 L.delortii Lotus Lotus delortii \N \N \N \N \N 22953 A.serpyllifolium Alyssum Alyssum serpyllifolium \N \N \N \N \N 22954 D.subscandens Delphinium Delphinium subscandens \N \N \N \N \N 22955 \N genus Oxanthera \N \N \N \N \N 22956 D.terminale Dendrobium Dendrobium terminale \N \N \N \N \N 22957 S.'arabica' Suaeda Suaeda sp. 'arabica' \N \N \N \N \N 22958 T.capitata Thladiantha Thladiantha capitata \N \N \N \N \N 22959 M.JJS-2010g Mentzelia Mentzelia sp. JJS-2010g \N \N \N \N \N 22960 D.paludosa Durringtonia Durringtonia paludosa \N \N \N \N \N 22961 L.paynei Lupinus Lupinus paynei \N \N \N \N \N 22962 B.uniflora Baeometra Baeometra uniflora \N \N \N \N \N 22963 \N genus Pararuellia \N \N \N \N \N 22964 B.arborescens Bedfordia Bedfordia arborescens blanket-leaf \N \N \N \N 22965 B.hainesii Bruguiera Bruguiera hainesii \N \N \N \N \N 22966 I.meyeri Ipomoea Ipomoea meyeri \N \N \N \N \N 22967 C.ornata Centaurea Centaurea ornata \N \N \N \N \N 22968 G.brevispatha Geonoma Geonoma brevispatha \N \N \N \N \N 22969 L.arinagensis Lotus Lotus arinagensis \N \N \N \N \N 22970 C.heteropoda Callitriche Callitriche heteropoda \N \N \N \N \N 22971 N.Z4 Neoachmandra Neoachmandra sp. Z4 \N \N \N \N \N 22972 G.triphyllus Gladiolus Gladiolus triphyllus \N \N \N \N \N 22973 A.stenosperma Arachis Arachis duranensis x Arachis stenosperma \N \N \N \N \N 22974 S.papillifera Stelis Stelis papillifera \N \N \N \N \N 22975 S.cochlearispathum Spathiphyllum Spathiphyllum cochlearispathum \N \N \N \N \N 22976 E.pulcherrima Euphorbia Euphorbia pulcherrima poinsettia \N \N \N \N 22977 \N subspecies Acer palmatum subsp. palmatum \N \N \N \N \N 22978 B.stolonifera Brachyscome Brachyscome stolonifera \N \N \N \N \N 22979 E.lucorum Euphorbia Euphorbia lucorum \N \N \N \N \N 22980 \N genus Merinthopodium \N \N \N \N \N 22981 M.gypsophila Marshalljohnstonia Marshalljohnstonia gypsophila \N \N \N \N \N 22982 P.XHJ-2009 Phaseolus Phaseolus sp. XHJ-2009 \N \N \N \N \N 22983 E.guineensis Elaeis Elaeis guineensis African oil palm \N \N \N \N 22984 A.griffithii Aglaodorum Aglaodorum griffithii \N \N \N \N \N 22985 P.emarginata Pinguicula Pinguicula emarginata \N \N \N \N \N 22986 C.arisanensis Cardamine Cardamine arisanensis \N \N \N \N \N 22987 P.willkommii Picris Picris willkommii \N \N \N \N \N 22988 C.99-910 Cistanthe Cistanthe sp. Hershkovitz 99-910 \N \N \N \N \N 22989 M.platycalyx Markhamia Markhamia platycalyx \N \N \N \N \N 22990 A.falciformis Acacia Acacia falciformis \N \N \N \N \N 22991 M.krugii Miconia Miconia krugii \N \N \N \N \N 22992 T.dauphinensis Tricalysia Tricalysia dauphinensis \N \N \N \N \N 22993 K.schoenoides Kobresia Kobresia schoenoides \N \N \N \N \N 22994 P.anisotomum Philodendron Philodendron anisotomum \N \N \N \N \N 22995 \N genus Plazia \N \N \N \N \N 22996 S.gracilis Stylosanthes guianensis species complex Stylosanthes gracilis \N \N \N \N \N 22997 S.moorcroftiana Silene Silene moorcroftiana \N \N \N \N \N 22998 S.nervosa Spilanthes Spilanthes nervosa \N \N \N \N \N 22999 M.rubra Melicope Melicope rubra \N \N \N \N \N 23000 B.spinescens Bursera Bursera spinescens \N \N \N \N \N 23001 A.afra Artemisia Artemisia afra \N \N \N \N \N 23002 M.lanceifolia Margaritopsis Margaritopsis lanceifolia \N \N \N \N \N 23003 S.nicolai Strelitzia Strelitzia nicolai white bird-of-paradise \N \N \N \N 23004 C.marginata Calystegia Calystegia marginata \N \N \N \N \N 106865 \N genus Djaloniella \N \N \N \N \N 23005 \N varietas Ceanothus thyrsiflorus var. thyrsiflorus \N \N \N \N \N 23006 A.sylvatica Artemisia Artemisia sylvatica \N \N \N \N \N 23007 P.angusta Phalaris Phalaris angusta \N \N \N \N \N 23008 D.SH-2010 Dapania Dapania sp. SH-2010 \N \N \N \N \N 23009 \N varietas Dioscorea subcalva var. submollis \N \N \N \N \N 23010 K.bridelioides Keayodendron Keayodendron bridelioides \N \N \N \N \N 23011 C.pinatzii Campanula Campanula pinatzii \N \N \N \N \N 23012 M.szechuanicum Maianthemum Maianthemum szechuanicum \N \N \N \N \N 23013 C.SH-2010 Cleyera Cleyera sp. SH-2010 \N \N \N \N \N 23014 G.elongatum Galium Galium elongatum \N \N \N \N \N 23015 T.sinense Taraxacum Taraxacum sinense \N \N \N \N \N 23016 S.macrosperma Swertia Swertia macrosperma \N \N \N \N \N 23017 \N genus Haageocereus \N \N \N \N \N 23018 \N genus Sanicula sanicles,snakeroots \N \N \N \N 23019 T.ovina Triscenia Triscenia ovina \N \N \N \N \N 23020 L.assurgens Lobelia Lobelia assurgens \N \N \N \N \N 23021 A.obtusa Anatherostipa Anatherostipa obtusa \N \N \N \N \N 23022 \N family Apiaceae carrot family \N \N \N \N 23023 S.spathularis Saxifraga Saxifraga spathularis \N \N \N \N \N 23024 V.capensis Vernonia Vernonia capensis \N \N \N \N \N 23025 \N genus Chione \N \N \N \N \N 23026 C.platystylis Cyperus Cyperus platystylis \N \N \N \N \N 23027 P.lilloi Paspalum Paspalum lilloi \N \N \N \N \N 23028 A.cepa Allium Allium vavilovii x Allium cepa \N \N \N \N \N 23029 H.pedunculatus Hibiscus Hibiscus pedunculatus \N \N \N \N \N 23030 \N genus Carpenteria \N \N \N \N \N 23031 G.rotundifolius Gymnocarpos Gymnocarpos rotundifolius \N \N \N \N \N 23032 G.africana Genlisea Genlisea africana \N \N \N \N \N 23033 F.arizonica Festuca Festuca arizonica \N \N \N \N \N 23034 A.cruckshanksii Astragalus Astragalus cruckshanksii \N \N \N \N \N 23035 A.wilsonii Arisaema Arisaema wilsonii \N \N \N \N \N 23036 A.zergericum Allium Allium zergericum \N \N \N \N \N 23037 \N genus Anastrabe \N \N \N \N \N 23038 S.agami Shorea Shorea agami \N \N \N \N \N 23039 C.discolor Canna Canna discolor \N \N \N \N \N 23040 C.'amboinensis' Citrus Citrus sp. 'amboinensis' \N \N \N \N \N 23041 S.dewevrei Sabicea Sabicea dewevrei \N \N \N \N \N 23042 M.secacul Malabaila Malabaila secacul \N \N \N \N \N 23043 S.cinerea Scorzonera Scorzonera cinerea \N \N \N \N \N 23044 M.hastata Merremia Merremia hastata \N \N \N \N \N 23045 L.angulatus Lathyrus Lathyrus angulatus \N \N \N \N \N 23046 Z.macrosepala Zehneria Zehneria macrosepala \N \N \N \N \N 23047 P.livida Psydrax Psydrax livida \N \N \N \N \N 23048 B.fragifera Breonia Breonia fragifera \N \N \N \N \N 23049 H.asper Himalayacalamus Himalayacalamus asper \N \N \N \N \N 23050 C.ochreatus Cistus Cistus ochreatus \N \N \N \N \N 23051 D.KMN-2007 Dichaea Dichaea cf. lagotis KMN-2007 \N \N \N \N \N 23052 A.foveopilosa Albraunia Albraunia foveopilosa \N \N \N \N \N 23053 P.gayi Polyachyrus Polyachyrus gayi \N \N \N \N \N 23054 A.macrocentra Aerangis Aerangis macrocentra \N \N \N \N \N 23055 F.heteropetala Fitzalania Fitzalania heteropetala \N \N \N \N \N 23056 S.glutinosa Senna Senna glutinosa \N \N \N \N \N 23057 C.gouanii Conyza Conyza gouanii \N \N \N \N \N 23058 \N genus Watsonia \N \N \N \N \N 23059 A.hallii Astragalus Astragalus hallii \N \N \N \N \N 23060 L.ovata Listera Listera ovata \N \N \N \N \N 23061 M.acuminata Markhamia Markhamia acuminata \N \N \N \N \N 23062 H.citrina Hoya Hoya citrina \N \N \N \N \N 23063 H.ecuadorensis Huilaea Huilaea ecuadorensis \N \N \N \N \N 23064 C.octona Clidemia Clidemia octona \N \N \N \N \N 23065 O.6283 Oreopanax Oreopanax sp. 6283 \N \N \N \N \N 23066 \N genus Clinanthus \N \N \N \N \N 23067 T.hirsutum Typhonium Typhonium hirsutum \N \N \N \N \N 23068 P.490 Pentagonia Pentagonia sp. Tuberquia et al. 490 \N \N \N \N \N 23069 R.saxifragoides Rhododendron Rhododendron saxifragoides \N \N \N \N \N 23070 A.douglasii Astragalus Astragalus douglasii \N \N \N \N \N 23071 \N varietas Artemisia norvegica var. uralensis \N \N \N \N \N 23072 S.distachya Staberoha Staberoha distachya \N \N \N \N \N 23073 R.raetam Retama Retama raetam retem \N \N \N \N 23074 A.luridus Anisodus Anisodus luridus \N \N \N \N \N 23075 S.dielsii Schefflera Schefflera dielsii \N \N \N \N \N 23076 P.sphaerospora Polygala Polygala sphaerospora \N \N \N \N \N 23077 P.breweri Packera Packera breweri \N \N \N \N \N 23078 R.leucogigas Rhododendron Rhododendron leucogigas \N \N \N \N \N 23079 \N genus Acantholippia \N \N \N \N \N 23080 M.australis Morus Morus australis Aino mulberry,tang-gui mulberry \N \N \N \N 23081 \N subspecies Acer cappadocicum subsp. sinicum \N \N \N \N \N 23082 A.rubens Allium Allium rubens \N \N \N \N \N 23083 U.purpurea Utricularia Utricularia purpurea eastern purple bladderwort \N \N \N \N 23084 M.delavayi Microtoena Microtoena delavayi \N \N \N \N \N 23085 B.(BGM) Bougainvillea Bougainvillea cf. glabra (BGM) \N \N \N \N \N 23086 S.anthemifolia Soliva Soliva anthemifolia \N \N \N \N \N 23087 T.flavescens Timonius Timonius flavescens \N \N \N \N \N 23088 M.ferrea Mesua Mesua ferrea \N \N \N \N \N 23089 D.alata Dipteryx Dipteryx alata \N \N \N \N \N 23090 M.thamnoides Macrocarpaea Macrocarpaea thamnoides \N \N \N \N \N 23091 M.washingtonensis Mimulus Mimulus washingtonensis \N \N \N \N \N 23092 V.miqueliana Veronica Veronica miqueliana \N \N \N \N \N 23093 M.fasciculata Microlicia Microlicia fasciculata \N \N \N \N \N 23094 P.longistilum Philodendron Philodendron longistilum \N \N \N \N \N 23095 B.plantaginea Barbacenia Barbacenia plantaginea \N \N \N \N \N 23096 C.tetragonolobum Ceratophytum Ceratophytum tetragonolobum \N \N \N \N \N 23097 D.agathodaemonis Dendrobium Dendrobium agathodaemonis \N \N \N \N \N 23098 M.bryophora Micranthes Micranthes bryophora \N \N \N \N \N 23099 C.albostriatus Cyperus Cyperus albostriatus \N \N \N \N \N 23100 S.salzmannii Scorzoneroides Scorzoneroides salzmannii \N \N \N \N \N 23101 G.pentandrum Graptopetalum Graptopetalum pentandrum \N \N \N \N \N 107348 \N genus Grisollea \N \N \N \N \N 23102 D.littoralis Drypetes Drypetes littoralis \N \N \N \N \N 23103 P.odorata Psydrax Psydrax odorata \N \N \N \N \N 23104 Z.acerosa Zinnia Zinnia acerosa \N \N \N \N \N 23105 \N genus Sanango \N \N \N \N \N 23106 S.nuda Saussurea Saussurea nuda \N \N \N \N \N 23107 P.plowmanii Palicourea Palicourea plowmanii \N \N \N \N \N 23108 \N genus Phymatarum \N \N \N \N \N 23109 \N genus Geissorhiza \N \N \N \N \N 23110 V.edule Viburnum Viburnum edule mooseberry \N \N \N \N 23111 M.paludosum Mauranthemum Mauranthemum paludosum \N \N \N \N \N 23112 R.fluitans Ranunculus Ranunculus fluitans \N \N \N \N \N 23113 S.hostmannii Swartzia Swartzia hostmannii \N \N \N \N \N 23114 P.spuria Pseudolmedia Pseudolmedia spuria \N \N \N \N \N 23115 D.holstii Dorstenia Dorstenia holstii \N \N \N \N \N 23116 \N varietas Urceodiscus belensis var. conferta \N \N \N \N \N 23117 R.lineatus Rubus Rubus lineatus \N \N \N \N \N 23118 M.groenlandica Minuartia Minuartia groenlandica \N \N \N \N \N 23119 Z.pulchella Zephyranthes Zephyranthes pulchella \N \N \N \N \N 23120 P.submontana Psychotria Psychotria submontana \N \N \N \N \N 23121 A.howellii Allium Allium howellii \N \N \N \N \N 23122 C.scabrata Carex Carex scabrata \N \N \N \N \N 23123 A.simulans Allocasuarina Allocasuarina simulans \N \N \N \N \N 23124 \N genus Hieracium \N \N \N \N \N 23125 E.2203 Euphorbia Euphorbia sp. Cordeiro et al. 2203 \N \N \N \N \N 23126 \N subspecies Festuca arundinacea subsp. arundinacea \N \N \N \N \N 23127 C.bricchettii Corchorus Corchorus bricchettii \N \N \N \N \N 23128 B.acuminata Blackstonia Blackstonia acuminata \N \N \N \N \N 23129 \N varietas Dendrobium tetragonum var. giganteum \N \N \N \N \N 23130 \N genus Asterogyne \N \N \N \N \N 23131 A.ventricosum Apium Apium ventricosum \N \N \N \N \N 23132 H.heterophyllum Hemiphragma Hemiphragma heterophyllum \N \N \N \N \N 23133 \N genus Solena \N \N \N \N \N 23134 \N genus Pityopsis \N \N \N \N \N 23135 H.pseudopetiolatum Hypericum Hypericum pseudopetiolatum \N \N \N \N \N 23136 F.moupinensis Fragaria Fragaria moupinensis \N \N \N \N \N 23137 S.arundo Solanum Solanum arundo \N \N \N \N \N 23138 \N subspecies Hibiscus kokio subsp. kokio \N \N \N \N \N 23139 T.lateospina Trevesia Trevesia lateospina \N \N \N \N \N 23140 M.argyrophylla Miconia Miconia argyrophylla \N \N \N \N \N 23141 L.buchii Lavandula Lavandula buchii \N \N \N \N \N 23142 C.tenuissima Consolida Consolida tenuissima \N \N \N \N \N 23143 H.pinnatifolia Hicksbeachia Hicksbeachia pinnatifolia \N \N \N \N \N 23144 \N genus Paropsia \N \N \N \N \N 23145 U.lateriflora Utricularia Utricularia lateriflora \N \N \N \N \N 23146 \N varietas Brassica juncea var. foliosa \N \N \N \N \N 23147 S.vermiculata Suaeda Suaeda vermiculata \N \N \N \N \N 23148 H.stachyoideum Hieracium Hieracium stachyoideum \N \N \N \N \N 23149 T.cruciatum Tetrastigma Tetrastigma cruciatum \N \N \N \N \N 23150 \N varietas Arundinella setosa var. setosa \N \N \N \N \N 23151 \N genus Cynometra \N \N \N \N \N 23152 \N varietas Gynura calciphila var. dissecta \N \N \N \N \N 23153 O.dines Oxalis Oxalis dines \N \N \N \N \N 23154 S.5254 Schefflera Schefflera aff. versteegii Lowry 5254 \N \N \N \N \N 23155 T.weddellianum Taccarum Taccarum weddellianum \N \N \N \N \N 23156 \N tribe Zantedeschieae \N \N \N \N \N 23157 E.compositus Erigeron Erigeron compositus \N \N \N \N \N 23158 C.californicum Cypripedium Cypripedium californicum \N \N \N \N \N 23159 S.10617 Soyauxia Soyauxia sp. Cheek 10617 \N \N \N \N \N 23160 L.simpsonii Ludwigia Ludwigia simpsonii \N \N \N \N \N 23161 P.galpinii Pentaschistis Pentameris galpinii \N \N \N \N \N 23162 \N varietas Bupleurum commelynoideum var. flaviflorum \N \N \N \N \N 23163 \N genus Festucopsis \N \N \N \N \N 23164 S.ixoroides Solenandra Solenandra ixoroides \N \N \N \N \N 23165 C.mairei Carex Carex mairei \N \N \N \N \N 23166 P.2 Pilea Pilea sp. Peru 2 \N \N \N \N \N 23167 \N no rank Saccharum hybrid cultivar CP72-1210 \N \N \N \N \N 23168 \N genus Synandrospadix \N \N \N \N \N 23169 \N genus Weberbauerella \N \N \N \N \N 23170 H.cypria Hedera Hedera cypria \N \N \N \N \N 23171 A.precatorius Abrus Abrus precatorius Indian licorice,crab's eye,crab's-eye,rosary pea \N \N \N \N 23172 S.88220 Schlimmia Schlimmia sp. Whitten 88220 \N \N \N \N \N 23173 \N genus Anisocarpus \N \N \N \N \N 23174 \N genus Hopea \N \N \N \N \N 23175 B.laxissima Bertiera Bertiera laxissima \N \N \N \N \N 23176 D.odorata Delairea Delairea odorata German-ivy,parlor-ivy \N \N \N \N 23177 \N no rank unclassified Acanthaceae \N \N \N \N \N 23178 E.crassifolium Eriodictyon Eriodictyon crassifolium \N \N \N \N \N 23179 \N genus Chamaeraphis \N \N \N \N \N 23180 \N genus Dracontioides \N \N \N \N \N 23181 M.gawleri Moraea Moraea gawleri \N \N \N \N \N 23182 P.kangdingensis Parnassia Parnassia kangdingensis \N \N \N \N \N 23183 A.salsa Anabasis Anabasis salsa \N \N \N \N \N 23184 I.squamosum Iochroma Iochroma squamosum \N \N \N \N \N 23185 A.riparia Ageratina Ageratina riparia \N \N \N \N \N 23283 H.tamba Hyparrhenia Hyparrhenia tamba \N \N \N \N \N 23186 I.sample environmental samples Taxonomy:1096688 Iryanthera environmental sample \N \N \N \N \N 23187 A.subsericea Alchemilla Alchemilla subsericea \N \N \N \N \N 23188 H.aspera Hydrangea Hydrangea aspera \N \N \N \N \N 23189 T.ruizii Thymelaea Thymelaea ruizii \N \N \N \N \N 23190 \N genus Cordyline \N \N \N \N \N 23191 A.caucalis Anthriscus Anthriscus caucalis \N \N \N \N \N 23192 \N subspecies Viola alba subsp. dehnhardtii \N \N \N \N \N 23193 \N subspecies Ulex argenteus subsp. argenteus \N \N \N \N \N 23194 A.cordifolia Ainsliaea Ainsliaea cordifolia \N \N \N \N \N 23195 N.congesta Nuxia Nuxia congesta \N \N \N \N \N 23196 G.cultivar Gladiolus Gladiolus hybrid cultivar \N \N \N \N \N 23197 I.chamaebuxus Ilex Ilex chamaebuxus \N \N \N \N \N 23198 O.library unclassified Oxytropis Oxytropis arctobia/Oxytropis maydelliana mixed EST library \N \N \N \N \N 23199 C.pilosa Cleome Cleome pilosa \N \N \N \N \N 23200 \N subspecies Montanoa ovalifolia subsp. australis \N \N \N \N \N 23201 S.ifniensis Saharanthus Saharanthus ifniensis \N \N \N \N \N 23202 C.stipulaceus Croton Croton stipulaceus \N \N \N \N \N 23203 S.australis Saltugilia Saltugilia australis \N \N \N \N \N 23204 L.calostachys Leucas Leucas calostachys \N \N \N \N \N 23205 \N genus Perama \N \N \N \N \N 23206 N.calcicola Narcissus Narcissus calcicola \N \N \N \N \N 23207 P.durifolium Paspalum Paspalum durifolium \N \N \N \N \N 23208 \N varietas Pseudophoenix sargentii var. saonae \N \N \N \N \N 23209 \N varietas Allium cyaneum var. deltoides \N \N \N \N \N 23210 G.verrucosum Galium Galium verrucosum \N \N \N \N \N 23211 B.rotundifolia Breweria Breweria rotundifolia \N \N \N \N \N 23212 S.zentaro-tashiroi Sedum Sedum zentaro-tashiroi \N \N \N \N \N 23213 \N genus Romanschulzia \N \N \N \N \N 23214 D.balansae Delarbrea Delarbrea balansae \N \N \N \N \N 23215 F.cultivar Freesia Freesia hybrid cultivar \N \N \N \N \N 23216 H.2402 Habranthus Habranthus sp. Meerow 2402 \N \N \N \N \N 23217 A.bathii Agathosma Agathosma bathii \N \N \N \N \N 23218 Z.peduncularis Zaluzianskya Zaluzianskya peduncularis \N \N \N \N \N 23219 A.filipes Ampelocissus Ampelocissus filipes \N \N \N \N \N 23220 \N genus Karelinia \N \N \N \N \N 23221 A.bidwillii Akania Akania bidwillii \N \N \N \N \N 23222 \N varietas Myrceugenia ovata var. acutata \N \N \N \N \N 23223 L.haagnerae Lavrania Lavrania haagnerae \N \N \N \N \N 23224 \N varietas Sacciolepis indica var. turgida \N \N \N \N \N 23225 M.cylindrocarpa Meiogyne Meiogyne cylindrocarpa \N \N \N \N \N 23226 D.canalense Dysoxylum Dysoxylum canalense \N \N \N \N \N 23227 \N varietas Junellia toninii var. toninii \N \N \N \N \N 23228 \N genus Gorteria \N \N \N \N \N 23229 \N genus Ducrosia \N \N \N \N \N 23230 O.fuciflora Ophrys Ophrys fuciflora \N \N \N \N \N 23231 F.lineata Flemingia Flemingia lineata \N \N \N \N \N 23232 M.arundinacea Maranta Maranta arundinacea \N \N \N \N \N 23233 P.mistassinica Primula Primula mistassinica \N \N \N \N \N 23234 H.austroqueenslandicum Haemodorum Haemodorum austroqueenslandicum \N \N \N \N \N 23235 P.7084 Polypogon Polypogon sp. Soreng 7084 \N \N \N \N \N 23236 \N genus Aquilegia \N \N \N \N \N 23237 P.dissolutum Peucedanum Peucedanum dissolutum \N \N \N \N \N 23238 T.patulum Trifolium Trifolium patulum \N \N \N \N \N 23239 E.tortilis Euphorbia Euphorbia tortilis \N \N \N \N \N 23240 M.nivea Mathewsia Mathewsia nivea \N \N \N \N \N 23241 B.trifida Bouteloua Bouteloua trifida red grama \N \N \N \N 23242 M.spiciformis Muhlenbergia Muhlenbergia spiciformis \N \N \N \N \N 23243 I.mauritiana Isachne Isachne mauritiana \N \N \N \N \N 23244 M.brachystachyum Misodendrum Misodendrum brachystachyum \N \N \N \N \N 23245 \N genus Cymbidium \N \N \N \N \N 23246 C.cordifolia Cyrtandra Cyrtandra cordifolia \N \N \N \N \N 23247 A.viscoidea Antidaphne Antidaphne viscoidea \N \N \N \N \N 23248 C.calotricha Columnea Columnea calotricha \N \N \N \N \N 23249 \N genus Novosieversia \N \N \N \N \N 23250 M.pubescens Myrcia Myrcia pubescens \N \N \N \N \N 23251 C.neomexicanum Chenopodium Chenopodium neomexicanum \N \N \N \N \N 23252 T.karooica Thamnochortus Thamnochortus karooica \N \N \N \N \N 23253 \N genus Herminium \N \N \N \N \N 23254 V.SRR-2011 Vanilla Vanilla sp. SRR-2011 \N \N \N \N \N 23255 O.arguta Olearia Olearia arguta \N \N \N \N \N 23256 \N genus Ephippiandra \N \N \N \N \N 23257 P.tragacanthoides Pelargonium Pelargonium tragacanthoides \N \N \N \N \N 23258 \N genus Liquidambar sweet gum trees \N \N \N \N 23259 A.apiculata Amorpha Amorpha apiculata \N \N \N \N \N 23260 \N genus Legrandia \N \N \N \N \N 23261 P.likiangensis Pedicularis Pedicularis likiangensis \N \N \N \N \N 23262 C.balansae Colchicum Colchicum balansae \N \N \N \N \N 23263 P.tortuosa Pentaschistis Pentameris tortuosa \N \N \N \N \N 23264 H.TL313 Hydrobryum Hydrobryum sp. TL313 \N \N \N \N \N 23265 E.graminifolius Edraianthus Edraianthus graminifolius \N \N \N \N \N 23266 U.appendiculata Uncaria Uncaria appendiculata \N \N \N \N \N 23267 V.pulchra Vasconcellea Vasconcellea pulchra \N \N \N \N \N 23268 \N family Myrtaceae myrtle family \N \N \N \N 23269 \N genus Sarcocaulon \N \N \N \N \N 23270 A.argyrea Alocasia Alocasia argyrea \N \N \N \N \N 23271 C.macrocarpa Couma Couma macrocarpa \N \N \N \N \N 23272 P.trilobum Pittosporum Pittosporum trilobum \N \N \N \N \N 23273 D.sphaerocarpa Draba Draba sphaerocarpa \N \N \N \N \N 23274 R.417 Rhytidophyllum Rhytidophyllum sp. Hahn 417 \N \N \N \N \N 23275 N.paulinae Neobuchia Neobuchia paulinae \N \N \N \N \N 23276 H.3255 Hydrocotyle Hydrocotyle sp. Van Valkenburg 3255 \N \N \N \N \N 23277 P.patellaris Patellifolia Patellifolia patellaris \N \N \N \N \N 23278 K.turkestanica Kosopoljanskia Kosopoljanskia turkestanica \N \N \N \N \N 23279 C.arctica Caltha Caltha arctica \N \N \N \N \N 23280 C.harveyi Canarium Canarium harveyi \N \N \N \N \N 23281 \N subspecies Beta vulgaris subsp. vulgaris Swiss chard,field beet,garden beet,spinach chard \N \N \N \N 23282 B.FS650 Bulbophyllum Bulbophyllum sp. FS650 \N \N \N \N \N 23285 S.lagascae Stipa Stipa lagascae \N \N \N \N \N 23286 A.hispida Alibertia Alibertia hispida \N \N \N \N \N 23287 H.tomentosa Hudsonia Hudsonia tomentosa \N \N \N \N \N 23288 F.funicularis Freycinetia Freycinetia funicularis \N \N \N \N \N 23289 \N subspecies Crepis occidentalis subsp. costata \N \N \N \N \N 23290 D.boliviana Dendrobangia Dendrobangia boliviana \N \N \N \N \N 23291 E.cannabinum Eupatorium Eupatorium cannabinum hemp agrimony \N \N \N \N 23292 L.maritimum Lilium Lilium maritimum \N \N \N \N \N 23293 Z.montana Zieria Zieria montana \N \N \N \N \N 23294 \N varietas Nierembergia linariifolia var. glabriscula \N \N \N \N \N 23295 \N genus Domohinea \N \N \N \N \N 23296 P.cirrhiflora Passiflora Passiflora cirrhiflora \N \N \N \N \N 23297 P.virgata Potentilla Potentilla virgata \N \N \N \N \N 23298 E.zuluensis Eugenia Eugenia zuluensis \N \N \N \N \N 23299 \N varietas Asarum sieboldii var. cornutum \N \N \N \N \N 23300 S.U012 Symbegonia Symbegonia sp. Kew U012 \N \N \N \N \N 23301 D.tenuipes Daphnandra Daphnandra tenuipes red-flowered socketwood,socket sassafras \N \N \N \N 23302 T.gnaphalodes Tournefortia Tournefortia gnaphalodes \N \N \N \N \N 23303 D.BGB-2009 Dalechampia Dalechampia aff. clematidifolia BGB-2009 \N \N \N \N \N 23304 P.subserratus Penstemon Penstemon subserratus \N \N \N \N \N 23305 A.laurifolia Albertisia Albertisia laurifolia \N \N \N \N \N 23306 S.caudatum Schizostachyum Schizostachyum caudatum \N \N \N \N \N 23307 \N varietas Adenophora remotiflora var. hirticalyx \N \N \N \N \N 23308 \N genus Stemmacantha \N \N \N \N \N 23309 \N varietas Actinidia chinensis var. rufopulpa \N \N \N \N \N 23310 S.cubensis Samyda Samyda cubensis \N \N \N \N \N 23311 A.fissifolius Axonopus Axonopus fissifolius \N \N \N \N \N 23312 E.torquata Eucalyptus Eucalyptus torquata \N \N \N \N \N 23313 \N genus Spiraea bridal-wreaths \N \N \N \N 23314 T.pinnatum Tetrataenium Tetrataenium pinnatum \N \N \N \N \N 23315 \N no rank magnoliids \N \N \N \N \N 23316 A.korupensis Ancistrocladus Ancistrocladus korupensis \N \N \N \N \N 23317 C.somaliense Cyclocheilon Cyclocheilon somaliense \N \N \N \N \N 23318 N.longipes Nesaea Nesaea longipes \N \N \N \N \N 23319 G.hexandra Gaudichaudia Gaudichaudia hexandra \N \N \N \N \N 23320 P.nyanzensis Polystachya Polystachya nyanzensis \N \N \N \N \N 23321 S.petraeum Solanum Solanum petraeum \N \N \N \N \N 23322 \N genus Campanulastrum \N \N \N \N \N 23323 \N genus Croomia \N \N \N \N \N 23324 \N varietas Acacia senegal var. rostrata \N \N \N \N \N 23325 G.urophylla Garcinia Garcinia urophylla \N \N \N \N \N 23326 \N genus Heteranthelium \N \N \N \N \N 23327 C.moschata Crassula Crassula moschata \N \N \N \N \N 23328 E.biumbellata Euphorbia Euphorbia biumbellata \N \N \N \N \N 23329 M.calcicola Mimosa Mimosa calcicola \N \N \N \N \N 23330 B.macvaughiana Bursera Bursera macvaughiana \N \N \N \N \N 23331 Z.SRR-2011 unclassified Zygopetalinae Zygopetalinae sp. 7 SRR-2011 \N \N \N \N \N 23332 M.perbella Mammillaria Mammillaria perbella \N \N \N \N \N 23333 S.praecox Salsola Salsola praecox \N \N \N \N \N 23334 G.whitei Gonzalagunia Gonzalagunia whitei \N \N \N \N \N 23335 S.magnicamporum Spiranthes Spiranthes magnicamporum \N \N \N \N \N 23336 A.aberrans Ardisia Ardisia aberrans \N \N \N \N \N 23337 \N subtribe Venegasinae \N \N \N \N \N 23338 C.nodosa Cymodocea Cymodocea nodosa \N \N \N \N \N 23339 T.paniculata Triopterys Triopterys paniculata \N \N \N \N \N 23340 C.662 Coccinia Coccinia sp. Geerling & Bokdam 662 \N \N \N \N \N 23341 D.K20600 Diospyros Diospyros sp. K20600 \N \N \N \N \N 23342 L.reflexum Leucospermum Leucospermum reflexum \N \N \N \N \N 23343 E.plantagineum Echium Echium plantagineum \N \N \N \N \N 23344 C.urens Caryota Caryota urens \N \N \N \N \N 23345 \N varietas Prionosciadium thapsoides var. pringlei \N \N \N \N \N 23346 P.comptoniifolia Pedicularis Pedicularis comptoniifolia \N \N \N \N \N 23347 \N varietas Artemisia dracunculus var. glauca \N \N \N \N \N 23348 H.lobbii Hydrangea Hydrangea lobbii \N \N \N \N \N 23349 A.filiforme Arcytophyllum Arcytophyllum filiforme \N \N \N \N \N 23350 \N subspecies Onobrychis argentea subsp. hispanica \N \N \N \N \N 23351 P.morisonii Peucedanum Peucedanum morisonii \N \N \N \N \N 23352 G.parvifolia Garcinia Garcinia parvifolia \N \N \N \N \N 23353 N.1997' Neomarica Neomarica sp. 'Lejeune 1997' \N \N \N \N \N 23354 Y.falcatiaurita Yushania Yushania falcatiaurita \N \N \N \N \N 23355 C.CG452 Chrysochlamys Chrysochlamys sp. CG452 \N \N \N \N \N 23356 O.oxycarpus Oreobolus Oreobolus oxycarpus \N \N \N \N \N 23357 \N genus Pleuranthodendron \N \N \N \N \N 23358 S.elongata Schefflera Schefflera elongata \N \N \N \N \N 23359 G.102 Gaiadendron Gaiadendron sp. Munoz et al. 102 \N \N \N \N \N 23360 C.biserrata Cyrtandra Cyrtandra biserrata \N \N \N \N \N 23361 \N genus Sinoradlkofera \N \N \N \N \N 23362 D.2001 Dioscorea Dioscorea sp. Newman 2001 \N \N \N \N \N 23363 V.saliunca Valeriana Valeriana saliunca \N \N \N \N \N 23364 O.cadmea Onobrychis Onobrychis cadmea \N \N \N \N \N 23365 D.Acc.13 Dinochloa Dinochloa sp. KLU Bambusetum Acc.13 \N \N \N \N \N 23366 C.gracillimus Calochilus Calochilus gracillimus \N \N \N \N \N 23367 E.graecus Echinops Echinops graecus \N \N \N \N \N 23368 E.cedrorum Erodium Erodium cedrorum \N \N \N \N \N 23369 S.candiae Sulcorebutia Sulcorebutia candiae \N \N \N \N \N 23370 \N varietas Mimosa modesta var. modesta \N \N \N \N \N 23371 \N subspecies Erica goatcheriana subsp. goatcheriana \N \N \N \N \N 23372 C.racemosa Coffea Coffea racemosa \N \N \N \N \N 23373 S.patula Salicornia Salicornia patula \N \N \N \N \N 23374 G.subelliptica Garcinia Garcinia subelliptica \N \N \N \N \N 23375 \N tribe Meliceae \N \N \N \N \N 23376 P.curtifolia Poa Poa curtifolia \N \N \N \N \N 23377 I.tinctoria Impatiens Impatiens tinctoria \N \N \N \N \N 23378 \N forma Eleutherococcus japonicus f. kiusianus \N \N \N \N \N 23379 S.879 Saussurea Saussurea cf. tatsienensis Liu 879 \N \N \N \N \N 23380 P.howellii Perideridia Perideridia howellii \N \N \N \N \N 23381 P.ivorensis Psychotria Psychotria ivorensis \N \N \N \N \N 23382 E.californicum Erythronium Erythronium californicum California fawnlily \N \N \N \N 23383 D.4853 Dryadodaphne Dryadodaphne sp. Gray 4853 \N \N \N \N \N 23384 C.cinereus Cucumis Cucumis cinereus \N \N \N \N \N 23385 E.knippelianus Echinocereus Echinocereus knippelianus \N \N \N \N \N 23386 E.hamiltonianus Euonymus Euonymus hamiltonianus \N \N \N \N \N 23387 A.jessenii Astragalus Astragalus jessenii \N \N \N \N \N 23388 G.vernayi Gentiana Gentiana vernayi \N \N \N \N \N 23389 A.piepunense Aconitum Aconitum piepunense \N \N \N \N \N 23390 M.frondosus Myrocarpus Myrocarpus frondosus \N \N \N \N \N 23391 G.klotzschianum Gossypium Gossypium klotzschianum \N \N \N \N \N 23392 O.attaquana Oxalis Oxalis attaquana \N \N \N \N \N 23393 \N genus Espejoa \N \N \N \N \N 23394 \N genus Distephanus \N \N \N \N \N 23395 V.94046 Vitis Vitis sp. Qiu 94046 \N \N \N \N \N 23396 T.dregei Tetrachne Tetrachne dregei \N \N \N \N \N 23397 E.microphylla Epipactis Epipactis microphylla \N \N \N \N \N 23398 C.maximowiczii Chrysosplenium Chrysosplenium maximowiczii \N \N \N \N \N 23399 C.lycopifolia Centaurea Centaurea lycopifolia \N \N \N \N \N 23400 U.banksii Uncinia Uncinia banksii \N \N \N \N \N 23401 P.cultivar Prunus Prunus hybrid cultivar \N \N \N \N \N 23402 \N genus Ancistrotropis \N \N \N \N \N 23403 M.multiflora Mandirola Mandirola multiflora \N \N \N \N \N 23404 B.oenotheroides Barleria Barleria oenotheroides \N \N \N \N \N 23405 P.bertonii Paspalum Paspalum bertonii \N \N \N \N \N 23406 C.tagliabuana Campsis Campsis x tagliabuana \N \N \N \N \N 23407 C.munbyana Caralluma Caralluma munbyana \N \N \N \N \N 23408 I.indica Indurgia Indurgia indica \N \N \N \N \N 23409 V.carinata Vriesea Vriesea carinata \N \N \N \N \N 23410 M.cordifolia Macleania Macleania cordifolia \N \N \N \N \N 23411 P.euryphylla Plantago Plantago euryphylla \N \N \N \N \N 23412 P.brevicuculata Plagiostachys Plagiostachys brevicuculata \N \N \N \N \N 23413 O.pyramidale Ochroma Ochroma pyramidale balsa,corkwood \N \N \N \N 23414 \N subspecies Veronica barrelieri subsp. prodanii \N \N \N \N \N 23415 C.miarensis Croton Croton miarensis \N \N \N \N \N 23416 H.MHL-2012 Halenia Halenia sp. MHL-2012 \N \N \N \N \N 23417 O.heteranthum Oncidium Oncidium heteranthum \N \N \N \N \N 23418 \N genus Smilax \N \N \N \N \N 23419 F.namaquana Felicia Felicia namaquana \N \N \N \N \N 23420 P.s.n. Polygonum Polygonum sp. Soltis s.n. \N \N \N \N \N 23421 Q.parviflora Qualea Qualea parviflora \N \N \N \N \N 23422 A.bilimbi Averrhoa Averrhoa bilimbi \N \N \N \N \N 23423 B.aethiopica Bertiera Bertiera aethiopica \N \N \N \N \N 23424 R.grandiflora Rhynchanthera Rhynchanthera grandiflora \N \N \N \N \N 23425 B.abyssinica Baphia Baphia abyssinica \N \N \N \N \N 23426 E.creticum Eryngium Eryngium creticum \N \N \N \N \N 23427 P.japonica Pollia Pollia japonica \N \N \N \N \N 23428 \N genus Chaenorhinum \N \N \N \N \N 23429 C.lycopodioides Cassiope Cassiope lycopodioides \N \N \N \N \N 23430 G.argense Galium Galium argense \N \N \N \N \N 23431 O.oxyloba Orobanche Orobanche oxyloba \N \N \N \N \N 23432 P.1054 Psychotria Psychotria sp. Araujo 1054 \N \N \N \N \N 23433 T.macropetalus Trollius Trollius macropetalus \N \N \N \N \N 23434 P.divaricata Pterogastra Pterogastra divaricata \N \N \N \N \N 23435 D.194 Drymophila Drymophila sp. Chase 194 \N \N \N \N \N 23436 L.decurrens Laggera Laggera decurrens \N \N \N \N \N 23437 \N genus Malaxis \N \N \N \N \N 23438 A.rhodacantha Agave Agave rhodacantha \N \N \N \N \N 23439 M.zeyheri Massonia Massonia zeyheri \N \N \N \N \N 23440 O.carrilloi Otatea Otatea carrilloi \N \N \N \N \N 23441 B.crispiloba Burmeistera Burmeistera crispiloba \N \N \N \N \N 23442 M.inermis Monsonia Monsonia inermis \N \N \N \N \N 23443 \N varietas Ivesia arizonica var. arizonica \N \N \N \N \N 23444 A.myrtifolia Acacia Acacia myrtifolia \N \N \N \N \N 23445 S.mexicana Sansevieria Sansevieria mexicana Mexican bowstring hemp \N \N \N \N 23446 \N subspecies Miconia cinerascens subsp. robusta \N \N \N \N \N 23447 B.carinatus Bromus Bromus carinatus California brome,sweet brome \N \N \N \N 23448 H.spicata Hexalectris Hexalectris spicata \N \N \N \N \N 23449 O.monophylla Oxalis Oxalis monophylla \N \N \N \N \N 23450 D.cantoniense Disporum Disporum cantoniense \N \N \N \N \N 23451 F.rexiae Fosterella Fosterella rexiae \N \N \N \N \N 23452 A.flabellata Aquilegia Aquilegia flabellata \N \N \N \N \N 23453 \N subspecies Impatiens palliderosea subsp. lupangaensis \N \N \N \N \N 23454 O.lilacina Orchadocarpa Orchadocarpa lilacina \N \N \N \N \N 23455 M.hirsuta Macroscepis Macroscepis hirsuta \N \N \N \N \N 23456 C.albifrons Codia Codia albifrons \N \N \N \N \N 23457 D.ventricosa Dipelta Dipelta ventricosa \N \N \N \N \N 23458 P.nemorosa Pereskia Pereskia nemorosa \N \N \N \N \N 23459 G.involutus Gladiolus Gladiolus involutus \N \N \N \N \N 23460 \N subspecies Stipagrostis plumosa subsp. szovitsiana \N \N \N \N \N 23461 E.himalaicum Eutrema Eutrema himalaicum \N \N \N \N \N 23462 C.coronalis Chusquea Chusquea coronalis \N \N \N \N \N 23463 \N subspecies Korthalsella japonica subsp. brassiana \N \N \N \N \N 23464 P.rupicola Penstemon Penstemon rupicola \N \N \N \N \N 23465 E.racemosa Endosamara Endosamara racemosa \N \N \N \N \N 23466 P.abrahamiana Polyscias Polyscias abrahamiana \N \N \N \N \N 23467 L.fordiana Licuala Licuala fordiana \N \N \N \N \N 23468 P.brevilabre Prasophyllum Prasophyllum brevilabre \N \N \N \N \N 23469 \N genus Sambucus \N \N \N \N \N 23470 H.porrifolium Hieracium Hieracium porrifolium \N \N \N \N \N 23471 C.bipindense Clerodendrum Clerodendrum bipindense \N \N \N \N \N 23472 H.concinna Heisteria Heisteria concinna \N \N \N \N \N 23473 C.obovata Cotinus Cotinus obovata \N \N \N \N \N 23474 G.scabrum Gymnopetalum Gymnopetalum scabrum \N \N \N \N \N 23475 I.oumina Impatiens Impatiens oumina \N \N \N \N \N 23476 D.macropodum Daphniphyllum Daphniphyllum macropodum \N \N \N \N \N 23477 I.beecheyi Ilex Ilex beecheyi \N \N \N \N \N 23478 O.nicaraguensis Oreopanax Oreopanax nicaraguensis \N \N \N \N \N 23479 \N varietas Dahlia coccinea var. coccinea \N \N \N \N \N 23480 H.6875 Hippeastrum Hippeastrum sp. Hahn 6875 \N \N \N \N \N 23481 H.albiflos Haemanthus Haemanthus albiflos \N \N \N \N \N 23482 \N genus Pholidota \N \N \N \N \N 23483 S.langii Sloanea Sloanea langii \N \N \N \N \N 23484 S.jafrii Solms-laubachia Solms-laubachia jafrii \N \N \N \N \N 23485 K.cretica Klasea Klasea cretica \N \N \N \N \N 23486 T.469 unclassified Taraxacum Taraxacum (sect. Mexicana) sp. 469 \N \N \N \N \N 23487 L.sanguinea Lycoris Lycoris sanguinea \N \N \N \N \N 23488 B.platysperma Boechera Boechera platysperma \N \N \N \N \N 23489 G.richardsonii Geranium Geranium richardsonii \N \N \N \N \N 23490 C.brevipetiolata Croizatia Croizatia brevipetiolata \N \N \N \N \N 23491 S.pentandra Schiedea Schiedea pentandra \N \N \N \N \N 23492 \N genus Erythrorchis \N \N \N \N \N 23493 A.gemmifera Atrichantha Atrichantha gemmifera \N \N \N \N \N 23494 B.ES84 Boechera Boechera sp. ES84 \N \N \N \N \N 23495 \N varietas Boechera fernaldiana var. stylosa \N \N \N \N \N 23496 E.roycei Eucalyptus Eucalyptus roycei \N \N \N \N \N 23497 \N genus Helianthemum \N \N \N \N \N 23498 P.stansburyi Phlox Phlox stansburyi \N \N \N \N \N 23499 C.sectoides Carex Carex sectoides \N \N \N \N \N 23500 T.S5626 unclassified Taraxacum Taraxacum (sect. Kashmirana) sp. S5626 \N \N \N \N \N 23501 S.sparsipilum Solanum Solanum sparsipilum \N \N \N \N \N 23502 B.FS988 Bulbophyllum Bulbophyllum aff. baronii FS988 \N \N \N \N \N 23503 M.oleifolia Microlepis Microlepis oleifolia \N \N \N \N \N 23504 \N genus Takhtajania \N \N \N \N \N 23505 \N tribe Anthemideae \N \N \N \N \N 23506 S.prunifolia Spiraea Spiraea prunifolia \N \N \N \N \N 23507 \N genus Neopringlea \N \N \N \N \N 23508 S.grandiceps Saussurea Saussurea grandiceps \N \N \N \N \N 23509 P.domestica Prunus Prunus domestica plum \N \N \N \N 23510 P.venenosum Physostigma Physostigma venenosum ordeal bean \N \N \N \N 23511 D.burgessiae Dombeya Dombeya burgessiae \N \N \N \N \N 23512 E.chartaboma Eucalyptus Eucalyptus chartaboma \N \N \N \N \N 23513 C.virgata Cordylostigma Cordylostigma virgata \N \N \N \N \N 23514 H.8190 Holcoglossum Holcoglossum sp. 8190 \N \N \N \N \N 23515 A.manihot Abelmoschus Abelmoschus manihot \N \N \N \N \N 23516 A.yunnanensis Aporusa Aporusa yunnanensis \N \N \N \N \N 23517 T.rauhii Tillandsia Tillandsia rauhii \N \N \N \N \N 23518 M.sylvaticum Melampyrum Melampyrum sylvaticum \N \N \N \N \N 23519 A.collina Achillea millefolium complex Achillea asplenifolia x Achillea collina \N \N \N \N \N 23520 A.oligophylla Agalinis Agalinis oligophylla \N \N \N \N \N 23521 A.simplex Actaea Actaea simplex \N \N \N \N \N 23522 L.muticus Leucopogon Leucopogon muticus \N \N \N \N \N 23523 R.radicans Rhynchospora Rhynchospora radicans \N \N \N \N \N 23524 S.288 Saccharum officinarum complex Saccharum sp. clone SES 288 \N \N \N \N \N 23525 M.bombycina Mammillaria Mammillaria bombycina \N \N \N \N \N 23526 B.crassicaulis Begonia Begonia crassicaulis \N \N \N \N \N 23527 K.streptantha Kalanchoe Kalanchoe streptantha \N \N \N \N \N 23528 R.ciliata Rytidostylis Rytidostylis ciliata \N \N \N \N \N 23529 \N genus Oritrophium \N \N \N \N \N 23530 R.moorei Ravenea Ravenea moorei \N \N \N \N \N 23531 \N genus Microlaena \N \N \N \N \N 23532 C.forrestii Camellia Camellia forrestii \N \N \N \N \N 23533 C.'longtousanica' Camellia Camellia sp. 'longtousanica' \N \N \N \N \N 23534 C.MVSP-2007 Callicarpa Callicarpa sp. MVSP-2007 \N \N \N \N \N 23535 C.MJZ-2002 Cinnamodendron Cinnamodendron sp. MJZ-2002 \N \N \N \N \N 23536 M.phyllanthoides Meineckia Meineckia phyllanthoides \N \N \N \N \N 23537 P.fimbriligula Phyllostachys Phyllostachys fimbriligula \N \N \N \N \N 23538 F.anatolica Filago Filago anatolica \N \N \N \N \N 23539 P.kanalensis Phyllanthus Phyllanthus kanalensis \N \N \N \N \N 23540 \N varietas Scaphochlamys kunstleri var. rubra \N \N \N \N \N 23541 \N tribe Elytrantheae \N \N \N \N \N 23542 B.ceratocarpa Burmeistera Burmeistera ceratocarpa \N \N \N \N \N 23543 \N genus Coelachyrum \N \N \N \N \N 23544 B.puttii Begonia Begonia puttii \N \N \N \N \N 23545 V.festucoides Vetiveria Vetiveria festucoides \N \N \N \N \N 23546 A.MP-2011 Albuca Albuca sp. 2 MP-2011 \N \N \N \N \N 23547 C.humilis Chrysothamnus Chrysothamnus humilis Truckee rabbitbrush \N \N \N \N 23548 E.glabellum Epilobium Epilobium glabellum \N \N \N \N \N 23549 T.kiharae Triticum Triticum kiharae \N \N \N \N \N 23550 A.tenuifolia Ajania Ajania tenuifolia \N \N \N \N \N 23551 M.multiflora Maxillaria Maxillaria multiflora \N \N \N \N \N 23552 L.creticus Lotus Lotus creticus \N \N \N \N \N 23553 \N varietas Symphyotrichum lanceolatum var. latifolium \N \N \N \N \N 23554 O.bicolor Oxytropis Oxytropis bicolor \N \N \N \N \N 23555 S.boreale Symphyotrichum Symphyotrichum boreale \N \N \N \N \N 23556 \N genus Stipecoma \N \N \N \N \N 23557 \N genus Proiphys \N \N \N \N \N 23558 X.sibiricum Xanthium Xanthium sibiricum \N \N \N \N \N 23559 \N genus Sibangea \N \N \N \N \N 23560 C.93-542 unclassified Commelinaceae Commelinaceae sp. Encarnacion et al. 93-542 \N \N \N \N \N 23561 S.rubra Sarracenia Sarracenia rubra sweet pitcherplant \N \N \N \N 23562 L.NSW612795 Lepyrodia Lepyrodia sp. NSW612795 \N \N \N \N \N 23563 F.angustifolia Ficinia Ficinia angustifolia \N \N \N \N \N 23564 A.macradenia Abarema Abarema macradenia \N \N \N \N \N 23565 P.parviflorum Petitiocodon Petitiocodon parviflorum \N \N \N \N \N 23566 \N genus Tristaniopsis \N \N \N \N \N 23567 S.paraensis Simaba Simaba paraensis \N \N \N \N \N 23568 F.nakaii Forsythia Forsythia nakaii \N \N \N \N \N 23569 H.africana Hildebrandtia Hildebrandtia africana \N \N \N \N \N 23570 R.capitata Randia Randia capitata \N \N \N \N \N 23571 J.BAC-2010 unclassified Juncaceae Juncaceae sp. A12 BAC-2010 \N \N \N \N \N 23572 E.callosa Euphrasia Euphrasia callosa \N \N \N \N \N 23573 N.shirensis Nervilia Nervilia shirensis \N \N \N \N \N 23574 S.minutifolia Stevensia Stevensia minutifolia \N \N \N \N \N 23575 P.gatopense Pittosporum Pittosporum gatopense \N \N \N \N \N 23576 P.aurantiaca Pseuduvaria Pseuduvaria aurantiaca \N \N \N \N \N 23577 E.misella Euphorbia Euphorbia misella \N \N \N \N \N 23578 A.beccarii Alocasia Alocasia beccarii \N \N \N \N \N 23579 T.sierrajuarezensis Tillandsia Tillandsia sierrajuarezensis \N \N \N \N \N 23580 P.urvilleana Peperomia Peperomia urvilleana \N \N \N \N \N 23581 \N subfamily Pharoideae \N \N \N \N \N 23582 C.alphandii Castanospora Castanospora alphandii brown-tamarind \N \N \N \N 23583 S.T1943 Stenocactus Stenocactus sp. T1943 \N \N \N \N \N 23584 T.zambesiaca Tricalysia Tricalysia zambesiaca \N \N \N \N \N 23585 \N genus Olymposciadium \N \N \N \N \N 23586 S.filiformis Stuckenia Stuckenia filiformis \N \N \N \N \N 23587 B.arenaria Brazoria Brazoria arenaria \N \N \N \N \N 23588 T.noumeanum Tinadendron Tinadendron noumeanum \N \N \N \N \N 23589 P.lanata Panzerina Panzerina lanata \N \N \N \N \N 23590 \N subspecies Polygala vulgaris subsp. oxyptera \N \N \N \N \N 23591 S.grande Sorghum Sorghum grande \N \N \N \N \N 23592 F.ugamica Ferula Ferula ugamica \N \N \N \N \N 23593 S.perennis Scleranthus Scleranthus perennis \N \N \N \N \N 23594 L.albicans Lachnostachys Lachnostachys albicans \N \N \N \N \N 23595 C.amblensis Centaurea Centaurea amblensis \N \N \N \N \N 23596 R.andicola Ribes Ribes andicola \N \N \N \N \N 23597 C.montanum Cypripedium Cypripedium montanum \N \N \N \N \N 23598 G.pneumonanthe Gentiana Gentiana pneumonanthe \N \N \N \N \N 23599 O.stenoloba Onosma Onosma stenoloba \N \N \N \N \N 23600 C.parviflora Cardamine Cardamine parviflora sand bittercress \N \N \N \N 23601 N.hatschbachii Nierembergia Nierembergia hatschbachii \N \N \N \N \N 23602 P.monodiana Pentzia Pentzia monodiana \N \N \N \N \N 23603 M.dentatus Mimulus Mimulus dentatus \N \N \N \N \N 23604 P.cyaneus Penstemon Penstemon cyaneus \N \N \N \N \N 23605 T.crispa Tabernaemontana Tabernaemontana crispa \N \N \N \N \N 23606 O.foetida Orobanche Orobanche foetida \N \N \N \N \N 23607 \N subspecies Vigna unguiculata subsp. cylindrica catjang,catjang cowpea,sow-pea \N \N \N \N 23608 A.jacobinensis Astrocasia Astrocasia jacobinensis \N \N \N \N \N 23609 P.austrosinensis Pandanus Pandanus austrosinensis \N \N \N \N \N 23610 B.longifolium Bupleurum Bupleurum longifolium \N \N \N \N \N 23611 \N genus Pterocymbium \N \N \N \N \N 23612 G.friedrichii Galium Galium friedrichii \N \N \N \N \N 23613 \N varietas Rosa odorata var. odorata \N \N \N \N \N 23614 P.gessertianum Psilocaulon Psilocaulon gessertianum \N \N \N \N \N 23615 R.hirtellum Ribes Ribes hirtellum American gooseberry,hairy gooseberry,hairy-stem gooseberry \N \N \N \N 23616 P.riparium Potarophytum Potarophytum riparium \N \N \N \N \N 23617 E.spumosa Erica Erica spumosa \N \N \N \N \N 23618 P.gilliesii Pseudopanax Pseudopanax gilliesii \N \N \N \N \N 23619 D.021 Diospyros Diospyros cf. ulo Duangjai et al. 021 \N \N \N \N \N 23620 S.behrii Scaphyglottis Scaphyglottis behrii \N \N \N \N \N 23621 P.foecundum Peplidium Peplidium foecundum \N \N \N \N \N 23622 C.linariifolia Coprosma Coprosma linariifolia \N \N \N \N \N 23623 A.lilacinus Astragalus Astragalus lilacinus \N \N \N \N \N 23624 O.smithiana Oxalis Oxalis smithiana \N \N \N \N \N 23625 C.renauldii Carex Carex renauldii \N \N \N \N \N 23626 A.nugorensis Aquilegia Aquilegia nugorensis \N \N \N \N \N 23627 H.magna Homalomena Homalomena magna \N \N \N \N \N 23628 M.obovata Myonima Myonima obovata \N \N \N \N \N 23629 C.ancyrensis Crocus Crocus ancyrensis \N \N \N \N \N 23630 M.isertiana Mussaenda Mussaenda isertiana \N \N \N \N \N 23631 G.gracilis Globba Globba gracilis \N \N \N \N \N 23632 \N genus Anaphyllum \N \N \N \N \N 23633 H.dicksoniae Horwoodia Horwoodia dicksoniae \N \N \N \N \N 23634 G.oblongifolia Goodyera Goodyera oblongifolia \N \N \N \N \N 23635 C.diluta Centaurea Centaurea diluta \N \N \N \N \N 23636 N.laticoma Nerine Nerine laticoma \N \N \N \N \N 23637 M.gongshanensis Machilus Machilus gongshanensis \N \N \N \N \N 23638 \N subspecies Agropyron cristatum subsp. pectinatum \N \N \N \N \N 23639 S.fastigiata Schlegelia Schlegelia fastigiata \N \N \N \N \N 23640 S.waterhousei Spyridium Spyridium waterhousei \N \N \N \N \N 23641 F.forbesii Fallopia Fallopia forbesii \N \N \N \N \N 23642 B.rectangulum Bunium Bunium rectangulum \N \N \N \N \N 23643 \N genus Lycianthes \N \N \N \N \N 23644 \N tribe Oranieae \N \N \N \N \N 23645 \N genus Wedelia \N \N \N \N \N 23646 M.nothacacia Mimosa Mimosa nothacacia \N \N \N \N \N 23647 T.discolor Trillium Trillium discolor \N \N \N \N \N 23648 L.platypus Licania Licania platypus \N \N \N \N \N 23649 H.sampsonii Helixanthera Helixanthera sampsonii \N \N \N \N \N 23650 \N varietas Pityopsis graminifolia var. latifolia \N \N \N \N \N 23651 \N genus Beirnaertia \N \N \N \N \N 23652 Q.verdonii Quintinia Quintinia verdonii \N \N \N \N \N 23653 A.sieberiana Acacia Acacia sieberiana \N \N \N \N \N 23654 M.axillare Macrotyloma Macrotyloma axillare perennial horse gram \N \N \N \N 23655 H.palmeri Hedeoma Hedeoma palmeri \N \N \N \N \N 23656 O.elongata Oenothera Oenothera elongata \N \N \N \N \N 23657 A.austrokoreense Aconitum Aconitum austrokoreense \N \N \N \N \N 23658 \N varietas Potentilla dickinsii var. dickinsii \N \N \N \N \N 23659 D.capreifolia Diospyros Diospyros capreifolia \N \N \N \N \N 23660 H.sibthorpioides Hydrocotyle Hydrocotyle sibthorpioides lawn water-pennywort \N \N \N \N 23661 L.sericeus Lupinus Lupinus sericeus silky lupine \N \N \N \N 23662 E.latifolius Eustrephus Eustrephus latifolius wombat berry \N \N \N \N 23663 C.yunnanensis Colocasia Colocasia yunnanensis \N \N \N \N \N 23664 \N genus Opisthopappus \N \N \N \N \N 23665 E.amazonica Exochogyne Exochogyne amazonica \N \N \N \N \N 23666 H.neoaubrevillei Hymenostegia Hymenostegia neoaubrevillei \N \N \N \N \N 23667 L.igniarium Liabum Liabum igniarium \N \N \N \N \N 23668 P.amethystinum Porroglossum Porroglossum amethystinum \N \N \N \N \N 23669 S.arachnidanthum Solanum Solanum arachnidanthum \N \N \N \N \N 23670 C.pruinosa Castilleja Castilleja pruinosa \N \N \N \N \N 23671 C.dichrostachyus Chlamydacanthus Chlamydacanthus dichrostachyus \N \N \N \N \N 23672 \N genus Houstonia \N \N \N \N \N 23673 S.spiralis Spiranthes Spiranthes spiralis lady's tresses \N \N \N \N 23674 R.KEJ-2009 Rosa Rosa sp. KEJ-2009 \N \N \N \N \N 23675 \N genus Geoffroea \N \N \N \N \N 23676 G.craigii Graptopetalum Graptopetalum craigii \N \N \N \N \N 23677 C.latifolia Cameraria Cameraria latifolia \N \N \N \N \N 23678 \N varietas Polygonum cuspidatum var. uzenensis \N \N \N \N \N 23679 P.hieracifolia Podocoma Podocoma hieracifolia \N \N \N \N \N 23680 S.kauaiensis Schiedea Schiedea kauaiensis \N \N \N \N \N 23681 D.tschonoskii Docyniopsis Docyniopsis tschonoskii \N \N \N \N \N 23683 R.flammeum Rhododendron Rhododendron flammeum \N \N \N \N \N 23684 P.alata Paullinia Paullinia alata \N \N \N \N \N 23685 S.chamaedryoides Stimpsonia Stimpsonia chamaedryoides \N \N \N \N \N 23686 E.thunbergii Ehrharta Ehrharta thunbergii \N \N \N \N \N 23687 \N genus Neoparrya \N \N \N \N \N 23688 \N genus Conostylis \N \N \N \N \N 23689 L.ciliisepala Lepanthes Lepanthes ciliisepala \N \N \N \N \N 23690 C.plicata Cyclopia Cyclopia plicata \N \N \N \N \N 23691 V.WO2009029739 Vitis Vitis sp. WO2009029739 \N \N \N \N \N 23692 H.ferruginea Hopea Hopea ferruginea \N \N \N \N \N 23693 \N subspecies Chenopodium berlandieri subsp. berlandieri \N \N \N \N \N 23694 P.erectum Polypleurum Polypleurum erectum \N \N \N \N \N 23695 P.parvifolium Panicum Panicum parvifolium \N \N \N \N \N 23696 L.songarica Lomelosia Lomelosia songarica \N \N \N \N \N 23697 P.hoffmannseggii Philodice Philodice hoffmannseggii \N \N \N \N \N 23698 P.hieracioides Podolepis Podolepis hieracioides \N \N \N \N \N 23699 P.bisasperatum Piper Piper bisasperatum \N \N \N \N \N 23700 F.gracilior Festuca Festuca gracilior \N \N \N \N \N 23701 B.intermedium Bunium Bunium intermedium \N \N \N \N \N 23702 E.stoatei Eucalyptus Eucalyptus stoatei \N \N \N \N \N 23703 O.thomsonii Ononis Ononis thomsonii \N \N \N \N \N 23704 C.rubrigemmum Cymbidium Cymbidium rubrigemmum \N \N \N \N \N 23705 J.BAC-2010 unclassified Juncaceae Juncaceae sp. A6 BAC-2010 \N \N \N \N \N 23706 S.velutissimum Solanum Solanum velutissimum \N \N \N \N \N 23707 M.pinifolia Macowania Macowania pinifolia \N \N \N \N \N 23708 D.multijuga Dodonaea Dodonaea multijuga \N \N \N \N \N 23709 M.glabra Momordica Momordica glabra \N \N \N \N \N 23710 \N no rank Musa ABBB Group \N \N \N \N \N 23711 \N varietas Ligularia kanaitzensis var. subnudicaulis \N \N \N \N \N 23712 M.striata Metagentiana Metagentiana striata \N \N \N \N \N 23713 C.drepanomorpha Clermontia Clermontia drepanomorpha \N \N \N \N \N 23714 G.scoparia Guynesomia Guynesomia scoparia \N \N \N \N \N 23715 \N varietas Maxillaria heterophylla var. intermedia \N \N \N \N \N 23716 B.8089 Brassia Brassia sp. Hirtz 8089 \N \N \N \N \N 23717 P.insipiens Piper Piper insipiens \N \N \N \N \N 23718 E.characias Euphorbia Euphorbia characias \N \N \N \N \N 23719 D.guianensis Duguetia Duguetia guianensis \N \N \N \N \N 23720 G.stricta Grindelia Grindelia stricta \N \N \N \N \N 23721 S.gardneri Senna Senna gardneri \N \N \N \N \N 23722 S.intermedia Sphenopholis Sphenopholis intermedia \N \N \N \N \N 23723 \N genus Oerstedina \N \N \N \N \N 23724 C.sulphurea Castilleja Castilleja sulphurea \N \N \N \N \N 23725 \N genus Oncinocalyx \N \N \N \N \N 23726 A.kamerunica Afrotrewia Afrotrewia kamerunica \N \N \N \N \N 23727 P.bambergensis Potamogeton Potamogeton bambergensis \N \N \N \N \N 23728 S.unijuga Sympetalandra Sympetalandra unijuga \N \N \N \N \N 23729 \N genus Sarcosperma \N \N \N \N \N 23730 M.longipes Macrolobium Macrolobium longipes \N \N \N \N \N 23731 P.38838 Pimelea Pimelea sp. Burrows 38838 \N \N \N \N \N 23732 B.nitida Burbidgea Burbidgea nitida \N \N \N \N \N 23733 \N genus Lanium \N \N \N \N \N 23734 T.dealbata Thalia Thalia dealbata \N \N \N \N \N 23735 H.elodeoides Hypericum Hypericum elodeoides \N \N \N \N \N 23736 E.papillosus Echinocereus Echinocereus papillosus \N \N \N \N \N 23737 L.omeiensis Lysimachia Lysimachia omeiensis \N \N \N \N \N 23738 P.asiatica Psychotria Psychotria asiatica \N \N \N \N \N 23739 A.scalprum Alocasia Alocasia scalprum \N \N \N \N \N 23740 P.magellanicum Polypsecadium Polypsecadium magellanicum \N \N \N \N \N 23741 B.O00165_1 Bulbophyllum Bulbophyllum sp. O00165_1 \N \N \N \N \N 23742 N.venezuelensis Neoblakea Neoblakea venezuelensis \N \N \N \N \N 23743 L.johnstonii Lepidium Lepidium johnstonii \N \N \N \N \N 23744 C.hederacea Calystegia Calystegia hederacea \N \N \N \N \N 23745 A.persarum Alhagi Alhagi persarum \N \N \N \N \N 23746 N.294 Neesia Neesia sp. Laman et al. 294 \N \N \N \N \N 23747 P.planifolius Paepalanthus Paepalanthus planifolius \N \N \N \N \N 23748 P.hypocyrtiflora Pearcea Pearcea hypocyrtiflora \N \N \N \N \N 23749 Z.celata Ziziphus Ziziphus celata \N \N \N \N \N 23750 B.subvolubilis Blepharis Blepharis subvolubilis \N \N \N \N \N 23751 V.mandshurica Viola Viola mandshurica \N \N \N \N \N 23752 \N genus Zygosepalum \N \N \N \N \N 23753 \N genus Merremia \N \N \N \N \N 23754 C.wattii Castanopsis Castanopsis wattii \N \N \N \N \N 23755 L.lucida Lyonia Lyonia lucida \N \N \N \N \N 23756 \N subspecies Vigna unguiculata subsp. tenuis \N \N \N \N \N 23757 O.artemisiae-campestris Orobanche Orobanche artemisiae-campestris \N \N \N \N \N 23758 G.hirticaulis Glycine Glycine hirticaulis \N \N \N \N \N 23759 A.cibarius Astragalus Astragalus cibarius \N \N \N \N \N 23760 P.piedmontanum Pediomelum Pediomelum piedmontanum \N \N \N \N \N 23761 U.scabridula Uvaria Uvaria scabridula \N \N \N \N \N 23762 V.derwentiana Labiatoides Veronica derwentiana \N \N \N \N \N 23763 A.nanodes Allium Allium nanodes \N \N \N \N \N 23764 B.albiflora Boenninghausenia Boenninghausenia albiflora \N \N \N \N \N 23765 C.pilosa Centrolepis Centrolepis pilosa \N \N \N \N \N 23766 P.palustris Poa Poa palustris \N \N \N \N \N 23767 M.compositifolia Manihot Manihot compositifolia \N \N \N \N \N 23768 \N genus Agarista \N \N \N \N \N 23769 C.cuneifolia Centaurea Centaurea cuneifolia \N \N \N \N \N 23770 M.multiflorum Mecranium Mecranium multiflorum \N \N \N \N \N 23771 T.virginicum Trifolium Trifolium virginicum \N \N \N \N \N 23772 C.N326 Cyrtochilum Cyrtochilum sp. Beckendorf N326 \N \N \N \N \N 23773 \N genus Leucosyke \N \N \N \N \N 23774 B.cinnamomea Babiana Babiana cinnamomea \N \N \N \N \N 23775 S.retusum Satyrium Satyrium retusum \N \N \N \N \N 23776 M.uspallatensis Montiopsis Montiopsis uspallatensis \N \N \N \N \N 23777 H.hombronii Hydriastele Hydriastele hombronii \N \N \N \N \N 23778 L.acuta Lockhartia Lockhartia acuta \N \N \N \N \N 23779 P.hispida Polygala Polygala hispida \N \N \N \N \N 23780 R.fusca Ruprechtia Ruprechtia fusca \N \N \N \N \N 23781 M.orientale Melastoma Melastoma orientale \N \N \N \N \N 23782 T.tetrapetala Tolumnia Tolumnia tetrapetala \N \N \N \N \N 23783 S.lita Stevia Stevia lita \N \N \N \N \N 23784 \N genus Arctotis \N \N \N \N \N 23785 O.orillum Oncidium Oncidium orillum \N \N \N \N \N 23786 E.lunulata Euphorbia Euphorbia lunulata \N \N \N \N \N 23787 T.beccarii Trevesia Trevesia beccarii \N \N \N \N \N 23788 A.pinetorum Alpinia Alpinia pinetorum \N \N \N \N \N 23789 C.SL-17 unclassified Citrus cybrid citrus SL-17 \N \N \N \N \N 23790 \N no rank environmental samples Taxonomy:1008288 \N \N \N \N \N 23791 O.subglobosum Octopoma Octopoma subglobosum \N \N \N \N \N 23792 P.bodkinii Pachites Pachites bodkinii \N \N \N \N \N 23793 F.macdougallii Furcraea Furcraea macdougallii \N \N \N \N \N 23794 R.urschii Rheedia Rheedia urschii \N \N \N \N \N 23795 L.algoensis Lachenalia Lachenalia algoensis \N \N \N \N \N 23796 A.acradenia Acacia Acacia acradenia \N \N \N \N \N 23797 D.validus Doliocarpus Doliocarpus validus \N \N \N \N \N 23798 E.dentata Euphorbia Euphorbia dentata toothed spurge \N \N \N \N 23799 \N varietas Ficus deltoidea var. intermedia \N \N \N \N \N 23800 P.candollei Piper Piper candollei \N \N \N \N \N 23801 C.rivularis Cardamine Cardamine rivularis \N \N \N \N \N 23802 P.BG-2011 Panisea Panisea sp. BG-2011 \N \N \N \N \N 23803 R.traunfellneri Ranunculus Ranunculus traunfellneri \N \N \N \N \N 23804 S.leptodictya Searsia Searsia leptodictya \N \N \N \N \N 23805 L.subpeltata Lysipomia Lysipomia subpeltata \N \N \N \N \N 23806 P.endlicheri Planchonella Planchonella endlicheri \N \N \N \N \N 23807 A.baicalense Aconitum Aconitum baicalense \N \N \N \N \N 23808 E.N505 Euonymus Euonymus cf. europaeus N505 \N \N \N \N \N 23809 M.odorata Myrrhis Myrrhis odorata anise,sweet cicely \N \N \N \N 23810 \N varietas Stranvaesia davidiana var. undulata \N \N \N \N \N 23811 \N genus Octoceras \N \N \N \N \N 23812 \N subspecies Jacobaea abrotanifolia subsp. carpathica \N \N \N \N \N 23813 \N genus Obregonia \N \N \N \N \N 23814 N.2002070 Neolitsea Neolitsea sp. Li 2002070 \N \N \N \N \N 23815 I.hawkeri Impatiens Impatiens hawkeri \N \N \N \N \N 23816 O.mauritiana Ochna Ochna mauritiana \N \N \N \N \N 23817 A.multijugus Astragalus Astragalus multijugus \N \N \N \N \N 23818 C.gummiferum Ceratopetalum Ceratopetalum gummiferum \N \N \N \N \N 23819 P.balsamifera Populus Populus balsamifera balsam poplar,hackmatack \N \N \N \N 23820 O.virgata Oxalis Oxalis virgata \N \N \N \N \N 23821 D.somae Dendrobium Dendrobium somae \N \N \N \N \N 23822 M.minutiflora Melinis Melinis minutiflora \N \N \N \N \N 23823 B.SH-2010 Benthamina Benthamina sp. SH-2010 \N \N \N \N \N 23824 D.granulosa Distictis Distictis granulosa \N \N \N \N \N 23825 Z.hackelii Zeugites Zeugites hackelii \N \N \N \N \N 23826 \N tribe Angelonieae \N \N \N \N \N 23827 E.tuberosum Eriophyton Eriophyton tuberosum \N \N \N \N \N 23828 O.dregeanum Oxygonum Oxygonum dregeanum \N \N \N \N \N 23829 \N varietas Scrophularia grayana var. grayanoides \N \N \N \N \N 23830 T.setifolia Thymophylla Thymophylla setifolia \N \N \N \N \N 23831 R.buchananii Ranunculus Ranunculus buchananii \N \N \N \N \N 23832 I.wattii Iris Iris wattii shan xing yuan wei \N \N \N \N 23833 P.chende Polaskia Polaskia chende \N \N \N \N \N 23834 A.crispa Aerides Aerides crispa \N \N \N \N \N 23835 C.pectinifolia Carallia Carallia pectinifolia \N \N \N \N \N 23836 \N varietas Saussurea gossipiphora var. conaensis \N \N \N \N \N 23837 D.interior Desmanthus Desmanthus interior \N \N \N \N \N 23838 A.nanunica Acidosasa Acidosasa nanunica \N \N \N \N \N 23839 R.obtusiflora Rostraria Rostraria obtusiflora \N \N \N \N \N 23840 P.lanceolatum Psoralidium Psoralidium lanceolatum \N \N \N \N \N 23841 M.lunatum Machaerium Machaerium lunatum \N \N \N \N \N 23842 M.flagellaris Micromeria Micromeria flagellaris \N \N \N \N \N 23843 S.BC92 Syzygium Syzygium sp. BC92 \N \N \N \N \N 23844 T.stokoei Thamnochortus Thamnochortus stokoei \N \N \N \N \N 23845 S.multispinum Solanum Solanum multispinum \N \N \N \N \N 23846 O.murbeckii Ophrys Ophrys murbeckii \N \N \N \N \N 23847 T.picta Tetraria Tetraria picta \N \N \N \N \N 23848 V.fontquerana Vulpia Vulpia fontquerana \N \N \N \N \N 23849 T.curvipes Thysanocarpus Thysanocarpus curvipes \N \N \N \N \N 23850 A.andongensis Amblygonocarpus Amblygonocarpus andongensis \N \N \N \N \N 23851 C.perplexa Calamagrostis Calamagrostis perplexa \N \N \N \N \N 23852 L.acuminatus Lisianthius Lisianthius acuminatus \N \N \N \N \N 23853 H.wallichii Hoya Hoya wallichii \N \N \N \N \N 23854 P.dalzielii Parthenocissus Parthenocissus dalzielii \N \N \N \N \N 23855 D.multiaffinis Dianthus Dianthus multiaffinis \N \N \N \N \N 23856 C.sphaerocarpum Conium Conium sphaerocarpum \N \N \N \N \N 23857 I.ilta Inga Inga ilta \N \N \N \N \N 23858 E.juncifolium Eryngium Eryngium juncifolium \N \N \N \N \N 23859 \N genus Gongylocarpus \N \N \N \N \N 23860 B.longithyrsa Bertiera Bertiera longithyrsa \N \N \N \N \N 23861 D.telipogonis Disa Disa telipogonis \N \N \N \N \N 23862 D.cneorum Daphne Daphne cneorum rose daphne \N \N \N \N 23863 E.linearis Euchilopsis Euchilopsis linearis \N \N \N \N \N 23864 M.vimineum Microstegium Microstegium vimineum Japanese stilt grass,Nepal grass,Vietnamese stilt grass \N \N \N \N 23865 E.oppositifolia Eunomia Eunomia oppositifolia \N \N \N \N \N 23866 T.DOB-2010 Tripterococcus Tripterococcus sp. 2 DOB-2010 \N \N \N \N \N 23867 C.descoingsii Cynanchum Cynanchum descoingsii \N \N \N \N \N 23868 P.laxiflora Pottsia Pottsia laxiflora \N \N \N \N \N 23869 \N genus Eulaliopsis \N \N \N \N \N 23870 P.xanthochyma Perebea Perebea xanthochyma \N \N \N \N \N 23871 K.coccinea Kadsura Kadsura coccinea \N \N \N \N \N 23872 \N genus Drymophloeus \N \N \N \N \N 23873 J.mulinoides Junellia Junellia mulinoides \N \N \N \N \N 23874 P.pensylvanica Prunus Prunus pensylvanica pin cherry \N \N \N \N 23875 A.steinbachii Alibertia Alibertia steinbachii \N \N \N \N \N 23876 G.SH-2010 Gomphandra Gomphandra sp. SH-2010 \N \N \N \N \N 23877 I.andohahelae Impatiens Impatiens andohahelae \N \N \N \N \N 23878 C.mutica Chikusichloa Chikusichloa mutica \N \N \N \N \N 23879 A.carduchorum Arabis Arabis carduchorum \N \N \N \N \N 23880 P.MAG-2009 Protium Protium cf. morii MAG-2009 \N \N \N \N \N 23881 W.wailesiana Warczewiczella Warczewiczella wailesiana \N \N \N \N \N 23882 C.monstruosa Commiphora Commiphora monstruosa \N \N \N \N \N 23883 E.spectabilis Eurybia Eurybia spectabilis eastern showy aster \N \N \N \N 23884 \N subspecies Disa oreophila subsp. erecta \N \N \N \N \N 23885 \N genus Lessingianthus \N \N \N \N \N 23886 G.vandermerwei Gladiolus Gladiolus vandermerwei \N \N \N \N \N 23887 C.fissiligulatus Costus Costus fissiligulatus \N \N \N \N \N 23888 A.kinabaluensis Alphonsea Alphonsea kinabaluensis \N \N \N \N \N 23889 G.kunawurensis Gagea Gagea kunawurensis \N \N \N \N \N 23890 D.gorgona Dracula Dracula gorgona \N \N \N \N \N 23891 G.pubens Guatteria Guatteria pubens \N \N \N \N \N 23892 T.fintelmannii Tropaeolum Tropaeolum fintelmannii \N \N \N \N \N 23893 O.lutea Oxystylis Oxystylis lutea spiny caper \N \N \N \N 23894 I.scheffleri Isoberlinia Isoberlinia scheffleri \N \N \N \N \N 23895 \N tribe Cuscuteae dodders \N \N \N \N 23896 D.argentifolia Draba Draba argentifolia \N \N \N \N \N 23897 H.caespitosa Hypochaeris Hypochaeris caespitosa \N \N \N \N \N 23898 M.madagascariensis Melanophylla Melanophylla madagascariensis \N \N \N \N \N 23899 P.P087 Physalis Physalis sp. P087 \N \N \N \N \N 23900 \N tribe Triraphideae \N \N \N \N \N 23901 V.nobilis Virola Virola nobilis \N \N \N \N \N 23902 C.maculatus Costus Costus maculatus \N \N \N \N \N 23903 \N genus Quapoya \N \N \N \N \N 23904 S.japonica Stephania Stephania japonica \N \N \N \N \N 23905 L.ericoides Linconia Linconia ericoides \N \N \N \N \N 23906 A.americanum Alyssum Alyssum americanum \N \N \N \N \N 23907 \N varietas Satureja macrostema var. macrostema \N \N \N \N \N 23908 P.24 Polyscias Polyscias sp. Razamalaka 24 \N \N \N \N \N 23909 \N family Blandfordiaceae \N \N \N \N \N 23910 \N genus Deschampsia hair grass \N \N \N \N 23911 F.hupehensis Fritillaria Fritillaria hupehensis \N \N \N \N \N 23912 P.caffra Protea Protea caffra \N \N \N \N \N 23913 S.erosa Searsia Searsia erosa \N \N \N \N \N 23914 O.coelestis Orobanche Orobanche coelestis \N \N \N \N \N 23915 R.recens Ranunculus Ranunculus recens \N \N \N \N \N 23916 H.sphondylium Heracleum Heracleum sphondylium cow-parsnip,hogweed \N \N \N \N 23917 \N genus Adenanthos \N \N \N \N \N 23918 \N subspecies Gymnocalycium anisitsii subsp. damsii \N \N \N \N \N 23919 S.cormiflorum Syzygium Syzygium cormiflorum \N \N \N \N \N 23920 C.lagascana Centaurea Centaurea lagascana \N \N \N \N \N 23921 P.peltatum Pelargonium Pelargonium peltatum \N \N \N \N \N 23922 D.uncinatum Desmodium Desmodium uncinatum \N \N \N \N \N 23923 \N varietas Ocimum americanum var. pilosum \N \N \N \N \N 23924 \N genus Hydrothrix \N \N \N \N \N 23925 \N subspecies Ophrys cretica subsp. cretica \N \N \N \N \N 23926 H.tonglense Herpetospermum Herpetospermum tonglense \N \N \N \N \N 23927 \N genus Lachnostylis \N \N \N \N \N 23928 P.corymbosa Pinochia Pinochia corymbosa \N \N \N \N \N 23929 \N genus Xerophyta \N \N \N \N \N 23930 \N subspecies Arctostaphylos glandulosa subsp. glaucomollis \N \N \N \N \N 23931 M.elatior Maxillaria Maxillaria elatior \N \N \N \N \N 23932 \N subspecies Genista cephalantha subsp. cephalantha \N \N \N \N \N 23933 A.sagittata Arabis Arabis sagittata \N \N \N \N \N 23934 D.pinnata Dahlia Dahlia pinnata \N \N \N \N \N 23935 G.zavattarii Guizotia Guizotia zavattarii \N \N \N \N \N 23936 M.howardiana Miconia Miconia howardiana \N \N \N \N \N 23937 \N varietas Prunus umbellata var. injucunda \N \N \N \N \N 23938 \N subspecies Trifolium subterraneum subsp. subterraneum \N \N \N \N \N 23939 D.sicula Desmazeria Desmazeria sicula \N \N \N \N \N 23940 C.multiperulata Camellia Camellia multiperulata \N \N \N \N \N 23941 A.jupunba Abarema Abarema jupunba \N \N \N \N \N 23942 \N genus Honkenya \N \N \N \N \N 23943 O.pimpinelloides Oenanthe Oenanthe pimpinelloides \N \N \N \N \N 23944 M.tenuis Micromeria Micromeria tenuis \N \N \N \N \N 23945 B.boltonii Bonatea Bonatea boltonii \N \N \N \N \N 23946 P.paronychioides Polygonum Polygonum paronychioides \N \N \N \N \N 23947 G.oleifolia Glandora Glandora oleifolia \N \N \N \N \N 23948 G.foetida Glycyrrhiza Glycyrrhiza foetida \N \N \N \N \N 23949 O.WNG Olearia Olearia sp. WNG \N \N \N \N \N 23950 V.O-591 Vanilla Vanilla cf. barbellata Chase O-591 \N \N \N \N \N 23951 C.06nia535 Coccinia Coccinia sp. 06nia535 \N \N \N \N \N 23952 C.lanceolata Coreopsis Coreopsis lanceolata \N \N \N \N \N 23953 S.axillaris Saldinia Saldinia axillaris \N \N \N \N \N 23954 C.serpentinicola Cynoglottis Cynoglottis serpentinicola \N \N \N \N \N 23955 L.didymum Lepidium Lepidium didymum \N \N \N \N \N 23956 P.nana Puya Puya nana \N \N \N \N \N 23957 P.pervilleanus Phyllanthus Phyllanthus pervilleanus \N \N \N \N \N 23958 A.tschonoskii Acer Acer tschonoskii \N \N \N \N \N 23959 P.insignis Pinanga Pinanga insignis \N \N \N \N \N 23961 D.platyphylla Dubautia Dubautia platyphylla \N \N \N \N \N 23962 P.mannii Phyllostegia Phyllostegia mannii \N \N \N \N \N 23963 \N genus Filifolium \N \N \N \N \N 23964 \N varietas Anneslea fragrans var. lanceolata \N \N \N \N \N 23965 M.1806 Mandevilla Mandevilla sp. Amorim 1806 \N \N \N \N \N 23966 M.ramulosa Macrostylis Macrostylis ramulosa \N \N \N \N \N 23967 A.sempervirens Antirrhinum Antirrhinum sempervirens \N \N \N \N \N 23968 G.tenuifolia Gaultheria Gaultheria tenuifolia \N \N \N \N \N 23969 S.collinsae Stemona Stemona collinsae \N \N \N \N \N 23970 M.candollei Mimosa Mimosa candollei \N \N \N \N \N 23971 \N genus Vicia \N \N \N \N \N 23972 H.paniculata Hebanthe Hebanthe paniculata \N \N \N \N \N 23973 D.ternata Digitaria Digitaria ternata \N \N \N \N \N 23974 S.isophylla Strobilanthes Strobilanthes isophylla \N \N \N \N \N 23975 P.racemosus Pentapanax Pentapanax racemosus \N \N \N \N \N 23976 C.maculata Cleome Cleome maculata \N \N \N \N \N 23977 V.coronata Valerianella Valerianella coronata \N \N \N \N \N 23978 \N genus Constantia \N \N \N \N \N 23979 P.retrorsus Penstemon Penstemon retrorsus \N \N \N \N \N 23980 G.paparoaensis Gentianella Gentianella paparoaensis \N \N \N \N \N 23981 P.schultzei Polyscias Polyscias schultzei \N \N \N \N \N 23982 \N genus Johreniopsis \N \N \N \N \N 23983 R.tembensis Ranunculus Ranunculus tembensis \N \N \N \N \N 23984 \N subfamily Avicennioideae \N \N \N \N \N 23985 \N varietas Davidsonia pruriens var. jeryseyana \N \N \N \N \N 23986 D.wilmotianus Dinteranthus Dinteranthus wilmotianus \N \N \N \N \N 23987 S.berteroana Sloanea Sloanea berteroana \N \N \N \N \N 23988 M.pacifica Magnolia Magnolia pacifica \N \N \N \N \N 23989 \N genus Holocheila \N \N \N \N \N 23990 \N genus Bromelia \N \N \N \N \N 23991 P.loxocarpa Pityrodia Pityrodia loxocarpa \N \N \N \N \N 23992 G.longiflora Geissomeria Geissomeria longiflora \N \N \N \N \N 23993 E.polyandra Euptelea Euptelea polyandra \N \N \N \N \N 23994 M.andamanica Macaranga Macaranga andamanica \N \N \N \N \N 23995 A.angustifolia Asimina Asimina angustifolia \N \N \N \N \N 23996 R.glabratus Rubus Rubus glabratus mora de la virgen \N \N \N \N 23997 \N subspecies Cistus creticus subsp. creticus \N \N \N \N \N 23998 S.trachysperma Scorzonera Scorzonera trachysperma \N \N \N \N \N 23999 Z.divaricata Zaluzianskya Zaluzianskya divaricata \N \N \N \N \N 24000 G.minima Girgensohnia Girgensohnia minima \N \N \N \N \N 24001 C.euboeum Colchicum Colchicum euboeum \N \N \N \N \N 24002 X.subacaulis Xanthopappus Xanthopappus subacaulis \N \N \N \N \N 24003 \N subspecies Lobularia canariensis subsp. microsperma \N \N \N \N \N 24004 S.chrysanthus Stirtonanthus Stirtonanthus chrysanthus \N \N \N \N \N 24005 \N genus Glossopappus \N \N \N \N \N 24006 B.lanatus Bromus Bromus lanatus \N \N \N \N \N 24007 F.speciosa Fitchia Fitchia speciosa \N \N \N \N \N 24008 N.mellita Navarretia Navarretia mellita \N \N \N \N \N 24009 \N genus Anthotroche \N \N \N \N \N 24010 M.SH-2010 Medinilla Medinilla sp. SH-2010 \N \N \N \N \N 24011 C.margaritae Cousinia Cousinia margaritae \N \N \N \N \N 24012 \N genus Neoschumannia \N \N \N \N \N 24013 L.chilense Lepidoceras Lepidoceras chilense \N \N \N \N \N 24014 H.heldreichii Hyacinthella Hyacinthella heldreichii \N \N \N \N \N 24015 M.tenacissima Marsdenia Marsdenia tenacissima Rajmahal-creeper \N \N \N \N 24016 \N genus Pellegriniodendron \N \N \N \N \N 24017 \N family Lophiocarpaceae \N \N \N \N \N 24018 C.edulis Coula Coula edulis \N \N \N \N \N 24019 P.australis Pseudocyclanthera Pseudocyclanthera australis \N \N \N \N \N 24020 P.5786 Pycnandra Pycnandra sp. Lowry et al. 5786 \N \N \N \N \N 24021 E.exiguum Exacum Exacum exiguum \N \N \N \N \N 24022 C.humbertianus Cuphocarpus Cuphocarpus humbertianus \N \N \N \N \N 24023 T.macrophylla Trivalvaria Trivalvaria macrophylla \N \N \N \N \N 24024 T.trilobata Thawatchaia Thawatchaia trilobata \N \N \N \N \N 24025 C.ericoides Cassiope Cassiope ericoides \N \N \N \N \N 24026 A.sintenisii Arum Arum sintenisii \N \N \N \N \N 24027 \N genus Ekmaniopappus \N \N \N \N \N 24028 V.multinerve Viscum Viscum multinerve \N \N \N \N \N 24029 A.biserrula Astragalus Astragalus biserrula \N \N \N \N \N 24030 G.ovata Goodenia Goodenia ovata \N \N \N \N \N 24031 P.auriculata Pleurothallis Pleurothallis auriculata \N \N \N \N \N 24032 \N no rank fabids \N \N \N \N \N 24033 \N subspecies Medicago suffruticosa subsp. leiocarpa \N \N \N \N \N 24034 \N genus Puelia \N \N \N \N \N 24035 \N subspecies Felicia clavipilosa subsp. transvaalensis \N \N \N \N \N 24036 \N genus Tetragonia \N \N \N \N \N 24037 \N varietas Ailanthus altissima var. tanakai \N \N \N \N \N 24038 \N genus Septotheca \N \N \N \N \N 24039 \N subspecies Oenothera californica subsp. californica \N \N \N \N \N 24040 S.divaricatus Sclerocarpus Sclerocarpus divaricatus \N \N \N \N \N 24041 \N subspecies Gomphocarpus fruticosus subsp. rostratus \N \N \N \N \N 24042 M.bancana Macaranga Macaranga bancana \N \N \N \N \N 24043 \N genus Sphaerolobium \N \N \N \N \N 24044 \N genus Theligonum \N \N \N \N \N 24045 S.comorensis Saba Saba comorensis \N \N \N \N \N 24046 \N subspecies Daucus carota subsp. carota \N \N \N \N \N 24047 \N genus Ctenopsis \N \N \N \N \N 24048 E.nabea Erica Erica nabea \N \N \N \N \N 24049 H.gracilentus Helianthus Helianthus gracilentus \N \N \N \N \N 24050 B.6225 Brownea Brownea sp. Lavin 6225 \N \N \N \N \N 24051 B.adoensis Baccharoides Baccharoides adoensis \N \N \N \N \N 24052 P.yananensis Paeonia Paeonia yananensis \N \N \N \N \N 24053 \N varietas Prunus nipponica var. alpina \N \N \N \N \N 24054 I.grata Indigofera Indigofera grata \N \N \N \N \N 24055 \N subspecies Arctostaphylos canescens subsp. sonomensis \N \N \N \N \N 24056 T.bremekampii Toddaliopsis Toddaliopsis bremekampii \N \N \N \N \N 24057 P.emarginata Paloveopsis Paloveopsis emarginata \N \N \N \N \N 24058 P.cymosa Pseuduvaria Pseuduvaria cymosa \N \N \N \N \N 24059 R.54 Romanschulzia Romanschulzia sp. Fuentes-Soriano 54 \N \N \N \N \N 24060 \N genus Nothodoritis \N \N \N \N \N 24061 P.holroydii Pimelea Pimelea holroydii \N \N \N \N \N 24062 N.foetida Nothapodytes Nothapodytes foetida \N \N \N \N \N 24063 A.koa Acacia Acacia koa \N \N \N \N \N 24064 L.strongylophyllum Ligustrum Ligustrum strongylophyllum \N \N \N \N \N 24065 E.napoides Euphorbia Euphorbia napoides \N \N \N \N \N 24066 S.costaricensis Senecio Senecio costaricensis \N \N \N \N \N 24067 C.campanulatus Croton Croton campanulatus \N \N \N \N \N 24068 M.decipiens Melanoselinum Melanoselinum decipiens \N \N \N \N \N 24069 \N subspecies Gentiana tergestina subsp. tergestina \N \N \N \N \N 24070 D.acris Diplotaxis Diplotaxis acris \N \N \N \N \N 24071 O.4560 Octoknema Octoknema sp. D. Nickrent 4560 \N \N \N \N \N 24072 P.trichophoroides Psychotria Psychotria trichophoroides \N \N \N \N \N 24073 G.macrostigma Gaultheria Gaultheria macrostigma \N \N \N \N \N 24074 T.parvifolia Tetratheca Tetratheca parvifolia \N \N \N \N \N 24075 C.cristata Cuscuta Cuscuta cristata \N \N \N \N \N 24076 L.columbianum Lilium Lilium columbianum \N \N \N \N \N 24077 A.elegantula Ada Ada elegantula \N \N \N \N \N 24078 C.affine Chlorophytum Chlorophytum affine \N \N \N \N \N 24079 O.pallida Ophrys Ophrys pallida \N \N \N \N \N 24080 C.discolor Cistanthe Cistanthe discolor \N \N \N \N \N 24081 P.aduncum Piper Piper aduncum \N \N \N \N \N 24082 P.boldus Peumus Peumus boldus \N \N \N \N \N 24083 \N varietas Citrus sinensis var. brasiliensis \N \N \N \N \N 24084 V.parviflora Vitex Vitex parviflora \N \N \N \N \N 24085 M.aquifolium Maytenus Maytenus aquifolium \N \N \N \N \N 24086 E.ovalifolia Eschweilera Eschweilera ovalifolia \N \N \N \N \N 24087 N.s.n. Nyssa Nyssa sp. Davis s.n. \N \N \N \N \N 24088 C.europaea Caralluma Caralluma europaea \N \N \N \N \N 24089 H.nigra Haworthia Haworthia nigra \N \N \N \N \N 24090 P.constricta Pachycentria Pachycentria constricta \N \N \N \N \N 24091 I.minutiflora Ixora Ixora minutiflora \N \N \N \N \N 24092 \N subspecies Klasea flavescens subsp. cichoracea \N \N \N \N \N 24093 P.ericoides Phylica Phylica ericoides \N \N \N \N \N 24094 \N subspecies Gardenia volkensii subsp. spatulifolia \N \N \N \N \N 24095 \N genus Sphaeranthus \N \N \N \N \N 24096 C.fractiflexa Cannaeorchis Cannaeorchis fractiflexa \N \N \N \N \N 24097 N.barbata Neesiochloa Neesiochloa barbata \N \N \N \N \N 24098 M.asparagoides Mulguraea Mulguraea asparagoides \N \N \N \N \N 24099 T.peltatum Triphyophyllum Triphyophyllum peltatum \N \N \N \N \N 24100 S.delicatula Silene Silene delicatula \N \N \N \N \N 24101 F.caballina Ficus Ficus caballina \N \N \N \N \N 24102 D.kolbei Disparago Disparago kolbei \N \N \N \N \N 24103 \N subspecies Weingartia neocumingii subsp. pulquinensis \N \N \N \N \N 24104 P.lasianthum Piptochaetium Piptochaetium lasianthum \N \N \N \N \N 24105 P.648 Pyrostria Pyrostria sp. 2 Razafimandimbison & Ravelonarivo 648 \N \N \N \N \N 24106 L.ternatensis Lepiniopsis Lepiniopsis ternatensis \N \N \N \N \N 24107 C.glabrescens Copernicia Copernicia glabrescens \N \N \N \N \N 24108 M.pinnata Millettia Millettia pinnata karumtree,pongam,poonga-oil-tree \N \N \N \N 24109 \N varietas Dichanthelium oligosanthes var. scribnerianum \N \N \N \N \N 24110 I.cultivar Ilex Ilex hybrid cultivar \N \N \N \N \N 24111 L.beccariana Licuala Licuala beccariana \N \N \N \N \N 24112 D.hydrocotyle Diplaspis Diplaspis hydrocotyle \N \N \N \N \N 24113 \N genus Coleonema \N \N \N \N \N 24114 D.obcordatum Delphinium Delphinium obcordatum \N \N \N \N \N 24115 C.purpusii Cuscuta Cuscuta purpusii \N \N \N \N \N 24116 O.setifera Oberonia Oberonia setifera \N \N \N \N \N 24117 H.chartacea Halosarcia Halosarcia chartacea \N \N \N \N \N 24118 G.calycinum Gastrolobium Gastrolobium calycinum \N \N \N \N \N 24119 C.scaposa Caltha Caltha scaposa \N \N \N \N \N 24120 F.cyrtandroides Fuchsia Fuchsia cyrtandroides \N \N \N \N \N 24121 \N varietas Cuscuta indecora var. neuropetala \N \N \N \N \N 24122 E.fartaqensis Echidnopsis Echidnopsis fartaqensis \N \N \N \N \N 24123 I.sambiranensis Impatiens Impatiens sambiranensis \N \N \N \N \N 24124 \N varietas Prunus cf. americana var. americana JSh911 \N \N \N \N \N 24125 \N genus Pentastemona \N \N \N \N \N 24126 N.vogelii Napoleona Napoleona vogelii \N \N \N \N \N 24127 S.luei Smilax Smilax luei \N \N \N \N \N 24128 \N subspecies Wurmbea dioica subsp. dioica \N \N \N \N \N 24129 C.candidum Cypripedium Cypripedium candidum \N \N \N \N \N 24130 H.venusta Hoya Hoya venusta \N \N \N \N \N 24131 T.affine Trifolium Trifolium affine \N \N \N \N \N 24132 G.limensis Galvezia Galvezia limensis \N \N \N \N \N 24133 T.floribunda Tonella Tonella floribunda \N \N \N \N \N 24134 C.pergamacea Cousinia Cousinia pergamacea \N \N \N \N \N 24135 I.yingjiangensis Impatiens Impatiens yingjiangensis \N \N \N \N \N 24136 D.cachemirica Draba Draba cachemirica \N \N \N \N \N 24137 D.zeylanica Dalzellia Dalzellia zeylanica \N \N \N \N \N 24138 O.MG394 Oedematopus Oedematopus sp. MG394 \N \N \N \N \N 24139 S.briegeri Sophronitis Sophronitis briegeri \N \N \N \N \N 24140 D.myriadenia Dalea Dalea myriadenia \N \N \N \N \N 24141 S.perplexa Selago Selago perplexa \N \N \N \N \N 24142 \N tribe Isatideae \N \N \N \N \N 24143 R.fulgida Rudbeckia Rudbeckia fulgida \N \N \N \N \N 24144 S.himalayensis Silene Silene himalayensis \N \N \N \N \N 24145 T.SH-2010 Tabernaemontana Tabernaemontana sp. SH-2010 \N \N \N \N \N 24146 H.stapfianum Haplophyllum Haplophyllum stapfianum \N \N \N \N \N 24147 A.astroites Aspalathus Aspalathus astroites \N \N \N \N \N 24148 R.longifilamentosa Ruellia Ruellia longifilamentosa \N \N \N \N \N 24149 G.acutifolia Guioa Guioa acutifolia \N \N \N \N \N 24150 P.mutellinoides Pachypleurum Pachypleurum mutellinoides \N \N \N \N \N 24151 M.hirticalyx Monophyllaea Monophyllaea hirticalyx \N \N \N \N \N 24152 E.glabella Erica Erica glabella \N \N \N \N \N 24153 P.violacea Phalaenopsis Phalaenopsis violacea \N \N \N \N \N 24154 P.macrophyllum Paspalum Paspalum macrophyllum \N \N \N \N \N 24155 \N genus Quaqua \N \N \N \N \N 24156 S.daliensis Salix Salix daliensis \N \N \N \N \N 24157 P.layneae Packera Packera layneae \N \N \N \N \N 24158 S.hitchcockii Sisyrinchium Sisyrinchium hitchcockii \N \N \N \N \N 24159 S.ferrelliae Stelis Stelis ferrelliae \N \N \N \N \N 24160 A.ovata Atractylodes Atractylodes ovata \N \N \N \N \N 24161 \N subspecies Triantha occidentalis subsp. occidentalis \N \N \N \N \N 24162 \N genus Mesosetum \N \N \N \N \N 24163 \N varietas Lamium amplexicaule var. aleppicum \N \N \N \N \N 24164 C.pubescens Clematis Clematis pubescens \N \N \N \N \N 24165 V.rosulata Viola Viola rosulata long-spur violet \N \N \N \N 24166 B.alleghaniensis Betula Betula alleghaniensis yellow birch \N \N \N \N 24167 C.pauciflora Calycadenia Calycadenia pauciflora small-flowered calycadenia \N \N \N \N 24168 D.valens Delphinium Delphinium valens \N \N \N \N \N 24169 V.lissochiloides Vandopsis Vandopsis lissochiloides \N \N \N \N \N 24171 O.cooperi Osmanthus Osmanthus cooperi \N \N \N \N \N 24172 \N subspecies Fraxinus excelsior subsp. coriariifolia \N \N \N \N \N 24173 \N subspecies Conostylis teretifolia subsp. planescens \N \N \N \N \N 24174 L.compacta Liatris Liatris compacta \N \N \N \N \N 24175 A.psilantherum Achnatherum Achnatherum psilantherum \N \N \N \N \N 24176 A.canadensis Aquilegia Aquilegia canadensis \N \N \N \N \N 24177 C.abyssinicum Clinopodium Clinopodium abyssinicum \N \N \N \N \N 24178 \N varietas Salvia flava var. megalantha \N \N \N \N \N 24179 C.bicknellii Carex Carex bicknellii \N \N \N \N \N 24180 A.forbesii Aspalathus Aspalathus forbesii \N \N \N \N \N 24181 L.anandria Leibnitzia Leibnitzia anandria \N \N \N \N \N 24182 P.alpinum Pelargonium Pelargonium alpinum \N \N \N \N \N 24183 E.emarginatum Erythroxylum Erythroxylum emarginatum \N \N \N \N \N 24184 M.polythele Mammillaria Mammillaria polythele \N \N \N \N \N 24185 D.monticola Diuris Diuris monticola \N \N \N \N \N 24186 O.turcomanicum Ormopterum Ormopterum turcomanicum \N \N \N \N \N 24187 F.torquata Faramea Faramea torquata \N \N \N \N \N 24188 S.cannifolium Spathiphyllum Spathiphyllum cannifolium \N \N \N \N \N 24189 S.ignatii Strychnos Strychnos ignatii \N \N \N \N \N 24190 A.jenmanii Anthurium Anthurium jenmanii \N \N \N \N \N 24191 \N genus Triphysaria \N \N \N \N \N 24192 P.crassicaulis Phragmanthera Phragmanthera crassicaulis \N \N \N \N \N 24193 A.pulvinata Azorella Azorella pulvinata \N \N \N \N \N 24194 H.maracandicum Helichrysum Helichrysum maracandicum \N \N \N \N \N 24195 \N genus Phonus \N \N \N \N \N 24196 S.tubiflora Sinningia Sinningia tubiflora \N \N \N \N \N 24197 L.chalcedonicum Lilium Lilium chalcedonicum \N \N \N \N \N 24198 P.granitica Poa Poa granitica \N \N \N \N \N 24199 K.megalocarpa Klarobelia Klarobelia megalocarpa \N \N \N \N \N 24200 \N genus Alisma \N \N \N \N \N 24201 M.pilocarpa Magnolia Magnolia pilocarpa \N \N \N \N \N 24202 A.gracilis Aechmea Aechmea gracilis \N \N \N \N \N 24203 A.eucosmus Astragalus Astragalus eucosmus \N \N \N \N \N 24204 S.soubrensis Strychnos Strychnos soubrensis \N \N \N \N \N 24205 R.barbata Rhynchospora Rhynchospora barbata \N \N \N \N \N 24206 B.humilis Betula Betula humilis dian sheng hua \N \N \N \N 24207 O.hispida Ononis Ononis hispida \N \N \N \N \N 24208 P.linaria Porophyllum Porophyllum linaria \N \N \N \N \N 24209 A.opegrapha Ardisia Ardisia opegrapha \N \N \N \N \N 24210 A.platanoides Acer Acer platanoides Norway maple \N \N \N \N 24211 O.sulcatum Oligostachyum Oligostachyum sulcatum \N \N \N \N \N 24212 L.serrata Lewisia Lewisia serrata \N \N \N \N \N 24213 A.costata Angophora Angophora costata \N \N \N \N \N 24214 P.P099 Physalis Physalis sp. P099 \N \N \N \N \N 24215 S.velutina Sophora Sophora velutina \N \N \N \N \N 24216 P.strictus Pterocephalus Pterocephalus strictus \N \N \N \N \N 24217 P.ramosissima Poa Poa ramosissima \N \N \N \N \N 24218 P.nigricans Palicourea Palicourea nigricans \N \N \N \N \N 24219 P.siamensis Primula Primula siamensis \N \N \N \N \N 24220 P.FS397 Pouteria Pouteria sp. FS397 \N \N \N \N \N 24221 S.gymnostoma Seemannia Seemannia gymnostoma \N \N \N \N \N 24222 J.curcas Jatropha Jatropha curcas \N \N \N \N \N 24223 T.amazonica Tapura Tapura amazonica \N \N \N \N \N 24224 C.montanus Cercocarpus Cercocarpus montanus \N \N \N \N \N 24225 \N subspecies Guadua angustifolia subsp. chacoensis \N \N \N \N \N 24226 O.botrantha Ocotea Ocotea botrantha \N \N \N \N \N 24227 S.esthonica Saussurea Saussurea esthonica \N \N \N \N \N 24228 C.fuscomarginata Centaurea Centaurea fuscomarginata \N \N \N \N \N 24229 V.parviflora Vicia Vicia parviflora \N \N \N \N \N 24230 O.lunulata Ophrys Ophrys lunulata \N \N \N \N \N 24231 \N genus Lepechinia \N \N \N \N \N 24232 A.melanandra Actinidia Actinidia melanandra \N \N \N \N \N 24233 V.membranacea Vulpia Vulpia membranacea \N \N \N \N \N 24234 \N subtribe Prasophyllinae \N \N \N \N \N 24235 H.longifolia Hestia Hestia longifolia \N \N \N \N \N 24236 S.aphylla Speculantha Speculantha aphylla \N \N \N \N \N 24237 C.stahliana Cousinia Cousinia stahliana \N \N \N \N \N 24238 T.klotzscheanus Telipogon Telipogon klotzscheanus \N \N \N \N \N 24239 A.indicus Aster Aster indicus \N \N \N \N \N 24240 P.microcephala Pimelea Pimelea microcephala \N \N \N \N \N 24241 \N family Eucommiaceae \N \N \N \N \N 24242 H.vahliana Humboldtia Humboldtia vahliana \N \N \N \N \N 24243 P.albiflos Pitcairnia Pitcairnia albiflos \N \N \N \N \N 24244 C.spicata Coutoubea Coutoubea spicata \N \N \N \N \N 24245 \N genus Porana \N \N \N \N \N 24246 \N genus Macrocentrum \N \N \N \N \N 24247 \N subspecies Armeria bourgaei subsp. bourgaei \N \N \N \N \N 24248 E.cyanocephalus Echinops Echinops cyanocephalus \N \N \N \N \N 24249 \N subspecies Gymnocalycium castellanosii subsp. ferocior \N \N \N \N \N 24250 C.reshni Citrus Citrus reshni \N \N \N \N \N 24251 \N genus Paraixeris \N \N \N \N \N 24252 F.faulkneriana Ficus Ficus faulkneriana \N \N \N \N \N 24253 M.schippii Maytenus Maytenus schippii \N \N \N \N \N 24254 H.floribundum Hieracium Hieracium floribundum yellow-devil hawkweed \N \N \N \N 24255 M.racemosa Mesua Mesua racemosa \N \N \N \N \N 24256 R.maingayi Rhaphidophora Rhaphidophora maingayi \N \N \N \N \N 24257 A.ramosa Anredera Anredera ramosa \N \N \N \N \N 24258 G.megalothelon Gymnocalycium Gymnocalycium megalothelon \N \N \N \N \N 24259 \N varietas Leucas abyssinica var. brachycalyx \N \N \N \N \N 24260 P.purpurascens Philadelphus Philadelphus purpurascens \N \N \N \N \N 24261 \N genus Argemone \N \N \N \N \N 24262 P.thouarsii Plectaneia Plectaneia thouarsii \N \N \N \N \N 24263 H.mexicana Hydrocotyle Hydrocotyle mexicana \N \N \N \N \N 24264 D.quitarensis Duguetia Duguetia quitarensis \N \N \N \N \N 24265 P.albolabiata Pedicularis Pedicularis albolabiata \N \N \N \N \N 24266 P.ovatopeltata Peperomia Peperomia ovatopeltata \N \N \N \N \N 24267 \N genus Parabignonia \N \N \N \N \N 24268 D.sorbifolia Diatenopteryx Diatenopteryx sorbifolia \N \N \N \N \N 24269 A.falcata Aerides Aerides falcata \N \N \N \N \N 24270 O.luteorosea Oestlundia Oestlundia luteorosea \N \N \N \N \N 24271 \N genus Heteracia \N \N \N \N \N 24272 C.cupanii Colchicum Colchicum cupanii \N \N \N \N \N 24273 C.sparsa Cliffortia Cliffortia sparsa \N \N \N \N \N 24274 D.crassifolius Dontostemon Dontostemon crassifolius \N \N \N \N \N 24275 F.sinensis Fortunearia Fortunearia sinensis \N \N \N \N \N 24276 G.glaucum Gastrolobium Gastrolobium glaucum \N \N \N \N \N 24277 U.nana Ursinia Ursinia nana \N \N \N \N \N 24278 L.MP-2011 Ledebouria Ledebouria sp. 6 MP-2011 \N \N \N \N \N 24279 G.565 Guatteria Guatteria sp. Lobo et al. 565 \N \N \N \N \N 24280 P.alatisepala Portea Portea alatisepala \N \N \N \N \N 24281 G.tianschanica Gentianodes Gentianodes tianschanica \N \N \N \N \N 24282 P.sumatrense Panicum Panicum sumatrense \N \N \N \N \N 24283 C.callosa Collinsia Collinsia callosa \N \N \N \N \N 24284 M.fournieri Maytenus Maytenus fournieri \N \N \N \N \N 24285 L.cuspidatus Lisianthius Lisianthius cuspidatus \N \N \N \N \N 24286 S.tibetica Saussurea Saussurea tibetica \N \N \N \N \N 24287 T.JS-2005 Tetramerista Tetramerista sp. JS-2005 \N \N \N \N \N 24288 B.caldwellii Bolboschoenus Bolboschoenus caldwellii \N \N \N \N \N 24289 C.plateilema Cyperus Cyperus plateilema \N \N \N \N \N 24290 \N subspecies Gentianella chathamica subsp. chathamica \N \N \N \N \N 24291 S.cayennensis Stachytarpheta Stachytarpheta cayennensis blue snakeweed,bluetop,rattail \N \N \N \N 24292 P.humiflora Protea Protea humiflora \N \N \N \N \N 24293 G.4008 Gaertnera Gaertnera sp. Bremer et al. 4008 \N \N \N \N \N 24294 C.729 Calyptrocalyx Calyptrocalyx sp. Dowe 729 \N \N \N \N \N 24295 \N genus Adenodolichos \N \N \N \N \N 24296 \N genus Leucoptera \N \N \N \N \N 24297 A.tanguticus Anisodus Anisodus tanguticus \N \N \N \N \N 24298 T.glanduliferum Trifolium Trifolium glanduliferum \N \N \N \N \N 24299 \N genus Chamaeangis \N \N \N \N \N 24300 \N subspecies Phlox bifida subsp. bifida \N \N \N \N \N 24301 E.elymaiticus Echinops Echinops elymaiticus \N \N \N \N \N 24302 P.microphylla Pauridiantha Pauridiantha microphylla \N \N \N \N \N 24303 O.viscosa Oxalis Oxalis viscosa \N \N \N \N \N 24304 \N tribe Cacteae \N \N \N \N \N 24305 M.polyandra Megacarpaea Megacarpaea polyandra \N \N \N \N \N 24306 E.ampliflorus Elleanthus Elleanthus ampliflorus \N \N \N \N \N 24307 I.henslowiana Impatiens Impatiens henslowiana \N \N \N \N \N 24308 D.breedlovei Donnellsmithia Donnellsmithia breedlovei \N \N \N \N \N 24309 Z.nitidum Zanthoxylum Zanthoxylum nitidum \N \N \N \N \N 24310 D.fruticosa Ditrysinia Ditrysinia fruticosa \N \N \N \N \N 24311 T.reflexum Typhonium Typhonium reflexum \N \N \N \N \N 24312 N.3817 Neobeguea Neobeguea sp. Chase 3817 \N \N \N \N \N 24313 L.reptans Leptostigma Leptostigma reptans \N \N \N \N \N 24314 \N genus Ofaiston \N \N \N \N \N 24315 K.multiflora Kniphofia Kniphofia multiflora \N \N \N \N \N 24316 M.interrupta Mimosa Mimosa interrupta \N \N \N \N \N 24317 C.nana Crepis Crepis nana \N \N \N \N \N 24318 A.orientalis Anthemis Anthemis orientalis \N \N \N \N \N 24319 H.caerulescens Hibiscus Hibiscus caerulescens \N \N \N \N \N 24320 L.albo-niger Lagenocarpus Lagenocarpus albo-niger \N \N \N \N \N 24321 E.formosana Euchresta Euchresta formosana \N \N \N \N \N 24322 B.ovalifolia Bursera Bursera ovalifolia \N \N \N \N \N 24323 S.dulcificum Synsepalum Synsepalum dulcificum miracle fruit,sweet berry \N \N \N \N 24324 \N subspecies Stipa caucasica subsp. glareosa \N \N \N \N \N 24325 B.piperiana Berberis Berberis piperiana \N \N \N \N \N 24326 S.mexicana Senna Senna mexicana \N \N \N \N \N 24327 A.phalerata Attalea Attalea phalerata \N \N \N \N \N 24328 C.mixta Cucurbita Cucurbita mixta mixta squash \N \N \N \N 24329 E.serpens Euphorbia Euphorbia serpens \N \N \N \N \N 24330 E.pleiosperma Euptelea Euptelea pleiosperma \N \N \N \N \N 24331 L.bolanderi Lithophragma Lithophragma bolanderi \N \N \N \N \N 24332 A.takesimense Acer Acer takesimense \N \N \N \N \N 24333 \N genus Cynodon \N \N \N \N \N 24334 \N subspecies Aloe dichotoma subsp. ramosissima \N \N \N \N \N 24335 P.rugosa Pyrola Pyrola rugosa \N \N \N \N \N 24336 P.serotinum Phoradendron Phoradendron serotinum American mistletoe \N \N \N \N 24337 C.396aa Clusia Clusia sp. HG 396aa \N \N \N \N \N 24338 C.scoparius Convolvulus Convolvulus scoparius \N \N \N \N \N 24339 \N genus Valiha \N \N \N \N \N 24340 C.rowleyanus Curio Curio rowleyanus \N \N \N \N \N 24341 D.vestitum Dimerostemma Dimerostemma vestitum \N \N \N \N \N 24342 T.alismifolium Typhonium Typhonium alismifolium \N \N \N \N \N 24343 \N genus Veillonia \N \N \N \N \N 24344 V.plumosa Verticordia Verticordia plumosa \N \N \N \N \N 24345 S.micranthera Salsola Salsola micranthera \N \N \N \N \N 24346 G.bicknellii Geranium Geranium bicknellii \N \N \N \N \N 24347 E.maximus Erigeron Erigeron maximus \N \N \N \N \N 24348 R.quadrifida Rhodiola Rhodiola quadrifida \N \N \N \N \N 24349 P.walpolei Papaver Papaver walpolei \N \N \N \N \N 24350 C.speciosa Cleome Cleome speciosa \N \N \N \N \N 24351 \N genus Malacomeles \N \N \N \N \N 24352 L.gilliesianum Lycium Lycium gilliesianum \N \N \N \N \N 24353 V.salicifolia Hebe Veronica salicifolia \N \N \N \N \N 24354 C.clematidea Cayratia Cayratia clematidea \N \N \N \N \N 24355 \N genus Nardostachys \N \N \N \N \N 24356 P.deqenensis Parnassia Parnassia deqenensis \N \N \N \N \N 24357 V.cuspidata Vicia Vicia cuspidata \N \N \N \N \N 24358 S.decora Swertia Swertia decora \N \N \N \N \N 24359 A.1024 Apostasia Apostasia cf. wallichii 1024 \N \N \N \N \N 24360 \N genus Cryptochloa \N \N \N \N \N 24361 G.microphylla Genista Genista microphylla \N \N \N \N \N 24362 \N genus Galpinia \N \N \N \N \N 24363 \N varietas Paris cronquistii var. cronquistii \N \N \N \N \N 24364 P.aurantiacus Phemeranthus Phemeranthus aurantiacus \N \N \N \N \N 24365 \N genus Mauritia \N \N \N \N \N 24366 O.testui Oreonesion Oreonesion testui \N \N \N \N \N 24367 K.parviflora Kaempferia Kaempferia parviflora \N \N \N \N \N 24368 M.adenophora Memora Memora adenophora \N \N \N \N \N 24369 R.aequabile Rhododendron Rhododendron aequabile \N \N \N \N \N 24370 P.lemmonii Perideridia Perideridia lemmonii \N \N \N \N \N 24371 M.africana Menodora Menodora africana \N \N \N \N \N 24372 M.dodecapetala Magnolia Magnolia dodecapetala \N \N \N \N \N 24373 N.filifolia Nolana Nolana filifolia \N \N \N \N \N 24374 P.nodosus Potamogeton Potamogeton nodosus long-leaf pondweed \N \N \N \N 24375 C.longipes Cyrtochilum Cyrtochilum longipes \N \N \N \N \N 24376 R.venator Rhododendron Rhododendron venator \N \N \N \N \N 24377 C.sibirica Crepis Crepis sibirica \N \N \N \N \N 24378 E.corymbosum Eriogonum Eriogonum corymbosum \N \N \N \N \N 24379 S.bracteatum Sium Sium bracteatum \N \N \N \N \N 24380 C.bellidifolia Campanula Campanula bellidifolia \N \N \N \N \N 24381 P.cuixmalensis Peniocereus Peniocereus cuixmalensis \N \N \N \N \N 24382 S.villosa Scorzonera Scorzonera villosa \N \N \N \N \N 24383 L.924 Leucaena Leucaena hybrid sp. Hughes 924 \N \N \N \N \N 24384 P.fosterianus Peniocereus Peniocereus fosterianus \N \N \N \N \N 24385 O.rufibarbis Ossaea Ossaea rufibarbis \N \N \N \N \N 24386 S.brevipes Sabicea Sabicea brevipes \N \N \N \N \N 24387 \N genus Eversmannia \N \N \N \N \N 24388 S.peltata Shorea Shorea peltata \N \N \N \N \N 24389 S.armena Symphyandra Symphyandra armena \N \N \N \N \N 24390 C.hartwegii Calylophus Calylophus hartwegii \N \N \N \N \N 24391 B.mucroglumis Bromus Bromus mucroglumis \N \N \N \N \N 24392 \N genus Notylia \N \N \N \N \N 24393 E.Esp16 Elleanthus Elleanthus sp. Esp16 \N \N \N \N \N 24394 \N genus Pycnandra \N \N \N \N \N 24395 E.fargesii Epimedium Epimedium fargesii \N \N \N \N \N 24396 \N genus Basilicum \N \N \N \N \N 24397 G.verticillata Gigantochloa Gigantochloa verticillata \N \N \N \N \N 24398 \N genus Microcorys \N \N \N \N \N 24399 A.acifera Aspalathus Aspalathus acifera \N \N \N \N \N 24400 L.glaberrima Lasthenia Lasthenia glaberrima \N \N \N \N \N 24401 T.lasiocarpa Tauscheria Tauscheria lasiocarpa \N \N \N \N \N 24402 C.leucantha Cyrtandra Cyrtandra leucantha \N \N \N \N \N 24403 B.speciosa Banksia Banksia speciosa \N \N \N \N \N 24404 S.carolii Sporobolus Sporobolus carolii \N \N \N \N \N 24405 \N genus Dendrotrophe \N \N \N \N \N 24406 C.grayanum Cirsium Cirsium grayanum \N \N \N \N \N 24407 P.virgata Placopoda Placopoda virgata \N \N \N \N \N 24408 \N genus Alchornea \N \N \N \N \N 24409 Z.suppositum Zeuktophyllum Zeuktophyllum suppositum \N \N \N \N \N 24410 T.procumbens Thymelaea Thymelaea procumbens \N \N \N \N \N 24411 H.89 Hybanthus Hybanthus sp. Alford 89 \N \N \N \N \N 24412 \N genus Calea \N \N \N \N \N 24413 \N subspecies Helianthus debilis subsp. debilis \N \N \N \N \N 24414 B.dispar Biarum Biarum dispar \N \N \N \N \N 24415 \N varietas Paullinia cupana var. sorbilis \N \N \N \N \N 24416 B.engleri Begonia Begonia engleri \N \N \N \N \N 24417 N.floribunda Neea Neea floribunda \N \N \N \N \N 24418 O.parviflora Oenothera Oenothera parviflora \N \N \N \N \N 24419 H.excelsum Hymenolobium Hymenolobium excelsum \N \N \N \N \N 24420 D.glaciale Doronicum Doronicum glaciale \N \N \N \N \N 24421 N.storckii Neoveitchia Neoveitchia storckii \N \N \N \N \N 24422 A.tetrasepala Anemone Anemone tetrasepala \N \N \N \N \N 24423 A.hemsleyanum Aconitum Aconitum hemsleyanum \N \N \N \N \N 24424 B.stramoniifolius Brachistus Brachistus stramoniifolius \N \N \N \N \N 24425 A.scaposum Aconitum Aconitum scaposum \N \N \N \N \N 24426 C.pulicaris Carex Carex pulicaris \N \N \N \N \N 24427 S.602 Spigelia Spigelia sp. Popovkin 602 \N \N \N \N \N 24428 A.linearifolium Allium Allium linearifolium \N \N \N \N \N 24429 V.axillare Veronicastrum Veronicastrum axillare \N \N \N \N \N 24430 M.sabaraense Macroptilium Macroptilium sabaraense \N \N \N \N \N 24431 B.japonica Berberis Berberis japonica \N \N \N \N \N 24432 Z.amazonica Zomicarpella Zomicarpella amazonica \N \N \N \N \N 24433 G.flagellaris Gomidesia Gomidesia flagellaris \N \N \N \N \N 24434 A.sexipetala Aglaia Aglaia sexipetala \N \N \N \N \N 24435 P.trianae Piper Piper trianae \N \N \N \N \N 24436 \N genus Teedia \N \N \N \N \N 24437 C.eremicus Cordylanthus Cordylanthus eremicus \N \N \N \N \N 24438 P.metlesicsii Phagnalon Phagnalon metlesicsii \N \N \N \N \N 24439 H.brunonis Hymenidium Hymenidium brunonis \N \N \N \N \N 24440 S.cheiranthoides Stevenia Stevenia cheiranthoides \N \N \N \N \N 24441 G.spirituana Gaussia Gaussia spirituana \N \N \N \N \N 24442 A.biflora Agalmyla Agalmyla biflora \N \N \N \N \N 24443 \N genus Erioglossum \N \N \N \N \N 24444 \N varietas Rhododendron sanguineum var. didymum \N \N \N \N \N 24445 P.pungens Pentaschistis Pentameris pungens \N \N \N \N \N 24446 L.verticillatus Lasianthus Lasianthus verticillatus \N \N \N \N \N 24447 A.melastoma Aristolochia Aristolochia melastoma \N \N \N \N \N 24448 \N genus Hydriastele \N \N \N \N \N 24449 K.gammiei Kobresia Kobresia gammiei \N \N \N \N \N 24450 \N varietas Aridarum caulescens var. angustifolium \N \N \N \N \N 24451 S.acreanum Sparattanthelium Sparattanthelium acreanum \N \N \N \N \N 24452 B.SEC-2009 Bassecoia Bassecoia sp. SEC-2009 \N \N \N \N \N 24453 L.TME-2007 Lymania Lymania sp. TME-2007 \N \N \N \N \N 24454 T.chocoense Theobroma Theobroma chocoense \N \N \N \N \N 24455 P.anisophylla Pilea Pilea anisophylla \N \N \N \N \N 24456 S.tegore Solanum Solanum tegore \N \N \N \N \N 24457 G.nevinii Gilia Gilia nevinii \N \N \N \N \N 24458 \N varietas Eurya rubiginosa var. attenuata \N \N \N \N \N 24459 R.cryptanthus Ranunculus Ranunculus cryptanthus \N \N \N \N \N 24460 P.alpestris Plantago Plantago alpestris \N \N \N \N \N 24461 P.85 Prockia Prockia sp. Alford 85 \N \N \N \N \N 24462 S.ericifolius Stylapterus Stylapterus ericifolius \N \N \N \N \N 24463 \N genus Thinopyrum \N \N \N \N \N 24464 C.isangiensis Cuervea Cuervea isangiensis \N \N \N \N \N 24465 I.quercetorum Ilex Ilex quercetorum \N \N \N \N \N 24466 A.cretica Achillea Achillea cretica \N \N \N \N \N 24467 O.caesiella Ophrys Ophrys caesiella \N \N \N \N \N 24468 C.crassissima Camellia Camellia crassissima \N \N \N \N \N 24469 P.glabra Pachira Pachira glabra \N \N \N \N \N 24470 M.tetrasticha Metrosideros Metrosideros tetrasticha \N \N \N \N \N 24471 \N varietas Platostoma calcaratum var. garretii \N \N \N \N \N 24472 T.erubescens Tetrastigma Tetrastigma erubescens \N \N \N \N \N 24473 E.decangulare Eriocaulon Eriocaulon decangulare \N \N \N \N \N 24474 \N varietas Crassula muscosa var. polpodacea \N \N \N \N \N 24475 F.phillyreoides Fontanesia Fontanesia phillyreoides \N \N \N \N \N 24476 \N genus Ewartiothamnus \N \N \N \N \N 24477 R.brownii Rhynchospora Rhynchospora brownii \N \N \N \N \N 24478 T.cuneatum Trillium Trillium cuneatum bloody butcher,sweet betsy,whip-poor-will flower \N \N \N \N 24479 S.newii Sacleuxia Sacleuxia newii \N \N \N \N \N 24480 \N genus Podostemum \N \N \N \N \N 24481 \N family Lanariaceae \N \N \N \N \N 24482 A.chenopoda Aspalathus Aspalathus chenopoda \N \N \N \N \N 24483 P.comptonii Pycnandra Pycnandra comptonii \N \N \N \N \N 24484 G.macrocarpa Gaura Gaura macrocarpa \N \N \N \N \N 24485 R.durifolia Renvoizea Renvoizea durifolia \N \N \N \N \N 24486 T.eriobasis Tanacetopsis Tanacetopsis eriobasis \N \N \N \N \N 24487 E.longipetalus Echinodorus Echinodorus longipetalus \N \N \N \N \N 24488 \N genus Memecylon \N \N \N \N \N 24489 S.napiformis Scaligeria Scaligeria napiformis \N \N \N \N \N 24490 C.mongholica Chamaerhodos Chamaerhodos mongholica \N \N \N \N \N 24491 \N genus Hanseniella \N \N \N \N \N 24492 C.polandii Callistemon Callistemon polandii \N \N \N \N \N 24493 G.reticulata Gesneria Gesneria reticulata \N \N \N \N \N 24494 M.jansenii Macadamia Macadamia jansenii \N \N \N \N \N 24495 A.brachypus Actinocephalus Actinocephalus brachypus \N \N \N \N \N 24496 S.prostrata Sesamoides Sesamoides prostrata \N \N \N \N \N 24497 S.cooperi Sinningia Sinningia cooperi \N \N \N \N \N 24498 H.abyssinica Harrisonia Harrisonia abyssinica \N \N \N \N \N 24499 O.conferta Oenothera Oenothera x conferta \N \N \N \N \N 24500 B.FS1552 Bulbophyllum Bulbophyllum sp. FS1552 \N \N \N \N \N 24501 I.pallens Ichnanthus Ichnanthus pallens \N \N \N \N \N 24502 T.parvulus Telipogon Telipogon parvulus \N \N \N \N \N 24503 C.officinale Cnidium Cnidium officinale \N \N \N \N \N 24504 B.michauxii Betula Betula michauxii Newfoundland dwarf birch,bouleau de Michaux \N \N \N \N 24505 B.massaiensis Baphia Baphia massaiensis \N \N \N \N \N 24506 E.790 Euryale Euryale sp. Palmer 790 \N \N \N \N \N 24507 S.helferi Smitinandia Smitinandia helferi \N \N \N \N \N 24508 H.nelsonii Heliotropium Heliotropium nelsonii \N \N \N \N \N 24509 C.jacquinii Campanula Campanula jacquinii \N \N \N \N \N 24510 C.turcicum Colchicum Colchicum turcicum \N \N \N \N \N 24511 I.leptantha Isidorea Isidorea leptantha \N \N \N \N \N 24512 S.olmosense Solanum Solanum olmosense \N \N \N \N \N 24513 C.arachniformis Chusquea Chusquea arachniformis \N \N \N \N \N 24514 \N genus Blumeopsis \N \N \N \N \N 24515 O.brachyantha Oryza Oryza brachyantha \N \N \N \N \N 24516 M.pendula Moehringia Moehringia pendula \N \N \N \N \N 24517 E.reinwardtiana Eugenia Eugenia reinwardtiana \N \N \N \N \N 24518 M.kauki Manilkara Manilkara kauki caqui \N \N \N \N 24519 G.anatolicus Gladiolus Gladiolus anatolicus \N \N \N \N \N 24520 P.regelii Pyrus Pyrus regelii \N \N \N \N \N 24521 \N genus Baumea \N \N \N \N \N 24522 R.1860 Rhaphidophora Rhaphidophora angulata (Miq.) Schott 1860 \N \N \N \N \N 24523 L.ruminatus Lithocarpus Lithocarpus ruminatus \N \N \N \N \N 24524 S.aurantiaca Smithiantha Smithiantha aurantiaca \N \N \N \N \N 24525 \N tribe Swartzieae \N \N \N \N \N 24526 M.intertexta Matucana Matucana intertexta \N \N \N \N \N 24527 Z.noltii Zostera Zostera noltii \N \N \N \N \N 24528 \N genus Coelachne \N \N \N \N \N 24529 I.hemiuncialis Isolepis Isolepis hemiuncialis \N \N \N \N \N 24530 N.anisocarpa Nemesia Nemesia anisocarpa \N \N \N \N \N 24531 P.lucens Potamogeton Potamogeton lucens \N \N \N \N \N 24532 A.glacialis Aciphylla Aciphylla glacialis \N \N \N \N \N 24533 \N genus Gutierrezia \N \N \N \N \N 24534 G.aeruginosa Guatteria Guatteria aeruginosa \N \N \N \N \N 24535 H.ferrugineus Hebecoccus Hebecoccus ferrugineus \N \N \N \N \N 24536 \N genus Allagopappus \N \N \N \N \N 24537 C.boissieri Cordia Cordia boissieri \N \N \N \N \N 24538 C.mombazense Canthium Canthium mombazense \N \N \N \N \N 24539 \N subspecies Streptanthus glandulosus subsp. secundus \N \N \N \N \N 24540 \N genus Darlingia \N \N \N \N \N 24541 C.oligocarpa Carex Carex oligocarpa \N \N \N \N \N 24542 P.attenuatus Penstemon Penstemon attenuatus \N \N \N \N \N 24543 I.wallichii Ilex Ilex wallichii \N \N \N \N \N 24544 A.memoriosus Astragalus Astragalus memoriosus \N \N \N \N \N 24545 P.spinosum Ptilotrichum Ptilotrichum spinosum \N \N \N \N \N 24546 O.leiospermus Oncostylus Oncostylus leiospermus \N \N \N \N \N 24547 C.ericoides Cuphea Cuphea ericoides \N \N \N \N \N 24548 L.burchellii Leucadendron Leucadendron burchellii \N \N \N \N \N 24549 P.missiona Parodiophyllochloa Parodiophyllochloa missiona \N \N \N \N \N 24550 D.MAG-2009 unclassified Dilleniaceae Dilleniaceae sp. MAG-2009 \N \N \N \N \N 24551 C.gravida Carex Carex gravida \N \N \N \N \N 24552 S.westinianus Siphocampylus Siphocampylus westinianus \N \N \N \N \N 24553 \N genus Klattia \N \N \N \N \N 24554 P.lapponica Pedicularis Pedicularis lapponica \N \N \N \N \N 24555 D.ulei Duguetia Duguetia ulei \N \N \N \N \N 24556 O.inermis Ochna Ochna inermis \N \N \N \N \N 24557 C.thorelii Cordisepalum Cordisepalum thorelii \N \N \N \N \N 24558 H.chenopodiaceum Heliotropium Heliotropium chenopodiaceum \N \N \N \N \N 24559 C.vaginata Carex Carex vaginata \N \N \N \N \N 24560 G.haensleri Genista Genista haensleri \N \N \N \N \N 24561 M.grandiflora Mutisia Mutisia grandiflora \N \N \N \N \N 24562 D.tsiangii Dendrocalamus Dendrocalamus tsiangii \N \N \N \N \N 24563 N.spinulosperma Nymphoides Nymphoides spinulosperma \N \N \N \N \N 24564 C.saxicola Centaurea Centaurea saxicola \N \N \N \N \N 24565 P.racemiflora Pleurothallis Pleurothallis racemiflora \N \N \N \N \N 24566 C.diversifolius Ceanothus Ceanothus diversifolius \N \N \N \N \N 24567 P.welwitschianus Phyllanthus Phyllanthus welwitschianus \N \N \N \N \N 24568 Z.taurica Ziziphora Ziziphora taurica \N \N \N \N \N 24569 S.decumbens Sarcocornia Sarcocornia decumbens \N \N \N \N \N 24570 K.ceratoides Krascheninnikovia Krascheninnikovia ceratoides \N \N \N \N \N 24571 A.cyperophylla Acacia Acacia cyperophylla \N \N \N \N \N 24572 D.brachycodon Dendrophorbium Dendrophorbium brachycodon \N \N \N \N \N 24573 P.tricuspidata Parthenocissus Parthenocissus tricuspidata Boston-ivy \N \N \N \N 24574 V.hirtipes Viola Viola hirtipes \N \N \N \N \N 24575 \N genus Hesperocallis \N \N \N \N \N 24576 P.thuringiaca Potentilla Potentilla pusilla x Potentilla thuringiaca \N \N \N \N \N 24577 R.pseudohirculus Ranunculus Ranunculus pseudohirculus \N \N \N \N \N 24578 \N genus Triumfetta \N \N \N \N \N 24579 M.filiformis Muraltia Muraltia filiformis \N \N \N \N \N 24580 G.paniculata Guadua Guadua paniculata \N \N \N \N \N 24581 \N subspecies Crocus biflorus subsp. stridii \N \N \N \N \N 24582 C.capillaceus Chordifex Chordifex capillaceus \N \N \N \N \N 24583 G.salzmannii Genista Genista salzmannii \N \N \N \N \N 24584 R.miraflorensis Rondeletia Rondeletia miraflorensis \N \N \N \N \N 24585 T.kjellmanii Tephroseris Tephroseris kjellmanii \N \N \N \N \N 24586 C.velutina Carapa Carapa velutina \N \N \N \N \N 24587 M.8250 Microlicia Microlicia sp. Almeda et al. 8250 \N \N \N \N \N 24588 A.mundianum Afrocanthium Afrocanthium mundianum \N \N \N \N \N 24589 C.magnusianus Calycacanthus Calycacanthus magnusianus \N \N \N \N \N 24590 A.songoricum Aconogonon Aconogonon songoricum \N \N \N \N \N 24591 G.herrerae Guzmania Guzmania herrerae \N \N \N \N \N 24592 L.kalalauensis Lysimachia Lysimachia glutinosa x Lysimachia kalalauensis \N \N \N \N \N 24593 T.ceratocarpum Thlaspi Thlaspi ceratocarpum \N \N \N \N \N 24594 C.pospischilii Cymbopogon Cymbopogon pospischilii \N \N \N \N \N 24595 C.culiacanensis Croton Croton culiacanensis \N \N \N \N \N 24596 E.lorentzii Eriolarynx Eriolarynx lorentzii \N \N \N \N \N 24597 M.candelariae Mentzelia Mentzelia candelariae \N \N \N \N \N 24598 A.aspleniifolia Achillea millefolium complex Achillea aspleniifolia \N \N \N \N \N 24599 C.1837 Cyrtandra Cyrtandra sp. Plunkett 1837 \N \N \N \N \N 24600 C.africana Christiana Christiana africana \N \N \N \N \N 24601 S.psilocarpus Senecio Senecio psilocarpus \N \N \N \N \N 24602 P.strombulifera Prosopis Prosopis strombulifera \N \N \N \N \N 24603 A.805257 Alchemilla Alchemilla sp. HEID 805257 \N \N \N \N \N 24604 C.gongonha Citronella Citronella gongonha \N \N \N \N \N 24605 K.montana Kunzea Kunzea montana \N \N \N \N \N 24606 C.rigida Cleistochloa Cleistochloa rigida \N \N \N \N \N 24607 L.skinneri Lisianthius Lisianthius skinneri \N \N \N \N \N 24608 O.nervosum Onopordum Onopordum nervosum \N \N \N \N \N 24609 H.brevicaule Hedychium Hedychium brevicaule \N \N \N \N \N 24610 P.lawrenceana Polystachya Polystachya lawrenceana \N \N \N \N \N 24611 R.30815 Randia Randia aff. aculeata Martinez and Alvarez 30815 \N \N \N \N \N 24612 A.trigynum Androtrichum Androtrichum trigynum \N \N \N \N \N 24613 C.14396 Cinnamomum Cinnamomum sp. van der Werff 14396 \N \N \N \N \N 24614 R.sabinei Ranunculus Ranunculus sabinei \N \N \N \N \N 24615 H.esterhuyseniae Heliophila Heliophila esterhuyseniae \N \N \N \N \N 24616 \N genus Paepalanthus \N \N \N \N \N 24617 P.modesta Polystachya Polystachya modesta \N \N \N \N \N 24618 \N genus Astartea \N \N \N \N \N 24619 S.staminea Salvia Salvia staminea \N \N \N \N \N 24620 \N genus Strombosia \N \N \N \N \N 24621 A.arenaria Allagoptera Allagoptera arenaria \N \N \N \N \N 24622 N.pygmaea Nassauvia Nassauvia pygmaea \N \N \N \N \N 24623 C.subinflata Carex Carex subinflata \N \N \N \N \N 24624 \N genus Koompassia \N \N \N \N \N 24625 P.macrocarpa Pseuduvaria Pseuduvaria macrocarpa \N \N \N \N \N 24626 A.monocephala Antennaria Antennaria monocephala \N \N \N \N \N 24627 P.peduncularis Psychotria Psychotria peduncularis \N \N \N \N \N 24628 S.crockeri Scalesia Scalesia crockeri \N \N \N \N \N 24629 \N subspecies Hypericum richeri subsp. grisebachii \N \N \N \N \N 24630 S.angustum Sorghum Sorghum angustum \N \N \N \N \N 24631 P.multiflora Philibertia Philibertia multiflora \N \N \N \N \N 24632 V.arctostaphylos Vaccinium Vaccinium arctostaphylos Caucasian whortleberry \N \N \N \N 24633 C.tecunarum Curarea Curarea tecunarum \N \N \N \N \N 24634 \N subspecies Sonchus asper subsp. glaucescens \N \N \N \N \N 24635 L.bacularia Licuala Licuala bacularia \N \N \N \N \N 24636 D.sayeri Dracophyllum Dracophyllum sayeri \N \N \N \N \N 24637 \N no rank Lamiaceae incertae sedis \N \N \N \N \N 24638 C.phalaenopsis Caucaea Caucaea phalaenopsis \N \N \N \N \N 24639 S.greggii Salvia Salvia greggii autumn sage \N \N \N \N 24640 S.robiniifolia Senna Senna robiniifolia \N \N \N \N \N 24641 P.kurtziana Pulicaria Pulicaria kurtziana \N \N \N \N \N 24642 V.angustifolia Viguiera Viguiera angustifolia \N \N \N \N \N 24643 S.junceus Samolus Samolus junceus \N \N \N \N \N 24644 A.sessilifolia Actephila Actephila sessilifolia \N \N \N \N \N 24645 S.pteridophyllus Senecio Senecio pteridophyllus \N \N \N \N \N 24646 E.squamosa Euphorbia Euphorbia squamosa \N \N \N \N \N 24647 N.urens Nasa Nasa urens \N \N \N \N \N 24648 S.forrestii Strobilanthes Strobilanthes forrestii \N \N \N \N \N 24649 K.caledonica Kibaropsis Kibaropsis caledonica \N \N \N \N \N 24650 L.pedicellosum Lepidium Lepidium pedicellosum \N \N \N \N \N 24651 T.simaboides Talisia Talisia simaboides \N \N \N \N \N 24652 C.gigas Copernicia Copernicia gigas \N \N \N \N \N 24653 \N family Thymelaeaceae mezereum family \N \N \N \N 24654 M.borealis Mimosa Mimosa borealis \N \N \N \N \N 24655 G.lehmannii Guatteria Guatteria lehmannii \N \N \N \N \N 24656 \N genus Prangos \N \N \N \N \N 24657 L.guineensis Lagenaria Lagenaria guineensis \N \N \N \N \N 24658 S.wallichii Schima Schima wallichii \N \N \N \N \N 24659 A.paniculatus Amaranthus Amaranthus paniculatus \N \N \N \N \N 24660 R.notonianum Rhynchoglossum Rhynchoglossum notonianum \N \N \N \N \N 24661 S.chienii Salvia Salvia chienii \N \N \N \N \N 24662 S.achacachense Solanum Solanum achacachense \N \N \N \N \N 24663 Z.aurantiacum Zygophyllum Zygophyllum aurantiacum \N \N \N \N \N 24664 R.cookii Randia Randia cookii \N \N \N \N \N 24665 S.calvatum Sedum Sedum calvatum \N \N \N \N \N 24666 \N varietas Oldenlandia herbacea var. herbacea \N \N \N \N \N 24667 S.albispina Schischkinia Schischkinia albispina \N \N \N \N \N 24668 S.sample environmental samples Taxonomy:1096678 Symphonia environmental sample \N \N \N \N \N 24669 D.ceratocaula Datura Datura ceratocaula \N \N \N \N \N 24670 \N subspecies Anacamptis coriophora subsp. carpetana \N \N \N \N \N 24671 P.debilis Plantago Plantago debilis \N \N \N \N \N 24672 P.kerguelensis Poa Poa kerguelensis \N \N \N \N \N 24673 L.diamantinensis Lippia Lippia diamantinensis \N \N \N \N \N 24674 T.bracteatum Taraxacum Taraxacum bracteatum \N \N \N \N \N 24675 P.macrostachyum Prasophyllum Prasophyllum macrostachyum \N \N \N \N \N 24676 F.rangei Fagonia Fagonia rangei \N \N \N \N \N 24677 P.pinnatifida Perezia Perezia pinnatifida \N \N \N \N \N 24678 L.rostrata Lotononis Lotononis rostrata \N \N \N \N \N 24679 C.cheesemanii Coprosma Coprosma cheesemanii \N \N \N \N \N 24680 L.pectinata Luetkea Luetkea pectinata \N \N \N \N \N 24681 F.calligera Festuca Festuca calligera \N \N \N \N \N 24682 O.occidentalis Osmorhiza Osmorhiza berteroi x Osmorhiza occidentalis \N \N \N \N \N 24683 \N genus Schizomeria \N \N \N \N \N 24684 B.polyneura Bourreria Bourreria polyneura \N \N \N \N \N 24685 T.africanum Trifolium Trifolium africanum African clover \N \N \N \N 24686 \N subspecies Erica viscaria subsp. pendula \N \N \N \N \N 24687 D.peregrinum Delphinium Delphinium peregrinum \N \N \N \N \N 24688 C.prismatica Chapmannia Chapmannia prismatica \N \N \N \N \N 24689 I.orchioides Iris Iris orchioides \N \N \N \N \N 24690 \N genus Cocconerion \N \N \N \N \N 24691 \N genus Pachysandra \N \N \N \N \N 24692 P.costularia Psychotria Psychotria costularia \N \N \N \N \N 24693 M.fragilis Mollugo Mollugo fragilis \N \N \N \N \N 24694 P.maculata Pleione Pleione maculata \N \N \N \N \N 24695 A.hirtula Avena Avena hirtula \N \N \N \N \N 24696 A.palanae Astragalus Astragalus palanae \N \N \N \N \N 24697 T.toru Toronia Toronia toru \N \N \N \N \N 24698 P.cyclotus Parasenecio Parasenecio cyclotus \N \N \N \N \N 24699 S.flagelliferum Solanum Solanum flagelliferum \N \N \N \N \N 24700 P.monophyllus Pterocarpus Pterocarpus monophyllus \N \N \N \N \N 24701 V.vinifera Vitis Vitis cinerea var. helleri x Vitis vinifera \N \N \N \N \N 24702 R.fraseri Racinaea Racinaea fraseri \N \N \N \N \N 24703 G.hirtum Galium Galium hirtum \N \N \N \N \N 24704 A.glabra Ainsliaea Ainsliaea glabra \N \N \N \N \N 24705 L.0044012 Leontopodium Leontopodium sp. Safer 0044012 \N \N \N \N \N 24706 P.japonicus Panax Panax japonicus Japanese ginseng,chikusetu-ninjin,satsuma-ninjin,tochiba-ninjin \N \N \N \N 24707 \N genus Enantiophylla \N \N \N \N \N 24708 T.JC51 Tulipa Tulipa sp. JC51 \N \N \N \N \N 24709 B.deltoidea Balsamorhiza Balsamorhiza deltoidea \N \N \N \N \N 24710 \N genus Rhanteriopsis \N \N \N \N \N 24711 \N genus Pseudocedrela \N \N \N \N \N 24712 M.HS78 Momordica Momordica sp. HS78 \N \N \N \N \N 24713 S.ochrophyllum Solanum Solanum ochrophyllum \N \N \N \N \N 24714 B.yakushimensis Balanophora Balanophora yakushimensis \N \N \N \N \N 24715 T.amabile Trifolium Trifolium amabile \N \N \N \N \N 24716 C.0457 Carex Carex cf. cristatella JAG 0457 \N \N \N \N \N 24717 C.korolkowii Crocus Crocus korolkowii \N \N \N \N \N 24718 T.striata Tabebuia Tabebuia striata \N \N \N \N \N 24719 C.aurantium Citrus Citrus aurantium Seville orange,bitter orange,sour orange \N \N \N \N 24720 \N genus Kremeriella \N \N \N \N \N 24721 O.elwesianum Omphalogramma Omphalogramma elwesianum \N \N \N \N \N 24722 K.(c) Kunzea Kunzea aff. ericoides (c) \N \N \N \N \N 24723 P.scabra Patrinia Patrinia scabra \N \N \N \N \N 24724 E.ramosa Ehrharta Ehrharta ramosa \N \N \N \N \N 24725 P.rhoifolia Pterocarya Pterocarya rhoifolia \N \N \N \N \N 24726 E.fimbriatus Euonymus Euonymus fimbriatus \N \N \N \N \N 24727 \N subtribe Hieraciinae \N \N \N \N \N 24728 H.glaucophylla Habenaria Habenaria glaucophylla \N \N \N \N \N 24729 \N genus Lysichiton \N \N \N \N \N 24730 R.duriaeana Reseda Reseda duriaeana \N \N \N \N \N 24731 B.behrii Babingtonia Babingtonia behrii \N \N \N \N \N 24732 E.curvispina Eriosyce Eriosyce curvispina \N \N \N \N \N 24733 C.digitata Cardamine Cardamine digitata \N \N \N \N \N 24734 A.ramiflora Acrotriche Acrotriche ramiflora \N \N \N \N \N 24735 \N genus Tordylium \N \N \N \N \N 24736 G.globulifera Globba Globba globulifera \N \N \N \N \N 24737 V.phenax Viguiera Viguiera phenax \N \N \N \N \N 24738 T.looseri Tropaeolum Tropaeolum looseri \N \N \N \N \N 24739 C.subquadrata Chaubardiella Chaubardiella subquadrata \N \N \N \N \N 24740 G.montanum Geum Geum montanum \N \N \N \N \N 24741 P.aryter Pabstiella Pabstiella aryter \N \N \N \N \N 24742 \N subspecies Matthiola longipetala subsp. viridis \N \N \N \N \N 24743 A.jamesoniana Aphanactis Aphanactis jamesoniana \N \N \N \N \N 24744 M.sophronitis Maxillaria Maxillaria sophronitis \N \N \N \N \N 24745 A.henoniana Anthyllis Anthyllis henoniana \N \N \N \N \N 24746 C.lanceolata Cassipourea Cassipourea lanceolata \N \N \N \N \N 24747 P.stuemeri Parodia Parodia stuemeri \N \N \N \N \N 24748 C.multiflora Coelogyne Coelogyne multiflora \N \N \N \N \N 24749 C.sample environmental samples Taxonomy:1008277 Clarkia environmental sample \N \N \N \N \N 24750 S.gabriellae Schefflera Schefflera gabriellae \N \N \N \N \N 24751 D.mexicana Dirca Dirca mexicana \N \N \N \N \N 24752 \N subspecies Cyanea pilosa subsp. longipedunculata \N \N \N \N \N 24753 C.capense Calodendrum Calodendrum capense \N \N \N \N \N 24754 A.rhombifolius Ancylostemon Ancylostemon rhombifolius \N \N \N \N \N 24755 G.linearis Gazania Gazania linearis \N \N \N \N \N 24756 \N genus Peganum \N \N \N \N \N 24757 S.chrysocephalum Syncalathium Syncalathium chrysocephalum \N \N \N \N \N 24758 G.teucrioides Gonocarpus Gonocarpus teucrioides \N \N \N \N \N 24759 \N tribe Jacarandeae \N \N \N \N \N 24760 \N varietas Actinidia callosa var. strigillosa \N \N \N \N \N 24761 \N genus Leucosceptrum \N \N \N \N \N 24762 B.missouriensis Boechera Boechera missouriensis \N \N \N \N \N 24763 S.lebrunii Smilax Smilax lebrunii \N \N \N \N \N 24764 T.laxa Tittmannia Tittmannia laxa \N \N \N \N \N 24765 A.erubescens Artorima Artorima erubescens \N \N \N \N \N 24766 A.palustris Adenophora Adenophora palustris \N \N \N \N \N 24767 S.diandrus Sporobolus Sporobolus diandrus \N \N \N \N \N 24768 B.spectabilis Barbacenia Barbacenia spectabilis \N \N \N \N \N 24769 C.cyananthiflorum Comastoma Comastoma cyananthiflorum \N \N \N \N \N 24770 L.depressa Libanotis Libanotis depressa \N \N \N \N \N 24771 P.armena Pastinaca Pastinaca armena \N \N \N \N \N 24772 S.smallii Smilax Smilax smallii lanceleaf greenbrier \N \N \N \N 24773 B.chilensis Barneoudia Barneoudia chilensis \N \N \N \N \N 24774 \N genus Bartholomaea \N \N \N \N \N 24775 \N varietas Dombeya elegans var. elegans \N \N \N \N \N 24776 A.boudyi Adenocarpus Adenocarpus boudyi \N \N \N \N \N 24777 P.brasiliensis Paederia Paederia brasiliensis \N \N \N \N \N 24778 M.aspera Mulguraea Mulguraea aspera \N \N \N \N \N 24779 T.microphylla Tricalysia Tricalysia microphylla \N \N \N \N \N 24780 F.karelinii Ferula Ferula karelinii \N \N \N \N \N 24781 D.cannabina Datisca Datisca cannabina \N \N \N \N \N 24782 \N varietas Veronica missurica var. major \N \N \N \N \N 24783 C.varians Cliffortia Cliffortia varians \N \N \N \N \N 24784 \N genus Parodia \N \N \N \N \N 24785 S.bancroftii Symonanthus Symonanthus bancroftii \N \N \N \N \N 24786 E.viereckii Echinocereus Echinocereus viereckii \N \N \N \N \N 24787 Z.minima Zostera Zostera minima \N \N \N \N \N 24788 H.finlaysonii Hoya Hoya finlaysonii \N \N \N \N \N 24789 P.davidii Pseudopanax Pseudopanax davidii \N \N \N \N \N 24790 \N subspecies Kniphofia tysonii subsp. tysonii \N \N \N \N \N 24791 P.ptychosperma Parakeelya Parakeelya ptychosperma \N \N \N \N \N 24792 C.juniperorum Carex Carex juniperorum \N \N \N \N \N 24793 T.hirsutiflora Tradescantia Tradescantia hirsutiflora \N \N \N \N \N 24794 R.virgata Raspalia Raspalia virgata \N \N \N \N \N 24795 B.zenkeri Brachystegia Brachystegia zenkeri \N \N \N \N \N 24796 \N genus Euchaetis \N \N \N \N \N 24797 \N genus Ptychosperma \N \N \N \N \N 24798 \N tribe Ventilageae \N \N \N \N \N 24799 O.nana Oenothera Oenothera nana \N \N \N \N \N 24800 C.verruculosus Cotoneaster Cotoneaster verruculosus \N \N \N \N \N 24801 C.saxosa Claytonia Claytonia saxosa \N \N \N \N \N 24802 C.peltata Corymbia Corymbia peltata \N \N \N \N \N 24803 C.taylori Cadetia Cadetia taylori \N \N \N \N \N 24804 A.insulare Apium Apium insulare \N \N \N \N \N 24805 W.tetraptera Wiborgia Wiborgia tetraptera \N \N \N \N \N 24806 A.poliophyllum Acer Acer poliophyllum \N \N \N \N \N 24807 C.carnosifolius Coleus Coleus carnosifolius \N \N \N \N \N 24808 M.atwoodiana Maxillaria Maxillaria atwoodiana \N \N \N \N \N 24809 B.alyxifolia Benthamina Benthamina alyxifolia \N \N \N \N \N 24810 R.pygmaea Rhynchostele Rhynchostele pygmaea \N \N \N \N \N 24811 T.amphitricha Tzeltalia Tzeltalia amphitricha \N \N \N \N \N 24812 H.urenifolia Hofmeisteria Hofmeisteria urenifolia \N \N \N \N \N 24813 M.brevituba Moraea Moraea brevituba \N \N \N \N \N 24814 P.thessala Poa Poa thessala \N \N \N \N \N 24815 H.baruensis Helicteres Helicteres baruensis \N \N \N \N \N 24816 H.merriamii Heuchera Heuchera merriamii Merriam's alumroot \N \N \N \N 24817 L.hexandra Leersia Leersia hexandra \N \N \N \N \N 24818 L.imberbis Lyginia Lyginia imberbis \N \N \N \N \N 24819 \N varietas Tordylium aegyptiacum var. palaestinum \N \N \N \N \N 24820 G.schickendantzii Gymnocalycium Gymnocalycium schickendantzii \N \N \N \N \N 24821 \N tribe Aglaonemateae \N \N \N \N \N 24822 E.callithyrsum Echium Echium callithyrsum \N \N \N \N \N 24823 L.anceps Lachnocaulon Lachnocaulon anceps whitehead bogbutton \N \N \N \N 24824 C.montana Carex Carex montana \N \N \N \N \N 24825 I.oxyanthera Impatiens Impatiens oxyanthera \N \N \N \N \N 24826 \N subspecies Desmodium heterocarpon subsp. heterocarpon \N \N \N \N \N 24827 P.galbana Passiflora Passiflora galbana \N \N \N \N \N 24828 T.stroterocarpus Tragopogon Tragopogon stroterocarpus \N \N \N \N \N 24829 A.cangaiensis Acacia Acacia cangaiensis \N \N \N \N \N 24830 C.leleanii Calophyllum Calophyllum leleanii \N \N \N \N \N 24831 H.eucharidifolia Hymenocallis Hymenocallis eucharidifolia \N \N \N \N \N 24832 P.752 Peponidium Peponidium sp. Pettersson & Nilsson 752 \N \N \N \N \N 24833 A.cdK6 Adenophora Adenophora sp. cdK6 \N \N \N \N \N 24834 L.giganteum Laccopetalum Laccopetalum giganteum \N \N \N \N \N 24835 G.auriculata Gentianella Gentianella auriculata \N \N \N \N \N 24836 H.myricifolia Hubertia Hubertia myricifolia \N \N \N \N \N 24837 M.contorta Moraea Moraea contorta \N \N \N \N \N 24838 \N genus Myrcia \N \N \N \N \N 24839 P.glaucophylla Potentilla Potentilla glaucophylla \N \N \N \N \N 24840 R.evenia Robinsonia Robinsonia evenia \N \N \N \N \N 24841 \N genus Cremastosperma \N \N \N \N \N 24842 T.rubella Tamamschjanella Tamamschjanella rubella \N \N \N \N \N 24843 C.stricta Cordyline Cordyline cf. stricta \N \N \N \N \N 24844 \N varietas Begonia umbraculifolia var. flocculosa \N \N \N \N \N 24845 L.graebneri Lonicera Lonicera graebneri \N \N \N \N \N 24846 \N genus Atuna \N \N \N \N \N 24847 D.tepperi Dodonaea Dodonaea tepperi \N \N \N \N \N 24848 \N family Staphyleaceae \N \N \N \N \N 24849 B.riparius Bromus Bromus riparius meadow brome \N \N \N \N 24850 \N subspecies Halosarcia halocnemoides subsp. tenuis \N \N \N \N \N 24851 I.bracteata Iris Iris bracteata \N \N \N \N \N 24852 \N varietas Astilbe rivularis var. myriantha \N \N \N \N \N 24853 L.crenulata Luzula Luzula crenulata \N \N \N \N \N 24854 O.EE850 Oxalis Oxalis aff. peduncularis EE850 \N \N \N \N \N 24855 V.violacea Viola Viola violacea \N \N \N \N \N 24856 S.pellita Stipa Stipa pellita \N \N \N \N \N 24857 I.chinensis Ixonanthes Ixonanthes chinensis \N \N \N \N \N 24858 \N subspecies Euphorbia alluaudii subsp. alluaudii \N \N \N \N \N 24859 O.itremoensis Ormocarpopsis Ormocarpopsis itremoensis \N \N \N \N \N 24860 A.ombriosus Adenocarpus Adenocarpus ombriosus \N \N \N \N \N 24861 \N varietas Cliffortia ilicifolia var. cordifolia \N \N \N \N \N 24862 S.90-9173-3 Swietenia Swietenia sp. PG 90-9173-3 \N \N \N \N \N 24863 M.procurrens Maxillaria Maxillaria procurrens \N \N \N \N \N 24864 P.cheesemanii Pachycladon Pachycladon cheesemanii \N \N \N \N \N 24865 G.monostylis Guilfoylia Guilfoylia monostylis \N \N \N \N \N 24866 C.epiphyticus Cyclopogon Cyclopogon epiphyticus \N \N \N \N \N 24867 B.multiflora Burmeistera Burmeistera multiflora \N \N \N \N \N 24868 C.bifida Cortaderia Cortaderia bifida \N \N \N \N \N 24869 M.minimus Myosurus Myosurus minimus \N \N \N \N \N 24870 M.longicolumna Maxillaria Maxillaria longicolumna \N \N \N \N \N 24871 R.radicans Ranunculus Ranunculus radicans \N \N \N \N \N 24872 L.acunae Leucocroton Leucocroton acunae \N \N \N \N \N 24873 O.thracica Onosma Onosma thracica \N \N \N \N \N 24874 C.spencei Chusquea Chusquea spencei \N \N \N \N \N 24875 E.mexicana Elytraria Elytraria mexicana \N \N \N \N \N 24876 H.sibuyanensis Heterospathe Heterospathe sibuyanensis \N \N \N \N \N 24877 \N tribe Scirpeae \N \N \N \N \N 24878 C.pubescens Crataegus Crataegus pubescens \N \N \N \N \N 24879 \N genus Jateorhiza \N \N \N \N \N 24880 P.stricta Puccinellia Puccinellia stricta \N \N \N \N \N 24881 L.YDK2008447 Lolium Lolium sp. YDK2008447 \N \N \N \N \N 24882 K.thomsonii Kniphofia Kniphofia thomsonii \N \N \N \N \N 24883 T.densiflora Tachigali Tachigali densiflora \N \N \N \N \N 24884 \N subspecies Pachypodium rosulatum subsp. bemarahense \N \N \N \N \N 24885 C.tricarinata Calanthe Calanthe tricarinata \N \N \N \N \N 24886 \N genus Didiplis \N \N \N \N \N 24887 \N genus Ludekia \N \N \N \N \N 24888 C.florida Cornus Cornus florida flowering dogwood \N \N \N \N 24889 S.chapmanii Symphyotrichum Symphyotrichum chapmanii savanna aster \N \N \N \N 24890 F.squamosa Ficus Ficus squamosa \N \N \N \N \N 24891 \N genus Aurinia \N \N \N \N \N 24892 \N genus Parsonsia \N \N \N \N \N 24893 L.canescens Licania Licania canescens \N \N \N \N \N 24894 S.hookeri Saxifraga Saxifraga hookeri \N \N \N \N \N 24895 \N genus Anarrhinum \N \N \N \N \N 24896 L.laevigatum Limnobium Limnobium laevigatum \N \N \N \N \N 24897 P.glabrum Pilidiostigma Pilidiostigma glabrum \N \N \N \N \N 24898 N.kingii Nordenstamia Nordenstamia kingii \N \N \N \N \N 24899 S.s.n. Sarcoglottis Sarcoglottis sp. Szlachetko s.n. \N \N \N \N \N 24900 P.ternifolia Pilea Pilea ternifolia \N \N \N \N \N 24901 \N varietas Phacelia crenulata var. minutiflora \N \N \N \N \N 24902 S.johannis Streptocarpus Streptocarpus johannis \N \N \N \N \N 24903 E.seguinii Eriobotrya Eriobotrya seguinii \N \N \N \N \N 24904 \N genus Zimmermanniopsis \N \N \N \N \N 24905 C.tenellum Comastoma Comastoma tenellum \N \N \N \N \N 24906 L.fruticosa Lithodora Lithodora fruticosa \N \N \N \N \N 24907 \N genus Lapiedra \N \N \N \N \N 24908 M.linearifolia Malesherbia Malesherbia linearifolia \N \N \N \N \N 24909 \N subspecies Navarretia linearifolia subsp. linearifolia \N \N \N \N \N 24910 \N genus Dinemandra \N \N \N \N \N 24911 P.koumaciensis Planchonella Planchonella koumaciensis \N \N \N \N \N 24912 S.tuberosum Solanum Solanum berthaultii x Solanum tuberosum \N \N \N \N \N 24913 \N genus Dioscorea \N \N \N \N \N 24914 M.kerchoveana Maranta Maranta kerchoveana \N \N \N \N \N 24915 P.proliferum Pelargonium Pelargonium proliferum \N \N \N \N \N 24916 \N genus Piaranthus \N \N \N \N \N 24917 \N varietas Echinodorus palifolius var. latifolius \N \N \N \N \N 24918 S.hypnoides Saxifraga Saxifraga hypnoides \N \N \N \N \N 24919 P.platyantha Poa Poa platyantha \N \N \N \N \N 24920 P.mychophila Pedicularis Pedicularis mychophila \N \N \N \N \N 24921 C.uvitana Clusia Clusia uvitana \N \N \N \N \N 24922 \N genus Agonis \N \N \N \N \N 24923 \N genus Disanthus \N \N \N \N \N 24924 B.macrocarpa Bonellia Bonellia macrocarpa cudjoe-wood \N \N \N \N 24925 H.diversifolium Heterosperma Heterosperma diversifolium \N \N \N \N \N 24926 J.94042 Juncus Juncus sp. Qiu 94042 \N \N \N \N \N 24927 \N genus Hyospathe \N \N \N \N \N 24928 C.sieberiana Crassula Crassula sieberiana \N \N \N \N \N 24929 M.skinneriana Michelia Michelia skinneriana \N \N \N \N \N 24930 D.penduliflora Diplycosia Diplycosia penduliflora \N \N \N \N \N 24931 \N varietas Cristaria aspera var. formosula \N \N \N \N \N 24932 T.crenata Thamnosma Thamnosma crenata \N \N \N \N \N 24933 C.wrayi Cyathostemma Cyathostemma wrayi \N \N \N \N \N 24934 C.schimperi Cleome Cleome schimperi \N \N \N \N \N 24935 P.tremula Populus Populus tremula European aspen \N \N \N \N 24936 L.angustifolius Lysicarpus Lysicarpus angustifolius \N \N \N \N \N 24937 T.intermedium Thinopyrum Thinopyrum intermedium \N \N \N \N \N 24938 C.eriantha Coursetia Coursetia eriantha \N \N \N \N \N 24939 R.aulieatense Rhaponticum Rhaponticum aulieatense \N \N \N \N \N 24940 R.hosmariense Rhodanthemum Rhodanthemum hosmariense \N \N \N \N \N 24941 L.2008' Leptostylis Leptostylis sp. 'Munzinger & Swenson, 2008' \N \N \N \N \N 24942 C.divaricatum Croptilon Croptilon divaricatum \N \N \N \N \N 24943 R.sprengelioides Rupicola Rupicola sprengelioides \N \N \N \N \N 24944 A.diversifolia Actinodaphne Actinodaphne diversifolia \N \N \N \N \N 24945 \N genus Asterolinon \N \N \N \N \N 24946 V.sparsiflora Vicia Vicia sparsiflora \N \N \N \N \N 24947 \N tribe Cryosophileae \N \N \N \N \N 24948 P.adenophora Phacelia Phacelia adenophora \N \N \N \N \N 24949 X.papuanum Xanthophyllum Xanthophyllum papuanum \N \N \N \N \N 24950 D.megacarpa Dalechampia Dalechampia megacarpa \N \N \N \N \N 24951 T.plumosum Trifolium Trifolium plumosum \N \N \N \N \N 24952 M.MA26 Microtis Microtis aff. angusii MA26 \N \N \N \N \N 24953 A.990826-1/1 Acranthera Acranthera cf. siamensis Puff 990826-1/1 \N \N \N \N \N 24954 C.insaniae Carex Carex insaniae \N \N \N \N \N 24955 \N genus Muntingia \N \N \N \N \N 24956 \N genus Trevesia \N \N \N \N \N 24957 A.atropurpurea Arracacia Arracacia atropurpurea \N \N \N \N \N 24958 I.steinbachii Inga Inga steinbachii \N \N \N \N \N 24959 P.sylvestris Phoenix Phoenix sylvestris \N \N \N \N \N 24960 \N no rank Cranichideae incertae sedis \N \N \N \N \N 24961 P.alpinum Papaver Papaver alpinum Austrian poppy,alpine poppy \N \N \N \N 24962 \N genus Pernettya \N \N \N \N \N 24963 A.cyrenaicum Arum Arum cyrenaicum \N \N \N \N \N 24964 A.recurvata Aechmea Aechmea recurvata \N \N \N \N \N 24965 E.namuskluftensis Euphorbia Euphorbia namuskluftensis \N \N \N \N \N 24966 E.articulata Euphorbia Euphorbia articulata \N \N \N \N \N 24967 \N varietas Symphyotrichum subulatum var. subulatum \N \N \N \N \N 24968 S.carmeli Synelcosciadium Synelcosciadium carmeli \N \N \N \N \N 24969 D.trolliifolium Delphinium Delphinium trolliifolium cow poison \N \N \N \N 24970 A.pistolochia Aristolochia Aristolochia pistolochia \N \N \N \N \N 24971 B.odorata Begonia Begonia odorata \N \N \N \N \N 24972 M.ligustrina Monnina Monnina ligustrina \N \N \N \N \N 24973 M.rubella Minuartia Minuartia rubella \N \N \N \N \N 24974 M.quercifolia Morella Morella quercifolia \N \N \N \N \N 24975 B.ammannioides Bergia Bergia ammannioides \N \N \N \N \N 24976 I.asarifolia Ipomoea Ipomoea asarifolia \N \N \N \N \N 24977 D.andamanica Diospyros Diospyros andamanica \N \N \N \N \N 24978 S.Sokoloff Salicornia Salicornia sp. Remizowa & Sokoloff \N \N \N \N \N 24979 A.chitralicum Allium Allium chitralicum \N \N \N \N \N 24980 I.polyanthus Ichnocarpus Ichnocarpus polyanthus \N \N \N \N \N 24981 V.orcuttii Villasenoria Villasenoria orcuttii \N \N \N \N \N 24982 \N genus Sinadoxa \N \N \N \N \N 24983 E.sessiliflorus Eleutherococcus Eleutherococcus sessiliflorus \N \N \N \N \N 24984 F.destruens Ficus Ficus destruens \N \N \N \N \N 24985 A.stelleriana Artemisia Artemisia stelleriana oldwoman \N \N \N \N 24986 A.bodinieri Ampelopsis Ampelopsis bodinieri \N \N \N \N \N 24987 \N subspecies Phlox hoodii subsp. hoodii \N \N \N \N \N 24988 M.fergusoniae Moraea Moraea fergusoniae \N \N \N \N \N 24989 L.laevigatum Leptospermum Leptospermum laevigatum Australian myrtle,coast teatree \N \N \N \N 24990 G.drakeana Gaertnera Gaertnera drakeana \N \N \N \N \N 24991 \N genus Loudetiopsis \N \N \N \N \N 24992 \N family Oncothecaceae \N \N \N \N \N 24993 E.glanduligera Euphorbia Euphorbia glanduligera \N \N \N \N \N 24994 B.grandis Banksia Banksia grandis \N \N \N \N \N 24995 C.crinitum Calligonum Calligonum crinitum \N \N \N \N \N 24996 C.capitellata Clidemia Clidemia capitellata \N \N \N \N \N 24997 \N genus Stictocardia \N \N \N \N \N 24998 L.montanum Leucocrinum Leucocrinum montanum \N \N \N \N \N 24999 \N genus Dampiera \N \N \N \N \N 25000 T.pinetorum Trifolium Trifolium pinetorum \N \N \N \N \N 25001 D.hispidum Drosanthemum Drosanthemum hispidum \N \N \N \N \N 25002 E.arabicum Echiochilon Echiochilon arabicum \N \N \N \N \N 25003 B.kingiana Begonia Begonia kingiana \N \N \N \N \N 25004 C.terminalis Coriaria Coriaria terminalis \N \N \N \N \N 25005 L.quinquelobatus Leonurus Leonurus quinquelobatus \N \N \N \N \N 25006 V.trilobata Vigna Vigna trilobata \N \N \N \N \N 25007 V.ichangense Viburnum Viburnum ichangense \N \N \N \N \N 25008 G.miniatus Gladiolus Gladiolus miniatus \N \N \N \N \N 25009 H.leve Helictotrichon Helictotrichon leve \N \N \N \N \N 25010 \N genus Herbertia \N \N \N \N \N 25011 N.cladotricha Newcastelia Newcastelia cladotricha \N \N \N \N \N 25012 P.verticillata Platytheca Platytheca verticillata \N \N \N \N \N 25013 T.corymbosum Tanacetum Tanacetum corymbosum \N \N \N \N \N 25014 G.bipinnatifida Grevillea Grevillea bipinnatifida \N \N \N \N \N 25015 S.12609 Schefflera Schefflera aff. jahnii Neill 12609 \N \N \N \N \N 25016 P.oblongicarpa Pyrenaria Pyrenaria oblongicarpa \N \N \N \N \N 25017 O.granulata Oryza Oryza granulata \N \N \N \N \N 25018 D.exasperatum Dendrochilum Dendrochilum exasperatum \N \N \N \N \N 25019 M.moschatus Mimulus Mimulus moschatus muskflower \N \N \N \N 25020 P.breviconnatum Pachyphyllum Pachyphyllum breviconnatum \N \N \N \N \N 25021 E.sibirica Eurybia Eurybia sibirica arctic aster \N \N \N \N 25022 W.gracilis Wallichia Wallichia gracilis \N \N \N \N \N 25023 X.chlorantha Xylosma Xylosma chlorantha \N \N \N \N \N 25024 A.lehmanniana Allocasuarina Allocasuarina lehmanniana \N \N \N \N \N 25025 G.rupestre Geniostoma Geniostoma rupestre \N \N \N \N \N 25026 M.deflexa Myrcia Myrcia deflexa \N \N \N \N \N 25027 C.comosus Cyclopogon Cyclopogon comosus \N \N \N \N \N 25028 M.hypolampra Michelia Michelia hypolampra \N \N \N \N \N 25029 \N genus Sparattanthelium \N \N \N \N \N 25030 P.thomsonii Piper Piper thomsonii \N \N \N \N \N 25031 N.elegans Nymphaea Nymphaea elegans \N \N \N \N \N 25032 T.biflora Tillandsia Tillandsia biflora \N \N \N \N \N 25033 \N genus Hunteria \N \N \N \N \N 25034 S.richardii Solanum Solanum richardii \N \N \N \N \N 25035 A.difformis Anchomanes Anchomanes difformis \N \N \N \N \N 25036 C.pulchra Coreopsis Coreopsis pulchra \N \N \N \N \N 25037 B.vulgaris Berberis Berberis integerrima x Berberis vulgaris \N \N \N \N \N 25038 C.scariosa Cousinia Cousinia scariosa \N \N \N \N \N 25039 W.inusta Wurmbea Wurmbea inusta \N \N \N \N \N 25040 A.hirtella Aspicarpa Aspicarpa hirtella \N \N \N \N \N 25041 P.heteranthera Pera Pera heteranthera \N \N \N \N \N 25042 L.muscoides Lasiopogon Lasiopogon muscoides \N \N \N \N \N 25043 P.serpentina Pyrostria Pyrostria serpentina \N \N \N \N \N 25044 T.chinensis Thermopsis Thermopsis chinensis \N \N \N \N \N 25045 T.dasyphyllum Trifolium Trifolium dasyphyllum \N \N \N \N \N 25046 H.glaucus Halothamnus Halothamnus glaucus \N \N \N \N \N 25047 D.intermedia Diplopeltis Diplopeltis intermedia \N \N \N \N \N 25048 V.stenophyllum Veratrum Veratrum stenophyllum \N \N \N \N \N 25049 \N genus Pleurostachys \N \N \N \N \N 25050 \N genus Ruagea \N \N \N \N \N 25051 I.polpha Ipomoea Ipomoea polpha \N \N \N \N \N 25052 C.minimus Crocus Crocus minimus \N \N \N \N \N 25053 \N genus Oldfieldia \N \N \N \N \N 25054 B.oreophila Banksia Banksia oreophila \N \N \N \N \N 25055 A.ludoviciana Artemisia Artemisia ludoviciana silver wormwood \N \N \N \N 25056 S.macrophyllum Spongiosperma Spongiosperma macrophyllum \N \N \N \N \N 25057 G.RCG-2004 Geranium Geranium aff. homeanum RCG-2004 \N \N \N \N \N 25058 F.rubra Festuca Festuca rubra \N \N \N \N \N 25059 A.corrudifolia Aspalathus Aspalathus corrudifolia \N \N \N \N \N 25060 \N subspecies Ulmus minor subsp. canescens \N \N \N \N \N 25061 S.solenanthus Streptocarpus Streptocarpus solenanthus \N \N \N \N \N 25062 \N genus Colophospermum \N \N \N \N \N 25063 H.siamensis Hymenopyramis Hymenopyramis siamensis \N \N \N \N \N 25064 K.buchananii Kniphofia Kniphofia buchananii \N \N \N \N \N 25065 S.strictissimum Sisymbrium Sisymbrium strictissimum \N \N \N \N \N 25066 B.minutum Bellium Bellium minutum \N \N \N \N \N 25067 H.bapo Holcoglossum Holcoglossum sp. bapo \N \N \N \N \N 25068 A.MG-2009c Allium Allium sp. MG-2009c \N \N \N \N \N 25069 C.grandifolia Chrysochlamys Chrysochlamys grandifolia \N \N \N \N \N 25070 S.basiplumosa Stipa Stipa basiplumosa \N \N \N \N \N 25071 C.horrescens Cousinia Cousinia horrescens \N \N \N \N \N 25072 S.quitensis Symplocos Symplocos quitensis \N \N \N \N \N 25073 S.tuberosum Solanum Solanum chacoense x Solanum tuberosum \N \N \N \N \N 25074 C.willmottiae Corylopsis Corylopsis willmottiae \N \N \N \N \N 25075 M.scleroxylon Machaerium Machaerium scleroxylon \N \N \N \N \N 25076 \N genus Lepidobotrys \N \N \N \N \N 25077 S.bifida Spiradiclis Spiradiclis bifida \N \N \N \N \N 25078 P.cristatum Pleurospermum Pleurospermum cristatum \N \N \N \N \N 25079 \N forma Fimbristylis dichotoma f. floribunda \N \N \N \N \N 25080 D.calophylla Dolomiaea Dolomiaea calophylla \N \N \N \N \N 25081 G.singularis Gnidia Gnidia singularis \N \N \N \N \N 25082 P.urticifolia Pycnostachys Pycnostachys urticifolia \N \N \N \N \N 25083 T.disticha Tritonia Tritonia disticha \N \N \N \N \N 25084 C.nadeandii Coprosma Coprosma nadeandii \N \N \N \N \N 25085 E.scaber Elymus Elymus scaber \N \N \N \N \N 25086 P.scapoides Penstemon Penstemon scapoides \N \N \N \N \N 25087 B.denticulata Bursera Bursera denticulata \N \N \N \N \N 25088 R.odoratum Ribes Ribes odoratum clove currant \N \N \N \N 25089 C.liberica Culcasia Culcasia liberica \N \N \N \N \N 25090 P.findens Philodendron Philodendron findens \N \N \N \N \N 25091 \N genus Malacocera \N \N \N \N \N 25092 V.philippinensis Viticipremna Viticipremna philippinensis \N \N \N \N \N 25093 A.yunnanensis Aquilaria Aquilaria yunnanensis \N \N \N \N \N 25094 \N genus Salpiglossis \N \N \N \N \N 25095 P.liukiuensis Phyllanthus Phyllanthus liukiuensis \N \N \N \N \N 25096 Z.subulatum Zeylanidium Zeylanidium subulatum \N \N \N \N \N 25097 W.matthewsii Wahlenbergia Wahlenbergia matthewsii \N \N \N \N \N 25098 S.foetens Saprosma Saprosma foetens \N \N \N \N \N 25099 B.pileatum Bulbophyllum Bulbophyllum pileatum \N \N \N \N \N 25100 S.cassiniana Schoenia Schoenia cassiniana \N \N \N \N \N 25101 T.andersoniana Tradescantia Tradescantia x andersoniana \N \N \N \N \N 25102 B.dolichorhiza Barbosella Barbosella dolichorhiza \N \N \N \N \N 25103 B.superba Bonyunia Bonyunia superba \N \N \N \N \N 25104 L.helianthoides Lasianthaea Lasianthaea helianthoides \N \N \N \N \N 25105 D.pauciflorum Desmodium Desmodium pauciflorum \N \N \N \N \N 25106 L.longibracteata Lachenalia Lachenalia longibracteata \N \N \N \N \N 25107 R.chius Ranunculus Ranunculus chius \N \N \N \N \N 25108 G.chinense Gymnopetalum Gymnopetalum chinense \N \N \N \N \N 25109 \N genus Retiniphyllum \N \N \N \N \N 25110 C.curiosus Croton Croton curiosus \N \N \N \N \N 25111 I.leptorrhiza Iris Iris leptorrhiza \N \N \N \N \N 25112 C.adusta Carex Carex adusta \N \N \N \N \N 25113 L.plazzae Lavatera Lavatera plazzae \N \N \N \N \N 25114 \N genus Beclardia \N \N \N \N \N 25115 R.squarrosum Rhigiophyllum Rhigiophyllum squarrosum \N \N \N \N \N 25116 E.palmeri Encelia Encelia palmeri \N \N \N \N \N 25117 \N varietas Labisia pothoina var. lanceolata \N \N \N \N \N 25118 L.broussonetii Lotus Lotus broussonetii \N \N \N \N \N 25119 A.eichleri Amorphophallus Amorphophallus eichleri \N \N \N \N \N 25120 E.subverticillatum Exacum Exacum subverticillatum \N \N \N \N \N 25121 E.suaveolens Emorya Emorya suaveolens \N \N \N \N \N 25122 T.quadrialata Tococa Tococa quadrialata \N \N \N \N \N 25123 A.rectirama Austrosynotis Austrosynotis rectirama \N \N \N \N \N 25124 S.radiata Semenovia Semenovia radiata \N \N \N \N \N 25125 C.amoenum Cinnamomum Cinnamomum amoenum \N \N \N \N \N 25126 \N genus Ooia \N \N \N \N \N 25127 S.dorrii Salvia Salvia dorrii \N \N \N \N \N 25128 M.tanarius Macaranga Macaranga tanarius \N \N \N \N \N 25129 C.erythrochloirum Chamelaucium Chamelaucium erythrochloirum \N \N \N \N \N 25130 S.bupleuroides Sventenia Sventenia bupleuroides \N \N \N \N \N 25131 D.palustris Diuris Diuris palustris \N \N \N \N \N 25132 \N genus Mukdenia \N \N \N \N \N 25133 H.ericii Henckelia Henckelia ericii \N \N \N \N \N 25134 B.denticulata Boronia Boronia denticulata \N \N \N \N \N 25135 \N subspecies Acer opalus subsp. opalus \N \N \N \N \N 25136 S.paradoxa Silene Silene paradoxa \N \N \N \N \N 25137 C.rossii Carex Carex rossii \N \N \N \N \N 25138 \N genus Trichilia \N \N \N \N \N 25139 Z.texana Zizania Zizania texana Texas wild rice \N \N \N \N 25140 A.1075 Arctotis Arctotis sp. 4 McKenzie 1075 \N \N \N \N \N 25141 B.porteri Bromus Bromus porteri \N \N \N \N \N 25142 Z.atacamensis Zameioscirpus Zameioscirpus atacamensis \N \N \N \N \N 25143 A.573 Antirhea Antirhea sp. BG 573 \N \N \N \N \N 25144 A.longicarpa Arenga Arenga longicarpa \N \N \N \N \N 25145 H.nutans Honorius Honorius nutans \N \N \N \N \N 25146 A.indica Anisomeles Anisomeles indica \N \N \N \N \N 25147 L.1419 Lysipomia Lysipomia sp. nov. 1419 \N \N \N \N \N 25148 A.'dentata' Amelanchier Amelanchier sp. 'dentata' \N \N \N \N \N 25149 C.solandri Carex Carex solandri \N \N \N \N \N 25150 T.gemmata Trisetella Trisetella gemmata \N \N \N \N \N 25151 A.subincanum Adenocalymma Adenocalymma subincanum \N \N \N \N \N 25152 W.gladiata Wolffiella Wolffiella gladiata \N \N \N \N \N 25153 I.bururiensis Impatiens Impatiens bururiensis \N \N \N \N \N 25154 \N genus Zosima \N \N \N \N \N 25155 C.tangerina Citrus Citrus clementina x Citrus tangerina \N \N \N \N \N 25156 C.linariifolia Castilleja Castilleja linariifolia \N \N \N \N \N 25157 P.incana Pineda Pineda incana \N \N \N \N \N 25158 H.SJW-2009 Hoheria Hoheria aff. sexstylosa SJW-2009 \N \N \N \N \N 25159 C.compacta Crataegus Crataegus compacta \N \N \N \N \N 25160 B.cornifolia Bronwenia Bronwenia cornifolia \N \N \N \N \N 25161 P.radiatum Philodendron Philodendron radiatum \N \N \N \N \N 25162 S.minutiflora Scrophularia Scrophularia minutiflora \N \N \N \N \N 25163 A.moluccana Aleurites Aleurites moluccana \N \N \N \N \N 25164 O.pygmaea Onosma Onosma pygmaea \N \N \N \N \N 25165 L.L27 Liparis Liparis sp. L27 \N \N \N \N \N 25166 P.strigosa Phlomis Phlomis strigosa \N \N \N \N \N 25167 C.racemosa Colvillea Colvillea racemosa \N \N \N \N \N 25168 C.hartmannianus Crocus Crocus hartmannianus \N \N \N \N \N 25169 H.aegypticum Hypericum Hypericum aegypticum \N \N \N \N \N 25170 L.kanaitzensis Ligularia Ligularia kanaitzensis \N \N \N \N \N 25171 S.cordatum Solanum Solanum cordatum \N \N \N \N \N 25172 T.pluriflora Trichloris Trichloris pluriflora \N \N \N \N \N 25173 \N genus Anisacanthus \N \N \N \N \N 25174 A.ellipticus Austrobuxus Austrobuxus ellipticus \N \N \N \N \N 25175 C.wattii Cyclea Cyclea wattii \N \N \N \N \N 25176 B.lanternaria Begonia Begonia lanternaria \N \N \N \N \N 25177 A.aurantiaca Ada Ada aurantiaca \N \N \N \N \N 25178 O.sintenisii Orobanche Orobanche sintenisii \N \N \N \N \N 25179 H.tranquillans Hibanobambusa Hibanobambusa tranquillans \N \N \N \N \N 25180 S.triphylla Sopubia Sopubia triphylla \N \N \N \N \N 25181 A.triactina Aristolochia Aristolochia triactina \N \N \N \N \N 25182 B.lomariifolia Berberis Berberis lomariifolia \N \N \N \N \N 25183 S.austrosinensis Symplocos Symplocos austrosinensis \N \N \N \N \N 25184 \N genus Larsenianthus \N \N \N \N \N 25185 B.fruticulosum Blyttia Blyttia fruticulosum \N \N \N \N \N 25186 P.leucocarpa Pleurostylia Pleurostylia leucocarpa \N \N \N \N \N 25187 P.emodi Paeonia Paeonia emodi \N \N \N \N \N 25188 \N genus Cleisostoma \N \N \N \N \N 25189 \N genus Steudnera \N \N \N \N \N 25190 R.h409 Rhadamanthus Rhadamanthus sp. h409 \N \N \N \N \N 25191 M.rusbyi Mentzelia Mentzelia rusbyi \N \N \N \N \N 25192 C.chantaburiense Cleisostoma Cleisostoma chantaburiense \N \N \N \N \N 25193 C.ligustrinum Cratoxylum Cratoxylum ligustrinum \N \N \N \N \N 25194 O.polyphylla Oxalis Oxalis polyphylla \N \N \N \N \N 25195 A.concinnatum Arum Arum concinnatum \N \N \N \N \N 25196 \N varietas Swartzia myrtifolia var. elegans \N \N \N \N \N 25197 G.brephogea Gunnera Gunnera brephogea \N \N \N \N \N 25198 P.palmeri Poliomintha Poliomintha palmeri \N \N \N \N \N 25199 P.longepilosum Piper Piper longepilosum \N \N \N \N \N 25200 V.15983 Viola Viola sp. 15983 \N \N \N \N \N 25201 R.macronemia Remijia Remijia macronemia \N \N \N \N \N 25202 L.tenuissimum Ligusticum Ligusticum tenuissimum \N \N \N \N \N 25203 P.rotundifolia Prostanthera Prostanthera rotundifolia round-leaf mintbush \N \N \N \N 25204 A.variegata Asclepias Asclepias variegata \N \N \N \N \N 25205 M.salsugineum Myriophyllum Myriophyllum salsugineum \N \N \N \N \N 25206 S.grandiflora Stauranthera Stauranthera grandiflora \N \N \N \N \N 25207 P.lineata Puya Puya lineata \N \N \N \N \N 25208 T.2703 Telipogon Telipogon sp. Whitten 2703 \N \N \N \N \N 25209 P.inversum Pterygodium Pterygodium inversum \N \N \N \N \N 25210 I.nectarifera Iris Iris nectarifera \N \N \N \N \N 25211 C.immitantiformis Cousinia Cousinia immitantiformis \N \N \N \N \N 25212 \N subtribe Centrapalinae \N \N \N \N \N 25213 E.dodonaei Epilobium Epilobium dodonaei \N \N \N \N \N 25214 C.andringitrensis Carex Carex andringitrensis \N \N \N \N \N 25215 H.effusa Hedyotis Hedyotis effusa \N \N \N \N \N 25216 \N genus Amperea \N \N \N \N \N 25217 P.uzungolensis Primula Primula x uzungolensis \N \N \N \N \N 25218 P.neglectus Pachyanthus Pachyanthus neglectus \N \N \N \N \N 25219 K.recurva Kunzea Kunzea recurva \N \N \N \N \N 25220 A.floribunda Anaxagorea Anaxagorea floribunda \N \N \N \N \N 25221 M.polonii Mirabilis Mirabilis polonii \N \N \N \N \N 25222 T.graminea Tropidia Tropidia graminea \N \N \N \N \N 25223 \N genus Septulina \N \N \N \N \N 25224 \N genus Tephroseris \N \N \N \N \N 25225 C.bellidifolia Cardamine Cardamine bellidifolia alpine bittercress \N \N \N \N 25226 S.pumos Sabal Sabal pumos \N \N \N \N \N 25227 \N genus Ramosmania \N \N \N \N \N 25228 C.littorale Canarium Canarium littorale \N \N \N \N \N 25229 M.quadrivalvis Mitrasacmopsis Mitrasacmopsis quadrivalvis \N \N \N \N \N 25230 I.macrosiphon Ipomopsis Ipomopsis macrosiphon \N \N \N \N \N 25231 S.coulteri Syringantha Syringantha coulteri \N \N \N \N \N 25232 \N genus Chamelaucium \N \N \N \N \N 25233 K.erecta Krameria Krameria erecta \N \N \N \N \N 25234 P.griffinii Penstemon Penstemon griffinii \N \N \N \N \N 25235 G.hugonis Geonoma Geonoma hugonis \N \N \N \N \N 25236 S.hirtzii Sobralia Sobralia hirtzii \N \N \N \N \N 25237 F.edulis Fargesia Fargesia edulis \N \N \N \N \N 25238 M.gnidioides Melaleuca Melaleuca gnidioides \N \N \N \N \N 25239 \N varietas Cissampelos pareira var. hirsuta \N \N \N \N \N 25240 C.parviflora Carex Carex parviflora \N \N \N \N \N 25241 \N subspecies Jasione crispa subsp. crispa \N \N \N \N \N 25242 \N genus Fissicalyx \N \N \N \N \N 25243 A.treculianus Artocarpus Artocarpus treculianus \N \N \N \N \N 25244 M.dalstroemii Macroclinium Macroclinium dalstroemii \N \N \N \N \N 25245 L.tameiameiae Leptecophylla Leptecophylla tameiameiae \N \N \N \N \N 25246 \N genus Alternanthera \N \N \N \N \N 25247 R.lepidotum Rhododendron Rhododendron lepidotum \N \N \N \N \N 25248 E.kuroguwai Eleocharis Eleocharis kuroguwai \N \N \N \N \N 25249 E.lathyris Euphorbia Euphorbia lathyris \N \N \N \N \N 25250 A.aquatilis Alloplectus Alloplectus aquatilis \N \N \N \N \N 25251 C.straminiformis Carex Carex straminiformis \N \N \N \N \N 25252 P.elliptica Photinia Photinia elliptica \N \N \N \N \N 25253 K.zanzibarica Keetia Keetia zanzibarica \N \N \N \N \N 25254 C.griffithii Chrysosplenium Chrysosplenium griffithii \N \N \N \N \N 25255 \N genus Phytolacca \N \N \N \N \N 25256 T.urticifolia Tragia Tragia urticifolia noseburn \N \N \N \N 25257 A.420303 Aeschynomene Aeschynomene sp. PI 420303 \N \N \N \N \N 25258 B.collinsii Boechera Boechera collinsii \N \N \N \N \N 25259 \N subspecies Pastinaca sativa subsp. urens \N \N \N \N \N 25260 S.subpubescens Stevia Stevia subpubescens \N \N \N \N \N 25261 C.excelsum Cyathostemma Cyathostemma excelsum \N \N \N \N \N 25262 \N subspecies Polanisia dodecandra subsp. trachysperma \N \N \N \N \N 25263 S.alopecuroides Sophora Sophora alopecuroides \N \N \N \N \N 25264 P.hexandra Psychotria Psychotria hexandra \N \N \N \N \N 25265 P.brachyantha Psychotria Psychotria brachyantha \N \N \N \N \N 25266 R.dissectum Rhodosciadium Rhodosciadium dissectum \N \N \N \N \N 25267 P.tomentosa Plantago Plantago tomentosa \N \N \N \N \N 25268 A.axillaris Androsace Androsace axillaris \N \N \N \N \N 25269 O.tsaratananae Ochrocarpos Ochrocarpos tsaratananae \N \N \N \N \N 25270 A.rimosa Aglaia Aglaia rimosa \N \N \N \N \N 25271 E.gilmanii Ericameria Ericameria gilmanii \N \N \N \N \N 25272 O.tortuosa Oxalis Oxalis tortuosa \N \N \N \N \N 25273 P.leptophylla Physostegia Physostegia leptophylla \N \N \N \N \N 25274 P.palmeri Passiflora Passiflora foetida x Passiflora palmeri \N \N \N \N \N 25275 \N genus Libidibia \N \N \N \N \N 25276 H.kendack Halfordia Halfordia kendack \N \N \N \N \N 25277 A.pyrenaica Androsace Androsace pyrenaica \N \N \N \N \N 25278 I.scoparius Isodon Isodon scoparius \N \N \N \N \N 25279 C.lacryma-jobi Coix Coix lacryma-jobi Job's tears \N \N \N \N 25280 \N genus Plectrocarpa \N \N \N \N \N 25281 G.perpensa Gunnera Gunnera perpensa \N \N \N \N \N 25282 M.henriquesii Momordica Momordica henriquesii \N \N \N \N \N 25283 R.pumila Rostraria Rostraria pumila \N \N \N \N \N 25284 C.SS-83 Catalpa Catalpa sp. SS-83 \N \N \N \N \N 25285 C.sprengelii Carex Carex sprengelii \N \N \N \N \N 25286 H.WO2008062049 Helianthus Helianthus sp. WO2008062049 \N \N \N \N \N 25287 I.lupatana Indigofera Indigofera lupatana \N \N \N \N \N 25288 Z.furfuracea Zieria Zieria furfuracea \N \N \N \N \N 25289 L.acuminatum Ligusticum Ligusticum acuminatum \N \N \N \N \N 25290 P.desertorum Picrothamnus Picrothamnus desertorum \N \N \N \N \N 25291 H.humifusa Houstonia Houstonia humifusa matted bluet \N \N \N \N 25292 A.longespica Aristida Aristida longespica \N \N \N \N \N 25293 G.dissecta Glandularia Glandularia dissecta \N \N \N \N \N 25294 A.hantamense Androcymbium Androcymbium hantamense \N \N \N \N \N 25295 \N genus Petunia petunia \N \N \N \N 25296 P.patulum Polygonum Polygonum arenastrum x Polygonum patulum \N \N \N \N \N 25297 G.simplicifolia Griffonia Griffonia simplicifolia \N \N \N \N \N 25298 C.willdenowii Carex Carex willdenowii \N \N \N \N \N 25299 \N genus Culcitium \N \N \N \N \N 25300 S.araneosa Salsola Salsola araneosa \N \N \N \N \N 25301 B.paniculata Brocchinia Brocchinia paniculata \N \N \N \N \N 25302 \N genus Enydra \N \N \N \N \N 25303 \N genus Kippistia \N \N \N \N \N 25304 B.kautskyi Brasiliorchis Brasiliorchis kautskyi \N \N \N \N \N 25305 L.2195 Lasiopetalum Lasiopetalum sp. Chase 2195 \N \N \N \N \N 25306 M.oreocharis Maxillaria Maxillaria oreocharis \N \N \N \N \N 25307 U.uncinata Uncinia Uncinia uncinata \N \N \N \N \N 25308 E.glossomystax Erycina Erycina glossomystax \N \N \N \N \N 25309 O.1999 Orostachys Orostachys sp. Mort 1999 \N \N \N \N \N 25310 C.wenshanensis Camellia Camellia wenshanensis \N \N \N \N \N 25311 R.pubigermen Rhododendron Rhododendron pubigermen \N \N \N \N \N 25312 M.baccifera Melocanna Melocanna baccifera \N \N \N \N \N 25313 J.hystricina Jarava Jarava hystricina \N \N \N \N \N 25314 \N genus Herpetospermum \N \N \N \N \N 25315 \N subspecies Allocasuarina acutivalvis subsp. acutivalvis \N \N \N \N \N 25316 G.corallinus Gasteranthus Gasteranthus corallinus \N \N \N \N \N 25317 P.bahiifolia Pseudobahia Pseudobahia bahiifolia \N \N \N \N \N 25318 C.debeauxii Castrilanthemum Castrilanthemum debeauxii \N \N \N \N \N 25319 I.digitata Impatiens Impatiens digitata \N \N \N \N \N 25320 A.hirta Aristolochia Aristolochia hirta \N \N \N \N \N 25321 D.coriaceum Dialyceras Dialyceras coriaceum \N \N \N \N \N 25322 E.ovalifolia Ehretia Ehretia ovalifolia \N \N \N \N \N 25323 S.7204 Strelitzia Strelitzia sp. Sytsma 7204 \N \N \N \N \N 25324 \N genus Whiteodendron \N \N \N \N \N 25325 \N varietas Oldenlandia capensis var. pleiosepala \N \N \N \N \N 25326 P.maritima Pallenis Pallenis maritima \N \N \N \N \N 25327 C.bullatum Cremastosperma Cremastosperma bullatum \N \N \N \N \N 25328 \N subspecies Carex inops subsp. heliophila \N \N \N \N \N 25329 G.palustre Geranium Geranium palustre \N \N \N \N \N 25330 G.JP2 Gymnocladus Gymnocladus sp. JP2 \N \N \N \N \N 25331 D.corymbosus Dianthus Dianthus corymbosus \N \N \N \N \N 25332 X.involucratum Xysmalobium Xysmalobium involucratum \N \N \N \N \N 25333 F.parvifolia Faucherea Faucherea parvifolia \N \N \N \N \N 25334 B.linearis Braya Braya linearis \N \N \N \N \N 25335 P.kimuenzae Psychotria Psychotria kimuenzae \N \N \N \N \N 25336 C.flexuosa Cantua Cantua flexuosa \N \N \N \N \N 25337 \N genus Ariocarpus \N \N \N \N \N 25338 V.cucuyo Vachellia Vachellia cucuyo \N \N \N \N \N 25339 I.imbecilla Impatiens Impatiens imbecilla \N \N \N \N \N 25340 V.leprieurii Vanilla Vanilla leprieurii \N \N \N \N \N 25341 H.floribunda Hymenostegia Hymenostegia floribunda \N \N \N \N \N 25342 R.hirsuta Rothia Rothia hirsuta \N \N \N \N \N 25343 T.Carlton Tulipa Tulipa sp. Carlton \N \N \N \N \N 25344 \N genus Lithachne \N \N \N \N \N 25345 \N genus Codiaeum \N \N \N \N \N 25346 P.pectinata Proserpinaca Proserpinaca pectinata \N \N \N \N \N 25347 C.rubra Crepis Crepis rubra \N \N \N \N \N 25348 C.rupestris Crassula Crassula rupestris \N \N \N \N \N 25349 G.bellinus Gastrochilus Gastrochilus bellinus \N \N \N \N \N 25350 \N varietas Aureliana fasciculata var. fasciculata \N \N \N \N \N 25351 H.glomeratus Halogeton Halogeton glomeratus \N \N \N \N \N 25352 \N varietas Bauhinia variegata var. candida \N \N \N \N \N 25353 \N genus Schoenoplectus \N \N \N \N \N 25354 \N genus Ctenanthe \N \N \N \N \N 25355 V.erubescens Viburnum Viburnum erubescens \N \N \N \N \N 25356 P.orbicularis Podalyria Podalyria orbicularis \N \N \N \N \N 25357 M.lloydii Mammillaria Mammillaria lloydii \N \N \N \N \N 25358 P.insularum Psychotria Psychotria insularum \N \N \N \N \N 25359 S.obovatus Stachyurus Stachyurus obovatus \N \N \N \N \N 25360 \N genus Trichodiadema \N \N \N \N \N 25361 T.pterodes Tragopogon Tragopogon pterodes \N \N \N \N \N 25362 C.aucheri Consolida Consolida aucheri \N \N \N \N \N 25363 C.reverchonii Campanula Campanula reverchonii Texas bellflower \N \N \N \N 25364 \N genus Howittia \N \N \N \N \N 25365 R.simplex Raukaua Raukaua simplex \N \N \N \N \N 25366 D.micranthus Dianthus Dianthus micranthus \N \N \N \N \N 25367 W.angustifolia Wahlenbergia Wahlenbergia angustifolia \N \N \N \N \N 25368 T.diffusa Threlkeldia Threlkeldia diffusa \N \N \N \N \N 25369 T.verdcourtiana Tricalysia Tricalysia verdcourtiana \N \N \N \N \N 25370 D.kilimandscharicus Dolichos Dolichos kilimandscharicus \N \N \N \N \N 25371 A.chiangii Ateleia Ateleia chiangii \N \N \N \N \N 25372 G.latifolia Gouinia Gouinia latifolia \N \N \N \N \N 25373 \N subspecies Vigna unguiculata subsp. unguiculata cowpea \N \N \N \N 25374 S.'venetiana' Suaeda Suaeda sp. 'venetiana' \N \N \N \N \N 25375 L.cymbulifera Ligularia Ligularia cymbulifera \N \N \N \N \N 25376 P.120940 Polystachya Polystachya sp. Heidelberg BG 120940 \N \N \N \N \N 25377 \N genus Ceratandra \N \N \N \N \N 25378 \N tribe Nolaneae \N \N \N \N \N 25379 T.graniticus Tonestus Tonestus graniticus \N \N \N \N \N 25380 B.commutatus Bromus Bromus commutatus hairy chess,meadow brome \N \N \N \N 25381 \N subspecies Calycadenia multiglandulosa subsp. bicolor \N \N \N \N \N 25382 A.vietnamensis Aralia Aralia vietnamensis \N \N \N \N \N 25383 A.obtusifolium Argentipallium Argentipallium obtusifolium \N \N \N \N \N 25384 S.crassinervium Solanum Solanum crassinervium \N \N \N \N \N 25385 I.prostratum Iseilema Iseilema prostratum \N \N \N \N \N 25386 P.nigrescens Pterygiella Pterygiella nigrescens \N \N \N \N \N 25387 D.xanthorrhoea Danais Danais xanthorrhoea \N \N \N \N \N 25388 M.nidifica Micranthes Micranthes nidifica \N \N \N \N \N 25389 \N genus Neonicholsonia \N \N \N \N \N 25390 \N subspecies Fraxinus angustifolia subsp. syriaca \N \N \N \N \N 25391 R.anadyriensis Ranunculus Ranunculus anadyriensis \N \N \N \N \N 25392 S.masukuense Syzygium Syzygium masukuense \N \N \N \N \N 25393 S.skutchii Sanchezia Sanchezia skutchii \N \N \N \N \N 25394 \N genus Alphonsea \N \N \N \N \N 25395 E.pusillum Exaculum Exaculum pusillum \N \N \N \N \N 25396 T.4216 unclassified Taraxacum Taraxacum (sect. Piesis) sp. 4216 \N \N \N \N \N 25397 E.dubovikiae Euphorbia Euphorbia dubovikiae \N \N \N \N \N 25398 \N genus Schizocolea \N \N \N \N \N 25399 C.andrewsii Cypripedium Cypripedium x andrewsii \N \N \N \N \N 25400 R.hypoleucum Rhododendron Rhododendron hypoleucum \N \N \N \N \N 25401 C.incurvifolius Chionanthus Chionanthus incurvifolius \N \N \N \N \N 25402 S.nuda Swartzia Swartzia nuda \N \N \N \N \N 25403 A.2310 Arisaema Arisaema sp. Murata 2310 \N \N \N \N \N 25404 L.sabulosus Leymus Leymus sabulosus \N \N \N \N \N 25405 R.polyanthemum Rhododendron Rhododendron polyanthemum \N \N \N \N \N 25406 S.minimus Senecio Senecio minimus \N \N \N \N \N 25407 R.2222 Rothmannia Rothmannia sp. Lovett 2222 \N \N \N \N \N 25408 M.3186 Maxillaria Maxillaria sp. Whitten 3186 \N \N \N \N \N 25409 C.virgata Calceolaria Calceolaria virgata \N \N \N \N \N 25410 H.longipetala Harpullia Harpullia longipetala \N \N \N \N \N 25411 C.ebenea Carex Carex ebenea \N \N \N \N \N 25412 V.fordiae Viburnum Viburnum fordiae \N \N \N \N \N 25413 T.8370 Tetrastigma Tetrastigma sp. Wen 8370 \N \N \N \N \N 25414 O.vernicosa Owenia Owenia vernicosa \N \N \N \N \N 25415 A.hippocastanum Aesculus Aesculus hippocastanum European horse chestnut,common horse chestnut \N \N \N \N 25416 A.scopoliana Arabis Arabis scopoliana \N \N \N \N \N 25417 V.opulus Viburnum Viburnum opulus European cranberrybush,crampbark,guelder rose \N \N \N \N 25418 \N genus Odontocarya \N \N \N \N \N 25419 C.hebecarpa Crotalaria Crotalaria hebecarpa \N \N \N \N \N 25420 C.perpusilla Chaetanthera Chaetanthera perpusilla \N \N \N \N \N 25421 H.cerinthoides Hieracium Hieracium cerinthoides \N \N \N \N \N 25422 E.aretioides Eritrichium Eritrichium aretioides \N \N \N \N \N 25423 \N genus Stilpnophyllum \N \N \N \N \N 25424 \N genus Cotula \N \N \N \N \N 25425 E.debilis Eleocharis Eleocharis debilis \N \N \N \N \N 25426 \N genus Seidelia \N \N \N \N \N 25427 \N subspecies Nigella arvensis subsp. arvensis \N \N \N \N \N 25428 C.remota Carex Carex remota \N \N \N \N \N 25429 P.falcaria Peucedanum Peucedanum falcaria \N \N \N \N \N 25430 I.denudata Indigofera Indigofera denudata \N \N \N \N \N 25431 C.grandifolia Calvoa Calvoa grandifolia \N \N \N \N \N 25432 \N genus Lapeirousia \N \N \N \N \N 25433 A.plumosa Alstonia Alstonia plumosa \N \N \N \N \N 25434 C.campanulata Cipura Cipura campanulata \N \N \N \N \N 25435 S.palembanica Shorea Shorea palembanica \N \N \N \N \N 25436 H.irya Horsfieldia Horsfieldia irya \N \N \N \N \N 25437 C.cassioides Caesalpinia Caesalpinia cassioides tailed nicker \N \N \N \N 25438 P.oblongifolia Polyalthia Polyalthia oblongifolia \N \N \N \N \N 25439 R.alaternus Rhamnus Rhamnus alaternus \N \N \N \N \N 25440 G.superba Guacamaya Guacamaya superba \N \N \N \N \N 25441 C.bruneaunis Calochortus Calochortus bruneaunis \N \N \N \N \N 25442 P.louisianica Proboscidea Proboscidea louisianica pale devil's-claw,ram's horn \N \N \N \N 25443 \N genus Porodittia \N \N \N \N \N 25444 E.phellomanus Euonymus Euonymus phellomanus \N \N \N \N \N 25445 \N genus Pycnoplinthus \N \N \N \N \N 25446 I.ruthenica Iris Iris ruthenica \N \N \N \N \N 25447 S.sikokianus Stigmatodactylus Stigmatodactylus sikokianus \N \N \N \N \N 25448 \N genus Chadsia \N \N \N \N \N 25449 T.rosea Tamarix Tamarix rosea \N \N \N \N \N 25450 \N varietas Rotheca myricoides var. myricoides \N \N \N \N \N 25451 P.micrantha Potameia Potameia micrantha \N \N \N \N \N 25452 C.fontanesii Colocasia Colocasia fontanesii \N \N \N \N \N 25453 \N genus Sclerosperma \N \N \N \N \N 25454 L.sp. Lithops Lithops sp. \N \N \N \N \N 25455 S.stellata Scandix Scandix stellata \N \N \N \N \N 25456 P.reticulata Pearcea Pearcea reticulata \N \N \N \N \N 25457 D.parciflorum Dendrobium Dendrobium parciflorum \N \N \N \N \N 25458 T.antofagastana Tarasa Tarasa antofagastana \N \N \N \N \N 25459 M.unifolia Microtis Microtis unifolia \N \N \N \N \N 25460 L.acuminata Lonicera Lonicera acuminata \N \N \N \N \N 25461 \N genus Stachyopsis \N \N \N \N \N 25462 T.gracile Typhonium Typhonium gracile \N \N \N \N \N 25463 M.emoryana Mimosa Mimosa emoryana \N \N \N \N \N 25464 \N genus Lasimorpha \N \N \N \N \N 25465 A.americana Agave Agave americana century plant \N \N \N \N 25466 \N genus Isotropis \N \N \N \N \N 25467 M.geminata Morinda Morinda geminata \N \N \N \N \N 25468 S.decaphylla Schefflera Schefflera decaphylla \N \N \N \N \N 25469 D.batangense Delphinium Delphinium batangense \N \N \N \N \N 25470 \N genus Rhaptonema \N \N \N \N \N 25471 K.macrophylla Kibatalia Kibatalia macrophylla \N \N \N \N \N 25472 C.whitelockiana Chamaedorea Chamaedorea whitelockiana \N \N \N \N \N 25473 G.purpurea Gentiana Gentiana purpurea \N \N \N \N \N 25474 I.marginata Inga Inga marginata \N \N \N \N \N 25475 A.nepalensis Anaphalis Anaphalis nepalensis \N \N \N \N \N 25476 D.filliformis Drosera Drosera filliformis dewthread \N \N \N \N 25477 R.laevigata Ruprechtia Ruprechtia laevigata \N \N \N \N \N 25478 M.rupestris Mimulus Mimulus rupestris \N \N \N \N \N 25479 L.silaifolia Lomatia Lomatia silaifolia \N \N \N \N \N 25480 \N subspecies Kunzea micrantha subsp. micrantha \N \N \N \N \N 25481 A.condensata Aristida Aristida condensata \N \N \N \N \N 25482 G.javanica Gahnia Gahnia javanica \N \N \N \N \N 25483 \N subspecies Artocarpus nitidus subsp. humilis \N \N \N \N \N 25484 A.callunoides Amphiglossa Amphiglossa callunoides \N \N \N \N \N 25485 H.comosa Hylenaea Hylenaea comosa \N \N \N \N \N 25486 I.jourdanii Ixora Ixora jourdanii \N \N \N \N \N 25487 D.fasciculata Dunalia Dunalia fasciculata \N \N \N \N \N 25488 \N genus Kalidiopsis \N \N \N \N \N 25489 C.laevipes Cruciata Cruciata laevipes \N \N \N \N \N 25490 S.gnidioides Senecio Senecio gnidioides \N \N \N \N \N 25491 H.viridis Hemigraphis Hemigraphis viridis \N \N \N \N \N 25492 \N genus Sciaphila \N \N \N \N \N 25493 N.spegazzinii Nicotiana Nicotiana spegazzinii \N \N \N \N \N 25494 A.styphelioides Arrowsmithia Arrowsmithia styphelioides \N \N \N \N \N 25495 \N genus Clutia \N \N \N \N \N 25496 A.ovalis Amelanchier Amelanchier ovalis \N \N \N \N \N 25497 M.paradisiaca Musa Musa x paradisiaca banana \N \N \N \N 25498 \N varietas Potentilla ovina var. decurrens \N \N \N \N \N 25499 C.cuneata Cotyledon Cotyledon cuneata \N \N \N \N \N 25500 M.YL-2009 Mulgedium Mulgedium sp. YL-2009 \N \N \N \N \N 25501 T.243 Telipogon Telipogon sp. Maduro 243 \N \N \N \N \N 25502 C.burmanii Cyclea Cyclea burmanii \N \N \N \N \N 25503 S.deflersii Senecio Senecio deflersii \N \N \N \N \N 25504 \N genus Kearnemalvastrum \N \N \N \N \N 25505 C.argyrothamnos Convolvulus Convolvulus argyrothamnos \N \N \N \N \N 25506 \N tribe Maleae \N \N \N \N \N 25507 \N varietas Actinidia valvata var. valvata \N \N \N \N \N 25508 E.paucipunctata Elaphandra Elaphandra paucipunctata \N \N \N \N \N 25509 S.mannii Strephonema Strephonema mannii \N \N \N \N \N 25510 C.capensis Cryptolepis Cryptolepis capensis \N \N \N \N \N 25511 C.chordorrhiza Carex Carex chordorrhiza \N \N \N \N \N 25512 C.freynii Colchicum Colchicum freynii \N \N \N \N \N 25513 C.h003 Charybdis Charybdis aff. numidica h003 \N \N \N \N \N 25514 B.riparia Barbacenia Barbacenia riparia \N \N \N \N \N 25515 \N genus Trichogyne \N \N \N \N \N 25516 L.forrestii Lespedeza Lespedeza forrestii \N \N \N \N \N 25517 A.littoralis Astrodaucus Astrodaucus littoralis \N \N \N \N \N 25518 \N genus Ptaeroxylon \N \N \N \N \N 25519 A.racemosa Aidia Aidia racemosa \N \N \N \N \N 25520 S.dissectum Solanum Solanum dissectum \N \N \N \N \N 25521 E.shannoni Eremosis Eremosis shannoni \N \N \N \N \N 25522 L.cuneata Leandra Leandra cuneata \N \N \N \N \N 25523 T.arsenii Thalictrum Thalictrum arsenii \N \N \N \N \N 25524 \N subspecies Polemonium pulcherrimum subsp. delicatum \N \N \N \N \N 25525 H.delfinii Hamadryas Hamadryas delfinii \N \N \N \N \N 25526 S.campanulata Sabia Sabia campanulata \N \N \N \N \N 25527 L.magdalenae Lycianthes Lycianthes magdalenae \N \N \N \N \N 25528 L.helmsii Lawrencia Lawrencia helmsii \N \N \N \N \N 25529 C.discolor Cissus Cissus discolor climbing-begonia \N \N \N \N 25530 C.moupinensis Cotoneaster Cotoneaster moupinensis \N \N \N \N \N 25531 D.s.n. Dendrobium Dendrobium aff. crocatum Smedley s.n. \N \N \N \N \N 25532 \N subspecies Cucumis prophetarum subsp. prophetarum \N \N \N \N \N 25533 N.phelpsiae Navia Navia phelpsiae \N \N \N \N \N 25534 A.praemorsa Asclepias Asclepias praemorsa \N \N \N \N \N 25535 V.pilosa Valeriana Valeriana pilosa \N \N \N \N \N 25536 \N genus Jonesiopsis \N \N \N \N \N 25537 A.molle Aconogonon Aconogonon molle \N \N \N \N \N 25538 E.baetica Erophaca Erophaca baetica \N \N \N \N \N 25539 \N tribe Potalieae \N \N \N \N \N 25540 \N varietas Lotus dendroideus var. dendroideus \N \N \N \N \N 25541 P.circumplexa Pleurothallis Pleurothallis circumplexa \N \N \N \N \N 25542 P.vellozicola Pseudolaelia Pseudolaelia vellozicola \N \N \N \N \N 25543 L.virgata Liatris Liatris virgata \N \N \N \N \N 25544 L.olbia Lavatera Lavatera olbia \N \N \N \N \N 25545 C.amadanensis Centaurea Centaurea amadanensis \N \N \N \N \N 25546 B.unguiculata Babiana Babiana unguiculata \N \N \N \N \N 25547 L.afromontanum Lithospermum Lithospermum afromontanum \N \N \N \N \N 25548 C.globiflora Cuscuta Cuscuta globiflora \N \N \N \N \N 25549 W.elegans Wielandia Wielandia elegans \N \N \N \N \N 25550 \N genus Parrya \N \N \N \N \N 25551 C.winterana Canella Canella winterana barbasco,curbana,wild cinnamon \N \N \N \N 25552 \N varietas Gasteria subnigricans var. glabrior \N \N \N \N \N 25553 \N genus Catunaregam \N \N \N \N \N 25554 \N genus Ventenata \N \N \N \N \N 25555 \N varietas Aristida dichotoma var. curtissii \N \N \N \N \N 25556 L.pumilum Limnosciadium Limnosciadium pumilum \N \N \N \N \N 25557 C.incrassatum Calophyllum Calophyllum incrassatum \N \N \N \N \N 25558 S.bindseili Streptocarpus Streptocarpus bindseili \N \N \N \N \N 25559 L.nigricans Lens Lens nigricans \N \N \N \N \N 25560 \N genus Mora \N \N \N \N \N 25561 C.9954 Carex Carex sp. Hahn 9954 \N \N \N \N \N 25562 S.hookeriana Sida Sida hookeriana \N \N \N \N \N 25563 O.wallisii Oncidium Oncidium wallisii \N \N \N \N \N 25564 H.exserta Hanceola Hanceola exserta \N \N \N \N \N 25565 R.yongii Rhododendron Rhododendron yongii \N \N \N \N \N 25566 C.odorata Ceropegia Ceropegia odorata \N \N \N \N \N 25567 \N genus Bonia \N \N \N \N \N 25568 S.jelskii Schizotrichia Schizotrichia jelskii \N \N \N \N \N 25569 C.lanceolatum Coccocypselum Coccocypselum lanceolatum \N \N \N \N \N 25570 A.verrucosum Amomum Amomum verrucosum \N \N \N \N \N 25571 A.za Adansonia Adansonia za \N \N \N \N \N 25572 \N subspecies Phlox drummondii subsp. glabriflora \N \N \N \N \N 25573 L.lorophylla Livistona Livistona lorophylla \N \N \N \N \N 25574 O.kirkii Ormocarpum Ormocarpum kirkii \N \N \N \N \N 25575 \N genus Pachystroma \N \N \N \N \N 25576 M.calophylla Meriania Meriania calophylla \N \N \N \N \N 25577 P.stenolepis Phagnalon Phagnalon stenolepis \N \N \N \N \N 25578 P.regnellii Platycyamus Platycyamus regnellii \N \N \N \N \N 25579 S.laconicum Sedum Sedum laconicum \N \N \N \N \N 25580 T.leptophylla Tambourissa Tambourissa leptophylla \N \N \N \N \N 25581 M.dolens Mimosa Mimosa dolens \N \N \N \N \N 25582 I.argentina Ilex Ilex argentina \N \N \N \N \N 25583 \N varietas Boehmeria malabarica var. leioclada \N \N \N \N \N 25584 S.zygophylla Salsola Salsola zygophylla \N \N \N \N \N 25585 \N genus Korthalsella \N \N \N \N \N 25586 S.wightianus Sonchus Sonchus wightianus \N \N \N \N \N 25587 R.pulchrum Rhaponticum Rhaponticum pulchrum \N \N \N \N \N 25588 F.tristachya Fimbristylis Fimbristylis tristachya \N \N \N \N \N 25589 \N genus Cyrtochilum \N \N \N \N \N 25590 M.strigosissima Misbrookea Misbrookea strigosissima \N \N \N \N \N 25591 T.reniforme Thalictrum Thalictrum reniforme \N \N \N \N \N 25592 S.nidulare Sisyrinchium Sisyrinchium nidulare \N \N \N \N \N 25593 C.oblongifolia Cryptolepis Cryptolepis oblongifolia \N \N \N \N \N 25594 C.tenuifolia Camellia Camellia tenuifolia \N \N \N \N \N 25595 C.scoparius Cytisus Cytisus scoparius \N \N \N \N \N 25596 H.argaeum Heracleum Heracleum argaeum \N \N \N \N \N 25597 F.condensa Ficus Ficus condensa \N \N \N \N \N 25598 P.incrassatum Pelargonium Pelargonium incrassatum \N \N \N \N \N 25599 M.denudata Magnolia Magnolia denudata haku-mokuren,lilytree,yu lan \N \N \N \N 25600 C.isthmicum Condylocarpon Condylocarpon isthmicum \N \N \N \N \N 25601 S.haleakalensis Schiedea Schiedea haleakalensis \N \N \N \N \N 25602 D.cordigera Dactylorhiza Dactylorhiza cordigera \N \N \N \N \N 25603 M.ciliata Moltkiopsis Moltkiopsis ciliata \N \N \N \N \N 25604 \N genus Dasistoma \N \N \N \N \N 25605 C.coccinea Colquhounia Colquhounia coccinea \N \N \N \N \N 25606 T.trichopoda Terminalia Terminalia trichopoda \N \N \N \N \N 25607 \N genus Argocoffeopsis \N \N \N \N \N 25608 M.brownei Marcgravia Marcgravia brownei \N \N \N \N \N 25609 L.iniki Lysimachia Lysimachia iniki \N \N \N \N \N 25610 R.aculeata Randia Randia aculeata \N \N \N \N \N 25611 H.lippioides Heliotropium Heliotropium lippioides \N \N \N \N \N 25612 A.michelii Avellinia Avellinia michelii \N \N \N \N \N 25613 H.pseudospectabile Hylotelephium Hylotelephium pseudospectabile \N \N \N \N \N 25614 \N varietas Isodon japonicus var. glaucocalyx \N \N \N \N \N 25615 \N genus Ophthalmoblapton \N \N \N \N \N 25616 \N subfamily Anomochlooideae \N \N \N \N \N 25617 M.patchoulii Microtoena Microtoena patchoulii \N \N \N \N \N 25618 G.DES-2011 Gyrocarpus Gyrocarpus sp. DES-2011 \N \N \N \N \N 25619 \N varietas Solanum quitoense var. quitoense \N \N \N \N \N 25620 \N subspecies Vella pseudocytisus subsp. pseudocytisus \N \N \N \N \N 25621 P.barbulata Pyxidanthera Pyxidanthera barbulata \N \N \N \N \N 25622 \N genus Coronilla \N \N \N \N \N 25623 F.odoardi Ficus Ficus odoardi \N \N \N \N \N 25624 S.chartacea Sasa Sasa chartacea ohkuma-zasa,senai-zasa \N \N \N \N 25625 M.nuttalliana Monolepis Monolepis nuttalliana \N \N \N \N \N 25626 S.pectinata Stuckenia Stuckenia pectinata sago-pondweed \N \N \N \N 25627 L.heterophylla Loasa Loasa heterophylla \N \N \N \N \N 25628 \N genus Leptocarpus \N \N \N \N \N 25629 \N genus Pennellianthus \N \N \N \N \N 25630 P.xanthostachyum Piper Piper xanthostachyum \N \N \N \N \N 25631 M.alamosana Marina Marina alamosana \N \N \N \N \N 25632 H.yungningense Heracleum Heracleum yungningense \N \N \N \N \N 25633 M.cauliflora Montrouziera Montrouziera cauliflora \N \N \N \N \N 25634 A.wrightii Acacia Acacia wrightii \N \N \N \N \N 25635 \N genus Ruspolia \N \N \N \N \N 25636 \N genus Entolasia \N \N \N \N \N 25637 \N varietas Campanula ptarmicifolia var. capitellata \N \N \N \N \N 25638 H.persica Henrardia Henrardia persica \N \N \N \N \N 25639 S.decumbens Stevia Stevia decumbens \N \N \N \N \N 25640 F.coccinea Fuchsia Fuchsia coccinea \N \N \N \N \N 25641 H.kingii Herrickia Herrickia kingii King's serpentweed \N \N \N \N 25642 N.lepida Nassella Nassella lepida \N \N \N \N \N 25643 B.sudjanae Begonia Begonia sudjanae \N \N \N \N \N 25644 \N genus Zeugites \N \N \N \N \N 25645 C.macmasteri Cyrtanthus Cyrtanthus macmasteri \N \N \N \N \N 25646 \N genus Luisia \N \N \N \N \N 25647 P.umbellata Polygala Polygala umbellata \N \N \N \N \N 25648 \N genus Paulownia \N \N \N \N \N 25649 E.nutans Elymus Elymus nutans \N \N \N \N \N 25650 C.palustris Calla Calla palustris bog arum,wild calla-lily \N \N \N \N 25651 O.meridionalis Oryza Oryza meridionalis \N \N \N \N \N 25652 F.vaillantii Fumaria Fumaria vaillantii \N \N \N \N \N 25653 \N genus Bolandra \N \N \N \N \N 25654 G.multinervia Grias Grias multinervia \N \N \N \N \N 25655 P.angolensis Pterocarpus Pterocarpus angolensis \N \N \N \N \N 25656 \N subspecies Gymnocalycium castellanosii subsp. bozsingianum \N \N \N \N \N 25657 P.chungensis Primula Primula chungensis \N \N \N \N \N 25658 S.nana Spiloxene Spiloxene nana \N \N \N \N \N 25659 A.cinnamomiflora Aniba Aniba cinnamomiflora \N \N \N \N \N 25660 P.careyi Persicaria Persicaria careyi \N \N \N \N \N 25661 C.inaequisepalum Cryptocentrum Cryptocentrum inaequisepalum \N \N \N \N \N 25662 C.texensis Carex Carex texensis \N \N \N \N \N 25663 E.longiflorum Exostema Exostema longiflorum \N \N \N \N \N 25664 M.longispicata Miconia Miconia longispicata \N \N \N \N \N 25665 O.arborescens Olearia Olearia arborescens \N \N \N \N \N 25666 C.burchellii Clusia Clusia burchellii \N \N \N \N \N 25667 C.subedentata Caliphruria Caliphruria subedentata \N \N \N \N \N 25668 P.niitakayamensis Pimpinella Pimpinella niitakayamensis \N \N \N \N \N 25669 P.rodwayi Plinthanthesis Plinthanthesis rodwayi \N \N \N \N \N 25670 \N genus Mimozyganthus \N \N \N \N \N 25671 N.diderrichii Nauclea Nauclea diderrichii \N \N \N \N \N 25672 N.thinophila Nolana Nolana thinophila \N \N \N \N \N 25673 M.hakonensis Muhlenbergia Muhlenbergia hakonensis \N \N \N \N \N 25674 F.dalmatica Festuca Festuca dalmatica \N \N \N \N \N 25675 P.aurata Persea Persea aurata \N \N \N \N \N 25676 B.cymosa Boronia Boronia cymosa \N \N \N \N \N 25677 S.pimeleoides Stenanthemum Stenanthemum pimeleoides \N \N \N \N \N 25678 \N varietas Myrceugenia myrcioides var. acrophylla \N \N \N \N \N 25679 C.veratrifolia Corymborkis Corymborkis veratrifolia \N \N \N \N \N 25680 S.pulchella Saussurea Saussurea pulchella \N \N \N \N \N 25681 G.triflorum Galium Galium triflorum sweet-scented bedstraw \N \N \N \N 25682 \N subspecies Halosarcia pergranulata subsp. elongata \N \N \N \N \N 25683 P.filipes Pouteria Pouteria filipes \N \N \N \N \N 25684 L.squarrosa Loeflingia Loeflingia squarrosa spreading pygmyleaf \N \N \N \N 25685 P.zoanthogyne Pimelodendron Pimelodendron zoanthogyne \N \N \N \N \N 25686 J.capensis Juncus Juncus capensis \N \N \N \N \N 25687 G.clarkei Gahnia Gahnia clarkei \N \N \N \N \N 25688 A.curviflora Alibertia Alibertia curviflora \N \N \N \N \N 25689 M.caloneura Mangifera Mangifera caloneura \N \N \N \N \N 25690 \N genus Butea \N \N \N \N \N 25691 C.echinata Caesalpinia Caesalpinia echinata Pernambuco wood,brazilwood,pau-Brasil \N \N \N \N 25692 C.pyrifolia Cantua Cantua pyrifolia \N \N \N \N \N 25693 S.ionantha Saintpaulia Saintpaulia ionantha African violet \N \N \N \N 25694 L.arborescens Launaea Launaea arborescens \N \N \N \N \N 25695 E.muricata Euphorbia Euphorbia muricata \N \N \N \N \N 25696 B.hygroscopica Boea Boea hygroscopica \N \N \N \N \N 25697 P.hydrophylloides Phacelia Phacelia hydrophylloides \N \N \N \N \N 25698 S.hydrocotyleoides Schizeilema Schizeilema hydrocotyleoides \N \N \N \N \N 25699 \N genus Otoptera \N \N \N \N \N 25700 \N varietas Satyrium longicauda var. jacottetianum \N \N \N \N \N 25701 M.CLA Macrocarpaea Macrocarpaea sp. CLA \N \N \N \N \N 25702 S.stellata Scaphyglottis Scaphyglottis stellata \N \N \N \N \N 25703 P.axillaris Pachysandra Pachysandra axillaris \N \N \N \N \N 25704 \N subfamily Scutellarioideae \N \N \N \N \N 25705 G.sparsiflorum Galium Galium sparsiflorum \N \N \N \N \N 25706 I.affinis Ilex Ilex affinis \N \N \N \N \N 25707 R.101 Rafflesia Rafflesia sp. Jaucian-Adan & Valenzuela 101 \N \N \N \N \N 25708 \N genus Monophrynium \N \N \N \N \N 25709 P.princeps Plantago Plantago princeps ale \N \N \N \N 25710 I.nudicaulis Indigofera Indigofera nudicaulis \N \N \N \N \N 25711 H.pallens Hertia Hertia pallens \N \N \N \N \N 25712 H.mamamense Halanthium Halanthium mamamense \N \N \N \N \N 25713 C.aquatica Catabrosa Catabrosa aquatica \N \N \N \N \N 25714 H.pusilla Houstonia Houstonia pusilla tiny bluet \N \N \N \N 25715 C.hekouensis Camellia Camellia hekouensis \N \N \N \N \N 25716 R.reticulatum Rhododendron Rhododendron reticulatum \N \N \N \N \N 25717 \N varietas Haworthia limifolia var. stolonifera \N \N \N \N \N 25718 \N genus Dichasianthus \N \N \N \N \N 25719 P.cuneatum Ptychosperma Ptychosperma cuneatum \N \N \N \N \N 25720 S.fruticosa Stifftia Stifftia fruticosa \N \N \N \N \N 25721 C.implicatum Cynanchum Cynanchum implicatum \N \N \N \N \N 25722 T.loheri Tetrastigma Tetrastigma loheri \N \N \N \N \N 25723 C.densiflora Clidemia Clidemia densiflora \N \N \N \N \N 25724 G.schizocalyx Gaertnera Gaertnera schizocalyx \N \N \N \N \N 25725 A.stuhlmannii Acacia Acacia stuhlmannii \N \N \N \N \N 25726 \N genus Catalepis \N \N \N \N \N 25727 E.rayonesensis Echinocereus Echinocereus rayonesensis \N \N \N \N \N 25728 C.tuckii Cyrtanthus Cyrtanthus tuckii \N \N \N \N \N 25729 P.palauensis Ponapea Ponapea palauensis \N \N \N \N \N 25730 C.25086 Chaetanthera Chaetanthera cf. gnaphalioides Arroyo 25086 \N \N \N \N \N 25731 O.picchensis Oxalis Oxalis picchensis \N \N \N \N \N 25732 E.belalongensis Etlingera Etlingera belalongensis \N \N \N \N \N 25733 S.schimperianum Solanum Solanum schimperianum \N \N \N \N \N 25734 C.formosana Cardiandra Cardiandra formosana \N \N \N \N \N 25735 Z.mayu Zanthoxylum Zanthoxylum mayu \N \N \N \N \N 25736 G.acanthoclada Genista Genista acanthoclada \N \N \N \N \N 25737 P.tomas-albertoi Piper Piper tomas-albertoi \N \N \N \N \N 25738 H.obtusifolium Haplophyllum Haplophyllum obtusifolium \N \N \N \N \N 25739 M.asclepiadea Miconia Miconia asclepiadea \N \N \N \N \N 25740 A.frutescens Acranthera Acranthera frutescens \N \N \N \N \N 25741 C.leptocladus Cyperus Cyperus leptocladus \N \N \N \N \N 25742 A.caroliniana Anemone Anemone caroliniana \N \N \N \N \N 25743 P.haematostachya Pimelea Pimelea haematostachya \N \N \N \N \N 25744 O.disjunctum Orthophytum Orthophytum disjunctum \N \N \N \N \N 25745 C.edulis Caudanthera Caudanthera edulis \N \N \N \N \N 25746 O.glabra Oxalis Oxalis glabra \N \N \N \N \N 25747 P.malifolia Pristimera Pristimera malifolia \N \N \N \N \N 25748 H.nemorum Hypolytrum Hypolytrum nemorum \N \N \N \N \N 25749 E.nutans Einadia Einadia nutans \N \N \N \N \N 25750 E.wardii Eleutherococcus Eleutherococcus wardii \N \N \N \N \N 25751 R.retrorsa Russelia Russelia retrorsa \N \N \N \N \N 25752 B.atrorubens Boechera Boechera atrorubens \N \N \N \N \N 25753 M.subcompressa Miconia Miconia subcompressa \N \N \N \N \N 25754 O.traversii Olearia Olearia traversii \N \N \N \N \N 25755 H.abyssinica Hedbergia Hedbergia abyssinica \N \N \N \N \N 25756 \N varietas Platanthera dilatata var. dilatata \N \N \N \N \N 25757 \N genus Neoastelia \N \N \N \N \N 25758 H.kalbreyeri Halenia Halenia kalbreyeri \N \N \N \N \N 25759 \N genus Orthaea \N \N \N \N \N 25760 P.argyreia Peperomia Peperomia argyreia \N \N \N \N \N 25761 \N genus Hitchenia \N \N \N \N \N 25762 L.kesselringianum Lilium Lilium kesselringianum \N \N \N \N \N 25763 G.robiliartianus Gladiolus Gladiolus robiliartianus \N \N \N \N \N 25764 S.curralensis Syngonanthus Syngonanthus curralensis \N \N \N \N \N 25765 S.striatum Sisyrinchium Sisyrinchium striatum \N \N \N \N \N 25766 L.canariensis Lobularia Lobularia canariensis \N \N \N \N \N 25767 S.fullagarii Syzygium Syzygium fullagarii \N \N \N \N \N 25768 F.indica Flacourtia Flacourtia indica Madagascar plum,batoko plum,ramontchi \N \N \N \N 25769 V.rigida Velezia Velezia rigida \N \N \N \N \N 25770 S.scabrifolium Solanum Solanum scabrifolium \N \N \N \N \N 25771 T.europaeus Trollius Trollius europaeus globeflower \N \N \N \N 25772 L.formosana Liquidambar Liquidambar formosana Formosan gum \N \N \N \N 25773 \N genus Maripa \N \N \N \N \N 25774 E.cinnabarinum Epidendrum Epidendrum cinnabarinum \N \N \N \N \N 25775 \N subspecies Allium isakulii subsp. balkhanicum \N \N \N \N \N 25776 A.manarae Anaectocalyx Anaectocalyx manarae \N \N \N \N \N 25777 C.aethiops Cereus Cereus aethiops \N \N \N \N \N 25778 O.breviseta Ortachne Ortachne breviseta \N \N \N \N \N 25779 \N genus Fessia \N \N \N \N \N 25780 \N varietas Distichostemon hispidulus var. hispidulus \N \N \N \N \N 25781 A.grandiflora Anthocleista Anthocleista grandiflora \N \N \N \N \N 25782 \N subspecies Perezia multiflora subsp. sonchifolia \N \N \N \N \N 25783 G.G1077 Glycine Glycine sp. G1077 \N \N \N \N \N 25784 \N genus Ancistrothyrsus \N \N \N \N \N 25785 B.robustum Brachypterum Brachypterum robustum \N \N \N \N \N 25786 G.hookeri Gaultheria Gaultheria hookeri \N \N \N \N \N 25787 P.nutans Primula Primula nutans \N \N \N \N \N 25788 M.afraurita Mnesithea Mnesithea afraurita \N \N \N \N \N 25789 S.gooddingi Salix Salix gooddingi \N \N \N \N \N 25790 C.longipistillata Climacoptera Climacoptera longipistillata \N \N \N \N \N 25791 P.orbiculare Phyteuma Phyteuma orbiculare \N \N \N \N \N 25792 C.racemosum Cosmostigma Cosmostigma racemosum \N \N \N \N \N 25793 R.tagetes Ratibida Ratibida tagetes green Mexican-hat,prairie coneflower \N \N \N \N 25794 M.tomentosa Marila Marila tomentosa \N \N \N \N \N 25795 \N varietas Momordica multiflora var. albopilosa \N \N \N \N \N 25796 D.australe Dactyloctenium Dactyloctenium australe \N \N \N \N \N 25797 D.thollonii Dioncophyllum Dioncophyllum thollonii \N \N \N \N \N 25798 S.gentryi Scaphyglottis Scaphyglottis gentryi \N \N \N \N \N 25799 G.bajacalifornica Glandularia Glandularia bajacalifornica \N \N \N \N \N 25800 U.uliginosa Utricularia Utricularia uliginosa \N \N \N \N \N 25801 E.ciconium Erodium Erodium ciconium \N \N \N \N \N 25802 C.viridiflora Campynemanthe Campynemanthe viridiflora \N \N \N \N \N 25803 E.marlothianus Eremothamnus Eremothamnus marlothianus \N \N \N \N \N 25804 S.lamelligera Sanicula Sanicula lamelligera \N \N \N \N \N 25805 O.transvolcanica Otatea Otatea transvolcanica \N \N \N \N \N 25806 L.hispidum Laserpitium Laserpitium hispidum \N \N \N \N \N 25807 P.cordata Pontederia Pontederia cordata \N \N \N \N \N 25808 C.grandiflora Campsis Campsis grandiflora Chinese trumpet-creeper,ling xiao \N \N \N \N 25809 S.cajamarquense Solanum Solanum cajamarquense \N \N \N \N \N 25810 S.stenocarpum Stephanostema Stephanostema stenocarpum \N \N \N \N \N 25811 M.diphylla Mitella Mitella diphylla \N \N \N \N \N 25812 B.rigidifolia Babiana Babiana rigidifolia \N \N \N \N \N 25813 A.kashmarensis Astragalus Astragalus kashmarensis \N \N \N \N \N 25814 E.antso Euphorbia Euphorbia antso \N \N \N \N \N 25815 I.spathulata Iberis Iberis spathulata \N \N \N \N \N 25816 E.australis Epaltes Epaltes australis \N \N \N \N \N 25817 G.luberonensis Gagea Gagea x luberonensis \N \N \N \N \N 25818 H.734 Homalium Homalium sp. 734 \N \N \N \N \N 25819 \N varietas Pseudosasa amabilis var. convexa \N \N \N \N \N 25820 R.rubra Raoulia Raoulia rubra \N \N \N \N \N 25821 B.lehmannii Barnadesia Barnadesia lehmannii \N \N \N \N \N 25822 H.rugosa Hirtella Hirtella rugosa \N \N \N \N \N 25823 C.sychnocephala Carex Carex sychnocephala \N \N \N \N \N 25824 G.semiglauca Guioa Guioa semiglauca \N \N \N \N \N 25825 P.pinnata Psoralea Psoralea pinnata African scurfpea \N \N \N \N 25827 O.chanetii Orostachys Orostachys chanetii \N \N \N \N \N 25828 \N varietas Platymiscium floribundum var. latifolium \N \N \N \N \N 25829 I.miniata Impatiens Impatiens miniata \N \N \N \N \N 25830 M.schlimii Miconia Miconia schlimii \N \N \N \N \N 25831 \N genus Brassia \N \N \N \N \N 25832 \N varietas Toona ciliata var. pubescens \N \N \N \N \N 25833 P.lepidota Pityrodia Pityrodia lepidota \N \N \N \N \N 25834 \N genus Buchholzia \N \N \N \N \N 25835 P.campanularia Phacelia Phacelia campanularia \N \N \N \N \N 25836 C.palmata Calathodes Calathodes palmata \N \N \N \N \N 25837 N.chiliotrichoides Nardophyllum Nardophyllum chiliotrichoides \N \N \N \N \N 25838 S.gentryi Styrax Styrax gentryi \N \N \N \N \N 25839 C.dumosus Chimonocalamus Chimonocalamus dumosus \N \N \N \N \N 25840 \N subspecies Antirrhinum hispanicum subsp. mollissimum \N \N \N \N \N 25841 M.nanchititlana Mimosa Mimosa nanchititlana \N \N \N \N \N 25842 I.bicapitata Iris Iris bicapitata \N \N \N \N \N 25843 \N tribe Lindackerieae \N \N \N \N \N 25844 \N genus Sinolimprichtia \N \N \N \N \N 25845 M.shepardii Medicago Medicago shepardii \N \N \N \N \N 25846 T.magnusiana Tillandsia Tillandsia magnusiana \N \N \N \N \N 25847 P.ornithopoda Potentilla Potentilla ornithopoda \N \N \N \N \N 25848 \N genus Aspazoma \N \N \N \N \N 25849 T.sintenisii Trifolium Trifolium sintenisii \N \N \N \N \N 25850 G.fistulosa Gagea Gagea fistulosa \N \N \N \N \N 25851 H.thibetanus Helleborus Helleborus thibetanus \N \N \N \N \N 25852 S.balansae Sisyrinchium Sisyrinchium balansae \N \N \N \N \N 25853 S.johnsonii Smelowskia Smelowskia johnsonii \N \N \N \N \N 25854 R.311 Rytidosperma Rytidosperma aff. setaceum Pirie 311 \N \N \N \N \N 25855 A.macrotis Asclepias Asclepias macrotis \N \N \N \N \N 25856 I.mexicanum Illicium Illicium mexicanum \N \N \N \N \N 25857 P.paranganiensis Pfeiffera Pfeiffera paranganiensis \N \N \N \N \N 25858 B.acuminata Blepharis Blepharis acuminata \N \N \N \N \N 25859 \N varietas Pseudophoenix sargentii var. navassana \N \N \N \N \N 25860 C.transarisanensis Camellia Camellia transarisanensis \N \N \N \N \N 25861 S.philippinensis Sararanga Sararanga philippinensis \N \N \N \N \N 25862 P.tomentosa Palaua Palaua tomentosa \N \N \N \N \N 25863 \N genus Eupomatia \N \N \N \N \N 25864 M.novae-zelandiae Melicytus Melicytus novae-zelandiae \N \N \N \N \N 25865 T.chiriquensis Telipogon Telipogon chiriquensis \N \N \N \N \N 25866 C.30 Columnea Columnea sp. Lindqvist and Albert 30 \N \N \N \N \N 25867 C.fruticosa Ceballosia Ceballosia fruticosa \N \N \N \N \N 25868 D.tucumanensis Draba Draba tucumanensis \N \N \N \N \N 25869 \N genus Baudouinia \N \N \N \N \N 25870 \N genus Nothocestrum \N \N \N \N \N 25871 \N genus Scorodocarpus \N \N \N \N \N 25872 A.oblongifolia Alnus Alnus oblongifolia \N \N \N \N \N 25873 H.eremophila Hoffmannseggia Hoffmannseggia eremophila \N \N \N \N \N 25874 D.chouardii Dioscorea Dioscorea chouardii Pyrenean yam \N \N \N \N 25875 T.cooleyi Thalictrum Thalictrum cooleyi \N \N \N \N \N 25876 I.emeiensis Indocalamus Indocalamus emeiensis \N \N \N \N \N 25877 A.pubescens Acacia Acacia pubescens \N \N \N \N \N 25878 M.pungens Muhlenbergia Muhlenbergia pungens \N \N \N \N \N 25879 C.recurvatum Calophyllum Calophyllum recurvatum \N \N \N \N \N 25880 D.oceanicum Dracophyllum Dracophyllum oceanicum \N \N \N \N \N 25881 A.chrysantherum Allium Allium chrysantherum \N \N \N \N \N 25882 C.tubulosus Cnidoscolus Cnidoscolus tubulosus \N \N \N \N \N 25883 \N subspecies Crocus imperati subsp. suaveolens \N \N \N \N \N 25884 L.komarovii Lathyrus Lathyrus komarovii \N \N \N \N \N 25885 C.alpicola Cirsium Cirsium alpicola \N \N \N \N \N 25886 S.hemsleyi Sorbus Sorbus hemsleyi \N \N \N \N \N 25887 N.breedlovei Neogoezia Neogoezia breedlovei \N \N \N \N \N 25888 P.abrotanifolium Pelargonium Pelargonium abrotanifolium \N \N \N \N \N 25889 \N genus Loasa \N \N \N \N \N 25890 C.munzii Cylindropuntia Cylindropuntia munzii \N \N \N \N \N 25891 B.francoisii Begonia Begonia francoisii \N \N \N \N \N 25892 P.costata Pseuduvaria Pseuduvaria costata \N \N \N \N \N 25893 C.saxicola Corydalis Corydalis saxicola \N \N \N \N \N 25894 A.palmense Aichryson Aichryson palmense \N \N \N \N \N 25895 S.bracteata Stylosanthes Stylosanthes bracteata \N \N \N \N \N 25896 P.gracilis Pedicularis Pedicularis gracilis \N \N \N \N \N 25897 \N genus Illecebrum \N \N \N \N \N 25898 \N genus Rufodorsia \N \N \N \N \N 25899 \N genus Sempervivella \N \N \N \N \N 25900 M.monandra Macaranga Macaranga monandra \N \N \N \N \N 25901 \N genus Petagnaea \N \N \N \N \N 25902 A.humifusum Astroloma Astroloma humifusum \N \N \N \N \N 25903 \N subspecies Aspalathus spinescens subsp. lepida \N \N \N \N \N 25904 D.paradoxa Dionysia Dionysia paradoxa \N \N \N \N \N 25905 F.font-queri Festuca Festuca font-queri \N \N \N \N \N 25906 L.95019 Lamium Lamium sp. Qiu 95019 \N \N \N \N \N 25907 V.brachycalyx Vernonia Vernonia brachycalyx \N \N \N \N \N 25908 C.boudieri Cynanchum Cynanchum boudieri \N \N \N \N \N 25909 V.lactiflora Viola Viola lactiflora \N \N \N \N \N 25910 E.marocanum Eryngium Eryngium marocanum \N \N \N \N \N 25911 \N genus Calibanus \N \N \N \N \N 25912 \N subspecies Annona haitiensis subsp. appendiculata \N \N \N \N \N 25913 M.elongata Mammillaria Mammillaria elongata \N \N \N \N \N 25914 P.microphylla Planchonella Planchonella microphylla \N \N \N \N \N 25915 \N varietas Gasteria bicolor var. bicolor \N \N \N \N \N 25916 S.albus Symphoricarpos Symphoricarpos albus common snowberry \N \N \N \N 25917 \N genus Kirkia \N \N \N \N \N 25918 E.macroceras Euphorbia Euphorbia macroceras \N \N \N \N \N 25919 M.oligosperma Mentzelia Mentzelia oligosperma chickenthief \N \N \N \N 25920 \N genus Vania \N \N \N \N \N 25921 O.zeyheri Oxalis Oxalis zeyheri \N \N \N \N \N 25922 \N genus Boeberoides \N \N \N \N \N 25923 \N genus Crassula \N \N \N \N \N 25924 A.breviglumis Austrostipa Austrostipa breviglumis \N \N \N \N \N 25925 P.lowanensis Poa Poa lowanensis \N \N \N \N \N 25926 R.yurimaguensis Ruellia Ruellia yurimaguensis \N \N \N \N \N 25927 J.humile Jasminum Jasminum humile Italian yellow jasmine \N \N \N \N 25928 D.cataractarum Doronicum Doronicum cataractarum \N \N \N \N \N 25929 \N family Saxifragaceae saxifrage family \N \N \N \N 25930 G.bicolor Grewia Grewia bicolor \N \N \N \N \N 25931 H.martinezii Habranthus Habranthus martinezii \N \N \N \N \N 25932 \N varietas Papaver nudicaule var. aquilegioides \N \N \N \N \N 25933 \N forma Ficus formosana f. formosana \N \N \N \N \N 25934 C.boisii Caragana Caragana boisii \N \N \N \N \N 25935 \N subspecies Digitalis ferruginea subsp. ferruginea \N \N \N \N \N 25936 G.hirsutum Gossypium Gossypium hirsutum American cotton,cotton,upland cotton \N \N \N \N 25937 \N genus Loefgrenianthus \N \N \N \N \N 25938 \N genus Chamaerhodos \N \N \N \N \N 25939 Q.cedrosensis Quercus Quercus cedrosensis \N \N \N \N \N 25940 R.sikangense Rhododendron Rhododendron sikangense \N \N \N \N \N 25941 \N subspecies Linum monogynum subsp. monogynum \N \N \N \N \N 25942 T.pedunculatum Typhonium Typhonium pedunculatum \N \N \N \N \N 25943 \N genus Trichostigma \N \N \N \N \N 25944 \N genus Ypsilandra \N \N \N \N \N 25945 A.napiger Amorphophallus Amorphophallus napiger \N \N \N \N \N 25946 D.sapellonis Delphinium Delphinium sapellonis \N \N \N \N \N 25947 M.variabilis Moraea Moraea variabilis \N \N \N \N \N 25948 B.americana Buddleja Buddleja americana \N \N \N \N \N 25949 X.pinifolia Xerophyta Xerophyta pinifolia \N \N \N \N \N 25950 C.teres Ceratostylis Ceratostylis teres \N \N \N \N \N 25951 C.megabracteatum Ceratostema Ceratostema megabracteatum \N \N \N \N \N 25952 A.rude Allium Allium rude \N \N \N \N \N 25953 M.505221 Myoporum Myoporum aff. insulare CHR 505221 \N \N \N \N \N 25954 C.collina Chromolaena Chromolaena collina \N \N \N \N \N 25955 \N genus Burkea \N \N \N \N \N 25956 E.H2193 Escobaria Escobaria sp. H2193 \N \N \N \N \N 25957 S.mongolica Spiraea Spiraea mongolica \N \N \N \N \N 25958 C.ecbatanensis Cousinia Cousinia ecbatanensis \N \N \N \N \N 25959 \N genus Hesperalbizia \N \N \N \N \N 25960 P.salina Phacelia Phacelia salina \N \N \N \N \N 25961 C.orcuttianus Cordylanthus Cordylanthus orcuttianus \N \N \N \N \N 25962 I.buxifolia Ilex Ilex buxifolia \N \N \N \N \N 25963 R.serbicus Ranunculus Ranunculus serbicus \N \N \N \N \N 25964 E.leptocephala Euthamia Euthamia leptocephala \N \N \N \N \N 25965 C.laxiflora Cistanthe Cistanthe laxiflora \N \N \N \N \N 25966 E.nakaharaei Epigeneium Epigeneium nakaharaei \N \N \N \N \N 25967 P.alchemilloides Potentilla Potentilla alchemilloides \N \N \N \N \N 25968 A.junodii Anisopappus Anisopappus junodii \N \N \N \N \N 25969 D.pinifolia Dodonaea Dodonaea pinifolia \N \N \N \N \N 25970 M.pulchellus Mimulus Mimulus pulchellus pansy monkeyflower \N \N \N \N 25971 P.rosei Physaria Physaria rosei \N \N \N \N \N 25972 A.micranthus Araeococcus Araeococcus micranthus \N \N \N \N \N 25973 O.reflexifolius Ozothamnus Ozothamnus reflexifolius \N \N \N \N \N 25974 E.maculatum Eutrochium Eutrochium maculatum spotted Joe-pyeweed \N \N \N \N 25975 P.microphylla Parkinsonia Parkinsonia microphylla yellow paloverde \N \N \N \N 25976 O.oregana Oxalis Oxalis oregana \N \N \N \N \N 25977 M.cornuta Monanthocitrus Monanthocitrus cornuta \N \N \N \N \N 25978 F.preussii Ficus Ficus preussii \N \N \N \N \N 25979 L.MP-2011 Ledebouria Ledebouria sp. 4 MP-2011 \N \N \N \N \N 25980 C.sulcatus Corchorus Corchorus sulcatus \N \N \N \N \N 25981 B.115 Begonia Begonia cf. rubella Forrest 115 \N \N \N \N \N 25982 Z.colensoi Zotovia Zotovia colensoi \N \N \N \N \N 25983 D.auriculatum Dichocarpum Dichocarpum auriculatum \N \N \N \N \N 25984 \N subtribe Pogoniinae \N \N \N \N \N 25985 E.yemenicus Echinops Echinops yemenicus \N \N \N \N \N 25986 \N genus Euphorianthus \N \N \N \N \N 25987 V.archboldii Veronica Veronica archboldii \N \N \N \N \N 25988 C.frontinoensis Cyrtidiorchis Cyrtidiorchis frontinoensis \N \N \N \N \N 25989 E.falcata Eperua Eperua falcata \N \N \N \N \N 25990 P.thyrsiflora Pagamea Pagamea thyrsiflora \N \N \N \N \N 25991 C.baillonis Cuphea Cuphea baillonis \N \N \N \N \N 25992 E.prieurii Enteropogon Enteropogon prieurii \N \N \N \N \N 25993 S.frantzii Stachytarpheta Stachytarpheta frantzii \N \N \N \N \N 25994 C.rutidosperma Cleome Cleome rutidosperma \N \N \N \N \N 25995 L.dielsianaei Ligusticopsis Ligusticopsis dielsianaei \N \N \N \N \N 25996 S.ostenfeldii Silene Silene ostenfeldii \N \N \N \N \N 25997 S.143 Symbegonia Symbegonia sp. Forrest 143 \N \N \N \N \N 25998 S.kautskyi Sinningia Sinningia kautskyi \N \N \N \N \N 25999 C.sphenophylla Cardamine Cardamine sphenophylla \N \N \N \N \N 26000 C.acapulcensis Croton Croton acapulcensis \N \N \N \N \N 26001 \N genus Phoenicaulis \N \N \N \N \N 26002 A.filicaulis Aechmea Aechmea filicaulis \N \N \N \N \N 26003 A.sceptrum-aureum Aspalathus Aspalathus sceptrum-aureum \N \N \N \N \N 26004 S.microphylla Scaevola Scaevola microphylla \N \N \N \N \N 26005 L.monostachya Linospadix Linospadix monostachya \N \N \N \N \N 26006 D.caulescens Disa Disa caulescens \N \N \N \N \N 26007 F.ferganensis Ferula Ferula ferganensis \N \N \N \N \N 26008 S.thomsonii Swertia Swertia thomsonii \N \N \N \N \N 26009 S.gracilis Sphaerocoryne Sphaerocoryne gracilis \N \N \N \N \N 26010 D.frutescens Didissandra Didissandra frutescens \N \N \N \N \N 26011 \N subspecies Echium stenosiphon subsp. glabrescens \N \N \N \N \N 26012 \N subspecies Calceolaria filicaulis subsp. luxurians \N \N \N \N \N 26013 \N genus Xerodraba \N \N \N \N \N 26014 H.sumatrana Heritiera Heritiera sumatrana \N \N \N \N \N 26015 D.halliana Deinandra Deinandra halliana \N \N \N \N \N 26016 \N varietas Eragrostis lehmanniana var. lehmanniana \N \N \N \N \N 26017 \N subspecies Juncus fontanesii subsp. brachyanthus \N \N \N \N \N 26018 A.scariosa Anthemis Anthemis scariosa \N \N \N \N \N 26019 A.transiens Alchemilla Alchemilla transiens \N \N \N \N \N 26020 C.borneensis Crypteronia Crypteronia borneensis \N \N \N \N \N 26021 A.lutescens Arachis Arachis lutescens \N \N \N \N \N 26022 A.glabra Aletris Aletris glabra \N \N \N \N \N 26023 P.heteroclada Phyllostachys Phyllostachys heteroclada \N \N \N \N \N 26024 B.burdettii Banksia Banksia burdettii \N \N \N \N \N 26025 \N genus Lambertia \N \N \N \N \N 26026 P.cavendishioides Piper Piper cavendishioides \N \N \N \N \N 26027 A.tambacoundensis Aeschynomene Aeschynomene tambacoundensis \N \N \N \N \N 26028 \N genus Adenoncos \N \N \N \N \N 26029 H.nutans Hedyosmum Hedyosmum nutans \N \N \N \N \N 26030 E.triaculeata Euphorbia Euphorbia triaculeata \N \N \N \N \N 26031 \N genus Spegazziniophytum \N \N \N \N \N 26032 A.parvifolius Aspidostemon Aspidostemon parvifolius \N \N \N \N \N 26033 M.cochabambensis Macrocarpaea Macrocarpaea cochabambensis \N \N \N \N \N 26034 A.sapindina Aglaia Aglaia sapindina \N \N \N \N \N 26035 S.dolosa Selago Selago dolosa \N \N \N \N \N 26036 K.thyrsiflora Kalanchoe Kalanchoe thyrsiflora \N \N \N \N \N 26037 \N genus Posadaea \N \N \N \N \N 26038 E.qarad Euphorbia Euphorbia qarad \N \N \N \N \N 26039 E.reticulatum Epimedium Epimedium reticulatum \N \N \N \N \N 26040 \N genus Blastocaulon \N \N \N \N \N 26041 S.violascens Silene Silene violascens \N \N \N \N \N 26042 B.australis Barbarea Barbarea australis \N \N \N \N \N 26043 C.nardus Cymbopogon Cymbopogon nardus citronella grass \N \N \N \N 26044 L.petiolata Lobelia Lobelia petiolata \N \N \N \N \N 26045 P.hisauchii Poa Poa hisauchii \N \N \N \N \N 26046 P.'Tongariro' Pimelea Pimelea sp. 'Tongariro' \N \N \N \N \N 26047 \N genus Peronema \N \N \N \N \N 26048 I.hartwegii Ipomoea Ipomoea hartwegii \N \N \N \N \N 26049 \N genus Diheteropogon \N \N \N \N \N 26050 F.pachystemon Ficus Ficus pachystemon \N \N \N \N \N 26051 \N genus Geogenanthus \N \N \N \N \N 26052 \N genus Ormocarpum \N \N \N \N \N 26053 W.masoalae Warneckea Warneckea masoalae \N \N \N \N \N 26054 H.leucocephalum Helichrysum Helichrysum leucocephalum \N \N \N \N \N 26055 \N subspecies Cynanchum lineare subsp. lineare \N \N \N \N \N 26056 H.longipes Hugonia Hugonia longipes \N \N \N \N \N 26057 G.ciliata Gentianopsis Gentianopsis ciliata \N \N \N \N \N 26058 M.didyma Monarda Monarda didyma Oswego tea,bee balm \N \N \N \N 26059 S.oshidensis Sasa Sasa oshidensis \N \N \N \N \N 26060 A.anaphaloides Antennaria Antennaria anaphaloides \N \N \N \N \N 26061 S.junceus Senecio Senecio junceus \N \N \N \N \N 26062 L.laxa Lysimachia Lysimachia laxa \N \N \N \N \N 26063 C.pygmaea Carlina Carlina pygmaea \N \N \N \N \N 26064 \N genus Sphaeralcea \N \N \N \N \N 26065 R.groenlandicum Rhododendron Rhododendron groenlandicum Labrador-tea \N \N \N \N 26066 O.strictus Oreobolus Oreobolus strictus \N \N \N \N \N 26067 \N varietas Platanus racemosa var. racemosa \N \N \N \N \N 26068 E.rossiana Euphorbia Euphorbia rossiana \N \N \N \N \N 26069 V.magellensis Viola Viola magellensis \N \N \N \N \N 26070 \N tribe Orchideae \N \N \N \N \N 26071 L.cuspidata Lysipomia Lysipomia cuspidata \N \N \N \N \N 26072 C.formosana Comanthosphace Comanthosphace formosana \N \N \N \N \N 26073 V.triloba Veronica Veronica triloba \N \N \N \N \N 26074 O.subverticillata Oxera Oxera subverticillata \N \N \N \N \N 26075 \N genus Pseudartabotrys \N \N \N \N \N 26076 U.perplexa Uncinia Uncinia perplexa \N \N \N \N \N 26077 C.epirota Centaurea Centaurea epirota \N \N \N \N \N 26078 G.stellatum Galium Galium stellatum \N \N \N \N \N 26079 S.hochstetterana Stipagrostis Stipagrostis hochstetterana \N \N \N \N \N 26080 \N genus Bretschneidera \N \N \N \N \N 26081 \N genus Clerodendrum \N \N \N \N \N 26082 \N genus Planea \N \N \N \N \N 26083 E.quadrangularis Epischoenus Epischoenus quadrangularis \N \N \N \N \N 26084 D.jatrophoides Digitacalia Digitacalia jatrophoides \N \N \N \N \N 26085 H.waimeae Hibiscus Hibiscus waimeae \N \N \N \N \N 26086 \N genus Berberidopsis \N \N \N \N \N 26087 P.maculata Phlox Phlox maculata \N \N \N \N \N 26088 C.VOV-2010 Carex Carex sp. VOV-2010 \N \N \N \N \N 26089 P.terminalioides Pittosporum Pittosporum terminalioides \N \N \N \N \N 26090 A.scabra Armeria Armeria scabra \N \N \N \N \N 26091 H.turgida Haworthia Haworthia turgida \N \N \N \N \N 26092 A.dissectum Argyranthemum Argyranthemum dissectum \N \N \N \N \N 26093 \N subspecies Artemisia arbuscula subsp. longiloba \N \N \N \N \N 26094 T.polycephala Thurnia Thurnia polycephala \N \N \N \N \N 26095 S.erecta Schismatoglottis Schismatoglottis erecta \N \N \N \N \N 26096 C.castellana Cardamine Cardamine castellana \N \N \N \N \N 26097 J.sigillata Juglans Juglans sigillata \N \N \N \N \N 26098 S.pedemontanum Solanum Solanum pedemontanum \N \N \N \N \N 26099 B.cruciata Berkheya Berkheya cruciata \N \N \N \N \N 26100 \N family Cyclanthaceae panama-hat family \N \N \N \N 26101 C.pulchra Calystegia Calystegia pulchra \N \N \N \N \N 26102 C.jacquinii Crepis Crepis jacquinii \N \N \N \N \N 26103 P.arborescens Pittosporum Pittosporum arborescens \N \N \N \N \N 26104 S.kotschyi Scorzonera Scorzonera kotschyi \N \N \N \N \N 26105 A.complicatus Adenocarpus Adenocarpus aureus x Adenocarpus complicatus \N \N \N \N \N 26106 \N varietas Rosa banksiae var. banksiae \N \N \N \N \N 26107 E.ternatum Eryngium Eryngium ternatum \N \N \N \N \N 26108 A.hainanensis Alpinia Alpinia hainanensis cao dou kou \N \N \N \N 26109 E.pseudepidendrum Epidendrum Epidendrum pseudepidendrum \N \N \N \N \N 26110 \N genus Stegnosperma \N \N \N \N \N 26111 P.quaerens Packera Packera quaerens \N \N \N \N \N 26112 O.fluviatilis Oenanthe Oenanthe fluviatilis \N \N \N \N \N 26113 L.longicruris Linospadix Linospadix longicruris \N \N \N \N \N 26114 \N genus Montitega \N \N \N \N \N 26115 \N forma Aristolochia kaempferi f. heterophylla \N \N \N \N \N 26116 S.imbricatus Syngonanthus Syngonanthus imbricatus \N \N \N \N \N 26117 E.cinerea Echinophora Echinophora cinerea \N \N \N \N \N 26118 \N subspecies Hibiscus moscheutos subsp. palustris \N \N \N \N \N 26119 B.ciliata Blephilia Blephilia ciliata \N \N \N \N \N 26120 \N genus Cymbopappus \N \N \N \N \N 107931 \N genus Paracroton \N \N \N \N \N 26121 L.leonotis Lithospermum Lithospermum leonotis \N \N \N \N \N 26122 I.fluitans Isolepis Isolepis fluitans \N \N \N \N \N 26123 X.cultivar x Odontocidium x Odontocidium hybrid cultivar \N \N \N \N \N 26124 I.narbutii Iris Iris narbutii \N \N \N \N \N 26125 S.praestans Sophronitis Sophronitis praestans \N \N \N \N \N 26126 M.caudatilimba Mastixia Mastixia caudatilimba \N \N \N \N \N 26127 A.vespertina Aridaria Aridaria vespertina \N \N \N \N \N 26128 C.laurifolius Cocculus Cocculus laurifolius \N \N \N \N \N 26129 P.reptans Potentilla Potentilla reptans \N \N \N \N \N 26130 \N varietas Correa lawrenceana var. glandulifera \N \N \N \N \N 26131 M.nivale Macropodium Macropodium nivale \N \N \N \N \N 26132 \N genus Varronia \N \N \N \N \N 26133 H.flexuosum Helenium Helenium flexuosum \N \N \N \N \N 26134 H.glabrum Haematodendron Haematodendron glabrum \N \N \N \N \N 26135 E.scoparius Enneapogon Enneapogon scoparius \N \N \N \N \N 26136 M.campanulata Malesherbia Malesherbia campanulata \N \N \N \N \N 26137 C.setosa Conostylis Conostylis setosa \N \N \N \N \N 26138 O.pulchella Oxera Oxera pulchella \N \N \N \N \N 26139 D.tenuifolium Distichoselinum Distichoselinum tenuifolium \N \N \N \N \N 26140 G.densiflorum Geodorum Geodorum densiflorum \N \N \N \N \N 26141 P.stipulosa Poecilocalyx Poecilocalyx stipulosa \N \N \N \N \N 26142 \N varietas Santalum paniculatum var. paniculatum \N \N \N \N \N 26143 P.appendiculata Pericallis Pericallis appendiculata \N \N \N \N \N 26144 B.nervosa Bauhinia Bauhinia nervosa \N \N \N \N \N 26145 S.gilgiana Salix Salix gilgiana \N \N \N \N \N 26146 C.auriculata Chirita Chirita auriculata \N \N \N \N \N 26147 C.australis Cuscuta Cuscuta australis \N \N \N \N \N 26148 \N subfamily Pooideae \N \N \N \N \N 26149 S.chlorantha Scaphyglottis Scaphyglottis chlorantha \N \N \N \N \N 26150 P.spinosa Pallenis Pallenis spinosa \N \N \N \N \N 26151 \N genus Argania \N \N \N \N \N 26152 E.schomburgkii Enterolobium Enterolobium schomburgkii \N \N \N \N \N 26153 T.longirostris Tragopogon Tragopogon longirostris \N \N \N \N \N 26154 B.plagiocarpa Banksia Banksia plagiocarpa \N \N \N \N \N 26155 A.s.n. Angraecopsis Angraecopsis sp. Schoenbrunn s.n. \N \N \N \N \N 26156 S.gramineus Senecio Senecio gramineus \N \N \N \N \N 26157 S.monardifolia Stevia Stevia monardifolia \N \N \N \N \N 26158 X.aurantiacus Xanthostemon Xanthostemon aurantiacus \N \N \N \N \N 26159 O.tenuoides Oncidium Oncidium tenuoides \N \N \N \N \N 26160 S.sordida Silene Silene sordida \N \N \N \N \N 26161 F.pauciflora Frankenia Frankenia pauciflora \N \N \N \N \N 26162 E.vernicosum Epilobium Epilobium vernicosum \N \N \N \N \N 26163 A.eschscholtzianus Aphragmus Aphragmus eschscholtzianus Aleutian cress \N \N \N \N 26164 M.howellii Montia Montia howellii \N \N \N \N \N 26165 S.villosa Scilla Scilla villosa \N \N \N \N \N 26166 E.nudicaule Eryngium Eryngium nudicaule \N \N \N \N \N 26167 \N varietas Rosa nutkana var. hispida \N \N \N \N \N 26168 C.delavayi Castanopsis Castanopsis delavayi \N \N \N \N \N 26169 D.stylosa Draba Draba stylosa \N \N \N \N \N 26170 O.latifolia Oxalis Oxalis aff. latifolia \N \N \N \N \N 26171 D.dasycarpus Dictamnus Dictamnus dasycarpus \N \N \N \N \N 26172 H.ovata Heisteria Heisteria ovata \N \N \N \N \N 26173 S.lignescens Solanum Solanum lignescens \N \N \N \N \N 26174 G.obovatum Glochidion Glochidion obovatum \N \N \N \N \N 26175 D.parviflora Digitalis Digitalis parviflora \N \N \N \N \N 26176 \N family Commelinaceae spiderwort family \N \N \N \N 26177 E.acies Eucalyptus Eucalyptus acies Woolbernup mallee \N \N \N \N 26178 M.androcephalanthos Martellidendron Martellidendron androcephalanthos \N \N \N \N \N 26179 S.Vietnam Schefflera Schefflera sp. Vietnam \N \N \N \N \N 26180 A.scoparia Artemisia Artemisia scoparia \N \N \N \N \N 26181 S.angustifolia Swertia Swertia angustifolia \N \N \N \N \N 26182 V.laxa Veronica Veronica laxa \N \N \N \N \N 26183 C.teretifolia Cliffortia Cliffortia teretifolia \N \N \N \N \N 26184 B.SH-2010 Brucea Brucea sp. SH-2010 \N \N \N \N \N 26185 \N genus Daucosma \N \N \N \N \N 26186 \N varietas Festuca paniculata var. moleroi \N \N \N \N \N 26187 \N genus Myrsine \N \N \N \N \N 26188 C.conifera Cliffortia Cliffortia conifera \N \N \N \N \N 26189 M.SGR-2009 Morinda Morinda sp. 9 SGR-2009 \N \N \N \N \N 26190 G.fragilis Globba Globba fragilis \N \N \N \N \N 26191 N.722-01 Nymphaea Nymphaea sp. 722-01 \N \N \N \N \N 26192 L.houdyshelii Lycoris Lycoris houdyshelii \N \N \N \N \N 26193 A.stracheyi Allium Allium stracheyi jambu \N \N \N \N 26194 \N genus Parabaena \N \N \N \N \N 26195 T.polyodon Trifolium Trifolium polyodon \N \N \N \N \N 26196 S.greggii Synthlipsis Synthlipsis greggii \N \N \N \N \N 26197 T.265-2 unclassified Taraxacum Taraxacum (sect. Naevosa) sp. 265-2 \N \N \N \N \N 26198 \N forma Fragaria chiloensis f. patagonica \N \N \N \N \N 26199 M.henryi Magnolia Magnolia henryi \N \N \N \N \N 26200 M.maritima Mertensia Mertensia maritima \N \N \N \N \N 26201 A.exotropica Amorimia Amorimia exotropica \N \N \N \N \N 26202 \N no rank Saccharum hybrid cultivar Co 419 \N \N \N \N \N 26203 E.ventorum Encelia Encelia ventorum \N \N \N \N \N 26204 A.xanthorrhiza Arracacia Arracacia xanthorrhiza arracacha \N \N \N \N 26205 R.cernua Renealmia Renealmia cernua \N \N \N \N \N 26206 \N genus Beguea \N \N \N \N \N 26207 S.exappendiculata Shortia Shortia exappendiculata \N \N \N \N \N 26208 \N subspecies Anthemis melampodina subsp. melampodina \N \N \N \N \N 26209 \N varietas Coprosma propinqua var. martinii \N \N \N \N \N 26210 M.fragilis Muhlenbergia Muhlenbergia fragilis \N \N \N \N \N 26211 T.2682 Tristellateia Tristellateia sp. Lucile & Rakotozafy 2682 \N \N \N \N \N 26212 C.heitzii Calpocalyx Calpocalyx heitzii \N \N \N \N \N 26213 \N genus Austrostipa \N \N \N \N \N 26214 P.8419 Prunus Prunus sp. Wen 8419 \N \N \N \N \N 26215 D.mespiliformis Diospyros Diospyros mespiliformis \N \N \N \N \N 26216 \N genus Pancheria \N \N \N \N \N 26217 L.fischeri Ligularia Ligularia fischeri \N \N \N \N \N 26218 H.engleri Hibiscus Hibiscus engleri \N \N \N \N \N 26219 C.grandifolia Cousinia Cousinia grandifolia \N \N \N \N \N 26220 A.punicea Alamania Alamania punicea \N \N \N \N \N 26221 \N subspecies Leonardoxa africana subsp. africana \N \N \N \N \N 26222 U.hirtiflora Uroskinnera Uroskinnera hirtiflora \N \N \N \N \N 26223 A.322KM Acianthus Acianthus cf. elegans 322KM \N \N \N \N \N 26224 B.affinis Bistorta Bistorta affinis \N \N \N \N \N 26225 S.granulosus Sauropus Sauropus granulosus \N \N \N \N \N 26226 L.halophilus Lotus Lotus halophilus \N \N \N \N \N 26227 S.yoshimurae Scrophularia Scrophularia yoshimurae \N \N \N \N \N 26228 I.caroliniana Indigofera Indigofera caroliniana \N \N \N \N \N 26229 T.W2533 Telipogon Telipogon sp. Whitten W2533 \N \N \N \N \N 26230 A.racemosa Agonandra Agonandra racemosa \N \N \N \N \N 26231 S.borneensis Strychnos Strychnos borneensis \N \N \N \N \N 26232 E.quadrangulata Eleocharis Eleocharis quadrangulata \N \N \N \N \N 26233 L.pubescens Lupinus Lupinus pubescens \N \N \N \N \N 26234 C.ochraceus Cyperus Cyperus ochraceus \N \N \N \N \N 26235 B.astarteoides Baeckea Baeckea astarteoides \N \N \N \N \N 26236 S.trichoides Stipa Stipa trichoides \N \N \N \N \N 26237 A.somalensis Aerangis Aerangis somalensis \N \N \N \N \N 26238 C.IT-2010d Cucumis Cucumis sp. IT-2010d \N \N \N \N \N 26239 B.fontanesii Bunium Bunium fontanesii \N \N \N \N \N 26240 \N genus Helicodiceros \N \N \N \N \N 26241 B.cathayana Begonia Begonia cathayana \N \N \N \N \N 26242 C.ANM-2010 Cedrela Cedrela sp. 1 ANM-2010 \N \N \N \N \N 26243 G.tyrrhena Genista Genista tyrrhena \N \N \N \N \N 26244 P.87105 Pachyphyllum Pachyphyllum sp. Chase 87105 \N \N \N \N \N 26245 \N genus Granitites \N \N \N \N \N 26246 P.littoralis Pluchea Pluchea littoralis \N \N \N \N \N 26247 B.raciborskii Bogoria Bogoria raciborskii \N \N \N \N \N 26248 P.humboldtianum Paspalum Paspalum humboldtianum \N \N \N \N \N 26249 P.speciosa Pappostipa Pappostipa speciosa \N \N \N \N \N 26250 A.melanantherum Allium Allium melanantherum \N \N \N \N \N 26251 C.calisaya Cinchona Cinchona calisaya quinine,yellowbark \N \N \N \N 26252 L.henryi Ligustrum Ligustrum henryi \N \N \N \N \N 26253 P.coronata Phyllomelia Phyllomelia coronata \N \N \N \N \N 26254 I.flanaganae Impatiens Impatiens flanaganae \N \N \N \N \N 26255 C.squamulatus Cenchrus Cenchrus americanus x Cenchrus squamulatus \N \N \N \N \N 26256 S.rubriflora Sanicula Sanicula rubriflora \N \N \N \N \N 26257 R.berteroanum Rhytidophyllum Rhytidophyllum berteroanum \N \N \N \N \N 26258 K.rosea Kielmeyera Kielmeyera rosea \N \N \N \N \N 26259 C.lindleyi Clerodendrum Clerodendrum lindleyi \N \N \N \N \N 26260 L.annularis Lessertia Lessertia annularis \N \N \N \N \N 26261 F.abnormalis Fuirena Fuirena abnormalis \N \N \N \N \N 26262 E.jolkinii Euphorbia Euphorbia jolkinii \N \N \N \N \N 26263 A.firingalavensis Adenia Adenia firingalavensis \N \N \N \N \N 26264 \N genus Epilobium \N \N \N \N \N 26265 R.echinellum Ribes Ribes echinellum Miccosukee gooseberry \N \N \N \N 26266 G.tessmannii Guibourtia Guibourtia tessmannii \N \N \N \N \N 26267 S.wendlandii Streptocarpus Streptocarpus wendlandii \N \N \N \N \N 26268 B.adenopoda Banisteriopsis Banisteriopsis adenopoda \N \N \N \N \N 26269 D.tuberculatum Dendrochilum Dendrochilum tuberculatum \N \N \N \N \N 26270 L.bicolor Leptosiphon Leptosiphon bicolor \N \N \N \N \N 26271 R.hierosolymitanus Ranunculus Ranunculus hierosolymitanus \N \N \N \N \N 26272 P.julica Pedicularis Pedicularis julica \N \N \N \N \N 26273 O.ammophila Oenothera Oenothera ammophila \N \N \N \N \N 26274 C.eurybotrya Callerya Callerya eurybotrya \N \N \N \N \N 26275 P.scabiosifolia Patrinia Patrinia scabiosifolia \N \N \N \N \N 26276 C.crocodilorum Croton Croton crocodilorum \N \N \N \N \N 26277 M.boninensis Malaxis Malaxis boninensis \N \N \N \N \N 26278 D.brevicolumna Dalechampia Dalechampia brevicolumna \N \N \N \N \N 26279 P.spicatum Pomatocalpa Pomatocalpa spicatum \N \N \N \N \N 26280 C.flexuosa Cristaria Cristaria flexuosa \N \N \N \N \N 26281 \N subspecies Dombeya ferruginea subsp. borbonica \N \N \N \N \N 26282 N.proceriflora Neobassia Neobassia proceriflora \N \N \N \N \N 26283 S.4017 Styrax Styrax sp. Amorim 4017 \N \N \N \N \N 26284 H.subviridis Habenaria Habenaria subviridis \N \N \N \N \N 26285 N.ramboutan-ake Nephelium Nephelium ramboutan-ake pulasan \N \N \N \N 26286 K.flava Klattia Klattia flava \N \N \N \N \N 26287 \N subfamily Calamoideae \N \N \N \N \N 26288 \N varietas Bistorta vivipara var. vivipara \N \N \N \N \N 26289 N.lappaceum Nephelium Nephelium lappaceum rambutan \N \N \N \N 26290 P.bicolor Phacelia Phacelia bicolor \N \N \N \N \N 26291 T.glicensteinii Telipogon Telipogon glicensteinii \N \N \N \N \N 26292 \N genus Oreobambos \N \N \N \N \N 26293 S.brevihamatus Sclerocactus Sclerocactus brevihamatus \N \N \N \N \N 26294 G.pilosa Gentiana Gentiana pilosa \N \N \N \N \N 26295 V.australis Vittadinia Vittadinia australis \N \N \N \N \N 26296 C.mongshanica Camellia Camellia mongshanica \N \N \N \N \N 26297 B.525 Besleria Besleria sp. Amaya & Smith 525 \N \N \N \N \N 26298 H.stenopterum Helichrysum Helichrysum stenopterum \N \N \N \N \N 26299 B.hekouensis Begonia Begonia hekouensis \N \N \N \N \N 26300 D.lowianus Durio Durio lowianus \N \N \N \N \N 26301 R.aganniphum Rhododendron Rhododendron aganniphum \N \N \N \N \N 26302 S.tianschanica Stipa Stipa tianschanica \N \N \N \N \N 26303 P.JTM-2009b Plumatichilos Plumatichilos sp. JTM-2009b \N \N \N \N \N 26304 B.minutum Bulbophyllum Bulbophyllum minutum \N \N \N \N \N 26305 A.molle Antirrhinum Antirrhinum majus x Antirrhinum molle \N \N \N \N \N 26306 C.paucipetala Cuphea Cuphea paucipetala \N \N \N \N \N 26307 M.auyantepuiensis Maxillaria Maxillaria auyantepuiensis \N \N \N \N \N 26308 \N genus Oblivia \N \N \N \N \N 26309 \N genus Arctium burdocks \N \N \N \N 26310 I.243 Indocalamus Indocalamus aff. latifolius Triplett 243 \N \N \N \N \N 26311 C.acuminata Cyrtandromoea Cyrtandromoea acuminata \N \N \N \N \N 26312 C.legitima Cuscuta Cuscuta legitima \N \N \N \N \N 26313 P.tephrosantha Psychotria Psychotria tephrosantha \N \N \N \N \N 26314 D.moorei Dendrobium Dendrobium moorei \N \N \N \N \N 26315 L.zabucajo Lecythis Lecythis zabucajo \N \N \N \N \N 26316 \N genus Xylosma \N \N \N \N \N 26317 O.varia Opercularia Opercularia varia \N \N \N \N \N 26318 \N genus Vulpia \N \N \N \N \N 26319 F.japonica Fallopia Fallopia japonica Japanese knotweed,huzhang,itadori \N \N \N \N 26320 G.perfoliata Gypsophila Gypsophila perfoliata \N \N \N \N \N 26321 \N genus Palaquium \N \N \N \N \N 26322 S.sessiliflora Sersalisia Sersalisia sessiliflora \N \N \N \N \N 26323 \N varietas Mitella furusei var. furusei \N \N \N \N \N 26324 R.taliense Rhododendron Rhododendron taliense \N \N \N \N \N 26325 C.liebmannii Croton Croton liebmannii \N \N \N \N \N 26326 R.LE454 Rehmannia Rehmannia sp. LE454 \N \N \N \N \N 26327 S.trichocalycina Salvia Salvia trichocalycina \N \N \N \N \N 26328 R.nubigenus Rubus Rubus nubigenus mora de venado \N \N \N \N 26329 S.masenderanica Salsola Salsola masenderanica \N \N \N \N \N 26330 L.fulvotomentosa Lonicera Lonicera fulvotomentosa \N \N \N \N \N 26331 \N subspecies Alyssum montanum subsp. pluscanescens \N \N \N \N \N 26332 \N genus Phyllocara \N \N \N \N \N 26333 E.caffrorum Erica Erica caffrorum \N \N \N \N \N 26334 \N genus Disynstemon \N \N \N \N \N 26335 \N genus Paragonia \N \N \N \N \N 26336 A.promissa Aristolochia Aristolochia promissa \N \N \N \N \N 26337 \N genus Colchicum \N \N \N \N \N 26338 P.setosa Pleurothallis Pleurothallis setosa \N \N \N \N \N 26339 M.ramboi Miconia Miconia ramboi \N \N \N \N \N 26340 H.elatus Halimolobos Halimolobos elatus \N \N \N \N \N 26341 D.glandulosa Deuterocohnia Deuterocohnia glandulosa \N \N \N \N \N 26342 A.thalictroideus Arcuatopterus Arcuatopterus thalictroideus \N \N \N \N \N 26343 S.17249 Solanum Solanum sp. Torre & Correia 17249 \N \N \N \N \N 26344 A.multiceps Armeria Armeria multiceps \N \N \N \N \N 26345 T.CH_M3Sdcum Triticum Triticum sp. CH_M3Sdcum \N \N \N \N \N 26346 P.saturatus Phyllobolus Phyllobolus saturatus \N \N \N \N \N 26347 A.neocaledonicum Aneilema Aneilema neocaledonicum \N \N \N \N \N 26348 D.soyauxii Daniellia Daniellia soyauxii \N \N \N \N \N 26349 \N genus Curatella \N \N \N \N \N 26350 \N subspecies Euphorbia paniculata subsp. monchiquensis \N \N \N \N \N 26351 T.uniflora Thamnea Thamnea uniflora \N \N \N \N \N 26352 P.kotschyi Pseudotrachydium Pseudotrachydium kotschyi \N \N \N \N \N 26353 D.obtusa Dictyoneura Dictyoneura obtusa \N \N \N \N \N 26354 C.supra-axillare Coptosperma Coptosperma supra-axillare \N \N \N \N \N 26355 D.alcoa Dendrophylax Dendrophylax alcoa \N \N \N \N \N 26356 C.pervilleana Coffea Coffea pervilleana \N \N \N \N \N 26357 \N genus Farquharia \N \N \N \N \N 26358 \N genus Cerberiopsis \N \N \N \N \N 26359 C.noveloi Castelnavia Castelnavia noveloi \N \N \N \N \N 26360 P.fimbriatum Paspalum Paspalum fimbriatum \N \N \N \N \N 26361 \N genus Symbegonia \N \N \N \N \N 26362 \N genus Agathelpis \N \N \N \N \N 26363 A.welwitschii Anthospermum Anthospermum welwitschii \N \N \N \N \N 26364 L.ucrainicus Lotus Lotus ucrainicus \N \N \N \N \N 26365 I.anatolica Inula Inula anatolica \N \N \N \N \N 26366 \N varietas Isodon lophanthoides var. gerardianus \N \N \N \N \N 26367 C.bambusetum Crinum Crinum bambusetum \N \N \N \N \N 26368 \N subspecies Argemone munita subsp. robusta \N \N \N \N \N 26369 A.riograndensis Acacia Acacia riograndensis \N \N \N \N \N 26370 \N varietas Clethra delavayi var. yuana \N \N \N \N \N 26371 I.micranthus Ileostylus Ileostylus micranthus \N \N \N \N \N 26372 M.glomeratum Micranthemum Micranthemum glomeratum \N \N \N \N \N 26373 L.6567 Latrobea Latrobea sp. 6567 \N \N \N \N \N 26374 \N varietas Aeschynomene brasiliana var. brasiliana \N \N \N \N \N 26375 G.bohemica Gagea Gagea bohemica \N \N \N \N \N 26376 K.guacamayoana Kefersteinia Kefersteinia guacamayoana \N \N \N \N \N 26377 \N genus Mansonia \N \N \N \N \N 26378 T.procumbens Thesium Thesium procumbens \N \N \N \N \N 26379 M.knudsenii Melicope Melicope knudsenii \N \N \N \N \N 26380 D.goonooensis Diuris Diuris goonooensis \N \N \N \N \N 26381 S.gossypina Salsola Salsola gossypina \N \N \N \N \N 26382 M.albicoma Mammillaria Mammillaria albicoma \N \N \N \N \N 26383 G.porrigens Galium Galium porrigens \N \N \N \N \N 26384 P.kansuensis Pedicularis Pedicularis kansuensis \N \N \N \N \N 26385 \N subspecies Crepis foetida subsp. rhoeadifolia \N \N \N \N \N 26386 B.platynota Brachiaria Brachiaria platynota \N \N \N \N \N 26387 \N genus Cynosciadium \N \N \N \N \N 26388 D.benthamii Dichrocephala Dichrocephala benthamii \N \N \N \N \N 26389 \N subspecies Lepidium hirtum subsp. hirtum \N \N \N \N \N 26390 T.arvense Thlaspi Thlaspi arvense \N \N \N \N \N 26391 N.aquatica Nymphoides Nymphoides aquatica \N \N \N \N \N 26392 P.maritima Plantago Plantago maritima goose tongue,sea kemp \N \N \N \N 26393 A.imperialis Ardisia Ardisia imperialis \N \N \N \N \N 26394 L.lanceolata Ludwigia Ludwigia lanceolata \N \N \N \N \N 26395 S.patentinervia Schismatoglottis Schismatoglottis patentinervia \N \N \N \N \N 26396 G.celosioides Gomphrena Gomphrena celosioides \N \N \N \N \N 26397 I.juncalensis Ivania Ivania juncalensis \N \N \N \N \N 26398 G.circinata Greslania Greslania circinata \N \N \N \N \N 26399 \N genus Catolobus \N \N \N \N \N 26400 G.dorycnifolia Genista Genista dorycnifolia \N \N \N \N \N 26401 A.shimienense Arisaema Arisaema shimienense \N \N \N \N \N 26402 P.elegans Potentilla Potentilla elegans \N \N \N \N \N 26403 \N genus Isotoma \N \N \N \N \N 26404 A.decurrens Angelica Angelica decurrens \N \N \N \N \N 26405 M.vacciniifolia Mascagnia Mascagnia vacciniifolia \N \N \N \N \N 26406 W.johnsonii Weberbauerocereus Weberbauerocereus johnsonii \N \N \N \N \N 26407 C.decomposita Carex Carex decomposita \N \N \N \N \N 26408 O.GMS-2008 Orobanche Orobanche cf. nana GMS-2008 \N \N \N \N \N 26409 B.actinophylla Brassaia Brassaia actinophylla \N \N \N \N \N 26410 \N genus Fabiana \N \N \N \N \N 26411 T.punicea Thecanthes Thecanthes punicea \N \N \N \N \N 26412 I.eriocarpa Ipomoea Ipomoea eriocarpa \N \N \N \N \N 26413 S.tatsienluensis Saxifraga Saxifraga tatsienluensis \N \N \N \N \N 26414 A.galanga Alpinia Alpinia galanga Siamese-ginger,greater galangal \N \N \N \N 26415 \N no rank rosids incertae sedis \N \N \N \N \N 26416 S.cordata Sutera Sutera cordata \N \N \N \N \N 26417 L.ericoides Leucopogon Leucopogon ericoides \N \N \N \N \N 26418 C.zonatus Cryptanthus Cryptanthus zonatus \N \N \N \N \N 26419 B.xylocarpa Bussea Bussea xylocarpa \N \N \N \N \N 26420 M.inconspicua Moraea Moraea inconspicua \N \N \N \N \N 26421 V.lippi Volutaria Volutaria lippi \N \N \N \N \N 26422 H.sanguineus Haemanthus Haemanthus sanguineus \N \N \N \N \N 26423 D.pronum Dracophyllum Dracophyllum pronum \N \N \N \N \N 26424 \N subspecies Lamium album subsp. crinitum \N \N \N \N \N 26425 M.comosus Melianthus Melianthus comosus \N \N \N \N \N 26426 \N genus Afroligusticum \N \N \N \N \N 26427 \N subspecies Montanoa tomentosa subsp. tomentosa \N \N \N \N \N 26428 D.campii Disterigma Disterigma campii \N \N \N \N \N 26429 L.glabrata Leucas Leucas glabrata \N \N \N \N \N 26430 C.gilesii Calothamnus Calothamnus gilesii \N \N \N \N \N 26431 W.albomarginata Wahlenbergia Wahlenbergia albomarginata \N \N \N \N \N 26432 S.discolor Sabicea Sabicea discolor \N \N \N \N \N 26433 B.fusiformis Billardiera Billardiera fusiformis \N \N \N \N \N 26434 \N varietas Miconia cerasiflora var. setulifera \N \N \N \N \N 26435 \N order Solanales \N \N \N \N \N 26436 \N genus Microcnemum \N \N \N \N \N 26437 C.rubicundula Castilleja Castilleja rubicundula \N \N \N \N \N 26438 P.atropurpureum Pseuderanthemum Pseuderanthemum atropurpureum \N \N \N \N \N 26439 S.minus Sisyrinchium Sisyrinchium minus \N \N \N \N \N 26440 C.eriantha Calamagrostis Calamagrostis eriantha \N \N \N \N \N 26441 V.brevis Vulpia Vulpia brevis \N \N \N \N \N 26442 C.guadalupensis Cistanthe Cistanthe guadalupensis \N \N \N \N \N 26443 T.JK4039 unclassified Taraxacum Taraxacum sp. JK4039 \N \N \N \N \N 26444 V.tenuifolia Veronica Veronica tenuifolia \N \N \N \N \N 26445 \N genus Maingaya \N \N \N \N \N 26446 \N genus Palmeria \N \N \N \N \N 26447 G.tenuifolia Gagea Gagea tenuifolia \N \N \N \N \N 26448 C.kiaerskovii Calyptranthes Calyptranthes kiaerskovii \N \N \N \N \N 26449 G.declinatum Gnaphalium Gnaphalium declinatum \N \N \N \N \N 26450 \N varietas Cucumis melo var. conomon oriental pickling melon \N \N \N \N 26451 \N subspecies Mimulus guttatus subsp. guttatus \N \N \N \N \N 26452 T.capensis Thunbergia Thunbergia capensis \N \N \N \N \N 26453 \N genus Calectasia \N \N \N \N \N 26454 A.divaricatum Aconogonon Aconogonon divaricatum \N \N \N \N \N 26455 G.humifusum Grielum Grielum humifusum \N \N \N \N \N 26456 P.spectabilis Penstemon Penstemon spectabilis \N \N \N \N \N 26457 P.scilloides Puschkinia Puschkinia scilloides \N \N \N \N \N 26458 K.elatior Kadua Kadua elatior \N \N \N \N \N 26459 L.sinuatus Loxothysanus Loxothysanus sinuatus \N \N \N \N \N 26460 \N family Podostemaceae \N \N \N \N \N 26461 S.smithii Streblus Streblus smithii \N \N \N \N \N 26462 P.bullosum Piper Piper bullosum \N \N \N \N \N 26463 M.2632 Maxillaria Maxillaria sp. Whitten 2632 \N \N \N \N \N 26464 H.sp. Helianthus Helianthus sp. \N \N \N \N \N 26465 \N genus Blumea \N \N \N \N \N 26466 \N genus Kerriodoxa \N \N \N \N \N 26467 G.2282 Gerbera Gerbera sp. Liu 2282 \N \N \N \N \N 26468 H.virgata Holocarpha Holocarpha virgata \N \N \N \N \N 26469 \N genus Androstoma \N \N \N \N \N 26470 R.breyninus Ranunculus Ranunculus breyninus \N \N \N \N \N 26471 \N genus Ficalhoa \N \N \N \N \N 26472 E.meloformis Euphorbia Euphorbia meloformis \N \N \N \N \N 26473 C.leiospermus Cucumis Cucumis leiospermus \N \N \N \N \N 26474 \N subspecies Circaea alpina subsp. pacifica \N \N \N \N \N 26475 A.montibaicalense Allium Allium montibaicalense \N \N \N \N \N 26476 P.lanceolata Pedicularis Pedicularis lanceolata \N \N \N \N \N 26477 H.egleriana Habenaria Habenaria egleriana \N \N \N \N \N 26478 P.nitida Puya Puya nitida \N \N \N \N \N 26479 P.recurvata Pitcairnia Pitcairnia recurvata \N \N \N \N \N 26480 G.cogniauxiana Gomesa Gomesa cogniauxiana \N \N \N \N \N 26481 S.SYW-2010f Schismatoglottis Schismatoglottis sp. SYW-2010f \N \N \N \N \N 26482 \N subspecies Cucumis rumphianus subsp. rumphianus \N \N \N \N \N 26483 \N subspecies Dombeya ferruginea subsp. ferruginea \N \N \N \N \N 26484 G.parisiense Galium Galium parisiense \N \N \N \N \N 26485 E.persicus Enneapogon Enneapogon persicus \N \N \N \N \N 26486 P.parvibractea Paramapania Paramapania parvibractea \N \N \N \N \N 26487 \N subspecies Poa acicularifolia subsp. ophitalis \N \N \N \N \N 26488 G.decumbens Gentiana Gentiana decumbens \N \N \N \N \N 26489 \N subspecies Joinvillea ascendens subsp. ascendens \N \N \N \N \N 26490 E.coronarius Erigeron Erigeron coronarius \N \N \N \N \N 26491 S.3a;09 Salicornia Salicornia aff. perennans Wucherer 3a;09 \N \N \N \N \N 26492 M.leucantha Monotoca Monotoca leucantha \N \N \N \N \N 26493 \N varietas Carex deweyana var. collectanea \N \N \N \N \N 26494 \N subspecies Leontodon taraxacoides subsp. taraxacoides \N \N \N \N \N 26495 \N genus Hypecoum \N \N \N \N \N 26496 E.brownleeae Erica Erica brownleeae \N \N \N \N \N 26497 P.solidagineum Polypsecadium Polypsecadium solidagineum \N \N \N \N \N 26498 A.prazeri Arisaema Arisaema prazeri \N \N \N \N \N 26499 M.diemenica Mentha Mentha diemenica slender mint \N \N \N \N 26500 \N genus Rhopalephora \N \N \N \N \N 26501 S.rupincola Solanum Solanum rupincola \N \N \N \N \N 26502 E.sonorae Euphorbia Euphorbia sonorae \N \N \N \N \N 26503 T.duckei Tetrameranthus Tetrameranthus duckei \N \N \N \N \N 26504 H.SLC-2004 Hypericum Hypericum sp. SLC-2004 \N \N \N \N \N 26505 B.pottsii Bauhinia Bauhinia pottsii \N \N \N \N \N 26506 C.curvifolia Cliffortia Cliffortia curvifolia \N \N \N \N \N 26507 E.acalyphoides Euphorbia Euphorbia acalyphoides \N \N \N \N \N 26508 B.unijugata Blighia Blighia unijugata \N \N \N \N \N 26509 E.lucida Eugenia Eugenia lucida \N \N \N \N \N 26510 A.mongolicum Agropyron Agropyron mongolicum \N \N \N \N \N 26511 C.bonariensis Conyza Conyza bonariensis \N \N \N \N \N 26512 K.coriacea Klasea Klasea coriacea \N \N \N \N \N 26513 S.exarrhena Styphelia Styphelia exarrhena \N \N \N \N \N 26514 B.laciniata Blumea Blumea laciniata \N \N \N \N \N 26515 \N varietas Calyptridium parryi var. arizonicum \N \N \N \N \N 26516 R.gracillima Rhynchospora Rhynchospora gracillima \N \N \N \N \N 26517 M.sanctae-rosae Micropholis Micropholis sanctae-rosae \N \N \N \N \N 26518 M.semecarpifolia Melicope Melicope semecarpifolia \N \N \N \N \N 26519 T.neubaueri Tiarocarpus Tiarocarpus neubaueri \N \N \N \N \N 26520 O.bornouense Oxystelma Oxystelma bornouense \N \N \N \N \N 26521 C.crassiantherae Cynanchum Cynanchum crassiantherae \N \N \N \N \N 26522 N.solanifolia Nicotiana Nicotiana solanifolia \N \N \N \N \N 26523 P.confertiloba Psychotria Psychotria confertiloba \N \N \N \N \N 26524 E.argentifolia Ewartia Ewartia argentifolia \N \N \N \N \N 26525 C.ciliata Clidemia Clidemia ciliata \N \N \N \N \N 26526 C.longebracteolatus Costus Costus longebracteolatus \N \N \N \N \N 26527 C.darwinii Clinopodium Clinopodium darwinii \N \N \N \N \N 26528 N.macrantha Nonea Nonea macrantha \N \N \N \N \N 26529 O.morenoensis Oxalis Oxalis morenoensis \N \N \N \N \N 26530 I.sumatrana Ipomoea Ipomoea sumatrana \N \N \N \N \N 26531 \N varietas Brassica oleracea var. botrytis cauliflower \N \N \N \N 26532 M.odorata Mammea Mammea odorata \N \N \N \N \N 26533 L.SH-2010 Lasianthus Lasianthus sp. SH-2010 \N \N \N \N \N 26534 C.pungens Croton Croton pungens \N \N \N \N \N 26535 \N genus Romanoa \N \N \N \N \N 26536 C.garganica Campanula Campanula garganica \N \N \N \N \N 26537 P.bracteatum Papaver Papaver bracteatum great scarlet poppy \N \N \N \N 26538 S.pearcei Sisyrinchium Sisyrinchium pearcei \N \N \N \N \N 26539 P.SH-2010 Paliurus Paliurus sp. SH-2010 \N \N \N \N \N 26540 A.assimilis Acacia Acacia assimilis \N \N \N \N \N 26541 D.cornutus Dipterocarpus Dipterocarpus cornutus \N \N \N \N \N 26542 T.lepidotum Tetramolopium Tetramolopium lepidotum \N \N \N \N \N 26543 T.obovatum Tetrastigma Tetrastigma obovatum \N \N \N \N \N 26544 M.septemnervium Melastoma Melastoma septemnervium \N \N \N \N \N 26545 C.andina Carex Carex andina \N \N \N \N \N 26546 T.parasitica Topobea Topobea parasitica \N \N \N \N \N 26547 M.coccinea Mitraria Mitraria coccinea \N \N \N \N \N 26548 A.caucasica Atropa Atropa caucasica \N \N \N \N \N 26549 M.peltata Metapetrocosmea Metapetrocosmea peltata \N \N \N \N \N 26550 P.yinkiangense Piper Piper yinkiangense \N \N \N \N \N 26551 N.cyanea Nymphaea Nymphaea cyanea \N \N \N \N \N 26552 O.brevifolium Otoglossum Otoglossum brevifolium \N \N \N \N \N 26553 C.althaeoides Convolvulus Convolvulus althaeoides \N \N \N \N \N 26554 N.coreana Nymphoides Nymphoides coreana \N \N \N \N \N 26555 C.arboreus Cheirolophus Cheirolophus arboreus \N \N \N \N \N 26556 \N varietas Aristida longespica var. geniculata \N \N \N \N \N 26557 A.penetratus Astragalus Astragalus penetratus \N \N \N \N \N 26558 \N subspecies Sabia yunnanensis subsp. latifolia \N \N \N \N \N 26559 B.ferruginea Bactris Bactris ferruginea \N \N \N \N \N 26560 P.setosum Piptochaetium Piptochaetium setosum \N \N \N \N \N 26561 P.hidakana Primula Primula hidakana \N \N \N \N \N 26562 I.dichroa Ipomoea Ipomoea dichroa \N \N \N \N \N 26563 B.madagascariensis Barthlottia Barthlottia madagascariensis \N \N \N \N \N 26564 A.spicata Aiphanes Aiphanes spicata \N \N \N \N \N 26565 S.leptantha Struthiola Struthiola leptantha \N \N \N \N \N 26566 \N genus Samanea \N \N \N \N \N 26567 P.media Pyrostria Pyrostria media \N \N \N \N \N 26568 G.pendula Goodyera Goodyera pendula \N \N \N \N \N 26569 G.canariense Gonospermum Gonospermum canariense \N \N \N \N \N 26570 L.heterophylla Lecanophora Lecanophora heterophylla \N \N \N \N \N 26571 A.shennongjiaense Aconitum Aconitum shennongjiaense \N \N \N \N \N 26572 C.ericifolia Cliffortia Cliffortia ericifolia \N \N \N \N \N 26573 P.daguensis Pilea Pilea daguensis \N \N \N \N \N 26574 E.2340 Escallonia Escallonia sp. Oxelman 2340 \N \N \N \N \N 26575 C.nicaraguarensis Couroupita Couroupita nicaraguarensis \N \N \N \N \N 26576 P.africana Pouchetia Pouchetia africana \N \N \N \N \N 26577 K.zhaosuensis Kengyilia Kengyilia zhaosuensis \N \N \N \N \N 26578 \N genus Microdesmis \N \N \N \N \N 26579 J.pseudorhus Jagera Jagera pseudorhus \N \N \N \N \N 26580 D.mollis Diospyros Diospyros mollis \N \N \N \N \N 26581 A.ecuadorense Arthrostylidium Arthrostylidium ecuadorense \N \N \N \N \N 26582 S.trimera Santiria Santiria trimera \N \N \N \N \N 26583 T.angustifolius Tragopogon Tragopogon angustifolius \N \N \N \N \N 26584 G.tomentosum Gastrolobium Gastrolobium tomentosum \N \N \N \N \N 26585 P.filifolium Prionosciadium Prionosciadium filifolium \N \N \N \N \N 26586 P.javanica Phalaenopsis Phalaenopsis javanica \N \N \N \N \N 26587 \N genus Sidastrum \N \N \N \N \N 26588 S.glauca Symplocos Symplocos glauca \N \N \N \N \N 26589 S.australiensis Storckiella Storckiella australiensis \N \N \N \N \N 26590 Z.angustifolia Zostera Zostera angustifolia \N \N \N \N \N 26591 \N subspecies Sisyrinchium palmifolium subsp. fuscoviride \N \N \N \N \N 26592 G.pulverulenta Gesneria Gesneria pulverulenta \N \N \N \N \N 26593 \N varietas Leonotis ocymifolia var. raineriana \N \N \N \N \N 26594 M.fanshawei Multidentia Multidentia fanshawei \N \N \N \N \N 26595 G.sphaerogynum Glochidion Glochidion sphaerogynum \N \N \N \N \N 26596 I.52 Ilex Ilex sp. Erixon and Bremer 52 \N \N \N \N \N 26597 R.crataegifolius Rubus Rubus crataegifolius \N \N \N \N \N 26598 L.dianthopsis Lygodesmia Lygodesmia dianthopsis \N \N \N \N \N 26599 A.thlaspi Astragalus Astragalus thlaspi \N \N \N \N \N 26600 P.lyrata Pedicularis Pedicularis lyrata \N \N \N \N \N 26601 L.ruhmeriana Lysimachia Lysimachia ruhmeriana \N \N \N \N \N 26602 C.incisa Cardamine Cardamine incisa \N \N \N \N \N 26603 T.hamaleana Tillandsia Tillandsia hamaleana \N \N \N \N \N 26604 E.cyri Euphorbia Euphorbia cyri \N \N \N \N \N 26605 T.proximus Thymus Thymus proximus \N \N \N \N \N 26606 S.amshoffiana Swartzia Swartzia amshoffiana \N \N \N \N \N 26607 \N subspecies Galium lucidum subsp. fruticescens \N \N \N \N \N 26608 C.erythrothyrsus Costus Costus erythrothyrsus \N \N \N \N \N 26609 C.tenuifolia Coprosma Coprosma tenuifolia \N \N \N \N \N 26610 \N subspecies Primula dryadifolia subsp. jonardunii \N \N \N \N \N 26611 A.oligocarpa Annona Annona oligocarpa \N \N \N \N \N 26612 C.aretioides Cyphocardamum Cyphocardamum aretioides \N \N \N \N \N 26613 S.2004-12 Salicornia Salicornia aff. patula Yaprak 2004-12 \N \N \N \N \N 26614 P.rhagadioloides Picris Picris rhagadioloides \N \N \N \N \N 26615 D.conchocalyx Drymonia Drymonia conchocalyx \N \N \N \N \N 26616 P.sinensis Paraboea Paraboea sinensis \N \N \N \N \N 26617 C.erecta Centella Centella erecta \N \N \N \N \N 26618 S.conferta Suaeda Suaeda conferta \N \N \N \N \N 26619 \N genus Neolamarckia \N \N \N \N \N 26620 T.supra-axillaris Tarenna Tarenna supra-axillaris \N \N \N \N \N 26621 G.collinum Glochidion Glochidion collinum \N \N \N \N \N 26622 C.incanus Cyananthus Cyananthus incanus \N \N \N \N \N 26623 S.heuffelii Silene Silene heuffelii \N \N \N \N \N 26624 P.gabrielliana Passiflora Passiflora gabrielliana \N \N \N \N \N 26625 C.pilosa Catanthera Catanthera pilosa \N \N \N \N \N 26626 A.salicifolia Atalaya Atalaya salicifolia \N \N \N \N \N 26627 S.spooneri Simsia Simsia spooneri \N \N \N \N \N 26628 \N genus Gazania \N \N \N \N \N 26629 \N genus Heterotheca \N \N \N \N \N 26630 G.trichosantha Globularia Globularia trichosantha \N \N \N \N \N 26631 \N genus Lonchostoma \N \N \N \N \N 26632 I.hedyantha Indigofera Indigofera hedyantha \N \N \N \N \N 26633 M.transitoria Malus Malus transitoria \N \N \N \N \N 26634 H.franchetii Heracleum Heracleum franchetii \N \N \N \N \N 26635 \N genus Epidendrum \N \N \N \N \N 26636 E.ericoides Ericameria Ericameria ericoides \N \N \N \N \N 26637 C.valdepilosum Chrysosplenium Chrysosplenium valdepilosum \N \N \N \N \N 26638 N.resinosa Nothofagus Nothofagus resinosa \N \N \N \N \N 26639 B.ilicifolia Banksia Banksia ilicifolia \N \N \N \N \N 26640 C.japonica Cleyera Cleyera japonica sakaki \N \N \N \N 26641 A.aurea Aciphylla Aciphylla aurea \N \N \N \N \N 26642 I.calycina Ixora Ixora calycina \N \N \N \N \N 26643 C.depauperata Carex Carex depauperata \N \N \N \N \N 26644 A.pseudojaponicum Allium Allium pseudojaponicum \N \N \N \N \N 26645 A.chlamydanthum Aframomum Aframomum chlamydanthum \N \N \N \N \N 26646 F.gracilis Fiebrigiella Fiebrigiella gracilis \N \N \N \N \N 26647 C.dasyantha Cnesmocarpon Cnesmocarpon dasyantha \N \N \N \N \N 26648 A.subcordata Alnus Alnus subcordata \N \N \N \N \N 26649 \N varietas Psorothamnus emoryi var. arenarius \N \N \N \N \N 26650 \N varietas Xyris laxifolia var. iridifolia \N \N \N \N \N 26651 W.saxicola Wahlenbergia Wahlenbergia saxicola \N \N \N \N \N 26652 D.hirtzii Dracula Dracula hirtzii \N \N \N \N \N 26653 P.viridiflorus Phyllobolus Phyllobolus viridiflorus \N \N \N \N \N 26654 \N genus Chesneya \N \N \N \N \N 26655 C.strigillosa Clidemia Clidemia strigillosa \N \N \N \N \N 26656 R.riosaniensis Rauhocereus Rauhocereus riosaniensis \N \N \N \N \N 26657 C.rectum Cymbidium Cymbidium rectum \N \N \N \N \N 26658 \N genus Ebenopsis \N \N \N \N \N 26659 R.glabra Royena Royena glabra \N \N \N \N \N 26660 B.eriopoda Bouteloua Bouteloua eriopoda black grama \N \N \N \N 26661 H.canariense Hypericum Hypericum canariense \N \N \N \N \N 26662 \N order Ericales \N \N \N \N \N 26663 \N genus Pamianthe \N \N \N \N \N 26664 B.FS683 Bulbophyllum Bulbophyllum sp. FS683 \N \N \N \N \N 26665 V.AB-2009 Vanilla Vanilla cf. chamissonis AB-2009 \N \N \N \N \N 26666 \N subspecies Asterolasia pallida subsp. pallida \N \N \N \N \N 26667 O.0705 Omphalogramma Omphalogramma sp. ARGS 0705 \N \N \N \N \N 26668 S.hirsutus Streptosiphon Streptosiphon hirsutus \N \N \N \N \N 26669 S.iopetalum Solanum Solanum iopetalum \N \N \N \N \N 26670 \N varietas Achillea millefolium var. pacifica \N \N \N \N \N 26671 A.shawii Aspalathus Aspalathus shawii \N \N \N \N \N 26672 L.tetrandrum Lycium Lycium tetrandrum \N \N \N \N \N 26673 \N genus Moringa \N \N \N \N \N 26674 C.myristiciformis Carya Carya myristiciformis nogal,nutmeg hickory \N \N \N \N 26675 \N subspecies Bidens forbesii subsp. forbesii \N \N \N \N \N 26676 \N genus Glaucidium \N \N \N \N \N 26677 M.cathayana Morus Morus cathayana \N \N \N \N \N 26678 C.villosissima Cyrtandra Cyrtandra villosissima \N \N \N \N \N 26679 P.perfoliatus Penstemon Penstemon perfoliatus \N \N \N \N \N 26680 B.integrifolia Bocconia Bocconia integrifolia \N \N \N \N \N 26681 C.brachyclada Chamaedorea Chamaedorea brachyclada \N \N \N \N \N 26682 C.himalaicum Cypripedium Cypripedium himalaicum \N \N \N \N \N 26683 H.sordida Haworthia Haworthia sordida \N \N \N \N \N 26684 A.lavandulifolia Artemisia Artemisia lavandulifolia \N \N \N \N \N 26685 M.vestergrenii Myosotis Myosotis vestergrenii \N \N \N \N \N 26686 S.villosa Serruria Serruria villosa \N \N \N \N \N 26687 P.macrophylla Pagamea Pagamea macrophylla \N \N \N \N \N 26688 \N subspecies Aspalathus perfoliata subsp. phillipsii \N \N \N \N \N 26689 \N genus Pogonarthria \N \N \N \N \N 26690 P.teres Pleurothallis Pleurothallis teres \N \N \N \N \N 26691 \N forma Aristida pansa f. dissita \N \N \N \N \N 26692 P.nebrodense Peucedanum Peucedanum nebrodense \N \N \N \N \N 26693 A.monroi Aciphylla Aciphylla monroi \N \N \N \N \N 26694 P.chartacea Pycnandra Pycnandra chartacea \N \N \N \N \N 26695 R.micracantha Randia Randia micracantha \N \N \N \N \N 26696 O.disticha Oreochloa Oreochloa disticha \N \N \N \N \N 26697 \N genus Ionopsidium \N \N \N \N \N 26698 O.bracteosus Orthocarpus Orthocarpus bracteosus \N \N \N \N \N 26699 M.ekmanii Matelea Matelea ekmanii \N \N \N \N \N 26700 O.velteniana Oncidium Oncidium velteniana \N \N \N \N \N 26701 P.floribunda Peltogyne Peltogyne floribunda \N \N \N \N \N 26702 P.luteum Pelargonium Pelargonium luteum \N \N \N \N \N 26703 A.sieberi Alkanna Alkanna sieberi \N \N \N \N \N 26704 L.nevadense Lilium Lilium nevadense \N \N \N \N \N 26705 G.grandiflora Grindelia Grindelia grandiflora \N \N \N \N \N 26706 C.lanatus Croton Croton lanatus \N \N \N \N \N 26707 P.rotundifolia Podalyria Podalyria rotundifolia \N \N \N \N \N 26708 R.polyanthemos Ranunculus Ranunculus polyanthemos \N \N \N \N \N 26709 C.coriaceus Cotoneaster Cotoneaster coriaceus \N \N \N \N \N 26710 F.vaccinioides Ficus Ficus vaccinioides \N \N \N \N \N 26711 R.schiedeana Rhus Rhus schiedeana \N \N \N \N \N 26712 \N subspecies Paspalum dilatatum subsp. flavescens \N \N \N \N \N 26713 E.guicciardii Erodium Erodium guicciardii \N \N \N \N \N 26714 O.reclinata Oxalis Oxalis reclinata \N \N \N \N \N 26715 \N subspecies Allium taeniopetalum subsp. mogoltavicum \N \N \N \N \N 26716 S.clausula Schismatoglottis Schismatoglottis clausula \N \N \N \N \N 26717 \N genus Hymenorchis \N \N \N \N \N 26718 N.rivulare Nematoceras Nematoceras rivulare \N \N \N \N \N 26719 P.fasciculata Parahancornia Parahancornia fasciculata \N \N \N \N \N 26720 H.taenari Helichrysum Helichrysum taenari \N \N \N \N \N 26721 C.utilis Calathea Calathea utilis \N \N \N \N \N 26722 R.albida Ruprechtia Ruprechtia albida \N \N \N \N \N 26723 \N genus Sphalmium \N \N \N \N \N 26724 C.incrassata Codia Codia incrassata \N \N \N \N \N 26725 A.persica Artemisia Artemisia persica \N \N \N \N \N 26726 \N varietas Astragalus mongholicus var. dahuricus \N \N \N \N \N 26727 C.carandas Carissa Carissa carandas \N \N \N \N \N 26728 S.selloi Schefflera Schefflera selloi \N \N \N \N \N 26729 P.filiformis Polycarena Polycarena filiformis \N \N \N \N \N 26730 I.liukiuensis Ilex Ilex liukiuensis \N \N \N \N \N 26731 A.rufescens Astragalus Astragalus rufescens \N \N \N \N \N 26732 D.porsildii Draba Draba porsildii Porsild's draba \N \N \N \N 26733 M.coccoloboides Macleania Macleania coccoloboides \N \N \N \N \N 26734 L.floribunda Lonicera Lonicera floribunda \N \N \N \N \N 26735 C.procera Calotropis Calotropis procera \N \N \N \N \N 26736 G.harmandii Gagnepainia Gagnepainia harmandii \N \N \N \N \N 26737 C.testacea Carex Carex testacea \N \N \N \N \N 26738 L.acidota Liatris Liatris acidota \N \N \N \N \N 26739 L.cous Lomatium Lomatium cous \N \N \N \N \N 26740 E.berteroi Echinodorus Echinodorus berteroi \N \N \N \N \N 26741 S.eremostachya Salvia Salvia eremostachya desert sage,rose sage \N \N \N \N 26742 P.humile Polygonatum Polygonatum humile \N \N \N \N \N 26743 P.falcifolium Phymatidium Phymatidium falcifolium \N \N \N \N \N 26744 S.virginica Sibara Sibara virginica Virginia winged rockcress \N \N \N \N 26745 K.glaziovii Klotzschia Klotzschia glaziovii \N \N \N \N \N 26746 \N genus Grayia \N \N \N \N \N 26747 T.6081 unclassified Taraxacum Taraxacum (sect. Mongolica) sp. 6081 \N \N \N \N \N 26748 P.humilis Puya Puya humilis \N \N \N \N \N 26749 A.caracasana Alternanthera Alternanthera caracasana \N \N \N \N \N 26750 C.anguria Cucumis Cucumis anguria West Indian gherkin,gherkin,gooseberry gourd,maxixe,pepino \N \N \N \N 26751 T.hookeri Templetonia Templetonia hookeri \N \N \N \N \N 26752 E.cephalotes Echinops Echinops cephalotes \N \N \N \N \N 26753 \N genus Amherstia \N \N \N \N \N 26754 B.kawakamii Berberis Berberis kawakamii \N \N \N \N \N 26755 I.TP-2009 Inga Inga sp. 55 TP-2009 \N \N \N \N \N 26756 A.ruscifolia Alyxia Alyxia ruscifolia \N \N \N \N \N 26757 C.bigelovii Cylindropuntia Cylindropuntia bigelovii \N \N \N \N \N 26758 \N varietas Mimosa tricephala var. nelsonii \N \N \N \N \N 26759 A.lecomtei Actinodaphne Actinodaphne lecomtei \N \N \N \N \N 26760 G.epiphytica Gynochthodes Gynochthodes epiphytica \N \N \N \N \N 26761 \N varietas Cypripedium flavum var. semialbum \N \N \N \N \N 26762 \N subspecies Carex scirpoidea subsp. convoluta \N \N \N \N \N 26763 B.liniflora Byblis Byblis liniflora \N \N \N \N \N 26764 T.maritimum Tripleurospermum Tripleurospermum maritimum sea mayweed \N \N \N \N 26765 D.biovulatus Drepananthus Drepananthus biovulatus \N \N \N \N \N 26766 C.myrioglochis Cousinia Cousinia myrioglochis \N \N \N \N \N 26767 \N genus Fadogiella \N \N \N \N \N 26768 F.tenella Foveolina Foveolina tenella \N \N \N \N \N 26769 L.macrophylla Leea Leea macrophylla \N \N \N \N \N 26770 P.sandrae Passiflora Passiflora sandrae \N \N \N \N \N 26771 \N subspecies Polygonum oxyspermum subsp. raii \N \N \N \N \N 26772 P.villosa Patrinia Patrinia villosa \N \N \N \N \N 26773 \N subtribe Lychnophorinae \N \N \N \N \N 26774 S.gracilis Sagraea Sagraea gracilis \N \N \N \N \N 26775 M.cristatum Melampyrum Melampyrum cristatum \N \N \N \N \N 26776 S.montevidensis Sagittaria Sagittaria montevidensis \N \N \N \N \N 26777 P.parvifolius Pharus Pharus parvifolius \N \N \N \N \N 26778 M.ulmarioides Miconia Miconia ulmarioides \N \N \N \N \N 26779 L.myrtilloides Lonicera Lonicera myrtilloides \N \N \N \N \N 26780 T.henricksonii Thalictrum Thalictrum henricksonii \N \N \N \N \N 26781 E.saxigena Erica Erica saxigena \N \N \N \N \N 26782 \N genus Mussaendopsis \N \N \N \N \N 26783 S.enantophylla Scaevola Scaevola enantophylla \N \N \N \N \N 26784 S.caespitella Silene Silene caespitella \N \N \N \N \N 26785 M.sanderi Mandevilla Mandevilla sanderi Brazilian jasmine,Mexican love vine \N \N \N \N 26786 \N genus Fontainea \N \N \N \N \N 26787 \N genus Zieria \N \N \N \N \N 26788 C.SRR-2011 Clowesia Clowesia sp. SRR-2011 \N \N \N \N \N 26789 C.heliantha Cousinia Cousinia heliantha \N \N \N \N \N 26790 M.integra Morella Morella integra \N \N \N \N \N 26791 D.scabrida Diospyros Diospyros scabrida \N \N \N \N \N 26792 S.corifolium Solanum Solanum corifolium \N \N \N \N \N 26793 R.keiskei Rhododendron Rhododendron keiskei \N \N \N \N \N 26794 T.558 unclassified Taraxacum Taraxacum (sect. Crocea) sp. 558 \N \N \N \N \N 26795 C.obrienii Cyrtanthus Cyrtanthus obrienii \N \N \N \N \N 26796 P.7267 Peplidium Peplidium sp. Barker 7267 \N \N \N \N \N 26797 G.renghas Gluta Gluta renghas \N \N \N \N \N 26798 A.ameliae Abronia Abronia ameliae \N \N \N \N \N 109200 \N genus Merrilliodendron \N \N \N \N \N 26799 O.ramosissima Olearia Olearia ramosissima \N \N \N \N \N 26800 \N genus Glinus \N \N \N \N \N 26801 I.cyanantha Impatiens Impatiens cyanantha \N \N \N \N \N 26802 R.satipoana Rodriguezia Rodriguezia satipoana \N \N \N \N \N 26803 F.clementei Festuca Festuca clementei \N \N \N \N \N 26804 T.gracilis Tamarix Tamarix gracilis \N \N \N \N \N 26805 W.tinctoria Wendlandia Wendlandia tinctoria \N \N \N \N \N 26806 P.daphnoides Pultenaea Pultenaea daphnoides \N \N \N \N \N 26807 E.leucoxylon Eucalyptus Eucalyptus leucoxylon white ironbark \N \N \N \N 26808 \N subspecies Combretum apiculatum subsp. apiculatum \N \N \N \N \N 26809 A.chinensis Astilbe Astilbe japonica x Astilbe chinensis \N \N \N \N \N 26810 L.wallichianus Lithocarpus Lithocarpus wallichianus \N \N \N \N \N 26811 S.anethifolius Senecio Senecio anethifolius \N \N \N \N \N 26812 N.breweri Navarretia Navarretia breweri \N \N \N \N \N 26813 T.macranthopsis Tricyrtis Tricyrtis macranthopsis \N \N \N \N \N 26814 C.laetum Chascanum Chascanum laetum \N \N \N \N \N 26815 A.abyssinicum Argyrolobium Argyrolobium abyssinicum \N \N \N \N \N 26816 E.depressa Erica Erica depressa \N \N \N \N \N 26817 \N tribe Cryptocoryneae \N \N \N \N \N 26818 \N subspecies Genista tridentata subsp. lasiantha \N \N \N \N \N 26819 P.trianae Puya Puya trianae \N \N \N \N \N 26820 C.chestertonii Chondroscaphe Chondroscaphe chestertonii \N \N \N \N \N 26821 A.oleifolius Astragalus Astragalus oleifolius \N \N \N \N \N 26822 M.humbertiana Medinilla Medinilla humbertiana \N \N \N \N \N 26823 O.bisfracta Oxalis Oxalis bisfracta \N \N \N \N \N 26824 P.hauptiana Puccinellia Puccinellia hauptiana \N \N \N \N \N 26825 D.difformis Dysosma Dysosma difformis \N \N \N \N \N 26826 R.hystrix Rhapidophyllum Rhapidophyllum hystrix blue palmetto,needle palm \N \N \N \N 26827 P.acuminata Pottingeria Pottingeria acuminata \N \N \N \N \N 26828 P.rigida Pavetta Pavetta rigida \N \N \N \N \N 26829 S.brassii Senecio Senecio brassii \N \N \N \N \N 26830 M.parvifolia Mussaenda Mussaenda parvifolia \N \N \N \N \N 26831 O.villosa Oenothera Oenothera villosa \N \N \N \N \N 26832 S.papyraceum Syzygium Syzygium papyraceum \N \N \N \N \N 26833 T.laxus Trollius Trollius laxus American globeflower \N \N \N \N 26834 I.simplicifolia Indigofera Indigofera simplicifolia \N \N \N \N \N 26835 I.272 Ixora Ixora sp. Mouly & Innocente 272 \N \N \N \N \N 26836 T.farinosum Taraxacum Taraxacum farinosum \N \N \N \N \N 26837 P.dumosus Phaseolus Phaseolus dumosus \N \N \N \N \N 26838 \N genus Clappia \N \N \N \N \N 26839 H.Gunyidi Halosarcia Halosarcia sp. Gunyidi \N \N \N \N \N 26840 A.microcarpa Aphanes Aphanes microcarpa \N \N \N \N \N 26841 \N varietas Iris lactea var. lactea \N \N \N \N \N 26842 G.schlechtendaliana Goodyera Goodyera schlechtendaliana \N \N \N \N \N 26843 M.cuspidata Miconia Miconia cuspidata \N \N \N \N \N 26844 \N genus Campsiandra \N \N \N \N \N 26845 \N tribe Cocoseae \N \N \N \N \N 26846 C.mataikona Crassula Crassula mataikona \N \N \N \N \N 26847 \N genus Holocalyx \N \N \N \N \N 26848 C.griffithii Cardamine Cardamine griffithii \N \N \N \N \N 26849 L.borinquensis Lepidaploa Lepidaploa borinquensis \N \N \N \N \N 26850 A.spiripetalum Aconitum Aconitum spiripetalum \N \N \N \N \N 26851 \N genus Eustegia \N \N \N \N \N 26852 A.gaubae Astragalus Astragalus gaubae \N \N \N \N \N 26853 \N genus Pseudosorghum \N \N \N \N \N 26854 C.carthamoides Cousinia Cousinia carthamoides \N \N \N \N \N 26855 L.bowlingii Ledermanniella Ledermanniella bowlingii \N \N \N \N \N 26856 \N subtribe Uniolinae \N \N \N \N \N 26857 \N genus Robynsiophyton \N \N \N \N \N 26858 J.blanchetii Jacquemontia Jacquemontia blanchetii \N \N \N \N \N 26859 M.pyramidata Maireana Maireana pyramidata \N \N \N \N \N 26860 W.longisepala Wilbrandia Wilbrandia longisepala \N \N \N \N \N 26861 M.impetiolaris Miconia Miconia impetiolaris camasey de costilla \N \N \N \N 26862 C.griquensis Crotalaria Crotalaria griquensis \N \N \N \N \N 26863 P.WSY0032124-30 Penstemon Penstemon sp. WSY0032124-30 \N \N \N \N \N 26864 \N varietas Pteryxia terebinthina var. albiflora \N \N \N \N \N 26865 B.orbifolia Beaufortia Beaufortia orbifolia \N \N \N \N \N 26866 H.echinopifolium Hypacanthium Hypacanthium echinopifolium \N \N \N \N \N 26867 \N genus Obtegomeria \N \N \N \N \N 26868 \N genus Monimiastrum \N \N \N \N \N 26869 P.subulifolia Protea Protea subulifolia \N \N \N \N \N 26870 \N subfamily Pakaraimaeoideae \N \N \N \N \N 26871 L.anomalus Leucocroton Leucocroton anomalus \N \N \N \N \N 26872 L.glomerulatus Lasiopogon Lasiopogon glomerulatus \N \N \N \N \N 26873 I.excelsa Ilex Ilex excelsa \N \N \N \N \N 26874 G.hilariana Gonioanthela Gonioanthela hilariana \N \N \N \N \N 26875 E.alpinum Erodium Erodium alpinum \N \N \N \N \N 26876 T.LK05/3076 Taraxacum Taraxacum sp. LK05/3076 \N \N \N \N \N 26877 T.dactyloides Tripsacum Tripsacum dactyloides gama grass \N \N \N \N 26878 O.palmata Omphalea Omphalea palmata \N \N \N \N \N 26879 M.densa Maxillaria Maxillaria densa \N \N \N \N \N 26880 P.aurea Pentachaeta Pentachaeta aurea \N \N \N \N \N 26881 \N subspecies Ononis viscosa subsp. breviflora \N \N \N \N \N 26882 G.calvicarpus Goniothalamus Goniothalamus calvicarpus \N \N \N \N \N 26883 E.castelnaeana Eucharis Eucharis castelnaeana \N \N \N \N \N 26884 P.P085 Physalis Physalis sp. P085 \N \N \N \N \N 26885 V.foetida Vestia Vestia foetida \N \N \N \N \N 26886 P.hookeri Polygonum Polygonum hookeri \N \N \N \N \N 26887 \N subtribe Cichoriinae \N \N \N \N \N 26888 \N genus Givotia \N \N \N \N \N 26889 \N varietas Psychotria panamensis var. magna \N \N \N \N \N 26890 S.bacillaris Senna Senna bacillaris West Indian showertree \N \N \N \N 26891 I.disticha Indigofera Indigofera disticha \N \N \N \N \N 26892 R.intranervatum Rhododendron Rhododendron intranervatum \N \N \N \N \N 26893 N.HHM-2001-1 Nepenthes Nepenthes sp. HHM-2001-1 \N \N \N \N \N 26894 \N genus Banara \N \N \N \N \N 26895 \N genus Minthostachys \N \N \N \N \N 26896 S.cordifolia Sida Sida cordifolia \N \N \N \N \N 26898 D.7812 Drosanthemum Drosanthemum sp. Bruyns 7812 \N \N \N \N \N 26899 L.alpina Leucanthemopsis Leucanthemopsis alpina \N \N \N \N \N 26900 C.3983 Commelina Commelina sp. Grant 3983 \N \N \N \N \N 26901 P.sagotianum Protium Protium sagotianum \N \N \N \N \N 26902 A.gracilis Aeschynanthus Aeschynanthus gracilis \N \N \N \N \N 26903 P.pheulpinii Pedicularis Pedicularis pheulpinii \N \N \N \N \N 26904 L.fokienensis Latouchea Latouchea fokienensis \N \N \N \N \N 26905 C.brizoides Carex Carex brizoides \N \N \N \N \N 26906 S.JY-2008-1 Solms-laubachia Solms-laubachia sp. JY-2008-1 \N \N \N \N \N 26907 L.tricuspidatus Leochilus Leochilus tricuspidatus \N \N \N \N \N 26908 L.killipii Linanthus Linanthus killipii Baldwin Lake linanthus \N \N \N \N 26909 P.hintonii Physalis Physalis hintonii \N \N \N \N \N 26910 X.cultivar x Mokara x Mokara hybrid cultivar \N \N \N \N \N 26911 D.asper Dipsacus Dipsacus asper \N \N \N \N \N 26912 M.sikokiana Meterostachys Meterostachys sikokiana \N \N \N \N \N 26913 E.longifolium Eryngium Eryngium longifolium \N \N \N \N \N 26914 \N subspecies Thymopsis thymoides subsp. polyantha \N \N \N \N \N 26915 O.ramosissima Ocotea Ocotea ramosissima \N \N \N \N \N 26916 E.sisymbrioides Erysimum Erysimum sisymbrioides \N \N \N \N \N 26917 R.MDG-54293 Rhodocodon Rhodocodon sp. MDG-54293 \N \N \N \N \N 26918 C.MAG-2009 Casearia Casearia sp. MAG-2009 \N \N \N \N \N 26919 G.pygmaea Grindelia Grindelia pygmaea \N \N \N \N \N 26920 O.acaulis Oziroe Oziroe acaulis \N \N \N \N \N 26921 A.brevidens Astragalus Astragalus brevidens \N \N \N \N \N 26922 C.setosus Cucumis Cucumis setosus \N \N \N \N \N 26923 A.permixta Acacia Acacia permixta \N \N \N \N \N 26924 L.fenestrata Litsea Litsea fenestrata \N \N \N \N \N 26925 F.sycomorus Ficus Ficus sycomorus mulberry fig,sycamore fig \N \N \N \N 26926 P.fasciculatum Paspalum Paspalum fasciculatum \N \N \N \N \N 26927 V.glabrata Vitex Vitex glabrata \N \N \N \N \N 26928 A.valvata Actinidia Actinidia valvata \N \N \N \N \N 26929 S.branderhorstii Syzygium Syzygium branderhorstii \N \N \N \N \N 26930 \N genus Vinca \N \N \N \N \N 26931 C.cyrenaica Cynara Cynara cyrenaica \N \N \N \N \N 26932 N.obtusifolia Nicotiana Nicotiana obtusifolia \N \N \N \N \N 26933 D.grandiflorum Doronicum Doronicum grandiflorum \N \N \N \N \N 26934 S.tasmanicus Sporadanthus Sporadanthus tasmanicus \N \N \N \N \N 26935 S.afromontanum Stenandrium Stenandrium afromontanum \N \N \N \N \N 26936 B.humilis Brachyscome Brachyscome humilis \N \N \N \N \N 26937 R.ponticum Rhododendron Rhododendron ponticum \N \N \N \N \N 26938 A.bolivianum Anomospermum Anomospermum bolivianum \N \N \N \N \N 26939 I.seducta Ipomoea Ipomoea seducta \N \N \N \N \N 26940 M.megalantha Marsdenia Marsdenia megalantha \N \N \N \N \N 26941 S.scopulina Sorbus Sorbus scopulina \N \N \N \N \N 26942 \N genus Combretocarpus \N \N \N \N \N 26943 L.turialvae Lepanthes Lepanthes turialvae \N \N \N \N \N 26944 \N subspecies Thymelaea tinctoria subsp. tinctoria \N \N \N \N \N 26945 C.nitidissima Camellia Camellia nitidissima \N \N \N \N \N 26946 \N genus Eduandrea \N \N \N \N \N 26947 \N genus Lagerstroemia \N \N \N \N \N 26948 P.serpyllifolia Pimelea Pimelea serpyllifolia \N \N \N \N \N 26949 \N varietas Potentilla effusa var. effusa \N \N \N \N \N 26950 A.filicifolia Acacia Acacia filicifolia \N \N \N \N \N 26951 D.spathulata Disa Disa spathulata \N \N \N \N \N 26952 S.chaplinii Strumaria Strumaria chaplinii \N \N \N \N \N 26953 P.mathewsii Podandrogyne Podandrogyne mathewsii \N \N \N \N \N 26954 C.SH-2010 Claoxylon Claoxylon sp. SH-2010 \N \N \N \N \N 26955 H.rostrata Heliconia Heliconia rostrata \N \N \N \N \N 26956 J.adpressa Jamesbrittenia Jamesbrittenia adpressa \N \N \N \N \N 26957 P.stuhlmannii Polyscias Polyscias stuhlmannii \N \N \N \N \N 26958 I.herklotsii Indocalamus Indocalamus herklotsii \N \N \N \N \N 26959 C.hyalina Cuscuta Cuscuta hyalina \N \N \N \N \N 26960 N.scaberulus Narcissus Narcissus scaberulus \N \N \N \N \N 26961 L.4497 Laportea Laportea sp. Conn 4497 \N \N \N \N \N 26962 M.foliolosa Micranthes Micranthes foliolosa \N \N \N \N \N 26963 C.frutescens Capsicum Capsicum frutescens bird pepper,chili pepper,hot pepper \N \N \N \N 26964 C.licentiana Caragana Caragana licentiana \N \N \N \N \N 26965 N.pulchella Nymphaea Nymphaea pulchella \N \N \N \N \N 26966 M.buccinator Masdevallia Masdevallia buccinator \N \N \N \N \N 26967 G.lucida Gymnanthes Gymnanthes lucida \N \N \N \N \N 26968 C.alba Cryptocarya Cryptocarya alba \N \N \N \N \N 26969 \N genus Scolymus \N \N \N \N \N 26970 \N tribe Anchonieae \N \N \N \N \N 26971 C.cincta Capeochloa Capeochloa cincta \N \N \N \N \N 26972 E.bulbilliferum Exacum Exacum bulbilliferum \N \N \N \N \N 26973 \N genus Acrosynanthus \N \N \N \N \N 26974 P.tanacetifolia Phacelia Phacelia tanacetifolia \N \N \N \N \N 26975 L.americanus Lysichiton Lysichiton americanus \N \N \N \N \N 26976 S.acuminata Sebertia Sebertia acuminata \N \N \N \N \N 26977 C.venustus Calochortus Calochortus venustus \N \N \N \N \N 26978 T.JS6225 unclassified Taraxacum Taraxacum (sect. Mongolica) sp. JS6225 \N \N \N \N \N 26979 A.molle Antirrhinum Antirrhinum molle \N \N \N \N \N 26980 \N subspecies Pimelea linifolia subsp. collina \N \N \N \N \N 26981 A.macrotis Anthemis Anthemis macrotis \N \N \N \N \N 26982 V.scardica Veronica Veronica scardica \N \N \N \N \N 26983 A.plumosa Araujia Araujia plumosa \N \N \N \N \N 26984 E.grandifolia Embergeria Embergeria grandifolia \N \N \N \N \N 26985 A.androsaemifolium Apocynum Apocynum androsaemifolium \N \N \N \N \N 26986 C.robusta Cliffortia Cliffortia robusta \N \N \N \N \N 26987 \N genus Calycosiphonia \N \N \N \N \N 26988 A.s.n. Aphyllorchis Aphyllorchis sp. Duangjai s.n. \N \N \N \N \N 26989 V.mungo Vigna Vigna mungo black gram,urd-bean \N \N \N \N 26990 D.australis Draba Draba australis \N \N \N \N \N 26991 \N genus Platycrater \N \N \N \N \N 26992 B.vieillardii Balanops Balanops vieillardii \N \N \N \N \N 26993 X.panamensis Xylosma Xylosma panamensis \N \N \N \N \N 26994 C.sericea Cornus Cornus sericea red-osier dogwood \N \N \N \N 26995 A.cunninghamiana Archontophoenix Archontophoenix cunninghamiana \N \N \N \N \N 26996 D.macroblephara Digitaria Digitaria macroblephara \N \N \N \N \N 26997 J.capillata Jonesiopsis Jonesiopsis capillata \N \N \N \N \N 26998 \N family Ixiolirionaceae \N \N \N \N \N 26999 C.shinnersii Carex Carex shinnersii \N \N \N \N \N 27000 V.umbraticola Viola Viola umbraticola \N \N \N \N \N 27001 S.stevensonii Schlimmia Schlimmia stevensonii \N \N \N \N \N 27002 O.alba Ononis Ononis alba \N \N \N \N \N 27003 E.macrostachya Eleocharis Eleocharis macrostachya \N \N \N \N \N 27004 \N genus Aphanosperma \N \N \N \N \N 27005 \N genus Panax \N \N \N \N \N 27006 \N subspecies Eucomis autumnalis subsp. clavata \N \N \N \N \N 27007 \N genus Oncinotis \N \N \N \N \N 27008 \N genus Klarobelia \N \N \N \N \N 27009 M.excelsum Macropiper Macropiper excelsum \N \N \N \N \N 27010 S.acutum Sinomenium Sinomenium acutum \N \N \N \N \N 27011 E.philippinensis Eleocharis Eleocharis philippinensis \N \N \N \N \N 27012 G.falcarioides Gongylosciadium Gongylosciadium falcarioides \N \N \N \N \N 27013 C.nevinii Constancea Constancea nevinii \N \N \N \N \N 27014 M.cucullata Maxillaria Maxillaria cucullata \N \N \N \N \N 27015 P.flammea Pitcairnia Pitcairnia flammea \N \N \N \N \N 27016 S.subulata Senna Senna subulata \N \N \N \N \N 27017 C.limettioides Citrus Citrus limettioides sweet lime \N \N \N \N 27018 O.algarviensis Ophrys Ophrys algarviensis \N \N \N \N \N 27019 N.bulbuliferum Notholirion Notholirion bulbuliferum \N \N \N \N \N 27020 \N varietas Dalechampia dioscoreifolia var. pubescens \N \N \N \N \N 27021 C.chamaecephalus Cyperus Cyperus chamaecephalus \N \N \N \N \N 27022 O.pseudoarenaria Onosma Onosma pseudoarenaria \N \N \N \N \N 27023 \N varietas Allium atrorubens var. cristatum \N \N \N \N \N 27024 \N genus Petrogenia \N \N \N \N \N 27025 C.vimineum Clinopodium Clinopodium vimineum \N \N \N \N \N 27026 B.olbia Begonia Begonia olbia \N \N \N \N \N 27027 C.gutierrezii Centropogon Centropogon gutierrezii \N \N \N \N \N 27028 S.913 Stryphnodendron Stryphnodendron cf. coriaceum Pennington 913 \N \N \N \N \N 27029 A.lampa Atriplex Atriplex lampa \N \N \N \N \N 27030 A.closii Asteriscium Asteriscium closii \N \N \N \N \N 27031 L.bolusii Lotononis Lotononis bolusii \N \N \N \N \N 27032 \N subspecies Bidens forbesii subsp. kahiliensis \N \N \N \N \N 27033 N.herpeticum Natsiatum Natsiatum herpeticum \N \N \N \N \N 27034 G.SH-2010 Glochidion Glochidion sp. SH-2010 \N \N \N \N \N 27035 J.californica Janusia Janusia californica \N \N \N \N \N 27036 A.angolensis Amorphophallus Amorphophallus angolensis \N \N \N \N \N 27037 S.obliquum Solanum Solanum obliquum \N \N \N \N \N 27038 P.outimouta Phanera Phanera outimouta \N \N \N \N \N 27039 P.calcicola Pentaschistis Pentameris calcicola \N \N \N \N \N 27040 \N genus Porlieria \N \N \N \N \N 27041 C.nanum Clinopodium Clinopodium nanum \N \N \N \N \N 27042 B.chloraeifolia Barjonia Barjonia chloraeifolia \N \N \N \N \N 27043 \N genus Mitrasacme \N \N \N \N \N 27044 C.bonariensis Cayaponia Cayaponia bonariensis \N \N \N \N \N 27045 H.proluta Homopholis Homopholis proluta \N \N \N \N \N 27046 E.trifoliatobinatum Epimedium Epimedium trifoliatobinatum \N \N \N \N \N 27047 \N genus Floscaldasia \N \N \N \N \N 27048 M.tejupilcana Mimosa Mimosa tejupilcana \N \N \N \N \N 27049 C.pringlei Calamagrostis Calamagrostis pringlei \N \N \N \N \N 27050 L.bainesii Leucosphaera Leucosphaera bainesii \N \N \N \N \N 27051 I.heterophylla Iostephane Iostephane heterophylla \N \N \N \N \N 27052 O.frutescens Onosma Onosma frutescens \N \N \N \N \N 27053 A.monadelpha Adenia Adenia monadelpha \N \N \N \N \N 27054 A.harveyanum Argyrolobium Argyrolobium harveyanum \N \N \N \N \N 27055 C.donetzica Centaurea Centaurea donetzica \N \N \N \N \N 27056 \N genus Reevesia \N \N \N \N \N 27057 M.capensis Micrococca Micrococca capensis \N \N \N \N \N 27058 P.delavayi Peucedanum Peucedanum delavayi \N \N \N \N \N 27059 N.hastulatum Noccidium Noccidium hastulatum \N \N \N \N \N 27060 \N genus Pachygenium \N \N \N \N \N 27061 M.incana Malacothrix Malacothrix incana \N \N \N \N \N 27062 \N varietas Vicia faba var. minor tick bean \N \N \N \N 27063 \N subspecies Persoonia mollis subsp. nectens \N \N \N \N \N 27064 L.hirsutus Lathyrus Lathyrus hirsutus hairy vetchling,rough pea \N \N \N \N 27065 T.canadense Teucrium Teucrium canadense American germander \N \N \N \N 27066 C.straminea Carex Carex straminea \N \N \N \N \N 27067 A.virescens Anticlea Anticlea virescens \N \N \N \N \N 27068 T.govanianum Trillidium Trillidium govanianum \N \N \N \N \N 27069 G.velutina Guadua Guadua velutina \N \N \N \N \N 27070 A.ammanthus Anthemis Anthemis ammanthus \N \N \N \N \N 27071 T.klausii Tillandsia Tillandsia klausii \N \N \N \N \N 27072 F.australis Flindersia Flindersia australis \N \N \N \N \N 27073 L.filiformis Leptochloa Leptochloa filiformis \N \N \N \N \N 27074 I.arizonica Ipomopsis Ipomopsis arizonica \N \N \N \N \N 27075 T.crassa x Aegilotriticum Triticum aestivum x Aegilops crassa \N \N \N \N \N 27076 \N varietas Euonymus hamiltonianus var. sieboldianus \N \N \N \N \N 27077 R.laetus Ranunculus Ranunculus laetus \N \N \N \N \N 27078 I.marquesensis Ixora Ixora marquesensis \N \N \N \N \N 27079 \N family Pentadiplandraceae \N \N \N \N \N 27080 N.stenosolen Nonea Nonea stenosolen \N \N \N \N \N 27081 V.townsonii Hebe Veronica townsonii \N \N \N \N \N 27082 A.glaberrima Anthemis Anthemis glaberrima \N \N \N \N \N 27083 E.pilosa Euphorbia Euphorbia pilosa \N \N \N \N \N 27084 B.schumannii Brassiophoenix Brassiophoenix schumannii \N \N \N \N \N 27085 F.dicranostyla Ficus Ficus dicranostyla \N \N \N \N \N 27086 G.macrantha Grossera Grossera macrantha \N \N \N \N \N 27087 L.squamatus Leptorhynchos Leptorhynchos squamatus \N \N \N \N \N 27088 \N genus Elekmania \N \N \N \N \N 27089 E.calcottiae Escallonia Escallonia calcottiae \N \N \N \N \N 27090 A.griffithii Alangium Alangium griffithii \N \N \N \N \N 27091 C.microcarpa Crambe Crambe microcarpa \N \N \N \N \N 27092 C.spectabilis Chusquea Chusquea spectabilis \N \N \N \N \N 27093 N.hypogaeum Nematoceras Nematoceras hypogaeum \N \N \N \N \N 27094 H.citrina Hemerocallis Hemerocallis fulva x Hemerocallis citrina \N \N \N \N \N 27095 \N genus Oldfeltia \N \N \N \N \N 27096 C.obnupta Carex Carex obnupta \N \N \N \N \N 27097 S.sylvaticus Scirpus Scirpus sylvaticus \N \N \N \N \N 27098 P.pseudopothifolium Piper Piper pseudopothifolium \N \N \N \N \N 27099 L.MG-2007 Lankesterella Lankesterella sp. 1 MG-2007 \N \N \N \N \N 27100 C.simoneae Ceropegia Ceropegia simoneae \N \N \N \N \N 27101 R.cantoniensis Ranunculus Ranunculus cantoniensis \N \N \N \N \N 27102 \N tribe Lygeeae \N \N \N \N \N 27103 R.cerasinum Rhododendron Rhododendron cerasinum \N \N \N \N \N 27104 P.tussilaginis Pericallis Pericallis tussilaginis \N \N \N \N \N 27105 P.bougainvilleanum Paphiopedilum Paphiopedilum bougainvilleanum \N \N \N \N \N 27106 C.diphylla Chamaecrista Chamaecrista diphylla \N \N \N \N \N 27107 E.pekinensis Euphorbia Euphorbia pekinensis \N \N \N \N \N 27108 M.retorta Myrcia Myrcia retorta \N \N \N \N \N 27109 N.THH-2011 Nopalea Nopalea sp. THH-2011 \N \N \N \N \N 27110 H.3671 Heteropterys Heteropterys sp. Amorim 3671 \N \N \N \N \N 27111 B.cavaleriei Begonia Begonia cavaleriei \N \N \N \N \N 27112 A.belladonna Amaryllis Amaryllis belladonna \N \N \N \N \N 27113 N.BCI105750 Nectandra Nectandra sp. BCI105750 \N \N \N \N \N 27114 D.draco Dracaena Dracaena draco \N \N \N \N \N 27115 A.hicksii Aconitum Aconitum hicksii \N \N \N \N \N 27116 T.aurea Tabebuia Tabebuia aurea \N \N \N \N \N 27117 O.35518 Orobanche Orobanche cf. heldreichii Gu 35518 \N \N \N \N \N 27118 D.SM00-25 Dianthus Dianthus sp. Mathews SM00-25 \N \N \N \N \N 27119 C.littorale Centaurium Centaurium littorale \N \N \N \N \N 27120 P.daurica Paeonia Paeonia daurica \N \N \N \N \N 27121 A.cana Atriplex Atriplex cana \N \N \N \N \N 27122 C.tibeticum Cypripedium Cypripedium tibeticum \N \N \N \N \N 27123 P.talamancensis Passiflora Passiflora talamancensis \N \N \N \N \N 27124 A.amplexicaulis Asclepias Asclepias amplexicaulis \N \N \N \N \N 27125 T.nemorum Tetramerium Tetramerium nemorum \N \N \N \N \N 27126 C.aureus Calochortus Calochortus aureus golden mariposa lily \N \N \N \N 27127 D.fulgidum Dendrobium Dendrobium fulgidum \N \N \N \N \N 27128 L.poiteaui Lecythis Lecythis poiteaui \N \N \N \N \N 27129 M.4910 Malanea Malanea sp. Pirani & Bremer 4910 \N \N \N \N \N 27130 S.gandogeri Sonchus Sonchus gandogeri \N \N \N \N \N 27131 P.deusta Ptilothrix Ptilothrix deusta \N \N \N \N \N 27132 S.pilosissima Stachys Stachys pilosissima \N \N \N \N \N 27133 R.1995' Rafnia Rafnia sp. 'Kaess 1995' \N \N \N \N \N 27134 A.capensis Alectra Alectra capensis \N \N \N \N \N 27135 P.dolabriformis Peperomia Peperomia dolabriformis \N \N \N \N \N 27136 \N family Lacistemataceae \N \N \N \N \N 27137 \N subtribe Psittacanthinae \N \N \N \N \N 27138 I.humillima Isolepis Isolepis humillima \N \N \N \N \N 27139 \N varietas Populus tremula var. davidiana \N \N \N \N \N 27140 C.psednus Calochilus Calochilus psednus \N \N \N \N \N 27141 \N varietas Chorizanthe pungens var. pungens \N \N \N \N \N 27142 L.tristis Luisia Luisia tristis \N \N \N \N \N 27143 P.punicea Pitcairnia Pitcairnia punicea \N \N \N \N \N 27144 S.calcicola Schoenocaulon Schoenocaulon calcicola \N \N \N \N \N 27145 C.speciosa Ceiba Ceiba speciosa \N \N \N \N \N 27146 N.pugionifolia Nicoraepoa Nicoraepoa pugionifolia \N \N \N \N \N 27147 \N varietas Veronica orchidea var. eglandulosa \N \N \N \N \N 27148 U.borneensis Upuna Upuna borneensis \N \N \N \N \N 27149 C.renschii Cyperus Cyperus renschii \N \N \N \N \N 27150 \N subspecies Eleocharis acutangula cf. subsp. neotropica CEH-2009 \N \N \N \N \N 27151 T.andicola Telipogon Telipogon andicola \N \N \N \N \N 27152 S.brachypetala Schotia Schotia brachypetala \N \N \N \N \N 27153 O.vvedenskyi Olgaea Olgaea vvedenskyi \N \N \N \N \N 27154 E.schoenlandii Euphorbia Euphorbia schoenlandii \N \N \N \N \N 27155 C.diversifolia Collomia Collomia diversifolia \N \N \N \N \N 27156 \N varietas Draba cuneifolia var. integrifolia \N \N \N \N \N 27157 L.ternifolia Lithrea Lithrea ternifolia \N \N \N \N \N 27158 S.chloranthoides Sarcandra Sarcandra chloranthoides \N \N \N \N \N 27159 H.pellucidum Hieracium Hieracium pellucidum \N \N \N \N \N 27160 E.densifolium Eriastrum Eriastrum densifolium \N \N \N \N \N 27161 E.exsudans Euryops Euryops exsudans \N \N \N \N \N 27162 \N subspecies Trichosanthes pubera subsp. rubriflos \N \N \N \N \N 27163 R.fabrisii Rebutia Rebutia fabrisii \N \N \N \N \N 27164 L.latifolia Liparia Liparia latifolia \N \N \N \N \N 27165 P.reflexa Polyarrhena Polyarrhena reflexa \N \N \N \N \N 27166 K.gaboniae Klaineanthus Klaineanthus gaboniae \N \N \N \N \N 27167 E.grusonii Echinocactus Echinocactus grusonii \N \N \N \N \N 27168 C.acutifolius Cotoneaster Cotoneaster acutifolius \N \N \N \N \N 27169 L.siphilitica Lobelia Lobelia siphilitica great blue lobelia \N \N \N \N 27170 E.strigosus Echinops Echinops strigosus \N \N \N \N \N 27171 B.eutriphylla Berberis Berberis eutriphylla \N \N \N \N \N 27172 F.acmopetala Fritillaria Fritillaria acmopetala \N \N \N \N \N 27173 F.maculosa Flindersia Flindersia maculosa leopardtree \N \N \N \N 27174 A.pygmaea Asimina Asimina pygmaea \N \N \N \N \N 27175 D.ogilviensis Draba Draba ogilviensis \N \N \N \N \N 27176 T.macrorhiza Tolpis Tolpis macrorhiza \N \N \N \N \N 27177 D.joclemensii Dendrochilum Dendrochilum joclemensii \N \N \N \N \N 27178 T.gracilentum Trifolium Trifolium gracilentum \N \N \N \N \N 27179 T.praecox Thymus Thymus praecox \N \N \N \N \N 27180 P.obconica Primula Primula obconica German primrose,poison primrose \N \N \N \N 27181 H.wendlandiana Hydriastele Hydriastele wendlandiana \N \N \N \N \N 27182 \N genus Crocidium \N \N \N \N \N 27183 A.reniformis Aristolochia Aristolochia reniformis \N \N \N \N \N 27184 M.bella Mackaya Mackaya bella \N \N \N \N \N 27185 M.minutum Micromelum Micromelum minutum \N \N \N \N \N 27186 \N subspecies Streptocarpus beampingaratrensis subsp. beampingaratrensis \N \N \N \N \N 27187 C.ovata Cryptostylis Cryptostylis ovata \N \N \N \N \N 27188 C.tetrastachya Carex Carex tetrastachya \N \N \N \N \N 27189 D.emarginatum Delphinium Delphinium emarginatum \N \N \N \N \N 27190 A.rupicola Arum Arum rupicola \N \N \N \N \N 27191 P.campanulata Peliosanthes Peliosanthes campanulata \N \N \N \N \N 27192 P.composita Phlomis Phlomis composita \N \N \N \N \N 27193 E.burchan-buddae Elymus Elymus burchan-buddae \N \N \N \N \N 27194 A.lanceolata Acleisanthes Acleisanthes lanceolata \N \N \N \N \N 27195 \N subspecies Tetratheca aphylla subsp. megacarpa \N \N \N \N \N 27196 R.fruticosa Rhodocoma Rhodocoma fruticosa \N \N \N \N \N 27197 T.oligospermum Telephium Telephium oligospermum \N \N \N \N \N 27198 H.breweri Hesperolinon Hesperolinon breweri \N \N \N \N \N 27199 \N genus Changium \N \N \N \N \N 27200 P.delphinifolius Parasenecio Parasenecio delphinifolius \N \N \N \N \N 27201 B.artensis Bikkia Bikkia artensis \N \N \N \N \N 27202 A.macrocarpa Annesorhiza Annesorhiza macrocarpa \N \N \N \N \N 27203 P.caduca Psathyrostachys Psathyrostachys caduca \N \N \N \N \N 27204 R.suaveolens Rhododendron Rhododendron suaveolens \N \N \N \N \N 27205 M.angustata Muhlenbergia Muhlenbergia angustata \N \N \N \N \N 27206 P.stephensonii Platysace Platysace stephensonii \N \N \N \N \N 27207 V.aretioides Valeriana Valeriana aretioides \N \N \N \N \N 27208 \N subspecies Polemonium caeruleum subsp. caeruleum \N \N \N \N \N 27209 B.salicina Bedfordia Bedfordia salicina \N \N \N \N \N 27210 \N genus Trigonospermum \N \N \N \N \N 27211 A.annularis Astragalus Astragalus annularis \N \N \N \N \N 27212 \N genus Berula \N \N \N \N \N 27213 H.madagascariensis Helmiopsiella Helmiopsiella madagascariensis \N \N \N \N \N 27214 F.intercedens Festuca Festuca intercedens \N \N \N \N \N 27215 C.fuscula Carex Carex fuscula \N \N \N \N \N 27216 \N genus Ficus fig trees,figs \N \N \N \N 27217 A.cylindrica Actinidia Actinidia cylindrica \N \N \N \N \N 27218 L.syringantha Lonicera Lonicera syringantha \N \N \N \N \N 27219 A.debensis Arctotis Arctotis debensis \N \N \N \N \N 27220 C.pringlei Chaptalia Chaptalia pringlei \N \N \N \N \N 27221 \N genus Chromolepis \N \N \N \N \N 27222 \N subspecies Primula balbisii subsp. hungarica \N \N \N \N \N 27223 B.rectissima Boechera Boechera rectissima \N \N \N \N \N 27224 O.1519 Oldenlandia Oldenlandia cf. galioides Harwood 1519 \N \N \N \N \N 27225 Z.neocaledonica Zehneria Zehneria neocaledonica \N \N \N \N \N 27226 K.bitteri Kalanchoe Kalanchoe bitteri \N \N \N \N \N 27227 E.bolusianus Eliokarmos Eliokarmos bolusianus \N \N \N \N \N 27228 A.vaginatum Arceuthobium Arceuthobium vaginatum southwestern dwarf-mistletoe \N \N \N \N 27229 W.danissana Wajira Wajira danissana \N \N \N \N \N 27230 M.pinnatus Margyricarpus Margyricarpus pinnatus \N \N \N \N \N 27231 S.benziorum Simsia Simsia benziorum \N \N \N \N \N 27232 S.kaalae Schiedea Schiedea kaalae \N \N \N \N \N 27233 S.Sspobvien Sobralia Sobralia sp. Sspobvien \N \N \N \N \N 27234 S.5025 Salicornia Salicornia sp. Mucina 5025 \N \N \N \N \N 27235 L.MAG-2009 unclassified Lauraceae Lauraceae sp. MAG-2009 \N \N \N \N \N 27236 \N subspecies Viola chamissoniana subsp. robusta \N \N \N \N \N 27237 M.cucullata Myrceugenia Myrceugenia cucullata \N \N \N \N \N 27238 F.rara Fimbristylis Fimbristylis rara \N \N \N \N \N 27239 P.cristatus Potamogeton Potamogeton octandrus x Potamogeton cristatus \N \N \N \N \N 27240 P.melinonii Philodendron Philodendron melinonii \N \N \N \N \N 27241 P.brevicalyx Polhillia Polhillia brevicalyx \N \N \N \N \N 27242 G.caribensis Gyranthera Gyranthera caribensis \N \N \N \N \N 27243 \N genus Sagina \N \N \N \N \N 27244 S.leopoldense Solanum Solanum leopoldense \N \N \N \N \N 27245 P.latifolia Primula Primula latifolia \N \N \N \N \N 27246 C.welwitschii Chasmanthera Chasmanthera welwitschii \N \N \N \N \N 27247 \N genus Bivonaea \N \N \N \N \N 27248 C.pilifera Cliffortia Cliffortia pilifera \N \N \N \N \N 27249 S.biflora Stylosanthes Stylosanthes biflora \N \N \N \N \N 27250 \N genus Notothixos \N \N \N \N \N 27251 \N no rank environmental samples Taxonomy:1096714 \N \N \N \N \N 27252 U.caerulea Utricularia Utricularia caerulea bladderwort \N \N \N \N 27253 A.spiciformis Aristida Aristida spiciformis \N \N \N \N \N 27254 G.anisodonta Gentianella Gentianella anisodonta \N \N \N \N \N 27255 M.pyramidata Magnolia Magnolia pyramidata \N \N \N \N \N 27256 B.turkii Bulbophyllum Bulbophyllum turkii \N \N \N \N \N 27257 L.aromatica Leucocalantha Leucocalantha aromatica \N \N \N \N \N 27258 C.glandulosa Cayaponia Cayaponia glandulosa \N \N \N \N \N 27259 B.sichuanense Bupleurum Bupleurum sichuanense \N \N \N \N \N 27260 T.henryi Tetrastigma Tetrastigma henryi \N \N \N \N \N 27261 C.lentiginosum Cypripedium Cypripedium lentiginosum \N \N \N \N \N 27262 T.laxiflora Triglochin Triglochin laxiflora \N \N \N \N \N 27263 S.donianum Solanum Solanum donianum \N \N \N \N \N 27264 C.curvisepala Crataegus Crataegus curvisepala \N \N \N \N \N 27265 A.cutleri Asclepias Asclepias cutleri \N \N \N \N \N 27266 \N genus Euceraea \N \N \N \N \N 27267 A.sylvatica Adenogramma Adenogramma sylvatica \N \N \N \N \N 27268 L.cytisoides Lebeckia Lebeckia cytisoides \N \N \N \N \N 27269 H.rosea Houstonia Houstonia rosea rose bluet \N \N \N \N 27270 A.fragile Agropyron Agropyron fragile \N \N \N \N \N 27271 P.candida Passiflora Passiflora candida \N \N \N \N \N 27272 C.dipsacea Cota Cota dipsacea \N \N \N \N \N 27273 B.grandiflora Berlinia Berlinia grandiflora \N \N \N \N \N 27274 A.khasiana Aquilaria Aquilaria khasiana \N \N \N \N \N 27275 E.marginulata Eleocharis Eleocharis marginulata \N \N \N \N \N 27276 A.hispida Argemone Argemone hispida \N \N \N \N \N 27277 L.littorale Linum Linum littorale \N \N \N \N \N 27278 P.glaucescens Petrosimonia Petrosimonia glaucescens \N \N \N \N \N 27279 B.springfieldii Bothriochloa Bothriochloa springfieldii \N \N \N \N \N 27280 \N tribe Nuytsieae \N \N \N \N \N 27281 B.cinerea Bossiaea Bossiaea cinerea \N \N \N \N \N 27282 M.stylosa Milligania Milligania stylosa \N \N \N \N \N 27283 W.maximowiczii Weigela Weigela maximowiczii \N \N \N \N \N 27284 C.venenosum Chlorocardium Chlorocardium venenosum \N \N \N \N \N 27285 I.retzioides Ixianthes Ixianthes retzioides \N \N \N \N \N 27286 L.fordiana Lysimachia Lysimachia fordiana \N \N \N \N \N 27287 D.volubile Dichelostemma Dichelostemma volubile twining brodiaea \N \N \N \N 27288 P.trifolia Peperomia Peperomia trifolia \N \N \N \N \N 27289 E.strigosa Erica Erica strigosa \N \N \N \N \N 27290 T.constantinopolitanum Trifolium Trifolium constantinopolitanum \N \N \N \N \N 27291 D.exsuccosa Dicrastylis Dicrastylis exsuccosa \N \N \N \N \N 27292 \N subspecies Eriosyce taltalensis subsp. pilispina \N \N \N \N \N 27293 P.arenaria Pimelea Pimelea arenaria \N \N \N \N \N 27294 \N genus Cryosophila \N \N \N \N \N 27295 E.lehmanniana Eragrostis Eragrostis lehmanniana \N \N \N \N \N 27296 M.setuligera Mimosa Mimosa setuligera \N \N \N \N \N 27297 H.pendulum Hypecoum Hypecoum pendulum \N \N \N \N \N 27298 M.constricta Macaranga Macaranga constricta \N \N \N \N \N 27299 M.TL1713 Minuria Minuria sp. TL1713 \N \N \N \N \N 27300 P.attenuatum Piper Piper attenuatum \N \N \N \N \N 27301 \N varietas Chaetanthera linearis var. linearis \N \N \N \N \N 27302 W.subulata Wahlenbergia Wahlenbergia subulata \N \N \N \N \N 27303 H.liukiuensis Hydrangea Hydrangea liukiuensis \N \N \N \N \N 27304 K.marmorata Kalanchoe Kalanchoe marmorata \N \N \N \N \N 27305 \N varietas Goodyera foliosa var. maximowicziana \N \N \N \N \N 27306 C.graciliflora Calanthe Calanthe graciliflora \N \N \N \N \N 27307 C.pallescens Carex Carex pallescens \N \N \N \N \N 27308 F.bidwillii Fitzalania Fitzalania bidwillii \N \N \N \N \N 27309 C.tridentata Campanula Campanula tridentata \N \N \N \N \N 27310 \N genus Tristerix \N \N \N \N \N 27311 C.108 Calophyllum Calophyllum sp. Ruhfel 108 \N \N \N \N \N 27312 A.intervallaris Aspalathus Aspalathus intervallaris \N \N \N \N \N 27313 L.acuminata Luzula Luzula acuminata \N \N \N \N \N 27314 F.passiflora Fevillea Fevillea passiflora \N \N \N \N \N 27315 \N varietas Cleyera japonica var. morii \N \N \N \N \N 27316 F.religiosa Ficus Ficus religiosa bo tree,peepul,sacred fig \N \N \N \N 27317 \N genus Chrysobalanus \N \N \N \N \N 27318 A.malacophyllus Astragalus Astragalus malacophyllus \N \N \N \N \N 27319 \N varietas Garcinia opaca var. minor \N \N \N \N \N 27320 \N subspecies Allium ursinum subsp. ucrainicum \N \N \N \N \N 27321 \N genus Sarcobatus \N \N \N \N \N 27322 S.tryonii Stackhousia Stackhousia tryonii \N \N \N \N \N 27323 O.castellanosii Oxychloe Oxychloe castellanosii \N \N \N \N \N 27324 \N genus Neuontobotrys \N \N \N \N \N 27325 P.grisebachianus Phyllacanthus Phyllacanthus grisebachianus \N \N \N \N \N 27326 E.salmonis Elymus x Leymus Elymus elymoides x Leymus salinus subsp. salmonis \N \N \N \N \N 27327 M.maderensis Marcetella Marcetella maderensis \N \N \N \N \N 27328 O.anthropophora Orchis Orchis anthropophora \N \N \N \N \N 27329 G.heldreichii Gagea Gagea heldreichii \N \N \N \N \N 27330 H.subvirens Haemodorum Haemodorum subvirens \N \N \N \N \N 27331 O.eriopoda Oreomyrrhis Oreomyrrhis eriopoda \N \N \N \N \N 27332 C.colorata Caladenia Caladenia colorata \N \N \N \N \N 27333 S.elongatus Streptocarpus Streptocarpus elongatus \N \N \N \N \N 27334 A.unifolium Allium Allium unifolium \N \N \N \N \N 27335 S.lanceolata Sterculia Sterculia lanceolata \N \N \N \N \N 27336 E.williamsianus Elaeocarpus Elaeocarpus williamsianus \N \N \N \N \N 27337 B.maingayi Byttneria Byttneria maingayi \N \N \N \N \N 27338 P.mulgraveana Pseuduvaria Pseuduvaria mulgraveana \N \N \N \N \N 27339 A.fabri Acer Acer fabri \N \N \N \N \N 27340 \N genus Simira \N \N \N \N \N 27341 C.emoryi Carex Carex emoryi \N \N \N \N \N 27342 C.minimum Crinum Crinum minimum \N \N \N \N \N 27343 V.pennigera Verticordia Verticordia pennigera \N \N \N \N \N 27344 \N genus Dionycha \N \N \N \N \N 27345 P.burchellii Protea Protea burchellii \N \N \N \N \N 27346 S.filifolia Sibara Sibara filifolia \N \N \N \N \N 27347 G.viminea Gaertnera Gaertnera viminea \N \N \N \N \N 27348 A.kanusensis Arenaria Arenaria kanusensis \N \N \N \N \N 27349 (.truncata Populus (Populus tomentosa x P. bolleana) x P. tomentosa var. truncata \N \N \N \N \N 27350 R.lachenalioides Resnova Resnova lachenalioides \N \N \N \N \N 27351 O.ecuadorensis Oreobolus Oreobolus ecuadorensis \N \N \N \N \N 27352 G.squarrosa Gentiana Gentiana squarrosa \N \N \N \N \N 27353 C.11147 Carex Carex sp. Reznicek et Gonzalez 11147 \N \N \N \N \N 27354 H.elata Heterospathe Heterospathe elata \N \N \N \N \N 27355 T.7925 Tetramerista Tetramerista sp. Coode 7925 \N \N \N \N \N 27356 E.sarawschanica Euphorbia Euphorbia sarawschanica \N \N \N \N \N 27357 C.madagascariensis Caesalpinia Caesalpinia madagascariensis \N \N \N \N \N 27358 T.exscapa Townsendia Townsendia exscapa stemless townsendia \N \N \N \N 27359 \N genus Cochliasanthus \N \N \N \N \N 27360 M.depressus Mimulus Mimulus depressus \N \N \N \N \N 27361 S.concinna Sinningia Sinningia concinna \N \N \N \N \N 27362 O.subulatum Oreostylidium Oreostylidium subulatum \N \N \N \N \N 27363 O.fusca Otochilus Otochilus fusca \N \N \N \N \N 27364 M.propinqua Myosotis Myosotis propinqua \N \N \N \N \N 27365 S.asperum Symphytum Symphytum asperum \N \N \N \N \N 27366 S.lupulina Strobilanthes Strobilanthes lupulina \N \N \N \N \N 27367 I.leptophylla Ipomoea Ipomoea leptophylla \N \N \N \N \N 27368 A.aurea Agave Agave aurea \N \N \N \N \N 27369 S.maderensis Saxifraga Saxifraga maderensis \N \N \N \N \N 27370 T.fruticosus Thamnochortus Thamnochortus fruticosus \N \N \N \N \N 27371 S.lateriflora Schwenckia Schwenckia lateriflora \N \N \N \N \N 27372 T.palmatifida Tacca Tacca palmatifida \N \N \N \N \N 27373 P.rothrockii Plectocephalus Plectocephalus rothrockii \N \N \N \N \N 27374 U.insculptum Uvariastrum Uvariastrum insculptum \N \N \N \N \N 27375 \N genus Wislizenia \N \N \N \N \N 27376 \N genus Desmanthodium \N \N \N \N \N 27377 C.tompkinsii Carex Carex tompkinsii \N \N \N \N \N 27378 P.3532 Pedersenia Pedersenia cf. hassleriana Borsch & Ibisch 3532 \N \N \N \N \N 27379 P.striatus Peniocereus Peniocereus striatus gearstem cactus \N \N \N \N 27380 U.geminiloba Utricularia Utricularia geminiloba \N \N \N \N \N 27381 H.pastuchovii Hedera Hedera pastuchovii \N \N \N \N \N 27382 M.1661 Maxillaria Maxillaria cf. strumata Blanco 1661 \N \N \N \N \N 27383 \N genus Polemannia \N \N \N \N \N 27384 C.vaseyi Chrysothamnus Chrysothamnus vaseyi \N \N \N \N \N 27385 \N genus Juglans walnut \N \N \N \N 27386 A.rigida Aristolochia Aristolochia rigida \N \N \N \N \N 27387 P.minor Paracaleana Paracaleana minor \N \N \N \N \N 27388 \N genus Sabia \N \N \N \N \N 27389 A.veracruzana Alophia Alophia veracruzana \N \N \N \N \N 27390 P.stenophylla Photinia Photinia stenophylla \N \N \N \N \N 27391 \N varietas Mussaenda philippica var. philippica \N \N \N \N \N 27392 \N subspecies Fenestraria rhopalophylla subsp. rhopalophylla \N \N \N \N \N 27393 M.glaucescens Mimulus Mimulus glaucescens \N \N \N \N \N 27394 C.fidicularium Cyrtochilum Cyrtochilum fidicularium \N \N \N \N \N 27395 L.CSL-2007b Liparis Liparis sp. CSL-2007b \N \N \N \N \N 27396 O.laxa Orthoclada Orthoclada laxa \N \N \N \N \N 27397 A.buddleioides Arachnothryx Arachnothryx buddleioides \N \N \N \N \N 27398 \N varietas Psorothamnus polydenius var. jonesii \N \N \N \N \N 27399 \N subspecies Disa obtusa subsp. hottentotica \N \N \N \N \N 27400 T.vernum Trifolium Trifolium vernum \N \N \N \N \N 27401 G.cuneata Geonoma Geonoma cuneata \N \N \N \N \N 27402 \N genus Bassia \N \N \N \N \N 27403 F.tatarica Ferula Ferula tatarica \N \N \N \N \N 27404 S.comberi Sarcoglyphis Sarcoglyphis comberi \N \N \N \N \N 27405 T.subcapitatum Trichophorum Trichophorum subcapitatum \N \N \N \N \N 27406 B.longicaule Bupleurum Bupleurum longicaule \N \N \N \N \N 27407 M.multispicata Miconia Miconia multispicata \N \N \N \N \N 27408 \N genus Diplasia \N \N \N \N \N 27409 D.chiribogana Drymonia Drymonia chiribogana \N \N \N \N \N 27410 S.septentrionale Sparattanthelium Sparattanthelium septentrionale \N \N \N \N \N 27411 C.pusilla Conostylis Conostylis pusilla \N \N \N \N \N 27412 D.rupicola Dianthus Dianthus rupicola \N \N \N \N \N 27413 Z.mollissima Zaluzania Zaluzania mollissima \N \N \N \N \N 27414 P.billardierei Poa Poa billardierei \N \N \N \N \N 27415 C.echinata Carex Carex echinata \N \N \N \N \N 27416 S.fasciatus Staurochilus Staurochilus fasciatus \N \N \N \N \N 27417 S.discolor Salvia Salvia discolor \N \N \N \N \N 27418 M.bocasana Mammillaria Mammillaria bocasana \N \N \N \N \N 27419 P.pleionoides Pleione Pleione pleionoides \N \N \N \N \N 27420 P.hermaniifolium Pelargonium Pelargonium hermaniifolium \N \N \N \N \N 27421 A.nepenthoides Arisaema Arisaema nepenthoides \N \N \N \N \N 27422 A.lemmonii Asarum Asarum lemmonii \N \N \N \N \N 27423 N.sanluisensis Nassella Nassella sanluisensis \N \N \N \N \N 27424 R.leptorhynchoides Rutidosis Rutidosis leptorhynchoides \N \N \N \N \N 27425 E.kerneri Euphorbia Euphorbia kerneri \N \N \N \N \N 27426 U.library unclassified Paniceae Urochloa brizantha/decumbens/ruziziensis mixed EST library \N \N \N \N \N 27427 F.laxiflorum Fusispermum Fusispermum laxiflorum \N \N \N \N \N 27428 R.correoides Rhododendron Rhododendron correoides \N \N \N \N \N 27429 A.carnosa Arida Arida carnosa \N \N \N \N \N 27430 T.lanceolarium Tetrastigma Tetrastigma lanceolarium \N \N \N \N \N 27431 A.latifolium Androcymbium Androcymbium latifolium \N \N \N \N \N 27432 L.jeholense Ligusticum Ligusticum jeholense \N \N \N \N \N 27433 Z.798 Zygophyllum Zygophyllum sp. Bellstedt 798 \N \N \N \N \N 27434 M.796 Myrciaria Myrciaria aff. floribunda Mazine 796 \N \N \N \N \N 27435 A.macrocephala Acaena Acaena macrocephala \N \N \N \N \N 27436 H.160 Humbertioturraea Humbertioturraea sp. Bardot-Vaucoulon 160 \N \N \N \N \N 27437 P.royenii Pilosocereus Pilosocereus royenii \N \N \N \N \N 27438 C.pictus Costus Costus pictus \N \N \N \N \N 27439 A.drummondii Alophia Alophia drummondii \N \N \N \N \N 27440 \N genus Leea \N \N \N \N \N 27441 M.onilahensis Mimosa Mimosa onilahensis \N \N \N \N \N 27442 D.rigida Diospyros Diospyros rigida \N \N \N \N \N 27443 E.virgineus Euryops Euryops virgineus \N \N \N \N \N 27444 G.afzelii Garcinia Garcinia afzelii \N \N \N \N \N 27445 D.decaryi Delonix Delonix decaryi \N \N \N \N \N 27446 A.saxifractor Astragalus Astragalus saxifractor \N \N \N \N \N 27447 E.tibeticus Elymus Elymus tibeticus \N \N \N \N \N 27448 M.mossambicensis Mimosa Mimosa mossambicensis \N \N \N \N \N 27449 N.Z5 Neoachmandra Neoachmandra sp. Z5 \N \N \N \N \N 27450 P.schiedeana Persea Persea schiedeana \N \N \N \N \N 27451 M.glandulosa Manulea Manulea glandulosa \N \N \N \N \N 27452 C.glauca Casuarina Casuarina glauca swamp oak \N \N \N \N 27453 S.taeniotrichum Solanum Solanum taeniotrichum \N \N \N \N \N 27454 S.hirsuta Spirobassia Spirobassia hirsuta hairy smotherweed \N \N \N \N 27455 A.pungens Alternanthera Alternanthera pungens \N \N \N \N \N 27456 \N varietas Drimys winteri var. chilensis \N \N \N \N \N 27457 \N genus Rhopalobrachium \N \N \N \N \N 27458 P.maculata Pelexia Pelexia maculata \N \N \N \N \N 27459 A.saxatilis Alchemilla Alchemilla saxatilis \N \N \N \N \N 27460 P.alsinifolium Polycarpon Polycarpon alsinifolium \N \N \N \N \N 27461 \N genus Mareyopsis \N \N \N \N \N 27462 L.standishii Lonicera Lonicera standishii \N \N \N \N \N 27463 S.sinuatoides Saussurea Saussurea sinuatoides \N \N \N \N \N 27464 L.ligustrina Lyonia Lyonia ligustrina maleberry \N \N \N \N 27465 \N genus Stanhopea \N \N \N \N \N 27466 \N varietas Carex lenticularis var. lipocarpa \N \N \N \N \N 27467 C.aspera Cordia Cordia aspera \N \N \N \N \N 27468 S.lastarrianus Senecio Senecio lastarrianus \N \N \N \N \N 27469 S.multiflorus Siloxerus Siloxerus multiflorus \N \N \N \N \N 27470 P.15676 Poa Poa aff. lilloi Peterson & Soreng 15676 \N \N \N \N \N 27471 \N genus Burretiokentia \N \N \N \N \N 27472 \N genus Ammocharis \N \N \N \N \N 27474 V.davidii Vitis Vitis davidii \N \N \N \N \N 27475 \N genus Orthomene \N \N \N \N \N 27476 T.caquetana Tococa Tococa caquetana \N \N \N \N \N 27477 \N genus Spinifex \N \N \N \N \N 27478 D.cochliostema Dewevrella Dewevrella cochliostema \N \N \N \N \N 27479 \N varietas Leptodermis pilosa var. acanthoclada \N \N \N \N \N 27480 K.multiflora Keetia Keetia multiflora \N \N \N \N \N 27481 Q.salicina Quercus Quercus salicina \N \N \N \N \N 27482 C.semisecta Campanula Campanula semisecta \N \N \N \N \N 27483 P.amboinicum Pimelodendron Pimelodendron amboinicum \N \N \N \N \N 27484 S.AC66 Suaeda Suaeda sp. AC66 \N \N \N \N \N 27485 C.striata Cissus Cissus striata striped treebine \N \N \N \N 27486 E.maracandicus Echinops Echinops maracandicus \N \N \N \N \N 27487 K.pauciflora Kunzea Kunzea pauciflora \N \N \N \N \N 27488 D.XMW-2002-19 Dendrobium Dendrobium sp. XMW-2002-19 \N \N \N \N \N 27489 C.aggregata Carex Carex aggregata \N \N \N \N \N 27490 D.CR-2009 Danais Danais sp. CR-2009 \N \N \N \N \N 27491 S.dulcis Scoparia Scoparia dulcis escobilla,licorice weed,sweet broom,tapixaba,vassourinha \N \N \N \N 27492 L.tetramera Lissocarpa Lissocarpa tetramera \N \N \N \N \N 27493 B.bowerae Begonia Begonia bowerae eyelash begonia \N \N \N \N 27494 A.concinnum Aceratium Aceratium concinnum \N \N \N \N \N 27495 P.quadrifarium Paspalum Paspalum quadrifarium \N \N \N \N \N 27496 \N genus Preussiodora \N \N \N \N \N 27497 H.pseudoglaucophylla Habenaria Habenaria pseudoglaucophylla \N \N \N \N \N 27498 O.sibthorpii Ornithogalum Ornithogalum sibthorpii \N \N \N \N \N 27499 C.euphrasioides Chaetanthera Chaetanthera euphrasioides \N \N \N \N \N 27500 C.glaucocladus Cenchrus Cenchrus glaucocladus \N \N \N \N \N 27501 \N subspecies Achillea millefolium subsp. ceretanica \N \N \N \N \N 27502 \N genus Muhlenbergia \N \N \N \N \N 27503 C.intermedia Corymbia Corymbia intermedia \N \N \N \N \N 27504 C.friesii Cuscuta Cuscuta friesii \N \N \N \N \N 27505 O.94028 Oxalis Oxalis sp. Qiu 94028 \N \N \N \N \N 27506 S.purpurea Scorzonera Scorzonera purpurea \N \N \N \N \N 27507 P.rugosum Piper Piper rugosum \N \N \N \N \N 27508 \N genus Nothocissus \N \N \N \N \N 27509 \N genus Igidia \N \N \N \N \N 27510 O.engleriana Oxalis Oxalis engleriana \N \N \N \N \N 27511 \N genus Hawkesiophyton \N \N \N \N \N 27512 F.procumbens Fuchsia Fuchsia procumbens \N \N \N \N \N 27513 C.glabella Coursetia Coursetia glabella \N \N \N \N \N 27514 P.nuerensis Pycreus Pycreus nuerensis \N \N \N \N \N 27515 P.rockii Pimpinella Pimpinella rockii \N \N \N \N \N 27516 \N genus Syringodea \N \N \N \N \N 27517 D.multisetosa Drimia Drimia multisetosa \N \N \N \N \N 27518 C.integrifolia Clavija Clavija integrifolia \N \N \N \N \N 27519 A.hispalensis Armeria Armeria hispalensis \N \N \N \N \N 27520 M.laurina Mangifera Mangifera laurina \N \N \N \N \N 27521 M.flanaganii Mystacidium Mystacidium flanaganii \N \N \N \N \N 27522 \N genus Chileranthemum \N \N \N \N \N 27523 E.decumbens Eleocharis Eleocharis decumbens \N \N \N \N \N 27524 N.boschiana Nepenthes Nepenthes boschiana \N \N \N \N \N 27525 C.sample environmental samples Taxonomy:404787 Caryophyllaceae environmental sample \N \N \N \N \N 27526 \N genus Limnophyton \N \N \N \N \N 27527 \N genus Lobelia \N \N \N \N \N 27528 M.conothamnoides Melaleuca Melaleuca conothamnoides \N \N \N \N \N 27529 E.velatiflora Erica Erica velatiflora \N \N \N \N \N 27530 \N genus Carlemannia \N \N \N \N \N 27531 N.pazijae Neuroloma Neuroloma pazijae \N \N \N \N \N 27532 B.lucens Bersama Bersama lucens \N \N \N \N \N 27533 B.urbana Bletia Bletia urbana \N \N \N \N \N 27534 T.SB-2011 Tina Tina sp. SB-2011 \N \N \N \N \N 27535 \N genus Chloris \N \N \N \N \N 27536 R.JFG258 Rubia Rubia sp. JFG258 \N \N \N \N \N 27537 \N genus Polyclathra \N \N \N \N \N 27538 N.2 Neonauclea Neonauclea sp. 2 \N \N \N \N \N 27539 R.christii Rhododendron Rhododendron christii \N \N \N \N \N 27540 E.australis Euphorbia Euphorbia australis \N \N \N \N \N 27541 \N varietas Mimosa pigra var. dehiscens \N \N \N \N \N 27542 C.incana Consolida Consolida incana \N \N \N \N \N 27543 M.punctata Malaxis Malaxis punctata \N \N \N \N \N 27544 M.multidigitata Mammillaria Mammillaria multidigitata \N \N \N \N \N 27545 A.tataricus Aster Aster tataricus \N \N \N \N \N 27546 S.cylindrica Sansevieria Sansevieria cylindrica \N \N \N \N \N 27547 \N subspecies Festuca trichophylla subsp. trichophylla \N \N \N \N \N 27548 S.lineata Stillingia Stillingia lineata \N \N \N \N \N 27549 L.praecox Luetzelburgia Luetzelburgia praecox \N \N \N \N \N 27550 G.wallichii Gluta Gluta wallichii \N \N \N \N \N 27551 S.gregaria Sanicula Sanicula gregaria \N \N \N \N \N 27552 U.mollis Urochloa Urochloa mollis \N \N \N \N \N 27553 D.pulchellus Deeringothamnus Deeringothamnus pulchellus \N \N \N \N \N 27554 L.axillaris Lachnaea Lachnaea axillaris \N \N \N \N \N 27555 P.augustus Paepalanthus Paepalanthus augustus \N \N \N \N \N 27556 M.turkeliae Maxillaria Maxillaria turkeliae \N \N \N \N \N 27557 P.dactylifera Phoenix Phoenix dactylifera date palm \N \N \N \N 27558 R.tangarana Ruprechtia Ruprechtia tangarana \N \N \N \N \N 27559 B.attenuatifolia Bistorta Bistorta attenuatifolia \N \N \N \N \N 27560 S.panduriformis Senecio Senecio panduriformis \N \N \N \N \N 27561 C.kotschyana Cuscuta Cuscuta kotschyana \N \N \N \N \N 27562 S.3915 Saranthe Saranthe aff. eichleri Chase 3915 \N \N \N \N \N 27563 A.bracteolata Aristolochia Aristolochia bracteolata \N \N \N \N \N 27564 \N genus Behnia \N \N \N \N \N 27565 A.nummulariifolia Anagallis Anagallis nummulariifolia \N \N \N \N \N 27566 S.occultum Solanum Solanum occultum \N \N \N \N \N 27567 I.planifolia Iris Iris planifolia \N \N \N \N \N 27568 M.lanotan Mitrephora Mitrephora lanotan \N \N \N \N \N 27569 M.opacum Machaerium Machaerium opacum \N \N \N \N \N 27570 S.falcatus Sarcochilus Sarcochilus falcatus \N \N \N \N \N 27571 L.206 Lupinus Lupinus sp. Eastwood 206 \N \N \N \N \N 27572 \N genus Motandra \N \N \N \N \N 27574 C.bicolor Cymbidium Cymbidium bicolor \N \N \N \N \N 27575 O.pterocarpa Oreomunnea Oreomunnea pterocarpa \N \N \N \N \N 27576 N.marliacea Nymphaea Nymphaea x marliacea \N \N \N \N \N 27577 \N genus Morus mulberries,mulberry trees \N \N \N \N 27578 \N tribe Rondeletieae \N \N \N \N \N 27579 I.grandifolius Isodon Isodon grandifolius \N \N \N \N \N 27580 A.micranthum Acer Acer micranthum \N \N \N \N \N 27581 V.padifolium Vaccinium Vaccinium padifolium \N \N \N \N \N 27582 M.eleuterostachya Melaleuca Melaleuca eleuterostachya \N \N \N \N \N 27583 T.organensis Tillandsia Tillandsia organensis \N \N \N \N \N 27584 A.eupatoria Acaena Acaena eupatoria \N \N \N \N \N 27585 C.pilosa Chamaecrista Chamaecrista pilosa \N \N \N \N \N 27586 C.lathyroides Crotalaria Crotalaria lathyroides \N \N \N \N \N 27587 T.microcarpum Theobroma Theobroma microcarpum \N \N \N \N \N 27588 B.bambusoides Buergersiochloa Buergersiochloa bambusoides \N \N \N \N \N 27589 \N genus Androstachys \N \N \N \N \N 27590 M.californica Melica Melica californica \N \N \N \N \N 27591 R.clavata Rhipsalis Rhipsalis clavata \N \N \N \N \N 27592 \N genus Sarracenia pitcherplants \N \N \N \N 27593 L.chilensis Luzula Luzula chilensis \N \N \N \N \N 27594 A.alaschanica Arabis Arabis alaschanica \N \N \N \N \N 27595 R.lakatra Ravenea Ravenea lakatra \N \N \N \N \N 27596 E.sparganophyllum Eryngium Eryngium sparganophyllum \N \N \N \N \N 27597 T.compressa Tetraria Tetraria compressa \N \N \N \N \N 27598 C.canescens Culcitium Culcitium canescens \N \N \N \N \N 27599 C.palaestina Cerinthe Cerinthe palaestina \N \N \N \N \N 27600 \N genus Thorncroftia \N \N \N \N \N 27601 A.fauriei Alnus Alnus fauriei \N \N \N \N \N 27602 A.persica Anthemis Anthemis persica \N \N \N \N \N 27603 B.commelynoideum Bupleurum Bupleurum commelynoideum \N \N \N \N \N 27604 T.carthagenense Trichocentrum Trichocentrum carthagenense \N \N \N \N \N 27605 F.weberbaueri Fosterella Fosterella weberbaueri \N \N \N \N \N 27606 N.purpurea Nageliella Nageliella purpurea \N \N \N \N \N 27607 N.gynura Nannoglottis Nannoglottis gynura \N \N \N \N \N 27608 P.iridescens Phyllostachys Phyllostachys iridescens \N \N \N \N \N 27609 S.4296 Scaphyglottis Scaphyglottis aff. corallorrhiza FP 4296 \N \N \N \N \N 27610 \N tribe Exaceae \N \N \N \N \N 27611 \N varietas Actinodaphne macrophylla var. angustifolia \N \N \N \N \N 27612 I.devolii Impatiens Impatiens devolii \N \N \N \N \N 27613 \N subspecies Acer opalus subsp. obtusatum \N \N \N \N \N 27614 M.lewisiae Moraea Moraea lewisiae \N \N \N \N \N 27615 A.halleri Arabidopsis Arabidopsis halleri \N \N \N \N \N 27616 C.carnosa Codonanthe Codonanthe carnosa \N \N \N \N \N 27617 P.3356 Psiguria Psiguria sp. Noblick 3356 \N \N \N \N \N 27618 C.phaeolepis Cyperus Cyperus phaeolepis \N \N \N \N \N 27619 S.pectinata Seymeria Seymeria pectinata \N \N \N \N \N 27620 P.chinense Polemonium Polemonium chinense \N \N \N \N \N 27621 \N varietas Mimosa claussenii var. claviceps \N \N \N \N \N 27622 P.glandulosus Paramiflos Paramiflos glandulosus \N \N \N \N \N 27623 B.sambucina Babiana Babiana sambucina \N \N \N \N \N 27624 \N family Nelumbonaceae lotus family \N \N \N \N 27625 A.roseoflorus Aeschynanthus Aeschynanthus roseoflorus \N \N \N \N \N 27626 A.macrourus Astragalus Astragalus macrourus \N \N \N \N \N 27627 \N varietas Malacothrix saxatilis var. implicata \N \N \N \N \N 27628 C.orthoneura Clusia Clusia orthoneura \N \N \N \N \N 27629 F.velutina Fraxinus Fraxinus velutina velvet ash \N \N \N \N 27630 \N genus Lagenophora \N \N \N \N \N 27631 P.salicina Polygala Polygala salicina \N \N \N \N \N 27632 P.apicaudata Plagiostachys Plagiostachys apicaudata \N \N \N \N \N 27633 D.simplex Diplotaxis Diplotaxis simplex \N \N \N \N \N 27634 \N family Bixaceae lipstick tree family \N \N \N \N 27635 \N subspecies Sarcocapnos baetica subsp. ardalii \N \N \N \N \N 27636 B.chinensis Betula Betula chinensis jian hua,to-kamba \N \N \N \N 27637 A.arizonica Actaea Actaea arizonica \N \N \N \N \N 27638 G.elatinoides Glossostigma Glossostigma elatinoides small mud-mat \N \N \N \N 27639 \N genus Parthenium \N \N \N \N \N 27640 \N genus Cephalomappa \N \N \N \N \N 27641 C.americanum Chrysosplenium Chrysosplenium americanum golden saxifrage,water-carpet \N \N \N \N 27642 S.hammittii Sibaropsis Sibaropsis hammittii \N \N \N \N \N 27643 P.weddellii Pilea Pilea weddellii \N \N \N \N \N 27644 A.arenicola Anthemis Anthemis arenicola \N \N \N \N \N 27645 A.divaricatus Actinocephalus Actinocephalus divaricatus \N \N \N \N \N 27646 \N tribe Lymanbensonieae \N \N \N \N \N 27647 M.uvedaliae Mimulus Mimulus uvedaliae \N \N \N \N \N 27648 \N subspecies Calceolaria atahualpae subsp. atahualpae \N \N \N \N \N 27649 A.incognita Agrocharis Agrocharis incognita \N \N \N \N \N 27650 E.leucopelta Erica Erica leucopelta \N \N \N \N \N 27651 A.cyaneum Allium Allium cyaneum \N \N \N \N \N 27652 C.setosa Chamaecrista Chamaecrista setosa \N \N \N \N \N 27653 S.colorata Strobilanthes Strobilanthes colorata \N \N \N \N \N 27654 C.lepidocarpa Carex Carex lepidocarpa \N \N \N \N \N 27655 L.hieronymi Lampayo Lampayo hieronymi \N \N \N \N \N 27656 C.parallela Carex Carex parallela \N \N \N \N \N 27657 H.stricta Heliconia Heliconia stricta \N \N \N \N \N 27658 C.rupicola Crucihimalaya Crucihimalaya rupicola \N \N \N \N \N 27659 \N genus Cakile \N \N \N \N \N 27660 B.argillacea Bolandia Bolandia argillacea \N \N \N \N \N 27661 L.reticulata Leptadenia Leptadenia reticulata \N \N \N \N \N 27662 I.baroni Impatiens Impatiens baroni \N \N \N \N \N 27663 P.laciniata Pterocypsela Pterocypsela laciniata \N \N \N \N \N 27664 B.incana Bernardia Bernardia incana \N \N \N \N \N 27665 P.plumosus Plumatichilos Plumatichilos plumosus \N \N \N \N \N 27666 G.atiquipana Gaya Gaya atiquipana \N \N \N \N \N 27667 \N varietas Potentilla gracilis var. flabelliformis \N \N \N \N \N 27668 E.racemosus Echinopepon Echinopepon racemosus \N \N \N \N \N 27669 T.fendleri Thalictrum Thalictrum fendleri \N \N \N \N \N 27670 A.glareicola Allocasuarina Allocasuarina glareicola \N \N \N \N \N 27671 J.subsecundus Juncus Juncus subsecundus \N \N \N \N \N 27672 C.floribunda Cloezia Cloezia floribunda \N \N \N \N \N 27673 P.sanguisorbae Packera Packera sanguisorbae \N \N \N \N \N 27674 C.phathyrantha Conostylis Conostylis phathyrantha \N \N \N \N \N 27675 O.grenieri Orobanche Orobanche grenieri \N \N \N \N \N 27676 C.woronowii Centaurea Centaurea woronowii \N \N \N \N \N 27677 E.viguieri Euphorbia Euphorbia viguieri \N \N \N \N \N 27678 A.pubescens Artemisia Artemisia pubescens \N \N \N \N \N 27679 E.borealis Euphorbia Euphorbia borealis \N \N \N \N \N 27680 S.uniflorus Scleranthus Scleranthus uniflorus \N \N \N \N \N 27681 T.timopheevii Triticum Triticum timopheevii Sanduri wheat \N \N \N \N 27682 M.potentilloides Montiopsis Montiopsis potentilloides \N \N \N \N \N 27683 \N genus Berchemiella \N \N \N \N \N 27684 S.mitrata Seidenfadenia Seidenfadenia mitrata \N \N \N \N \N 27685 M.spinosa Moriera Moriera spinosa \N \N \N \N \N 27686 \N genus Pseudotrillium \N \N \N \N \N 27687 \N tribe Echinophoreae \N \N \N \N \N 27688 T.caucasicum Trifolium Trifolium caucasicum \N \N \N \N \N 27689 \N genus Morrenia \N \N \N \N \N 27690 A.asteroides Androcymbium Androcymbium asteroides \N \N \N \N \N 27691 C.articulata Cruciata Cruciata articulata \N \N \N \N \N 27692 H.latifolia Hopea Hopea latifolia \N \N \N \N \N 27693 C.rossii Commersonia Commersonia rossii \N \N \N \N \N 27694 A.graeca Alkanna Alkanna graeca \N \N \N \N \N 27695 B.newportii Bulbophyllum Bulbophyllum newportii \N \N \N \N \N 27696 D.mucronata Diplolepis Diplolepis mucronata \N \N \N \N \N 27697 S.schreberi Schoepfia Schoepfia schreberi \N \N \N \N \N 27698 L.schweinfurthii Lycium Lycium schweinfurthii \N \N \N \N \N 27699 G.pusillum Gastrolobium Gastrolobium pusillum \N \N \N \N \N 27700 P.salicifolium Phalacrocarpum Phaeostigma salicifolium \N \N \N \N \N 27701 C.scoparia Crambe Crambe scoparia \N \N \N \N \N 27702 R.spinosissima Rosa Rosa spinosissima \N \N \N \N \N 27703 H.corydalifolium Hymenidium Hymenidium corydalifolium \N \N \N \N \N 27704 \N genus Heterocypsela \N \N \N \N \N 27705 M.submutica Mellera Mellera submutica \N \N \N \N \N 27706 M.speciosa Muhlenbergia Muhlenbergia speciosa \N \N \N \N \N 27707 R.curvatum Ribes Ribes curvatum granite gooseberry \N \N \N \N 27708 L.brassicoides Ligularia Ligularia brassicoides \N \N \N \N \N 27709 \N genus Chaerophyllopsis \N \N \N \N \N 27710 D.cordobae Dracula Dracula cordobae \N \N \N \N \N 27711 O.trilobum Odontoglossum Odontoglossum trilobum \N \N \N \N \N 27712 P.alpicola Potentilla Potentilla alpicola \N \N \N \N \N 27713 \N varietas Bambusa vulgaris var. striata \N \N \N \N \N 27714 P.lagopus Plantago Plantago lagopus \N \N \N \N \N 27715 \N subspecies Fuchsia microphylla subsp. hidalgensis \N \N \N \N \N 27716 P.fremontii Psorothamnus Psorothamnus fremontii \N \N \N \N \N 27717 M.JHN Macrocarpaea Macrocarpaea sp. JHN \N \N \N \N \N 27718 C.nardosmia Cacaliopsis Cacaliopsis nardosmia \N \N \N \N \N 27719 P.grossus Phyllobolus Phyllobolus grossus \N \N \N \N \N 27720 M.biflora Medicago Medicago biflora \N \N \N \N \N 27721 C.maximowiczii Crataegus Crataegus maximowiczii \N \N \N \N \N 27722 S.denaense Sphaerosciadium Sphaerosciadium denaense \N \N \N \N \N 27723 P.macrocarpa Phaleria Phaleria macrocarpa \N \N \N \N \N 27724 C.socotrana Cyanixia Cyanixia socotrana \N \N \N \N \N 27725 \N varietas Mimosa pseudoradula var. pseudoradula \N \N \N \N \N 27726 S.suffruticosa Sesamoides Sesamoides suffruticosa \N \N \N \N \N 27727 V.virginicum Veratrum Veratrum virginicum \N \N \N \N \N 27728 A.gilfillanii Afrocanthium Afrocanthium gilfillanii \N \N \N \N \N 27729 D.venulosum Delphinium Delphinium venulosum \N \N \N \N \N 27730 E.microphyllum Epilobium Epilobium microphyllum \N \N \N \N \N 27731 \N genus Marina false prairie-clover \N \N \N \N 27732 \N genus Peperomia radiator plants \N \N \N \N 27733 L.athium Lycium Lycium athium \N \N \N \N \N 27734 T.pindicum Taraxacum Taraxacum pindicum \N \N \N \N \N 27735 Z.minutiflora Zieria Zieria minutiflora \N \N \N \N \N 27736 \N genus Lalldhwojia \N \N \N \N \N 27737 M.2338 Maxillaria Maxillaria cf. acutifolia Whitten 2338 \N \N \N \N \N 27738 C.farreri Cypripedium Cypripedium farreri \N \N \N \N \N 27739 \N subspecies Vicia sativa subsp. sativa \N \N \N \N \N 27740 E.enterophora Euphorbia Euphorbia enterophora \N \N \N \N \N 27741 A.asperifolia Archibaccharis Archibaccharis asperifolia \N \N \N \N \N 27742 T.incisum Tropaeolum Tropaeolum incisum \N \N \N \N \N 27743 B.macrolepis Billbergia Billbergia macrolepis \N \N \N \N \N 27744 A.tomentosum Arctium Arctium tomentosum \N \N \N \N \N 27745 C.tetrandra Catanthera Catanthera tetrandra \N \N \N \N \N 27746 G.LIC-2007 Gorgonidium Gorgonidium sp. LIC-2007 \N \N \N \N \N 27747 C.123029 Cleisostoma Cleisostoma sp. Heidelberg BG 123029 \N \N \N \N \N 27748 S.vanhouttei Spiraea Spiraea x vanhouttei \N \N \N \N \N 27749 P.simplicior Polemannia Polemannia simplicior \N \N \N \N \N 27750 A.paupercula Agalinis Agalinis paupercula \N \N \N \N \N 27751 A.alpina Anemone Anemone alpina \N \N \N \N \N 27752 \N genus Stereochilus \N \N \N \N \N 27753 P.denticulata Primula Primula denticulata \N \N \N \N \N 27754 C.ogadensis Coccinia Coccinia ogadensis \N \N \N \N \N 27755 C.oresbia Castilleja Castilleja oresbia \N \N \N \N \N 27756 A.edumea Anthemis Anthemis edumea \N \N \N \N \N 27757 D.victoriae-reginae Dendrobium Dendrobium victoriae-reginae \N \N \N \N \N 27758 L.borysthenicum Lythrum Lythrum borysthenicum \N \N \N \N \N 27759 H.zombiense Helanthium Helanthium zombiense \N \N \N \N \N 27760 H.oxalidifolius Hypocalyptus Hypocalyptus oxalidifolius \N \N \N \N \N 27761 T.kavaiensis Tetraplasandra Tetraplasandra kavaiensis \N \N \N \N \N 27762 I.519 Ixora Ixora sp. Razafimandimbison et al. 519 \N \N \N \N \N 27763 G.grayi Gossia Gossia grayi \N \N \N \N \N 27764 M.2986 Maxillaria Maxillaria cf. longicaulis Blanco 2986 \N \N \N \N \N 27765 O.kotschyi Ophrys Ophrys kotschyi \N \N \N \N \N 27766 H.NT-2008 Halerpestes Halerpestes cf. sarmentosa NT-2008 \N \N \N \N \N 27767 R.lunaria Rumex Rumex lunaria \N \N \N \N \N 27768 A.capense Androcymbium Androcymbium capense \N \N \N \N \N 27769 A.clavatum Arisaema Arisaema clavatum \N \N \N \N \N 27770 S.aethiopica Stachys Stachys aethiopica \N \N \N \N \N 27771 \N subspecies Primula pauciflora var. cusickii \N \N \N \N \N 27772 \N tribe Codiaeae \N \N \N \N \N 27773 R.banksiae Rosa Rosa banksiae \N \N \N \N \N 27774 M.1827 Maxillaria Maxillaria cf. obscura Blanco 1827 \N \N \N \N \N 27775 B.polystachya Buddleja Buddleja polystachya \N \N \N \N \N 27776 M.polyanthos Moraea Moraea polyanthos \N \N \N \N \N 27777 E.siskiyouense Epilobium Epilobium siskiyouense \N \N \N \N \N 27778 S.linearifolium Solanum Solanum linearifolium \N \N \N \N \N 27779 C.surinamensis Chaubardia Chaubardia surinamensis \N \N \N \N \N 27780 P.angustifolius Psittacanthus Psittacanthus angustifolius \N \N \N \N \N 27781 R.18854 Rhaptonema Rhaptonema sp. McPherson 18854 \N \N \N \N \N 27782 P.virginis Primula Primula virginis \N \N \N \N \N 27783 C.speciosa Cyanotis Cyanotis speciosa \N \N \N \N \N 27784 \N subspecies Inula verbascifolia subsp. methanea \N \N \N \N \N 27785 A.refugioensis Arctostaphylos Arctostaphylos refugioensis \N \N \N \N \N 27786 D.heterocuspe Dipcadi Dipcadi heterocuspe \N \N \N \N \N 27787 I.pleiophyllus Isodon Isodon pleiophyllus \N \N \N \N \N 27788 P.microcephala Perezia Perezia microcephala \N \N \N \N \N 27789 \N genus Oreofraga \N \N \N \N \N 27790 D.streetsii Deinandra Deinandra streetsii \N \N \N \N \N 27791 R.venetus Ranunculus Ranunculus venetus \N \N \N \N \N 27792 D.emarginata Dimerandra Dimerandra emarginata \N \N \N \N \N 27793 C.gardneri Chlaenosciadium Chlaenosciadium gardneri \N \N \N \N \N 27794 C.gypsicola Centaurium Centaurium gypsicola \N \N \N \N \N 27795 G.tijucensis Gomidesia Gomidesia tijucensis \N \N \N \N \N 27796 R.tomentosum Rhododendron Rhododendron tomentosum crystal-tea,marsh-tea,wild rosemary \N \N \N \N 27797 C.metallica Carex Carex metallica \N \N \N \N \N 27798 \N genus Hydropectis \N \N \N \N \N 27799 \N family Zygophyllaceae creosote-bush family \N \N \N \N 27800 E.megacarpa Errazurizia Errazurizia megacarpa \N \N \N \N \N 27801 A.albus Acanthocalyx Acanthocalyx albus \N \N \N \N \N 27802 E.plagiantha Euphorbia Euphorbia plagiantha \N \N \N \N \N 27803 B.racemosa Baphia Baphia racemosa \N \N \N \N \N 27804 V.rossicum Vincetoxicum Vincetoxicum rossicum \N \N \N \N \N 27805 W.richii Weinmannia Weinmannia richii \N \N \N \N \N 27806 E.amplifolius Elaeocarpus Elaeocarpus amplifolius \N \N \N \N \N 27807 T.peltandroides Typhonium Typhonium peltandroides \N \N \N \N \N 27808 B.didyma Biscutella Biscutella didyma \N \N \N \N \N 27809 \N varietas Manglietia fordiana var. hainanensis \N \N \N \N \N 27810 E.allantoidea Eremorchis Eremorchis allantoidea \N \N \N \N \N 27811 B.gasipaes Bactris Bactris gasipaes chonta,gachipaes,peach palm,pijuayo,pupunha \N \N \N \N 27812 H.ventricosa Hosta Hosta ventricosa blue plantain lily \N \N \N \N 27813 L.latifolium Lepidium Lepidium latifolium \N \N \N \N \N 27814 M.arenicola Mascagnia Mascagnia arenicola \N \N \N \N \N 27815 \N subspecies Oreoxis alpina subsp. alpina \N \N \N \N \N 27816 \N varietas Aster yomena var. dentatus \N \N \N \N \N 27817 K.mutica Kengyilia Kengyilia mutica \N \N \N \N \N 27818 G.spathulata Galitzkya Galitzkya spathulata \N \N \N \N \N 27819 S.articulata Suaeda Suaeda articulata \N \N \N \N \N 27820 S.natalensis Siphonochilus Siphonochilus natalensis \N \N \N \N \N 27821 H.horsfieldii Hedychium Hedychium horsfieldii \N \N \N \N \N 27822 \N varietas Magnolia liliifera var. liliifera \N \N \N \N \N 27823 I.anethifolius Isopogon Isopogon anethifolius \N \N \N \N \N 27824 X.braunii x Festulolium x Festulolium braunii \N \N \N \N \N 27825 C.majovskii Cardamine Cardamine majovskii \N \N \N \N \N 27826 H.affinis Hoya Hoya affinis \N \N \N \N \N 27827 C.sessiliflora Cuphea Cuphea sessiliflora \N \N \N \N \N 27828 L.pallidiflora Lagynias Lagynias pallidiflora \N \N \N \N \N 27829 S.hirsuta Stenosepala Stenosepala hirsuta \N \N \N \N \N 27830 R.croceacanthus Rubus Rubus croceacanthus bao ban xuan gou zi \N \N \N \N 27831 C.otophyllum Cynanchum Cynanchum otophyllum \N \N \N \N \N 27832 \N genus Vouarana \N \N \N \N \N 27833 B.gibba Bambusa Bambusa gibba \N \N \N \N \N 27834 P.parishii Perideridia Perideridia parishii \N \N \N \N \N 27835 \N varietas Lamium purpureum var. hybridum \N \N \N \N \N 27836 H.ramosissimum Haplophyllum Haplophyllum ramosissimum \N \N \N \N \N 27837 R.ligustrina Rauvolfia Rauvolfia ligustrina \N \N \N \N \N 27838 P.aulacospermum Piper Piper aulacospermum \N \N \N \N \N 27839 G.pogonopus Guatteria Guatteria pogonopus \N \N \N \N \N 27840 S.lycopersicoides Solanum Solanum lycopersicoides \N \N \N \N \N 27841 H.formosa Harpalyce Harpalyce formosa \N \N \N \N \N 27842 D.blumenaviensis Deppea Deppea blumenaviensis \N \N \N \N \N 27843 C.weberbaueri Coursetia Coursetia weberbaueri \N \N \N \N \N 27844 L.sinense Limonium Limonium sinense \N \N \N \N \N 27845 A.dissimilis Arundoclaytonia Arundoclaytonia dissimilis \N \N \N \N \N 27846 P.cryptantha Plettkea Plettkea cryptantha \N \N \N \N \N 27847 P.struthio Pennilabium Pennilabium struthio \N \N \N \N \N 27848 C.officinalis Cinchona Cinchona officinalis \N \N \N \N \N 27849 S.zpl Salvia Salvia sp. MIB zpl \N \N \N \N \N 27850 E.CEH-2009 Eleocharis Eleocharis aff. variegata CEH-2009 \N \N \N \N \N 27851 P.VMV-2010 Petrorhagia Petrorhagia sp. B VMV-2010 \N \N \N \N \N 27852 H.moscheutos Hibiscus Hibiscus moscheutos crimson-eyed rosemallow \N \N \N \N 27853 \N genus Elmera \N \N \N \N \N 27854 M.lineare Melampyrum Melampyrum lineare \N \N \N \N \N 27855 P.biglobosa Parkia Parkia biglobosa \N \N \N \N \N 27856 M.anceps Myrcia Myrcia anceps \N \N \N \N \N 27857 \N genus Erythroseris \N \N \N \N \N 27858 P.humbertii Perrierophytum Perrierophytum humbertii \N \N \N \N \N 27859 M.syrinx Mandevilla Mandevilla syrinx \N \N \N \N \N 27860 M.robustum Myriophyllum Myriophyllum robustum \N \N \N \N \N 27861 M.herrei Moraea Moraea herrei \N \N \N \N \N 27862 B.orcuttianus Bromus Bromus orcuttianus \N \N \N \N \N 27863 H.calycinum Halimium Halimium calycinum \N \N \N \N \N 27864 \N genus Villadia \N \N \N \N \N 27865 D.pusilla Didiscus Didiscus pusilla \N \N \N \N \N 27866 S.gnaphaloides Syncarpha Syncarpha gnaphaloides \N \N \N \N \N 27867 V.radiata Valerianella Valerianella radiata \N \N \N \N \N 27868 \N genus Cervantesia \N \N \N \N \N 27869 S.ramosa Sasaella Sasaella ramosa \N \N \N \N \N 27870 P.talbotii Phyllanthus Phyllanthus talbotii \N \N \N \N \N 27871 \N genus Endospermum \N \N \N \N \N 27872 Z.umbellata Zabelia Zabelia umbellata \N \N \N \N \N 27873 M.pusilliflora Miconia Miconia pusilliflora \N \N \N \N \N 27874 P.intermedia Podalyria Podalyria intermedia \N \N \N \N \N 27875 G.MHL-2012 Gentianopsis Gentianopsis sp. MHL-2012 \N \N \N \N \N 27876 P.B19941280 Pinanga Pinanga aff. polymorpha B19941280 \N \N \N \N \N 27877 \N varietas Calochortus weedii var. intermedius \N \N \N \N \N 27878 P.amplifolia Polyscias Polyscias amplifolia \N \N \N \N \N 27879 G.erectiflora Glomeropitcairnia Glomeropitcairnia erectiflora \N \N \N \N \N 27880 C.campestris Commiphora Commiphora campestris \N \N \N \N \N 27881 \N genus Turgeniopsis \N \N \N \N \N 27882 B.kalantha Bauhinia Bauhinia kalantha \N \N \N \N \N 27883 P.anas Pedicularis Pedicularis anas \N \N \N \N \N 27884 \N genus Goodenia \N \N \N \N \N 27885 J.balticus Juncus Juncus balticus \N \N \N \N \N 27886 M.aureilanata Mammillaria Mammillaria aureilanata \N \N \N \N \N 27887 P.lophotricha Pedicularis Pedicularis lophotricha \N \N \N \N \N 27888 O.h362 Oziroe Oziroe sp. h362 \N \N \N \N \N 27889 D.sanguinalis Digitaria Digitaria sanguinalis \N \N \N \N \N 27890 T.pilosa Teclea Teclea pilosa \N \N \N \N \N 27891 N.palmeri Nesaea Nesaea palmeri \N \N \N \N \N 27892 N.alata Nepenthes Nepenthes alata \N \N \N \N \N 27893 \N varietas Brassica oleracea var. gongylodes kohlrabi \N \N \N \N 27894 F.brevissima Festuca Festuca brevissima \N \N \N \N \N 27895 Z.jujuba Ziziphus Ziziphus jujuba Chinese jujube,common jujube \N \N \N \N 27896 A.grandicornuta Acacia Acacia grandicornuta \N \N \N \N \N 27897 N.glomerulosa Nassauvia Nassauvia glomerulosa \N \N \N \N \N 27898 \N genus Sisyrinchium \N \N \N \N \N 27899 \N genus Stranvaesia \N \N \N \N \N 27900 R.tolucense Rhodosciadium Rhodosciadium tolucense \N \N \N \N \N 27901 T.leucoxantha Trichopilia Trichopilia leucoxantha \N \N \N \N \N 27902 P.schatzii Polyscias Polyscias schatzii \N \N \N \N \N 27903 M.empetrifolia Monotoca Monotoca empetrifolia \N \N \N \N \N 27904 A.flaccida Achyrocline Achyrocline flaccida \N \N \N \N \N 27905 P.breweri Potentilla Potentilla breweri \N \N \N \N \N 27906 P.maritimum Pancratium Pancratium maritimum \N \N \N \N \N 27907 A.elliotii Aconitum Aconitum elliotii \N \N \N \N \N 27908 S.jacquinii Stromanthe Stromanthe jacquinii \N \N \N \N \N 27909 H.lanceum Herminium Herminium lanceum \N \N \N \N \N 27910 I.urbinei Ipomoea Ipomoea urbinei \N \N \N \N \N 27911 L.oblongifolius Lysionotus Lysionotus oblongifolius \N \N \N \N \N 27912 \N subspecies Dichaea fragrantissima subsp. eburnea \N \N \N \N \N 27913 \N genus Kadenia \N \N \N \N \N 27914 \N genus Lijndenia \N \N \N \N \N 27915 \N varietas Capsicum annuum var. glabriusculum American bird pepper,chilipiquin,chiltepe \N \N \N \N 27916 S.leiocalycina Swartzia Swartzia leiocalycina \N \N \N \N \N 27917 P.nipponica Primula Primula nipponica \N \N \N \N \N 27918 D.viscosa Dilatris Dilatris viscosa \N \N \N \N \N 27919 C.pubescens Consolida Consolida pubescens \N \N \N \N \N 27920 \N genus Schultesia \N \N \N \N \N 27921 N.ogeche Nyssa Nyssa ogeche ogeechee lime \N \N \N \N 27922 P.asteroides Psilactis Psilactis asteroides \N \N \N \N \N 27923 T.sp. unclassified Taraxacum Taraxacum (sect. Ceratophora/Boreigena) sp. \N \N \N \N \N 27924 G.cheitmaniana Glandularia Glandularia cheitmaniana \N \N \N \N \N 27925 A.lebbekoides Albizia Albizia lebbekoides \N \N \N \N \N 27926 P.odorata Polystachya Polystachya odorata \N \N \N \N \N 27927 A.camptodontoides Astragalus Astragalus camptodontoides \N \N \N \N \N 27928 C.halteratum Cyrtochilum Cyrtochilum halteratum \N \N \N \N \N 27929 C.schugnana Crambe Crambe schugnana \N \N \N \N \N 27930 \N family Orobanchaceae \N \N \N \N \N 27931 M.dispermus Macropanax Macropanax dispermus \N \N \N \N \N 27932 T.haussknechtii Thymus Thymus haussknechtii \N \N \N \N \N 27933 C.appendiculata Cremastra Cremastra appendiculata \N \N \N \N \N 27934 T.longifolia Tibouchina Tibouchina longifolia \N \N \N \N \N 27935 P.shoshoneanum Piptatherum Piptatherum shoshoneanum \N \N \N \N \N 27936 H.pallidum Hedysarum Hedysarum pallidum \N \N \N \N \N 27937 C.tetraphyllum Chlorophytum Chlorophytum tetraphyllum \N \N \N \N \N 27938 S.cerulea Sambucus Sambucus cerulea \N \N \N \N \N 27939 C.giessii Crinum Crinum giessii \N \N \N \N \N 27940 L.firma Litsea Litsea firma \N \N \N \N \N 27941 H.arborescens Hydrangea Hydrangea arborescens \N \N \N \N \N 27942 B.linifolia Bouchea Bouchea linifolia \N \N \N \N \N 27943 D.mexicana Dioscorea Dioscorea mexicana \N \N \N \N \N 27944 R.insignis Ranunculus Ranunculus insignis \N \N \N \N \N 27945 R.CEH-2010 Rhynchospora Rhynchospora sp. CEH-2010 \N \N \N \N \N 27946 P.hookeriana Potentilla Potentilla hookeriana \N \N \N \N \N 27947 R.haematodes Rhododendron Rhododendron haematodes \N \N \N \N \N 27948 E.coreanus Elymus Elymus coreanus \N \N \N \N \N 27949 S.RT72-01 Salsola Salsola sp. Akers RT72-01 \N \N \N \N \N 27950 C.vasta Callerya Callerya vasta \N \N \N \N \N 27951 W.welwitschii Wolffiella Wolffiella welwitschii \N \N \N \N \N 27952 \N subspecies Barbarea vulgaris subsp. arcuata \N \N \N \N \N 27953 B.cubensis Begonia Begonia cubensis \N \N \N \N \N 27954 T.gymnobotrya Tillandsia Tillandsia gymnobotrya \N \N \N \N \N 27955 L.bergiana Leandra Leandra bergiana \N \N \N \N \N 27956 F.nardifolia Festuca Festuca nardifolia \N \N \N \N \N 27957 C.brevistyla Clausena Clausena brevistyla \N \N \N \N \N 27958 A.decumbens Ajuga Ajuga decumbens \N \N \N \N \N 27959 M.dielsiana Malmea Malmea dielsiana \N \N \N \N \N 27960 B.massaiensis Bussea Bussea massaiensis \N \N \N \N \N 27961 P.pilosum Panicum Panicum pilosum \N \N \N \N \N 27962 P.uniflora Prinsepia Prinsepia uniflora \N \N \N \N \N 27963 P.arborea Pterandra Pterandra arborea \N \N \N \N \N 27964 V.paneroi Viguiera Viguiera paneroi \N \N \N \N \N 27965 P.galeata Pterichis Pterichis galeata \N \N \N \N \N 27966 H.erectiloba Huernia Huernia erectiloba \N \N \N \N \N 27967 G.madruno Garcinia Garcinia madruno \N \N \N \N \N 27968 \N genus Porterella \N \N \N \N \N 27969 A.canescens Asyneuma Asyneuma canescens \N \N \N \N \N 27970 \N varietas Miliusa mollis var. mollis \N \N \N \N \N 27971 A.selloviana Anchietea Anchietea selloviana \N \N \N \N \N 27972 \N genus Hecatostemon \N \N \N \N \N 27973 R.urnigera Reseda Reseda urnigera \N \N \N \N \N 27974 V.Verdun' Viola Viola sp. 'Gloire de Verdun' \N \N \N \N \N 27975 E.cucullatus Eriochilus Eriochilus cucullatus \N \N \N \N \N 27976 L.colchicus Leptopus Leptopus colchicus \N \N \N \N \N 27977 P.scutellifolia Peperomia Peperomia scutellifolia \N \N \N \N \N 27978 S.potatorum Strychnos Strychnos potatorum clearing-nut tree \N \N \N \N 27979 \N subspecies Hypericum perforatum subsp. perforatum \N \N \N \N \N 27980 E.grandis Edithcolea Edithcolea grandis \N \N \N \N \N 27981 S.buxifolia Severinia Severinia buxifolia \N \N \N \N \N 27982 \N subspecies Aridaria noctiflora subsp. noctiflora \N \N \N \N \N 27983 A.sojoliana Agalmyla Agalmyla sojoliana \N \N \N \N \N 27984 I.amoena Impatiens Impatiens amoena \N \N \N \N \N 27985 G.xanthochymus Garcinia Garcinia xanthochymus Mysore gamboge,sour mangosteen \N \N \N \N 27986 D.abyssinica Digitaria Digitaria abyssinica \N \N \N \N \N 27987 A.suksdorfii Artemisia Artemisia suksdorfii coastal mugwort,coastal wormwood \N \N \N \N 27988 \N genus Arpophyllum \N \N \N \N \N 27989 \N genus Gibasis \N \N \N \N \N 27990 U.echinolaenoides Urochloa Urochloa echinolaenoides \N \N \N \N \N 27991 P.20951 unclassified Poaceae Poaceae sp. HUV 20951 \N \N \N \N \N 27992 C.triloba Cliffortia Cliffortia triloba \N \N \N \N \N 27993 C.tenuis Cliffortia Cliffortia tenuis \N \N \N \N \N 27994 A.borzaeanum Alyssum Alyssum borzaeanum \N \N \N \N \N 27995 G.7562 Glossoloma Glossoloma sp. Clark 7562 \N \N \N \N \N 27996 \N genus Xanthopappus \N \N \N \N \N 27997 S.blanco-galdosii Solanum Solanum x blanco-galdosii \N \N \N \N \N 27998 T.leucographus Tyrimnus Tyrimnus leucographus \N \N \N \N \N 27999 F.oleifolia Ficus Ficus oleifolia \N \N \N \N \N 28000 P.nodosum Ptilimnium Ptilimnium nodosum \N \N \N \N \N 28001 \N subspecies Aegilops longissima subsp. longissima \N \N \N \N \N 28002 T.grandis Tectona Tectona grandis \N \N \N \N \N 28003 L.chaetocephalus Lepidobolus Lepidobolus chaetocephalus \N \N \N \N \N 28004 \N genus Cyphonanthus \N \N \N \N \N 28005 D.multiceps Dianthus Dianthus multiceps \N \N \N \N \N 28006 C.careyana Carex Carex careyana \N \N \N \N \N 28007 S.scabra Stylosanthes Stylosanthes scabra shrubby stylo \N \N \N \N 28008 W.multiflora Wachendorfia Wachendorfia multiflora \N \N \N \N \N 28009 Z.multicaulis Zeltnera Zeltnera multicaulis \N \N \N \N \N 28010 E.zionis Ericameria Ericameria zionis subalpine goldenbush \N \N \N \N 28011 C.podophylla Cousinia Cousinia podophylla \N \N \N \N \N 28012 C.recurvata Cliffortia Cliffortia recurvata \N \N \N \N \N 28013 D.fruticosum Desmanthodium Desmanthodium fruticosum \N \N \N \N \N 28014 I.albens Isachne Isachne albens \N \N \N \N \N 28015 \N subspecies Matthiola longipetala subsp. pumilio \N \N \N \N \N 28016 R.campylocarpum Rhododendron Rhododendron campylocarpum \N \N \N \N \N 28017 S.megalonyx Solanum Solanum megalonyx \N \N \N \N \N 28018 C.vallicola Crocus Crocus vallicola \N \N \N \N \N 28019 S.polyantha Sinclairia Sinclairia polyantha \N \N \N \N \N 28020 L.rumicifolia Ligularia Ligularia rumicifolia \N \N \N \N \N 28021 D.sophia Descurainia Descurainia sophia \N \N \N \N \N 28022 S.longifolia Saussurea Saussurea longifolia \N \N \N \N \N 28023 \N subfamily Bambusoideae \N \N \N \N \N 28024 \N genus Epithelantha \N \N \N \N \N 28025 L.sachalinense Lilium Lilium sachalinense \N \N \N \N \N 28026 E.giraldii Exochorda Exochorda giraldii \N \N \N \N \N 28027 F.scassellatii Ficus Ficus scassellatii \N \N \N \N \N 28028 \N genus Quiina \N \N \N \N \N 28029 M.JJS-2010a Mentzelia Mentzelia sp. JJS-2010a \N \N \N \N \N 28030 E.alluaudii Euphorbia Euphorbia alluaudii \N \N \N \N \N 28031 P.bellardii Polygonum Polygonum bellardii \N \N \N \N \N 28032 R.gunnianus Rubus Rubus gunnianus \N \N \N \N \N 28033 C.argentata Coccothrinax Coccothrinax argentata silver palm \N \N \N \N 28034 P.borsigianum Phoenicophorium Phoenicophorium borsigianum \N \N \N \N \N 28035 P.mooiensis Premna Premna mooiensis \N \N \N \N \N 28036 A.arcuata Aristolochia Aristolochia arcuata \N \N \N \N \N 28037 S.mollissima Senna Senna mollissima \N \N \N \N \N 28038 C.rugosa Cacosmia Cacosmia rugosa \N \N \N \N \N 28039 G.debilis Gladiolus Gladiolus debilis \N \N \N \N \N 28040 M.vassilievii Montia Montia vassilievii \N \N \N \N \N 28041 B.arborea Brugmansia Brugmansia arborea maikoa \N \N \N \N 28042 T.603 Tabernaemontana Tabernaemontana sp. Daly 603 \N \N \N \N \N 28043 S.kungwensis Streptocarpus Streptocarpus kungwensis \N \N \N \N \N 28044 V.capensis Villarsia Villarsia capensis \N \N \N \N \N 28045 E.cylindrifolia Euphorbia Euphorbia cylindrifolia \N \N \N \N \N 28046 D.trollii Didierea Didierea trollii \N \N \N \N \N 28047 \N subspecies Gymnocalycium andreae subsp. carolinense \N \N \N \N \N 28048 C.formosanum Cypripedium Cypripedium formosanum \N \N \N \N \N 28049 E.chaetocalyx Euphorbia Euphorbia chaetocalyx \N \N \N \N \N 28050 P.hispidum Platostoma Platostoma hispidum \N \N \N \N \N 28051 A.macrostachya Avena Avena macrostachya \N \N \N \N \N 28052 P.cymbalaria Packera Packera cymbalaria dwarf arctic ragwort \N \N \N \N 28053 T.soconuscana Tradescantia Tradescantia soconuscana \N \N \N \N \N 28054 A.asplundii Aristida Aristida asplundii \N \N \N \N \N 28055 C.lepidocarpum Corispermum Corispermum lepidocarpum \N \N \N \N \N 28056 R.arida Rhodocoma Rhodocoma arida \N \N \N \N \N 28057 S.bonariensis Senecio Senecio bonariensis \N \N \N \N \N 28058 S.trojana Sideritis Sideritis trojana \N \N \N \N \N 28059 S.cephalantha Stephania Stephania cephalantha \N \N \N \N \N 28060 D.bursariifolia Dodonaea Dodonaea bursariifolia \N \N \N \N \N 28061 A.smithii Asteriscus Asteriscus smithii \N \N \N \N \N 28062 I.mucronulata Ilex Ilex mucronulata \N \N \N \N \N 28063 M.MA05 Microtis Microtis aff. angusii MA05 \N \N \N \N \N 28064 V.aspera Vella Vella aspera \N \N \N \N \N 28065 Q.gemelliflora Quercus Quercus gemelliflora \N \N \N \N \N 28066 \N varietas Amelanchier alnifolia var. pumila \N \N \N \N \N 28067 T.brachystachyum Tribolium Tribolium brachystachyum \N \N \N \N \N 28068 E.bothae Euphorbia Euphorbia x bothae \N \N \N \N \N 28069 C.oxyphyllus Convolvulus Convolvulus oxyphyllus \N \N \N \N \N 28070 L.sagitta Ligularia Ligularia sagitta \N \N \N \N \N 28071 E.waterbergensis Euphorbia Euphorbia waterbergensis \N \N \N \N \N 28072 S.hirsuta Senna Senna hirsuta \N \N \N \N \N 28073 \N genus Senegalia \N \N \N \N \N 28074 \N subspecies Neoschischkinia truncatula subsp. durieui \N \N \N \N \N 28075 \N varietas Adenia penangiana var. parvifolia \N \N \N \N \N 28076 \N subspecies Narcissus poeticus subsp. radiiflorus \N \N \N \N \N 28077 S.sahyadrica Seshagiria Seshagiria sahyadrica \N \N \N \N \N 28078 A.VFI-2011 Antirrhinum Antirrhinum sp. VFI-2011 \N \N \N \N \N 28079 C.fluminensis Coleocephalocereus Coleocephalocereus fluminensis \N \N \N \N \N 28080 S.Esp8089 Sobralia Sobralia sp. Esp8089 \N \N \N \N \N 28081 J.carnosa Jaumea Jaumea carnosa \N \N \N \N \N 28082 G.moluccana Gmelina Gmelina moluccana \N \N \N \N \N 28083 A.RJM-2008 Arctotis Arctotis sp. D RJM-2008 \N \N \N \N \N 28084 \N tribe Chamaedoreeae \N \N \N \N \N 28085 \N subspecies Carlina acaulis subsp. caulescens \N \N \N \N \N 28086 S.altiatlantica Sideritis Sideritis altiatlantica \N \N \N \N \N 28087 C.longipoda Chlorospatha Chlorospatha longipoda \N \N \N \N \N 28088 H.antillanum Heliotropium Heliotropium antillanum \N \N \N \N \N 28089 \N genus Nepeta catmints \N \N \N \N 28090 P.coztomatl Physalis Physalis coztomatl \N \N \N \N \N 28091 D.goldfinchii Dendrobium Dendrobium goldfinchii \N \N \N \N \N 28092 \N subspecies Secale montanum subsp. montanum \N \N \N \N \N 28093 \N subspecies Ononis viscosa subsp. crotalarioides \N \N \N \N \N 28094 \N subspecies Acer caudatum subsp. multiserratum \N \N \N \N \N 28095 C.roseus Catharanthus Catharanthus roseus Madagascar periwinkle,chatas,chula,old-maid,rosy periwinkle \N \N \N \N 28096 P.hamiltonii Pilostyles Pilostyles hamiltonii \N \N \N \N \N 28097 \N genus Peristrophe \N \N \N \N \N 28098 P.reticulata Peixotoa Peixotoa reticulata \N \N \N \N \N 28099 C.tangutica Caryopteris Caryopteris tangutica \N \N \N \N \N 28100 \N subspecies Clermontia oblongifolia subsp. oblongifolia \N \N \N \N \N 28101 C.wallichii Combretum Combretum wallichii \N \N \N \N \N 28102 M.rubra Manulea Manulea rubra \N \N \N \N \N 28103 C.1552 Ctenanthe Ctenanthe sp. Andersson 1552 \N \N \N \N \N 28104 \N subspecies Oenanthe linearis subsp. rivularis \N \N \N \N \N 28105 B.fedtschenkoanum Bunium Bunium fedtschenkoanum \N \N \N \N \N 28106 C.rubescens Calamagrostis Calamagrostis rubescens \N \N \N \N \N 28107 C.minus Ceratostigma Ceratostigma minus \N \N \N \N \N 28108 G.melleri Garcinia Garcinia melleri \N \N \N \N \N 28109 C.phrygia Centaurea Centaurea phrygia \N \N \N \N \N 28110 C.gerrardii Cynanchum Cynanchum gerrardii \N \N \N \N \N 28111 M.10254 Moraea Moraea sp. Goldblatt & Nanni 10254 \N \N \N \N \N 28112 V.sessilifolia Veitchia Veitchia sessilifolia \N \N \N \N \N 28113 D.candida Drymonia Drymonia candida \N \N \N \N \N 28114 E.Esp8072 Elleanthus Elleanthus sp. Esp8072 \N \N \N \N \N 28115 P.rhombifolium Pediomelum Pediomelum rhombifolium \N \N \N \N \N 28116 U.scottii Uebelinia Uebelinia scottii \N \N \N \N \N 28117 A.sample environmental samples Taxonomy:1096708 Apocynaceae environmental sample \N \N \N \N \N 28118 \N no rank unclassified Boechera \N \N \N \N \N 28119 C.dianthifolia Commelina Commelina dianthifolia \N \N \N \N \N 28120 A.subterranea Alexgeorgea Alexgeorgea subterranea \N \N \N \N \N 28121 \N genus Pseudocatalpa \N \N \N \N \N 28122 M.seatonii Muhlenbergia Muhlenbergia seatonii \N \N \N \N \N 28123 B.rupicola Bethencourtia Bethencourtia rupicola \N \N \N \N \N 28124 C.hookeriana Crepis Crepis hookeriana \N \N \N \N \N 28125 S.aemula Serruria Serruria aemula \N \N \N \N \N 28126 U.speciosa Ungnadia Ungnadia speciosa \N \N \N \N \N 28127 \N subspecies Brodiaea coronaria subsp. rosea Indian Valley brodiaea \N \N \N \N 28128 E.monocephalum Eryngium Eryngium monocephalum \N \N \N \N \N 28129 \N genus Capurodendron \N \N \N \N \N 28130 S.kumasaca Shibataea Shibataea kumasaca \N \N \N \N \N 28131 V.longiflora Vangueriopsis Vangueriopsis longiflora \N \N \N \N \N 28132 E.quinquelocularis Eurya Eurya quinquelocularis \N \N \N \N \N 28133 A.punctatum Aichryson Aichryson punctatum \N \N \N \N \N 28134 P.radiata Prosthechea Prosthechea radiata \N \N \N \N \N 28135 P.farinosa Polyscias Polyscias farinosa \N \N \N \N \N 28136 A.M013 Asparagus Asparagus sp. M013 \N \N \N \N \N 28137 C.confusa Clematis Clematis confusa \N \N \N \N \N 28138 P.MJGA-2011 Paepalanthus Paepalanthus sp. MJGA-2011 \N \N \N \N \N 28139 A.latifolia Arnica Arnica latifolia \N \N \N \N \N 28140 \N genus Harpalyce \N \N \N \N \N 28141 C.leroyi Coffea Coffea leroyi \N \N \N \N \N 28142 P.nephelophilum Panicum Panicum nephelophilum \N \N \N \N \N 28143 A.brachychaeta Amelichloa Amelichloa brachychaeta \N \N \N \N \N 28144 \N genus Tiarella \N \N \N \N \N 28145 \N genus Townsonia \N \N \N \N \N 28146 M.contermina Melicope Melicope contermina \N \N \N \N \N 28147 \N genus Plocaniophyllon \N \N \N \N \N 28148 S.pendulina Searsia Searsia pendulina \N \N \N \N \N 28149 E.incumbens Encyclia Encyclia incumbens \N \N \N \N \N 28150 \N genus Kolkwitzia \N \N \N \N \N 28151 S.teysmanniana Shorea Shorea teysmanniana \N \N \N \N \N 28152 H.pastinacifolia Hladnikia Hladnikia pastinacifolia \N \N \N \N \N 28153 E.barbicallus Elymus Elymus barbicallus \N \N \N \N \N 28154 \N genus Haya \N \N \N \N \N 28155 \N genus Weinmannia \N \N \N \N \N 28156 P.cognatum Polygonum Polygonum cognatum \N \N \N \N \N 28157 G.macrophylla Guarea Guarea macrophylla \N \N \N \N \N 28158 A.australasica Aristotelia Aristotelia australasica \N \N \N \N \N 28159 \N genus Patellifolia \N \N \N \N \N 28160 H.petrovae Hieracium Hieracium petrovae \N \N \N \N \N 28161 E.elachyphyllum Epimedium Epimedium elachyphyllum \N \N \N \N \N 28162 A.paraguariensis Arachis Arachis paraguariensis \N \N \N \N \N 28163 M.larsenii Mouretia Mouretia larsenii \N \N \N \N \N 28164 C.glaucum Canthium Canthium glaucum \N \N \N \N \N 28165 N.loeselioides Neurotheca Neurotheca loeselioides \N \N \N \N \N 28166 B.bodinieri Buxus Buxus bodinieri \N \N \N \N \N 28167 O.cerasiformis Oemleria Oemleria cerasiformis Oregon plum,oso berry \N \N \N \N 28168 E.macrophylla Eurybia Eurybia macrophylla bigleaf aster \N \N \N \N 28169 \N genus Almutaster \N \N \N \N \N 28170 \N varietas Camellia sinensis var. sinensis \N \N \N \N \N 28171 D.hieronymi Diplolepis Diplolepis hieronymi \N \N \N \N \N 28172 L.greytonensis Lachnaea Lachnaea greytonensis \N \N \N \N \N 28173 M.halliana Malus Malus halliana \N \N \N \N \N 28174 C.hammeliana Clusia Clusia hammeliana \N \N \N \N \N 28175 E.EHR-2010 Eleocharis Eleocharis aff. acicularis EHR-2010 \N \N \N \N \N 28176 M.revolutus Moacroton Moacroton revolutus \N \N \N \N \N 28177 \N genus Athanasia \N \N \N \N \N 28178 P.graecum Phagnalon Phagnalon graecum \N \N \N \N \N 28179 \N subspecies Astragalus pinetorum subsp. pinetorum \N \N \N \N \N 28180 D.fractiflexum Drepanostachyum Drepanostachyum fractiflexum \N \N \N \N \N 28181 D.viridis Dactylorhiza Dactylorhiza viridis \N \N \N \N \N 28182 X.sp. Xanthium Xanthium sp. \N \N \N \N \N 28183 \N genus Javorkaea \N \N \N \N \N 28184 S.pusilla Salicornia Salicornia pusilla \N \N \N \N \N 28185 P.taxodiifolius Phyllanthus Phyllanthus taxodiifolius \N \N \N \N \N 28186 S.3117 Schefflera Schefflera aff. longipetiolata Fiaschi 3117 \N \N \N \N \N 28187 M.melanocentra Mammillaria Mammillaria melanocentra \N \N \N \N \N 28188 P.riparia Passiflora Passiflora riparia \N \N \N \N \N 28189 M.robustum Macroclinium Macroclinium robustum \N \N \N \N \N 28190 A.kurzii Alangium Alangium kurzii \N \N \N \N \N 28191 P.myrmecophilum Piper Piper myrmecophilum \N \N \N \N \N 28192 M.ciliata Monsonia Monsonia ciliata \N \N \N \N \N 28193 D.6676 Dipodium Dipodium sp. Chase 6676 \N \N \N \N \N 28194 P.baurii Peltocalathos Peltocalathos baurii \N \N \N \N \N 28195 A.intermedius Apocopis Apocopis intermedius \N \N \N \N \N 28196 E.pachystyla Eleocharis Eleocharis pachystyla \N \N \N \N \N 28197 S.adamantis Schiedea Schiedea adamantis \N \N \N \N \N 28198 C.tenuiculmis Carex Carex tenuiculmis \N \N \N \N \N 28199 A.wulfeniana Androsace Androsace wulfeniana \N \N \N \N \N 28200 \N genus Astydamia \N \N \N \N \N 28201 M.sample environmental samples Taxonomy:404813 monocot environmental sample \N \N \N \N \N 28202 A.muramatsui Asarum Asarum muramatsui \N \N \N \N \N 28203 P.avellanum Piper Piper avellanum \N \N \N \N \N 28204 E.neozelandica Eleocharis Eleocharis neozelandica \N \N \N \N \N 28205 \N tribe Cymbidieae \N \N \N \N \N 28206 D.glandulosa Drusa Drusa glandulosa \N \N \N \N \N 28207 G.rubicunda Gagea Gagea rubicunda \N \N \N \N \N 28208 D.scabrum Diastema Diastema scabrum \N \N \N \N \N 28209 C.saponaria Cayratia Cayratia saponaria \N \N \N \N \N 28210 A.rutifolia Artemisia Artemisia rutifolia \N \N \N \N \N 28211 B.incana Bowlesia Bowlesia incana \N \N \N \N \N 28212 P.s.n. Piper Piper cf. longum Neinhuis s.n. \N \N \N \N \N 28213 P.prostrata Pimelea Pimelea prostrata \N \N \N \N \N 28214 C.bella Corymbia Corymbia bella \N \N \N \N \N 28215 \N genus Ombrophytum \N \N \N \N \N 28216 \N genus Calpurnia \N \N \N \N \N 28217 \N genus Gutenbergia \N \N \N \N \N 28218 D.encholirioides Dyckia Dyckia encholirioides \N \N \N \N \N 28219 S.arabica Schimpera Schimpera arabica \N \N \N \N \N 28220 \N genus Cymbopogon \N \N \N \N \N 28221 \N genus Bidaria \N \N \N \N \N 28222 R.quirihuense Rytidosperma Rytidosperma quirihuense \N \N \N \N \N 28223 P.halophilum Pittosporum Pittosporum halophilum \N \N \N \N \N 28224 C.lyallii Cardamine Cardamine lyallii \N \N \N \N \N 28225 S.mulanjense Sarcostemma Sarcostemma mulanjense \N \N \N \N \N 28226 G.baxterae Gingidia Gingidia baxterae \N \N \N \N \N 28227 P.trifida Pultenaea Pultenaea trifida \N \N \N \N \N 28228 \N genus Rubiteucris \N \N \N \N \N 28229 \N no rank environmental samples Taxonomy:1096682 \N \N \N \N \N 28230 A.parviflora Aubrieta Aubrieta parviflora \N \N \N \N \N 28231 \N genus Sextonia \N \N \N \N \N 28232 I.jinpingensis Indosasa Indosasa jinpingensis \N \N \N \N \N 28233 \N varietas Veronica stelleri var. longistyla \N \N \N \N \N 28234 \N varietas Eleocharis palustris var. vigens \N \N \N \N \N 28235 N.americana Neokochia Neokochia americana green molly \N \N \N \N 28236 I.mucronata Ilex Ilex mucronata \N \N \N \N \N 28237 \N genus Kerriochloa \N \N \N \N \N 28238 L.scabrum Limonium Limonium scabrum \N \N \N \N \N 28239 \N genus Heteropanax \N \N \N \N \N 28240 L.peltata Lallemantia Lallemantia peltata \N \N \N \N \N 28241 E.zollingeri Eulophia Eulophia zollingeri \N \N \N \N \N 28242 L.oxycedrus Leucopogon Leucopogon oxycedrus \N \N \N \N \N 28243 D.dammeriana Dichaea Dichaea dammeriana \N \N \N \N \N 28244 C.greggii Ceanothus Ceanothus greggii \N \N \N \N \N 28245 A.woodsoniana Asclepias Asclepias woodsoniana \N \N \N \N \N 28246 M.angulosa Muraltia Muraltia angulosa \N \N \N \N \N 28247 C.heteranthus Croton Croton heteranthus \N \N \N \N \N 28248 G.thurberi Gossypium Gossypium arboreum x Gossypium thurberi \N \N \N \N \N 28249 P.nudicaulis Parrya Parrya nudicaulis \N \N \N \N \N 28250 M.coerulea Moltkia Moltkia coerulea \N \N \N \N \N 28251 C.kirkii Combretum Combretum kirkii \N \N \N \N \N 28252 T.angustifolium Triosteum Triosteum angustifolium \N \N \N \N \N 28253 L.kingii Linum Linum kingii \N \N \N \N \N 28254 \N subspecies Genista stenopetala subsp. pauciovulata \N \N \N \N \N 28255 S.gratus Strophanthus Strophanthus gratus \N \N \N \N \N 28256 P.yakespala Puya Puya yakespala \N \N \N \N \N 28257 \N genus Homopholis \N \N \N \N \N 28258 P.ulloana Palicourea Palicourea ulloana \N \N \N \N \N 28259 \N varietas Prunus padus var. commutata \N \N \N \N \N 28260 Q.Apulia Quercus Quercus sp. Apulia \N \N \N \N \N 28261 H.Desert Halosarcia Halosarcia sp. Little Sandy Desert \N \N \N \N \N 28262 E.fasciculatus Erigeron Erigeron fasciculatus \N \N \N \N \N 28263 \N varietas Paris fargesii var. petiolata \N \N \N \N \N 28264 L.grandifolia Ledebouria Ledebouria grandifolia \N \N \N \N \N 28265 A.herzogiana Acalypha Acalypha herzogiana \N \N \N \N \N 28266 S.lingianum Sinoleontopodium Sinoleontopodium lingianum \N \N \N \N \N 28267 \N varietas Cymopterus acaulis var. fendleri \N \N \N \N \N 28268 O.louisae Oxalis Oxalis louisae \N \N \N \N \N 28269 S.DEKT-2007 Spathiphyllum Spathiphyllum sp. DEKT-2007 \N \N \N \N \N 28270 P.ammocharis Pimelea Pimelea ammocharis \N \N \N \N \N 28271 \N genus Oxygonum \N \N \N \N \N 28272 H.cheirifolia Hertia Hertia cheirifolia \N \N \N \N \N 28273 A.glacialis Alchemilla Alchemilla glacialis \N \N \N \N \N 28274 \N genus Curupira \N \N \N \N \N 28275 P.leptocoma Poa Poa leptocoma \N \N \N \N \N 28276 D.ubonensis Dalzellia Dalzellia ubonensis \N \N \N \N \N 28277 O.verrucosum Ormocarpum Ormocarpum verrucosum \N \N \N \N \N 28278 A.4823/O-461 Apostasia Apostasia cf. stylidoides Clements 4823/O-461 \N \N \N \N \N 28279 C.oxycarpum Coelocaryon Coelocaryon oxycarpum \N \N \N \N \N 28280 \N genus Cnesmone \N \N \N \N \N 28281 S.mexicanus Scoliaxon Scoliaxon mexicanus \N \N \N \N \N 28282 L.kongkalingensis Ligularia Ligularia kongkalingensis \N \N \N \N \N 28283 C.ningnanica Chimonobambusa Chimonobambusa ningnanica \N \N \N \N \N 28284 B.corymbifera Badusa Badusa corymbifera \N \N \N \N \N 28285 M.modesta Moraea Moraea modesta \N \N \N \N \N 28286 D.khatamii Dionysia Dionysia khatamii \N \N \N \N \N 28287 C.pseudohemispherica Crassula Crassula pseudohemispherica \N \N \N \N \N 28288 S.sinensis Spiranthes Spiranthes sinensis \N \N \N \N \N 28289 C.centaurioides Centaurium Centaurium centaurioides \N \N \N \N \N 28290 M.pubipetala Myrcia Myrcia pubipetala \N \N \N \N \N 28291 A.foliolosa Aralia Aralia foliolosa \N \N \N \N \N 28292 O.ciliata Ophrys Ophrys ciliata \N \N \N \N \N 28293 \N genus Podocoma \N \N \N \N \N 28294 L.MP-2011 Ledebouria Ledebouria sp. 7 MP-2011 \N \N \N \N \N 28295 \N subspecies Antirrhinum majus subsp. cirrhigerum \N \N \N \N \N 28296 C.cavanillesii Calceolaria Calceolaria cavanillesii \N \N \N \N \N 28297 F.sanguinea Fernandezia Fernandezia sanguinea \N \N \N \N \N 28298 R.arenicola Rhododendron Rhododendron arenicola \N \N \N \N \N 28299 H.dalmatica Hyacinthella Hyacinthella dalmatica \N \N \N \N \N 28300 \N genus Pullea \N \N \N \N \N 28301 \N varietas Rhododendron agastum var. pennivenium \N \N \N \N \N 28302 \N subspecies Gymnocalycium schickendantzii subsp. schickendantzii \N \N \N \N \N 28303 C.angustifolia Camellia Camellia angustifolia \N \N \N \N \N 28304 H.dielsii Hemigenia Hemigenia dielsii \N \N \N \N \N 28305 L.callosum Lilium Lilium callosum \N \N \N \N \N 28306 H.acinoides Hedeoma Hedeoma acinoides \N \N \N \N \N 28307 A.viridulum Allium Allium viridulum \N \N \N \N \N 28308 \N genus Parahancornia \N \N \N \N \N 28309 T.LK05/3024 Taraxacum Taraxacum sp. LK05/3024 \N \N \N \N \N 28310 \N genus Zigadenus \N \N \N \N \N 28311 \N subspecies Ononis angustissima subsp. longifolia \N \N \N \N \N 28312 P.ZKC-2008 Paulownia Paulownia sp. ZKC-2008 \N \N \N \N \N 28313 N.aphyllum Neosparton Neosparton aphyllum \N \N \N \N \N 28314 D.edulis Dolomiaea Dolomiaea edulis \N \N \N \N \N 28315 H.barteri Hildegardia Hildegardia barteri \N \N \N \N \N 28316 T.brachyceras Tropaeolum Tropaeolum brachyceras \N \N \N \N \N 28317 A.retrofractum Australopyrum Australopyrum retrofractum \N \N \N \N \N 28318 A.albiflora Argemone Argemone albiflora \N \N \N \N \N 28319 H.californicum Hesperolinon Hesperolinon californicum \N \N \N \N \N 28320 T.villosa Themeda Themeda villosa \N \N \N \N \N 28321 C.foliosus Ceanothus Ceanothus foliosus \N \N \N \N \N 28322 G.6538 Guettarda Guettarda sp. Areces 6538 \N \N \N \N \N 28323 \N genus Bastardiastrum \N \N \N \N \N 28324 F.fragrans Fagraea Fagraea fragrans \N \N \N \N \N 28325 \N forma Abeliophyllum distichum f. eburneum \N \N \N \N \N 28326 C.matthioli Cardamine Cardamine matthioli \N \N \N \N \N 28327 \N varietas Grindelia stricta var. platyphylla \N \N \N \N \N 28328 E.citriodora Endlicheria Endlicheria citriodora \N \N \N \N \N 28329 \N genus Notopleura \N \N \N \N \N 28330 A.oligoneuron Anemopaegma Anemopaegma oligoneuron \N \N \N \N \N 28331 L.echinata Luffa Luffa echinata \N \N \N \N \N 28332 L.1625 Leucaena Leucaena hybrid sp. Hughes 1625 \N \N \N \N \N 28333 T.multinerve Trifolium Trifolium multinerve \N \N \N \N \N 28334 P.tayloriana Polystachya Polystachya tayloriana \N \N \N \N \N 28335 K.orientalis Knautia Knautia orientalis \N \N \N \N \N 28336 \N subspecies Aspalathus juniperina subsp. juniperina \N \N \N \N \N 28337 B.arborea Bulnesia Bulnesia arborea Maracaibo lignum-vitae,verawood \N \N \N \N 28338 C.praeterita Castilleja Castilleja praeterita \N \N \N \N \N 28339 E.chloroclada Eucalyptus Eucalyptus chloroclada Baradine gum \N \N \N \N 28340 D.byrnesii Decaschistia Decaschistia byrnesii \N \N \N \N \N 28341 \N genus Arundinaria \N \N \N \N \N 28342 T.impressa Ternstroemia Ternstroemia impressa \N \N \N \N \N 28343 S.canbyi Synthyris Synthyris canbyi \N \N \N \N \N 28344 V.372 Vitis Vitis sp. Nie 372 \N \N \N \N \N 28345 \N genus Apatesia \N \N \N \N \N 28346 E.ochrocephalum Eriogonum Eriogonum ochrocephalum \N \N \N \N \N 28347 \N genus Hystrix \N \N \N \N \N 28348 A.scabriuscula Alocasia Alocasia scabriuscula \N \N \N \N \N 28349 A.miniatum Ascocentrum Ascocentrum miniatum \N \N \N \N \N 28350 R.elliptifolia Rhaphidophora Rhaphidophora elliptifolia \N \N \N \N \N 28351 M.miquelii Miqueliopuntia Miqueliopuntia miquelii \N \N \N \N \N 28352 C.gamblei Calamus Calamus gamblei \N \N \N \N \N 28353 B.NFL-2003-6 Boesenbergia Boesenbergia sp. NFL-2003-6 \N \N \N \N \N 28354 L.tridentata Larrea Larrea tridentata creosote bush \N \N \N \N 28355 S.ochoterenanus Stenocactus Stenocactus ochoterenanus \N \N \N \N \N 28356 S.bipinnata Sanicula Sanicula bipinnata poison sanicle \N \N \N \N 28357 A.graminifolia Aerangis Aerangis graminifolia \N \N \N \N \N 28358 D.brachyblastophora Deltaria Deltaria brachyblastophora \N \N \N \N \N 28359 M.cacuminum Metrosideros Metrosideros cacuminum \N \N \N \N \N 28360 C.schumannii Combretum Combretum schumannii \N \N \N \N \N 28361 G.versicolor Genista Genista versicolor \N \N \N \N \N 28362 \N genus Archeria \N \N \N \N \N 28363 L.desertorum Lepidium Lepidium desertorum \N \N \N \N \N 28364 P.napopastazanum Piper Piper napopastazanum \N \N \N \N \N 28365 G.nitida Glandora Glandora nitida \N \N \N \N \N 28366 \N genus Hewittia \N \N \N \N \N 28367 P.betulifolia Pyrus Pyrus betulifolia \N \N \N \N \N 28368 N.raimondii Nasa Nasa raimondii \N \N \N \N \N 28369 L.pyrenaicum Lilium Lilium pyrenaicum \N \N \N \N \N 28370 \N genus Sarcotoechia \N \N \N \N \N 28371 P.pubescens Pterodon Pterodon pubescens \N \N \N \N \N 28372 V.sacchalinensis Viola Viola sacchalinensis \N \N \N \N \N 28373 P.pallens Polhillia Polhillia pallens \N \N \N \N \N 28374 C.fremontii Clematis Clematis fremontii \N \N \N \N \N 28375 L.tetragona Lauridia Lauridia tetragona \N \N \N \N \N 28376 S.afzelii Synsepalum Synsepalum afzelii \N \N \N \N \N 28377 L.umbellatus Lisianthius Lisianthius umbellatus \N \N \N \N \N 28378 C.curvigemmia Coussarea Coussarea curvigemmia \N \N \N \N \N 28379 O.SH-2010 Otostegia Otostegia sp. SH-2010 \N \N \N \N \N 28380 N.ozarkana Nuphar Nuphar ozarkana \N \N \N \N \N 28381 D.hirschfeldianum Delphinium Delphinium hirschfeldianum \N \N \N \N \N 28382 G.MAG-2009 Gurania Gurania sp. MAG-2009 \N \N \N \N \N 28383 D.guatemalensis Dendrophthora Dendrophthora guatemalensis \N \N \N \N \N 28384 \N genus Rhynchospermum \N \N \N \N \N 28385 S.litoralis Schizanthus Schizanthus litoralis \N \N \N \N \N 28386 G.asphodeloides Geranium Geranium asphodeloides \N \N \N \N \N 28387 A.copa Artemisia Artemisia copa \N \N \N \N \N 28388 M.sphaerophylla Micromeria Micromeria sphaerophylla \N \N \N \N \N 28389 O.transcaucasica Onobrychis Onobrychis transcaucasica \N \N \N \N \N 28390 C.ampla Clidemia Clidemia ampla \N \N \N \N \N 28391 \N tribe Heliantheae \N \N \N \N \N 28392 G.1604 Galeoglossum Galeoglossum sp. MEXU 1604 \N \N \N \N \N 28393 O.polyacantha Opuntia Opuntia polyacantha \N \N \N \N \N 28394 M.serpens Medinilla Medinilla serpens \N \N \N \N \N 28395 \N genus Thalia alligator-flag \N \N \N \N 28396 L.delagoensis Leptactina Leptactina delagoensis \N \N \N \N \N 28397 C.setosa Clidemia Clidemia setosa \N \N \N \N \N 28398 P.fruticetorum Psychotria Psychotria fruticetorum \N \N \N \N \N 28399 G.adenodonta Grindelia Grindelia adenodonta \N \N \N \N \N 28400 I.peacockiana Inula Inula peacockiana \N \N \N \N \N 28401 F.ceratophylla Ferula Ferula ceratophylla \N \N \N \N \N 28402 C.hospita Copernicia Copernicia hospita \N \N \N \N \N 28403 P.viridulus Paepalanthus Paepalanthus viridulus \N \N \N \N \N 28404 C.citriodora Corymbia Corymbia citriodora lemon-scented gum \N \N \N \N 28405 H.mauritanica Hyacinthoides Hyacinthoides mauritanica \N \N \N \N \N 28406 D.asprella Draba Draba asprella \N \N \N \N \N 28407 M.bolusii Moraea Moraea bolusii \N \N \N \N \N 28408 E.stellata Ebenus Ebenus stellata \N \N \N \N \N 28409 C.raymondii Columnea Columnea raymondii \N \N \N \N \N 28410 \N genus Citrus \N \N \N \N \N 28411 U.scabra Uncinia Uncinia scabra \N \N \N \N \N 28412 C.howellii Calamagrostis Calamagrostis howellii \N \N \N \N \N 28413 H.flaccidum Hymenodictyon Hymenodictyon flaccidum \N \N \N \N \N 28414 \N subtribe Gorteriinae \N \N \N \N \N 28415 E.karooica Erica Erica karooica \N \N \N \N \N 28416 A.bauhinioides Amphilophium Amphilophium bauhinioides \N \N \N \N \N 28417 P.schlechteri Prunus Prunus schlechteri \N \N \N \N \N 28418 M.blossfeldiana Mammillaria Mammillaria blossfeldiana \N \N \N \N \N 28419 V.SW-2007 Verhuellia Verhuellia sp. SW-2007 \N \N \N \N \N 28420 M.floribunda Moldenhawera Moldenhawera floribunda \N \N \N \N \N 28421 S.holostea Stellaria Stellaria holostea Easter-bell,greater stichwort \N \N \N \N 28422 \N genus Wurmbea \N \N \N \N \N 28423 C.pulchra Cineraria Cineraria pulchra \N \N \N \N \N 28424 O.parodiana Oenothera Oenothera parodiana \N \N \N \N \N 28425 V.rotundifolia Vitex Vitex rotundifolia \N \N \N \N \N 28426 V.aintabensis Vicia Vicia aintabensis \N \N \N \N \N 28427 P.sexflora Passiflora Passiflora sexflora \N \N \N \N \N 28428 P.chrysophorus Paepalanthus Paepalanthus chrysophorus \N \N \N \N \N 28429 B.calyptropus Bulbophyllum Bulbophyllum calyptropus \N \N \N \N \N 28430 C.nucifera Cocos Cocos nucifera coconut palm \N \N \N \N 28431 L.leeana Lewisia Lewisia leeana \N \N \N \N \N 28432 A.linearis Anisocycla Anisocycla linearis \N \N \N \N \N 28433 T.arenarius Thamnochortus Thamnochortus arenarius \N \N \N \N \N 28434 \N genus Streblosa \N \N \N \N \N 28435 N.granadensis Nertera Nertera granadensis English babytears,bead plant,coral moss,coral-bead plant \N \N \N \N 28436 S.06092 Sasa Sasa sp. 2 Zeng & Zhang 06092 \N \N \N \N \N 28437 \N genus Oreostylidium \N \N \N \N \N 28438 M.pensylvanica Micranthes Micranthes pensylvanica \N \N \N \N \N 28439 H.parviflora Hymenolepis Hymenolepis parviflora \N \N \N \N \N 28440 B.densifolia Babingtonia Babingtonia densifolia \N \N \N \N \N 28441 L.oviceps Lepidaria Lepidaria oviceps \N \N \N \N \N 28442 P.dolichophylla Polystachya Polystachya dolichophylla \N \N \N \N \N 28443 I.buccinalis Impatiens Impatiens buccinalis \N \N \N \N \N 28444 L.elbursensis Leutea Leutea elbursensis \N \N \N \N \N 28445 T.inimitabile Taraxacum Taraxacum inimitabile \N \N \N \N \N 28446 H.mexicana Hintonella Hintonella mexicana \N \N \N \N \N 28447 R.apiculata Rondeletia Rondeletia apiculata \N \N \N \N \N 28448 P.1955 Pagamea Pagamea sp. Vicentini 1955 \N \N \N \N \N 28449 P.gracillima Passiflora Passiflora gracillima \N \N \N \N \N 28450 H.wendlandii Homalomena Homalomena wendlandii \N \N \N \N \N 28451 \N varietas Maxillaria heterophylla var. magnifolia \N \N \N \N \N 28452 M.panamense Mesospinidium Mesospinidium panamense \N \N \N \N \N 28453 L.trigonelloides Lotus Lotus trigonelloides \N \N \N \N \N 28454 P.9031 Psydrax Psydrax sp. A Luke and Luke 9031 \N \N \N \N \N 28455 E.schomburgkiana Elaeoluma Elaeoluma schomburgkiana \N \N \N \N \N 28456 S.sesuvioides Sesuvium Sesuvium sesuvioides \N \N \N \N \N 28457 T.coerulescens Trigonella Trigonella coerulescens \N \N \N \N \N 28458 A.carvifolia Artemisia Artemisia carvifolia \N \N \N \N \N 28459 \N genus Sparattosyce \N \N \N \N \N 28460 M.wilsonii Melaleuca Melaleuca wilsonii \N \N \N \N \N 28461 O.amazonica Ocotea Ocotea amazonica \N \N \N \N \N 28462 C.decandra Cariniana Cariniana decandra \N \N \N \N \N 28463 D.caloneura Discoglypremna Discoglypremna caloneura \N \N \N \N \N 28464 D.villosa Dalbergia Dalbergia villosa \N \N \N \N \N 28465 M.esquirolii Mussaenda Mussaenda esquirolii \N \N \N \N \N 28466 P.grandis Pomaderris Pomaderris grandis \N \N \N \N \N 28467 A.murrayi Arisaema Arisaema murrayi \N \N \N \N \N 28468 B.anomalus Bromus Bromus anomalus nodding brome \N \N \N \N 28469 L.neomexicanus Lupinus Lupinus neomexicanus \N \N \N \N \N 28470 D.campbellii Diploglottis Diploglottis campbellii \N \N \N \N \N 28471 E.cinereus Erigeron Erigeron cinereus \N \N \N \N \N 28472 E.matabelensis Euphorbia Euphorbia matabelensis \N \N \N \N \N 28473 \N genus Eurybia \N \N \N \N \N 28474 D.saundersii Dermatobotrys Dermatobotrys saundersii \N \N \N \N \N 28475 M.kona Masoala Masoala kona \N \N \N \N \N 28476 T.polystachya Tropidia Tropidia polystachya \N \N \N \N \N 28477 D.rigida Dodonaea Dodonaea rigida \N \N \N \N \N 28478 H.bucharicum Hedysarum Hedysarum bucharicum \N \N \N \N \N 28479 P.multijuga Polylepis Polylepis multijuga \N \N \N \N \N 28480 A.elegantissima Austrostipa Austrostipa elegantissima \N \N \N \N \N 28481 H.felicis Hymenostegia Hymenostegia felicis \N \N \N \N \N 28482 M.impostor Masdevallia Masdevallia impostor \N \N \N \N \N 28483 E.falcis Elymus Elymus falcis \N \N \N \N \N 28484 D.macdougallii Dahlia Dahlia macdougallii \N \N \N \N \N 28485 B.pekinensis Brassica Brassica oleracea x Brassica rapa subsp. pekinensis \N \N \N \N \N 28486 E.carniolica Eleocharis Eleocharis carniolica \N \N \N \N \N 28487 \N genus Mansoa \N \N \N \N \N 28488 D.ciliolata Dubautia Dubautia ciliolata \N \N \N \N \N 28489 L.purpurea Larnax Larnax purpurea \N \N \N \N \N 28490 \N subspecies Cassiope tetragona subsp. saximontana \N \N \N \N \N 28491 \N family Droseraceae sundew family \N \N \N \N 28492 M.daghestanica Medicago Medicago daghestanica \N \N \N \N \N 28493 \N genus Euclinia \N \N \N \N \N 28494 B.linifolia Bomarea Bomarea linifolia \N \N \N \N \N 28495 A.atrata Aquilegia Aquilegia atrata \N \N \N \N \N 28496 C.semijusta Centaurea Centaurea semijusta \N \N \N \N \N 28497 B.aurorae Brassia Brassia aurorae \N \N \N \N \N 28498 \N genus Codonopsis \N \N \N \N \N 28499 C.tauari Couratari Couratari tauari \N \N \N \N \N 28500 A.prancei Arrabidaea Arrabidaea prancei \N \N \N \N \N 28501 D.americana Diphysa Diphysa americana \N \N \N \N \N 28502 S.flagellaris Saxifraga Saxifraga flagellaris \N \N \N \N \N 28503 C.sasanqua Camellia Camellia sasanqua sasanqua camellia \N \N \N \N 28504 A.blakelyi Acacia Acacia blakelyi \N \N \N \N \N 28505 E.minuta Eleocharis Eleocharis minuta \N \N \N \N \N 28506 \N subspecies Cicerbita macrophylla subsp. uralensis \N \N \N \N \N 28507 A.anisopodium Allium Allium anisopodium \N \N \N \N \N 28508 K.bantamense Koilodepas Koilodepas bantamense \N \N \N \N \N 28509 P.verbascifolia Pilea Pilea verbascifolia \N \N \N \N \N 28510 P.capitatum Polygonum Polygonum capitatum \N \N \N \N \N 28511 \N varietas Draba nemorosa var. hebecarpa \N \N \N \N \N 28512 L.sparsiflorus Lupinus Lupinus sparsiflorus Coulter's lupine \N \N \N \N 28513 A.cordata Aspalathus Aspalathus cordata \N \N \N \N \N 28514 A.cyanocarpum Arceuthobium Arceuthobium cyanocarpum \N \N \N \N \N 28515 \N subspecies Anthyllis vulneraria subsp. boscii \N \N \N \N \N 28516 \N subspecies Erica regia subsp. regia \N \N \N \N \N 28517 H.spartioides Hoya Hoya spartioides \N \N \N \N \N 28518 T.cretaceus Tragopogon Tragopogon cretaceus \N \N \N \N \N 28519 A.ngobitensis Aloe Aloe ngobitensis \N \N \N \N \N 28520 S.komarovii Schoenoplectiella Schoenoplectiella komarovii \N \N \N \N \N 28521 D.SH-2010 Dasymaschalon Dasymaschalon sp. SH-2010 \N \N \N \N \N 28522 P.liliastrum Paradisea Paradisea liliastrum \N \N \N \N \N 28523 \N genus Salzmannia \N \N \N \N \N 28524 S.canescens Selago Selago canescens \N \N \N \N \N 28525 L.verticillatum Leucadendron Leucadendron verticillatum \N \N \N \N \N 28526 \N genus Ginoria \N \N \N \N \N 28527 G.salicina Globularia Globularia salicina \N \N \N \N \N 28528 O.2-26-23 Opuntia Opuntia sp. INIFAP 2-26-23 \N \N \N \N \N 28529 I.9106 Isoglossa Isoglossa sp. Daniel 9106 \N \N \N \N \N 28530 S.kurtzii Senna Senna kurtzii \N \N \N \N \N 28531 L.rumicifolium Limonium Limonium rumicifolium \N \N \N \N \N 28532 V.urticifolia Valeriana Valeriana urticifolia \N \N \N \N \N 28533 A.1865 Arctotis Arctotis sp. Barker 1865 \N \N \N \N \N 28534 S.bullata Stachys Stachys bullata \N \N \N \N \N 28535 X.hainanense Xanthophyllum Xanthophyllum hainanense \N \N \N \N \N 28536 P.quadrifaria Passerina Passerina quadrifaria \N \N \N \N \N 28537 H.aeruginosa Harpullia Harpullia aeruginosa \N \N \N \N \N 28538 T.paradoxus Tephrothamnus Tephrothamnus paradoxus \N \N \N \N \N 28539 \N genus Recchia \N \N \N \N \N 28540 \N varietas Platanus mexicana var. interior \N \N \N \N \N 28541 C.fruticosa Crambe Crambe fruticosa \N \N \N \N \N 28542 V.bellidioides Veronica Veronica bellidioides \N \N \N \N \N 28543 B.stipularis Bridelia Bridelia stipularis \N \N \N \N \N 28544 A.pedemontana Arabidopsis Arabidopsis pedemontana \N \N \N \N \N 28545 M.lanceolata Munnozia Munnozia lanceolata \N \N \N \N \N 28546 Z.madagascariense Zygophyllum Zygophyllum madagascariense \N \N \N \N \N 28547 A.triphylla Aloysia Aloysia triphylla \N \N \N \N \N 28548 C.H5_45 Castilleja Castilleja sp. H5_45 \N \N \N \N \N 28549 G.madagascariensis Givotia Givotia madagascariensis \N \N \N \N \N 28550 M.obliqua Monstera Monstera obliqua \N \N \N \N \N 28551 X.atkinsoniana Xanthosia Xanthosia atkinsoniana \N \N \N \N \N 28552 C.deplanchei Cyclophyllum Cyclophyllum deplanchei \N \N \N \N \N 28553 \N varietas Muraltia empleuridioides var. diversifolia \N \N \N \N \N 28554 E.ritro Echinops Echinops ritro \N \N \N \N \N 28555 C.chalciolepis Carex Carex chalciolepis \N \N \N \N \N 28556 \N subspecies Secale cereale subsp. rigidum \N \N \N \N \N 28557 P.dichondrifolium Pelargonium Pelargonium dichondrifolium \N \N \N \N \N 28558 \N subspecies Impatiens tinctoria subsp. elegantissima \N \N \N \N \N 28559 F.albopurpurea Flickingeria Flickingeria albopurpurea \N \N \N \N \N 28560 C.declinatum Corispermum Corispermum declinatum \N \N \N \N \N 28561 G.triphyllum Gossypium Gossypium triphyllum \N \N \N \N \N 28562 \N genus Nephelaphyllum \N \N \N \N \N 28563 C.crocosmiiflora Crocosmia Crocosmia x crocosmiiflora \N \N \N \N \N 28564 \N subspecies Carex brunnescens subsp. sphaerostachya \N \N \N \N \N 28565 O.serratum Ocimum Ocimum serratum \N \N \N \N \N 28566 S.EM-2009 Senecio Senecio sp. EM-2009 \N \N \N \N \N 28567 S.humectophilum Solanum Solanum humectophilum \N \N \N \N \N 28568 Z.iodocarpum Zygophyllum Zygophyllum iodocarpum \N \N \N \N \N 28569 E.spectatrix Eucalyptus Eucalyptus spectatrix \N \N \N \N \N 28570 \N genus Trichocoryne \N \N \N \N \N 28571 A.verticillata Alzatea Alzatea verticillata \N \N \N \N \N 28572 \N genus Aegialitis \N \N \N \N \N 28573 C.gigantolepis Cousinia Cousinia gigantolepis \N \N \N \N \N 28574 H.parviflora Hebenstretia Hebenstretia parviflora \N \N \N \N \N 28575 A.oblongifolia Aspalathus Aspalathus oblongifolia \N \N \N \N \N 28576 S.wacketii Solanum Solanum wacketii \N \N \N \N \N 28577 H.dichotomus Homalocarpus Homalocarpus dichotomus \N \N \N \N \N 28578 E.sclerioides Exocarya Exocarya sclerioides \N \N \N \N \N 28579 \N subfamily Podostemoideae \N \N \N \N \N 28580 P.pauciflora Packera Packera pauciflora alpine groundsel \N \N \N \N 28581 S.wootonii Senecio Senecio wootonii \N \N \N \N \N 28582 S.guianensis Schultesia Schultesia guianensis \N \N \N \N \N 28583 L.macrodon Lobelia Lobelia macrodon \N \N \N \N \N 28584 A.cancellata Aulax Aulax cancellata \N \N \N \N \N 28585 S.fontinalis Scirpus Scirpus fontinalis \N \N \N \N \N 28586 D.umbrosa Diospyros Diospyros umbrosa \N \N \N \N \N 28587 \N varietas Geranium koraiense var. hallasanense \N \N \N \N \N 28588 P.obtusifolius Potamogeton Potamogeton obtusifolius \N \N \N \N \N 28589 A.forbesii Asarum Asarum forbesii \N \N \N \N \N 28590 L.nutantiflora Lysimachia Lysimachia nutantiflora \N \N \N \N \N 28591 P.kraehenbuehlii Pultenaea Pultenaea kraehenbuehlii \N \N \N \N \N 28592 C.wilfordii Cynanchum Cynanchum wilfordii \N \N \N \N \N 28593 M.springeri Mentzelia Mentzelia springeri \N \N \N \N \N 28594 D.dekockii Dimorphanthera Dimorphanthera dekockii \N \N \N \N \N 28595 C.parviflora Carapa Carapa parviflora \N \N \N \N \N 28596 A.microphylla Andrachne Andrachne microphylla \N \N \N \N \N 28597 C.hookeri Chordifex Chordifex hookeri \N \N \N \N \N 28598 C.arcuata Cliffortia Cliffortia arcuata \N \N \N \N \N 28599 X.zambesiaca Xanthocercis Xanthocercis zambesiaca \N \N \N \N \N 28600 M.fluviatilis Mayaca Mayaca fluviatilis \N \N \N \N \N 28601 A.264 Acroceras Acroceras sp. Hodkinson 264 \N \N \N \N \N 28602 S.pycnanthum Syzygium Syzygium pycnanthum \N \N \N \N \N 28603 C.stoebe Centaurea Centaurea alba x Centaurea stoebe \N \N \N \N \N 28604 A.seubertianum Ammi Ammi seubertianum \N \N \N \N \N 28605 M.suarezorum Maxillaria Maxillaria suarezorum \N \N \N \N \N 28606 B.laricina Banksia Banksia laricina \N \N \N \N \N 28607 S.inermis Salsola Salsola inermis \N \N \N \N \N 28608 E.nana Espostoa Espostoa nana \N \N \N \N \N 28609 D.arcuatinervis Dioscorea Dioscorea arcuatinervis \N \N \N \N \N 28610 C.rydbergii Cirsium Cirsium rydbergii \N \N \N \N \N 28611 P.5928 Prunus Prunus sp. Wen 5928 \N \N \N \N \N 28612 P.mohrianum Paphiopedilum Paphiopedilum mohrianum \N \N \N \N \N 28613 C.bracteosa Carpha Carpha bracteosa \N \N \N \N \N 28614 T.zanonia Tradescantia Tradescantia zanonia \N \N \N \N \N 28615 P.tongolensis Pedicularis Pedicularis tongolensis \N \N \N \N \N 28616 P.brigantina Prunus Prunus brigantina briacon apricot \N \N \N \N 28617 C.lecoqii Centranthus Centranthus lecoqii \N \N \N \N \N 28618 I.eremophila Indigofera Indigofera eremophila \N \N \N \N \N 28619 D.macrocarpa Dovea Dovea macrocarpa \N \N \N \N \N 28620 R.chrysocoma Raphidiocystis Raphidiocystis chrysocoma \N \N \N \N \N 28621 V.capensis Valeriana Valeriana capensis \N \N \N \N \N 28622 S.lasioneura Smilax Smilax lasioneura Blue Ridge carrionflower \N \N \N \N 28623 F.kelleri Ferula Ferula kelleri \N \N \N \N \N 28624 M.CVM-2007 Miconia Miconia sp. CVM-2007 \N \N \N \N \N 28625 D.excelsus Dianthus Dianthus excelsus \N \N \N \N \N 28626 \N genus Seselopsis \N \N \N \N \N 28627 H.glutinosus Haplopappus Haplopappus glutinosus \N \N \N \N \N 28628 T.palmasolana Tillandsia Tillandsia palmasolana \N \N \N \N \N 28629 C.membranacea Chrysochlamys Chrysochlamys membranacea \N \N \N \N \N 28630 A.villosus Arthropogon Arthropogon villosus \N \N \N \N \N 28631 B.ignea Barbacenia Barbacenia ignea \N \N \N \N \N 28632 O.scirpoideum Olsynium Olsynium scirpoideum \N \N \N \N \N 28633 D.mitis Desmoncus Desmoncus mitis \N \N \N \N \N 28634 T.africana Triainolepis Triainolepis africana \N \N \N \N \N 28635 H.armenum Haplophyllum Haplophyllum armenum \N \N \N \N \N 28636 O.megalorrhiza Oxalis Oxalis megalorrhiza \N \N \N \N \N 28637 P.lucienneae Polyscias Polyscias lucienneae \N \N \N \N \N 28638 N.ivaniana Nolana Nolana ivaniana \N \N \N \N \N 28639 S.herreanus Senecio Senecio herreanus \N \N \N \N \N 28640 S.luzonicum Schizostachyum Schizostachyum luzonicum \N \N \N \N \N 28641 H.omeiensis Hemiboea Hemiboea omeiensis \N \N \N \N \N 28642 V.glabrescens Vigna Vigna glabrescens \N \N \N \N \N 28643 I.douglasiana Iris Iris douglasiana \N \N \N \N \N 28644 \N genus Lagynias \N \N \N \N \N 28645 B.tatei Brachyscome Brachyscome tatei \N \N \N \N \N 28646 V.pumila Vanda Vanda pumila \N \N \N \N \N 28647 C.angustifolia Cuphea Cuphea angustifolia \N \N \N \N \N 28648 S.phylicoides Staavia Staavia phylicoides \N \N \N \N \N 28649 \N genus Humbertacalia \N \N \N \N \N 28650 B.uber Betula Betula uber \N \N \N \N \N 28651 S.hawaiiensis Silene Silene hawaiiensis \N \N \N \N \N 28652 D.australianus Dimocarpus Dimocarpus australianus \N \N \N \N \N 28653 H.peploides Honckenya Honckenya peploides \N \N \N \N \N 28654 A.fatua Avena Avena fatua \N \N \N \N \N 28655 B.bergmanniae Berberis Berberis bergmanniae \N \N \N \N \N 28656 I.ciliospinosa Ilex Ilex ciliospinosa \N \N \N \N \N 28657 A.pickardii Acacia Acacia pickardii \N \N \N \N \N 28658 A.mcvaughii Aechmea Aechmea mcvaughii \N \N \N \N \N 28659 \N genus Dactylanthus \N \N \N \N \N 28660 R.caroliniensis Ruellia Ruellia caroliniensis \N \N \N \N \N 28661 P.schimperi Pulicaria Pulicaria schimperi \N \N \N \N \N 28662 A.chrysanthus Aeschynanthus Aeschynanthus chrysanthus \N \N \N \N \N 28663 \N subspecies Grevillea scortechinii subsp. scortechinii \N \N \N \N \N 28664 A.minutiflorum Allium Allium minutiflorum \N \N \N \N \N 28665 \N varietas Oreostemma alpigenum var. alpigenum \N \N \N \N \N 28666 S.disjuncta Swainsona Swainsona disjuncta \N \N \N \N \N 28667 C.thulinianus Cucumis Cucumis thulinianus \N \N \N \N \N 28668 \N varietas Boechera sparsiflora var. sparsiflora \N \N \N \N \N 28669 T.burchellianum Trifolium Trifolium burchellianum \N \N \N \N \N 28670 \N genus Spathantheum \N \N \N \N \N 28671 \N subspecies Helianthus debilis subsp. cucumerifolius \N \N \N \N \N 28672 G.overbergensis Gladiolus Gladiolus overbergensis \N \N \N \N \N 28673 C.peteriana Cyphia Cyphia peteriana \N \N \N \N \N 28674 K.orbicularis Kefersteinia Kefersteinia orbicularis \N \N \N \N \N 28675 E.horombensis Euphorbia Euphorbia horombensis \N \N \N \N \N 28676 P.angustifolia Prunus Prunus angustifolia Chickasaw plum \N \N \N \N 28677 \N genus Lecointea \N \N \N \N \N 28678 \N varietas Eriogonum microthecum var. simpsonii \N \N \N \N \N 28679 D.purpusii Delphinium Delphinium purpusii rose-flowered larkspur \N \N \N \N 28680 P.longipes Primula Primula longipes \N \N \N \N \N 28681 C.iricolor Cattleya Cattleya iricolor \N \N \N \N \N 28682 C.socotranus Croton Croton socotranus \N \N \N \N \N 28683 T.meyeri Tarasa Tarasa meyeri \N \N \N \N \N 28684 E.pancicii Euphorbia Euphorbia pancicii \N \N \N \N \N 28685 N.cultivar Narcissus Narcissus hybrid cultivar \N \N \N \N \N 28686 E.abramsiana Euphorbia Euphorbia abramsiana \N \N \N \N \N 28687 R.chinensis Ranunculus Ranunculus chinensis \N \N \N \N \N 28688 A.urundeuva Astronium Astronium urundeuva \N \N \N \N \N 28689 A.pallida Aristolochia Aristolochia pallida \N \N \N \N \N 28690 C.moesiacum Cerastium Cerastium moesiacum \N \N \N \N \N 28691 N.lutea Nonea Nonea lutea \N \N \N \N \N 28692 A.modestum Aglaonema Aglaonema modestum Japanese-leaf \N \N \N \N 28693 A.glumaceus Astragalus Astragalus glumaceus \N \N \N \N \N 28694 B.madritensis Bromus Bromus madritensis \N \N \N \N \N 28695 P.triandrum Pelargonium Pelargonium triandrum \N \N \N \N \N 28696 D.asper Desmocladus Desmocladus asper \N \N \N \N \N 28697 E.canescens Erysimum Erysimum canescens \N \N \N \N \N 28698 T.somalense Trifolium Trifolium somalense \N \N \N \N \N 28699 A.delagoense Aspidoglossum Aspidoglossum delagoense \N \N \N \N \N 28700 C.erodioides Cineraria Cineraria erodioides \N \N \N \N \N 28701 \N genus Misopates weasel's snout \N \N \N \N 28702 L.rosea Lawrencella Lawrencella rosea \N \N \N \N \N 28703 S.sucubunense Solanum Solanum sucubunense \N \N \N \N \N 28704 P.auriculata Philacra Philacra auriculata \N \N \N \N \N 28705 G.spectabilis Guzmania Guzmania spectabilis \N \N \N \N \N 28706 F.congesta Filago Filago congesta \N \N \N \N \N 28707 O.fibrosa Oxalis Oxalis fibrosa \N \N \N \N \N 28708 \N genus Hymenostephium \N \N \N \N \N 28709 T.NC-2010 Typhonium Typhonium sp. NC-2010 \N \N \N \N \N 28710 A.pedicellata Aspalathus Aspalathus pedicellata \N \N \N \N \N 28711 S.oaxacanum Sedum Sedum oaxacanum \N \N \N \N \N 28712 D.borneensis Diospyros Diospyros borneensis \N \N \N \N \N 28713 C.wrightii Coincya Coincya wrightii \N \N \N \N \N 28714 J.erucifolia Jacobaea Jacobaea erucifolia hoary ragwort \N \N \N \N 28715 \N subspecies Artemisia ludoviciana subsp. mexicana \N \N \N \N \N 28716 O.dalstroemii Ornithocephalus Ornithocephalus dalstroemii \N \N \N \N \N 28717 P.brachystachyum Phoradendron Phoradendron brachystachyum \N \N \N \N \N 28718 O.alata Oubanguia Oubanguia alata \N \N \N \N \N 28719 C.icosandra Conostegia Conostegia icosandra \N \N \N \N \N 28720 \N subspecies Caesalpinia exostemma subsp. exostemma \N \N \N \N \N 28721 A.austroyunnanensis Aeschynanthus Aeschynanthus austroyunnanensis \N \N \N \N \N 28722 L.transsylvanicus Lathyrus Lathyrus transsylvanicus \N \N \N \N \N 28723 T.aestivum Thinopyrum x Triticum Thinopyrum ponticum x Triticum aestivum \N \N \N \N \N 28724 C.rosea Clusia Clusia rosea Scotch attorney \N \N \N \N 28725 S.forrestii Saussurea Saussurea forrestii \N \N \N \N \N 28726 C.suaveolens Chilocarpus Chilocarpus suaveolens \N \N \N \N \N 28727 P.lanceifolia Physalis Physalis lanceifolia \N \N \N \N \N 28728 P.ruscifolia Pleurothallis Pleurothallis ruscifolia \N \N \N \N \N 28729 O.sicula Ophrys Ophrys sicula \N \N \N \N \N 28730 P.antarctica Pinguicula Pinguicula antarctica \N \N \N \N \N 28731 M.mandshurica Malus Malus mandshurica \N \N \N \N \N 28732 R.pinguis Ranunculus Ranunculus pinguis \N \N \N \N \N 28733 \N genus Apochloa \N \N \N \N \N 28734 \N subspecies Anthemis mauritiana subsp. faurei \N \N \N \N \N 28735 O.lucorum Orobanche Orobanche lucorum \N \N \N \N \N 28736 D.chameleon Dendrobium Dendrobium chameleon \N \N \N \N \N 28737 M.crassifolius Melicytus Melicytus crassifolius \N \N \N \N \N 28738 G.robinsonii Grindelia Grindelia robinsonii \N \N \N \N \N 28739 P.repens Paspalum Paspalum repens \N \N \N \N \N 28740 B.longivaginans Bulbophyllum Bulbophyllum longivaginans \N \N \N \N \N 28741 D.stereophyllum Disterigma Disterigma stereophyllum \N \N \N \N \N 28742 S.cordata Selysia Selysia cordata \N \N \N \N \N 28743 P.prasinata Paliavana Paliavana prasinata \N \N \N \N \N 28744 R.CANU3459 Raoulia Raoulia sp. CANU3459 \N \N \N \N \N 28745 R.infelix Ravenia Ravenia infelix \N \N \N \N \N 28746 S.foliosa Salsola Salsola foliosa \N \N \N \N \N 28747 D.kingianum Dendrobium Dendrobium kingianum \N \N \N \N \N 28748 \N genus Tordyliopsis \N \N \N \N \N 28749 A.teysmanniana Aglaia Aglaia teysmanniana \N \N \N \N \N 28750 C.paucinervis Cornus Cornus paucinervis \N \N \N \N \N 28751 \N subspecies Erophila verna subsp. spathulata \N \N \N \N \N 28752 \N subspecies Alnus incana subsp. incana \N \N \N \N \N 28753 P.sallacustris Poa Poa sallacustris \N \N \N \N \N 28754 V.lanata Vanhouttea Vanhouttea lanata \N \N \N \N \N 28755 K.porphyrantha Kniphofia Kniphofia porphyrantha \N \N \N \N \N 28756 N.elloanensis Neuontobotrys Neuontobotrys elloanensis \N \N \N \N \N 28757 \N genus Lophiocarpus \N \N \N \N \N 28758 \N genus Oreithales \N \N \N \N \N 28759 L.filipes Leptosiphon Leptosiphon filipes \N \N \N \N \N 28760 V.consanguineum Vaccinium Vaccinium consanguineum \N \N \N \N \N 28761 B.novaehiberniae Barringtonia Barringtonia novaehiberniae \N \N \N \N \N 28762 N.linearifolia Nerisyrenia Nerisyrenia linearifolia \N \N \N \N \N 28763 C.collina Centaurea Centaurea collina \N \N \N \N \N 28764 C.minor Camissonia Camissonia minor \N \N \N \N \N 28765 \N genus Miltonioides \N \N \N \N \N 28766 A.ligustica Achillea Achillea ligustica \N \N \N \N \N 28767 R.maxwellii Rhododendron Rhododendron maxwellii \N \N \N \N \N 28768 \N subspecies Pachypodium rosulatum subsp. makayense \N \N \N \N \N 28769 C.polycarpa Corymbia Corymbia aff. polycarpa \N \N \N \N \N 28770 \N genus Pentacalia \N \N \N \N \N 28771 \N genus Leucosalpa \N \N \N \N \N 28772 N.umbrosa Neolitsea Neolitsea umbrosa \N \N \N \N \N 28773 D.cruentus Dianthus Dianthus cruentus \N \N \N \N \N 28774 \N genus Halocharis \N \N \N \N \N 28775 S.zephyrantha Stevia Stevia zephyrantha \N \N \N \N \N 28776 C.lucida Castanopsis Castanopsis lucida \N \N \N \N \N 28777 I.cymbifera Impatiens Impatiens cymbifera \N \N \N \N \N 28778 \N genus Latua \N \N \N \N \N 28779 E.rhomboideum Eriophyton Eriophyton rhomboideum \N \N \N \N \N 28780 B.arthrophylla Baumea Baumea arthrophylla \N \N \N \N \N 28781 D.retusus Dipterocarpus Dipterocarpus retusus hollong \N \N \N \N 28782 A.phyllostegia Atriplex Atriplex phyllostegia \N \N \N \N \N 28783 \N subspecies Lithophragma affine subsp. mixtum \N \N \N \N \N 28784 L.carpini Lamyropsis Lamyropsis carpini \N \N \N \N \N 28785 A.longiconnectivus Amorphophallus Amorphophallus longiconnectivus \N \N \N \N \N 28786 G.erinaceum Gymnocalycium Gymnocalycium erinaceum \N \N \N \N \N 28787 C.fleuryi Castanopsis Castanopsis fleuryi \N \N \N \N \N 28788 S.leucantha Salvia Salvia leucantha \N \N \N \N \N 28789 V.ambigua Viola Viola ambigua \N \N \N \N \N 28790 S.setulosa Selago Selago setulosa \N \N \N \N \N 28791 A.davisii Anthemis Anthemis davisii \N \N \N \N \N 28792 A.triloba Adelia Adelia triloba \N \N \N \N \N 28793 R.streptophyllus Ruscus Ruscus streptophyllus \N \N \N \N \N 28794 M.pennellii Monnina Monnina pennellii \N \N \N \N \N 28795 C.camptoglochin Carex Carex camptoglochin \N \N \N \N \N 28796 G.campsophylla Globba Globba campsophylla \N \N \N \N \N 28797 V.95083 Viburnum Viburnum sp. Qiu 95083 \N \N \N \N \N 28798 D.sabulosa Disa Disa sabulosa \N \N \N \N \N 28799 A.cicatricata Agiortia Agiortia cicatricata \N \N \N \N \N 28800 N.robustus Napeanthus Napeanthus robustus \N \N \N \N \N 28801 O.34999 Orobanche Orobanche cf. nana Gu 34999 \N \N \N \N \N 28802 L.subtriflora Larnax Larnax subtriflora \N \N \N \N \N 28803 \N genus Schinziophyton \N \N \N \N \N 28804 \N genus Thoracocarpus \N \N \N \N \N 28805 A.elegantula Aquilegia Aquilegia elegantula \N \N \N \N \N 28806 P.montana Parinari Parinari montana \N \N \N \N \N 28807 E.ceratocarpa Euphorbia Euphorbia ceratocarpa \N \N \N \N \N 28808 C.integerrima Cristaria Cristaria integerrima \N \N \N \N \N 28809 B.danthoniae Bromus Bromus danthoniae oat brome \N \N \N \N 28810 E.oncidioides Encyclia Encyclia oncidioides \N \N \N \N \N 28811 C.madandensis Croton Croton madandensis \N \N \N \N \N 28812 \N genus Crosslandia \N \N \N \N \N 28813 \N varietas Croton leucophyllus var. leucophyllus \N \N \N \N \N 28814 C.titubans Cleome Cleome titubans \N \N \N \N \N 28815 L.crenata Lacunaria Lacunaria crenata \N \N \N \N \N 28816 A.leiospermum Arctium Arctium leiospermum \N \N \N \N \N 28817 \N tribe Leopoldinieae \N \N \N \N \N 28818 \N genus Carpodiptera \N \N \N \N \N 28819 C.impressinervis Camellia Camellia impressinervis \N \N \N \N \N 28820 \N varietas Pimelea curviflora var. divergens \N \N \N \N \N 28821 C.pseudoscabiosa Centaurea Centaurea pseudoscabiosa \N \N \N \N \N 28822 G.insectifera Globba Globba insectifera \N \N \N \N \N 28823 L.echinifer Lithocarpus Lithocarpus echinifer \N \N \N \N \N 28824 \N genus Nectaroscilla \N \N \N \N \N 28825 H.badachschanica Hymenolaena Hymenolaena badachschanica \N \N \N \N \N 28827 E.abyssinica Entada Entada abyssinica \N \N \N \N \N 28828 C.pumila Chamaedorea Chamaedorea pumila \N \N \N \N \N 28829 T.mollis Triraphis Triraphis mollis \N \N \N \N \N 28830 M.neglecta Malva Malva neglecta common mallow \N \N \N \N 28831 S.festivus Sporobolus Sporobolus festivus \N \N \N \N \N 28832 E.pectinatus Euryops Euryops pectinatus \N \N \N \N \N 28833 \N genus Fendlerella \N \N \N \N \N 28834 O.americanus Osmanthus Osmanthus americanus \N \N \N \N \N 28835 C.ilicifolia Cassinopsis Cassinopsis ilicifolia \N \N \N \N \N 28836 S.cordata Schefflera Schefflera cordata \N \N \N \N \N 28837 L.chilensis Loasa Loasa chilensis \N \N \N \N \N 28838 C.subinclusa Cuscuta Cuscuta subinclusa \N \N \N \N \N 28839 A.howellii Antennaria Antennaria howellii \N \N \N \N \N 28840 O.633 Oldenlandia Oldenlandia sp. De Block et al. 633 \N \N \N \N \N 28841 \N genus Eastwoodia \N \N \N \N \N 28842 P.virescens Polystachya Polystachya virescens \N \N \N \N \N 28843 O.floribunda Olearia Olearia floribunda \N \N \N \N \N 28844 M.murrayana Morus Morus murrayana \N \N \N \N \N 28845 \N genus Promenaea \N \N \N \N \N 28846 S.heterophylla Schefflera Schefflera heterophylla \N \N \N \N \N 28847 A.wightii Arenga Arenga wightii \N \N \N \N \N 28848 C.micrantha Comparettia Comparettia micrantha \N \N \N \N \N 28849 B.catenulata Bletia Bletia catenulata \N \N \N \N \N 28850 M.winitii Mitrephora Mitrephora winitii \N \N \N \N \N 28851 \N family Mitrastemonaceae \N \N \N \N \N 28852 C.sessiliflora Crawfurdia Crawfurdia sessiliflora \N \N \N \N \N 28853 G.venosa Gavilea Gavilea venosa \N \N \N \N \N 28854 L.diciliata Luxemburgia Luxemburgia diciliata \N \N \N \N \N 28855 U.compacta Uncinia Uncinia compacta \N \N \N \N \N 28856 R.nudiflorum Rytidosperma Rytidosperma nudiflorum \N \N \N \N \N 28857 R.robustus Rubus Rubus robustus \N \N \N \N \N 28858 \N genus Burttdavya \N \N \N \N \N 28859 F.chinensis Fragaria Fragaria chinensis \N \N \N \N \N 28860 S.cretica Stachys Stachys cretica \N \N \N \N \N 28861 S.villosum Solanum Solanum villosum \N \N \N \N \N 28862 H.nitida Heteropterys Heteropterys nitida \N \N \N \N \N 28863 \N genus Megaphrynium \N \N \N \N \N 28864 N.faassenii Nepeta Nepeta faassenii \N \N \N \N \N 28865 E.virgata Euphorbia Euphorbia virgata \N \N \N \N \N 28866 C.trinervia Centaurea Centaurea trinervia \N \N \N \N \N 28867 A.conimbricensis Arenaria Arenaria conimbricensis \N \N \N \N \N 28868 S.prionogonium Sarcophrynium Sarcophrynium prionogonium \N \N \N \N \N 28869 \N genus Metternichia \N \N \N \N \N 28870 G.auriculum Grandiphyllum Grandiphyllum auriculum \N \N \N \N \N 28871 \N genus Maasia \N \N \N \N \N 28872 C.ramosissima Conyza Conyza ramosissima \N \N \N \N \N 28873 E.austroyunnanensis Eurya Eurya austroyunnanensis \N \N \N \N \N 28874 B.formosana Begonia Begonia formosana \N \N \N \N \N 28875 L.lindleyi Ligustrum Ligustrum lindleyi \N \N \N \N \N 28876 P.ampullacea Passiflora Passiflora ampullacea \N \N \N \N \N 28877 C.strigosa Cliffortia Cliffortia strigosa \N \N \N \N \N 28878 P.fragrans Proboscidea Proboscidea fragrans sweet unicorn-plant \N \N \N \N 28879 H.longiberbe Hieracium Hieracium longiberbe \N \N \N \N \N 28880 M.malayana Maingaya Maingaya malayana \N \N \N \N \N 28881 C.albertisianus Calyptrocalyx Calyptrocalyx albertisianus \N \N \N \N \N 28882 T.glaziovii Trattinnickia Trattinnickia glaziovii \N \N \N \N \N 28883 C.sativus Cucumis Cucumis sativus cucumber,cucumbers \N \N \N \N 28884 S.urosepala Sida Sida urosepala \N \N \N \N \N 28885 A.eichleri Attalea Attalea eichleri \N \N \N \N \N 28886 O.albida Olearia Olearia albida \N \N \N \N \N 28887 \N genus Dicoma \N \N \N \N \N 28888 L.ixioides Libertia Libertia ixioides \N \N \N \N \N 28889 M.cazorlanum Muscari Muscari cazorlanum \N \N \N \N \N 28890 \N genus Trigonia \N \N \N \N \N 28891 S.crispa Sophronitis Sophronitis crispa \N \N \N \N \N 28892 P.standleyana Pagamea Pagamea standleyana \N \N \N \N \N 28893 P.chionantha Primula Primula chionantha \N \N \N \N \N 28894 \N subspecies Centaurea alba subsp. alba \N \N \N \N \N 28895 \N genus Stuhlmannia \N \N \N \N \N 28896 \N genus Stigmatodactylus \N \N \N \N \N 28897 P.pachyphyllum Podachaenium Podachaenium pachyphyllum \N \N \N \N \N 28898 A.2308 Aristolochia Aristolochia aff. ringens 2308 \N \N \N \N \N 28899 T.ptarmiciflorum Tanacetum Tanacetum ptarmiciflorum dusty-miller \N \N \N \N 28900 M.magdalenae Miconia Miconia magdalenae \N \N \N \N \N 28901 W.longicaulis Wyethia Wyethia longicaulis \N \N \N \N \N 28902 A.variegatum Aconitum Aconitum variegatum \N \N \N \N \N 28903 F.giraldiana Forsythia Forsythia giraldiana \N \N \N \N \N 28904 \N varietas Echinochloa crus-galli var. formosensis \N \N \N \N \N 28905 V.rupestris Vitis Vitis cinerea x Vitis rupestris \N \N \N \N \N 28906 L.perenne Linum Linum perenne \N \N \N \N \N 28907 E.aristulata Entoplocamia Entoplocamia aristulata \N \N \N \N \N 28908 E.superba Eragrostis Eragrostis superba \N \N \N \N \N 28909 C.96098 Ceanothus Ceanothus sp. Qiu 96098 \N \N \N \N \N 28910 P.kelloggii Perideridia Perideridia kelloggii \N \N \N \N \N 28911 M.pacholskii Maxillaria Maxillaria pacholskii \N \N \N \N \N 28912 P.crispum Petroselinum Petroselinum crispum parsley \N \N \N \N 28913 A.98-579 Asclepias Asclepias aff. standleyi Reina 98-579 \N \N \N \N \N 28914 E.SH-2010 Erythrina Erythrina sp. SH-2010 \N \N \N \N \N 28915 \N subspecies Sideritis cretica subsp. spicata \N \N \N \N \N 28916 N.wigandioides Nicotiana Nicotiana wigandioides \N \N \N \N \N 28917 O.nobilis Ostryopsis Ostryopsis nobilis \N \N \N \N \N 28918 C.eugenii Cousinia Cousinia eugenii \N \N \N \N \N 28919 P.paradoxa Phalaris Phalaris paradoxa \N \N \N \N \N 28920 D.reticulata Donnellsmithia Donnellsmithia reticulata \N \N \N \N \N 28921 P.10864 Pimelea Pimelea cf. gnidia Burrows 10864 \N \N \N \N \N 28922 \N genus Ageratum \N \N \N \N \N 28923 A.sellowianum Apium Apium sellowianum \N \N \N \N \N 28924 C.vallis-pulchrae Carex Carex vallis-pulchrae \N \N \N \N \N 28925 A.chinensis Alpinia Alpinia chinensis \N \N \N \N \N 28926 \N genus Oncidium \N \N \N \N \N 28927 G.veraguensis Gonzalagunia Gonzalagunia veraguensis \N \N \N \N \N 28928 R.SH-2010 Rhynchosia Rhynchosia sp. SH-2010 \N \N \N \N \N 28929 \N genus Aldrovanda \N \N \N \N \N 28930 \N genus Triscenia \N \N \N \N \N 28931 M.horsfieldii Monophyllaea Monophyllaea horsfieldii \N \N \N \N \N 28932 B.gardneri Barbacenia Barbacenia gardneri \N \N \N \N \N 28933 D.longifolia Diospyros Diospyros longifolia \N \N \N \N \N 28934 T.laevis Tittmannia Tittmannia laevis \N \N \N \N \N 28935 S.tschujensis Suaeda Suaeda tschujensis \N \N \N \N \N 28936 \N subspecies Corymbia citriodora subsp. citriodora \N \N \N \N \N 28937 O.rufus Oligochaetochilus Oligochaetochilus rufus \N \N \N \N \N 28938 S.multiflora Schismatoglottis Schismatoglottis multiflora \N \N \N \N \N 28939 A.sororia Arnica Arnica sororia \N \N \N \N \N 28940 P.kraussioides Psydrax Psydrax kraussioides \N \N \N \N \N 28941 S.gourlayi Solanum Solanum gourlayi \N \N \N \N \N 28942 U.verrucosum Urbanodendron Urbanodendron verrucosum \N \N \N \N \N 28943 W.spicata Wurmbea Wurmbea spicata \N \N \N \N \N 28944 E.stenophylla Euphorbia Euphorbia stenophylla \N \N \N \N \N 28945 E.microcephalus Echinops Echinops microcephalus \N \N \N \N \N 28946 I.taubertiana Ilex Ilex taubertiana \N \N \N \N \N 28947 \N genus Lepistemon \N \N \N \N \N 28948 T.cryptocalyx Tricalysia Tricalysia cryptocalyx \N \N \N \N \N 28949 \N subspecies Dichrostachys cinerea subsp. africana \N \N \N \N \N 28950 P.lasiocarpa Populus Populus lasiocarpa \N \N \N \N \N 28951 \N varietas Geonoma macrostachys var. macrostachys \N \N \N \N \N 28952 H.hryniawiense Hieracium Hieracium hryniawiense \N \N \N \N \N 28953 T.flabellata Tillandsia Tillandsia flabellata \N \N \N \N \N 28954 \N genus Cobana \N \N \N \N \N 28955 A.caliginis Argyroxiphium Argyroxiphium caliginis \N \N \N \N \N 28956 \N forma Miscanthus sinensis f. gracillimus \N \N \N \N \N 28957 P.oleosa Panda Panda oleosa \N \N \N \N \N 28958 \N genus Pilostyles \N \N \N \N \N 28959 \N genus Aegokeras \N \N \N \N \N 28960 P.cultivar Phalaenopsis Phalaenopsis hybrid cultivar \N \N \N \N \N 28961 M.sensibilis Mimosa Mimosa sensibilis \N \N \N \N \N 28962 R.pinnata Ratibida Ratibida pinnata \N \N \N \N \N 28963 D.affine Diastema Diastema affine \N \N \N \N \N 28964 P.muscoides Primula Primula muscoides \N \N \N \N \N 28965 P.flabelliformis Pentzia Pentzia flabelliformis \N \N \N \N \N 28966 \N genus Gibbaria \N \N \N \N \N 28967 \N genus Hymenidium \N \N \N \N \N 28968 \N varietas Allium peninsulare var. peninsulare \N \N \N \N \N 28969 A.baizhioides Angelica Angelica baizhioides \N \N \N \N \N 28970 I.pavonii Incarum Incarum pavonii \N \N \N \N \N 28971 \N genus Rhamnus \N \N \N \N \N 28972 \N genus Pseudoarabidopsis \N \N \N \N \N 28973 G.sabuletorum Guatteria Guatteria sabuletorum \N \N \N \N \N 28974 H.verticillata Hoya Hoya verticillata \N \N \N \N \N 28975 A.95-913 Anacampseros Anacampseros sp. UCBG 95-913 \N \N \N \N \N 28976 B.laticrenata Bartsia Bartsia laticrenata \N \N \N \N \N 28977 \N genus Anthostema \N \N \N \N \N 28978 B.teitensis Bourreria Bourreria teitensis \N \N \N \N \N 28979 \N subspecies Rafnia angulata subsp. angulata \N \N \N \N \N 28980 O.villaricae Oenothera Oenothera villaricae \N \N \N \N \N 28981 K.densiflora Kalanchoe Kalanchoe densiflora \N \N \N \N \N 28982 M.vignei Monocyclanthus Monocyclanthus vignei \N \N \N \N \N 28983 P.carniconnectivum Piper Piper carniconnectivum \N \N \N \N \N 28984 C.massaicus Cenchrus Cenchrus massaicus \N \N \N \N \N 28985 S.apiculata Stuessya Stuessya apiculata \N \N \N \N \N 28986 D.paniculatus Diplodiscus Diplodiscus paniculatus \N \N \N \N \N 28987 N.rosulata Navarretia Navarretia rosulata \N \N \N \N \N 28988 P.infirma Poa Poa infirma \N \N \N \N \N 28989 A.sericoleopsis Aceratium Aceratium sericoleopsis \N \N \N \N \N 28990 B.abrotanoides Berzelia Berzelia abrotanoides \N \N \N \N \N 28991 \N subspecies Camassia quamash subsp. quamash \N \N \N \N \N 28992 \N subspecies Anigozanthos bicolor subsp. bicolor \N \N \N \N \N 28993 H.6670 Hypselodelphys Hypselodelphys sp. Harris 6670 \N \N \N \N \N 28994 Q.arvensis Quesnelia Quesnelia arvensis \N \N \N \N \N 28995 S.peucedanoides Seseli Seseli peucedanoides \N \N \N \N \N 28996 C.galapagoense Capsicum Capsicum galapagoense \N \N \N \N \N 28997 \N subtribe Tapinanthinae \N \N \N \N \N 28998 \N varietas Cinnamomum camphora var. glaucescens \N \N \N \N \N 28999 C.amazonicum Ceroxylon Ceroxylon amazonicum \N \N \N \N \N 29000 C.royenii Corybas Corybas royenii \N \N \N \N \N 29001 G.armourianum Gossypium Gossypium armourianum \N \N \N \N \N 29002 R.sacculata Raspalia Raspalia sacculata \N \N \N \N \N 29003 E.oranensis Euphorbia Euphorbia oranensis \N \N \N \N \N 29004 S.verdickii Stathmostelma Stathmostelma verdickii \N \N \N \N \N 29005 V.incurvata Vriesea Vriesea incurvata \N \N \N \N \N 29006 P.galioides Peperomia Peperomia galioides \N \N \N \N \N 29007 C.stricta Cordyline Cordyline stricta \N \N \N \N \N 29008 \N subspecies Pimelea simplex subsp. continua \N \N \N \N \N 29009 A.perviridis Aglaia Aglaia perviridis \N \N \N \N \N 29010 \N genus Turrillia \N \N \N \N \N 29011 P.sieberiana Poa Poa sieberiana \N \N \N \N \N 29012 C.acutifolia Coprosma Coprosma acutifolia \N \N \N \N \N 29013 V.sylvatica Viguiera Viguiera sylvatica \N \N \N \N \N 29014 H.cardiophylla Hoya Hoya cardiophylla \N \N \N \N \N 29015 S.pinnata Staphylea Staphylea pinnata \N \N \N \N \N 29016 C.macrostachya Coelia Coelia macrostachya \N \N \N \N \N 29017 B.morphologorum Bulbophyllum Bulbophyllum morphologorum \N \N \N \N \N 29018 S.pellucidum Schoenocaulon Schoenocaulon pellucidum \N \N \N \N \N 29019 H.angustifolia Hypoxis Hypoxis angustifolia \N \N \N \N \N 29020 \N subspecies Pulsatilla halleri subsp. slavica \N \N \N \N \N 29021 \N genus Cleisomeria \N \N \N \N \N 29022 I.jaegeri Ipomoea Ipomoea jaegeri \N \N \N \N \N 29023 A.paradoxum Allium Allium paradoxum \N \N \N \N \N 29024 D.pallescens Dactyladenia Dactyladenia pallescens \N \N \N \N \N 29025 M.phanerophlebia Magnolia Magnolia phanerophlebia \N \N \N \N \N 29026 M.lepidota Mimosa Mimosa lepidota \N \N \N \N \N 29027 B.43 Brunellia Brunellia sp. Skinner et al. 43 \N \N \N \N \N 29028 \N genus Bocconia \N \N \N \N \N 29029 \N genus Comarostaphylis \N \N \N \N \N 29030 H.micrantherum Hydrobryum Hydrobryum micrantherum \N \N \N \N \N 29031 L.myricifolia Leonotis Leonotis myricifolia \N \N \N \N \N 29032 C.velutina Chrysochamela Chrysochamela velutina \N \N \N \N \N 29033 C.floribunda Cuspidaria Cuspidaria floribunda \N \N \N \N \N 29034 O.fimbriata Orostachys Orostachys fimbriata \N \N \N \N \N 29035 P.stipitata Podolasia Podolasia stipitata \N \N \N \N \N 29036 L.peduncularis Lecanthus Lecanthus peduncularis \N \N \N \N \N 29037 G.scandens Gronovia Gronovia scandens \N \N \N \N \N 29038 V.grandiflora Vigna Vigna grandiflora \N \N \N \N \N 29039 H.chaunostachys Hydriastele Hydriastele chaunostachys \N \N \N \N \N 29040 \N genus Polycarena \N \N \N \N \N 29041 G.ehie Guibourtia Guibourtia ehie ovangkol \N \N \N \N 29042 C.confertiflora Cuphea Cuphea confertiflora \N \N \N \N \N 29043 C.fulvescens Cestrum Cestrum fulvescens \N \N \N \N \N 29044 C.incisa Corydalis Corydalis incisa \N \N \N \N \N 29045 A.erectum Angraecum Angraecum erectum \N \N \N \N \N 29046 J.adhatoda Justicia Justicia adhatoda \N \N \N \N \N 29047 S.carnea Salvia Salvia carnea \N \N \N \N \N 29048 A.cylindrata Aechmea Aechmea cylindrata \N \N \N \N \N 29049 C.preussii Coelocaryon Coelocaryon preussii \N \N \N \N \N 29050 M.huetii Murbeckiella Murbeckiella huetii \N \N \N \N \N 29051 M.congesta Mentzelia Mentzelia congesta \N \N \N \N \N 29052 P.vinifera Pseudophoenix Pseudophoenix vinifera \N \N \N \N \N 29053 P.hexandra Platygyna Platygyna hexandra \N \N \N \N \N 29054 \N subspecies Gymnocalycium riojense subsp. kozelskyanum \N \N \N \N \N 29055 H.dolabriforme Hypericum Hypericum dolabriforme \N \N \N \N \N 29056 S.limitare Solanum Solanum limitare \N \N \N \N \N 29057 \N varietas Haworthia chlorantha var. denticulifera \N \N \N \N \N 29058 E.calophylloides Endodesmia Endodesmia calophylloides \N \N \N \N \N 29059 M.sumatrana Maasia Maasia sumatrana \N \N \N \N \N 29060 V.tricolor Viola Viola tricolor \N \N \N \N \N 29061 P.microphylla Podalyria Podalyria microphylla \N \N \N \N \N 29062 C.viminalis Calamus Calamus viminalis \N \N \N \N \N 29063 C.undulatomarginata Cojoba Cojoba undulatomarginata \N \N \N \N \N 29064 A.pageae Amphithalea Amphithalea pageae \N \N \N \N \N 29065 \N genus Koelpinia \N \N \N \N \N 29066 B.motleyana Bucephalandra Bucephalandra motleyana \N \N \N \N \N 29067 \N genus Virectaria \N \N \N \N \N 29068 P.calcarea Polygala Polygala calcarea \N \N \N \N \N 29069 C.rigida Caladenia Caladenia rigida \N \N \N \N \N 29070 Z.fungii Ziziphus Ziziphus fungii \N \N \N \N \N 29071 \N genus Turritis \N \N \N \N \N 29072 E.alata Encyclia Encyclia alata \N \N \N \N \N 29073 R.petasitis Roldana Roldana petasitis \N \N \N \N \N 29074 T.sinuatus Tragopogon Tragopogon sinuatus \N \N \N \N \N 29075 C.4255-95c Catasetum Catasetum sp. NYBG 4255-95c \N \N \N \N \N 29076 C.ruber Cytinus Cytinus ruber \N \N \N \N \N 29077 C.MG383 Clusia Clusia sp. MG383 \N \N \N \N \N 29078 T.cumingiana Triplaris Triplaris cumingiana \N \N \N \N \N 29079 G.aestivalis Gaillardia Gaillardia aestivalis \N \N \N \N \N 29080 C.filiforme Campylocentrum Campylocentrum filiforme \N \N \N \N \N 29081 D.depauperatum Dichanthelium Dichanthelium depauperatum \N \N \N \N \N 29082 \N genus Copernicia \N \N \N \N \N 29083 R.haagei Rebutia Rebutia haagei \N \N \N \N \N 29084 \N varietas Chaetanthera stuebelii var. abbreviata \N \N \N \N \N 29085 S.madagascariensis Secamonopsis Secamonopsis madagascariensis \N \N \N \N \N 29086 P.CSU036 Petunia Petunia sp. CSU036 \N \N \N \N \N 29087 L.281/03M Leontodon Leontodon sp. Talavera & al. 281/03M \N \N \N \N \N 29088 E.elegantissima Eragrostis Eragrostis elegantissima \N \N \N \N \N 29089 M.7013 unclassified Menyanthaceae Menyanthaceae sp. Jacobs 7013 \N \N \N \N \N 29090 C.ramboi Cleistes Cleistes ramboi \N \N \N \N \N 29091 F.iinumae Fragaria Fragaria iinumae \N \N \N \N \N 29092 M.discolor Manilkara Manilkara discolor \N \N \N \N \N 29093 C.australis Citrus Citrus australis Australian lime,dooja \N \N \N \N 29094 \N genus Amischotolype \N \N \N \N \N 29095 R.crenatus Ranunculus Ranunculus crenatus \N \N \N \N \N 29096 \N genus Soliva \N \N \N \N \N 29097 D.melanopus Draba Draba melanopus \N \N \N \N \N 29098 P.zizyphoroides Pogogyne Pogogyne zizyphoroides \N \N \N \N \N 29099 \N genus Voyriella \N \N \N \N \N 29100 B.inflata Blackiella Blackiella inflata \N \N \N \N \N 29101 S.parviflora Sanguisorba Sanguisorba parviflora \N \N \N \N \N 29102 \N genus Harmsiopanax \N \N \N \N \N 29103 E.lehmannii Eucalyptus Eucalyptus lehmannii \N \N \N \N \N 29104 S.capense Smelophyllum Smelophyllum capense \N \N \N \N \N 29105 C.gymnocarpa Calathea Calathea gymnocarpa \N \N \N \N \N 29106 P.cyclamina Prunus Prunus cyclamina \N \N \N \N \N 29107 \N tribe Neospartoneae \N \N \N \N \N 29108 E.tonkinensis Entada Entada tonkinensis \N \N \N \N \N 29109 \N varietas Mimulus guttatus var. nasutus \N \N \N \N \N 29110 M.corymbosus Maschalocorymbus Maschalocorymbus corymbosus \N \N \N \N \N 29111 C.200450 Cinnamomum Cinnamomum sp. Zhou 200450 \N \N \N \N \N 29112 S.discotis Smilax Smilax discotis \N \N \N \N \N 29113 H.parvifolium Hymenodictyon Hymenodictyon parvifolium \N \N \N \N \N 29114 C.compressum Colpoon Colpoon compressum \N \N \N \N \N 29115 G.tricolor Gilia Gilia tricolor bird's-eyes \N \N \N \N 29116 A.amplexicaulis Arabis Arabis amplexicaulis \N \N \N \N \N 29117 \N subspecies Centaurea resupinata subsp. lagascae \N \N \N \N \N 29118 O.depauperata Osmorhiza Osmorhiza depauperata \N \N \N \N \N 29119 A.bertolonii Arenaria Arenaria bertolonii \N \N \N \N \N 29120 M.expansa Muhlenbergia Muhlenbergia expansa \N \N \N \N \N 29121 \N subspecies Allium ampeloprasum subsp. ampeloprasum \N \N \N \N \N 29122 P.cromyorhizon Paspalum Paspalum cromyorhizon \N \N \N \N \N 29123 A.buergerianum Acer Acer buergerianum trident maple \N \N \N \N 29124 M.cissoides Momordica Momordica cissoides \N \N \N \N \N 29125 N.flaccida Nolana Nolana flaccida \N \N \N \N \N 29126 G.francoisii Gastrorchis Gastrorchis francoisii \N \N \N \N \N 29127 M.ramosa Maxillaria Maxillaria ramosa \N \N \N \N \N 29128 D.austriacum Doronicum Doronicum austriacum \N \N \N \N \N 29129 T.lanterna Trithuria Trithuria lanterna \N \N \N \N \N 29130 G.involutum Gastrolobium Gastrolobium involutum \N \N \N \N \N 29131 G.oculus-cati Galeomma Galeomma oculus-cati \N \N \N \N \N 29132 A.mauritanicus Ampelodesmos Ampelodesmos mauritanicus Mauritania vine reed \N \N \N \N 29133 P.oklahomensis Phlox Phlox oklahomensis \N \N \N \N \N 29134 G.LL-2010 Gaultheria Gaultheria sp. LL-2010 \N \N \N \N \N 29135 \N subfamily Agavoideae \N \N \N \N \N 29136 P.pumila Petradoria Petradoria pumila grassy rockgoldenrod \N \N \N \N 29137 A.paradisicola Amaryllis Amaryllis paradisicola \N \N \N \N \N 29138 C.arvensis Castilleja Castilleja arvensis \N \N \N \N \N 29139 C.longa Curcuma Curcuma longa turmeric \N \N \N \N 29140 S.oleifolia Secamone Secamone oleifolia \N \N \N \N \N 29141 P.lepton Paspalum Paspalum lepton \N \N \N \N \N 29142 A.germinyanum Angraecum Angraecum germinyanum \N \N \N \N \N 29143 S.morae Stelis Stelis morae \N \N \N \N \N 29144 M.aurantiaca Musa Musa aurantiaca \N \N \N \N \N 29145 \N genus Pteralyxia \N \N \N \N \N 29146 G.confusa Gastrodia Gastrodia confusa \N \N \N \N \N 29147 A.acutissima Aloe Aloe acutissima \N \N \N \N \N 29148 M.tenuifolia Merciera Merciera tenuifolia \N \N \N \N \N 29149 L.multiceps Lathyrus Lathyrus multiceps \N \N \N \N \N 29150 \N genus Volutaria \N \N \N \N \N 29151 C.juncea Chondrilla Chondrilla juncea rush skeletonweed \N \N \N \N 29152 M.selloi Myrcia Myrcia selloi \N \N \N \N \N 29153 T.5135 unclassified Taraxacum Taraxacum (sect. Calanthodia) sp. 5135 \N \N \N \N \N 29154 G.subviridis Genlisea Genlisea subviridis \N \N \N \N \N 29155 A.brevifolia Anabasis Anabasis brevifolia \N \N \N \N \N 29156 L.macranthum Lomatogonium Lomatogonium macranthum \N \N \N \N \N 29157 C.pungens Centromadia Centromadia pungens \N \N \N \N \N 29158 H.sericea Hemigenia Hemigenia sericea \N \N \N \N \N 29159 S.burkei Schoenoxiphium Schoenoxiphium burkei \N \N \N \N \N 29160 E.dentosa Euphorbia Euphorbia dentosa \N \N \N \N \N 29161 G.callifera Grosourdya Grosourdya callifera \N \N \N \N \N 29162 O.excelsa Orites Orites excelsa \N \N \N \N \N 29163 J.alpina Jacobaea Jacobaea alpina \N \N \N \N \N 29164 M.jacobinensis Manihot Manihot jacobinensis \N \N \N \N \N 29165 D.cordatus Didymocarpus Didymocarpus cordatus \N \N \N \N \N 29166 M.eruciformis Moorochloa Moorochloa eruciformis \N \N \N \N \N 29167 A.zoharyana Anthemis Anthemis zoharyana \N \N \N \N \N 29168 L.brevipes Ludwigia Ludwigia brevipes \N \N \N \N \N 29169 T.ngalaensis Tricalysia Tricalysia ngalaensis \N \N \N \N \N 29170 C.sericea Coronanthera Coronanthera sericea \N \N \N \N \N 29171 A.peduncularis Alepidea Alepidea peduncularis \N \N \N \N \N 29172 B.steyermarkii Bulbophyllum Bulbophyllum steyermarkii \N \N \N \N \N 29173 B.arcuigera Brassia Brassia arcuigera \N \N \N \N \N 29174 R.woermanniana Rinorea Rinorea woermanniana \N \N \N \N \N 29175 C.brevifolia Calanticaria Calanticaria brevifolia \N \N \N \N \N 29176 N.innocentii Nidularium Nidularium innocentii \N \N \N \N \N 29177 G.buckerveldii Gladiolus Gladiolus buckerveldii \N \N \N \N \N 29178 C.OFP-2006 Crossosoma Crossosoma sp. OFP-2006 \N \N \N \N \N 29179 P.brevipedicellatum Piper Piper brevipedicellatum \N \N \N \N \N 29180 A.albus Asparagus Asparagus albus \N \N \N \N \N 29181 M.buxifolia Monotheca Monotheca buxifolia \N \N \N \N \N 29182 A.scaposa Asclepias Asclepias scaposa \N \N \N \N \N 29183 T.polycarpum Thalictrum Thalictrum polycarpum tall western meadowrue \N \N \N \N 29184 T.miqueliana Tilia Tilia miqueliana \N \N \N \N \N 29185 G.clarkei Globba Globba clarkei \N \N \N \N \N 29186 T.microcalyx Tournefortia Tournefortia microcalyx \N \N \N \N \N 29187 E.lateriflora Endonema Endonema lateriflora \N \N \N \N \N 29188 M.hastata Monochoria Monochoria hastata \N \N \N \N \N 29189 T.TL212-1 unclassified Taraxacum Taraxacum (sect. Naevosa) sp. TL212-1 \N \N \N \N \N 29190 P.pulcherrimum Polemonium Polemonium pulcherrimum \N \N \N \N \N 29191 \N varietas Ceanothus tomentosus var. olivaceus \N \N \N \N \N 29192 \N genus Wullschlaegelia \N \N \N \N \N 29193 M.japonica Maesa Maesa japonica \N \N \N \N \N 29194 C.sessiliflorum Cynanchum Cynanchum sessiliflorum \N \N \N \N \N 29195 K.warszewiczii Kohleria Kohleria warszewiczii \N \N \N \N \N 29196 P.kurrooa Picrorhiza Picrorhiza kurrooa \N \N \N \N \N 29197 C.makaschvilii Campanula Campanula makaschvilii \N \N \N \N \N 29198 V.squalida Viguiera Viguiera squalida \N \N \N \N \N 29199 \N subspecies Epilobium alsinoides subsp. tenuipes \N \N \N \N \N 29200 L.machilifolia Litsea Litsea machilifolia \N \N \N \N \N 29201 L.crispus Leontodon Leontodon crispus \N \N \N \N \N 29202 \N no rank Phryma leptostachya var. asiatica \N \N \N \N \N 29203 A.superba Artemisia Artemisia superba \N \N \N \N \N 29204 I.speciosa Inula Inula speciosa \N \N \N \N \N 29205 D.araucana Danthonia Danthonia araucana \N \N \N \N \N 29206 \N tribe Maesopsideae \N \N \N \N \N 29207 P.argentea Podalyria Podalyria argentea \N \N \N \N \N 29208 D.3131 Dyckia Dyckia sp. Brown 3131 \N \N \N \N \N 29209 C.austrocoriaceum Calophyllum Calophyllum austrocoriaceum \N \N \N \N \N 29210 V.brunnea Vanda Vanda brunnea \N \N \N \N \N 29211 B.microcephala Bellis Bellis microcephala \N \N \N \N \N 29212 H.pubescens Heracleum Heracleum pubescens \N \N \N \N \N 29213 \N genus Camelina \N \N \N \N \N 29214 L.warmingianum Lepismium Lepismium warmingianum \N \N \N \N \N 29215 R.gredensis Reseda Reseda gredensis \N \N \N \N \N 29216 C.edulis Catha Catha edulis Somali tea,qat \N \N \N \N 29217 M.costaricana Maquira Maquira costaricana \N \N \N \N \N 29218 S.beneckei Stenocereus Stenocereus beneckei \N \N \N \N \N 29219 C.123 Croton Croton cf. lundellii van Ee 123 \N \N \N \N \N 29220 \N genus Hirschfeldia \N \N \N \N \N 29221 D.schizodioides Disa Disa schizodioides \N \N \N \N \N 29222 \N subspecies Onobrychis aucheri subsp. teheranica \N \N \N \N \N 29223 L.aequistylosa Leucas Leucas aequistylosa \N \N \N \N \N 29224 \N genus Chamaesciadium \N \N \N \N \N 29225 M.gattaca Macrocarpaea Macrocarpaea gattaca \N \N \N \N \N 29226 D.adenophora Dodonaea Dodonaea adenophora \N \N \N \N \N 29227 G.dubia Galactia Galactia dubia \N \N \N \N \N 29228 L.monocephalum Leontopodium Leontopodium monocephalum \N \N \N \N \N 29229 D.lolin Diospyros Diospyros lolin \N \N \N \N \N 29230 E.simplicifolia Euodia Euodia simplicifolia \N \N \N \N \N 29231 D.gladioliflora Disa Disa gladioliflora \N \N \N \N \N 29232 Q.ramosa Quaqua Quaqua ramosa \N \N \N \N \N 29233 I.integra Ilex Ilex integra mochi no ki,mochitree \N \N \N \N 29234 A.sanderiana Alocasia Alocasia sanderiana \N \N \N \N \N 29235 S.trizygum Solanum Solanum trizygum \N \N \N \N \N 29236 E.silvatica Erica Erica silvatica \N \N \N \N \N 29237 H.andersonii Heterocypsela Heterocypsela andersonii \N \N \N \N \N 29238 L.tergeminum Lysiloma Lysiloma tergeminum \N \N \N \N \N 29239 I.luzonensis Illigera Illigera luzonensis \N \N \N \N \N 29240 N.incurva Notylia Notylia incurva \N \N \N \N \N 29241 H.weberbaueriana Hansenia Hansenia weberbaueriana \N \N \N \N \N 29242 C.maritimus Ceanothus Ceanothus maritimus \N \N \N \N \N 29243 R.irenaeus Rubus Rubus irenaeus \N \N \N \N \N 29244 C.nervosus Cenchrus Cenchrus nervosus \N \N \N \N \N 29245 L.lichiyuniae Lespedeza Lespedeza lichiyuniae \N \N \N \N \N 29246 O.lupercalis Ophrys Ophrys lupercalis \N \N \N \N \N 29247 P.DV-M1-12314 Polyalthia Polyalthia sp. Ridsdale DV-M1-12314 \N \N \N \N \N 29248 C.malabatrum Cinnamomum Cinnamomum malabatrum \N \N \N \N \N 29249 R.montana Ruta Ruta montana \N \N \N \N \N 29250 P.coronata Pinanga Pinanga coronata \N \N \N \N \N 29251 \N subspecies Crepis occidentalis subsp. occidentalis \N \N \N \N \N 29252 P.hookeri Pterocephalus Pterocephalus hookeri \N \N \N \N \N 29253 Q.minima Quercus Quercus minima \N \N \N \N \N 29254 L.maritimus Lotus Lotus maritimus \N \N \N \N \N 29255 \N subspecies Nymphaea odorata subsp. odorata \N \N \N \N \N 29256 L.maritimum Lythrum Lythrum maritimum \N \N \N \N \N 29257 \N genus Dossinia \N \N \N \N \N 29258 B.homalophylla Bourreria Bourreria homalophylla \N \N \N \N \N 29259 B.ciliaris Brachyscome Brachyscome ciliaris \N \N \N \N \N 29260 B.afghanicum Bunium Bunium afghanicum \N \N \N \N \N 29261 \N genus Pandiaka \N \N \N \N \N 29262 \N varietas Piper boehmeriifolium var. boehmeriifolium \N \N \N \N \N 29263 W.10155 Warneckea Warneckea sp. Luke 10155 \N \N \N \N \N 29264 U.perrottetii Unonopsis Unonopsis perrottetii \N \N \N \N \N 29265 I.edule Iochroma Iochroma edule \N \N \N \N \N 29266 S.fasciculatus Scleranthus Scleranthus fasciculatus \N \N \N \N \N 29267 O.latisquama Orobanche Orobanche latisquama \N \N \N \N \N 29268 C.urbicum Chenopodium Chenopodium urbicum \N \N \N \N \N 29269 G.mucronata Gaultheria Gaultheria mucronata \N \N \N \N \N 29270 \N genus Triptilodiscus \N \N \N \N \N 29271 A.albana Androsace Androsace albana \N \N \N \N \N 29272 T.affinis Tricyrtis Tricyrtis affinis \N \N \N \N \N 29273 A.luehmannii Allocasuarina Allocasuarina luehmannii \N \N \N \N \N 29274 \N varietas Tillandsia ionantha var. ionantha \N \N \N \N \N 29275 A.palaestinum Androcymbium Androcymbium palaestinum \N \N \N \N \N 29276 S.micranthum Stenotaphrum Stenotaphrum micranthum \N \N \N \N \N 29277 L.americanum Lycium Lycium americanum \N \N \N \N \N 29278 G.montanus Glumicalyx Glumicalyx montanus \N \N \N \N \N 29279 E.membranifolium Enicosanthum Enicosanthum membranifolium \N \N \N \N \N 29280 Y.rostrata Yucca Yucca rostrata \N \N \N \N \N 29281 O.petrophila Oxalis Oxalis petrophila \N \N \N \N \N 29282 D.akataensis Dichrostachys Dichrostachys akataensis \N \N \N \N \N 29283 P.multiflora Pouteria Pouteria multiflora \N \N \N \N \N 29284 R.morii Rhododendron Rhododendron morii \N \N \N \N \N 29285 A.latifolia Alibertia Alibertia latifolia \N \N \N \N \N 29286 C.kelleri Cucumis Cucumis kelleri \N \N \N \N \N 29287 A.flava Arcangelisia Arcangelisia flava \N \N \N \N \N 29288 \N subspecies Leucaena leucocephala subsp. leucocephala \N \N \N \N \N 29289 C.multinervatus Cymopterus Cymopterus multinervatus \N \N \N \N \N 29290 \N varietas Samolus repens var. floribundus \N \N \N \N \N 29291 E.gmelini Echinops Echinops gmelini \N \N \N \N \N 29292 \N genus Myoxanthus \N \N \N \N \N 29293 P.setaceum Paspalum Paspalum setaceum \N \N \N \N \N 29294 M.flexuosa Marantochloa Marantochloa flexuosa \N \N \N \N \N 29295 E.laui Echinocereus Echinocereus laui \N \N \N \N \N 29296 C.bellidifolia Crepis Crepis bellidifolia \N \N \N \N \N 29297 L.gracilis Lasthenia Lasthenia gracilis \N \N \N \N \N 29298 E.metriocheilos Etlingera Etlingera metriocheilos \N \N \N \N \N 29299 R.zollingeriana Rafflesia Rafflesia zollingeriana \N \N \N \N \N 29300 D.latilobus Dendropanax Dendropanax latilobus \N \N \N \N \N 29301 L.ochroleucum Leontopodium Leontopodium ochroleucum \N \N \N \N \N 29302 E.schimperiana Euphorbia Euphorbia schimperiana \N \N \N \N \N 29303 \N genus Stylisma \N \N \N \N \N 29304 \N genus Quisqualis \N \N \N \N \N 29305 \N genus Dysosma \N \N \N \N \N 29306 \N genus Schultesianthus \N \N \N \N \N 29307 D.leichhardtii Duboisia Duboisia leichhardtii \N \N \N \N \N 29308 A.stelleri Arabis Arabis stelleri \N \N \N \N \N 29309 A.fengii Aconitum Aconitum fengii \N \N \N \N \N 29310 L.americana Laetia Laetia americana \N \N \N \N \N 29311 C.tamurana Citrus Citrus tamurana \N \N \N \N \N 29312 S.pyroides Searsia Searsia pyroides \N \N \N \N \N 29313 M.elata Miconia Miconia elata \N \N \N \N \N 29314 I.brevicuspis Ilex Ilex brevicuspis \N \N \N \N \N 29315 A.MG-2008a Allium Allium sp. MG-2008a \N \N \N \N \N 29316 \N subspecies Streptanthus insignis subsp. lyonii Arburua Ranch jewelflower \N \N \N \N 29317 A.hoantchy Astragalus Astragalus hoantchy \N \N \N \N \N 29318 C.sellowii Croton Croton sellowii \N \N \N \N \N 29319 A.99-6373 Amomum Amomum sp. Kress 99-6373 \N \N \N \N \N 29320 \N genus Clytostoma \N \N \N \N \N 29321 S.striata Stuckenia Stuckenia striata \N \N \N \N \N 29322 H.exalata Horsfordia Horsfordia exalata \N \N \N \N \N 29323 P.jacquemontiana Parrotiopsis Parrotiopsis jacquemontiana \N \N \N \N \N 29324 \N genus Pseudobartsia \N \N \N \N \N 29325 E.ghiesbreghtii Eryngium Eryngium ghiesbreghtii \N \N \N \N \N 29326 C.changbaiana Cardamine Cardamine changbaiana \N \N \N \N \N 29327 H.marifolium Helianthemum Helianthemum marifolium \N \N \N \N \N 29328 A.triflora Androsace Androsace triflora \N \N \N \N \N 29329 P.P108 Physalis Physalis sp. P108 \N \N \N \N \N 29330 \N genus Limnocharis \N \N \N \N \N 29331 N.caerulea Nymphaea Nymphaea caerulea Egyptian lotus,blue lotus \N \N \N \N 29332 \N subtribe Orcuttiinae \N \N \N \N \N 29333 S.missouriensis Solidago Solidago missouriensis \N \N \N \N \N 29334 M.shangsiensis Magnolia Magnolia shangsiensis \N \N \N \N \N 29335 B.1973 Breynia Breynia sp. Hunter 1973 \N \N \N \N \N 29336 H.illustris Hillia Hillia illustris \N \N \N \N \N 29337 A.cathartica Allamanda Allamanda cathartica copa de oro,golden trumpet \N \N \N \N 29338 \N genus Samadera \N \N \N \N \N 29339 U.laevis Ulmus Ulmus laevis European white elm \N \N \N \N 29340 P.macradenia Peersia Peersia macradenia \N \N \N \N \N 29341 C.macrolepis Calamagrostis Calamagrostis macrolepis \N \N \N \N \N 29342 \N genus Tacca \N \N \N \N \N 29343 A.rugosum Askidiosperma Askidiosperma rugosum \N \N \N \N \N 29344 B.cordigera Bossiaea Bossiaea cordigera \N \N \N \N \N 29345 C.tuberculata Cliffortia Cliffortia tuberculata \N \N \N \N \N 29346 B.henryi Buckleya Buckleya henryi \N \N \N \N \N 29347 \N genus Samyda \N \N \N \N \N 29348 D.yunnanensis Dichroa Dichroa yunnanensis \N \N \N \N \N 29349 A.fistulosum Allium Allium fistulosum Japanese bunching onion,Welsh onion \N \N \N \N 29350 F.cuspidata Fraxinus Fraxinus cuspidata fragrant ash \N \N \N \N 29351 F.verdcourtii Fadogia Fadogia verdcourtii \N \N \N \N \N 29352 L.fuscum Lycium Lycium fuscum \N \N \N \N \N 29353 S.JY-2006-2 Solms-laubachia Solms-laubachia sp. JY-2006-2 \N \N \N \N \N 29354 H.divaricatus Hibiscus Hibiscus divaricatus \N \N \N \N \N 29355 M.brunnea Miconia Miconia brunnea \N \N \N \N \N 29356 M.bellidifolia Manulea Manulea bellidifolia \N \N \N \N \N 29357 C.palaestina Cuscuta Cuscuta palaestina \N \N \N \N \N 29358 C.werneri Centaurea Centaurea werneri \N \N \N \N \N 29359 E.oxystegia Euphorbia Euphorbia oxystegia \N \N \N \N \N 29360 A.ceylanica Atalantia Atalantia ceylanica \N \N \N \N \N 29361 J.salpoensis Jaltomata Jaltomata salpoensis \N \N \N \N \N 29362 A.rhizantha Afrocalathea Afrocalathea rhizantha \N \N \N \N \N 29363 T.ammi Trachyspermum Trachyspermum ammi \N \N \N \N \N 29364 \N genus Lepidocaryum \N \N \N \N \N 29365 \N varietas Veronica missurica var. alba \N \N \N \N \N 29366 P.kelleri Pluchea Pluchea kelleri \N \N \N \N \N 29367 \N genus Catabrosa \N \N \N \N \N 29368 \N genus Synoum \N \N \N \N \N 29369 E.platyphylla Eucalyptus Eucalyptus platyphylla \N \N \N \N \N 29370 N.oppositifolia Nuxia Nuxia oppositifolia \N \N \N \N \N 29371 \N varietas Neolitsea cambodiana var. cambodiana \N \N \N \N \N 29372 S.1022 Saussurea Saussurea cf. tatsienensis Liu 1022 \N \N \N \N \N 29373 A.tortuosum Alyssum Alyssum tortuosum \N \N \N \N \N 29374 M.martiana Mandevilla Mandevilla martiana \N \N \N \N \N 29375 V.bourgaeana Vella Vella bourgaeana \N \N \N \N \N 29376 M.alborufescens Miconia Miconia alborufescens \N \N \N \N \N 29377 S.griseus Stenocereus Stenocereus griseus \N \N \N \N \N 29378 \N subspecies Banksia integrifolia subsp. integrifolia \N \N \N \N \N 29379 C.elgonensis Carex Carex elgonensis \N \N \N \N \N 29380 K.cortiformis Keraymonia Keraymonia cortiformis \N \N \N \N \N 29381 \N subspecies Ophrys cretica subsp. bicornuta \N \N \N \N \N 29382 H.pentaphyllus Hibiscus Hibiscus pentaphyllus \N \N \N \N \N 29383 O.himalayicus Odontites Odontites himalayicus \N \N \N \N \N 29384 O.veraguensis Ocotea Ocotea veraguensis \N \N \N \N \N 29385 \N genus Hymenochilus \N \N \N \N \N 29386 P.tomentosum Pelargonium Pelargonium tomentosum \N \N \N \N \N 29387 V.imperialis Vanilla Vanilla imperialis \N \N \N \N \N 29388 P.villifera Pultenaea Pultenaea villifera \N \N \N \N \N 29389 A.speciosa Attalea Attalea speciosa motacu,motacuchi \N \N \N \N 29390 P.tomentosa Pourouma Pourouma tomentosa \N \N \N \N \N 29391 A.Rz22 Allium Allium cf. prostratum Rz22 \N \N \N \N \N 29392 C.alpicola Castilleja Castilleja alpicola \N \N \N \N \N 29393 C.chiapensis Coursetia Coursetia chiapensis \N \N \N \N \N 29394 \N genus Dimorphandra \N \N \N \N \N 29396 C.hergtiana Cousinia Cousinia hergtiana \N \N \N \N \N 29397 B.wenchuanense Bupleurum Bupleurum wenchuanense \N \N \N \N \N 29398 \N genus Aconitum \N \N \N \N \N 29399 A.cretata Acacia Acacia cretata \N \N \N \N \N 29400 P.californicus Penstemon Penstemon californicus \N \N \N \N \N 29401 M.387 Microtatorchis Microtatorchis sp. Carlsward 387 \N \N \N \N \N 29402 \N varietas Lycium carolinianum var. quadrifidum \N \N \N \N \N 29403 G.carinatus Gladiolus Gladiolus carinatus \N \N \N \N \N 29404 C.barbeyi Cotyledon Cotyledon barbeyi \N \N \N \N \N 29405 L.clandestina Lathraea Lathraea clandestina \N \N \N \N \N 29406 C.pusilla Clusia Clusia pusilla \N \N \N \N \N 29407 L.cruentus Lotus Lotus cruentus red bird's-foot trefoil \N \N \N \N 29408 M.spegazzinii Monvillea Monvillea spegazzinii \N \N \N \N \N 29409 K.jucunda Kunzea Kunzea jucunda \N \N \N \N \N 29410 \N genus Osmorhiza \N \N \N \N \N 29411 Z.hirticaule Zygophyllum Zygophyllum hirticaule \N \N \N \N \N 29412 C.inophyllum Calophyllum Calophyllum inophyllum \N \N \N \N \N 29413 P.imbricata Pholidota Pholidota imbricata \N \N \N \N \N 29414 C.racemosa Carlina Carlina racemosa \N \N \N \N \N 29415 H.lasiopetalum Heracleum Heracleum lasiopetalum \N \N \N \N \N 29416 R.arenaria Reverchonia Reverchonia arenaria \N \N \N \N \N 29417 B.thiemei Begonia Begonia thiemei \N \N \N \N \N 29418 S.arvensis Sonchus Sonchus arvensis field sow-thistle \N \N \N \N 29419 C.amaranticolor Chenopodium Chenopodium amaranticolor \N \N \N \N \N 29420 C.excavatus Calochortus Calochortus excavatus Inyo County star-tulip \N \N \N \N 29421 L.subseriata Leandra Leandra subseriata \N \N \N \N \N 29422 B.sinica Buxus Buxus sinica \N \N \N \N \N 29423 S.variegata Scrophularia Scrophularia variegata \N \N \N \N \N 29424 I.pamphylica Iris Iris pamphylica \N \N \N \N \N 29425 A.hoppii Aechmea Aechmea hoppii \N \N \N \N \N 29426 M.duclouxii Manglietia Manglietia duclouxii \N \N \N \N \N 29427 R.spondylophyllum Rhododendron Rhododendron spondylophyllum \N \N \N \N \N 29428 \N genus Foleyola \N \N \N \N \N 29429 L.speciosa Loxanthera Loxanthera speciosa \N \N \N \N \N 29430 C.parvum Ceroxylon Ceroxylon parvum \N \N \N \N \N 29431 K.expansa Kefersteinia Kefersteinia expansa \N \N \N \N \N 29432 L.minutum Lycopersicon Lycopersicon minutum \N \N \N \N \N 29433 \N genus Agrimonia \N \N \N \N \N 29434 E.pinea Euphorbia Euphorbia pinea \N \N \N \N \N 29435 \N subspecies Gymnocalycium mostii subsp. mostii \N \N \N \N \N 29436 B.congensis Bikinia Bikinia congensis \N \N \N \N \N 29437 \N genus Tripodanthus \N \N \N \N \N 29438 M.glabrata Malacothrix Malacothrix glabrata \N \N \N \N \N 29439 M.geminispina Mammillaria Mammillaria geminispina \N \N \N \N \N 29440 S.columnaris Saussurea Saussurea columnaris \N \N \N \N \N 29441 T.triquetra Trianthema Trianthema triquetra \N \N \N \N \N 29442 M.hafomantsina Mimosa Mimosa hafomantsina \N \N \N \N \N 29443 P.cultivar Phalaenopsis x Doritaenopsis Phalaenopsis x Doritaenopsis hybrid cultivar \N \N \N \N \N 29444 \N genus Calylophus \N \N \N \N \N 29445 T.panamensis Tetragastris Tetragastris panamensis \N \N \N \N \N 29446 \N family Aizoaceae iceplant family \N \N \N \N 29447 T.paraensis Tachigali Tachigali paraensis \N \N \N \N \N 29448 C.imbricata Clarkia Clarkia imbricata \N \N \N \N \N 29449 P.kaessneri Phyllanthus Phyllanthus kaessneri \N \N \N \N \N 29450 C.prasina Carex Carex prasina \N \N \N \N \N 29451 M.nervosa Miconia Miconia nervosa \N \N \N \N \N 29452 A.garcinii Anvillea Anvillea garcinii \N \N \N \N \N 29453 C.alba Correa Correa alba \N \N \N \N \N 29454 P.flagelliformis Phyllanthus Phyllanthus flagelliformis \N \N \N \N \N 29455 C.decumbens Cousinia Cousinia decumbens \N \N \N \N \N 29456 \N subspecies Anthyllis vulneraria subsp. maritima \N \N \N \N \N 29457 P.praecalva Pachylarnax Pachylarnax praecalva \N \N \N \N \N 29458 \N subspecies Carlina libanotica subsp. libanotica \N \N \N \N \N 29459 \N genus Rhynchanthus \N \N \N \N \N 29460 T.sylvestre Theobroma Theobroma sylvestre \N \N \N \N \N 29461 P.grandiflora Pereskia Pereskia grandiflora \N \N \N \N \N 29462 \N subspecies Acer campbellii subsp. campbellii \N \N \N \N \N 29463 W.W009 Withania Withania sp. W009 \N \N \N \N \N 29464 O.chrysophylla Olearia Olearia chrysophylla \N \N \N \N \N 29465 \N genus Trichanthera \N \N \N \N \N 29466 \N genus Rhizophora \N \N \N \N \N 29467 P.sample environmental samples Taxonomy:531425 Proteaceae environmental sample \N \N \N \N \N 29468 P.laricinum Pityphyllum Pityphyllum laricinum \N \N \N \N \N 29469 P.robbinsii Potamogeton Potamogeton robbinsii \N \N \N \N \N 29470 P.tricolor Pelargonium Pelargonium tricolor \N \N \N \N \N 29471 C.cascarilla Croton Croton cascarilla \N \N \N \N \N 29472 C.espelina Cayaponia Cayaponia espelina \N \N \N \N \N 29473 \N tribe Adenoclineae \N \N \N \N \N 29474 E.truncata Eragrostis Eragrostis truncata \N \N \N \N \N 29475 P.chitariana Psychotria Psychotria chitariana \N \N \N \N \N 29476 R.alpestre Ribes Ribes alpestre \N \N \N \N \N 29477 \N genus Chytranthus \N \N \N \N \N 29478 I.uliginosa Impatiens Impatiens uliginosa \N \N \N \N \N 29479 C.phymatocarpa Cissus Cissus phymatocarpa \N \N \N \N \N 29480 \N genus Lacandonia \N \N \N \N \N 29481 \N genus Coelorachis \N \N \N \N \N 29482 C.conradii Corema Corema conradii broom-crowberry \N \N \N \N 29483 C.brasiliensis Chaetocalyx Chaetocalyx brasiliensis \N \N \N \N \N 29484 Z.cytisoides Zieria Zieria cytisoides \N \N \N \N \N 29485 A.aphylla Acacia Acacia aphylla \N \N \N \N \N 29486 M.caudata Mayanaea Mayanaea caudata \N \N \N \N \N 29487 D.kerrii Didymocarpus Didymocarpus kerrii \N \N \N \N \N 29488 E.C893 Echeandia Echeandia sp. C893 \N \N \N \N \N 29489 C.tubulosa Cayaponia Cayaponia tubulosa \N \N \N \N \N 29490 A.valida Angelica Angelica valida \N \N \N \N \N 29491 C.susanae Coelogyne Coelogyne susanae \N \N \N \N \N 29492 E.hyperboreus Erigeron Erigeron hyperboreus \N \N \N \N \N 29493 S.leprosula Shorea Shorea curtisii x Shorea leprosula \N \N \N \N \N 29494 F.tsitsikamae Felicia Felicia tsitsikamae \N \N \N \N \N 29495 H.recoderi Hieracium Hieracium recoderi \N \N \N \N \N 29496 P.ruizii Philodendron Philodendron ruizii \N \N \N \N \N 29497 G.modesta Guatteria Guatteria modesta \N \N \N \N \N 29498 S.colombiana Sidasodes Sidasodes colombiana \N \N \N \N \N 29499 G.lanceolata Gaultheria Gaultheria lanceolata \N \N \N \N \N 29500 D.cinnamomifolia Diplycosia Diplycosia cinnamomifolia \N \N \N \N \N 29501 D.nylamensis Draba Draba nylamensis \N \N \N \N \N 29502 P.crenata Polyscias Polyscias crenata \N \N \N \N \N 29503 P.macropiper Piper Piper macropiper \N \N \N \N \N 29504 C.rubra Claytonia Claytonia rubra \N \N \N \N \N 29505 V.orientale Viburnum Viburnum orientale \N \N \N \N \N 29506 P.LA-2002 Psychotria Psychotria aff. pumila LA-2002 \N \N \N \N \N 29507 S.hieracioides Saussurea Saussurea hieracioides \N \N \N \N \N 29508 C.glomerata Casearia Casearia glomerata \N \N \N \N \N 29510 T.dunensis Tetraberlinia Tetraberlinia dunensis \N \N \N \N \N 29511 T.provincialis Typha Typha provincialis \N \N \N \N \N 29512 C.corymbis Corymborkis Corymborkis corymbis \N \N \N \N \N 29513 K.beauverdii Kalanchoe Kalanchoe beauverdii \N \N \N \N \N 29514 P.farreri Parnassia Parnassia farreri \N \N \N \N \N 29515 A.irroratum Androcymbium Androcymbium irroratum \N \N \N \N \N 29516 P.nigrita Paracaleana Paracaleana nigrita \N \N \N \N \N 29517 R.cassubicus Ranunculus Ranunculus cassubicus \N \N \N \N \N 29518 E.matritensis Euphorbia Euphorbia matritensis \N \N \N \N \N 29519 S.adstringens Stryphnodendron Stryphnodendron adstringens \N \N \N \N \N 29520 V.robusta Viguiera Viguiera robusta \N \N \N \N \N 29521 \N genus Pleurophora \N \N \N \N \N 29522 C.gigantea Cominsia Cominsia gigantea \N \N \N \N \N 29523 H.inundatum Helosciadium Helosciadium inundatum \N \N \N \N \N 29524 A.riedelii Apinagia Apinagia riedelii \N \N \N \N \N 29525 B.stricta Bartsia Bartsia stricta \N \N \N \N \N 29526 P.secundiflora Pollia Pollia secundiflora \N \N \N \N \N 29527 O.hispidula Oxalis Oxalis hispidula \N \N \N \N \N 29528 \N genus Lasiocladus \N \N \N \N \N 29529 A.pinangianus Ancistrocladus Ancistrocladus pinangianus \N \N \N \N \N 29530 S.chamaedryoides Salvia Salvia chamaedryoides \N \N \N \N \N 29531 C.acerosa Chaetanthera Chaetanthera acerosa \N \N \N \N \N 29532 P.campyloglossa Polystachya Polystachya campyloglossa \N \N \N \N \N 29533 A.microbetula Alchemilla Alchemilla microbetula \N \N \N \N \N 29534 M.listeri Merrilliopanax Merrilliopanax listeri \N \N \N \N \N 29535 \N genus Eriochiton \N \N \N \N \N 29536 I.gerardiana Indigofera Indigofera gerardiana \N \N \N \N \N 29537 O.oligophylla Oxalis Oxalis oligophylla \N \N \N \N \N 29538 G.castellanosii Gymnocalycium Gymnocalycium castellanosii \N \N \N \N \N 29539 M.sphaerocarpa Medicago Medicago sphaerocarpa \N \N \N \N \N 29540 A.pendens Arceuthobium Arceuthobium pendens \N \N \N \N \N 29541 P.thapsoides Prionosciadium Prionosciadium thapsoides \N \N \N \N \N 29542 S.acuminatum Systeloglossum Systeloglossum acuminatum \N \N \N \N \N 29543 V.sieboldii Vaccinium Vaccinium sieboldii \N \N \N \N \N 29544 A.dauricus Asparagus Asparagus dauricus \N \N \N \N \N 29545 E.barbicollis Euphorbia Euphorbia barbicollis \N \N \N \N \N 29546 C.brevicornu Chorizanthe Chorizanthe brevicornu \N \N \N \N \N 29547 Z.zerumbet Zingiber Zingiber zerumbet bitter ginger,pine cone ginger,shampoo ginger \N \N \N \N 29548 L.reflexa Lindera Lindera reflexa \N \N \N \N \N 29549 A.suecica Arabidopsis Arabidopsis suecica \N \N \N \N \N 29550 L.poonsakii Licuala Licuala poonsakii \N \N \N \N \N 29551 \N genus Damnacanthus \N \N \N \N \N 29552 B.brachyanthera Bromus Bromus brachyanthera \N \N \N \N \N 29553 G.mexicana Geohintonia Geohintonia mexicana \N \N \N \N \N 29554 T.macrocephala Thurnia Thurnia macrocephala \N \N \N \N \N 29555 C.knappii Calocephalus Calocephalus knappii \N \N \N \N \N 29556 S.bacciformis Sauropus Sauropus bacciformis \N \N \N \N \N 29557 \N genus Adoxa \N \N \N \N \N 29558 B.hildebrandtii Buxus Buxus hildebrandtii \N \N \N \N \N 29559 H.cupreus Himalayacalamus Himalayacalamus cupreus \N \N \N \N \N 29560 \N family Aceraceae \N \N \N \N \N 29561 V.insularis Veronica Veronica insularis \N \N \N \N \N 29562 L.purpureus Lotus Lotus purpureus \N \N \N \N \N 29563 A.austrocaledonica Augusta Augusta austrocaledonica \N \N \N \N \N 29564 C.bryoniifolius Cucumis Cucumis bryoniifolius \N \N \N \N \N 29565 O.latifolia Oxalis Oxalis latifolia \N \N \N \N \N 29566 T.mixtecana Thompsonella Thompsonella mixtecana \N \N \N \N \N 29567 D.hemsleyana Draba Draba hemsleyana \N \N \N \N \N 29568 H.12482 Heteromorpha Heteromorpha sp. Goldblatt 12482 \N \N \N \N \N 29569 G.italicus Gladiolus Gladiolus italicus \N \N \N \N \N 29570 C.minor Clusia Clusia minor cupey de monte \N \N \N \N 29571 R.tortuosum Ribes Ribes tortuosum \N \N \N \N \N 29572 K.phylicioides Kunzea Kunzea phylicioides \N \N \N \N \N 29573 R.albiflorum Rhododendron Rhododendron albiflorum \N \N \N \N \N 29574 O.aciphylla Oxytropis Oxytropis aciphylla \N \N \N \N \N 29575 L.tristis Linaria Linaria tristis \N \N \N \N \N 29576 C.hirta Clidemia Clidemia hirta \N \N \N \N \N 29577 N.singapureana Neuwiedia Neuwiedia singapureana \N \N \N \N \N 29578 C.coloratum Chaerophyllum Chaerophyllum coloratum \N \N \N \N \N 29579 \N genus Rehmannia \N \N \N \N \N 29580 \N genus Leiotulus \N \N \N \N \N 29581 A.maritima Armeria Armeria maritima \N \N \N \N \N 29582 T.anomala Tricalysia Tricalysia anomala \N \N \N \N \N 29583 G.tenuisecta Glandularia Glandularia tenuisecta \N \N \N \N \N 29584 \N genus Tillandsia \N \N \N \N \N 29585 C.polymorpha Carex Carex polymorpha \N \N \N \N \N 29586 D.menziesii Diplolepis Diplolepis menziesii \N \N \N \N \N 29587 C.hesperia Charybdis Charybdis hesperia \N \N \N \N \N 29588 M.amoena Maireana Maireana amoena \N \N \N \N \N 29589 T.mucronata Tanacetopsis Tanacetopsis mucronata \N \N \N \N \N 29590 P.rostrata Platydesma Platydesma rostrata \N \N \N \N \N 29591 \N genus Acanthostachys \N \N \N \N \N 29592 K.ritualis Kniphofia Kniphofia ritualis \N \N \N \N \N 29593 M.howellii Minuartia Minuartia howellii \N \N \N \N \N 29594 A.lentiginosus Astragalus Astragalus lentiginosus \N \N \N \N \N 29595 F.africana Funtumia Funtumia africana \N \N \N \N \N 29596 P.turgeniifolium Peucedanum Peucedanum turgeniifolium \N \N \N \N \N 29597 H.choisyanum Hypericum Hypericum choisyanum \N \N \N \N \N 29598 L.brachyantherum Lomatogonium Lomatogonium brachyantherum \N \N \N \N \N 29599 T.setigera Tetratheca Tetratheca setigera \N \N \N \N \N 29600 V.vexillata Vigna Vigna vexillata aka sasage,zombi-pea \N \N \N \N 29601 M.443 Momordica Momordica sp. Benedetto 443 \N \N \N \N \N 29602 E.equisetacea Elegia Elegia equisetacea \N \N \N \N \N 29603 L.silvestrii Lobivia Lobivia silvestrii \N \N \N \N \N 29604 L.matthewsii Langloisia Langloisia matthewsii \N \N \N \N \N 29605 P.clementis Pachyanthus Pachyanthus clementis \N \N \N \N \N 29606 D.rotundifolia Drosera Drosera rotundifolia \N \N \N \N \N 29607 A.acuminatus Aeschynanthus Aeschynanthus acuminatus \N \N \N \N \N 29608 M.euosma Myrceugenia Myrceugenia euosma \N \N \N \N \N 29609 C.calcitrapa Centaurea Centaurea calcitrapa \N \N \N \N \N 29610 S.guilfoyleana Siphoneugena Siphoneugena guilfoyleana \N \N \N \N \N 29611 T.asiaticus Trollius Trollius asiaticus \N \N \N \N \N 29612 C.s.n. Caraipa Caraipa sp. Aymard s.n. \N \N \N \N \N 29613 D.stachydeum Delphinium Delphinium stachydeum spiked larkspur \N \N \N \N 29614 D.falconeri Doronicum Doronicum falconeri \N \N \N \N \N 29615 \N genus Wigandia \N \N \N \N \N 29616 M.nitida Metrosideros Metrosideros nitida \N \N \N \N \N 29617 S.meyeriana Salicornia Salicornia meyeriana \N \N \N \N \N 29618 R.ciliatum Rhytidocaulon Rhytidocaulon ciliatum \N \N \N \N \N 29619 \N genus Saccifolium \N \N \N \N \N 29620 I.uniflora Impatiens Impatiens uniflora \N \N \N \N \N 29621 L.pallida Loasa Loasa pallida \N \N \N \N \N 29622 L.wallichianum Lilium Lilium wallichianum \N \N \N \N \N 29623 A.compressa Aloe Aloe compressa \N \N \N \N \N 29624 E.melicoides Ehrharta Ehrharta melicoides \N \N \N \N \N 29625 \N genus Blyttia \N \N \N \N \N 29626 P.YL-2011 Pinellia Pinellia sp. YL-2011 \N \N \N \N \N 29627 C.walkeriana Cattleya Cattleya walkeriana \N \N \N \N \N 29628 M.incana Malpighia Malpighia incana \N \N \N \N \N 29629 C.haenkeana Chromolaena Chromolaena haenkeana \N \N \N \N \N 29630 O.oppositifolia Ochrosia Ochrosia oppositifolia \N \N \N \N \N 29631 U.kiwuensis Uebelinia Uebelinia kiwuensis \N \N \N \N \N 29632 B.dictyophylla Berberis Berberis dictyophylla \N \N \N \N \N 29633 V.praecox Veronica Veronica praecox \N \N \N \N \N 29634 I.indica Iphigenia Iphigenia indica \N \N \N \N \N 29635 I.buschiana Isatis Isatis buschiana \N \N \N \N \N 29636 H.marmorata Habenaria Habenaria marmorata \N \N \N \N \N 29637 M.sarcocarpa Macaranga Macaranga sarcocarpa \N \N \N \N \N 29638 T.sessilis Terniopsis Terniopsis sessilis \N \N \N \N \N 29639 T.yunnanensis Tofieldia Tofieldia yunnanensis \N \N \N \N \N 29640 G.curtisii Goniothalamus Goniothalamus curtisii \N \N \N \N \N 29641 S.velutina Saussurea Saussurea velutina \N \N \N \N \N 29642 \N genus Bomarea \N \N \N \N \N 29643 H.cuatrecasana Herrania Herrania cuatrecasana \N \N \N \N \N 29644 A.marlothii Aloe Aloe marlothii \N \N \N \N \N 29645 S.crocea Sobralia Sobralia crocea \N \N \N \N \N 29646 T.scorodonia Teucrium Teucrium scorodonia wood germander \N \N \N \N 29647 P.jackii Pinguicula Pinguicula jackii \N \N \N \N \N 29648 L.spectabile Limonium Limonium spectabile \N \N \N \N \N 29649 T.transtagana Thapsia Thapsia transtagana \N \N \N \N \N 29650 P.horrida Pereskia Pereskia horrida \N \N \N \N \N 29651 I.hoehnelii Impatiens Impatiens hoehnelii \N \N \N \N \N 29652 S.atrocyanea Salvia Salvia atrocyanea \N \N \N \N \N 29653 B.nepalensis Begonia Begonia nepalensis \N \N \N \N \N 29654 \N genus Rhodocalyx \N \N \N \N \N 29655 N.ephippiata Nepenthes Nepenthes ephippiata \N \N \N \N \N 29656 C.brachystachys Carex Carex brachystachys \N \N \N \N \N 29657 C.swartzii Coccoloba Coccoloba swartzii \N \N \N \N \N 29658 T.heterophylla Tillandsia Tillandsia heterophylla \N \N \N \N \N 29659 D.viburniflora Dombeya Dombeya viburniflora \N \N \N \N \N 29660 P.ilsemanii Philodendron Philodendron ilsemanii \N \N \N \N \N 29661 B.lancifolia Bursera Bursera lancifolia \N \N \N \N \N 29662 S.ipomoeoides Solanum Solanum ipomoeoides \N \N \N \N \N 29663 \N genus Sericocoma \N \N \N \N \N 29664 C.H5_35 Castilleja Castilleja sp. H5_35 \N \N \N \N \N 29665 C.conglomerata Clidemia Clidemia conglomerata \N \N \N \N \N 29666 C.piptocalyx Croton Croton piptocalyx \N \N \N \N \N 29667 L.biternata Lardizabala Lardizabala biternata \N \N \N \N \N 29668 R.patagonica Retanilla Retanilla patagonica \N \N \N \N \N 29669 \N subspecies Gymnosporia linearis subsp. madagascariensis \N \N \N \N \N 29670 C.germanicum Cynoglossum Cynoglossum germanicum \N \N \N \N \N 29671 O.consanguinea Oldenlandia Oldenlandia consanguinea \N \N \N \N \N 29672 K.rigidula Kengyilia Kengyilia rigidula \N \N \N \N \N 29673 W.fruticosa Westringia Westringia fruticosa \N \N \N \N \N 29674 N.pittieri Notylia Notylia pittieri \N \N \N \N \N 29675 A.weinmannifolia Athyana Athyana weinmannifolia \N \N \N \N \N 29676 \N varietas Swartzia simplex var. continentalis \N \N \N \N \N 29677 L.congesta Lachenalia Lachenalia congesta \N \N \N \N \N 29678 C.excelsus Chydenanthus Chydenanthus excelsus \N \N \N \N \N 29679 A.campestre Acer Acer campestre field maple,hedge maple \N \N \N \N 29680 \N tribe Schizopeponeae \N \N \N \N \N 29681 \N genus Pertusadina \N \N \N \N \N 29682 A.lamprocarpa Anthriscus Anthriscus lamprocarpa \N \N \N \N \N 29683 S.montana Sideritis Sideritis montana \N \N \N \N \N 29684 S.BC90 Syzygium Syzygium sp. BC90 \N \N \N \N \N 29685 E.fatmensis Eriochloa Eriochloa fatmensis \N \N \N \N \N 29686 C.vogelii Cyphostemma Cyphostemma vogelii \N \N \N \N \N 29687 D.frutescens Distictis Distictis frutescens \N \N \N \N \N 29688 C.griffinii Chamelaucium Chamelaucium griffinii \N \N \N \N \N 29689 A.ebracteata Arracacia Arracacia ebracteata \N \N \N \N \N 29690 \N genus Eranthemum \N \N \N \N \N 29691 \N genus Parasicyos \N \N \N \N \N 29692 C.1577 Cremastosperma Cremastosperma sp. Smith 1577 \N \N \N \N \N 29693 I.pradhanii Impatiens Impatiens pradhanii \N \N \N \N \N 29694 C.strigosa Caccinia Caccinia strigosa \N \N \N \N \N 29695 D.hiarakae Dypsis Dypsis hiarakae \N \N \N \N \N 29696 B.bonetii Bursera Bursera bonetii \N \N \N \N \N 29697 S.violaceimarmoratum Solanum Solanum violaceimarmoratum \N \N \N \N \N 29698 C.fragrans Chlidanthus Chlidanthus fragrans \N \N \N \N \N 29699 V.litoralis Verbena Verbena litoralis seashore vervain \N \N \N \N 29700 T.racemosa Triantha Triantha racemosa coastal false asphodel \N \N \N \N 29701 \N varietas Populus tremula var. glandulosa \N \N \N \N \N 29702 \N varietas Oldenlandia corymbosa var. corymbosa \N \N \N \N \N 29703 B.forgetiana Brassia Brassia forgetiana \N \N \N \N \N 29704 C.geophilum Chlorophytum Chlorophytum geophilum \N \N \N \N \N 29705 L.humilis Leandra Leandra humilis \N \N \N \N \N 29706 R.simiarum Rhododendron Rhododendron simiarum \N \N \N \N \N 29707 A.macroglossus Acianthus Acianthus macroglossus \N \N \N \N \N 29708 M.dendromorpha Malva Malva dendromorpha \N \N \N \N \N 29709 I.laxiflora Ipomopsis Ipomopsis laxiflora \N \N \N \N \N 29710 O.planiscapus Ophiopogon Ophiopogon planiscapus \N \N \N \N \N 29711 \N genus Kutchubaea \N \N \N \N \N 29712 P.trianthum Pancratium Pancratium trianthum \N \N \N \N \N 29713 \N varietas Rubus ellipticus var. obcordatus \N \N \N \N \N 29714 C.dodgei Crataegus Crataegus dodgei \N \N \N \N \N 29715 A.pinnatisecta Antiphiona Antiphiona pinnatisecta \N \N \N \N \N 29716 H.tysonii Habenaria Habenaria tysonii \N \N \N \N \N 29717 S.ferruginea Scurrula Scurrula ferruginea \N \N \N \N \N 29718 P.pityphylla Protea Protea pityphylla \N \N \N \N \N 29719 C.latifolia Chusquea Chusquea latifolia \N \N \N \N \N 29720 \N genus Cylindrophyllum \N \N \N \N \N 29721 S.japonicum Sedum Sedum japonicum \N \N \N \N \N 29722 \N genus Aeschynomene \N \N \N \N \N 29723 \N tribe Tristachyideae \N \N \N \N \N 29724 E.spectabilis Eulophia Eulophia spectabilis \N \N \N \N \N 29725 A.striatum Antirrhinum Antirrhinum striatum \N \N \N \N \N 29726 T.aurantiacum Triosteum Triosteum aurantiacum \N \N \N \N \N 29727 K.caulescens Kniphofia Kniphofia caulescens \N \N \N \N \N 29728 \N varietas Neolitsea wushanica var. pubens \N \N \N \N \N 29729 \N genus Forestiera \N \N \N \N \N 29730 A.leucantha Anchusa Anchusa leucantha \N \N \N \N \N 29731 A.belladonna Atropa Atropa belladonna belladonna,deadly nightshade \N \N \N \N 29732 R.h410 Rhadamanthus Rhadamanthus sp. h410 \N \N \N \N \N 29733 \N genus Chiloglottis \N \N \N \N \N 29734 M.rotundifolia Monimia Monimia rotundifolia \N \N \N \N \N 29735 T.violacea Temnadenia Temnadenia violacea \N \N \N \N \N 29736 S.7467 Schefflera Schefflera cf. lasiogyne Clark 7467 \N \N \N \N \N 29737 E.alsinoides Evolvulus Evolvulus alsinoides \N \N \N \N \N 29738 A.alba Alectra Alectra alba \N \N \N \N \N 29739 S.kurtzianum Solanum Solanum kurtzianum \N \N \N \N \N 29740 \N genus Coryanthes \N \N \N \N \N 29741 C.andigena Caucaea Caucaea andigena \N \N \N \N \N 29742 M.cordata Matisia Matisia cordata sapote,sapotillo \N \N \N \N 29743 I.repens Ipomoea Ipomoea repens \N \N \N \N \N 29744 M.serpentina Moraea Moraea serpentina \N \N \N \N \N 29745 F.variifolia Ficus Ficus variifolia \N \N \N \N \N 29746 E.tenue Eryngium Eryngium tenue \N \N \N \N \N 29747 M.gilgiana Momordica Momordica gilgiana \N \N \N \N \N 29748 S.mairei Stemona Stemona mairei \N \N \N \N \N 29749 \N genus Schizophragma \N \N \N \N \N 29750 C.cordata Circaea Circaea cordata \N \N \N \N \N 29751 J.princeps Joannesia Joannesia princeps \N \N \N \N \N 29752 L.obovatum Lithospermum Lithospermum obovatum \N \N \N \N \N 29753 \N genus Kigelia \N \N \N \N \N 29754 A.adscendens Asparagus Asparagus adscendens \N \N \N \N \N 29755 G.valdepilosum Galium Galium valdepilosum \N \N \N \N \N 29756 E.grandis Eucalyptus Eucalyptus camaldulensis x Eucalyptus grandis \N \N \N \N \N 29757 A.rigidus Artocarpus Artocarpus rigidus monkey-jack \N \N \N \N 29758 S.oleracea Syagrus Syagrus oleracea \N \N \N \N \N 29759 P.elegans Paullinia Paullinia elegans \N \N \N \N \N 29760 A.decumbens Arnebia Arnebia decumbens \N \N \N \N \N 29761 N.inflata Nolana Nolana inflata \N \N \N \N \N 29762 E.parvicaruncula Euphorbia Euphorbia parvicaruncula \N \N \N \N \N 29763 A.kandaharica Anthemis Anthemis kandaharica \N \N \N \N \N 29764 D.oblongifolium Dolicholobium Dolicholobium oblongifolium \N \N \N \N \N 29765 H.callicomum Helichrysum Helichrysum callicomum \N \N \N \N \N 29766 L.ciliosa Luxemburgia Luxemburgia ciliosa \N \N \N \N \N 29767 H.aurea Heritiera Heritiera aurea \N \N \N \N \N 29768 A.glandulosus Anopterus Anopterus glandulosus \N \N \N \N \N 29769 \N varietas Cuscuta parviflora var. elongata \N \N \N \N \N 29770 A.beccarii Amyema Amyema beccarii \N \N \N \N \N 29771 S.pooleae Stramentopappus Stramentopappus pooleae \N \N \N \N \N 29772 H.1624 Heterospathe Heterospathe sp. Fernando 1624 \N \N \N \N \N 29773 M.wumungensis Meconopsis Meconopsis wumungensis \N \N \N \N \N 29774 C.stipularis Cobaea Cobaea stipularis \N \N \N \N \N 29775 P.trialata Passiflora Passiflora trialata \N \N \N \N \N 29776 \N varietas Tidestromia suffruticosa var. suffruticosa \N \N \N \N \N 29777 S.longifolium Seseli Seseli longifolium \N \N \N \N \N 29778 P.resinifera Potalia Potalia resinifera \N \N \N \N \N 29779 A.purpurascens Aciotis Aciotis purpurascens \N \N \N \N \N 29780 P.alanyense Pentanema Pentanema alanyense \N \N \N \N \N 29781 R.rosulata Rhombochlamys Rhombochlamys rosulata \N \N \N \N \N 29782 I.kemaonensis Iris Iris kemaonensis \N \N \N \N \N 29783 E.fernandezianum Eryngium Eryngium fernandezianum \N \N \N \N \N 29784 \N genus Critoniopsis \N \N \N \N \N 29785 \N genus Exoacantha \N \N \N \N \N 29786 R.afghanicum Rhododendron Rhododendron afghanicum \N \N \N \N \N 29787 \N genus Pouteria \N \N \N \N \N 29788 B.rosea Braya Braya rosea \N \N \N \N \N 29789 P.mirabilis Pinanga Pinanga mirabilis \N \N \N \N \N 29790 \N genus Arracacia \N \N \N \N \N 29791 C.oligophylla Chusquea Chusquea oligophylla \N \N \N \N \N 29792 \N subspecies Dorycnium pentaphyllum subsp. fulgurans \N \N \N \N \N 29793 E.glaciale Endocellion Endocellion glaciale \N \N \N \N \N 29794 A.macrantha Anaxagorea Anaxagorea macrantha \N \N \N \N \N 29795 \N genus Imperatoria \N \N \N \N \N 29796 A.capitatum Anarthrophyllum Anarthrophyllum capitatum \N \N \N \N \N 29797 \N genus Alangium \N \N \N \N \N 29798 \N subspecies Penstemon crandallii subsp. atratus \N \N \N \N \N 29799 A.exiguum Androcymbium Androcymbium exiguum \N \N \N \N \N 29800 M.brockiei Myosotis Myosotis brockiei \N \N \N \N \N 29801 G.ciliata Gentiana Gentiana ciliata \N \N \N \N \N 29802 C.arborea Cojoba Cojoba arborea \N \N \N \N \N 29803 R.petenensis Randia Randia petenensis \N \N \N \N \N 29804 C.glabrum Cyathostemma Cyathostemma glabrum \N \N \N \N \N 29805 R.latoucheae Rhododendron Rhododendron latoucheae \N \N \N \N \N 29806 \N varietas Balsamorhiza hookeri var. neglecta \N \N \N \N \N 29807 C.1927' Coussarea Coussarea sp. 'Andersson 1927' \N \N \N \N \N 29808 C.acuminata Carpentaria Carpentaria acuminata \N \N \N \N \N 29809 \N subspecies Hieracium caespitosum subsp. caespitosum \N \N \N \N \N 29810 L.mariae Livistona Livistona mariae \N \N \N \N \N 29811 O.primiveris Oenothera Oenothera primiveris desert evening-primrose \N \N \N \N 29812 C.salvadorensis Cedrela Cedrela salvadorensis \N \N \N \N \N 29813 C.diffusa Chorizanthe Chorizanthe diffusa \N \N \N \N \N 29814 P.P096 Physalis Physalis sp. P096 \N \N \N \N \N 29815 S.chienii Sinosenecio Sinosenecio chienii \N \N \N \N \N 29816 L.albomarginata Lomatocarpa Lomatocarpa albomarginata \N \N \N \N \N 29817 \N genus Ranzania \N \N \N \N \N 29818 H.arwae Helichrysum Helichrysum arwae \N \N \N \N \N 29819 M.minor Moraea Moraea minor \N \N \N \N \N 29820 \N subspecies Isatis cappadocica subsp. stenophylla \N \N \N \N \N 29821 E.E80 Echinodorus Echinodorus cf. osiris E80 \N \N \N \N \N 29822 A.schweinfurthii Adenia Adenia schweinfurthii \N \N \N \N \N 29823 C.jambhiri Citrus Citrus jambhiri jambhiri-orange,rough lemon \N \N \N \N 29824 \N subspecies Phlox glaberrima subsp. triflora \N \N \N \N \N 29825 R.volkensii Ranunculus Ranunculus volkensii \N \N \N \N \N 29826 N.cordifolia Nicotiana Nicotiana cordifolia \N \N \N \N \N 29827 S.gigantifolia Semecarpus Semecarpus gigantifolia \N \N \N \N \N 29828 L.incerta Landolphia Landolphia incerta \N \N \N \N \N 29829 F.627 Ferdinandusa Ferdinandusa cf. loretensis Persson et al. 627 \N \N \N \N \N 29830 G.tolimensis Gynoxys Gynoxys tolimensis \N \N \N \N \N 29831 I.adenolomus Isodon Isodon adenolomus \N \N \N \N \N 29832 R.japonicus Ranunculus Ranunculus japonicus \N \N \N \N \N 29833 O.polyantha Oxandra Oxandra polyantha \N \N \N \N \N 29834 P.immarginata Poitea Poitea immarginata \N \N \N \N \N 29835 P.oldfieldii Pityrodia Pityrodia oldfieldii \N \N \N \N \N 29836 P.viscosa Perezia Perezia viscosa \N \N \N \N \N 29837 A.pallida Agastache Agastache pallida \N \N \N \N \N 29838 C.connata Cryptandra Cryptandra connata \N \N \N \N \N 29839 P.linggensis Planchonella Planchonella linggensis \N \N \N \N \N 29840 \N genus Oceanopapaver \N \N \N \N \N 29841 P.aculeata Parkinsonia Parkinsonia aculeata Barbados flowerfence,Jerusalem thorn,Mexican paloverde,espinillo,retaima \N \N \N \N 29842 C.praecox Carex Carex praecox \N \N \N \N \N 29843 S.webbii Salsola Salsola webbii \N \N \N \N \N 29844 D.chrysantha Duchesnea Duchesnea chrysantha \N \N \N \N \N 29845 W.psammophila Wahlenbergia Wahlenbergia psammophila \N \N \N \N \N 29846 X.hypolampra Xylopia Xylopia hypolampra \N \N \N \N \N 29847 F.scortechinii Ficus Ficus scortechinii loquat-leaf fig \N \N \N \N 29848 S.drummondii Salsola Salsola drummondii \N \N \N \N \N 29849 H.fasciculata Hibbertia Hibbertia fasciculata \N \N \N \N \N 29850 P.sudicola Poa Poa sudicola \N \N \N \N \N 29851 A.microphyllum Antirrhinum Antirrhinum microphyllum \N \N \N \N \N 29852 O.viridiflorum Ostericum Ostericum viridiflorum \N \N \N \N \N 29853 P.nesomii Polygonum Polygonum nesomii \N \N \N \N \N 29854 P.brauniana Potentilla Potentilla brauniana \N \N \N \N \N 29855 B.pauciflora Bomarea Bomarea pauciflora \N \N \N \N \N 29856 L.vestita Liparia Liparia vestita \N \N \N \N \N 29857 S.mohavensis Salvia Salvia mohavensis Mojave sage \N \N \N \N 29858 A.sample environmental samples Taxonomy:202725 angiosperm environmental sample \N \N \N \N \N 29859 A.morii Angelica Angelica morii \N \N \N \N \N 29860 S.immite Solanum Solanum immite \N \N \N \N \N 29861 U.DB-1992 unclassified eudicotyledons unspecified eudicot DB-1992 \N \N \N \N \N 29862 A.pulchellum Aconitum Aconitum pulchellum \N \N \N \N \N 29863 P.lanceolata Phoebe Phoebe lanceolata \N \N \N \N \N 29864 M.winterae Mammillaria Mammillaria winterae \N \N \N \N \N 29865 \N genus Doliocarpus \N \N \N \N \N 29866 S.lissophylla Shorea Shorea lissophylla \N \N \N \N \N 29867 G.curvispina Ginoria Ginoria curvispina \N \N \N \N \N 29868 T.flavescens Trisetum Trisetum flavescens \N \N \N \N \N 29869 C.carolinus Cucumis Cucumis carolinus \N \N \N \N \N 29870 C.ceratacantha Castanopsis Castanopsis ceratacantha \N \N \N \N \N 29871 H.aggregata Hormuzakia Hormuzakia aggregata \N \N \N \N \N 29872 \N genus Thamnosma \N \N \N \N \N 29873 B.coerulea Brachysola Brachysola coerulea \N \N \N \N \N 29874 \N subspecies Pelargonium suburbanum subsp. bipinnatifidum \N \N \N \N \N 29875 D.illinoensis Desmanthus Desmanthus illinoensis prairie bundleflower \N \N \N \N 29876 C.celtidifolius Croton Croton celtidifolius \N \N \N \N \N 29877 S.lanceolata Sageraea Sageraea lanceolata \N \N \N \N \N 29878 D.athrocarpa Descurainia Descurainia athrocarpa \N \N \N \N \N 29879 \N genus Spinacia \N \N \N \N \N 29880 \N genus Corsia \N \N \N \N \N 29881 \N subspecies Centaurea resupinata subsp. rifana \N \N \N \N \N 29882 S.microphylla Sebaea Sebaea microphylla \N \N \N \N \N 29883 F.kingdon-wardii Ferula Ferula kingdon-wardii \N \N \N \N \N 29884 \N varietas Panicum virgatum var. cubense \N \N \N \N \N 29885 B.coccinea Brownea Brownea coccinea \N \N \N \N \N 29886 C.xalapensis Croton Croton xalapensis \N \N \N \N \N 29887 M.bicolor Mimulus Mimulus bicolor \N \N \N \N \N 29888 S.hansweberi Senecio Senecio hansweberi \N \N \N \N \N 29889 \N genus Brassaia \N \N \N \N \N 29890 T.S5135 unclassified Taraxacum Taraxacum (sect. Calanthodia) sp. S5135 \N \N \N \N \N 29891 P.minor Pentaschistis Pentameris minor \N \N \N \N \N 29892 C.planiseta Chaetanthera Chaetanthera planiseta \N \N \N \N \N 29893 T.phleoides Trifolium Trifolium phleoides \N \N \N \N \N 29894 X.tridentata Xenostegia Xenostegia tridentata \N \N \N \N \N 29895 T.nana Tenicroa Tenicroa nana \N \N \N \N \N 29896 P.lanatum Pharnaceum Pharnaceum lanatum \N \N \N \N \N 29897 S.pilosum Syncalathium Syncalathium pilosum \N \N \N \N \N 29898 A.subulata Asclepias Asclepias subulata \N \N \N \N \N 29899 L.cavanillesii Limonium Limonium cavanillesii \N \N \N \N \N 29900 S.rugosa Stenogyne Stenogyne cf. microphylla x rugosa \N \N \N \N \N 29901 A.subsessilifolia Adenia Adenia subsessilifolia \N \N \N \N \N 29902 B.fluviatilis Bolboschoenus Bolboschoenus fluviatilis \N \N \N \N \N 29903 S.warneckei Stenandrium Stenandrium warneckei \N \N \N \N \N 29904 M.coccinea Moronobea Moronobea coccinea \N \N \N \N \N 29905 I.hypoleuca Isertia Isertia hypoleuca \N \N \N \N \N 29906 \N genus Antirhea \N \N \N \N \N 29907 E.buchii Elekmania Elekmania buchii \N \N \N \N \N 29908 T.angustifolia Talisia Talisia angustifolia \N \N \N \N \N 29909 S.pimpinellifolium Lycopersicon Solanum pimpinellifolium currant tomato \N \N \N \N 29910 R.gayanum Rhodanthemum Rhodanthemum gayanum \N \N \N \N \N 29911 O.pachyrachis Oberonia Oberonia pachyrachis \N \N \N \N \N 29912 \N subspecies Trisetum cernuum subsp. canescens \N \N \N \N \N 29913 C.edulis Campanula Campanula edulis anwak \N \N \N \N 29914 P.taurus Pterostylis Pterostylis taurus \N \N \N \N \N 29915 H.corymbosa Hygrophila Hygrophila corymbosa \N \N \N \N \N 29916 V.gentianoides Veronica Veronica gentianoides \N \N \N \N \N 29917 R.harrisonii Rhizophora Rhizophora harrisonii \N \N \N \N \N 29918 C.ilicifolium Citharexylum Citharexylum ilicifolium \N \N \N \N \N 29919 L.mirabilis Lesliea Lesliea mirabilis \N \N \N \N \N 29920 \N subspecies Acer tataricum subsp. tataricum \N \N \N \N \N 29921 C.gloriosa Columnea Columnea gloriosa \N \N \N \N \N 29922 D.microcarpum Detarium Detarium microcarpum \N \N \N \N \N 29923 A.caesium Acer Acer caesium \N \N \N \N \N 29924 R.aciculare Ribes Ribes aciculare \N \N \N \N \N 29925 A.bracteosa Anaectocalyx Anaectocalyx bracteosa \N \N \N \N \N 29926 A.piptocephalus Astragalus Astragalus piptocephalus \N \N \N \N \N 29927 J.monanthos Juncus Juncus monanthos \N \N \N \N \N 29928 T.cuneifolia Torralbasia Torralbasia cuneifolia \N \N \N \N \N 29929 B.cordifolia Bergenia Bergenia cordifolia \N \N \N \N \N 29930 \N genus Hoffmannia \N \N \N \N \N 29931 S.shortii Symphyotrichum Symphyotrichum shortii \N \N \N \N \N 29932 P.rabiei Phyllobolus Phyllobolus rabiei \N \N \N \N \N 29933 R.standleyi Ruellia Ruellia standleyi \N \N \N \N \N 29934 G.araucana Gavilea Gavilea araucana \N \N \N \N \N 29935 C.orchioides Curculigo Curculigo orchioides \N \N \N \N \N 29936 P.tuberosa Phlomoides Phlomoides tuberosa \N \N \N \N \N 29937 C.microbefaria Calceolaria Calceolaria microbefaria \N \N \N \N \N 29938 A.vodopjanovae Allium Allium vodopjanovae \N \N \N \N \N 29939 \N genus Lepyrodiclis \N \N \N \N \N 29940 C.maritima Crambe Crambe maritima \N \N \N \N \N 29941 T.NW9 unclassified Taraxacum Taraxacum sp. NW9 \N \N \N \N \N 29942 \N subspecies Quercus robur subsp. robur \N \N \N \N \N 29943 \N subspecies Halosarcia indica subsp. leiostachya \N \N \N \N \N 29944 Q.canariensis Quercus Quercus canariensis \N \N \N \N \N 29945 A.rosea Aerides Aerides rosea \N \N \N \N \N 29946 \N genus Dicranostyles \N \N \N \N \N 29947 T.minimus Tripogon Tripogon minimus \N \N \N \N \N 29948 B.isalensis Begonia Begonia isalensis \N \N \N \N \N 29949 R.seticalyx Ruspolia Ruspolia seticalyx \N \N \N \N \N 29950 \N genus Chapeliera \N \N \N \N \N 29951 T.lagopoda Tolpis Tolpis lagopoda \N \N \N \N \N 29952 Z.membranacea Zeravschania Zeravschania membranacea \N \N \N \N \N 29953 S.JY-2008-3 Solms-laubachia Solms-laubachia sp. JY-2008-3 \N \N \N \N \N 29954 E.handel-mazzettii Eurya Eurya handel-mazzettii \N \N \N \N \N 29955 A.corynephora Arachnorchis Arachnorchis corynephora \N \N \N \N \N 29956 S.sicula Saponaria Saponaria sicula \N \N \N \N \N 29957 O.aegyptiacum Ochthodium Ochthodium aegyptiacum \N \N \N \N \N 29958 A.lorea Arachnorchis Arachnorchis lorea \N \N \N \N \N 29959 V.schottii Vigna Vigna schottii \N \N \N \N \N 29960 C.liliiflora Canna Canna liliiflora \N \N \N \N \N 29961 P.chrysophthalmus Phyllobolus Phyllobolus chrysophthalmus \N \N \N \N \N 29962 \N genus Thymbra \N \N \N \N \N 29963 D.cooperi Diplazoptilon Diplazoptilon cooperi \N \N \N \N \N 29964 P.juliflorum Piper Piper juliflorum \N \N \N \N \N 29965 N.undulatifolia Neolitsea Neolitsea undulatifolia \N \N \N \N \N 29966 E.cornu-bovis Eurystyles Eurystyles cornu-bovis \N \N \N \N \N 29967 S.brevifolius Scleropogon Scleropogon brevifolius \N \N \N \N \N 29968 C.angustifolia Chorizanthe Chorizanthe angustifolia \N \N \N \N \N 29969 C.speciosa Craigia Craigia speciosa \N \N \N \N \N 29970 \N genus Aubregrinia \N \N \N \N \N 29971 P.suworowii Psylliostachys Psylliostachys suworowii pink poker statice \N \N \N \N 29972 T.orientalis Trachystemon Trachystemon orientalis \N \N \N \N \N 29973 H.salicifolia Hibbertia Hibbertia salicifolia \N \N \N \N \N 29974 E.dinarica Euphrasia Euphrasia dinarica \N \N \N \N \N 29975 \N genus Conopholis \N \N \N \N \N 29976 R.KMC1998 Restrepia Restrepia sp. KMC1998 \N \N \N \N \N 29977 P.cuneata Potentilla Potentilla cuneata \N \N \N \N \N 29978 A.UASWS0217 Artemisia Artemisia sp. UASWS0217 \N \N \N \N \N 29979 P.hartwegii Pachyphyllum Pachyphyllum hartwegii \N \N \N \N \N 29980 A.psychotrioides Airosperma Airosperma psychotrioides \N \N \N \N \N 29981 A.oxycarpum Alyssum Alyssum oxycarpum \N \N \N \N \N 29982 \N genus Ricotia \N \N \N \N \N 29983 H.palmeri Halenia Halenia palmeri \N \N \N \N \N 29984 \N subspecies Euphorbia deltoidea subsp. adhaerens \N \N \N \N \N 29985 D.trimorphum Dracophyllum Dracophyllum trimorphum \N \N \N \N \N 29986 S.papillosa Salsola Salsola papillosa \N \N \N \N \N 29987 V.sepium Vicia Vicia sepium bush vetch \N \N \N \N 29988 M.sibiricum Myriophyllum Myriophyllum sibiricum \N \N \N \N \N 29989 \N genus Escallonia \N \N \N \N \N 29990 F.235 Fraxinus Fraxinus sp. 235 \N \N \N \N \N 29991 L.vulgaris Lysimachia Lysimachia vulgaris willowweed \N \N \N \N 29992 M.multiflora Mirabilis Mirabilis multiflora \N \N \N \N \N 29993 A.biglandulosum Anodopetalum Anodopetalum biglandulosum \N \N \N \N \N 29994 V.billbergiana Vismia Vismia billbergiana \N \N \N \N \N 29995 Q.peruviana Quapoya Quapoya peruviana \N \N \N \N \N 29996 \N subspecies Acer hyrcanum subsp. hyrcanum \N \N \N \N \N 29997 A.sikkimense Acer Acer sikkimense \N \N \N \N \N 29998 C.chlorocephala Cousinia Cousinia chlorocephala \N \N \N \N \N 29999 G.scoparioides Gomphostigma Gomphostigma scoparioides \N \N \N \N \N 30000 D.denticulata Dionysia Dionysia denticulata \N \N \N \N \N 30001 M.arenaria Microtis Microtis arenaria \N \N \N \N \N 30002 L.kraussi Lobelia Lobelia kraussi \N \N \N \N \N 30003 \N varietas Incarvillea mairei var. mairei \N \N \N \N \N 30004 N.foetens Nemesia Nemesia foetens \N \N \N \N \N 30005 \N subspecies Anchonium elichrysifolium subsp. villosum \N \N \N \N \N 30006 \N genus Pectis \N \N \N \N \N 30007 A.lanceolata Acanthomintha Acanthomintha lanceolata \N \N \N \N \N 30008 C.echioides Croton Croton echioides \N \N \N \N \N 30009 L.unifolia Lachenalia Lachenalia unifolia \N \N \N \N \N 30010 D.XMW-2002-3 Dendrobium Dendrobium sp. XMW-2002-3 \N \N \N \N \N 30011 \N genus Rhapis \N \N \N \N \N 30012 \N genus Syrmatium \N \N \N \N \N 30013 L.aurea Lachnaea Lachnaea aurea \N \N \N \N \N 30014 G.dolomiticus Gladiolus Gladiolus dolomiticus \N \N \N \N \N 30015 \N genus Calopyxis \N \N \N \N \N 30016 P.chinampoensis Puccinellia Puccinellia chinampoensis \N \N \N \N \N 30017 G.pendulum Galium Galium pendulum \N \N \N \N \N 30018 N.mohavensis Nitrophila Nitrophila mohavensis \N \N \N \N \N 30019 T.micranthum Trifolium Trifolium micranthum \N \N \N \N \N 30020 \N genus Stellera \N \N \N \N \N 30021 C.CG-2009 Carex Carex sp. 1 CG-2009 \N \N \N \N \N 30022 \N subtribe Carlininae \N \N \N \N \N 30023 S.S039/S20 Solanum Solanum sp. S039/S20 \N \N \N \N \N 30024 V.puruana Viguiera Viguiera puruana \N \N \N \N \N 30025 D.buchenaviana Disa Disa buchenaviana \N \N \N \N \N 30026 \N genus Polypsecadium \N \N \N \N \N 30027 L.GVD-2005 Lotus Lotus cf. castellanus GVD-2005 \N \N \N \N \N 30028 I.macrocalyx Indigofera Indigofera macrocalyx \N \N \N \N \N 30029 L.lehmannii Lysipomia Lysipomia lehmannii \N \N \N \N \N 30030 M.matthewsii Maxillaria Maxillaria matthewsii \N \N \N \N \N 30031 P.lanceolatum Poikilospermum Poikilospermum lanceolatum \N \N \N \N \N 30032 \N varietas Allium hookeri var. hookeri \N \N \N \N \N 30033 M.aculeata Mauritiella Mauritiella aculeata \N \N \N \N \N 30034 C.appendiculata Caltha Caltha appendiculata \N \N \N \N \N 30035 M.gustavi Manniella Manniella gustavi \N \N \N \N \N 30036 S.alexandrae Swallenia Swallenia alexandrae \N \N \N \N \N 30037 \N varietas Hylotelephium ussuriense var. tsugaruense \N \N \N \N \N 30038 P.3041 Ponthieva Ponthieva sp. ML 3041 \N \N \N \N \N 30039 V.vitis-idaea Vaccinium Vaccinium vitis-idaea cowberry,lingenberry \N \N \N \N 30040 L.spruceana Limnosipanea Limnosipanea spruceana \N \N \N \N \N 30041 T.monteverdensis Telipogon Telipogon monteverdensis \N \N \N \N \N 30042 E.zeylanica Eremochloa Eremochloa zeylanica \N \N \N \N \N 30043 E.howittiana Eucalyptus Eucalyptus howittiana \N \N \N \N \N 30044 S.trauseldii Selago Selago trauseldii \N \N \N \N \N 30045 \N subspecies Viola macloskeyi subsp. pallens northern white violet \N \N \N \N 30046 M.pauciflora Microcybe Microcybe pauciflora \N \N \N \N \N 30047 A.377 Alpinia Alpinia aff. glabra Sakai 377 \N \N \N \N \N 30048 N.plena Neptunia Neptunia plena water dead and awake \N \N \N \N 30049 A.arizonicus Astragalus Astragalus arizonicus \N \N \N \N \N 30050 \N subspecies Descurainia cumingiana subsp. cumingiana \N \N \N \N \N 30051 M.glabratum Microstegium Microstegium glabratum \N \N \N \N \N 30052 P.bahiensis Pseudoxandra Pseudoxandra bahiensis \N \N \N \N \N 30053 \N genus Trigonopterum \N \N \N \N \N 30054 L.salsa Lippia Lippia salsa \N \N \N \N \N 30055 \N subspecies Wahlenbergia albomarginata subsp. olivina \N \N \N \N \N 30056 T.clavatum Thalictrum Thalictrum clavatum \N \N \N \N \N 30057 G.hypoleucum Gnaphalium Gnaphalium hypoleucum \N \N \N \N \N 30058 \N genus Eosanthe \N \N \N \N \N 30059 S.petrovii Synstemon Synstemon petrovii \N \N \N \N \N 30060 C.racemosum Cynanchum Cynanchum cf. racemosum \N \N \N \N \N 30061 \N tribe Synandreae \N \N \N \N \N 30062 G.hookeri Gomesa Gomesa hookeri \N \N \N \N \N 30063 G.meiantha Goethalsia Goethalsia meiantha \N \N \N \N \N 30064 P.balfouriana Polyscias Polyscias balfouriana \N \N \N \N \N 30065 S.europaea Sibthorpia Sibthorpia europaea \N \N \N \N \N 30066 R.oreophilum Rytidosperma Rytidosperma oreophilum \N \N \N \N \N 30067 S.arbusculoides Suaeda Suaeda arbusculoides \N \N \N \N \N 30068 A.ovata Agathosma Agathosma ovata \N \N \N \N \N 30069 \N subfamily Micrairoideae \N \N \N \N \N 30070 G.arachnoidea Gnephosis Gnephosis arachnoidea \N \N \N \N \N 30071 H.americana Hirtella Hirtella americana \N \N \N \N \N 30072 B.apoiensis Betula Betula apoiensis \N \N \N \N \N 30073 C.strigosa Columnea Columnea strigosa \N \N \N \N \N 30074 D.J.R.B.Tosh-2008 Discospermum Discospermum sp. J.R.B.Tosh-2008 \N \N \N \N \N 30075 G.albociliata Gigantochloa Gigantochloa albociliata \N \N \N \N \N 30076 C.doerfleri Colchicum Colchicum doerfleri \N \N \N \N \N 30077 P.amurense Phellodendron Phellodendron amurense \N \N \N \N \N 30078 \N genus Bafodeya \N \N \N \N \N 30079 V.capillipes Veronica Veronica capillipes \N \N \N \N \N 30080 O.magnifica Oxalis Oxalis magnifica \N \N \N \N \N 30081 \N order Zygophyllales \N \N \N \N \N 30082 O.fruticosa Onosma Onosma fruticosa shrubby golden-drop \N \N \N \N 30083 O.elatior Otomeria Otomeria elatior \N \N \N \N \N 30084 J.interior Juncus Juncus interior \N \N \N \N \N 30085 C.brachycarpa Corymbia Corymbia brachycarpa \N \N \N \N \N 30086 \N varietas Lomatium bicolor var. leptocarpum \N \N \N \N \N 30087 \N genus Relhania \N \N \N \N \N 30088 \N varietas Habenaria glaucophylla var. glaucophylla \N \N \N \N \N 30089 C.websteri Croton Croton websteri \N \N \N \N \N 30090 \N subspecies Helictotrichon versicolor subsp. versicolor \N \N \N \N \N 30091 \N genus Stenospermation \N \N \N \N \N 30092 M.tonduzii Maxillaria Maxillaria tonduzii \N \N \N \N \N 30093 G.paradoxa Gentiana Gentiana paradoxa \N \N \N \N \N 30094 V.aurantiaca Voyria Voyria aurantiaca \N \N \N \N \N 30095 \N genus Cathormion \N \N \N \N \N 30096 O.laeve Oncidium Oncidium laeve \N \N \N \N \N 30097 D.heterophylla Dypsis Dypsis heterophylla \N \N \N \N \N 30098 R.devosiana Ruellia Ruellia devosiana \N \N \N \N \N 30099 T.monococcum Triticum Triticum monococcum einkorn wheat,one-grained wheat,small spelt \N \N \N \N 30100 H.burmanica Hemiorchis Hemiorchis burmanica \N \N \N \N \N 30101 A.fordii Ailanthus Ailanthus fordii \N \N \N \N \N 30102 \N genus Grastidium \N \N \N \N \N 30103 B.attenuatus Bromus Bromus attenuatus \N \N \N \N \N 30104 R.hallii Rupertia Rupertia hallii \N \N \N \N \N 30105 \N genus Sedobassia \N \N \N \N \N 30106 K.umbrina Kniphofia Kniphofia umbrina \N \N \N \N \N 30107 \N genus Cartonema \N \N \N \N \N 30108 L.A1 Lithocarpus Lithocarpus sp. A1 \N \N \N \N \N 30109 E.enshiense Epimedium Epimedium enshiense \N \N \N \N \N 30110 E.petrina Euphorbia Euphorbia petrina \N \N \N \N \N 30111 T.628 unclassified Taraxacum Taraxacum (sect. Naevosa) sp. 628 \N \N \N \N \N 30112 C.bartlettii Casearia Casearia bartlettii \N \N \N \N \N 30113 H.prunifolius Hybanthus Hybanthus prunifolius \N \N \N \N \N 30114 \N genus Sirhookera \N \N \N \N \N 30115 C.gracilis Coursetia Coursetia gracilis \N \N \N \N \N 30116 H.xiaojinense Heracleum Heracleum xiaojinense \N \N \N \N \N 30117 A.madeirensis Autonoe Autonoe madeirensis \N \N \N \N \N 30118 A.warasii Aechmea Aechmea warasii \N \N \N \N \N 30119 L.UCB Lamourouxia Lamourouxia sp. UCB \N \N \N \N \N 30120 O.digitoides Oncidium Oncidium digitoides \N \N \N \N \N 30121 G.s.n. Gelidocalamus Gelidocalamus sp. 1 Zeng & Zhang Jing s.n. \N \N \N \N \N 30122 K.laxiflora Kadua Kadua laxiflora \N \N \N \N \N 30123 B.dura Buchnera Buchnera dura \N \N \N \N \N 30124 S.leucanthum Stenomesson Stenomesson leucanthum \N \N \N \N \N 30125 A.franchetianum Arisaema Arisaema franchetianum \N \N \N \N \N 30126 R.columbiana Ronnbergia Ronnbergia columbiana \N \N \N \N \N 30127 T.jinghongense Tetrastigma Tetrastigma jinghongense \N \N \N \N \N 30128 M.38-01 Microsteira Microsteira sp. Davis et al. 38-01 \N \N \N \N \N 30129 C.utriculata Carex Carex utriculata \N \N \N \N \N 30130 \N genus Junellia \N \N \N \N \N 30131 A.sylvestris Angelica Angelica sylvestris \N \N \N \N \N 30132 P.kotschyi Pseudocedrela Pseudocedrela kotschyi \N \N \N \N \N 30133 \N subspecies Acacia tortilis subsp. raddiana \N \N \N \N \N 30134 A.leucostomum Aconitum Aconitum leucostomum \N \N \N \N \N 30135 P.anomala Paeonia Paeonia anomala \N \N \N \N \N 30136 A.biloba Azorella Azorella biloba \N \N \N \N \N 30137 L.allittii Leucopogon Leucopogon allittii \N \N \N \N \N 30138 L.huachucanus Lupinus Lupinus huachucanus \N \N \N \N \N 30139 \N subfamily Puelioideae \N \N \N \N \N 30140 C.CAM095 Campanula Campanula aff. annae CAM095 \N \N \N \N \N 30141 A.vesiculosa Adenoncos Adenoncos vesiculosa \N \N \N \N \N 30142 L.nitidum Laserpitium Laserpitium nitidum \N \N \N \N \N 30143 C.schweinfurthii Citropsis Citropsis schweinfurthii \N \N \N \N \N 30144 A.wuyuanense Acer Acer wuyuanense \N \N \N \N \N 30145 S.oligophylla Swainsona Swainsona oligophylla \N \N \N \N \N 30146 O.racemosus Osmanthus Osmanthus racemosus \N \N \N \N \N 30147 D.renibractea Disperis Disperis renibractea \N \N \N \N \N 30148 L.glabrum Leptonema Leptonema glabrum \N \N \N \N \N 30149 M.toringoides Malus Malus toringoides cutleaf crab apple \N \N \N \N 30150 S.glabrescens Salvia Salvia glabrescens \N \N \N \N \N 30151 V.ater Vlokia Vlokia ater \N \N \N \N \N 30152 \N genus Bajacalia \N \N \N \N \N 30153 C.parviflora Collinsia Collinsia parviflora blue-eyed Mary \N \N \N \N 30154 B.fistuloides Bobgunnia Bobgunnia fistuloides \N \N \N \N \N 30155 A.bahiense Angelphytum Angelphytum bahiense \N \N \N \N \N 30156 \N forma Phyllostachys sulphurea f. houzeauana \N \N \N \N \N 30157 S.fiebrigii Sisyrinchium Sisyrinchium fiebrigii \N \N \N \N \N 30158 A.cordata Ampelopsis Ampelopsis cordata \N \N \N \N \N 30159 \N genus Koelreuteria \N \N \N \N \N 30160 \N genus Hymenogyne \N \N \N \N \N 30161 P.diospyrifolium Piper Piper diospyrifolium \N \N \N \N \N 30162 I.macarenae Ischnosiphon Ischnosiphon macarenae \N \N \N \N \N 30163 G.malvinus Gladiolus Gladiolus malvinus \N \N \N \N \N 30164 D.bipinnatum Dilodendron Dilodendron bipinnatum \N \N \N \N \N 30165 S.rubiginosa Strychnos Strychnos rubiginosa \N \N \N \N \N 30166 R.macowanii Rytidosperma Rytidosperma macowanii \N \N \N \N \N 30167 C.prescottii Chaerophyllum Chaerophyllum prescottii \N \N \N \N \N 30168 A.heldreichii Alcea Alcea heldreichii \N \N \N \N \N 30169 T.umbellata Tolpis Tolpis umbellata \N \N \N \N \N 30170 \N genus Arnocrinum \N \N \N \N \N 30171 N.kerriana Neohouzeaua Neohouzeaua kerriana \N \N \N \N \N 30172 C.frigida Crepis Crepis frigida \N \N \N \N \N 30173 S.tuberosa Sinningia Sinningia tuberosa \N \N \N \N \N 30174 P.wendlandii Pitcairnia Pitcairnia wendlandii \N \N \N \N \N 30175 V.ervilia Vicia Vicia ervilia \N \N \N \N \N 30176 E.muricata Echinochloa Echinochloa muricata American barnyard grass \N \N \N \N 30177 C.156 Cerdia Cerdia sp. Escamilla et al. 156 \N \N \N \N \N 30178 \N genus Geropogon \N \N \N \N \N 30179 L.davurica Lysimachia Lysimachia davurica \N \N \N \N \N 30180 R.wittrockii Rheum Rheum wittrockii \N \N \N \N \N 30181 \N family Bruniaceae \N \N \N \N \N 30182 S.flavus Senecio Senecio flavus \N \N \N \N \N 30183 \N subspecies Meineckia neogranatensis subsp. neogranatensis \N \N \N \N \N 30184 \N subspecies Crocus sieberi subsp. atticus \N \N \N \N \N 30185 I.flabellata Indigofera Indigofera flabellata \N \N \N \N \N 30186 H.eremogenum Heliotropium Heliotropium eremogenum \N \N \N \N \N 30187 T.tetraptera Tetrapleura Tetrapleura tetraptera \N \N \N \N \N 30189 S.exelliptica Shorea Shorea exelliptica \N \N \N \N \N 30190 M.spicata Malaxis Malaxis spicata \N \N \N \N \N 30191 B.silva-taroucana Berberis Berberis silva-taroucana \N \N \N \N \N 30192 S.byzantina Stachys Stachys byzantina lamb's-ears,lamb's-tails,woolly betony \N \N \N \N 30193 P.capitata Phaleria Phaleria capitata \N \N \N \N \N 30194 \N varietas Heliopsis helianthoides var. scabra \N \N \N \N \N 30195 M.pilosus Mimulus Mimulus pilosus \N \N \N \N \N 30196 O.acaulon Onopordum Onopordum acaulon \N \N \N \N \N 30197 M.rosulata Moschopsis Moschopsis rosulata \N \N \N \N \N 30198 P.dombeyi Potentilla Potentilla dombeyi \N \N \N \N \N 30199 \N genus Haplolophium \N \N \N \N \N 30200 \N tribe Madieae \N \N \N \N \N 30201 H.apocynifolium Hypericum Hypericum apocynifolium \N \N \N \N \N 30202 V.leucophaea Vicia Vicia leucophaea \N \N \N \N \N 30203 H.spathulifera Habenaria Habenaria spathulifera \N \N \N \N \N 30204 P.vaginata Puccinellia Puccinellia vaginata \N \N \N \N \N 30205 S.cinerea Stoebe Stoebe cinerea \N \N \N \N \N 30206 S.cryphiactis Senecio Senecio cryphiactis \N \N \N \N \N 30207 R.sinuata Rorippa Rorippa sinuata \N \N \N \N \N 30208 T.6238h unclassified Taraxacum Taraxacum (sect. Orientalia) sp. 6238h \N \N \N \N \N 30209 P.angustifolia Primula Primula angustifolia \N \N \N \N \N 30210 S.serrata Stewartia Stewartia serrata \N \N \N \N \N 30211 H.apiolens Hymenidium Hymenidium apiolens \N \N \N \N \N 30212 L.quinata Lotononis Lotononis quinata \N \N \N \N \N 30213 I.conjugata Indigofera Indigofera conjugata \N \N \N \N \N 30214 M.maclayi Musa Musa maclayi \N \N \N \N \N 30215 A.indica Azadirachta Azadirachta indica Indian-lilac,margosa,neem,neem tree \N \N \N \N 30216 Y.viridiflorus Ypsilopus Ypsilopus viridiflorus \N \N \N \N \N 30217 C.thysanolepis Calamus Calamus thysanolepis \N \N \N \N \N 30218 \N genus Dendrophthoe \N \N \N \N \N 30219 \N varietas Ceropegia bulbosa var. bulbosa \N \N \N \N \N 30220 \N subspecies Begonia quadrialata subsp. quadrialata \N \N \N \N \N 30221 G.hymenaeifolia Guibourtia Guibourtia hymenaeifolia \N \N \N \N \N 30222 \N subspecies Pimpinella tragium subsp. pseudotragium \N \N \N \N \N 30223 \N genus Rhipsalis \N \N \N \N \N 30224 R.MAB-2008 Romanschulzia Romanschulzia sp. MAB-2008 \N \N \N \N \N 30225 S.pratensis Salvia Salvia pratensis \N \N \N \N \N 30226 N.mexicana Nernstia Nernstia mexicana \N \N \N \N \N 30227 M.SGR-2009 Morinda Morinda sp. 3 SGR-2009 \N \N \N \N \N 30228 D.pygmaea Draba Draba pygmaea \N \N \N \N \N 30229 S.adnatum Stylidium Stylidium adnatum \N \N \N \N \N 30230 T.americana Triplasis Triplasis americana \N \N \N \N \N 30231 M.aromatica Mormodes Mormodes aromatica \N \N \N \N \N 30232 H.latifolium Haplophyllum Haplophyllum latifolium \N \N \N \N \N 30233 H.stenosiphon Hessea Hessea stenosiphon \N \N \N \N \N 30234 M.pusilla Manihot Manihot pusilla \N \N \N \N \N 30235 T.980162 Thrixspermum Thrixspermum sp. 980162 \N \N \N \N \N 30236 \N subspecies Crepis chrysantha subsp. chrysantha \N \N \N \N \N 30237 B.bequaertii Bulbophyllum Bulbophyllum bequaertii \N \N \N \N \N 30238 C.multifida Conobea Conobea multifida \N \N \N \N \N 30239 \N genus Gentianopsis \N \N \N \N \N 30240 S.plectranthoides Salvia Salvia plectranthoides \N \N \N \N \N 30241 B.fecunda Boechera Boechera fecunda Mt. Sapphire rockcress \N \N \N \N 30242 B.amplexicaulis Bistorta Bistorta amplexicaulis \N \N \N \N \N 30243 \N genus Hammeria \N \N \N \N \N 30244 B.purpurea Bauhinia Bauhinia purpurea camel's foot tree \N \N \N \N 30245 B.Island' Bidens Bidens sp. 'Starbuck Island' \N \N \N \N \N 30246 R.kadzusensis Ranunculus Ranunculus kadzusensis \N \N \N \N \N 30247 S.subincisa Salvia Salvia subincisa sawtooth sage \N \N \N \N 30248 \N genus Negria \N \N \N \N \N 30249 C.hendersonii Corymbia Corymbia hendersonii \N \N \N \N \N 30250 \N genus Zornia \N \N \N \N \N 30251 L.africana Lasianthera Lasianthera africana \N \N \N \N \N 30252 P.P128 Physalis Physalis sp. P128 \N \N \N \N \N 30253 C.hildmannianus Cereus Cereus hildmannianus \N \N \N \N \N 30254 T.Tarbi70 unclassified Taraxacum Taraxacum (sect. Hamata) sp. Tarbi70 \N \N \N \N \N 30255 L.acutifolium Lycium Lycium acutifolium \N \N \N \N \N 30256 C.chinense Clerodendrum Clerodendrum chinense \N \N \N \N \N 30257 A.centralis Acacia Acacia centralis \N \N \N \N \N 30258 M.macrocalyx Melolobium Melolobium macrocalyx \N \N \N \N \N 30259 P.mildbraedii Pseudosabicea Pseudosabicea mildbraedii \N \N \N \N \N 30260 E.diffusum Eryngium Eryngium diffusum \N \N \N \N \N 30261 E.wachenheimii Eschweilera Eschweilera wachenheimii \N \N \N \N \N 30262 \N genus Phalacroseris \N \N \N \N \N 30263 C.moschata Chelonopsis Chelonopsis moschata \N \N \N \N \N 30264 C.garrawayae Citrus Citrus garrawayae Mount White lime \N \N \N \N 30265 L.fulva Livistona Livistona fulva \N \N \N \N \N 30266 S.ecuadoriensis Strychnos Strychnos ecuadoriensis \N \N \N \N \N 30267 D.emetocathartica Doyerea Doyerea emetocathartica \N \N \N \N \N 30268 C.brevifolia Conradina Conradina brevifolia \N \N \N \N \N 30269 P.paniculatum Paspalum Paspalum paniculatum \N \N \N \N \N 30270 C.discoideum Cremanthodium Cremanthodium discoideum \N \N \N \N \N 30271 P.fel-terrae Picria Picria fel-terrae \N \N \N \N \N 30272 \N subtribe Barleriinae \N \N \N \N \N 30273 V.colorata Vernonia Vernonia colorata \N \N \N \N \N 30274 L.oblonga Leandriella Leandriella oblonga \N \N \N \N \N 30275 T.velutinum Tapiphyllum Tapiphyllum velutinum \N \N \N \N \N 30276 B.MH-2011b Begonia Begonia sp. MH-2011b \N \N \N \N \N 30277 R.swinhoei Rubus Rubus swinhoei \N \N \N \N \N 30278 A.1 Aglaia Aglaia sp. Samuel 1 \N \N \N \N \N 30279 T.conspicua Tylophora Tylophora conspicua \N \N \N \N \N 30280 \N genus Millettia \N \N \N \N \N 30281 C.guntheriana Chamaedorea Chamaedorea guntheriana \N \N \N \N \N 30282 H.albiflora Haniffia Haniffia albiflora \N \N \N \N \N 30283 L.nugentiae Liparis Liparis nugentiae \N \N \N \N \N 30284 M.demissa Muraltia Muraltia demissa \N \N \N \N \N 30285 \N genus Dendrosenecio \N \N \N \N \N 30286 B.eruciformis Beckmannia Beckmannia eruciformis \N \N \N \N \N 30287 A.allenii Attalea Attalea allenii \N \N \N \N \N 30288 L.comosum Leucadendron Leucadendron comosum \N \N \N \N \N 30289 P.penninerve Piper Piper penninerve \N \N \N \N \N 30290 B.gracilis Bouteloua Bouteloua gracilis blue grama,eyelash grass,navajita \N \N \N \N 30291 S.quadriloba Silene Silene quadriloba \N \N \N \N \N 30292 G.298 Galianthe Galianthe sp. Persson & Gustavsson 298 \N \N \N \N \N 30293 L.latifolium Laserpitium Laserpitium latifolium \N \N \N \N \N 30294 X.torreana Xylia Xylia torreana \N \N \N \N \N 30295 \N genus Anisocycla \N \N \N \N \N 30296 Q.ellipsoidalis Quercus Quercus ellipsoidalis Northern pin oak \N \N \N \N 30297 M.ampliflora Maxillaria Maxillaria ampliflora \N \N \N \N \N 30298 S.adoxoides Semiaquilegia Semiaquilegia adoxoides \N \N \N \N \N 30299 M.levigatus Monocladus Monocladus levigatus \N \N \N \N \N 30300 D.amaranthoides Dioscorea Dioscorea amaranthoides \N \N \N \N \N 30301 G.pectinata Gazania Gazania pectinata \N \N \N \N \N 30302 H.macrantha Hypenia Hypenia macrantha \N \N \N \N \N 30303 \N genus Manekia \N \N \N \N \N 30304 G.usambaricus Gymnosiphon Gymnosiphon usambaricus \N \N \N \N \N 30305 C.tibetana Clematis Clematis tibetana \N \N \N \N \N 30306 G.pachyphyllum Graptopetalum Graptopetalum pachyphyllum \N \N \N \N \N 30307 S.massaicus Senecio Senecio massaicus \N \N \N \N \N 30308 S.lingua Stipa Stipa lingua \N \N \N \N \N 30309 P.pedunculatus Paepalanthus Paepalanthus pedunculatus \N \N \N \N \N 30310 B.geranioides Begonia Begonia geranioides \N \N \N \N \N 30311 C.SKYL-2010a Celastrus Celastrus sp. SKYL-2010a \N \N \N \N \N 30312 I.2133 Illigera Illigera cf. glabra Wen et al. 2133 \N \N \N \N \N 30313 G.cornigera Gomesa Gomesa cornigera \N \N \N \N \N 30314 S.graminifolia Saussurea Saussurea graminifolia \N \N \N \N \N 30315 D.korshinskyi Draba Draba korshinskyi \N \N \N \N \N 30316 A.bifida Agathosma Agathosma bifida \N \N \N \N \N 30317 \N genus Cynophalla \N \N \N \N \N 30318 L.afrum Lycium Lycium afrum \N \N \N \N \N 30319 V.chamissonis Vanilla Vanilla chamissonis \N \N \N \N \N 30320 S.olivieri Seseli Seseli olivieri \N \N \N \N \N 30321 B.lycopodioides Bryomorphe Bryomorphe lycopodioides \N \N \N \N \N 30322 \N genus Schrebera \N \N \N \N \N 30323 D.pauli-sitai Didelotia Didelotia pauli-sitai \N \N \N \N \N 30324 J.viridiflora Jaltomata Jaltomata viridiflora \N \N \N \N \N 30325 D.heterotricha Dacryodes Dacryodes heterotricha \N \N \N \N \N 30326 P.maguirei Primula Primula maguirei \N \N \N \N \N 30327 P.spinosus Psorothamnus Psorothamnus spinosus smoketree \N \N \N \N 30328 S.coagulans Solanum Solanum coagulans \N \N \N \N \N 30329 \N genus Hirtella \N \N \N \N \N 30330 S.compactum Sedum Sedum compactum \N \N \N \N \N 30331 L.quadricostatus Leptocereus Leptocereus quadricostatus \N \N \N \N \N 30332 C.leiocarpa Citrus Citrus leiocarpa \N \N \N \N \N 30333 G.madagascariensis Gaertnera Gaertnera madagascariensis \N \N \N \N \N 30334 A.orientale Alisma Alisma orientale \N \N \N \N \N 30335 P.nyctaginiflora Petunia Petunia nyctaginiflora \N \N \N \N \N 30336 M.argillicola Mentzelia Mentzelia argillicola \N \N \N \N \N 30337 S.pennellii Lycopersicon Solanum pennellii \N \N \N \N \N 30338 E.transparens Erica Erica transparens \N \N \N \N \N 30339 A.filipes Afgekia Afgekia filipes \N \N \N \N \N 30340 K.wrightii Krigia Krigia wrightii \N \N \N \N \N 30341 P.andaluciana Palicourea Palicourea andaluciana \N \N \N \N \N 30342 \N genus Musella \N \N \N \N \N 30343 G.depressa Gentiana Gentiana depressa \N \N \N \N \N 30344 \N genus Didymeles \N \N \N \N \N 30345 M.661 Macrolobium Macrolobium sp. Klitgaard 661 \N \N \N \N \N 30346 \N subspecies Thymelaea coridifolia subsp. dendrobryum \N \N \N \N \N 30347 E.uniflora Eleocharis Eleocharis uniflora \N \N \N \N \N 30348 D.ancoraelabia Dichaea Dichaea ancoraelabia \N \N \N \N \N 30349 C.salina Cuscuta Cuscuta salina \N \N \N \N \N 30350 I.purpurea Ilex Ilex purpurea \N \N \N \N \N 30351 N.8268 Nautilocalyx Nautilocalyx sp. Clark 8268 \N \N \N \N \N 30352 C.gallaecica Cardamine Cardamine gallaecica \N \N \N \N \N 30353 C.lenticularis Carex Carex lenticularis \N \N \N \N \N 30354 \N genus Ekebergia \N \N \N \N \N 30355 Z.palustris Zannichellia Zannichellia palustris \N \N \N \N \N 30356 S.petraeus Senecio Senecio petraeus \N \N \N \N \N 30357 P.albertinae Platymiscium Platymiscium albertinae \N \N \N \N \N 30358 C.abellianus Corybas Corybas abellianus \N \N \N \N \N 30359 \N varietas Artemisia mendozana var. paramilloensis \N \N \N \N \N 30360 \N subspecies Peniocereus greggii subsp. greggii \N \N \N \N \N 30361 S.carneus Stylodon Stylodon carneus \N \N \N \N \N 30362 P.watsoniana Passiflora Passiflora watsoniana \N \N \N \N \N 30363 S.osloensis Saxifraga Saxifraga osloensis \N \N \N \N \N 30364 L.californicus Leymus Leymus californicus California bottlebrush grass \N \N \N \N 30365 P.erinacea Parodia Parodia erinacea \N \N \N \N \N 30366 E.marginata Elytraria Elytraria marginata \N \N \N \N \N 30367 \N genus Cruckshanksia \N \N \N \N \N 30368 C.gibbifera Coelogyne Coelogyne gibbifera \N \N \N \N \N 30369 O.foliosa Oreorchis Oreorchis foliosa \N \N \N \N \N 30370 H.richeri Hypericum Hypericum richeri \N \N \N \N \N 30371 \N subspecies Gilia capitata subsp. staminea \N \N \N \N \N 30372 A.marantoidea Anomochloa Anomochloa marantoidea \N \N \N \N \N 30373 P.maidifolia Pitcairnia Pitcairnia maidifolia \N \N \N \N \N 30374 S.przewalskyi Stipa Stipa przewalskyi \N \N \N \N \N 30375 N.talangensis Nepenthes Nepenthes talangensis \N \N \N \N \N 30376 M.taurina Malaxis Malaxis taurina \N \N \N \N \N 30377 \N varietas Correa lawrenceana var. rosea \N \N \N \N \N 30378 G.flava Gaillardia Gaillardia flava \N \N \N \N \N 30379 P.methysticum Piper Piper methysticum kava \N \N \N \N 30380 E.clusiifolia Euphorbia Euphorbia clusiifolia \N \N \N \N \N 30381 I.veneta Isocoma Isocoma veneta \N \N \N \N \N 30480 C.prenanthoides Calorezia Calorezia prenanthoides \N \N \N \N \N 30382 L.styraciflua Liquidambar Liquidambar styraciflua American sweet gum,sweet gum \N \N \N \N 30383 O.madagascariensis Ornichia Ornichia madagascariensis \N \N \N \N \N 30384 \N genus Mystroxylon \N \N \N \N \N 30385 P.oaxacensis Peniocereus Peniocereus oaxacensis \N \N \N \N \N 30386 D.iranshahrii Dionysia Dionysia iranshahrii \N \N \N \N \N 30387 P.denevei Paraphalaenopsis Paraphalaenopsis denevei \N \N \N \N \N 30388 P.griffithii Piper Piper griffithii \N \N \N \N \N 30389 C.brachypoda Cuphea Cuphea brachypoda \N \N \N \N \N 30390 \N subfamily Cornoideae \N \N \N \N \N 30391 C.debilis Cyrtanthus Cyrtanthus debilis \N \N \N \N \N 30392 S.oellgaardii Stilpnophyllum Stilpnophyllum oellgaardii \N \N \N \N \N 30393 D.jiangxiensis Deinocheilos Deinocheilos jiangxiensis \N \N \N \N \N 30394 B.nervosa Bonellia Bonellia nervosa \N \N \N \N \N 30395 G.intertextum Gymnocalycium Gymnocalycium intertextum \N \N \N \N \N 30396 \N family Nymphaeaceae water-lily family \N \N \N \N 30397 T.brachysiphon Telosiphonia Telosiphonia brachysiphon \N \N \N \N \N 30398 K.kupperi Kegeliella Kegeliella kupperi \N \N \N \N \N 30399 P.aucheri Pteropyrum Pteropyrum aucheri \N \N \N \N \N 30400 L.gaillardioides Layia Layia gaillardioides \N \N \N \N \N 30401 M.mexicana Morkillia Morkillia mexicana \N \N \N \N \N 30402 S.laurifolia Siparuna Siparuna laurifolia \N \N \N \N \N 30403 A.cephalanthus Astragalus Astragalus cephalanthus \N \N \N \N \N 30404 C.australis Cordyline Cordyline australis \N \N \N \N \N 30405 S.australis Sagittaria Sagittaria australis \N \N \N \N \N 30406 P.glandulosa Plagiostachys Plagiostachys glandulosa \N \N \N \N \N 30407 B.aubrevillei Bulbophyllum Bulbophyllum aubrevillei \N \N \N \N \N 30408 S.fulva Sabicea Sabicea fulva \N \N \N \N \N 30409 C.nerimaniae Crocus Crocus nerimaniae \N \N \N \N \N 30410 C.mirabilis Campanula Campanula mirabilis \N \N \N \N \N 30411 D.spathulata Dalechampia Dalechampia spathulata \N \N \N \N \N 30412 M.caulescens Mitella Mitella caulescens \N \N \N \N \N 30413 C.teysmannii Calophyllum Calophyllum teysmannii \N \N \N \N \N 30414 F.glutinosa Fagonia Fagonia glutinosa \N \N \N \N \N 30415 I.sulcata Isolepis Isolepis sulcata \N \N \N \N \N 30416 \N genus Grandidiera \N \N \N \N \N 30417 G.heterosepala Guettarda Guettarda heterosepala \N \N \N \N \N 30418 B.frutescens Baeckea Baeckea frutescens \N \N \N \N \N 30419 \N genus Urostemon \N \N \N \N \N 30420 \N genus Ionactis \N \N \N \N \N 30421 N.aculeata Nassauvia Nassauvia aculeata \N \N \N \N \N 30422 N.chirripoi Niphogeton Niphogeton chirripoi \N \N \N \N \N 30423 P.dilatata Parnassia Parnassia dilatata \N \N \N \N \N 30424 H.capitellata Hedyotis Hedyotis capitellata \N \N \N \N \N 30425 G.warrenii Garcinia Garcinia warrenii \N \N \N \N \N 30426 \N genus Cephanonoplos \N \N \N \N \N 30427 O.ruellioides Ourisia Ourisia ruellioides \N \N \N \N \N 30428 M.monogynus Melodinus Melodinus monogynus \N \N \N \N \N 30429 P.subjuga Potentilla Potentilla subjuga \N \N \N \N \N 30430 C.ochroleucus Cyrtanthus Cyrtanthus ochroleucus \N \N \N \N \N 30431 M.durum Memecylon Memecylon durum \N \N \N \N \N 30432 I.GPM-2008 Impatiens Impatiens cf. pallida GPM-2008 \N \N \N \N \N 30433 C.lachnostachys Cullen Cullen lachnostachys \N \N \N \N \N 30434 E.revoluta Euphorbia Euphorbia revoluta \N \N \N \N \N 30435 D.subcapitata Draba Draba subcapitata \N \N \N \N \N 30436 S.lanceolata Sarcotoechia Sarcotoechia lanceolata \N \N \N \N \N 30437 C.greenmanii Cracca Cracca greenmanii \N \N \N \N \N 30438 H.monopetalus Hexalobus Hexalobus monopetalus \N \N \N \N \N 30439 A.gattingeri Agalinis Agalinis gattingeri \N \N \N \N \N 30440 A.purpurea Asperula Asperula purpurea \N \N \N \N \N 30441 \N genus Pseudorchis \N \N \N \N \N 30442 C.ingrata Cuphea Cuphea ingrata \N \N \N \N \N 30443 P.erubescens Philodendron Philodendron erubescens \N \N \N \N \N 30444 \N genus Acanthura \N \N \N \N \N 30445 S.auriculatum Sisymbrium Sisymbrium auriculatum \N \N \N \N \N 30446 \N genus Nicolletia \N \N \N \N \N 30447 M.prainiana Mimosa Mimosa prainiana \N \N \N \N \N 30448 C.yemenensis Campylanthus Campylanthus yemenensis \N \N \N \N \N 30449 D.arifolia Dorstenia Dorstenia arifolia \N \N \N \N \N 30450 \N subspecies Chrysopogon gryllus subsp. gryllus \N \N \N \N \N 30451 \N subspecies Eleocharis acutangula subsp. acutangula \N \N \N \N \N 30452 \N genus Lockhartia \N \N \N \N \N 30453 \N genus Escobedia \N \N \N \N \N 30454 T.armeniacus Tragopogon Tragopogon armeniacus \N \N \N \N \N 30455 \N genus Oxyspora \N \N \N \N \N 30456 \N varietas Delphinium chrysotrichum var. tsarongense \N \N \N \N \N 30457 C.balansae Cryptocoryne Cryptocoryne balansae \N \N \N \N \N 30458 P.eigii Poa Poa eigii \N \N \N \N \N 30459 R.missouriensis Rudbeckia Rudbeckia missouriensis \N \N \N \N \N 30460 A.allenii Anaxagorea Anaxagorea allenii \N \N \N \N \N 30461 A.saccharinum Acer Acer saccharinum silver maple \N \N \N \N 30462 K.madagascariensis Koehneria Koehneria madagascariensis \N \N \N \N \N 30463 \N varietas Rotheca myricoides var. discolor \N \N \N \N \N 30464 \N varietas Sisyrinchium idahoense var. macounii \N \N \N \N \N 30465 \N genus Uromyrtus \N \N \N \N \N 30466 E.brachiata Eirmocephala Eirmocephala brachiata \N \N \N \N \N 30467 I.parviflora Isertia Isertia parviflora \N \N \N \N \N 30468 T.pubescens Thymus Thymus pubescens \N \N \N \N \N 30469 \N genus Flemingia \N \N \N \N \N 30470 A.tanganyicensis Albizia Albizia tanganyicensis \N \N \N \N \N 30471 \N genus Carvalhoa \N \N \N \N \N 30472 A.scabra Arabis Arabis scabra \N \N \N \N \N 30473 \N genus Chorizandra \N \N \N \N \N 30474 E.stauntonii Elsholtzia Elsholtzia stauntonii mint shrub \N \N \N \N 30475 H.anthylloides Haplopappus Haplopappus anthylloides \N \N \N \N \N 30476 E.bonariensis Eleocharis Eleocharis bonariensis \N \N \N \N \N 30477 H.pumilum Homalopetalum Homalopetalum pumilum \N \N \N \N \N 30478 E.tonduzii Elleanthus Elleanthus tonduzii \N \N \N \N \N 30479 P.arvensis Pentas Pentas arvensis \N \N \N \N \N 30481 S.foliosus Syncolostemon Syncolostemon foliosus \N \N \N \N \N 30482 P.leschenaultii Passiflora Passiflora leschenaultii \N \N \N \N \N 30483 L.turionifera Lemna Lemna turionifera \N \N \N \N \N 30484 A.acaulis Anisocoma Anisocoma acaulis \N \N \N \N \N 30485 P.physodes Pimelea Pimelea physodes \N \N \N \N \N 30486 E.kamtschatica Eleocharis Eleocharis kamtschatica \N \N \N \N \N 30487 R.latevaginata Rhaphidophora Rhaphidophora latevaginata \N \N \N \N \N 30488 \N genus Montigena \N \N \N \N \N 30489 \N subspecies Hordeum brevisubulatum subsp. nevskianum \N \N \N \N \N 30490 R.saxatilis Rhamnus Rhamnus saxatilis \N \N \N \N \N 30491 M.longiaristata Moraea Moraea longiaristata \N \N \N \N \N 30492 C.sessiliflora Coffea Coffea sessiliflora \N \N \N \N \N 30493 G.angelae Gymnocalycium Gymnocalycium angelae \N \N \N \N \N 30494 C.grisebachii Calycogonium Calycogonium grisebachii \N \N \N \N \N 30495 S.vaupelianus Stenocactus Stenocactus vaupelianus \N \N \N \N \N 30496 H.rodeiensis Habenaria Habenaria rodeiensis \N \N \N \N \N 30497 M.tubiferum Maianthemum Maianthemum tubiferum \N \N \N \N \N 30498 A.schottii Allamanda Allamanda schottii \N \N \N \N \N 30499 D.sophioides Descurainia Descurainia sophioides \N \N \N \N \N 30500 H.nukuhivensis Hernandia Hernandia nukuhivensis \N \N \N \N \N 30501 G.escobariana Gongora Gongora escobariana \N \N \N \N \N 30502 L.ephemerum Lysimachia Lysimachia ephemerum \N \N \N \N \N 30503 V.riparia Vitis Vitis cinerea var. helleri x Vitis riparia \N \N \N \N \N 30504 P.cheilanthifolia Pedicularis Pedicularis cheilanthifolia \N \N \N \N \N 30505 B.iucunda Begonia Begonia iucunda \N \N \N \N \N 30506 G.sepium Gliricidia Gliricidia sepium \N \N \N \N \N 30507 S.hydrophyllacea Scyphiphora Scyphiphora hydrophyllacea \N \N \N \N \N 30508 A.maidenii Amyema Amyema maidenii \N \N \N \N \N 30509 B.virgata Badiera Badiera virgata \N \N \N \N \N 30510 \N genus Tinadendron \N \N \N \N \N 30511 A.boissieri Antirrhinum Antirrhinum boissieri \N \N \N \N \N 30512 T.escobariana Trevoria Trevoria escobariana \N \N \N \N \N 30513 P.egena Phacelia Phacelia egena \N \N \N \N \N 30514 S.laetus Senecio Senecio laetus \N \N \N \N \N 30515 \N no rank Verbenaceae incertae sedis \N \N \N \N \N 30516 F.scandens Freycinetia Freycinetia scandens \N \N \N \N \N 30517 A.vitifolia Anemone Anemone vitifolia \N \N \N \N \N 30518 A.fasciculata Agalinis Agalinis fasciculata \N \N \N \N \N 30519 R.egregius Restio Restio egregius \N \N \N \N \N 30520 E.'Tyne' Epipactis Epipactis sp. 'Tyne' \N \N \N \N \N 30521 O.kobukensis Oxytropis Oxytropis kobukensis \N \N \N \N \N 30522 M.glabra Maranthes Maranthes glabra \N \N \N \N \N 30523 \N family Irvingiaceae \N \N \N \N \N 30524 \N no rank unclassified Cucurbitaceae \N \N \N \N \N 30525 L.nummularia Lysimachia Lysimachia nummularia creeping-Jenny,moneywort \N \N \N \N 30526 B.apiculata Bunchosia Bunchosia apiculata \N \N \N \N \N 30527 B.salicifolia Baccharis Baccharis salicifolia \N \N \N \N \N 30528 \N order Petrosaviales \N \N \N \N \N 30529 R.lacustre Ribes Ribes lacustre bristly black currant,swamp currant,swamp gooseberry \N \N \N \N 30530 B.melanocarpa Bryonia Bryonia melanocarpa \N \N \N \N \N 30531 C.rhodopetala Conostegia Conostegia rhodopetala \N \N \N \N \N 30532 \N subspecies Viscum album subsp. coloratum \N \N \N \N \N 30533 A.suberosa Acronychia Acronychia suberosa \N \N \N \N \N 30534 C.albanica Crataegus Crataegus albanica \N \N \N \N \N 30535 K.pinnatifida Klasea Klasea pinnatifida \N \N \N \N \N 30536 S.socotrana Sansevieria Sansevieria socotrana \N \N \N \N \N 30537 C.aequatoriensis Cobaea Cobaea aequatoriensis \N \N \N \N \N 30538 R.ruiziana Ruellia Ruellia ruiziana \N \N \N \N \N 30539 G.ouregou Guatteria Guatteria ouregou \N \N \N \N \N 30540 C.weiningensis Camellia Camellia weiningensis \N \N \N \N \N 30541 M.yunnanensis Meeboldia Meeboldia yunnanensis \N \N \N \N \N 30542 F.WO2008086069 Ficus Ficus sp. WO2008086069 \N \N \N \N \N 30543 T.gesneriana Tulipa Tulipa gesneriana \N \N \N \N \N 30544 D.cordata Donnellsmithia Donnellsmithia cordata \N \N \N \N \N 30545 K.ananosma Kadsura Kadsura ananosma \N \N \N \N \N 30546 \N genus Henriettea \N \N \N \N \N 30547 S.camposii Saxifraga Saxifraga camposii \N \N \N \N \N 30548 \N varietas Magnolia acuminata var. subcordata \N \N \N \N \N 30549 \N varietas Aristida purpurea var. fendleriana \N \N \N \N \N 30550 C.creticum Cyclamen Cyclamen creticum \N \N \N \N \N 30551 C.elegantissima Cleome Cleome elegantissima \N \N \N \N \N 30552 A.ledermannii Aphanocalyx Aphanocalyx ledermannii \N \N \N \N \N 30553 \N genus Parmentiera \N \N \N \N \N 30554 P.brachyantha Pseuduvaria Pseuduvaria brachyantha \N \N \N \N \N 30555 M.chrysantha Mentzelia Mentzelia chrysantha \N \N \N \N \N 30556 S.alatoramulum Syzygium Syzygium alatoramulum \N \N \N \N \N 30557 M.dissecta Momordica Momordica dissecta \N \N \N \N \N 30558 S.muirii Senecio Senecio muirii \N \N \N \N \N 30559 G.scriptum Grammatophyllum Grammatophyllum scriptum \N \N \N \N \N 30560 B.madagascariensis Boscia Boscia madagascariensis \N \N \N \N \N 30561 P.sulphurea Pimelea Pimelea sulphurea \N \N \N \N \N 30562 P.viscosa Pseudoconyza Pseudoconyza viscosa \N \N \N \N \N 30563 P.helleri Passiflora Passiflora helleri \N \N \N \N \N 30564 T.suffocatum Trifolium Trifolium suffocatum \N \N \N \N \N 30565 P.hybridus Phedimus Phedimus hybridus \N \N \N \N \N 30566 C.babylonica Centaurea Centaurea babylonica \N \N \N \N \N 30567 P.poldinii Pinguicula Pinguicula poldinii \N \N \N \N \N 30568 C.calcaratum Cryptocentrum Cryptocentrum calcaratum \N \N \N \N \N 30569 C.AK288389 Carex Carex aff. geminata AK288389 \N \N \N \N \N 30570 M.formosana Musa Musa formosana \N \N \N \N \N 30571 O.striatum Otholobium Otholobium striatum \N \N \N \N \N 30572 P.aphrophila Pilea Pilea aphrophila \N \N \N \N \N 30573 S.mostueoides Strychnos Strychnos mostueoides \N \N \N \N \N 30574 \N varietas Rosa lucieae var. fujisanensis \N \N \N \N \N 30575 D.ulicifolia Daviesia Daviesia ulicifolia \N \N \N \N \N 30576 \N genus Montanoa \N \N \N \N \N 30577 P.ferrugineum Psilotrichum Psilotrichum ferrugineum \N \N \N \N \N 30578 E.cuneata Euphorbia Euphorbia cuneata \N \N \N \N \N 30579 \N genus Tepuia \N \N \N \N \N 30580 R.tuba Rhododendron Rhododendron tuba \N \N \N \N \N 30581 G.Maerim Goniothalamus Goniothalamus sp. Maerim \N \N \N \N \N 30582 G.delticola Glandularia Glandularia delticola \N \N \N \N \N 30583 T.dodsonii Tillandsia Tillandsia dodsonii \N \N \N \N \N 30584 M.SH-2010 Microcos Microcos sp. SH-2010 \N \N \N \N \N 30585 V.coriacea Vatica Vatica coriacea \N \N \N \N \N 30586 M.dilleniifolia Meliosma Meliosma dilleniifolia \N \N \N \N \N 30587 R.lycioides Rhamnus Rhamnus lycioides \N \N \N \N \N 30588 G.pauciflora Gyrandra Gyrandra pauciflora \N \N \N \N \N 30589 H.chillensis Hypochaeris Hypochaeris chillensis \N \N \N \N \N 30590 E.repens Epidendrum Epidendrum repens \N \N \N \N \N 30591 \N genus Deckenia \N \N \N \N \N 30592 C.subornata Catabrosella Catabrosella subornata \N \N \N \N \N 30593 S.alpigena Stachys Stachys alpigena \N \N \N \N \N 30594 B.latifolium Brachysema Brachysema latifolium \N \N \N \N \N 30595 M.wittiorum Morus Morus wittiorum \N \N \N \N \N 30596 S.hieraciifolia Scorzonera Scorzonera hieraciifolia \N \N \N \N \N 30597 B.nitida Banara Banara nitida \N \N \N \N \N 30598 A.32 Apocynum Apocynum sp. Chase et al. 32 \N \N \N \N \N 30599 T.JS5911 unclassified Taraxacum Taraxacum (sect. Fontana) sp. JS5911 \N \N \N \N \N 30600 P.multiflora Pavonia Pavonia multiflora \N \N \N \N \N 30601 \N genus Acidonia \N \N \N \N \N 30602 \N forma Rosa roxburghii f. normalis \N \N \N \N \N 30603 P.tennantii Polyscias Polyscias tennantii \N \N \N \N \N 30604 L.curvisquama Ligularia Ligularia curvisquama \N \N \N \N \N 30605 D.roigii Dorstenia Dorstenia roigii \N \N \N \N \N 30606 S.floribundum Sideroxylon Sideroxylon floribundum \N \N \N \N \N 30607 N.decaisnei Notoleptopus Notoleptopus decaisnei \N \N \N \N \N 30608 \N varietas Luzula effusa var. chinensis \N \N \N \N \N 30609 \N varietas Campanula glomerata var. dahurica \N \N \N \N \N 30610 S.lanata Solms-laubachia Solms-laubachia lanata \N \N \N \N \N 30611 B.macrophylla Boehmeria Boehmeria macrophylla \N \N \N \N \N 30612 T.majus Tropaeolum Tropaeolum majus nasturtium \N \N \N \N 30613 \N tribe Fagopyreae \N \N \N \N \N 30614 A.alstonii Adromischus Adromischus alstonii \N \N \N \N \N 30615 D.latifolia Dubautia Dubautia latifolia \N \N \N \N \N 30616 D.SH-2010 Dalbergia Dalbergia sp. SH-2010 \N \N \N \N \N 30617 \N tribe Flacourtieae \N \N \N \N \N 30618 I.guillotii Ixora Ixora guillotii \N \N \N \N \N 30619 M.DTR-2007 Muehlenbeckia Muehlenbeckia aff. complexa DTR-2007 \N \N \N \N \N 30620 F.subtrinervia Ficus Ficus subtrinervia \N \N \N \N \N 30621 T.coerulea Trachymene Trachymene coerulea \N \N \N \N \N 30622 N.mezcalaensis Neobuxbaumia Neobuxbaumia mezcalaensis \N \N \N \N \N 30623 B.coronaria Brodiaea Brodiaea coronaria \N \N \N \N \N 30624 A.5816 Asclepias Asclepias cf. notha Fishbein 5816 \N \N \N \N \N 30625 B.korotkiji Bromus Bromus korotkiji \N \N \N \N \N 30626 A.polystachya Aphanamixis Aphanamixis polystachya \N \N \N \N \N 30627 M.inversa Metalasia Metalasia inversa \N \N \N \N \N 30628 \N subfamily Tilioideae \N \N \N \N \N 30629 S.arbutifolia Salix Salix arbutifolia \N \N \N \N \N 30630 E.amoena Ehretia Ehretia amoena \N \N \N \N \N 30631 C.5053 Cuscuta Cuscuta aff. floribunda King & Soderstrom 5053 \N \N \N \N \N 30632 A.leucura Aerva Aerva leucura \N \N \N \N \N 30633 S.chinii Spelaeanthus Spelaeanthus chinii \N \N \N \N \N 30634 S.quadrifida Stelis Stelis quadrifida \N \N \N \N \N 30635 \N genus Allanblackia \N \N \N \N \N 30636 T.bisattenuata Tetraplasandra Tetraplasandra bisattenuata \N \N \N \N \N 30637 P.pedicellatus Phaseolus Phaseolus pedicellatus \N \N \N \N \N 30638 Q.rubra Quercus Quercus rubra northern red oak,red oak \N \N \N \N 30639 \N genus Caucanthus \N \N \N \N \N 30640 H.panlongqi Hemsleya Hemsleya panlongqi \N \N \N \N \N 30641 M.japonicum Maianthemum Maianthemum japonicum \N \N \N \N \N 30642 I.balsamina Impatiens Impatiens balsamina garden balsam,rose balsam \N \N \N \N 30643 P.propinquum Ptychosperma Ptychosperma propinquum \N \N \N \N \N 30644 \N varietas Fritillaria cirrhosa var. ecirrhosa \N \N \N \N \N 30645 O.laxiflora Ononis Ononis laxiflora \N \N \N \N \N 30646 A.robustum Achnatherum Achnatherum robustum \N \N \N \N \N 30647 I.opaca Ilex Ilex opaca American holly \N \N \N \N 30648 J.caespitosa Junellia Junellia caespitosa \N \N \N \N \N 30649 \N genus Puntia \N \N \N \N \N 30650 G.nutans Garcia Garcia nutans \N \N \N \N \N 30651 E.cylindricum Epilobium Epilobium cylindricum \N \N \N \N \N 30652 P.dubia Phacelia Phacelia dubia \N \N \N \N \N 30653 S.herbilegorum Silene Silene herbilegorum \N \N \N \N \N 30654 \N subspecies Sisyrinchium commutatum subsp. commutatum \N \N \N \N \N 30655 D.alpestris Dactylorhiza Dactylorhiza alpestris \N \N \N \N \N 30656 A.microlobus Amalocalyx Amalocalyx microlobus \N \N \N \N \N 30657 O.pyrenaica Onobrychis Onobrychis pyrenaica \N \N \N \N \N 30658 L.bahamensis Lasiocroton Lasiocroton bahamensis \N \N \N \N \N 30659 T.paniculatum Talinum Talinum paniculatum fameflower,jewels-of-Opar \N \N \N \N 30660 \N genus Adenaria \N \N \N \N \N 30661 \N genus Calicotome \N \N \N \N \N 30662 A.juvenalis Aegilops Aegilops juvenalis \N \N \N \N \N 30663 \N genus Luerella \N \N \N \N \N 30664 A.olsenii Acacia Acacia olsenii \N \N \N \N \N 30665 H.vaughanii Hyophorbe Hyophorbe vaughanii \N \N \N \N \N 30666 C.dentifolia Calceolaria Calceolaria dentifolia \N \N \N \N \N 30667 C.angustifolia Cleome Cleome angustifolia \N \N \N \N \N 30668 \N varietas Perilla frutescens var. arguta \N \N \N \N \N 30669 \N varietas Brassica juncea var. utilis \N \N \N \N \N 30670 T.japonica Themeda Themeda japonica \N \N \N \N \N 30671 \N subspecies Syringa reticulata subsp. amurensis \N \N \N \N \N 30672 \N genus Dolichoglottis \N \N \N \N \N 30673 C.tenellus Chaetanthus Chaetanthus tenellus \N \N \N \N \N 30674 A.schmalhausenii Astragalus Astragalus schmalhausenii \N \N \N \N \N 30675 G.schaueriana Gomidesia Gomidesia schaueriana \N \N \N \N \N 30676 \N genus Niphogeton \N \N \N \N \N 30677 \N genus Colquhounia \N \N \N \N \N 30678 S.suborbiculare Syzygium Syzygium suborbiculare \N \N \N \N \N 30679 I.yuennanensis Isodon Isodon yuennanensis \N \N \N \N \N 30680 T.fissinervia Tibouchina Tibouchina fissinervia \N \N \N \N \N 30681 T.rufa Tephroseris Tephroseris rufa \N \N \N \N \N 30682 C.BGB-2011 Collinsia Collinsia sp. BGB-2011 \N \N \N \N \N 30683 S.glabrescens Sabicea Sabicea glabrescens \N \N \N \N \N 30684 R.orientalis Rutidea Rutidea orientalis \N \N \N \N \N 30685 E.laxiflorus Euonymus Euonymus laxiflorus \N \N \N \N \N 30686 \N genus Argusia \N \N \N \N \N 30687 A.scopulorum Aquilegia Aquilegia scopulorum \N \N \N \N \N 30688 L.quercina Lactuca Lactuca quercina \N \N \N \N \N 30689 D.bicornuta Downingia Downingia bicornuta \N \N \N \N \N 30690 H.NR-2009 Hippeastrum Hippeastrum sp. NR-2009 \N \N \N \N \N 30691 \N genus Lycochloa \N \N \N \N \N 30692 \N subspecies Solanum commersonii subsp. malmeanum \N \N \N \N \N 30693 F.gracillima Frailea Frailea gracillima \N \N \N \N \N 30694 U.macrolepis Uncinia Uncinia macrolepis \N \N \N \N \N 30695 O.leptolepis Onopordum Onopordum leptolepis \N \N \N \N \N 30696 G.tetragonum Glossoloma Glossoloma tetragonum \N \N \N \N \N 30697 H.5816 Hypochaeris Hypochaeris cf. sessiliflora Weigend 5816 \N \N \N \N \N 30698 C.albicans Cyathopsis Cyathopsis albicans \N \N \N \N \N 30699 A.thalassoscopica Allocasuarina Allocasuarina thalassoscopica \N \N \N \N \N 30700 A.truncatum Acer Acer mono x Acer truncatum \N \N \N \N \N 30701 S.vanderietiae Sarcocaulon Sarcocaulon vanderietiae \N \N \N \N \N 30702 A.verlotiorum Artemisia Artemisia verlotiorum \N \N \N \N \N 30703 P.zenkeri Pterorhachis Pterorhachis zenkeri \N \N \N \N \N 30704 \N tribe Erysimeae \N \N \N \N \N 30705 L.delicatula Lloydia Lloydia delicatula \N \N \N \N \N 30706 S.microphyllus Sphinctanthus Sphinctanthus microphyllus \N \N \N \N \N 30707 P.cinerea Pimelea Pimelea cinerea \N \N \N \N \N 30708 C.varzearum Costus Costus varzearum \N \N \N \N \N 30709 E.guayanensis Epidryos Epidryos guayanensis \N \N \N \N \N 30710 M.albiflora Metrosideros Metrosideros albiflora \N \N \N \N \N 30711 P.grandiflora Potentilla Potentilla grandiflora \N \N \N \N \N 30712 G.flabellata Gingidia Gingidia flabellata \N \N \N \N \N 30713 A.carduus Atractylis Atractylis carduus \N \N \N \N \N 30714 H.argillaceus Hesperidanthus Hesperidanthus argillaceus \N \N \N \N \N 30715 P.BL-2011a Psychotria Psychotria sp. BL-2011a \N \N \N \N \N 30716 C.agrestis Circaeaster Circaeaster agrestis \N \N \N \N \N 30717 P.embergeri Phyllanthus Phyllanthus embergeri \N \N \N \N \N 30718 \N genus Scoliopus \N \N \N \N \N 30719 B.umbraculifolia Begonia Begonia umbraculifolia \N \N \N \N \N 30720 H.erectum Hypericum Hypericum erectum \N \N \N \N \N 30721 \N genus Oncella \N \N \N \N \N 30722 \N varietas Cryptocoryne x purpurea var. purpurea \N \N \N \N \N 30723 N.sulcatum Nematoceras Nematoceras sulcatum \N \N \N \N \N 30724 H.bojerianus Hibiscus Hibiscus bojerianus \N \N \N \N \N 30725 B.divaricarpa Boechera Boechera divaricarpa \N \N \N \N \N 30726 \N genus Itaya \N \N \N \N \N 30727 T.divaricata Thelypodiopsis Thelypodiopsis divaricata \N \N \N \N \N 30728 \N varietas Rhododendron mitriforme var. setaceum \N \N \N \N \N 30729 K.northiae Kniphofia Kniphofia northiae \N \N \N \N \N 30730 A.ramentaceum Aulosepalum Aulosepalum ramentaceum \N \N \N \N \N 30731 R.acuminata Rafnia Rafnia acuminata \N \N \N \N \N 30732 O.celebica Orophea Orophea celebica \N \N \N \N \N 30733 F.laxiglumis Fimbristylis Fimbristylis laxiglumis \N \N \N \N \N 30734 P.jasminoides Pandorea Pandorea jasminoides bowerplant \N \N \N \N 30735 C.tientaiensis Carpinus Carpinus tientaiensis \N \N \N \N \N 30736 P.guilfoylei Polyscias Polyscias guilfoylei \N \N \N \N \N 30737 C.microchaeta Carex Carex microchaeta \N \N \N \N \N 30738 W.congesta Wahlenbergia Wahlenbergia congesta \N \N \N \N \N 30739 S.1253 Saussurea Saussurea cf. tatsienensis Liu 1253 \N \N \N \N \N 30740 S.margaritae Schtschurowskia Schtschurowskia margaritae \N \N \N \N \N 30741 E.sericeum Eritrichium Eritrichium sericeum \N \N \N \N \N 30742 S.plummerae Stevia Stevia plummerae \N \N \N \N \N 30743 N.danseri Nepenthes Nepenthes danseri \N \N \N \N \N 30744 S.mougeotii Sorbus Sorbus mougeotii \N \N \N \N \N 30745 G.alpina Gentiana Gentiana alpina \N \N \N \N \N 30746 C.mexicana Calceolaria Calceolaria mexicana \N \N \N \N \N 30747 C.hispanica Carlina Carlina hispanica \N \N \N \N \N 30748 H.cordifolia Heteropterys Heteropterys cordifolia \N \N \N \N \N 30749 F.decipiens Filicium Filicium decipiens \N \N \N \N \N 30750 T.virgata Tolpis Tolpis virgata \N \N \N \N \N 30751 \N genus Hexacyrtis \N \N \N \N \N 30752 C.carnosa Cardamine Cardamine carnosa \N \N \N \N \N 30753 S.alvaroana Sophronitis Sophronitis alvaroana \N \N \N \N \N 30754 R.tunquinensis Rosa Rosa tunquinensis \N \N \N \N \N 30755 J.humilis Jarava Jarava humilis \N \N \N \N \N 30756 C.villanuevae Calandrinia Calandrinia villanuevae \N \N \N \N \N 30757 C.iripa Cynometra Cynometra iripa \N \N \N \N \N 30758 S.myoxotrichum Solanum Solanum myoxotrichum \N \N \N \N \N 30759 A.daniellii Aframomum Aframomum daniellii \N \N \N \N \N 30760 \N subspecies Vicia nigricans subsp. gigantea \N \N \N \N \N 30761 P.linearis Petalonyx Petalonyx linearis \N \N \N \N \N 30762 \N varietas Mimosa texana var. filipes \N \N \N \N \N 30763 T.bakhtiaricus Tragopogon Tragopogon bakhtiaricus \N \N \N \N \N 30764 L.aromatica Limnophila Limnophila aromatica \N \N \N \N \N 30765 P.magnifica Protea Protea magnifica bearded protea,queen protea \N \N \N \N 30766 S.hirsutum Schizostigma Schizostigma hirsutum \N \N \N \N \N 30767 C.walkeri Crotalaria Crotalaria walkeri \N \N \N \N \N 30768 C.7 Chrysocoma Chrysocoma sp. 2 Balele 7 \N \N \N \N \N 30769 P.cultratus Podochilus Podochilus cultratus \N \N \N \N \N 30770 L.subnudum Limeum Limeum subnudum \N \N \N \N \N 30771 F.rochetiana Faurea Faurea rochetiana \N \N \N \N \N 30772 \N varietas Ribes sanguineum var. glutinosum \N \N \N \N \N 30773 D.echinatum Delosperma Delosperma echinatum \N \N \N \N \N 30774 M.retusa Myrsine Myrsine retusa \N \N \N \N \N 30775 S.bororum Sparattanthelium Sparattanthelium bororum \N \N \N \N \N 30776 P.javanicum Paphiopedilum Paphiopedilum javanicum \N \N \N \N \N 30777 D.244 Dialypetalum Dialypetalum sp. Gustafsson 244 \N \N \N \N \N 30778 C.diffusum Cerastium Cerastium diffusum \N \N \N \N \N 30779 V.hatschbachii Vellozia Vellozia hatschbachii \N \N \N \N \N 30780 E.websterianus Echinocereus Echinocereus websterianus \N \N \N \N \N 30781 \N subspecies Euphorbia tithymaloides subsp. padifolia \N \N \N \N \N 30782 T.somalensis Thamnosma Thamnosma somalensis \N \N \N \N \N 30783 C.kotschyi Centaurea Centaurea kotschyi \N \N \N \N \N 30784 \N no rank environmental samples Taxonomy:404813 \N \N \N \N \N 30785 \N subspecies Limnanthes alba subsp. gracilis \N \N \N \N \N 30786 S.diphyllum Stylophorum Stylophorum diphyllum celandine-poppy,wood-poppy \N \N \N \N 30787 L.echinata Luzula Luzula echinata \N \N \N \N \N 30788 P.ixorifolia Pyrostria Pyrostria ixorifolia \N \N \N \N \N 30789 C.ovalifolius Croton Croton ovalifolius \N \N \N \N \N 30790 A.somalensis Acleisanthes Acleisanthes somalensis \N \N \N \N \N 30791 L.romii Leonardoxa Leonardoxa romii \N \N \N \N \N 30792 S.tenuifolia Sanguisorba Sanguisorba tenuifolia \N \N \N \N \N 30793 T.SH-2010 Theobroma Theobroma sp. SH-2010 \N \N \N \N \N 30794 E.bupleurifolia Euphorbia Euphorbia bupleurifolia \N \N \N \N \N 30795 \N subspecies Sidalcea malviflora subsp. californica \N \N \N \N \N 30796 \N family Euphorbiaceae spurge family \N \N \N \N 30797 H.filicaule Helichrysum Helichrysum filicaule \N \N \N \N \N 30798 S.sericeiceps Stylosanthes Stylosanthes sericeiceps \N \N \N \N \N 30799 M.rigens Muhlenbergia Muhlenbergia rigens \N \N \N \N \N 30800 \N genus Monanthes \N \N \N \N \N 30801 A.filiforme Arisaema Arisaema filiforme \N \N \N \N \N 30802 C.ovata Charpentiera Charpentiera ovata \N \N \N \N \N 30803 M.aculeatum Machaerium Machaerium aculeatum \N \N \N \N \N 30804 \N genus Plagiobasis \N \N \N \N \N 30805 A.fragrans Antiphiona Antiphiona fragrans \N \N \N \N \N 30806 C.madurensis Crotalaria Crotalaria madurensis \N \N \N \N \N 30807 A.lusitanicus Asphodelus Asphodelus lusitanicus \N \N \N \N \N 30808 P.maxwellii Phymatocarpus Phymatocarpus maxwellii \N \N \N \N \N 30809 M.9/1996 Marathrum Marathrum cf. oxycarpum Cachoeirc 9/1996 \N \N \N \N \N 30810 \N genus Xylomelum \N \N \N \N \N 30811 T.nebrodensis Tragopogon Tragopogon nebrodensis \N \N \N \N \N 30812 S.CLP-2006 Spinacia Spinacia sp. CLP-2006 \N \N \N \N \N 30813 S.californicum Sisyrinchium Sisyrinchium californicum \N \N \N \N \N 30814 E.baileyana Eucalyptus Eucalyptus baileyana \N \N \N \N \N 30815 C.gonocarpum Chrysophyllum Chrysophyllum gonocarpum \N \N \N \N \N 30816 C.paniculatum Coelospermum Coelospermum paniculatum \N \N \N \N \N 30817 M.mexicana Maxillaria Maxillaria mexicana \N \N \N \N \N 30818 C.sappan Caesalpinia Caesalpinia sappan Indian redwood,sappanwood \N \N \N \N 30819 O.WMW-2009 Ornithidium Ornithidium sp. WMW-2009 \N \N \N \N \N 30820 B.multifida Brachyscome Brachyscome multifida \N \N \N \N \N 30821 C.truncata Calycadenia Calycadenia truncata rosin weed \N \N \N \N 30822 \N varietas Cardiocrinum cordatum var. glehnii \N \N \N \N \N 30823 I.briartii Impatiens Impatiens briartii \N \N \N \N \N 30824 T.bifoliolata Tetraberlinia Tetraberlinia bifoliolata ekaba \N \N \N \N 30825 S.pallidiflorus Streptocarpus Streptocarpus pallidiflorus \N \N \N \N \N 30826 \N subtribe Crepidinae \N \N \N \N \N 30827 \N varietas Penstemon virgatus var. virgatus \N \N \N \N \N 30828 C.oblongifolia Cistanthe Cistanthe humilis x Calandrinia oblongifolia \N \N \N \N \N 30829 T.bogoriense Teijsmanniodendron Teijsmanniodendron bogoriense \N \N \N \N \N 30830 M.coccinea Musa Musa coccinea \N \N \N \N \N 30831 C.auricomus Convolvulus Convolvulus auricomus \N \N \N \N \N 30832 G.micranthus Gonocarpus Gonocarpus micranthus \N \N \N \N \N 30833 E.'Guyana' Eleocharis Eleocharis sp. 'Guyana' \N \N \N \N \N 30834 T.grande Thelionema Thelionema grande \N \N \N \N \N 30835 S.princeae Spermacoce Spermacoce princeae \N \N \N \N \N 30836 Z.simpsonii Zephyranthes Zephyranthes simpsonii \N \N \N \N \N 30837 E.sinaloensis Euphorbia Euphorbia sinaloensis \N \N \N \N \N 30838 P.choreiana Prunus Prunus choreiana \N \N \N \N \N 30839 P.saurocephala Pleurothallis Pleurothallis saurocephala \N \N \N \N \N 30840 R.verticillata Rauvolfia Rauvolfia verticillata \N \N \N \N \N 30841 \N genus Neuropeltis \N \N \N \N \N 30842 \N subspecies Dombeya acutangula subsp. acutangula \N \N \N \N \N 30843 S.lepidota Siparuna Siparuna lepidota \N \N \N \N \N 30844 M.macrostachyus Mallotus Mallotus macrostachyus \N \N \N \N \N 30845 K.kotschyi Klasea Klasea kotschyi \N \N \N \N \N 30846 B.picturatum Bulbophyllum Bulbophyllum picturatum \N \N \N \N \N 30847 O.gibbosus Oligochaetochilus Oligochaetochilus gibbosus \N \N \N \N \N 30848 H.comosa Hippocrepis Hippocrepis comosa \N \N \N \N \N 30849 L.sample environmental samples Taxonomy:493874 Lolium environmental sample \N \N \N \N \N 30850 \N genus Pityrocarpa \N \N \N \N \N 30851 \N genus Keraudrenia \N \N \N \N \N 30852 R.2425 Rhodophiala Rhodophiala aff. bifida Meerow 2425 \N \N \N \N \N 30853 S.talinoides Senecio Senecio talinoides \N \N \N \N \N 30854 N.meyeri Nassella Nassella meyeri \N \N \N \N \N 30855 L.lamottei Lens Lens lamottei \N \N \N \N \N 30856 E.multumbellifera Erica Erica multumbellifera \N \N \N \N \N 30857 G.tricornutum Galium Galium tricornutum \N \N \N \N \N 30858 \N genus Stauranthera \N \N \N \N \N 30859 P.exilis Pentachaeta Pentachaeta exilis \N \N \N \N \N 30860 M.rupicola Mimulus Mimulus rupicola \N \N \N \N \N 30861 \N genus Mirandea \N \N \N \N \N 30862 L.decumbens Lotononis Lotononis decumbens \N \N \N \N \N 30863 L.aestivalis Liatris Liatris aestivalis \N \N \N \N \N 30864 Z.nudicaulis Zeltnera Zeltnera nudicaulis \N \N \N \N \N 30865 C.virginianum Chrysogonum Chrysogonum virginianum \N \N \N \N \N 30866 P.corymbosa Polycarpaea Polycarpaea corymbosa \N \N \N \N \N 30867 L.bennettii Lithocarpus Lithocarpus bennettii \N \N \N \N \N 30868 R.monantha Rytigynia Rytigynia monantha \N \N \N \N \N 30869 B.oaxacana Begonia Begonia oaxacana \N \N \N \N \N 30870 \N genus Qualea \N \N \N \N \N 30871 \N genus Lampayo \N \N \N \N \N 30872 S.maccalliana Salix Salix maccalliana \N \N \N \N \N 30873 M.flanaganii Muraltia Muraltia flanaganii \N \N \N \N \N 30874 S.galpinii Streptocarpus Streptocarpus galpinii \N \N \N \N \N 30875 \N subspecies Gymnocalycium reductum subsp. reductum \N \N \N \N \N 30876 C.SH-2010 Coccinia Coccinia sp. SH-2010 \N \N \N \N \N 30877 \N subspecies Genista dorycnifolia subsp. grosii \N \N \N \N \N 30878 H.lacteum Helichrysum Helichrysum lacteum \N \N \N \N \N 30879 C.orientalis Chrysochloa Chrysochloa orientalis \N \N \N \N \N 30880 A.squamosa Annona Annona squamosa ata,custard-apple,sugar-apple,sweetsop \N \N \N \N 30881 \N genus Isoberlinia \N \N \N \N \N 30882 \N genus Ileostylus \N \N \N \N \N 30883 E.caeruleum Exacum Exacum caeruleum \N \N \N \N \N 30884 C.scorpioides Coronilla Coronilla scorpioides \N \N \N \N \N 30885 P.fruticosa Pomaria Pomaria fruticosa \N \N \N \N \N 30886 F.microcarpa Ficus Ficus microcarpa Indian laurel fig,Malay banyan,curtain fig,laurel fig \N \N \N \N 30887 P.scariosus Penstemon Penstemon scariosus \N \N \N \N \N 30888 \N genus Talbotia \N \N \N \N \N 30889 D.superba Dombeya Dombeya superba \N \N \N \N \N 30890 P.tellimoides Peltoboykinia Peltoboykinia tellimoides \N \N \N \N \N 30891 \N varietas Aegilops comosa var. subventricosa \N \N \N \N \N 30892 B.macroceras Brownleea Brownleea macroceras \N \N \N \N \N 30893 T.elachophyllum Trymalium Trymalium elachophyllum \N \N \N \N \N 30894 L.ovatus Lagurus Lagurus ovatus \N \N \N \N \N 30895 V.faba Vicia Vicia faba broad bean,faba bean,fava bean \N \N \N \N 30896 P.torallyi Parajubaea Parajubaea torallyi \N \N \N \N \N 30897 B.forrestii Braya Braya forrestii \N \N \N \N \N 30898 C.limosa Carex Carex limosa \N \N \N \N \N 30899 \N no rank environmental samples Taxonomy:202725 \N \N \N \N \N 30900 T.longebracteatus Tristerix Tristerix longebracteatus \N \N \N \N \N 30901 B.axilliflora Banara Banara axilliflora \N \N \N \N \N 30902 P.aspalathoides Pultenaea Pultenaea aspalathoides \N \N \N \N \N 30903 A.dulcis Achimenes Achimenes dulcis \N \N \N \N \N 30904 H.marinum Hordeum Hordeum marinum seaside barley \N \N \N \N 30905 \N varietas Prunus pumila var. besseyi western sand cherry \N \N \N \N 30906 P.minutiflora Piptadenia Piptadenia minutiflora \N \N \N \N \N 30907 \N genus Cardioteucris \N \N \N \N \N 30908 S.panganensis Strychnos Strychnos panganensis \N \N \N \N \N 30909 R.258 Rytigynia Rytigynia sp. Karehed et al. 258 \N \N \N \N \N 30910 E.glaphyra Erica Erica glaphyra \N \N \N \N \N 30911 Z.4654 Zygophyllum Zygophyllum aff. maritimum Dold 4654 \N \N \N \N \N 30912 M.albicaulis Mentzelia Mentzelia albicaulis \N \N \N \N \N 30913 K.subverticillata Kohautia Kohautia subverticillata \N \N \N \N \N 30914 F.gracilipes Fagraea Fagraea gracilipes \N \N \N \N \N 30915 D.s.n. Davilla Davilla cf. kunthii Zartman s.n. \N \N \N \N \N 30916 S.refractum Solanum Solanum refractum \N \N \N \N \N 30917 \N subtribe Oncidiinae \N \N \N \N \N 30918 L.MAG-2009 Licania Licania sp. MAG-2009 \N \N \N \N \N 30919 S.yunnanense Satyrium Satyrium yunnanense \N \N \N \N \N 30920 A.trialata Aulotandra Aulotandra trialata \N \N \N \N \N 30921 A.angustifolia Araujia Araujia angustifolia \N \N \N \N \N 30922 H.peltata Hernandia Hernandia peltata \N \N \N \N \N 30923 \N genus Orchidantha \N \N \N \N \N 30924 \N genus Orthophytum \N \N \N \N \N 30925 T.williamsii Tocoyena Tocoyena williamsii \N \N \N \N \N 30926 C.cutucuensis Corytoplectus Corytoplectus cutucuensis \N \N \N \N \N 30927 T.obliterum Tribolium Tribolium obliterum \N \N \N \N \N 30928 O.tenuifolium Ornithogalum Ornithogalum tenuifolium \N \N \N \N \N 30929 L.CVM-2007-6 Leandra Leandra sp. CVM-2007-6 \N \N \N \N \N 30930 B.densifolia Brunfelsia Brunfelsia densifolia \N \N \N \N \N 30931 P.pulvinatum Papaver Papaver pulvinatum \N \N \N \N \N 30932 A.tylodes Aspalathus Aspalathus tylodes \N \N \N \N \N 30933 B.smitinandii Bulbophyllum Bulbophyllum smitinandii \N \N \N \N \N 30934 \N genus Camptostylus \N \N \N \N \N 30935 R.horrida Rubia Rubia horrida \N \N \N \N \N 30936 \N genus Dioclea \N \N \N \N \N 30937 C.chinensis Cryptothladia Cryptothladia chinensis \N \N \N \N \N 30938 C.flanaganii Cyrtanthus Cyrtanthus flanaganii \N \N \N \N \N 30939 S.notothixoides Scurrula Scurrula notothixoides \N \N \N \N \N 30940 \N varietas Carex filifolia var. erostrata \N \N \N \N \N 30941 A.baumgartnerianum Alyssum Alyssum baumgartnerianum \N \N \N \N \N 30942 S.lemmonii Silene Silene lemmonii Lemmon's catchfly \N \N \N \N 30943 P.graveolens Peperomia Peperomia graveolens \N \N \N \N \N 30944 \N genus Hedyscepe \N \N \N \N \N 30945 D.groenlandica Draba Draba groenlandica \N \N \N \N \N 30946 \N varietas Rubus longisepalus var. tozawae \N \N \N \N \N 30947 F.pallidiflora Fritillaria Fritillaria pallidiflora \N \N \N \N \N 30948 C.moelleri Corynopuntia Corynopuntia moelleri \N \N \N \N \N 30949 P.grantii Pasaccardoa Pasaccardoa grantii \N \N \N \N \N 30950 \N genus Tyrimnus \N \N \N \N \N 30951 A.flexuosa Agonis Agonis flexuosa \N \N \N \N \N 30952 S.occidentalis Senna Senna occidentalis antbush,coffee senna \N \N \N \N 30953 L.vavilovii Lupinus Lupinus vavilovii \N \N \N \N \N 30954 P.edmundoi Passiflora Passiflora edmundoi \N \N \N \N \N 30955 L.CT-2007 Liparis Liparis sp. CT-2007 \N \N \N \N \N 30956 S.glabra Stemodia Stemodia glabra \N \N \N \N \N 30957 A.patens Anemone Anemone patens \N \N \N \N \N 30958 P.grandidentata Populus Populus alba x Populus grandidentata \N \N \N \N \N 30959 M.indica Macaranga Macaranga indica \N \N \N \N \N 30960 V.hoyoense Vincetoxicum Vincetoxicum hoyoense \N \N \N \N \N 30961 \N genus Nothobartsia \N \N \N \N \N 30962 D.nidiformis Drosera Drosera nidiformis \N \N \N \N \N 30963 \N subspecies Linaria multicaulis subsp. multicaulis \N \N \N \N \N 30964 \N subspecies Echinops ritro subsp. ruthenicus \N \N \N \N \N 30965 N.tabacum Nicotiana Nicotiana tabacum American tobacco,common tobacco,tobacco \N \N \N \N 30966 P.multiflorus Penstemon Penstemon multiflorus \N \N \N \N \N 30967 O.iwarenge Orostachys Orostachys iwarenge \N \N \N \N \N 30968 M.GC18 Micromeria Micromeria cf. benthamii Meimberg GC18 \N \N \N \N \N 30969 H.macrogonus Hibiscus Hibiscus macrogonus \N \N \N \N \N 30970 \N genus Lysicarpus \N \N \N \N \N 30971 O.insectifera Ophrys Ophrys insectifera \N \N \N \N \N 30972 I.mannii Icacina Icacina mannii \N \N \N \N \N 30973 P.tetramerus Pachyanthus Pachyanthus tetramerus \N \N \N \N \N 30974 C.pavonii Calceolaria Calceolaria pavonii \N \N \N \N \N 30975 \N family Cornaceae dogwood family \N \N \N \N 30976 S.elegantissima Schefflera Schefflera elegantissima \N \N \N \N \N 30977 V.amoena Vicia Vicia amoena \N \N \N \N \N 30978 Y.australiensis Yakirra Yakirra australiensis \N \N \N \N \N 30979 T.arroyoensis Tillandsia Tillandsia arroyoensis \N \N \N \N \N 30980 C.tatsienense Chrysanthemum Chrysanthemum tatsienense \N \N \N \N \N 30981 P.kerrii Platanus Platanus kerrii \N \N \N \N \N 30982 A.acuminata Anaxagorea Anaxagorea acuminata \N \N \N \N \N 30983 P.graminifolia Polianthes Polianthes graminifolia \N \N \N \N \N 30984 R.ophioglossifolius Ranunculus Ranunculus ophioglossifolius \N \N \N \N \N 30985 L.albiflora Logania Logania albiflora \N \N \N \N \N 30986 O.4937 Oncostemum Oncostemum sp. Villiers et al. 4937 \N \N \N \N \N 30987 C.argillosus Calochortus Calochortus argillosus \N \N \N \N \N 30988 L.cuminoides Lagoecia Lagoecia cuminoides \N \N \N \N \N 30989 P.euphratica Populus Populus euphratica \N \N \N \N \N 30990 A.enterocarpa Acacia Acacia enterocarpa jumping jack wattle \N \N \N \N 30991 D.hamiltonii Dioscorea Dioscorea hamiltonii \N \N \N \N \N 30992 S.elegans Stephania Stephania elegans \N \N \N \N \N 30993 B.oblongifolia Blumea Blumea oblongifolia \N \N \N \N \N 30994 M.polymorpha Metrosideros Metrosideros polymorpha 'ohi'a lehua \N \N \N \N 30995 A.blackiana Alseis Alseis blackiana \N \N \N \N \N 30996 G.bedggoodiana Grevillea Grevillea bedggoodiana \N \N \N \N \N 30997 K.NSW904934 Kunzea Kunzea sp. A NSW904934 \N \N \N \N \N 30998 G.tasmanica Gaultheria Gaultheria tasmanica \N \N \N \N \N 30999 A.malvastroides Anisodontea Anisodontea malvastroides \N \N \N \N \N 31000 B.squarrosa Bidens Bidens squarrosa \N \N \N \N \N 31001 T.prieureana Trichilia Trichilia prieureana \N \N \N \N \N 31002 \N tribe Trichocereeae \N \N \N \N \N 31003 G.fruticulosus Gongylocarpus Gongylocarpus fruticulosus \N \N \N \N \N 31004 S.pubistyla Shorea Shorea pubistyla \N \N \N \N \N 31005 H.bracteata Hibbertia Hibbertia bracteata \N \N \N \N \N 31006 C.uniflora Centaurea Centaurea uniflora \N \N \N \N \N 31007 M.lehmannii Masdevallia Masdevallia lehmannii \N \N \N \N \N 31008 D.siifolia Diplotaxis Diplotaxis siifolia \N \N \N \N \N 31009 \N subspecies Cornus hongkongensis subsp. hongkongensis \N \N \N \N \N 31010 T.alpinum Thlaspi Thlaspi alpinum \N \N \N \N \N 31011 T.99058 Tolumnia Tolumnia sp. Whitten 99058 \N \N \N \N \N 31012 A.septentrionalis Androsace Androsace septentrionalis bei dian di mei,pygmy flower,rock jasmine \N \N \N \N 31013 \N varietas Carex scopulorum var. prionophylla \N \N \N \N \N 31014 G.rupestris Guatteria Guatteria rupestris \N \N \N \N \N 31015 B.HT-#1021 Burmannia Burmannia sp. HT-#1021 \N \N \N \N \N 31016 E.fistulosa Elegia Elegia fistulosa \N \N \N \N \N 31017 P.heterophylla Pinanga Pinanga heterophylla \N \N \N \N \N 31018 \N genus Galeottia \N \N \N \N \N 31019 A.leiophylla Acacia Acacia leiophylla \N \N \N \N \N 31020 W.toensis Weigela Weigela toensis \N \N \N \N \N 31021 P.randsii Paphiopedilum Paphiopedilum randsii \N \N \N \N \N 31022 \N genus Apterosperma \N \N \N \N \N 31023 \N varietas Aconitum yuparense var. apoiense \N \N \N \N \N 31024 R.pectinellus Rubus Rubus pectinellus \N \N \N \N \N 31025 M.revoluta Matthiola Matthiola revoluta \N \N \N \N \N 31026 S.haliakalae Stenogyne Stenogyne haliakalae \N \N \N \N \N 31027 O.ramosa Oreomyrrhis Oreomyrrhis ramosa \N \N \N \N \N 31028 \N subspecies Aichryson pachycaulon subsp. parviflorum \N \N \N \N \N 31029 \N genus Sphenotoma \N \N \N \N \N 31030 H.capitatum Hydrophyllum Hydrophyllum capitatum \N \N \N \N \N 31031 X.hoffmannii Xylia Xylia hoffmannii \N \N \N \N \N 31032 \N genus Cleobulia \N \N \N \N \N 31033 O.normandii Oddoniodendron Oddoniodendron normandii \N \N \N \N \N 31034 R.ruttenii Rhododendron Rhododendron ruttenii \N \N \N \N \N 31035 E.suffruticosa Ericameria Ericameria suffruticosa \N \N \N \N \N 31036 G.pseudoracemosa Glycosmis Glycosmis pseudoracemosa \N \N \N \N \N 31037 P.erianthum Paspalum Paspalum erianthum \N \N \N \N \N 31038 S.picticaulis Senecio Senecio picticaulis \N \N \N \N \N 31039 M.parviflorum Metastelma Metastelma parviflorum \N \N \N \N \N 31040 R.NT-2008 Ranunculus Ranunculus cf. buhsei NT-2008 \N \N \N \N \N 31041 S.lavanduloides Salvia Salvia lavanduloides \N \N \N \N \N 31042 P.malesevichiae Philodendron Philodendron malesevichiae \N \N \N \N \N 31043 O.palmifrons Oxalis Oxalis palmifrons \N \N \N \N \N 31044 I.filifolia Itasina Itasina filifolia \N \N \N \N \N 31045 \N genus Platytheca \N \N \N \N \N 31046 E.rodigasiana Embreea Embreea rodigasiana \N \N \N \N \N 31047 L.maritimum Linum Linum maritimum \N \N \N \N \N 31048 R.ramosior Rotala Rotala ramosior \N \N \N \N \N 31049 P.subterranea Parodia Parodia subterranea \N \N \N \N \N 31050 \N varietas Aloe vera var. chinensis \N \N \N \N \N 31051 P.josephensis Pleurothallis Pleurothallis josephensis \N \N \N \N \N 31052 T.viscidulum Trigonosciadium Trigonosciadium viscidulum \N \N \N \N \N 31053 D.maculata Drimiopsis Drimiopsis maculata \N \N \N \N \N 31054 L.bullatus Lithocarpus Lithocarpus bullatus \N \N \N \N \N 31055 A.coriarium Aconogonon Aconogonon coriarium \N \N \N \N \N 31056 C.cheesemanii Chionochloa Chionochloa cheesemanii \N \N \N \N \N 31057 \N genus Cogniauxia \N \N \N \N \N 31058 T.parnassii Trifolium Trifolium parnassii \N \N \N \N \N 31059 \N genus Rauvolfia \N \N \N \N \N 31060 P.elongata Plectocomia Plectocomia elongata \N \N \N \N \N 31061 K.peruviana Kohleria Kohleria peruviana \N \N \N \N \N 31062 I.pluriflora Isocoma Isocoma pluriflora southern jimmyweed \N \N \N \N 31063 H.imperata Heteropterys Heteropterys imperata \N \N \N \N \N 31064 G.amerhauseri Gymnocalycium Gymnocalycium amerhauseri \N \N \N \N \N 31065 Z.obcordata Zieria Zieria obcordata \N \N \N \N \N 31066 \N genus Calia \N \N \N \N \N 31067 I.variabilis Ipomoea Ipomoea variabilis \N \N \N \N \N 31068 J.brevicaulis Jurinea Jurinea brevicaulis \N \N \N \N \N 31069 E.pleurocarpa Eucalyptus Eucalyptus pleurocarpa tallerack \N \N \N \N 31070 F.weddelliana Fosterella Fosterella weddelliana \N \N \N \N \N 31071 E.vallaris Euphorbia Euphorbia vallaris \N \N \N \N \N 31072 C.subacutissima Camellia Camellia subacutissima \N \N \N \N \N 31073 \N genus Reaumuria \N \N \N \N \N 31074 \N genus Pomatosace \N \N \N \N \N 31075 D.trifida Dioscorea Dioscorea trifida aja,cush-cush,cush-cush yam,mapuey,name,sacha papa,tabena,yampee,yampi \N \N \N \N 31076 C.plumieri Cardamine Cardamine plumieri \N \N \N \N \N 31077 I.nervosus Isodon Isodon nervosus \N \N \N \N \N 31078 \N genus Hylomecon \N \N \N \N \N 31079 D.obscura Denhamia Denhamia obscura \N \N \N \N \N 31080 R.saccata Ruellia Ruellia saccata \N \N \N \N \N 31081 A.lentiformis Atriplex Atriplex lentiformis big saltbush,quailbush \N \N \N \N 31082 \N genus Roridula \N \N \N \N \N 31083 P.distichophyllum Panicum Panicum distichophyllum \N \N \N \N \N 31084 D.karooica Disa Disa karooica \N \N \N \N \N 31085 F.stipulifera Ficus Ficus stipulifera \N \N \N \N \N 31086 A.caerulea Amethystea Amethystea caerulea \N \N \N \N \N 31087 A.gabilanensis Arctostaphylos Arctostaphylos gabilanensis \N \N \N \N \N 31088 \N subspecies Combretum collinum subsp. taborense \N \N \N \N \N 31089 \N genus Templetonia \N \N \N \N \N 31090 \N family Loasaceae \N \N \N \N \N 31091 G.pindanica Glycine Glycine pindanica \N \N \N \N \N 31092 A.arvensis Anthemis Anthemis arvensis \N \N \N \N \N 31093 C.fulvida Cortaderia Cortaderia fulvida \N \N \N \N \N 31094 P.mirabilis Phyllanthus Phyllanthus mirabilis \N \N \N \N \N 31095 \N subspecies Stipa caucasica subsp. desertorum \N \N \N \N \N 31096 M.canariensis Mercurialis Mercurialis canariensis \N \N \N \N \N 31097 \N subspecies Arctostaphylos stanfordiana subsp. stanfordiana \N \N \N \N \N 31098 \N tribe Simireae \N \N \N \N \N 31099 I.raphidothrix Impatiens Impatiens raphidothrix \N \N \N \N \N 31100 R.pseudochrysanthum Rhododendron Rhododendron pseudochrysanthum \N \N \N \N \N 31101 K.kaschgarica Kengyilia Kengyilia kaschgarica \N \N \N \N \N 31102 C.paliurus Cyclocarya Cyclocarya paliurus qing qian liu \N \N \N \N 31103 T.560 unclassified Taraxacum Taraxacum (sect. Ceratophora) sp. 560 \N \N \N \N \N 31104 A.littoralis Allocasuarina Allocasuarina littoralis \N \N \N \N \N 31105 G.sesamoides Gastrodia Gastrodia sesamoides \N \N \N \N \N 31106 O.lehmannii Oncidium Oncidium lehmannii \N \N \N \N \N 31107 C.steudneri Carex Carex steudneri \N \N \N \N \N 31108 \N subspecies Lathyrus japonicus subsp. maritimus \N \N \N \N \N 31109 M.fulgens Melaleuca Melaleuca fulgens \N \N \N \N \N 31110 C.biebersteinii Carlina Carlina biebersteinii \N \N \N \N \N 31111 C.ochrorhiza Curcuma Curcuma ochrorhiza \N \N \N \N \N 31112 L.volcanica Lobelia Lobelia volcanica \N \N \N \N \N 31113 \N genus Pterostylis \N \N \N \N \N 31114 R.monosperma Roupala Roupala monosperma \N \N \N \N \N 31115 B.persicum Bunium Bunium persicum black caraway,zira \N \N \N \N 31116 M.ulbrichiana Mimosa Mimosa ulbrichiana \N \N \N \N \N 31117 E.microphyllum Epilobium Epilobium nummulariifolium x Epilobium microphyllum \N \N \N \N \N 31118 A.curtissii Asclepias Asclepias curtissii \N \N \N \N \N 31119 C.christyanum Calyptrochilum Calyptrochilum christyanum \N \N \N \N \N 31120 P.reticulatum Protium Protium reticulatum \N \N \N \N \N 31121 \N genus Heuchera \N \N \N \N \N 31122 D.caespitosa Dionysia Dionysia caespitosa \N \N \N \N \N 31123 \N no rank environmental samples Taxonomy:1008271 \N \N \N \N \N 31124 \N genus Hinterhubera \N \N \N \N \N 31125 R.apetala Ruprechtia Ruprechtia apetala \N \N \N \N \N 31126 T.rubisepalum Trichostema Trichostema rubisepalum \N \N \N \N \N 31127 C.insignis Callisia Callisia insignis \N \N \N \N \N 31128 \N varietas Plantago major var. japonica \N \N \N \N \N 31129 A.mendocina Aristida Aristida mendocina \N \N \N \N \N 31130 D.tournefortii Diphelypaea Diphelypaea tournefortii \N \N \N \N \N 31131 P.lacerans Pterolobium Pterolobium lacerans \N \N \N \N \N 31132 \N genus Schizomussaenda \N \N \N \N \N 31133 D.marcgraviana Duguetia Duguetia marcgraviana \N \N \N \N \N 31134 T.hypoleucum Trigoniastrum Trigoniastrum hypoleucum \N \N \N \N \N 31135 V.cinerea Vicia Vicia cinerea \N \N \N \N \N 31136 M.alchorneoides Macaranga Macaranga alchorneoides \N \N \N \N \N 31137 C.insularis Cyperus Cyperus insularis \N \N \N \N \N 31138 E.camagueyensis Euphorbia Euphorbia camagueyensis \N \N \N \N \N 31139 T.sambiranensis Tabernaemontana Tabernaemontana sambiranensis \N \N \N \N \N 31140 P.balcanica Pinguicula Pinguicula balcanica \N \N \N \N \N 31141 A.tsaii Actinodaphne Actinodaphne tsaii \N \N \N \N \N 31142 G.bifurcata Gymnopentzia Gymnopentzia bifurcata \N \N \N \N \N 31143 P.hainanensis Phyllanthus Phyllanthus hainanensis \N \N \N \N \N 31144 \N tribe Salpiglossideae \N \N \N \N \N 31145 R.floribunda Rumfordia Rumfordia floribunda \N \N \N \N \N 31146 \N subspecies Festuca rubra subsp. rubra \N \N \N \N \N 31147 D.convallarioides Drimia Drimia convallarioides \N \N \N \N \N 31148 I.macroptera Impatiens Impatiens macroptera \N \N \N \N \N 31149 R.96-5713 Renealmia Renealmia sp. Kress 96-5713 \N \N \N \N \N 31150 \N genus Cordeauxia \N \N \N \N \N 31151 B.trimera Bursera Bursera trimera \N \N \N \N \N 31152 I.hastigera Ipomoea Ipomoea hastigera \N \N \N \N \N 31153 C.media Carex Carex media \N \N \N \N \N 31154 L.stenosepala Lysimachia Lysimachia stenosepala \N \N \N \N \N 31155 H.apiifolium Heracleum Heracleum apiifolium \N \N \N \N \N 31156 A.winkleri Afrothismia Afrothismia winkleri \N \N \N \N \N 31157 P.platycarpa Peritoma Peritoma platycarpa \N \N \N \N \N 31158 \N genus Rhopalocarpus \N \N \N \N \N 31159 A.engleriana Abelia Abelia engleriana \N \N \N \N \N 31160 C.linearifolius Cubanthus Cubanthus linearifolius \N \N \N \N \N 31161 \N genus Myosotis \N \N \N \N \N 31162 P.ameghinoi Pantacantha Pantacantha ameghinoi \N \N \N \N \N 31163 \N varietas Mimulus uvedaliae var. lutea \N \N \N \N \N 31164 C.resinosa Coffea Coffea resinosa \N \N \N \N \N 31165 C.atrovirens Chenopodium Chenopodium atrovirens \N \N \N \N \N 31166 M.veatchiana Mentzelia Mentzelia veatchiana \N \N \N \N \N 31167 S.338 Spathiphyllum Spathiphyllum sp. M. J. Moore 338 \N \N \N \N \N 31168 H.scandens Hedyotis Hedyotis scandens \N \N \N \N \N 31169 O.glaberrima Ormosia Ormosia glaberrima \N \N \N \N \N 31170 C.meyeriana Cyclopia Cyclopia meyeriana \N \N \N \N \N 31171 D.aitchisonii Dorema Dorema aitchisonii \N \N \N \N \N 31172 T.leptophyllum Tropaeolum Tropaeolum leptophyllum \N \N \N \N \N 31173 I.hookeriana Iris Iris hookeriana \N \N \N \N \N 31174 \N genus Pseudoweinmannia \N \N \N \N \N 31175 N.uitenhagensis Neopatersonia Neopatersonia uitenhagensis \N \N \N \N \N 31176 S.cynosuroides Spartina Spartina cynosuroides \N \N \N \N \N 31177 \N genus Polyclita \N \N \N \N \N 31178 E.antiquus Elymus Elymus antiquus \N \N \N \N \N 31179 \N genus Raffenaldia \N \N \N \N \N 31180 S.carniolica Scopolia Scopolia carniolica \N \N \N \N \N 31181 G.tournefortii Gundelia Gundelia tournefortii \N \N \N \N \N 31182 A.longestipitata Adenia Adenia longestipitata \N \N \N \N \N 31183 T.pulcher Thamnochortus Thamnochortus pulcher \N \N \N \N \N 31184 \N subfamily Tristichoideae \N \N \N \N \N 31185 L.interrupta Lichtensteinia Lichtensteinia interrupta \N \N \N \N \N 31186 S.lychnophorum Scaphium Scaphium lychnophorum \N \N \N \N \N 31187 C.apetalus Colobanthus Colobanthus apetalus \N \N \N \N \N 31188 \N genus Delarbrea \N \N \N \N \N 31189 E.thymifolia Euphorbia Euphorbia thymifolia chickenweed,gulf sandmat \N \N \N \N 31190 \N varietas Randia aculeata var. dasyclada \N \N \N \N \N 31191 L.palustris Lathyrus Lathyrus palustris marsh pea \N \N \N \N 31192 H.rhododon Hesperozygis Hesperozygis rhododon \N \N \N \N \N 31193 \N subspecies Syzygium eucalyptoides subsp. eucalyptoides \N \N \N \N \N 31194 L.haematantha Lobivia Lobivia haematantha \N \N \N \N \N 31195 E.jaegeri Eminium Eminium jaegeri \N \N \N \N \N 31196 C.grevei Chadsia Chadsia grevei \N \N \N \N \N 31197 H.whitneyi Hazardia Hazardia whitneyi \N \N \N \N \N 31198 S.rhamnifolia Spragueanella Spragueanella rhamnifolia \N \N \N \N \N 31199 P.rigidulum Panicum Panicum rigidulum \N \N \N \N \N 31200 L.G13A Lasiocephalus Lasiocephalus sp. G13A \N \N \N \N \N 31201 P.duidana Pagamea Pagamea duidana \N \N \N \N \N 31202 L.circaeoides Lysimachia Lysimachia circaeoides \N \N \N \N \N 31203 C.regalis Consolida Consolida regalis \N \N \N \N \N 31204 E.conglomerata Eucalyptus Eucalyptus conglomerata \N \N \N \N \N 31205 M.linifolia Monotoca Monotoca linifolia \N \N \N \N \N 31206 S.spinulosa Sommerfeltia Sommerfeltia spinulosa \N \N \N \N \N 31207 E.glareosa Euphorbia Euphorbia glareosa \N \N \N \N \N 31208 S.brunnea Stelis Stelis brunnea \N \N \N \N \N 31209 S.javanica Sambucus Sambucus javanica \N \N \N \N \N 31210 S.gardneri Shorea Shorea gardneri \N \N \N \N \N 31211 T.elongata Tamarix Tamarix elongata \N \N \N \N \N 31212 P.rubra Perebea Perebea rubra \N \N \N \N \N 31213 \N genus Cyclospermum \N \N \N \N \N 31214 N.ritchiana Nannorrhops Nannorrhops ritchiana \N \N \N \N \N 31215 S.1046 Sherbournia Sherbournia sp. Cable et al. 1046 \N \N \N \N \N 31216 M.vaginatum Musineon Musineon vaginatum \N \N \N \N \N 31217 S.kilimandscharicum Spathionema Spathionema kilimandscharicum \N \N \N \N \N 31218 T.isatidea Tchihatchewia Tchihatchewia isatidea \N \N \N \N \N 31219 P.pseudoparvus Penstemon Penstemon pseudoparvus \N \N \N \N \N 31220 F.vulgaris Falcaria Falcaria vulgaris \N \N \N \N \N 31221 R.globosa Rafnia Rafnia globosa \N \N \N \N \N 31222 C.orientalis Consolida Consolida orientalis \N \N \N \N \N 31223 B.haemanthoides Boophone Boophone haemanthoides \N \N \N \N \N 31224 \N genus Cathariostachys \N \N \N \N \N 31225 \N genus Fernelia \N \N \N \N \N 31226 S.warszewiczii Sobralia Sobralia warszewiczii \N \N \N \N \N 31227 P.hydropiperoides Persicaria Persicaria hydropiperoides \N \N \N \N \N 31228 G.humifusa Gaultheria Gaultheria humifusa alpine wintergreen \N \N \N \N 31229 K.revoluta Krameria Krameria revoluta \N \N \N \N \N 31230 \N varietas Oxalis minuta var. minuta \N \N \N \N \N 31231 V.dabneyi Veronica Veronica dabneyi \N \N \N \N \N 31232 L.concinnus Lupinus Lupinus concinnus \N \N \N \N \N 31233 D.fuscescens Dialypetalanthus Dialypetalanthus fuscescens \N \N \N \N \N 31234 C.pedata Cayratia Cayratia pedata \N \N \N \N \N 31235 E.strigosum Erucastrum Erucastrum strigosum \N \N \N \N \N 31236 D.calvum Damnxanthodium Damnxanthodium calvum \N \N \N \N \N 31237 S.longicaulis Sebaea Sebaea longicaulis \N \N \N \N \N 31238 G.gardneri Goniothalamus Goniothalamus gardneri \N \N \N \N \N 31239 T.tectorum Tillandsia Tillandsia tectorum \N \N \N \N \N 31240 T.pusilla Triphysaria Triphysaria pusilla \N \N \N \N \N 31241 E.asperula Encyclia Encyclia asperula \N \N \N \N \N 31242 H.pinifolia Halodule Halodule pinifolia \N \N \N \N \N 31243 \N genus California \N \N \N \N \N 31244 P.labillardierei Poa Poa labillardierei \N \N \N \N \N 31245 A.parviflora Asimina Asimina parviflora dwarf pawpaw \N \N \N \N 31246 G.crocea Gerbera Gerbera crocea \N \N \N \N \N 31247 \N genus Rinzia \N \N \N \N \N 31248 G.gregarius Gladiolus Gladiolus gregarius \N \N \N \N \N 31249 M.aurorae Macroclinium Macroclinium aurorae \N \N \N \N \N 31250 D.oxycentrum Delphinium Delphinium oxycentrum \N \N \N \N \N 31251 A.houstonianum Ageratum Ageratum houstonianum ageratum,blue billygoat weed,flossflower \N \N \N \N 31252 P.micranthum Pleiochiton Pleiochiton micranthum \N \N \N \N \N 31253 M.africana Myrsine Myrsine africana \N \N \N \N \N 31254 M.insignis Macleania Macleania insignis \N \N \N \N \N 31255 C.palpebrata Cassiope Cassiope palpebrata \N \N \N \N \N 31256 B.picta Bauhinia Bauhinia picta \N \N \N \N \N 31257 K.martinetugei Kupea Kupea martinetugei \N \N \N \N \N 31258 P.ionidiflorum Pelargonium Pelargonium ionidiflorum \N \N \N \N \N 31259 P.ponapensis Pseudovanilla Pseudovanilla ponapensis \N \N \N \N \N 31260 B.nanum Brachystelma Brachystelma nanum \N \N \N \N \N 31261 A.semipapposa Arctotis Arctotis semipapposa \N \N \N \N \N 31262 C.rumeliana Campanula Campanula rumeliana \N \N \N \N \N 31263 A.villosa Androsace Androsace villosa \N \N \N \N \N 31264 \N genus Drakaea \N \N \N \N \N 31265 H.ramiflora Henriettea Henriettea ramiflora \N \N \N \N \N 31266 C.majus Centaurium Centaurium majus \N \N \N \N \N 31267 T.gallowayi Typhonium Typhonium gallowayi \N \N \N \N \N 31268 P.albiflora Pleonotoma Pleonotoma albiflora \N \N \N \N \N 31269 D.seguieri Dianthus Dianthus seguieri \N \N \N \N \N 31270 K.drynarioides Kokia Kokia drynarioides \N \N \N \N \N 31271 P.alpina Pimelea Pimelea alpina \N \N \N \N \N 31272 X.guthriei Xiphotheca Xiphotheca guthriei \N \N \N \N \N 31273 C.involucrata Centaurea Centaurea involucrata \N \N \N \N \N 31274 \N genus Diplostigma \N \N \N \N \N 31275 A.hottae Amorphophallus Amorphophallus hottae \N \N \N \N \N 31276 E.doliiformis Erica Erica doliiformis \N \N \N \N \N 31277 \N subtribe Eragrostidinae \N \N \N \N \N 31278 P.lozanoi Panopsis Panopsis lozanoi \N \N \N \N \N 31279 P.fruticosa Pilea Pilea fruticosa \N \N \N \N \N 31280 R.laxiflora Ruprechtia Ruprechtia laxiflora \N \N \N \N \N 31281 I.SH-2010 Imperata Imperata sp. SH-2010 \N \N \N \N \N 31282 S.confusa Scaphyglottis Scaphyglottis confusa \N \N \N \N \N 31283 \N genus Limnanthes \N \N \N \N \N 31284 \N no rank Cattleya granulosa 'Pernambuco' \N \N \N \N \N 31285 N.usambarensis Neohemsleya Neohemsleya usambarensis \N \N \N \N \N 31286 W.albescens Wajira Wajira albescens \N \N \N \N \N 31287 D.uncatum Dendrochilum Dendrochilum uncatum \N \N \N \N \N 31288 D.hexandra Dichorisandra Dichorisandra hexandra \N \N \N \N \N 31289 F.proserpinacoides Floerkea Floerkea proserpinacoides false mermaidweed \N \N \N \N 31290 D.macrocarpa Deinbollia Deinbollia macrocarpa \N \N \N \N \N 31291 R.macrophyllum Rhododendron Rhododendron macrophyllum \N \N \N \N \N 31292 P.keniense Piptatherum Piptatherum keniense \N \N \N \N \N 31293 \N varietas Celtis sinensis var. japonica Japanese hackberry \N \N \N \N 31294 A.guatemalensis Appunia Appunia guatemalensis \N \N \N \N \N 31295 A.758 Anisophyllea Anisophyllea sp. Boyce 758 \N \N \N \N \N 31296 E.malevola Euphorbia Euphorbia malevola \N \N \N \N \N 31297 A.elegantulum Acer Acer elegantulum \N \N \N \N \N 31298 \N subspecies Panax pseudoginseng subsp. pseudoginseng \N \N \N \N \N 31299 E.umbilicatum Erythronium Erythronium umbilicatum \N \N \N \N \N 31300 \N genus Gaiadendron \N \N \N \N \N 31301 G.pyrenaica Gentiana Gentiana pyrenaica \N \N \N \N \N 31302 \N forma Iris bulleyana f. alba \N \N \N \N \N 31303 S.miamiense Sisyrinchium Sisyrinchium miamiense \N \N \N \N \N 31304 L.mirabile Lithospermum Lithospermum mirabile \N \N \N \N \N 31305 \N genus Chusquea \N \N \N \N \N 31306 O.robinsonii Oldenlandia Oldenlandia robinsonii \N \N \N \N \N 31307 M.acutifolia Maxillaria Maxillaria acutifolia \N \N \N \N \N 31308 S.portosanctana Saxifraga Saxifraga portosanctana \N \N \N \N \N 31309 \N varietas Mimosa velloziana var. velloziana \N \N \N \N \N 31310 C.maritima Cayratia Cayratia maritima \N \N \N \N \N 31311 L.rubra Leucogenes x Raoulia Leucogenes leontopodium x Raoulia rubra \N \N \N \N \N 31312 \N genus Dicraspidia \N \N \N \N \N 31313 B.150 Brachyscome Brachyscome aff. cheilocarpa Watanabe 150 \N \N \N \N \N 31314 \N genus Dipteracanthus \N \N \N \N \N 31315 E.trichocalyx Eriodictyon Eriodictyon trichocalyx \N \N \N \N \N 31316 A.ramosa Artemisia Artemisia ramosa \N \N \N \N \N 31317 P.gyrulosa Psychotria Psychotria gyrulosa \N \N \N \N \N 31318 D.orinocensis Deprea Deprea orinocensis \N \N \N \N \N 31319 \N genus Phaeonychium \N \N \N \N \N 31320 \N varietas Prunus armeniaca var. ansu \N \N \N \N \N 31321 C.scilloides Camassia Camassia scilloides eastern camas \N \N \N \N 31322 S.ovalifolia Securidaca Securidaca ovalifolia \N \N \N \N \N 31323 \N genus Umbilicus \N \N \N \N \N 31324 \N genus Mertensia \N \N \N \N \N 31325 A.racemosa Actaea Actaea racemosa \N \N \N \N \N 31326 C.petriei Carex Carex petriei \N \N \N \N \N 31327 H.umbellatum Halimium Halimium umbellatum \N \N \N \N \N 31328 S.ranunculifolia Suksdorfia Suksdorfia ranunculifolia \N \N \N \N \N 31329 A.semnanensis Astragalus Astragalus semnanensis \N \N \N \N \N 31330 Q.sessilifolia Quercus Quercus sessilifolia \N \N \N \N \N 31331 \N genus Coelostegia \N \N \N \N \N 31332 I.braamtonyi Indigofera Indigofera braamtonyi \N \N \N \N \N 31333 L.rowlandii Loeseneriella Loeseneriella rowlandii \N \N \N \N \N 31334 P.discoidea Pulicaria Pulicaria discoidea \N \N \N \N \N 31335 N.truncata Nepenthes Nepenthes truncata \N \N \N \N \N 31336 C.depressa Cryptocarya Cryptocarya depressa \N \N \N \N \N 31337 \N genus Haematocarpus \N \N \N \N \N 31338 G.sessilis Gomesa Gomesa sessilis \N \N \N \N \N 31339 \N subspecies Allocasuarina diminuta subsp. diminuta \N \N \N \N \N 31340 \N genus Orchadocarpa \N \N \N \N \N 31341 S.brachystemonoides Spermacoce Spermacoce brachystemonoides \N \N \N \N \N 31342 \N subspecies Ulex argenteus subsp. subsericeus \N \N \N \N \N 31343 \N varietas Senecio flaccidus var. flaccidus \N \N \N \N \N 31344 D.carthusianorum Dianthus Dianthus carthusianorum \N \N \N \N \N 31345 G.latoramosum Galium Galium latoramosum \N \N \N \N \N 31346 P.althaeoides Pelargonium Pelargonium althaeoides \N \N \N \N \N 31347 M.venulosa Myrcia Myrcia venulosa \N \N \N \N \N 31348 I.hippolyti Iris Iris hippolyti \N \N \N \N \N 31349 C.staintonii Caralluma Caralluma staintonii \N \N \N \N \N 31350 L.pedunculatum Leucospermum Leucospermum pedunculatum \N \N \N \N \N 31351 O.comptonii Oxalis Oxalis comptonii \N \N \N \N \N 31352 A.hispidus Artocarpus Artocarpus hispidus \N \N \N \N \N 31353 E.grande Exochaenium Exochaenium grande \N \N \N \N \N 31354 M.monancistra Mimosa Mimosa monancistra \N \N \N \N \N 31355 P.fimbriatum Platostoma Platostoma fimbriatum \N \N \N \N \N 31356 C.delavayi Clethra Clethra delavayi \N \N \N \N \N 31357 S.verticilliformis Setaria Setaria verticilliformis \N \N \N \N \N 31358 S.woodiana Saussurea Saussurea woodiana \N \N \N \N \N 31359 G.baueri Genoplesium Genoplesium baueri \N \N \N \N \N 31360 M.alpinum Myriophyllum Myriophyllum alpinum \N \N \N \N \N 31361 A.occidentalis Androsace Androsace occidentalis \N \N \N \N \N 31362 E.blenna Erica Erica blenna \N \N \N \N \N 31363 C.appropinquata Carex Carex appropinquata \N \N \N \N \N 31364 \N varietas Heteromorpha stenophylla var. transvaalensis \N \N \N \N \N 31365 P.strictus Ptilostemon Ptilostemon strictus \N \N \N \N \N 31366 L.subcordatum Lepidium Lepidium subcordatum \N \N \N \N \N 31367 A.hemsleyi Astragalus Astragalus hemsleyi \N \N \N \N \N 31368 X.siamensis Xantolis Xantolis siamensis \N \N \N \N \N 31369 A.perpusilla Atelanthera Atelanthera perpusilla \N \N \N \N \N 31370 \N genus Rhynchosia \N \N \N \N \N 31371 I.sinicus Indocalamus Indocalamus sinicus \N \N \N \N \N 31372 C.aristulifera Calanthe Calanthe aristulifera \N \N \N \N \N 31373 A.94-103 Alchornea Alchornea sp. Bell et al. 94-103 \N \N \N \N \N 31374 T.pratense Trifolium Trifolium pratense peavine clover,purple clover,red clover,rotklee \N \N \N \N 31375 M.reitzii Myrceugenia Myrceugenia reitzii \N \N \N \N \N 31376 \N genus Muilla \N \N \N \N \N 31377 H.urophyllum Hedychium Hedychium urophyllum \N \N \N \N \N 31378 P.incarum Polylepis Polylepis incarum \N \N \N \N \N 31379 C.1795 Cyrtochilum Cyrtochilum sp. Whitten 1795 \N \N \N \N \N 31380 \N subspecies Paeonia mascula subsp. mascula \N \N \N \N \N 31381 V.halei Verbena Verbena halei \N \N \N \N \N 31382 M.mercadensis Mammillaria Mammillaria mercadensis \N \N \N \N \N 31383 H.bromoides Helictotrichon Helictotrichon bromoides \N \N \N \N \N 31384 G.turneri Gossypium Gossypium turneri \N \N \N \N \N 31385 \N tribe Pachystromateae \N \N \N \N \N 31386 B.sodiroana Burmeistera Burmeistera sodiroana \N \N \N \N \N 31387 L.tapetiformis Lotononis Lotononis tapetiformis \N \N \N \N \N 31388 D.BGB-2009c Dalechampia Dalechampia sp. BGB-2009c \N \N \N \N \N 31389 M.chionantha Maxillaria Maxillaria chionantha \N \N \N \N \N 31390 S.transiens Schoenefeldia Schoenefeldia transiens \N \N \N \N \N 31391 L.ramosus Leymus Leymus ramosus \N \N \N \N \N 31392 S.borealis Synanthes Synanthes borealis \N \N \N \N \N 31393 D.californicum Delphinium Delphinium californicum California larkspur \N \N \N \N 31394 C.variegatum Codiaeum Codiaeum variegatum garden croton \N \N \N \N 31395 L.usitatissimum Linum Linum usitatissimum flax \N \N \N \N 31396 R.fastigiatum Rhododendron Rhododendron fastigiatum \N \N \N \N \N 31397 B.appendiculata Burroughsia Burroughsia appendiculata \N \N \N \N \N 31398 P.clevelandii Penstemon Penstemon clevelandii \N \N \N \N \N 31399 I.balfourii Impatiens Impatiens balfourii \N \N \N \N \N 31400 C.poasanum Cestrum Cestrum poasanum \N \N \N \N \N 31401 V.choriophylla Vachellia Vachellia choriophylla \N \N \N \N \N 31402 C.viburnea Cuttsia Cuttsia viburnea \N \N \N \N \N 31403 N.melittifolius Nautilocalyx Nautilocalyx melittifolius \N \N \N \N \N 31404 F.stenophylla Ficus Ficus stenophylla \N \N \N \N \N 31405 \N varietas Vigna hosei var. pubescens \N \N \N \N \N 31406 T.clypeatum Trifolium Trifolium clypeatum \N \N \N \N \N 31407 O.xanthochlorum Ornithogalum Ornithogalum xanthochlorum \N \N \N \N \N 31408 D.simula Dryadella Dryadella simula \N \N \N \N \N 31409 C.glaucus Carthamus Carthamus glaucus \N \N \N \N \N 31410 O.sericeum Otholobium Otholobium sericeum \N \N \N \N \N 31411 N.laevis Newbouldia Newbouldia laevis \N \N \N \N \N 31412 L.cornuta Launaea Launaea cornuta \N \N \N \N \N 31413 E.multicaulis Eragrostis Eragrostis multicaulis \N \N \N \N \N 31414 A.6487 Allium Allium sp. GAT 6487 \N \N \N \N \N 31415 K.vallesiana Koeleria Koeleria vallesiana \N \N \N \N \N 31416 H.longifolia Hoya Hoya longifolia \N \N \N \N \N 31417 P.canescens Polhillia Polhillia canescens \N \N \N \N \N 31418 C.sanpedroensis Coreocarpus Coreocarpus sanpedroensis \N \N \N \N \N 31419 \N varietas Lasiobema championii var. championii \N \N \N \N \N 31420 O.coronopifolia Oenothera Oenothera coronopifolia \N \N \N \N \N 31421 J.golestanica Johrenia Johrenia golestanica \N \N \N \N \N 31422 P.cunninghamii Proiphys Proiphys cunninghamii \N \N \N \N \N 31423 C.sylvestris Chiloglottis Chiloglottis sylvestris \N \N \N \N \N 31424 V.remota Vanwykia Vanwykia remota \N \N \N \N \N 31425 \N genus Cleistopholis \N \N \N \N \N 31426 S.monoica Suaeda Suaeda monoica \N \N \N \N \N 31427 V.sepulchrei Vanoverberghia Vanoverberghia sepulchrei \N \N \N \N \N 31428 C.eyrei Castanopsis Castanopsis eyrei \N \N \N \N \N 31429 \N genus Metagentiana \N \N \N \N \N 31430 F.pallisae Fraxinus Fraxinus pallisae \N \N \N \N \N 31431 B.marrubiifolia Buddleja Buddleja marrubiifolia \N \N \N \N \N 31432 \N genus Benzingia \N \N \N \N \N 31433 E.mitchelliana Eucalyptus Eucalyptus mitchelliana \N \N \N \N \N 31434 \N genus Perebea \N \N \N \N \N 31435 P.lealii Pachypodium Pachypodium lealii \N \N \N \N \N 31436 P.hypogaeum Pediomelum Pediomelum hypogaeum \N \N \N \N \N 31437 \N genus Leochilus \N \N \N \N \N 31438 H.pycnophyllum Heliotropium Heliotropium pycnophyllum \N \N \N \N \N 31439 W.brachyandra Wachendorfia Wachendorfia brachyandra \N \N \N \N \N 31440 S.pubescens Schiedea Schiedea pubescens \N \N \N \N \N 31441 T.SH-2010 Tylophora Tylophora sp. SH-2010 \N \N \N \N \N 31442 T.luzonica Tournefortia Tournefortia luzonica \N \N \N \N \N 31443 S.duplicatoserrata Scrophularia Scrophularia duplicatoserrata \N \N \N \N \N 31444 B.acerifolius Brachychiton Brachychiton acerifolius Illawara flametree,flame bottletree,flame kurrajong \N \N \N \N 31445 M.HS436 Momordica Momordica sp. HS436 \N \N \N \N \N 31446 A.nivigena Abrotanella Abrotanella nivigena \N \N \N \N \N 31447 A.auriculiformis Acacia Acacia auriculiformis \N \N \N \N \N 31448 E.veratrifolium Empodium Empodium veratrifolium \N \N \N \N \N 31449 \N genus Microcalamus \N \N \N \N \N 31450 C.pachyphylla Christensonella Christensonella pachyphylla \N \N \N \N \N 31451 D.balcanicum Delphinium Delphinium balcanicum \N \N \N \N \N 31452 H.hordeacea Haynaldia Haynaldia hordeacea \N \N \N \N \N 31453 A.capillaris Agrostis Agrostis capillaris browntop,colonial bent grass,waipu \N \N \N \N 31454 D.serrulatus Dianthus Dianthus serrulatus \N \N \N \N \N 31455 L.sociorum Lampranthus Lampranthus sociorum \N \N \N \N \N 31456 \N genus Lessertia \N \N \N \N \N 31457 M.micropetala Myrcia Myrcia micropetala \N \N \N \N \N 31458 H.harmsii Harmsiopanax Harmsiopanax harmsii \N \N \N \N \N 31459 M.cretacea Medicago Medicago cretacea \N \N \N \N \N 31460 A.anthoroidea Aconitella Aconitella anthoroidea \N \N \N \N \N 31461 \N genus Lordhowea \N \N \N \N \N 31462 C.circaeoides Chamira Chamira circaeoides \N \N \N \N \N 31463 \N subspecies Acacia nilotica subsp. tomentosa \N \N \N \N \N 31464 T.foetidum Thalictrum Thalictrum foetidum \N \N \N \N \N 31465 B.wolffii Bunium Bunium wolffii \N \N \N \N \N 31466 \N subspecies Wahlenbergia littoricola subsp. vernicosa \N \N \N \N \N 31467 N.hirta Nenax Nenax hirta \N \N \N \N \N 31468 P.polygonifolius Potamogeton Potamogeton polygonifolius \N \N \N \N \N 31469 F.latifolia Fritillaria Fritillaria latifolia \N \N \N \N \N 31470 \N genus Jordaaniella \N \N \N \N \N 31471 E.caespitosus Erigeron Erigeron caespitosus \N \N \N \N \N 31472 H.guazumifolia Helicteres Helicteres guazumifolia \N \N \N \N \N 31473 P.phylliraeoides Pancheria Pancheria phylliraeoides \N \N \N \N \N 31474 T.puberulum Thyrsodium Thyrsodium puberulum \N \N \N \N \N 31475 \N genus Aesculus buckeyes,horse chestnuts \N \N \N \N 31476 E.andamanica Eria Eria andamanica \N \N \N \N \N 31477 B.bissei Begonia Begonia bissei \N \N \N \N \N 31478 T.papyrus Tibouchina Tibouchina papyrus \N \N \N \N \N 31479 \N subspecies Vigna unguiculata subsp. sesquipedalis yard-long-bean \N \N \N \N 31480 H.crepitans Hura Hura crepitans \N \N \N \N \N 31481 \N genus Digitalis foxgloves \N \N \N \N 31482 H.ciliaris Helianthus Helianthus ciliaris \N \N \N \N \N 31483 S.elegans Sommieria Sommieria elegans \N \N \N \N \N 31484 B.pendula Betula Betula pendula European white birch,white birch \N \N \N \N 31485 D.gonzalezii Descurainia Descurainia gonzalezii \N \N \N \N \N 31486 L.tarahaoa Leucogenes Leucogenes tarahaoa \N \N \N \N \N 31487 \N genus Philibertia \N \N \N \N \N 31488 V.crupinoides Volutaria Volutaria crupinoides \N \N \N \N \N 31489 B.barbigerum Bulbophyllum Bulbophyllum barbigerum \N \N \N \N \N 31490 B.aequinoctialis Bignonia Bignonia aequinoctialis garlicvine \N \N \N \N 31491 G.crassilabia Gomphichis Gomphichis crassilabia \N \N \N \N \N 31492 \N subspecies Laserpitium gallicum subsp. paradoxum \N \N \N \N \N 31493 G.mirabile Glaziophyton Glaziophyton mirabile \N \N \N \N \N 31494 R.scoparia Reseda Reseda scoparia \N \N \N \N \N 31495 \N genus Karomia \N \N \N \N \N 31496 C.haspan Cyperus Cyperus haspan \N \N \N \N \N 31497 P.chartaceum Polemonium Polemonium chartaceum \N \N \N \N \N 31498 E.MVSP-2007 Elaeagnus Elaeagnus sp. MVSP-2007 \N \N \N \N \N 31499 R.elata Raphionacme Raphionacme elata \N \N \N \N \N 31500 S.purpureus Senecio Senecio purpureus \N \N \N \N \N 31501 E.rotundifolium Epilobium Epilobium rotundifolium \N \N \N \N \N 31502 H.foliolosum Haplocoelum Haplocoelum foliolosum \N \N \N \N \N 31503 D.bolivianus Dendropanax Dendropanax bolivianus \N \N \N \N \N 31504 L.congesta Luzula Luzula congesta \N \N \N \N \N 31505 T.minimum Taraxacum Taraxacum minimum \N \N \N \N \N 31506 S.versicolor Sorghum Sorghum versicolor \N \N \N \N \N 31507 A.christophii Allium Allium christophii \N \N \N \N \N 31508 H.canariensis Hedera Hedera canariensis \N \N \N \N \N 31509 P.magnifolia Philbornea Philbornea magnifolia \N \N \N \N \N 31510 C.aspera Crambe Crambe aspera \N \N \N \N \N 31511 Y.xanthocephalus Yermo Yermo xanthocephalus \N \N \N \N \N 31512 P.crinitum Pereilema Pereilema crinitum \N \N \N \N \N 31513 D.subalpina Digitalis Digitalis subalpina \N \N \N \N \N 31514 N.ventricosa Nepenthes Nepenthes ventricosa \N \N \N \N \N 31515 G.sagittatum Gynerium Gynerium sagittatum arrow cane,uva grass,wild cane \N \N \N \N 31516 \N varietas Chamaecrista desvauxii var. desvauxii \N \N \N \N \N 31517 \N subspecies Disperis circumflexa subsp. circumflexa \N \N \N \N \N 31518 A.peltata Ariopsis Ariopsis peltata \N \N \N \N \N 31519 H.mengarawan Hopea Hopea mengarawan \N \N \N \N \N 31520 E.vivipara Eleocharis Eleocharis vivipara viviparous spikerush \N \N \N \N 31521 S.etuberosum Solanum Solanum etuberosum \N \N \N \N \N 31522 C.febrifuga Crossopteryx Crossopteryx febrifuga \N \N \N \N \N 31523 \N no rank Citrus cv. Murcott x Citrus aurantium \N \N \N \N \N 31524 \N subspecies Argemone subfusiformis subsp. subinermis \N \N \N \N \N 31525 P.paradoxum Piptatherum Piptatherum paradoxum \N \N \N \N \N 31526 V.esdraelonensis Vicia Vicia esdraelonensis \N \N \N \N \N 31527 A.senjavinensis Artemisia Artemisia senjavinensis \N \N \N \N \N 31528 S.veronicae Stevia Stevia veronicae \N \N \N \N \N 31529 C.reznicekii Carex Carex reznicekii \N \N \N \N \N 31530 \N genus Mulgedium \N \N \N \N \N 31531 S.myriantha Schefflera Schefflera myriantha \N \N \N \N \N 31532 O.crenata Orobanche Orobanche crenata \N \N \N \N \N 31533 P.ouaimensis Polyscias Polyscias ouaimensis \N \N \N \N \N 31534 A.graellsiiformis Arabis Arabis graellsiiformis \N \N \N \N \N 31535 A.lineata Acacia Acacia lineata \N \N \N \N \N 31536 C.domingensis Chionanthus Chionanthus domingensis \N \N \N \N \N 31537 T.bellus Tacitus Tacitus bellus \N \N \N \N \N 31538 \N genus Pollia \N \N \N \N \N 31539 F.minutiflorum Fusispermum Fusispermum minutiflorum \N \N \N \N \N 31540 M.gonoloboides Matelea Matelea gonoloboides \N \N \N \N \N 31541 P.cardwellii Penstemon Penstemon cardwellii \N \N \N \N \N 31542 L.thymifolium Leucadendron Leucadendron thymifolium \N \N \N \N \N 31543 \N varietas Senecio scaposus var. caulescens \N \N \N \N \N 31544 I.utricularioides Ionopsis Ionopsis utricularioides \N \N \N \N \N 31545 I.nigromontana Indigofera Indigofera nigromontana \N \N \N \N \N 31546 L.macrocarpa Lavoisiera Lavoisiera macrocarpa \N \N \N \N \N 31547 L.phyllocephala Lysimachia Lysimachia phyllocephala \N \N \N \N \N 31548 P.albowiana Polygala Polygala albowiana \N \N \N \N \N 31549 E.decumbens Euryops Euryops decumbens \N \N \N \N \N 31550 S.scandens Senecio Senecio scandens \N \N \N \N \N 31551 \N subspecies Antennaria howellii subsp. neodioica \N \N \N \N \N 31552 \N genus Arctous \N \N \N \N \N 31553 V.psilocalyx Voacanga Voacanga psilocalyx \N \N \N \N \N 31554 L.pachyphyllus Leptosiphon Leptosiphon pachyphyllus \N \N \N \N \N 31555 P.serratifolia Primula Primula serratifolia \N \N \N \N \N 31556 M.reticulata Morinda Morinda reticulata \N \N \N \N \N 31557 A.gentryi Asclepias Asclepias gentryi \N \N \N \N \N 31558 G.integrifolium Gymnopetalum Gymnopetalum integrifolium \N \N \N \N \N 31559 S.varia Securigera Securigera varia crown-vetch \N \N \N \N 31560 D.biloba Dodonaea Dodonaea biloba \N \N \N \N \N 31561 A.subhirsutum Allium Allium subhirsutum \N \N \N \N \N 31562 S.manausensis Swartzia Swartzia manausensis \N \N \N \N \N 31563 V.splendens Vriesea Vriesea splendens \N \N \N \N \N 31564 A.queenslandicus Aponogeton Aponogeton queenslandicus \N \N \N \N \N 31565 \N subspecies Pisum sativum subsp. sativum \N \N \N \N \N 31566 \N genus Corallocarpus \N \N \N \N \N 31567 \N subspecies Combretum apiculatum subsp. leutweinii \N \N \N \N \N 31568 \N genus Linguella \N \N \N \N \N 31569 \N varietas Plantago princeps var. anomala \N \N \N \N \N 31570 G.plicatus Galanthus Galanthus plicatus \N \N \N \N \N 31571 C.paschei Crocus Crocus paschei \N \N \N \N \N 31572 E.thyrsoides Eliokarmos Eliokarmos thyrsoides \N \N \N \N \N 31573 \N genus Cicendia \N \N \N \N \N 31574 \N varietas Ranunculus nipponicus var. submersus \N \N \N \N \N 31575 \N genus Eureiandra \N \N \N \N \N 31576 Z.insignis Zenia Zenia insignis \N \N \N \N \N 31577 T.decipiens Thalictrum Thalictrum decipiens \N \N \N \N \N 31578 D.sphagnicola Dactylorhiza Dactylorhiza sphagnicola \N \N \N \N \N 31579 E.inaequalis Euplassa Euplassa inaequalis \N \N \N \N \N 31580 H.pagophilum Helichrysum Helichrysum pagophilum \N \N \N \N \N 31581 B.huntii Brachyglottis Brachyglottis huntii \N \N \N \N \N 31582 M.salicifolia Manihot Manihot salicifolia \N \N \N \N \N 31583 N.convoluta Nemastylis Nemastylis convoluta \N \N \N \N \N 31584 L.sceptrum Lepidogyne Lepidogyne sceptrum \N \N \N \N \N 31585 S.hypomalaca Stevia Stevia hypomalaca \N \N \N \N \N 31586 L.hieracioides Layia Layia hieracioides \N \N \N \N \N 31587 S.pampasense Solanum Solanum pampasense \N \N \N \N \N 31588 C.bonus-henricus Chenopodium Chenopodium bonus-henricus Good King Henry,allgood,fat-hen \N \N \N \N 31589 M.moquiniana Marcetella Marcetella moquiniana \N \N \N \N \N 31590 \N subspecies Ipomopsis aggregata subsp. weberi \N \N \N \N \N 31591 P.megalophyllum Philodendron Philodendron megalophyllum \N \N \N \N \N 31592 A.7740 Acalypha Acalypha sp. RBGK 7740 \N \N \N \N \N 31593 Y.microcarpa Yabea Yabea microcarpa \N \N \N \N \N 31594 E.humidicola Erica Erica humidicola \N \N \N \N \N 31595 A.fimbriatum Allium Allium fimbriatum \N \N \N \N \N 31596 A.napoensis Alpinia Alpinia napoensis \N \N \N \N \N 31597 E.leioptera Eragrostiella Eragrostiella leioptera \N \N \N \N \N 31598 A.yunnanense Amomum Amomum yunnanense \N \N \N \N \N 31599 R.geniculata Rhaphidophora Rhaphidophora geniculata \N \N \N \N \N 31600 P.laetevirens Parthenocissus Parthenocissus laetevirens \N \N \N \N \N 31601 T.botteri Tillandsia Tillandsia botteri \N \N \N \N \N 31602 R.consanguinea Rhynchospora Rhynchospora consanguinea \N \N \N \N \N 31603 \N genus Prunus \N \N \N \N \N 31604 H.pulchrum Hypericum Hypericum pulchrum \N \N \N \N \N 31605 C.grandiflora Conradina Conradina grandiflora \N \N \N \N \N 31606 S.bahiensis Swartzia Swartzia bahiensis \N \N \N \N \N 31607 S.covillei Stutzia Stutzia covillei \N \N \N \N \N 31608 \N subspecies Calystegia silvatica subsp. silvatica \N \N \N \N \N 31609 \N genus Geonoma \N \N \N \N \N 31610 \N subspecies Argemone munita subsp. argentea \N \N \N \N \N 31611 \N genus Deyeuxia \N \N \N \N \N 31612 L.obscura Lemna Lemna obscura \N \N \N \N \N 31613 P.utahensis Primula Primula utahensis \N \N \N \N \N 31614 M.platystigma Myrsine Myrsine platystigma \N \N \N \N \N 31615 H.verdcourtii Heliotropium Heliotropium verdcourtii \N \N \N \N \N 31616 \N varietas Prunus incisa var. incisa \N \N \N \N \N 31617 P.chamaecerasus Phyllanthus Phyllanthus chamaecerasus \N \N \N \N \N 31618 \N varietas Carex albicans var. emmonsii \N \N \N \N \N 31619 S.luxurians Sonchus Sonchus luxurians \N \N \N \N \N 31620 \N genus Misbrookea \N \N \N \N \N 31621 C.fargesii Chengiopanax Chengiopanax fargesii \N \N \N \N \N 31622 \N genus Cissampelos \N \N \N \N \N 31623 Z.acidojujuba Ziziphus Ziziphus acidojujuba \N \N \N \N \N 31624 L.polygalifolium Leptospermum Leptospermum polygalifolium \N \N \N \N \N 31625 A.freyniana Artemisia Artemisia freyniana \N \N \N \N \N 31626 \N genus Schizeilema \N \N \N \N \N 31627 R.renschianum Rhododendron Rhododendron renschianum \N \N \N \N \N 31628 M.delavayi Magnolia Magnolia delavayi \N \N \N \N \N 31629 A.pilosum Alantsilodendron Alantsilodendron pilosum \N \N \N \N \N 31728 E.krausii Eriosyce Eriosyce krausii \N \N \N \N \N 31630 B.tomentosa Bauhinia Bauhinia tomentosa St. Thomas-tree,bell bauhinia \N \N \N \N 31631 \N genus Rhigozum \N \N \N \N \N 31632 O.bobrovii Onobrychis Onobrychis bobrovii \N \N \N \N \N 31633 V.aristata Villadia Villadia aristata \N \N \N \N \N 31634 \N varietas Coriaria arborea var. kermadecensis \N \N \N \N \N 31635 Z.cultivar Zantedeschia Zantedeschia hybrid cultivar \N \N \N \N \N 31636 C.papulosum Cleretum Cleretum papulosum \N \N \N \N \N 31637 G.berberidea Genista Genista berberidea \N \N \N \N \N 31638 P.alba Pseudofumaria Pseudofumaria alba \N \N \N \N \N 31639 I.farreri Isometrum Isometrum farreri \N \N \N \N \N 31640 \N tribe Nicandreae \N \N \N \N \N 31641 P.glacialis Plantago Plantago glacialis \N \N \N \N \N 31642 \N genus Kmeria \N \N \N \N \N 31643 \N subspecies Phoradendron villosum subsp. coryae \N \N \N \N \N 31644 E.citrina Euchile Euchile citrina \N \N \N \N \N 31645 C.tuberosum Chlorophytum Chlorophytum tuberosum \N \N \N \N \N 31646 H.purpurea Hormathophylla Hormathophylla purpurea \N \N \N \N \N 31647 C.muricatus Cordylocarpus Cordylocarpus muricatus \N \N \N \N \N 31648 D.scottiana Dypsis Dypsis scottiana \N \N \N \N \N 31649 P.ochiaiana Pedicularis Pedicularis ochiaiana \N \N \N \N \N 31650 M.caladiifolia Macaranga Macaranga caladiifolia \N \N \N \N \N 31651 P.orthocoryne Pedicularis Pedicularis orthocoryne \N \N \N \N \N 31652 G.flaccida Gomphrena Gomphrena flaccida \N \N \N \N \N 31653 C.plectostachyus Cynodon Cynodon plectostachyus \N \N \N \N \N 31654 \N genus Gonatogyne \N \N \N \N \N 31655 S.politisii Serapias Serapias politisii \N \N \N \N \N 31656 B.hedraiantheroides Brassiantha Brassiantha hedraiantheroides \N \N \N \N \N 31657 E.rugata Erica Erica rugata \N \N \N \N \N 31658 S.asprella Sidalcea Sidalcea oregana subsp. oregana x Sidalcea asprella \N \N \N \N \N 31659 \N genus Lepturidium \N \N \N \N \N 31660 P.pontica Paederotella Paederotella pontica \N \N \N \N \N 31661 P.congesta Plectritis Plectritis congesta \N \N \N \N \N 31662 P.barretoi Paspalum Paspalum barretoi \N \N \N \N \N 31663 R.garganicus Ranunculus Ranunculus garganicus \N \N \N \N \N 31664 A.aureofulva Adipe Adipe aureofulva \N \N \N \N \N 31665 B.reinwardtii Biophytum Biophytum reinwardtii \N \N \N \N \N 31666 B.flabellifolia Babiana Babiana flabellifolia \N \N \N \N \N 31667 A.SH-2010 Aristolochia Aristolochia sp. SH-2010 \N \N \N \N \N 31668 S.fortis Semiarundinaria Semiarundinaria fortis \N \N \N \N \N 31669 I.chinensis Ilex Ilex chinensis \N \N \N \N \N 31670 G.fusiformis Geocharis Geocharis fusiformis \N \N \N \N \N 31671 \N genus Lepanthopsis \N \N \N \N \N 31672 C.korsakoffii Caliphruria Caliphruria korsakoffii \N \N \N \N \N 31673 L.salsuginosus Lotus Lotus salsuginosus \N \N \N \N \N 31674 A.parviflora Andira Andira parviflora \N \N \N \N \N 31675 \N genus Hordeum barleys \N \N \N \N 31676 Z.hallii Zehneria Zehneria hallii \N \N \N \N \N 31677 \N genus Trachycalymma \N \N \N \N \N 31678 \N genus Pourouma \N \N \N \N \N 31679 P.floribunda Primula Primula floribunda \N \N \N \N \N 31680 D.gypsophila Dalea Dalea gypsophila \N \N \N \N \N 31681 C.cyperifolium Cymbidium Cymbidium cyperifolium \N \N \N \N \N 31682 \N varietas Eriogonum alatum var. alatum \N \N \N \N \N 31683 R.minor Rourea Rourea minor \N \N \N \N \N 31684 P.hispida Plantago Plantago hispida \N \N \N \N \N 31685 \N genus Bergia \N \N \N \N \N 31686 \N genus Ladenbergia \N \N \N \N \N 31687 D.pusilla Drimiopsis Drimiopsis pusilla \N \N \N \N \N 31688 M.pauciflora Matelea Matelea pauciflora \N \N \N \N \N 31689 \N genus Dryopetalon \N \N \N \N \N 31690 L.ferruginea Lachnostachys Lachnostachys ferruginea \N \N \N \N \N 31691 D.caricinum Diplacrum Diplacrum caricinum \N \N \N \N \N 31692 \N genus Monopsis \N \N \N \N \N 31693 P.pruinosa Physaria Physaria pruinosa \N \N \N \N \N 31694 P.lazaro-cardenasii Peniocereus Peniocereus lazaro-cardenasii \N \N \N \N \N 31695 S.reniformis Synthyris Synthyris reniformis \N \N \N \N \N 31696 C.MG381 Clusia Clusia sp. MG381 \N \N \N \N \N 31697 P.depressus Pterocephalus Pterocephalus depressus \N \N \N \N \N 31698 L.wrightii Limonium Limonium wrightii \N \N \N \N \N 31699 C.prophetarum Cucumis Cucumis prophetarum \N \N \N \N \N 31700 K.linearis Koelpinia Koelpinia linearis \N \N \N \N \N 31701 M.eurystigmatum Mesembryanthemum Mesembryanthemum eurystigmatum \N \N \N \N \N 31702 T.cherleri Trifolium Trifolium cherleri \N \N \N \N \N 31703 C.molesta Carex Carex molesta \N \N \N \N \N 31704 E.passerinoides Erica Erica passerinoides \N \N \N \N \N 31705 C.pedicellatus Croton Croton pedicellatus \N \N \N \N \N 31706 L.baileyi Lorandersonia Lorandersonia baileyi \N \N \N \N \N 31707 F.axilliflora Fitzwillia Fitzwillia axilliflora \N \N \N \N \N 31708 M.heterophylla Macaranga Macaranga heterophylla \N \N \N \N \N 31709 L.tomentosa Lagerstroemia Lagerstroemia tomentosa \N \N \N \N \N 31710 A.acaulis Aletes Aletes acaulis \N \N \N \N \N 31711 I.pinnatifida Iphiona Iphiona pinnatifida \N \N \N \N \N 31712 P.cuspidilimba Peperomia Peperomia cuspidilimba \N \N \N \N \N 31713 C.pulchella Clutia Clutia pulchella \N \N \N \N \N 31714 E.delagoense Erythroxylum Erythroxylum delagoense \N \N \N \N \N 31715 \N genus Holcus \N \N \N \N \N 31716 C.16CB01 Carpinus Carpinus sp. 16CB01 \N \N \N \N \N 31717 S.strictiflora Serapias Serapias strictiflora \N \N \N \N \N 31718 \N genus Draperia \N \N \N \N \N 31719 S.micrantha Scrophularia Scrophularia micrantha \N \N \N \N \N 31720 P.major Platycaulos Platycaulos major \N \N \N \N \N 31721 S.calycina Spuriopimpinella Spuriopimpinella calycina \N \N \N \N \N 31722 U.littoralis Uapaca Uapaca littoralis \N \N \N \N \N 31723 L.ulaei Leandra Leandra ulaei \N \N \N \N \N 31724 O.dentata Ononis Ononis dentata \N \N \N \N \N 31725 H.acutangula Haloragis Haloragis acutangula \N \N \N \N \N 31726 O.callosa Oxalis Oxalis callosa \N \N \N \N \N 31727 P.subacaule Pediomelum Pediomelum subacaule \N \N \N \N \N 31729 S.phlebopetala Scaevola Scaevola phlebopetala \N \N \N \N \N 31730 \N genus Pileostegia \N \N \N \N \N 31731 E.cuspidatum Erysimum Erysimum cuspidatum \N \N \N \N \N 31732 E.parvum Elatostema Elatostema parvum \N \N \N \N \N 31733 \N varietas Adenia olaboensis var. olaboensis \N \N \N \N \N 31734 F.ultramafica Festuca Festuca ultramafica \N \N \N \N \N 31735 \N varietas Salvia pygmaea var. simplicior \N \N \N \N \N 31736 R.rhomboideus Ranunculus Ranunculus rhomboideus \N \N \N \N \N 31737 D.paniculata Dystovomita Dystovomita paniculata \N \N \N \N \N 31738 R.cordata Ruizia Ruizia cordata \N \N \N \N \N 31739 T.bicolor Tetrazygia Tetrazygia bicolor \N \N \N \N \N 31740 S.fasciculata Sagittaria Sagittaria fasciculata \N \N \N \N \N 31741 A.emarginatus Ascochilus Ascochilus emarginatus \N \N \N \N \N 31742 \N varietas Incarvillea sinensis var. przewalskii \N \N \N \N \N 31743 T.234 Telipogon Telipogon sp. Maduro 234 \N \N \N \N \N 31744 N.versicolor Nemesia Nemesia versicolor \N \N \N \N \N 31745 P.spathulatum Phyllobotryon Phyllobotryon spathulatum \N \N \N \N \N 31746 C.oxyodon Cicer Cicer oxyodon \N \N \N \N \N 31747 W.wildeana Warneckea Warneckea wildeana \N \N \N \N \N 31748 A.guildingii Anthurium Anthurium guildingii \N \N \N \N \N 31749 \N genus Pentabrachion \N \N \N \N \N 31750 S.mucronata Salix Salix mucronata \N \N \N \N \N 31751 C.flavida Camellia Camellia flavida \N \N \N \N \N 31752 \N varietas Lupinus hispanicus var. bicolor \N \N \N \N \N 31753 G.longevaginata Geonoma Geonoma longevaginata \N \N \N \N \N 31754 A.mewukka Arctostaphylos Arctostaphylos mewukka \N \N \N \N \N 31755 C.flaccida Coelogyne Coelogyne flaccida \N \N \N \N \N 31756 S.rosulatum Sisyrinchium Sisyrinchium rosulatum \N \N \N \N \N 31757 S.platyrachis Sclerorhachis Sclerorhachis platyrachis \N \N \N \N \N 31758 A.auriculata Anthemis Anthemis auriculata \N \N \N \N \N 31759 P.weinmaniifolia Pistacia Pistacia weinmaniifolia \N \N \N \N \N 31760 R.elwesii Rhodophiala Rhodophiala elwesii \N \N \N \N \N 31761 D.nitens Dioscorea Dioscorea nitens \N \N \N \N \N 31762 S.laxum Steinchisma Steinchisma laxum \N \N \N \N \N 31763 F.carica Ficus Ficus carica common fig \N \N \N \N 31764 C.alismifolium Chlorophytum Chlorophytum alismifolium \N \N \N \N \N 31765 S.monosperma Stahlia Stahlia monosperma \N \N \N \N \N 31766 M.ornata Musa Musa ornata flowering banana \N \N \N \N 31767 D.occidentalis Decaschistia Decaschistia occidentalis \N \N \N \N \N 31768 S.sprucei Swartzia Swartzia sprucei \N \N \N \N \N 31769 B.nana Betula Betula nana alpine birch,dwarf birch \N \N \N \N 31770 S.falcata Symplocos Symplocos falcata \N \N \N \N \N 31771 \N genus Ostrya \N \N \N \N \N 31772 C.okinawense Cinnamomum Cinnamomum okinawense \N \N \N \N \N 31773 \N genus Marsypopetalum \N \N \N \N \N 31774 O.iricolor Oncidium Oncidium iricolor \N \N \N \N \N 31775 G.amplexicaulis Garcinia Garcinia amplexicaulis \N \N \N \N \N 31776 S.paucifolia Silene Silene paucifolia \N \N \N \N \N 31777 P.tenuifolia Polygala Polygala tenuifolia Chinese senega-root,yuan zhi \N \N \N \N 31778 M.xaltianguensis Mammillaria Mammillaria xaltianguensis \N \N \N \N \N 31779 T.corymbosa Turbina Turbina corymbosa Christmasvine \N \N \N \N 31780 R.pinnatisepalus Rubus Rubus pinnatisepalus \N \N \N \N \N 31781 \N genus Lasthenia goldfields \N \N \N \N 31782 E.curviflora Erica Erica curviflora \N \N \N \N \N 31783 T.annamense Tetrastigma Tetrastigma annamense \N \N \N \N \N 31784 C.spinosa Calicotome Calicotome spinosa \N \N \N \N \N 31785 H.schimperi Harpachne Harpachne schimperi \N \N \N \N \N 31786 H.glabrum Hedychium Hedychium glabrum \N \N \N \N \N 31787 G.65 Guatteria Guatteria sp. Chatrou et al. 65 \N \N \N \N \N 31788 B.glaberrima Bomarea Bomarea glaberrima \N \N \N \N \N 31789 F.sterrocarpa Ficus Ficus sterrocarpa \N \N \N \N \N 31790 \N varietas Chaetanthera stuebelii var. argentina \N \N \N \N \N 31791 C.flava Carex Carex flava \N \N \N \N \N 31792 E.sicula Erica Erica sicula \N \N \N \N \N 31793 \N genus Erymophyllum \N \N \N \N \N 31794 P.versicolor Potentilla Potentilla versicolor \N \N \N \N \N 31795 R.integrifolia Rydingia Rydingia integrifolia \N \N \N \N \N 31796 \N varietas Leucas abyssinica var. argyrophylla \N \N \N \N \N 31797 A.crassipetala Acronychia Acronychia crassipetala \N \N \N \N \N 31798 B.schizoglossoides Brachystelma Brachystelma schizoglossoides \N \N \N \N \N 31799 O.attaviria Ophrys Ophrys attaviria \N \N \N \N \N 31800 \N varietas Capsicum eximium var. tomentosum \N \N \N \N \N 31801 A.corsicum Alyssum Alyssum corsicum \N \N \N \N \N 31802 C.(Kaitorete) Craspedia Craspedia sp. (Kaitorete) \N \N \N \N \N 31803 \N subspecies Navarretia leptalea subsp. leptalea \N \N \N \N \N 31804 B.palmensis Bethencourtia Bethencourtia palmensis \N \N \N \N \N 31805 C.pedicellata Cuscuta Cuscuta pedicellata \N \N \N \N \N 31806 C.213 Cestrum Cestrum sp. Montero 213 \N \N \N \N \N 31807 A.gayana Anthemis Anthemis gayana \N \N \N \N \N 31808 B.frutescens Borrichia Borrichia frutescens \N \N \N \N \N 31809 G.aschenbornii Galium Galium aschenbornii \N \N \N \N \N 31810 P.hispida Paraphlomis Paraphlomis hispida \N \N \N \N \N 31811 S.oligoclada Senna Senna oligoclada \N \N \N \N \N 31812 A.saligna Acacia Acacia saligna \N \N \N \N \N 31813 \N genus Odontophorus \N \N \N \N \N 31814 \N varietas Corylus ferox var. thibetica \N \N \N \N \N 31815 B.napus Brassica Brassica napus oilseed rape,rape,rapeseeds \N \N \N \N 31816 P.jugosa Pabstia Pabstia jugosa \N \N \N \N \N 31817 E.lasciva Erica Erica lasciva \N \N \N \N \N 31818 H.fusca Horkelia Horkelia fusca pinewoods horkelia \N \N \N \N 31819 P.amplifolia Phlox Phlox amplifolia \N \N \N \N \N 31820 P.filistilum Piper Piper filistilum \N \N \N \N \N 31821 L.xingrenense Ligustrum Ligustrum xingrenense \N \N \N \N \N 31822 K.azurea Kohautia Kohautia azurea \N \N \N \N \N 31823 \N family Roridulaceae \N \N \N \N \N 31824 S.aschenborniana Stevia Stevia aschenborniana \N \N \N \N \N 31825 F.zilloides Fagonia Fagonia zilloides \N \N \N \N \N 31826 \N genus Mezoneuron \N \N \N \N \N 31827 P.'Jabiru' unclassified Pomaderreae Pomaderreae sp. 'Jabiru' \N \N \N \N \N 31828 \N varietas Mentzelia pumila var. procera \N \N \N \N \N 31829 S.selanica Shorea Shorea selanica \N \N \N \N \N 31830 C.aphyllum Calligonum Calligonum aphyllum \N \N \N \N \N 31831 P.tricarinatus Potamogeton Potamogeton tricarinatus \N \N \N \N \N 31832 E.racemosa Echeveria Echeveria racemosa \N \N \N \N \N 31833 A.pseudosilphioides Angelphytum Angelphytum pseudosilphioides \N \N \N \N \N 31834 P.webbii Plantago Plantago webbii \N \N \N \N \N 31835 M.trichocarpa Macaranga Macaranga trichocarpa \N \N \N \N \N 31836 \N genus Orlaya \N \N \N \N \N 31837 \N genus Lasianthaea \N \N \N \N \N 31838 G.dives Galeandra Galeandra dives \N \N \N \N \N 31839 M.JJS-2010d Mentzelia Mentzelia sp. JJS-2010d \N \N \N \N \N 31840 E.Espluis73 Elleanthus Elleanthus sp. Espluis73 \N \N \N \N \N 31841 S.mitchellianum Solanum Solanum mitchellianum \N \N \N \N \N 31842 A.latifolia Astrotricha Astrotricha latifolia \N \N \N \N \N 31843 T.arnacites Tatianyx Tatianyx arnacites \N \N \N \N \N 31844 \N subspecies Primula obconica subsp. obconica \N \N \N \N \N 31845 \N genus Mezzettiopsis \N \N \N \N \N 31846 V.wilsonae Vitis Vitis wilsonae \N \N \N \N \N 31847 A.scandens Asparagus Asparagus scandens \N \N \N \N \N 31848 M.mariscoides Machaerina Machaerina mariscoides \N \N \N \N \N 31849 M.salmantica Mantisalca Mantisalca salmantica \N \N \N \N \N 31850 M.fokienensis Microtropis Microtropis fokienensis \N \N \N \N \N 31851 C.cashmeriana Corydalis Corydalis cashmeriana \N \N \N \N \N 31852 H.osseticum Heracleum Heracleum osseticum \N \N \N \N \N 31853 C.blumei Calamus Calamus blumei \N \N \N \N \N 31854 H.furcifera Habenaria Habenaria furcifera \N \N \N \N \N 31855 \N genus Poecilanthe \N \N \N \N \N 31856 A.pectinatum Acer Acer pectinatum \N \N \N \N \N 31857 M.glassii Mammillaria Mammillaria glassii \N \N \N \N \N 31858 S.sinuatus Stenocarpus Stenocarpus sinuatus \N \N \N \N \N 31859 U.725 Urophyllum Urophyllum sp. Ingle 725 \N \N \N \N \N 31860 P.setifolia Pentaschistis Pentameris setifolia \N \N \N \N \N 31861 \N genus Forcipella \N \N \N \N \N 31862 C.sparsifolia Cleome Cleome sparsifolia \N \N \N \N \N 31863 M.secunda Myosotis Myosotis secunda \N \N \N \N \N 31864 P.astrellantha Psychotria Psychotria astrellantha \N \N \N \N \N 31865 C.sylvestris Casearia Casearia sylvestris \N \N \N \N \N 31866 S.leiboensis Sinosenecio Sinosenecio leiboensis \N \N \N \N \N 31867 J.covillei Juncus Juncus covillei \N \N \N \N \N 31868 V.unijuga Vicia Vicia unijuga \N \N \N \N \N 31869 \N genus Osyridicarpos \N \N \N \N \N 31870 O.vernus Odontites Odontites vernus \N \N \N \N \N 31871 A.hamosa Anthyllis Anthyllis hamosa \N \N \N \N \N 31872 C.pellegrinianum Cryptosepalum Cryptosepalum pellegrinianum \N \N \N \N \N 31873 M.robinsoniana Miconia Miconia robinsoniana \N \N \N \N \N 31874 S.canarina Smithiantha Smithiantha canarina \N \N \N \N \N 31875 T.crassispathum Taccarum Taccarum crassispathum \N \N \N \N \N 31876 I.collettii Iris Iris collettii gao yuan yuan wei,plateau iris \N \N \N \N 31877 C.6639 Cissus Cissus sp. 6639 \N \N \N \N \N 31878 G.spathulatum Glossostelma Glossostelma spathulatum \N \N \N \N \N 31879 F.suspensa Forsythia Forsythia suspensa \N \N \N \N \N 31880 N.ramispina Nepenthes Nepenthes ramispina \N \N \N \N \N 31881 C.boryana Carex Carex boryana \N \N \N \N \N 31882 G.repens Globularia Globularia repens \N \N \N \N \N 31883 D.angulata Daviesia Daviesia angulata \N \N \N \N \N 31884 \N order Pandanales \N \N \N \N \N 31885 P.029/98 Pterostylis Pterostylis aff. montana B Molloy 029/98 \N \N \N \N \N 31886 P.s.n. Phyllostachys Phyllostachys sp. Hodkinson s.n. \N \N \N \N \N 31887 P.premnospicum Piper Piper premnospicum \N \N \N \N \N 31888 F.autumnalis Fimbristylis Fimbristylis autumnalis \N \N \N \N \N 31889 \N varietas Platanus occidentalis var. occidentalis \N \N \N \N \N 31890 L.kerguelensis Lyallia Lyallia kerguelensis \N \N \N \N \N 31891 S.officinale Symphytum Symphytum officinale boneset,common comfrey,slippery-root \N \N \N \N 31892 C.dubium Cerastium Cerastium dubium \N \N \N \N \N 31893 G.nudicaulis Globularia Globularia nudicaulis \N \N \N \N \N 31894 A.vermifuga Andira Andira vermifuga \N \N \N \N \N 31895 R.palmatum Rheum Rheum palmatum \N \N \N \N \N 31896 S.multifidum Solanum Solanum multifidum \N \N \N \N \N 31897 O.semota Orbea Orbea semota \N \N \N \N \N 31898 G.longifolia Gagea Gagea longifolia \N \N \N \N \N 31899 \N genus Conyza \N \N \N \N \N 31900 E.insularis Echidnopsis Echidnopsis insularis \N \N \N \N \N 31901 S.svalbardensis Saxifraga Saxifraga svalbardensis \N \N \N \N \N 31902 A.patagonica Ameghinoa Ameghinoa patagonica \N \N \N \N \N 31903 P.serpyllifolia Polygala Polygala serpyllifolia \N \N \N \N \N 31904 L.hatusimae Lithocarpus Lithocarpus hatusimae \N \N \N \N \N 31905 O.phloxidiflora Oxalis Oxalis phloxidiflora \N \N \N \N \N 31906 B.gracilipes Bursera Bursera gracilipes \N \N \N \N \N 31907 P.altimontanus Phaseolus Phaseolus altimontanus \N \N \N \N \N 31908 O.sceptrum Oncidium Oncidium sceptrum \N \N \N \N \N 31909 R.AK286640 Rytidosperma Rytidosperma sp. AK286640 \N \N \N \N \N 31910 \N genus Pachypleurum \N \N \N \N \N 31911 B.lupulina Barleria Barleria lupulina \N \N \N \N \N 31912 \N tribe Coussareeae \N \N \N \N \N 31913 I.virginica Itea Itea virginica \N \N \N \N \N 31914 F.multiflora Freycinetia Freycinetia multiflora \N \N \N \N \N 31915 A.caesium Allium Allium caesium \N \N \N \N \N 31916 F.kiloneura Ficus Ficus kiloneura \N \N \N \N \N 31917 T.6081ht unclassified Taraxacum Taraxacum (sect. Mongolica) sp. 6081ht \N \N \N \N \N 31918 R.LE180 Radamaea Radamaea sp. LE180 \N \N \N \N \N 31919 \N genus Kernera \N \N \N \N \N 31920 P.interjacens Primula Primula interjacens \N \N \N \N \N 31921 O.purpurea Oxalis Oxalis purpurea \N \N \N \N \N 31922 D.9246 Dilkea Dilkea sp. Gilbert 9246 \N \N \N \N \N 31923 C.heteroclita Chaubardia Chaubardia heteroclita \N \N \N \N \N 31924 M.schleidenii Mimosa Mimosa schleidenii \N \N \N \N \N 31925 D.rupestris Drymocallis Drymocallis rupestris prairie-tea,rock cinquefoil \N \N \N \N 31926 K.galpinii Kniphofia Kniphofia galpinii \N \N \N \N \N 31927 B.corydalinum Bunium Bunium corydalinum \N \N \N \N \N 31928 S.brunonis Sauropus Sauropus brunonis \N \N \N \N \N 31929 \N varietas Caulanthus heterophyllus var. pseudosimulans \N \N \N \N \N 31930 M.2609 Malleastrum Malleastrum sp. Rakotovao 2609 \N \N \N \N \N 31931 E.fendleri Euphorbia Euphorbia fendleri \N \N \N \N \N 31932 C.odoratissima Capparis Capparis odoratissima \N \N \N \N \N 31933 \N genus Fezia \N \N \N \N \N 31934 A.divaricata Acrotriche Acrotriche divaricata \N \N \N \N \N 31935 P.elata Psychotria Psychotria elata \N \N \N \N \N 31936 P.2453 Pachyphyllum Pachyphyllum sp. Whitten 2453 \N \N \N \N \N 31937 D.fragrans Dracaena Dracaena fragrans \N \N \N \N \N 31938 \N genus Levieria \N \N \N \N \N 31939 E.subarticulata Eleocharis Eleocharis subarticulata \N \N \N \N \N 31940 R.australe Rheum Rheum australe Himalayan rhubarb,zang bian da huang \N \N \N \N 31941 \N genus Crossandra \N \N \N \N \N 31942 S.crassissimus Senecio Senecio crassissimus \N \N \N \N \N 31943 H.monopetalus Hybanthus Hybanthus monopetalus slender violet-bush \N \N \N \N 31944 G.arboreum Geranium Geranium arboreum nohoanu \N \N \N \N 31945 S.heterodoxum Solanum Solanum heterodoxum \N \N \N \N \N 31946 \N genus Leptoderris \N \N \N \N \N 31947 M.anisophyllum Mortoniodendron Mortoniodendron anisophyllum \N \N \N \N \N 31948 A.calceolus Angraecum Angraecum calceolus \N \N \N \N \N 31949 A.cristatum Agropyron Agropyron cristatum \N \N \N \N \N 31950 R.adenodonta Rytigynia Rytigynia adenodonta \N \N \N \N \N 31951 V.canina Viola Viola canina dog violet,heath violet \N \N \N \N 31952 O.rectangulare Ormocarpum Ormocarpum rectangulare \N \N \N \N \N 31953 C.abrupta Carex Carex abrupta \N \N \N \N \N 31954 R.sprunerianus Ranunculus Ranunculus sprunerianus \N \N \N \N \N 31955 \N genus Cenostigma \N \N \N \N \N 31956 P.macrobotrys Palicourea Palicourea macrobotrys \N \N \N \N \N 31957 T.longifolia Triplaris Triplaris longifolia \N \N \N \N \N 31958 M.caroliniana Macbridea Macbridea caroliniana \N \N \N \N \N 31959 C.tuberculata Cliffortia Cliffortia neglecta x Cliffortia tuberculata \N \N \N \N \N 31960 A.pachyphylla Aglaia Aglaia pachyphylla \N \N \N \N \N 31961 K.iranica Kochia Kochia iranica \N \N \N \N \N 31962 P.paupercula Packera Packera paupercula \N \N \N \N \N 31963 M.flocculidens Monticalia Monticalia flocculidens \N \N \N \N \N 31964 M.rivularis Mascagnia Mascagnia rivularis \N \N \N \N \N 31965 T.cyanea Thelymitra Thelymitra cyanea \N \N \N \N \N 31966 S.glaber Streblus Streblus glaber \N \N \N \N \N 31967 \N genus Lamyropappus \N \N \N \N \N 31968 D.maculata Disa Disa maculata \N \N \N \N \N 31969 T.africana Tabernaemontana Tabernaemontana africana \N \N \N \N \N 31970 P.marquesii Pentarhopalopilia Pentarhopalopilia marquesii \N \N \N \N \N 31971 S.media Smelowskia Smelowskia media \N \N \N \N \N 31972 P.leucorrhizum Peliostomum Peliostomum leucorrhizum \N \N \N \N \N 31973 P.cunninghamii Pennantia Pennantia cunninghamii \N \N \N \N \N 31974 A.oligostemon Acidocroton Acidocroton oligostemon \N \N \N \N \N 31975 G.pervilleana Gagnebina Gagnebina pervilleana \N \N \N \N \N 31976 Z.flexuosum Zygophyllum Zygophyllum flexuosum \N \N \N \N \N 31977 B.neglecta Bletia Bletia neglecta \N \N \N \N \N 31978 H.hygrometrica Hypoxis Hypoxis hygrometrica \N \N \N \N \N 31979 \N genus Alectra \N \N \N \N \N 31980 S.foetidissimum Sideroxylon Sideroxylon foetidissimum \N \N \N \N \N 31981 \N genus Listera \N \N \N \N \N 31982 B.ciliaris Brachyachne Brachyachne ciliaris \N \N \N \N \N 31983 \N genus Becquerelia \N \N \N \N \N 31984 C.melanocarpa Carex Carex melanocarpa \N \N \N \N \N 31985 L.salicifolium Leucadendron Leucadendron salicifolium \N \N \N \N \N 31986 \N genus Boswellia \N \N \N \N \N 31987 \N genus Maihuenia \N \N \N \N \N 31988 A.oligostachya Austrostipa Austrostipa oligostachya \N \N \N \N \N 31989 A.semnanensis Aethionema Aethionema semnanensis \N \N \N \N \N 31990 N.sericeus Nanothamnus Nanothamnus sericeus \N \N \N \N \N 31991 C.turbinata Chimarrhis Chimarrhis turbinata \N \N \N \N \N 31992 C.durieui Carex Carex durieui \N \N \N \N \N 31993 C.nicaraguense Callaeum Callaeum nicaraguense \N \N \N \N \N 31994 W.elongata Whitfieldia Whitfieldia elongata \N \N \N \N \N 31995 O.minuta Oryza Oryza minuta \N \N \N \N \N 31996 \N no rank core eudicotyledons \N \N \N \N \N 31997 C.hapalotricha Cortaderia Cortaderia hapalotricha \N \N \N \N \N 31998 S.complicatum Stenanthemum Stenanthemum complicatum \N \N \N \N \N 31999 T.exserta Tillandsia Tillandsia exserta \N \N \N \N \N 32000 C.tecopensis Cordylanthus Cordylanthus tecopensis \N \N \N \N \N 32001 S.corynanthum Syzygium Syzygium corynanthum \N \N \N \N \N 32002 C.persica Crambe Crambe persica \N \N \N \N \N 32003 I.triflora Ilex Ilex triflora \N \N \N \N \N 32004 A.brevis Avena Avena brevis \N \N \N \N \N 32005 A.julibrissin Albizia Albizia julibrissin silk tree \N \N \N \N 32006 C.macrocephala Carex Carex macrocephala \N \N \N \N \N 32007 P.lancifolia Peperomia Peperomia lancifolia \N \N \N \N \N 32008 I.biglumis Iris Iris biglumis \N \N \N \N \N 32009 U.korupensis Uvariopsis Uvariopsis korupensis \N \N \N \N \N 32010 O.pinifolia Oldenlandia Oldenlandia pinifolia \N \N \N \N \N 32011 C.melo Cucumis Cucumis melo Oriental melon,muskmelon \N \N \N \N 32012 S.mettenianum Sempervivum Sempervivum mettenianum \N \N \N \N \N 32013 P.heyneana Pimpinella Pimpinella heyneana \N \N \N \N \N 32014 S.polyacanthus Sicyos Sicyos polyacanthus \N \N \N \N \N 32015 L.myricoides Lomatia Lomatia myricoides \N \N \N \N \N 32016 G.standleyana Guapira Guapira standleyana \N \N \N \N \N 32017 E.zeyheri Erythrina Erythrina zeyheri \N \N \N \N \N 32018 C.pulchella Correa Correa pulchella \N \N \N \N \N 32019 P.21834 Persea Persea aff. subcordata Beck 21834 \N \N \N \N \N 32020 D.cubincola Dinema Dinema cubincola \N \N \N \N \N 32021 \N subspecies Narcissus rupicola subsp. watieri \N \N \N \N \N 32022 O.gloriosum Oncidium Oncidium gloriosum \N \N \N \N \N 32023 D.hystricina Dichaea Dichaea hystricina \N \N \N \N \N 32024 A.nummularifolia Aristolochia Aristolochia nummularifolia \N \N \N \N \N 32025 S.'veillonorum' Schefflera Schefflera sp. ined. 'veillonorum' \N \N \N \N \N 32026 \N no rank Saccharum hybrid cultivar NCo 310 \N \N \N \N \N 32027 P.schomburgkiana Pogonophora Pogonophora schomburgkiana \N \N \N \N \N 32028 E.lonchophyllus Erigeron Erigeron lonchophyllus \N \N \N \N \N 32029 R.alpestris Rosularia Rosularia alpestris \N \N \N \N \N 32030 C.tianschanica Cicerbita Cicerbita tianschanica \N \N \N \N \N 32031 B.uniflora Bouteloua Bouteloua uniflora \N \N \N \N \N 32032 V.staminosa Verticordia Verticordia staminosa \N \N \N \N \N 32033 \N genus Symphionema \N \N \N \N \N 32034 U.parviflorus Ulex Ulex parviflorus \N \N \N \N \N 32035 A.acuminata Albuca Albuca acuminata \N \N \N \N \N 32036 \N genus Ditrysinia \N \N \N \N \N 32037 C.2332 Crinum Crinum sp. Meerow 2332 \N \N \N \N \N 32038 D.O-672 Dilochia Dilochia sp. Chase O-672 \N \N \N \N \N 32039 S.villosa Scrophularia Scrophularia villosa \N \N \N \N \N 32040 S.angustifolia Saussurea Saussurea angustifolia \N \N \N \N \N 32041 I.tingitana Iris Iris tingitana \N \N \N \N \N 32042 A.sordidum Acanthophyllum Acanthophyllum sordidum \N \N \N \N \N 32043 R.myconi Ramonda Ramonda myconi \N \N \N \N \N 32044 S.deserticola Sanicula Sanicula deserticola \N \N \N \N \N 32045 \N genus Talinum \N \N \N \N \N 32046 I.setosa Inga Inga setosa \N \N \N \N \N 32047 C.istria Colutea Colutea istria \N \N \N \N \N 32048 P.egregia Pinanga Pinanga egregia \N \N \N \N \N 32049 H.sikokumontanum Hypericum Hypericum sikokumontanum \N \N \N \N \N 32050 B.yunnanensis Bauhinia Bauhinia yunnanensis \N \N \N \N \N 32051 N.balsamiflua Nolana Nolana balsamiflua \N \N \N \N \N 32052 C.galianoi Centaurea Centaurea galianoi \N \N \N \N \N 32053 A.setosa Actinidia Actinidia setosa \N \N \N \N \N 32054 P.reichenbachianum Phoradendron Phoradendron reichenbachianum \N \N \N \N \N 32055 A.californica Asclepias Asclepias californica \N \N \N \N \N 32056 C.spinosa Cladoraphis Cladoraphis spinosa \N \N \N \N \N 32057 C.elegans Croton Croton elegans \N \N \N \N \N 32058 S.190406/25 Salicornia Salicornia sp. Steffen & Koecke 190406/25 \N \N \N \N \N 32059 E.petiolaris Euphrasia Euphrasia petiolaris \N \N \N \N \N 32060 P.macrantha Pseudopentameris Pseudopentameris macrantha \N \N \N \N \N 32061 \N genus Campynemanthe \N \N \N \N \N 32062 \N genus Hemiboeopsis \N \N \N \N \N 32063 B.glandulosa Brachyscome Brachyscome glandulosa \N \N \N \N \N 32064 C.exigua Curcuma Curcuma exigua \N \N \N \N \N 32065 \N tribe Sophoreae \N \N \N \N \N 32066 C.hormathodes Carex Carex hormathodes \N \N \N \N \N 32067 C.tenuiculus Corryocactus Corryocactus tenuiculus \N \N \N \N \N 32068 M.grahamii Manihot Manihot grahamii \N \N \N \N \N 32069 \N subtribe Sobralieae \N \N \N \N \N 32070 P.unguis-cati Pithecellobium Pithecellobium unguis-cati \N \N \N \N \N 32071 C.biflora Crossostylis Crossostylis biflora \N \N \N \N \N 32072 L.graveolens Luffa Luffa graveolens \N \N \N \N \N 32073 \N genus Andromeda \N \N \N \N \N 32074 \N genus Galactophora \N \N \N \N \N 32075 D.preussii Dioscorea Dioscorea preussii \N \N \N \N \N 32076 B.gravinae Brassica Brassica gravinae \N \N \N \N \N 32077 \N subspecies Polygonum aviculare subsp. buxiforme \N \N \N \N \N 32078 A.rothii Allium Allium rothii \N \N \N \N \N 32079 P.urubiciensis Passiflora Passiflora urubiciensis \N \N \N \N \N 32080 P.pubescens Prosopis Prosopis pubescens \N \N \N \N \N 32081 \N varietas Mimosa invisa var. invisa \N \N \N \N \N 32082 \N varietas Mimosa somnians var. lasiocarpa \N \N \N \N \N 32083 E.PB-2011 Euphorbia Euphorbia sp. 1 PB-2011 \N \N \N \N \N 32084 R.corymbifera Rosa Rosa alba x Rosa corymbifera \N \N \N \N \N 32085 O.padangensis Oberonia Oberonia padangensis \N \N \N \N \N 32086 \N varietas Elaeodendron australe var. integrifolium \N \N \N \N \N 32087 R.trichostomum Rhododendron Rhododendron trichostomum \N \N \N \N \N 32088 C.pineticola Cousinia Cousinia pineticola \N \N \N \N \N 32089 T.palmeri Trifolium Trifolium palmeri \N \N \N \N \N 32090 P.O-113 Pachyphyllum Pachyphyllum sp. Chase O-113 \N \N \N \N \N 32091 P.tangutica Prunus Prunus tangutica xi kang bian tao \N \N \N \N 32092 C.calcifugens Carex Carex calcifugens \N \N \N \N \N 32093 T.seleriana Tillandsia Tillandsia seleriana \N \N \N \N \N 32094 \N varietas Horkelia tridentata var. tridentata \N \N \N \N \N 32095 G.macrosiphon Gigasiphon Gigasiphon macrosiphon \N \N \N \N \N 32096 E.buchtienii Eryngium Eryngium buchtienii \N \N \N \N \N 32097 \N subspecies Rafnia racemosa subsp. racemosa \N \N \N \N \N 32099 C.pardalina Cymbidiella Cymbidiella pardalina \N \N \N \N \N 32100 A.nullumense Argophyllum Argophyllum nullumense \N \N \N \N \N 32101 C.oligosperma Cardamine Cardamine oligosperma little western bittercress \N \N \N \N 32102 C.ibapensis Cymopterus Cymopterus ibapensis \N \N \N \N \N 32103 E.angustifolia Elaeagnus Elaeagnus angustifolia Russian olive,oleaster \N \N \N \N 32104 T.divaricatum Teucrium Teucrium divaricatum \N \N \N \N \N 32105 \N subspecies Byttneria catalpifolia subsp. africana \N \N \N \N \N 32106 P.panjutinii Polylophium Polylophium panjutinii \N \N \N \N \N 32107 \N subspecies Medicago sativa subsp. falcata sickle alfalfa,sickle medic,yellow lucerne,yellow-flower alfalfa \N \N \N \N 32108 S.turkestanica Salsola Salsola turkestanica \N \N \N \N \N 32109 \N genus Ridleyandra \N \N \N \N \N 32110 A.subnuda Anacampseros Anacampseros subnuda \N \N \N \N \N 32111 N.fauriei Neomolinia Neomolinia fauriei \N \N \N \N \N 32112 H.kokio Hibiscus Hibiscus kokio koki`o ula,red rosemallow \N \N \N \N 32113 H.verticillata Hermannia Hermannia verticillata \N \N \N \N \N 32114 S.paraguariensis Spigelia Spigelia paraguariensis \N \N \N \N \N 32115 C.sanguineus Cyrtanthus Cyrtanthus sanguineus \N \N \N \N \N 32116 P.bashanensis Paris Paris bashanensis \N \N \N \N \N 32117 A.similis Asclepias Asclepias similis \N \N \N \N \N 32118 \N genus Squamopappus \N \N \N \N \N 32119 C.seticuspe Chrysanthemum Chrysanthemum seticuspe \N \N \N \N \N 32120 L.oblongifolia Ladenbergia Ladenbergia oblongifolia \N \N \N \N \N 32121 S.bocconei Spergularia Spergularia bocconei \N \N \N \N \N 32122 G.monospatha Geonoma Geonoma monospatha \N \N \N \N \N 32123 M.GD-AB1 Milicia Milicia cf. excelsa GD-AB1 \N \N \N \N \N 32124 T.scordium Teucrium Teucrium scordium \N \N \N \N \N 32125 C.ursina Carex Carex ursina \N \N \N \N \N 32126 W.meiantha Witheringia Witheringia meiantha \N \N \N \N \N 32127 T.jamesii Telesonix Telesonix jamesii \N \N \N \N \N 32128 V.antillana Vallesia Vallesia antillana \N \N \N \N \N 32129 L.acutivena Litsea Litsea acutivena \N \N \N \N \N 32130 T.sample environmental samples Taxonomy:531405 Talisia environmental sample \N \N \N \N \N 32131 H.'Columbia' Herrania Herrania sp. 'Columbia' \N \N \N \N \N 32132 R.dumetosa Retispatha Retispatha dumetosa \N \N \N \N \N 32133 C.myrianthum Clinopodium Clinopodium myrianthum \N \N \N \N \N 32134 T.apiculatum Tetrastigma Tetrastigma apiculatum \N \N \N \N \N 32135 \N genus Camissonia suncups \N \N \N \N 32136 S.frigidum Sium Sium frigidum \N \N \N \N \N 32137 \N genus Physocarpus \N \N \N \N \N 32138 B.dracunculifolia Baccharis Baccharis dracunculifolia \N \N \N \N \N 32139 J.JPM-2004 Jovellana Jovellana sp. JPM-2004 \N \N \N \N \N 32140 D.paneroi Deprea Deprea paneroi \N \N \N \N \N 32141 C.cribbiana Corynocarpus Corynocarpus cribbiana \N \N \N \N \N 32142 P.stenantha Poa Poa stenantha \N \N \N \N \N 32143 S.alata Synotis Synotis alata \N \N \N \N \N 32144 H.colnagoi Hoffmannseggella Hoffmannseggella colnagoi \N \N \N \N \N 32145 \N subspecies Myosotis laxa subsp. baltica \N \N \N \N \N 32146 C.bipartitus Cyclanthus Cyclanthus bipartitus \N \N \N \N \N 32147 S.roemeriana Salvia Salvia roemeriana \N \N \N \N \N 32148 M.per-dusenii Mimosa Mimosa per-dusenii \N \N \N \N \N 32149 D.althaeoides Dioscorea Dioscorea althaeoides \N \N \N \N \N 32150 \N subfamily Solanoideae \N \N \N \N \N 32151 L.grayi Lomatium Lomatium grayi Gray's biscuitroot \N \N \N \N 32152 E.sagittatum Epimedium Epimedium sagittatum \N \N \N \N \N 32153 \N varietas Tylophora ovata var. ovata \N \N \N \N \N 32154 F.actae Festuca Festuca actae \N \N \N \N \N 32155 M.disciformis Medicago Medicago disciformis \N \N \N \N \N 32156 \N subspecies Biarum davisii subsp. marmarisense \N \N \N \N \N 32157 D.comosa Disa Disa comosa \N \N \N \N \N 32158 C.barbatus Calopogon Calopogon barbatus \N \N \N \N \N 32159 P.delenatii Paphiopedilum Paphiopedilum delenatii \N \N \N \N \N 32160 M.jussieui Munnozia Munnozia jussieui \N \N \N \N \N 32161 A.tonkinense Acer Acer tonkinense \N \N \N \N \N 32162 U.tenuis Uncinia Uncinia tenuis \N \N \N \N \N 32163 C.symphytifolius Cistus Cistus symphytifolius \N \N \N \N \N 32164 P.pallens Paspalum Paspalum pallens \N \N \N \N \N 32165 K.lathrophyton Kielmeyera Kielmeyera lathrophyton \N \N \N \N \N 32166 D.khasianum Drepanostachyum Drepanostachyum khasianum \N \N \N \N \N 32167 \N genus Andropogon \N \N \N \N \N 32168 A.multiflora Adonis Adonis multiflora \N \N \N \N \N 32169 S.betaceum Solanum Solanum betaceum tamarillo,tree-tomato \N \N \N \N 32170 A.glandulosa Achlydosa Achlydosa glandulosa \N \N \N \N \N 32171 B.subalpestris Begonia Begonia subalpestris \N \N \N \N \N 32172 A.ochrochlorus Astragalus Astragalus ochrochlorus \N \N \N \N \N 32173 C.montana Cyphotheca Cyphotheca montana \N \N \N \N \N 32174 T.africanum x Triticosecale Triticum aestivum x Secale strictum subsp. africanum \N \N \N \N \N 32175 T.sennii Tennantia Tennantia sennii \N \N \N \N \N 32176 C.silvatica Calystegia Calystegia silvatica \N \N \N \N \N 32177 C.chrysocoma Clematis Clematis chrysocoma \N \N \N \N \N 32178 A.krasnoboroffii Aconitum Aconitum krasnoboroffii \N \N \N \N \N 32179 F.elegans Funastrum Funastrum elegans \N \N \N \N \N 32180 P.vestita Phyllostegia Phyllostegia vestita \N \N \N \N \N 32181 C.laburnifolia Crotalaria Crotalaria laburnifolia \N \N \N \N \N 32182 \N genus Houlletia \N \N \N \N \N 32183 B.petiolaris Bourreria Bourreria petiolaris \N \N \N \N \N 32184 H.albiflora Hoya Hoya albiflora \N \N \N \N \N 32185 S.natans Sagittaria Sagittaria natans \N \N \N \N \N 32186 A.longifolia Asimina Asimina longifolia polecat bush \N \N \N \N 32187 \N genus Sorocea \N \N \N \N \N 32188 R.pachyptera Rhipsalis Rhipsalis pachyptera \N \N \N \N \N 32189 Z.smithii Zieria Zieria smithii \N \N \N \N \N 32190 D.rosmarinifolium Dracophyllum Dracophyllum rosmarinifolium \N \N \N \N \N 32191 S.dichotoma Semenovia Semenovia dichotoma \N \N \N \N \N 32192 G.AK285250 Geranium Geranium aff. retrorsum AK285250 \N \N \N \N \N 32193 M.pyriformis Mischocarpus Mischocarpus pyriformis \N \N \N \N \N 32194 M.1159 Millettia Millettia sp. Hu 1159 \N \N \N \N \N 32195 D.indivisum Dendrobium Dendrobium indivisum \N \N \N \N \N 32196 N.whitei Nautilocalyx Nautilocalyx whitei \N \N \N \N \N 32197 C.imperialis Centaurea Centaurea imperialis \N \N \N \N \N 32198 T.funckiana Tillandsia Tillandsia funckiana \N \N \N \N \N 32199 A.cimicifuga Actaea Actaea cimicifuga \N \N \N \N \N 32200 \N genus Iskandera \N \N \N \N \N 32201 K.OM073 Knowltonia Knowltonia sp. OM073 \N \N \N \N \N 32202 C.monogyna Cuscuta Cuscuta monogyna \N \N \N \N \N 32203 L.sparrei Lysipomia Lysipomia sparrei \N \N \N \N \N 32204 \N genus Sibthorpia \N \N \N \N \N 32205 A.asterotrichum Aequatorium Aequatorium asterotrichum \N \N \N \N \N 32206 A.nigrescens Acacia Acacia nigrescens knobthorn \N \N \N \N 32207 S.khasiana Silene Silene khasiana \N \N \N \N \N 32208 E.gilliesii Erythrostemon Erythrostemon gilliesii barba de chivo,bird-of-paradise shrub,mal de perro,poinciana \N \N \N \N 32209 S.pimpinelloides Semenovia Semenovia pimpinelloides \N \N \N \N \N 32210 R.cubensis Rhexia Rhexia cubensis \N \N \N \N \N 32211 P.gardneriana Pouteria Pouteria gardneriana \N \N \N \N \N 32212 S.spinulosa Synaphea Synaphea spinulosa \N \N \N \N \N 32213 A.pseudofrigida Arenaria Arenaria pseudofrigida \N \N \N \N \N 32214 I.gifbergensis Indigofera Indigofera gifbergensis \N \N \N \N \N 32215 \N genus Horkeliella \N \N \N \N \N 32216 \N genus Pseudactinia \N \N \N \N \N 32217 C.ciliatum Canthium Canthium ciliatum \N \N \N \N \N 32218 T.divaricatum Typhonium Typhonium divaricatum \N \N \N \N \N 32219 \N genus Hedyosmum \N \N \N \N \N 32220 \N genus Pholidocarpus \N \N \N \N \N 32221 H.parvifolium Hedyosmum Hedyosmum parvifolium \N \N \N \N \N 32222 N.ferulaceum Notobubon Notobubon ferulaceum \N \N \N \N \N 32223 \N genus Tromotriche \N \N \N \N \N 32224 B.beckii Bidens Bidens beckii \N \N \N \N \N 32225 J.vulgaris Jacobaea Jacobaea vulgaris stinking willie \N \N \N \N 32226 N.undulata Nicotiana Nicotiana undulata \N \N \N \N \N 32227 S.deltoidea Stevia Stevia deltoidea \N \N \N \N \N 32228 \N subspecies Hymenolobus procumbens subsp. pauciflorus \N \N \N \N \N 32229 \N genus Aratitiyopea \N \N \N \N \N 32230 M.tutae Maxillaria Maxillaria tutae \N \N \N \N \N 32231 L.scabrus Leptorhynchos Leptorhynchos scabrus \N \N \N \N \N 32232 C.americana Curatella Curatella americana chaparro \N \N \N \N 32233 \N varietas Lecanorchis japonica var. japonica \N \N \N \N \N 32234 H.capense Hordeum Hordeum capense \N \N \N \N \N 32235 \N genus Cupaniopsis \N \N \N \N \N 32236 O.cuneifolia Oschatzia Oschatzia cuneifolia \N \N \N \N \N 32237 M.caespitosa Marshallia Marshallia caespitosa \N \N \N \N \N 32238 R.cinerea Roylea Roylea cinerea \N \N \N \N \N 32239 E.bracteosa Eschweilera Eschweilera bracteosa \N \N \N \N \N 32240 P.kaieteurum Phragmipedium Phragmipedium kaieteurum \N \N \N \N \N 32241 L.fistulosa Lobelia Lobelia fistulosa \N \N \N \N \N 32242 S.rupestre Sedum Sedum rupestre rock stonecrop \N \N \N \N 32243 P.abbreviatum Piper Piper abbreviatum \N \N \N \N \N 32244 S.paucissectum Solanum Solanum paucissectum \N \N \N \N \N 32245 \N genus Hymenopyramis \N \N \N \N \N 32246 F.dubjanskyi Ferula Ferula dubjanskyi dzhaudzhamyr \N \N \N \N 32247 D.pulchella Dasyochloa Dasyochloa pulchella \N \N \N \N \N 32248 \N genus Phedimus \N \N \N \N \N 32249 M.callista Moraea Moraea callista \N \N \N \N \N 32250 \N subspecies Navarretia myersii subsp. deminuta \N \N \N \N \N 32251 D.canescens Desmodium Desmodium canescens hoary tick-trefoil \N \N \N \N 32252 A.leucophylla Aspalathus Aspalathus leucophylla \N \N \N \N \N 32253 C.farinosa Callicarpa Callicarpa farinosa \N \N \N \N \N 32254 \N genus Dipteryx \N \N \N \N \N 32255 R.virgatum Rhododendron Rhododendron virgatum \N \N \N \N \N 32256 C.palmata Cucurbita Cucurbita palmata \N \N \N \N \N 32257 \N subspecies Leptochloa panicea subsp. brachiata \N \N \N \N \N 32258 E.Lys33 Eutrema Eutrema sp. Lys33 \N \N \N \N \N 32259 S.collina Salsola Salsola collina \N \N \N \N \N 32260 B.siamensis Boesenbergia Boesenbergia siamensis \N \N \N \N \N 32261 K.walkeri Kendrickia Kendrickia walkeri \N \N \N \N \N 32262 A.borneensis Aphanamixis Aphanamixis borneensis \N \N \N \N \N 32263 C.CAM079 Campanula Campanula sp. CAM079 \N \N \N \N \N 32264 G.laciniata Gilia Gilia laciniata \N \N \N \N \N 32265 \N varietas Calyptridium parryi var. nevadense \N \N \N \N \N 32266 E.remota Erica Erica remota \N \N \N \N \N 32267 P.douglasii Pogogyne Pogogyne douglasii \N \N \N \N \N 32268 M.ovata Myrceugenia Myrceugenia ovata \N \N \N \N \N 32269 S.fraxinifolium Solanum Solanum fraxinifolium \N \N \N \N \N 32270 B.insignis Berberis Berberis insignis \N \N \N \N \N 32271 L.texensis Lupinus Lupinus texensis Texas bluebonnet \N \N \N \N 32272 P.confertinodum Piper Piper confertinodum \N \N \N \N \N 32273 T.costaricensis Themistoclesia Themistoclesia costaricensis \N \N \N \N \N 32274 A.sahendi Astragalus Astragalus sahendi \N \N \N \N \N 32275 W.tomentosa Wrightia Wrightia tomentosa \N \N \N \N \N 32276 B.daphnoides Bontia Bontia daphnoides \N \N \N \N \N 32277 A.moorei Aechmea Aechmea moorei \N \N \N \N \N 32278 M.satureioides Muraltia Muraltia satureioides \N \N \N \N \N 32279 L.amatitlanensis Lycianthes Lycianthes amatitlanensis \N \N \N \N \N 32280 O.splendidum Oncidium Oncidium splendidum \N \N \N \N \N 32281 C.miniata Coelogyne Coelogyne miniata \N \N \N \N \N 32282 T.weigeltiana Triplaris Triplaris weigeltiana \N \N \N \N \N 32283 T.virgatum Thesium Thesium virgatum \N \N \N \N \N 32284 P.rufipes Psychotria Psychotria rufipes \N \N \N \N \N 32285 \N genus Galearis \N \N \N \N \N 32286 I.fastigiatum Indigastrum Indigastrum fastigiatum \N \N \N \N \N 32287 \N genus Triclisia \N \N \N \N \N 32288 S.tenuifolia Syreitschikovia Syreitschikovia tenuifolia \N \N \N \N \N 32289 G.tonduzii Guatteria Guatteria tonduzii \N \N \N \N \N 32290 C.pentaphyllos Cardamine Cardamine pentaphyllos \N \N \N \N \N 32291 B.phoenicoides Brachypodium Brachypodium phoenicoides \N \N \N \N \N 32292 P.tacanensis Pleurothallis Pleurothallis tacanensis \N \N \N \N \N 32293 B.malingensis Bambusa Bambusa malingensis \N \N \N \N \N 32294 \N genus Crepidospermum \N \N \N \N \N 32295 P.betsileanus Phyllanthus Phyllanthus betsileanus \N \N \N \N \N 32296 S.fargesii Salix Salix fargesii \N \N \N \N \N 32297 J.kolbei Jacobsenia Jacobsenia kolbei \N \N \N \N \N 32298 C.fialae Cardamine Cardamine fialae \N \N \N \N \N 32299 C.preissianus Cymbonotus Cymbonotus preissianus \N \N \N \N \N 32300 \N subspecies Navarretia hamata subsp. hamata \N \N \N \N \N 32301 L.muirii Leucadendron Leucadendron muirii \N \N \N \N \N 32302 C.phaceliifolia Calceolaria Calceolaria phaceliifolia \N \N \N \N \N 32303 \N varietas Cirsium fontinale var. fontinale fountain thistle \N \N \N \N 32304 S.parviflora Saussurea Saussurea parviflora \N \N \N \N \N 32305 L.jonesii Linanthus Linanthus jonesii Jones' linanthus \N \N \N \N 32306 C.bilamellata Coelogyne Coelogyne bilamellata \N \N \N \N \N 32307 P.caucasicus Philadelphus Philadelphus caucasicus \N \N \N \N \N 32308 \N no rank Elymus scaber var. scaber \N \N \N \N \N 32309 C.millefolium Chamaebatiaria Chamaebatiaria millefolium \N \N \N \N \N 32310 \N genus Crotonogynopsis \N \N \N \N \N 32311 C.cyanoides Centaurea Centaurea cyanoides \N \N \N \N \N 32312 H.cubense Hebestigma Hebestigma cubense \N \N \N \N \N 32313 G.allenii Guatteria Guatteria allenii \N \N \N \N \N 32314 P.xiikzodz Passiflora Passiflora xiikzodz \N \N \N \N \N 32315 \N genus Prosphytochloa \N \N \N \N \N 32316 L.laxiflorus Lisianthius Lisianthius laxiflorus \N \N \N \N \N 32317 S.hotarui Schoenoplectus Schoenoplectus gemmifer x Schoenoplectus hotarui \N \N \N \N \N 32318 H.griseolanatum Helichrysum Helichrysum griseolanatum \N \N \N \N \N 32319 \N genus Phaius \N \N \N \N \N 32320 A.3772 Afrocanthium Afrocanthium cf. mundianum Bremer and Bremer 3772 \N \N \N \N \N 32321 E.orbiculata Eugenia Eugenia orbiculata \N \N \N \N \N 32322 \N genus Butomus \N \N \N \N \N 32323 C.persica Colutea Colutea persica \N \N \N \N \N 32324 S.sophera Senna Senna sophera \N \N \N \N \N 32325 B.platypodum Bulbophyllum Bulbophyllum platypodum \N \N \N \N \N 32326 T.thalictroides Thalictrum Thalictrum thalictroides rue-anemone \N \N \N \N 32327 G.stylosa Graellsia Graellsia stylosa \N \N \N \N \N 32328 P.schumanniana Pavetta Pavetta schumanniana \N \N \N \N \N 32329 P.superba Pedicularis Pedicularis superba \N \N \N \N \N 32330 \N genus Premna \N \N \N \N \N 32331 P.TJSW-2011 Psychotria Psychotria sp. TJSW-2011 \N \N \N \N \N 32332 L.brandegei Lomatium Lomatium brandegei Brandegee's desertparsley \N \N \N \N 32333 A.fimbriata Achimenes Achimenes fimbriata \N \N \N \N \N 32334 H.imbricata Habenaria Habenaria imbricata \N \N \N \N \N 32335 R.purshiana Ruellia Ruellia purshiana \N \N \N \N \N 32336 D.kirkii Dracophyllum Dracophyllum kirkii \N \N \N \N \N 32337 C.lageniformis Calycosia Calycosia lageniformis \N \N \N \N \N 32338 S.rosei Sabal Sabal rosei \N \N \N \N \N 32339 \N varietas Sorbaria sorbifolia var. stellipila \N \N \N \N \N 32340 O.auriculatum Odontoglossum Odontoglossum auriculatum \N \N \N \N \N 32341 T.tenebricans Taraxacum Taraxacum tenebricans \N \N \N \N \N 32342 H.griffithiana Hemigraphis Hemigraphis griffithiana \N \N \N \N \N 32343 I.strobilifera Indigofera Indigofera strobilifera \N \N \N \N \N 32344 V.finisterrae Vaccinium Vaccinium finisterrae \N \N \N \N \N 32345 U.213 Urochloa Urochloa sp. Hodkinson 213 \N \N \N \N \N 32346 O.ceresianum Ornithogalum Ornithogalum ceresianum \N \N \N \N \N 32347 B.hirsuta Bouteloua Bouteloua hirsuta \N \N \N \N \N 32348 S.albens Sebaea Sebaea albens \N \N \N \N \N 32349 I.317 Iochroma Iochroma sp. Smith 317 \N \N \N \N \N 32350 H.nikolicii Heliosperma Heliosperma nikolicii \N \N \N \N \N 32351 A.sharonensis Aegilops Aegilops sharonensis \N \N \N \N \N 32352 E.disjuncta Euphrasia Euphrasia disjuncta \N \N \N \N \N 32353 \N subspecies Potentilla egedei subsp. egedei \N \N \N \N \N 32354 J.steyermarkii Juglans Juglans steyermarkii \N \N \N \N \N 32355 M.cowanii Mendoncia Mendoncia cowanii \N \N \N \N \N 32356 S.madagascariensis Salacia Salacia madagascariensis \N \N \N \N \N 32357 \N genus Pariana \N \N \N \N \N 32358 \N varietas Seseli mairei var. mairei \N \N \N \N \N 32359 \N subspecies Hypericum perforatum subsp. veronense \N \N \N \N \N 32360 P.SL07 Polypleurum Polypleurum sp. SL07 \N \N \N \N \N 32361 \N varietas Aristida purpurea var. parishii \N \N \N \N \N 32362 O.alpina Ormosolenia Ormosolenia alpina \N \N \N \N \N 32363 \N genus Neoachmandra \N \N \N \N \N 32364 \N genus Myosurus \N \N \N \N \N 32365 \N varietas Fragaria nipponica var. yezoensis \N \N \N \N \N 32366 C.candicans Callicarpa Callicarpa candicans \N \N \N \N \N 32367 G.penicillata Geoblasta Geoblasta penicillata \N \N \N \N \N 32368 A.speirocarpus Astragalus Astragalus speirocarpus \N \N \N \N \N 32369 \N genus Erycibe \N \N \N \N \N 32370 T.pinnatum Tanacetum Tanacetum pinnatum \N \N \N \N \N 32371 D.rosei Desmodium Desmodium rosei \N \N \N \N \N 32372 P.sodiroi Philodendron Philodendron sodiroi \N \N \N \N \N 32373 \N genus Duguetia \N \N \N \N \N 32374 A.carpatica Antennaria Antennaria carpatica \N \N \N \N \N 32375 P.ferruginea Paraboea Paraboea ferruginea \N \N \N \N \N 32376 \N genus Ichnocarpus \N \N \N \N \N 32377 B.latifolia Babiana Babiana latifolia \N \N \N \N \N 32378 L.crinita Luzula Luzula crinita \N \N \N \N \N 32379 A.recurvata Avonia Avonia recurvata \N \N \N \N \N 32380 A.macrophylla Actinodaphne Actinodaphne macrophylla \N \N \N \N \N 32381 M.roseoalba Mammillaria Mammillaria roseoalba \N \N \N \N \N 32382 P.macgillivrayi Polyscias Polyscias macgillivrayi \N \N \N \N \N 32383 A.chicoasensis Ateleia Ateleia chicoasensis \N \N \N \N \N 32384 S.subscandens Sisymbrium Sisymbrium subscandens \N \N \N \N \N 32385 B.ikongoense Bulbophyllum Bulbophyllum ikongoense \N \N \N \N \N 32386 C.alternifolium Chrysosplenium Chrysosplenium alternifolium \N \N \N \N \N 32387 T.rhomboidea Triumfetta Triumfetta rhomboidea \N \N \N \N \N 32388 P.winkleri Polytaxis Polytaxis winkleri \N \N \N \N \N 32389 B.eludens Browallia Browallia eludens \N \N \N \N \N 32390 C.fulcitus Campecarpus Campecarpus fulcitus \N \N \N \N \N 32391 A.macrosperma Asclepias Asclepias macrosperma \N \N \N \N \N 32392 I.germanica Iris Iris germanica flag,fleur-de-lis \N \N \N \N 32393 R.sylvatica Rinorea Rinorea sylvatica \N \N \N \N \N 32394 R.ciliata Roella Roella ciliata \N \N \N \N \N 32395 H.crenatifolium Heracleum Heracleum crenatifolium \N \N \N \N \N 32396 B.kalbreyeri Brachycorythis Brachycorythis kalbreyeri \N \N \N \N \N 32397 B.tuberculata Baeckea Baeckea tuberculata \N \N \N \N \N 32398 N.159-99 Nematoceras Nematoceras aff. macranthum Meurk 159-99 \N \N \N \N \N 32399 S.amoenum Satyrium Satyrium amoenum \N \N \N \N \N 32400 S.fruticulosa Salvia Salvia fruticulosa \N \N \N \N \N 32401 V.parkeri Vigna Vigna parkeri \N \N \N \N \N 32402 A.papuana Aporusa Aporusa papuana \N \N \N \N \N 32403 H.2005/601 Hemsleya Hemsleya aff. amabilis Schaefer 2005/601 \N \N \N \N \N 32404 \N genus Anticharis \N \N \N \N \N 32405 O.trachycarpum Ormocarpum Ormocarpum trachycarpum \N \N \N \N \N 32406 L.wrightii Leucocroton Leucocroton wrightii \N \N \N \N \N 32407 A.contortum Aconitum Aconitum contortum \N \N \N \N \N 32408 R.sample environmental samples Taxonomy:205885 Restionaceae environmental sample \N \N \N \N \N 32409 S.antisepticum Syzygium Syzygium antisepticum \N \N \N \N \N 32410 A.arenaria Aspalathus Aspalathus arenaria \N \N \N \N \N 32411 O.tehuantepecana Opuntia Opuntia tehuantepecana \N \N \N \N \N 32412 E.EHR-2010 Eleocharis Eleocharis aff. minima EHR-2010 \N \N \N \N \N 32413 C.leopoldii Cattleya Cattleya leopoldii \N \N \N \N \N 32414 \N no rank Musa AABB Group \N \N \N \N \N 32415 \N genus Triunia \N \N \N \N \N 32416 E.apetala Elattostachys Elattostachys apetala \N \N \N \N \N 32417 A.filosa Aeschynomene Aeschynomene filosa \N \N \N \N \N 32418 R.zhangjiajieense Rhododendron Rhododendron zhangjiajieense \N \N \N \N \N 32419 P.bracteata Phyllostegia Phyllostegia bracteata \N \N \N \N \N 32420 S.caucasica Sobolewskia Sobolewskia caucasica \N \N \N \N \N 32421 C.potentilloides Chrysanthemum Chrysanthemum potentilloides \N \N \N \N \N 32422 M.brachybulbon Maxillaria Maxillaria brachybulbon \N \N \N \N \N 32423 \N genus Sarmienta \N \N \N \N \N 32424 N.kwangsiensis Neolitsea Neolitsea kwangsiensis \N \N \N \N \N 32425 P.majus Phylacium Phylacium majus \N \N \N \N \N 32426 \N genus Pentaglottis \N \N \N \N \N 32427 C.gynandra Cleome Cleome gynandra African spider-flower,acaya,bastard-mustard,cat's-whiskers,mouzambi \N \N \N \N 32428 G.affinis Gentiana Gentiana affinis \N \N \N \N \N 32429 M.sylvatica Myosotis Myosotis sylvatica wood forget-me-not \N \N \N \N 32430 A.aristata Aspalathus Aspalathus aristata \N \N \N \N \N 32431 C.elatus Cyrtanthus Cyrtanthus elatus \N \N \N \N \N 32432 S.ternatus Scirpus Scirpus ternatus \N \N \N \N \N 32433 L.trifoliatum Lithophragma Lithophragma trifoliatum \N \N \N \N \N 32434 C.wattii Campylandra Campylandra wattii \N \N \N \N \N 32435 I.kelleri Indigofera Indigofera kelleri \N \N \N \N \N 32436 C.spectabilis Cuphea Cuphea spectabilis \N \N \N \N \N 32437 H.ovalis Hamamelis Hamamelis ovalis \N \N \N \N \N 32438 S.schrenkianus Spiraeanthus Spiraeanthus schrenkianus \N \N \N \N \N 32439 \N varietas Calamagrostis canadensis var. langsdorffii \N \N \N \N \N 32440 E.capillifolium Eupatorium Eupatorium capillifolium dogfennel \N \N \N \N 32441 E.minor Elytraria Elytraria minor \N \N \N \N \N 32442 P.alba Potentilla Potentilla alba \N \N \N \N \N 32443 S.fragrans Schoepfia Schoepfia fragrans \N \N \N \N \N 32444 P.persica Prunus Prunus persica peach \N \N \N \N 32445 \N genus Discoclaoxylon \N \N \N \N \N 32446 L.namaquensis Lachenalia Lachenalia namaquensis \N \N \N \N \N 32447 F.albocerea Fargesia Fargesia albocerea \N \N \N \N \N 32448 P.eriophaeus Paepalanthus Paepalanthus eriophaeus \N \N \N \N \N 32449 O.07-700 Oreocharis Oreocharis sp. Wei 07-700 \N \N \N \N \N 32450 S.glaberrima Symplocos Symplocos glaberrima \N \N \N \N \N 32451 O.rubrinervis Ossaea Ossaea rubrinervis \N \N \N \N \N 32452 S.vargasii Satyria Satyria vargasii \N \N \N \N \N 32453 P.vakinankaratrae Phyllanthus Phyllanthus vakinankaratrae \N \N \N \N \N 32454 R.araiophyllum Rhododendron Rhododendron araiophyllum \N \N \N \N \N 32455 C.spatulata Campanula Campanula spatulata \N \N \N \N \N 32456 M.serripetalus Myoxanthus Myoxanthus serripetalus \N \N \N \N \N 32457 \N genus Syncretocarpus \N \N \N \N \N 32458 C.2 Calandrinia Calandrinia sp. Falkland Islands 2 \N \N \N \N \N 32459 \N genus Arnica \N \N \N \N \N 32460 C.warburgiana Citrus Citrus warburgiana \N \N \N \N \N 32461 \N no rank unclassified Malvaceae \N \N \N \N \N 32462 S.7771 Schefflera Schefflera aff. lilacina Clark 7771 \N \N \N \N \N 32463 U.arboreum Urophyllum Urophyllum arboreum \N \N \N \N \N 32464 \N subtribe Centaureinae \N \N \N \N \N 32465 B.FS674 Bulbophyllum Bulbophyllum sp. FS674 \N \N \N \N \N 32466 U.JTM-2009b Urochilus Urochilus sp. JTM-2009b \N \N \N \N \N 32467 E.parviflorum Exostema Exostema parviflorum \N \N \N \N \N 32468 \N genus Calendula \N \N \N \N \N 32469 T.tenuicauda Taurantha Taurantha tenuicauda \N \N \N \N \N 32470 G.pycnostachyum Gastrolobium Gastrolobium pycnostachyum \N \N \N \N \N 32471 \N subspecies Tolpis barbata subsp. barbata \N \N \N \N \N 32472 V.paradoxa Velleia Velleia paradoxa \N \N \N \N \N 32473 C.supinus Chamaecytisus Chamaecytisus supinus \N \N \N \N \N 32474 \N genus Khaya \N \N \N \N \N 32475 \N varietas Setaria sphacelata var. torta \N \N \N \N \N 32476 E.mirabilis Euphrasia Euphrasia mirabilis \N \N \N \N \N 32477 P.65422 Piper Piper cf. pulchrum Gentry 65422 \N \N \N \N \N 32478 T.arbuscula Trichosalpinx Trichosalpinx arbuscula \N \N \N \N \N 32479 B.cinctum Bastardiastrum Bastardiastrum cinctum \N \N \N \N \N 32480 T.s7 unclassified Taraxacum Taraxacum (sect. Arctica) sp. s7 \N \N \N \N \N 32481 C.draco Croton Croton draco \N \N \N \N \N 32482 \N genus Dicarpellum \N \N \N \N \N 32483 V.japonicum Vincetoxicum Vincetoxicum japonicum \N \N \N \N \N 32484 Q.macrocarpa Quercus Quercus macrocarpa burr oak,mossy-cup oak \N \N \N \N 32485 G.lapeirousioides Gladiolus Gladiolus lapeirousioides \N \N \N \N \N 32486 T.japonica Tylophora Tylophora japonica \N \N \N \N \N 32487 J.fasciculata Junellia Junellia fasciculata \N \N \N \N \N 32488 A.florulenta Aspalathus Aspalathus florulenta \N \N \N \N \N 32489 D.panamensis Duguetia Duguetia panamensis \N \N \N \N \N 32490 D.dubia Diplospora Diplospora dubia \N \N \N \N \N 32491 \N genus Crenidium \N \N \N \N \N 32492 S.perdensum Schoenoxiphium Schoenoxiphium perdensum \N \N \N \N \N 32493 C.viridis Crataegus Crataegus viridis \N \N \N \N \N 32494 D.crepidatum Dendrobium Dendrobium crepidatum \N \N \N \N \N 32495 C.sintenisii Cochlearia Cochlearia sintenisii \N \N \N \N \N 32496 V.discoidea Valerianella Valerianella discoidea \N \N \N \N \N 32497 S.lachnantha Salsola Salsola lachnantha \N \N \N \N \N 32498 C.cruegeriana Clidemia Clidemia cruegeriana \N \N \N \N \N 32499 E.mouretii Erodium Erodium mouretii \N \N \N \N \N 32500 H.lydgatei Hesperomannia Hesperomannia lydgatei \N \N \N \N \N 32501 S.humile Stenanthemum Stenanthemum humile \N \N \N \N \N 32502 A.chica Arrabidaea Arrabidaea chica \N \N \N \N \N 32503 T.esterhuyseniae Tittmannia Tittmannia esterhuyseniae \N \N \N \N \N 32504 G.wikstroemiana Gnidia Gnidia wikstroemiana \N \N \N \N \N 32505 P.brachystemon Plectritis Plectritis brachystemon \N \N \N \N \N 32506 G.serrata Gomphia Gomphia serrata \N \N \N \N \N 32507 \N genus Plagiostachys \N \N \N \N \N 32508 C.amoenus Calochortus Calochortus amoenus purple fairy-lantern \N \N \N \N 32509 \N genus Clidemia \N \N \N \N \N 32510 B.acutangula Brunellia Brunellia acutangula \N \N \N \N \N 32511 M.horichii Mesospinidium Mesospinidium horichii \N \N \N \N \N 32512 P.daenikeri Pichonia Pichonia daenikeri \N \N \N \N \N 32513 \N no rank Arceuthobium abietinum f. sp. magnificae \N \N \N \N \N 32514 \N genus Conocalyx \N \N \N \N \N 32515 M.breviflorus Mimulus Mimulus breviflorus \N \N \N \N \N 32516 C.buseanus Callistemon Callistemon buseanus \N \N \N \N \N 32517 H.elegans Heuchera Heuchera elegans \N \N \N \N \N 32518 \N subtribe Chrestinae \N \N \N \N \N 32519 \N genus Ravenia \N \N \N \N \N 32520 M.berteroana Montiopsis Montiopsis berteroana \N \N \N \N \N 32521 O.punctata Oxalis Oxalis punctata \N \N \N \N \N 32522 P.cneorum Penaea Penaea cneorum \N \N \N \N \N 32523 C.natalensis Costularia Costularia natalensis \N \N \N \N \N 32524 \N subspecies Acacia nilotica subsp. indica \N \N \N \N \N 32525 R.wallichiana Rhodiola Rhodiola wallichiana \N \N \N \N \N 32526 P.brackenridgei Pittosporum Pittosporum brackenridgei \N \N \N \N \N 32527 V.zamorensis Vriesea Vriesea zamorensis \N \N \N \N \N 32528 C.purpuratum Cirsium Cirsium purpuratum \N \N \N \N \N 32529 G.dalenii Gladiolus Gladiolus dalenii \N \N \N \N \N 32530 M.koshiensis Mitella Mitella koshiensis \N \N \N \N \N 32531 M.pubescens Magonia Magonia pubescens \N \N \N \N \N 32532 A.wrightii Aloysia Aloysia wrightii \N \N \N \N \N 32533 R.occidentalis Rubus Rubus occidentalis black raspberry \N \N \N \N 32534 C.angolense Campylostemon Campylostemon angolense \N \N \N \N \N 32535 \N genus Hippophae \N \N \N \N \N 32536 R.diffusus Ranunculus Ranunculus diffusus \N \N \N \N \N 32537 C.ferricola Cliffortia Cliffortia ferricola \N \N \N \N \N 32538 A.tectorius Ancistrocladus Ancistrocladus tectorius \N \N \N \N \N 32539 O.pachysteloides Omphalocarpum Omphalocarpum pachysteloides \N \N \N \N \N 32540 S.kettieana Sophronitis Sophronitis kettieana \N \N \N \N \N 32541 C.bifurcata Cuscuta Cuscuta bifurcata \N \N \N \N \N 32542 A.111 Arthraxon Arthraxon sp. Hodkinson 111 \N \N \N \N \N 32543 S.triglomerata Scleria Scleria triglomerata whip-grass \N \N \N \N 32544 L.confertus Lophostemon Lophostemon confertus \N \N \N \N \N 32545 M.angolensis Marsdenia Marsdenia angolensis \N \N \N \N \N 32546 G.laxiflora Galipea Galipea laxiflora \N \N \N \N \N 32547 L.jelskii Lycianthes Lycianthes jelskii \N \N \N \N \N 32548 I.alatus Isochilus Isochilus alatus \N \N \N \N \N 32549 S.cordovense Solanum Solanum cordovense \N \N \N \N \N 32550 P.cynaroides Protea Protea cynaroides king protea \N \N \N \N 32551 A.oblongifolia Acronychia Acronychia oblongifolia \N \N \N \N \N 32552 A.macrocarpa Agonandra Agonandra macrocarpa \N \N \N \N \N 32553 C.cultivar Coffea Coffea hybrid cultivar \N \N \N \N \N 32554 E.formosana Elaeagnus Elaeagnus formosana \N \N \N \N \N 32555 B.eriogona Brachyscome Brachyscome eriogona \N \N \N \N \N 32556 M.rhinanthoides Melasma Melasma rhinanthoides \N \N \N \N \N 32557 C.3616 Clusia Clusia sp. JA 3616 \N \N \N \N \N 32558 \N subspecies Trifolium longipes subsp. longipes \N \N \N \N \N 32559 S.nigrocinctus Senecio Senecio nigrocinctus \N \N \N \N \N 32560 T.narthecioides Tillandsia Tillandsia narthecioides \N \N \N \N \N 32561 C.acapulcensis Coccoloba Coccoloba acapulcensis \N \N \N \N \N 32562 M.procumbens Melichrus Melichrus procumbens \N \N \N \N \N 32563 S.mohavensis Senecio Senecio mohavensis Mojave ragwort \N \N \N \N 32564 P.tetrapetala Peraxilla Peraxilla tetrapetala \N \N \N \N \N 32565 K.anisosperma Komarovia Komarovia anisosperma \N \N \N \N \N 32566 \N genus Uniola \N \N \N \N \N 32567 C.erosum Clibadium Clibadium erosum \N \N \N \N \N 32568 \N genus Ambelania \N \N \N \N \N 32569 L.armoracium Lepidium Lepidium armoracium \N \N \N \N \N 32570 \N varietas Begonia ningmingensis var. bella \N \N \N \N \N 32571 \N subgenus Pseudoveronica \N \N \N \N \N 32572 \N subspecies Acer stachyophyllum subsp. betulifolium \N \N \N \N \N 32573 B.intermedia Bambusa Bambusa intermedia \N \N \N \N \N 32574 C.glycinoides Clematis Clematis glycinoides \N \N \N \N \N 32575 D.ridleyi Drepananthus Drepananthus ridleyi \N \N \N \N \N 32576 M.inundata Micrandra Micrandra inundata \N \N \N \N \N 32577 \N varietas Puya coerulea var. violacea \N \N \N \N \N 32578 A.capensis Anchusa Anchusa capensis \N \N \N \N \N 32579 C.flavoculata Cryptantha Cryptantha flavoculata \N \N \N \N \N 32580 A.thirkeana Aconitella Aconitella thirkeana \N \N \N \N \N 32581 P.foliosa Persicaria Persicaria foliosa \N \N \N \N \N 32582 \N genus Cochliostema \N \N \N \N \N 32583 S.bulbinifolius Senecio Senecio bulbinifolius \N \N \N \N \N 32584 B.davisii Biarum Biarum davisii \N \N \N \N \N 32585 P.zedelmeyeranum Peucedanum Peucedanum zedelmeyeranum \N \N \N \N \N 32586 \N tribe Persicarieae \N \N \N \N \N 32587 C.4105 Chromolaena Chromolaena sp. Dillon 4105 \N \N \N \N \N 32588 C.recta Carex Carex aquatilis x Carex recta \N \N \N \N \N 32589 E.palmeri Eutetras Eutetras palmeri \N \N \N \N \N 32590 G.pulchella Grindelia Grindelia pulchella \N \N \N \N \N 32591 L.alba Lippia Lippia alba bushy matgrass \N \N \N \N 32592 P.succulentum Pachypodium Pachypodium succulentum \N \N \N \N \N 32593 A.lepidotum Aequatorium Aequatorium lepidotum \N \N \N \N \N 32594 F.pseudojaca Ficus Ficus pseudojaca \N \N \N \N \N 32595 S.nocturna Silene Silene nocturna \N \N \N \N \N 32596 B.affinis Bridelia Bridelia affinis \N \N \N \N \N 32597 A.BJ-2011 Adonidia Adonidia sp. BJ-2011 \N \N \N \N \N 32598 \N genus Hovanella \N \N \N \N \N 32599 E.longiscapus Echinodorus Echinodorus longiscapus \N \N \N \N \N 32600 \N genus Cydonia \N \N \N \N \N 32601 A.warburgii Alpinia Alpinia warburgii \N \N \N \N \N 32602 O.bryophila Oxytropis Oxytropis bryophila \N \N \N \N \N 32603 V.nigritia Vigna Vigna nigritia \N \N \N \N \N 32604 T.rytidosemium Trifolium Trifolium rytidosemium \N \N \N \N \N 32605 T.canescens Trifolium Trifolium canescens \N \N \N \N \N 32606 \N genus Steirodiscus \N \N \N \N \N 32607 C.microcarpa Cousinia Cousinia microcarpa \N \N \N \N \N 32608 H.cagayanensis Heterospathe Heterospathe cagayanensis \N \N \N \N \N 32609 V.gigantea Vandopsis Vandopsis gigantea \N \N \N \N \N 32610 A.rheophytica Anaxagorea Anaxagorea rheophytica \N \N \N \N \N 32611 A.schimperiana Albizia Albizia schimperiana \N \N \N \N \N 32612 C.heliotropiifolius Croton Croton heliotropiifolius \N \N \N \N \N 32613 M.pachyphylla Manglietia Manglietia pachyphylla \N \N \N \N \N 32614 \N genus Sibbaldiopsis \N \N \N \N \N 32615 I.galatica Iris Iris galatica \N \N \N \N \N 32616 \N genus Dicymbe \N \N \N \N \N 32617 W.oxyphylla Wahlenbergia Wahlenbergia oxyphylla \N \N \N \N \N 32618 B.virescens Babiana Babiana virescens \N \N \N \N \N 32619 \N genus Alloschmidia \N \N \N \N \N 32620 \N genus Santiria \N \N \N \N \N 32621 T.decumbens Tetragonia Tetragonia decumbens \N \N \N \N \N 32622 A.hunanensis Adenophora Adenophora hunanensis \N \N \N \N \N 32623 S.villosula Silene Silene villosula \N \N \N \N \N 32624 E.picardae Elekmania Elekmania picardae \N \N \N \N \N 32625 \N genus Ceratonia \N \N \N \N \N 32626 \N genus Medinilla \N \N \N \N \N 32627 C.quadripetalum Calyptridium Calyptridium quadripetalum \N \N \N \N \N 32628 B.DC-2002 Bromus Bromus sp. DC-2002 \N \N \N \N \N 32629 K.longiflora Kalanchoe Kalanchoe longiflora \N \N \N \N \N 32630 G.australis Guatteria Guatteria australis \N \N \N \N \N 32631 B.fernaldii Braya Braya fernaldii \N \N \N \N \N 32632 S.imperforata Stanfieldiella Stanfieldiella imperforata \N \N \N \N \N 32633 M.874 Mimosa Mimosa aff. bathyrrhena Simon 874 \N \N \N \N \N 32634 S.SH-2010 Sideritis Sideritis sp. SH-2010 \N \N \N \N \N 32635 D.hancei Didymocarpus Didymocarpus hancei \N \N \N \N \N 32636 A.bancroftii Acacia Acacia bancroftii \N \N \N \N \N 32637 S.castellanosii Sisymbrium Sisymbrium castellanosii \N \N \N \N \N 32638 C.adamsii Celmisia Celmisia adamsii \N \N \N \N \N 32639 A.bracteata Amphicarpaea Amphicarpaea bracteata hog peanut \N \N \N \N 32640 C.fascicularis Crassula Crassula fascicularis \N \N \N \N \N 32641 B.megalophyllaria Begonia Begonia megalophyllaria \N \N \N \N \N 32642 E.tenue Epithema Epithema tenue \N \N \N \N \N 32643 \N genus Comarum \N \N \N \N \N 32644 O.helleri Opuntia Opuntia helleri \N \N \N \N \N 32645 \N tribe Doroniceae \N \N \N \N \N 32646 C.parafurfuracea Camellia Camellia parafurfuracea \N \N \N \N \N 32647 Q.africana Quassia Quassia africana \N \N \N \N \N 32648 M.crispa Moraea Moraea crispa \N \N \N \N \N 32649 H.hirsutum Hypericum Hypericum hirsutum \N \N \N \N \N 32650 C.mutisii Cinchona Cinchona mutisii \N \N \N \N \N 32651 I.86KL14 Ixora Ixora sp. Larsen et al. 86KL14 \N \N \N \N \N 32652 \N genus Glyphaea \N \N \N \N \N 32653 A.dryadifolia Acaulimalva Acaulimalva dryadifolia \N \N \N \N \N 32654 \N subspecies Australopyrum calcis subsp. calcis \N \N \N \N \N 32655 \N subspecies Gymnadenia conopsea subsp. conopsea \N \N \N \N \N 32656 S.nepetifolia Stachys Stachys nepetifolia \N \N \N \N \N 32657 C.6111 Camassia Camassia sp. Fishbein 6111 \N \N \N \N \N 32658 C.8424 Cayratia Cayratia sp. 8424 \N \N \N \N \N 32659 \N genus Paederia \N \N \N \N \N 32660 B.ovalis Beilschmiedia Beilschmiedia ovalis \N \N \N \N \N 32661 M.thymifolia Micromeria Micromeria thymifolia \N \N \N \N \N 32662 A.6699 Allium Allium sp. GAT 6699 \N \N \N \N \N 32663 H.iseranum Hieracium Hieracium iseranum \N \N \N \N \N 32664 I.polycladon Ipomopsis Ipomopsis polycladon \N \N \N \N \N 32665 P.appletonianum Paphiopedilum Paphiopedilum appletonianum \N \N \N \N \N 32666 \N genus Blomia \N \N \N \N \N 32667 S.denticulatus Sinosenecio Sinosenecio denticulatus \N \N \N \N \N 32668 C.semidecandra Cambessedesia Cambessedesia semidecandra \N \N \N \N \N 32669 \N genus Kundmannia \N \N \N \N \N 32670 P.forrestii Phoebe Phoebe forrestii \N \N \N \N \N 32671 C.monensis Coincya Coincya monensis \N \N \N \N \N 32672 S.farinacea Salvia Salvia farinacea \N \N \N \N \N 32673 P.lanceola Pleurothallis Pleurothallis lanceola \N \N \N \N \N 32674 P.EB-2002 Prunus Prunus sp. EB-2002 \N \N \N \N \N 32675 G.fourcadei Gladiolus Gladiolus fourcadei \N \N \N \N \N 32676 H.pinnatisectum Heliotropium Heliotropium pinnatisectum \N \N \N \N \N 32677 \N genus Eucrosia \N \N \N \N \N 32678 S.ericoides Stilbe Stilbe ericoides \N \N \N \N \N 32679 I.leiocalycina Inga Inga leiocalycina \N \N \N \N \N 32680 S.hortensis Satureja Satureja hortensis summer savory \N \N \N \N 32681 \N varietas Lithops karasmontana var. karasmontana \N \N \N \N \N 32682 P.gomeziana Pilea Pilea gomeziana \N \N \N \N \N 32683 F.laevigata Festuca Festuca laevigata \N \N \N \N \N 32684 S.parasitica Scurrula Scurrula parasitica \N \N \N \N \N 32685 S.ehrenbergiana Stipa Stipa ehrenbergiana \N \N \N \N \N 32686 N.laxa Nolana Nolana laxa \N \N \N \N \N 32687 P.longum Piper Piper longum \N \N \N \N \N 32688 P.huegelii Poranthera Poranthera huegelii \N \N \N \N \N 32689 S.yemensis Silene Silene yemensis \N \N \N \N \N 32690 \N subspecies Noronhia luteola subsp. ankaranensis \N \N \N \N \N 32691 G.lotoides Glinus Glinus lotoides \N \N \N \N \N 32692 D.zingiberensis Dioscorea Dioscorea zingiberensis \N \N \N \N \N 32693 B.caroliniana Bacopa Bacopa caroliniana \N \N \N \N \N 32694 L.nobile Leucadendron Leucadendron nobile \N \N \N \N \N 32695 P.axillaris Plagiocarpus Plagiocarpus axillaris \N \N \N \N \N 32696 P.bibracteata Pyrostria Pyrostria bibracteata \N \N \N \N \N 32697 \N subspecies Chaetobromus involucratus subsp. involucratus \N \N \N \N \N 32698 D.143 Dombeya Dombeya sp. Le Pechon 143 \N \N \N \N \N 32699 M.exstipulata Mahurea Mahurea exstipulata \N \N \N \N \N 32700 E.hermani Erica Erica hermani \N \N \N \N \N 32701 C.superflua Capanemia Capanemia superflua \N \N \N \N \N 32702 A.debilis Acacia Acacia debilis \N \N \N \N \N 32703 \N subspecies Echinocereus enneacanthus subsp. brevispinus \N \N \N \N \N 32704 S.jamesii Smilax Smilax jamesii English Peak greenbrier \N \N \N \N 32705 M.filipes Mimosa Mimosa filipes \N \N \N \N \N 32706 \N family Dipterocarpaceae meranti family \N \N \N \N 32707 C.edmondsonii Cousinia Cousinia edmondsonii \N \N \N \N \N 32708 E.pyroliflora Elliottia Elliottia pyroliflora \N \N \N \N \N 32709 P.SH-2010 Pycreus Pycreus sp. SH-2010 \N \N \N \N \N 32710 \N varietas Bystropogon canariensis var. smithianus \N \N \N \N \N 32711 M.gentilis Metagentiana Metagentiana gentilis \N \N \N \N \N 32712 F.racemosa Ficus Ficus racemosa cluster fig,crattock,ju guo rong \N \N \N \N 32713 M.macclurei Mitrephora Mitrephora macclurei \N \N \N \N \N 32714 \N genus Saintpaulia \N \N \N \N \N 32715 T.campanulata Thelymitra Thelymitra campanulata \N \N \N \N \N 32716 \N genus Sapranthus \N \N \N \N \N 32717 N.muscosa Nanodea Nanodea muscosa \N \N \N \N \N 32718 P.tenuis Polycarpaea Polycarpaea tenuis \N \N \N \N \N 32719 P.meyeri Phyllostachys Phyllostachys meyeri \N \N \N \N \N 32720 S.involutum Santalum Santalum freycinetianum var. pyrularium x Santalum involutum \N \N \N \N \N 32721 S.andreanum Solanum Solanum andreanum \N \N \N \N \N 32722 \N genus Dontostemon \N \N \N \N \N 32723 P.pickeringii Plerandra Plerandra pickeringii \N \N \N \N \N 32724 C.barteri Callichilia Callichilia barteri \N \N \N \N \N 32725 \N subspecies Ipomopsis aggregata subsp. attenuata \N \N \N \N \N 32726 P.lancifolius Psophocarpus Psophocarpus lancifolius \N \N \N \N \N 32727 C.pittieri Capparis Capparis pittieri \N \N \N \N \N 32728 S.calendulacea Scaevola Scaevola calendulacea \N \N \N \N \N 32729 B.weberbaueri Bauhinia Bauhinia weberbaueri \N \N \N \N \N 32730 J.nigra Juglans Juglans nigra black walnut \N \N \N \N 32731 G.sinensis Gleditsia Gleditsia sinensis \N \N \N \N \N 32732 G.juniperina Grevillea Grevillea juniperina \N \N \N \N \N 32733 \N genus Goodia \N \N \N \N \N 32734 M.longinervis Mallotus Mallotus longinervis \N \N \N \N \N 32735 C.medusa Centropogon Centropogon medusa \N \N \N \N \N 32736 \N subspecies Kernera saxatilis subsp. saxatilis \N \N \N \N \N 32737 P.campanilla Poitea Poitea campanilla \N \N \N \N \N 32738 A.recognitus Astragalus Astragalus recognitus \N \N \N \N \N 32739 C.agrippinum Colchicum Colchicum agrippinum \N \N \N \N \N 32740 C.actinia Cousinia Cousinia actinia \N \N \N \N \N 32741 A.panul Apium Apium panul \N \N \N \N \N 32742 E.stellata Euphorbia Euphorbia stellata \N \N \N \N \N 32743 S.grisebachiana Sebaea Sebaea grisebachiana \N \N \N \N \N 32744 T.tacnensis Tiquilia Tiquilia tacnensis \N \N \N \N \N 32745 S.meyeri-johannis Senecio Senecio meyeri-johannis \N \N \N \N \N 32746 C.bonplandii Carex Carex bonplandii \N \N \N \N \N 32747 S.podophyllum Syngonium Syngonium podophyllum \N \N \N \N \N 32748 T.irritans Triodia Triodia irritans \N \N \N \N \N 32749 S.eurycarpa Solms-laubachia Solms-laubachia eurycarpa \N \N \N \N \N 32750 \N genus Crossostylis \N \N \N \N \N 32751 C.luristanica Centaurea Centaurea luristanica \N \N \N \N \N 32752 A.malloryi Arctostaphylos Arctostaphylos malloryi \N \N \N \N \N 32753 V.lindmaniana Vanilla Vanilla lindmaniana \N \N \N \N \N 32754 L.floribunda Loasa Loasa floribunda \N \N \N \N \N 32755 E.scopulorum Echinocereus Echinocereus scopulorum \N \N \N \N \N 32756 S.moscopanum Solanum Solanum moscopanum \N \N \N \N \N 32757 O.indecora Ocotea Ocotea indecora \N \N \N \N \N 32758 G.papulosa Galenia Galenia papulosa \N \N \N \N \N 32759 T.staticifolia Tolpis Tolpis staticifolia \N \N \N \N \N 32760 A.barclaiana Asarina Asarina barclaiana \N \N \N \N \N 32761 P.vitifolia Passiflora Passiflora vitifolia \N \N \N \N \N 32762 A.orientalis Astrodaucus Astrodaucus orientalis \N \N \N \N \N 32763 \N genus Crispiloba \N \N \N \N \N 32764 C.lechleri Croton Croton lechleri dragon's blood \N \N \N \N 32765 \N genus Sarcopetalum \N \N \N \N \N 32766 E.arachniolepis Echinops Echinops arachniolepis \N \N \N \N \N 32767 S.yukonense Symphyotrichum Symphyotrichum yukonense Yukon aster \N \N \N \N 32768 \N genus Pottingeria \N \N \N \N \N 32769 O.1902 Opilia Opilia sp. Chase 1902 \N \N \N \N \N 32770 I.lipoensis Indosasa Indosasa lipoensis \N \N \N \N \N 32771 \N tribe Omphaleae \N \N \N \N \N 32772 C.echinoidea Coryphantha Coryphantha echinoidea \N \N \N \N \N 32773 O.clandestinum Osteospermum Osteospermum clandestinum \N \N \N \N \N 32774 C.ibarrae Chamaedorea Chamaedorea ibarrae \N \N \N \N \N 32775 H.aquatica Hydropectis Hydropectis aquatica \N \N \N \N \N 32776 P.fuligineum Piper Piper fuligineum \N \N \N \N \N 32777 \N tribe Colocasieae \N \N \N \N \N 32778 S.JVS-2001 Stylosanthes Stylosanthes aff. calcicola JVS-2001 \N \N \N \N \N 32779 S.colchica Staphylea Staphylea colchica \N \N \N \N \N 32780 A.leucophylla Aglaia Aglaia leucophylla \N \N \N \N \N 32781 Z.concinna Zinowiewia Zinowiewia concinna \N \N \N \N \N 32782 G.tomentosum Galium Galium tomentosum \N \N \N \N \N 32783 C.brownei Clinopodium Clinopodium brownei \N \N \N \N \N 32784 \N genus Lumnitzera \N \N \N \N \N 32785 R.baudotii Ranunculus Ranunculus baudotii \N \N \N \N \N 32786 O.rubroviridis Oliverella Oliverella rubroviridis \N \N \N \N \N 32787 H.lancasteri Hypericum Hypericum lancasteri \N \N \N \N \N 32788 H.s.n. Hydrocleys Hydrocleys sp. Givnish s.n. \N \N \N \N \N 32789 V.nigrum Veratrum Veratrum nigrum \N \N \N \N \N 32790 B.marlothii Brownanthus Brownanthus marlothii \N \N \N \N \N 32791 I.aristolochiifolia Ipomoea Ipomoea aristolochiifolia \N \N \N \N \N 32792 \N varietas Garcinia cantleyana var. grandifolia \N \N \N \N \N 32793 S.sicula Sternbergia Sternbergia sicula \N \N \N \N \N 32794 P.sp. Petunia Petunia sp. \N \N \N \N \N 32795 A.rosmarinifolia Alvesia Alvesia rosmarinifolia \N \N \N \N \N 32796 \N family Santalaceae sandlewood family \N \N \N \N 32797 A.holosericea Annona Annona holosericea \N \N \N \N \N 32798 S.harleyae Sabicea Sabicea harleyae \N \N \N \N \N 32799 A.revolutus Anthopterus Anthopterus revolutus \N \N \N \N \N 32800 L.frutescens Lespedeza Lespedeza frutescens \N \N \N \N \N 32801 S.trifasciata Schismatoglottis Schismatoglottis trifasciata \N \N \N \N \N 32802 B.candidula Berberis Berberis candidula \N \N \N \N \N 32803 C.michelsonii Crocus Crocus michelsonii \N \N \N \N \N 32804 D.breedlovei Dendrosida Dendrosida breedlovei \N \N \N \N \N 32805 A.anomala Aegiphila Aegiphila anomala \N \N \N \N \N 32806 R.pinnata Ruta Ruta pinnata \N \N \N \N \N 32807 C.microcarpa Coprosma Coprosma microcarpa \N \N \N \N \N 32808 R.peruvianus Ranunculus Ranunculus peruvianus \N \N \N \N \N 32809 S.viridiflora Silene Silene viridiflora \N \N \N \N \N 32810 P.repens Pellionia Pellionia repens \N \N \N \N \N 32811 \N tribe Micrandreae \N \N \N \N \N 32812 P.acuminata Passiflora Passiflora acuminata \N \N \N \N \N 32813 A.schoenoprasum Allium Allium schoenoprasum chive \N \N \N \N 32814 \N genus Youngia \N \N \N \N \N 32815 S.s.n. Sobralia Sobralia cf. madisonii Szlachetko s.n. \N \N \N \N \N 32816 K.compacta Killickia Killickia compacta \N \N \N \N \N 32817 R.lindbergiana Rhipsalis Rhipsalis lindbergiana \N \N \N \N \N 32818 G.glomerata Gasteria Gasteria glomerata \N \N \N \N \N 32819 \N genus Plocosperma \N \N \N \N \N 32820 C.filiformis Carex Carex filiformis \N \N \N \N \N 32821 M.KAD343 Mikaniopsis Mikaniopsis sp. KAD343 \N \N \N \N \N 32822 O.violacea Oxalis Oxalis violacea \N \N \N \N \N 32823 S.tonduzii Senna Senna tonduzii \N \N \N \N \N 32824 G.nigra Gymnadenia Gymnadenia nigra \N \N \N \N \N 32825 \N genus Espostoopsis \N \N \N \N \N 32826 \N genus Campylotropis \N \N \N \N \N 32827 \N varietas Acacia aneura var. tenuis \N \N \N \N \N 32828 N.japonica Nuphar Nuphar japonica \N \N \N \N \N 32829 S.rufa Stapelia Stapelia rufa \N \N \N \N \N 32830 \N varietas Strobilanthes aprica var. pedunculata \N \N \N \N \N 32831 M.JW_13_02_07 Melampyrum Melampyrum sp. JW_13_02_07 \N \N \N \N \N 32832 B.lanceolaria Blumea Blumea lanceolaria \N \N \N \N \N 32833 P.leveilleana Prunus Prunus leveilleana \N \N \N \N \N 32834 M.expansa Mirabilis Mirabilis expansa \N \N \N \N \N 32835 \N genus Triraphis \N \N \N \N \N 32836 H.lanceolata Heliciopsis Heliciopsis lanceolata \N \N \N \N \N 32837 \N varietas Prunus serrulata var. lannesiana Japanese flowering cherry,satozakura \N \N \N \N 32838 A.floribunda Acacia Acacia floribunda \N \N \N \N \N 32839 M.QIZ Macrocarpaea Macrocarpaea sp. QIZ \N \N \N \N \N 32840 \N genus Landolphia \N \N \N \N \N 32841 P.allionii Primula Primula allionii \N \N \N \N \N 32842 L.nitida Livistona Livistona nitida \N \N \N \N \N 32843 A.cretica Arabis Arabis cretica \N \N \N \N \N 32844 \N varietas Peucedanum harry-smithii var. subglabrum \N \N \N \N \N 32845 \N subspecies Sisyrinchium vaginatum subsp. vaginatum \N \N \N \N \N 32846 U.nephrophylla Utricularia Utricularia nephrophylla \N \N \N \N \N 32847 \N varietas Daphne pseudomezereum var. koreana \N \N \N \N \N 32848 Q.pontica Quercus Quercus pontica \N \N \N \N \N 32849 A.aromatica Arafoe Arafoe aromatica \N \N \N \N \N 32850 \N varietas Alpinia blepharocalyx var. glabrior \N \N \N \N \N 32851 M.lueri Maxillaria Maxillaria lueri \N \N \N \N \N 32852 \N varietas Pereskia horrida var. horrida \N \N \N \N \N 32853 D.freitagii Dionysia Dionysia freitagii \N \N \N \N \N 32854 \N genus Ononis \N \N \N \N \N 32855 B.GF-2007 Bulbophyllum Bulbophyllum aff. sphaerobulbum GF-2007 \N \N \N \N \N 32856 \N genus Chamorchis \N \N \N \N \N 32857 T.ferreyrae Tiquilia Tiquilia ferreyrae \N \N \N \N \N 32858 R.angulosus Rhagadiolus Rhagadiolus angulosus \N \N \N \N \N 32859 \N genus Sanvitalia \N \N \N \N \N 32860 A.hirsuta Arctotis Arctotis hirsuta \N \N \N \N \N 32861 E.pendulinus Elymus Elymus pendulinus \N \N \N \N \N 32862 B.siamensis Boehmeria Boehmeria siamensis \N \N \N \N \N 32863 C.quadrangula Clusia Clusia quadrangula \N \N \N \N \N 32864 O.LuoYibo665 Oreorchis Oreorchis sp. LuoYibo665 \N \N \N \N \N 32865 P.latipes Parasenecio Parasenecio latipes \N \N \N \N \N 32866 S.picrophylla Syagrus Syagrus picrophylla \N \N \N \N \N 32867 P.linearifolium Prionosciadium Prionosciadium linearifolium \N \N \N \N \N 32868 F.lutescens Filago Filago lutescens \N \N \N \N \N 32869 G.blanchetii Galeandra Galeandra blanchetii \N \N \N \N \N 32870 G.declinata Glyceria Glyceria declinata \N \N \N \N \N 32871 R.elseyanum Rhipogonum Rhipogonum elseyanum \N \N \N \N \N 32872 P.decipiens Podandrogyne Podandrogyne decipiens \N \N \N \N \N 32873 T.fassoglense Tylosema Tylosema fassoglense \N \N \N \N \N 32874 \N forma Camellia semiserrata f. albiflora \N \N \N \N \N 32875 S.coriacea Saussurea Saussurea coriacea \N \N \N \N \N 32876 N.magnifica Nasa Nasa magnifica \N \N \N \N \N 32877 S.frigidus Symbolanthus Symbolanthus frigidus \N \N \N \N \N 32878 \N subspecies Allocasuarina acutivalvis subsp. prinsepiana \N \N \N \N \N 32879 P.greenmanii Physalis Physalis greenmanii \N \N \N \N \N 32880 \N genus Brexia \N \N \N \N \N 32881 \N genus Gilbertiodendron \N \N \N \N \N 32882 \N genus Ainea \N \N \N \N \N 32883 E.prostratus Euryops Euryops prostratus \N \N \N \N \N 32884 D.delavayi Docynia Docynia delavayi \N \N \N \N \N 32885 O.stenopetala Opuntia Opuntia stenopetala \N \N \N \N \N 32886 R.jundzillii Rosa Rosa jundzillii \N \N \N \N \N 32887 \N genus Gomphocalyx \N \N \N \N \N 32888 C.knizei Cintia Cintia knizei \N \N \N \N \N 32889 \N family Aphloiaceae \N \N \N \N \N 32890 M.supinus Micropus Micropus supinus \N \N \N \N \N 32891 \N genus Amaranthus \N \N \N \N \N 32892 M.papillosa Medicago Medicago papillosa \N \N \N \N \N 32893 A.albiflorum Amalophyllon Amalophyllon albiflorum \N \N \N \N \N 32894 C.peruvianus Cyclopogon Cyclopogon peruvianus \N \N \N \N \N 32895 S.pycnantha Symplocos Symplocos pycnantha \N \N \N \N \N 32896 T.frisea Thesium Thesium frisea \N \N \N \N \N 32897 \N genus Kupea \N \N \N \N \N 32898 \N varietas Rubus parvifolius var. taquetii \N \N \N \N \N 32899 V.tetrasticha Hebe Veronica tetrasticha \N \N \N \N \N 32900 C.lachnosphaera Cousinia Cousinia lachnosphaera \N \N \N \N \N 32901 \N subspecies Crepis viscidula subsp. geracioides \N \N \N \N \N 32902 P.tenuiflora Plantago Plantago tenuiflora \N \N \N \N \N 32903 \N genus Eriaxis \N \N \N \N \N 32904 E.pininana Echium Echium pininana \N \N \N \N \N 32905 \N genus Dialium \N \N \N \N \N 32906 C.macowanii Crinum Crinum macowanii \N \N \N \N \N 32907 C.hallii Cylindrophyllum Cylindrophyllum hallii \N \N \N \N \N 32908 A.angustius Aconitum Aconitum angustius \N \N \N \N \N 32909 M.tenellum Monochaetum Monochaetum tenellum \N \N \N \N \N 32910 T.integrifolium Thelypodium Thelypodium integrifolium \N \N \N \N \N 32911 G.lupulina Geochloa Geochloa lupulina \N \N \N \N \N 32912 \N genus Orinus \N \N \N \N \N 32913 T.13969 Trichilia Trichilia sp. Thomas 13969 \N \N \N \N \N 32914 C.IUGH Calceolaria Calceolaria sp. IUGH \N \N \N \N \N 32915 \N subspecies Citrullus lanatus subsp. vulgaris watermelon \N \N \N \N 32916 \N genus Tovarochloa \N \N \N \N \N 32917 T.CH_E2Amono Triticum Triticum sp. CH_E2Amono \N \N \N \N \N 32918 C.parviflora Coprosma Coprosma parviflora \N \N \N \N \N 32919 T.racemosus Tragus Tragus racemosus \N \N \N \N \N 32920 H.rufa Hyparrhenia Hyparrhenia rufa \N \N \N \N \N 32921 \N genus Allexis \N \N \N \N \N 32922 H.marginatum Helictotrichon Helictotrichon marginatum \N \N \N \N \N 32923 \N subspecies Pimelea linifolia subsp. linifolia \N \N \N \N \N 32924 B.latifolia Benthamia Benthamia latifolia \N \N \N \N \N 32925 S.thymoides Salvia Salvia thymoides \N \N \N \N \N 32926 G.brasiliensis Gaylussacia Gaylussacia brasiliensis \N \N \N \N \N 32927 S.genistoides Stauracanthus Stauracanthus genistoides \N \N \N \N \N 32928 M.ceratonia Mimosa Mimosa ceratonia \N \N \N \N \N 32929 C.plantaginea Carex Carex plantaginea \N \N \N \N \N 32930 \N genus Balanops \N \N \N \N \N 32931 S.nesopanax Schefflera Schefflera nesopanax \N \N \N \N \N 32932 A.grandifolia Achillea Achillea grandifolia \N \N \N \N \N 32933 L.flavum Linum Linum flavum \N \N \N \N \N 32934 M.californica Morella Morella californica California bayberry,California wax-myrtle \N \N \N \N 32935 G.pentandra Gonostegia Gonostegia pentandra \N \N \N \N \N 32936 F.chilensis Fuertesimalva Fuertesimalva chilensis \N \N \N \N \N 32937 L.herbacea Leea Leea herbacea \N \N \N \N \N 32938 S.4957 Schmidtottia Schmidtottia sp. McDowell 4957 \N \N \N \N \N 32939 P.densifolia Pultenaea Pultenaea densifolia \N \N \N \N \N 32940 S.obliquicuspis Sclerolaena Sclerolaena obliquicuspis \N \N \N \N \N 32941 B.cruckshanksii Blepharocalyx Blepharocalyx cruckshanksii \N \N \N \N \N 32942 \N genus Cinnamomum \N \N \N \N \N 32943 P.glanduligerum Pentanema Pentanema glanduligerum \N \N \N \N \N 32944 F.capensis Fockea Fockea capensis \N \N \N \N \N 32945 P.pyrophila Pentaschistis Pentameris pyrophila \N \N \N \N \N 32946 T.peytonii Tristerix Tristerix peytonii \N \N \N \N \N 32947 \N tribe Geonomateae \N \N \N \N \N 32948 C.japonicum Chrysosplenium Chrysosplenium japonicum \N \N \N \N \N 32949 B.lutosa Burmeistera Burmeistera lutosa \N \N \N \N \N 32950 \N genus Boreava \N \N \N \N \N 32951 M.lenticellata Maniltoa Maniltoa lenticellata \N \N \N \N \N 32952 \N varietas Draba lonchocarpa var. lonchocarpa \N \N \N \N \N 32953 P.borneensis Pratia Pratia borneensis \N \N \N \N \N 32954 A.papyracea Auranticarpa Auranticarpa papyracea \N \N \N \N \N 32955 I.volubilis Igidia Igidia volubilis \N \N \N \N \N 32956 \N genus Dirachma \N \N \N \N \N 32957 P.sinensis Prinsepia Prinsepia sinensis \N \N \N \N \N 32958 V.cataractarum Vaupesia Vaupesia cataractarum \N \N \N \N \N 32959 S.umbellata Strychnos Strychnos umbellata \N \N \N \N \N 32960 O.afghanica Ononis Ononis afghanica \N \N \N \N \N 32961 J.jamaicensis Juglans Juglans jamaicensis \N \N \N \N \N 32962 \N varietas Calopogon tuberosus var. latifolius \N \N \N \N \N 32963 A.hortensis Anemone Anemone hortensis \N \N \N \N \N 32964 A.stenosperma Arachis Arachis stenosperma \N \N \N \N \N 32965 E.gracilis Erica Erica gracilis \N \N \N \N \N 32966 \N genus Ferdinandusa \N \N \N \N \N 32967 G.annamensis Globba Globba annamensis \N \N \N \N \N 32968 L.montioides Lysipomia Lysipomia montioides \N \N \N \N \N 32969 \N genus Parashorea \N \N \N \N \N 32970 C.equisetifolia Casuarina Casuarina equisetifolia \N \N \N \N \N 32971 \N varietas Actinidia arguta var. arguta \N \N \N \N \N 32972 A.uraiensis Alpinia Alpinia uraiensis \N \N \N \N \N 32973 B.pavonina Begonia Begonia pavonina \N \N \N \N \N 32974 D.scabra Dayia Dayia scabra \N \N \N \N \N 32975 \N genus Litwinowia \N \N \N \N \N 32976 \N varietas Houstonia purpurea var. calycosa \N \N \N \N \N 32977 S.juventas Streptocaulon Streptocaulon juventas \N \N \N \N \N 32978 P.harmandii Phyllanthus Phyllanthus harmandii \N \N \N \N \N 32979 D.guttatus Daucus Daucus guttatus \N \N \N \N \N 32980 C.cephalanthi Cuscuta Cuscuta cephalanthi \N \N \N \N \N 32981 \N genus Pycnocoma \N \N \N \N \N 32982 A.acutifolius Asparagus Asparagus acutifolius \N \N \N \N \N 32983 E.canindeyuensis Eleocharis Eleocharis canindeyuensis \N \N \N \N \N 32984 T.laoticum Tetrastigma Tetrastigma laoticum \N \N \N \N \N 32985 C.bonariensis Canavalia Canavalia bonariensis \N \N \N \N \N 32986 A.schottii Acacia Acacia schottii \N \N \N \N \N 32987 P.discolor Pseudopanax Pseudopanax discolor \N \N \N \N \N 32988 C.magnistipula Coffea Coffea magnistipula \N \N \N \N \N 32989 \N varietas Ainsliaea acerifolia var. acerifolia \N \N \N \N \N 32990 \N subspecies Silene rosulata subsp. reeseana \N \N \N \N \N 32991 \N genus Shortia \N \N \N \N \N 32992 S.brittonii Spathelia Spathelia brittonii \N \N \N \N \N 32993 A.indurata Anthemis Anthemis indurata \N \N \N \N \N 32994 C.auriculata Coreopsis Coreopsis auriculata \N \N \N \N \N 32995 X.danguyi Xerosicyos Xerosicyos danguyi \N \N \N \N \N 32996 H.mussae Helichrysum Helichrysum mussae \N \N \N \N \N 32997 E.transmorrisonensis Euphrasia Euphrasia transmorrisonensis \N \N \N \N \N 32998 P.6812 Prunus Prunus sp. Wen 6812 \N \N \N \N \N 32999 D.arnhemicus Distichostemon Distichostemon arnhemicus \N \N \N \N \N 33000 \N genus Phellodendron \N \N \N \N \N 33001 P.condensata Palicourea Palicourea condensata \N \N \N \N \N 33002 F.lanceolata Fimbristylis Fimbristylis lanceolata \N \N \N \N \N 33003 A.triphylla Achlys Achlys triphylla deerfoot,vanilla leaf \N \N \N \N 33004 E.pseudocactus Euphorbia Euphorbia pseudocactus \N \N \N \N \N 33005 D.biflora Delilia Delilia biflora \N \N \N \N \N 33006 \N genus Cuspidaria \N \N \N \N \N 33007 O.intermedia Oldenburgia Oldenburgia intermedia \N \N \N \N \N 33008 P.scopulina Phacelia Phacelia scopulina \N \N \N \N \N 33009 M.aureum Melampodium Melampodium aureum \N \N \N \N \N 33010 \N genus Strombosiopsis \N \N \N \N \N 33011 P.jamaicensis Polygala Polygala jamaicensis \N \N \N \N \N 33012 \N genus Catha \N \N \N \N \N 33013 G.boliviana Guettarda Guettarda boliviana \N \N \N \N \N 33014 M.ovatum Mecranium Mecranium ovatum \N \N \N \N \N 33015 A.empelioclada Acacia Acacia empelioclada \N \N \N \N \N 33016 L.burgessii Lepidospartum Lepidospartum burgessii \N \N \N \N \N 33017 C.variifolia Calceolaria Calceolaria variifolia \N \N \N \N \N 33018 O.oligocephalus Oreobolus Oreobolus oligocephalus \N \N \N \N \N 33019 C.asiatica Colubrina Colubrina asiatica \N \N \N \N \N 33020 A.SH-2010 Alstonia Alstonia sp. SH-2010 \N \N \N \N \N 33021 A.myriantha Ajania Ajania myriantha \N \N \N \N \N 33022 A.dockeri Acanthocladium Acanthocladium dockeri \N \N \N \N \N 33023 E.denticulata Erica Erica denticulata \N \N \N \N \N 33024 A.atropella Acranthera Acranthera atropella \N \N \N \N \N 33025 C.huai Chaerophyllopsis Chaerophyllopsis huai \N \N \N \N \N 33026 \N genus Scelochilus \N \N \N \N \N 33027 C.humbertii Ceropegia Ceropegia humbertii \N \N \N \N \N 33028 S.carvifolia Selinum Selinum carvifolia \N \N \N \N \N 33029 S.occidentale Sideroxylon Sideroxylon occidentale \N \N \N \N \N 33030 C.monospermum Calyptridium Calyptridium umbellatum x Calyptridium monospermum \N \N \N \N \N 33031 \N genus Tetrathylacium \N \N \N \N \N 33032 A.ochroleuca Argemone Argemone ochroleuca \N \N \N \N \N 33033 C.subscandens Cremolobus Cremolobus subscandens \N \N \N \N \N 33034 \N varietas Carex tonsa var. tonsa \N \N \N \N \N 33035 G.6020 Glossoloma Glossoloma sp. Clark 6020 \N \N \N \N \N 33036 O.ambrensis Olea Olea ambrensis \N \N \N \N \N 33037 \N varietas Citrus trifoliata var. monstrosa \N \N \N \N \N 33038 \N subspecies Narcissus tazetta subsp. italicus \N \N \N \N \N 33039 H.vitiensis Hydriastele Hydriastele vitiensis \N \N \N \N \N 33040 H.albinerve Helictotrichon Helictotrichon albinerve \N \N \N \N \N 33041 A.crassinervia Aglaia Aglaia crassinervia \N \N \N \N \N 33042 R.odontophylla Rhynchocorys Rhynchocorys odontophylla \N \N \N \N \N 33043 D.microcarpa Desmopsis Desmopsis microcarpa \N \N \N \N \N 33044 T.96059 Tradescantia Tradescantia sp. Qiu 96059 \N \N \N \N \N 33045 S.sympetala Souroubea Souroubea sympetala \N \N \N \N \N 33046 A.argentea Arctotis Arctotis argentea \N \N \N \N \N 33047 N.244460 Nemesia Nemesia aff. caerulea AK 244460 \N \N \N \N \N 33048 \N genus Pteranthus \N \N \N \N \N 33049 \N family Posidoniaceae \N \N \N \N \N 33050 S.yunnanense Seseli Seseli yunnanense \N \N \N \N \N 33051 S.microcarpa Swartzia Swartzia microcarpa \N \N \N \N \N 33052 R.richardsonii Rytidosperma Rytidosperma richardsonii \N \N \N \N \N 33053 P.gabonensis Plagiosiphon Plagiosiphon gabonensis \N \N \N \N \N 33054 T.flagellaris Tripodanthus Tripodanthus flagellaris \N \N \N \N \N 33055 M.goodridgei Mammillaria Mammillaria goodridgei \N \N \N \N \N 33056 B.bonus-henricus Begonia Begonia bonus-henricus \N \N \N \N \N 33057 \N subspecies Celastrus paniculatus subsp. aggregatus \N \N \N \N \N 33058 P.caloglossa Polystachya Polystachya caloglossa \N \N \N \N \N 33059 \N genus Sycopsis \N \N \N \N \N 33060 M.pseudoreichenheimiana Maxillaria Maxillaria pseudoreichenheimiana \N \N \N \N \N 33061 C.glaziovii Chaetocalyx Chaetocalyx glaziovii \N \N \N \N \N 33062 P.monophylla Polystachya Polystachya monophylla \N \N \N \N \N 33063 B.flemingii Bromelia Bromelia flemingii \N \N \N \N \N 33064 V.carnosa Valeriana Valeriana carnosa \N \N \N \N \N 33065 \N no rank unclassified Quercus \N \N \N \N \N 33066 S.linearifolia Solms-laubachia Solms-laubachia linearifolia \N \N \N \N \N 33067 S.turneroides Sida Sida turneroides \N \N \N \N \N 33068 \N subspecies Silene scouleri subsp. pringlei \N \N \N \N \N 33069 R.culminicola Rhododendron Rhododendron culminicola \N \N \N \N \N 33070 E.phymatosperma Euphorbia Euphorbia phymatosperma \N \N \N \N \N 33071 T.acaulis Trollius Trollius acaulis \N \N \N \N \N 33072 V.baumgartenii Veronica Veronica baumgartenii \N \N \N \N \N 33073 \N genus Drimys \N \N \N \N \N 33074 M.pubigluma Muhlenbergia Muhlenbergia pubigluma \N \N \N \N \N 33075 O.lamarckiana Oenothera Oenothera lamarckiana \N \N \N \N \N 33076 S.tortifolius Sericocarpus Sericocarpus tortifolius Dixie whitetop aster \N \N \N \N 33077 C.1010 Canna Canna sp. Graham 1010 \N \N \N \N \N 33078 P.oreophila Pimpinella Pimpinella oreophila \N \N \N \N \N 33079 O.littoralis Omphalodes Omphalodes littoralis \N \N \N \N \N 33080 \N genus Thalassodendron \N \N \N \N \N 33081 D.suffruticosum Dasispermum Dasispermum suffruticosum \N \N \N \N \N 33082 V.lobata Valeriana Valeriana lobata \N \N \N \N \N 33083 S.violacea Scaphyglottis Scaphyglottis violacea \N \N \N \N \N 33084 W.CF-2007 Weinmannia Weinmannia sp. CF-2007 \N \N \N \N \N 33085 A.tetraquetra Arenaria Arenaria tetraquetra \N \N \N \N \N 33086 P.longifolia Polyalthia Polyalthia longifolia \N \N \N \N \N 33087 S.spathulatifolia Smelowskia Smelowskia spathulatifolia \N \N \N \N \N 33088 M.auristipulata Malesherbia Malesherbia auristipulata \N \N \N \N \N 33089 S.tenuifolia Selago Selago tenuifolia \N \N \N \N \N 33090 S.pectinata Saussurea Saussurea pectinata \N \N \N \N \N 33091 B.lophandra Barongia Barongia lophandra \N \N \N \N \N 33092 I.habra Isolepis Isolepis habra \N \N \N \N \N 33093 B.molleri Begonia Begonia molleri \N \N \N \N \N 33094 C.somaliensis Cuscuta Cuscuta somaliensis \N \N \N \N \N 33095 D.sinense Dendrobium Dendrobium sinense \N \N \N \N \N 33096 A.americanus Astragalus Astragalus americanus \N \N \N \N \N 33097 S.stenospermum Sideroxylon Sideroxylon stenospermum \N \N \N \N \N 33098 P.celsiiformis Primula Primula celsiiformis \N \N \N \N \N 33099 A.aestivus Asphodelus Asphodelus aestivus \N \N \N \N \N 33100 P.scabrum Polygonum Polygonum scabrum \N \N \N \N \N 33101 B.malconense Bupleurum Bupleurum malconense \N \N \N \N \N 33102 C.comosum Calligonum Calligonum comosum \N \N \N \N \N 33103 M.6093 Mourera Mourera cf. aspera Philbrick 6093 \N \N \N \N \N 33104 \N genus Ochthodium \N \N \N \N \N 33105 G.benthamii Gonocarpus Gonocarpus benthamii \N \N \N \N \N 33106 I.flabelliformis Isodon Isodon flabelliformis \N \N \N \N \N 33107 R.recurvatus Ranunculus Ranunculus recurvatus \N \N \N \N \N 33108 P.parviflora Philibertia Philibertia parviflora \N \N \N \N \N 33109 \N genus Neostapfia \N \N \N \N \N 33110 A.Xia-732 Amomum Amomum aff. krervahn Xia-732 \N \N \N \N \N 33111 G.holopetala Genista Genista holopetala \N \N \N \N \N 33112 \N subspecies Phlomis crinita subsp. malacitana \N \N \N \N \N 33113 O.virgata Olearia Olearia virgata \N \N \N \N \N 33114 O.convexula Oxalis Oxalis convexula \N \N \N \N \N 33115 P.lanulosus Paepalanthus Paepalanthus lanulosus \N \N \N \N \N 33116 \N genus Argomuellera \N \N \N \N \N 33117 \N genus Strephonema \N \N \N \N \N 33118 A.cymosa Aganosma Aganosma cymosa \N \N \N \N \N 33119 T.fruticosum Talinum Talinum fruticosum \N \N \N \N \N 33120 P.glandulosa Pulicaria Pulicaria glandulosa \N \N \N \N \N 33121 W.guianensis Warczewiczella Warczewiczella guianensis \N \N \N \N \N 33122 \N genus Sesamum \N \N \N \N \N 33123 \N genus Danais \N \N \N \N \N 33124 H.australis Hierochloe Hierochloe australis \N \N \N \N \N 33125 L.procumbens Lotus Lotus procumbens \N \N \N \N \N 33126 H.lucida Halleria Halleria lucida \N \N \N \N \N 33127 A.micrantha Amicia Amicia micrantha \N \N \N \N \N 33128 P.occidentalis Petunia Petunia occidentalis \N \N \N \N \N 33129 A.anserovina Acaena Acaena x anserovina \N \N \N \N \N 33130 \N genus Carpanthea \N \N \N \N \N 33131 O.muricatum Ormocarpum Ormocarpum muricatum \N \N \N \N \N 33132 P.fragrans Primula Primula fragrans \N \N \N \N \N 33133 \N genus Acranthera \N \N \N \N \N 33134 O.rigida Onosma Onosma rigida \N \N \N \N \N 33135 P.P095 Physalis Physalis sp. P095 \N \N \N \N \N 33136 C.serrulata Codonanthe Codonanthe serrulata \N \N \N \N \N 33137 \N genus Wolffia \N \N \N \N \N 33138 F.borderii Festuca Festuca borderii \N \N \N \N \N 33139 B.D49c Brachypodium Brachypodium sp. D49c \N \N \N \N \N 33140 H.tibetica Habenaria Habenaria tibetica \N \N \N \N \N 33141 \N genus Peplonia \N \N \N \N \N 33142 C.trichocladus Chisocheton Chisocheton trichocladus \N \N \N \N \N 33143 C.celosioides Cistanthe Cistanthe celosioides \N \N \N \N \N 33144 A.alatum Astrocaryum Astrocaryum alatum \N \N \N \N \N 33145 \N tribe Apieae \N \N \N \N \N 33146 \N genus Cynara \N \N \N \N \N 33147 R.xanthina Rosa Rosa xanthina \N \N \N \N \N 33148 P.filipes Platymiscium Platymiscium filipes \N \N \N \N \N 33149 E.damarana Euphorbia Euphorbia damarana \N \N \N \N \N 33150 E.ovatus Echinopogon Echinopogon ovatus \N \N \N \N \N 33151 F.pseudodalmatica Festuca Festuca pseudodalmatica \N \N \N \N \N 33152 D.pancheri Dicarpellum Dicarpellum pancheri \N \N \N \N \N 33153 \N genus Colleteria \N \N \N \N \N 33154 O.35 Ophiorrhiza Ophiorrhiza sp. 35 \N \N \N \N \N 33155 O.cernua Orobanche Orobanche cernua \N \N \N \N \N 33156 F.uncinulata Ficus Ficus uncinulata \N \N \N \N \N 33157 \N varietas Cucumis melo var. flexuosus \N \N \N \N \N 33158 H.arborea Harpullia Harpullia arborea \N \N \N \N \N 33159 S.cuneata Sargentodoxa Sargentodoxa cuneata \N \N \N \N \N 33160 P.flexile Panicum Panicum flexile \N \N \N \N \N 33161 S.mollis Sabicea Sabicea mollis \N \N \N \N \N 33162 \N varietas Aegilops peregrina var. brachyathera \N \N \N \N \N 33163 S.spicata Suaeda Suaeda spicata \N \N \N \N \N 33164 \N genus Asimina \N \N \N \N \N 33165 N.fritschii Nematanthus Nematanthus fritschii \N \N \N \N \N 33166 P.pallidum Pteroceras Pteroceras pallidum \N \N \N \N \N 33167 V.henrici Valeriana Valeriana henrici \N \N \N \N \N 33168 M.nitida Magnolia Magnolia nitida \N \N \N \N \N 33169 S.bumalda Staphylea Staphylea bumalda \N \N \N \N \N 33170 P.yolombo Panopsis Panopsis yolombo \N \N \N \N \N 33171 C.alexandrina Centaurea Centaurea alexandrina \N \N \N \N \N 33172 \N subspecies Sarracenia rubra subsp. rubra \N \N \N \N \N 33173 R.floribunda Ruellia Ruellia floribunda \N \N \N \N \N 33174 S.cooperi Streptocarpus Streptocarpus cooperi \N \N \N \N \N 33175 P.hookeri Polygala Polygala hookeri \N \N \N \N \N 33176 T.speciosum Theobroma Theobroma speciosum \N \N \N \N \N 33177 F.gooddingii Fraxinus Fraxinus gooddingii \N \N \N \N \N 33178 \N genus Hypericum \N \N \N \N \N 33179 N.tetragona Nymphaea Nymphaea tetragona pygmy water-lily \N \N \N \N 33180 L.lemmonii Lessingia Lessingia lemmonii \N \N \N \N \N 33181 P.yunnanensis Parnassia Parnassia yunnanensis \N \N \N \N \N 33182 A.aphyllus Asparagus Asparagus aphyllus \N \N \N \N \N 33183 A.cruziana Arachis Arachis cruziana \N \N \N \N \N 33184 F.moluccana Falcataria Falcataria moluccana \N \N \N \N \N 33185 B.ischaemum Bothriochloa Bothriochloa ischaemum \N \N \N \N \N 33186 P.nitida Psydrax Psydrax nitida \N \N \N \N \N 33187 P.decipiens Pseudopteris Pseudopteris decipiens \N \N \N \N \N 33188 A.rutenbergii Alchemilla Alchemilla rutenbergii \N \N \N \N \N 33189 D.confertifolia Drimys Drimys confertifolia \N \N \N \N \N 33190 E.groffii Eurya Eurya groffii \N \N \N \N \N 33191 \N subspecies Crocus biflorus subsp. artvinensis \N \N \N \N \N 33192 P.wudjariensis Pultenaea Pultenaea wudjariensis \N \N \N \N \N 33193 E.ebracteatum Eryngium Eryngium ebracteatum \N \N \N \N \N 33194 P.alsodes Poa Poa alsodes \N \N \N \N \N 33195 C.henryi Corymbia Corymbia henryi \N \N \N \N \N 33196 \N genus Rochelia \N \N \N \N \N 33197 B.lucida Bredemeyera Bredemeyera lucida \N \N \N \N \N 33198 C.roseans Cryptocentrum Cryptocentrum roseans \N \N \N \N \N 33199 C.macrocephala Cordia Cordia macrocephala \N \N \N \N \N 33200 C.pinnata Chrysactinia Chrysactinia pinnata \N \N \N \N \N 33201 E.radioferens Epidendrum Epidendrum radioferens \N \N \N \N \N 33202 R.santapaui Rhododendron Rhododendron santapaui \N \N \N \N \N 33203 C.bailinshanica Camellia Camellia bailinshanica \N \N \N \N \N 33204 \N genus Ploiarium \N \N \N \N \N 33205 \N varietas Cypripedium parviflorum var. pubescens \N \N \N \N \N 33206 T.quinquenervia Trevoa Trevoa quinquenervia \N \N \N \N \N 33207 \N genus Actinanthella \N \N \N \N \N 33208 \N subspecies Delphinium hansenii subsp. ewanianum \N \N \N \N \N 33209 \N genus Opopanax \N \N \N \N \N 33210 M.oligosperma Mimosa Mimosa oligosperma \N \N \N \N \N 33211 S.pauciflora Salvia Salvia pauciflora \N \N \N \N \N 33212 I.decorus Indocalamus Indocalamus decorus \N \N \N \N \N 33213 M.bracteata Mancoa Mancoa bracteata \N \N \N \N \N 33214 I.graciliflora Ixora Ixora graciliflora \N \N \N \N \N 33215 T.erythronioides Tulipa Tulipa erythronioides \N \N \N \N \N 33216 H.splendens Hibiscus Hibiscus splendens hollyhock-tree \N \N \N \N 33217 \N genus Chorizanthe \N \N \N \N \N 33218 \N tribe Arethuseae \N \N \N \N \N 33219 O.ramosus Ozothamnus Ozothamnus ramosus \N \N \N \N \N 33220 E.bentii Echidnopsis Echidnopsis bentii \N \N \N \N \N 33221 \N varietas Coursetia caribaea var. sericea \N \N \N \N \N 33222 E.astragaloides Erodium Erodium astragaloides \N \N \N \N \N 33223 \N genus Nierembergia \N \N \N \N \N 33224 M.SGR-2009 Morinda Morinda sp. 4 SGR-2009 \N \N \N \N \N 33225 D.O42-3 Draba Draba sp. O42-3 \N \N \N \N \N 33226 L.4044 Lepidaria Lepidaria cf. forbesii Nickrent 4044 \N \N \N \N \N 33227 X.fraternum Xysmalobium Xysmalobium fraternum \N \N \N \N \N 33228 D.trigonopus Dendrobium Dendrobium trigonopus \N \N \N \N \N 33229 A.kinabaluense Amomum Amomum kinabaluense \N \N \N \N \N 33230 \N genus Pachycereus \N \N \N \N \N 33231 W.46 Wisteria Wisteria sp. Charleston 46 \N \N \N \N \N 33232 I.brachystachys Inga Inga brachystachys \N \N \N \N \N 33233 B.madagascariensis Burasaia Burasaia madagascariensis \N \N \N \N \N 33234 C.fruticulosa Ceraria Ceraria fruticulosa \N \N \N \N \N 33235 S.elliptica Securidaca Securidaca elliptica \N \N \N \N \N 33236 \N genus Carlowrightia \N \N \N \N \N 33237 V.pusilla Viola Viola pusilla \N \N \N \N \N 33238 P.apulum Papaver Papaver apulum \N \N \N \N \N 33239 P.humilis Prunus Prunus humilis \N \N \N \N \N 33240 C.cuneifolia Calotis Calotis cuneifolia \N \N \N \N \N 33241 C.constanceana Carex Carex constanceana \N \N \N \N \N 33242 F.greggii Fraxinus Fraxinus greggii \N \N \N \N \N 33243 P.argentea Paronychia Paronychia argentea \N \N \N \N \N 33244 A.nairica Prunus Amygdalus nairica \N \N \N \N \N 33245 E.alpinum Eryngium Eryngium alpinum \N \N \N \N \N 33246 M.2957 Maxillaria Maxillaria cf. floribunda Blanco 2957 \N \N \N \N \N 33247 S.omphalodes Stephanochilus Stephanochilus omphalodes \N \N \N \N \N 33248 \N genus Fuirena \N \N \N \N \N 33249 S.carnosissima Suaeda Suaeda carnosissima \N \N \N \N \N 33250 B.sandwicensis Bobea Bobea sandwicensis \N \N \N \N \N 33251 S.scortechinii Spyridium Spyridium scortechinii \N \N \N \N \N 33252 H.incana Hermannia Hermannia incana \N \N \N \N \N 33253 P.grisea Prunus Prunus grisea \N \N \N \N \N 33254 A.vanbruggenii Aponogeton Aponogeton vanbruggenii \N \N \N \N \N 33255 P.millegrana Panicum Panicum millegrana \N \N \N \N \N 33256 T.dimorphanthus Tribulocarpus Tribulocarpus dimorphanthus \N \N \N \N \N 33257 P.praealta Physochlaina Physochlaina praealta \N \N \N \N \N 33258 C.papillaris Cotyledon Cotyledon papillaris \N \N \N \N \N 33259 L.sp. Lobelia Lobelia sp. \N \N \N \N \N 33260 I.h-4a Impatiens Impatiens sp. h-4a \N \N \N \N \N 33261 \N varietas Ourisia macrophylla var. macrophylla \N \N \N \N \N 33262 H.tenue Hymenostephium Hymenostephium tenue \N \N \N \N \N 33263 A.Qiu-M149 Ascarina Ascarina sp. Qiu-M149 \N \N \N \N \N 33264 T.complanata Tillandsia Tillandsia complanata \N \N \N \N \N 33265 L.hemsleyana Lonicera Lonicera hemsleyana \N \N \N \N \N 33266 \N genus Phanopyrum \N \N \N \N \N 33267 C.pyramidatum Chileranthemum Chileranthemum pyramidatum \N \N \N \N \N 33268 \N family Pandaceae \N \N \N \N \N 33269 A.12765 Aspidostemon Aspidostemon sp. van der Werff 12765 \N \N \N \N \N 33270 \N genus Barnhartia \N \N \N \N \N 33271 B.CN-2005 Boesenbergia Boesenbergia sp. CN-2005 \N \N \N \N \N 33272 A.koenigii Amomum Amomum koenigii \N \N \N \N \N 33273 S.coccinea Stachys Stachys coccinea \N \N \N \N \N 33274 P.neoanglica Pimelea Pimelea neoanglica \N \N \N \N \N 33275 A.kuntzeana Aechmea Aechmea kuntzeana \N \N \N \N \N 33276 K.lasiocephala Klasea Klasea lasiocephala \N \N \N \N \N 33277 D.humilis Dodonaea Dodonaea humilis \N \N \N \N \N 33278 \N varietas Musa itinerans var. itinerans \N \N \N \N \N 33279 X.americana Ximenia Ximenia americana \N \N \N \N \N 33280 S.alamosensis Stenocereus Stenocereus alamosensis \N \N \N \N \N 33281 \N subfamily Aroideae \N \N \N \N \N 33282 C.sarcophylla Chamaeangis Chamaeangis sarcophylla \N \N \N \N \N 33283 \N subspecies Cardamine amara subsp. amara \N \N \N \N \N 33284 J.atacamensis Jarava Jarava atacamensis \N \N \N \N \N 33285 \N subspecies Linaria viscosa subsp. spicata \N \N \N \N \N 33286 B.tripteris Brassaiopsis Brassaiopsis tripteris \N \N \N \N \N 33287 T.sprengeri Tulipa Tulipa sprengeri \N \N \N \N \N 33288 L.chartaceum Louteridium Louteridium chartaceum \N \N \N \N \N 33289 D.pseudokillipiella Disterigma Disterigma pseudokillipiella \N \N \N \N \N 33290 P.theophrasti Phoenix Phoenix theophrasti \N \N \N \N \N 33291 \N genus Prasophyllum \N \N \N \N \N 33292 C.guzmanioides Calathea Calathea guzmanioides \N \N \N \N \N 33293 \N genus Ischyrolepis \N \N \N \N \N 33294 S.mite Solanum Solanum mite \N \N \N \N \N 33295 \N subspecies Carlina acanthifolia subsp. acanthifolia \N \N \N \N \N 33296 A.sikokianum Arisaema Arisaema sikokianum \N \N \N \N \N 33297 \N tribe Liabeae \N \N \N \N \N 33298 \N varietas Mimosa myriadenia var. punctulata \N \N \N \N \N 33299 A.caryophyllea Aira Aira caryophyllea silver hair grass \N \N \N \N 33300 C.teretifolia Crambella Crambella teretifolia \N \N \N \N \N 33301 \N genus Schwartzia \N \N \N \N \N 33302 C.suksdorfii Cuscuta Cuscuta suksdorfii \N \N \N \N \N 33303 C.eleusinoides Carex Carex eleusinoides \N \N \N \N \N 33304 L.hispida Lespedeza Lespedeza hispida \N \N \N \N \N 33305 A.chelotum Allium Allium chelotum \N \N \N \N \N 33306 G.portoricensis Garcinia Garcinia portoricensis \N \N \N \N \N 33307 P.thermalis Phacelia Phacelia thermalis \N \N \N \N \N 33308 C.cernuus Calochortus Calochortus cernuus \N \N \N \N \N 33309 D.imbricatum Dendrochilum Dendrochilum imbricatum \N \N \N \N \N 33310 T.TOT-2009 Typhonium Typhonium sp. TOT-2009 \N \N \N \N \N 33311 M.intortus Melocactus Melocactus intortus \N \N \N \N \N 33312 L.globosa Litsea Litsea globosa \N \N \N \N \N 33313 D.bicolor Deidamia Deidamia bicolor \N \N \N \N \N 33314 L.notatum Lithospermum Lithospermum notatum \N \N \N \N \N 33315 A.xiphopetalum Allium Allium xiphopetalum \N \N \N \N \N 33316 S.borneensis Scorodocarpus Scorodocarpus borneensis \N \N \N \N \N 33317 T.brachystachyum Trachyphrynium Trachyphrynium brachystachyum \N \N \N \N \N 33318 G.rhellicani Gymnadenia Gymnadenia rhellicani \N \N \N \N \N 33319 \N subspecies Hybanthus vernonii subsp. vernonii \N \N \N \N \N 33320 O.dioica Olea Olea dioica \N \N \N \N \N 33321 C.LJM-001 Chiritopsis Chiritopsis sp. LJM-001 \N \N \N \N \N 33322 A.pilosa Aizopsis Aizopsis x pilosa \N \N \N \N \N 33323 T.3167 Tetrastigma Tetrastigma sp. Deng 3167 \N \N \N \N \N 33324 S.grandis Sommera Sommera grandis \N \N \N \N \N 33325 \N genus Paranecepsia \N \N \N \N \N 33326 E.populnea Eucalyptus Eucalyptus populnea \N \N \N \N \N 33327 C.antarctica Cissus Cissus antarctica kangaroo vine \N \N \N \N 33328 T.5843Hnew unclassified Taraxacum Taraxacum (sect. Dioszegia) sp. 5843Hnew \N \N \N \N \N 33329 \N subspecies Ranunculus penicillatus subsp. pseudofluitans \N \N \N \N \N 33330 D.boliviana Dyschoriste Dyschoriste boliviana \N \N \N \N \N 33331 \N forma Macropiper puberulum f. glabrum \N \N \N \N \N 33332 C.Nkoumbala Coffea Coffea sp. Nkoumbala \N \N \N \N \N 33333 R.goyenii Raoulia Raoulia goyenii \N \N \N \N \N 33334 G.exilis Gladiolus Gladiolus exilis \N \N \N \N \N 33335 K.laniflora Kanahia Kanahia laniflora \N \N \N \N \N 33336 Z.covenyi Zieria Zieria covenyi \N \N \N \N \N 33337 \N genus Delphinium \N \N \N \N \N 33338 C.HGK-2000 Chaetanthera Chaetanthera sp. HGK-2000 \N \N \N \N \N 33339 R.peekelii Rorippa Rorippa peekelii \N \N \N \N \N 33340 M.cochinchinensis Momordica Momordica cochinchinensis spiny bitter cucumber \N \N \N \N 33341 T.leandriana Tisonia Tisonia leandriana \N \N \N \N \N 33342 M.2488 Maxillaria Maxillaria aff. aggregata Whitten 2488 \N \N \N \N \N 33343 V.affinis Vatica Vatica affinis \N \N \N \N \N 33344 \N subspecies Ranunculus seguieri subsp. seguieri \N \N \N \N \N 33345 D.edwallii Dryadella Dryadella edwallii \N \N \N \N \N 33346 D.magnoliifolia Dalechampia Dalechampia magnoliifolia \N \N \N \N \N 33347 P.SH-2010 Phalaenopsis Phalaenopsis sp. SH-2010 \N \N \N \N \N 33348 S.undulata Searsia Searsia undulata \N \N \N \N \N 33349 \N genus Deplanchea \N \N \N \N \N 33350 S.vilcabambae Styrax Styrax vilcabambae \N \N \N \N \N 33351 S.gossypina Strobilanthes Strobilanthes gossypina \N \N \N \N \N 33352 G.adenopetala Gillbeea Gillbeea adenopetala \N \N \N \N \N 33353 P.galioides Platytheca Platytheca galioides \N \N \N \N \N 33354 M.mainiae Mammillaria Mammillaria mainiae \N \N \N \N \N 33355 \N genus Helicotropis \N \N \N \N \N 33356 P.pygmaeum Phagnalon Phagnalon pygmaeum \N \N \N \N \N 33357 A.cauliflora Aristolochia Aristolochia cauliflora \N \N \N \N \N 33358 \N genus Cyclamen \N \N \N \N \N 33359 A.vilmorinianum Aconitum Aconitum vilmorinianum \N \N \N \N \N 33360 P.nitidus Petalonyx Petalonyx nitidus \N \N \N \N \N 33361 C.congestus Cyperus Cyperus congestus \N \N \N \N \N 33362 M.strigosa Myrmeconauclea Myrmeconauclea strigosa \N \N \N \N \N 33363 \N genus Taeniophyllum \N \N \N \N \N 33364 A.rhizomatum Arisaema Arisaema rhizomatum \N \N \N \N \N 33365 C.menziesii Chimaphila Chimaphila menziesii \N \N \N \N \N 33366 \N subspecies Centaurea affinis subsp. laconiae \N \N \N \N \N 33367 S.pusillus Streptocarpus Streptocarpus pusillus \N \N \N \N \N 33368 I.elmerrilliana Ilex Ilex elmerrilliana \N \N \N \N \N 33369 E.pauciflorum Epimedium Epimedium pauciflorum \N \N \N \N \N 33370 C.baeuerlenii Correa Correa baeuerlenii \N \N \N \N \N 33371 O.cupheoides Otiophora Otiophora cupheoides \N \N \N \N \N 33372 \N genus Lodoicea \N \N \N \N \N 33373 F.balearica Femeniasia Femeniasia balearica \N \N \N \N \N 33374 E.unispina Euphorbia Euphorbia unispina \N \N \N \N \N 33375 N.tenuissima Nassella Nassella tenuissima \N \N \N \N \N 33376 T.29-01 Tristellateia Tristellateia sp. Davis 29-01 \N \N \N \N \N 33377 T.gomerae Teline Teline gomerae \N \N \N \N \N 33378 C.triptera Coelia Coelia triptera \N \N \N \N \N 33379 C.dichotomum Chrysophthalmum Chrysophthalmum dichotomum \N \N \N \N \N 33380 \N tribe Garcinieae \N \N \N \N \N 33381 \N genus Potameia \N \N \N \N \N 33382 \N varietas Agrostis clavata var. nukabo \N \N \N \N \N 33383 L.lasiantha Lagynias Lagynias lasiantha \N \N \N \N \N 33478 E.brachycarpum Exostema Exostema brachycarpum \N \N \N \N \N 33384 M.tetraphylla Macadamia Macadamia tetraphylla Queensland-nut,poppel nut,rough-shell Queensland-nut \N \N \N \N 33385 M.biflora Malacocera Malacocera biflora \N \N \N \N \N 33386 \N varietas Agastache pallidiflora var. neomexicana \N \N \N \N \N 33387 \N subfamily Pertyoideae \N \N \N \N \N 33388 E.lucida Eucryphia Eucryphia lucida \N \N \N \N \N 33389 T.guianensis Tapirira Tapirira guianensis \N \N \N \N \N 33390 O.occidentalis Oxypolis Oxypolis occidentalis \N \N \N \N \N 33391 A.austroyunnanense Aconitum Aconitum austroyunnanense \N \N \N \N \N 33392 \N varietas Cynoglossum officinale var. corsicum \N \N \N \N \N 33393 \N subspecies Bikinia letestui subsp. mayumbensis \N \N \N \N \N 33394 \N subspecies Poa alpina subsp. fallax \N \N \N \N \N 33395 E.angulosa Erica Erica angulosa \N \N \N \N \N 33396 S.dolichonema Selago Selago dolichonema \N \N \N \N \N 33397 \N genus Huttonaea \N \N \N \N \N 33398 N.cyrtopoda Neonauclea Neonauclea cyrtopoda \N \N \N \N \N 33399 R.sulcata Rhipsalis Rhipsalis sulcata \N \N \N \N \N 33400 E.spectabilis Endertia Endertia spectabilis \N \N \N \N \N 33401 \N genus Calcicola \N \N \N \N \N 33402 M.sintenisii Miconia Miconia sintenisii mountain johnnyberry \N \N \N \N 33403 V.chionohebe Veronica Veronica chionohebe \N \N \N \N \N 33404 F.uhdei Fraxinus Fraxinus uhdei shamel ash \N \N \N \N 33405 \N subspecies Ononis spinosa subsp. antiquorum \N \N \N \N \N 33406 \N no rank Senecio ambiguus subsp. nebrodensis \N \N \N \N \N 33407 P.ledebourielloides Peucedanum Peucedanum ledebourielloides \N \N \N \N \N 33408 \N subspecies Crepis vesicaria subsp. taraxacifolia \N \N \N \N \N 33409 B.southlandica Brachyglottis Brachyglottis southlandica \N \N \N \N \N 33410 S.capsicastrum Solanum Solanum capsicastrum \N \N \N \N \N 33411 G.plummeri Grayia Grayia plummeri \N \N \N \N \N 33412 \N genus Chloranthus \N \N \N \N \N 33413 \N genus Psiguria \N \N \N \N \N 33414 C.fallax Cardamine Cardamine fallax \N \N \N \N \N 33415 I.cuniculiformis Iris Iris cuniculiformis \N \N \N \N \N 33416 X.speciosissima Xerolekia Xerolekia speciosissima \N \N \N \N \N 33417 E.bakeri Elymus Elymus bakeri \N \N \N \N \N 33418 N.brassii Neolitsea Neolitsea brassii \N \N \N \N \N 33419 C.erecta Chamaerhodos Chamaerhodos erecta \N \N \N \N \N 33420 H.nemorosa Habenaria Habenaria nemorosa \N \N \N \N \N 33421 T.graminifolius Tragopogon Tragopogon graminifolius \N \N \N \N \N 33422 Z.mistol Ziziphus Ziziphus mistol \N \N \N \N \N 33423 P.cadierei Pilea Pilea cadierei \N \N \N \N \N 33424 R.dissectifolius Ranunculus Ranunculus dissectifolius \N \N \N \N \N 33425 E.dregeanus Euryops Euryops dregeanus \N \N \N \N \N 33426 \N genus Pentaloncha \N \N \N \N \N 33427 S.ricinocarpa Sparrmannia Sparrmannia ricinocarpa \N \N \N \N \N 33428 E.exilis Euphorbia Euphorbia exilis \N \N \N \N \N 33429 L.collina Litsea Litsea collina \N \N \N \N \N 33430 P.P136 Physalis Physalis sp. P136 \N \N \N \N \N 33431 A.pinnata Angelica Angelica pinnata \N \N \N \N \N 33432 \N subspecies Sidalcea malviflora subsp. dolosa \N \N \N \N \N 33433 E.orientale Eremopyrum Eremopyrum orientale \N \N \N \N \N 33434 M.tenuifolia Maxillaria Maxillaria tenuifolia \N \N \N \N \N 33435 C.hispida Cadetia Cadetia hispida \N \N \N \N \N 33436 A.cherimola Annona Annona cherimola cherimoya,chirimoya,custard apple \N \N \N \N 33437 G.amoena Gaultheria Gaultheria amoena \N \N \N \N \N 33438 T.balbisioides Tridax Tridax balbisioides \N \N \N \N \N 33439 B.utile Brosimum Brosimum utile cowtree,lechero,palo de vaca \N \N \N \N 33440 M.filiformis Muhlenbergia Muhlenbergia filiformis \N \N \N \N \N 33441 M.amplinodis Miconia Miconia amplinodis \N \N \N \N \N 33442 T.meduseum Trifolium Trifolium meduseum \N \N \N \N \N 33443 C.tahuatensis Cyrtandra Cyrtandra tahuatensis \N \N \N \N \N 33444 L.benguellensis Lessertia Lessertia benguellensis \N \N \N \N \N 33445 D.ochroleuca Dactylorhiza Dactylorhiza ochroleuca \N \N \N \N \N 33446 H.microcephala Hypochaeris Hypochaeris microcephala smallhead cat's-ear \N \N \N \N 33447 C.timotensis Coespeletia Coespeletia timotensis \N \N \N \N \N 33448 A.calycina Agalinis Agalinis calycina \N \N \N \N \N 33449 C.microstyla Cuscuta Cuscuta microstyla \N \N \N \N \N 33450 \N genus Passiflora passionflowers \N \N \N \N 33451 G.lepidota Glycyrrhiza Glycyrrhiza lepidota American licorice,wild licorice \N \N \N \N 33452 A.desmanthum Aspidosperma Aspidosperma desmanthum \N \N \N \N \N 33453 A.racemosa Archeria Archeria racemosa \N \N \N \N \N 33454 C.flabellata Chaetanthera Chaetanthera flabellata \N \N \N \N \N 33455 \N subspecies Crocus gargaricus subsp. herbertii \N \N \N \N \N 33456 W.fruticosa Wahlenbergia Wahlenbergia fruticosa \N \N \N \N \N 33457 C.longipes Cecropia Cecropia longipes \N \N \N \N \N 33458 P.hirtella Pternandra Pternandra hirtella \N \N \N \N \N 33459 R.menthoides Ruellia Ruellia menthoides \N \N \N \N \N 33460 C.tereticaulis Caraipa Caraipa tereticaulis \N \N \N \N \N 33461 S.laevis Shorea Shorea laevis \N \N \N \N \N 33462 P.scrobiculatum Paspalum Paspalum scrobiculatum \N \N \N \N \N 33463 R.mohrii Rudbeckia Rudbeckia mohrii \N \N \N \N \N 33464 R.brasiliensis Ronnbergia Ronnbergia brasiliensis \N \N \N \N \N 33465 D.marginata Dendroseris Dendroseris marginata \N \N \N \N \N 33466 X.pubescens Xerosicyos Xerosicyos pubescens \N \N \N \N \N 33467 E.SJ-2009 Eutrema Eutrema sp. SJ-2009 \N \N \N \N \N 33468 \N subspecies Rosa dumalis subsp. dumalis \N \N \N \N \N 33469 G.fluitans Glyceria Glyceria fluitans water mannagrass \N \N \N \N 33470 H.koribanum Hydrobryum Hydrobryum koribanum \N \N \N \N \N 33471 C.oreades Crepis Crepis oreades \N \N \N \N \N 33472 L.klaineanus Laccodiscus Laccodiscus klaineanus \N \N \N \N \N 33473 C.plattensis Cuscuta Cuscuta plattensis \N \N \N \N \N 33474 P.diandrus Phyllanthus Phyllanthus diandrus \N \N \N \N \N 33475 I.scheffleri Ixora Ixora scheffleri \N \N \N \N \N 33476 L.rigualii Limonium Limonium rigualii \N \N \N \N \N 33477 A.uniflora Aeschynomene Aeschynomene uniflora \N \N \N \N \N 34161 \N genus Arytera \N \N \N \N \N 33479 E.minor Eragrostis Eragrostis minor \N \N \N \N \N 33480 \N genus Aganope \N \N \N \N \N 33481 A.speciosa Ardisia Ardisia speciosa \N \N \N \N \N 33482 C.scaber Costus Costus pulverulentus x Costus scaber \N \N \N \N \N 33483 P.brownii Paeonia Paeonia brownii \N \N \N \N \N 33484 S.cardiophylla Salix Salix cardiophylla \N \N \N \N \N 33485 E.denticulatum Epidendrum Epidendrum denticulatum \N \N \N \N \N 33486 E.susannae Euphorbia Euphorbia susannae \N \N \N \N \N 33487 V.africana Vanilla Vanilla africana \N \N \N \N \N 33488 P.arenastrum Polygonum Polygonum arenastrum \N \N \N \N \N 33489 D.tysonii Disperis Disperis tysonii \N \N \N \N \N 33490 A.formosana Aglaia Aglaia formosana \N \N \N \N \N 33491 \N genus Diplospora \N \N \N \N \N 33492 \N subspecies Silene uralensis subsp. porsildii \N \N \N \N \N 33493 H.discolor Homogyne Homogyne discolor \N \N \N \N \N 33494 \N subspecies Erica filipendula subsp. minor \N \N \N \N \N 33495 B.ericifolia Banksia Banksia ericifolia \N \N \N \N \N 33496 C.suaveolens Clinopodium Clinopodium suaveolens \N \N \N \N \N 33497 \N subspecies Cuscuta epithymum subsp. corsicana \N \N \N \N \N 33498 \N genus Tauscheria \N \N \N \N \N 33499 B.laurihuertae Bursera Bursera laurihuertae \N \N \N \N \N 33500 B.dispar Barnebya Barnebya dispar \N \N \N \N \N 33501 A.elatius Arrhenatherum Arrhenatherum elatius \N \N \N \N \N 33502 M.oblongifolia Macaranga Macaranga oblongifolia \N \N \N \N \N 33503 D.souliei Dolomiaea Dolomiaea souliei \N \N \N \N \N 33504 B.alpina Bartsia Bartsia alpina \N \N \N \N \N 33505 L.fruticosa Laplacea Laplacea fruticosa \N \N \N \N \N 33506 N.adnata Nepenthes Nepenthes adnata \N \N \N \N \N 33507 T.kaernbachii Terminalia Terminalia kaernbachii \N \N \N \N \N 33508 M.concava Muraltia Muraltia concava \N \N \N \N \N 33509 A.acuminata Atherandra Atherandra acuminata \N \N \N \N \N 33510 A.caulescens Asarum Asarum caulescens \N \N \N \N \N 33511 C.vitiense Canarium Canarium vitiense \N \N \N \N \N 33512 S.hemsleyanus Styrax Styrax hemsleyanus \N \N \N \N \N 33513 \N subspecies Lithops julii subsp. fulleri \N \N \N \N \N 33514 \N genus Cyclonema \N \N \N \N \N 33515 C.chuanezhu Curcuma Curcuma chuanezhu \N \N \N \N \N 33516 \N varietas Platymiscium floribundum var. nitens \N \N \N \N \N 33517 H.wilsonii Hypericum Hypericum wilsonii \N \N \N \N \N 33518 M.macrosciadia Mackinlaya Mackinlaya macrosciadia \N \N \N \N \N 33519 E.Creek' Elaeocarpus Elaeocarpus sp. 'Rocky Creek' \N \N \N \N \N 33520 \N varietas Triteleia hendersonii var. hendersonii \N \N \N \N \N 33521 S.angustifolium Sisyrinchium Sisyrinchium angustifolium \N \N \N \N \N 33522 A.cynanchica Asperula Asperula cynanchica \N \N \N \N \N 33523 M.lepidopetalus Melicoccus Melicoccus lepidopetalus \N \N \N \N \N 33524 G.4247 Guatteria Guatteria sp. Prevost 4247 \N \N \N \N \N 33525 D.subulosus Dianthus Dianthus subulosus \N \N \N \N \N 33526 L.DH-2011 Ligustrum Ligustrum sp. DH-2011 \N \N \N \N \N 33527 S.letestuana Salacighia Salacighia letestuana \N \N \N \N \N 33528 S.laxa Sarcotheca Sarcotheca laxa \N \N \N \N \N 33529 C.longiusculus Chimonocalamus Chimonocalamus longiusculus \N \N \N \N \N 33530 P.stipitata Pouteria Pouteria stipitata \N \N \N \N \N 33531 B.bipinnatifida Berkheya Berkheya bipinnatifida \N \N \N \N \N 33532 A.arenicola Arabidopsis Arabidopsis arenicola \N \N \N \N \N 33533 \N genus Tontelea \N \N \N \N \N 33534 \N subspecies Chionochloa rubra subsp. rubra \N \N \N \N \N 33535 S.pubescens Salvia Salvia pubescens \N \N \N \N \N 33536 K.leptoclada Klasea Klasea leptoclada \N \N \N \N \N 33537 P.stirtoniana Primula Primula stirtoniana \N \N \N \N \N 33538 L.triternatum Lomatium Lomatium triternatum nineleaf biscuitroot \N \N \N \N 33539 \N subspecies Hordeum patagonicum subsp. santacrucense \N \N \N \N \N 33540 \N genus Priogymnanthus \N \N \N \N \N 33541 G.pentaphylla Glycosmis Glycosmis pentaphylla \N \N \N \N \N 33542 P.multisectum Peganum Peganum multisectum \N \N \N \N \N 33543 P.coccineus Phaseolus Phaseolus coccineus scarlet runner bean \N \N \N \N 33544 C.zeyherii Cucumis Cucumis zeyherii \N \N \N \N \N 33545 T.luteoflora Ternstroemia Ternstroemia luteoflora \N \N \N \N \N 33546 P.limonensis Psychotria Psychotria limonensis \N \N \N \N \N 33547 S.sinuosa Sararanga Sararanga sinuosa \N \N \N \N \N 33548 \N forma Ilex crenata f. microphylla \N \N \N \N \N 33549 T.grandidentata Turnera Turnera grandidentata \N \N \N \N \N 33550 \N genus Saracha \N \N \N \N \N 33551 \N subspecies Armeria maritima subsp. maritima \N \N \N \N \N 33552 O.pinnatum Osteospermum Osteospermum pinnatum \N \N \N \N \N 33553 O.polystachys Oeoniella Oeoniella polystachys \N \N \N \N \N 33554 M.rhodantha Metagentiana Metagentiana rhodantha \N \N \N \N \N 33555 D.muscoides Dracophyllum Dracophyllum muscoides \N \N \N \N \N 33557 F.yunnanensis Fargesia Fargesia yunnanensis \N \N \N \N \N 33558 E.s.n. Elodea Elodea sp. Duvall s.n. \N \N \N \N \N 33559 \N tribe Tulbaghieae \N \N \N \N \N 33560 A.linifolia Agalinis Agalinis linifolia \N \N \N \N \N 33561 E.lenewtonii Euphorbia Euphorbia lenewtonii \N \N \N \N \N 33562 C.elephas Chondropetalum Chondropetalum elephas \N \N \N \N \N 33563 C.vexans Calophyllum Calophyllum vexans \N \N \N \N \N 33564 C.froelichiana Crepis Crepis froelichiana \N \N \N \N \N 33565 R.hongkongensis Rhaphidophora Rhaphidophora hongkongensis \N \N \N \N \N 33566 S.apenninus Solenanthus Solenanthus apenninus \N \N \N \N \N 33567 P.eastwoodiae Podistera Podistera eastwoodiae \N \N \N \N \N 33568 P.gesnerioides Piper Piper gesnerioides \N \N \N \N \N 33569 C.divaricata Campanula Campanula divaricata Appalachian bellflower,southern harebell \N \N \N \N 33570 L.8079 Lindenbergia Lindenbergia sp. Thulin 8079 \N \N \N \N \N 33571 S.cubensis Spathelia Spathelia cubensis \N \N \N \N \N 33572 \N genus Rhaponticoides \N \N \N \N \N 33573 C.commersoniana Casearia Casearia commersoniana \N \N \N \N \N 33574 \N genus Galinsoga \N \N \N \N \N 33575 \N varietas Brachyscome basaltica var. basaltica \N \N \N \N \N 33576 C.buxifolius Ceanothus Ceanothus buxifolius \N \N \N \N \N 33577 L.digitatus Lupinus Lupinus digitatus \N \N \N \N \N 33578 F.queriana Festuca Festuca queriana \N \N \N \N \N 33579 S.caerulea Sesleria Sesleria caerulea \N \N \N \N \N 33580 H.cordatus Hylebates Hylebates cordatus \N \N \N \N \N 33581 S.obovatifoliola Stauntonia Stauntonia obovatifoliola \N \N \N \N \N 33582 C.tauricolum Clinopodium Clinopodium tauricolum \N \N \N \N \N 33583 P.diversifolium Prionosciadium Prionosciadium diversifolium \N \N \N \N \N 33584 \N family Philesiaceae \N \N \N \N \N 33585 \N varietas Ivesia lycopodioides var. scandularis \N \N \N \N \N 33586 H.stellarioides Hybanthus Hybanthus stellarioides \N \N \N \N \N 33587 S.karelinii Schumannia Schumannia karelinii \N \N \N \N \N 33588 C.serrulata Cleome Cleome serrulata \N \N \N \N \N 33589 Z.serrata Zexmenia Zexmenia serrata \N \N \N \N \N 33590 M.deamii Mimosa Mimosa deamii \N \N \N \N \N 33591 \N genus Pultenaea \N \N \N \N \N 33592 \N subspecies Bupleurum rigidum subsp. paniculatum \N \N \N \N \N 33593 N.corymbosa Nivenia Nivenia corymbosa \N \N \N \N \N 33594 C.388 Cyclopogon Cyclopogon sp. Trujillo 388 \N \N \N \N \N 33595 C.frigidus Cotoneaster Cotoneaster frigidus \N \N \N \N \N 33596 P.honghenensis Phalaenopsis Phalaenopsis honghenensis \N \N \N \N \N 33597 \N subtribe Tridentinae \N \N \N \N \N 33598 A.synchronicia Acacia Acacia synchronicia \N \N \N \N \N 33599 C.affinis Calandrinia Calandrinia affinis \N \N \N \N \N 33600 D.lamellatum Dendrobium Dendrobium lamellatum \N \N \N \N \N 33601 P.reptans Primula Primula reptans \N \N \N \N \N 33602 \N varietas Ericameria discoidea var. linearis \N \N \N \N \N 33603 T.purpureum Trifolium Trifolium purpureum \N \N \N \N \N 33604 \N genus Nesogordonia \N \N \N \N \N 33605 T.longifolius Tragopogon Tragopogon longifolius \N \N \N \N \N 33606 O.bidwillii Ozothamnus Ozothamnus bidwillii \N \N \N \N \N 33607 T.geayi Tetrapterocarpon Tetrapterocarpon geayi \N \N \N \N \N 33608 W.tumidifructa Wahlenbergia Wahlenbergia tumidifructa \N \N \N \N \N 33609 M.fluviatilis Mourera Mourera fluviatilis \N \N \N \N \N 33610 D.prostratoscaposa Drosera Drosera prostratoscaposa \N \N \N \N \N 33611 \N genus Heteropsis \N \N \N \N \N 33612 C.montagnacii Cyphostemma Cyphostemma montagnacii \N \N \N \N \N 33613 C.guanaiensis Costus Costus guanaiensis \N \N \N \N \N 33614 \N genus Tiliacora \N \N \N \N \N 33615 F.albida Faidherbia Faidherbia albida \N \N \N \N \N 33616 I.glauca Isatis Isatis glauca \N \N \N \N \N 33617 C.monspessulanum Cirsium Cirsium monspessulanum \N \N \N \N \N 33618 M.2137 Malanea Malanea sp. Andersson et al. 2137 \N \N \N \N \N 33619 A.diversifolium Arthrophyllum Arthrophyllum diversifolium \N \N \N \N \N 33620 B.sterilis Bromus Bromus sterilis poverty brome \N \N \N \N 33621 S.buxifolium Sphyrospermum Sphyrospermum buxifolium \N \N \N \N \N 33622 C.urens Cnidoscolus Cnidoscolus urens \N \N \N \N \N 33623 C.dubardii Coffea Coffea dubardii \N \N \N \N \N 33624 P.anethifolium Pelargonium Pelargonium anethifolium \N \N \N \N \N 33625 \N varietas Gaillardia aestivalis var. winkleri \N \N \N \N \N 33626 S.przewalskii Salix Salix przewalskii \N \N \N \N \N 33627 \N varietas Incarvillea mairei var. grandiflora \N \N \N \N \N 33628 \N genus Bletia \N \N \N \N \N 33629 N.strigosa Neesia Neesia strigosa \N \N \N \N \N 33630 G.philippicum Glochidion Glochidion philippicum \N \N \N \N \N 33631 E.novae-angliae Eupatorium Eupatorium novae-angliae \N \N \N \N \N 33632 \N genus Ursinia \N \N \N \N \N 33633 C.carpetanus Crocus Crocus carpetanus \N \N \N \N \N 33634 \N subspecies Gentiana brachyphylla subsp. favratii \N \N \N \N \N 33635 \N tribe Cinchoneae \N \N \N \N \N 33636 M.athamanticum Meum Meum athamanticum \N \N \N \N \N 33637 \N genus Hylodendron \N \N \N \N \N 33638 P.urceolata Psychotria Psychotria urceolata \N \N \N \N \N 33639 A.insubricum Allium Allium insubricum \N \N \N \N \N 33640 P.jubiflorum Paspalidium Paspalidium jubiflorum \N \N \N \N \N 33641 \N genus Tripogon \N \N \N \N \N 33642 C.connatifolia Calceolaria Calceolaria connatifolia \N \N \N \N \N 33643 B.horticola Begonia Begonia horticola \N \N \N \N \N 33644 L.henryi Lilium Lilium henryi Henry's lily \N \N \N \N 33645 M.excisa Malva Malva excisa \N \N \N \N \N 33646 C.hispanica Crambe Crambe hispanica \N \N \N \N \N 33647 D.vampira Dracula Dracula vampira \N \N \N \N \N 33648 P.serbica Pilosella Pilosella serbica \N \N \N \N \N 33649 A.pratensis Achillea millefolium complex Achillea pratensis \N \N \N \N \N 33650 P.laetans Protea Protea laetans \N \N \N \N \N 33651 C.ovalifolia Coussapoa Coussapoa ovalifolia \N \N \N \N \N 33652 T.hermannioides Turnera Turnera hermannioides \N \N \N \N \N 33653 P.urdanetanum Piper Piper urdanetanum \N \N \N \N \N 33654 \N subspecies Medicago sativa subsp. caerulea \N \N \N \N \N 33655 A.longiflorum Askidiosperma Askidiosperma longiflorum \N \N \N \N \N 33656 S.queretaroensis Stenocereus Stenocereus queretaroensis \N \N \N \N \N 33657 F.calimana Ficus Ficus calimana \N \N \N \N \N 33658 S.ertterae Senecio Senecio ertterae Ertter's ragwort \N \N \N \N 33659 I.kamerunensis Impatiens Impatiens kamerunensis \N \N \N \N \N 33660 \N genus Aphananthe \N \N \N \N \N 33661 L.bromfieldii Lithops Lithops bromfieldii \N \N \N \N \N 33662 C.9876 Campylandra Campylandra aff. chinensis Tamura et al. 9876 \N \N \N \N \N 33663 G.imperatorismaximiliani Gomesa Gomesa imperatorismaximiliani \N \N \N \N \N 33664 A.rupicola Acmadenia Acmadenia rupicola \N \N \N \N \N 33665 B.villosa Brassica Brassica villosa \N \N \N \N \N 33666 \N subspecies Arctostaphylos crustacea subsp. insulicola \N \N \N \N \N 33667 M.rakiura Myosotis Myosotis rakiura \N \N \N \N \N 33668 W.tinctoria Wrightia Wrightia tinctoria \N \N \N \N \N 33669 A.chengkouense Asarum Asarum chengkouense \N \N \N \N \N 33670 G.12556 Gnaphalium Gnaphalium sp. Goldblatt 12556 \N \N \N \N \N 33671 O.5093 Oreocnide Oreocnide sp. Conn 5093 \N \N \N \N \N 33672 O.dictamnus Origanum Origanum dictamnus Cretan dittany,hop marjoram \N \N \N \N 33673 A.sp. Arabidopsis Arabidopsis sp. \N \N \N \N \N 33674 M.volubilis Mimosa Mimosa volubilis \N \N \N \N \N 33675 R.tenuius Rytidosperma Rytidosperma tenuius \N \N \N \N \N 33676 \N varietas Silene douglasii var. oraria \N \N \N \N \N 33677 D.lutea Diplopterys Diplopterys lutea \N \N \N \N \N 33678 Q.sinuata Quercus Quercus sinuata bastard oak \N \N \N \N 33679 \N genus Gelonium \N \N \N \N \N 33680 C.multicava Crassula Crassula multicava \N \N \N \N \N 33681 C.pulchrum Coleonema Coleonema pulchrum \N \N \N \N \N 33682 B.monimocalyx Brayopsis Brayopsis monimocalyx \N \N \N \N \N 33683 P.vinalillo Prosopis Prosopis vinalillo algarrobo santiague \N \N \N \N 33684 \N subtribe Inulinae \N \N \N \N \N 33685 L.tayloriae Lepidium Lepidium tayloriae \N \N \N \N \N 33686 C.bohemica Carex Carex bohemica \N \N \N \N \N 33687 T.wrightii Thelypodium Thelypodium wrightii \N \N \N \N \N 33688 G.belgraveana Galbulimima Galbulimima belgraveana \N \N \N \N \N 33689 J.rossii Jumellea Jumellea rossii \N \N \N \N \N 33690 M.albosericea Magnolia Magnolia albosericea \N \N \N \N \N 33691 \N genus Amblostoma \N \N \N \N \N 33692 \N genus Cytogonidium \N \N \N \N \N 33693 O.heterophylla Onosma Onosma heterophylla \N \N \N \N \N 33694 C.angustifolia Cedrela Cedrela angustifolia \N \N \N \N \N 33695 \N subtribe Glebionidinae \N \N \N \N \N 33696 C.junceum Calligonum Calligonum junceum \N \N \N \N \N 33697 \N genus Pelatantheria \N \N \N \N \N 33698 S.crassicaule Sarcocaulon Sarcocaulon crassicaule \N \N \N \N \N 33699 P.coriaceum Placospermum Placospermum coriaceum \N \N \N \N \N 33700 E.wuchengyii Eutrema Eutrema wuchengyii \N \N \N \N \N 33701 H.559143 Hoheria Hoheria cf. glabrata CHR 559143 \N \N \N \N \N 33702 C.purpurascens Calceolaria Calceolaria purpurascens \N \N \N \N \N 33703 \N genus Peridiscus \N \N \N \N \N 33704 A.lasiostomum Aconitum Aconitum lasiostomum \N \N \N \N \N 33705 E.carolinae Elaeocarpus Elaeocarpus carolinae \N \N \N \N \N 33706 C.pyxidiacea Camellia Camellia pyxidiacea \N \N \N \N \N 33707 A.merrillii Aralia Aralia merrillii \N \N \N \N \N 33708 C.spinosum Cichorium Cichorium spinosum \N \N \N \N \N 33709 E.franchetii Euphorbia Euphorbia franchetii \N \N \N \N \N 33710 P.helenae Paphiopedilum Paphiopedilum helenae \N \N \N \N \N 33711 P.ircutica Poa Poa ircutica \N \N \N \N \N 33712 C.tianschanicum Cerastium Cerastium tianschanicum \N \N \N \N \N 33713 H.eximia Heliophila Heliophila eximia \N \N \N \N \N 33714 C.EM-2009b Carex Carex sp. EM-2009b \N \N \N \N \N 33715 C.cajan Cajanus Cajanus cajan pigeon pea \N \N \N \N 33716 S.sisymbriifolium Solanum Solanum sisymbriifolium \N \N \N \N \N 33717 L.glinoides Lotus Lotus glinoides \N \N \N \N \N 33718 \N subspecies Vahlodea atropurpurea subsp. paramushirensis \N \N \N \N \N 33719 \N varietas Rosa lucieae var. onoei \N \N \N \N \N 33720 \N varietas Chaetanthera linearis var. taltalensis \N \N \N \N \N 33721 C.oliganthus Ceanothus Ceanothus oliganthus \N \N \N \N \N 33722 A.tricostatum Anthospermum Anthospermum tricostatum \N \N \N \N \N 33723 S.quinquestylorum Schefflera Schefflera quinquestylorum \N \N \N \N \N 33724 \N genus Neviusia \N \N \N \N \N 33725 C.parthenoxylon Cinnamomum Cinnamomum parthenoxylon \N \N \N \N \N 33726 M.ciliaris Muraltia Muraltia ciliaris \N \N \N \N \N 33727 S.cornutus Sclerocroton Sclerocroton cornutus \N \N \N \N \N 33728 K.aeschynomenoides Kotschya Kotschya aeschynomenoides \N \N \N \N \N 33729 B.thelmae Begonia Begonia thelmae \N \N \N \N \N 33730 C.composita Carex Carex composita \N \N \N \N \N 33731 O.linarantha Oxalis Oxalis linarantha \N \N \N \N \N 33732 B.occidentalis Banksia Banksia occidentalis \N \N \N \N \N 33733 K.ternata Keckiella Keckiella ternata \N \N \N \N \N 33734 C.trilobata Cogniauxia Cogniauxia trilobata \N \N \N \N \N 33735 A.serotina Arabis Arabis serotina shale barren rockcress \N \N \N \N 33736 B.concinna Bactris Bactris concinna \N \N \N \N \N 33737 D.digyna Diospyros Diospyros digyna black persimmon \N \N \N \N 33738 E.rossii Euphorbia Euphorbia rossii \N \N \N \N \N 33739 \N genus Seringia \N \N \N \N \N 33740 D.australis Distichlis Distichlis australis \N \N \N \N \N 33741 C.novae-zelandiae Caltha Caltha novae-zelandiae \N \N \N \N \N 33742 M.parviflora Microtis Microtis parviflora \N \N \N \N \N 33743 C.deliciosa Citrus Citrus deliciosa Italian tangerine,avana,gallego,mandarino \N \N \N \N 33744 R.macrophylla Ruellia Ruellia macrophylla \N \N \N \N \N 33745 \N subspecies Dupontia fisheri subsp. psilosantha \N \N \N \N \N 33746 L.banksii Lepidium Lepidium banksii \N \N \N \N \N 33747 P.richardiae Pyrostria Pyrostria richardiae \N \N \N \N \N 33748 M.SH-2010 Melicope Melicope sp. SH-2010 \N \N \N \N \N 33749 \N genus Cleghornia \N \N \N \N \N 33750 D.tessmannii Diclinanona Diclinanona tessmannii \N \N \N \N \N 33751 \N genus Acmella \N \N \N \N \N 33752 C.adenosolen Cymbopappus Cymbopappus adenosolen \N \N \N \N \N 33753 C.collinum Combretum Combretum collinum \N \N \N \N \N 33754 S.salicifolia Stevia Stevia salicifolia \N \N \N \N \N 33755 \N genus Quesnelia \N \N \N \N \N 33756 M.weddelliana Mimosa Mimosa weddelliana \N \N \N \N \N 33757 U.glabra Urera Urera glabra \N \N \N \N \N 33758 F.foetida Ferula Ferula foetida \N \N \N \N \N 33759 \N genus Antiphiona \N \N \N \N \N 33760 E.creticum Echium Echium creticum \N \N \N \N \N 33761 P.korshinskyi Prunus Prunus korshinskyi \N \N \N \N \N 33762 I.bicaudata Impatiens Impatiens bicaudata \N \N \N \N \N 33763 A.trailii Arrabidaea Arrabidaea trailii \N \N \N \N \N 33764 T.megalantha Tridynamia Tridynamia megalantha \N \N \N \N \N 33765 S.hartwegii Symplocos Symplocos hartwegii \N \N \N \N \N 33766 Q.acutissima Quercus Quercus acutissima sawtooth oak \N \N \N \N 33767 S.chen-572 Sarcocornia Sarcocornia aff. perennis chen-572 \N \N \N \N \N 33768 S.fortunei Saxifraga Saxifraga fortunei \N \N \N \N \N 33769 D.leptoclada Descurainia Descurainia leptoclada \N \N \N \N \N 33770 P.mimuloides Philoglossa Philoglossa mimuloides \N \N \N \N \N 33771 C.longifolia Cyrtandra Cyrtandra longifolia \N \N \N \N \N 33772 H.JJ-2009 Hieracium Hieracium sp. JJ-2009 \N \N \N \N \N 33773 B.grossa Banksia Banksia grossa \N \N \N \N \N 33774 V.lycica Veronica Veronica lycica \N \N \N \N \N 33775 O.fruticosa Ononis Ononis fruticosa \N \N \N \N \N 33776 T.eximium Trifolium Trifolium eximium \N \N \N \N \N 33777 K.cordylocarpus Kremeriella Kremeriella cordylocarpus \N \N \N \N \N 33778 P.umbelliformis Pedicularis Pedicularis umbelliformis \N \N \N \N \N 33779 A.involucrata Asclepias Asclepias involucrata \N \N \N \N \N 33780 T.SH-2010 Tetraclea Tetraclea sp. SH-2010 \N \N \N \N \N 33781 P.parviflorum Phlomidoschema Phlomidoschema parviflorum \N \N \N \N \N 33782 M.densifolia Maxillaria Maxillaria densifolia \N \N \N \N \N 33783 T.696 Trouettia Trouettia sp. Munzinger 696 \N \N \N \N \N 33784 L.alopecuroidea Lepidagathis Lepidagathis alopecuroidea \N \N \N \N \N 33785 G.magellanica Gentianella Gentianella magellanica \N \N \N \N \N 33786 E.persistens Elegia Elegia persistens \N \N \N \N \N 33787 P.nigdeensis Petrosimonia Petrosimonia nigdeensis \N \N \N \N \N 33788 P.macrophylla Primula Primula macrophylla \N \N \N \N \N 33789 \N genus Hoodia \N \N \N \N \N 33790 L.calycina Lepechinia Lepechinia calycina woodbalm \N \N \N \N 33791 L.canadense Lilium Lilium canadense \N \N \N \N \N 33792 T.DJW-2004 Thyrsanthemum Thyrsanthemum sp. DJW-2004 \N \N \N \N \N 33793 M.capensis Miscanthus Miscanthus capensis \N \N \N \N \N 33794 L.porteri Ligusticum Ligusticum porteri osha \N \N \N \N 33795 \N genus Helenium \N \N \N \N \N 33796 R.korthalsii Rhaphidophora Rhaphidophora korthalsii \N \N \N \N \N 33797 C.legalis Cariniana Cariniana legalis \N \N \N \N \N 33798 C.purpurascens Campylosiphon Campylosiphon purpurascens \N \N \N \N \N 33799 C.kennedyi Caucaea Caucaea kennedyi \N \N \N \N \N 33800 S.karraikensis Sarcodraba Sarcodraba karraikensis \N \N \N \N \N 33801 H.convolvulaceum Heliotropium Heliotropium convolvulaceum \N \N \N \N \N 33802 S.leucantha Scaphyglottis Scaphyglottis leucantha \N \N \N \N \N 33803 \N genus Melananthus \N \N \N \N \N 33804 G.fischeri Gallardoa Gallardoa fischeri \N \N \N \N \N 33805 \N genus Dracontium \N \N \N \N \N 33806 A.griffithii Amphibolis Amphibolis griffithii \N \N \N \N \N 33807 C.montana Celianella Celianella montana \N \N \N \N \N 33808 P.herrmannii Paphiopedilum Paphiopedilum x herrmannii \N \N \N \N \N 33809 \N genus Caldesia \N \N \N \N \N 33810 A.aegopodioides Arracacia Arracacia aegopodioides \N \N \N \N \N 33811 \N genus Astelia \N \N \N \N \N 33812 C.kelleri Cyclocheilon Cyclocheilon kelleri \N \N \N \N \N 33813 T.kirilowii Tephroseris Tephroseris kirilowii \N \N \N \N \N 33814 S.perennis Swertia Swertia perennis \N \N \N \N \N 33815 A.axilliflora Arabis Arabis axilliflora \N \N \N \N \N 33816 P.tepalcatepecanus Peniocereus Peniocereus tepalcatepecanus \N \N \N \N \N 33817 A.litoralis Aizopsis Aizopsis litoralis \N \N \N \N \N 33818 C.rivalis Calamagrostis Calamagrostis rivalis \N \N \N \N \N 33819 \N varietas Sesbania sesban var. bicolor \N \N \N \N \N 33820 D.castaneus Desmocladus Desmocladus castaneus \N \N \N \N \N 33821 S.convallium Sisyrinchium Sisyrinchium convallium \N \N \N \N \N 33822 H.rechingeri Haplophyllum Haplophyllum rechingeri \N \N \N \N \N 33823 C.whitei Canarium Canarium whitei \N \N \N \N \N 33824 R.pubiflora Rinorea Rinorea pubiflora \N \N \N \N \N 33825 \N genus Comanthosphace \N \N \N \N \N 33826 C.ameristophyllum Crepidiastrum Crepidiastrum ameristophyllum \N \N \N \N \N 33827 T.tenuissimum Tetramerium Tetramerium tenuissimum \N \N \N \N \N 33828 G.cowa Garcinia Garcinia cowa \N \N \N \N \N 33829 D.balsamea Dionysia Dionysia balsamea \N \N \N \N \N 33830 C.mazapensis Croton Croton mazapensis \N \N \N \N \N 33831 H.alpestre Heliosperma Heliosperma alpestre \N \N \N \N \N 33832 S.hirsuta Soroseris Soroseris hirsuta \N \N \N \N \N 33833 A.kongboense Aconitum Aconitum kongboense \N \N \N \N \N 33834 \N genus Neoraimondia \N \N \N \N \N 33835 C.barbarae Carex Carex barbarae \N \N \N \N \N 33836 N.201/00 Nematoceras Nematoceras sp. Molloy 201/00 \N \N \N \N \N 33837 C.stamineum Cyclotrichium Cyclotrichium stamineum \N \N \N \N \N 33838 B.densiglomerata Boehmeria Boehmeria densiglomerata \N \N \N \N \N 33839 C.dilutum Corispermum Corispermum dilutum \N \N \N \N \N 33840 \N genus Daenikera \N \N \N \N \N 33841 \N genus Cooktownia \N \N \N \N \N 33842 L.dunnii Lespedeza Lespedeza dunnii \N \N \N \N \N 33843 \N genus Goldbachia \N \N \N \N \N 33844 \N varietas Lactuca sativa var. crispa curled lettuce,leaf lettuce \N \N \N \N 33845 E.tuberosa Euphorbia Euphorbia tuberosa \N \N \N \N \N 33846 C.H5_23 Castilleja Castilleja sp. H5_23 \N \N \N \N \N 33847 S.babylonica Salix Salix babylonica weeping willow \N \N \N \N 33848 \N genus Micrococca \N \N \N \N \N 33849 M.websteri Manihot Manihot websteri \N \N \N \N \N 33850 H.robustum Haplophyllum Haplophyllum robustum \N \N \N \N \N 33851 \N varietas Luzula acuminata var. acuminata \N \N \N \N \N 33852 E.verticillata Eucodonia Eucodonia verticillata \N \N \N \N \N 33853 G.1492 Gnidia Gnidia aff. renniana Edwards 1492 \N \N \N \N \N 33854 T.austromongolica Tamarix Tamarix austromongolica \N \N \N \N \N 33855 O.euboica Onosma Onosma euboica \N \N \N \N \N 33856 R.tiliifolia Ryssopterys Ryssopterys tiliifolia \N \N \N \N \N 33857 H.chondrilloides Hypochaeris Hypochaeris chondrilloides \N \N \N \N \N 33858 N.integrifoliola Neoalsomitra Neoalsomitra integrifoliola \N \N \N \N \N 33859 L.microglossa Lasthenia Lasthenia microglossa \N \N \N \N \N 33860 C.verrucosa Crotalaria Crotalaria verrucosa \N \N \N \N \N 33861 \N genus Melanthera \N \N \N \N \N 33862 A.ataxacantha Acacia Acacia ataxacantha \N \N \N \N \N 33863 \N genus Leucochrysum \N \N \N \N \N 33864 P.WSY0032101-5 Penstemon Penstemon sp. WSY0032101-5 \N \N \N \N \N 33865 E.berotica Euphorbia Euphorbia berotica \N \N \N \N \N 35526 \N genus Aglaodorum \N \N \N \N \N 33866 E.yaeyamensis Eurya Eurya yaeyamensis \N \N \N \N \N 33867 A.suaveolens Acrothamnus Acrothamnus suaveolens \N \N \N \N \N 33868 \N varietas Lomatium grayi var. depauperatum \N \N \N \N \N 33869 C.globulifera Cordia Cordia globulifera \N \N \N \N \N 33870 V.liwanensis Veronica Veronica liwanensis \N \N \N \N \N 33871 C.weimarckii Cliffortia Cliffortia weimarckii \N \N \N \N \N 33872 C.'kuchugouzhui' Castanopsis Castanopsis sp. 'kuchugouzhui' \N \N \N \N \N 33873 A.inermis Adenia Adenia inermis \N \N \N \N \N 33874 H.oblongifolia Heteropsis Heteropsis oblongifolia \N \N \N \N \N 33875 R.psilostachys Ranunculus Ranunculus psilostachys \N \N \N \N \N 33876 S.diphyllum Solanum Solanum diphyllum \N \N \N \N \N 33877 C.orbiculatus Celastrus Celastrus orbiculatus \N \N \N \N \N 33878 A.pygmaea Ajuga Ajuga pygmaea \N \N \N \N \N 33879 P.bellidifolium Piper Piper bellidifolium \N \N \N \N \N 33880 P.drummondii Ptilotus Ptilotus drummondii \N \N \N \N \N 33881 M.xinningia Michelia Michelia xinningia \N \N \N \N \N 33882 Q.garryana Quercus Quercus garryana Oregon oak \N \N \N \N 33883 L.369 unclassified Laxmanniaceae Laxmanniaceae sp. 369 \N \N \N \N \N 33884 \N genus Anthericum \N \N \N \N \N 33885 M.nagensium Musa Musa nagensium \N \N \N \N \N 33886 \N genus Diplocyclos \N \N \N \N \N 33887 G.robinsonii Gossypium Gossypium robinsonii \N \N \N \N \N 33888 N.glandulifera Nymphaea Nymphaea glandulifera \N \N \N \N \N 33889 \N genus Alloispermum \N \N \N \N \N 33890 O.canbyi Oxypolis Oxypolis canbyi \N \N \N \N \N 33891 \N subspecies Crocus sieberi subsp. sieberi \N \N \N \N \N 33892 \N genus Afrothismia \N \N \N \N \N 33893 H.katangense Holostylon Holostylon katangense \N \N \N \N \N 33894 I.montana Inula Inula montana \N \N \N \N \N 33895 E.BG-2008a Epimedium Epimedium sp. BG-2008a \N \N \N \N \N 33896 H.modesta Hyalochaete Hyalochaete modesta \N \N \N \N \N 33897 V.douglasii Viola Viola douglasii \N \N \N \N \N 33898 \N genus Pterygocalyx \N \N \N \N \N 33899 S.efulenensis Sabicea Sabicea efulenensis \N \N \N \N \N 33900 P.luteocostata Planchonella Planchonella luteocostata \N \N \N \N \N 33901 E.atherstonei Erica Erica atherstonei \N \N \N \N \N 33902 A.brevis Anatherostipa Anatherostipa brevis \N \N \N \N \N 33903 I.chimiliensis Impatiens Impatiens chimiliensis \N \N \N \N \N 33904 E.formosissima Euphrasia Euphrasia formosissima \N \N \N \N \N 33905 U.lachnantha Urochloa Urochloa lachnantha \N \N \N \N \N 33906 M.GOFT7 Micromeria Micromeria cf. varia Heubl GOFT7 \N \N \N \N \N 33907 H.diervilleoides Heinsenia Heinsenia diervilleoides \N \N \N \N \N 33908 H.schwackei Habenaria Habenaria schwackei \N \N \N \N \N 33909 G.borbonica Grangeria Grangeria borbonica \N \N \N \N \N 33910 G.lindenii Galactia Galactia lindenii \N \N \N \N \N 33911 S.limprichtii Saussurea Saussurea limprichtii \N \N \N \N \N 33912 O.ND-2008 Othonna Othonna sp. ND-2008 \N \N \N \N \N 33913 P.laciniosa Potentilla Potentilla laciniosa \N \N \N \N \N 33914 \N subtribe Manniellineae \N \N \N \N \N 33915 A.neapolitanum Allium Allium neapolitanum flowering onion \N \N \N \N 33916 S.fiebrigii Setaria Setaria fiebrigii \N \N \N \N \N 33917 P.divaricata Phacelia Phacelia divaricata \N \N \N \N \N 33918 A.popovii Aulacospermum Aulacospermum popovii \N \N \N \N \N 33919 \N forma Hydrangea macrophylla f. otaksa \N \N \N \N \N 33920 C.03-06 Cistanthe Cistanthe sp. Hershkovitz 03-06 \N \N \N \N \N 33921 H.hoopesii Hymenoxys Hymenoxys hoopesii \N \N \N \N \N 33922 X.fistulosa Xenoscapa Xenoscapa fistulosa \N \N \N \N \N 33923 P.silveirae Paepalanthus Paepalanthus silveirae \N \N \N \N \N 33924 S.tortuosum Seseli Seseli tortuosum \N \N \N \N \N 33925 A.altiscapa Annesorhiza Annesorhiza altiscapa \N \N \N \N \N 33926 S.jaccardianum Sedum Sedum jaccardianum \N \N \N \N \N 33927 P.36 Piper Piper sp. ABG 36 \N \N \N \N \N 33928 P.namaquanum Pachypodium Pachypodium namaquanum \N \N \N \N \N 33929 \N genus Sarcolobus \N \N \N \N \N 33930 A.catacamptus Astragalus Astragalus catacamptus \N \N \N \N \N 33931 A.griseum Acer Acer griseum \N \N \N \N \N 33932 \N varietas Ptilotus exaltatus var. exaltatus \N \N \N \N \N 33933 A.soleirolii Armeria Armeria soleirolii \N \N \N \N \N 33934 P.variabilis Panax Panax variabilis \N \N \N \N \N 33935 \N subspecies Triphysaria versicolor subsp. versicolor \N \N \N \N \N 33936 A.uniflora Adenodaphne Adenodaphne uniflora \N \N \N \N \N 33937 S.pampeana Setaria Setaria pampeana \N \N \N \N \N 33938 \N no rank Ixoroideae incertae sedis \N \N \N \N \N 33939 T.octandra Tamarix Tamarix octandra \N \N \N \N \N 33940 A.gracilipes Andrachne Andrachne gracilipes \N \N \N \N \N 33941 \N tribe Hemimerideae \N \N \N \N \N 33942 S.stupefactum Solanum Solanum stupefactum \N \N \N \N \N 33943 T.kotschyi Tragopogon Tragopogon kotschyi \N \N \N \N \N 33945 L.sulphureus Lupinus Lupinus sulphureus sulphur lupine \N \N \N \N 33946 J.mexicana Jacaratia Jacaratia mexicana bonete,coahuayote \N \N \N \N 33947 P.zingiberensis Panax Panax zingiberensis \N \N \N \N \N 33948 C.atrorubens Crotalaria Crotalaria atrorubens \N \N \N \N \N 33949 P.orchidifolia Pitcairnia Pitcairnia orchidifolia \N \N \N \N \N 33950 B.malachosticta Begonia Begonia malachosticta \N \N \N \N \N 33951 E.falcifolium Epipremnum Epipremnum falcifolium \N \N \N \N \N 33952 P.fauriei Primula Primula fauriei \N \N \N \N \N 33953 P.calyptrata Podalyria Podalyria calyptrata \N \N \N \N \N 33954 L.confertiflora Leucaena Leucaena confertiflora \N \N \N \N \N 33955 P.oraria Pomaderris Pomaderris oraria \N \N \N \N \N 33956 \N varietas Paphiopedilum hirsutissimum var. esquirolei \N \N \N \N \N 33957 W.arizonica Wyethia Wyethia arizonica \N \N \N \N \N 33958 \N subspecies Limnanthes floccosa subsp. floccosa \N \N \N \N \N 33959 C.rubicundum Calligonum Calligonum rubicundum \N \N \N \N \N 33960 \N genus Sessilanthera \N \N \N \N \N 33961 \N genus Colutea \N \N \N \N \N 33962 C.bombycina Centaurea Centaurea bombycina \N \N \N \N \N 35623 \N genus Heloniopsis \N \N \N \N \N 33963 T.perpusilla Toxanthes Toxanthes perpusilla \N \N \N \N \N 33964 A.arcuata Antennaria Antennaria arcuata \N \N \N \N \N 33965 M.cordifolia Manettia Manettia cordifolia \N \N \N \N \N 33966 \N tribe Schizopetaleae \N \N \N \N \N 33967 M.setosus Margyricarpus Margyricarpus setosus \N \N \N \N \N 33968 M.elongata Monophyllaea Monophyllaea elongata \N \N \N \N \N 33969 A.leptorrhachis Anthonotha Anthonotha leptorrhachis \N \N \N \N \N 33970 F.trigona Ficus Ficus trigona \N \N \N \N \N 33971 G.rosea Gaertnera Gaertnera rosea \N \N \N \N \N 33972 S.jucundum Solanum Solanum jucundum \N \N \N \N \N 33973 M.junceus Micranthus Micranthus junceus \N \N \N \N \N 33974 M.hyssopifolia Micromeria Micromeria hyssopifolia \N \N \N \N \N 33975 \N genus Baynesia \N \N \N \N \N 33976 N.merrilliana Nepenthes Nepenthes merrilliana \N \N \N \N \N 33977 \N tribe Iriarteeae \N \N \N \N \N 33978 T.ovatum Trisetum Trisetum ovatum \N \N \N \N \N 33979 S.spinosior Sclerocactus Sclerocactus spinosior \N \N \N \N \N 33980 L.hypoleuca Luina Luina hypoleuca \N \N \N \N \N 33981 R.maximum Rhododendron Rhododendron maximum great-laurel,rosebay \N \N \N \N 33982 M.aeruginosa Miconia Miconia aeruginosa \N \N \N \N \N 33983 P.trivialis Poa Poa trivialis \N \N \N \N \N 33984 V.phalaenopsis Vanilla Vanilla phalaenopsis \N \N \N \N \N 33985 F.edulis Fockea Fockea edulis \N \N \N \N \N 33986 \N genus Lepidolopsis \N \N \N \N \N 33987 A.paludosa Allocasuarina Allocasuarina paludosa \N \N \N \N \N 33988 H.miconioides Heptacodium Heptacodium miconioides seven-sons tree \N \N \N \N 33989 A.heldreichii Alyssum Alyssum heldreichii \N \N \N \N \N 33990 B.segetum Bromus Bromus segetum \N \N \N \N \N 33991 A.stellata Aralia Aralia stellata \N \N \N \N \N 33992 P.powellii Palmorchis Palmorchis powellii \N \N \N \N \N 33993 D.spectabilis Draba Draba spectabilis \N \N \N \N \N 33994 P.fauriei Papaver Papaver fauriei \N \N \N \N \N 33995 \N subspecies Chionochloa rigida subsp. rigida \N \N \N \N \N 33996 C.corniculata Cuscuta Cuscuta corniculata \N \N \N \N \N 33997 \N genus Pisoniella \N \N \N \N \N 33998 S.honania Salvia Salvia honania \N \N \N \N \N 33999 T.canariensis Taeckholmia Taeckholmia canariensis \N \N \N \N \N 34000 G.parviflora Gigantochloa Gigantochloa parviflora \N \N \N \N \N 34001 C.siculus Convolvulus Convolvulus siculus \N \N \N \N \N 34002 \N genus Cuervea \N \N \N \N \N 34003 A.gossypinus Astragalus Astragalus gossypinus \N \N \N \N \N 34004 P.esquirolii Parnassia Parnassia esquirolii \N \N \N \N \N 34005 M.wildii Mammillaria Mammillaria wildii \N \N \N \N \N 34006 B.discolor Bombycilaena Bombycilaena discolor \N \N \N \N \N 34007 \N genus Colona \N \N \N \N \N 34008 \N genus Pericome \N \N \N \N \N 34009 S.poeppigii Senecio Senecio poeppigii \N \N \N \N \N 34010 \N genus Polaskia \N \N \N \N \N 34011 M.crocea Mentzelia Mentzelia crocea \N \N \N \N \N 34012 P.reichenbachiana Phalaenopsis Phalaenopsis reichenbachiana \N \N \N \N \N 34013 Q.13660 Qualea Qualea sp. Anderson 13660 \N \N \N \N \N 34014 \N genus Dransfieldia \N \N \N \N \N 34015 A.spinescens Acacia Acacia spinescens \N \N \N \N \N 34016 M.subpeltatus Mallotus Mallotus subpeltatus \N \N \N \N \N 34017 \N genus Legousia \N \N \N \N \N 34018 M.reticulosa Myrcia Myrcia reticulosa \N \N \N \N \N 34019 I.sugerokii Ilex Ilex sugerokii \N \N \N \N \N 34020 S.sitiens Lycopersicon Solanum sitiens \N \N \N \N \N 34021 A.brachycalyx Appunia Appunia brachycalyx \N \N \N \N \N 34022 \N genus Erophaca \N \N \N \N \N 34023 T.subramanyamii Tribulus Tribulus subramanyamii \N \N \N \N \N 34024 K.preissiana Kunzea Kunzea preissiana \N \N \N \N \N 34025 A.SH-2010 Aglaia Aglaia sp. SH-2010 \N \N \N \N \N 34026 D.anceps Dendrobium Dendrobium anceps \N \N \N \N \N 34027 \N genus Ziziphus \N \N \N \N \N 34028 P.'Tapo' Pimelea Pimelea sp. 'Tapo' \N \N \N \N \N 34029 A.verticillata Adenophora Adenophora verticillata \N \N \N \N \N 34030 S.popayanense Stenospermation Stenospermation popayanense \N \N \N \N \N 34031 \N subspecies Bidens menziesii subsp. menziesii \N \N \N \N \N 34032 \N varietas Phoenix loureiroi var. loureiroi \N \N \N \N \N 34033 S.tubiflora Styphelia Styphelia tubiflora \N \N \N \N \N 34034 S.gallicus Senecio Senecio gallicus \N \N \N \N \N 34035 G.JR-2010 Geonoma Geonoma sp. JR-2010 \N \N \N \N \N 34036 L.ovatus Leymus Leymus ovatus \N \N \N \N \N 34037 E.miersii Exodeconus Exodeconus miersii \N \N \N \N \N 34038 S.bungei Silene Silene bungei \N \N \N \N \N 34039 C.brachypetalus Corryocactus Corryocactus brachypetalus \N \N \N \N \N 34040 C.nitens Chimonanthus Chimonanthus nitens \N \N \N \N \N 34041 T.acuminata Tiliacora Tiliacora acuminata \N \N \N \N \N 34042 \N genus Nyctanthes \N \N \N \N \N 34043 \N no rank Areceae incertae sedis \N \N \N \N \N 34044 Z.mesochloa Zephyranthes Zephyranthes mesochloa \N \N \N \N \N 34045 M.stellarioides Moehringia Moehringia stellarioides \N \N \N \N \N 34046 O.lasiacantha Opuntia Opuntia lasiacantha \N \N \N \N \N 34047 S.dioica Silene Silene dioica morning campion,red campion \N \N \N \N 34048 A.carvalhoi Aechmea Aechmea carvalhoi \N \N \N \N \N 34049 A.deflexus Amaranthus Amaranthus deflexus \N \N \N \N \N 34050 \N varietas Hylotelephium verticillatum var. verticillatum \N \N \N \N \N 34051 C.paludosa Cleome Cleome paludosa \N \N \N \N \N 34052 C.aculeata Cliffortia Cliffortia aculeata \N \N \N \N \N 34053 X.fisherae Xylanthemum Xylanthemum fisherae \N \N \N \N \N 34054 L.tweedyi Lewisiopsis Lewisiopsis tweedyi \N \N \N \N \N 34055 C.obovoidea Citrus Citrus obovoidea kinkoji \N \N \N \N 34056 \N subfamily Philodendroideae \N \N \N \N \N 34057 P.deciduus Phyllobolus Phyllobolus deciduus \N \N \N \N \N 34058 C.schofieldiana Cattleya Cattleya schofieldiana \N \N \N \N \N 34059 T.rydbergii Toxicodendron Toxicodendron rydbergii \N \N \N \N \N 34060 M.parviflora Maxillaria Maxillaria parviflora \N \N \N \N \N 34061 A.tarumensis Astragalus Astragalus tarumensis \N \N \N \N \N 36885 \N subfamily Nelsonioideae \N \N \N \N \N 34062 T.billardierei Trifolium Trifolium billardierei \N \N \N \N \N 34063 C.mareoticus Carduncellus Carduncellus mareoticus \N \N \N \N \N 34064 C.clarksoniana Corymbia Corymbia clarksoniana \N \N \N \N \N 34065 S.globulifera Symphonia Symphonia globulifera boarwood,mani,ojoru \N \N \N \N 34066 H.tardhuangense Hydrobryum Hydrobryum tardhuangense \N \N \N \N \N 34067 I.TP-2009 Inga Inga sp. 36 TP-2009 \N \N \N \N \N 34068 X.colleyi Xylobium Xylobium colleyi \N \N \N \N \N 34069 \N no rank Acanthoideae incertae sedis \N \N \N \N \N 34070 S.media Synaphea Synaphea media \N \N \N \N \N 34071 \N genus Dracontomelon \N \N \N \N \N 34072 \N genus Petrocallis \N \N \N \N \N 34073 D.varians Dendrotrophe Dendrotrophe varians \N \N \N \N \N 34074 A.fiherenensis Alluaudiopsis Alluaudiopsis fiherenensis \N \N \N \N \N 34075 H.rivalis Herreranthus Herreranthus rivalis \N \N \N \N \N 34076 S.pappophorea Stephanachne Stephanachne pappophorea \N \N \N \N \N 34077 H.superba Hortia Hortia superba \N \N \N \N \N 34078 P.abyssinicum Phagnalon Phagnalon abyssinicum \N \N \N \N \N 34079 C.pyrenaica Carex Carex pyrenaica \N \N \N \N \N 34080 \N subspecies Erica abietina subsp. abietina \N \N \N \N \N 34081 L.luteus Lupinus Lupinus luteus yellow lupine \N \N \N \N 34082 R.poggei Rhynchotropis Rhynchotropis poggei \N \N \N \N \N 34083 C.1020 Canthium Canthium sp. 8 Davis 1020 \N \N \N \N \N 34084 A.arctica Artemisia Artemisia arctica \N \N \N \N \N 34085 D.socotranus Dendrosicyos Dendrosicyos socotranus \N \N \N \N \N 34086 A.alpina Armeria Armeria alpina \N \N \N \N \N 34087 L.coriaceum Leptospermum Leptospermum coriaceum \N \N \N \N \N 34088 \N varietas Cliffortia ilicifolia var. ilicifolia \N \N \N \N \N 34089 C.tribuloides Carex Carex tribuloides \N \N \N \N \N 34090 \N subspecies Carex atrata subsp. aterrima \N \N \N \N \N 34091 C.neocymosa Conostylis Conostylis neocymosa \N \N \N \N \N 34092 S.haenseleri Saxifraga Saxifraga haenseleri \N \N \N \N \N 34093 \N subspecies Glossonema boveanum subsp. boveanum \N \N \N \N \N 34094 R.forrestii Rheum Rheum forrestii \N \N \N \N \N 34095 P.crenulata Phacelia Phacelia crenulata \N \N \N \N \N 34096 M.secundiflora Medicago Medicago secundiflora \N \N \N \N \N 34097 \N genus Gongrodiscus \N \N \N \N \N 34098 H.elatus Hybanthus Hybanthus elatus \N \N \N \N \N 34099 \N genus Dichorisandra \N \N \N \N \N 34100 \N genus Thismia \N \N \N \N \N 34101 R.citriniflorum Rhododendron Rhododendron citriniflorum \N \N \N \N \N 34102 \N varietas Genista numidica var. elata \N \N \N \N \N 34103 O.mucronata Oberonia Oberonia mucronata \N \N \N \N \N 34104 S.tenuissima Stelis Stelis tenuissima \N \N \N \N \N 34105 \N varietas Maxillaria mosenii var. echinochila \N \N \N \N \N 34106 \N family Pennantiaceae \N \N \N \N \N 34107 H.strumosus Helianthus Helianthus strumosus \N \N \N \N \N 34108 \N subspecies Rubus idaeus subsp. idaeus \N \N \N \N \N 34109 L.KD1 Lilium Lilium sp. KD1 \N \N \N \N \N 34110 E.diazlunana Euphorbia Euphorbia diazlunana \N \N \N \N \N 34111 \N genus Richterago \N \N \N \N \N 34112 P.hookeriana Pleione Pleione hookeriana \N \N \N \N \N 34113 Z.verrucosa Zieria Zieria verrucosa \N \N \N \N \N 34114 P.paradoxa Psydrax Psydrax paradoxa \N \N \N \N \N 34115 R.banksiopsis Rosa Rosa banksiopsis \N \N \N \N \N 34116 \N genus Pedersenia \N \N \N \N \N 34117 V.madagascariensis Vanilla Vanilla madagascariensis \N \N \N \N \N 34118 P.mollis Pseuduvaria Pseuduvaria mollis \N \N \N \N \N 34119 A.morrisonensis Adenophora Adenophora morrisonensis \N \N \N \N \N 34120 T.parvifolium Teucridium Teucridium parvifolium \N \N \N \N \N 34121 H.procumbens Heliotropium Heliotropium procumbens \N \N \N \N \N 34122 K.SRR-2011 Kefersteinia Kefersteinia sp. SRR-2011 \N \N \N \N \N 34123 \N genus Ectadium \N \N \N \N \N 34124 E.pallidum Epilobium Epilobium pallidum \N \N \N \N \N 34125 \N genus Storthocalyx \N \N \N \N \N 34126 \N genus Cerdia \N \N \N \N \N 34127 L.decipiens Luzula Luzula decipiens \N \N \N \N \N 34128 B.OR2752003 Bulbophyllum Bulbophyllum sp. OR2752003 \N \N \N \N \N 34129 \N genus Laelia \N \N \N \N \N 34130 D.sparsiflorum Delphinium Delphinium sparsiflorum \N \N \N \N \N 34131 P.capitatum Pelargonium Pelargonium capitatum rose-scented geranium \N \N \N \N 34132 A.annua Artemisia Artemisia annua sweet Annie,sweet wormwood \N \N \N \N 34133 \N genus Ammi \N \N \N \N \N 34134 E.paniculata Euphorbia Euphorbia paniculata \N \N \N \N \N 34135 \N genus Aganosma \N \N \N \N \N 34136 \N subspecies Coccothrinax crinita subsp. crinita \N \N \N \N \N 34137 O.octojuge Octopoma Octopoma octojuge \N \N \N \N \N 34138 P.candida Pseudoselago Pseudoselago candida \N \N \N \N \N 34139 C.sanchezii Caxamarca Caxamarca sanchezii \N \N \N \N \N 34140 A.watermaliense Anthurium Anthurium watermaliense \N \N \N \N \N 34141 P.minor Phalaris Phalaris minor littleseed canarygrass \N \N \N \N 34142 A.boa Alocasia Alocasia boa \N \N \N \N \N 34143 P.hirsuta Pancheria Pancheria hirsuta \N \N \N \N \N 34144 A.elata Athrixia Athrixia elata \N \N \N \N \N 34145 P.tatarinowii Prenanthes Prenanthes tatarinowii \N \N \N \N \N 34146 N.echioides Nonea Nonea echioides \N \N \N \N \N 34147 V.schmidtiana Veronica Veronica schmidtiana \N \N \N \N \N 34148 M.sinica Magnolia Magnolia sinica \N \N \N \N \N 34149 H.viscida Heppiella Heppiella viscida \N \N \N \N \N 34150 P.lane-poolei Pausinystalia Pausinystalia lane-poolei \N \N \N \N \N 34151 \N genus Fumana \N \N \N \N \N 34152 R.eickii Rytigynia Rytigynia eickii \N \N \N \N \N 34153 E.hyssopifolius Erigeron Erigeron hyssopifolius \N \N \N \N \N 34154 E.complanata Eurychorda Eurychorda complanata \N \N \N \N \N 34155 R.grandifolia Randia Randia grandifolia \N \N \N \N \N 34156 C.obliqua Cornus Cornus obliqua \N \N \N \N \N 34157 S.vulgaris Senecio Senecio vulgaris old-man-in-the-Spring \N \N \N \N 34158 Q.longispica Quercus Quercus longispica \N \N \N \N \N 34159 C.creticum Clinopodium Clinopodium creticum \N \N \N \N \N 34160 G.fragilis Gaudinia Gaudinia fragilis \N \N \N \N \N 34162 E.sipolisii Euphorbia Euphorbia sipolisii \N \N \N \N \N 34163 H.pedunculata Halotis Halotis pedunculata \N \N \N \N \N 34164 P.seegeri Paphinia Paphinia seegeri \N \N \N \N \N 34165 S.auriculata Scaevola Scaevola auriculata \N \N \N \N \N 34166 \N genus Battandiera \N \N \N \N \N 34167 M.SGR-2009 Morinda Morinda sp. 6 SGR-2009 \N \N \N \N \N 34168 B.sphaerocarpa Bencomia Bencomia sphaerocarpa \N \N \N \N \N 34169 P.vitaceum Piper Piper vitaceum \N \N \N \N \N 34170 M.marksiana Mammillaria Mammillaria marksiana \N \N \N \N \N 34171 A.shultziorum Astragalus Astragalus shultziorum \N \N \N \N \N 34172 E.brevifolia Erica Erica brevifolia \N \N \N \N \N 34173 D.madagascariensis Drosera Drosera madagascariensis \N \N \N \N \N 34174 C.biflorus Crocus Crocus biflorus \N \N \N \N \N 34175 M.subulata Mutisia Mutisia subulata \N \N \N \N \N 34176 M.lanceolata Malesherbia Malesherbia lanceolata \N \N \N \N \N 34177 \N subtribe Brizinae \N \N \N \N \N 34178 P.3 Primula Primula sp. Oyumaa no. 3 \N \N \N \N \N 34179 C.mariscoides Cladium Cladium mariscoides \N \N \N \N \N 34180 C.301 Cliffortia Cliffortia cf. polita Whitehouse 301 \N \N \N \N \N 34181 G.semiteres Gastrolobium Gastrolobium semiteres \N \N \N \N \N 34182 B.micranthum Bulbophyllum Bulbophyllum micranthum \N \N \N \N \N 34183 C.salsa Cistanche Cistanche salsa \N \N \N \N \N 34184 S.philippinensis Strombosia Strombosia philippinensis \N \N \N \N \N 34185 N.acaulis Novenia Novenia acaulis \N \N \N \N \N 34186 T.crassiuscula Tolpis Tolpis crassiuscula \N \N \N \N \N 34187 R.collinus Ranunculus Ranunculus collinus \N \N \N \N \N 34188 P.gracilis Poitea Poitea gracilis \N \N \N \N \N 34189 B.sessiliflora Blumea Blumea sessiliflora \N \N \N \N \N 34190 C.mollifolia Chiritopsis Chiritopsis mollifolia \N \N \N \N \N 34191 F.nymphaeifolia Ficus Ficus nymphaeifolia \N \N \N \N \N 34192 K.chinensis Klaseopsis Klaseopsis chinensis \N \N \N \N \N 34193 \N genus Dahlia \N \N \N \N \N 34194 S.ulei Stenospermation Stenospermation ulei \N \N \N \N \N 34195 H.dubium Hieracium Hieracium dubium \N \N \N \N \N 34196 S.azorica Smilax Smilax azorica \N \N \N \N \N 34197 G.koenenianus Galanthus Galanthus koenenianus \N \N \N \N \N 34198 D.alba Diuris Diuris alba \N \N \N \N \N 34199 \N genus Rhoiacarpos \N \N \N \N \N 34200 M.leptophylla Machilus Machilus leptophylla \N \N \N \N \N 34201 P.sphacelatum Pterocaulon Pterocaulon sphacelatum \N \N \N \N \N 34202 L.japonica Lecanorchis Lecanorchis japonica \N \N \N \N \N 34203 A.maingayi Artocarpus Artocarpus maingayi \N \N \N \N \N 34204 S.guatemalense Sedum Sedum guatemalense \N \N \N \N \N 34205 H.longgangensis Hemiboea Hemiboea longgangensis \N \N \N \N \N 34206 P.NPT-2011 unclassified Podostemaceae Podostemaceae sp. NPT-2011 \N \N \N \N \N 34207 J.polita Jungia Jungia polita \N \N \N \N \N 34208 J.parryi Juncus Juncus parryi \N \N \N \N \N 34209 Q.GG-2008 Quercus Quercus cf. infectoria GG-2008 \N \N \N \N \N 34210 G.medusaeum Glossoloma Glossoloma medusaeum \N \N \N \N \N 34211 C.lanceolata Cyanostegia Cyanostegia lanceolata \N \N \N \N \N 34212 \N tribe Scolopieae \N \N \N \N \N 34213 I.verticillatum Illecebrum Illecebrum verticillatum \N \N \N \N \N 34214 S.vinicolor Sedum Sedum vinicolor \N \N \N \N \N 34215 R.fulgens Rhododendron Rhododendron fulgens \N \N \N \N \N 34216 I.aschersoniana Inula Inula aschersoniana \N \N \N \N \N 34217 D.racemosum Dendrobium Dendrobium racemosum \N \N \N \N \N 34218 S.cocculoides Smilax Smilax cocculoides \N \N \N \N \N 34219 \N subspecies Eucalyptus ebbanoensis subsp. ebbanoensis \N \N \N \N \N 34220 K.rubromarginata Kaempferia Kaempferia rubromarginata \N \N \N \N \N 34221 M.thessalum Marrubium Marrubium thessalum \N \N \N \N \N 34222 C.autrani Cousinia Cousinia autrani \N \N \N \N \N 34223 \N subspecies Corrigiola litoralis subsp. foliosa \N \N \N \N \N 34224 T.bolivarensis Tococa Tococa bolivarensis \N \N \N \N \N 34225 H.bingzhongluo Holcoglossum Holcoglossum sp. bingzhongluo \N \N \N \N \N 34226 C.sagredoi Centaurea Centaurea sagredoi \N \N \N \N \N 34227 \N genus Ajugoides \N \N \N \N \N 34228 \N genus Stoeberia \N \N \N \N \N 34229 C.hirsutissimum Cremosperma Cremosperma hirsutissimum \N \N \N \N \N 34230 P.semiteretifolium Pteroceras Pteroceras semiteretifolium \N \N \N \N \N 34231 \N genus Xylothamia \N \N \N \N \N 34232 C.paradoxum Chamaesium Chamaesium paradoxum \N \N \N \N \N 34233 P.cuprea Passiflora Passiflora cuprea \N \N \N \N \N 34234 \N genus Manuleopsis \N \N \N \N \N 34235 E.tomentosa Enchylaena Enchylaena tomentosa \N \N \N \N \N 34236 A.plurijuga Albizia Albizia plurijuga \N \N \N \N \N 34237 D.oldhamii Daphniphyllum Daphniphyllum oldhamii \N \N \N \N \N 34238 T.elongata Triglochin Triglochin elongata \N \N \N \N \N 34239 L.bahiana Licaria Licaria bahiana \N \N \N \N \N 34240 S.pubens Sheilanthera Sheilanthera pubens \N \N \N \N \N 34241 \N genus Washingtonia \N \N \N \N \N 34242 S.flaccida Spiloxene Spiloxene flaccida \N \N \N \N \N 34243 D.obtusifolius Drepananthus Drepananthus obtusifolius \N \N \N \N \N 34244 M.vandellioides Mecardonia Mecardonia vandellioides \N \N \N \N \N 34245 I.nebrowniana Indigofera Indigofera nebrowniana \N \N \N \N \N 34246 M.sisyrinchium Moraea Moraea sisyrinchium \N \N \N \N \N 34247 T.costaricensis Telipogon Telipogon costaricensis \N \N \N \N \N 34248 F.watsonii Forchhammeria Forchhammeria watsonii \N \N \N \N \N 34249 P.albidiflora Prismatomeris Prismatomeris albidiflora \N \N \N \N \N 34250 H.anomala Hydrangea Hydrangea anomala \N \N \N \N \N 34251 \N subfamily Vanilloideae \N \N \N \N \N 34252 P.viguieri Protorhus Protorhus viguieri \N \N \N \N \N 34253 C.montevidense Cynanchum Cynanchum montevidense \N \N \N \N \N 34254 C.coccinea Chloanthes Chloanthes coccinea \N \N \N \N \N 34255 L.brachystachya Lagotis Lagotis brachystachya \N \N \N \N \N 34256 L.discolor Leucadendron Leucadendron discolor \N \N \N \N \N 34257 P.ellipticum Pentaphragma Pentaphragma ellipticum \N \N \N \N \N 34258 \N genus Buckinghamia \N \N \N \N \N 37470 \N genus Bonellia \N \N \N \N \N 34259 B.pallidifolia Boechera Boechera pallidifolia \N \N \N \N \N 34260 B.haematocarpa Berberis Berberis haematocarpa \N \N \N \N \N 34261 C.stricta Calceolaria Calceolaria stricta \N \N \N \N \N 34262 N.binotii Neoregelia Neoregelia binotii \N \N \N \N \N 34263 D.stuartii Dendrobium Dendrobium stuartii \N \N \N \N \N 34264 E.binata Eulaliopsis Eulaliopsis binata \N \N \N \N \N 34265 S.sonomensis Salvia Salvia sonomensis \N \N \N \N \N 34266 A.kotschyi Arrhenatherum Arrhenatherum kotschyi \N \N \N \N \N 34267 C.viridescens Chlorophytum Chlorophytum viridescens \N \N \N \N \N 34268 R.triste Ribes Ribes triste swamp red currant,wild red currant \N \N \N \N 34269 T.arcana Tetrapterys Tetrapterys arcana \N \N \N \N \N 34270 P.serratum Protium Protium serratum \N \N \N \N \N 34271 N.austroafricana Neuradopsis Neuradopsis austroafricana \N \N \N \N \N 34272 A.misera Achimenes Achimenes misera \N \N \N \N \N 34273 C.petraea Campanula Campanula petraea \N \N \N \N \N 34274 E.ferruginea Eragrostis Eragrostis ferruginea \N \N \N \N \N 34275 A.villosulicarpa Arachis Arachis villosulicarpa \N \N \N \N \N 34276 F.olivieri Fritillaria Fritillaria olivieri \N \N \N \N \N 34277 \N subspecies Buglossoides arvensis subsp. arvensis \N \N \N \N \N 34278 R.indica Rorippa Rorippa indica \N \N \N \N \N 34279 L.komarovii Linum Linum komarovii \N \N \N \N \N 34280 C.rubra Chionochloa Chionochloa rubra \N \N \N \N \N 34281 G.rigidum Gastrolobium Gastrolobium rigidum \N \N \N \N \N 34282 G.06180 Gelidocalamus Gelidocalamus sp. 2 Zeng & Zhang 06180 \N \N \N \N \N 34283 \N varietas Chrysosplenium pilosum var. sphaerospermum \N \N \N \N \N 34284 \N genus Combretum \N \N \N \N \N 34285 O.orbicularis Oxalis Oxalis orbicularis \N \N \N \N \N 34286 S.pachyrhizum Sisyrinchium Sisyrinchium pachyrhizum \N \N \N \N \N 34287 \N genus Centaurodendron \N \N \N \N \N 34288 H.cenchroides Hilaria Hilaria cenchroides \N \N \N \N \N 34289 T.echinatum Tribolium Tribolium echinatum \N \N \N \N \N 34290 \N genus Eulychnia \N \N \N \N \N 34291 \N subspecies Ansellia africana subsp. africana \N \N \N \N \N 34292 D.rimosa Dalbergia Dalbergia rimosa \N \N \N \N \N 34293 T.paniculatum Thesium Thesium paniculatum \N \N \N \N \N 34294 P.ochreatus Potamogeton Potamogeton ochreatus \N \N \N \N \N 34295 D.lindleyana Disperis Disperis lindleyana \N \N \N \N \N 34296 A.porphyrogennetos Aichryson Aichryson porphyrogennetos \N \N \N \N \N 34297 A.capensis Agathosma Agathosma capensis \N \N \N \N \N 34298 P.japonica Pseudosasa Pseudosasa japonica \N \N \N \N \N 34299 C.hadriaticus Crocus Crocus hadriaticus \N \N \N \N \N 34300 S.1089 Sidalcea Sidalcea sp. Baldwin 1089 \N \N \N \N \N 34301 \N varietas Eleocharis palustris var. parvinux \N \N \N \N \N 34302 \N genus Cyrilla \N \N \N \N \N 34303 S.macooraia Steganthera Steganthera macooraia \N \N \N \N \N 34304 \N genus Ornithocephalus \N \N \N \N \N 34305 H.ovalifolium Heliotropium Heliotropium ovalifolium \N \N \N \N \N 34306 S.latifolia Stirlingia Stirlingia latifolia \N \N \N \N \N 34307 C.ellisii Cremanthodium Cremanthodium ellisii \N \N \N \N \N 34308 C.drepanoides Cliffortia Cliffortia drepanoides \N \N \N \N \N 34309 S.afzelii Strychnos Strychnos afzelii \N \N \N \N \N 34310 P.tarapacana Polylepis Polylepis tarapacana quenoa de altura \N \N \N \N 34311 A.flavidum Allium Allium flavidum \N \N \N \N \N 34312 \N genus x Colmanara \N \N \N \N \N 34313 R.scabrum Rhododendron Rhododendron scabrum \N \N \N \N \N 34314 \N subspecies Senecio lautus subsp. dissectifolius \N \N \N \N \N 34315 \N genus Thunia \N \N \N \N \N 34316 C.H5_30 Castilleja Castilleja sp. H5_30 \N \N \N \N \N 34317 \N genus Cariniana \N \N \N \N \N 34318 T.kittaryanum Tanacetum Tanacetum kittaryanum \N \N \N \N \N 34319 H.squarrosa Hazardia Hazardia squarrosa \N \N \N \N \N 34320 M.collatata Miconia Miconia collatata \N \N \N \N \N 34321 A.matucanensis Armatocereus Armatocereus matucanensis \N \N \N \N \N 34322 I.sescossiana Ipomoea Ipomoea sescossiana \N \N \N \N \N 34323 D.trifoliolatum Dichocarpum Dichocarpum trifoliolatum \N \N \N \N \N 34324 S.raivavaeensis Sophora Sophora raivavaeensis \N \N \N \N \N 34325 C.grahamiana Crotalaria Crotalaria grahamiana \N \N \N \N \N 34326 \N genus Seidlitzia \N \N \N \N \N 34327 S.adolfi-friderici Swertia Swertia adolfi-friderici \N \N \N \N \N 34328 \N subspecies Sagittaria guayanensis subsp. guayanensis \N \N \N \N \N 34329 E.rosea Echeveria Echeveria rosea \N \N \N \N \N 34330 A.flos-aeris Arachnis Arachnis flos-aeris \N \N \N \N \N 34331 M.taxifolia Marcetia Marcetia taxifolia \N \N \N \N \N 34332 \N genus Droguetia \N \N \N \N \N 34333 A.stereocalyx Astragalus Astragalus stereocalyx \N \N \N \N \N 34334 O.aquatica Oenanthe Oenanthe aquatica water-fennel \N \N \N \N 34335 G.nodiflorum Gymnostoma Gymnostoma nodiflorum \N \N \N \N \N 34336 H.chinensis Heterosmilax Heterosmilax chinensis \N \N \N \N \N 34337 M.ctenostachya Maxillaria Maxillaria ctenostachya \N \N \N \N \N 34338 \N subspecies Otostegia tomentosa subsp. ambigens \N \N \N \N \N 34339 H.carnosiflora Hemsleya Hemsleya carnosiflora \N \N \N \N \N 34340 I.pubescens Ilex Ilex pubescens \N \N \N \N \N 34341 B.elongata Boswellia Boswellia elongata \N \N \N \N \N 34342 M.GOF10 Micromeria Micromeria cf. varia Heubl GOF10 \N \N \N \N \N 34343 \N subspecies Festuca paniculata subsp. spadicea \N \N \N \N \N 34344 G.terminalis Gavarretia Gavarretia terminalis \N \N \N \N \N 34345 G.pumila Gentiana Gentiana pumila \N \N \N \N \N 34346 V.brasiliana Vernonia Vernonia brasiliana \N \N \N \N \N 34347 V.senex Hebe Veronica senex \N \N \N \N \N 34348 C.prorepens Cardamine Cardamine prorepens \N \N \N \N \N 34349 E.touchyanum Erodium Erodium touchyanum \N \N \N \N \N 34350 \N genus Morkillia \N \N \N \N \N 34351 \N subspecies Layia pentachaeta subsp. albida \N \N \N \N \N 34352 M.myriophyllum Mandevilla Mandevilla myriophyllum \N \N \N \N \N 34353 \N genus Barnebyella \N \N \N \N \N 34354 A.smithii Antirhea Antirhea smithii \N \N \N \N \N 37954 \N family Phyllonomaceae \N \N \N \N \N 34355 D.spiralis Daviesia Daviesia spiralis \N \N \N \N \N 34356 L.scariosa Lepyrodia Lepyrodia scariosa \N \N \N \N \N 34357 \N genus Ornichia \N \N \N \N \N 34358 E.tomentosa Euclea Euclea tomentosa \N \N \N \N \N 34359 M.micranthus Melicytus Melicytus micranthus \N \N \N \N \N 34360 \N genus Sabal palmettoes,palmettos \N \N \N \N 34361 M.macropetala Muraltia Muraltia macropetala \N \N \N \N \N 34362 A.hirtula Avena Avena atlantica x Avena hirtula \N \N \N \N \N 34363 P.dolichobotrys Prunus Prunus dolichobotrys \N \N \N \N \N 34364 S.drummondii Symphyotrichum Symphyotrichum drummondii \N \N \N \N \N 34365 C.cubili Cubilia Cubilia cubili \N \N \N \N \N 34366 D.oleoides Daphne Daphne oleoides olive daphne \N \N \N \N 34367 \N genus Toxanthes \N \N \N \N \N 34368 D.XMW-2002-8 Dendrobium Dendrobium sp. XMW-2002-8 \N \N \N \N \N 34369 T.guianensis Touroulia Touroulia guianensis \N \N \N \N \N 34370 F.lindsayi Ferocactus Ferocactus lindsayi \N \N \N \N \N 34371 T.cylindrocarpa Tontelea Tontelea cylindrocarpa \N \N \N \N \N 34372 P.caveana Primula Primula caveana \N \N \N \N \N 34373 A.linguiformis Arachnothryx Arachnothryx linguiformis \N \N \N \N \N 34374 N.potamophila Nymphaea Nymphaea potamophila \N \N \N \N \N 34375 R.calostrotum Rhododendron Rhododendron calostrotum \N \N \N \N \N 34376 M.rotundifolia Monotoca Monotoca rotundifolia \N \N \N \N \N 34377 L.ovatus Lasiocephalus Lasiocephalus ovatus \N \N \N \N \N 34378 C.calyculatus Cenchrus Cenchrus calyculatus \N \N \N \N \N 34379 L.macrocarpa Lavoixia Lavoixia macrocarpa \N \N \N \N \N 34380 O.ramosissima Ononis Ononis ramosissima \N \N \N \N \N 34381 L.lemmonii Leptosiphon Leptosiphon lemmonii \N \N \N \N \N 34382 H.falx Harpochloa Harpochloa falx \N \N \N \N \N 34383 \N genus Lunania \N \N \N \N \N 34384 \N genus Cereus \N \N \N \N \N 34385 P.glabratum Pittosporum Pittosporum glabratum \N \N \N \N \N 34386 A.shaferi Ariadne Ariadne shaferi \N \N \N \N \N 34387 M.decipiens Muraltia Muraltia decipiens \N \N \N \N \N 34388 A.cretacea Artemisia Artemisia cretacea \N \N \N \N \N 34389 L.lui Lagarosolen Lagarosolen lui \N \N \N \N \N 34390 J.acutus Juncus Juncus acutus \N \N \N \N \N 34391 V.tahitensis Vanilla Vanilla tahitensis \N \N \N \N \N 34392 L.cordifolia Ledebouria Ledebouria cordifolia \N \N \N \N \N 34393 L.umbellifera Liparia Liparia umbellifera \N \N \N \N \N 34394 \N tribe Calameae \N \N \N \N \N 34395 C.tysonii Cyphia Cyphia tysonii \N \N \N \N \N 34396 A.emuina Allocasuarina Allocasuarina emuina \N \N \N \N \N 34397 S.welshii Symphyotrichum Symphyotrichum welshii \N \N \N \N \N 34398 A.rhomboidea Acalypha Acalypha rhomboidea \N \N \N \N \N 34399 A.alyssoides Astragalus Astragalus alyssoides \N \N \N \N \N 34400 G.dewevrei Gilbertiodendron Gilbertiodendron dewevrei \N \N \N \N \N 34401 L.violaceum Lepidium Lepidium violaceum \N \N \N \N \N 34402 Y.boliana Yushania Yushania boliana \N \N \N \N \N 34403 B.media Briza Briza media \N \N \N \N \N 34404 D.falcata Deiregyne Deiregyne falcata \N \N \N \N \N 34405 S.dura Sclerochloa Sclerochloa dura common hardgrass \N \N \N \N 34406 I.hydrogetonoides Impatiens Impatiens hydrogetonoides \N \N \N \N \N 34407 C.ramillosa Coryphantha Coryphantha ramillosa \N \N \N \N \N 34408 D.curvata Dendrophthoe Dendrophthoe curvata \N \N \N \N \N 34409 P.pulchellum Phyllodium Phyllodium pulchellum \N \N \N \N \N 34410 M.vaginata Muhlenbergia Muhlenbergia vaginata \N \N \N \N \N 34411 S.magnificum Schumanniophyton Schumanniophyton magnificum \N \N \N \N \N 34412 I.tessellatus Indocalamus Indocalamus tessellatus \N \N \N \N \N 34413 C.kongkandanus Croton Croton kongkandanus \N \N \N \N \N 34414 H.laciniata Hesperis Hesperis laciniata \N \N \N \N \N 34415 \N varietas Lyonia ovalifolia var. hebecarpa \N \N \N \N \N 34416 A.americanus Acorus Acorus americanus sweetflag \N \N \N \N 34417 S.guayanensis Sagittaria Sagittaria guayanensis \N \N \N \N \N 34418 \N subtribe Vanillinae \N \N \N \N \N 34419 E.scrutor Encholirium Encholirium scrutor \N \N \N \N \N 34420 F.eriocephala Filago Filago eriocephala \N \N \N \N \N 34421 A.hohenackeri Amorphophallus Amorphophallus hohenackeri \N \N \N \N \N 34422 L.argenteus Lampranthus Lampranthus argenteus \N \N \N \N \N 34423 D.truncata Dumasia Dumasia truncata \N \N \N \N \N 34424 R.pringlei Randia Randia pringlei \N \N \N \N \N 34425 \N genus Neomortonia \N \N \N \N \N 34426 P.heptameris Pentaschistis Pentameris heptameris \N \N \N \N \N 34427 P.alkekengi Physalis Physalis alkekengi Chinese-lantern,Japanese lantern,winter-cherry \N \N \N \N 34428 J.australis Juglans Juglans australis \N \N \N \N \N 34429 L.mackliniae Lilium Lilium mackliniae \N \N \N \N \N 34430 A.subulatum Amomum Amomum subulatum greater cardamom,hill cardamom \N \N \N \N 34431 K.s.n. Kunzea Kunzea sp. F Toelken s.n. \N \N \N \N \N 34432 A.brevispathus Amorphophallus Amorphophallus brevispathus \N \N \N \N \N 34433 \N genus Chamaemeles \N \N \N \N \N 34434 T.texanum Tricerma Tricerma texanum \N \N \N \N \N 34435 C.arturus Celsia Celsia arturus \N \N \N \N \N 34436 P.phytolaccifolium Piper Piper phytolaccifolium \N \N \N \N \N 34437 P.langsdorfii Parodia Parodia langsdorfii \N \N \N \N \N 34438 \N subspecies Najas guadalupensis subsp. guadalupensis \N \N \N \N \N 34439 S.hayesii Solanum Solanum hayesii \N \N \N \N \N 34440 P.glabrescens Pseuduvaria Pseuduvaria glabrescens \N \N \N \N \N 34441 S.wolfii Syringa Syringa wolfii \N \N \N \N \N 34442 A.laurinum Acer Acer laurinum \N \N \N \N \N 34443 C.massiei Chionachne Chionachne massiei \N \N \N \N \N 34444 G.rigescens Gentiana Gentiana rigescens \N \N \N \N \N 34445 R.decidua Rupichloa Rupichloa decidua \N \N \N \N \N 34446 D.cuiabensis Dalbergia Dalbergia cuiabensis \N \N \N \N \N 34447 B.acaulis Brassavola Brassavola acaulis \N \N \N \N \N 34448 P.dulcis Phyllostachys Phyllostachys dulcis \N \N \N \N \N 34449 C.collococca Cordia Cordia collococca clammy-cherry,red manjack \N \N \N \N 34450 \N varietas Actinidia deliciosa var. chlorocarpa \N \N \N \N \N 34451 V.guianensis Vantanea Vantanea guianensis \N \N \N \N \N 34452 T.durum Triticum Triticum durum durum wheat \N \N \N \N 34453 S.spathacea Salvia Salvia spathacea \N \N \N \N \N 34454 C.alyssum Camelina Camelina alyssum \N \N \N \N \N 34455 D.borbonica Diospyros Diospyros borbonica \N \N \N \N \N 34456 T.tenuifolia Tongoloa Tongoloa tenuifolia \N \N \N \N \N 34457 S.obtusa Stipagrostis Stipagrostis obtusa \N \N \N \N \N 34458 M.conspicua Mammillaria Mammillaria conspicua \N \N \N \N \N 34459 L.harknessii Leptosiphon Leptosiphon harknessii \N \N \N \N \N 34460 \N subspecies Acacia mucronata subsp. longifolia \N \N \N \N \N 34461 J.castellanosii Jarava Jarava castellanosii \N \N \N \N \N 34462 S.pendulum Solanum Solanum pendulum \N \N \N \N \N 34463 E.spinosissimus Echinops Echinops spinosissimus \N \N \N \N \N 34464 \N genus Diamantina \N \N \N \N \N 34465 O.nuttallii Oenothera Oenothera nuttallii \N \N \N \N \N 34466 C.congesta Cousinia Cousinia congesta \N \N \N \N \N 34467 S.MGH-2003 Syzygium Syzygium cf. divaricatum MGH-2003 \N \N \N \N \N 34468 A.urdanetensis Aquilaria Aquilaria urdanetensis \N \N \N \N \N 34469 T.szowitsianum Thlaspi Thlaspi szowitsianum \N \N \N \N \N 34470 \N subspecies Armeria arenaria subsp. pradetensis \N \N \N \N \N 34471 M.6128 Myrmecophila Myrmecophila cf. tibicinis Brieger 6128 \N \N \N \N \N 34472 \N genus Cruciata \N \N \N \N \N 34473 H.sudanensis Hibiscus Hibiscus sudanensis \N \N \N \N \N 34474 S.aurea Scaphyglottis Scaphyglottis aurea \N \N \N \N \N 34475 B.repens Bacopa Bacopa repens \N \N \N \N \N 34476 A.nitida Angelica Angelica nitida \N \N \N \N \N 34477 T.barbata Tetrazygia Tetrazygia barbata \N \N \N \N \N 34478 \N subspecies Sidalcea oregana subsp. valida \N \N \N \N \N 34479 N.gracilis Neillia Neillia gracilis \N \N \N \N \N 34480 \N genus Connellia \N \N \N \N \N 34481 B.chlorantha Blakea Blakea chlorantha \N \N \N \N \N 34482 H.attenuata Hohenbergia Hohenbergia attenuata \N \N \N \N \N 34483 H.trichocarpa Hovenia Hovenia trichocarpa \N \N \N \N \N 34484 P.asiatica Prunella Prunella asiatica \N \N \N \N \N 34485 H.yunnanense Hedychium Hedychium yunnanense \N \N \N \N \N 34486 I.677 Inga Inga cf. edulis Klitgaard 677 \N \N \N \N \N 34487 S.bellidifolia Silene Silene bellidifolia \N \N \N \N \N 34488 \N genus Macbridea \N \N \N \N \N 34489 R.cucullatum Ribes Ribes cucullatum \N \N \N \N \N 34490 \N varietas Geranium sessiliflorum var. arenarium \N \N \N \N \N 34491 \N genus Dictyoloma \N \N \N \N \N 34492 A.tessmannii Aechmea Aechmea tessmannii \N \N \N \N \N 34493 P.muellerianus Phyllanthus Phyllanthus muellerianus \N \N \N \N \N 34494 Q.yunnanensis Quercus Quercus yunnanensis \N \N \N \N \N 34495 A.fimbriatum Artanema Artanema fimbriatum \N \N \N \N \N 34496 A.tragodes Acharia Acharia tragodes \N \N \N \N \N 34497 M.candidum Melastoma Melastoma candidum \N \N \N \N \N 34498 \N genus Microlagenaria \N \N \N \N \N 34499 \N genus Tyrbastes \N \N \N \N \N 34500 L.jaliscensis Lundellianthus Lundellianthus jaliscensis \N \N \N \N \N 34501 P.patens Primula Primula patens \N \N \N \N \N 34502 B.veraguensis Bathysa Bathysa veraguensis \N \N \N \N \N 34503 P.ovifarum Pachyphytum Pachyphytum ovifarum \N \N \N \N \N 34504 P.sinuosus Phyllobolus Phyllobolus sinuosus \N \N \N \N \N 34505 D.confertiflora Diospyros Diospyros confertiflora \N \N \N \N \N 34506 A.brunioides Acacia Acacia brunioides \N \N \N \N \N 34507 \N genus Neomoorea \N \N \N \N \N 34508 \N genus Pergularia \N \N \N \N \N 34509 \N genus Kamettia \N \N \N \N \N 34510 F.hermonis Ferula Ferula hermonis \N \N \N \N \N 34511 D.pseudocheiranthoides Draba Draba pseudocheiranthoides \N \N \N \N \N 34512 B.retusa Breynia Breynia retusa \N \N \N \N \N 34513 S.02-C10 Scurrula Scurrula sp. Han 02-C10 \N \N \N \N \N 34514 A.orophilum Alyssum Alyssum orophilum \N \N \N \N \N 34515 E.austriaca Euphorbia Euphorbia austriaca \N \N \N \N \N 34516 \N no rank Saccharum hybrid cultivar CoLk 8901 \N \N \N \N \N 34517 I.pottsii Isolepis Isolepis pottsii \N \N \N \N \N 34518 B.elegans Banksia Banksia elegans \N \N \N \N \N 34519 I.ilicifolia Itea Itea ilicifolia \N \N \N \N \N 34520 M.microphylla Madhuca Madhuca microphylla \N \N \N \N \N 34521 E.crossadenia Euphorbia Euphorbia crossadenia \N \N \N \N \N 34522 G.serpens Glossoloma Glossoloma serpens \N \N \N \N \N 34523 L.lucidum Ligustrum Ligustrum lucidum \N \N \N \N \N 34524 C.polyanthemos Cuscuta Cuscuta polyanthemos \N \N \N \N \N 34525 S.angelorum Sibara Sibara angelorum \N \N \N \N \N 34526 P.nivicola Passerina Passerina nivicola \N \N \N \N \N 34527 L.ambiguum Lomatium Lomatium ambiguum Wyeth biscuitroot \N \N \N \N 34528 H.eladioana Hyperbaena Hyperbaena eladioana \N \N \N \N \N 34529 M.tsonane Macaranga Macaranga tsonane \N \N \N \N \N 34530 P.grandidentata Populus Populus grandidentata bigtooth aspen \N \N \N \N 34531 M.ceylanicum Micromelum Micromelum ceylanicum \N \N \N \N \N 34532 R.gilgiana Reseda Reseda gilgiana \N \N \N \N \N 34533 S.marschallii Silene Silene marschallii \N \N \N \N \N 34534 M.bracteata Miconia Miconia bracteata \N \N \N \N \N 34535 C.kauaiensis Cyrtandra Cyrtandra kauaiensis \N \N \N \N \N 34536 \N genus Coffea coffee \N \N \N \N 34537 C.nekarmanica Cousinia Cousinia nekarmanica \N \N \N \N \N 34538 P.mariana Polygala Polygala mariana \N \N \N \N \N 34539 C.13128 Centranthus Centranthus cf. calcitrapae Romo & Soriano 13128 \N \N \N \N \N 34540 L.jolyi Lotus Lotus jolyi \N \N \N \N \N 34541 A.epigynum Asarum Asarum epigynum \N \N \N \N \N 34542 \N varietas Coreopsis grandiflora var. grandiflora \N \N \N \N \N 34543 C.polyspermum Chenopodium Chenopodium polyspermum \N \N \N \N \N 34544 G.paniculatus Gonocarpus Gonocarpus paniculatus \N \N \N \N \N 34545 \N genus Peliostomum \N \N \N \N \N 34546 M.minutiflorum Marathrum Marathrum minutiflorum \N \N \N \N \N 34547 \N genus Erysimum \N \N \N \N \N 34548 \N genus Retispatha \N \N \N \N \N 34549 \N subspecies Centaurea stoebe subsp. stoebe \N \N \N \N \N 38149 \N genus Meliosma \N \N \N \N \N 34550 T.crassa Tabernaemontana Tabernaemontana crassa \N \N \N \N \N 34551 \N genus Phryganocydia \N \N \N \N \N 34552 \N genus Stemona \N \N \N \N \N 34553 T.badachschanicus Tragopogon Tragopogon badachschanicus \N \N \N \N \N 34554 D.nivalis Douglasia Douglasia nivalis \N \N \N \N \N 34555 C.alpina Cicerbita Cicerbita alpina \N \N \N \N \N 34556 D.laciniatus Dipsacus Dipsacus laciniatus \N \N \N \N \N 34557 \N family Bromeliaceae bromeliad family \N \N \N \N 34558 G.hispida Gaertnera Gaertnera hispida \N \N \N \N \N 34559 M.schimperi Moraea Moraea schimperi \N \N \N \N \N 34560 E.dubium Eutrochium Eutrochium dubium \N \N \N \N \N 34561 \N genus Garrettia \N \N \N \N \N 34562 S.dichotoma Stachytarpheta Stachytarpheta dichotoma \N \N \N \N \N 34563 G.tomentella Glycine Glycine tomentella wooly glycine \N \N \N \N 34564 M.rugosa Malesherbia Malesherbia rugosa \N \N \N \N \N 34565 E.schrenkianus Elymus Elymus schrenkianus \N \N \N \N \N 34566 P.biseta Pterostylis Pterostylis biseta \N \N \N \N \N 34567 V.marchantii Villarsia Villarsia marchantii \N \N \N \N \N 34568 C.duvauxii Carduncellus Carduncellus duvauxii \N \N \N \N \N 34569 \N genus Spiranthes \N \N \N \N \N 34570 P.flavidum Piper Piper flavidum \N \N \N \N \N 34571 C.mossambicense Combretum Combretum mossambicense \N \N \N \N \N 34572 O.31-01 Ochna Ochna sp. Davis 31-01 \N \N \N \N \N 34573 \N genus Inhambanella \N \N \N \N \N 34574 L.congdonii Lewisia Lewisia congdonii \N \N \N \N \N 34575 S.gossweileri Schizostephanus Schizostephanus gossweileri \N \N \N \N \N 34576 \N genus Microlepidium \N \N \N \N \N 34577 B.montana Babiana Babiana montana \N \N \N \N \N 34578 A.transsilvanica Anemone Anemone transsilvanica \N \N \N \N \N 34579 \N varietas Ocimum gratissimum var. macrophyllum \N \N \N \N \N 34580 S.faguetiana Shorea Shorea faguetiana \N \N \N \N \N 34581 R.campanulatum Rhododendron Rhododendron campanulatum \N \N \N \N \N 34582 V.selkirkii Viola Viola selkirkii \N \N \N \N \N 34583 \N genus Lagophylla \N \N \N \N \N 34584 C.morettiana Campanula Campanula morettiana \N \N \N \N \N 34585 D.lachnostachys Dalea Dalea lachnostachys \N \N \N \N \N 34586 T.ochoterenae Tetramerium Tetramerium ochoterenae \N \N \N \N \N 34587 C.unalaschkensis Cornus Cornus unalaschkensis \N \N \N \N \N 34588 A.mariae Androsace Androsace mariae \N \N \N \N \N 34589 A.javanica Acriopsis Acriopsis javanica \N \N \N \N \N 34590 M.SGR-2009 Morinda Morinda sp. 2 SGR-2009 \N \N \N \N \N 34591 E.recurva Eubotrys Eubotrys recurva \N \N \N \N \N 34592 H.alsinoides Helichrysum Helichrysum alsinoides \N \N \N \N \N 34593 O.tesota Olneya Olneya tesota desert ironwood \N \N \N \N 34594 D.haematocalyx Dianthus Dianthus haematocalyx \N \N \N \N \N 34595 S.sessiliflora Siparuna Siparuna sessiliflora \N \N \N \N \N 34596 B.tripartita Bidens Bidens tripartita \N \N \N \N \N 34597 B.pendula Begonia Begonia pendula \N \N \N \N \N 34598 P.canthiiflora Pauridiantha Pauridiantha canthiiflora \N \N \N \N \N 34599 M.scortechinii Magnolia Magnolia scortechinii \N \N \N \N \N 34600 C.passerinum Cypripedium Cypripedium passerinum \N \N \N \N \N 34601 \N genus Siphonandra \N \N \N \N \N 34602 K.bulbosa Kyllinga Kyllinga bulbosa \N \N \N \N \N 34603 S.parviflorus Spathacanthus Spathacanthus parviflorus \N \N \N \N \N 34604 P.hoodii Phlox Phlox hoodii \N \N \N \N \N 34605 A.chartacea Acacia Acacia chartacea \N \N \N \N \N 34606 \N subspecies Aspalathus chenopoda subsp. chenopoda \N \N \N \N \N 34607 \N genus Glumicalyx \N \N \N \N \N 34608 S.mentosa Sulcorebutia Sulcorebutia mentosa \N \N \N \N \N 34609 A.tremula Astrocasia Astrocasia tremula \N \N \N \N \N 34610 N.crenulata Naringi Naringi crenulata \N \N \N \N \N 34611 A.leptaleum Antirrhinum Antirrhinum leptaleum \N \N \N \N \N 34612 A.verticillata Acacia Acacia verticillata \N \N \N \N \N 34613 S.grandiflora Schubertia Schubertia grandiflora \N \N \N \N \N 34614 C.8530 Campylandra Campylandra sp. Tamura et al. 8530 \N \N \N \N \N 34615 \N genus Halesia \N \N \N \N \N 34616 S.cochlearis Saxifraga Saxifraga cochlearis \N \N \N \N \N 34617 P.tepamo Pachycereus Pachycereus tepamo \N \N \N \N \N 34618 S.macrocarpum Sisyrinchium Sisyrinchium macrocarpum \N \N \N \N \N 34619 S.venosus Streptocarpus Streptocarpus venosus \N \N \N \N \N 34620 \N genus Arthrocnemum \N \N \N \N \N 34621 T.dioica Thymelaea Thymelaea dioica \N \N \N \N \N 34622 S.baderoa Sicyos Sicyos baderoa \N \N \N \N \N 34623 M.laevis Moluccella Moluccella laevis bells-of-Ireland \N \N \N \N 34624 U.humidicola Urochloa Urochloa humidicola \N \N \N \N \N 34625 P.bolanderi Phalacroseris Phalacroseris bolanderi \N \N \N \N \N 34626 P.prostrata Paratheria Paratheria prostrata \N \N \N \N \N 34627 \N subspecies Eremophila glabra subsp. glabra \N \N \N \N \N 34628 H.rigidus Holcus Holcus rigidus \N \N \N \N \N 34629 \N subspecies Eriosyce subgibbosa subsp. subgibbosa \N \N \N \N \N 34630 \N genus Grusonia \N \N \N \N \N 34631 A.schoberioides Asparagus Asparagus schoberioides \N \N \N \N \N 34632 H.tibeticum Hedysarum Hedysarum tibeticum \N \N \N \N \N 34633 A.lasiostyla Adinandra Adinandra lasiostyla \N \N \N \N \N 34634 \N genus Werneria \N \N \N \N \N 34635 M.aurea Maxillaria Maxillaria aurea \N \N \N \N \N 34636 \N subtribe Aeluropinae \N \N \N \N \N 34637 R.persetosa Rosa Rosa persetosa \N \N \N \N \N 34638 \N genus Viguiera \N \N \N \N \N 34639 S.variicalyx Selago Selago variicalyx \N \N \N \N \N 34640 G.98-13 Globba Globba aff. schomburgkii Williams 98-13 \N \N \N \N \N 34641 D.wrightii Datura Datura wrightii \N \N \N \N \N 34642 O.salteri Oxalis Oxalis salteri \N \N \N \N \N 34643 O.cultratum Oncidium Oncidium cultratum \N \N \N \N \N 34644 F.californicum Fremontodendron Fremontodendron californicum Fremontia,flannelbush \N \N \N \N 34645 Z.mackayi Zygopetalum Zygopetalum mackayi \N \N \N \N \N 34646 \N genus Epacris \N \N \N \N \N 34647 P.arborescens Physalis Physalis arborescens \N \N \N \N \N 34648 B.australis Bathysa Bathysa australis \N \N \N \N \N 34649 C.pseudofragrans Croton Croton pseudofragrans \N \N \N \N \N 34650 \N varietas Costus lima var. lima \N \N \N \N \N 34651 I.hispidus Isodon Isodon hispidus \N \N \N \N \N 34652 \N no rank unclassified Papillionoideae \N \N \N \N \N 34653 S.spinosa Satureja Satureja spinosa \N \N \N \N \N 34654 \N genus Centotheca \N \N \N \N \N 34655 \N varietas Cliffortia cuneata var. cuneata \N \N \N \N \N 34656 C.gigantea Coreopsis Coreopsis gigantea \N \N \N \N \N 34657 \N family Nanodeaceae \N \N \N \N \N 34658 D.ouaiemense Dracophyllum Dracophyllum ouaiemense \N \N \N \N \N 34659 \N subspecies Sarracenia purpurea subsp. gibbosa \N \N \N \N \N 34660 P.ignea Phycella Phycella ignea \N \N \N \N \N 34661 \N genus Triuris \N \N \N \N \N 34662 E.sphaerorhiza Euphorbia Euphorbia sphaerorhiza \N \N \N \N \N 34663 L.peucedanoides Laserpitium Laserpitium peucedanoides \N \N \N \N \N 34664 C.antifebrile Callaeum Callaeum antifebrile \N \N \N \N \N 34665 \N genus Sclerocroton \N \N \N \N \N 34666 A.brejinhoensis Attalea Attalea brejinhoensis \N \N \N \N \N 34667 P.millelobata Packera Packera millelobata Uinta ragwort \N \N \N \N 34668 \N genus Xanthorrhoea grass trees \N \N \N \N 34669 G.robertianum Geranium Geranium robertianum \N \N \N \N \N 34670 P.jucundum Polygonum Polygonum jucundum \N \N \N \N \N 34671 P.caespitosa Pseudopentameris Pseudopentameris caespitosa \N \N \N \N \N 34672 S.juttae Synaptophyllum Synaptophyllum juttae \N \N \N \N \N 34673 C.mevei Cynanchum Cynanchum mevei \N \N \N \N \N 34674 \N genus Putranjiva \N \N \N \N \N 34675 L.valdiviana Lemna Lemna valdiviana \N \N \N \N \N 34676 O.guineensis Otomeria Otomeria guineensis \N \N \N \N \N 34677 S.atriplicinum Scleroblitum Scleroblitum atriplicinum \N \N \N \N \N 34678 E.auriculata Elaeagia Elaeagia auriculata \N \N \N \N \N 34679 C.pachystachya Carex Carex pachystachya \N \N \N \N \N 34680 V.cordifolia Viguiera Viguiera cordifolia \N \N \N \N \N 34681 P.sylvestris Poa Poa sylvestris \N \N \N \N \N 34682 Z.perennis Zea Zea mays subsp. mays x Zea perennis \N \N \N \N \N 34683 C.trifoliata Citrus Citrus sinensis x Citrus trifoliata Carrizo citrange \N \N \N \N 34684 V.krumovii Veronica Veronica krumovii \N \N \N \N \N 34685 N.alpina Nothofagus Nothofagus x alpina rauli beech \N \N \N \N 34686 \N genus Sagraea \N \N \N \N \N 34687 W.densiflora Wurmbea Wurmbea densiflora \N \N \N \N \N 34688 C.refracta Cymbocarpa Cymbocarpa refracta \N \N \N \N \N 34689 R.williamsianum Rhododendron Rhododendron williamsianum \N \N \N \N \N 34690 H.linearifolia Haplostachys Haplostachys linearifolia \N \N \N \N \N 34691 O.sellowiana Oxalis Oxalis sellowiana \N \N \N \N \N 34692 P.domingensis Psychotria Psychotria domingensis \N \N \N \N \N 34693 E.0460 Epimedium Epimedium sp. Guo 0460 \N \N \N \N \N 34694 S.hookeri Sphaerocoma Sphaerocoma hookeri \N \N \N \N \N 34695 \N subspecies Disperis bolusiana subsp. bolusiana \N \N \N \N \N 34696 \N genus Pakaraimaea \N \N \N \N \N 34697 \N genus Trichospermum \N \N \N \N \N 34698 C.torulosa Carmichaelia Carmichaelia torulosa \N \N \N \N \N 34699 \N subspecies Gilia tricolor subsp. diffusa \N \N \N \N \N 34700 P.micralabastra Psychotria Psychotria micralabastra \N \N \N \N \N 34701 \N genus Dauresia \N \N \N \N \N 34702 E.portlandica Euphorbia Euphorbia portlandica \N \N \N \N \N 34703 H.JT-2003 Haworthia Haworthia cf. maughanii JT-2003 \N \N \N \N \N 34704 W.cernua Wahlenbergia Wahlenbergia cernua \N \N \N \N \N 34705 S.aciphylla Senna Senna aciphylla \N \N \N \N \N 34706 S.sieberi Styrax Styrax sieberi \N \N \N \N \N 34707 S.6937/2 Salicornia Salicornia sp. Mucina 6937/2 \N \N \N \N \N 34708 A.grossedentata Ampelopsis Ampelopsis grossedentata \N \N \N \N \N 34709 C.cervicaria Campanula Campanula cervicaria \N \N \N \N \N 34710 C.comosus Centropogon Centropogon comosus \N \N \N \N \N 34711 R.wallichii Rhododendron Rhododendron wallichii \N \N \N \N \N 34712 D.scoparia Distichlis Distichlis scoparia \N \N \N \N \N 34713 D.tenuisiliqua Diplotaxis Diplotaxis tenuisiliqua \N \N \N \N \N 34714 G.35194 Gagea Gagea sp. Zarrei & Kamrani 35194 \N \N \N \N \N 34715 Z.coreana Zabelia Zabelia coreana \N \N \N \N \N 34716 P.caobangensis Paris Paris caobangensis \N \N \N \N \N 34717 L.cobrense Lithospermum Lithospermum cobrense \N \N \N \N \N 34718 C.ternatea Clitoria Clitoria ternatea \N \N \N \N \N 34719 P.reticulatum Phragmipedium Phragmipedium reticulatum \N \N \N \N \N 34720 S.tanakana Symplocos Symplocos tanakana \N \N \N \N \N 34721 O.villosissima Ononis Ononis villosissima \N \N \N \N \N 34722 D.elliptica Daviesia Daviesia elliptica \N \N \N \N \N 34723 S.terminale Solanum Solanum terminale \N \N \N \N \N 34724 \N genus Spartothamnella \N \N \N \N \N 34725 D.odudiana Draba Draba odudiana \N \N \N \N \N 34726 T.hookeri Tetrastigma Tetrastigma hookeri \N \N \N \N \N 34727 R.montana Radamaea Radamaea montana \N \N \N \N \N 34728 \N genus Carlina \N \N \N \N \N 34729 O.angustifolium Ornithogalum Ornithogalum angustifolium \N \N \N \N \N 34730 T.capuronii Tabernaemontana Tabernaemontana capuronii \N \N \N \N \N 34731 \N subspecies Centaurea boissieri subsp. funkii \N \N \N \N \N 34732 E.rectisetus Elymus Elymus rectisetus \N \N \N \N \N 34733 L.montana Limnanthes Limnanthes montana \N \N \N \N \N 34734 O.lasiandra Oxalis Oxalis lasiandra \N \N \N \N \N 34735 I.coriacea Ilex Ilex coriacea baygallbush,large gallberry \N \N \N \N 34736 T.borbonica Tarenna Tarenna borbonica \N \N \N \N \N 34737 \N genus Enhalus \N \N \N \N \N 34738 P.latifolium Phagnalon Phagnalon latifolium \N \N \N \N \N 34739 F.villosa Faika Faika villosa \N \N \N \N \N 34740 G.lagodechianus Galanthus Galanthus lagodechianus \N \N \N \N \N 34741 \N genus Primulina \N \N \N \N \N 34742 G.geminiflora Gnidia Gnidia geminiflora \N \N \N \N \N 34743 B.foliosa Begonia Begonia foliosa \N \N \N \N \N 34744 A.tetragonophylla Acacia Acacia tetragonophylla kurara \N \N \N \N 34745 R.nessensis Rubus Rubus nessensis \N \N \N \N \N 39118 \N genus Peracarpa \N \N \N \N \N 34746 K.angustifolia Kyphocarpa Kyphocarpa angustifolia \N \N \N \N \N 34747 C.adscendens Caralluma Caralluma adscendens \N \N \N \N \N 34748 \N subspecies Helictotrichon pratense subsp. pratense \N \N \N \N \N 34749 \N genus Talinopsis \N \N \N \N \N 34750 \N varietas Rosa acicularis var. nipponensis \N \N \N \N \N 34751 \N family Bataceae \N \N \N \N \N 34752 \N genus Acanthocladus \N \N \N \N \N 34753 S.gracilis Stubendorffia Stubendorffia gracilis \N \N \N \N \N 34754 P.trichoides Panicum Panicum trichoides \N \N \N \N \N 34755 \N genus Camptosema \N \N \N \N \N 34756 \N genus Nesogenes \N \N \N \N \N 34757 T.regis-jubae Taeckholmia Taeckholmia regis-jubae \N \N \N \N \N 34758 \N varietas Correa lawrenceana var. cordifolia \N \N \N \N \N 34759 Z.minutiflora Zehneria Zehneria minutiflora \N \N \N \N \N 34760 P.stachyofolia Paneroa Paneroa stachyofolia \N \N \N \N \N 34761 G.peloponnesiacum Geranium Geranium peloponnesiacum \N \N \N \N \N 34762 \N genus Abildgaardia \N \N \N \N \N 34763 D.cryptocalyx Disterigma Disterigma cryptocalyx \N \N \N \N \N 34764 S.mannii Solanecio Solanecio mannii \N \N \N \N \N 34765 \N genus Milligania \N \N \N \N \N 34766 T.cordifolioides Tripterospermum Tripterospermum cordifolioides \N \N \N \N \N 34767 S.confinis Schismatoglottis Schismatoglottis confinis \N \N \N \N \N 34768 T.europaea Tilia Tilia x europaea \N \N \N \N \N 34769 L.macrantha Ledenbergia Ledenbergia macrantha \N \N \N \N \N 34770 V.rostrata Viola Viola rostrata nagahashi-sumire \N \N \N \N 34771 G.youroumaynensis Gonolobus Gonolobus youroumaynensis \N \N \N \N \N 34772 P.lanceolata Pegolettia Pegolettia lanceolata \N \N \N \N \N 34773 \N genus Archidendropsis \N \N \N \N \N 34774 L.huaronensis Lupinus Lupinus huaronensis \N \N \N \N \N 34775 \N subspecies Silene hookeri subsp. hookeri \N \N \N \N \N 34776 \N genus Epilasia \N \N \N \N \N 34777 V.C1139 Vallisneria Vallisneria sp. C1139 \N \N \N \N \N 34778 H.tetraphylla Hippuris Hippuris tetraphylla \N \N \N \N \N 34779 \N genus Lescaillea \N \N \N \N \N 34780 D.luteola Draba Draba luteola \N \N \N \N \N 34781 \N genus Ezosciadium \N \N \N \N \N 34782 Y.campestris Yucca Yucca campestris plains yucca \N \N \N \N 34783 D.triflora Daviesia Daviesia triflora \N \N \N \N \N 34784 T.JS6080 unclassified Taraxacum Taraxacum (sect. Mongolica) sp. JS6080 \N \N \N \N \N 34785 X.bartschioides Xizangia Xizangia bartschioides \N \N \N \N \N 34786 C.deflexa Callitriche Callitriche deflexa \N \N \N \N \N 34787 S.setaceum Sisyrinchium Sisyrinchium setaceum \N \N \N \N \N 34788 C.poilanei Croton Croton poilanei \N \N \N \N \N 34789 \N subspecies Brassica insularis subsp. insularis \N \N \N \N \N 34790 P.haussknechtii Pilostyles Pilostyles haussknechtii \N \N \N \N \N 34791 \N genus Pentameris \N \N \N \N \N 34792 R.ZAF-2463 Rhadamanthus Rhadamanthus sp. ZAF-2463 \N \N \N \N \N 34793 T.kindingeri Tragopogon Tragopogon kindingeri \N \N \N \N \N 34794 \N family Fouquieriaceae ocotillo family \N \N \N \N 34795 C.revoluta Clethra Clethra revoluta \N \N \N \N \N 34796 M.virgata Moraea Moraea virgata \N \N \N \N \N 34797 \N varietas Prunus maritima var. gravesii \N \N \N \N \N 34798 M.arrectus Melocalamus Melocalamus arrectus \N \N \N \N \N 34799 P.mume Prunus Prunus mume Japanese apricot,ume \N \N \N \N 34800 \N varietas Gaultheria leucocarpa var. cumingiana \N \N \N \N \N 34801 \N varietas Linum monogynum var. chathamicum \N \N \N \N \N 34802 C.sativa Castanea Castanea sativa European chestnut \N \N \N \N 34803 C.614 Chimonocalamus Chimonocalamus sp. Hodkinson 614 \N \N \N \N \N 34804 M.reverchonii Mercurialis Mercurialis elliptica x Mercurialis reverchonii \N \N \N \N \N 34805 C.amabile Cynoglossum Cynoglossum amabile \N \N \N \N \N 34806 \N subspecies Limnanthes alba subsp. alba \N \N \N \N \N 34807 Y.glauca Yucca Yucca glauca \N \N \N \N \N 34808 P.lanata Paederia Paederia lanata \N \N \N \N \N 34809 M.calycina Micranthes Micranthes calycina \N \N \N \N \N 34810 S.pruinosum Sisyrinchium Sisyrinchium pruinosum \N \N \N \N \N 34811 C.wrightii Cordylanthus Cordylanthus wrightii \N \N \N \N \N 34812 C.buraeavii Cayaponia Cayaponia buraeavii \N \N \N \N \N 34813 R.hancockii Rhododendron Rhododendron hancockii \N \N \N \N \N 34814 \N genus Vandasina \N \N \N \N \N 34815 C.alba Caltha Caltha alba \N \N \N \N \N 34816 P.plantaginea Prescottia Prescottia plantaginea \N \N \N \N \N 34817 L.stylosa Leavenworthia Leavenworthia stylosa \N \N \N \N \N 34818 S.atrovirens Scirpus Scirpus atrovirens \N \N \N \N \N 34819 L.major Limosella Limosella major \N \N \N \N \N 34820 D.pachycentrum Delphinium Delphinium pachycentrum \N \N \N \N \N 34821 T.spananthum Trifolium Trifolium spananthum \N \N \N \N \N 34822 P.communis Pyrus Pyrus x bretschneideri x Pyrus communis \N \N \N \N \N 34823 R.membranacea Readea Readea membranacea \N \N \N \N \N 34824 C.monticola Ceropegia Ceropegia monticola \N \N \N \N \N 34825 C.spectabile Cuatrecasasiodendron Cuatrecasasiodendron spectabile \N \N \N \N \N 34826 V.magnificum Vincetoxicum Vincetoxicum magnificum \N \N \N \N \N 34827 P.stipularis Potentilla Potentilla stipularis \N \N \N \N \N 34828 A.georgiana Amorpha Amorpha georgiana \N \N \N \N \N 34829 C.obliquus Cyrtanthus Cyrtanthus obliquus \N \N \N \N \N 34830 P.aspera Pityopsis Pityopsis aspera \N \N \N \N \N 34831 \N subspecies Alyssum repens subsp. trichostachyum \N \N \N \N \N 34832 \N subspecies Iris spuria subsp. carthaliniae \N \N \N \N \N 34833 D.montana Diospyros Diospyros montana \N \N \N \N \N 34834 H.sampsonii Hypericum Hypericum sampsonii \N \N \N \N \N 34835 A.cardiocarpus Alectryon Alectryon cardiocarpus \N \N \N \N \N 34836 R.lochiae Rhododendron Rhododendron lochiae \N \N \N \N \N 34837 S.ternatum Sedum Sedum ternatum \N \N \N \N \N 34838 S.repens Salix Salix aurita x Salix repens subsp. repens \N \N \N \N \N 34839 P.lasiocarpum Platymiscium Platymiscium lasiocarpum \N \N \N \N \N 34840 \N genus Scleronema \N \N \N \N \N 34841 A.euprepes Apochloa Apochloa euprepes \N \N \N \N \N 34842 D.suave Delphinium Delphinium suave \N \N \N \N \N 34843 R.delavayi Rhododendron Rhododendron cyanocarpum x Rhododendron delavayi \N \N \N \N \N 34844 M.thymifolia Melaleuca Melaleuca thymifolia \N \N \N \N \N 34845 \N varietas Kleinia abyssinica var. hildebrandtii \N \N \N \N \N 34846 A.verrucosa Arrabidaea Arrabidaea verrucosa \N \N \N \N \N 34847 S.Sertife Sertifera Sertifera sp. Sertife \N \N \N \N \N 34848 Q.subsericea Quercus Quercus subsericea \N \N \N \N \N 34849 \N genus Handeliodendron \N \N \N \N \N 34850 \N varietas Arrhenatherum album var. erianthum \N \N \N \N \N 34851 C.sidoides Corchorus Corchorus sidoides \N \N \N \N \N 34852 L.opacum Laccosperma Laccosperma opacum \N \N \N \N \N 34853 G.przewalskii Gymnocarpos Gymnocarpos przewalskii \N \N \N \N \N 34854 I.stenophylla Iris Iris stenophylla \N \N \N \N \N 34855 V.dentatum Viburnum Viburnum dentatum arrow wood \N \N \N \N 34856 C.610 Cassia Cassia sp. Oliveira 610 \N \N \N \N \N 34857 M.auriculata Macrocarpaea Macrocarpaea auriculata \N \N \N \N \N 34858 \N varietas Saintpaulia pendula var. pendula \N \N \N \N \N 34859 D.panamensis Desmopsis Desmopsis panamensis \N \N \N \N \N 34860 \N varietas Costus guanaiensis var. guanaiensis \N \N \N \N \N 34861 S.cernua Staberoha Staberoha cernua \N \N \N \N \N 34862 S.bromelioides Sisyrinchium Sisyrinchium bromelioides \N \N \N \N \N 34863 P.kuramica Prunus Prunus kuramica \N \N \N \N \N 34864 \N genus Arnoglossum \N \N \N \N \N 34865 S.chrysanthus Syngonanthus Syngonanthus chrysanthus \N \N \N \N \N 34866 T.celebicus Timonius Timonius celebicus \N \N \N \N \N 34867 D.TNS:KI-102 Dalzellia Dalzellia sp. TNS:KI-102 \N \N \N \N \N 34868 L.balansae Lithocarpus Lithocarpus balansae \N \N \N \N \N 34869 S.cinerea Sabicea Sabicea cinerea \N \N \N \N \N 34870 A.mertensii Agrostis Agrostis mertensii \N \N \N \N \N 34871 C.blanchetii Chamaecrista Chamaecrista blanchetii \N \N \N \N \N 34872 C.ophiolithica Carex Carex ophiolithica \N \N \N \N \N 34873 B.gregaria Brunsvigia Brunsvigia gregaria \N \N \N \N \N 34874 O.capensis Othonna Othonna capensis \N \N \N \N \N 34875 \N subspecies Campanula decumbens subsp. baetica \N \N \N \N \N 34876 F.subpuberula Ficus Ficus subpuberula \N \N \N \N \N 34877 C.pernambucensis Cleome Cleome pernambucensis \N \N \N \N \N 34878 A.sepalosa Anthericopsis Anthericopsis sepalosa \N \N \N \N \N 34879 \N genus Toechima \N \N \N \N \N 34880 P.druryi Paphiopedilum Paphiopedilum druryi \N \N \N \N \N 34881 \N varietas Fraxinus excelsior var. diversifolia \N \N \N \N \N 34882 S.cochlearis Sinningia Sinningia cochlearis \N \N \N \N \N 34883 D.CANB634123 Diuris Diuris aff. ochroma CANB634123 \N \N \N \N \N 34884 C.spectabilis Cosmocalyx Cosmocalyx spectabilis \N \N \N \N \N 34885 \N genus Angkalanthus \N \N \N \N \N 34886 \N genus Pterorhachis \N \N \N \N \N 34887 A.pulchella Aspicarpa Aspicarpa pulchella \N \N \N \N \N 34888 \N subtribe Notantherinae \N \N \N \N \N 34889 \N genus Peraphyllum \N \N \N \N \N 34890 A.myrciifolia Alibertia Alibertia myrciifolia \N \N \N \N \N 34891 P.philippianum Pappophorum Pappophorum philippianum \N \N \N \N \N 34892 C.chimboracensis Croton Croton chimboracensis \N \N \N \N \N 34893 C.equisetifolia Casuarina Casuarina glauca x Casuarina equisetifolia \N \N \N \N \N 34894 H.helferi Hopea Hopea helferi \N \N \N \N \N 34895 F.pterigosperma Fimbristylis Fimbristylis pterigosperma \N \N \N \N \N 34896 \N genus Polyachyrus \N \N \N \N \N 34897 \N genus Fosterella \N \N \N \N \N 34898 C.heterotrichum Cyphostemma Cyphostemma heterotrichum \N \N \N \N \N 34899 P.ciliolaris Pimelea Pimelea ciliolaris \N \N \N \N \N 34900 \N varietas Amphipappus fremontii var. spinosus \N \N \N \N \N 34901 D.systyla Draperia Draperia systyla \N \N \N \N \N 34902 G.gypsophilum Geniostemon Geniostemon gypsophilum \N \N \N \N \N 34903 R.maritimum Robsonodendron Robsonodendron maritimum \N \N \N \N \N 34904 E.crinalis Eleocharis Eleocharis crinalis \N \N \N \N \N 34905 C.xanthocephala Centaurea Centaurea xanthocephala \N \N \N \N \N 34906 A.peltata Alocasia Alocasia peltata \N \N \N \N \N 34907 \N genus Euscaphis \N \N \N \N \N 34908 C.carniolicum Cirsium Cirsium carniolicum \N \N \N \N \N 34909 R.dielsianum Rhododendron Rhododendron dielsianum \N \N \N \N \N 34910 A.tessellata Allocasuarina Allocasuarina tessellata \N \N \N \N \N 34911 \N subspecies Astragalus hoantchy subsp. dshimensis \N \N \N \N \N 34912 D.vestita Diospyros Diospyros vestita \N \N \N \N \N 34913 \N genus Pereskiopsis \N \N \N \N \N 34914 N.mandshurica Neomolinia Neomolinia mandshurica \N \N \N \N \N 34915 P.samoensis Polyscias Polyscias samoensis \N \N \N \N \N 34916 T.minutiflora Thelethylax Thelethylax minutiflora \N \N \N \N \N 34917 P.papyracea Pericallis Pericallis papyracea \N \N \N \N \N 34918 A.gracilis Ainsliaea Ainsliaea gracilis \N \N \N \N \N 34919 A.venetum Apocynum Apocynum venetum \N \N \N \N \N 34920 T.funebris Tillandsia Tillandsia funebris \N \N \N \N \N 34921 B.filipes Besleria Besleria filipes \N \N \N \N \N 34922 G.lanuginosum Geranium Geranium lanuginosum \N \N \N \N \N 34923 C.kirkii Corchorus Corchorus kirkii \N \N \N \N \N 34924 A.hierrense Argyranthemum Argyranthemum hierrense \N \N \N \N \N 34925 K.costaricensis Kefersteinia Kefersteinia costaricensis \N \N \N \N \N 34926 R.californicum Ribes Ribes californicum hillside gooseberry \N \N \N \N 34927 L.albida Laelia Laelia albida \N \N \N \N \N 34928 D.pulchellum Dendrobium Dendrobium pulchellum \N \N \N \N \N 34929 C.ramenskii Carex Carex ramenskii \N \N \N \N \N 34930 \N genus Pentaplaris \N \N \N \N \N 34931 \N genus Iteadaphne \N \N \N \N \N 34932 C.259 Cladium Cladium sp. Mayo 259 \N \N \N \N \N 34933 C.bainesii Cyphostemma Cyphostemma bainesii \N \N \N \N \N 34934 N.glomerulosa Nepeta Nepeta glomerulosa \N \N \N \N \N 34935 A.jurii Aconogonon Aconogonon jurii \N \N \N \N \N 34936 R.nutkana Rosa Rosa nutkana \N \N \N \N \N 34937 D.dongrakensis Didymocarpus Didymocarpus dongrakensis \N \N \N \N \N 34938 P.pulcherrimus Psephellus Psephellus pulcherrimus \N \N \N \N \N 34939 H.916 Hedychium Hedychium sp. Newman 916 \N \N \N \N \N 34940 L.lamarum Ligularia Ligularia lamarum \N \N \N \N \N 34941 P.olivieri Plocama Plocama olivieri \N \N \N \N \N 34942 A.scottianum Angraecum Angraecum scottianum \N \N \N \N \N 34943 P.questionis Peperomia Peperomia questionis \N \N \N \N \N 34944 \N genus Calycera \N \N \N \N \N 34945 X.grandiflora x Crataemespilus x Crataemespilus grandiflora \N \N \N \N \N 34946 C.toumeyi Calylophus Calylophus toumeyi \N \N \N \N \N 34947 H.robertia Hypochaeris Hypochaeris robertia \N \N \N \N \N 34948 P.epilosa Primula Primula epilosa \N \N \N \N \N 34949 I.colchica Iris Iris colchica \N \N \N \N \N 34950 V.jolyi Vellozia Vellozia jolyi \N \N \N \N \N 34951 \N subspecies Oenothera picensis subsp. picensis \N \N \N \N \N 34952 F.glacialis Festuca Festuca glacialis \N \N \N \N \N 34953 I.dawoensis Isodon Isodon dawoensis \N \N \N \N \N 34954 R.trinii Renvoizea Renvoizea trinii \N \N \N \N \N 34955 S.grandiflorum Sideroxylon Sideroxylon grandiflorum \N \N \N \N \N 34956 L.australe Lycium Lycium australe \N \N \N \N \N 34957 V.hirundinaria Vincetoxicum Vincetoxicum hirundinaria \N \N \N \N \N 34958 S.spinescens Sclerophylax Sclerophylax spinescens \N \N \N \N \N 34959 P.kapela Paronychia Paronychia kapela \N \N \N \N \N 34960 D.lucida Duguetia Duguetia lucida \N \N \N \N \N 34961 D.cathayensis Diospyros Diospyros cathayensis \N \N \N \N \N 34962 E.paniculatus Echinodorus Echinodorus paniculatus \N \N \N \N \N 34963 P.nubicola Plantago Plantago nubicola \N \N \N \N \N 34964 \N varietas Cuscuta corymbosa var. stylosa \N \N \N \N \N 34965 C.dolichophylla Cousinia Cousinia dolichophylla \N \N \N \N \N 34966 C.chilense Clinopodium Clinopodium chilense \N \N \N \N \N 34967 C.albursina Carex Carex albursina white bear sedge \N \N \N \N 34968 B.brenesii Beilschmiedia Beilschmiedia brenesii \N \N \N \N \N 34969 E.paniciformis Eragrostis Eragrostis paniciformis \N \N \N \N \N 34970 T.pusillum Trillium Trillium pusillum least trillium \N \N \N \N 34971 \N varietas Euonymus fortunei var. radicans \N \N \N \N \N 34972 S.cyanandrus Streptocarpus Streptocarpus cyanandrus \N \N \N \N \N 34973 O.corymbosum Ornithogalum Ornithogalum corymbosum \N \N \N \N \N 34974 M.punctata Macrocatalpa Macrocatalpa punctata \N \N \N \N \N 34975 S.cydonia Scilla Scilla cydonia \N \N \N \N \N 34976 \N genus Stemmadenia \N \N \N \N \N 34977 \N subspecies Genista pumila subsp. rigidissima \N \N \N \N \N 34978 B.laevigata Biscutella Biscutella laevigata \N \N \N \N \N 34979 \N subspecies Uebelmannia pectinifera subsp. flavispina \N \N \N \N \N 34980 P.eriostoma Pentaschistis Pentameris eriostoma \N \N \N \N \N 34981 E.paniculata Erica Erica paniculata \N \N \N \N \N 34982 \N varietas Orobanche pycnostachya var. pycnostachya \N \N \N \N \N 34983 \N genus Stuckenia \N \N \N \N \N 34984 \N genus Ormocarpopsis \N \N \N \N \N 34985 S.ambigua Salicornia Salicornia ambigua \N \N \N \N \N 34986 \N genus Erucaria \N \N \N \N \N 34987 P.ovata Pineda Pineda ovata \N \N \N \N \N 34988 H.citriodora Hornschuchia Hornschuchia citriodora \N \N \N \N \N 34989 \N varietas Haworthia coarctata var. tenuis \N \N \N \N \N 34990 H.hieronymi Habenaria Habenaria hieronymi \N \N \N \N \N 34991 G.montana Galeandra Galeandra montana \N \N \N \N \N 34992 G.rusbyi Graptopetalum Graptopetalum rusbyi \N \N \N \N \N 34993 S.ramosa Sopubia Sopubia ramosa \N \N \N \N \N 34994 P.CLP-2006 Plumbago Plumbago sp. CLP-2006 \N \N \N \N \N 34995 L.tenuicaule Lepidium Lepidium tenuicaule \N \N \N \N \N 34996 R.barbatum Rhododendron Rhododendron barbatum \N \N \N \N \N 34997 \N genus Parodianthus \N \N \N \N \N 34998 N.cavanillesii Narcissus Narcissus cavanillesii \N \N \N \N \N 34999 V.procera Valeriana Valeriana procera \N \N \N \N \N 35000 N.INI Nothoscordum Nothoscordum sp. INI \N \N \N \N \N 35001 L.striata Liparia Liparia striata \N \N \N \N \N 35002 A.natalensis Allophylus Allophylus natalensis \N \N \N \N \N 35003 E.parryi Ericameria Ericameria parryi \N \N \N \N \N 35004 \N varietas Morinda officinalis var. hirsuta \N \N \N \N \N 35005 N.gayana Nolana Nolana gayana \N \N \N \N \N 35006 \N genus Machaerina \N \N \N \N \N 35007 \N genus Cyanea \N \N \N \N \N 35008 A.severtzovioides Allium Allium severtzovioides \N \N \N \N \N 35009 T.chrysocrates Telipogon Telipogon chrysocrates \N \N \N \N \N 35010 M.s.n. Monnina Monnina sp. Zloch s.n. \N \N \N \N \N 35011 C.exaltata Cuscuta Cuscuta exaltata \N \N \N \N \N 35012 P.malayana Prunus Prunus malayana \N \N \N \N \N 35013 D.microbulbon Dendrobium Dendrobium microbulbon \N \N \N \N \N 35014 \N genus Hypocalymma \N \N \N \N \N 35015 M.glomerata Monteiroa Monteiroa glomerata \N \N \N \N \N 35016 A.hookeri Acion Acion hookeri \N \N \N \N \N 35017 S.leopoldii Sinningia Sinningia leopoldii \N \N \N \N \N 35018 \N varietas Cephalanthera erecta var. subaphylla \N \N \N \N \N 35019 M.nudicaulis Micranthes Micranthes nudicaulis \N \N \N \N \N 35020 \N genus Pseudostachyum \N \N \N \N \N 35021 P.dasylirioides Puya Puya dasylirioides \N \N \N \N \N 35022 B.micrantha Bridelia Bridelia micrantha \N \N \N \N \N 35023 P.cadigensis Psychotria Psychotria cadigensis \N \N \N \N \N 35024 E.tshuiensis Euphorbia Euphorbia tshuiensis \N \N \N \N \N 35025 L.remyi Lysimachia Lysimachia remyi \N \N \N \N \N 35026 A.mackayi Argyrotegium Argyrotegium mackayi \N \N \N \N \N 35027 A.muscitoxicum Amianthium Amianthium muscitoxicum flypoison \N \N \N \N 35028 E.floribundus Echinodorus Echinodorus floribundus \N \N \N \N \N 35029 \N genus Neoeplingia \N \N \N \N \N 35030 F.septica Ficus Ficus septica leng guo rong \N \N \N \N 35031 C.glandulosepalus Croton Croton glandulosepalus \N \N \N \N \N 35032 V.ellipticum Viburnum Viburnum ellipticum \N \N \N \N \N 35033 C.appendiculata Cuphea Cuphea appendiculata \N \N \N \N \N 35034 C.tetragona Calceolaria Calceolaria tetragona \N \N \N \N \N 35035 \N genus Yua \N \N \N \N \N 35036 N.8105 Namaquanula Namaquanula sp. Bruyns 8105 \N \N \N \N \N 35037 A.spatulatus Astragalus Astragalus spatulatus \N \N \N \N \N 35038 C.parryi Campanula Campanula parryi \N \N \N \N \N 35039 \N varietas Camellia mairei var. lapidea \N \N \N \N \N 35040 M.spinosa Moya Moya spinosa \N \N \N \N \N 35041 C.concatenata Cardamine Cardamine concatenata cutleaf toothwort \N \N \N \N 35042 \N forma Cypripedium reginae f. albolabium \N \N \N \N \N 35043 B.grossus Bromus Bromus grossus \N \N \N \N \N 35044 T.lecardii Tieghemopanax Tieghemopanax lecardii \N \N \N \N \N 35045 P.buysii Pelargonium Pelargonium buysii \N \N \N \N \N 35046 C.linguaefolium Crepidiastrum Crepidiastrum linguaefolium \N \N \N \N \N 35047 M.stricta Minuartia Minuartia stricta \N \N \N \N \N 35048 \N genus Arthraxon \N \N \N \N \N 35049 A.mandoniana Aschersoniodoxa Aschersoniodoxa mandoniana \N \N \N \N \N 35050 P.grandiflorum Pseudobombax Pseudobombax grandiflorum \N \N \N \N \N 35051 G.cruciata Gentiana Gentiana cruciata \N \N \N \N \N 35052 H.ryderiana Haworthia Haworthia ryderiana \N \N \N \N \N 35053 P.duckei Philodendron Philodendron duckei \N \N \N \N \N 35054 V.herbacoursi Virectaria Virectaria herbacoursi \N \N \N \N \N 35055 P.prostrata Pectis Pectis prostrata \N \N \N \N \N 35056 C.SH-2010 Carex Carex sp. SH-2010 \N \N \N \N \N 35057 P.tenuis Penstemon Penstemon tenuis \N \N \N \N \N 35058 \N genus Capnoides \N \N \N \N \N 35059 R.cambodiana Rauvolfia Rauvolfia cambodiana \N \N \N \N \N 35060 G.notabilis Gaultheria Gaultheria notabilis \N \N \N \N \N 35061 T.yunnanensis Tripogon Tripogon yunnanensis \N \N \N \N \N 35062 A.radicans Acmella Acmella radicans \N \N \N \N \N 35063 S.cintrana Silene Silene cintrana \N \N \N \N \N 35064 O.34174 Orobanche Orobanche cf. nana Gu 34174 \N \N \N \N \N 35065 P.opposita Pleurostylia Pleurostylia opposita \N \N \N \N \N 35066 M.jasminoides Morinda Morinda jasminoides \N \N \N \N \N 35067 P.weberbaueri Polylepis Polylepis weberbaueri \N \N \N \N \N 35068 Q.incarnata Quaqua Quaqua incarnata \N \N \N \N \N 35069 D.BGB-2009 Dalechampia Dalechampia aff. hispida BGB-2009 \N \N \N \N \N 35070 \N subspecies Vigna frutescens subsp. incana \N \N \N \N \N 35071 P.spathulatus Ptilotus Ptilotus spathulatus \N \N \N \N \N 35072 N.oleracea Neptunia Neptunia oleracea \N \N \N \N \N 35073 A.triquetrum Allium Allium triquetrum \N \N \N \N \N 35074 P.leuconota Potentilla Potentilla leuconota \N \N \N \N \N 35075 P.psilorhachis Piper Piper psilorhachis \N \N \N \N \N 35076 D.orientalis Dracula Dracula orientalis \N \N \N \N \N 35077 \N genus Chloroxylon \N \N \N \N \N 35078 \N genus Echinocactus \N \N \N \N \N 35079 C.benoistii Cheirolophus Cheirolophus benoistii \N \N \N \N \N 35080 \N varietas Sasa veitchii var. hirsuta \N \N \N \N \N 35081 D.trichantha Dioscorea Dioscorea trichantha \N \N \N \N \N 35082 T.rigidum Trichophorum Trichophorum rigidum \N \N \N \N \N 35083 S.conoidea Silene Silene conoidea large sand catchfly,mai ping cao \N \N \N \N 35084 C.greenei Collinsia Collinsia greenei \N \N \N \N \N 35085 B.discolor Berchemia Berchemia discolor \N \N \N \N \N 35086 B.subcordatum Brachysema Brachysema subcordatum \N \N \N \N \N 35087 M.flagellaris Mimosa Mimosa flagellaris \N \N \N \N \N 35088 B.campylocarpa Brachyscome Brachyscome campylocarpa \N \N \N \N \N 35089 O.glabra Oxytropis Oxytropis glabra \N \N \N \N \N 35090 P.95-006 Primula Primula sp. Johnson 95-006 \N \N \N \N \N 35091 L.dusenii Leandra Leandra dusenii \N \N \N \N \N 35092 P.meulleri Peplidium Peplidium meulleri \N \N \N \N \N 35093 C.sublimis Cardwellia Cardwellia sublimis \N \N \N \N \N 35094 S.cordatum Syzygium Syzygium cordatum \N \N \N \N \N 35095 C.macrorhizus Cymopterus Cymopterus macrorhizus bigroot springparsley \N \N \N \N 35096 T.stradbrokensis Trachystylis Trachystylis stradbrokensis \N \N \N \N \N 35097 \N genus Sericocalyx \N \N \N \N \N 35098 P.longicaule Pelargonium Pelargonium longicaule \N \N \N \N \N 35099 H.muscivorus Helicodiceros Helicodiceros muscivorus dragon's mouth,hairy arum \N \N \N \N 35100 T.phellocarpa Tinopsis Tinopsis phellocarpa \N \N \N \N \N 35101 C.peduncularis Chaetymenia Chaetymenia peduncularis \N \N \N \N \N 35102 S.garcia-barrigae Solanum Solanum garcia-barrigae \N \N \N \N \N 35103 C.aralioides Cissus Cissus aralioides \N \N \N \N \N 35104 R.dimorphandra Rinzia Rinzia dimorphandra \N \N \N \N \N 35105 \N no rank Scandicinae \N \N \N \N \N 35106 C.nervosa Codonopsis Codonopsis nervosa \N \N \N \N \N 35107 C.chloroptera Coelogyne Coelogyne chloroptera \N \N \N \N \N 35108 M.lateritia Melaleuca Melaleuca lateritia \N \N \N \N \N 35109 \N genus Ismelia \N \N \N \N \N 35110 \N subspecies Melastoma malabathricum subsp. normale \N \N \N \N \N 35111 M.triplinervis Miconia Miconia triplinervis \N \N \N \N \N 35112 C.cathartica Canavalia Canavalia cathartica xiao dao dou \N \N \N \N 35113 E.simiorum Eschweilera Eschweilera simiorum \N \N \N \N \N 35114 C.victoris Cardamine Cardamine victoris \N \N \N \N \N 35115 H.caespitosa Hectorella Hectorella caespitosa \N \N \N \N \N 35116 B.dombeyana Barnadesia Barnadesia dombeyana \N \N \N \N \N 35117 E.villifera Euphorbia Euphorbia villifera \N \N \N \N \N 35118 C.flaccidus Cenchrus Cenchrus flaccidus kikuyugrass \N \N \N \N 35119 \N subspecies Kernera saxatilis subsp. boissieri \N \N \N \N \N 35120 D.lyallii Dolichoglottis Dolichoglottis lyallii \N \N \N \N \N 35121 \N genus Bronwenia \N \N \N \N \N 35122 M.brevipes Mollugo Mollugo brevipes \N \N \N \N \N 35123 T.velenovskyi Trifolium Trifolium velenovskyi \N \N \N \N \N 35124 C.longipes Cymopterus Cymopterus longipes \N \N \N \N \N 35125 K.calida Kunzea Kunzea calida \N \N \N \N \N 35126 A.falcata Acanthosyris Acanthosyris falcata \N \N \N \N \N 35127 H.tenella Hesperocnide Hesperocnide tenella \N \N \N \N \N 35128 A.chamarense Allium Allium chamarense \N \N \N \N \N 35129 M.verecunda Mimosa Mimosa verecunda \N \N \N \N \N 35130 P.tandilensis Plantago Plantago tandilensis \N \N \N \N \N 35131 T.minor Tragopogon Tragopogon minor \N \N \N \N \N 35132 S.elongatus Streblus Streblus elongatus \N \N \N \N \N 35133 T.flynnii Tetraplasandra Tetraplasandra flynnii \N \N \N \N \N 35134 M.hirtus Mimetes Mimetes hirtus \N \N \N \N \N 35135 \N varietas Trymalium ledifolium var. rosmarinifolium \N \N \N \N \N 35136 E.citrinum Erythronium Erythronium citrinum cream fawnlily \N \N \N \N 35137 M.eriopus Myrcia Myrcia eriopus \N \N \N \N \N 35138 R.sojakii Ranunculus Ranunculus sojakii \N \N \N \N \N 35139 E.'Argentina' Eleocharis Eleocharis sp. 'Argentina' \N \N \N \N \N 35140 M.rubinea Musa Musa rubinea \N \N \N \N \N 35141 M.microsperma Mairetis Mairetis microsperma \N \N \N \N \N 35142 T.chodatianus Tristerix Tristerix chodatianus \N \N \N \N \N 35143 N.linearifolia Neuontobotrys Neuontobotrys linearifolia \N \N \N \N \N 35144 Z.868 Zygophyllum Zygophyllum sp. Bellstedt 868 \N \N \N \N \N 35145 \N genus Peristylus \N \N \N \N \N 35146 T.charadzae Tragopogon Tragopogon charadzae \N \N \N \N \N 35147 A.cernua Aniseia Aniseia cernua \N \N \N \N \N 35148 P.oblongiloba Pinguicula Pinguicula oblongiloba \N \N \N \N \N 35149 \N genus Dimorphosciadium \N \N \N \N \N 35150 N.NY395 Nymphaea Nymphaea cf. gigantea NY395 \N \N \N \N \N 35151 S.H1856 Stenocactus Stenocactus sp. H1856 \N \N \N \N \N 35152 A.293614 Alonsoa Alonsoa sp. AK 293614 \N \N \N \N \N 35153 \N varietas Iris collettii var. acaulis \N \N \N \N \N 35154 D.calcarata Drimia Drimia calcarata \N \N \N \N \N 35155 C.aureolinus Cyrtanthus Cyrtanthus aureolinus \N \N \N \N \N 35156 \N genus Gonospermum \N \N \N \N \N 35157 L.muscari Liriope Liriope muscari big blue lilyturf \N \N \N \N 35158 T.mauritianum Tristemma Tristemma mauritianum \N \N \N \N \N 35159 S.aphylla Stemona Stemona aphylla \N \N \N \N \N 35160 S.simplex Swartzia Swartzia simplex \N \N \N \N \N 35161 T.tenuipedunculata Tylophora Tylophora tenuipedunculata \N \N \N \N \N 35162 P.macrocarpa Platymitra Platymitra macrocarpa \N \N \N \N \N 35163 P.obtusifolia Peperomia Peperomia obtusifolia baby rubberplant,oval-leaf peperomia \N \N \N \N 35164 \N genus Cleretum \N \N \N \N \N 35165 O.swartbergense Otholobium Otholobium swartbergense \N \N \N \N \N 35166 S.nervosa Sideritis Sideritis nervosa \N \N \N \N \N 35167 C.patulum Cyanthillium Cyanthillium patulum \N \N \N \N \N 35168 C.weigandiorum Ceratolimon Ceratolimon weigandiorum \N \N \N \N \N 35169 H.tubiflora Heloniopsis Heloniopsis tubiflora \N \N \N \N \N 35170 \N genus Anisotome \N \N \N \N \N 35171 H.aetolicum Helictotrichon Helictotrichon aetolicum \N \N \N \N \N 35172 \N genus Nypa \N \N \N \N \N 35173 K.bennettii Kedrostis Kedrostis bennettii \N \N \N \N \N 35174 C.campanulatus Chimonanthus Chimonanthus campanulatus \N \N \N \N \N 35175 \N subspecies Cistus laurifolius subsp. laurifolius \N \N \N \N \N 35176 B.velutina Beilschmiedia Beilschmiedia velutina \N \N \N \N \N 35177 S.brachypoda Saxifraga Saxifraga brachypoda \N \N \N \N \N 35178 U.SH-2010 Urera Urera sp. SH-2010 \N \N \N \N \N 35179 Z.aspalathoides Zieria Zieria aspalathoides \N \N \N \N \N 35180 E.cenchroides Enneapogon Enneapogon cenchroides \N \N \N \N \N 35181 I.axillaris Isotoma Isotoma axillaris \N \N \N \N \N 35182 \N genus Domeykoa \N \N \N \N \N 35183 D.praestans Dendropanax Dendropanax praestans \N \N \N \N \N 35184 D.alaternoides Disterigma Disterigma alaternoides \N \N \N \N \N 35185 V.peregrina Veronica Veronica peregrina American speedwell,necklaceweed \N \N \N \N 35186 \N genus Rhynchospora \N \N \N \N \N 35187 G.asterandra Garcinia Garcinia asterandra \N \N \N \N \N 35188 C.3679 Clusia Clusia sp. JA 3679 \N \N \N \N \N 35189 C.violacea Cistanche Cistanche violacea \N \N \N \N \N 35190 C.681 Chamarea Chamarea aff. gracillima Cowling 681 \N \N \N \N \N 35191 W.rutenbergii Weinmannia Weinmannia rutenbergii \N \N \N \N \N 35192 R.phylladenia Ruyschia Ruyschia phylladenia \N \N \N \N \N 35193 T.orientalis Trema Trema orientalis \N \N \N \N \N 35194 \N family Achatocarpaceae \N \N \N \N \N 35195 \N subspecies Deschampsia cespitosa subsp. borealis \N \N \N \N \N 35196 E.scutellata Echidnopsis Echidnopsis scutellata \N \N \N \N \N 35197 C.mexicana Carya Carya mexicana \N \N \N \N \N 35198 A.spinescens Artemisia Artemisia spinescens \N \N \N \N \N 35199 S.peloquinianum Solanum Solanum peloquinianum \N \N \N \N \N 35200 J.arcticus Juncus Juncus arcticus arctic rush \N \N \N \N 35201 O.ciliata Olearia Olearia ciliata \N \N \N \N \N 35202 A.limoniifolium Asyneuma Asyneuma limoniifolium \N \N \N \N \N 35203 L.tengyuehensis Lysimachia Lysimachia tengyuehensis \N \N \N \N \N 35204 L.thiniense Limonium Limonium thiniense \N \N \N \N \N 35205 P.divaricatum Piper Piper divaricatum \N \N \N \N \N 35206 \N subspecies Arctostaphylos manzanita subsp. manzanita \N \N \N \N \N 35207 A.beckleri Archirhodomyrtus Archirhodomyrtus beckleri rose myrtle \N \N \N \N 35208 S.reevesiana Skimmia Skimmia reevesiana \N \N \N \N \N 35209 B.oxyanthera Begonia Begonia oxyanthera \N \N \N \N \N 35210 C.niyaensis Christolea Christolea niyaensis \N \N \N \N \N 35211 \N genus Strophanthus \N \N \N \N \N 35212 H.frigidum Hieracium Hieracium frigidum \N \N \N \N \N 35213 C.alba Calotesta Calotesta alba \N \N \N \N \N 35214 M.frutescens Muellera Muellera frutescens \N \N \N \N \N 35215 N.shangszeensis Nyssa Nyssa shangszeensis \N \N \N \N \N 35216 A.argentea Alpinia Alpinia argentea \N \N \N \N \N 35217 \N genus Anvillea \N \N \N \N \N 35218 \N varietas Rosa lucieae var. lucieae \N \N \N \N \N 35219 C.sessilifolius Chloranthus Chloranthus sessilifolius \N \N \N \N \N 35220 S.'lisae' Sterculia Sterculia sp. 'lisae' \N \N \N \N \N 35221 A.fertilis Abrotanella Abrotanella fertilis \N \N \N \N \N 35222 E.transvaalensis Euphorbia Euphorbia transvaalensis \N \N \N \N \N 35223 S.guianensis Sloanea Sloanea guianensis \N \N \N \N \N 35224 C.simulata Carex Carex simulata \N \N \N \N \N 35225 \N subspecies Veronica orchidea subsp. orchidea \N \N \N \N \N 35226 L.bowieana Lebeckia Lebeckia bowieana \N \N \N \N \N 35227 M.roseum Melampyrum Melampyrum roseum \N \N \N \N \N 35228 R.nivalis Ranunculus Ranunculus nivalis \N \N \N \N \N 35229 G.tortilipetalus Goniothalamus Goniothalamus tortilipetalus \N \N \N \N \N 35230 G.citrina Gesneria Gesneria citrina \N \N \N \N \N 35231 \N genus Polygonatum Solomon's seals \N \N \N \N 35232 S.serrata Strobilanthes Strobilanthes serrata \N \N \N \N \N 35233 V.correia-araujoi Vriesea Vriesea correia-araujoi \N \N \N \N \N 35234 \N tribe Eugeissoneae \N \N \N \N \N 35235 B.constancei Boechera Boechera constancei \N \N \N \N \N 35236 G.vaga Gomphrena Gomphrena vaga \N \N \N \N \N 35237 S.colensoi Senecio Senecio colensoi \N \N \N \N \N 35238 A.aguirreana Acharagma Acharagma aguirreana \N \N \N \N \N 35239 A.falconeri Aster Aster falconeri \N \N \N \N \N 35240 D.harveyanum Dendrobium Dendrobium harveyanum \N \N \N \N \N 35241 P.australis Posidonia Posidonia angustifolia x Posidonia australis \N \N \N \N \N 35242 G.brachycera Gaylussacia Gaylussacia brachycera box huckleberry \N \N \N \N 35243 \N genus Talbotiella \N \N \N \N \N 35244 B.lobata Bowlesia Bowlesia lobata \N \N \N \N \N 35245 R.sprengelioides Richea Richea sprengelioides \N \N \N \N \N 35246 V.pyrenaica Viola Viola pyrenaica \N \N \N \N \N 35247 \N genus Loeseneriella \N \N \N \N \N 35248 \N genus Calorophus \N \N \N \N \N 35249 \N genus Ochna \N \N \N \N \N 35250 T.nanum Trichocentrum Trichocentrum nanum \N \N \N \N \N 35251 \N genus Pleurostelma \N \N \N \N \N 35252 C.nebulosum Collabium Collabium nebulosum \N \N \N \N \N 35253 P.blinii Primula Primula blinii \N \N \N \N \N 35254 A.blepharophylla Arida Arida blepharophylla \N \N \N \N \N 35255 \N genus Lepanthes \N \N \N \N \N 35256 A.blancoi Artocarpus Artocarpus blancoi \N \N \N \N \N 35257 D.thiebautii Dracophyllum Dracophyllum thiebautii \N \N \N \N \N 35258 D.laxa Dacryodes Dacryodes laxa \N \N \N \N \N 35259 B.tenue Bupleurum Bupleurum tenue \N \N \N \N \N 35260 \N varietas Duchesnea indica var. indica \N \N \N \N \N 35261 A.barbaricina Aquilegia Aquilegia barbaricina \N \N \N \N \N 35262 C.3522 Caiophora Caiophora sp. Hufford 3522 \N \N \N \N \N 35263 B.trifoliolata Boquila Boquila trifoliolata \N \N \N \N \N 35264 M.humile Monotropastrum Monotropastrum humile qiu guo jia sha jing lan \N \N \N \N 35265 P.2846 Phyllarthron Phyllarthron sp. Malcomber 2846 \N \N \N \N \N 35266 Q.verticillata Quiabentia Quiabentia verticillata \N \N \N \N \N 35267 U.hirsuta Uvaria Uvaria hirsuta \N \N \N \N \N 35268 E.bennettii Eupomatia Eupomatia bennettii \N \N \N \N \N 35269 \N genus Striga witchweeds \N \N \N \N 35270 A.capellii Anchusa Anchusa capellii \N \N \N \N \N 35271 S.asper Sonchus Sonchus asper prickly sow-thistle \N \N \N \N 35272 M.psilocarpa Mimosa Mimosa psilocarpa \N \N \N \N \N 35273 T.caymanensis Tolumnia Tolumnia caymanensis \N \N \N \N \N 35274 \N genus Orthoclada \N \N \N \N \N 35275 H.neesianus Harpochilus Harpochilus neesianus \N \N \N \N \N 35276 P.ingens Pedicularis Pedicularis ingens \N \N \N \N \N 35277 S.SA1626 Scutellaria Scutellaria sp. SA1626 \N \N \N \N \N 35278 E.amethystinus Elleanthus Elleanthus amethystinus \N \N \N \N \N 35279 M.articulata Muhlenbergia Muhlenbergia articulata \N \N \N \N \N 35280 \N genus Pasithea \N \N \N \N \N 35281 C.tillaea Crassula Crassula tillaea \N \N \N \N \N 35282 E.scutiformis Euphorbia Euphorbia scutiformis \N \N \N \N \N 35283 B.sativus Brassica x Raphanus Brassica oleracea var. capitata x Raphanus sativus \N \N \N \N \N 35284 O.strigosissima Onosma Onosma strigosissima \N \N \N \N \N 35285 A.oblongata Alyxia Alyxia oblongata \N \N \N \N \N 35286 G.sagittalis Genista Genista sagittalis \N \N \N \N \N 35287 P.rivularis Podocoma Podocoma rivularis \N \N \N \N \N 35288 B.dubia Bellevalia Bellevalia dubia \N \N \N \N \N 35289 M.cupreus Mimulus Mimulus cupreus \N \N \N \N \N 35290 C.gayana Chloris Chloris gayana \N \N \N \N \N 35291 D.adolphii Duckeella Duckeella adolphii \N \N \N \N \N 35292 \N subspecies Acer campbellii subsp. sinense \N \N \N \N \N 35293 \N genus Thryptomene \N \N \N \N \N 35294 \N genus Halgania \N \N \N \N \N 35295 B.cosmoides Bidens Bidens cosmoides \N \N \N \N \N 35296 E.regis-jubae Euphorbia Euphorbia regis-jubae \N \N \N \N \N 35297 R.SH-2010 Ranunculus Ranunculus sp. SH-2010 \N \N \N \N \N 35298 S.semilyrata Saussurea Saussurea semilyrata \N \N \N \N \N 35299 P.pullenii Ptychosperma Ptychosperma pullenii \N \N \N \N \N 35300 R.florida Rubia Rubia florida \N \N \N \N \N 35301 T.JS6057 unclassified Taraxacum Taraxacum (sect. Scariosa) sp. JS6057 \N \N \N \N \N 35302 B.tetraphylla Buchenavia Buchenavia tetraphylla \N \N \N \N \N 35303 A.media Allocasuarina Allocasuarina media \N \N \N \N \N 35304 \N subspecies Ranunculus brevifolius subsp. brevifolius \N \N \N \N \N 35305 L.oellgaardii Lysipomia Lysipomia oellgaardii \N \N \N \N \N 35306 A.johannis Astragalus Astragalus johannis \N \N \N \N \N 35307 O.coronarium Otoglossum Otoglossum coronarium \N \N \N \N \N 35308 \N genus Erigenia \N \N \N \N \N 35309 \N varietas Carlina biebersteinii var. biebersteinii \N \N \N \N \N 35310 R.semperflorens Rauvolfia Rauvolfia semperflorens \N \N \N \N \N 35311 E.papposa Ellisochloa Ellisochloa papposa \N \N \N \N \N 35312 K.latissima Korthalsella Korthalsella latissima \N \N \N \N \N 35313 B.paucifolium Bunium Bunium paucifolium \N \N \N \N \N 35314 B.ceratocarpa Begonia Begonia ceratocarpa \N \N \N \N \N 35315 A.sociale Astrocaryum Astrocaryum sociale \N \N \N \N \N 35316 S.lapponum Salix Salix lapponum \N \N \N \N \N 35317 \N varietas Penstemon deustus var. variabilis \N \N \N \N \N 35318 I.amoena Indigofera Indigofera amoena \N \N \N \N \N 35319 T.stenocarpa Tetratheca Tetratheca stenocarpa \N \N \N \N \N 35320 P.arenicola Physalis Physalis arenicola \N \N \N \N \N 35321 \N genus Leptospron \N \N \N \N \N 35322 O.angustifolia Olearia Olearia angustifolia \N \N \N \N \N 35323 \N genus Lactoris \N \N \N \N \N 35324 E.brachialis Erica Erica brachialis \N \N \N \N \N 35325 W.papulifera Wolffia Wolffia papulifera \N \N \N \N \N 35326 P.caroliniensis Phyllanthus Phyllanthus caroliniensis \N \N \N \N \N 35327 \N forma Arisaema ringens f. praecox \N \N \N \N \N 35328 P.pauciflora Pimelea Pimelea pauciflora \N \N \N \N \N 35329 J.macrocalyx Jacksonia Jacksonia macrocalyx \N \N \N \N \N 35330 \N genus Eriachne \N \N \N \N \N 35331 S.pteridophylla Sorbus Sorbus pteridophylla \N \N \N \N \N 35332 B.ditschianum Biarum Biarum ditschianum \N \N \N \N \N 35333 R.beesianus Rhynchanthus Rhynchanthus beesianus \N \N \N \N \N 35334 S.bergiana Silene Silene bergiana \N \N \N \N \N 35335 S.argentinensis Spartina Spartina argentinensis \N \N \N \N \N 35336 S.20.10.06 Salicornia Salicornia aff. patula Freitag 20.10.06 \N \N \N \N \N 35337 C.flabellifolia Chaetanthera Chaetanthera flabellifolia \N \N \N \N \N 35338 P.pentaphyllum Pediomelum Pediomelum pentaphyllum \N \N \N \N \N 35339 \N genus Pachylaena \N \N \N \N \N 35340 \N genus Kotschyella \N \N \N \N \N 35341 A.filiformis Androsace Androsace filiformis \N \N \N \N \N 35342 C.bilobata Cardamine Cardamine bilobata \N \N \N \N \N 35343 H.s.n. Heterospathe Heterospathe sp. Zona s.n. \N \N \N \N \N 35344 \N genus Gayophytum \N \N \N \N \N 35345 \N genus Kostermanthus \N \N \N \N \N 35346 A.resinosum Aphanopetalum Aphanopetalum resinosum \N \N \N \N \N 35347 P.borneensis Pseuduvaria Pseuduvaria borneensis \N \N \N \N \N 35348 \N genus Krapfia \N \N \N \N \N 35349 V.wallrothii Valeriana Valeriana wallrothii \N \N \N \N \N 35350 S.heterodonta Semenovia Semenovia heterodonta \N \N \N \N \N 35351 P.LA-2002 Psychotria Psychotria aff. pichisensis LA-2002 \N \N \N \N \N 35352 D.denudatum Delphinium Delphinium denudatum \N \N \N \N \N 35353 D.obovata Draba Draba obovata \N \N \N \N \N 35354 D.glandulosus Desmanthus Desmanthus glandulosus glandular bundleflower \N \N \N \N 35355 C.calanthoides Cephalantheropsis Cephalantheropsis calanthoides \N \N \N \N \N 35356 K.schismoides Karroochloa Karroochloa schismoides \N \N \N \N \N 35357 D.brevicornis Disa Disa brevicornis \N \N \N \N \N 35358 S.jelskii Smallanthus Smallanthus jelskii \N \N \N \N \N 35359 I.hainanensis Ilex Ilex hainanensis \N \N \N \N \N 35360 E.caespitosissima Eleocharis Eleocharis caespitosissima \N \N \N \N \N 35361 G.jingdongensis Gaultheria Gaultheria jingdongensis \N \N \N \N \N 35362 P.engleriana Pancheria Pancheria engleriana \N \N \N \N \N 35363 \N genus Dysodiopsis \N \N \N \N \N 35364 G.suffulta Gaura Gaura suffulta \N \N \N \N \N 35365 \N genus Oreostemma \N \N \N \N \N 35366 \N varietas Erigeron uniflorus var. eriocephalus \N \N \N \N \N 35367 O.s.n. Ormosia Ormosia sp. Hahn s.n. \N \N \N \N \N 35368 E.distachya Eriochloa Eriochloa distachya \N \N \N \N \N 35369 H.pubens Halimolobos Halimolobos pubens \N \N \N \N \N 35370 C.H1_15 Castilleja Castilleja sp. H1_15 \N \N \N \N \N 35371 E.maidenii Euryomyrtus Euryomyrtus maidenii \N \N \N \N \N 35372 \N varietas Potentilla thurberi var. thurberi \N \N \N \N \N 35373 S.scaphigerum Scaphium Scaphium scaphigerum \N \N \N \N \N 35374 G.wilsonii Gladiolus Gladiolus wilsonii \N \N \N \N \N 35375 P.grandiflora Phyllostegia Phyllostegia glabra x grandiflora \N \N \N \N \N 35376 R.aristulifera Restrepia Restrepia aristulifera \N \N \N \N \N 35377 E.SH-2010 Elaeagnus Elaeagnus sp. SH-2010 \N \N \N \N \N 35378 S.pilosa Satureja Satureja pilosa \N \N \N \N \N 35379 G.ochroleuca Gilia Gilia ochroleuca \N \N \N \N \N 35380 \N genus Gravesia \N \N \N \N \N 35381 P.chapmanii Polygala Polygala chapmanii \N \N \N \N \N 35382 M.guianensis Maprounea Maprounea guianensis \N \N \N \N \N 35383 \N genus Alberta \N \N \N \N \N 35384 \N genus Ischnosiphon \N \N \N \N \N 35385 R.hapalotricha Ruellia Ruellia hapalotricha \N \N \N \N \N 35386 P.andersonii Parasponia Parasponia andersonii \N \N \N \N \N 35387 S.tenuior Spermacoce Spermacoce tenuior \N \N \N \N \N 35388 L.nigrescens Lisianthius Lisianthius nigrescens \N \N \N \N \N 35389 V.sibiricum Veronicastrum Veronicastrum sibiricum \N \N \N \N \N 35390 A.pseudonobilis Astragalus Astragalus pseudonobilis \N \N \N \N \N 35391 \N genus Lysipomia \N \N \N \N \N 35392 P.eruca Portulaca Portulaca eruca \N \N \N \N \N 35393 S.xerophila Sarcocornia Sarcocornia xerophila \N \N \N \N \N 35394 \N subspecies Kohautia caespitosa subsp. brachyloba \N \N \N \N \N 35395 C.wightiana Crotalaria Crotalaria wightiana \N \N \N \N \N 35396 \N genus Heterophragma \N \N \N \N \N 35397 \N genus Linnaea \N \N \N \N \N 35398 G.elliotii Gladiolus Gladiolus elliotii \N \N \N \N \N 35399 J.9024 Justicia Justicia sp. Daniel 9024 \N \N \N \N \N 35400 J.arborea Jacquinia Jacquinia arborea \N \N \N \N \N 35401 C.megalophylla Cynometra Cynometra megalophylla \N \N \N \N \N 35402 G.opaca Garcinia Garcinia opaca \N \N \N \N \N 35403 P.ephippium Ponthieva Ponthieva ephippium \N \N \N \N \N 35404 P.P100 Physalis Physalis sp. P100 \N \N \N \N \N 35405 S.jli4357 Spigelia Spigelia sp. jli4357 \N \N \N \N \N 35406 P.mindorensis Pseuduvaria Pseuduvaria mindorensis \N \N \N \N \N 35407 E.longifolia Eucalyptus Eucalyptus longifolia \N \N \N \N \N 35408 V.monophylla Vigna Vigna monophylla \N \N \N \N \N 35409 F.palmeri Ficus Ficus palmeri \N \N \N \N \N 35410 \N genus Leandra \N \N \N \N \N 35411 S.pluriformis Strobilanthes Strobilanthes pluriformis \N \N \N \N \N 35412 \N genus Pasaccardoa \N \N \N \N \N 35413 O.boscii Oldenlandia Oldenlandia boscii \N \N \N \N \N 35414 H.leopoldii Hilliardiella Hilliardiella leopoldii \N \N \N \N \N 35415 A.serratum Arisaema Arisaema serratum \N \N \N \N \N 35416 D.fulvum Dipcadi Dipcadi fulvum \N \N \N \N \N 35417 A.subnuda Aliciella Aliciella subnuda \N \N \N \N \N 35418 P.bolanderi Phacelia Phacelia bolanderi \N \N \N \N \N 35419 N.obversifolia Neonauclea Neonauclea obversifolia \N \N \N \N \N 35420 \N genus Warnockia \N \N \N \N \N 35421 A.venesuelae Aristida Aristida venesuelae \N \N \N \N \N 35422 L.jenmanii Lacunaria Lacunaria jenmanii \N \N \N \N \N 35423 A.austroyunnanensis Aristolochia Aristolochia austroyunnanensis \N \N \N \N \N 35424 B.implacabilis Byttneria Byttneria implacabilis \N \N \N \N \N 35425 L.ravenii Ludwigia Ludwigia ravenii \N \N \N \N \N 35426 C.catharinensis Carex Carex catharinensis \N \N \N \N \N 35427 M.anomala Manihot Manihot anomala \N \N \N \N \N 35428 A.sachsachanica Alcea Alcea sachsachanica \N \N \N \N \N 35429 \N genus Calicorema \N \N \N \N \N 35430 H.indochinensis Hydrangea Hydrangea indochinensis \N \N \N \N \N 35431 A.pallescens Agrostis Agrostis pallescens \N \N \N \N \N 35432 \N genus Mucoa \N \N \N \N \N 35433 C.meeboldii Cyperus Cyperus meeboldii \N \N \N \N \N 35434 \N varietas Tiarella trifoliata var. unifoliata \N \N \N \N \N 35435 \N genus Echinochloa \N \N \N \N \N 35436 Z.cernuum Zingiber Zingiber cernuum \N \N \N \N \N 35437 A.denudata Ampelopsis Ampelopsis denudata \N \N \N \N \N 35438 A.inamoena Atriplex Atriplex inamoena \N \N \N \N \N 35439 D.30896 Dioclea Dioclea sp. EAC 30896 \N \N \N \N \N 35440 D.fissa Drymocallis Drymocallis fissa \N \N \N \N \N 35441 P.lingue Persea Persea lingue \N \N \N \N \N 35442 S.banksii Syzygium Syzygium banksii \N \N \N \N \N 35443 P.cerasina Passiflora Passiflora cerasina \N \N \N \N \N 35444 L.buergeri Lespedeza Lespedeza buergeri \N \N \N \N \N 35445 P.disticha Pinanga Pinanga disticha \N \N \N \N \N 35446 N.subaureus Notothixos Notothixos subaureus \N \N \N \N \N 35447 R.subsessilis Ruellia Ruellia subsessilis \N \N \N \N \N 35448 C.gracillima Curcuma Curcuma gracillima \N \N \N \N \N 35449 G.rostrata Garcinia Garcinia rostrata \N \N \N \N \N 35450 V.koschnyi Virola Virola koschnyi \N \N \N \N \N 35451 S.harveyanum Sarcopetalum Sarcopetalum harveyanum \N \N \N \N \N 35452 F.trachypison Ficus Ficus trachypison \N \N \N \N \N 35453 H.plumosa Hydrostachys Hydrostachys plumosa \N \N \N \N \N 35454 O.divergens Oxalis Oxalis divergens \N \N \N \N \N 35455 A.desertorum Alyssum Alyssum desertorum \N \N \N \N \N 35456 I.2297 Ixora Ixora sp. Davis 2297 \N \N \N \N \N 35457 O.ricardii Oxalis Oxalis ricardii \N \N \N \N \N 35458 M.oblongifolius Mallotus Mallotus oblongifolius \N \N \N \N \N 35459 T.mandschuricus Thymus Thymus mandschuricus \N \N \N \N \N 35460 D.margaretae Dymondia Dymondia margaretae \N \N \N \N \N 35461 A.fortunei Alniphyllum Alniphyllum fortunei \N \N \N \N \N 35462 A.sphenophyllus Adromischus Adromischus sphenophyllus \N \N \N \N \N 35463 \N subspecies Hoffmannseggia burchellii subsp. burchellii \N \N \N \N \N 35464 \N genus Ritchiea \N \N \N \N \N 35465 L.scabrum Lithospermum Lithospermum scabrum \N \N \N \N \N 35466 R.innominatus Rubus Rubus innominatus \N \N \N \N \N 35467 P.ioessa Primula Primula ioessa \N \N \N \N \N 35468 L.chihuahuanus Lotus Lotus chihuahuanus \N \N \N \N \N 35469 A.JJD-2001 Acrocarpus Acrocarpus sp. JJD-2001 \N \N \N \N \N 35470 P.costaricense Protium Protium costaricense \N \N \N \N \N 35471 O.pleurothallopsis Ophidion Ophidion pleurothallopsis \N \N \N \N \N 35472 \N genus Salpinga \N \N \N \N \N 35473 A.sekhukhuniensis Acacia Acacia sekhukhuniensis \N \N \N \N \N 35474 L.taurica Luzula Luzula taurica \N \N \N \N \N 35475 E.siculus Edraianthus Edraianthus siculus \N \N \N \N \N 35476 P.serpens Peperomia Peperomia serpens \N \N \N \N \N 35477 L.argenteus Lupinus Lupinus argenteus \N \N \N \N \N 35478 E.atrorubens Epipactis Epipactis atrorubens \N \N \N \N \N 35479 \N genus Sarcopteryx \N \N \N \N \N 35480 S.convexula Sclerolaena Sclerolaena convexula \N \N \N \N \N 35481 P.matitanensis Phyllanthus Phyllanthus matitanensis \N \N \N \N \N 35482 \N order Cucurbitales \N \N \N \N \N 35483 E.serratum Eryngium Eryngium serratum \N \N \N \N \N 35484 \N subspecies Veronica chamaedrys subsp. micans \N \N \N \N \N 35485 G.gardneri Geranium Geranium gardneri \N \N \N \N \N 35486 D.bidentata Dalechampia Dalechampia bidentata \N \N \N \N \N 35487 A.leiocarpa Angophora Angophora leiocarpa \N \N \N \N \N 35488 F.sample environmental samples Taxonomy:197745 Fagaceae environmental sample \N \N \N \N \N 35489 P.fedtschenkoi Primula Primula fedtschenkoi \N \N \N \N \N 35490 E.pediculifera Euphorbia Euphorbia pediculifera \N \N \N \N \N 35491 C.calaba Calophyllum Calophyllum calaba \N \N \N \N \N 35492 P.cogolloi Piper Piper cogolloi \N \N \N \N \N 35493 C.polygonoides Calligonum Calligonum polygonoides \N \N \N \N \N 35494 L.kunthii Lasthenia Lasthenia kunthii \N \N \N \N \N 35495 L.CA080 Lepismium Lepismium sp. CA080 \N \N \N \N \N 35496 T.marschallianus Thymus Thymus marschallianus \N \N \N \N \N 35497 C.biennis Crepis Crepis biennis \N \N \N \N \N 35498 L.tatarica Lonicera Lonicera tatarica \N \N \N \N \N 35499 E.setodeus Eleutherococcus Eleutherococcus setodeus \N \N \N \N \N 35500 S.sellowii Sinningia Sinningia sellowii \N \N \N \N \N 35501 C.radicans Campsis Campsis radicans trumpet creeper,trumpet vine \N \N \N \N 35502 F.strobilifera Flemingia Flemingia strobilifera \N \N \N \N \N 35503 A.macrophylla Alibertia Alibertia macrophylla \N \N \N \N \N 35504 A.iranica Anabasis Anabasis iranica \N \N \N \N \N 35505 P.smithiana Primula Primula smithiana \N \N \N \N \N 35506 S.caeteanum Sisyrinchium Sisyrinchium caeteanum \N \N \N \N \N 35507 I.cycloglossa Iris Iris cycloglossa \N \N \N \N \N 35508 \N forma Salix babylonica f. rokkaku \N \N \N \N \N 35509 \N varietas Plantago tasmanica var. tasmanica \N \N \N \N \N 35510 \N genus Columellia \N \N \N \N \N 35511 T.striata Triglochin Triglochin striata \N \N \N \N \N 35512 Y.capensis Yucca Yucca capensis \N \N \N \N \N 35513 P.virescens Pharus Pharus virescens \N \N \N \N \N 35514 S.koyamae Salvia Salvia koyamae \N \N \N \N \N 35515 M.excavatum Mesembryanthemum Mesembryanthemum excavatum \N \N \N \N \N 35516 \N varietas Buxus microphylla var. japonica \N \N \N \N \N 35517 V.barahonensis Vachellia Vachellia barahonensis \N \N \N \N \N 35518 S.ficinioides Scirpus Scirpus ficinioides \N \N \N \N \N 35519 P.multiflora Pternandra Pternandra multiflora \N \N \N \N \N 35520 \N genus Halocnemum \N \N \N \N \N 35521 C.sodiroi Critoniopsis Critoniopsis sodiroi \N \N \N \N \N 35522 P.diffusa Phlox Phlox diffusa \N \N \N \N \N 35523 T.filifolium Thelesperma Thelesperma filifolium \N \N \N \N \N 35524 S.gonzalezpadronii Sonchus Sonchus gonzalezpadronii \N \N \N \N \N 35525 P.pubisepala Ptyssiglottis Ptyssiglottis pubisepala \N \N \N \N \N 35527 C.alamosanus Croton Croton alamosanus \N \N \N \N \N 35528 P.marginata Psychotria Psychotria marginata \N \N \N \N \N 35529 M.cassapensis Maxillaria Maxillaria cassapensis \N \N \N \N \N 35530 \N genus Centropodia \N \N \N \N \N 35531 P.imberbe Piper Piper imberbe \N \N \N \N \N 35532 \N varietas Myrceugenia ovata var. ovata \N \N \N \N \N 35533 R.indicum Rhododendron Rhododendron indicum \N \N \N \N \N 35534 P.divaricatus Plagianthus Plagianthus divaricatus \N \N \N \N \N 35535 G.stapfii Genlisea Genlisea stapfii \N \N \N \N \N 35536 A.hypogaea Arachis Arachis hypogaea goober,ground-nut,peanut \N \N \N \N 35537 H.brevicaulis Hexalectris Hexalectris brevicaulis \N \N \N \N \N 35538 I.tuberosa Impatiens Impatiens tuberosa \N \N \N \N \N 35539 E.suberectum Epigeneium Epigeneium suberectum \N \N \N \N \N 35540 L.turnerifolia Lippia Lippia turnerifolia \N \N \N \N \N 35541 M.minarum Mimosa Mimosa minarum \N \N \N \N \N 35542 C.depauperata Chamaecrista Chamaecrista depauperata \N \N \N \N \N 35543 A.cinerea Atriplex Atriplex cinerea \N \N \N \N \N 35544 C.sakarahae Coffea Coffea sakarahae \N \N \N \N \N 35545 G.ulmifolia Guazuma Guazuma ulmifolia \N \N \N \N \N 35546 N.buchananii Newtonia Newtonia buchananii \N \N \N \N \N 35547 C.zacintha Crepis Crepis zacintha \N \N \N \N \N 35548 S.schlechteri Spiloxene Spiloxene schlechteri \N \N \N \N \N 35549 C.popowiana Cischweinfia Cischweinfia popowiana \N \N \N \N \N 35550 S.AK-2007 Schubertia Schubertia sp. 2 AK-2007 \N \N \N \N \N 35551 O.equitans Oberonia Oberonia equitans \N \N \N \N \N 35552 S.masafuerana Sophora Sophora masafuerana \N \N \N \N \N 35553 B.salicifolius Blepharocalyx Blepharocalyx salicifolius \N \N \N \N \N 35554 C.glabrata Caesalpinia Caesalpinia glabrata \N \N \N \N \N 35555 E.ED-2006 Echinopogon Echinopogon sp. ED-2006 \N \N \N \N \N 35556 \N genus Helinus \N \N \N \N \N 35557 A.officinalis Althaea Althaea officinalis marshmallow,white mallow \N \N \N \N 35558 L.innovans Leucospermum Leucospermum innovans \N \N \N \N \N 35559 B.manicata Begonia Begonia manicata \N \N \N \N \N 35560 A.obscurus Aphragmus Aphragmus obscurus \N \N \N \N \N 35561 S.hyacinthoides Sansevieria Sansevieria hyacinthoides African bowstring-hemp \N \N \N \N 35562 L.peduncularis Lycianthes Lycianthes peduncularis \N \N \N \N \N 35563 P.cereifera Parmentiera Parmentiera cereifera candletree \N \N \N \N 35564 \N genus Zanha \N \N \N \N \N 35565 E.ambiguum Eubrachion Eubrachion ambiguum \N \N \N \N \N 35566 \N varietas Metrosideros collina var. villosa \N \N \N \N \N 35567 P.guarapuavensis Petunia Petunia guarapuavensis \N \N \N \N \N 35568 C.SS-2007 Cuscuta Cuscuta cf. californica SS-2007 \N \N \N \N \N 35569 K.batalinii Kengyilia Kengyilia batalinii \N \N \N \N \N 35570 \N varietas Erioneuron avenaceum var. avenaceum \N \N \N \N \N 35571 \N genus Riedelia \N \N \N \N \N 35572 C.canarinoides Caiophora Caiophora canarinoides \N \N \N \N \N 35573 \N tribe Diarrheneae \N \N \N \N \N 35574 P.brevifolia Potentilla Potentilla brevifolia \N \N \N \N \N 35575 \N genus Consolida \N \N \N \N \N 35576 A.insularis Arctostaphylos Arctostaphylos insularis \N \N \N \N \N 35577 O.suteroides Oxalis Oxalis suteroides \N \N \N \N \N 35578 M.onaensis Miconia Miconia onaensis \N \N \N \N \N 35579 O.ravaka Orania Orania ravaka \N \N \N \N \N 35580 M.maritima Matelea Matelea maritima beach milkvine \N \N \N \N 35581 \N varietas Ainsliaea elegans var. strigosa \N \N \N \N \N 35582 I.bioritsensis Ilex Ilex bioritsensis \N \N \N \N \N 35583 R.correifolia Roigella Roigella correifolia \N \N \N \N \N 35584 A.drepanophyllum Allium Allium drepanophyllum \N \N \N \N \N 35585 Z.332 unclassified Zingiberaceae Zingiberaceae sp. Ly 332 \N \N \N \N \N 35586 S.calaminthoides Stenogyne Stenogyne calaminthoides \N \N \N \N \N 35587 C.tweedyi Chionophila Chionophila tweedyi \N \N \N \N \N 35588 B.patentiflora Brachyachne Brachyachne patentiflora \N \N \N \N \N 35589 P.valida Pachygone Pachygone valida \N \N \N \N \N 35590 G.serotina Gagea Gagea serotina \N \N \N \N \N 35591 A.microsperma Adenanthera Adenanthera microsperma \N \N \N \N \N 35592 D.schottii Dalechampia Dalechampia schottii \N \N \N \N \N 35593 D.brevipaniculata Didelotia Didelotia brevipaniculata \N \N \N \N \N 35594 A.megacarpus Austrobuxus Austrobuxus megacarpus \N \N \N \N \N 35595 C.kralikii Crambe Crambe kralikii \N \N \N \N \N 35596 C.minima Coronilla Coronilla minima \N \N \N \N \N 35597 M.brevifolia Merciera Merciera brevifolia \N \N \N \N \N 35598 H.crinipes Homalomena Homalomena crinipes \N \N \N \N \N 35599 F.scandens Fallopia Fallopia scandens \N \N \N \N \N 35600 C.salvadorensis Cuphea Cuphea salvadorensis \N \N \N \N \N 35601 \N subspecies Lobularia canariensis subsp. intermedia \N \N \N \N \N 35602 F.deusta Ficinia Ficinia deusta \N \N \N \N \N 35603 \N genus Trichostema bluecurls \N \N \N \N 35604 B.marginatum Bupleurum Bupleurum marginatum \N \N \N \N \N 35605 \N varietas Cuscuta indecora var. longisepala \N \N \N \N \N 35606 C.virgata Commiphora Commiphora virgata \N \N \N \N \N 35607 C.sanderiana Coelogyne Coelogyne sanderiana \N \N \N \N \N 35608 D.stachyoides Disa Disa stachyoides \N \N \N \N \N 35609 \N order Dipsacales \N \N \N \N \N 35610 M.campyloglossa Masdevallia Masdevallia campyloglossa \N \N \N \N \N 35611 M.veraguasensis Mandevilla Mandevilla veraguasensis \N \N \N \N \N 35612 B.SH-2010 Broussonetia Broussonetia sp. SH-2010 \N \N \N \N \N 35613 H.parlatorei Helictotrichon Helictotrichon parlatorei \N \N \N \N \N 35614 \N varietas Carex lenticularis var. impressa \N \N \N \N \N 35615 P.tafondroensis Polyscias Polyscias tafondroensis \N \N \N \N \N 35616 S.conica Silene Silene conica \N \N \N \N \N 35617 T.wallichii Toxicodendron Toxicodendron wallichii \N \N \N \N \N 35618 \N genus Zephyranthes rain lily,zephyr flower \N \N \N \N 35619 U.guianensis Uncaria Uncaria guianensis \N \N \N \N \N 35620 P.tamariscea Polygala Polygala tamariscea \N \N \N \N \N 35621 D.carnosa Didelta Didelta carnosa \N \N \N \N \N 35622 E.coriaceum Enterospermum Enterospermum coriaceum \N \N \N \N \N 35624 S.mandioccanum Stenandrium Stenandrium mandioccanum \N \N \N \N \N 35625 D.robustum Dierama Dierama robustum \N \N \N \N \N 35626 B.lincolnensis Boechera Boechera lincolnensis \N \N \N \N \N 35627 \N varietas Smelowskia ovalis var. ovalis \N \N \N \N \N 35628 D.barbatus Dianthus Dianthus barbatus sweet William \N \N \N \N 35629 M.verbenaceus Mimulus Mimulus verbenaceus \N \N \N \N \N 35630 G.mutabilis Gaura Gaura mutabilis \N \N \N \N \N 35631 P.andrieuxii Pseudosmodingium Pseudosmodingium andrieuxii \N \N \N \N \N 35632 M.assamica Mastersia Mastersia assamica \N \N \N \N \N 35633 M.jucunda Maxillaria Maxillaria jucunda \N \N \N \N \N 35634 I.aitchisonii Iris Iris aitchisonii \N \N \N \N \N 35635 P.nervosa Pristimera Pristimera nervosa \N \N \N \N \N 35636 \N genus Lissocarpa \N \N \N \N \N 35637 \N tribe Doerpfeldieae \N \N \N \N \N 35638 K.sulphurea Kunzea Kunzea sulphurea \N \N \N \N \N 35639 A.rubra Aphelandra Aphelandra rubra \N \N \N \N \N 35640 Z.caerulea Zoutpansbergia Zoutpansbergia caerulea \N \N \N \N \N 35641 G.grandis Glyceria Glyceria grandis \N \N \N \N \N 35642 C.isaurica Centaurea Centaurea isaurica \N \N \N \N \N 35643 N.pongalamesa Nasa Nasa pongalamesa \N \N \N \N \N 35644 C.fimbriatulum Crinum Crinum fimbriatulum \N \N \N \N \N 35645 A.stocksii Astragalus Astragalus stocksii \N \N \N \N \N 35646 F.mareotica Filago Filago mareotica \N \N \N \N \N 35647 E.glabratus Eucephalus Eucephalus glabratus \N \N \N \N \N 35648 C.naiguatensis Croizatia Croizatia naiguatensis \N \N \N \N \N 35649 \N genus Dalechampia \N \N \N \N \N 35650 U.uhrii Uvaria Uvaria uhrii \N \N \N \N \N 35651 N.HHM-2001-2 Nepenthes Nepenthes sp. HHM-2001-2 \N \N \N \N \N 35652 B.pechuelii Berkheyopsis Berkheyopsis pechuelii \N \N \N \N \N 35653 X.cordata Xylosma Xylosma cordata \N \N \N \N \N 35654 C.carpodetoides Corokia Corokia carpodetoides \N \N \N \N \N 35655 H.dichotoma Hyphaene Hyphaene dichotoma \N \N \N \N \N 35656 P.goeldii Philodendron Philodendron goeldii \N \N \N \N \N 35657 E.falcifolium Eryngium Eryngium falcifolium \N \N \N \N \N 35658 P.hirsuta Perama Perama hirsuta \N \N \N \N \N 35659 E.virginiana Epifagus Epifagus virginiana beechdrops \N \N \N \N 35660 \N genus Cephalipterum \N \N \N \N \N 35661 C.schweinitzii Carex Carex schweinitzii \N \N \N \N \N 35662 S.salwinensis Saussurea Saussurea salwinensis \N \N \N \N \N 35663 B.glandulosa Bunchosia Bunchosia glandulosa \N \N \N \N \N 35664 Q.pubescens Quercus Quercus pubescens \N \N \N \N \N 35665 R.fontqueri Rhaponticum Rhaponticum fontqueri \N \N \N \N \N 35666 C.conchocarpus Connarus Connarus conchocarpus \N \N \N \N \N 35667 C.O-542 Corymborkis Corymborkis sp. Chase O-542 \N \N \N \N \N 35668 P.pseudopashia Pyrus Pyrus pseudopashia \N \N \N \N \N 35669 A.macrostylis Arachnorchis Arachnorchis macrostylis \N \N \N \N \N 35670 D.assadii Ducrosia Ducrosia assadii \N \N \N \N \N 35671 K.gracilis Kniphofia Kniphofia gracilis \N \N \N \N \N 35672 O.reflexum Oncidium Oncidium reflexum \N \N \N \N \N 35673 E.tuberculatum Echium Echium tuberculatum \N \N \N \N \N 35674 L.coffeoides Lasianthus Lasianthus coffeoides \N \N \N \N \N 35675 \N genus Artocarpus \N \N \N \N \N 35676 M.pearsonii Macaranga Macaranga pearsonii \N \N \N \N \N 35677 E.strigillosa Eurya Eurya strigillosa \N \N \N \N \N 35678 \N genus Blackallia \N \N \N \N \N 35679 R.mezilii Rinorea Rinorea mezilii \N \N \N \N \N 35680 T.saldanhae Tovomitopsis Tovomitopsis saldanhae \N \N \N \N \N 35681 M.stipoides Monodia Monodia stipoides \N \N \N \N \N 35682 \N genus Cuviera \N \N \N \N \N 35683 B.crassifolia Byrsonima Byrsonima crassifolia craboo,golden-spoon,indano,murici,nance,yoco \N \N \N \N 35684 C.fedtschenkoana Cousinia Cousinia fedtschenkoana \N \N \N \N \N 35685 \N subspecies Cistus populifolius subsp. populifolius \N \N \N \N \N 35686 \N genus Goniorrhachis \N \N \N \N \N 35687 H.squamatum Helianthemum Helianthemum squamatum \N \N \N \N \N 35688 P.3283 Platymiscium Platymiscium sp. Mostacedo & Mostacedo 3283 \N \N \N \N \N 35689 \N varietas Reseda gilgiana var. brachycarpa \N \N \N \N \N 35690 G.corsicum Galium Galium corsicum \N \N \N \N \N 35691 B.emeiensis Bambusa Bambusa emeiensis \N \N \N \N \N 35692 B.formosa Brachyscome Brachyscome formosa \N \N \N \N \N 35693 S.0041w1Gal Lycopersicon Solanum sp. 0041w1Gal \N \N \N \N \N 35694 E.polygalifolia Euphorbia Euphorbia polygalifolia \N \N \N \N \N 35695 R.pilisiensis Ranunculus Ranunculus pilisiensis \N \N \N \N \N 35696 \N genus Plowmania \N \N \N \N \N 35697 E.reverchonii Eleocharis Eleocharis reverchonii \N \N \N \N \N 35698 \N genus Parakmeria \N \N \N \N \N 35699 L.gibbosus Leucopogon Leucopogon gibbosus \N \N \N \N \N 35700 P.gallicum Protium Protium gallicum \N \N \N \N \N 35701 D.killipii Disciphania Disciphania killipii \N \N \N \N \N 35702 O.engelmannii Oonopsis Oonopsis engelmannii \N \N \N \N \N 35703 P.cylindraceus Paepalanthus Paepalanthus cylindraceus \N \N \N \N \N 35704 C.macrophylla Cleome Cleome macrophylla \N \N \N \N \N 35705 E.alta Eulophia Eulophia alta \N \N \N \N \N 35706 \N genus Cardiostigma \N \N \N \N \N 35707 D.scoparium Dichanthelium Dichanthelium scoparium \N \N \N \N \N 35708 M.chartostegia Mimosa Mimosa chartostegia \N \N \N \N \N 35709 G.pilosus Gamanthus Gamanthus pilosus \N \N \N \N \N 35710 H.viridis Halenia Halenia viridis \N \N \N \N \N 35711 P.MAG-2009 Pouteria Pouteria sp. MAG-2009 \N \N \N \N \N 35712 P.asiatica Plantago Plantago asiatica Asian plantain \N \N \N \N 35713 C.ramosum Conopodium Conopodium ramosum \N \N \N \N \N 35714 W.pygmaea Wimmerella Wimmerella pygmaea \N \N \N \N \N 35715 C.multiflora Corylopsis Corylopsis multiflora \N \N \N \N \N 35716 \N genus Cribbia \N \N \N \N \N 35717 \N no rank unclassified Podostemaceae \N \N \N \N \N 35718 C.myrtoides Coleanthera Coleanthera myrtoides \N \N \N \N \N 35719 L.lancifolia Lysimachia Lysimachia lancifolia \N \N \N \N \N 35720 V.bracteatum Vaccinium Vaccinium bracteatum \N \N \N \N \N 35721 C.colurna Corylus Corylus colurna \N \N \N \N \N 35722 M.indecora Malacothrix Malacothrix indecora \N \N \N \N \N 35723 \N genus Trisetum \N \N \N \N \N 35724 C.roanensis Carex Carex roanensis \N \N \N \N \N 35725 A.elliptica Amsonia Amsonia elliptica \N \N \N \N \N 35726 \N genus Aphanocalyx \N \N \N \N \N 35727 \N forma Phyllostachys aureosulcata f. spectabilis \N \N \N \N \N 35728 C.BG203 Carex Carex sp. BG203 \N \N \N \N \N 35729 \N genus Berhautia \N \N \N \N \N 35730 \N genus Siphoneugena \N \N \N \N \N 35731 \N tribe Cyperochloeae \N \N \N \N \N 35732 B.730 Bauera Bauera sp. Bradford 730 \N \N \N \N \N 35733 M.protracta Maranta Maranta protracta \N \N \N \N \N 35734 C.lupuliformis Carex Carex lupuliformis \N \N \N \N \N 35735 S.arenarius Salpianthus Salpianthus arenarius \N \N \N \N \N 35736 \N genus Pentapanax \N \N \N \N \N 35737 E.chantavicus Echinops Echinops chantavicus \N \N \N \N \N 35738 \N genus Desmoncus \N \N \N \N \N 35739 \N genus Parietaria \N \N \N \N \N 35740 A.nebrownii Acacia Acacia nebrownii \N \N \N \N \N 35741 P.sinensis Primula Primula sinensis \N \N \N \N \N 35742 \N subspecies Bidens hillebrandiana subsp. hillebrandiana \N \N \N \N \N 35743 C.molesta Cylindropuntia Cylindropuntia molesta \N \N \N \N \N 35744 T.dufourei Trisetum Trisetum dufourei \N \N \N \N \N 35745 H.aquatilis Howellia Howellia aquatilis \N \N \N \N \N 35746 W.longivalve Welchiodendron Welchiodendron longivalve \N \N \N \N \N 35747 \N genus Cinna \N \N \N \N \N 35748 M.speciosa Mirbelia Mirbelia speciosa \N \N \N \N \N 35749 C.DK-2009 Carapa Carapa sp. 22 DK-2009 \N \N \N \N \N 35750 \N genus Pacouria \N \N \N \N \N 35751 A.altissima Ageratina Ageratina altissima \N \N \N \N \N 35752 B.caudata Bencomia Bencomia caudata \N \N \N \N \N 35753 C.leucanthum Cullen Cullen leucanthum \N \N \N \N \N 35754 T.637 unclassified Taraxacum Taraxacum (sect. Macrodonta) sp. 637 \N \N \N \N \N 35755 C.reticulata Camellia Camellia reticulata \N \N \N \N \N 35756 \N varietas Tilia americana var. heterophylla beetree,white basswood \N \N \N \N 35757 C.stipitata Caragana Caragana stipitata \N \N \N \N \N 35758 P.mirandae Pinguicula Pinguicula mirandae \N \N \N \N \N 35759 M.triglochinoides Maundia Maundia triglochinoides \N \N \N \N \N 35760 \N genus Anisosepalum \N \N \N \N \N 35761 V.reichenbachiana Viola Viola caspia x Viola reichenbachiana \N \N \N \N \N 35762 S.greggii Sedum Sedum greggii \N \N \N \N \N 35763 \N tribe Trigonostemoneae \N \N \N \N \N 35764 T.vargasii Telipogon Telipogon vargasii \N \N \N \N \N 35765 \N genus Jagera \N \N \N \N \N 35766 G.argyrata Guihaia Guihaia argyrata \N \N \N \N \N 35767 T.japonicum Taraxacum Taraxacum japonicum \N \N \N \N \N 35768 B.halganiacea Brachysola Brachysola halganiacea \N \N \N \N \N 35769 V.longifolia Vigna Vigna longifolia \N \N \N \N \N 35770 S.chenopodioides Solanum Solanum chenopodioides \N \N \N \N \N 35771 P.teretifolia Pseuderucaria Pseuderucaria teretifolia \N \N \N \N \N 35772 A.horrida Aiphanes Aiphanes horrida \N \N \N \N \N 35773 \N subspecies Penaea cneorum subsp. lanceolata \N \N \N \N \N 35774 N.mussinii Nepeta Nepeta mussinii \N \N \N \N \N 35775 C.mindshelkensis Cousinia Cousinia mindshelkensis \N \N \N \N \N 35776 A.erubescens Acacia Acacia erubescens \N \N \N \N \N 35777 K.microphylla Kalmia Kalmia microphylla \N \N \N \N \N 35778 N.427 Notylia Notylia sp. Trujillo 427 \N \N \N \N \N 35779 T.japonicum Thlaspi Thlaspi japonicum \N \N \N \N \N 35780 B.perennis Bellis Bellis perennis English daisy \N \N \N \N 35781 P.brachybotrya Psychotria Psychotria brachybotrya \N \N \N \N \N 35782 A.elongata Acacia Acacia elongata slender wattle,swamp wattle \N \N \N \N 35783 L.auratus Lisianthius Lisianthius auratus \N \N \N \N \N 35784 S.prostrata Sophora Sophora prostrata \N \N \N \N \N 35785 G.calthifolium Geum Geum calthifolium calthaleaf avens \N \N \N \N 35786 M.coreia Morinda Morinda coreia \N \N \N \N \N 35787 E.rupestris Ehrharta Ehrharta rupestris \N \N \N \N \N 35788 \N genus Pteroceras \N \N \N \N \N 35789 S.heterochroma Salix Salix heterochroma \N \N \N \N \N 35790 D.pinnata Dahlstedtia Dahlstedtia pinnata \N \N \N \N \N 35791 L.championii Lasiobema Lasiobema championii \N \N \N \N \N 35792 C.buchananii Clerodendrum Clerodendrum buchananii \N \N \N \N \N 35793 P.planisiliqua Peltariopsis Peltariopsis planisiliqua \N \N \N \N \N 35794 F.315 Ficus Ficus sp. M. J. Moore 315 \N \N \N \N \N 35795 A.laciniata Artemisia Artemisia laciniata \N \N \N \N \N 35796 \N genus Sandwithia \N \N \N \N \N 35797 L.parvifolium Leptospermum Leptospermum parvifolium \N \N \N \N \N 35798 C.europaea Cuscuta Cuscuta europaea \N \N \N \N \N 35799 C.H1_42 Castilleja Castilleja sp. H1_42 \N \N \N \N \N 35800 D.junceum Dendrobium Dendrobium junceum \N \N \N \N \N 35801 \N subspecies Armeria langei subsp. daveaui \N \N \N \N \N 35802 S.donnell-smithii Stemmadenia Stemmadenia donnell-smithii \N \N \N \N \N 35803 \N no rank environmental samples Taxonomy:417449 \N \N \N \N \N 35804 P.bridsoniae Psilanthus Psilanthus bridsoniae \N \N \N \N \N 35805 O.humifusa Oenothera Oenothera humifusa \N \N \N \N \N 35806 G.brevicuspis Guatteria Guatteria brevicuspis \N \N \N \N \N 35807 E.coracana Eleusine Eleusine coracana finger millet \N \N \N \N 35808 O.gigantea Onosma Onosma gigantea \N \N \N \N \N 35809 \N genus Hermbstaedtia \N \N \N \N \N 35810 C.pauciflorus Centrapalus Centrapalus pauciflorus \N \N \N \N \N 35811 F.imbricata Fabiana Fabiana imbricata pichi \N \N \N \N 35812 \N subspecies Seseli longifolium subsp. intermedium \N \N \N \N \N 35813 I.rusbyi Isocoma Isocoma rusbyi \N \N \N \N \N 35814 V.melanocaulon Hebe Veronica melanocaulon \N \N \N \N \N 35815 C.austrina Carex Carex austrina \N \N \N \N \N 35816 P.barrydalensis Piaranthus Piaranthus barrydalensis \N \N \N \N \N 35817 \N varietas Petroselinum crispum Radicosum Group Hamburg parsley,turnip-root parsley \N \N \N \N 35818 D.nivalis Draba Draba nivalis \N \N \N \N \N 35819 A.johnsonii Acianthera Acianthera johnsonii \N \N \N \N \N 39217 \N genus Alsobia \N \N \N \N \N 35820 P.arborea Pseudosabicea Pseudosabicea arborea \N \N \N \N \N 35821 C.greenstockii Crossandra Crossandra greenstockii \N \N \N \N \N 35822 S.pallidefusca Setaria Setaria pallidefusca \N \N \N \N \N 35823 A.oceanica Alpinia Alpinia oceanica \N \N \N \N \N 35824 D.brasilianum Dimerostemma Dimerostemma brasilianum \N \N \N \N \N 35825 \N forma Eleocharis acicularis f. longiseta \N \N \N \N \N 35826 A.coronata Aria Aria coronata \N \N \N \N \N 35827 B.ferruginea Bronwenia Bronwenia ferruginea \N \N \N \N \N 35828 \N varietas Lotus glaucus var. erythrorhizus \N \N \N \N \N 35829 S.glaucus Sauropus Sauropus glaucus \N \N \N \N \N 35830 H.gustavi Huntleya Huntleya gustavi \N \N \N \N \N 35831 H.atrorubens Helleborus Helleborus atrorubens \N \N \N \N \N 35832 \N genus Coutaportla \N \N \N \N \N 35833 C.subspathacea Carex Carex subspathacea \N \N \N \N \N 35834 B.tenuifolia Brucea Brucea tenuifolia \N \N \N \N \N 35835 A.micraster Asteropeia Asteropeia micraster \N \N \N \N \N 35836 \N varietas Mucuna pruriens var. utilis velvet bean \N \N \N \N 35837 S.cheilophila Salix Salix cheilophila \N \N \N \N \N 35838 M.bisulcata Microberlinia Microberlinia bisulcata zingana \N \N \N \N 35839 S.expansus Scirpus Scirpus expansus \N \N \N \N \N 35840 P.rara Perotis Perotis rara \N \N \N \N \N 35841 S.pseudocandelabrum Schefflera Schefflera pseudocandelabrum \N \N \N \N \N 35842 V.dieffenbachii Hebe Veronica chathamica x Veronica dieffenbachii \N \N \N \N \N 35843 D.hildebrandtii Dyschoriste Dyschoriste hildebrandtii \N \N \N \N \N 35844 L.pardalinum Lilium Lilium pardalinum \N \N \N \N \N 35845 A.tubiflorum Allium Allium tubiflorum \N \N \N \N \N 35846 B.pulchella Banksia Banksia pulchella \N \N \N \N \N 35847 T.JK4034 unclassified Taraxacum Taraxacum sp. JK4034 \N \N \N \N \N 35848 L.pusillus Litanthus Litanthus pusillus \N \N \N \N \N 35849 D.pinifolius Dianthus Dianthus pinifolius \N \N \N \N \N 35850 J.aromatica Johrenia Johrenia aromatica \N \N \N \N \N 35851 G.januensis Genista Genista januensis Genoa broom \N \N \N \N 35852 A.oblonga Ainsliaea Ainsliaea oblonga \N \N \N \N \N 35853 R.amplexicaulis Ruellia Ruellia amplexicaulis \N \N \N \N \N 35854 O.688 Oxalis Oxalis cf. helicoides Dreyer 688 \N \N \N \N \N 35855 R.alpinia Renealmia Renealmia alpinia \N \N \N \N \N 35856 S.nussbaumerianum Sedum Sedum nussbaumerianum \N \N \N \N \N 35857 G.G18 Glochidion Glochidion sp. G18 \N \N \N \N \N 35858 \N family Montiniaceae \N \N \N \N \N 35859 C.dorothyae Cryptanthus Cryptanthus dorothyae \N \N \N \N \N 35860 D.macrostachyum Dysoxylum Dysoxylum macrostachyum \N \N \N \N \N 35861 A.zenkeri Amorphophallus Amorphophallus zenkeri \N \N \N \N \N 35862 P.aleutica Phyllodoce Phyllodoce aleutica Aleutian mountain-heath \N \N \N \N 35863 R.matutina Renanthera Renanthera matutina \N \N \N \N \N 35864 \N subspecies Digitalis purpurea subsp. purpurea \N \N \N \N \N 35865 P.leptoceras Pinguicula Pinguicula leptoceras \N \N \N \N \N 35866 C.kilimandschari Clinopodium Clinopodium kilimandschari \N \N \N \N \N 35867 A.plumierii Aosa Aosa plumierii \N \N \N \N \N 35868 \N genus Sutherlandia \N \N \N \N \N 35869 T.okuboi Tofieldia Tofieldia okuboi \N \N \N \N \N 35870 R.occidentalis Ruppia Ruppia occidentalis \N \N \N \N \N 35871 \N genus Anthriscus \N \N \N \N \N 35872 A.fangdingianus Archileptopus Archileptopus fangdingianus \N \N \N \N \N 35873 R.gunnianus Ranunculus Ranunculus gunnianus \N \N \N \N \N 35874 P.alticola Pentaschistis Pentameris alticola \N \N \N \N \N 35875 E.wushanense Epimedium Epimedium wushanense \N \N \N \N \N 35876 M.moreheadiana Mullerochloa Mullerochloa moreheadiana \N \N \N \N \N 35877 M.sinaica Micromeria Micromeria sinaica \N \N \N \N \N 35878 P.septemloba Primula Primula septemloba \N \N \N \N \N 35879 S.albidum Solanum Solanum albidum \N \N \N \N \N 35880 S.innocua Strychnos Strychnos innocua \N \N \N \N \N 35881 D.gaubae Dionysia Dionysia gaubae \N \N \N \N \N 35882 G.spurium Galium Galium spurium \N \N \N \N \N 35883 C.amazonicum Condylocarpon Condylocarpon amazonicum \N \N \N \N \N 35884 A.fasciata Aechmea Aechmea fasciata urn-plant \N \N \N \N 35885 B.grandis Bambusa Bambusa grandis \N \N \N \N \N 35886 T.diosmoides Thamnea Thamnea diosmoides \N \N \N \N \N 35887 C.leucantha Cunila Cunila leucantha \N \N \N \N \N 35888 S.suberosus Sauropus Sauropus suberosus \N \N \N \N \N 35889 C.pitcheri Clematis Clematis pitcheri bellflower clematis \N \N \N \N 35890 M.477 Manglietia Manglietia sp. 2 Nie & Meng 477 \N \N \N \N \N 35891 \N genus Amasonia \N \N \N \N \N 35892 T.heterophylla Tarasa Tarasa heterophylla \N \N \N \N \N 35893 C.helmsii Crassula Crassula helmsii \N \N \N \N \N 35894 M.friesiorum Momordica Momordica friesiorum \N \N \N \N \N 35895 S.macranthus Senecio Senecio macranthus \N \N \N \N \N 35896 E.galpinii Elegia Elegia galpinii \N \N \N \N \N 35897 P.flaccida Petrocosmea Petrocosmea flaccida \N \N \N \N \N 35898 T.decipiens Trillium Trillium decipiens \N \N \N \N \N 35899 M.cordata Matelea Matelea cordata \N \N \N \N \N 35900 T.africana Treculia Treculia africana \N \N \N \N \N 35901 R.pulverulenta Rosa Rosa pulverulenta \N \N \N \N \N 35902 \N genus Diplopterys \N \N \N \N \N 35903 A.breviligulata Ammophila Ammophila breviligulata \N \N \N \N \N 35904 B.barronis Bactris Bactris barronis \N \N \N \N \N 35905 S.scordifolia Scutellaria Scutellaria scordifolia \N \N \N \N \N 35906 C.retroflexa Carex Carex retroflexa \N \N \N \N \N 35907 \N genus Aizoon \N \N \N \N \N 35908 C.psilophylla Castanopsis Castanopsis psilophylla \N \N \N \N \N 35909 L.rhinocerotis Lasianthus Lasianthus rhinocerotis \N \N \N \N \N 35910 \N genus Luculia \N \N \N \N \N 35911 \N subspecies Thysanocarpus curvipes subsp. curvipes \N \N \N \N \N 35912 N.vanhoutteanum Nephrosperma Nephrosperma vanhoutteanum \N \N \N \N \N 35913 V.pyramidalis Valeriana Valeriana pyramidalis \N \N \N \N \N 35914 U.violacea Utricularia Utricularia violacea \N \N \N \N \N 35915 D.ravenii Dendropanax Dendropanax ravenii \N \N \N \N \N 39899 \N genus Saniella \N \N \N \N \N 35916 P.cutleri Pyrolirion Pyrolirion cutleri \N \N \N \N \N 35917 C.phaeopappoides Centaurea Centaurea phaeopappoides \N \N \N \N \N 35918 A.reticulata Aristolochia Aristolochia reticulata \N \N \N \N \N 35919 S.hawaiiensis Schiedea Schiedea hawaiiensis \N \N \N \N \N 35920 P.hobdyi Psychotria Psychotria hobdyi \N \N \N \N \N 35921 V.decussata Valeriana Valeriana decussata \N \N \N \N \N 35922 P.phryganodes Puccinellia Puccinellia phryganodes \N \N \N \N \N 35923 L.confertiflora Lavoisiera Lavoisiera confertiflora \N \N \N \N \N 35924 C.ornatum Crinum Crinum ornatum \N \N \N \N \N 35925 C.1733 Cyrtochilum Cyrtochilum sp. Whitten 1733 \N \N \N \N \N 35926 E.dundasii Eucalyptus Eucalyptus dundasii \N \N \N \N \N 35927 D.tristaniicarpa Dichotomanthes Dichotomanthes tristaniicarpa \N \N \N \N \N 35928 \N genus Melocanna \N \N \N \N \N 35929 E.EHR-2010 Eleocharis Eleocharis aff. glaucovirens EHR-2010 \N \N \N \N \N 35930 \N genus Absolmsia \N \N \N \N \N 35931 R.alpestris Ranunculus Ranunculus alpestris \N \N \N \N \N 35932 \N genus Aulax \N \N \N \N \N 35933 A.pictum Acer Acer pictum \N \N \N \N \N 35934 G.alaticallosa Geesinkorchis Geesinkorchis alaticallosa \N \N \N \N \N 35935 A.humillimus Astragalus Astragalus humillimus \N \N \N \N \N 35936 D.capillifolius Daucus Daucus capillifolius \N \N \N \N \N 35937 \N family Cunoniaceae \N \N \N \N \N 35938 T.fluminensis Tradescantia Tradescantia fluminensis spiderwort \N \N \N \N 35939 H.kawagoeana Hydrangea Hydrangea kawagoeana \N \N \N \N \N 35940 E.pachanoi Echinopsis Echinopsis pachanoi \N \N \N \N \N 35941 \N genus Anthobolus \N \N \N \N \N 35942 H.marnier-lapostollei Hechtia Hechtia marnier-lapostollei \N \N \N \N \N 35943 \N genus Cucumis x Cucurbita \N \N \N \N \N 35944 H.flavescens Henriettea Henriettea flavescens \N \N \N \N \N 35945 H.herbertii Heterostemma Heterostemma herbertii \N \N \N \N \N 35946 A.roylei Allium Allium roylei \N \N \N \N \N 35947 H.PI577712 Henrardia Henrardia sp. PI577712 \N \N \N \N \N 35948 \N genus Archidendron \N \N \N \N \N 35949 H.angustifolia Hedycarya Hedycarya angustifolia Australian mulberry \N \N \N \N 35950 S.schwarzenbergii Silene Silene schwarzenbergii \N \N \N \N \N 35951 \N genus Philydrum \N \N \N \N \N 35952 S.spinulosus Selenicereus Selenicereus spinulosus \N \N \N \N \N 35953 \N genus Phalaris \N \N \N \N \N 35954 S.ruffonammari Sanrafaelia Sanrafaelia ruffonammari \N \N \N \N \N 35955 \N varietas Pulsatilla cernua var. koreana \N \N \N \N \N 35956 D.barrettiae Dendrophylax Dendrophylax barrettiae \N \N \N \N \N 35957 \N genus Polanisia clammyweed \N \N \N \N 35958 K.degeneri Kadua Kadua degeneri \N \N \N \N \N 35959 H.boreale Hypericum Hypericum boreale \N \N \N \N \N 35960 M.procumbens Miconia Miconia procumbens \N \N \N \N \N 35961 P.cogniauxii Pternandra Pternandra cogniauxii \N \N \N \N \N 35962 \N varietas Michelia cavaleriei var. platypetala \N \N \N \N \N 35963 K.aznavouriana Klasea Klasea aznavouriana \N \N \N \N \N 35964 D.linearis Dubautia Dubautia linearis \N \N \N \N \N 35965 B.speciosa Browallia Browallia speciosa \N \N \N \N \N 35966 E.coccineum Embothrium Embothrium coccineum Chilean firebush \N \N \N \N 35967 \N genus Spetaea \N \N \N \N \N 35968 C.cachanlahuen Centaurium Centaurium cachanlahuen \N \N \N \N \N 35969 \N genus Terminalia \N \N \N \N \N 35970 S.lanceolata Scaevola Scaevola lanceolata \N \N \N \N \N 35971 A.rubens Anisantha Anisantha rubens \N \N \N \N \N 35972 M.amanda Masdevallia Masdevallia amanda \N \N \N \N \N 35973 R.mucosa Rollinia Rollinia mucosa biribarana,cachiman,wild sweetsop \N \N \N \N 35974 H.LR-2011a Hedychium Hedychium sp. LR-2011a \N \N \N \N \N 35975 \N varietas Hedysarum boreale var. mackenziei \N \N \N \N \N 35976 N.inconspicua Nassella Nassella inconspicua \N \N \N \N \N 35977 S.DH-2011 Syringa Syringa sp. DH-2011 \N \N \N \N \N 35978 R.ephedra Retanilla Retanilla ephedra \N \N \N \N \N 35979 M.hymenophyllus Mimulus Mimulus hymenophyllus \N \N \N \N \N 35980 A.edmundsii Arctostaphylos Arctostaphylos edmundsii \N \N \N \N \N 35981 I.occultans Impatiens Impatiens occultans \N \N \N \N \N 35982 G.cataractarum Geranium Geranium cataractarum \N \N \N \N \N 35983 \N genus Athyana \N \N \N \N \N 35984 G.japonicum Geum Geum japonicum \N \N \N \N \N 35985 P.denticulatum Paspalum Paspalum denticulatum \N \N \N \N \N 35986 C.harfordii Carex Carex harfordii \N \N \N \N \N 35987 G.NPB-2007 Gazania Gazania sp. NPB-2007 \N \N \N \N \N 35988 \N genus Pseudotrachydium \N \N \N \N \N 35989 B.solananthera Begonia Begonia solananthera \N \N \N \N \N 35990 G.1216 Goniothalamus Goniothalamus sp. Suprin 1216 \N \N \N \N \N 35991 S.laxa Sibara Sibara laxa \N \N \N \N \N 35992 O.bartlingii Orobanche Orobanche bartlingii \N \N \N \N \N 35993 P.edgerleyi Pseudopanax Pseudopanax edgerleyi \N \N \N \N \N 35994 G.goseloides Glumicalyx Glumicalyx goseloides \N \N \N \N \N 35995 L.nicotianifolia Lobelia Lobelia nicotianifolia \N \N \N \N \N 35996 C.32982' Chassalia Chassalia aff. chartacea 'Larsen & Larsen 32982' \N \N \N \N \N 35997 A.canariensis Arbutus Arbutus canariensis \N \N \N \N \N 35998 A.rudis Arctostaphylos Arctostaphylos rudis \N \N \N \N \N 35999 A.chienouensis Acidosasa Acidosasa chienouensis \N \N \N \N \N 36000 C.hamatum Chamelaucium Chamelaucium hamatum \N \N \N \N \N 36001 \N genus Apalanthe \N \N \N \N \N 36002 O.haedulipes Oxalis Oxalis haedulipes \N \N \N \N \N 36003 I.costata Isolepis Isolepis costata \N \N \N \N \N 36004 T.6270 unclassified Taraxacum Taraxacum (sect. Sonchidium) sp. 6270 \N \N \N \N \N 36005 P.polycephala Peperomia Peperomia polycephala \N \N \N \N \N 36006 P.duclouxii Pedicularis Pedicularis duclouxii \N \N \N \N \N 36007 S.mildbraedii Sabicea Sabicea mildbraedii \N \N \N \N \N 36008 M.vermeulenii Maesobotrya Maesobotrya vermeulenii \N \N \N \N \N 36009 \N tribe Roystoneeae \N \N \N \N \N 36010 S.forrestii Sorbus Sorbus forrestii \N \N \N \N \N 36011 \N genus Distictis \N \N \N \N \N 36012 S.572 Solanum Solanum sp. Martine 572 \N \N \N \N \N 40292 \N genus Siphocranion \N \N \N \N \N 36013 P.sativum Pisum Pisum sativum garden pea,pea,peas \N \N \N \N 36014 R.agostinhoi Rubia Rubia agostinhoi \N \N \N \N \N 36015 C.2001_29 Crataegus Crataegus sp. 2001_29 \N \N \N \N \N 36016 C.spicatopaniculata Carex Carex spicatopaniculata \N \N \N \N \N 36017 G.kuhlmannii Guatteriopsis Guatteriopsis kuhlmannii \N \N \N \N \N 36018 L.rivae Lannea Lannea rivae \N \N \N \N \N 36019 T.phymata Tabernaemontana Tabernaemontana phymata \N \N \N \N \N 36020 V.turgida Valerianella Valerianella turgida \N \N \N \N \N 36021 F.purpusii Fouquieria Fouquieria purpusii \N \N \N \N \N 36022 S.nepetifolia Schnabelia Schnabelia nepetifolia \N \N \N \N \N 36023 S.auriculata Silene Silene auriculata \N \N \N \N \N 36024 N.cochleariformis Noccaea Noccaea cochleariformis \N \N \N \N \N 36025 \N genus Onychosepalum \N \N \N \N \N 36026 L.obtusifolium Limnophyton Limnophyton obtusifolium \N \N \N \N \N 36027 W.31092 Wachendorfia Wachendorfia sp. 31092 \N \N \N \N \N 36028 S.schottii Stemodia Stemodia schottii Rio Grande twintip \N \N \N \N 36029 M.pectinatus Melianthus Melianthus pectinatus \N \N \N \N \N 36030 S.densiflora Siphoneugena Siphoneugena densiflora \N \N \N \N \N 36031 T.kemulariae Tragopogon Tragopogon kemulariae \N \N \N \N \N 36032 C.macrosiphon Centranthus Centranthus macrosiphon \N \N \N \N \N 36033 M.rekoi Mammillaria Mammillaria rekoi \N \N \N \N \N 36034 C.insignis Cucumis Cucumis insignis \N \N \N \N \N 36035 O.crinita Orobanche Orobanche crinita \N \N \N \N \N 36036 P.salicifolius Phaseolus Phaseolus salicifolius \N \N \N \N \N 36037 P.integrifolia Photinia Photinia integrifolia \N \N \N \N \N 36038 E.leucophaeum Echium Echium leucophaeum \N \N \N \N \N 36039 A.pilosa Actinodaphne Actinodaphne pilosa \N \N \N \N \N 36040 \N varietas Capparis sepiaria var. glabrata \N \N \N \N \N 36041 H.charien Habracanthus Habracanthus charien \N \N \N \N \N 36042 \N tribe Gundelieae \N \N \N \N \N 36043 M.snodgrassii Mollugo Mollugo snodgrassii \N \N \N \N \N 36044 C.hallii Carex Carex hallii \N \N \N \N \N 36045 A.iwayomogi Artemisia Artemisia iwayomogi \N \N \N \N \N 36046 M.coronaria Malus Malus coronaria sweet crabapple \N \N \N \N 36047 G.macrophylla Garcinia Garcinia macrophylla \N \N \N \N \N 36048 M.apiculata Monticalia Monticalia apiculata \N \N \N \N \N 36049 M.disticha Maytenus Maytenus disticha \N \N \N \N \N 36050 S.armeria Silene Silene armeria garden campion,sweet william catchfly \N \N \N \N 36051 A.vineale Allium Allium vineale \N \N \N \N \N 36052 S.proteanthum Solanum Solanum proteanthum \N \N \N \N \N 36053 A.sedifolius Aster Aster sedifolius \N \N \N \N \N 36054 \N genus Notyliopsis \N \N \N \N \N 36055 \N subspecies Allium bourgeaui subsp. bourgeaui \N \N \N \N \N 36056 S.odorata Sida Sida odorata \N \N \N \N \N 36057 G.ramosissima Genista Genista ramosissima \N \N \N \N \N 36058 I.cariensis Iranecio Iranecio cariensis \N \N \N \N \N 36059 E.pinnatifida Eranthis Eranthis pinnatifida \N \N \N \N \N 36060 C.pinnata Conyza Conyza pinnata \N \N \N \N \N 36061 A.arizonica Arbutus Arbutus arizonica \N \N \N \N \N 36062 D.337 Dienia Dienia sp. Hamburg BG 602 B 337 \N \N \N \N \N 36063 D.paucidentata Dysopsis Dysopsis paucidentata \N \N \N \N \N 36064 H.tuberculosa Henriettella Henriettella tuberculosa \N \N \N \N \N 36065 A.tenuifolius Amaranthus Amaranthus tenuifolius \N \N \N \N \N 36066 N.resinosa Neolaugeria Neolaugeria resinosa \N \N \N \N \N 36067 P.teres Pseudobaeckea Pseudobaeckea teres \N \N \N \N \N 36068 C.altiscandens Cynanchum Cynanchum altiscandens \N \N \N \N \N 36069 P.oliveriana Pedicularis Pedicularis oliveriana \N \N \N \N \N 36070 P.humilis Prosopis Prosopis humilis \N \N \N \N \N 36071 C.kentuckiense Cypripedium Cypripedium kentuckiense southern lady's slipper \N \N \N \N 36072 \N genus Cuatrecasasiodendron \N \N \N \N \N 36073 P.tuberosa Pfaffia Pfaffia tuberosa \N \N \N \N \N 36074 B.macrosepala Berberis Berberis macrosepala \N \N \N \N \N 36075 G.urceolatus Gonocarpus Gonocarpus urceolatus \N \N \N \N \N 36076 N.reticulata Nemcia Nemcia reticulata \N \N \N \N \N 36077 R.CVM-2007 Rosa Rosa sp. CVM-2007 \N \N \N \N \N 36078 R.stewartianum Rhododendron Rhododendron stewartianum \N \N \N \N \N 36079 W.vacciniacea Wittsteinia Wittsteinia vacciniacea \N \N \N \N \N 36080 P.antioquiensis Passiflora Passiflora antioquiensis \N \N \N \N \N 36081 D.viscosa Dodonaea Dodonaea viscosa hopshrub \N \N \N \N 36082 P.solida Planchonella Planchonella solida \N \N \N \N \N 36083 C.nephrophyllus Croton Croton nephrophyllus \N \N \N \N \N 36084 P.latifolius Ptilotus Ptilotus latifolius \N \N \N \N \N 36085 D.mirabilis Deeringia Deeringia mirabilis \N \N \N \N \N 36179 \N family Sapindaceae soapberry family \N \N \N \N 36086 D.970778 Dendrobium Dendrobium aff. infundibulum Leiden 970778 \N \N \N \N \N 36087 H.zanzibarica Heinsia Heinsia zanzibarica \N \N \N \N \N 36088 \N varietas Brachyscome glandulosa var. glandulosa \N \N \N \N \N 36089 B.submoniliformis Bursera Bursera submoniliformis \N \N \N \N \N 36090 T.longipes Thelesperma Thelesperma longipes \N \N \N \N \N 36091 N.masoalensis Nepenthes Nepenthes masoalensis \N \N \N \N \N 36092 P.triloba Pterichis Pterichis triloba \N \N \N \N \N 36093 P.glaucophylla Pseudocamelina Pseudocamelina glaucophylla \N \N \N \N \N 36094 R.pseudoscabriuscula Rosa Rosa pseudoscabriuscula \N \N \N \N \N 36095 L.namibiensis Lachenalia Lachenalia namibiensis \N \N \N \N \N 36096 \N subspecies Delarbrea paradoxa subsp. paradoxa \N \N \N \N \N 36097 S.chathamica Sophora Sophora chathamica \N \N \N \N \N 36098 M.alcea Malva Malva alcea greater musk mallow,vervain mallow \N \N \N \N 36099 B.gracilis Boopis Boopis gracilis \N \N \N \N \N 36100 \N varietas Oxytropis deflexa var. sericea \N \N \N \N \N 36101 I.bequaertii Impatiens Impatiens bequaertii \N \N \N \N \N 36102 A.hypoleuca Asclepias Asclepias hypoleuca \N \N \N \N \N 36103 E.spectabilis Eriolaena Eriolaena spectabilis \N \N \N \N \N 36104 S.glabrata Schwenckia Schwenckia glabrata \N \N \N \N \N 36105 \N genus Sutera \N \N \N \N \N 36106 T.anomala Tammsia Tammsia anomala \N \N \N \N \N 36107 T.caricifolius Tragopogon Tragopogon caricifolius \N \N \N \N \N 36108 M.neowiedii Maxillaria Maxillaria neowiedii \N \N \N \N \N 36109 N.parviflora Nolina Nolina parviflora \N \N \N \N \N 36110 S.erecta Stylosanthes Stylosanthes erecta \N \N \N \N \N 36111 M.saccifera Manicaria Manicaria saccifera \N \N \N \N \N 36112 F.breviseta Fuirena Fuirena breviseta short-bristled umbrella-grass \N \N \N \N 36113 G.ogoouense Gilbertiodendron Gilbertiodendron ogoouense \N \N \N \N \N 36114 D.ZAF-53210 Drimiopsis Drimiopsis sp. ZAF-53210 \N \N \N \N \N 36115 M.obscura Micropholis Micropholis obscura \N \N \N \N \N 36116 P.8080 Prunus Prunus sp. Wen 8080 \N \N \N \N \N 36117 G.austriaca Gentianella Gentianella austriaca \N \N \N \N \N 36118 B.hastatula Boechera Boechera hastatula \N \N \N \N \N 36119 P.glaucus Pericampylus Pericampylus glaucus \N \N \N \N \N 36120 B.melagrammus Bunochilus Bunochilus melagrammus \N \N \N \N \N 36121 C.dorycnium Convolvulus Convolvulus dorycnium \N \N \N \N \N 36122 A.GLA-2009 Aframomum Aframomum sp. A GLA-2009 \N \N \N \N \N 36123 T.riopalenquense Trigonidium Trigonidium riopalenquense \N \N \N \N \N 36124 I.umbraticola Ipomoea Ipomoea umbraticola \N \N \N \N \N 36125 \N genus Hildebrandtia \N \N \N \N \N 36126 E.myrsinites Euphorbia Euphorbia myrsinites \N \N \N \N \N 36127 \N varietas Clinopodium uhligii var. obtusifolium \N \N \N \N \N 36128 \N subspecies Malacothrix foliosa subsp. crispifolia \N \N \N \N \N 36129 P.ostruthium Peucedanum Peucedanum ostruthium \N \N \N \N \N 36130 C.inflexa Calceolaria Calceolaria inflexa \N \N \N \N \N 36131 E.album Eupatorium Eupatorium album white thoroughwort \N \N \N \N 36132 D.s.n. Deuterocohnia Deuterocohnia sp. Crayn s.n. \N \N \N \N \N 36133 G.spinosissimum Gymnophyton Gymnophyton spinosissimum \N \N \N \N \N 36134 \N genus Noaea \N \N \N \N \N 36135 A.albopurpurascens Acer Acer albopurpurascens \N \N \N \N \N 36136 T.sundaica Trevesia Trevesia sundaica \N \N \N \N \N 36137 E.kleinii Eleocharis Eleocharis kleinii \N \N \N \N \N 36138 N.gardneriana Nymphaea Nymphaea gardneriana \N \N \N \N \N 36139 S.saxifraga Silene Silene saxifraga \N \N \N \N \N 36140 \N genus Platylobium \N \N \N \N \N 36141 F.glauca Ferula Ferula glauca \N \N \N \N \N 36142 B.rotundifolium Bupleurum Bupleurum rotundifolium \N \N \N \N \N 36143 \N varietas Rhododendron tutcherae var. glabrifolium \N \N \N \N \N 36144 \N varietas Salix glauca var. acutifolia \N \N \N \N \N 36145 \N subspecies Orthocarpus cuspidatus subsp. cuspidatus \N \N \N \N \N 36146 M.leembruggianus Moultonianthus Moultonianthus leembruggianus \N \N \N \N \N 36147 N.superba Nepenthes Nepenthes x superba \N \N \N \N \N 36148 A.spiciformis Andeimalva Andeimalva spiciformis \N \N \N \N \N 36149 \N subspecies Dicerandra frutescens subsp. frutescens \N \N \N \N \N 36150 \N genus Telosma \N \N \N \N \N 36151 M.celtidifolia Morus Morus celtidifolia \N \N \N \N \N 36152 \N genus Stahlia \N \N \N \N \N 36153 T.africanum Thilachium Thilachium africanum \N \N \N \N \N 36154 F.sieboldiana Fraxinus Fraxinus sieboldiana Chinese flowering ash,lu shan qin,maruba-aodamo \N \N \N \N 36155 \N subtribe Lataniinae \N \N \N \N \N 36156 \N subspecies Brassica rapa subsp. campestris \N \N \N \N \N 36157 A.imperialis Alcantarea Alcantarea imperialis \N \N \N \N \N 36158 \N subspecies Trifolium nigrescens subsp. meneghinianum \N \N \N \N \N 36159 B.angustifolia Boscia Boscia angustifolia \N \N \N \N \N 36160 E.horizontalis Echinodorus Echinodorus horizontalis \N \N \N \N \N 36161 P.obliqua Polyalthia Polyalthia obliqua \N \N \N \N \N 36162 \N genus Synelcosciadium \N \N \N \N \N 36163 P.caput-viperae Pseudolithos Pseudolithos caput-viperae \N \N \N \N \N 36164 C.glaucoides Crotalaria Crotalaria glaucoides \N \N \N \N \N 36165 D.mimosoides Daviesia Daviesia mimosoides \N \N \N \N \N 36166 B.racemosa Barringtonia Barringtonia racemosa \N \N \N \N \N 36167 C.00-114 Cistanthe Cistanthe sp. Hershkovitz 00-114 \N \N \N \N \N 36168 W.MAH Wolffia Wolffia sp. MAH \N \N \N \N \N 36169 S.leucanthemifolius Senecio Senecio leucanthemifolius \N \N \N \N \N 36170 E.umadeave Eriosyce Eriosyce umadeave \N \N \N \N \N 36171 L.hirtus Lagochilus Lagochilus hirtus \N \N \N \N \N 36172 E.maximowiczii Euphrasia Euphrasia maximowiczii \N \N \N \N \N 36173 S.juncifolia Schoenorchis Schoenorchis juncifolia \N \N \N \N \N 36174 \N forma Catalpa fargesii f. duclouxii \N \N \N \N \N 36175 \N subspecies Solanum microdontum subsp. gigantophyllum \N \N \N \N \N 36176 G.parvifolia Gochnatia Gochnatia parvifolia \N \N \N \N \N 36177 P.controversa Pycnandra Pycnandra controversa \N \N \N \N \N 36178 M.frondosa Mussaenda Mussaenda frondosa \N \N \N \N \N 37739 \N subtribe Hypochaeridinae \N \N \N \N \N 36180 L.cardiaca Leonurus Leonurus cardiaca \N \N \N \N \N 36181 C.merrillianum Cleisocentron Cleisocentron merrillianum \N \N \N \N \N 36182 L.8728 Lysipomia Lysipomia sp. nov. 8728 \N \N \N \N \N 36183 C.acinifolia Cuphea Cuphea acinifolia \N \N \N \N \N 36184 O.vinciflorum Omphalogramma Omphalogramma vinciflorum \N \N \N \N \N 36185 C.burchardii Cheirolophus Cheirolophus burchardii \N \N \N \N \N 36186 P.sedoides Penthorum Penthorum sedoides \N \N \N \N \N 36187 E.pygmaeum Epilobium Epilobium pygmaeum \N \N \N \N \N 36188 F.squarrosa Fimbristylis Fimbristylis squarrosa \N \N \N \N \N 36189 L.gregoriana Lobelia Lobelia gregoriana \N \N \N \N \N 36190 C.MAG-2009 unclassified Connaraceae Connaraceae sp. MAG-2009 \N \N \N \N \N 36191 O.percurrens Ocotea Ocotea percurrens \N \N \N \N \N 36192 \N subspecies Bidens campylotheca subsp. campylotheca \N \N \N \N \N 36193 S.tangutica Saxifraga Saxifraga tangutica \N \N \N \N \N 36194 \N genus Cranocarpus \N \N \N \N \N 36195 L.lophophorum Lilium Lilium lophophorum \N \N \N \N \N 36196 C.alpinum Cerastium Cerastium nigrescens x Cerastium alpinum \N \N \N \N \N 36197 \N genus Odontanthera \N \N \N \N \N 36198 E.sulcata Euphorbia Euphorbia sulcata \N \N \N \N \N 36199 P.borneensis Polyalthia Polyalthia borneensis \N \N \N \N \N 36200 P.digitatus Phacelurus Phacelurus digitatus \N \N \N \N \N 36201 E.caespitiferum Eryngium Eryngium caespitiferum \N \N \N \N \N 36202 A.dasyphylloides Aralia Aralia dasyphylloides \N \N \N \N \N 36203 P.ramosissimus Paliurus Paliurus ramosissimus \N \N \N \N \N 36204 I.103 Iresine Iresine sp. Sanchez-del Pino & Campos 103 \N \N \N \N \N 36205 P.poppelwellii Pimelea Pimelea poppelwellii \N \N \N \N \N 36206 H.secalinum Hordeum Hordeum secalinum \N \N \N \N \N 36207 P.uniflorus Pycnoplinthus Pycnoplinthus uniflorus \N \N \N \N \N 36208 T.fischeri Tapura Tapura fischeri \N \N \N \N \N 36209 E.alpinus Erinus Erinus alpinus \N \N \N \N \N 36210 S.tortuosa Salvia Salvia tortuosa \N \N \N \N \N 36211 C.apiculata Cousinia Cousinia apiculata \N \N \N \N \N 36212 \N genus Hymenocoleus \N \N \N \N \N 36213 A.frigidus Astragalus Astragalus frigidus \N \N \N \N \N 36214 E.pubigera Erica Erica pubigera \N \N \N \N \N 36215 E.huotii Echinopsis Echinopsis huotii \N \N \N \N \N 36216 P.plumerioides Paliavana Paliavana plumerioides \N \N \N \N \N 36217 V.hemsleyana Viola Viola hemsleyana \N \N \N \N \N 36218 C.chiquianensis Chaetanthera Chaetanthera chiquianensis \N \N \N \N \N 36219 C.subbracteata Carex Carex subbracteata \N \N \N \N \N 36220 M.verecunda Moraea Moraea verecunda \N \N \N \N \N 36221 C.liaudii Coffea Coffea liaudii \N \N \N \N \N 36222 N.pulla Nonea Nonea pulla \N \N \N \N \N 36223 H.pubescens Hexaspora Hexaspora pubescens \N \N \N \N \N 36224 S.davidii Sophora Sophora davidii \N \N \N \N \N 36225 \N genus Lacaena \N \N \N \N \N 36226 L.vaniotii Lathyrus Lathyrus vaniotii \N \N \N \N \N 36227 A.floribunda Aphanes Aphanes floribunda \N \N \N \N \N 36228 C.subcrustulata Conostegia Conostegia subcrustulata \N \N \N \N \N 36229 \N subspecies Helichrysum italicum subsp. italicum \N \N \N \N \N 36230 E.arvalis Euphorbia Euphorbia arvalis \N \N \N \N \N 36231 C.1997 Crocosmia Crocosmia sp. Lejeune 1997 \N \N \N \N \N 36232 L.penicillata Lachnaea Lachnaea penicillata \N \N \N \N \N 36233 C.exostemma Caesalpinia Caesalpinia exostemma \N \N \N \N \N 36234 W.caryotoides Wallichia Wallichia caryotoides \N \N \N \N \N 36235 M.campicola Memora Memora campicola \N \N \N \N \N 36236 N.discoidea Nothofagus Nothofagus discoidea \N \N \N \N \N 36237 D.brandisiana Diospyros Diospyros brandisiana \N \N \N \N \N 36238 E.grandiflorus Erigeron Erigeron grandiflorus \N \N \N \N \N 36239 E.bihendulensis Echidnopsis Echidnopsis bihendulensis \N \N \N \N \N 36240 A.byzantina Avena Avena byzantina \N \N \N \N \N 36241 \N subspecies Impatiens keilii subsp. pubescens \N \N \N \N \N 36242 E.elliptica Eleocharis Eleocharis elliptica \N \N \N \N \N 36243 C.alsophila Cornus Cornus alsophila \N \N \N \N \N 36244 O.cilicica Ophrys Ophrys cilicica \N \N \N \N \N 36245 D.armata Dalbergia Dalbergia armata \N \N \N \N \N 36246 L.robusta Leea Leea robusta \N \N \N \N \N 36247 P.pedunculata Procris Procris pedunculata \N \N \N \N \N 36248 \N subspecies Helianthus debilis subsp. vestitus \N \N \N \N \N 36249 P.buyssoniana Phalaenopsis Phalaenopsis buyssoniana \N \N \N \N \N 36250 B.citriodora Backhousia Backhousia citriodora \N \N \N \N \N 36251 \N subspecies Hylotelephium telephium subsp. ruprechtii \N \N \N \N \N 36252 P.nitida Planocarpa Planocarpa nitida \N \N \N \N \N 36253 \N genus Himalayacalamus \N \N \N \N \N 36254 \N genus Ischnea \N \N \N \N \N 36255 S.ramalana Spenceria Spenceria ramalana ma ti huang \N \N \N \N 36256 \N no rank unclassified Castanea \N \N \N \N \N 36257 C.kirkii Cadaba Cadaba kirkii \N \N \N \N \N 36258 S.alonsoi Setaria Setaria alonsoi \N \N \N \N \N 36259 P.xerophyton Pelargonium Pelargonium xerophyton \N \N \N \N \N 36260 \N subspecies Acer sterculiaceum subsp. franchetii \N \N \N \N \N 36261 \N genus Persoonia \N \N \N \N \N 36262 W.dilatata Wurmbea Wurmbea dilatata \N \N \N \N \N 36263 \N varietas Swartzia macrostachya var. riedelii \N \N \N \N \N 36264 R.carlosiana Randia Randia carlosiana \N \N \N \N \N 36265 S.visco Senegalia Senegalia visco viscote blanco,viscote negro \N \N \N \N 36266 M.menglunensis Magnolia Magnolia menglunensis \N \N \N \N \N 36267 \N subtribe Psathyrotinae \N \N \N \N \N 36268 C.3631 Clusia Clusia sp. JA 3631 \N \N \N \N \N 36269 \N genus Pterygiosperma \N \N \N \N \N 36270 N.macrosperma Nymphaea Nymphaea macrosperma \N \N \N \N \N 36271 S.shiraianus Styrax Styrax shiraianus \N \N \N \N \N 36272 A.purpureorosea Aechmea Aechmea purpureorosea \N \N \N \N \N 36273 C.opaca Crataegus Crataegus opaca \N \N \N \N \N 36274 I.pratensis Irlbachia Irlbachia pratensis \N \N \N \N \N 36275 \N genus Notobasis \N \N \N \N \N 36276 D.filifolium Dipcadi Dipcadi filifolium \N \N \N \N \N 36277 \N subspecies Crocus kotschyanus subsp. kotschyanus \N \N \N \N \N 36278 C.aleppicus Crocus Crocus aleppicus \N \N \N \N \N 36279 \N no rank Asteroideae incertae sedis \N \N \N \N \N 36280 R.strictum Rhabdocaulon Rhabdocaulon strictum \N \N \N \N \N 36281 V.asiatica Vallisneria Vallisneria asiatica \N \N \N \N \N 36282 T.conophorum Tetracarpidium Tetracarpidium conophorum \N \N \N \N \N 36283 \N family Brassicaceae mustard family \N \N \N \N 36284 \N genus Capitularina \N \N \N \N \N 36285 V.macra Ventenata Ventenata macra \N \N \N \N \N 36286 Z.pulverulenta Zenobia Zenobia pulverulenta honeycup \N \N \N \N 36287 S.ovalifolia Salvia Salvia ovalifolia \N \N \N \N \N 36288 C.glacialis Carex Carex glacialis \N \N \N \N \N 36289 N.crista-galli Nephrophyllidium Nephrophyllidium crista-galli \N \N \N \N \N 36290 L.parvum Lilium Lilium parvum \N \N \N \N \N 36291 T.montana Triunia Triunia montana \N \N \N \N \N 36292 C.incarnatus Clinanthus Clinanthus incarnatus \N \N \N \N \N 36293 G.reuteri Galeopsis Galeopsis reuteri \N \N \N \N \N 36294 C.macraei Cyrtandra Cyrtandra macraei \N \N \N \N \N 36295 I.galegoides Indigofera Indigofera galegoides \N \N \N \N \N 36296 T.pseudomacbrideana Tillandsia Tillandsia pseudomacbrideana \N \N \N \N \N 36297 E.livingstonianum Ensete Ensete livingstonianum \N \N \N \N \N 36298 \N genus Suessenguthia \N \N \N \N \N 36299 L.onosmodium Lithospermum Lithospermum onosmodium \N \N \N \N \N 36300 C.crassifolium Coelospermum Coelospermum crassifolium \N \N \N \N \N 36301 E.serraensis Eucalyptus Eucalyptus serraensis \N \N \N \N \N 36302 N.patagonicum Neosparton Neosparton patagonicum \N \N \N \N \N 36303 B.natalensis Blepharis Blepharis natalensis \N \N \N \N \N 36304 P.adolfi-friedericii Pouteria Pouteria adolfi-friedericii \N \N \N \N \N 36305 S.277 Salicornia Salicornia aff. perennans Lomonosova 277 \N \N \N \N \N 36306 E.cassonii Erodium Erodium cassonii \N \N \N \N \N 36307 H.submolle Heliotropium Heliotropium submolle \N \N \N \N \N 36308 P.pensylvanica Potentilla Potentilla pensylvanica \N \N \N \N \N 36309 \N genus Pentas \N \N \N \N \N 36310 W.gymnoxiphium Wilkesia Wilkesia gymnoxiphium \N \N \N \N \N 36311 M.emarginata Monsonia Monsonia emarginata \N \N \N \N \N 36312 M.sikkimensis Microula Microula sikkimensis \N \N \N \N \N 36313 \N genus Eurysolen \N \N \N \N \N 36314 A.bartlettii Ardisia Ardisia bartlettii \N \N \N \N \N 36315 P.valida Planchonia Planchonia valida \N \N \N \N \N 36316 B.noctiflora Babiana Babiana noctiflora \N \N \N \N \N 36317 S.pedemontana Saxifraga Saxifraga pedemontana \N \N \N \N \N 36318 \N genus Chysis \N \N \N \N \N 36319 \N genus Telesonix \N \N \N \N \N 36320 E.hutchinsonii Elegia Elegia hutchinsonii \N \N \N \N \N 36321 \N family Xanthorrhoeaceae \N \N \N \N \N 36322 A.boliviana Acacia Acacia boliviana \N \N \N \N \N 36323 \N genus Galeoglossum \N \N \N \N \N 36324 T.collinus Tragopogon Tragopogon collinus \N \N \N \N \N 36325 T.secundus Trachypogon Trachypogon secundus \N \N \N \N \N 36326 S.concinna Scaphochlamys Scaphochlamys concinna \N \N \N \N \N 36327 C.compactum Cynanchum Cynanchum compactum \N \N \N \N \N 36328 P.arborea Peritoma Peritoma arborea \N \N \N \N \N 36329 L.galpinii Leucadendron Leucadendron galpinii \N \N \N \N \N 36330 V.horizontale Vaccinium Vaccinium horizontale \N \N \N \N \N 36331 S.ciliosum Sempervivum Sempervivum ciliosum \N \N \N \N \N 36332 T.translucens Thesium Thesium translucens \N \N \N \N \N 36333 P.weberbaueri Persea Persea weberbaueri \N \N \N \N \N 36334 N.belophylla Nymphaea Nymphaea belophylla \N \N \N \N \N 36335 T.laxum Tripsacum Tripsacum laxum \N \N \N \N \N 36336 \N genus Spathacanthus \N \N \N \N \N 36337 I.tenuis Iris Iris tenuis Clackamas iris \N \N \N \N 36338 E.O-374 Elleanthus Elleanthus sp. Chase O-374 \N \N \N \N \N 36339 B.MAK-2009 Boechera Boechera collinsii hybrid sp. MAK-2009 \N \N \N \N \N 36340 \N genus Simmondsia \N \N \N \N \N 36341 \N genus Episcia \N \N \N \N \N 36342 M.constrictus Mimulus Mimulus constrictus \N \N \N \N \N 36343 A.alpina Acacia Acacia alpina \N \N \N \N \N 36344 S.brunneopilosa Saussurea Saussurea brunneopilosa \N \N \N \N \N 36345 \N genus Toddaliopsis \N \N \N \N \N 36346 \N subspecies Oxalis triangularis subsp. papilionacea \N \N \N \N \N 36347 N.rigida Nierembergia Nierembergia rigida \N \N \N \N \N 36348 D.leptocladum Dendrobium Dendrobium leptocladum \N \N \N \N \N 36349 A.henryi Alnus Alnus henryi \N \N \N \N \N 36350 H.mucronata Haworthia Haworthia mucronata \N \N \N \N \N 36351 O.nivara Oryza Oryza sativa (Indica Group) x Oryza nivara \N \N \N \N \N 36352 S.palmatopinnatifidus Synurus Synurus palmatopinnatifidus \N \N \N \N \N 36353 C.lepidospermoides Conostylis Conostylis lepidospermoides \N \N \N \N \N 36354 A.minutissimum Arceuthobium Arceuthobium minutissimum \N \N \N \N \N 36355 H.subcapitatum Hylotelephium Hylotelephium subcapitatum \N \N \N \N \N 36356 S.dasyphyllum Sedum Sedum dasyphyllum \N \N \N \N \N 36357 P.tricallosa Panisea Panisea tricallosa \N \N \N \N \N 36358 M.pterospermum Macropodium Macropodium pterospermum \N \N \N \N \N 36359 T.bachmannii Thamnochortus Thamnochortus bachmannii \N \N \N \N \N 36360 \N genus Axonopus carpetgrass \N \N \N \N 36361 L.dregei Leucadendron Leucadendron dregei \N \N \N \N \N 36362 R.tweediana Ruellia Ruellia tweediana \N \N \N \N \N 36363 \N genus Sericorema \N \N \N \N \N 36364 \N varietas Carex digitalis var. floridana \N \N \N \N \N 36365 P.rosea Polystachya Polystachya rosea \N \N \N \N \N 36366 M.subspeciosa Monnina Monnina subspeciosa \N \N \N \N \N 36367 \N genus Germainia \N \N \N \N \N 36368 D.verticillatus Decodon Decodon verticillatus \N \N \N \N \N 36369 E.flexistyla Erica Erica flexistyla \N \N \N \N \N 36370 C.ciliatoglandulifer Croton Croton ciliatoglandulifer Mexican croton \N \N \N \N 36371 G.donnell-smithii Guzmania Guzmania donnell-smithii \N \N \N \N \N 36372 B.decaryana Breonia Breonia decaryana \N \N \N \N \N 36373 \N family Papaveraceae poppy family \N \N \N \N 36374 M.bolleana Matthiola Matthiola bolleana \N \N \N \N \N 36375 S.laeteviolacea Scutellaria Scutellaria laeteviolacea \N \N \N \N \N 36376 D.pseudoscriptum Dendrochilum Dendrochilum pseudoscriptum \N \N \N \N \N 36377 C.yucatanensis Croton Croton yucatanensis \N \N \N \N \N 36378 V.pauciflora Vatica Vatica pauciflora \N \N \N \N \N 36379 M.platypetala Maxillaria Maxillaria platypetala \N \N \N \N \N 36380 B.4161 Bakerella Bakerella sp. Nickrent 4161 \N \N \N \N \N 36381 I.Bogor Ixonanthes Ixonanthes sp. Bogor \N \N \N \N \N 36382 \N subtribe Dendrobiinae \N \N \N \N \N 36383 B.pendula Besleria Besleria pendula \N \N \N \N \N 36384 E.glomeratus Evolvulus Evolvulus glomeratus \N \N \N \N \N 36385 H.albiflora Hernandia Hernandia albiflora \N \N \N \N \N 36386 I.schachtii Iris Iris schachtii \N \N \N \N \N 36387 \N no rank Saccharum hybrid cultivar R47 \N \N \N \N \N 36388 O.diffusa Oldenlandia Oldenlandia diffusa \N \N \N \N \N 36389 C.caldeirarum Cardamine Cardamine caldeirarum \N \N \N \N \N 36390 C.marrubiastrum Chaiturus Chaiturus marrubiastrum \N \N \N \N \N 36391 G.orientalis Galega Galega orientalis \N \N \N \N \N 36392 L.poissonii Leucosalpa Leucosalpa poissonii \N \N \N \N \N 36393 S.obscura Salicornia Salicornia obscura \N \N \N \N \N 36394 P.nevadensis Podistera Podistera nevadensis \N \N \N \N \N 36395 A.radiatus Anacyclus Anacyclus radiatus \N \N \N \N \N 36396 D.stenozyga Dodonaea Dodonaea stenozyga \N \N \N \N \N 36397 L.mesophylla Lecythis Lecythis mesophylla \N \N \N \N \N 36398 H.benthamiana Hapaline Hapaline benthamiana \N \N \N \N \N 36399 \N subspecies Leucheria salina subsp. salina \N \N \N \N \N 36400 \N genus Columnea \N \N \N \N \N 36401 H.macrosperma Hemsleya Hemsleya macrosperma \N \N \N \N \N 36402 \N varietas Pyracantha crenulata var. kansuensis \N \N \N \N \N 36403 A.ahernianum Arthrophyllum Arthrophyllum ahernianum \N \N \N \N \N 36404 I.popovii Iris Iris popovii \N \N \N \N \N 36405 P.obovatus Ptilotus Ptilotus obovatus \N \N \N \N \N 36406 A.tinekeae Amorphophallus Amorphophallus tinekeae \N \N \N \N \N 36407 A.hendersonii Astragalus Astragalus hendersonii \N \N \N \N \N 36408 C.glacialis Cardamine Cardamine glacialis \N \N \N \N \N 36409 \N genus Nothoalsomitra \N \N \N \N \N 36410 H.glabra Hedypnois Hedypnois glabra \N \N \N \N \N 36411 G.amorphoides Gleditsia Gleditsia amorphoides \N \N \N \N \N 36412 B.2000-318 Barbaceniopsis Barbaceniopsis sp. Weigend & Weigend 2000-318 \N \N \N \N \N 36413 P.kamczatensis Poa Poa kamczatensis \N \N \N \N \N 36414 P.703 Paederia Paederia sp. Mouly 703 \N \N \N \N \N 36415 L.multiflora Leptolaena Leptolaena multiflora \N \N \N \N \N 36416 A.hemichrysa Astelia Astelia hemichrysa \N \N \N \N \N 36417 D.havilandii Drepananthus Drepananthus havilandii \N \N \N \N \N 36418 H.flexuosum Hedysarum Hedysarum flexuosum \N \N \N \N \N 36419 T.obovata Tassadia Tassadia obovata \N \N \N \N \N 36420 B.setigera Bidens Bidens setigera \N \N \N \N \N 36421 P.mixta Pouzolzia Pouzolzia mixta \N \N \N \N \N 36422 B.procera Blumea Blumea procera \N \N \N \N \N 36423 F.sessilifolia Forchhammeria Forchhammeria sessilifolia \N \N \N \N \N 36424 L.digitatus Lathyrus Lathyrus digitatus \N \N \N \N \N 36425 T.tomentosulus Tragopogon Tragopogon tomentosulus \N \N \N \N \N 36426 A.laevitomentosa Andryala Andryala laevitomentosa \N \N \N \N \N 36427 H.tamderense Hieracium Hieracium tamderense \N \N \N \N \N 36428 \N genus Stirtonanthus \N \N \N \N \N 36429 P.fibrilliferum Polygonum Polygonum fibrilliferum \N \N \N \N \N 36430 C.insigne Cynanchum Cynanchum insigne \N \N \N \N \N 36431 G.pirarense Gomesa Gomesa pirarense \N \N \N \N \N 36432 M.trachycarpum Myriophyllum Myriophyllum trachycarpum \N \N \N \N \N 36433 P.cita Poa Poa cita blue tussock \N \N \N \N 36434 P.cornuto-cucullata Pilea Pilea cornuto-cucullata \N \N \N \N \N 36435 S.mutabilis Stachytarpheta Stachytarpheta mutabilis \N \N \N \N \N 36436 V.stewardiana Viola Viola stewardiana \N \N \N \N \N 36437 A.valentinum Antirrhinum Antirrhinum valentinum \N \N \N \N \N 36438 O.macrophylla Ossaea Ossaea macrophylla \N \N \N \N \N 36439 S.odorifera Sicana Sicana odorifera \N \N \N \N \N 36440 O.imbricata Oxalis Oxalis imbricata \N \N \N \N \N 36441 N.wettsteinii Nematanthus Nematanthus wettsteinii \N \N \N \N \N 36442 \N no rank Paleo South American clade \N \N \N \N \N 36443 P.micholitzii Phalaenopsis Phalaenopsis micholitzii \N \N \N \N \N 36444 V.lindheimerii Vernonia Vernonia lindheimerii \N \N \N \N \N 36445 F.javanica Freycinetia Freycinetia javanica \N \N \N \N \N 36446 \N subspecies Carex bromoides subsp. bromoides \N \N \N \N \N 36447 I.leptopoda Impatiens Impatiens leptopoda \N \N \N \N \N 36448 A.koreanum Allium Allium koreanum \N \N \N \N \N 36449 S.maxima Shorea Shorea maxima \N \N \N \N \N 36450 \N genus Garcinia \N \N \N \N \N 36451 N.1439 Nothoscordum Nothoscordum sp. 1439 \N \N \N \N \N 36452 M.barbata Microcorys Microcorys barbata \N \N \N \N \N 36453 \N genus Grosourdya \N \N \N \N \N 36454 M.crassifolia Monnina Monnina crassifolia \N \N \N \N \N 36455 L.fruticoides Lotononis Lotononis fruticoides \N \N \N \N \N 36456 V.radicalis Valeriana Valeriana radicalis \N \N \N \N \N 36457 S.capiri Sideroxylon Sideroxylon capiri \N \N \N \N \N 36458 T.escritorii Tuberolabium Tuberolabium escritorii \N \N \N \N \N 36459 P.joskei Polyscias Polyscias joskei \N \N \N \N \N 36460 K.odontoptera Kochia Kochia odontoptera \N \N \N \N \N 36461 G.crocylloides Galopina Galopina crocylloides \N \N \N \N \N 36462 P.lyallii Penstemon Penstemon lyallii \N \N \N \N \N 36463 D.diffusa Dyschoriste Dyschoriste diffusa \N \N \N \N \N 36464 L.sylvarum Larnax Larnax sylvarum \N \N \N \N \N 36465 S.bumeliifolium Solanum Solanum bumeliifolium \N \N \N \N \N 36466 S.caminata Sabicea Sabicea caminata \N \N \N \N \N 36467 I.expansa Ipomoea Ipomoea expansa \N \N \N \N \N 36468 H.lichuanensis Hilliella Hilliella lichuanensis \N \N \N \N \N 36469 P.hewardiana Pimelea Pimelea hewardiana \N \N \N \N \N 36470 W.myrtifolia Weinmannia Weinmannia myrtifolia \N \N \N \N \N 36471 A.fragillimum Alyssum Alyssum fragillimum \N \N \N \N \N 36472 M.canescens Morettia Morettia canescens \N \N \N \N \N 36473 N.thyrsiflora Nicotiana Nicotiana thyrsiflora \N \N \N \N \N 36474 \N genus Pseudoclappia \N \N \N \N \N 36475 \N genus Aphelandra \N \N \N \N \N 36476 P.lecardii Polyscias Polyscias lecardii \N \N \N \N \N 36477 S.ramosa Streptostachys Streptostachys ramosa \N \N \N \N \N 36478 F.gentneri Fritillaria Fritillaria gentneri \N \N \N \N \N 36479 \N varietas Pimelea imbricata var. major \N \N \N \N \N 36480 A.hockii Acacia Acacia hockii \N \N \N \N \N 36481 D.incarnata Dactylorhiza Dactylorhiza fuchsii x Dactylorhiza incarnata \N \N \N \N \N 36482 \N varietas Aconitum scaposum var. hupehanum \N \N \N \N \N 36483 P.schomburgkii Paramachaerium Paramachaerium schomburgkii \N \N \N \N \N 36484 M.tulbaghensis Moraea Moraea tulbaghensis \N \N \N \N \N 36485 T.trilobus Tarchonanthus Tarchonanthus trilobus \N \N \N \N \N 36486 R.galeottiana Rhynchostele Rhynchostele galeottiana \N \N \N \N \N 36487 S.herzogii Senna Senna herzogii \N \N \N \N \N 36488 C.seminervis Colleteria Colleteria seminervis \N \N \N \N \N 36489 D.uniflora Duguetia Duguetia uniflora \N \N \N \N \N 36490 A.hausmannii Androsace Androsace hausmannii \N \N \N \N \N 36491 D.vitiense Dracontomelon Dracontomelon vitiense \N \N \N \N \N 36492 A.bracteata Angostura Angostura bracteata \N \N \N \N \N 36493 A.cremastogyne Alnus Alnus cremastogyne \N \N \N \N \N 36494 S.ramosissima Scaevola Scaevola ramosissima \N \N \N \N \N 36495 S.oblanceolata Silene Silene oblanceolata \N \N \N \N \N 36496 \N genus Maackia \N \N \N \N \N 36497 A.regelii Allium Allium regelii \N \N \N \N \N 36498 S.scabrella Spigelia Spigelia scabrella \N \N \N \N \N 36499 M.racemosa Mappia Mappia racemosa \N \N \N \N \N 36500 A.bryophilus Aegopogon Aegopogon bryophilus \N \N \N \N \N 36501 P.pyrenaica Petrocoptis Petrocoptis pyrenaica \N \N \N \N \N 36502 M.longipetiolata Manihot Manihot longipetiolata \N \N \N \N \N 36503 L.azurea Lymania Lymania azurea \N \N \N \N \N 36504 D.periacantha Daemonorops Daemonorops periacantha \N \N \N \N \N 36505 S.aggregatum Solanum Solanum aggregatum \N \N \N \N \N 36506 \N subspecies Brassica rapa subsp. pekinensis Chinese cabbage,bai cai,celery cabbage,pe-tsai \N \N \N \N 36507 B.petiolata Boesenbergia Boesenbergia petiolata \N \N \N \N \N 36508 S.caloneura Sorbus Sorbus caloneura \N \N \N \N \N 36509 L.stracheyi Leontopodium Leontopodium stracheyi \N \N \N \N \N 36510 \N genus Sonderothamnus \N \N \N \N \N 36511 S.lyrata Salvia Salvia lyrata \N \N \N \N \N 36512 C.danica Cochlearia Cochlearia danica \N \N \N \N \N 36513 G.silvatica Guarea Guarea silvatica \N \N \N \N \N 36514 S.anomalum Symphyotrichum Symphyotrichum anomalum \N \N \N \N \N 36515 \N genus Sapria \N \N \N \N \N 36516 A.graveolens Asteriscus Asteriscus graveolens \N \N \N \N \N 36517 S.infernalis Sideritis Sideritis infernalis \N \N \N \N \N 36518 C.longiscapa Cistanthe Cistanthe longiscapa \N \N \N \N \N 36519 P.jamesii Pomaria Pomaria jamesii \N \N \N \N \N 36520 J.rizzinii Justicia Justicia rizzinii \N \N \N \N \N 36521 B.valerioi Brachionidium Brachionidium valerioi \N \N \N \N \N 36522 I.percordata Impatiens Impatiens percordata \N \N \N \N \N 36523 E.sessile Exacum Exacum sessile \N \N \N \N \N 36524 P.adansoniae Polystachya Polystachya adansoniae \N \N \N \N \N 36525 H.hemsleyanum Heracleum Heracleum hemsleyanum \N \N \N \N \N 36526 \N genus Bastardiopsis \N \N \N \N \N 36527 \N genus Symphytum \N \N \N \N \N 36528 C.vanense Cynoglossum Cynoglossum vanense \N \N \N \N \N 36529 T.densiflorum Thlaspi Thlaspi densiflorum \N \N \N \N \N 36530 S.chamaepolybotryon Solanum Solanum chamaepolybotryon \N \N \N \N \N 36531 S.yucatanense Schoenocaulon Schoenocaulon yucatanense \N \N \N \N \N 36532 R.asperula Ruellia Ruellia asperula \N \N \N \N \N 36533 \N no rank environmental samples Taxonomy:404807 \N \N \N \N \N 36534 L.collinsii Leucaena Leucaena collinsii \N \N \N \N \N 36535 B.siphilitica Bonafousia Bonafousia siphilitica \N \N \N \N \N 36536 B.trigona Berberis Berberis trigona \N \N \N \N \N 36537 \N varietas Viola diffusa var. brevibarbata \N \N \N \N \N 36538 \N genus Streptoloma \N \N \N \N \N 36539 \N varietas Mimosa densa var. densa \N \N \N \N \N 36540 G.noumeana Guettarda Guettarda noumeana \N \N \N \N \N 36541 C.revoluta Calceolaria Calceolaria revoluta \N \N \N \N \N 36542 R.petelotii Raphiocarpus Raphiocarpus petelotii \N \N \N \N \N 36543 P.bifida Phlox Phlox bifida \N \N \N \N \N 36544 A.parvulum Allium Allium parvulum \N \N \N \N \N 36545 P.humilis Pleioblastus Pleioblastus humilis \N \N \N \N \N 36546 E.semivillosa Euphorbia Euphorbia semivillosa \N \N \N \N \N 36547 M.nudiflorus Mallotus Mallotus nudiflorus \N \N \N \N \N 36548 \N genus Lepismium \N \N \N \N \N 36549 S.glauca Searsia Searsia glauca \N \N \N \N \N 36550 P.tollii Potentilla Potentilla tollii \N \N \N \N \N 36551 \N subspecies Polyscias bracteata subsp. bracteata \N \N \N \N \N 36552 S.verticillatus Syngonanthus Syngonanthus verticillatus \N \N \N \N \N 36553 V.acerifolia Vitis Vitis acerifolia \N \N \N \N \N 36554 S.vaginatum Selinum Selinum vaginatum \N \N \N \N \N 36555 M.6262 Maxillaria Maxillaria cf. nutans Atwood & Whitten 6262 \N \N \N \N \N 36556 R.sanguineum Rhododendron Rhododendron sanguineum \N \N \N \N \N 36557 S.2963 unclassified Sapotaceae Sapotaceae sp. Munzinger 2963 \N \N \N \N \N 36558 \N genus Poskea \N \N \N \N \N 36559 M.cyclophylla Mimosa Mimosa cyclophylla \N \N \N \N \N 36560 P.rubrinervis Physospermopsis Physospermopsis rubrinervis \N \N \N \N \N 36561 H.mirabilis Haworthia Haworthia mirabilis \N \N \N \N \N 36562 \N genus Cerastium \N \N \N \N \N 36563 A.brevipes Amelichloa Amelichloa brevipes \N \N \N \N \N 36564 E.sonchifolia Emilia Emilia sonchifolia \N \N \N \N \N 36565 Z.abramsii Zeltnera Zeltnera abramsii \N \N \N \N \N 36566 S.densiflora Secondatia Secondatia densiflora \N \N \N \N \N 36567 \N varietas Lomatium foeniculaceum var. foeniculaceum \N \N \N \N \N 36568 M.lepidophora Mimosa Mimosa lepidophora \N \N \N \N \N 36569 U.tamarindoides Uribea Uribea tamarindoides \N \N \N \N \N 36570 L.thailandica Luisia Luisia thailandica \N \N \N \N \N 36571 T.floribundum Trymalium Trymalium floribundum \N \N \N \N \N 36572 S.aethiopica Stoebe Stoebe aethiopica \N \N \N \N \N 36573 J.fruticans Jasminum Jasminum fruticans \N \N \N \N \N 36574 \N varietas Arracacia tolucensis var. tolucensis \N \N \N \N \N 36575 \N no rank Saccharum hybrid cultivar Co 62175 \N \N \N \N \N 36576 S.pauciflorum Stathmostelma Stathmostelma pauciflorum \N \N \N \N \N 36577 C.californicum Chenopodium Chenopodium californicum \N \N \N \N \N 36578 S.silvestris Senna Senna silvestris \N \N \N \N \N 36579 M.foliosa Munnozia Munnozia foliosa \N \N \N \N \N 36580 B.binata Bauhinia Bauhinia binata \N \N \N \N \N 36581 C.leavenworthii Carex Carex leavenworthii \N \N \N \N \N 36582 C.porsildii Claytonia Claytonia porsildii \N \N \N \N \N 36583 \N genus Proustia \N \N \N \N \N 36584 \N genus Acacallis \N \N \N \N \N 36585 A.stipoides Austrostipa Austrostipa stipoides \N \N \N \N \N 36586 V.pringlei Villadia Villadia pringlei \N \N \N \N \N 36587 \N varietas Cleistogenes hackelii var. nakaii \N \N \N \N \N 36588 B.biflora Burmannia Burmannia biflora \N \N \N \N \N 36589 L.honghoensis Litsea Litsea honghoensis \N \N \N \N \N 36590 \N genus Mitchella \N \N \N \N \N 36591 L.elegans Linaria Linaria elegans \N \N \N \N \N 36592 L.nervosus Lathyrus Lathyrus nervosus \N \N \N \N \N 36593 \N no rank Saccharum hybrid cultivar R44 \N \N \N \N \N 36594 T.nudibaccatum Typhonium Typhonium nudibaccatum \N \N \N \N \N 36595 M.cecropiifolia Manihot Manihot cecropiifolia \N \N \N \N \N 36596 P.trifasciata Passiflora Passiflora trifasciata \N \N \N \N \N 36597 \N genus Alloxylon \N \N \N \N \N 36598 R.texana Rudbeckia Rudbeckia texana \N \N \N \N \N 36599 D.versicolor Dichroa Dichroa versicolor \N \N \N \N \N 36600 A.leuconeura Aristolochia Aristolochia leuconeura \N \N \N \N \N 36601 V.esculenta Vangueria Vangueria esculenta \N \N \N \N \N 36602 S.ophryophylla Stevia Stevia ophryophylla \N \N \N \N \N 36603 O.behrmannii Octamyrtus Octamyrtus behrmannii \N \N \N \N \N 36604 D.parilis Diastella Diastella parilis \N \N \N \N \N 36605 L.violacea Lespedeza Lespedeza violacea \N \N \N \N \N 36606 H.spartioides Heterothalamus Heterothalamus spartioides \N \N \N \N \N 36607 O.ellipticum Oxylobium Oxylobium ellipticum \N \N \N \N \N 36608 A.gentlei Acacia Acacia gentlei \N \N \N \N \N 36609 \N subspecies Deiregyne nelsonii subsp. obtusa \N \N \N \N \N 36610 E.74351 Euphorbia Euphorbia sp. Rauh 74351 \N \N \N \N \N 36611 P.sidifolia Passiflora Passiflora sidifolia \N \N \N \N \N 36612 T.chloropetalum Trillium Trillium chloropetalum \N \N \N \N \N 36613 N.pedicularifolia Nototriche Nototriche pedicularifolia \N \N \N \N \N 36614 E.tannensis Euphorbia Euphorbia tannensis \N \N \N \N \N 36615 P.algida Primula Primula algida \N \N \N \N \N 36616 H.rhinophylla Hedyotis Hedyotis rhinophylla \N \N \N \N \N 36617 A.crystallinum Allium Allium crystallinum \N \N \N \N \N 36618 M.dudleyi Mimulus Mimulus dudleyi \N \N \N \N \N 36619 T.sessilifolium Tropaeolum Tropaeolum sessilifolium \N \N \N \N \N 36620 V.calcarata Vanhouttea Vanhouttea calcarata \N \N \N \N \N 36621 P.anguillanus Potamogeton Potamogeton x anguillanus \N \N \N \N \N 36622 P.angelicoides Pterocyclus Pterocyclus angelicoides \N \N \N \N \N 36623 A.Kerby Alocasia Alocasia sp. Kerby \N \N \N \N \N 36624 V.maculata Viola Viola maculata \N \N \N \N \N 36625 \N genus Musineon \N \N \N \N \N 36626 S.ciliata Swertia Swertia ciliata \N \N \N \N \N 36627 S.albida Salsola Salsola albida \N \N \N \N \N 36628 C.ovata Carya Carya ovata shagbark hickory \N \N \N \N 36629 \N varietas Eriogonum corymbosum var. aureum \N \N \N \N \N 36630 \N genus Codonocarpus \N \N \N \N \N 36631 P.pisocarpa Popowia Popowia pisocarpa \N \N \N \N \N 36632 S.VFNT Lycopersicon Solanum sp. VFNT \N \N \N \N \N 36633 C.acuminata Crepis Crepis acuminata \N \N \N \N \N 36634 \N genus Herpolirion \N \N \N \N \N 36635 A.nervosa Astelia Astelia nervosa \N \N \N \N \N 36636 S.domatiosa Shorea Shorea domatiosa \N \N \N \N \N 36637 C.stoebe Centaurea Centaurea stoebe \N \N \N \N \N 36638 C.macrantha Conostegia Conostegia macrantha \N \N \N \N \N 36639 \N genus Sphedamnocarpus \N \N \N \N \N 36640 \N genus Timouria \N \N \N \N \N 36641 D.caespitosus Dianthus Dianthus caespitosus \N \N \N \N \N 36642 G.crassihamatus Glandulicactus Glandulicactus crassihamatus \N \N \N \N \N 36643 G.uliginosum Galium Galium uliginosum \N \N \N \N \N 36644 C.stricta Cliffortia Cliffortia stricta \N \N \N \N \N 36645 \N genus Hauya \N \N \N \N \N 36646 A.integrifolia Azara Azara integrifolia goldspire \N \N \N \N 36647 \N genus Pometia \N \N \N \N \N 36648 C.tuberosa Centaurea Centaurea tuberosa \N \N \N \N \N 36649 S.durantifolia Stemodia Stemodia durantifolia whitewoolly twintip \N \N \N \N 36650 C.edulis Corydalis Corydalis edulis \N \N \N \N \N 36651 H.trigonocarpa Haloragis Haloragis trigonocarpa \N \N \N \N \N 36652 F.kochiana Flaveria Flaveria kochiana \N \N \N \N \N 36653 G.intricata Gentiana Gentiana intricata \N \N \N \N \N 36654 E.SH-2010 Eugenia Eugenia sp. SH-2010 \N \N \N \N \N 36655 S.caricoides Schoenoxiphium Schoenoxiphium caricoides \N \N \N \N \N 36656 E.candolleana Eriotheca Eriotheca candolleana \N \N \N \N \N 36657 C.roulinioides Cynanchum Cynanchum roulinioides \N \N \N \N \N 36658 P.herzogii Psychotria Psychotria herzogii \N \N \N \N \N 36659 C.erythraeum Cymbocarpum Cymbocarpum erythraeum \N \N \N \N \N 36660 N.tetetzo Neobuxbaumia Neobuxbaumia tetetzo \N \N \N \N \N 36661 P.incertus Penstemon Penstemon incertus \N \N \N \N \N 36662 S.erysimoides Soroseris Soroseris erysimoides \N \N \N \N \N 36663 A.indicum Abutilon Abutilon indicum \N \N \N \N \N 36664 A.aegyptiaca Anchusa Anchusa aegyptiaca \N \N \N \N \N 36665 P.anserinoides Potentilla Potentilla anserinoides \N \N \N \N \N 37740 \N genus Patagonula \N \N \N \N \N 36666 P.hackelii Piptochaetium Piptochaetium hackelii \N \N \N \N \N 36667 P.peltatus Peltastes Peltastes peltatus \N \N \N \N \N 36668 P.cumbalensis Passiflora Passiflora cumbalensis \N \N \N \N \N 36669 C.ornithopoda Carex Carex ornithopoda \N \N \N \N \N 36670 B.ornata Banksia Banksia ornata \N \N \N \N \N 36671 A.muraltioides Amphithalea Amphithalea muraltioides \N \N \N \N \N 36672 N.ovalifolius Neuracanthus Neuracanthus ovalifolius \N \N \N \N \N 36673 D.emarginata Daviesia Daviesia emarginata \N \N \N \N \N 36674 A.incarnata Asclepias Asclepias incarnata swamp milkweed \N \N \N \N 36675 E.sideroxyloides Erythroxylum Erythroxylum sideroxyloides \N \N \N \N \N 36676 P.cornuta Pycnocoma Pycnocoma cornuta \N \N \N \N \N 36677 H.angustifolium Hieracium Hieracium angustifolium \N \N \N \N \N 36678 C.bocconi Crepis Crepis bocconi \N \N \N \N \N 36679 I.mauritiana Ipomoea Ipomoea mauritiana \N \N \N \N \N 36680 \N subspecies Musa acuminata subsp. burmannica \N \N \N \N \N 36681 A.plinii Arundo Arundo plinii \N \N \N \N \N 36682 P.venosa Pimelea Pimelea venosa \N \N \N \N \N 36683 \N genus Gymnarrhena \N \N \N \N \N 36684 A.tawilicus Astragalus Astragalus tawilicus \N \N \N \N \N 36685 S.conifera Saxifraga Saxifraga conifera \N \N \N \N \N 36686 G.ovata Garrya Garrya ovata \N \N \N \N \N 36687 A.trautvetteri Acer Acer trautvetteri \N \N \N \N \N 36688 \N genus Evax \N \N \N \N \N 36689 L.osteocarpa Lelya Lelya osteocarpa \N \N \N \N \N 36690 E.verrucosus Euonymus Euonymus verrucosus \N \N \N \N \N 36691 T.didisticha Tillandsia Tillandsia didisticha \N \N \N \N \N 36692 H.blumeana Hemigraphis Hemigraphis blumeana \N \N \N \N \N 36693 O.leinigii Oncidium Oncidium leinigii \N \N \N \N \N 36694 A.hispanicus Adenocarpus Adenocarpus hispanicus piorno \N \N \N \N 36695 C.microphyllus Cyananthus Cyananthus microphyllus \N \N \N \N \N 36696 \N genus Abeliophyllum \N \N \N \N \N 36697 T.apertum Trifolium Trifolium apertum \N \N \N \N \N 36698 \N genus Jasonia \N \N \N \N \N 36699 \N genus Polycarpon \N \N \N \N \N 36700 R.altera Rendlia Rendlia altera \N \N \N \N \N 36701 P.extraaxillaris Polygala Polygala extraaxillaris \N \N \N \N \N 36702 D.caput-medusae Digitostigma Digitostigma caput-medusae \N \N \N \N \N 36703 G.chanae Gagea Gagea chanae \N \N \N \N \N 36704 C.ulotricha Cornus Cornus ulotricha \N \N \N \N \N 36705 C.scaberrima Crambe Crambe scaberrima \N \N \N \N \N 36706 S.swertiifolium Scaphosepalum Scaphosepalum swertiifolium \N \N \N \N \N 36707 M.adenodes Melolobium Melolobium adenodes \N \N \N \N \N 36708 C.supranubius Cytisus Cytisus supranubius \N \N \N \N \N 36709 \N genus Dielsia \N \N \N \N \N 36710 H.cayennensis Helosis Helosis cayennensis \N \N \N \N \N 36711 V.dissecta Vittadinia Vittadinia dissecta \N \N \N \N \N 36712 A.demissa Anemone Anemone demissa \N \N \N \N \N 36713 C.bridsoniae Coffea Coffea bridsoniae \N \N \N \N \N 36714 \N genus Leavenworthia \N \N \N \N \N 36715 Z.coccineum Zygophyllum Zygophyllum coccineum \N \N \N \N \N 36716 C.palmatum Chlorogalum Chlorogalum palmatum \N \N \N \N \N 36717 P.P139 Physalis Physalis sp. P139 \N \N \N \N \N 36718 \N subspecies Elizaldia calycina subsp. embergeri \N \N \N \N \N 36719 B.esquirolii Burretiodendron Burretiodendron esquirolii \N \N \N \N \N 36720 \N genus Castanea \N \N \N \N \N 36721 S.SRR-2011 Sievekingia Sievekingia sp. 1 SRR-2011 \N \N \N \N \N 36722 L.2027 Lupinus Lupinus sp. CEH 2027 \N \N \N \N \N 36723 E.cylindrica Eragrostis Eragrostis cylindrica \N \N \N \N \N 36724 D.apoensis Diplycosia Diplycosia apoensis \N \N \N \N \N 36725 D.transitoria Diospyros Diospyros transitoria \N \N \N \N \N 36726 S.longiflora Selago Selago longiflora \N \N \N \N \N 36727 \N subspecies Crepis pygmaea subsp. anachoretica \N \N \N \N \N 36728 B.scorzonerifolium Bupleurum Bupleurum scorzonerifolium \N \N \N \N \N 36729 S.elmeri Sisyrinchium Sisyrinchium elmeri \N \N \N \N \N 36730 T.zopilotense Tripsacum Tripsacum zopilotense \N \N \N \N \N 36731 L.hildebrandii Lasjia Lasjia hildebrandii \N \N \N \N \N 36732 \N genus Elettariopsis \N \N \N \N \N 36733 D.boerhaviifolia Diplolepis Diplolepis boerhaviifolia \N \N \N \N \N 36734 \N forma Euphorbia meloformis f. magna \N \N \N \N \N 36735 R.persica Rochelia Rochelia persica \N \N \N \N \N 36736 P.taliensis Primula Primula taliensis \N \N \N \N \N 36737 V.lyallii Hebe Veronica lyallii \N \N \N \N \N 36738 C.sudachi Citrus Citrus sudachi \N \N \N \N \N 36739 S.glabrata Sondottia Sondottia glabrata \N \N \N \N \N 36740 \N genus Smodingium \N \N \N \N \N 36741 \N varietas Ilex dumosa var. guaranina \N \N \N \N \N 36742 E.similis Erica Erica similis \N \N \N \N \N 36743 A.cumingii Anarthrophyllum Anarthrophyllum cumingii \N \N \N \N \N 36744 \N genus Manochlamys \N \N \N \N \N 36745 S.tuberosum Solanum Solanum phureja x Solanum tuberosum \N \N \N \N \N 36746 G.505532 Geranium Geranium aff. brevicaule CHR 505532 \N \N \N \N \N 36747 G.exiguum Gossypium Gossypium exiguum \N \N \N \N \N 36748 S.calycina Sabicea Sabicea calycina \N \N \N \N \N 36749 P.natalense Pennisetum Pennisetum natalense \N \N \N \N \N 36750 \N varietas Calliandra pittieri var. pittieri \N \N \N \N \N 36751 L.tibetica Littledalea Littledalea tibetica \N \N \N \N \N 36752 B.ramiflora Baccaurea Baccaurea ramiflora \N \N \N \N \N 36753 S.mascatense Sideroxylon Sideroxylon mascatense \N \N \N \N \N 36754 G.speciosa Galphimia Galphimia speciosa \N \N \N \N \N 36755 D.lamarckianum Dictyocaryum Dictyocaryum lamarckianum \N \N \N \N \N 36756 S.40643 Stylosanthes Stylosanthes aff. hamata Correll 40643 \N \N \N \N \N 36757 P.strobilifera Plagiostachys Plagiostachys strobilifera \N \N \N \N \N 36758 F.angustissima Freycinetia Freycinetia angustissima \N \N \N \N \N 36759 C.flavum Comesperma Comesperma flavum \N \N \N \N \N 36760 U.picroides Urospermum Urospermum picroides \N \N \N \N \N 36761 O.flocktoniae Olearia Olearia flocktoniae \N \N \N \N \N 36762 E.psammogeton Euphorbia Euphorbia psammogeton \N \N \N \N \N 36763 O.schmidii Ochrothallus Ochrothallus schmidii \N \N \N \N \N 36764 B.bubalina Burchellia Burchellia bubalina \N \N \N \N \N 36765 D.polybulbon Dinema Dinema polybulbon \N \N \N \N \N 36766 F.normanii Fumaria Fumaria normanii \N \N \N \N \N 36767 E.stanfordii Erigeron Erigeron stanfordii \N \N \N \N \N 36768 H.cornellsbergia Heliophila Heliophila cornellsbergia \N \N \N \N \N 36769 \N genus Neottia \N \N \N \N \N 36770 P.synanthera Pholidostachys Pholidostachys synanthera \N \N \N \N \N 36771 \N tribe Bossiaeeae \N \N \N \N \N 36772 \N family Geraniaceae geranium family \N \N \N \N 36773 P.apertus Priogymnanthus Priogymnanthus apertus \N \N \N \N \N 36774 M.aurea Metalasia Metalasia aurea \N \N \N \N \N 36775 K.flavescens Klasea Klasea flavescens \N \N \N \N \N 36776 A.flavescens Allium Allium flavescens \N \N \N \N \N 36777 P.rhizogonum Panicum Panicum rhizogonum \N \N \N \N \N 36778 \N genus Allantoma \N \N \N \N \N 36779 A.lamarchei Aechmea Aechmea lamarchei \N \N \N \N \N 36780 S.foliosa Selago Selago foliosa \N \N \N \N \N 36781 C.COM13 Caryodaphnopsis Caryodaphnopsis sp. COM13 \N \N \N \N \N 36782 S.polygaloides Senecio Senecio polygaloides \N \N \N \N \N 36783 R.rigescens Ranunculus Ranunculus rigescens \N \N \N \N \N 36784 H.acmosepalum Hypericum Hypericum acmosepalum \N \N \N \N \N 36785 P.commutatum Papaver Papaver commutatum \N \N \N \N \N 36786 C.morifolius Croton Croton morifolius \N \N \N \N \N 36787 \N genus Rupicola \N \N \N \N \N 36788 P.liesneri Psychotria Psychotria liesneri \N \N \N \N \N 36789 H.clevelandii Hesperolinon Hesperolinon clevelandii \N \N \N \N \N 36790 O.rosea Oenothera Oenothera rosea \N \N \N \N \N 36791 \N genus Io \N \N \N \N \N 36792 \N varietas Melia azedarach var. subtripinnata \N \N \N \N \N 36793 S.polystachyus Scirpus Scirpus polystachyus \N \N \N \N \N 36794 C.globulosa Cuscuta Cuscuta globulosa \N \N \N \N \N 36795 S.SH-2010 Sanchezia Sanchezia sp. SH-2010 \N \N \N \N \N 36796 \N genus Pterostyrax \N \N \N \N \N 36797 E.imlayensis Eucalyptus Eucalyptus imlayensis \N \N \N \N \N 36798 I.capuronii Isolona Isolona capuronii \N \N \N \N \N 36799 B.MAG-2009 unclassified Bignoniaceae Bignoniaceae sp. MAG-2009 \N \N \N \N \N 36800 \N genus Eucarpha \N \N \N \N \N 36801 P.283 Pentas Pentas cf. austroorientalis Rakoto 283 \N \N \N \N \N 36802 C.229 Cyrtandra Cyrtandra cf. mesilauensis Cubey & Scott 229 \N \N \N \N \N 36803 L.rzedowskii Lithospermum Lithospermum rzedowskii \N \N \N \N \N 36804 A.hyalina Anthemis Anthemis hyalina \N \N \N \N \N 36805 C.robusta Craspedia Craspedia robusta \N \N \N \N \N 36806 P.microcarpa Photinia Photinia microcarpa \N \N \N \N \N 36807 A.fragilis Andrachne Andrachne fragilis \N \N \N \N \N 36808 J.1631 Jurinea Jurinea cf. darvasica Susanna et al. 1631 \N \N \N \N \N 36809 P.gibertii Passiflora Passiflora gibertii \N \N \N \N \N 36810 M.lehmanniana Muhlenbergia Muhlenbergia lehmanniana \N \N \N \N \N 36811 E.margaretiae Epilobium Epilobium margaretiae \N \N \N \N \N 36812 A.lanceolatum Alisma Alisma lanceolatum \N \N \N \N \N 36813 S.scutellarioides Solenostemon Solenostemon scutellarioides \N \N \N \N \N 36814 \N genus Scolosanthus \N \N \N \N \N 36815 I.tenuituba Ipomopsis Ipomopsis tenuituba \N \N \N \N \N 36816 H.pubescens Holarrhena Holarrhena pubescens Tellicherry bark \N \N \N \N 36817 \N genus Exochaenium \N \N \N \N \N 36818 M.ferruginea Micranthes Micranthes ferruginea \N \N \N \N \N 36819 A.yunnanensis Altingia Altingia yunnanensis \N \N \N \N \N 36820 M.atropurpureum Macroptilium Macroptilium atropurpureum \N \N \N \N \N 36821 \N varietas Globba patens var. patens \N \N \N \N \N 36822 A.monticola Achillea Achillea monticola \N \N \N \N \N 36823 E.pyramidale Eryngium Eryngium pyramidale \N \N \N \N \N 36824 C.60 Coffea Coffea sp. IRD-Montpelier OF 60 \N \N \N \N \N 36825 I.leschenaultii Impatiens Impatiens leschenaultii \N \N \N \N \N 36826 P.barteri Pleioceras Pleioceras barteri \N \N \N \N \N 36827 L.subulata Lavoisiera Lavoisiera subulata \N \N \N \N \N 36828 O.fordii Osmanthus Osmanthus fordii \N \N \N \N \N 36829 \N varietas Vigna reflexopilosa var. glabra \N \N \N \N \N 36830 P.sonchifolia Primula Primula sonchifolia \N \N \N \N \N 36831 U.discifera Urochloa Urochloa discifera \N \N \N \N \N 36832 W.arabica Wendlandia Wendlandia arabica \N \N \N \N \N 36833 \N genus Chytroglossa \N \N \N \N \N 36834 N.volcanica Nolana Nolana volcanica \N \N \N \N \N 36835 \N genus Pfosseria \N \N \N \N \N 36836 P.macarthurii Ptychosperma Ptychosperma macarthurii \N \N \N \N \N 36837 \N genus Piptoptera \N \N \N \N \N 36838 A.554 Aponogeton Aponogeton sp. Les 554 \N \N \N \N \N 36839 N.mannii Neoboutonia Neoboutonia mannii \N \N \N \N \N 36840 V.betulifolium Viburnum Viburnum betulifolium \N \N \N \N \N 36841 T.californica Trixis Trixis californica \N \N \N \N \N 36842 S.zaidamica Salsola Salsola zaidamica \N \N \N \N \N 36843 \N genus Deltaria \N \N \N \N \N 36844 A.subdentatus Alectryon Alectryon subdentatus \N \N \N \N \N 36845 H.brachiata Hymenopyramis Hymenopyramis brachiata \N \N \N \N \N 36846 \N varietas Salvia aucheri var. canescens \N \N \N \N \N 36847 L.reflexa Lachenalia Lachenalia reflexa \N \N \N \N \N 36848 S.arisanensis Schisandra Schisandra arisanensis \N \N \N \N \N 36849 H.megaptera Heteropterys Heteropterys megaptera \N \N \N \N \N 36850 P.kuramensis Parrya Parrya kuramensis \N \N \N \N \N 36851 T.medusae Telipogon Telipogon medusae \N \N \N \N \N 36852 M.linearifolia Monandriella Monandriella linearifolia \N \N \N \N \N 36853 C.parviceps Cousinia Cousinia parviceps \N \N \N \N \N 36854 L.panamanja Litsea Litsea panamanja \N \N \N \N \N 36855 L.polyphyllus Lupinus Lupinus polyphyllus large-leaved lupine \N \N \N \N 36856 \N genus Plethiandra \N \N \N \N \N 36857 A.nigrescens Alseodaphne Alseodaphne nigrescens \N \N \N \N \N 36858 R.andina Rauvolfia Rauvolfia andina \N \N \N \N \N 36859 A.wightiana Adenia Adenia wightiana \N \N \N \N \N 36860 A.katoana Arenaria Arenaria katoana \N \N \N \N \N 36861 P.restionifolia Protea Protea restionifolia \N \N \N \N \N 36862 M.3833 Monanthotaxis Monanthotaxis sp. Wieringa 3833 \N \N \N \N \N 36863 L.insulare Lepturidium Lepturidium insulare \N \N \N \N \N 36864 \N genus Trilepisium \N \N \N \N \N 36865 \N genus Cyclopogon \N \N \N \N \N 36866 S.cuniculata Scaphyglottis Scaphyglottis cuniculata \N \N \N \N \N 36867 M.ilicifolia Maytenus Maytenus ilicifolia \N \N \N \N \N 36868 A.scandens Ampelosycios Ampelosycios scandens \N \N \N \N \N 36869 P.sorachiana Primula Primula sorachiana \N \N \N \N \N 36870 S.speciosa Sigmoidotropis Sigmoidotropis speciosa \N \N \N \N \N 36871 D.lonicera Diervilla Diervilla lonicera \N \N \N \N \N 36872 A.gibertii Aristolochia Aristolochia gibertii \N \N \N \N \N 36873 A.armata Aralia Aralia armata \N \N \N \N \N 36874 P.philippinensis Phalaenopsis Phalaenopsis philippinensis \N \N \N \N \N 36875 S.pilinophylla Saussurea Saussurea pilinophylla \N \N \N \N \N 36876 H.ingens Harmsiopanax Harmsiopanax ingens \N \N \N \N \N 36877 G.schlechtendaliana Guatteria Guatteria schlechtendaliana \N \N \N \N \N 36878 C.9-1 Cornus Cornus cf. canadensis Xiang and Fan 9-1 \N \N \N \N \N 36879 W.blechicii Wulfenia Wulfenia blechicii \N \N \N \N \N 36880 A.CC-2008 Aeschynomene Aeschynomene sp. CC-2008 \N \N \N \N \N 36881 \N genus Succowia \N \N \N \N \N 36882 E.planifolia Elytraria Elytraria planifolia \N \N \N \N \N 36883 B.mexicana Brunellia Brunellia mexicana \N \N \N \N \N 36884 J.robusta Jurinea Jurinea robusta \N \N \N \N \N 36886 A.tripolitana Anthemis Anthemis tripolitana \N \N \N \N \N 36887 A.catochnoa Alchemilla Alchemilla catochnoa \N \N \N \N \N 36888 \N varietas Angelica cartilaginomarginata var. foliosa \N \N \N \N \N 36889 M.arctica Minuartia Minuartia arctica arctic stitchwort \N \N \N \N 36890 S.obliquum Schizodium Schizodium obliquum \N \N \N \N \N 36891 T.arundinacea Themeda Themeda arundinacea \N \N \N \N \N 36892 I.santillanii Ipomoea Ipomoea santillanii \N \N \N \N \N 36893 S.angustissima Schefflera Schefflera angustissima \N \N \N \N \N 36894 R.paludosus Ranunculus Ranunculus paludosus \N \N \N \N \N 36895 S.molle Schinus Schinus molle \N \N \N \N \N 36896 P.cardiostigma Pterostylis Pterostylis cardiostigma \N \N \N \N \N 36897 P.aquatica Pachira Pachira aquatica \N \N \N \N \N 36898 M.arboreus Malvaviscus Malvaviscus arboreus wax mallow \N \N \N \N 36899 E.phoenicea Eucalyptus Eucalyptus phoenicea fiery gum,ngainggar \N \N \N \N 36900 S.parviflorus Samolus Samolus parviflorus seaside brookweed \N \N \N \N 36901 \N family Erythropalaceae \N \N \N \N \N 36902 C.glechomifolia Cardamine Cardamine glechomifolia \N \N \N \N \N 36903 J.bufonius Juncus Juncus bufonius toad rush \N \N \N \N 36904 P.famarae Plantago Plantago famarae \N \N \N \N \N 36905 \N genus Benkara \N \N \N \N \N 36906 I.batatas Ipomoea Ipomoea batatas batate,sweet potato \N \N \N \N 36907 L.pinnata Lachemilla Lachemilla pinnata \N \N \N \N \N 36908 Q.saponaria Quillaja Quillaja saponaria \N \N \N \N \N 36909 A.paniculatum Amphilophium Amphilophium paniculatum \N \N \N \N \N 36910 P.popovii Parrya Parrya popovii \N \N \N \N \N 36911 G.scullyi Gladiolus Gladiolus scullyi \N \N \N \N \N 36912 M.foliosa Maxillaria Maxillaria foliosa \N \N \N \N \N 36913 D.dinteri Danthoniopsis Danthoniopsis dinteri \N \N \N \N \N 36914 H.costaricense Hedyosmum Hedyosmum costaricense \N \N \N \N \N 36915 N.willamettensis Navarretia Navarretia willamettensis \N \N \N \N \N 36916 M.oleraceum Maianthemum Maianthemum oleraceum \N \N \N \N \N 36917 C.pallescens Centaurea Centaurea pallescens \N \N \N \N \N 36918 N.pervillei Nepenthes Nepenthes pervillei \N \N \N \N \N 36919 \N genus Plagiosiphon \N \N \N \N \N 36920 A.panamensis Adelobotrys Adelobotrys panamensis \N \N \N \N \N 36921 A.SH-2010 Ardisia Ardisia sp. SH-2010 \N \N \N \N \N 36922 \N subspecies Noccaea fendleri subsp. idahoense \N \N \N \N \N 36923 P.'sylvester' Plantago Plantago sp. 'sylvester' \N \N \N \N \N 36924 \N genus Pycnarrhena \N \N \N \N \N 36925 \N varietas Chimonanthus campanulatus var. guizhouensis \N \N \N \N \N 36926 L.elongatum Lophopyrum Lophopyrum elongatum tall wheatgrass \N \N \N \N 36927 S.woodsonii Struthanthus Struthanthus woodsonii \N \N \N \N \N 36928 A.batangae Allexis Allexis batangae \N \N \N \N \N 36929 \N varietas Echinacea angustifolia var. angustifolia \N \N \N \N \N 36930 M.acuminata Musa Musa acuminata banana,dessert bananas,sweet banana \N \N \N \N 36931 M.sanchez-mejoradae Mammillaria Mammillaria sanchez-mejoradae \N \N \N \N \N 36932 H.marinensis Horkelia Horkelia marinensis \N \N \N \N \N 36933 A.javarense Astrocaryum Astrocaryum javarense \N \N \N \N \N 36934 M.umbellata Morinda Morinda umbellata common Indian-mulberry \N \N \N \N 36935 \N genus Tepualia \N \N \N \N \N 36936 \N genus Amaroria \N \N \N \N \N 36937 C.galgalensis Calciphila Calciphila galgalensis \N \N \N \N \N 36938 H.balansae Holocalyx Holocalyx balansae \N \N \N \N \N 36939 R.angulata Rehmannia Rehmannia angulata \N \N \N \N \N 36940 M.glaucescens Myrrhidendron Myrrhidendron glaucescens \N \N \N \N \N 36941 \N genus Michelsonia \N \N \N \N \N 36942 I.337 Iochroma Iochroma sp. Smith 337 \N \N \N \N \N 36943 C.pungens Cliffortia Cliffortia dregeana x Cliffortia pungens \N \N \N \N \N 36944 \N no rank Kerrieae \N \N \N \N \N 36945 O.emirnensis Olax Olax emirnensis \N \N \N \N \N 36946 D.hissarica Dionysia Dionysia hissarica \N \N \N \N \N 36947 B.davurica Betula Betula davurica \N \N \N \N \N 36948 D.strictus Dianthus Dianthus strictus \N \N \N \N \N 36949 O.patens Orchis Orchis patens \N \N \N \N \N 36950 \N genus Neomyrtus \N \N \N \N \N 36951 G.humblotii Gastrorchis Gastrorchis humblotii \N \N \N \N \N 36952 S.occidentale Syndyophyllum Syndyophyllum occidentale \N \N \N \N \N 36953 C.polifolia Calceolaria Calceolaria polifolia \N \N \N \N \N 36954 P.revolutum Psorospermum Psorospermum revolutum \N \N \N \N \N 36955 S.autumnalis Scorzoneroides Scorzoneroides autumnalis \N \N \N \N \N 36956 B.incana Berteroa Berteroa incana \N \N \N \N \N 36957 A.continua Acacia Acacia continua \N \N \N \N \N 36958 Y.japonica Youngia Youngia japonica \N \N \N \N \N 36959 I.roseocaerulea Indigofera Indigofera roseocaerulea \N \N \N \N \N 36960 B.gracilis Blakea Blakea gracilis \N \N \N \N \N 36961 S.maglia Solanum Solanum maglia \N \N \N \N \N 36962 C.klotzschianus Croton Croton klotzschianus \N \N \N \N \N 36963 G.scandens Griselinia Griselinia scandens \N \N \N \N \N 36964 \N genus Pseudoprospero \N \N \N \N \N 36965 K.cuspidatum Kalidium Kalidium cuspidatum \N \N \N \N \N 36966 V.subconcolor Vanda Vanda subconcolor \N \N \N \N \N 36967 \N subspecies Argyranthemum broussonetii subsp. gomerense \N \N \N \N \N 36968 X.vulcanensis Xenia Xenia vulcanensis \N \N \N \N \N 36969 \N genus Nelumbo \N \N \N \N \N 36970 \N genus Plicosepalus \N \N \N \N \N 36971 B.21 Begonia Begonia sp. Forrest 21 \N \N \N \N \N 36972 C.violacea Caesalpinia Caesalpinia violacea \N \N \N \N \N 36973 \N genus Solanum \N \N \N \N \N 36974 \N genus Drypis \N \N \N \N \N 36975 V.stamineum Vaccinium Vaccinium stamineum \N \N \N \N \N 36976 Z.simplex Zygophyllum Zygophyllum simplex \N \N \N \N \N 36977 E.conspersa Encelia Encelia conspersa \N \N \N \N \N 36978 P.albus Petasites Petasites albus \N \N \N \N \N 36979 \N genus Salvertia \N \N \N \N \N 36980 C.amabilis Crambe Crambe amabilis \N \N \N \N \N 36981 C.marlothii Commiphora Commiphora marlothii \N \N \N \N \N 36982 T.linearis Thymus Thymus linearis \N \N \N \N \N 36983 A.brassii Aglaia Aglaia brassii \N \N \N \N \N 36984 M.halei Mammillaria Mammillaria halei \N \N \N \N \N 36985 S.tschuktschorum Salix Salix tschuktschorum \N \N \N \N \N 36986 A.micrantha Andira Andira micrantha \N \N \N \N \N 36987 \N genus Buddleja \N \N \N \N \N 36988 \N varietas Polygonatum odoratum var. pluriflorum \N \N \N \N \N 36989 V.praestans Vaccinium Vaccinium praestans \N \N \N \N \N 36990 \N genus Psyllocarpus \N \N \N \N \N 36991 T.marconae Tillandsia Tillandsia marconae \N \N \N \N \N 36992 \N genus Bismarckia \N \N \N \N \N 36993 H.lilioasphodelus Hemerocallis Hemerocallis lilioasphodelus \N \N \N \N \N 36994 \N varietas Photinia benthamiana var. salicifolia \N \N \N \N \N 36995 N.gossei Nicotiana Nicotiana gossei \N \N \N \N \N 36996 P.cockburniana Primula Primula cockburniana \N \N \N \N \N 36997 A.hickmanii Allium Allium hickmanii \N \N \N \N \N 36998 S.obvallata Saussurea Saussurea obvallata \N \N \N \N \N 36999 I.wallichii Impatiens Impatiens wallichii \N \N \N \N \N 37000 C.lehmannii Cryptocentrum Cryptocentrum lehmannii \N \N \N \N \N 37001 \N varietas Viola stagnina var. lacteaeoides \N \N \N \N \N 37002 O.klugii Odontocarya Odontocarya klugii \N \N \N \N \N 37003 C.costatus Chilocarpus Chilocarpus costatus \N \N \N \N \N 37004 R.nashii Rhexia Rhexia nashii maid Marian \N \N \N \N 37005 \N genus Biarum \N \N \N \N \N 37006 M.linoides Monardella Monardella linoides \N \N \N \N \N 37007 M.rivulicola Moraea Moraea rivulicola \N \N \N \N \N 37008 P.pinnata Paullinia Paullinia pinnata timbo \N \N \N \N 37009 M.dysocarpa Mimosa Mimosa dysocarpa \N \N \N \N \N 37010 \N genus Trilepis \N \N \N \N \N 37011 \N genus Momordica \N \N \N \N \N 37012 C.balfourii Cyperus Cyperus balfourii \N \N \N \N \N 37013 C.sanfelipensis Cylindropuntia Cylindropuntia sanfelipensis \N \N \N \N \N 37014 C.burle-marxii Ctenanthe Ctenanthe burle-marxii \N \N \N \N \N 37015 C.exilis Calochortus Calochortus exilis \N \N \N \N \N 37016 P.cryophila Protea Protea cryophila \N \N \N \N \N 37017 \N genus Martinella \N \N \N \N \N 37018 P.viridiflora Plagiostachys Plagiostachys viridiflora \N \N \N \N \N 37019 Z.capense Zanthoxylum Zanthoxylum capense \N \N \N \N \N 37020 N.sparsiflora Neillia Neillia sparsiflora \N \N \N \N \N 37021 C.aurantiaca Coccinia Coccinia aurantiaca \N \N \N \N \N 37022 E.patula Erepsia Erepsia patula \N \N \N \N \N 37023 L.triloba Loasa Loasa triloba \N \N \N \N \N 37024 I.s.n. Ixora Ixora sp. Mouly s.n. \N \N \N \N \N 37025 C.neurochlamys Chamaedorea Chamaedorea neurochlamys \N \N \N \N \N 37026 \N genus Megalodonta \N \N \N \N \N 37027 L.cedrosensis Lotus Lotus cedrosensis \N \N \N \N \N 37028 I.magicus Irenepharsus Irenepharsus magicus \N \N \N \N \N 37029 E.makinoi Eupatorium Eupatorium makinoi \N \N \N \N \N 37030 \N family Arecaceae palm family,palms \N \N \N \N 37031 A.macrophyllum Acer Acer macrophyllum Oregon maple,big-leaf maple,canyon maple \N \N \N \N 37032 H.thyrsiforme Hedychium Hedychium thyrsiforme \N \N \N \N \N 37033 A.lyrata Arabidopsis Arabidopsis thaliana x Arabidopsis lyrata \N \N \N \N \N 37034 P.grandiflora Pyrola Pyrola grandiflora \N \N \N \N \N 37035 C.erythrorhizos Cyperus Cyperus erythrorhizos \N \N \N \N \N 37036 \N genus Porphyrostemma \N \N \N \N \N 37037 C.sosnowskyi Cerastium Cerastium sosnowskyi \N \N \N \N \N 37038 \N suborder Lecythidaceae Brazil nut family \N \N \N \N 37039 A.tricuspidata Adenophora Adenophora tricuspidata \N \N \N \N \N 37040 R.herzogii Rhododendron Rhododendron herzogii \N \N \N \N \N 37041 D.perreticulata Drypetes Drypetes perreticulata \N \N \N \N \N 37042 P.meadia Primula Primula meadia pride of Ohio \N \N \N \N 37043 A.annua Adonis Adonis annua blood-drops,pheasant's-eye \N \N \N \N 37044 E.gracilipes Eriotheca Eriotheca gracilipes \N \N \N \N \N 37045 W.capensis Wahlenbergia Wahlenbergia capensis \N \N \N \N \N 37046 C.alpina Circaea Circaea alpina \N \N \N \N \N 37047 B.coccineus Byrsocarpus Byrsocarpus coccineus \N \N \N \N \N 37048 L.japonicus Lasianthus Lasianthus japonicus \N \N \N \N \N 37049 C.curvata Carex Carex curvata \N \N \N \N \N 37050 S.falcatum Symphyotrichum Symphyotrichum falcatum \N \N \N \N \N 37051 K.rechingerorum Kandaharia Kandaharia rechingerorum \N \N \N \N \N 37052 D.4592 Drymonia Drymonia sp. Clark 4592 \N \N \N \N \N 37053 N.gigantea Nymphaea Nymphaea gigantea \N \N \N \N \N 37054 P.aurita Polycycnis Polycycnis aurita \N \N \N \N \N 37055 S.asphaltica Suaeda Suaeda asphaltica \N \N \N \N \N 37056 P.biflora Podalyria Podalyria biflora \N \N \N \N \N 37837 \N genus Spirostachys \N \N \N \N \N 37057 P.ellaphieae Pelargonium Pelargonium ellaphieae \N \N \N \N \N 37058 H.polysperma Hygrophila Hygrophila polysperma Indian swampweed,Miramar-weed \N \N \N \N 37059 \N genus Guthriea \N \N \N \N \N 37060 M.revoluta Monnina Monnina revoluta \N \N \N \N \N 37061 K.prattii Kobresia Kobresia prattii \N \N \N \N \N 37062 H.scabridum Heracleum Heracleum scabridum \N \N \N \N \N 37063 P.yucatanense Piper Piper yucatanense \N \N \N \N \N 37064 N.tingomariensis Nasa Nasa tingomariensis \N \N \N \N \N 37065 G.barbata Gomesa Gomesa barbata \N \N \N \N \N 37066 A.juncea Anisacanthus Anisacanthus juncea \N \N \N \N \N 37067 S.saetabensis Sarcocapnos Sarcocapnos saetabensis \N \N \N \N \N 37068 S.verecunda Silene Silene verecunda \N \N \N \N \N 37069 P.longituba Pauridia Pauridia longituba \N \N \N \N \N 37070 S.palisiae Scorzoneroides Scorzoneroides palisiae \N \N \N \N \N 37071 M.friedrichsthalii Maxillaria Maxillaria friedrichsthalii \N \N \N \N \N 37072 M.leiotricha Miconia Miconia leiotricha \N \N \N \N \N 37073 O.alba Othonna Othonna alba \N \N \N \N \N 37074 \N tribe Boechereae \N \N \N \N \N 37075 B.virginea Babiana Babiana virginea \N \N \N \N \N 37076 \N genus Ruschia \N \N \N \N \N 37077 \N varietas Prunus padus var. pubescens \N \N \N \N \N 37078 A.16108 Amaryllis Amaryllis sp. Quagliariello 16108 \N \N \N \N \N 37079 L.heteroloba Lonicera Lonicera heteroloba \N \N \N \N \N 37080 I.roseata Ipomopsis Ipomopsis roseata \N \N \N \N \N 37081 L.dielsianus Leucopogon Leucopogon dielsianus \N \N \N \N \N 37082 M.loefgrenii Maxillaria Maxillaria loefgrenii \N \N \N \N \N 37083 G.megalantha Greeniopsis Greeniopsis megalantha \N \N \N \N \N 37084 T.ventricosa Tabernaemontana Tabernaemontana ventricosa \N \N \N \N \N 37085 G.wallichiana Gymnosporia Gymnosporia wallichiana \N \N \N \N \N 37086 V.8316 Vangueriopsis Vangueriopsis cf. longiflora Luke 8316 \N \N \N \N \N 37087 B.muricata Banisteriopsis Banisteriopsis muricata \N \N \N \N \N 37088 E.houseana Eucalyptus Eucalyptus houseana \N \N \N \N \N 37089 H.kawanoi Heloniopsis Heloniopsis kawanoi \N \N \N \N \N 37090 A.filidentiforme Allium Allium filidentiforme \N \N \N \N \N 37091 \N varietas Melampodium montanum var. montanum \N \N \N \N \N 37092 \N genus Xyris \N \N \N \N \N 37093 \N genus Syndyophyllum \N \N \N \N \N 37094 P.bancoensis Polystachya Polystachya bancoensis \N \N \N \N \N 37095 K.9909 Kunzea Kunzea sp. B Telford 9909 \N \N \N \N \N 37096 G.glabrescens Guatteria Guatteria glabrescens \N \N \N \N \N 37097 D.CQ-2002 Drymophila Drymophila sp. CQ-2002 \N \N \N \N \N 37098 C.capensis Crotalaria Crotalaria capensis \N \N \N \N \N 37099 E.alopecurus Erica Erica alopecurus \N \N \N \N \N 37100 P.praelongus Potamogeton Potamogeton wrightii x Potamogeton praelongus \N \N \N \N \N 37101 S.mannii Schiedea Schiedea mannii \N \N \N \N \N 37102 \N tribe Chiococceae \N \N \N \N \N 37103 I.oculus-christi Inula Inula oculus-christi \N \N \N \N \N 37104 T.wallichii Tarennoidea Tarennoidea wallichii \N \N \N \N \N 37105 S.nivea Silene Silene nivea evening campion \N \N \N \N 37106 L.pueblana Leucaena Leucaena pueblana \N \N \N \N \N 37107 \N genus Phuopsis \N \N \N \N \N 37108 P.VMV-2010 Petrorhagia Petrorhagia sp. A VMV-2010 \N \N \N \N \N 37109 M.bequaertiana Malouetia Malouetia bequaertiana \N \N \N \N \N 37110 L.racemosus Leymus Leymus racemosus \N \N \N \N \N 37111 P.kirkii Psychotria Psychotria kirkii \N \N \N \N \N 37112 T.hildae Tillandsia Tillandsia hildae \N \N \N \N \N 37113 T.papillosum Tetrastigma Tetrastigma papillosum \N \N \N \N \N 37114 P.ciliaris Perezia Perezia ciliaris \N \N \N \N \N 37115 P.leucanthum Pterygodium Pterygodium leucanthum \N \N \N \N \N 37116 \N genus Trillidium \N \N \N \N \N 37117 W.thyrsoidea Wendlandia Wendlandia thyrsoidea \N \N \N \N \N 37118 D.pentamera Diospyros Diospyros pentamera \N \N \N \N \N 37119 \N genus Podandrogyne \N \N \N \N \N 37120 N.xanthoxylon Nauclea Nauclea xanthoxylon \N \N \N \N \N 37121 A.revillae Arrabidaea Arrabidaea revillae \N \N \N \N \N 37122 C.pancration Charybdis Charybdis pancration \N \N \N \N \N 37123 M.5341 Marina Marina sp. Lavin 5341 \N \N \N \N \N 37124 S.cucullatum Schoenocephalium Schoenocephalium cucullatum \N \N \N \N \N 37125 G.andicola Geum Geum andicola \N \N \N \N \N 37126 T.flammea Tigridia Tigridia flammea \N \N \N \N \N 37127 H.ternstroemiifolia Heteropterys Heteropterys ternstroemiifolia \N \N \N \N \N 37128 \N family Linaceae flax family \N \N \N \N 37129 E.neriifolia Euphorbia Euphorbia neriifolia milk spurge,oleander spurge \N \N \N \N 37130 I.tenuifolia Iris Iris tenuifolia \N \N \N \N \N 37131 L.loeselii Liparis Liparis loeselii fen orchid \N \N \N \N 37132 \N genus Sinowilsonia \N \N \N \N \N 37133 \N genus Opocunonia \N \N \N \N \N 37134 R.crispus Rumex Rumex crispus \N \N \N \N \N 37135 \N family Eupteleaceae \N \N \N \N \N 37136 I.pseudozombensis Impatiens Impatiens pseudozombensis \N \N \N \N \N 37137 R.ellipticum Rhododendron Rhododendron ellipticum \N \N \N \N \N 37138 F.kirialovii Ferula Ferula kirialovii kamol,kumot,lambutta \N \N \N \N 37139 G.EHR-2007 Gamanthus Gamanthus sp. EHR-2007 \N \N \N \N \N 37140 T.usneoides Tamarix Tamarix usneoides \N \N \N \N \N 37141 M.floribunda Macleania Macleania floribunda \N \N \N \N \N 37142 E.pulchellus Erigeron Erigeron pulchellus \N \N \N \N \N 37143 L.panicea Leptochloa Leptochloa panicea \N \N \N \N \N 37144 A.cinnamomea Arrabidaea Arrabidaea cinnamomea \N \N \N \N \N 37145 A.8347 Acanthopale Acanthopale sp. Chapman & Chapman 8347 \N \N \N \N \N 37146 S.eucleoides Suregada Suregada eucleoides \N \N \N \N \N 37147 E.salicifolium Exostema Exostema salicifolium \N \N \N \N \N 37148 \N subspecies Myosotis laxa subsp. caespitosa \N \N \N \N \N 37149 T.triflora Thurovia Thurovia triflora \N \N \N \N \N 37150 N.91029 Nymphaea Nymphaea sp. Qiu 91029 \N \N \N \N \N 37151 P.rivalis Platychorda Platychorda rivalis \N \N \N \N \N 37152 \N genus Blakiella \N \N \N \N \N 37153 A.farinosa Actinidia Actinidia farinosa \N \N \N \N \N 38127 \N genus Snowdenia \N \N \N \N \N 37154 \N subspecies Erica radicans subsp. schlechteri \N \N \N \N \N 37155 C.calcareum Cirsium Cirsium calcareum Cainville thistle \N \N \N \N 37156 M.mixta Muraltia Muraltia mixta \N \N \N \N \N 37157 B.wrayi Begonia Begonia wrayi \N \N \N \N \N 37158 L.stenophyllum Lycium Lycium stenophyllum \N \N \N \N \N 37159 A.grammocalyx Astragalus Astragalus grammocalyx \N \N \N \N \N 37160 P.montana Phylica Phylica montana \N \N \N \N \N 37161 F.africana Fuerstia Fuerstia africana \N \N \N \N \N 37162 O.subintegra Oxalis Oxalis subintegra \N \N \N \N \N 37163 \N varietas Dyschoriste schiedeana var. schiedeana \N \N \N \N \N 37164 E.virgatum Erucastrum Erucastrum virgatum \N \N \N \N \N 37165 E.collina Eschweilera Eschweilera collina \N \N \N \N \N 37166 P.gossweileri Pentanisia Pentanisia gossweileri \N \N \N \N \N 37167 P.ovata Plantago Plantago ovata blond psyllium,ispaghul \N \N \N \N 37168 B.brassii Bosistoa Bosistoa brassii \N \N \N \N \N 37169 \N genus Staurochilus \N \N \N \N \N 37170 L.liatroides Ligularia Ligularia liatroides \N \N \N \N \N 37171 H.vernalis Hamamelis Hamamelis vernalis Ozark witch-hazel,vernal witch-hazel \N \N \N \N 37172 C.95085 Clematis Clematis sp. Qiu 95085 \N \N \N \N \N 37173 H.scandens Hibbertia Hibbertia scandens \N \N \N \N \N 37174 E.lucida Erica Erica lucida \N \N \N \N \N 37175 M.rubeola Masdevallia Masdevallia rubeola \N \N \N \N \N 37176 C.tessellaris Corymbia Corymbia tessellaris \N \N \N \N \N 37177 A.komarovii Acer Acer komarovii \N \N \N \N \N 37178 S.gemmigera Saxifraga Saxifraga gemmigera \N \N \N \N \N 37179 P.stauntonii Plantago Plantago stauntonii \N \N \N \N \N 37180 \N genus Lithops \N \N \N \N \N 37181 E.spinosa Euphorbia Euphorbia spinosa \N \N \N \N \N 37182 O.divaricata Oligochaeta Oligochaeta divaricata \N \N \N \N \N 37183 \N subspecies Bidens sandvicensis subsp. sandvicensis \N \N \N \N \N 37184 H.bracteolatum Hieracium Hieracium bracteolatum \N \N \N \N \N 37185 \N genus Thylachium \N \N \N \N \N 37186 \N genus Myoschilos \N \N \N \N \N 37187 M.albilanata Mammillaria Mammillaria albilanata \N \N \N \N \N 37188 \N subspecies Cirsium carniolicum subsp. rufescens \N \N \N \N \N 37189 C.carinatum Chorizema Chorizema carinatum \N \N \N \N \N 37190 C.joaquinae Couepia Couepia joaquinae \N \N \N \N \N 37191 \N genus Lechea \N \N \N \N \N 37192 D.miniata Disa Disa miniata \N \N \N \N \N 37193 P.occidentale Polemonium Polemonium occidentale \N \N \N \N \N 37194 C.BWvE-2010 Croton Croton sp. BWvE-2010 \N \N \N \N \N 37195 P.acuta Phyllostachys Phyllostachys acuta woody bamboo \N \N \N \N 37196 C.bartramia Commersonia Commersonia bartramia \N \N \N \N \N 37197 \N family Loganiaceae \N \N \N \N \N 37198 B.sparsa Beaufortia Beaufortia sparsa \N \N \N \N \N 37199 P.haussknechtii Prunus Prunus haussknechtii \N \N \N \N \N 37200 F.mairei Festuca Festuca mairei \N \N \N \N \N 37201 S.04F/0106 Salicornia Salicornia aff. ramosissima Teege 04F/0106 \N \N \N \N \N 37202 \N genus Nesoluma \N \N \N \N \N 37203 V.pygmaea Vangueria Vangueria pygmaea \N \N \N \N \N 37204 S.incarceratum Solanum Solanum incarceratum \N \N \N \N \N 37205 P.melanopoda Pouteria Pouteria melanopoda \N \N \N \N \N 37206 A.umbilicatum Allium Allium umbilicatum \N \N \N \N \N 37207 G.heterocarpum Geum Geum heterocarpum \N \N \N \N \N 37208 R.trilobata Rhus Rhus trilobata skunkbush \N \N \N \N 37209 E.albens Eucalyptus Eucalyptus albens \N \N \N \N \N 37210 N.aristata Nierembergia Nierembergia aristata \N \N \N \N \N 37211 M.adolphii Maxillaria Maxillaria adolphii \N \N \N \N \N 37212 S.SRR-2011 unclassified Stanhopeinae Stanhopeinae sp. 1 SRR-2011 \N \N \N \N \N 37213 A.caseariae Apodanthes Apodanthes caseariae \N \N \N \N \N 37214 \N no rank Oncidium Sherry Baby \N \N \N \N \N 37215 L.alpina Lomatogoniopsis Lomatogoniopsis alpina \N \N \N \N \N 37216 D.caulostachyum Dysoxylum Dysoxylum caulostachyum \N \N \N \N \N 37217 S.JK-2009 Sebaea Sebaea sp. 2 JK-2009 \N \N \N \N \N 37218 R.pudorinum Rhododendron Rhododendron pudorinum \N \N \N \N \N 37219 A.yangbiense Acer Acer yangbiense \N \N \N \N \N 37220 A.cinerascens Antigonon Antigonon cinerascens \N \N \N \N \N 37221 \N genus Sommieria \N \N \N \N \N 37222 S.pilifera Senna Senna pilifera \N \N \N \N \N 37223 C.moncktonii Centaurea Centaurea x moncktonii \N \N \N \N \N 37224 F.cochabambana Festuca Festuca cochabambana \N \N \N \N \N 37225 C.japonica Comanthosphace Comanthosphace japonica \N \N \N \N \N 37226 L.ciliosa Lonicera Lonicera ciliosa \N \N \N \N \N 37227 P.leiopodum Piptochaetium Piptochaetium leiopodum \N \N \N \N \N 37228 A.hollandicum Allium Allium hollandicum \N \N \N \N \N 37229 M.coccinea Maxillaria Maxillaria coccinea \N \N \N \N \N 37230 \N subspecies Tetratheca paynterae subsp. paynterae \N \N \N \N \N 37231 K.rostellata Kalbreyeriella Kalbreyeriella rostellata \N \N \N \N \N 37232 S.gypsophila Strotheria Strotheria gypsophila \N \N \N \N \N 37233 \N subspecies Artocarpus nitidus subsp. borneensis \N \N \N \N \N 37234 \N genus Anticlea \N \N \N \N \N 37235 U.olivacea Utricularia Utricularia olivacea piedmont bladderwort \N \N \N \N 37236 \N subspecies Aspalathus opaca subsp. opaca \N \N \N \N \N 37237 C.purpurea Cousinia Cousinia purpurea \N \N \N \N \N 37238 \N genus Lepidobolus \N \N \N \N \N 37239 \N genus Lycoseris \N \N \N \N \N 37240 T.tomentosa Thottea Thottea tomentosa \N \N \N \N \N 37241 \N subspecies Stylosanthes guianensis subsp. guianensis \N \N \N \N \N 37242 C.subacaulis Camissonia Camissonia subacaulis \N \N \N \N \N 37243 J.clemensiae Jarandersonia Jarandersonia clemensiae \N \N \N \N \N 37244 A.99-6368 Aframomum Aframomum sp. Kress 99-6368 \N \N \N \N \N 37245 P.repens Panicum Panicum repens torpedo grass \N \N \N \N 37246 P.lapestris Pilea Pilea lapestris \N \N \N \N \N 37247 A.dichotomus Allagopappus Allagopappus dichotomus \N \N \N \N \N 37248 \N subspecies Primula balbisii subsp. balbisii \N \N \N \N \N 37249 A.quinquegona Ardisia Ardisia quinquegona \N \N \N \N \N 38323 \N genus Austrosteenisia \N \N \N \N \N 37250 D.hexandra Dodonaea Dodonaea hexandra \N \N \N \N \N 37251 M.pulcherrima Myricaria Myricaria pulcherrima \N \N \N \N \N 37252 A.capillacea Aristida Aristida capillacea \N \N \N \N \N 37253 \N subspecies Erica venustiflora subsp. glandulosa \N \N \N \N \N 37254 H.geraldii Haworthia Haworthia geraldii \N \N \N \N \N 37255 \N genus Sumbaviopsis \N \N \N \N \N 37256 E.personata Euphorbia Euphorbia personata \N \N \N \N \N 37257 V.sorbifolia Valeriana Valeriana sorbifolia \N \N \N \N \N 37258 A.fascicularis Asclepias Asclepias fascicularis \N \N \N \N \N 37259 S.dendroides Suaeda Suaeda dendroides \N \N \N \N \N 37260 \N genus Scalesia \N \N \N \N \N 37261 M.debilis Microtea Microtea debilis \N \N \N \N \N 37262 \N genus Eurycoma \N \N \N \N \N 37263 P.iringensis Psychotria Psychotria iringensis \N \N \N \N \N 37264 B.eupatorioides Brickellia Brickellia eupatorioides \N \N \N \N \N 37265 T.acornis Trapa Trapa acornis \N \N \N \N \N 37266 T.sherriffii Taraxacum Taraxacum sherriffii \N \N \N \N \N 37267 \N genus Atractylis \N \N \N \N \N 37268 \N genus Ruttya \N \N \N \N \N 37269 \N genus Lysiosepalum \N \N \N \N \N 37270 B.crenata Bursera Bursera crenata \N \N \N \N \N 37271 D.pachycarpa Dalbergia Dalbergia pachycarpa \N \N \N \N \N 37272 P.aciculatum Pelargonium Pelargonium aciculatum \N \N \N \N \N 37273 C.longgangensis Chirita Chirita longgangensis \N \N \N \N \N 37274 \N subspecies Digitalis purpurea subsp. heywoodii \N \N \N \N \N 37275 F.mughlae Ferulago Ferulago mughlae \N \N \N \N \N 37276 H.humifusum Heliotropium Heliotropium humifusum \N \N \N \N \N 37277 M.saxatilis Monocladus Monocladus saxatilis \N \N \N \N \N 37278 \N subspecies Mastixia pentandra subsp. chinensis \N \N \N \N \N 37279 C.pilosum Canarium Canarium pilosum \N \N \N \N \N 37280 P.amazonicus Polygonanthus Polygonanthus amazonicus \N \N \N \N \N 37281 C.decorticans Capirona Capirona decorticans \N \N \N \N \N 37282 S.appendiculata Setaria Setaria appendiculata \N \N \N \N \N 37283 P.myrsinoides Pouteria Pouteria myrsinoides \N \N \N \N \N 37284 C.prismatica Cuscuta Cuscuta prismatica \N \N \N \N \N 37285 O.zygantha Ononis Ononis zygantha \N \N \N \N \N 37286 P.brevifolium Phoradendron Phoradendron brevifolium \N \N \N \N \N 37287 R.piasezkii Rehmannia Rehmannia piasezkii \N \N \N \N \N 37288 D.indica Duchesnea Duchesnea indica \N \N \N \N \N 37289 E.truncatum Eupatorium Eupatorium truncatum \N \N \N \N \N 37290 C.blumeanum Coscinium Coscinium blumeanum \N \N \N \N \N 37291 P.scolopax Pedicularis Pedicularis scolopax \N \N \N \N \N 37292 S.crinita Streptogyna Streptogyna crinita \N \N \N \N \N 37293 C.pulverulentum Cneorum Cneorum pulverulentum \N \N \N \N \N 37294 C.dentata Castanea Castanea dentata American chestnut \N \N \N \N 37295 D.acinaciforme Dendrobium Dendrobium acinaciforme \N \N \N \N \N 37296 C.bungei Cynanchum Cynanchum bungei \N \N \N \N \N 37297 S.velutina Silene Silene velutina \N \N \N \N \N 37298 C.involucrata Chirita Chirita involucrata \N \N \N \N \N 37299 P.arboricola Piper Piper arboricola \N \N \N \N \N 37300 \N genus Randia \N \N \N \N \N 37301 S.eminens Sorbus Sorbus eminens \N \N \N \N \N 37302 S.cuspidata Syrenia Syrenia cuspidata \N \N \N \N \N 37303 S.ovata Sonneratia Sonneratia ovata \N \N \N \N \N 37304 A.papyracea Avonia Avonia papyracea \N \N \N \N \N 37305 P.carnosum Protium Protium carnosum \N \N \N \N \N 37306 A.nubigena Anaphalis Anaphalis nubigena \N \N \N \N \N 37307 A.hololeuca Artemisia Artemisia hololeuca \N \N \N \N \N 37308 C.rubriflora Chromolucuma Chromolucuma rubriflora \N \N \N \N \N 37309 F.crispa Ferraria Ferraria crispa \N \N \N \N \N 37310 K.madagascariensis Kaliphora Kaliphora madagascariensis \N \N \N \N \N 37311 L.A1535 unclassified Lauraceae Lauraceae sp. 1 A1535 \N \N \N \N \N 37312 P.berteroniana Puya Puya berteroniana \N \N \N \N \N 37313 \N genus Sieversia \N \N \N \N \N 37314 \N genus Oerstedella \N \N \N \N \N 37315 F.gigantea Festuca Festuca gigantea \N \N \N \N \N 37316 \N genus Dryas \N \N \N \N \N 37317 A.haussknechtii Anthemis Anthemis haussknechtii \N \N \N \N \N 37318 M.bonwickii Melicope Melicope bonwickii \N \N \N \N \N 37319 P.decorticans Pouteria Pouteria decorticans \N \N \N \N \N 37320 C.62 Chlorophytum Chlorophytum sp. Hoell & Nordal 62 \N \N \N \N \N 37321 D.brittenii Decaisnina Decaisnina brittenii \N \N \N \N \N 37322 R.chelomaphylla Remijia Remijia chelomaphylla \N \N \N \N \N 37323 S.adscendens Serruria Serruria adscendens \N \N \N \N \N 37324 C.DR Cinnamodendron Cinnamodendron sp. DR \N \N \N \N \N 37325 \N genus Acourtia \N \N \N \N \N 37326 E.oldenlandioides Exacum Exacum oldenlandioides \N \N \N \N \N 37327 A.anceps Allium Allium anceps \N \N \N \N \N 37328 \N forma Kniphofia laxiflora form C \N \N \N \N \N 37329 A.alata Achyrocline Achyrocline alata \N \N \N \N \N 37330 S.paludosa Siphanthera Siphanthera paludosa \N \N \N \N \N 37331 A.coerulea Aristea Aristea coerulea \N \N \N \N \N 37332 P.setosum Polygonum Polygonum setosum \N \N \N \N \N 37333 P.450 Peponidium Peponidium sp. Razafimandimbison & Andrianatoanina 450 \N \N \N \N \N 37334 K.grayi Krameria Krameria grayi \N \N \N \N \N 37335 B.lanceolata Berberis Berberis lanceolata \N \N \N \N \N 37336 \N genus Cenarrhenes \N \N \N \N \N 37337 A.desertorum Aspalathus Aspalathus desertorum \N \N \N \N \N 37338 T.barklyi Tavaresia Tavaresia barklyi \N \N \N \N \N 37339 \N subspecies Ipomopsis aggregata subsp. aggregata \N \N \N \N \N 37340 A.murale Alyssum Alyssum murale yellow-tuft \N \N \N \N 37341 C.mongholica Caryopteris Caryopteris mongholica \N \N \N \N \N 37342 \N genus Leptochloa \N \N \N \N \N 37343 \N subspecies Anthemis cretica subsp. sibthorpii \N \N \N \N \N 37344 B.schmidtii Betula Betula schmidtii \N \N \N \N \N 37345 A.H630 Asparagus Asparagus sp. H630 \N \N \N \N \N 37346 P.sphacelatum Piptatherum Piptatherum sphacelatum \N \N \N \N \N 37347 S.nutans Stenopetalum Stenopetalum nutans \N \N \N \N \N 37348 M.indica Mangifera Mangifera indica mango \N \N \N \N 37349 S.ilicifolia Synapsis Synapsis ilicifolia \N \N \N \N \N 37350 P.lychnidiflora Pereskia Pereskia lychnidiflora \N \N \N \N \N 37351 D.lutea Digitalis Digitalis lutea straw foxglove \N \N \N \N 37352 C.formosum Cynanchum Cynanchum formosum \N \N \N \N \N 37353 M.longipetala Mitrephora Mitrephora longipetala \N \N \N \N \N 37354 D.condylocarpon Diplorhynchus Diplorhynchus condylocarpon \N \N \N \N \N 37355 \N genus Ixeridium \N \N \N \N \N 37356 \N subspecies Chrysanthemum zawadskii subsp. latilobum \N \N \N \N \N 37357 T.polycnemoides Trichogyne Trichogyne polycnemoides \N \N \N \N \N 37358 P.fauriei Pyrus Pyrus fauriei \N \N \N \N \N 37359 R.commonae Rhododendron Rhododendron commonae \N \N \N \N \N 37360 C.gmelinii Coelopleurum Coelopleurum gmelinii \N \N \N \N \N 37361 A.racemosa Adenophora Adenophora racemosa \N \N \N \N \N 37362 R.speciosum Ribes Ribes speciosum \N \N \N \N \N 37363 A.cedarbergense Androcymbium Androcymbium cedarbergense \N \N \N \N \N 37364 P.compacta Pehria Pehria compacta \N \N \N \N \N 37365 S.salsa Saussurea Saussurea salsa \N \N \N \N \N 37366 A.minuta Asaemia Asaemia minuta \N \N \N \N \N 37367 A.lobophylla Adenophora Adenophora lobophylla \N \N \N \N \N 37368 \N varietas Luzula banksiana var. orina \N \N \N \N \N 37369 L.siler Laserpitium Laserpitium siler \N \N \N \N \N 37370 C.irapeanum Cypripedium Cypripedium irapeanum \N \N \N \N \N 37371 V.sessilis Vellozia Vellozia sessilis \N \N \N \N \N 37372 B.agavifolia Bromelia Bromelia agavifolia \N \N \N \N \N 37373 \N genus Aconogonon \N \N \N \N \N 37374 C.multiglandulosa Calycadenia Calycadenia multiglandulosa sticky calycadenia \N \N \N \N 37375 S.kali Salsola Salsola kali common saltwort,prickly saltwort \N \N \N \N 37376 \N varietas Viola odorata var. maderensis \N \N \N \N \N 37377 D.filifolia Dodonaea Dodonaea filifolia \N \N \N \N \N 37378 P.hortulana Prunus Prunus hortulana hortulan plum \N \N \N \N 37379 M.gaetulum Mauranthemum Mauranthemum gaetulum \N \N \N \N \N 37380 V.cuneifolia Veronica Veronica cuneifolia \N \N \N \N \N 37381 E.nocturnum Epidendrum Epidendrum nocturnum \N \N \N \N \N 37382 C.tenuicaulis Coprosma Coprosma tenuicaulis \N \N \N \N \N 37383 S.erythrocarpa Salix Salix erythrocarpa \N \N \N \N \N 37384 C.secundiflora Calia Calia secundiflora \N \N \N \N \N 37385 M.biperulifera Miconia Miconia biperulifera \N \N \N \N \N 37386 H.argentea Hechtia Hechtia argentea \N \N \N \N \N 37387 V.WO2006041917 Viola Viola sp. WO2006041917 \N \N \N \N \N 37388 P.fredricii Plectranthus Plectranthus fredricii \N \N \N \N \N 37389 \N genus Olearia \N \N \N \N \N 37390 \N forma Tillandsia utriculata f. utriculata \N \N \N \N \N 37391 \N genus Panzerina \N \N \N \N \N 37392 \N subspecies Omphalodes littoralis subsp. littoralis \N \N \N \N \N 37393 B.salicifolium Buphthalmum Buphthalmum salicifolium \N \N \N \N \N 37394 T.grandiflorum Thalictrum Thalictrum grandiflorum \N \N \N \N \N 37395 J.lanceolata Johannesteijsmannia Johannesteijsmannia lanceolata \N \N \N \N \N 37396 T.L-86.0039 Tapeinochilos Tapeinochilos sp. L-86.0039 \N \N \N \N \N 37397 C.gardneri Cyperus Cyperus gardneri \N \N \N \N \N 37398 I.cochinchinensis Ilex Ilex cochinchinensis \N \N \N \N \N 37399 C.brachysepalum Conchopetalum Conchopetalum brachysepalum \N \N \N \N \N 37400 R.bhutanica Roscoea Roscoea bhutanica \N \N \N \N \N 37401 \N subspecies Platymiscium pinnatum subsp. pinnatum \N \N \N \N \N 37402 P.mollis Paepalanthus Paepalanthus mollis \N \N \N \N \N 37403 P.griffithii Polygonatum Polygonatum griffithii \N \N \N \N \N 37404 H.completus Hecatostemon Hecatostemon completus \N \N \N \N \N 37405 C.purpurea Cadia Cadia purpurea \N \N \N \N \N 37406 \N genus Baloghia \N \N \N \N \N 37407 S.delitescens Solanum Solanum delitescens \N \N \N \N \N 37408 T.JK4054 unclassified Taraxacum Taraxacum (sect. Tibetana/Calanthodia) sp. JK4054 \N \N \N \N \N 37409 C.ventricosus Cyrtanthus Cyrtanthus ventricosus \N \N \N \N \N 37410 I.aggregata Ipomopsis Ipomopsis aggregata \N \N \N \N \N 37411 T.fasciola Taeniophyllum Taeniophyllum fasciola \N \N \N \N \N 37412 B.arvensis Bromus Bromus arvensis field brome \N \N \N \N 37413 S.Ssp24 Sobralia Sobralia sp. Ssp24 \N \N \N \N \N 37414 \N varietas Malacothrix saxatilis var. saxatilis \N \N \N \N \N 37415 A.alpina Astelia Astelia alpina \N \N \N \N \N 37416 H.pallens Hypericum Hypericum pallens \N \N \N \N \N 37417 V.689 Vatairea Vatairea sp. Pennington 689 \N \N \N \N \N 37418 E.sparsa Erica Erica sparsa \N \N \N \N \N 37419 F.pedunculosa Ficus Ficus pedunculosa \N \N \N \N \N 37420 D.multiflora Drymonia Drymonia multiflora \N \N \N \N \N 37421 P.pulcherrima Phlox Phlox pulcherrima \N \N \N \N \N 37422 \N genus Euplassa \N \N \N \N \N 37423 H.montanum Hypericum Hypericum montanum \N \N \N \N \N 37424 H.HY136 Hypericum Hypericum sp. HY136 \N \N \N \N \N 37425 \N subspecies Alloteropsis semialata subsp. semialata \N \N \N \N \N 37426 A.eryngioides Actinolema Actinolema eryngioides \N \N \N \N \N 37427 M.pulchellum Myopordon Myopordon pulchellum \N \N \N \N \N 37428 T.eriosphaerum Trifolium Trifolium eriosphaerum \N \N \N \N \N 37429 C.pilosa Carex Carex pilosa \N \N \N \N \N 37430 F.variolosa Ficus Ficus variolosa \N \N \N \N \N 37431 C.sibirica Caragana Caragana sibirica \N \N \N \N \N 37432 \N genus Gastrocotyle \N \N \N \N \N 37433 \N subspecies Galium serpenticum subsp. okanoganense \N \N \N \N \N 37434 A.gummifera Ateleia Ateleia gummifera \N \N \N \N \N 37435 P.rusbyi Polypsecadium Polypsecadium rusbyi \N \N \N \N \N 37436 C.digitatum Cynosciadium Cynosciadium digitatum \N \N \N \N \N 37437 C.seorsa Carex Carex seorsa \N \N \N \N \N 37438 \N varietas Ceanothus gloriosus var. porrectus \N \N \N \N \N 37439 E.rowlandii Euphorbia Euphorbia rowlandii \N \N \N \N \N 37440 S.podolica Schivereckia Schivereckia podolica \N \N \N \N \N 37441 I.wuxiensis Indocalamus Indocalamus wuxiensis \N \N \N \N \N 37442 M.multiflora Mentzelia Mentzelia multiflora \N \N \N \N \N 37443 L.caroliniana Lachnanthes Lachnanthes caroliniana \N \N \N \N \N 37444 R.palmata Rubiteucris Rubiteucris palmata \N \N \N \N \N 37445 B.discreta Begonia Begonia discreta \N \N \N \N \N 37446 S.patens Stylisma Stylisma patens \N \N \N \N \N 37447 M.rubra Morella Morella rubra Chinese arbutus,yama-momo,yang mei \N \N \N \N 37448 B.ambigua Babiana Babiana ambigua \N \N \N \N \N 37449 \N subspecies Montanoa leucantha subsp. leucantha \N \N \N \N \N 37450 \N genus Nasturtiopsis \N \N \N \N \N 37451 D.subhastata Dioscorea Dioscorea subhastata \N \N \N \N \N 37452 J.floribunda Jacksonia Jacksonia floribunda \N \N \N \N \N 37453 \N genus Calvoa \N \N \N \N \N 37454 B.guatemalense Blepharidium Blepharidium guatemalense \N \N \N \N \N 37455 S.grandis Sophronitis Sophronitis grandis \N \N \N \N \N 37456 R.cinereum Reinwardtiodendron Reinwardtiodendron cinereum \N \N \N \N \N 37457 F.elliptica Farquharia Farquharia elliptica \N \N \N \N \N 37458 \N genus Chorigyne \N \N \N \N \N 37459 A.humilis Aletes Aletes humilis \N \N \N \N \N 37460 D.laxiflora Drymaria Drymaria laxiflora \N \N \N \N \N 37461 V.juruana Vigna Vigna juruana \N \N \N \N \N 37462 C.makrisii Cynara Cynara makrisii \N \N \N \N \N 37463 G.longicarpa Gentianella Gentianella longicarpa \N \N \N \N \N 37464 \N varietas Pedicularis bracteosa var. flavida \N \N \N \N \N 37465 C.feta Carex Carex feta \N \N \N \N \N 37466 A.squamulosa Alyxia Alyxia squamulosa \N \N \N \N \N 37467 A.compacta Arracacia Arracacia compacta \N \N \N \N \N 37468 G.speciosa Guettarda Guettarda speciosa \N \N \N \N \N 37469 C.vesicata Chamaeangis Chamaeangis vesicata \N \N \N \N \N 37471 T.jk3813 unclassified Taraxacum Taraxacum (sect. Parvula/Kashmirana) sp. jk3813 \N \N \N \N \N 37472 C.guamensis Coelogyne Coelogyne guamensis \N \N \N \N \N 37473 E.angustiloba Echidnopsis Echidnopsis angustiloba \N \N \N \N \N 37474 L.buchii Leptogonum Leptogonum buchii \N \N \N \N \N 37475 F.tesselata Ficus Ficus tesselata \N \N \N \N \N 37476 \N genus Zimmermannia \N \N \N \N \N 37477 M.massangeana Maranta Maranta massangeana \N \N \N \N \N 37478 \N subspecies Viola tricolor subsp. tricolor \N \N \N \N \N 37479 \N genus Monotaxis \N \N \N \N \N 37480 C.webberi Citrus Citrus webberi \N \N \N \N \N 37481 C.bebbii Carex Carex bebbii \N \N \N \N \N 37482 L.jacobaeus Lotus Lotus jacobaeus \N \N \N \N \N 37483 C.flavum Cypripedium Cypripedium flavum \N \N \N \N \N 37484 S.europaea Salicornia Salicornia europaea chicken-claws,common glasswort,marsh samphire \N \N \N \N 37485 A.remotipinna Ajania Ajania remotipinna \N \N \N \N \N 37486 N.ramosissima Nolana Nolana ramosissima \N \N \N \N \N 37487 S.amplexifolius Streptopus Streptopus amplexifolius \N \N \N \N \N 37488 M.nanchititlensis Manfreda Manfreda nanchititlensis \N \N \N \N \N 37489 \N genus Trachyandra \N \N \N \N \N 37490 C.1020 Canthium Canthium sp. 1 Eriksson et al. 1020 \N \N \N \N \N 37491 B.macrophylla Borodinia Borodinia macrophylla \N \N \N \N \N 37492 E.pyriformis Eugenia Eugenia pyriformis \N \N \N \N \N 37493 I.aurea Impatiens Impatiens aurea \N \N \N \N \N 37494 V.kellowiae Hebe Veronica kellowiae \N \N \N \N \N 37495 C.vulgata Chamaedorea Chamaedorea vulgata \N \N \N \N \N 37496 \N genus Atrichoseris \N \N \N \N \N 37497 S.verrucosum Scaphosepalum Scaphosepalum verrucosum \N \N \N \N \N 37498 C.platanifolia Cavanillesia Cavanillesia platanifolia \N \N \N \N \N 37499 \N genus Quinchamalium \N \N \N \N \N 37500 H.erectifolium Hordeum Hordeum erectifolium \N \N \N \N \N 37501 L.pyrolifolia Leptarrhena Leptarrhena pyrolifolia \N \N \N \N \N 37502 T.basedowii Triodia Triodia basedowii \N \N \N \N \N 37503 \N genus Hofmeisteria \N \N \N \N \N 37504 M.crassipes Medicago Medicago crassipes \N \N \N \N \N 37505 S.odorata Senna Senna odorata \N \N \N \N \N 37506 A.subaurea Alibertia Alibertia subaurea \N \N \N \N \N 37507 C.buddleioides Corokia Corokia buddleioides \N \N \N \N \N 37508 \N genus Merrittia \N \N \N \N \N 37509 S.bicallosa Scaphyglottis Scaphyglottis bicallosa \N \N \N \N \N 37510 H.guatemalensis Hechtia Hechtia guatemalensis \N \N \N \N \N 37511 E.vajravelui Euphorbia Euphorbia vajravelui \N \N \N \N \N 37512 B.lepida Batemania Batemania lepida \N \N \N \N \N 37513 \N subspecies Biarum tenuifolium subsp. zeleborii \N \N \N \N \N 37514 T.pachyrhizum Thalassodendron Thalassodendron pachyrhizum \N \N \N \N \N 37515 S.carnosulus Senecio Senecio carnosulus \N \N \N \N \N 37516 C.nitrariaceum Chenopodium Chenopodium nitrariaceum \N \N \N \N \N 37517 H.dockrillii Hylandia Hylandia dockrillii \N \N \N \N \N 37518 S.ecornuta Stanhopea Stanhopea ecornuta \N \N \N \N \N 37519 P.afra Portulacaria Portulacaria afra \N \N \N \N \N 37520 E.elliottii Eragrostis Eragrostis elliottii field lovegrass \N \N \N \N 37521 \N genus Cryptandra \N \N \N \N \N 37522 O.hirtiflora Odonellia Odonellia hirtiflora \N \N \N \N \N 37523 M.albolanata Mimosa Mimosa albolanata \N \N \N \N \N 37524 \N subspecies Calycadenia truncata subsp. scabrella \N \N \N \N \N 37525 L.trifolia Lantana Lantana trifolia \N \N \N \N \N 37526 G.stellatus Gelidocalamus Gelidocalamus stellatus \N \N \N \N \N 37527 S.placentarium Stachyphrynium Stachyphrynium placentarium \N \N \N \N \N 37528 D.glomulifera Dysphania Dysphania glomulifera \N \N \N \N \N 37529 C.lingua Cryptocoryne Cryptocoryne lingua \N \N \N \N \N 37530 L.alata Ludwigia Ludwigia alata \N \N \N \N \N 37531 V.sphaerocephala Viguiera Viguiera sphaerocephala \N \N \N \N \N 37532 E.scoparioides Erigeron Erigeron scoparioides \N \N \N \N \N 37533 \N genus Waldsteinia \N \N \N \N \N 37534 R.racemosum Rhododendron Rhododendron racemosum \N \N \N \N \N 37535 A.prominens Acacia Acacia prominens \N \N \N \N \N 37536 \N genus Colpogyne \N \N \N \N \N 37537 L.lanata Lavandula Lavandula lanata \N \N \N \N \N 37538 L.desvauxii Lepidium Lepidium desvauxii \N \N \N \N \N 37539 A.pindicola Alkanna Alkanna pindicola \N \N \N \N \N 37540 C.paniculata Corynanthe Corynanthe paniculata \N \N \N \N \N 37541 S.tephra Stevia Stevia tephra \N \N \N \N \N 37542 \N subspecies Triticum monococcum subsp. sinskajae \N \N \N \N \N 37543 N.iridescens Nematoceras Nematoceras iridescens \N \N \N \N \N 37544 \N genus Mnesithea \N \N \N \N \N 37545 I.taochia Iris Iris taochia \N \N \N \N \N 37546 P.pauciflora Peltogyne Peltogyne pauciflora \N \N \N \N \N 37547 E.mesopotamicum Eryngium Eryngium mesopotamicum \N \N \N \N \N 37548 G.acuminata Garcinia Garcinia acuminata \N \N \N \N \N 37549 V.crassipetala Vasconcellea Vasconcellea crassipetala \N \N \N \N \N 37550 H.luteus Hemipogon Hemipogon luteus \N \N \N \N \N 37551 R.californica Rudbeckia Rudbeckia californica \N \N \N \N \N 37552 U.VFI-2011 Utricularia Utricularia sp. VFI-2011 \N \N \N \N \N 37553 T.Regent Typhonium Typhonium sp. Prince Regent \N \N \N \N \N 37554 S.roxburghii Schefflera Schefflera roxburghii \N \N \N \N \N 37555 C.huttoniana Coprosma Coprosma huttoniana \N \N \N \N \N 37556 \N genus Prenanthella \N \N \N \N \N 37557 V.caput-ardeae Vellozia Vellozia caput-ardeae \N \N \N \N \N 37558 B.refracta Burmeistera Burmeistera refracta \N \N \N \N \N 37559 R.brachycarpum Rhododendron Rhododendron brachycarpum \N \N \N \N \N 37560 D.glaucescens Daphniphyllum Daphniphyllum glaucescens \N \N \N \N \N 37561 \N subspecies Ballota nigra subsp. nigra \N \N \N \N \N 37562 V.goudotiana Vasconcellea Vasconcellea goudotiana \N \N \N \N \N 37563 A.alnifolia Aria Aria alnifolia adsukinashi,hakari-no-me,kata-sugi,shui yu hua qiu \N \N \N \N 37564 \N varietas Vigna radiata var. sublobata Jerusalem-pea \N \N \N \N 37565 Q.chacoensis Quiabentia Quiabentia chacoensis \N \N \N \N \N 37566 P.scopulorum Pleione Pleione scopulorum \N \N \N \N \N 37567 C.obovalis Casearia Casearia obovalis \N \N \N \N \N 37568 \N genus Doronicum leopard's bane \N \N \N \N 37569 A.aemula Aspalathus Aspalathus aemula \N \N \N \N \N 37570 A.oocalycis Astragalus Astragalus oocalycis \N \N \N \N \N 37571 I.cdT17 Inula Inula sp. cdT17 \N \N \N \N \N 37572 \N genus Staudtia \N \N \N \N \N 37573 S.zanzibarense Solanum Solanum zanzibarense \N \N \N \N \N 37574 P.subflavum Piper Piper subflavum \N \N \N \N \N 37575 H.castaneifolia Hugonia Hugonia castaneifolia \N \N \N \N \N 37576 C.acutiflora Calamagrostis Calamagrostis x acutiflora \N \N \N \N \N 37577 L.truncatus Lupinus Lupinus truncatus \N \N \N \N \N 37578 J.aucherana Jurinea Jurinea aucherana \N \N \N \N \N 37579 L.arborea Lachanodes Lachanodes arborea \N \N \N \N \N 37580 H.paivae Hyacinthoides Hyacinthoides paivae \N \N \N \N \N 37581 M.coulteri Mariosousa Mariosousa coulteri \N \N \N \N \N 37582 P.hillebrandii Pleuranthodes Pleuranthodes hillebrandii \N \N \N \N \N 37583 B.napaulensis Berberis Berberis napaulensis \N \N \N \N \N 37584 T.discolor Tetrazygia Tetrazygia discolor \N \N \N \N \N 37585 D.compressa Danthonia Danthonia compressa \N \N \N \N \N 37586 T.holubii Turbina Turbina holubii \N \N \N \N \N 37587 C.cristata Centaurea Centaurea cristata \N \N \N \N \N 37588 L.aspera Leucas Leucas aspera \N \N \N \N \N 37589 P.megacarpa Plagiostachys Plagiostachys megacarpa \N \N \N \N \N 37590 H.arborescens Harpalyce Harpalyce arborescens \N \N \N \N \N 37591 W.costaricensis Warrea Warrea costaricensis \N \N \N \N \N 37592 E.validus Elymus Elymus validus \N \N \N \N \N 37593 S.chinensis Saururus Saururus chinensis \N \N \N \N \N 37594 L.marginata Luzuriaga Luzuriaga marginata \N \N \N \N \N 37595 N.chrysocomoides Nolletia Nolletia chrysocomoides \N \N \N \N \N 37596 A.aquilega Aechmea Aechmea aquilega \N \N \N \N \N 37597 G.angustifolia Gardneria Gardneria angustifolia \N \N \N \N \N 37598 B.middendorffii Betula Betula middendorffii \N \N \N \N \N 37599 \N subspecies Poa pratensis subsp. angustifolia \N \N \N \N \N 37600 M.fatua Myristica Myristica fatua \N \N \N \N \N 37601 C.megalocarpa Crusea Crusea megalocarpa \N \N \N \N \N 37602 E.thyrsoidea Elegia Elegia thyrsoidea \N \N \N \N \N 37603 G.personata Gorteria Gorteria personata \N \N \N \N \N 37604 A.mutica Apluda Apluda mutica \N \N \N \N \N 37605 L.mauritanica Lavatera Lavatera mauritanica \N \N \N \N \N 37606 C.megalodendron Croton Croton megalodendron \N \N \N \N \N 37607 C.fukienensis Cladopus Cladopus fukienensis \N \N \N \N \N 37608 \N genus Cabralea \N \N \N \N \N 37609 T.tenuissimum Talinum Talinum tenuissimum \N \N \N \N \N 37610 P.migiurtinorum Pulicaria Pulicaria migiurtinorum \N \N \N \N \N 37611 C.aotearoana Centipeda Centipeda aotearoana \N \N \N \N \N 37612 D.1189 Dichaea Dichaea aff. morrisii Pupulin 1189 \N \N \N \N \N 37613 S.circinatum Solanum Solanum circinatum \N \N \N \N \N 37614 \N genus Severinia \N \N \N \N \N 37615 L.alpinum Leontopodium Leontopodium alpinum \N \N \N \N \N 37616 \N genus Tridactyle \N \N \N \N \N 37617 \N genus Gaya \N \N \N \N \N 37618 G.lanceolatum Glochidion Glochidion lanceolatum \N \N \N \N \N 37619 J.dentata Jaltomata Jaltomata dentata \N \N \N \N \N 37620 \N subspecies Cardamine amara subsp. austriaca \N \N \N \N \N 37621 M.fruticulosa Monarda Monarda fruticulosa \N \N \N \N \N 37622 A.1296/1 Arctotis Arctotis sp. A McKenzie 1296/1 \N \N \N \N \N 37623 C.hirta Cleome Cleome hirta \N \N \N \N \N 37624 H.detonsa Hazardia Hazardia detonsa \N \N \N \N \N 37625 \N genus Caustis \N \N \N \N \N 37626 A.intermedia Alpinia Alpinia intermedia \N \N \N \N \N 37627 L.ligulistylis Liatris Liatris ligulistylis \N \N \N \N \N 37628 E.rubra Endlicheria Endlicheria rubra \N \N \N \N \N 37629 \N genus Isometrum \N \N \N \N \N 37630 E.paucifolia Erica Erica paucifolia \N \N \N \N \N 37631 C.abbreviata Corymbia Corymbia abbreviata \N \N \N \N \N 37632 \N subspecies Mammillaria crinita subsp. scheinvariana \N \N \N \N \N 37633 S.coriophoroides Satyrium Satyrium coriophoroides \N \N \N \N \N 37634 A.shikokuensis Adonis Adonis shikokuensis \N \N \N \N \N 37635 S.sediforme Sedum Sedum sediforme \N \N \N \N \N 37636 M.racemigera Macgregoria Macgregoria racemigera \N \N \N \N \N 37637 M.360 Malaxis Malaxis sp. Wiegend 360 \N \N \N \N \N 37638 S.singkawang Shorea Shorea singkawang \N \N \N \N \N 37639 C.drummondii Clematis Clematis drummondii \N \N \N \N \N 37640 \N genus Sinofranchetia \N \N \N \N \N 37641 E.tetragona Eucalyptus Eucalyptus tetragona white-leaved marlock \N \N \N \N 37642 \N genus Rangaeris \N \N \N \N \N 37643 H.atlanticum Halimium Halimium atlanticum \N \N \N \N \N 37644 C.brachylepis Chaetanthera Chaetanthera brachylepis \N \N \N \N \N 37645 M.diuturna Maxillaria Maxillaria diuturna \N \N \N \N \N 37646 C.capitatum Chenopodium Chenopodium capitatum \N \N \N \N \N 37647 K.boliviensis Koellensteinia Koellensteinia boliviensis \N \N \N \N \N 37648 \N genus Rojasianthe \N \N \N \N \N 37649 H.aristata Hygroryza Hygroryza aristata \N \N \N \N \N 37650 R.scandens Rhodostemonodaphne Rhodostemonodaphne scandens \N \N \N \N \N 37651 G.lobata Gunnera Gunnera lobata \N \N \N \N \N 37652 C.decandra Ceriops Ceriops decandra \N \N \N \N \N 37653 E.japonica Eriobotrya Eriobotrya japonica loquat \N \N \N \N 37654 N.treubiana Nepenthes Nepenthes treubiana \N \N \N \N \N 37655 \N genus Anaectocalyx \N \N \N \N \N 37656 \N genus Exospermum \N \N \N \N \N 37657 H.goudotiana Hydrostachys Hydrostachys goudotiana \N \N \N \N \N 37658 C.gibba Carex Carex gibba \N \N \N \N \N 37659 L.coriacea Ledebouria Ledebouria coriacea \N \N \N \N \N 37660 \N genus Loncomelos \N \N \N \N \N 37661 \N genus Alocasia \N \N \N \N \N 37662 B.linophylla Bossiaea Bossiaea linophylla \N \N \N \N \N 37663 J.parryi Jepsonia Jepsonia parryi \N \N \N \N \N 37664 A.spectabilis Aspalathus Aspalathus spectabilis \N \N \N \N \N 37665 C.micans Calathea Calathea micans \N \N \N \N \N 37666 S.ursinum Scaphosepalum Scaphosepalum ursinum \N \N \N \N \N 37667 C.cordiifolius Croton Croton cordiifolius \N \N \N \N \N 37668 A.laciniata Actaea Actaea laciniata \N \N \N \N \N 37669 H.dumetorum Helleborus Helleborus dumetorum \N \N \N \N \N 37670 E.hauthalii Eudema Eudema hauthalii \N \N \N \N \N 37671 \N genus Huynhia \N \N \N \N \N 37672 \N varietas Dendrobium speciosum var. boreale \N \N \N \N \N 37673 \N subspecies Heracleum austriacum subsp. austriacum \N \N \N \N \N 37674 E.japonicus Eleutherococcus Eleutherococcus japonicus \N \N \N \N \N 37675 \N genus Meineckia \N \N \N \N \N 37676 \N subspecies Camassia quamash subsp. intermedia \N \N \N \N \N 37677 P.P079 Physalis Physalis sp. P079 \N \N \N \N \N 37678 S.cyaneopurpureum Solanum Solanum cyaneopurpureum \N \N \N \N \N 37679 P.eurycephala Packera Packera eurycephala \N \N \N \N \N 37680 H.namaquana Heliophila Heliophila namaquana \N \N \N \N \N 37681 C.salesovianum Comarum Comarum salesovianum \N \N \N \N \N 37682 P.balfourii Pittosporum Pittosporum balfourii \N \N \N \N \N 37683 S.membranaceum Stichoneuron Stichoneuron membranaceum \N \N \N \N \N 37684 E.cyclocarpum Enterolobium Enterolobium cyclocarpum carita,devil's-ear,guanacaste,monkeysoap,parota \N \N \N \N 37685 A.salvadorensis Aristolochia Aristolochia salvadorensis \N \N \N \N \N 37686 S.bradei Sophronitis Sophronitis bradei \N \N \N \N \N 37687 D.farinosus Dendrocalamus Dendrocalamus farinosus \N \N \N \N \N 37688 S.grossidens Senecio Senecio grossidens \N \N \N \N \N 37689 S.hondoensis Schoenoplectus Schoenoplectus hondoensis \N \N \N \N \N 37690 C.involucratus Chaetobromus Chaetobromus involucratus \N \N \N \N \N 37691 M.peruviana Muhlenbergia Muhlenbergia peruviana \N \N \N \N \N 37692 H.147 Heteropsis Heteropsis sp. Barabe 147 \N \N \N \N \N 37693 \N genus Drymophila \N \N \N \N \N 37694 E.utilis Elaeagia Elaeagia utilis \N \N \N \N \N 37695 E.hebecarpus Euryops Euryops hebecarpus \N \N \N \N \N 37696 C.masaikai Capparis Capparis masaikai \N \N \N \N \N 37697 P.mariniana Psychotria Psychotria mariniana \N \N \N \N \N 37698 L.clementianus Lithocarpus Lithocarpus clementianus \N \N \N \N \N 37699 R.humile Reinwardtiodendron Reinwardtiodendron humile \N \N \N \N \N 37700 \N varietas Collinsia bartsiifolia var. davidsonii \N \N \N \N \N 37701 W.1674 Wurmbea Wurmbea sp. van Leuwen 1674 \N \N \N \N \N 37702 P.decandrum Protium Protium decandrum \N \N \N \N \N 37703 H.acutifolia Hymenocallis Hymenocallis acutifolia \N \N \N \N \N 37704 M.arabica Medicago Medicago arabica \N \N \N \N \N 37705 T.uniflora Tegicornia Tegicornia uniflora \N \N \N \N \N 37706 \N genus Laportea \N \N \N \N \N 37707 \N genus Gaudichaudia \N \N \N \N \N 37708 J.analoga Jacobaea Jacobaea analoga \N \N \N \N \N 37709 G.barbaceniae Gomesa Gomesa barbaceniae \N \N \N \N \N 37710 R.majalis Rosa Rosa majalis May rose,cinnamon rose \N \N \N \N 37711 \N genus Cadellia \N \N \N \N \N 37712 A.martiana Asterogyne Asterogyne martiana \N \N \N \N \N 37713 P.calophyllum Piptostigma Piptostigma calophyllum \N \N \N \N \N 37714 C.costiniana Craspedia Craspedia costiniana \N \N \N \N \N 37715 \N subspecies Luxemburgia macedoi subsp. macedoi \N \N \N \N \N 37716 L.entrerriensis Lantana Lantana x entrerriensis \N \N \N \N \N 37717 \N forma Hydrangea serrata f. buergeri \N \N \N \N \N 37718 G.revoilii Gloriosa Gloriosa revoilii \N \N \N \N \N 37719 \N subspecies Genista sessilifolia subsp. romanica \N \N \N \N \N 37720 Q.stipitata Quetzalia Quetzalia stipitata \N \N \N \N \N 37721 A.furcijuga Angelica Angelica furcijuga \N \N \N \N \N 37722 D.winterbottomii Draba Draba winterbottomii \N \N \N \N \N 37723 L.songaricum Lepidium Lepidium songaricum \N \N \N \N \N 37724 A.treutleri Aniselytron Aniselytron treutleri \N \N \N \N \N 37725 L.strigilliflora Leandra Leandra strigilliflora \N \N \N \N \N 37726 \N subspecies Arisaema flavum subsp. flavum \N \N \N \N \N 37727 E.formosissimus Erigeron Erigeron formosissimus \N \N \N \N \N 37728 \N genus Platycapnos \N \N \N \N \N 37729 A.gyrans Aristida Aristida gyrans \N \N \N \N \N 37730 \N genus Othonna \N \N \N \N \N 37731 A.cinerea Adelia Adelia cinerea \N \N \N \N \N 37732 \N genus Aegiphila \N \N \N \N \N 37733 N.argentea Nassauvia Nassauvia argentea \N \N \N \N \N 37734 S.macrospermum Sorghum Sorghum macrospermum \N \N \N \N \N 37735 V.pinnata Vitex Vitex pinnata \N \N \N \N \N 37736 T.obtectum Tetrastigma Tetrastigma obtectum \N \N \N \N \N 37737 M.dumetosa Mouriri Mouriri dumetosa \N \N \N \N \N 37738 A.victoriae Acacia Acacia victoriae \N \N \N \N \N 37741 R.laosensis Rhapis Rhapis laosensis \N \N \N \N \N 37742 L.tricolor Lycaste Lycaste tricolor \N \N \N \N \N 37743 \N genus Calopogon \N \N \N \N \N 37744 K.filifolia Kaempferia Kaempferia filifolia \N \N \N \N \N 37745 \N forma Hedera helix f. poetarum Italian ivy,poet's ivy \N \N \N \N 37746 S.elegans Striga Striga elegans \N \N \N \N \N 37747 \N varietas Rhododendron dilatatum var. dilatatum \N \N \N \N \N 37748 R.biternatus Ranunculus Ranunculus biternatus \N \N \N \N \N 37749 A.racemosa Arenaria Arenaria racemosa \N \N \N \N \N 37750 \N subspecies Pseudoroegneria geniculata subsp. scythica \N \N \N \N \N 37751 C.coluteoides Cleome Cleome coluteoides \N \N \N \N \N 37752 F.serpyllifolia Frankenia Frankenia serpyllifolia \N \N \N \N \N 37753 A.meteorica Anthemis Anthemis meteorica \N \N \N \N \N 37754 D.cordata Drymaria Drymaria cordata whitesnow \N \N \N \N 37755 \N subspecies Pleiospilos compactus subsp. canus \N \N \N \N \N 37756 \N genus Diplobryum \N \N \N \N \N 37757 C.4578 Chlorophytum Chlorophytum sp. Nordal & Bjora 4578 \N \N \N \N \N 37758 \N genus Galvezia \N \N \N \N \N 37759 \N genus Chardinia \N \N \N \N \N 37760 O.cordata Olearia Olearia cordata \N \N \N \N \N 37761 \N genus Oxypolis \N \N \N \N \N 37762 \N genus Veitchia \N \N \N \N \N 37763 C.biglandulosus Ceratochilus Ceratochilus biglandulosus \N \N \N \N \N 37764 R.urantherus Rhadamanthus Rhadamanthus urantherus \N \N \N \N \N 37765 C.skutchii Croton Croton skutchii \N \N \N \N \N 37766 R.hookeriana Ruellia Ruellia hookeriana \N \N \N \N \N 37767 S.eriophylla Saussurea Saussurea eriophylla \N \N \N \N \N 37768 G.petiolosum Geniostoma Geniostoma petiolosum \N \N \N \N \N 37769 G.woodii Gladiolus Gladiolus woodii \N \N \N \N \N 37770 A.fennicum Aconogonon Aconogonon x fennicum \N \N \N \N \N 37771 H.argyrocomum Hieracium Hieracium argyrocomum \N \N \N \N \N 37772 B.officinalis Borago Borago officinalis \N \N \N \N \N 37773 M.appendiculata Miconia Miconia appendiculata \N \N \N \N \N 37774 \N subspecies Dubautia plantaginea subsp. humilis \N \N \N \N \N 37775 D.commutata Diplycosia Diplycosia commutata \N \N \N \N \N 37776 \N varietas Plantago princeps var. princeps \N \N \N \N \N 37777 L.peruviana Ludwigia Ludwigia peruviana \N \N \N \N \N 37778 C.tefeensis Curupira Curupira tefeensis \N \N \N \N \N 37779 S.chamissonis Stachys Stachys chamissonis \N \N \N \N \N 37780 L.aretioides Lysipomia Lysipomia aretioides \N \N \N \N \N 37781 \N genus Entelea \N \N \N \N \N 37782 E.tingens Euonymus Euonymus tingens \N \N \N \N \N 37783 F.andrei Fuchsia Fuchsia andrei \N \N \N \N \N 37784 F.camschatcensis Fritillaria Fritillaria camschatcensis Kamchatka-lily,black sarana,kuro-yuri \N \N \N \N 37785 \N genus Pseudovesicaria \N \N \N \N \N 37786 L.sericeum Leptospermum Leptospermum sericeum \N \N \N \N \N 37787 C.colensoi Carex Carex colensoi \N \N \N \N \N 37788 \N varietas Bouteloua aristidoides var. aristidoides \N \N \N \N \N 37789 D.brevipedicellata Dasylepis Dasylepis brevipedicellata \N \N \N \N \N 37790 S.californicus Senecio Senecio californicus California ragwort \N \N \N \N 37791 A.liangshanicum Aconitum Aconitum liangshanicum \N \N \N \N \N 37792 P.rotundifolia Pultenaea Pultenaea rotundifolia \N \N \N \N \N 37793 T.fragrans Ternstroemia Ternstroemia fragrans \N \N \N \N \N 37794 F.sylvestris Fargesia Fargesia sylvestris \N \N \N \N \N 37795 E.pulvinata Echeveria Echeveria pulvinata \N \N \N \N \N 37796 \N tribe Philodendreae \N \N \N \N \N 37797 R.petiolare Rhytidophyllum Rhytidophyllum petiolare \N \N \N \N \N 37798 G.truncata Gomesa Gomesa truncata \N \N \N \N \N 37799 S.boryi Silene Silene boryi Bory's campion \N \N \N \N 37800 \N subspecies Centaurea aeolica subsp. pandataria \N \N \N \N \N 37801 D.pseudorufescens Diplycosia Diplycosia pseudorufescens \N \N \N \N \N 37802 I.cyrtura Ilex Ilex cf. cyrtura \N \N \N \N \N 37803 T.KMC-2001 Tristellateia Tristellateia sp. KMC-2001 \N \N \N \N \N 37804 C.rotundiflora Cobaea Cobaea rotundiflora \N \N \N \N \N 37805 E.daphniflora Erica Erica daphniflora \N \N \N \N \N 37806 B.pauciflora Babiana Babiana pauciflora \N \N \N \N \N 37807 \N genus Mayaca \N \N \N \N \N 37808 E.sevanensis Euphrasia Euphrasia sevanensis \N \N \N \N \N 37809 N.melanocarpa Nonea Nonea melanocarpa \N \N \N \N \N 37810 B.duncan-thomasii Begonia Begonia duncan-thomasii \N \N \N \N \N 37811 A.cristata Anoda Anoda cristata \N \N \N \N \N 37812 M.trinervia Muraltia Muraltia trinervia \N \N \N \N \N 37813 P.lanipetalum Pittosporum Pittosporum lanipetalum \N \N \N \N \N 37814 \N varietas Ampelopsis glandulosa var. brevipedunculata Amur peppervine,porcelain-berry \N \N \N \N 37815 C.gigantocarpa Camellia Camellia gigantocarpa \N \N \N \N \N 37816 \N genus Montiopsis \N \N \N \N \N 37817 C.warneri Cattleya Cattleya warneri \N \N \N \N \N 37818 B.erecta Berula Berula erecta \N \N \N \N \N 37819 A.crispus Aponogeton Aponogeton crispus \N \N \N \N \N 37820 P.subulata Papilionanthe Papilionanthe subulata \N \N \N \N \N 37821 C.tigrina Crantzia Crantzia tigrina \N \N \N \N \N 37822 G.sanariapoana Genlisea Genlisea sanariapoana \N \N \N \N \N 37823 H.argophyllus Helianthus Helianthus argophyllus \N \N \N \N \N 37824 \N genus Sobennikoffia \N \N \N \N \N 37825 M.1994-0061a Maxillaria Maxillaria cf. friedrischthallii SEL 1994-0061a \N \N \N \N \N 37826 M.horrida Myrmecodia Myrmecodia horrida \N \N \N \N \N 37827 S.atkinsonii Saussurea Saussurea atkinsonii \N \N \N \N \N 37828 S.ferruginea Shorea Shorea ferruginea \N \N \N \N \N 37829 \N subspecies Arenaria aggregata subsp. mauritanica \N \N \N \N \N 37830 H.japonicus Humulus Humulus japonicus Japanese hop,kana-mugura \N \N \N \N 37831 C.O-487 Caladenia Caladenia cf. caerulea Chase O-487 \N \N \N \N \N 37832 S.parviflora Serapias Serapias parviflora \N \N \N \N \N 37833 F.perlonga Fargesia Fargesia perlonga \N \N \N \N \N 37834 \N genus Pachyplectron \N \N \N \N \N 37835 D.nutans Diplopterys Diplopterys nutans \N \N \N \N \N 37836 M.borneensis Musa Musa borneensis \N \N \N \N \N 37838 S.mansenensis Scabiosa Scabiosa mansenensis \N \N \N \N \N 37839 C.rechingeri Ceratolimon Ceratolimon rechingeri \N \N \N \N \N 37840 I.sancti-spiritus Ipomopsis Ipomopsis sancti-spiritus \N \N \N \N \N 37841 P.alba Pulsatilla Pulsatilla alba \N \N \N \N \N 37842 V.albiflora Villadia Villadia albiflora \N \N \N \N \N 37843 S.cumini Syzygium Syzygium cumini Java-plum,jaman,jambolan \N \N \N \N 37844 P.dichroostachya Polyscias Polyscias dichroostachya \N \N \N \N \N 37845 \N genus Hypolytrum \N \N \N \N \N 37846 O.picridifolia Olearia Olearia picridifolia \N \N \N \N \N 37847 E.maackii Euphorbia Euphorbia maackii \N \N \N \N \N 37848 L.digitata Lotononis Lotononis digitata \N \N \N \N \N 37849 \N genus Anthochlamys \N \N \N \N \N 37850 \N genus Helleborus \N \N \N \N \N 37851 G.koreanum Geranium Geranium koreanum \N \N \N \N \N 37852 T.scobina Trisetella Trisetella scobina \N \N \N \N \N 37853 \N genus Shinnersoseris \N \N \N \N \N 37854 R.integrifolium Rhaponticum Rhaponticum integrifolium \N \N \N \N \N 37855 C.boivinianum Chrysophyllum Chrysophyllum boivinianum \N \N \N \N \N 37856 E.chiotilla Escontria Escontria chiotilla \N \N \N \N \N 37857 G.borealis Glyceria Glyceria borealis \N \N \N \N \N 37858 P.hungmoensis Phoebe Phoebe hungmoensis \N \N \N \N \N 37859 S.minutiflora Senyumia Senyumia minutiflora \N \N \N \N \N 37860 D.junceum Dopatrium Dopatrium junceum \N \N \N \N \N 37861 L.tenuispinosum Lycium Lycium tenuispinosum \N \N \N \N \N 37862 D.nucifera Dicella Dicella nucifera \N \N \N \N \N 37863 T.JS5918 unclassified Taraxacum Taraxacum (sect. Alpestria) sp. JS5918 \N \N \N \N \N 37864 G.engleriana Gymnosporia Gymnosporia engleriana \N \N \N \N \N 37865 S.austrocaledonicum Sleumerodendron Sleumerodendron austrocaledonicum \N \N \N \N \N 37866 H.pauciflora Heteropterys Heteropterys pauciflora \N \N \N \N \N 37867 D.eximia Dicentra Dicentra eximia staggerweed,turkey corn \N \N \N \N 37868 L.geminiflora Lycianthes Lycianthes geminiflora \N \N \N \N \N 37869 V.cassubica Vicia Vicia cassubica \N \N \N \N \N 37870 P.2813 Palaua Palaua cf. mollendoensis Schneider et al. 2813 \N \N \N \N \N 37871 P.criniferum Pleurophyllum Pleurophyllum criniferum \N \N \N \N \N 37872 M.chionophila Miconia Miconia chionophila \N \N \N \N \N 37873 \N genus Monochoria \N \N \N \N \N 37874 G.caespitosa Gaultheria Gaultheria caespitosa \N \N \N \N \N 37875 M.chthonotropa Macrocarpaea Macrocarpaea chthonotropa \N \N \N \N \N 37876 \N subspecies Isatis cappadocica subsp. besseri \N \N \N \N \N 37877 P.stramineum Panicum Panicum stramineum \N \N \N \N \N 37878 D.costaricensis Dendrophthora Dendrophthora costaricensis \N \N \N \N \N 37879 B.parviflora Barnadesia Barnadesia parviflora \N \N \N \N \N 37880 M.umbellata Melochia Melochia umbellata \N \N \N \N \N 37881 E.SH-2010 Euonymus Euonymus sp. SH-2010 \N \N \N \N \N 37882 P.pleuroneura Pilea Pilea pleuroneura \N \N \N \N \N 37883 H.ciliata Heteropterys Heteropterys ciliata \N \N \N \N \N 37884 S.nitida Silene Silene nitida \N \N \N \N \N 37885 \N varietas Senna cana var. calva \N \N \N \N \N 37886 A.laevis Anisoptera Anisoptera laevis \N \N \N \N \N 37887 S.stelligera Stelligera Sclerolaena stelligera \N \N \N \N \N 37888 M.macrophylla Micronychia Micronychia macrophylla \N \N \N \N \N 37889 S.petiolaris Solidago Solidago petiolaris \N \N \N \N \N 37890 I.viridis Ilex Ilex viridis \N \N \N \N \N 37891 A.daibuensis Aspidistra Aspidistra daibuensis \N \N \N \N \N 37892 K.virginica Kosteletzkya Kosteletzkya virginica seashore mallow \N \N \N \N 37893 N.simulans Nicotiana Nicotiana simulans \N \N \N \N \N 37894 O.droseroides Oxalis Oxalis droseroides \N \N \N \N \N 37895 I.hottense Illicium Illicium hottense \N \N \N \N \N 37896 N.glauca Nolana Nolana glauca \N \N \N \N \N 37897 Z.texensis Zeltnera Zeltnera texensis \N \N \N \N \N 37898 \N no rank Brassicaceae incertae sedis \N \N \N \N \N 37899 P.setoyensis Perilla Perilla setoyensis \N \N \N \N \N 37900 P.confertiflora Pedicularis Pedicularis confertiflora \N \N \N \N \N 37901 V.aloifolia Vellozia Vellozia aloifolia \N \N \N \N \N 37902 P.romanum Polygonum Polygonum romanum \N \N \N \N \N 37903 C.bicolor Caladium Caladium bicolor elephant's-ear,fancy-leaf caladium \N \N \N \N 37904 L.inpana Lophopterys Lophopterys inpana \N \N \N \N \N 37905 N.subacuta Nymphoides Nymphoides subacuta \N \N \N \N \N 37906 M.madagascariensis Madagaster Madagaster madagascariensis \N \N \N \N \N 37907 L.ameghinoi Lecanophora Lecanophora ameghinoi \N \N \N \N \N 37908 V.yamanakae Vincetoxicum Vincetoxicum yamanakae \N \N \N \N \N 37909 F.crocidion Filago Filago crocidion \N \N \N \N \N 37910 V.diffusoides Viola Viola diffusoides \N \N \N \N \N 37911 M.polyphylla Muraltia Muraltia polyphylla \N \N \N \N \N 37912 M.radians Moraea Moraea radians \N \N \N \N \N 37913 M.JJS-2010j Mentzelia Mentzelia sp. JJS-2010j \N \N \N \N \N 37914 \N varietas Ericameria discoidea var. discoidea \N \N \N \N \N 37915 A.compacta Azorella Azorella compacta llareta \N \N \N \N 37916 \N genus Laccospadix \N \N \N \N \N 37917 K.radiata Klasea Klasea radiata \N \N \N \N \N 37918 L.tuberosum Lithospermum Lithospermum tuberosum \N \N \N \N \N 37919 H.linifolium Hypocalymma Hypocalymma linifolium \N \N \N \N \N 37920 R.peduncularis Rochelia Rochelia peduncularis \N \N \N \N \N 37921 Y.thomsonii Yua Yua thomsonii \N \N \N \N \N 37922 A.schaueriana Avicennia Avicennia schaueriana \N \N \N \N \N 37923 L.stolonifera Lagotis Lagotis stolonifera \N \N \N \N \N 37924 W.humilis Wilsonia Wilsonia humilis \N \N \N \N \N 37925 P.anserantha Pedicularis Pedicularis anserantha \N \N \N \N \N 37926 \N varietas Astragalus australis var. aboriginorum \N \N \N \N \N 37927 C.subintegra Camellia Camellia subintegra \N \N \N \N \N 37928 T.brachycarpa Tutcheria Tutcheria brachycarpa \N \N \N \N \N 37929 P.wrightii Platanus Platanus wrightii Arizona sycamore \N \N \N \N 37930 C.naviculisepalus Corybas Corybas naviculisepalus \N \N \N \N \N 37931 A.s.n. Allanblackia Allanblackia sp. Ndive s.n. \N \N \N \N \N 37932 S.trifoliata Sanicula Sanicula trifoliata \N \N \N \N \N 37933 C.turcomanica Cousinia Cousinia turcomanica \N \N \N \N \N 37934 \N varietas Encelia farinosa var. phenicodonta \N \N \N \N \N 37935 K.dolichostyla Kohautia Kohautia dolichostyla \N \N \N \N \N 37936 S.johnsonianum Solanum Solanum johnsonianum \N \N \N \N \N 37937 P.celebicum Pterospermum Pterospermum celebicum \N \N \N \N \N 37938 P.minjanensis Parrya Parrya minjanensis \N \N \N \N \N 37939 S.maire Syzygium Syzygium maire \N \N \N \N \N 37940 \N no rank unclassified rosids \N \N \N \N \N 37941 L.bridgesii Leucheria Leucheria bridgesii \N \N \N \N \N 37942 B.macrocarpa Bridelia Bridelia macrocarpa \N \N \N \N \N 37943 P.430 Piper Piper sp. GV 430 \N \N \N \N \N 37944 F.dissecta Ferula Ferula dissecta \N \N \N \N \N 37945 D.filiciformis Dalea Dalea filiciformis \N \N \N \N \N 37946 T.alutaceifolium Tripterospermum Tripterospermum alutaceifolium \N \N \N \N \N 37947 A.quadrifidus Anisacanthus Anisacanthus quadrifidus \N \N \N \N \N 37948 G.powellii Gaillardia Gaillardia powellii \N \N \N \N \N 37949 \N varietas Tillandsia gardneri var. gardneri \N \N \N \N \N 37950 \N genus Desmos \N \N \N \N \N 37951 B.macrocarpa Beccariella Beccariella macrocarpa pink boxwood \N \N \N \N 37952 S.americanus Styrax Styrax americanus \N \N \N \N \N 37953 C.cinerascens Cipadessa Cipadessa cinerascens \N \N \N \N \N 37955 C.pycnocephalus Croton Croton pycnocephalus \N \N \N \N \N 37956 J.guaranitica Janusia Janusia guaranitica \N \N \N \N \N 37957 P.kendallii Podolepis Podolepis kendallii \N \N \N \N \N 37958 S.trachycarpum Solanum Solanum trachycarpum \N \N \N \N \N 37959 P.dolius Penstemon Penstemon dolius \N \N \N \N \N 37960 L.tingitanus Leontodon Leontodon tingitanus \N \N \N \N \N 37961 A.longipedunculata Arenaria Arenaria longipedunculata \N \N \N \N \N 37962 P.sibirica Polygala Polygala sibirica \N \N \N \N \N 37963 S.debilis Stachys Stachys debilis \N \N \N \N \N 37964 A.tsao-ko Amomum Amomum tsao-ko cao guo,tsao ko \N \N \N \N 37965 O.ulicinum Oxyphyllum Oxyphyllum ulicinum \N \N \N \N \N 37966 S.sample environmental samples Taxonomy:404796 Salicaceae environmental sample \N \N \N \N \N 37967 N.acaulis Nicotiana Nicotiana acaulis \N \N \N \N \N 37968 L.discolor Lotus Lotus discolor \N \N \N \N \N 37969 S.paniculata Symmeria Symmeria paniculata \N \N \N \N \N 37970 H.endsfeldzii Hoffmannseggella Hoffmannseggella endsfeldzii \N \N \N \N \N 37971 N.5029rd Nothofagus Nothofagus sp. 5029rd \N \N \N \N \N 37972 E.pannonica Euphorbia Euphorbia pannonica \N \N \N \N \N 37973 A.dichanthioides Austrochloris Austrochloris dichanthioides \N \N \N \N \N 37974 V.calcarata Viola Viola calcarata \N \N \N \N \N 37975 P.incisa Prunus Prunus incisa Fuji cherry \N \N \N \N 37976 \N varietas Solidago canadensis var. canadensis \N \N \N \N \N 37977 P.viridula Pseudosasa Pseudosasa viridula \N \N \N \N \N 37978 M.uliginosa Mimosa Mimosa uliginosa \N \N \N \N \N 37979 \N genus Taraxacum \N \N \N \N \N 37980 D.164 Dieffenbachia Dieffenbachia sp. Goncalves 164 \N \N \N \N \N 37981 \N genus Pteropepon \N \N \N \N \N 37982 C.alba Centaurea Centaurea alba \N \N \N \N \N 37983 I.longibracteata Ivesia Ivesia longibracteata \N \N \N \N \N 37984 A.microphylla Alternanthera Alternanthera microphylla \N \N \N \N \N 37985 N.hirtellus Nematanthus Nematanthus hirtellus \N \N \N \N \N 37986 S.gabrielae Solanum Solanum gabrielae \N \N \N \N \N 37987 A.fruticosa Alvordia Alvordia fruticosa \N \N \N \N \N 37988 T.smirnovii Typha Typha x smirnovii \N \N \N \N \N 37989 A.breviloba Angraecopsis Angraecopsis breviloba \N \N \N \N \N 37990 C.grandifolium Clibadium Clibadium grandifolium \N \N \N \N \N 37991 D.barbata Disa Disa barbata \N \N \N \N \N 37992 P.papilionaceum Pleuranthodium Pleuranthodium papilionaceum \N \N \N \N \N 37993 D.patula Disa Disa patula \N \N \N \N \N 37994 G.caucana Gomphichis Gomphichis caucana \N \N \N \N \N 37995 A.falcatus Astragalus Astragalus falcatus \N \N \N \N \N 37996 \N genus Tetranema \N \N \N \N \N 37997 C.gundlachii Clusia Clusia gundlachii \N \N \N \N \N 37998 H.hellwigii Horsfieldia Horsfieldia hellwigii \N \N \N \N \N 37999 M.2904 Maxillaria Maxillaria sp. Whitten 2904 \N \N \N \N \N 38000 B.107 Begonia Begonia sp. Forrest 107 \N \N \N \N \N 38001 A.meadii Asclepias Asclepias meadii \N \N \N \N \N 38002 N.asiaticum Narthecium Narthecium asiaticum \N \N \N \N \N 38003 D.ebenum Diospyros Diospyros ebenum Ceylon ebony \N \N \N \N 38004 C.canephora Coffea Coffea canephora robusta coffee \N \N \N \N 38005 C.penzesii Cardamine Cardamine penzesii \N \N \N \N \N 38006 D.plantagineum Doronicum Doronicum plantagineum \N \N \N \N \N 38007 A.muelleri Amorphophallus Amorphophallus muelleri \N \N \N \N \N 38008 E.inaequilatera Euphorbia Euphorbia inaequilatera \N \N \N \N \N 38009 M.lanceolatus Myodocarpus Myodocarpus lanceolatus \N \N \N \N \N 38010 S.citriformis Senecio Senecio citriformis \N \N \N \N \N 38011 P.eriocarpa Paullinia Paullinia eriocarpa \N \N \N \N \N 38012 N.parallelivenia Neo-uvaria Neo-uvaria parallelivenia \N \N \N \N \N 38013 N.prainii Neomicrocalamus Neomicrocalamus prainii \N \N \N \N \N 38014 B.mexicana Beiselia Beiselia mexicana \N \N \N \N \N 38015 L.sinuata Lamyropsis Lamyropsis sinuata \N \N \N \N \N 38016 A.chariessa Acacia Acacia chariessa \N \N \N \N \N 38017 T.trianthophora Triphora Triphora trianthophora \N \N \N \N \N 38018 \N genus Solaria \N \N \N \N \N 38019 N.faizaliana Nepenthes Nepenthes faizaliana \N \N \N \N \N 38020 I.atropurpurea Iris Iris atropurpurea \N \N \N \N \N 38021 S.laurinum Sarcosperma Sarcosperma laurinum \N \N \N \N \N 38022 S.baetica Sarcocapnos Sarcocapnos baetica \N \N \N \N \N 38023 C.vernicosa Christensonella Christensonella vernicosa \N \N \N \N \N 38024 G.fruticosa Galenia Galenia fruticosa \N \N \N \N \N 38025 L.minutolii Lavandula Lavandula minutolii \N \N \N \N \N 38026 \N genus Barcella \N \N \N \N \N 38027 \N genus Amphicarpum \N \N \N \N \N 38028 D.tenuiflorus Dianthus Dianthus tenuiflorus \N \N \N \N \N 38029 I.leucophyllus Isodon Isodon leucophyllus \N \N \N \N \N 38030 \N genus Alepidea \N \N \N \N \N 38031 R.spicata Rafnia Rafnia spicata \N \N \N \N \N 38032 \N subspecies Limnanthes floccosa subsp. grandiflora \N \N \N \N \N 38033 E.tomentulosa Euphorbia Euphorbia tomentulosa \N \N \N \N \N 38034 \N subspecies Pultenaea indira subsp. monstrosita \N \N \N \N \N 38035 P.dasytrichium Paspalum Paspalum dasytrichium \N \N \N \N \N 38036 M.titan Masdevallia Masdevallia titan \N \N \N \N \N 38037 K.stenachyra Kengyilia Kengyilia stenachyra \N \N \N \N \N 38038 S.megarrhizum Schoenocaulon Schoenocaulon megarrhizum \N \N \N \N \N 38039 P.melanops Primula Primula melanops \N \N \N \N \N 38040 C.humidum Cremosperma Cremosperma humidum \N \N \N \N \N 38041 T.grandis Tillandsia Tillandsia grandis \N \N \N \N \N 38042 A.JJD-2001 Aganope Aganope sp. JJD-2001 \N \N \N \N \N 38043 \N family Pontederiaceae water-hyacinth family \N \N \N \N 38044 P.362 Pentas Pentas sp. Barkman 362 \N \N \N \N \N 38045 E.fimbriata Erica Erica fimbriata \N \N \N \N \N 38046 P.groenlandica Pedicularis Pedicularis groenlandica elephant's-head \N \N \N \N 38047 N.sericea Niedenzuella Niedenzuella sericea \N \N \N \N \N 38048 C.litardierei Chouardia Chouardia litardierei \N \N \N \N \N 38049 C.tensa Caladenia Caladenia tensa \N \N \N \N \N 38050 G.venezuelana Guatteria Guatteria venezuelana \N \N \N \N \N 38051 G.brevifolia Gratiola Gratiola brevifolia sticky hedgehyssop \N \N \N \N 38052 A.confusa Aristea Aristea confusa \N \N \N \N \N 38053 H.greggii Haploesthes Haploesthes greggii \N \N \N \N \N 38054 C.sanderae Cymbidium Cymbidium sanderae \N \N \N \N \N 38055 C.nimbu' Citrus Citrus sp. 'kathairi nimbu' \N \N \N \N \N 38056 T.dahlii Tapeinochilos Tapeinochilos dahlii \N \N \N \N \N 38057 E.procera Euphorbia Euphorbia procera \N \N \N \N \N 38058 E.microthecum Eriogonum Eriogonum microthecum \N \N \N \N \N 38059 S.laevigata Salix Salix laevigata \N \N \N \N \N 38060 P.norrisi Pardancanda Pardancanda norrisi \N \N \N \N \N 38061 T.fragrans Trichopilia Trichopilia fragrans \N \N \N \N \N 38062 A.warmingii Apopyros Apopyros warmingii \N \N \N \N \N 38063 W.herzogii Weberbauera Weberbauera herzogii \N \N \N \N \N 38064 A.innexpectata Aphanes Aphanes innexpectata \N \N \N \N \N 38065 D.lichiangensis Dicentra Dicentra lichiangensis \N \N \N \N \N 38066 F.elata Festuca Festuca elata \N \N \N \N \N 38067 \N genus Aetheorhyncha \N \N \N \N \N 38068 C.saccata Cymbocarpa Cymbocarpa saccata \N \N \N \N \N 38069 \N genus Pescatoria \N \N \N \N \N 38070 M.purpureotincta Metabriggsia Metabriggsia purpureotincta \N \N \N \N \N 38071 C.excisum Corycium Corycium excisum \N \N \N \N \N 38072 K.scapigera Kalanchoe Kalanchoe scapigera \N \N \N \N \N 38073 \N tribe Ophiorrhizeae \N \N \N \N \N 38074 N.crispa Nepeta Nepeta crispa \N \N \N \N \N 38075 E.expansum Eryngium Eryngium expansum \N \N \N \N \N 38076 P.americana Persea Persea americana avocado \N \N \N \N 38077 \N genus Aleisanthiopsis \N \N \N \N \N 38078 \N genus Plagioscyphus \N \N \N \N \N 38079 D.trinervis Discaria Discaria trinervis \N \N \N \N \N 38080 A.japonica Alchemilla Alchemilla japonica \N \N \N \N \N 38081 C.gholsonii Carex Carex gholsonii \N \N \N \N \N 38082 C.seidlitziana Cardamine Cardamine seidlitziana \N \N \N \N \N 38083 \N genus Cliffortia \N \N \N \N \N 38084 A.schneideri Arracacia Arracacia schneideri \N \N \N \N \N 38085 M.boivinii Momordica Momordica boivinii \N \N \N \N \N 38086 \N genus Actinoscirpus \N \N \N \N \N 38087 \N varietas Coreopsis mutica var. carnosifolia \N \N \N \N \N 38088 \N genus Hydnocarpus \N \N \N \N \N 38089 C.ambigua Cistanthe Cistanthe ambigua \N \N \N \N \N 38090 C.outichaschensis Cousinia Cousinia outichaschensis \N \N \N \N \N 38091 C.lilacinum Callothlaspi Callothlaspi lilacinum \N \N \N \N \N 38092 E.xanthina Erica Erica xanthina \N \N \N \N \N 38093 V.ciliata Vulpia Vulpia ciliata bearded fescue,fringed fescue \N \N \N \N 38094 F.thymifolia Fumana Fumana thymifolia \N \N \N \N \N 38095 K.virginica Krigia Krigia virginica \N \N \N \N \N 38096 D.pugioniformis Dockrillia Dockrillia pugioniformis \N \N \N \N \N 38097 T.aseroe Thismia Thismia aseroe \N \N \N \N \N 38098 K.stipitata Klarobelia Klarobelia stipitata \N \N \N \N \N 38099 G.cuneata Gaultheria Gaultheria cuneata \N \N \N \N \N 38100 P.labradorica Pedicularis Pedicularis labradorica \N \N \N \N \N 38101 A.chevalieri Aeglopsis Aeglopsis chevalieri \N \N \N \N \N 38102 \N subspecies Iris stenophylla subsp. stenophylla \N \N \N \N \N 38103 A.hexapetalus Artabotrys Artabotrys hexapetalus \N \N \N \N \N 38104 C.amphibola Carex Carex amphibola \N \N \N \N \N 38105 A.pectinatum Australopyrum Australopyrum pectinatum \N \N \N \N \N 38106 \N subspecies Oxalis lucumayensis subsp. lucumayensis \N \N \N \N \N 38107 S.violaceum Sterigmostemum Sterigmostemum violaceum \N \N \N \N \N 38108 \N subspecies Vexatorella obtusata subsp. obtusata \N \N \N \N \N 38109 C.mollis Cineraria Cineraria mollis \N \N \N \N \N 38110 O.megalostachys Ononis Ononis megalostachys \N \N \N \N \N 38111 \N genus Jansenella \N \N \N \N \N 38112 C.guatemalensis Cobana Cobana guatemalensis \N \N \N \N \N 38113 G.krasnovii Galanthus Galanthus krasnovii \N \N \N \N \N 38114 C.alagoensis Croton Croton alagoensis \N \N \N \N \N 38115 I.longipes Ilex Ilex longipes \N \N \N \N \N 38116 B.545 Berlinia Berlinia cf. bracteosa Mackinder 545 \N \N \N \N \N 38117 C.strumatum Camaridium Camaridium strumatum \N \N \N \N \N 38118 M.coronata Muilla Muilla coronata \N \N \N \N \N 38119 C.ingramii Cytisus Cytisus ingramii \N \N \N \N \N 38120 P.SH-2010 Parkia Parkia sp. SH-2010 \N \N \N \N \N 38121 H.clarae Houlletia Houlletia clarae \N \N \N \N \N 38122 P.rotundiflora Pinguicula Pinguicula rotundiflora \N \N \N \N \N 38123 Z.luxurians Zea Zea luxurians Florida teosinte,Guatemalan teosinte,teosinte \N \N \N \N 38124 U.anthemoides Ursinia Ursinia anthemoides \N \N \N \N \N 38125 A.19371 Allium Allium sp. OSBU 19371 \N \N \N \N \N 38126 E.parkeri Echinocereus Echinocereus parkeri \N \N \N \N \N 38128 T.elegans Tetrazygia Tetrazygia elegans \N \N \N \N \N 38129 Q.host environmental samples Taxonomy:418140 Quercus mycorrhizal host \N \N \N \N \N 38130 \N genus Glossoloma \N \N \N \N \N 38131 C.calpodendron Crataegus Crataegus calpodendron \N \N \N \N \N 38132 L.oligonema Ligularia Ligularia oligonema \N \N \N \N \N 38133 L.axillaris Lisianthius Lisianthius axillaris \N \N \N \N \N 38134 S.sexennis Strobilanthes Strobilanthes sexennis \N \N \N \N \N 38135 E.crassipes Eichhornia Eichhornia crassipes water hyacinth \N \N \N \N 38136 D.decipularis Dalbergia Dalbergia decipularis Brazilian tulipwood,astiao-de-arruda,pau-de-fuso \N \N \N \N 38137 B.FS868 Bulbophyllum Bulbophyllum sp. FS868 \N \N \N \N \N 38138 \N genus Miricacalia \N \N \N \N \N 38139 S.aragonii Stenocereus Stenocereus aragonii \N \N \N \N \N 38140 N.rhabdothamnoides Negria Negria rhabdothamnoides \N \N \N \N \N 38141 A.10949 Alternanthera Alternanthera sp. Chase 10949 \N \N \N \N \N 38142 F.53 Froelichia Froelichia sp. McCauley 53 \N \N \N \N \N 38143 L.praecox Lagotis Lagotis praecox \N \N \N \N \N 38144 O.parvilimba Olea Olea parvilimba \N \N \N \N \N 38145 I.lancifolium Isometrum Isometrum lancifolium \N \N \N \N \N 38146 Z.recurvatum Zingiber Zingiber recurvatum \N \N \N \N \N 38147 \N subspecies Papaver somniferum subsp. setigerum \N \N \N \N \N 38148 \N genus Eurypetalum \N \N \N \N \N 38150 D.inaequalis Dracula Dracula inaequalis \N \N \N \N \N 38151 G.resinosa Greenmaniella Greenmaniella resinosa \N \N \N \N \N 38152 \N genus Holochlamys \N \N \N \N \N 38153 O.dhofarense Ormocarpum Ormocarpum dhofarense \N \N \N \N \N 38154 I.gaudichaudiana Isolepis Isolepis gaudichaudiana \N \N \N \N \N 38155 A.haastii Anisotome Anisotome haastii \N \N \N \N \N 38156 N.pyramidalis Nassauvia Nassauvia pyramidalis \N \N \N \N \N 38157 \N tribe Coniandreae \N \N \N \N \N 38158 S.strictum Secale Secale strictum \N \N \N \N \N 38159 N.sandwicense Nototrichium Nototrichium sandwicense \N \N \N \N \N 38160 U.meyeri Utricularia Utricularia meyeri \N \N \N \N \N 38161 E.montevidensis Eleocharis Eleocharis montevidensis \N \N \N \N \N 38162 B.paraguayensis Butia Butia paraguayensis \N \N \N \N \N 38163 G.siphonantha Gentiana Gentiana siphonantha \N \N \N \N \N 38164 S.xerampelinum Syzygium Syzygium xerampelinum \N \N \N \N \N 38165 \N genus Geissospermum \N \N \N \N \N 38166 M.orbicularis Microdon Microdon orbicularis \N \N \N \N \N 38167 A.biguerrensis Armeria Armeria biguerrensis \N \N \N \N \N 38168 \N genus Hydrodiscus \N \N \N \N \N 38169 \N subspecies Oenothera deltoides subsp. piperi \N \N \N \N \N 38170 G.bermudense Galium Galium bermudense \N \N \N \N \N 38171 S.melongena Solanum Solanum incanum x Solanum melongena \N \N \N \N \N 38172 T.viereckii Turbinicarpus Turbinicarpus viereckii \N \N \N \N \N 38173 \N no rank Artemisia herba-alba (type 2) \N \N \N \N \N 38174 M.subcrassicaulis Monanthes Monanthes subcrassicaulis \N \N \N \N \N 38175 \N genus Brassiantha \N \N \N \N \N 38176 I.AM-2009 Ixora Ixora sp. AM-2009 \N \N \N \N \N 38177 B.namaquensis Babiana Babiana namaquensis \N \N \N \N \N 38178 A.arctotoides Arctotis Arctotis arctotoides \N \N \N \N \N 38179 E.imbricata Erica Erica imbricata \N \N \N \N \N 38180 \N genus Luffa \N \N \N \N \N 38181 D.brachypoda Dichondra Dichondra brachypoda \N \N \N \N \N 38182 \N genus Lagarosolen \N \N \N \N \N 38183 L.minor Linospadix Linospadix minor \N \N \N \N \N 38184 M.darianii Marojejya Marojejya darianii \N \N \N \N \N 38185 C.aemula Correa Correa aemula \N \N \N \N \N 38186 C.vicentina Clethra Clethra vicentina \N \N \N \N \N 38187 \N genus Arenga \N \N \N \N \N 38188 I.TP-2009 Inga Inga sp. 50 TP-2009 \N \N \N \N \N 38189 T.ketzkhovelii Tragopogon Tragopogon ketzkhovelii \N \N \N \N \N 38190 C.CAM086 Campanula Campanula aff. rotundifolia CAM086 \N \N \N \N \N 38191 I.poliotes Indigofera Indigofera poliotes \N \N \N \N \N 38192 \N genus Gymnacranthera \N \N \N \N \N 38193 G.trilobum Gastrolobium Gastrolobium trilobum \N \N \N \N \N 38194 \N subspecies Ballota nigra subsp. uncinata \N \N \N \N \N 38195 A.thymifolium Acanthostelma Acanthostelma thymifolium \N \N \N \N \N 38196 A.WP5C1165 Aglaia Aglaia sp. WP5C1165 \N \N \N \N \N 38197 S.formosus Streptocarpus Streptocarpus formosus \N \N \N \N \N 38198 C.platyphylla Carex Carex platyphylla \N \N \N \N \N 38199 O.JTO-2010a unclassified Orchidaceae Orchidaceae sp. JTO-2010a \N \N \N \N \N 38200 R.hawaiensis Rubus Rubus hawaiensis \N \N \N \N \N 38201 \N genus Lamprolobium \N \N \N \N \N 38202 M.rufipes Myrcia Myrcia rufipes \N \N \N \N \N 38203 M.reverchonii Mentzelia Mentzelia reverchonii \N \N \N \N \N 38204 K.calycina Knautia Knautia calycina \N \N \N \N \N 38205 \N genus Malosma \N \N \N \N \N 38206 \N subspecies Alnus incana subsp. rugosa \N \N \N \N \N 38207 D.orientale Doronicum Doronicum orientale \N \N \N \N \N 38208 A.maritima Agalinis Agalinis maritima \N \N \N \N \N 38209 A.iranicum Allium Allium iranicum \N \N \N \N \N 38210 \N genus Smirnowia \N \N \N \N \N 38211 B.subaristata Briza Briza subaristata \N \N \N \N \N 38212 D.pseudohamatum Delphinium Delphinium pseudohamatum \N \N \N \N \N 38213 E.chamaebuxus Euphorbia Euphorbia chamaebuxus \N \N \N \N \N 38214 L.SH-2010 Leea Leea sp. SH-2010 \N \N \N \N \N 38215 P.subcordata Pisonia Pisonia subcordata \N \N \N \N \N 38216 D.ovalifolia Disa Disa ovalifolia \N \N \N \N \N 38217 O.kruegerii Ornithocephalus Ornithocephalus kruegerii \N \N \N \N \N 38218 V.lucens Vitex Vitex lucens \N \N \N \N \N 38219 T.subulata Turnera Turnera subulata white alder \N \N \N \N 38220 C.splendens Chaetanthera Chaetanthera splendens \N \N \N \N \N 38221 L.modesta Luzula Luzula modesta \N \N \N \N \N 38222 B.SH-2010 Bridelia Bridelia sp. SH-2010 \N \N \N \N \N 38223 M.hirsutum Micromelum Micromelum hirsutum \N \N \N \N \N 38224 N.tortifolius Narcissus Narcissus tortifolius \N \N \N \N \N 38225 R.spithamea Rosa Rosa spithamea \N \N \N \N \N 38226 A.hildebrandtii Alchemilla Alchemilla hildebrandtii \N \N \N \N \N 38227 S.dioscoreifolia Stenomeris Stenomeris dioscoreifolia \N \N \N \N \N 38228 I.retusa Ilex Ilex retusa \N \N \N \N \N 38229 \N family Poaceae grass family \N \N \N \N 38230 N.karwinskiana Nopalea Nopalea karwinskiana \N \N \N \N \N 38231 C.egregia Cousinia Cousinia egregia \N \N \N \N \N 38232 R.sachalinensis Rubus Rubus sachalinensis \N \N \N \N \N 38233 N.truncata Nothofagus Nothofagus truncata \N \N \N \N \N 38234 E.esula Euphorbia Euphorbia cyparissias x Euphorbia esula \N \N \N \N \N 38235 O.aristatus Orthosiphon Orthosiphon aristatus Java-tea \N \N \N \N 38236 A.trianoi Armeria Armeria trianoi \N \N \N \N \N 38237 S.mirifica Schottariella Schottariella mirifica \N \N \N \N \N 38238 O.rosea Ononis Ononis rosea \N \N \N \N \N 38239 \N varietas Sinocrassula indica var. indica \N \N \N \N \N 38240 S.repens Sideroxylon Sideroxylon repens \N \N \N \N \N 38241 C.erythrostylum Cymbidium Cymbidium erythrostylum \N \N \N \N \N 38242 D.aubrietioides Draba Draba aubrietioides \N \N \N \N \N 38243 \N genus Styphelia \N \N \N \N \N 38244 \N genus Heckeldora \N \N \N \N \N 38245 P.cochisensis Perityle Perityle cochisensis \N \N \N \N \N 38246 C.myrtifolia Citrus Citrus myrtifolia \N \N \N \N \N 38247 C.mackeeana Codia Codia mackeeana \N \N \N \N \N 38248 T.pteropodum Teijsmanniodendron Teijsmanniodendron pteropodum \N \N \N \N \N 38249 P.tetraphylla Peperomia Peperomia tetraphylla \N \N \N \N \N 38250 P.costanense Pleurothyrium Pleurothyrium costanense \N \N \N \N \N 38251 D.johannesii Dilkea Dilkea johannesii \N \N \N \N \N 38252 D.trifidus Dendropanax Dendropanax trifidus \N \N \N \N \N 38253 \N varietas Aconitum geniculatum var. humilius \N \N \N \N \N 38254 \N subspecies Cardiandra alternifolia subsp. alternifolia \N \N \N \N \N 38255 S.gardenii Speirantha Speirantha gardenii \N \N \N \N \N 38256 A.brasiliensis Attalea Attalea brasiliensis \N \N \N \N \N 38257 P.vellozoi Perianthomega Perianthomega vellozoi \N \N \N \N \N 38258 O.Bonn Otacanthus Otacanthus sp. Albach ex BG Bonn \N \N \N \N \N 38259 \N no rank Polygala chamaebuxus var. grandiflora \N \N \N \N \N 38260 A.fordii Antidesma Antidesma fordii \N \N \N \N \N 38261 C.songorica Camphorosma Camphorosma songorica \N \N \N \N \N 38262 A.kerrii Arisaema Arisaema kerrii \N \N \N \N \N 38263 P.reticulata Pouteria Pouteria reticulata \N \N \N \N \N 38264 R.microcarpa Reseda Reseda microcarpa \N \N \N \N \N 38265 C.indica Caralluma Caralluma indica \N \N \N \N \N 38266 B.connata Blackallia Blackallia connata \N \N \N \N \N 38267 B.lubbersii Begonia Begonia lubbersii \N \N \N \N \N 38268 C.oblonga Cornus Cornus oblonga \N \N \N \N \N 38269 A.acutivalvis Allocasuarina Allocasuarina acutivalvis \N \N \N \N \N 38270 M.costaricensis Maxillaria Maxillaria costaricensis \N \N \N \N \N 38271 M.murilliana Maxillaria Maxillaria murilliana \N \N \N \N \N 38272 \N genus Gaimardia \N \N \N \N \N 38273 G.wislizenii Gentianella Gentianella wislizenii \N \N \N \N \N 38274 O.eriocephala Olgaea Olgaea eriocephala \N \N \N \N \N 38275 A.hispanicum Antirrhinum Antirrhinum hispanicum \N \N \N \N \N 38276 S.rotundifolius Symphoricarpos Symphoricarpos rotundifolius \N \N \N \N \N 38277 \N varietas Haworthia cymbiformis var. obtusa \N \N \N \N \N 38278 D.peruviana Draba Draba peruviana \N \N \N \N \N 38279 P.corcovadense Piper Piper corcovadense \N \N \N \N \N 38280 P.stuartii Primula Primula stuartii \N \N \N \N \N 38281 C.paludosus Calochilus Calochilus paludosus \N \N \N \N \N 38282 M.williamsii Machaonia Machaonia williamsii \N \N \N \N \N 38283 C.purpurascens Crinum Crinum purpurascens \N \N \N \N \N 38284 A.garrettii Acer Acer garrettii \N \N \N \N \N 38285 P.aselliformis Pelecyphora Pelecyphora aselliformis \N \N \N \N \N 38286 P.caespitosa Protea Protea caespitosa \N \N \N \N \N 38287 \N no rank unclassified Laxmanniaceae \N \N \N \N \N 38288 H.dumortieri Hemerocallis Hemerocallis dumortieri \N \N \N \N \N 38289 M.amblyphyllum Malvastrum Malvastrum amblyphyllum \N \N \N \N \N 38290 C.lindheimeri Croton Croton lindheimeri \N \N \N \N \N 38291 \N genus Nananthea \N \N \N \N \N 38292 P.racemosum Pteridophyllum Pteridophyllum racemosum \N \N \N \N \N 38293 V.cotyledon Viola Viola cotyledon \N \N \N \N \N 38294 P.obovata Planchonella Planchonella obovata northern yellow boxwood,yellow teak \N \N \N \N 38295 \N genus Willdenowia \N \N \N \N \N 38296 B.buchneri Blepharis Blepharis buchneri \N \N \N \N \N 38297 V.grandiflora Vicia Vicia grandiflora \N \N \N \N \N 38298 D.lombardii Diamantina Diamantina lombardii \N \N \N \N \N 38299 P.strupifolia Pleurothallis Pleurothallis strupifolia \N \N \N \N \N 38300 E.laeviglumis Eleocharis Eleocharis laeviglumis \N \N \N \N \N 38301 L.magellanicus Lathyrus Lathyrus magellanicus \N \N \N \N \N 38302 W.warreana Warrea Warrea warreana \N \N \N \N \N 38303 W.geoides Waldsteinia Waldsteinia geoides \N \N \N \N \N 38304 C.tohiveaensis Cyrtandra Cyrtandra tohiveaensis \N \N \N \N \N 38305 P.diffusum Pomatocalpa Pomatocalpa diffusum \N \N \N \N \N 38306 \N genus Barclaya \N \N \N \N \N 38307 B.FS787 Bulbophyllum Bulbophyllum sp. FS787 \N \N \N \N \N 38308 A.laevigatum Acer Acer laevigatum \N \N \N \N \N 38309 H.grandiflora Hexalectris Hexalectris grandiflora \N \N \N \N \N 38310 M.stachydifolius Mazus Mazus stachydifolius \N \N \N \N \N 38311 C.californica Coreopsis Coreopsis californica \N \N \N \N \N 38312 M.macronyx Moraea Moraea macronyx \N \N \N \N \N 38313 C.purpureus Cenchrus Cenchrus americanus x Cenchrus purpureus \N \N \N \N \N 38314 M.costulata Macaranga Macaranga costulata \N \N \N \N \N 38315 K.44708 Kunzea Kunzea sp. E Benson 44708 \N \N \N \N \N 38316 C.fenzlii Centaurea Centaurea fenzlii \N \N \N \N \N 38317 V.guineensis Vismia Vismia guineensis \N \N \N \N \N 38318 P.chermsideana Phaleria Phaleria chermsideana \N \N \N \N \N 38319 R.maximowiczianum Ribes Ribes maximowiczianum \N \N \N \N \N 38320 M.reederorum Muhlenbergia Muhlenbergia reederorum \N \N \N \N \N 38321 B.perennans Boechera Boechera perennans \N \N \N \N \N 38322 T.urbaniana Tarasa Tarasa urbaniana \N \N \N \N \N 38324 A.leonardii Astragalus Astragalus leonardii \N \N \N \N \N 38325 A.thonneri Aframomum Aframomum thonneri \N \N \N \N \N 38326 O.canescens Oenothera Oenothera canescens \N \N \N \N \N 38327 \N varietas Lupinus albifrons var. collinus \N \N \N \N \N 38328 R.occidentale Rytidosperma Rytidosperma occidentale \N \N \N \N \N 38329 V.lavaudiana Hebe Veronica lavaudiana \N \N \N \N \N 38330 H.1999 Hydrocotyle Hydrocotyle cf. javanica Plunkett 1999 \N \N \N \N \N 38331 P.owatarii Pseudosasa Pseudosasa owatarii \N \N \N \N \N 38332 G.biagiana Geissois Geissois biagiana \N \N \N \N \N 38333 A.sphaerocephala Acacia Acacia sphaerocephala \N \N \N \N \N 38334 I.aquifolium Ilex Ilex aquifolium English holly \N \N \N \N 38335 M.depressa Mirbelia Mirbelia depressa \N \N \N \N \N 38336 E.cultivar Echinodorus Echinodorus hybrid cultivar \N \N \N \N \N 38337 P.maliformis Passiflora Passiflora maliformis \N \N \N \N \N 38338 \N subspecies Cephalaria squamiflora subsp. squamiflora \N \N \N \N \N 38339 B.minor Butea Butea minor \N \N \N \N \N 38340 O.diversifolia Orites Orites diversifolia \N \N \N \N \N 38341 \N subspecies Corymbia ligans subsp. ligans \N \N \N \N \N 38342 \N genus Crusea \N \N \N \N \N 38343 E.eggersii Eugenia Eugenia eggersii \N \N \N \N \N 40583 \N genus Souroubea \N \N \N \N \N 38344 D.laricifolius Dianthus Dianthus laricifolius \N \N \N \N \N 38345 G.rigida Gazania Gazania rigida \N \N \N \N \N 38346 L.garciae Litsea Litsea garciae \N \N \N \N \N 38347 V.aetolica Viola Viola aetolica \N \N \N \N \N 38348 C.colimensis Caesalpinia Caesalpinia colimensis \N \N \N \N \N 38349 S.brasiliensis Strychnos Strychnos brasiliensis \N \N \N \N \N 38350 H.pabstii Hoffmannseggella Hoffmannseggella pabstii \N \N \N \N \N 38351 P.rarum Paspalidium Paspalidium rarum \N \N \N \N \N 38352 P.oppositifolium Polygonatum Polygonatum oppositifolium \N \N \N \N \N 38353 \N family Apodanthaceae \N \N \N \N \N 38354 \N subspecies Fragaria virginiana subsp. glauca \N \N \N \N \N 38355 P.schwartzii Ptilotus Ptilotus schwartzii \N \N \N \N \N 38356 E.fluctuans Eleocharis Eleocharis fluctuans \N \N \N \N \N 38357 J.sessiliflora Jasione Jasione sessiliflora \N \N \N \N \N 38358 \N genus Stewartia \N \N \N \N \N 38359 O.tenuifolius Orthocarpus Orthocarpus tenuifolius \N \N \N \N \N 38360 \N genus Pterocephalodes \N \N \N \N \N 38361 P.kalbreyeri Passiflora Passiflora kalbreyeri \N \N \N \N \N 38362 V.subterranea Vigna Vigna subterranea ground-bean,hog-peanut \N \N \N \N 38363 A.phaeolepis Atractylis Atractylis phaeolepis \N \N \N \N \N 38364 S.exserta Styphelia Styphelia exserta \N \N \N \N \N 38365 \N genus Neoguillauminia \N \N \N \N \N 38366 A.tribulifolius Astragalus Astragalus tribulifolius \N \N \N \N \N 38367 \N genus Edmundoa \N \N \N \N \N 38368 P.oleifolia Prunus Prunus oleifolia \N \N \N \N \N 38369 S.augustii Solanum Solanum augustii \N \N \N \N \N 38370 A.nitens Atriplex Atriplex nitens \N \N \N \N \N 38371 E.restituta Euphorbia Euphorbia restituta \N \N \N \N \N 38372 H.aspera Holothrix Holothrix aspera \N \N \N \N \N 38373 P.calvoides Paepalanthus Paepalanthus calvoides \N \N \N \N \N 38374 \N forma Lepismium lumbricoides f. lumbricoides \N \N \N \N \N 38375 \N varietas Solanum tenuipes var. latisectum \N \N \N \N \N 38376 D.1121 Disterigma Disterigma sp. Pedraza 1121 \N \N \N \N \N 38377 C.cunninghamii Coprosma Coprosma x cunninghamii \N \N \N \N \N 38378 C.revoluta Cranichis Cranichis revoluta \N \N \N \N \N 38379 C.mandarinorum Clerodendrum Clerodendrum mandarinorum \N \N \N \N \N 38380 C.guianensis Conceveiba Conceveiba guianensis \N \N \N \N \N 38381 P.brachypus Piper Piper brachypus \N \N \N \N \N 38382 R.LE118 Ramphicarpa Ramphicarpa sp. LE118 \N \N \N \N \N 38383 \N tribe Dicoelieae \N \N \N \N \N 38384 S.ACTZ-2009 Schizolobium Schizolobium sp. ACTZ-2009 \N \N \N \N \N 38385 T.aestivum Triticum Triticum aestivum Canadian hard winter wheat,bread wheat,common wheat,wheat \N \N \N \N 38386 C.parryi Collinsia Collinsia parryi \N \N \N \N \N 38387 S.lugardii Sesamothamnus Sesamothamnus lugardii \N \N \N \N \N 38388 E.campanulatus Enkianthus Enkianthus campanulatus \N \N \N \N \N 38389 P.2011-05 Polianthes Polianthes sp. Pires 2011-05 \N \N \N \N \N 38390 \N varietas Senna acuruensis var. acuruensis \N \N \N \N \N 38391 \N varietas Boehmeria nivea var. nipononivea \N \N \N \N \N 38392 M.fusiformis Melodinus Melodinus fusiformis \N \N \N \N \N 38393 X.cultivar x Colmanara x Colmanara hybrid cultivar \N \N \N \N \N 38394 P.gigantea Persea Persea gigantea \N \N \N \N \N 38395 D.urbanianum Deinacanthon Deinacanthon urbanianum \N \N \N \N \N 38396 \N genus Monotoca \N \N \N \N \N 38397 A.arfakensis Aeschynanthus Aeschynanthus arfakensis \N \N \N \N \N 38398 A.lorea Apochloa Apochloa lorea \N \N \N \N \N 38399 C.monandra Calandrinia Calandrinia monandra \N \N \N \N \N 38400 B.viridiflora Billbergia Billbergia viridiflora \N \N \N \N \N 38401 D.giganteiformis Dianthus Dianthus giganteiformis \N \N \N \N \N 38402 C.microglochin Carex Carex microglochin \N \N \N \N \N 38403 I.sphaerocephalus Isopogon Isopogon sphaerocephalus \N \N \N \N \N 38404 A.funghomii Arundinaria Arundinaria funghomii \N \N \N \N \N 38405 P.parritae Passiflora Passiflora parritae \N \N \N \N \N 38406 S.cogens Strychnos Strychnos cogens \N \N \N \N \N 38407 P.ugandensis Pseudagrostistachys Pseudagrostistachys ugandensis \N \N \N \N \N 38408 R.pervagata Rhodomyrtus Rhodomyrtus pervagata \N \N \N \N \N 38409 M.densa Metalasia Metalasia densa \N \N \N \N \N 38410 O.umbellatum Ornithogalum Ornithogalum umbellatum \N \N \N \N \N 38411 B.spinosa Bursaria Bursaria spinosa \N \N \N \N \N 38412 \N genus Grammosolen \N \N \N \N \N 38413 C.excelsa Compsoneura Compsoneura excelsa \N \N \N \N \N 38414 D.iners Droguetia Droguetia iners \N \N \N \N \N 38415 B.pseudolaevipes Bromus Bromus pseudolaevipes coast range brome \N \N \N \N 38416 D.niruri Ditassa Ditassa niruri \N \N \N \N \N 38417 \N genus Toronia \N \N \N \N \N 38418 C.incanum Chenopodium Chenopodium incanum \N \N \N \N \N 38419 \N subspecies Primula cuneifolia subsp. hakusanensis \N \N \N \N \N 38420 F.guestphalica Festuca Festuca guestphalica \N \N \N \N \N 38421 T.chinensis Trollius Trollius chinensis jin lian hua \N \N \N \N 38422 \N varietas Magnolia macklottii var. beccariana \N \N \N \N \N 38423 K.flynnii Kadua Kadua flynnii \N \N \N \N \N 38424 O.cotapatensis Ourisia Ourisia cotapatensis \N \N \N \N \N 38425 P.letestuana Pauridiantha Pauridiantha letestuana \N \N \N \N \N 38426 H.tricuspidata Heliophila Heliophila tricuspidata \N \N \N \N \N 38427 A.ischredensis Astragalus Astragalus ischredensis \N \N \N \N \N 38428 P.19 Potamogeton Potamogeton sp. Dongbei 19 \N \N \N \N \N 38429 C.gnaphalodes Cerastium Cerastium gnaphalodes \N \N \N \N \N 38430 \N varietas Boehmeria strigosifolia var. mollis \N \N \N \N \N 38431 C.rotundifolia Cassipourea Cassipourea rotundifolia \N \N \N \N \N 38432 C.SH-2010 Carya Carya sp. SH-2010 \N \N \N \N \N 38433 A.parvifolia Antennaria Antennaria parvifolia \N \N \N \N \N 38434 E.taylorii Erythronium Erythronium taylorii \N \N \N \N \N 38435 G.duplicata Grabowskia Grabowskia duplicata \N \N \N \N \N 38436 \N genus Blackiella \N \N \N \N \N 38437 B.capitata Burmannia Burmannia capitata cap burmannia \N \N \N \N 38438 M.hypoleuca Monardella Monardella hypoleuca \N \N \N \N \N 42139 \N genus Calycopteris \N \N \N \N \N 38439 D.stenophylla Drymonia Drymonia stenophylla \N \N \N \N \N 38440 A.marramamba Acacia Acacia marramamba \N \N \N \N \N 38441 P.uniflora Plantago Plantago uniflora \N \N \N \N \N 38442 E.emarginata Eurya Eurya emarginata \N \N \N \N \N 38443 H.dregeanum Helichrysum Helichrysum dregeanum \N \N \N \N \N 38444 S.annulata Stanhopea Stanhopea annulata \N \N \N \N \N 38445 \N genus Pentapleura \N \N \N \N \N 38446 R.kariusiana Rebutia Rebutia kariusiana \N \N \N \N \N 38447 C.konasita Ceropegia Ceropegia konasita \N \N \N \N \N 38448 T.cretica Tulipa Tulipa cretica \N \N \N \N \N 38449 A.yguazuensis Apinagia Apinagia yguazuensis \N \N \N \N \N 38450 C.2310 Christensonella Christensonella sp. Whitten 2310 \N \N \N \N \N 38451 F.'incana' Fraxinus Fraxinus sp. 'incana' \N \N \N \N \N 38452 \N genus Medeola \N \N \N \N \N 38453 N.elleniae Nymphaea Nymphaea elleniae \N \N \N \N \N 38454 M.annua Martynia Martynia annua \N \N \N \N \N 38455 B.javanica Berrya Berrya javanica \N \N \N \N \N 38456 \N genus Lachnospermum \N \N \N \N \N 38457 C.abyssinica Cuscuta Cuscuta abyssinica \N \N \N \N \N 38458 \N varietas Aechmea weilbachii var. albipetala \N \N \N \N \N 38459 D.dissecta Dahlia Dahlia dissecta \N \N \N \N \N 38460 \N varietas Smilax riparia var. acuminata \N \N \N \N \N 38461 L.multicaule Lithosciadium Lithosciadium multicaule \N \N \N \N \N 38462 S.vernei Solanum Solanum vernei \N \N \N \N \N 38463 \N genus Bowkeria \N \N \N \N \N 38464 D.pleiantha Dysosma Dysosma pleiantha \N \N \N \N \N 38465 \N subspecies Leucanthemum vulgare subsp. pujiulae \N \N \N \N \N 38466 C.arboreus Croton Croton arboreus \N \N \N \N \N 38467 F.verrucifera Fimbristylis Fimbristylis verrucifera \N \N \N \N \N 38468 C.iridiflora Canna Canna iridiflora \N \N \N \N \N 38469 V.pinnatilobata Viguiera Viguiera pinnatilobata \N \N \N \N \N 38470 \N genus Phinaea \N \N \N \N \N 38471 I.spathulatum Illicium Illicium spathulatum \N \N \N \N \N 38472 D.peltata Darmera Darmera peltata \N \N \N \N \N 38473 \N genus Bertolonia \N \N \N \N \N 38474 A.chamissonis Arnica Arnica chamissonis \N \N \N \N \N 38475 S.incana Sideritis Sideritis incana \N \N \N \N \N 38476 E.unguispinus Echinomastus Echinomastus unguispinus \N \N \N \N \N 38477 \N varietas Cucurbita pepo var. texana x subsp. fraterna \N \N \N \N \N 38478 G.cristata Galeandra Galeandra cristata \N \N \N \N \N 38479 T.pentandra Tamarix Tamarix pentandra \N \N \N \N \N 38480 \N subspecies Ophrys ciliata subsp. ciliata \N \N \N \N \N 38481 S.BC8 Syzygium Syzygium sp. BC8 \N \N \N \N \N 38482 S.japonica Swertia Swertia japonica \N \N \N \N \N 38483 D.microphylla Dactylaena Dactylaena microphylla \N \N \N \N \N 38484 \N subspecies Paeonia decomposita subsp. rotundiloba \N \N \N \N \N 38485 S.s.n. Salicornia Salicornia sp. Akhani s.n. \N \N \N \N \N 38486 L.indica Lactuca Lactuca indica \N \N \N \N \N 38487 E.zilziana Escobaria Escobaria zilziana \N \N \N \N \N 38488 Y.rigida Yucca Yucca rigida \N \N \N \N \N 38489 \N tribe Hippomaneae \N \N \N \N \N 38490 P.collina Pterostylis Pterostylis collina \N \N \N \N \N 38491 D.triradiata Deverra Deverra triradiata \N \N \N \N \N 38492 \N genus Carphalea \N \N \N \N \N 38493 \N genus Kingia \N \N \N \N \N 38494 A.ramosus Actinocephalus Actinocephalus ramosus \N \N \N \N \N 38495 S.panamensis Stenanona Stenanona panamensis \N \N \N \N \N 38496 S.floribunda Stephanotis Stephanotis floribunda Madagascar jasmine \N \N \N \N 38497 \N genus Arachnis \N \N \N \N \N 38498 R.letouzeyi Rinorea Rinorea letouzeyi \N \N \N \N \N 38499 Y.tenuicaulis Youngia Youngia tenuicaulis \N \N \N \N \N 38500 D.acaulis Draba Draba acaulis \N \N \N \N \N 38501 E.albertyniae Erica Erica albertyniae \N \N \N \N \N 38502 M.paniculata Murraya Murraya paniculata \N \N \N \N \N 38503 E.delicatus Euchiton Euchiton delicatus \N \N \N \N \N 38504 L.1115 Lingelsheimia Lingelsheimia sp. Rabenantoandro et al. 1115 \N \N \N \N \N 38505 N.aurantiaca Nymphoides Nymphoides aurantiaca \N \N \N \N \N 38506 H.mancinella Hippomane Hippomane mancinella \N \N \N \N \N 38507 D.ambigua Droguetia Droguetia ambigua \N \N \N \N \N 38508 G.mauritiana Gouania Gouania mauritiana \N \N \N \N \N 38509 W.vitiensis Weinmannia Weinmannia vitiensis \N \N \N \N \N 38510 \N subspecies Streptanthus glandulosus subsp. hoffmanii \N \N \N \N \N 38511 C.acuminata Camptotheca Camptotheca acuminata \N \N \N \N \N 38512 A.gigantifolia Ardisia Ardisia gigantifolia \N \N \N \N \N 38513 \N genus Gallesia \N \N \N \N \N 38514 L.tuberosus Lathyrus Lathyrus tuberosus \N \N \N \N \N 38515 S.DOB-2010 Stackhousia Stackhousia sp. 3 DOB-2010 \N \N \N \N \N 38516 \N genus Cowania \N \N \N \N \N 38517 G.SH-2010 Gnaphalium Gnaphalium sp. SH-2010 \N \N \N \N \N 38518 E.hendricksei Erica Erica hendricksei \N \N \N \N \N 38519 W.aristata Withania Withania aristata \N \N \N \N \N 38520 M.campestre Macrolobium Macrolobium campestre \N \N \N \N \N 38521 R.distichus Restio Restio distichus \N \N \N \N \N 38522 B.cretica Brassica Brassica cretica \N \N \N \N \N 38523 I.leptocarpa Indigofera Indigofera leptocarpa \N \N \N \N \N 38524 \N genus Vigna \N \N \N \N \N 38525 S.36018 Sidalcea Sidalcea sp. Clifton 36018 \N \N \N \N \N 38526 G.grandiflora Gethyllis Gethyllis grandiflora \N \N \N \N \N 38527 D.paucifoliolata Dichrostachys Dichrostachys paucifoliolata \N \N \N \N \N 38528 C.pensylvanica Carex Carex pensylvanica \N \N \N \N \N 38529 H.spartea Hesperostipa Hesperostipa spartea \N \N \N \N \N 38530 S.nobile Solanum Solanum nobile \N \N \N \N \N 38531 D.oppositifolia Domeykoa Domeykoa oppositifolia \N \N \N \N \N 38532 \N subspecies Pimelea longiflora subsp. eyrei \N \N \N \N \N 38533 L.ochracea Litsea Litsea ochracea \N \N \N \N \N 38534 P.paniculata Polygala Polygala paniculata \N \N \N \N \N 38535 P.5275 Polyscias Polyscias cf. belensis Lowry 5275 \N \N \N \N \N 38536 H.racemosum Haloragodendron Haloragodendron racemosum \N \N \N \N \N 38537 A.magellanica Agrostis Agrostis magellanica \N \N \N \N \N 38538 C.6033 Campylandra Campylandra sp. Tamura & Yamashita 6033 \N \N \N \N \N 38539 T.pseudomacrochele Turbinicarpus Turbinicarpus pseudomacrochele \N \N \N \N \N 38540 B.serrulata Bidens Bidens serrulata \N \N \N \N \N 38541 G.caryophyllaceus Gladiolus Gladiolus caryophyllaceus \N \N \N \N \N 38542 D.peruviana Dorstenia Dorstenia peruviana \N \N \N \N \N 38543 S.myriocarpa Streblosa Streblosa myriocarpa \N \N \N \N \N 38544 O.minuta Oxalis Oxalis minuta \N \N \N \N \N 38545 \N genus Myrothamnus \N \N \N \N \N 38546 E.ebbanoensis Eucalyptus Eucalyptus ebbanoensis \N \N \N \N \N 38547 S.jucunda Sartidia Sartidia jucunda \N \N \N \N \N 38548 A.duncanii Allocasuarina Allocasuarina duncanii \N \N \N \N \N 38549 C.pedunculata Ciliosemina Ciliosemina pedunculata \N \N \N \N \N 38550 C.vaginalis Coronilla Coronilla vaginalis \N \N \N \N \N 38551 A.san-martinianus Aphyllocladus Aphyllocladus san-martinianus \N \N \N \N \N 38552 S.verrucosum Sesuvium Sesuvium verrucosum \N \N \N \N \N 38553 Q.valdinervosa Quercus Quercus valdinervosa \N \N \N \N \N 38554 D.celebesense Dendrochilum Dendrochilum celebesense \N \N \N \N \N 38555 \N genus Hyssopus \N \N \N \N \N 38556 S.humilis Stemodiopsis Stemodiopsis humilis \N \N \N \N \N 38557 \N genus Heritiera \N \N \N \N \N 38558 E.composita Eriosolena Eriosolena composita \N \N \N \N \N 38559 A.26940 Arum Arum sp. Lobin 26940 \N \N \N \N \N 38560 P.gaudichaudianum Piper Piper gaudichaudianum \N \N \N \N \N 38561 L.brevituba Lagotis Lagotis brevituba \N \N \N \N \N 38562 G.gracilis Guilleminea Guilleminea gracilis \N \N \N \N \N 38563 \N genus Alvaradoa \N \N \N \N \N 38564 G.paniculata Globba Globba paniculata \N \N \N \N \N 38565 T.turkestanica Thermopsis Thermopsis turkestanica \N \N \N \N \N 38566 A.rhodophloia Acacia Acacia rhodophloia minni ritchi \N \N \N \N 38567 F.70 Fraxinus Fraxinus sp. 70 \N \N \N \N \N 38568 \N genus Dissochaeta \N \N \N \N \N 38569 P.sericea Peripleura Peripleura sericea \N \N \N \N \N 38570 B.bellus Bothriochilus Bothriochilus bellus \N \N \N \N \N 38571 E.latifolia Eugenia Eugenia latifolia \N \N \N \N \N 38572 C.brasiliensis Cleome Cleome brasiliensis \N \N \N \N \N 38573 A.odoratum Anthoxanthum Anthoxanthum odoratum \N \N \N \N \N 38574 B.brandisiana Begonia Begonia brandisiana \N \N \N \N \N 38575 H.waymaniae Hoya Hoya waymaniae \N \N \N \N \N 38576 M.cordistipula Mimosa Mimosa cordistipula \N \N \N \N \N 38577 C.cruegeri Cayaponia Cayaponia cruegeri \N \N \N \N \N 38578 \N subspecies Castilleja densiflora subsp. densiflora \N \N \N \N \N 38579 D.baicalensis Draba Draba baicalensis \N \N \N \N \N 38580 D.ericoides Diplostephium Diplostephium ericoides \N \N \N \N \N 38581 A.schistocalyx Astragalus Astragalus schistocalyx \N \N \N \N \N 38582 \N genus Iva marsh elder \N \N \N \N 38583 G.tetrahit Galeopsis Galeopsis bifida x Galeopsis tetrahit \N \N \N \N \N 38584 B.tomentella Berlinia Berlinia tomentella \N \N \N \N \N 38585 J.122887 Jumellea Jumellea sp. Heidelberg BG 122887 \N \N \N \N \N 38586 F.hirta Ficus Ficus hirta \N \N \N \N \N 38587 C.micranthum Clinopodium Clinopodium micranthum \N \N \N \N \N 38588 \N subspecies Oxalis latifolia subsp. galeottii \N \N \N \N \N 38589 A.spinosissima Allocasuarina Allocasuarina spinosissima \N \N \N \N \N 38590 B.howellii Boechera Boechera howellii \N \N \N \N \N 38591 C.tabularis Capelio Capelio tabularis \N \N \N \N \N 38592 V.palmarum Vanilla Vanilla palmarum \N \N \N \N \N 38593 \N genus Hudsonia \N \N \N \N \N 38594 G.pusilla Grindelia Grindelia pusilla \N \N \N \N \N 38595 P.ornata Phlomis Phlomis ornata \N \N \N \N \N 38596 A.rubra Actaea Actaea rubra \N \N \N \N \N 38597 T.gymnanthera Ternstroemia Ternstroemia gymnanthera \N \N \N \N \N 38598 C.gummifera Corymbia Corymbia gummifera \N \N \N \N \N 38599 D.persimilis Dioscorea Dioscorea persimilis \N \N \N \N \N 38600 A.eriobotryifolia Aucuba Aucuba eriobotryifolia \N \N \N \N \N 38601 S.panamensis Sabicea Sabicea panamensis \N \N \N \N \N 38602 \N varietas Prestoea acuminata var. montana \N \N \N \N \N 38603 O.glomerata Ocotea Ocotea glomerata \N \N \N \N \N 38604 \N varietas Eriobotrya bengalensis var. angustifolia \N \N \N \N \N 38605 \N genus Iphionopsis \N \N \N \N \N 38606 \N genus Ammothamnus \N \N \N \N \N 38607 M.longissima Maxillaria Maxillaria longissima \N \N \N \N \N 38608 \N genus Rubia \N \N \N \N \N 38609 A.capensis Androsiphon Androsiphon capensis \N \N \N \N \N 38610 A.auriculata Agalinis Agalinis auriculata \N \N \N \N \N 38611 \N varietas Hedyotis lessertiana var. lessertiana \N \N \N \N \N 38612 W.annularis Wahlenbergia Wahlenbergia annularis \N \N \N \N \N 38613 T.nudicaule Thesium Thesium nudicaule \N \N \N \N \N 39193 \N genus Trophis \N \N \N \N \N 38614 T.sulcatum Trillium Trillium sulcatum \N \N \N \N \N 38615 H.sample environmental samples Taxonomy:1008282 Hesperolinon environmental sample \N \N \N \N \N 38616 \N genus Peltogyne \N \N \N \N \N 38617 M.punctata Miconia Miconia punctata \N \N \N \N \N 38618 S.senanensis Sasa Sasa senanensis \N \N \N \N \N 38619 P.obovata Paeonia Paeonia obovata \N \N \N \N \N 38620 T.barbata Thermopsis Thermopsis barbata \N \N \N \N \N 38621 L.formosa Leycesteria Leycesteria formosa \N \N \N \N \N 38622 C.mongolicum Corispermum Corispermum mongolicum \N \N \N \N \N 38623 G.ecuadorensis Guatteria Guatteria ecuadorensis \N \N \N \N \N 38624 T.phitosianum Trifolium Trifolium phitosianum \N \N \N \N \N 38625 H.japonica Hamamelis Hamamelis japonica Japanese witch hazel \N \N \N \N 38626 \N genus Anodopetalum \N \N \N \N \N 38627 S.pulcherrimus Symbolanthus Symbolanthus pulcherrimus \N \N \N \N \N 38628 E.Hill' Eleocharis Eleocharis sp. 'Beatrice Hill' \N \N \N \N \N 38629 E.lissosperma Euphorbia Euphorbia lissosperma \N \N \N \N \N 38630 E.barahonensis Elekmania Elekmania barahonensis \N \N \N \N \N 38631 P.erosa Plantago Plantago erosa \N \N \N \N \N 38632 R.nemesioides Reyemia Reyemia nemesioides \N \N \N \N \N 38633 G.atra Guatteria Guatteria atra \N \N \N \N \N 38634 C.trifoliata Citrus Citrus x paradisi x Citrus trifoliata citrumelo \N \N \N \N 38635 P.oerstedii Passiflora Passiflora oerstedii \N \N \N \N \N 38636 E.insulanum Epidendrum Epidendrum insulanum \N \N \N \N \N 38637 B.galpinii Bauhinia Bauhinia galpinii \N \N \N \N \N 38638 M.pachyura Masdevallia Masdevallia pachyura \N \N \N \N \N 38639 M.bicolor Masdevallia Masdevallia bicolor \N \N \N \N \N 38640 \N genus Cutandia \N \N \N \N \N 38641 D.4586 Drymonia Drymonia aff. tenuis Clark 4586 \N \N \N \N \N 38642 P.caespitosus Penstemon Penstemon caespitosus \N \N \N \N \N 38643 Y.SH-2010 Youngia Youngia sp. SH-2010 \N \N \N \N \N 38644 M.parvifolia Metaporana Metaporana parvifolia \N \N \N \N \N 38645 C.douglasii Cirsium Cirsium douglasii swamp thistle \N \N \N \N 38646 H.doleiformis Halosarcia Halosarcia doleiformis \N \N \N \N \N 38647 M.guerichianum Mesembryanthemum Mesembryanthemum guerichianum \N \N \N \N \N 38648 A.peckii Aloe Aloe peckii \N \N \N \N \N 38649 S.wyomingensis Synthyris Synthyris wyomingensis \N \N \N \N \N 38650 N.sevenetii Neisosperma Neisosperma sevenetii \N \N \N \N \N 38651 A.indecora Aciotis Aciotis indecora \N \N \N \N \N 38652 S.minus Sphaerolobium Sphaerolobium minus \N \N \N \N \N 38653 C.grandifolia Calyptranthes Calyptranthes grandifolia \N \N \N \N \N 38654 C.SS-04-16 Campanula Campanula sp. SS-04-16 \N \N \N \N \N 38655 T.pyriforme Tetrastigma Tetrastigma pyriforme \N \N \N \N \N 38656 A.kamerunensis Afrostyrax Afrostyrax kamerunensis \N \N \N \N \N 38657 A.klugii Adelobotrys Adelobotrys klugii \N \N \N \N \N 38658 E.grandis Elymus Elymus grandis \N \N \N \N \N 38659 B.taitensis Bauhinia Bauhinia taitensis \N \N \N \N \N 38660 A.24709 Agave Agave aff. kerchovei Calzada 24709 \N \N \N \N \N 38661 \N genus Indocalamus \N \N \N \N \N 38662 G.algens Gingidia Gingidia algens \N \N \N \N \N 38663 G.harveyana Gingidia Gingidia harveyana \N \N \N \N \N 38664 P.parviflora Phyllostegia Phyllostegia parviflora \N \N \N \N \N 38665 C.spurium Commidendrum Commidendrum spurium \N \N \N \N \N 38666 X.noronhianum Xerospermum Xerospermum noronhianum \N \N \N \N \N 38667 A.galenioides Aizoanthemum Aizoanthemum galenioides \N \N \N \N \N 38668 K.ocellata Kohleria Kohleria ocellata \N \N \N \N \N 38669 S.Falls' Saintpaulia Saintpaulia sp. 'Sigi Falls' \N \N \N \N \N 38670 B.ehrenbergii Berberis Berberis ehrenbergii \N \N \N \N \N 38671 \N genus Hesperomeles \N \N \N \N \N 38672 G.anceps Gymnostachys Gymnostachys anceps \N \N \N \N \N 38673 P.benthamii Pycnandra Pycnandra benthamii \N \N \N \N \N 38674 P.columbiensis Psammisia Psammisia columbiensis \N \N \N \N \N 38675 C.trinervis Centranthus Centranthus trinervis \N \N \N \N \N 38676 S.heterantha Salicornia Salicornia heterantha \N \N \N \N \N 38677 T.atacamensis Tiquilia Tiquilia atacamensis \N \N \N \N \N 38678 S.tenebrosa Sophronitis Sophronitis tenebrosa \N \N \N \N \N 38679 O.talaverae Ononis Ononis talaverae \N \N \N \N \N 38680 S.densiflora Stipa Stipa densiflora \N \N \N \N \N 38681 A.rosea Anthemis Anthemis rosea \N \N \N \N \N 38682 V.305-L25 Viscum Viscum sp. Han 305-L25 \N \N \N \N \N 38683 H.minor Hoffmannseggia Hoffmannseggia minor \N \N \N \N \N 38684 \N varietas Allium ovalifolium var. ovalifolium \N \N \N \N \N 38685 \N genus Beiselia \N \N \N \N \N 38686 H.multifolius Haplopappus Haplopappus multifolius \N \N \N \N \N 38687 A.viscatum Aeonium Aeonium viscatum \N \N \N \N \N 38688 D.oxycarpa Draba Draba oxycarpa \N \N \N \N \N 38689 \N genus Hoita \N \N \N \N \N 38690 I.trachycarpa Isatis Isatis trachycarpa \N \N \N \N \N 38691 E.EHR-2010 Eleocharis Eleocharis aff. filiculmis EHR-2010 \N \N \N \N \N 38692 A.solimoesanum Anomospermum Anomospermum solimoesanum \N \N \N \N \N 38693 A.villosum Aconitum Aconitum villosum \N \N \N \N \N 38694 A.fudsinoi Asarum Asarum fudsinoi \N \N \N \N \N 38695 D.thomasii Draba Draba thomasii \N \N \N \N \N 38696 \N genus Strumpfia \N \N \N \N \N 38697 O.sephtonii Ornithogalum Ornithogalum sephtonii \N \N \N \N \N 38698 C.thouarsii Carex Carex thouarsii \N \N \N \N \N 38699 E.nitida Eleocharis Eleocharis nitida \N \N \N \N \N 38700 \N genus Solmsia \N \N \N \N \N 38701 C.malipoense Cypripedium Cypripedium malipoense \N \N \N \N \N 38702 T.cosymbephorum Trichocentrum Trichocentrum cosymbephorum \N \N \N \N \N 38703 \N genus Muiriantha \N \N \N \N \N 38704 A.wardii Anthopterus Anthopterus wardii \N \N \N \N \N 38705 \N tribe Styphelieae \N \N \N \N \N 38706 \N subspecies Cerastium beeringianum subsp. earlei \N \N \N \N \N 38707 R.bipartitum Rytidosperma Rytidosperma bipartitum \N \N \N \N \N 38708 C.falcata Cephalanthera Cephalanthera falcata \N \N \N \N \N 38709 G.02068672 Gyrostemon Gyrostemon sp. Cranfield 02068672 \N \N \N \N \N 38710 A.kraussiana Acacia Acacia kraussiana \N \N \N \N \N 38711 \N varietas Mimosa ceratonia var. interior \N \N \N \N \N 38712 A.repens Acmella Acmella repens \N \N \N \N \N 38713 A.xylocarpa Afzelia Afzelia xylocarpa \N \N \N \N \N 38714 S.repens Salix Salix repens \N \N \N \N \N 38715 C.tenax Crataegus Crataegus tenax \N \N \N \N \N 38716 S.vera Suaeda Suaeda vera alkali seepweed \N \N \N \N 38717 C.impressus Croton Croton impressus Puerto Rico croton \N \N \N \N 38718 \N genus Psammopyrum \N \N \N \N \N 38719 T.abyssinica Taverniera Taverniera abyssinica \N \N \N \N \N 38720 R.prasinus Ranunculus Ranunculus prasinus \N \N \N \N \N 38721 S.digitaloides Salvia Salvia digitaloides \N \N \N \N \N 38722 C.torelliana Corymbia Corymbia torelliana \N \N \N \N \N 38723 \N genus Xolocotzia \N \N \N \N \N 38724 G.bipinnatum Garuleum Garuleum bipinnatum \N \N \N \N \N 38725 A.oppositifolia Acokanthera Acokanthera oppositifolia \N \N \N \N \N 38726 R.coerulea Ruellia Ruellia coerulea \N \N \N \N \N 38727 \N subtribe Triodiinae \N \N \N \N \N 38728 \N subspecies Genista hispanica subsp. hispanica \N \N \N \N \N 38729 H.niger Hyoscyamus Hyoscyamus niger black henbane,chupa mieles,henbane,hog's-bean,stinking-nightshade,tian xian zi \N \N \N \N 38730 R.zhongdianensis Rosa Rosa zhongdianensis \N \N \N \N \N 38731 E.AK296869 Epilobium Epilobium sp. AK296869 \N \N \N \N \N 38732 \N varietas Palafoxia texana var. texana \N \N \N \N \N 38733 L.rufescens Luzula Luzula rufescens \N \N \N \N \N 38734 T.africana Telosma Telosma africana \N \N \N \N \N 38735 C.moorei Crinum Crinum moorei \N \N \N \N \N 38736 M.huancabambae Maxillaria Maxillaria huancabambae \N \N \N \N \N 38737 D.verdunense Delphinium Delphinium verdunense \N \N \N \N \N 38738 \N genus Cremaspora \N \N \N \N \N 38739 \N varietas Carex appressa var. virgata \N \N \N \N \N 38740 C.2237 Cissus Cissus cf. oliveri 2237 \N \N \N \N \N 38741 P.crucigerum Pithecoctenium Pithecoctenium crucigerum \N \N \N \N \N 38742 \N subspecies Crocus olivieri subsp. istanbulensis \N \N \N \N \N 38743 P.dolichopoda Psammisia Psammisia dolichopoda \N \N \N \N \N 38744 P.tumacana Phytelephas Phytelephas tumacana \N \N \N \N \N 38745 L.guianensis Lindmania Lindmania guianensis \N \N \N \N \N 38746 B.variegata Bellardiochloa Bellardiochloa variegata \N \N \N \N \N 38747 T.juncea Tetrarrhena Tetrarrhena juncea \N \N \N \N \N 38748 S.candida Sobralia Sobralia candida \N \N \N \N \N 38749 C.scarabaeoides Cajanus Cajanus scarabaeoides \N \N \N \N \N 38750 M.villifera Metagentiana Metagentiana villifera \N \N \N \N \N 38751 \N varietas Prunus pumila var. pumila \N \N \N \N \N 38752 E.balansae Eustigma Eustigma balansae \N \N \N \N \N 38753 T.brasiliensis Tridens Tridens brasiliensis \N \N \N \N \N 38754 C.fuchsianum Cephalostachyum Cephalostachyum fuchsianum \N \N \N \N \N 38755 S.SH-2010 Stephania Stephania sp. SH-2010 \N \N \N \N \N 38756 C.kasakhorum Clausia Clausia kasakhorum \N \N \N \N \N 38757 P.spicata Physopsis Physopsis spicata \N \N \N \N \N 38758 E.tennesseensis Echinacea Echinacea tennesseensis \N \N \N \N \N 38759 \N genus Gnaphalium \N \N \N \N \N 38760 O.10691 Orobanche Orobanche cf. tunetana Schonswetter & Tribsch 10691 \N \N \N \N \N 38761 F.elata Fosterella Fosterella elata \N \N \N \N \N 38762 L.glandulifera Lessingia Lessingia glandulifera \N \N \N \N \N 38763 S.wislizeni Senna Senna wislizeni \N \N \N \N \N 38764 T.65 Taraxacum Taraxacum sp. Hiiesalu 65 \N \N \N \N \N 38765 C.tramdenum Canarium Canarium tramdenum Chinese black-olive,wu lan \N \N \N \N 38766 O.gracilipes Oxalis Oxalis gracilipes \N \N \N \N \N 38767 T.boissieri Trifolium Trifolium boissieri \N \N \N \N \N 38768 S.macrocarpa Sophora Sophora macrocarpa \N \N \N \N \N 38769 G.pubes Gomesa Gomesa pubes \N \N \N \N \N 38770 S.2070 Semecarpus Semecarpus sp. Chase 2070 \N \N \N \N \N 38771 S.amblymerum Solanum Solanum amblymerum \N \N \N \N \N 38772 D.pulverulenta Dudleya Dudleya pulverulenta \N \N \N \N \N 38773 T.bahamensis Tabebuia Tabebuia bahamensis \N \N \N \N \N 38774 A.chenopodioides Acroglochin Acroglochin chenopodioides \N \N \N \N \N 38775 \N varietas Lomatium triternatum var. anomalum \N \N \N \N \N 38776 B.namibensis Brownanthus Brownanthus namibensis \N \N \N \N \N 38777 \N genus Diplacrum \N \N \N \N \N 38778 I.integrifolia Inezia Inezia integrifolia \N \N \N \N \N 38779 M.brachyandra Manihot Manihot brachyandra \N \N \N \N \N 38780 I.buergeri Ilex Ilex buergeri \N \N \N \N \N 38781 S.glaucophyllum Solanum Solanum glaucophyllum \N \N \N \N \N 38782 T.acutiflora Tournefortia Tournefortia acutiflora \N \N \N \N \N 38783 S.paniculata Stephanomeria Stephanomeria paniculata \N \N \N \N \N 38784 A.subflabellata Aciphylla Aciphylla subflabellata \N \N \N \N \N 38785 C.dentata Calceolaria Calceolaria dentata \N \N \N \N \N 38786 \N genus Armatocereus \N \N \N \N \N 38787 R.chamaebuxifolia Rondeletia Rondeletia chamaebuxifolia \N \N \N \N \N 38788 G.appendiculatus Gladiolus Gladiolus appendiculatus \N \N \N \N \N 38789 \N varietas Stevia lucida var. oaxacana \N \N \N \N \N 38790 C.platensis Chrysolaena Chrysolaena platensis \N \N \N \N \N 38791 C.pedunculatum Cerastium Cerastium pedunculatum \N \N \N \N \N 38792 O.sessiliflora Oreomyrrhis Oreomyrrhis sessiliflora \N \N \N \N \N 38793 L.philippiana Laureliopsis Laureliopsis philippiana \N \N \N \N \N 38794 S.austriacum Sisymbrium Sisymbrium austriacum \N \N \N \N \N 38795 N.californica Neokochia Neokochia californica \N \N \N \N \N 38796 P.micropetalum Piletophyllum Piletophyllum micropetalum \N \N \N \N \N 38797 L.pinaster Lychnophora Lychnophora pinaster \N \N \N \N \N 38798 P.grayi Phyllanthera Phyllanthera grayi \N \N \N \N \N 38799 G.elegans Gelsemium Gelsemium elegans \N \N \N \N \N 38800 \N genus Oreophysa \N \N \N \N \N 38801 S.calciphila Sutera Sutera calciphila \N \N \N \N \N 38802 S.585 Sloanea Sloanea sp. Crayn 585 \N \N \N \N \N 38803 P.chamaerapistrum Physorhynchus Physorhynchus chamaerapistrum \N \N \N \N \N 38804 A.pungens Atraphaxis Atraphaxis pungens \N \N \N \N \N 38805 \N subspecies Trifolium longipes subsp. pygmaeum \N \N \N \N \N 38806 G.aipetriensis Gagea Gagea aipetriensis \N \N \N \N \N 38807 E.sericea Eumorphia Eumorphia sericea \N \N \N \N \N 38808 S.nitens Scabiosa Scabiosa nitens \N \N \N \N \N 38809 A.MG-2009b Allium Allium sp. MG-2009b \N \N \N \N \N 38810 T.lanyuense Tetrastigma Tetrastigma lanyuense \N \N \N \N \N 38811 C.helenioides Cirsium Cirsium helenioides \N \N \N \N \N 38812 C.persicus Carthamus Carthamus persicus \N \N \N \N \N 38813 P.squamulosum Phebalium Phebalium squamulosum \N \N \N \N \N 38814 P.paniculatum Pelargonium Pelargonium paniculatum \N \N \N \N \N 38815 S.obvallatus Stenocactus Stenocactus obvallatus \N \N \N \N \N 38816 P.lanceolatum Pelargonium Pelargonium lanceolatum \N \N \N \N \N 38817 M.bancanoides Malaxis Malaxis bancanoides \N \N \N \N \N 38818 B.sphaerocarpa Burdachia Burdachia sphaerocarpa \N \N \N \N \N 38819 E.cossonii Erodium Erodium cossonii \N \N \N \N \N 38820 A.acerifolia Ainsliaea Ainsliaea acerifolia \N \N \N \N \N 38821 A.migpo Astragalus Astragalus migpo \N \N \N \N \N 38822 G.purpureum Geranium Geranium purpureum \N \N \N \N \N 38823 H.setosum Helichrysum Helichrysum setosum \N \N \N \N \N 38824 C.temulum Chaerophyllum Chaerophyllum temulum rough chervil \N \N \N \N 38825 P.stipulaceum Piper Piper stipulaceum \N \N \N \N \N 38826 F.thymifolia Fuchsia Fuchsia thymifolia \N \N \N \N \N 38827 O.bakeri Oreoxis Oreoxis bakeri \N \N \N \N \N 38828 D.laevigata Douglasia Douglasia laevigata \N \N \N \N \N 38829 A.elatior Aspidistra Aspidistra elatior barroom plant,cast-iron plant,iron plant \N \N \N \N 38830 I.thomsonii Indigofera Indigofera thomsonii \N \N \N \N \N 38831 P.parvisagittata Peperomia Peperomia parvisagittata \N \N \N \N \N 38832 S.fimbriata Sobralia Sobralia fimbriata \N \N \N \N \N 38833 O.pruinosum Ornithogalum Ornithogalum pruinosum \N \N \N \N \N 38834 \N genus Otholobium \N \N \N \N \N 38835 \N genus Korthalsia \N \N \N \N \N 38836 \N genus Conchidium \N \N \N \N \N 38837 P.borussica Pentaschistis Pentameris borussica \N \N \N \N \N 38838 T.miscellus Tragopogon Tragopogon miscellus Moscow salsify \N \N \N \N 38839 D.pringlei Desmanthus Desmanthus pringlei \N \N \N \N \N 38840 S.mombin Spondias Spondias mombin Jamaica-plum,hog-plum,imbu,jobo,ubos,yellow mombin \N \N \N \N 38841 L.EBK-2007b Lobelia Lobelia sp. EBK-2007b \N \N \N \N \N 38842 S.barbata Scutellaria Scutellaria barbata \N \N \N \N \N 38843 P.refracta Polygala Polygala refracta \N \N \N \N \N 38844 G.caleyi Grevillea Grevillea caleyi \N \N \N \N \N 38845 S.pusillum Saccolabium Saccolabium pusillum \N \N \N \N \N 38846 C.soconuscanum Camaridium Camaridium soconuscanum \N \N \N \N \N 38847 P.yunnanensis Pleione Pleione yunnanensis \N \N \N \N \N 38848 I.cauliflora Isolona Isolona cauliflora \N \N \N \N \N 38849 T.persicus Thymus Thymus persicus \N \N \N \N \N 38850 R.continentis Richea Richea continentis \N \N \N \N \N 38851 T.laurifolia Tournefortia Tournefortia laurifolia \N \N \N \N \N 38852 G.erubescens Gagea Gagea erubescens \N \N \N \N \N 38853 S.prattii Sorbus Sorbus prattii \N \N \N \N \N 38854 D.sandwicensis Diospyros Diospyros sandwicensis \N \N \N \N \N 38855 S.setigera Saxifraga Saxifraga setigera \N \N \N \N \N 38856 \N genus Nebelia \N \N \N \N \N 38857 E.phacelanthera Erica Erica phacelanthera \N \N \N \N \N 38858 R.venusta Rodriguezia Rodriguezia venusta \N \N \N \N \N 38859 C.maculata Chimaphila Chimaphila maculata spotted wintergreen \N \N \N \N 38860 \N genus Glionnetia \N \N \N \N \N 38861 \N genus Dipterygium \N \N \N \N \N 38862 S.minor Solms-laubachia Solms-laubachia minor \N \N \N \N \N 38863 \N genus Sanguinaria bloodroots \N \N \N \N 38864 \N genus Alcea \N \N \N \N \N 38865 H.krauseanum Heliotropium Heliotropium krauseanum \N \N \N \N \N 38866 L.EBK-2007 Lobelia Lobelia sp. EBK-2007 \N \N \N \N \N 38867 \N genus Apophyllum \N \N \N \N \N 38868 C.mazicum Convolvulus Convolvulus mazicum \N \N \N \N \N 38869 V.oblongifolia Vatica Vatica oblongifolia \N \N \N \N \N 38870 N.floribunda Nuytsia Nuytsia floribunda \N \N \N \N \N 38871 C.ramosa Chamaecrista Chamaecrista ramosa \N \N \N \N \N 38872 C.grandiflorum Combretum Combretum grandiflorum \N \N \N \N \N 38873 T.simplicifolia Teclea Teclea simplicifolia \N \N \N \N \N 38874 \N genus Pegia \N \N \N \N \N 38875 \N genus Phyllagathis \N \N \N \N \N 38876 M.arequipensis Malesherbia Malesherbia arequipensis \N \N \N \N \N 38877 C.macrocephala Cuscuta Cuscuta macrocephala \N \N \N \N \N 38878 \N genus Prosthechea \N \N \N \N \N 38879 S.humboldtiana Spigelia Spigelia humboldtiana \N \N \N \N \N 38880 \N subspecies Linaria viscosa subsp. viscosa \N \N \N \N \N 38881 E.fasciculatus Echinocereus Echinocereus fasciculatus \N \N \N \N \N 38882 \N subspecies Ipomopsis congesta subsp. nevadensis \N \N \N \N \N 38883 F.elliptica Fagraea Fagraea elliptica \N \N \N \N \N 38884 I.imperati Ipomoea Ipomoea imperati \N \N \N \N \N 38885 \N subspecies Phlox nivalis subsp. nivalis \N \N \N \N \N 38886 H.oerstedii Hanburia Hanburia oerstedii \N \N \N \N \N 38887 L.SH-2010 Leucas Leucas sp. SH-2010 \N \N \N \N \N 38888 S.henryi Sindechites Sindechites henryi \N \N \N \N \N 38889 \N genus Australluma \N \N \N \N \N 38890 U.tuberosus Ullucus Ullucus tuberosus \N \N \N \N \N 38891 C.sedens Calamus Calamus sedens \N \N \N \N \N 38892 B.wildpretii Bystropogon Bystropogon wildpretii \N \N \N \N \N 38893 G.kunzeana Gerbera Gerbera kunzeana \N \N \N \N \N 38894 A.frigida Artemisia Artemisia frigida \N \N \N \N \N 38895 M.regia Meconopsis Meconopsis regia \N \N \N \N \N 38896 V.15368 Vriesea Vriesea cf. platynema Martinelli 15368 \N \N \N \N \N 38897 B.mossambicensis Boscia Boscia mossambicensis \N \N \N \N \N 38898 G.microsepala Guioa Guioa microsepala \N \N \N \N \N 38899 C.nelsonii Caesalpinia Caesalpinia nelsonii \N \N \N \N \N 38900 A.stellatum Allium Allium stellatum prairie onion \N \N \N \N 38901 O.mirabilis Ophrys Ophrys mirabilis \N \N \N \N \N 38902 \N genus Cotinus \N \N \N \N \N 38903 C.erythrocarpus Chisocheton Chisocheton erythrocarpus \N \N \N \N \N 38904 S.costaricense Systeloglossum Systeloglossum costaricense \N \N \N \N \N 38905 \N genus Clathrotropis \N \N \N \N \N 38906 A.fontqueri Armeria Armeria fontqueri \N \N \N \N \N 38907 \N genus Oemleria \N \N \N \N \N 38908 C.longicarpa Coccinia Coccinia longicarpa \N \N \N \N \N 38909 C.laeviculmis Carex Carex laeviculmis \N \N \N \N \N 38910 C.chlorothyrsa Cousinia Cousinia chlorothyrsa \N \N \N \N \N 38911 B.bicolor Burmannia Burmannia bicolor \N \N \N \N \N 38912 T.pumilum Trichophorum Trichophorum pumilum \N \N \N \N \N 38913 C.kersteinii Cyperus Cyperus kersteinii \N \N \N \N \N 38914 \N genus Hoppea \N \N \N \N \N 38915 S.salicifolia Saussurea Saussurea salicifolia \N \N \N \N \N 38916 A.drepanolobium Acacia Acacia drepanolobium \N \N \N \N \N 38917 O.bracteatum Oncidium Oncidium bracteatum \N \N \N \N \N 38918 C.compressus Cyperus Cyperus compressus \N \N \N \N \N 38919 P.longicaule Polypleurum Polypleurum longicaule \N \N \N \N \N 38920 C.2910' Clematis Clematis sp. 'Nickrent 2910' \N \N \N \N \N 38921 L.edule Lemuropisum Lemuropisum edule \N \N \N \N \N 38922 E.plumosa Erica Erica plumosa \N \N \N \N \N 38923 \N subtribe Korthalsiinae \N \N \N \N \N 38924 \N genus Oxyria \N \N \N \N \N 38925 T.polystachia Tillandsia Tillandsia polystachia \N \N \N \N \N 38926 E.urceolata Erica Erica urceolata \N \N \N \N \N 38927 S.amicorum Saxicolella Saxicolella amicorum \N \N \N \N \N 38928 B.decussiflora Bunchosia Bunchosia decussiflora \N \N \N \N \N 38929 \N varietas Chorizanthe cuspidata var. villosa \N \N \N \N \N 38930 P.colubrinum Piper Piper colubrinum \N \N \N \N \N 38931 B.stricta Babiana Babiana stricta \N \N \N \N \N 38932 \N genus Astrocaryum \N \N \N \N \N 38933 \N varietas Rhodohypoxis baurii var. baurii \N \N \N \N \N 38934 E.frumentacea Echinochloa Echinochloa frumentacea Japanese millet,billion-dollar grass,sama,white panic \N \N \N \N 38935 \N genus Jacqueshuberia \N \N \N \N \N 38936 \N subspecies Fraxinus angustifolia subsp. oxycarpa \N \N \N \N \N 38937 D.crassicornis Disa Disa crassicornis \N \N \N \N \N 38938 C.monandra Castelnavia Castelnavia monandra \N \N \N \N \N 38939 M.marchesiana Microgyne Microgyne marchesiana \N \N \N \N \N 38940 L.diffusus Lupinus Lupinus diffusus \N \N \N \N \N 38941 P.fairrieanum Paphiopedilum Paphiopedilum fairrieanum \N \N \N \N \N 38942 H.salicifolius Helianthus Helianthus salicifolius \N \N \N \N \N 38943 S.sessiliflora Sarcopera Sarcopera sessiliflora \N \N \N \N \N 38944 D.brochidodroma Drymonia Drymonia brochidodroma \N \N \N \N \N 38945 S.yilingii Sinosenecio Sinosenecio yilingii \N \N \N \N \N 38946 A.argentea Artemisia Artemisia argentea \N \N \N \N \N 38947 \N genus Dicraeanthus \N \N \N \N \N 38948 P.judaica Parietaria Parietaria judaica \N \N \N \N \N 38949 \N varietas Camellia furfuracea var. latipetiolata \N \N \N \N \N 38950 C.globosus Cheilocostus Cheilocostus globosus \N \N \N \N \N 38951 G.poeppigiana Guatteria Guatteria poeppigiana \N \N \N \N \N 38952 W.rigidifolia Wilkiea Wilkiea rigidifolia \N \N \N \N \N 38953 P.lemmonii Puccinellia Puccinellia lemmonii \N \N \N \N \N 38954 E.palustre Epilobium Epilobium palustre \N \N \N \N \N 38955 S.cardiosperma Swartzia Swartzia cardiosperma \N \N \N \N \N 38956 M.furfuracea Miconia Miconia furfuracea \N \N \N \N \N 38957 L.dasycarpum Lomatium Lomatium dasycarpum woolyfruit desertparsley \N \N \N \N 38958 H.JK20 Hydriastele Hydriastele sp. JK20 \N \N \N \N \N 38959 D.beringensis Douglasia Douglasia beringensis \N \N \N \N \N 38960 \N genus Chamaechaenactis \N \N \N \N \N 38961 M.775 Merxmuellera Merxmuellera sp. Forest 775 \N \N \N \N \N 38962 S.tetraptera Sophora Sophora tetraptera \N \N \N \N \N 38963 T.palmovae Triticum Triticum palmovae \N \N \N \N \N 38964 \N subspecies Corymbia cadophora subsp. cadophora \N \N \N \N \N 38965 \N genus Ascocentropsis \N \N \N \N \N 38966 C.pallidus Calopogon Calopogon pallidus \N \N \N \N \N 38967 B.neriifolia Bikkia Bikkia neriifolia \N \N \N \N \N 38968 M.picturata Masdevallia Masdevallia picturata \N \N \N \N \N 38969 E.crotonoides Euphorbia Euphorbia crotonoides \N \N \N \N \N 38970 P.alliacea Peltaria Peltaria alliacea \N \N \N \N \N 38971 V.trachyphylla Viguiera Viguiera trachyphylla \N \N \N \N \N 38972 \N subspecies Akebia trifoliata subsp. australis \N \N \N \N \N 38973 S.calcaratum Stylidium Stylidium calcaratum \N \N \N \N \N 38974 P.anglica Potentilla Potentilla anglica \N \N \N \N \N 38975 C.parnassifolia Caldesia Caldesia parnassifolia \N \N \N \N \N 38976 M.trifida Montiopsis Montiopsis trifida \N \N \N \N \N 38977 \N genus Tribolium \N \N \N \N \N 38978 C.affinis Colocasia Colocasia affinis \N \N \N \N \N 38979 A.myriantha Actinodaphne Actinodaphne myriantha \N \N \N \N \N 38980 T.2173 Tricalysia Tricalysia sp. Davis 2173 \N \N \N \N \N 38981 G.928 Geostachys Geostachys sp. Newman 928 \N \N \N \N \N 38982 S.plantaginea Synthyris Synthyris plantaginea \N \N \N \N \N 38983 L.serotina Leucanthemella Leucanthemella serotina giant daisy,moon daisy \N \N \N \N 38984 C.manissadjianii Colchicum Colchicum manissadjianii \N \N \N \N \N 38985 A.hemichreum Aulosepalum Aulosepalum hemichreum \N \N \N \N \N 38986 \N genus Apterokarpos \N \N \N \N \N 38987 C.microphylla Condalia Condalia microphylla \N \N \N \N \N 38988 H.ramondii Hieracium Hieracium ramondii \N \N \N \N \N 38989 P.sonchus Pterocypsela Pterocypsela sonchus \N \N \N \N \N 38990 A.tonrokuensis Alpinia Alpinia tonrokuensis \N \N \N \N \N 38991 C.capusii Catabrosa Catabrosa capusii \N \N \N \N \N 38992 S.jobertiana Strychnos Strychnos jobertiana \N \N \N \N \N 38993 O.leucotricha Opuntia Opuntia leucotricha \N \N \N \N \N 38994 G.bracteata Gunnera Gunnera bracteata \N \N \N \N \N 38995 A.fargesii Angelica Angelica fargesii \N \N \N \N \N 38996 O.occidentalis Oryctanthus Oryctanthus occidentalis \N \N \N \N \N 38997 T.biocellatum Taeniophyllum Taeniophyllum biocellatum \N \N \N \N \N 42110 \N genus Eurychorda \N \N \N \N \N 38998 L.funaria Lardizabala Lardizabala funaria \N \N \N \N \N 38999 C.leptophloeos Commiphora Commiphora leptophloeos \N \N \N \N \N 39000 A.montana Arctostaphylos Arctostaphylos montana \N \N \N \N \N 39001 P.obtusifolium Prospero Prospero obtusifolium \N \N \N \N \N 39002 Z.namophila Zeltnera Zeltnera namophila \N \N \N \N \N 39003 L.paucicostata Lemna Lemna paucicostata \N \N \N \N \N 39004 \N genus Omphalea \N \N \N \N \N 39005 C.398aa Clusia Clusia sp. HG 398aa \N \N \N \N \N 39006 L.nanus Lupinus Lupinus nanus \N \N \N \N \N 39007 A.sinicus Astragalus Astragalus sinicus \N \N \N \N \N 39008 E.sahendi Euphorbia Euphorbia sahendi \N \N \N \N \N 39009 \N genus Autumnalia \N \N \N \N \N 39010 L.brevicaulis Lotononis Lotononis brevicaulis \N \N \N \N \N 39011 M.subaristata Muhlenbergia Muhlenbergia subaristata \N \N \N \N \N 39012 D.18201 Disepalum Disepalum sp. Takeuchi et Kulang 18201 \N \N \N \N \N 39013 P.picta Pterostylis Pterostylis picta \N \N \N \N \N 39014 V.compacta Vellozia Vellozia compacta \N \N \N \N \N 39015 \N genus Oliverella \N \N \N \N \N 39016 D.herbaceum Dendrobium Dendrobium herbaceum \N \N \N \N \N 39017 I.bulleyana Iris Iris bulleyana \N \N \N \N \N 39018 C.subaphyllum Cicer Cicer subaphyllum \N \N \N \N \N 39019 M.plumbea Merwilla Merwilla plumbea \N \N \N \N \N 39020 B.cryptocephala Buchnera Buchnera cryptocephala \N \N \N \N \N 42624 \N tribe Polygoneae \N \N \N \N \N 39021 C.spruceanum Calycophyllum Calycophyllum spruceanum \N \N \N \N \N 39022 K.geroldii Kalanchoe Kalanchoe geroldii \N \N \N \N \N 39023 H.multiflorus Helianthus Helianthus x multiflorus \N \N \N \N \N 39024 \N subspecies Pimelea axiflora subsp. alpina \N \N \N \N \N 39025 P.plattensis Potentilla Potentilla plattensis \N \N \N \N \N 39026 S.fritschiana Spiraea Spiraea fritschiana \N \N \N \N \N 39027 \N tribe Aethionemeae \N \N \N \N \N 39028 J.bicolor Jaltomata Jaltomata bicolor \N \N \N \N \N 39029 K.lemmonii Keckiella Keckiella lemmonii Lemmon's keckiella \N \N \N \N 39030 C.javana Clematis Clematis javana \N \N \N \N \N 39031 C.28961 Cremastosperma Cremastosperma sp. Killip 28961 \N \N \N \N \N 39032 P.trichomanifolium Pternopetalum Pternopetalum trichomanifolium \N \N \N \N \N 39033 A.klementzae Artemisia Artemisia klementzae \N \N \N \N \N 39034 \N family Colchicaceae autumn-crocus family \N \N \N \N 39035 B.huanita Bourreria Bourreria huanita \N \N \N \N \N 39036 \N varietas Mentzelia laevicaulis var. laevicaulis \N \N \N \N \N 39037 \N genus Microsteira \N \N \N \N \N 39038 V.sagittata Viola Viola sagittata \N \N \N \N \N 39039 P.clavigera Phyllachne Phyllachne clavigera \N \N \N \N \N 39040 V.rigidum Viburnum Viburnum rigidum \N \N \N \N \N 39041 C.spinarum Carissa Carissa spinarum \N \N \N \N \N 39042 B.macrostachya Briza Briza macrostachya \N \N \N \N \N 39043 A.kingaensis Anagallis Anagallis kingaensis \N \N \N \N \N 39044 B.oligactis Bupleurum Bupleurum oligactis \N \N \N \N \N 39045 R.yunnanensis Remusatia Remusatia yunnanensis \N \N \N \N \N 39046 C.eriocephalina Cliffortia Cliffortia eriocephalina \N \N \N \N \N 39047 D.strictus Dichilus Dichilus strictus \N \N \N \N \N 39048 F.venezuelensis Froesia Froesia venezuelensis \N \N \N \N \N 39049 \N varietas Lessingia micradenia var. glabrata \N \N \N \N \N 39050 C.astracanica Cousinia Cousinia astracanica \N \N \N \N \N 39051 C.capitata Cuscuta Cuscuta capitata \N \N \N \N \N 39052 \N genus Lepidospartum \N \N \N \N \N 39053 I.cordifolia Indigofera Indigofera cordifolia \N \N \N \N \N 39054 \N genus Pycnocycla \N \N \N \N \N 39055 D.friedericksianum Dendrobium Dendrobium friedericksianum \N \N \N \N \N 39056 O.coronopifolia Othonna Othonna coronopifolia \N \N \N \N \N 39057 \N varietas Melia azedarach var. toosendan \N \N \N \N \N 39058 \N tribe Ingeae \N \N \N \N \N 39059 D.cyphoplectrum Delphinium Delphinium cyphoplectrum \N \N \N \N \N 39060 X.viscidum Xanthisma Xanthisma viscidum \N \N \N \N \N 39061 M.tamnifolia Muehlenbeckia Muehlenbeckia tamnifolia \N \N \N \N \N 39062 \N subspecies Artemisia obtusiloba subsp. altaiensis \N \N \N \N \N 39063 \N subspecies Acer mono subsp. mayrii \N \N \N \N \N 39064 C.subtriplinervia Cryptocarya Cryptocarya subtriplinervia \N \N \N \N \N 39065 \N varietas Penstemon montanus var. montanus \N \N \N \N \N 39066 \N genus Eatonella \N \N \N \N \N 39067 M.aculeata Meconopsis Meconopsis aculeata \N \N \N \N \N 39068 D.beccarianus Durio Durio beccarianus \N \N \N \N \N 39069 S.pedunculatum Spiraeanthemum Spiraeanthemum pedunculatum \N \N \N \N \N 39070 A.squamosa Annona Annona cherimola x Annona squamosa atemoya \N \N \N \N 39071 P.trifoliolatum Protium Protium trifoliolatum \N \N \N \N \N 39072 P.erecta Potentilla Potentilla erecta \N \N \N \N \N 39073 C.glabra Correa Correa glabra \N \N \N \N \N 39074 L.aurea Lycoris Lycoris aurea golden hurricane-lily,golden spider-lily \N \N \N \N 39075 C.profunda Castilleja Castilleja profunda \N \N \N \N \N 39076 P.multijuga Polyscias Polyscias multijuga \N \N \N \N \N 39077 \N varietas Alnus hirsuta var. sibirica \N \N \N \N \N 39078 P.chinensis Parashorea Parashorea chinensis \N \N \N \N \N 39079 P.palmatus Petasites Petasites palmatus \N \N \N \N \N 39080 D.subuliferum Dendrobium Dendrobium subuliferum \N \N \N \N \N 39081 S.tragoriganum Sideritis Sideritis tragoriganum \N \N \N \N \N 39082 E.heteromera Eragrostis Eragrostis heteromera \N \N \N \N \N 39083 \N subspecies Vigna unguiculata subsp. pubescens \N \N \N \N \N 39084 P.calycina Prostanthera Prostanthera calycina \N \N \N \N \N 39085 W.nepalensis Wulfeniopsis Wulfeniopsis nepalensis \N \N \N \N \N 39086 C.gemella Chirita Chirita gemella \N \N \N \N \N 39087 \N genus Ixiolirion \N \N \N \N \N 39088 W.tomentosa Weinmannia Weinmannia tomentosa \N \N \N \N \N 39089 B.hajekii Benzingia Benzingia hajekii \N \N \N \N \N 39090 R.sp. Rosa Rosa sp. \N \N \N \N \N 39091 \N genus Hyacinthella \N \N \N \N \N 39092 \N genus Pitraea \N \N \N \N \N 39093 P.calyptrata Primula Primula calyptrata \N \N \N \N \N 42209 \N genus Oligactis \N \N \N \N \N 39094 E.longicaudata Endlicheria Endlicheria longicaudata \N \N \N \N \N 39095 S.diluvialis Spiranthes Spiranthes diluvialis \N \N \N \N \N 39096 R.fallax Ranunculus Ranunculus fallax \N \N \N \N \N 39097 \N subspecies Crocus biflorus subsp. pulchricolor \N \N \N \N \N 39098 S.squarrulosum Seseli Seseli squarrulosum \N \N \N \N \N 39099 A.ericifolia Amphithalea Amphithalea ericifolia \N \N \N \N \N 39100 D.s.n. Dilkea Dilkea sp. Gilbert s.n. \N \N \N \N \N 39101 T.dalzellii Tylophora Tylophora dalzellii \N \N \N \N \N 39102 D.micropetala Draba Draba micropetala \N \N \N \N \N 39103 C.galianoi Cytisus Cytisus galianoi \N \N \N \N \N 39104 H.brevipes Hippotis Hippotis brevipes \N \N \N \N \N 39105 \N varietas Campanula parryi var. idahoensis \N \N \N \N \N 39106 G.plicatifolia Guzmania Guzmania plicatifolia \N \N \N \N \N 39107 B.glaucescens Bomarea Bomarea glaucescens \N \N \N \N \N 39108 \N genus Koernickanthe \N \N \N \N \N 39109 K.africana Kiggelaria Kiggelaria africana \N \N \N \N \N 39110 \N subspecies Silene campanulata subsp. glandulosa \N \N \N \N \N 39111 A.webberi Achnatherum Achnatherum webberi \N \N \N \N \N 39112 P.incanum Presliophytum Presliophytum incanum \N \N \N \N \N 39113 F.xeromorpha Ferula Ferula xeromorpha \N \N \N \N \N 39114 \N genus Gorgonidium \N \N \N \N \N 39115 P.articulata Prosopis Prosopis articulata \N \N \N \N \N 39116 C.persicum Cyclamen Cyclamen persicum \N \N \N \N \N 39117 P.subglaber Penstemon Penstemon subglaber \N \N \N \N \N 39119 S.pyrenaeum Selinum Selinum pyrenaeum \N \N \N \N \N 39120 P.7285 Peplidium Peplidium sp. Barker 7285 \N \N \N \N \N 39121 S.wolfongiana Swertia Swertia wolfongiana \N \N \N \N \N 39122 P.01 Psychotria Psychotria cf. hollandiae PYB 01 \N \N \N \N \N 39123 P.amethystina Primula Primula amethystina \N \N \N \N \N 39124 E.carpatica Euphorbia Euphorbia carpatica \N \N \N \N \N 39125 F.undulicarpa Farsetia Farsetia undulicarpa \N \N \N \N \N 39126 \N genus Ceratostigma \N \N \N \N \N 39127 O.confertifolia Oxalis Oxalis confertifolia \N \N \N \N \N 39128 C.marenae Corynopuntia Corynopuntia marenae \N \N \N \N \N 39129 \N genus Tamamschjanella \N \N \N \N \N 39130 C.arvatica Campanula Campanula arvatica \N \N \N \N \N 39131 H.parryi Hieracium Hieracium parryi \N \N \N \N \N 39132 R.farrerae Rhododendron Rhododendron farrerae \N \N \N \N \N 39133 \N genus Tridax \N \N \N \N \N 39134 N.sibuyanensis Nepenthes Nepenthes sibuyanensis \N \N \N \N \N 39135 D.brevissima Diuris Diuris brevissima \N \N \N \N \N 39136 P.sumatrana Phalaenopsis Phalaenopsis sumatrana \N \N \N \N \N 39137 P.aucklandica Plantago Plantago aucklandica \N \N \N \N \N 39138 P.erecta Psychotria Psychotria erecta \N \N \N \N \N 39139 S.eriantha Stachys Stachys eriantha \N \N \N \N \N 39140 S.spinosa Sida Sida spinosa \N \N \N \N \N 39141 M.maxonii Myrrhidendron Myrrhidendron maxonii \N \N \N \N \N 39142 \N varietas Prunus mume var. mume \N \N \N \N \N 39143 O.7767 Orobanche Orobanche cf. coelestis HST 7767 \N \N \N \N \N 39144 M.cupanii Melica Melica cupanii \N \N \N \N \N 39145 \N subspecies Helianthus petiolaris subsp. petiolaris \N \N \N \N \N 39146 E.torticulmis Eleocharis Eleocharis torticulmis \N \N \N \N \N 39147 M.ovatum Myrsiphyllum Myrsiphyllum ovatum \N \N \N \N \N 39148 B.rubella Babiana Babiana rubella \N \N \N \N \N 39149 P.palustre Paspalum Paspalum palustre \N \N \N \N \N 39150 T.africana Trema Trema africana \N \N \N \N \N 39151 \N varietas Houstonia purpurea var. montana Roan Mountain houstonia \N \N \N \N 39152 P.46665 Piper Piper cf. cernuum Hatschbach 46665 \N \N \N \N \N 39153 \N subspecies Acer caesium subsp. giraldii \N \N \N \N \N 39154 L.homoloba Lespedeza Lespedeza homoloba \N \N \N \N \N 39155 S.lindenii Stachys Stachys lindenii \N \N \N \N \N 39156 N.nardoides Nassella Nassella nardoides \N \N \N \N \N 39157 D.neglecta Dahlia Dahlia neglecta \N \N \N \N \N 39158 G.viridiflora Goodyera Goodyera viridiflora \N \N \N \N \N 39159 T.foetida Tiputinia Tiputinia foetida \N \N \N \N \N 39160 G.ramiflora Guatteriopsis Guatteriopsis ramiflora \N \N \N \N \N 39161 P.littoralis Polyalthia Polyalthia littoralis \N \N \N \N \N 39162 \N genus Melinis \N \N \N \N \N 39163 P.SH-2010 Plectranthus Plectranthus sp. SH-2010 \N \N \N \N \N 39164 C.pauciflora Chamaedorea Chamaedorea pauciflora \N \N \N \N \N 39165 P.massaica Portulaca Portulaca massaica \N \N \N \N \N 39166 \N genus Mentzelia \N \N \N \N \N 39167 \N genus Cephalanthera \N \N \N \N \N 39168 A.decurrens Acacia Acacia decurrens \N \N \N \N \N 39169 A.pyramidalis Anacamptis Anacamptis pyramidalis \N \N \N \N \N 39170 A.stolonifera Anemone Anemone stolonifera \N \N \N \N \N 39171 B.picta Brasiliorchis Brasiliorchis picta \N \N \N \N \N 39172 P.MVSP-2007 Pentas Pentas sp. MVSP-2007 \N \N \N \N \N 39173 B.tournefortii Brassica Brassica tournefortii \N \N \N \N \N 39174 D.barteri Drimiopsis Drimiopsis barteri \N \N \N \N \N 39175 C.nevadensis Claytonia Claytonia nevadensis \N \N \N \N \N 39176 L.hololeuca Lessingia Lessingia hololeuca \N \N \N \N \N 39177 M.brasiliensis Moldenhawera Moldenhawera brasiliensis \N \N \N \N \N 39178 P.dichotomus Pteranthus Pteranthus dichotomus \N \N \N \N \N 39179 P.spicata Primula Primula spicata \N \N \N \N \N 39180 P.nivalis Pinguicula Pinguicula nivalis \N \N \N \N \N 39181 I.aucheri Iphiona Iphiona aucheri \N \N \N \N \N 39182 P.stipularis Pultenaea Pultenaea stipularis \N \N \N \N \N 39183 \N varietas Neuwiedia zollingeri var. javanica \N \N \N \N \N 39184 S.polycolea Smilax Smilax polycolea \N \N \N \N \N 39185 \N varietas Aconitum carmichaelii var. pubescens \N \N \N \N \N 39186 E.lanata Enchylaena Enchylaena lanata \N \N \N \N \N 39187 P.chloroleucum Panicum Panicum chloroleucum \N \N \N \N \N 39188 \N genus Hemiphora \N \N \N \N \N 39189 B.sulfureum Bulbophyllum Bulbophyllum sulfureum \N \N \N \N \N 39190 R.petiolata Rhexia Rhexia petiolata \N \N \N \N \N 39191 P.tonkinensis Pterocarya Pterocarya tonkinensis \N \N \N \N \N 39192 P.lutea Passiflora Passiflora lutea yellow passionflower \N \N \N \N 39194 P.1138 Parinari Parinari sp. Mlangwa et al. 1138 \N \N \N \N \N 39195 S.brachycladum Schizostachyum Schizostachyum brachycladum \N \N \N \N \N 39196 E.cancellata Eleocharis Eleocharis cancellata \N \N \N \N \N 39197 \N varietas Triarrhena lutarioriparia var. elevationodis \N \N \N \N \N 39198 V.rigida Verbena Verbena rigida Verbena rigida Spreng.,veined verbena \N \N \N \N 39199 S.canariensis Sonchus Sonchus canariensis \N \N \N \N \N 39200 V.hyrcanica Vicia Vicia hyrcanica \N \N \N \N \N 39201 Q.mongolica Quercus Quercus mongolica Mongolian oak \N \N \N \N 39202 E.gracilis Eleocharis Eleocharis gracilis \N \N \N \N \N 39203 A.amurensis Angelica Angelica amurensis \N \N \N \N \N 39204 P.xylocarpa Planchonella Planchonella xylocarpa \N \N \N \N \N 39205 A.delavayi Asarum Asarum delavayi \N \N \N \N \N 39206 \N varietas Donnellsmithia juncea var. purpurea \N \N \N \N \N 39207 S.tatarica Silene Silene tatarica \N \N \N \N \N 39208 C.linearifolia Chirita Chirita linearifolia \N \N \N \N \N 39209 M.poggei Macaranga Macaranga poggei \N \N \N \N \N 39210 C.caelopoda Cota Cota caelopoda \N \N \N \N \N 39211 F.latispinus Ferocactus Ferocactus latispinus \N \N \N \N \N 39212 \N genus Korshinskya \N \N \N \N \N 39213 P.coerulea Puya Puya coerulea \N \N \N \N \N 39214 L.rosea Lapageria Lapageria rosea \N \N \N \N \N 39215 B.leptobotrys Baphia Baphia leptobotrys \N \N \N \N \N 39216 B.bipinnata Bursera Bursera bipinnata \N \N \N \N \N 39218 C.secundum Comesperma Comesperma secundum \N \N \N \N \N 39219 A.imperforata Acronychia Acronychia imperforata \N \N \N \N \N 39220 C.biloba Clarkia Clarkia biloba \N \N \N \N \N 39221 C.nutans Catopsis Catopsis nutans \N \N \N \N \N 39222 C.tomentosum Chondrodendron Chondrodendron tomentosum \N \N \N \N \N 39223 A.sacculiferum Allium Allium sacculiferum \N \N \N \N \N 39224 F.pungens Ficus Ficus pungens \N \N \N \N \N 39225 A.leucoclada Atriplex Atriplex leucoclada \N \N \N \N \N 39226 S.congestiflora Svenkoeltzia Svenkoeltzia congestiflora \N \N \N \N \N 39227 M.polyantha Marcgravia Marcgravia polyantha \N \N \N \N \N 39228 C.minimus Calochortus Calochortus minimus \N \N \N \N \N 39229 H.WB1043 Hydriastele Hydriastele sp. WB1043 \N \N \N \N \N 39230 T.aphrogenes Taraxacum Taraxacum aphrogenes \N \N \N \N \N 39231 S.lanceolatum Solanum Solanum lanceolatum \N \N \N \N \N 39232 R.madrensis Rhynchostele Rhynchostele madrensis \N \N \N \N \N 39233 N.microdon Notochloe Notochloe microdon \N \N \N \N \N 39234 P.fulvum Pisum Pisum fulvum \N \N \N \N \N 39235 A.humile Amydrium Amydrium humile \N \N \N \N \N 39236 H.undulatum Hypericum Hypericum undulatum \N \N \N \N \N 39237 N.3-1335 Nasa Nasa cf. cymbopetala 3-1335 \N \N \N \N \N 39238 C.mandoniana Calceolaria Calceolaria mandoniana \N \N \N \N \N 39239 \N genus Hieronyma \N \N \N \N \N 39240 E.borneensis Euphrasia Euphrasia borneensis \N \N \N \N \N 39241 I.platensis Ipomoea Ipomoea platensis \N \N \N \N \N 39242 A.pilopetalum Aconitum Aconitum pilopetalum \N \N \N \N \N 39243 C.paniculata Calopsis Calopsis paniculata \N \N \N \N \N 39244 C.trichotoma Cordia Cordia trichotoma \N \N \N \N \N 39245 A.cartilaginea Aciphylla Aciphylla cartilaginea \N \N \N \N \N 39246 B.wollnyi Begonia Begonia wollnyi \N \N \N \N \N 39247 \N genus Cyathostemma \N \N \N \N \N 39248 A.argentea Acaena Acaena argentea \N \N \N \N \N 39249 P.argemone Papaver Papaver argemone \N \N \N \N \N 39250 C.standleyi Calathea Calathea standleyi \N \N \N \N \N 39251 E.patersonii Erica Erica patersonii \N \N \N \N \N 39252 B.dielsianum Bupleurum Bupleurum dielsianum \N \N \N \N \N 39253 C.fusca Clematis Clematis fusca \N \N \N \N \N 39254 Z.citrina Zenkerella Zenkerella citrina \N \N \N \N \N 39255 C.racemosa Cassytha Cassytha racemosa \N \N \N \N \N 39256 P.triphylla Psiguria Psiguria triphylla \N \N \N \N \N 39257 E.racemosa Euphorbia Euphorbia racemosa \N \N \N \N \N 39258 \N genus Notoseris \N \N \N \N \N 39259 P.pichisensis Psychotria Psychotria pichisensis \N \N \N \N \N 39260 T.queenslandica Thaleropia Thaleropia queenslandica \N \N \N \N \N 39261 C.berlandieri Citharexylum Citharexylum berlandieri \N \N \N \N \N 39262 L.vulcanica Lachemilla Lachemilla vulcanica \N \N \N \N \N 39263 A.citrinicarpa Aquilaria Aquilaria citrinicarpa \N \N \N \N \N 39264 \N genus Marcetella \N \N \N \N \N 39265 C.thailandica Caulokaempferia Caulokaempferia thailandica \N \N \N \N \N 39266 \N genus Pycnophyllum \N \N \N \N \N 39267 R.cyanocarpum Rhododendron Rhododendron cyanocarpum \N \N \N \N \N 39268 G.aristata Genista Genista aristata \N \N \N \N \N 39269 O.erecta Onosma Onosma erecta \N \N \N \N \N 39270 H.hispanica Hispidella Hispidella hispanica \N \N \N \N \N 39271 \N varietas Prunus serotina var. serotina \N \N \N \N \N 39272 E.montana Endiandra Endiandra montana \N \N \N \N \N 39273 \N genus Zyrphelis \N \N \N \N \N 39274 P.natalensis Petopentia Petopentia natalensis \N \N \N \N \N 39275 B.lanceolata Buckleya Buckleya lanceolata \N \N \N \N \N 39276 N.gracilis Neobertiera Neobertiera gracilis \N \N \N \N \N 39277 M.ramosissima Moraea Moraea ramosissima \N \N \N \N \N 39278 C.viminea Carpinus Carpinus viminea \N \N \N \N \N 39279 M.calycina Miconia Miconia calycina \N \N \N \N \N 39280 G.scortechinii Goniothalamus Goniothalamus scortechinii \N \N \N \N \N 39281 S.glacialis Sideritis Sideritis glacialis \N \N \N \N \N 39282 E.bulbophylloides Eria Eria bulbophylloides \N \N \N \N \N 39283 L.grandiflora Lygodesmia Lygodesmia grandiflora \N \N \N \N \N 39284 P.lippioides Pilea Pilea lippioides \N \N \N \N \N 39285 C.limonimedica Citrus Citrus limonimedica \N \N \N \N \N 39286 D.haussknechtii Dionysia Dionysia haussknechtii \N \N \N \N \N 39287 S.sergievskajae Stevenia Stevenia sergievskajae \N \N \N \N \N 39288 E.chamaerrhodos Euphorbia Euphorbia chamaerrhodos \N \N \N \N \N 39289 \N genus Wallaceodendron \N \N \N \N \N 39290 M.Summit Melicytus Melicytus sp. Swampy Summit \N \N \N \N \N 39291 T.orientalis Toussaintia Toussaintia orientalis \N \N \N \N \N 42210 \N genus Toxicodendron \N \N \N \N \N 39292 D.rugelii Deeringothamnus Deeringothamnus rugelii \N \N \N \N \N 39293 \N varietas Miscanthus sinensis var. sinensis \N \N \N \N \N 39294 \N genus Dimeresia \N \N \N \N \N 39295 B.rockii Bupleurum Bupleurum rockii \N \N \N \N \N 39296 \N family Barbeyaceae \N \N \N \N \N 39297 \N genus Seseli \N \N \N \N \N 39298 E.grandiflora Esenbeckia Esenbeckia grandiflora \N \N \N \N \N 39299 A.bracteolata Acacia Acacia bracteolata \N \N \N \N \N 39300 P.aequale Piper Piper aequale \N \N \N \N \N 39301 A.peregrina Aegilops Aegilops peregrina \N \N \N \N \N 39302 G.diffusum Gayophytum Gayophytum diffusum \N \N \N \N \N 39303 \N genus Johanneshowellia \N \N \N \N \N 39304 S.sororia Senegalia Senegalia sororia \N \N \N \N \N 39305 P.oregana Perideridia Perideridia oregana \N \N \N \N \N 39306 I.chapaensis Ilex Ilex chapaensis \N \N \N \N \N 39307 H.glauca Hoffmannseggia Hoffmannseggia glauca \N \N \N \N \N 39308 I.obliquus Ischnosiphon Ischnosiphon obliquus \N \N \N \N \N 39309 P.10197) Psilanthus Psilanthus sp. A (Luke 10197) \N \N \N \N \N 39310 P.elata Pericopsis Pericopsis elata \N \N \N \N \N 39311 Z.lehmannianum Zygophyllum Zygophyllum lehmannianum \N \N \N \N \N 39312 E.aromaphloia Eucalyptus Eucalyptus aromaphloia \N \N \N \N \N 39313 C.121 Clusia Clusia sp. HG 121 \N \N \N \N \N 39314 B.riparia Bactris Bactris riparia \N \N \N \N \N 39315 O.radicosa Ophrestia Ophrestia radicosa \N \N \N \N \N 39316 H.populneus Homalanthus Homalanthus populneus \N \N \N \N \N 39317 P.cinerea Phaedranassa Phaedranassa cinerea \N \N \N \N \N 39318 P.elegans Pelargonium Pelargonium elegans \N \N \N \N \N 39319 A.insignis Areca Areca insignis \N \N \N \N \N 39320 V.album Viscum Viscum album European mistletoe \N \N \N \N 39321 A.quadrifida Arracacia Arracacia quadrifida \N \N \N \N \N 39322 \N genus Ruthalicia \N \N \N \N \N 39323 \N subspecies Viscum album subsp. creticum \N \N \N \N \N 39324 S.costata Swartzia Swartzia costata \N \N \N \N \N 39325 O.persephonae Ophrys Ophrys persephonae \N \N \N \N \N 39326 \N subspecies Oenothera pallida subsp. pallida \N \N \N \N \N 39327 \N varietas Capparis fascicularis var. fascicularis \N \N \N \N \N 39328 \N genus Iris \N \N \N \N \N 39329 D.esquirolii Dioscorea Dioscorea esquirolii \N \N \N \N \N 39330 P.crispus Potamogeton Potamogeton crispus curly-leaf pondweed \N \N \N \N 39331 C.africana Cardamine Cardamine africana \N \N \N \N \N 39332 \N genus Balduina \N \N \N \N \N 39333 \N subspecies Centaurea resupinata subsp. resupinata \N \N \N \N \N 39334 M.rufa Miconia Miconia rufa \N \N \N \N \N 39335 H.catingarum Heteropterys Heteropterys catingarum \N \N \N \N \N 39336 \N varietas Forestiera segregata var. pinetorum \N \N \N \N \N 39337 S.aberrans Satyrium Satyrium aberrans \N \N \N \N \N 39338 C.grandiflora Coursetia Coursetia grandiflora \N \N \N \N \N 39339 A.reginae Alocasia Alocasia reginae \N \N \N \N \N 39340 A.striata Aloe Aloe striata \N \N \N \N \N 39341 \N varietas Prunus persica var. nucipersica nectarine \N \N \N \N 39342 V.nigra Vicia Vicia nigra \N \N \N \N \N 39343 \N varietas Tillandsia duratii var. duratii \N \N \N \N \N 39344 C.daphniphyllum Croton Croton daphniphyllum \N \N \N \N \N 39345 I.lecomtei Impatiens Impatiens lecomtei \N \N \N \N \N 39346 B.gilgiana Berberis Berberis gilgiana \N \N \N \N \N 39347 A.150 Arisaema Arisaema sp. Barabe 150 \N \N \N \N \N 39348 P.asterocarpon Planchonella Planchonella asterocarpon \N \N \N \N \N 39349 A.oleifera Attalea Attalea oleifera \N \N \N \N \N 39350 M.cypripedioides Manniella Manniella cypripedioides \N \N \N \N \N 39351 S.rixosum Solanum Solanum rixosum \N \N \N \N \N 39352 \N varietas Fraxinus cuspidata var. macropetala \N \N \N \N \N 39353 G.deplancheanum Gymnostoma Gymnostoma deplancheanum \N \N \N \N \N 39354 R.genestierianum Rhododendron Rhododendron genestierianum \N \N \N \N \N 39355 D.virginiana Diospyros Diospyros virginiana American persimmon,possum apple \N \N \N \N 39356 C.trichopoda Chamaecrista Chamaecrista trichopoda \N \N \N \N \N 39357 \N varietas Eriogonum corymbosum var. velutinum \N \N \N \N \N 39358 P.latissimum Panicum Panicum latissimum \N \N \N \N \N 39359 P.hysterophorus Parthenium Parthenium hysterophorus \N \N \N \N \N 39360 S.armentalis Solanum Solanum armentalis \N \N \N \N \N 39361 \N genus Guarea \N \N \N \N \N 39362 T.nigrans Taxillus Taxillus nigrans \N \N \N \N \N 39363 P.daltonii Plantago Plantago daltonii \N \N \N \N \N 39364 G.cubensis Gesneria Gesneria cubensis \N \N \N \N \N 39365 S.cana Sabicea Sabicea cana \N \N \N \N \N 39366 S.burchellii Silene Silene burchellii Burchell's campion \N \N \N \N 39367 P.cusickiana Primula Primula cusickiana \N \N \N \N \N 39368 L.repostum Lomatium Lomatium repostum Napa biscuitroot \N \N \N \N 39369 L.meridionalis Luzula Luzula meridionalis \N \N \N \N \N 39370 \N genus Phylica \N \N \N \N \N 39371 A.ferganensis Artemisia Artemisia ferganensis \N \N \N \N \N 39372 H.voyronii Hazomalania Hazomalania voyronii \N \N \N \N \N 39373 T.glaucocarpa Thiloa Thiloa glaucocarpa \N \N \N \N \N 39374 T.tubiflora Tsoala Tsoala tubiflora \N \N \N \N \N 39375 B.366 Boesenbergia Boesenbergia aff. variegata Sakai 366 \N \N \N \N \N 39376 P.bullatus Piliocalyx Piliocalyx bullatus \N \N \N \N \N 39377 J.carduiformis Jurinea Jurinea carduiformis \N \N \N \N \N 39378 A.racemulosum Aconitum Aconitum racemulosum \N \N \N \N \N 39379 G.gentianoides Gentianella Gentianella gentianoides \N \N \N \N \N 39380 D.bolusii Dianthus Dianthus bolusii \N \N \N \N \N 39381 D.spathulata Dunalia Dunalia spathulata \N \N \N \N \N 39382 E.formosa Eucharis Eucharis formosa \N \N \N \N \N 39383 \N genus Oxychloris \N \N \N \N \N 39384 S.hydaspicum Sesuvium Sesuvium hydaspicum \N \N \N \N \N 39385 H.longispatha Hydriastele Hydriastele longispatha \N \N \N \N \N 39386 D.basale Dendrochilum Dendrochilum basale \N \N \N \N \N 39387 G.longepidunculata Geonoma Geonoma longepidunculata \N \N \N \N \N 39388 T.alpinum Taraxacum Taraxacum alpinum \N \N \N \N \N 39389 D.mannii Dorstenia Dorstenia mannii \N \N \N \N \N 39390 \N varietas Coreocarpus arizonicus var. arizonicus \N \N \N \N \N 39391 P.vulgaris Polygala Polygala vulgaris common milkwort \N \N \N \N 39392 V.mollis Viguiera Viguiera mollis \N \N \N \N \N 39393 E.oryzoides Echinochloa Echinochloa oryzoides early barnyard grass \N \N \N \N 39394 \N genus Mapania \N \N \N \N \N 39395 M.strigosum Melampodium Melampodium strigosum \N \N \N \N \N 39396 G.MVSP-2007 Galium Galium sp. MVSP-2007 \N \N \N \N \N 39397 \N subspecies Pisum sativum subsp. transcaucasicum \N \N \N \N \N 39398 B.auriculata Burmeistera Burmeistera auriculata \N \N \N \N \N 39399 G.ladanum Galeopsis Galeopsis ladanum \N \N \N \N \N 39400 B.komarovianum Bupleurum Bupleurum komarovianum \N \N \N \N \N 39401 E.selaginifolia Erica Erica selaginifolia \N \N \N \N \N 39402 S.tarapotanum Sparattanthelium Sparattanthelium tarapotanum \N \N \N \N \N 39403 P.biflora Pimelea Pimelea biflora \N \N \N \N \N 39404 T.lutea Turrillia Turrillia lutea \N \N \N \N \N 39405 O.subterminalis Ocotea Ocotea subterminalis \N \N \N \N \N 39406 T.zahlbruckneriana Trevoria Trevoria zahlbruckneriana \N \N \N \N \N 39407 I.microcarpa Indigofera Indigofera microcarpa \N \N \N \N \N 39408 G.pterocarpa Gagnebina Gagnebina pterocarpa \N \N \N \N \N 39409 P.minimaculata Physalis Physalis minimaculata \N \N \N \N \N 39410 C.incurva Campanula Campanula incurva \N \N \N \N \N 39411 G.belemutensis Gaertnera Gaertnera belemutensis \N \N \N \N \N 39412 D.gaudichaudianum Dysoxylum Dysoxylum gaudichaudianum \N \N \N \N \N 39413 P.hondoensis Pyrus Pyrus hondoensis \N \N \N \N \N 39414 \N genus Deidamia \N \N \N \N \N 39415 C.quinquesecta Coptis Coptis quinquesecta \N \N \N \N \N 39416 \N genus Acineta \N \N \N \N \N 39417 \N genus Trachypogon \N \N \N \N \N 39418 D.multiplex Delphinium Delphinium multiplex \N \N \N \N \N 39419 S.ciliata Smithia Smithia ciliata \N \N \N \N \N 39420 \N genus Mohavea \N \N \N \N \N 39421 T.pentaphylla Trichosanthes Trichosanthes pentaphylla \N \N \N \N \N 39422 A.nobilis Achillea Achillea nobilis \N \N \N \N \N 39423 P.viridis Polyalthia Polyalthia viridis \N \N \N \N \N 39424 L.scabrida Leptodermis Leptodermis scabrida \N \N \N \N \N 39425 E.chartacea Erica Erica chartacea \N \N \N \N \N 39426 \N genus Aetanthus \N \N \N \N \N 39427 C.globularis Carex Carex globularis \N \N \N \N \N 39428 P.hastata Phacelia Phacelia hastata \N \N \N \N \N 39429 Z.vulturiceps Zootrophion Zootrophion vulturiceps \N \N \N \N \N 39430 \N varietas Hylotelephium ussuriense var. ussuriense \N \N \N \N \N 39431 B.SV98 Bryonia Bryonia sp. SV98 \N \N \N \N \N 39432 P.fruticosa Prunus Prunus fruticosa European dwarf cherry \N \N \N \N 39433 \N genus Rhytidophyllum \N \N \N \N \N 39434 P.insularis Phytolacca Phytolacca insularis \N \N \N \N \N 39435 T.paludosa Tradescantia Tradescantia ohiensis x Tradescantia paludosa \N \N \N \N \N 39436 G.clokeyi Gilia Gilia clokeyi \N \N \N \N \N 39437 S.radicans Stachys Stachys radicans \N \N \N \N \N 39438 S.linarioides Spigelia Spigelia linarioides \N \N \N \N \N 39439 B.lanceolata Baccaurea Baccaurea lanceolata \N \N \N \N \N 39440 S.intermedia Spirodela Spirodela intermedia \N \N \N \N \N 39441 R.piliferus Ranunculus Ranunculus piliferus \N \N \N \N \N 39442 D.camfieldii Dodonaea Dodonaea camfieldii \N \N \N \N \N 39443 B.chloroglossum Bulbophyllum Bulbophyllum chloroglossum \N \N \N \N \N 39444 P.johnsii Pilea Pilea johnsii \N \N \N \N \N 39445 \N genus Blennosperma \N \N \N \N \N 39446 \N genus Heterocentron \N \N \N \N \N 39447 A.montana Annona Annona montana mountain soursop,wild soursop \N \N \N \N 39448 \N genus Acanthospermum \N \N \N \N \N 39449 P.samanense Piper Piper samanense \N \N \N \N \N 39450 H.cuneiformis Hibbertia Hibbertia cuneiformis \N \N \N \N \N 39451 \N genus Choerospondias \N \N \N \N \N 39452 B.scandens Bisgoeppertia Bisgoeppertia scandens \N \N \N \N \N 39453 H.viscida Hemigenia Hemigenia viscida \N \N \N \N \N 39454 D.lobbii Deinandra Deinandra lobbii \N \N \N \N \N 39455 S.avolans Sericocoma Sericocoma avolans \N \N \N \N \N 39456 D.involucratus Daucus Daucus involucratus \N \N \N \N \N 39457 A.pubinerve Acer Acer pubinerve \N \N \N \N \N 39458 P.gnaphaloides Ptilostemon Ptilostemon gnaphaloides \N \N \N \N \N 39459 M.smaragdina Miconia Miconia smaragdina \N \N \N \N \N 39460 G.hexamita Grewia Grewia hexamita \N \N \N \N \N 39461 C.bloxsomei Corymbia Corymbia bloxsomei \N \N \N \N \N 39462 A.semicinereus Alectryon Alectryon semicinereus \N \N \N \N \N 39463 C.speciosa Comparettia Comparettia speciosa \N \N \N \N \N 39464 C.intybaceus Cheirolophus Cheirolophus intybaceus \N \N \N \N \N 39465 \N varietas Thalictrum minus var. hypoleucum \N \N \N \N \N 39466 \N forma Caragana microphylla f. cinerea \N \N \N \N \N 39467 G.kauaiense Geranium Geranium kauaiense \N \N \N \N \N 39468 P.palmeri Pediomelum Pediomelum palmeri \N \N \N \N \N 39469 B.petiolata Babiana Babiana petiolata \N \N \N \N \N 39470 C.pumila Cornus Cornus pumila \N \N \N \N \N 39471 Z.5039 Zornia Zornia sp. Lavin 5039 \N \N \N \N \N 39472 H.gracile Hedychium Hedychium gracile \N \N \N \N \N 39473 H.flexuosum Hordeum Hordeum flexuosum \N \N \N \N \N 39474 \N subspecies Panax pseudoginseng subsp. himalaicus \N \N \N \N \N 39475 \N subspecies Arenaria aggregata subsp. pseudoarmeriastrum \N \N \N \N \N 39476 A.nanus Ananas Ananas nanus \N \N \N \N \N 39477 C.japonica Clematis Clematis japonica \N \N \N \N \N 39478 P.2537 Pachyphyllum Pachyphyllum cf. cuencae Whitten 2537 \N \N \N \N \N 39479 P.limbatum Paspalum Paspalum limbatum \N \N \N \N \N 39480 C.carrii Cyrtosperma Cyrtosperma carrii \N \N \N \N \N 39481 O.nigrescens Oxytropis Oxytropis nigrescens \N \N \N \N \N 39482 F.pollen unclassified Quercus fossil Quercus pollen \N \N \N \N \N 39483 L.tuberosus Leontodon Leontodon tuberosus \N \N \N \N \N 39484 M.marlothii Monsonia Monsonia marlothii \N \N \N \N \N 39485 P.wawrae Peucedanum Peucedanum wawrae \N \N \N \N \N 39486 \N genus Holacantha \N \N \N \N \N 39487 C.ekmanii Copernicia Copernicia ekmanii \N \N \N \N \N 39488 M.nanmu Machilus Machilus nanmu \N \N \N \N \N 39489 E.sylvestris Elaeocarpus Elaeocarpus sylvestris \N \N \N \N \N 39490 D.ceratocarpa Dodonaea Dodonaea ceratocarpa \N \N \N \N \N 39491 N.clitandrifolia Neolemonniera Neolemonniera clitandrifolia \N \N \N \N \N 39492 B.sumatrana Brassaiopsis Brassaiopsis sumatrana \N \N \N \N \N 39493 \N subspecies Sidalcea malviflora subsp. virgata \N \N \N \N \N 39494 Q.oleoides Quercus Quercus oleoides \N \N \N \N \N 39495 \N varietas Brassica napus var. napobrassica Swedish turnip,rutabaga \N \N \N \N 39496 A.pringlei Asclepias Asclepias pringlei \N \N \N \N \N 39497 M.dentilobus Mimulus Mimulus dentilobus \N \N \N \N \N 39498 L.glomerata Lachnaea Lachnaea glomerata \N \N \N \N \N 39499 \N varietas Rhododendron saluenense var. prostratum \N \N \N \N \N 39500 L.zahnii Lithodora Lithodora zahnii \N \N \N \N \N 39501 S.officinalis Saponaria Saponaria officinalis common soapwort \N \N \N \N 39502 \N genus Kiggelaria \N \N \N \N \N 39503 A.cladosepala Adenia Adenia cladosepala \N \N \N \N \N 39504 \N tribe Chaenactideae \N \N \N \N \N 39505 \N subspecies Stipa pennata subsp. zalesskii \N \N \N \N \N 39506 S.macrodonta Silene Silene macrodonta \N \N \N \N \N 39507 C.boissieri Centaurea Centaurea boissieri \N \N \N \N \N 39508 D.longiglumis Dianthus Dianthus longiglumis \N \N \N \N \N 39509 L.vinculans Limnanthes Limnanthes vinculans \N \N \N \N \N 39510 H.arborescens Hedyosmum Hedyosmum arborescens \N \N \N \N \N 43398 \N genus Libanothamnus \N \N \N \N \N 39511 B.ternifolia Bouvardia Bouvardia ternifolia clavillo,trompetilla \N \N \N \N 39512 N.turbacensis Nectandra Nectandra turbacensis \N \N \N \N \N 39513 D.kilimandscharicum Duosperma Duosperma kilimandscharicum \N \N \N \N \N 39514 C.ICN132.700 Chascolytrum Chascolytrum sp. ICN132.700 \N \N \N \N \N 39515 \N varietas Narcissus cernuus \N \N \N \N \N 39516 \N genus Urbanodendron \N \N \N \N \N 39517 C.borbonica Carex Carex borbonica \N \N \N \N \N 39518 S.N Salicornia Salicornia sp. Freitag 33.286 Ukraine, N \N \N \N \N \N 39519 P.multiflorus Phemeranthus Phemeranthus multiflorus \N \N \N \N \N 39520 H.cumingiana Hemigraphis Hemigraphis cumingiana \N \N \N \N \N 39521 V.praecox Vangueria Vangueria praecox \N \N \N \N \N 39522 P.trichantha Pittoniotis Pittoniotis trichantha \N \N \N \N \N 39523 P.amara Potalia Potalia amara \N \N \N \N \N 39524 N.inaguensis Nashia Nashia inaguensis \N \N \N \N \N 39525 C.sativum Coriandrum Coriandrum sativum coriander \N \N \N \N 39526 R.malaca Ruellia Ruellia malaca \N \N \N \N \N 39527 D.lanata Digitalis Digitalis lanata Grecian foxglove,wooly foxglove \N \N \N \N 39528 O.beccarii Oxyspora Oxyspora beccarii \N \N \N \N \N 39529 G.coulteri Guaiacum Guaiacum coulteri \N \N \N \N \N 39530 M.zeylanica Mangifera Mangifera zeylanica etambe,kaddu-ma \N \N \N \N 39531 Z.americanus Zeugites Zeugites americanus \N \N \N \N \N 39532 A.atropatana Anthemis Anthemis atropatana \N \N \N \N \N 39533 S.glutinosa Saponaria Saponaria glutinosa \N \N \N \N \N 39534 M.nictitans Machaerium Machaerium nictitans \N \N \N \N \N 39535 S.giessii Senecio Senecio giessii \N \N \N \N \N 39536 J.areysiana Justicia Justicia areysiana \N \N \N \N \N 39537 A.brevifolia Albizia Albizia brevifolia \N \N \N \N \N 39538 P.edulis Pyrularia Pyrularia edulis \N \N \N \N \N 39539 \N no rank Saccharum hybrid cultivar BO91 \N \N \N \N \N 39540 S.cinnabarina Sophronitis Sophronitis cinnabarina \N \N \N \N \N 39541 H.porphyropetala Hedraianthera Hedraianthera porphyropetala \N \N \N \N \N 39542 M.longimamma Mammillaria Mammillaria longimamma \N \N \N \N \N 39543 C.donnell-smithii Carex Carex donnell-smithii \N \N \N \N \N 39544 \N genus Mitraria \N \N \N \N \N 39545 G.odorata Guettarda Guettarda odorata \N \N \N \N \N 39546 R.maximowicziana Rosa Rosa maximowicziana \N \N \N \N \N 39547 \N subspecies Tetracera volubilis subsp. volubilis \N \N \N \N \N 39548 A.scaberrimus Astragalus Astragalus scaberrimus \N \N \N \N \N 39549 C.lusitanica Campanula Campanula lusitanica \N \N \N \N \N 39550 F.densa Fagonia Fagonia densa \N \N \N \N \N 39551 O.lanatum Oxypetalum Oxypetalum lanatum \N \N \N \N \N 39552 M.involuta Muhlenbergia Muhlenbergia x involuta \N \N \N \N \N 39553 M.pleiosticha Mezobromelia Mezobromelia pleiosticha \N \N \N \N \N 39554 H.nodiflorum Helosciadium Helosciadium nodiflorum \N \N \N \N \N 39555 \N genus Verrucularia \N \N \N \N \N 39556 \N genus Myzorrhiza \N \N \N \N \N 39557 S.telekii Senecio Senecio telekii \N \N \N \N \N 39558 O.neocaledonica Oberonia Oberonia neocaledonica \N \N \N \N \N 39559 \N genus Blachia \N \N \N \N \N 39560 \N no rank environmental samples Taxonomy:1008274 \N \N \N \N \N 39561 T.insigne Trigonidium Trigonidium insigne \N \N \N \N \N 39562 C.davyi Carex Carex davyi \N \N \N \N \N 39563 B.dactyloides Bouteloua Bouteloua dactyloides \N \N \N \N \N 39564 D.sabulosa Diosma Diosma sabulosa \N \N \N \N \N 39565 \N genus Mossia \N \N \N \N \N 39566 S.rufiglandulosus Senecio Senecio rufiglandulosus \N \N \N \N \N 39567 H.aristidis Hyacinthoides Hyacinthoides aristidis \N \N \N \N \N 39568 \N subspecies Felicia filifolia subsp. filifolia \N \N \N \N \N 39569 S.poilanei Sapria Sapria poilanei \N \N \N \N \N 39570 E.2414 Elaeagnus Elaeagnus sp. Chase 2414 \N \N \N \N \N 39571 \N family Rutaceae rue family \N \N \N \N 39572 H.polyphyllum Hypericum Hypericum polyphyllum \N \N \N \N \N 39573 D.capillaris Dendropanax Dendropanax capillaris \N \N \N \N \N 39574 T.vahlii Tanacetum Tanacetum vahlii \N \N \N \N \N 39575 \N genus Jobinia \N \N \N \N \N 39576 H.bernieri Helmiopsis Helmiopsis bernieri \N \N \N \N \N 39577 W.07-1164 Wentsaiboea Wentsaiboea sp. 2 Moeller MMO 07-1164 \N \N \N \N \N 39578 C.abantensis Crocus Crocus abantensis \N \N \N \N \N 39579 T.ovigera Trichosanthes Trichosanthes ovigera \N \N \N \N \N 39580 \N genus Brachyclados \N \N \N \N \N 39581 I.levynsiana Isolepis Isolepis levynsiana \N \N \N \N \N 39582 I.mitis Ilex Ilex mitis \N \N \N \N \N 39583 R.diversipilosum Rhododendron Rhododendron diversipilosum \N \N \N \N \N 39584 C.kingiana Croninia Croninia kingiana \N \N \N \N \N 39585 P.SH-2010 Polygonum Polygonum sp. SH-2010 \N \N \N \N \N 39586 A.rufus Anigozanthos Anigozanthos rufus \N \N \N \N \N 39587 P.veitchii Paeonia Paeonia veitchii \N \N \N \N \N 39588 C.parvifrons Ceroxylon Ceroxylon parvifrons \N \N \N \N \N 39589 M.patungensis Manglietia Manglietia patungensis \N \N \N \N \N 39590 M.umbrosa Macaranga Macaranga umbrosa \N \N \N \N \N 39591 N.montana Neosprucea Neosprucea montana \N \N \N \N \N 39592 S.transvaalensis Scabiosa Scabiosa transvaalensis \N \N \N \N \N 39593 V.coriaceum Viburnum Viburnum coriaceum \N \N \N \N \N 39594 \N subspecies Cyclamen repandum subsp. rhodense \N \N \N \N \N 39595 B.tuberhybrida Begonia Begonia x tuberhybrida hybrid tuberous begonia \N \N \N \N 39596 \N genus Malvaviscus \N \N \N \N \N 39597 \N subspecies Allium vodopjanovae subsp. czemalense \N \N \N \N \N 39598 C.toetoe Cortaderia Cortaderia toetoe \N \N \N \N \N 39599 S.trifurcata Saxifraga Saxifraga trifurcata \N \N \N \N \N 39600 H.glutinosa Homolepis Homolepis glutinosa \N \N \N \N \N 39601 R.niveus Rubus Rubus niveus Ceylon raspberry,Mysore raspberry,kala hinsalu \N \N \N \N 39602 \N varietas Oenocarpus bataua var. bataua \N \N \N \N \N 39603 P.laselvensis Psychotria Psychotria laselvensis \N \N \N \N \N 39604 M.glaziovii Macrocarpaea Macrocarpaea glaziovii \N \N \N \N \N 39605 \N genus Kalakia \N \N \N \N \N 39606 C.elbrusensis Centaurea Centaurea elbrusensis \N \N \N \N \N 39607 M.cochlearis Myrosmodes Myrosmodes cochlearis \N \N \N \N \N 39608 C.arenaria Caladenia Caladenia arenaria \N \N \N \N \N 39609 A.elongata Abrahamia Abrahamia elongata \N \N \N \N \N 39610 B.beddomei Begonia Begonia beddomei \N \N \N \N \N 39611 \N genus Ida \N \N \N \N \N 39612 S.commutatum Sisyrinchium Sisyrinchium commutatum \N \N \N \N \N 39613 P.interioris Pimelea Pimelea interioris \N \N \N \N \N 39614 P.heteroloba Pellionia Pellionia heteroloba \N \N \N \N \N 39615 X.macrantha Xylopia Xylopia macrantha \N \N \N \N \N 39616 C.secalina Carex Carex secalina \N \N \N \N \N 39617 \N genus Cryptosepalum \N \N \N \N \N 39618 S.accrescens Solanum Solanum accrescens \N \N \N \N \N 39619 R.tetraphyllus Restio Restio tetraphyllus \N \N \N \N \N 39620 Z.corymbosa Zabelia Zabelia corymbosa \N \N \N \N \N 39621 L.chapmanii Liatris Liatris chapmanii \N \N \N \N \N 39622 R.japonicum Rhododendron Rhododendron japonicum \N \N \N \N \N 39623 A.bullosus Aponogeton Aponogeton bullosus \N \N \N \N \N 39624 \N genus Canthium \N \N \N \N \N 39625 M.hurifolia Macaranga Macaranga hurifolia \N \N \N \N \N 39626 A.princeps Artemisia Artemisia princeps Japanese mugwort,yomogi \N \N \N \N 39627 A.virgata Adelia Adelia virgata \N \N \N \N \N 39628 S.monoplacenta Schismatoglottis Schismatoglottis monoplacenta \N \N \N \N \N 39629 O.schliebenii Ormocarpum Ormocarpum schliebenii \N \N \N \N \N 39630 B.antipoda Ballantinia Ballantinia antipoda \N \N \N \N \N 39631 T.scabrum Taraxacum Taraxacum scabrum \N \N \N \N \N 39632 C.decipiens Ceratocaryum Ceratocaryum decipiens \N \N \N \N \N 39633 S.vallsii Stylosanthes Stylosanthes vallsii \N \N \N \N \N 39634 O.parvula Ophrys Ophrys parvula \N \N \N \N \N 39635 E.prostratum Eryngium Eryngium prostratum \N \N \N \N \N 39636 P.ovata Phlox Phlox ovata \N \N \N \N \N 39637 C.concolor Collinsia Collinsia concolor \N \N \N \N \N 39638 C.drudei Carludovica Carludovica drudei \N \N \N \N \N 39639 A.caespitosa Azorella Azorella caespitosa \N \N \N \N \N 39640 B.caespitosa Bolax Bolax caespitosa \N \N \N \N \N 39641 D.macrocarpum Dichapetalum Dichapetalum macrocarpum \N \N \N \N \N 39642 F.bellidifolia Forstera Forstera bellidifolia \N \N \N \N \N 39643 H.fumarioides Hilliella Hilliella fumarioides \N \N \N \N \N 39644 O.hesperia Ononis Ononis hesperia \N \N \N \N \N 39645 C.oblongum Cremastosperma Cremastosperma oblongum \N \N \N \N \N 39646 M.albus Melilotus Melilotus albus \N \N \N \N \N 39647 L.avenacea Lycochloa Lycochloa avenacea \N \N \N \N \N 39648 S.henryi Sinowilsonia Sinowilsonia henryi \N \N \N \N \N 39649 H.spinosum Hoplophyllum Hoplophyllum spinosum \N \N \N \N \N 39650 P.JPM015 Persea Persea sp. JPM015 \N \N \N \N \N 39651 N.psychotrioides Neea Neea psychotrioides \N \N \N \N \N 39652 C.dhofarensis Cibirhiza Cibirhiza dhofarensis \N \N \N \N \N 39653 G.macrantha Gentianopsis Gentianopsis macrantha \N \N \N \N \N 39654 T.affinis Thunbergia Thunbergia affinis \N \N \N \N \N 39655 I.nelsonii Iris Iris x nelsonii \N \N \N \N \N 39656 C.longispina Citrus Citrus longispina canniisan,talamisan,tamisan \N \N \N \N 39657 L.nevadensis Lewisia Lewisia nevadensis \N \N \N \N \N 39658 G.antipoda Gentianella Gentianella antipoda \N \N \N \N \N 39659 \N genus Aspidopterys \N \N \N \N \N 39660 A.acaulis Arnica Arnica acaulis \N \N \N \N \N 39661 T.cernuum Trifolium Trifolium cernuum \N \N \N \N \N 39662 P.dianthum Paphiopedilum Paphiopedilum dianthum \N \N \N \N \N 39663 G.cornuta Gongora Gongora cornuta \N \N \N \N \N 39664 P.DS14533_JM1598 Pithecellobium Pithecellobium sp. DS14533_JM1598 \N \N \N \N \N 39665 \N genus Choricarpia \N \N \N \N \N 39666 E.stramineus Echinocereus Echinocereus stramineus \N \N \N \N \N 39667 B.edulis Barringtonia Barringtonia edulis \N \N \N \N \N 39668 R.variabilis Raspalia Raspalia variabilis \N \N \N \N \N 39669 V.pulvinaris Veronica Veronica pulvinaris \N \N \N \N \N 39670 O.aristuliferum Oncidium Oncidium aristuliferum \N \N \N \N \N 39671 C.palustris Caperonia Caperonia palustris \N \N \N \N \N 39672 F.glabra Fagaropsis Fagaropsis glabra \N \N \N \N \N 39673 S.eriophora Sarcolaena Sarcolaena eriophora \N \N \N \N \N 39674 \N varietas Metrosideros polymorpha var. polymorpha \N \N \N \N \N 39675 R.alba Rustia Rustia alba \N \N \N \N \N 39676 A.rubiginosus Ancylanthos Ancylanthos rubiginosus \N \N \N \N \N 39677 \N family Basellaceae \N \N \N \N \N 39678 A.opalus Acer Acer opalus \N \N \N \N \N 39679 \N subspecies Calceolaria tetragona subsp. tetragona \N \N \N \N \N 39680 \N genus Apalochlamys \N \N \N \N \N 39681 E.cumuliflora Erica Erica cumuliflora \N \N \N \N \N 39682 C.juncea Conostylis Conostylis juncea \N \N \N \N \N 39683 A.linifolius Astragalus Astragalus linifolius \N \N \N \N \N 39684 O.rufescens Ossaea Ossaea rufescens \N \N \N \N \N 39685 M.8004 Mimulus Mimulus sp. Barker 8004 \N \N \N \N \N 39686 C.pelviformis Campanula Campanula pelviformis \N \N \N \N \N 39687 \N varietas Aegilops triuncialis var. triuncialis \N \N \N \N \N 39688 T.falcata Trizeuxis Trizeuxis falcata \N \N \N \N \N 39689 M.hainanensis Madhuca Madhuca hainanensis \N \N \N \N \N 39690 V.candicans Vasconcellea Vasconcellea candicans mito \N \N \N \N 39691 A.cancellata Atractylis Atractylis cancellata \N \N \N \N \N 39692 L.sepiaria Lebeckia Lebeckia sepiaria \N \N \N \N \N 39693 C.triangularis Cayaponia Cayaponia triangularis \N \N \N \N \N 39694 C.soongoricus Cotoneaster Cotoneaster soongoricus \N \N \N \N \N 39695 A.solanoana Asclepias Asclepias solanoana \N \N \N \N \N 39696 \N genus Endadenium \N \N \N \N \N 39697 U.novae-zelandiae Utricularia Utricularia novae-zelandiae \N \N \N \N \N 39698 C.kauaiensis Carex Carex kauaiensis \N \N \N \N \N 39699 D.austroafricana Diospyros Diospyros austroafricana \N \N \N \N \N 39700 H.curtisii Hoya Hoya curtisii \N \N \N \N \N 39701 I.confusa Iris Iris confusa \N \N \N \N \N 39702 \N genus Achyrocline \N \N \N \N \N 39703 L.bomiensis Luzula Luzula bomiensis \N \N \N \N \N 39704 M.calcicola Moraea Moraea calcicola \N \N \N \N \N 39705 C.tioganum Cirsium Cirsium tioganum Tioga thistle \N \N \N \N 39706 \N genus Wiedemannia \N \N \N \N \N 39707 C.asplundii Costus Costus asplundii \N \N \N \N \N 39708 C.macrodiscus Chassalia Chassalia macrodiscus \N \N \N \N \N 39709 \N genus Isatis \N \N \N \N \N 39710 A.tenella Airopsis Airopsis tenella \N \N \N \N \N 39711 \N genus Acanthocalycium \N \N \N \N \N 39712 \N genus Lactucosonchus \N \N \N \N \N 39713 D.ZFS-2005-1 Diuris Diuris aff. chryseopsis ZFS-2005-1 \N \N \N \N \N 39714 Z.affinis Zaluzianskya Zaluzianskya affinis \N \N \N \N \N 39715 A.peninsulare Allium Allium peninsulare \N \N \N \N \N 39716 A.preissii Arnocrinum Arnocrinum preissii \N \N \N \N \N 39717 P.paniculata Phlox Phlox paniculata \N \N \N \N \N 39718 \N genus Paloveopsis \N \N \N \N \N 39719 Q.phillyraeoides Quercus Quercus phillyraeoides \N \N \N \N \N 39720 E.globularis Euonymus Euonymus globularis \N \N \N \N \N 39721 H.monticola Haworthia Haworthia monticola \N \N \N \N \N 39722 S.fuhaiense Sterigmostemum Sterigmostemum fuhaiense \N \N \N \N \N 39723 E.elongatum Epimedium Epimedium elongatum \N \N \N \N \N 39724 A.phylicoides Athrixia Athrixia phylicoides \N \N \N \N \N 39725 M.aurantiaca Matucana Matucana aurantiaca \N \N \N \N \N 39726 A.angustifolia Arctotis Arctotis angustifolia \N \N \N \N \N 39727 C.aequipetala Cuphea Cuphea aequipetala \N \N \N \N \N 39728 \N varietas Cornus oblonga var. oblonga \N \N \N \N \N 39729 E.leucocephala Euphorbia Euphorbia leucocephala \N \N \N \N \N 39730 H.lijiangensis Hemsleya Hemsleya lijiangensis \N \N \N \N \N 39731 A.heteranthera Astartea Astartea heteranthera \N \N \N \N \N 39732 \N genus Sulla \N \N \N \N \N 39733 H.aquilegiella Halenia Halenia aquilegiella \N \N \N \N \N 39734 \N genus Litanthus \N \N \N \N \N 39735 \N varietas Triticum monococcum var. pseudoflavescens \N \N \N \N \N 39736 G.grandiflorum Gastrolobium Gastrolobium grandiflorum \N \N \N \N \N 39737 L.floridum Leucadendron Leucadendron floridum \N \N \N \N \N 39738 \N genus Rudbeckia coneflowers \N \N \N \N 39739 \N genus Schizanthus \N \N \N \N \N 39740 A.collinus Apocopis Apocopis collinus \N \N \N \N \N 39741 I.narcissiflora Ismene Ismene narcissiflora \N \N \N \N \N 39742 V.moupinensis Viola Viola moupinensis \N \N \N \N \N 39743 D.laurentiana Draba Draba laurentiana \N \N \N \N \N 39744 E.bonnetii Echium Echium bonnetii \N \N \N \N \N 39745 M.sanguineum Melastoma Melastoma sanguineum \N \N \N \N \N 39746 H.boissierianum Haplophyllum Haplophyllum boissierianum \N \N \N \N \N 39747 \N subtribe Erlangeinae \N \N \N \N \N 39748 M.nudicaulis Mollugo Mollugo nudicaulis \N \N \N \N \N 39749 T.schizostroma Trichosanthes Trichosanthes schizostroma \N \N \N \N \N 39750 \N varietas Ranunculus nipponicus var. okayamensis \N \N \N \N \N 39751 T.roseolens Tradescantia Tradescantia roseolens \N \N \N \N \N 39752 E.albidum Erythronium Erythronium albidum white fawnlily \N \N \N \N 39753 B.menziesii Bidens Bidens menziesii \N \N \N \N \N 39754 K.roscoeana Kaempferia Kaempferia roscoeana \N \N \N \N \N 39755 E.equisetoides Eleocharis Eleocharis equisetoides \N \N \N \N \N 39756 C.gypsicola Carthamus Carthamus gypsicola \N \N \N \N \N 39757 C.multiflora Clusia Clusia multiflora \N \N \N \N \N 39758 C.opaca Carex Carex opaca \N \N \N \N \N 39759 O.stricta Oenothera Oenothera stricta \N \N \N \N \N 39760 T.shiressii Tetratheca Tetratheca shiressii \N \N \N \N \N 39761 \N family Pentaphragmataceae \N \N \N \N \N 39762 \N genus Barnadesia \N \N \N \N \N 39763 P.gnidia Pimelea Pimelea gnidia \N \N \N \N \N 39764 O.militaris Orchis Orchis militaris \N \N \N \N \N 39765 A.blumeri Arceuthobium Arceuthobium blumeri \N \N \N \N \N 39766 N.microphyllum Nasturtium Nasturtium microphyllum \N \N \N \N \N 39767 A.leucanthemifolia Anthemis Anthemis leucanthemifolia \N \N \N \N \N 39768 O.scabriflorum Oligostachyum Oligostachyum scabriflorum \N \N \N \N \N 39769 C.nervosa Costularia Costularia nervosa \N \N \N \N \N 39770 C.digitata Cucurbita Cucurbita digitata \N \N \N \N \N 39771 R.pulchellus Ranunculus Ranunculus pulchellus \N \N \N \N \N 39772 G.platyphylla Galphimia Galphimia platyphylla \N \N \N \N \N 39773 C.lacera Crepis Crepis lacera \N \N \N \N \N 39774 T.europaea Trientalis Trientalis europaea \N \N \N \N \N 39775 L.megaphylla Lindera Lindera megaphylla \N \N \N \N \N 39776 M.disticha Merxmuellera Merxmuellera disticha \N \N \N \N \N 39777 E.kuwaleana Euphorbia Euphorbia kuwaleana \N \N \N \N \N 39778 S.symonii Solanum Solanum symonii \N \N \N \N \N 39779 A.superba Acineta Acineta superba \N \N \N \N \N 39780 \N subspecies Dodonaea sinuolata subsp. sinuolata \N \N \N \N \N 39781 L.cordifolia Liparis Liparis cordifolia \N \N \N \N \N 39782 L.chalepense Lepidium Lepidium chalepense lens-podded hoary cress \N \N \N \N 39783 V.riparia Vitis Vitis cinerea x Vitis riparia \N \N \N \N \N 39784 R.umbellata Rhaphiolepis Rhaphiolepis umbellata \N \N \N \N \N 39785 L.camtschatcensis Lysichiton Lysichiton camtschatcensis \N \N \N \N \N 39786 W.mouririifolia Warneckea Warneckea mouririifolia \N \N \N \N \N 39787 P.crassinervium Philodendron Philodendron crassinervium \N \N \N \N \N 39788 A.speciosa Amphithalea Amphithalea speciosa \N \N \N \N \N 39789 R.myricoides Rotheca Rotheca myricoides \N \N \N \N \N 39790 M.procumbens Maytenus Maytenus procumbens \N \N \N \N \N 39791 \N genus Talinaria \N \N \N \N \N 39792 \N genus Brodiaea \N \N \N \N \N 39793 \N subspecies Festuca pulchella subsp. jurana \N \N \N \N \N 39794 E.adunca Erica Erica adunca \N \N \N \N \N 39795 \N genus Melloa \N \N \N \N \N 39796 A.cinnamomifolium Acer Acer cinnamomifolium \N \N \N \N \N 39797 G.longiflora Gaura Gaura longiflora \N \N \N \N \N 39798 \N genus Leucothoe \N \N \N \N \N 39799 C.bicamerata Coelogyne Coelogyne bicamerata \N \N \N \N \N 39800 T.dependens Thottea Thottea dependens \N \N \N \N \N 39801 B.radians Bifora Bifora radians \N \N \N \N \N 39802 M.spegazzinii Mimosa Mimosa spegazzinii \N \N \N \N \N 44360 \N genus Brachychiton \N \N \N \N \N 39803 R.sachalinensis Rhodiola Rhodiola sachalinensis \N \N \N \N \N 39804 E.lanceolatus Euonymus Euonymus lanceolatus \N \N \N \N \N 39805 S.eriocephala Salix Salix eriocephala Missouri River willow \N \N \N \N 39806 U.striatula Utricularia Utricularia striatula \N \N \N \N \N 39807 E.mangorense Endocaulos Endocaulos mangorense \N \N \N \N \N 39808 A.laxa Agalinis Agalinis laxa \N \N \N \N \N 39809 \N genus Alsodeiopsis \N \N \N \N \N 39810 X.pusilla Xanthosia Xanthosia pusilla \N \N \N \N \N 39811 T.shennongjiaensis Triaenophora Triaenophora shennongjiaensis \N \N \N \N \N 39812 J.nervosum Jasminum Jasminum nervosum \N \N \N \N \N 39813 C.6721 Cominsia Cominsia sp. de Vogel 6721 \N \N \N \N \N 39814 \N genus Cryptotaenia \N \N \N \N \N 39815 G.kamassi Gonioma Gonioma kamassi \N \N \N \N \N 39816 \N genus Trichocentrum \N \N \N \N \N 39817 C.pallida Castilleja Castilleja pallida \N \N \N \N \N 39818 \N genus Psychrophila \N \N \N \N \N 39819 V.sempervirens Viburnum Viburnum sempervirens \N \N \N \N \N 39820 \N varietas Pediomelum aromaticum var. tuhyi \N \N \N \N \N 39821 S.leyseroides Silene Silene leyseroides \N \N \N \N \N 39822 O.EE190 Oxalis Oxalis cf. melilotoides EE190 \N \N \N \N \N 39823 C.liberica Coffea Coffea liberica \N \N \N \N \N 39824 E.obtusifolius Endostemon Endostemon obtusifolius \N \N \N \N \N 39825 P.3887 Pedersenia Pedersenia sp. Borsch 3887 \N \N \N \N \N 39826 M.brevifolia Mascagnia Mascagnia brevifolia \N \N \N \N \N 39827 C.MHGG-2010 Clusia Clusia sp. MHGG-2010 \N \N \N \N \N 39828 \N genus Didiscus \N \N \N \N \N 39829 V.prionantha Viola Viola prionantha \N \N \N \N \N 39830 M.arabica Melomphis Melomphis arabica \N \N \N \N \N 39831 \N varietas Spiraea japonica var. acuta \N \N \N \N \N 39832 D.tysonii Disa Disa tysonii \N \N \N \N \N 39833 F.falcata Faguetia Faguetia falcata \N \N \N \N \N 39834 \N varietas Brassaiopsis glomerulata var. longipedicellatus \N \N \N \N \N 39835 \N family Rhipogonaceae \N \N \N \N \N 39836 B.blechnifolia Banksia Banksia blechnifolia \N \N \N \N \N 39837 P.spicata Pinalia Pinalia spicata \N \N \N \N \N 39838 Z.baillonii Zygogynum Zygogynum baillonii \N \N \N \N \N 39839 G.undulatus Goniothalamus Goniothalamus undulatus \N \N \N \N \N 39840 C.douglassii Cymopterus Cymopterus douglassii \N \N \N \N \N 39841 N.microphyllus Neomicrocalamus Neomicrocalamus microphyllus \N \N \N \N \N 39842 E.perofskianum Erysimum Erysimum perofskianum \N \N \N \N \N 39843 M.uniflora Moneses Moneses uniflora du li hua,one-flowered wintergreen,wood-nymph \N \N \N \N 39844 S.laevis Stenostachys Stenostachys laevis \N \N \N \N \N 39845 J.caesarea Jonesiopsis Jonesiopsis caesarea \N \N \N \N \N 39846 M.sclerophylla Meriania Meriania sclerophylla \N \N \N \N \N 39847 A.binervata Acacia Acacia binervata \N \N \N \N \N 39848 S.corymbosa Selago Selago corymbosa \N \N \N \N \N 39849 \N varietas Euphorbia aff. beharensis var. guillemetii \N \N \N \N \N 39850 \N no rank Musa AAAB Group \N \N \N \N \N 39851 P.umbellata Paraboea Paraboea umbellata \N \N \N \N \N 39852 C.antisyphiliticus Croton Croton antisyphiliticus \N \N \N \N \N 39853 E.brachylepis Ericameria Ericameria brachylepis chaparral goldenbush \N \N \N \N 39854 S.bona-nox Smilax Smilax bona-nox saw greenbrier \N \N \N \N 39855 M.andamanica Mangifera Mangifera andamanica \N \N \N \N \N 39856 S.ghaeri Scirpodendron Scirpodendron ghaeri \N \N \N \N \N 39857 P.negrosensis Pinanga Pinanga negrosensis \N \N \N \N \N 39858 S.grandis Sebaea Sebaea grandis \N \N \N \N \N 39859 F.penninervis Ferula Ferula penninervis \N \N \N \N \N 39860 A.ciliaris Alepidea Alepidea ciliaris \N \N \N \N \N 39861 Y.maculata Yushania Yushania maculata \N \N \N \N \N 39862 \N genus Mitrella \N \N \N \N \N 39863 D.burchellii Ditassa Ditassa burchellii \N \N \N \N \N 39864 \N genus Cuniculotinus \N \N \N \N \N 39865 C.festucacea Conostylis Conostylis festucacea \N \N \N \N \N 39866 A.tenuifolia Agalinis Agalinis tenuifolia \N \N \N \N \N 39867 P.tianschanica Poa Poa tianschanica \N \N \N \N \N 39868 S.hispida Stylosanthes Stylosanthes hispida \N \N \N \N \N 39869 T.microphylla Thymelaea Thymelaea microphylla \N \N \N \N \N 39870 M.pseudocallosa Mimosa Mimosa pseudocallosa \N \N \N \N \N 39871 \N genus Papuacalia \N \N \N \N \N 39872 L.sulphureus Lathyrus Lathyrus sulphureus snub pea \N \N \N \N 39873 T.pilulifera Trichogyne Trichogyne pilulifera \N \N \N \N \N 39874 H.MGC-2010 Helichrysum Helichrysum sp. MGC-2010 \N \N \N \N \N 39875 F.arenarium Funastrum Funastrum arenarium \N \N \N \N \N 39876 R.argentea Raillardella Raillardella argentea \N \N \N \N \N 39877 W.luteola Wahlenbergia Wahlenbergia luteola \N \N \N \N \N 39878 E.quadrata Euphorbia Euphorbia quadrata \N \N \N \N \N 39879 C.mutila Cryptandra Cryptandra mutila \N \N \N \N \N 39880 \N varietas Cananga odorata var. fruticosa \N \N \N \N \N 39881 E.variabile Erodium Erodium x variabile \N \N \N \N \N 39882 D.scriptum Dendrochilum Dendrochilum scriptum \N \N \N \N \N 39883 T.stuhlmannii Terminalia Terminalia stuhlmannii \N \N \N \N \N 39884 M.karroica Moraea Moraea karroica \N \N \N \N \N 39885 \N subspecies Castilleja affinis subsp. affinis \N \N \N \N \N 39886 P.sosnowskyi Pseudoroegneria Pseudoroegneria sosnowskyi \N \N \N \N \N 39887 H.pumilio Hoffmannseggia Hoffmannseggia pumilio \N \N \N \N \N 39888 S.sisymbriifolius Senecio Senecio sisymbriifolius \N \N \N \N \N 39889 H.ledifolium Helianthemum Helianthemum ledifolium \N \N \N \N \N 39890 L.chinensis Lilaeopsis Lilaeopsis chinensis \N \N \N \N \N 39891 C.benziei Chamaedorea Chamaedorea benziei \N \N \N \N \N 39892 M.primuliflora Monolena Monolena primuliflora \N \N \N \N \N 39893 B.colombiana Brayopsis Brayopsis colombiana \N \N \N \N \N 39894 M.campylostigma Montia Montia campylostigma \N \N \N \N \N 39895 M.hennisiana Maxillaria Maxillaria hennisiana \N \N \N \N \N 39896 H.arborescens Heteromorpha Heteromorpha arborescens \N \N \N \N \N 39897 M.caespitosa Mila Mila caespitosa \N \N \N \N \N 39898 P.undulatum Polygonum Polygonum undulatum \N \N \N \N \N 39900 P.pallens Phalaenopsis Phalaenopsis pallens \N \N \N \N \N 39901 H.taeniata Hypoestes Hypoestes taeniata \N \N \N \N \N 39902 C.loddigesii Cattleya Cattleya loddigesii \N \N \N \N \N 39903 \N subspecies Eudema nubigena subsp. remyana \N \N \N \N \N 39904 A.colubrina Anadenanthera Anadenanthera colubrina \N \N \N \N \N 39905 C.frondosa Chamaedorea Chamaedorea frondosa \N \N \N \N \N 39906 L.cernua Lethedon Lethedon cernua \N \N \N \N \N 39907 S.atomaria Senna Senna atomaria \N \N \N \N \N 39908 S.1538 Samadera Samadera sp. B-Fernando 1538 \N \N \N \N \N 39909 A.barteri Ancistrocladus Ancistrocladus barteri \N \N \N \N \N 39910 \N varietas Dicerandra immaculata var. savannarum \N \N \N \N \N 39911 \N genus Azilia \N \N \N \N \N 39912 \N subspecies Crepis foetida subsp. foetida \N \N \N \N \N 39913 V.spiralis Vallisneria Vallisneria spiralis \N \N \N \N \N 39914 S.bispinosa Sesbania Sesbania bispinosa dadon,katsakatsa,prickly sesban \N \N \N \N 39915 C.roseum Calyptridium Calyptridium roseum \N \N \N \N \N 39916 L.gibertianus Lupinus Lupinus gibertianus \N \N \N \N \N 39917 G.godefroyi Gagnepainia Gagnepainia godefroyi \N \N \N \N \N 39918 \N genus Camarotea \N \N \N \N \N 39919 P.garagaranum Piper Piper garagaranum \N \N \N \N \N 39920 P.avenacioides Piptochaetium Piptochaetium avenacioides \N \N \N \N \N 39921 P.superbiens Paphiopedilum Paphiopedilum superbiens \N \N \N \N \N 39922 E.centidens Euonymus Euonymus centidens \N \N \N \N \N 39923 C.varia Calamagrostis Calamagrostis varia \N \N \N \N \N 39924 S.hirta Sideritis Sideritis hirta \N \N \N \N \N 39925 H.erythraeum Haplophyllum Haplophyllum erythraeum \N \N \N \N \N 39926 E.clava Euphorbia Euphorbia clava \N \N \N \N \N 39927 \N genus Chimonanthus \N \N \N \N \N 39928 H.ouachitana Houstonia Houstonia ouachitana Ouachita bluet \N \N \N \N 39929 \N genus Xerochrysum \N \N \N \N \N 39930 \N genus Icacina \N \N \N \N \N 39931 S.pilosa Stevia Stevia pilosa \N \N \N \N \N 39932 S.longistyla Salaciopsis Salaciopsis longistyla \N \N \N \N \N 39933 P.compacta Protea Protea compacta \N \N \N \N \N 39934 S.jubae Solanum Solanum jubae \N \N \N \N \N 39935 P.tubata Pleurothallis Pleurothallis tubata \N \N \N \N \N 39936 P.pumillum Parvisedum Parvisedum pumillum \N \N \N \N \N 39937 P.vahliana Puccinellia Puccinellia vahliana \N \N \N \N \N 39938 A.violaceum Aconitum Aconitum violaceum \N \N \N \N \N 39939 T.nesiotica Tiquilia Tiquilia nesiotica \N \N \N \N \N 39940 B.seemannii Balaka Balaka seemannii \N \N \N \N \N 39941 C.raoulii Carex Carex raoulii \N \N \N \N \N 39942 \N genus Micropholis \N \N \N \N \N 39943 \N genus Agastache \N \N \N \N \N 39944 C.bicolor Cantua Cantua bicolor \N \N \N \N \N 39945 A.salicifolia Achillea Achillea salicifolia \N \N \N \N \N 39946 M.bachmannii Mammillaria Mammillaria bachmannii \N \N \N \N \N 39947 D.laevis Datura Datura laevis \N \N \N \N \N 39948 B.ramosa Bouteloua Bouteloua ramosa \N \N \N \N \N 39949 V.persica Varthemia Varthemia persica \N \N \N \N \N 39950 R.BG126 Ranunculus Ranunculus sp. BG126 \N \N \N \N \N 39951 \N genus Anemopaegma \N \N \N \N \N 39952 C.chinensis Cladopus Cladopus chinensis \N \N \N \N \N 39953 S.20010 Saussurea Saussurea cf. tatsienensis Liu 20010 \N \N \N \N \N 39954 E.glabella Epacris Epacris glabella \N \N \N \N \N 39955 E.acoroides Enhalus Enhalus acoroides \N \N \N \N \N 39956 \N varietas Litsea lancifolia var. grandifolia \N \N \N \N \N 39957 C.brachypetalum Cerastium Cerastium brachypetalum \N \N \N \N \N 39958 \N subspecies Cynara cardunculus subsp. flavescens \N \N \N \N \N 39959 L.revolutus Lithocarpus Lithocarpus revolutus \N \N \N \N \N 39960 P.saltatrix Psychotria Psychotria saltatrix \N \N \N \N \N 39961 A.polycladus Astragalus Astragalus polycladus \N \N \N \N \N 39962 C.tortisepalum Cymbidium Cymbidium tortisepalum \N \N \N \N \N 39963 V.s.n. Veronica Veronica sp. Oyama s.n. \N \N \N \N \N 39964 L.oerstedii Lockhartia Lockhartia oerstedii \N \N \N \N \N 39965 \N genus Osmadenia \N \N \N \N \N 39966 A.retivenea Acacia Acacia retivenea \N \N \N \N \N 39967 K.pinnatum Kingiodendron Kingiodendron pinnatum \N \N \N \N \N 39968 \N genus Dasyochloa \N \N \N \N \N 39969 P.pratensis Pterostylis Pterostylis pratensis \N \N \N \N \N 39970 A.hermannii Arachis Arachis hermannii \N \N \N \N \N 39971 A.urticifolia Agastache Agastache urticifolia \N \N \N \N \N 39972 J.americana Jamesia Jamesia americana \N \N \N \N \N 39973 P.hesperomannii Peperomia Peperomia hesperomannii \N \N \N \N \N 42307 \N genus Bowiea \N \N \N \N \N 39974 P.rosea Physokentia Physokentia rosea \N \N \N \N \N 39975 F.superba Ficus Ficus superba \N \N \N \N \N 39976 M.408 Maxillaria Maxillaria sp. DLS 408 \N \N \N \N \N 39977 Z.australis Zinowiewia Zinowiewia australis \N \N \N \N \N 39978 \N varietas Potentilla rivalis var. millegrana \N \N \N \N \N 39979 H.macrophylla Hydrangea Hydrangea macrophylla \N \N \N \N \N 39980 R.petraeum Ribes Ribes petraeum rock currant \N \N \N \N 39981 S.speciosa Selago Selago speciosa \N \N \N \N \N 39982 C.litoralis Corrigiola Corrigiola litoralis strapwort \N \N \N \N 39983 L.japonicum Lilium Lilium japonicum bamboo lily,sasa-yuri \N \N \N \N 39984 A.oxychlamys Aeschynanthus Aeschynanthus oxychlamys \N \N \N \N \N 39985 L.filifolia Lysimachia Lysimachia filifolia \N \N \N \N \N 39986 M.peruviana Mormolyca Mormolyca peruviana \N \N \N \N \N 39987 S.cernua Spiranthes Spiranthes cernua \N \N \N \N \N 39988 C.speciosus Cyrtanthus Cyrtanthus speciosus \N \N \N \N \N 39989 O.paniculata Onosma Onosma paniculata \N \N \N \N \N 39990 O.caesia Oxalis Oxalis caesia \N \N \N \N \N 39991 G.alutacea Guatteria Guatteria alutacea \N \N \N \N \N 39992 M.allenii Maxillaria Maxillaria allenii \N \N \N \N \N 39993 \N genus Landiopsis \N \N \N \N \N 39994 \N varietas Gleditsia japonica var. velutina rong mao zao jia \N \N \N \N 39995 E.lutea Elaeosticta Elaeosticta lutea \N \N \N \N \N 39996 \N genus Anoda \N \N \N \N \N 39997 V.caspia Viola Viola caspia \N \N \N \N \N 39998 A.cepa Allium Allium cepa onion \N \N \N \N 39999 C.platypetalum Combretum Combretum platypetalum \N \N \N \N \N 40000 K.socotrana Kraussia Kraussia socotrana \N \N \N \N \N 40001 \N varietas Pentameris pictigluma var. pictigluma \N \N \N \N \N 40002 P.condylata Pleurothallis Pleurothallis condylata \N \N \N \N \N 40003 C.nubigena Caucaea Caucaea nubigena \N \N \N \N \N 40004 L.nigra Lonicera Lonicera nigra \N \N \N \N \N 40005 C.constancei Cardamine Cardamine constancei Constance's bittercress \N \N \N \N 40006 \N genus Nertera \N \N \N \N \N 40007 R.phylicoides Raspalia Raspalia phylicoides \N \N \N \N \N 40008 \N family Melastomataceae \N \N \N \N \N 40009 A.ecklonii Anthochortus Anthochortus ecklonii \N \N \N \N \N 40010 \N varietas Panax vietnamensis var. fuscidiscus \N \N \N \N \N 40011 P.stiriaca Poa Poa stiriaca \N \N \N \N \N 40012 S.leptophyllus Senecio Senecio leptophyllus \N \N \N \N \N 40013 S.pectinata Sibara Sibara pectinata \N \N \N \N \N 40014 M.GW-BO12 Milicia Milicia cf. regia GW-BO12 \N \N \N \N \N 40015 A.tomentosa Anthemis Anthemis tomentosa \N \N \N \N \N 40016 A.hintonii Arracacia Arracacia hintonii \N \N \N \N \N 40017 C.gilanica Centaurea Centaurea gilanica \N \N \N \N \N 40018 C.maculaticaulis Crawfurdia Crawfurdia maculaticaulis \N \N \N \N \N 40019 S.thornei Syzygium Syzygium thornei \N \N \N \N \N 40020 O.nutans Oenothera Oenothera nutans \N \N \N \N \N 40021 N.bracteatus Napeanthus Napeanthus bracteatus \N \N \N \N \N 40022 D.corymbosa Dilatris Dilatris corymbosa \N \N \N \N \N 40023 \N genus Lomatium \N \N \N \N \N 40024 \N genus Climacoptera \N \N \N \N \N 40025 P.mongholica Ptilagrostis Ptilagrostis mongholica \N \N \N \N \N 40026 S.pillansii Stapeliopsis Stapeliopsis pillansii \N \N \N \N \N 40027 H.secundiflora Habenaria Habenaria secundiflora \N \N \N \N \N 40028 G.intricatum Galium Galium intricatum \N \N \N \N \N 40029 E.praecox Erica Erica praecox \N \N \N \N \N 40030 S.ruvu Solanum Solanum ruvu \N \N \N \N \N 40031 P.resiniferum Pittosporum Pittosporum resiniferum \N \N \N \N \N 40032 S.pamirica Stuckenia Stuckenia pamirica \N \N \N \N \N 40033 S.konishii Symplocos Symplocos konishii \N \N \N \N \N 40034 D.palustris Dirca Dirca palustris leatherwood \N \N \N \N 40035 T.sinensis Tirpitzia Tirpitzia sinensis \N \N \N \N \N 40036 S.humile Satyrium Satyrium humile \N \N \N \N \N 40037 \N genus Noccaea \N \N \N \N \N 40038 E.microcarpa Eleocharis Eleocharis microcarpa \N \N \N \N \N 40039 B.anisophylla Boerhavia Boerhavia anisophylla \N \N \N \N \N 40040 \N genus Neomezia \N \N \N \N \N 40041 D.ornatissima Downingia Downingia ornatissima \N \N \N \N \N 40042 T.podolicus Tragopogon Tragopogon podolicus \N \N \N \N \N 40043 H.humiriifolium Hebepetalum Hebepetalum humiriifolium \N \N \N \N \N 40044 \N genus Iriartea \N \N \N \N \N 40045 P.scoparia Polygala Polygala scoparia \N \N \N \N \N 40046 M.hossei Mussaenda Mussaenda hossei \N \N \N \N \N 40047 P.prostratum Polycarpon Polycarpon prostratum \N \N \N \N \N 40048 C.roseum Cestrum Cestrum roseum \N \N \N \N \N 40049 U.laciniata Urera Urera laciniata \N \N \N \N \N 40050 R.hedypnois Rhagadiolus Rhagadiolus hedypnois \N \N \N \N \N 40051 K.polyphylla Kyllingiella Kyllingiella polyphylla \N \N \N \N \N 40052 R.lutea Rhexia Rhexia lutea \N \N \N \N \N 40053 \N varietas Platymiscium trinitatis var. trinitatis \N \N \N \N \N 40054 \N genus Sopubia \N \N \N \N \N 40055 S.B0188 Sparganium Sparganium sp. B0188 \N \N \N \N \N 40056 H.sarmentosa Halerpestes Halerpestes sarmentosa \N \N \N \N \N 40057 S.triangulata Schoenoplectiella Schoenoplectiella triangulata \N \N \N \N \N 40058 C.cretense Colchicum Colchicum cretense \N \N \N \N \N 40059 \N subspecies Mammillaria pondii subsp. setispina \N \N \N \N \N 40060 S.littoreus Spinifex Spinifex littoreus \N \N \N \N \N 40061 C.morii Chrysanthemum Chrysanthemum morii \N \N \N \N \N 40062 A.aggregata Arenaria Arenaria aggregata \N \N \N \N \N 40063 N.sericea Nama Nama sericea \N \N \N \N \N 40064 G.bellidifolia Gentianella Gentianella bellidifolia \N \N \N \N \N 40065 A.pilosum Aframomum Aframomum pilosum \N \N \N \N \N 40066 S.hyperboreum Sparganium Sparganium hyperboreum \N \N \N \N \N 40067 C.bruynsii Conophytum Conophytum bruynsii \N \N \N \N \N 40068 \N subspecies Synaphea spinulosa subsp. major \N \N \N \N \N 40069 C.macilenta Cousinia Cousinia macilenta \N \N \N \N \N 40070 L.procerum Leucadendron Leucadendron procerum \N \N \N \N \N 40071 \N tribe Acantheae \N \N \N \N \N 40072 G.pauciflora Garcinia Garcinia pauciflora \N \N \N \N \N 40073 A.chinensis Abelia Abelia chinensis \N \N \N \N \N 40074 O.strictum Orthoceras Orthoceras strictum \N \N \N \N \N 40075 B.militaris Bactris Bactris militaris \N \N \N \N \N 40076 C.wiegandii Carex Carex wiegandii \N \N \N \N \N 40077 C.labiata Cattleya Cattleya labiata \N \N \N \N \N 40078 P.eximia Primula Primula eximia \N \N \N \N \N 40079 P.grandifolia Pearsonia Pearsonia grandifolia \N \N \N \N \N 40080 C.burtonii Cyclopia Cyclopia burtonii \N \N \N \N \N 40081 \N genus Orectanthe \N \N \N \N \N 40082 G.armeniaca Gongora Gongora armeniaca \N \N \N \N \N 40083 P.fragrantissimum Philodendron Philodendron fragrantissimum \N \N \N \N \N 40084 T.fragile Thesidium Thesidium fragile \N \N \N \N \N 40085 B.disticha Burmannia Burmannia disticha \N \N \N \N \N 40086 \N no rank Spathodea/Coleeae clade unassigned \N \N \N \N \N 40087 \N genus Gillenia \N \N \N \N \N 40088 R.coelestis Rhynchostylis Rhynchostylis coelestis \N \N \N \N \N 40089 I.maracandica Iris Iris maracandica \N \N \N \N \N 40090 D.campanulata Drymocallis Drymocallis campanulata \N \N \N \N \N 40091 I.auristellae Inga Inga auristellae \N \N \N \N \N 40092 S.wendlandii Solanum Solanum wendlandii giant potatocreeper \N \N \N \N 40093 P.caucalifolium Pelargonium Pelargonium caucalifolium \N \N \N \N \N 40094 H.bastetanum Haplophyllum Haplophyllum bastetanum \N \N \N \N \N 40095 P.ussuriensis Pyrus Pyrus ussuriensis Harbin pear,qiu zi li \N \N \N \N 40096 P.schamurinii Papaver Papaver schamurinii \N \N \N \N \N 40097 M.cinereum Melampodium Melampodium cinereum \N \N \N \N \N 40098 K.africana Kedrostis Kedrostis africana \N \N \N \N \N 40099 A.hyalinum Allium Allium hyalinum \N \N \N \N \N 40100 B.warnockii Bouteloua Bouteloua warnockii \N \N \N \N \N 40101 K.nemoralis Kyllinga Kyllinga nemoralis \N \N \N \N \N 40102 S.incompletum Sorghastrum Sorghastrum incompletum \N \N \N \N \N 40103 P.racemosum Panicum Panicum racemosum \N \N \N \N \N 40104 H.viridulum Haplophyllum Haplophyllum viridulum \N \N \N \N \N 40105 H.parviflorus Hybanthus Hybanthus parviflorus \N \N \N \N \N 40106 \N varietas Brazoria truncata var. pulcherrima \N \N \N \N \N 40107 P.eriantherus Penstemon Penstemon eriantherus \N \N \N \N \N 40108 \N genus Pyrenacantha \N \N \N \N \N 40109 S.campanulatum Sedum Sedum campanulatum \N \N \N \N \N 40110 S.officinale Schoenocaulon Schoenocaulon officinale sabadilla \N \N \N \N 40111 N.SH-2010 Nototrichium Nototrichium sp. SH-2010 \N \N \N \N \N 40112 F.koidzumiana Fritillaria Fritillaria koidzumiana \N \N \N \N \N 40113 S.vagans Samolus Samolus vagans Chiricahua Mountain brookweed \N \N \N \N 40114 \N genus Cattleya \N \N \N \N \N 40115 C.245_Iran Cousinia Cousinia sp. 245_Iran \N \N \N \N \N 40116 G.magellanica Gunnera Gunnera magellanica \N \N \N \N \N 40117 P.madagascariensis Physena Physena madagascariensis \N \N \N \N \N 40118 A.lanosa Aristida Aristida lanosa \N \N \N \N \N 40119 S.andamanensis Strobilanthes Strobilanthes andamanensis \N \N \N \N \N 40120 R.ciliaris Rhynchospora Rhynchospora ciliaris \N \N \N \N \N 40121 S.aptera Stubendorffia Stubendorffia aptera \N \N \N \N \N 40122 K.diplocrater Kosteletzkya Kosteletzkya diplocrater \N \N \N \N \N 40123 I.setosa Ipomoea Ipomoea setosa \N \N \N \N \N 40124 T.spruceanum Thyrsodium Thyrsodium spruceanum \N \N \N \N \N 40125 B.hamiltonii Bupleurum Bupleurum hamiltonii \N \N \N \N \N 40126 M.lasiandra Melaleuca Melaleuca lasiandra \N \N \N \N \N 40127 C.cuneata Calotis Calotis cuneata \N \N \N \N \N 40128 V.atroviolacea Viola Viola atroviolacea \N \N \N \N \N 40129 C.apiculatum Combretum Combretum apiculatum \N \N \N \N \N 40130 D.strigosa Drymonia Drymonia strigosa \N \N \N \N \N 40131 J.squarrosa Jaborosa Jaborosa squarrosa \N \N \N \N \N 40132 H.halodendron Halimodendron Halimodendron halodendron \N \N \N \N \N 40133 \N genus Tectiphiala \N \N \N \N \N 40134 E.recurvifolia Erica Erica recurvifolia \N \N \N \N \N 40135 H.radiatus Hibiscus Hibiscus radiatus \N \N \N \N \N 40136 C.CgCk Cirsium Cirsium sp. CgCk \N \N \N \N \N 40137 A.omeiense Allium Allium omeiense \N \N \N \N \N 40138 \N genus Meiogyne \N \N \N \N \N 40139 C.platyphylla Cyrtandra Cyrtandra platyphylla \N \N \N \N \N 40140 S.terminalis Sarcocornia Sarcocornia terminalis \N \N \N \N \N 40141 O.toachicum Oncidium Oncidium toachicum \N \N \N \N \N 40142 P.vaginatum Pappophorum Pappophorum vaginatum \N \N \N \N \N 40143 M.monanthos Morisia Morisia monanthos \N \N \N \N \N 40144 R.keleticum Rhododendron Rhododendron keleticum \N \N \N \N \N 40145 H.aggregata Henriettella Henriettella aggregata \N \N \N \N \N 40146 \N genus Centaurothamnus \N \N \N \N \N 40147 C.difficilis Coryphantha Coryphantha difficilis \N \N \N \N \N 40148 H.sharsmithiae Hesperolinon Hesperolinon sharsmithiae \N \N \N \N \N 40149 C.augagneuri Coffea Coffea augagneuri \N \N \N \N \N 40150 M.huetii Mercurialis Mercurialis huetii \N \N \N \N \N 40151 D.choconiana Dorstenia Dorstenia choconiana \N \N \N \N \N 40152 L.pumila Lycoris Lycoris chinensis x Lycoris radiata var. pumila \N \N \N \N \N 40153 C.littorale Centaurium Centaurium erythraea x Centaurium littorale \N \N \N \N \N 40154 \N varietas Allium canadense var. canadense \N \N \N \N \N 40155 P.bavinum Piper Piper bavinum \N \N \N \N \N 40156 A.2536 Aulotandra Aulotandra cf. trigonocarpa Davis 2536 \N \N \N \N \N 40157 D.sergioi Dracula Dracula sergioi \N \N \N \N \N 40158 R.bulbosus Ranunculus Ranunculus bulbosus \N \N \N \N \N 40159 D.01-6848 Distichochlamys Distichochlamys sp. Kress 01-6848 \N \N \N \N \N 40160 S.chmielewskii Lycopersicon Solanum chmielewskii \N \N \N \N \N 40161 S.incomta Stictocardia Stictocardia incomta \N \N \N \N \N 40162 \N genus Tchihatchewia \N \N \N \N \N 40163 H.decumbens Haageocereus Haageocereus decumbens \N \N \N \N \N 40164 \N subspecies Eucalyptus gittinsii subsp. gittinsii \N \N \N \N \N 40165 D.pinnata Dyssodia Dyssodia pinnata \N \N \N \N \N 40166 A.subrotundifolius Artocarpus Artocarpus subrotundifolius \N \N \N \N \N 40167 S.pinnata Stanleya Stanleya pinnata \N \N \N \N \N 40168 C.capricornia Corymbia Corymbia capricornia \N \N \N \N \N 40169 L.terrestris Liparis Liparis terrestris \N \N \N \N \N 40170 E.dielsii Eragrostis Eragrostis dielsii \N \N \N \N \N 40171 C.gasteenii Coix Coix gasteenii \N \N \N \N \N 40172 I.cavallii Indigofera Indigofera cavallii \N \N \N \N \N 40173 A.tanzaniensis Ancistrocladus Ancistrocladus tanzaniensis \N \N \N \N \N 40174 L.ampla Lecythis Lecythis ampla \N \N \N \N \N 40175 V.kawakamii Valeriana Valeriana kawakamii \N \N \N \N \N 40176 P.nervosa Poa Poa nervosa \N \N \N \N \N 40177 M.constricta Microthelys Microthelys constricta \N \N \N \N \N 40178 \N genus Wyethia \N \N \N \N \N 40179 T.crinita Trichloris Trichloris crinita \N \N \N \N \N 40180 E.laevicarpa Eschweilera Eschweilera laevicarpa \N \N \N \N \N 40181 U.kirkii Urostemon Urostemon kirkii \N \N \N \N \N 40182 C.flabellata Crataegus Crataegus flabellata fanleaf hawthorn \N \N \N \N 40183 P.ayacuchoana Peperomia Peperomia ayacuchoana \N \N \N \N \N 40184 N.nelsonii Nolina Nolina nelsonii \N \N \N \N \N 40185 S.mattiazzii Simethis Simethis mattiazzii \N \N \N \N \N 40186 L.morrowii Lonicera Lonicera morrowii \N \N \N \N \N 40187 X.jupicai Xyris Xyris jupicai \N \N \N \N \N 40188 B.lutescens Burmannia Burmannia lutescens \N \N \N \N \N 40189 C.confusa Cribbia Cribbia confusa \N \N \N \N \N 40190 T.pamirica Tetracme Tetracme pamirica \N \N \N \N \N 40191 N.gymnamphora Nepenthes Nepenthes gymnamphora \N \N \N \N \N 45145 \N genus Codonanthe \N \N \N \N \N 40192 M.virletii Muhlenbergia Muhlenbergia virletii \N \N \N \N \N 40193 R.GKB-2005 Rhododendron Rhododendron aff. alternans GKB-2005 \N \N \N \N \N 40194 \N subspecies Hippophae rhamnoides subsp. turkestanica \N \N \N \N \N 40195 O.compressus Ornithopus Ornithopus compressus \N \N \N \N \N 40196 I.confertiflorum Iochroma Iochroma confertiflorum \N \N \N \N \N 40197 L.johnstonii Luzula Luzula johnstonii \N \N \N \N \N 40198 \N genus Gomortega \N \N \N \N \N 40199 S.leucophylla Salvia Salvia leucophylla \N \N \N \N \N 40200 O.elatior Opuntia Opuntia elatior \N \N \N \N \N 40201 H.palustris Hottonia Hottonia palustris \N \N \N \N \N 40202 C.glabrescens Cyclotrichium Cyclotrichium glabrescens \N \N \N \N \N 40203 S.76GR00102 Souroubea Souroubea sp. 76GR00102 \N \N \N \N \N 40204 \N genus Aphanisma \N \N \N \N \N 40205 L.ligulata Lasiacis Lasiacis ligulata \N \N \N \N \N 40206 \N genus Aphanamixis \N \N \N \N \N 40207 D.intricata Dodonaea Dodonaea intricata \N \N \N \N \N 40208 P.cyparissias Polygala Polygala cyparissias \N \N \N \N \N 40209 C.adnata Cissus Cissus adnata \N \N \N \N \N 40210 \N family Barbeuiaceae \N \N \N \N \N 40211 B.cusickii Boechera Boechera cusickii \N \N \N \N \N 40212 \N genus Exalaria \N \N \N \N \N 40213 S.gerrardianum Sideroxylon Sideroxylon gerrardianum \N \N \N \N \N 40214 \N subspecies Castilleja applegatei subsp. pinetorum \N \N \N \N \N 40215 G.abbreviatus Gladiolus Gladiolus abbreviatus \N \N \N \N \N 40216 M.tenuiflora Mimosa Mimosa tenuiflora \N \N \N \N \N 40217 \N family Petermanniaceae \N \N \N \N \N 40218 P.dinklagei Panicum Panicum dinklagei \N \N \N \N \N 40219 C.cenepense Cremastosperma Cremastosperma cenepense \N \N \N \N \N 40220 C.MG350 Clusia Clusia cf. multiflora MG350 \N \N \N \N \N 40221 D.abyssinica Dioscorea Dioscorea abyssinica \N \N \N \N \N 40222 I.conyza Inula Inula conyza \N \N \N \N \N 40223 \N genus Staberoha \N \N \N \N \N 40224 T.S5642 unclassified Taraxacum Taraxacum (sect. Parvula) sp. S5642 \N \N \N \N \N 40225 L.hispanicus Leontodon Leontodon hispanicus \N \N \N \N \N 40226 \N subspecies Digitalis purpurea subsp. mariana \N \N \N \N \N 40227 \N genus Selenicereus \N \N \N \N \N 40228 \N genus Syntriandrium \N \N \N \N \N 40229 I.ionii Indigofera Indigofera ionii \N \N \N \N \N 40230 S.chorassanica Salsola Salsola chorassanica \N \N \N \N \N 40231 P.rotgesii Phalaris Phalaris rotgesii \N \N \N \N \N 40232 C.glauca Cliffortia Cliffortia glauca \N \N \N \N \N 40233 T.omeiense Typhonium Typhonium omeiense \N \N \N \N \N 40234 \N genus Tribonanthes \N \N \N \N \N 40235 P.UG-2006 Populus Populus sp. UG-2006 \N \N \N \N \N 40236 S.stolonifera Saxifraga Saxifraga stolonifera creeping saxifrage,hu er cao \N \N \N \N 40237 M.foetidus Microlobius Microlobius foetidus \N \N \N \N \N 40238 V.manningiana Villarsia Villarsia manningiana \N \N \N \N \N 40239 \N genus Mesogyne \N \N \N \N \N 40240 G.semi-infera Gaultheria Gaultheria semi-infera \N \N \N \N \N 40241 \N subspecies Penstemon barbatus subsp. torreyi \N \N \N \N \N 40242 H.elodes Hypericum Hypericum elodes \N \N \N \N \N 40243 R.commersonii Rheedia Rheedia commersonii \N \N \N \N \N 40244 D.mopsus Dracula Dracula mopsus \N \N \N \N \N 40245 D.exile Dendrobium Dendrobium exile \N \N \N \N \N 40246 P.84914 Philodendron Philodendron sp. Croat 84914 \N \N \N \N \N 40247 M.atroviolacea Mandevilla Mandevilla atroviolacea \N \N \N \N \N 40248 S.macrophylla Sagittaria Sagittaria macrophylla \N \N \N \N \N 40249 V.415 Vitis Vitis sp. Nie 415 \N \N \N \N \N 40250 M.pringlei Monarda Monarda pringlei \N \N \N \N \N 40251 A.monanthos Anacyclus Anacyclus monanthos \N \N \N \N \N 40252 \N varietas Bloomeria crocea var. aurea \N \N \N \N \N 40253 M.fractiflexa Maxillaria Maxillaria fractiflexa \N \N \N \N \N 40254 \N genus Ballota \N \N \N \N \N 40255 B.stormae Balmea Balmea stormae \N \N \N \N \N 40256 C.hoeijeri Cyrtochilum Cyrtochilum hoeijeri \N \N \N \N \N 40257 P.pubescens Pilea Pilea pubescens \N \N \N \N \N 40258 C.'Komolac' Cardamine Cardamine sp. 'Komolac' \N \N \N \N \N 40259 \N genus Malus \N \N \N \N \N 40260 R.fragrans Rhododendron Rhododendron x fragrans \N \N \N \N \N 40261 \N genus Calycophysum \N \N \N \N \N 40262 \N genus Cyrtidiorchis \N \N \N \N \N 40263 Z.setulosum Zanthoxylum Zanthoxylum setulosum \N \N \N \N \N 40264 D.elbursense Delphinium Delphinium elbursense \N \N \N \N \N 40265 \N genus Platydesma \N \N \N \N \N 40266 D.poicillantha Dichaea Dichaea poicillantha \N \N \N \N \N 40267 V.riviniana Viola Viola riviniana wood violet \N \N \N \N 40268 \N genus Knorringia \N \N \N \N \N 40269 P.vernicosa Pouteria Pouteria vernicosa \N \N \N \N \N 40270 M.lanigera Medicago Medicago lanigera \N \N \N \N \N 40271 N.spathulata Nemcia Nemcia spathulata \N \N \N \N \N 40272 I.laurina Ilex Ilex laurina \N \N \N \N \N 40273 \N genus Hodgkinsonia \N \N \N \N \N 40274 T.volcanica Triplarina Triplarina volcanica \N \N \N \N \N 40275 A.crithmifolia Artemisia Artemisia crithmifolia \N \N \N \N \N 40276 D.pentactis Deinandra Deinandra pentactis \N \N \N \N \N 40277 C.ADW-2005-2 Castilleja Castilleja sp. ADW-2005-2 \N \N \N \N \N 40278 L.speciosa Livistona Livistona speciosa \N \N \N \N \N 40279 H.JANB-2011 Habenaria Habenaria sp. 14 JANB-2011 \N \N \N \N \N 40280 S.scullyi Spiloxene Spiloxene scullyi \N \N \N \N \N 40281 V.tomentosa Viola Viola tomentosa \N \N \N \N \N 40282 P.piscina Protea Protea piscina \N \N \N \N \N 40283 D.djettii Dorstenia Dorstenia djettii \N \N \N \N \N 40284 C.herzfeldianum Cycnium Cycnium herzfeldianum \N \N \N \N \N 40285 A.glandulosa Aquilegia Aquilegia glandulosa \N \N \N \N \N 40286 \N genus Sicana \N \N \N \N \N 40287 \N subspecies Psychotria costivenia subsp. costivenia \N \N \N \N \N 40288 \N genus Pachyanthus \N \N \N \N \N 40289 C.olivieri Crocus Crocus olivieri \N \N \N \N \N 40290 P.caldenia Prosopis Prosopis caldenia \N \N \N \N \N 40291 H.rhamnoides Hippophae Hippophae rhamnoides sallowthorn,sea buckthorn,sea-buckthorn \N \N \N \N 40293 D.nodosa Domingoa Domingoa nodosa \N \N \N \N \N 40294 U.microcrater Urceolina Urceolina microcrater \N \N \N \N \N 40295 P.fimbriata Phalaenopsis Phalaenopsis fimbriata \N \N \N \N \N 40296 M.perennis Mentzelia Mentzelia perennis \N \N \N \N \N 40297 M.spicata Milula Milula spicata \N \N \N \N \N 40298 H.olympicum Hieracium Hieracium olympicum \N \N \N \N \N 40299 \N genus Narenga \N \N \N \N \N 40300 A.striatus Astragalus Astragalus striatus \N \N \N \N \N 40301 C.serratodens Carex Carex serratodens \N \N \N \N \N 40302 V.annua Vallisneria Vallisneria annua \N \N \N \N \N 40303 L.DRC-2004 Lathyrus Lathyrus sp. DRC-2004 \N \N \N \N \N 40304 A.parryi Aesculus Aesculus parryi \N \N \N \N \N 40305 \N genus Roussea \N \N \N \N \N 40306 \N genus Rostraria \N \N \N \N \N 40307 \N genus Piriqueta \N \N \N \N \N 40308 \N subspecies Narcissus papyraceus subsp. pachybolbus \N \N \N \N \N 40309 I.haplophylla Indigofera Indigofera haplophylla \N \N \N \N \N 40310 L.galioides Lachemilla Lachemilla galioides \N \N \N \N \N 40311 S.11260 Schefflera Schefflera aff. sandiana Neill 11260 \N \N \N \N \N 40312 A.sungpanense Aconitum Aconitum sungpanense \N \N \N \N \N 40313 D.pruriens Davidsonia Davidsonia pruriens \N \N \N \N \N 40314 \N no rank Apiaceae incertae sedis \N \N \N \N \N 40315 T.petropavlovskyi Triticum Triticum petropavlovskyi \N \N \N \N \N 40316 C.maritima Cakile Cakile maritima European sea-rocket,European searocket \N \N \N \N 40317 C.subtilis Centaurea Centaurea subtilis \N \N \N \N \N 40318 P.grossulariifolia Polemannia Polemannia grossulariifolia \N \N \N \N \N 40319 \N genus Moenchia \N \N \N \N \N 40320 E.fragifera Euphorbia Euphorbia fragifera \N \N \N \N \N 40321 H.arbuscula Hesperomannia Hesperomannia arbuscula \N \N \N \N \N 40322 T.lanceolata Thermopsis Thermopsis lanceolata \N \N \N \N \N 40323 C.subochreata Chassalia Chassalia subochreata \N \N \N \N \N 40324 V.bravoensis Vachellia Vachellia bravoensis \N \N \N \N \N 40325 M.MA32 Microtis Microtis aff. angusii MA32 \N \N \N \N \N 40326 B.minor Begonia Begonia minor \N \N \N \N \N 40327 R.altiscandens Randia Randia altiscandens \N \N \N \N \N 40328 D.crinitus Dianthus Dianthus crinitus \N \N \N \N \N 40329 A.spurium Allium Allium spurium \N \N \N \N \N 40330 T.ananassae Tapeinochilos Tapeinochilos ananassae \N \N \N \N \N 40331 C.gracilis Chapmannia Chapmannia gracilis \N \N \N \N \N 40332 P.vesticula Persea Persea vesticula \N \N \N \N \N 40333 B.scandens Billardiera Billardiera scandens \N \N \N \N \N 40334 G.varicosa Gomesa Gomesa varicosa \N \N \N \N \N 40335 \N genus Xysmalobium \N \N \N \N \N 40336 I.aquatilis Impatiens Impatiens aquatilis \N \N \N \N \N 40337 L.incrassatum Lithospermum Lithospermum incrassatum \N \N \N \N \N 40338 P.beketovii Parrya Parrya beketovii \N \N \N \N \N 40339 V.coerulescens Vanda Vanda coerulescens \N \N \N \N \N 40340 S.tomentosa Scaevola Scaevola tomentosa \N \N \N \N \N 40341 G.pilosa Gentianella Gentianella pilosa \N \N \N \N \N 40342 C.arborea Coriaria Coriaria arborea \N \N \N \N \N 40343 \N genus Agropyron \N \N \N \N \N 40344 K.campanulata Kalanchoe Kalanchoe campanulata \N \N \N \N \N 40345 M.splendens Myrcia Myrcia splendens \N \N \N \N \N 40346 O.barrelieri Oxalis Oxalis barrelieri \N \N \N \N \N 40347 S.sphenanthera Schisandra Schisandra sphenanthera lemon-wood \N \N \N \N 40348 B.crispipila Begonia Begonia crispipila \N \N \N \N \N 40349 T.elongatum Thrixspermum Thrixspermum elongatum \N \N \N \N \N 40350 P.LA-2002 Psychotria Psychotria aff. riparia LA-2002 \N \N \N \N \N 40351 C.setosa Ctenanthe Ctenanthe setosa \N \N \N \N \N 40352 \N subspecies Oenothera deltoides subsp. ambigua \N \N \N \N \N 40353 Z.GG-2004 Zelkova Zelkova cf. serrata GG-2004 \N \N \N \N \N 40354 A.volkeri Aeonium Aeonium volkeri \N \N \N \N \N 40355 P.foetens Pleurospermum Pleurospermum foetens \N \N \N \N \N 40356 P.rheedii Phyllanthus Phyllanthus rheedii \N \N \N \N \N 40357 L.rhodopaeum Lilium Lilium rhodopaeum \N \N \N \N \N 40358 S.debilis Siphocodon Siphocodon debilis \N \N \N \N \N 40359 E.fruticosum Echiochilon Echiochilon fruticosum \N \N \N \N \N 40360 M.scabra Melothria Melothria scabra \N \N \N \N \N 40361 C.mahafalense Cynanchum Cynanchum mahafalense \N \N \N \N \N 40362 F.rimosivaginus Ferrocalamus Ferrocalamus rimosivaginus \N \N \N \N \N 40363 M.dolichostachya Mariosousa Mariosousa dolichostachya quiebra-hacha \N \N \N \N 42499 \N genus Sphaerantia \N \N \N \N \N 40364 S.leontodontoides Saussurea Saussurea leontodontoides \N \N \N \N \N 40365 \N genus Aliella \N \N \N \N \N 40366 M.fenestralis Moraea Moraea fenestralis \N \N \N \N \N 40367 D.jianshuiensis Dendrocalamus Dendrocalamus jianshuiensis \N \N \N \N \N 40368 E.floccifolia Eleusine Eleusine floccifolia \N \N \N \N \N 40369 P.heptaphylla Potentilla Potentilla heptaphylla \N \N \N \N \N 40370 \N subspecies Iris hartwegii subsp. pinetorum \N \N \N \N \N 40371 T.duckei Trigynaea Trigynaea duckei \N \N \N \N \N 40372 G.elata Glyceria Glyceria elata \N \N \N \N \N 40373 M.foetida Mimosa Mimosa foetida \N \N \N \N \N 40374 G.ferganensis Galagania Galagania ferganensis \N \N \N \N \N 40375 S.rugosa Stenogyne Stenogyne rugosa \N \N \N \N \N 40376 I.hexagona Iris Iris hexagona \N \N \N \N \N 40377 \N varietas Ceanothus americanus var. pitcheri \N \N \N \N \N 40378 A.foliosa Ainsliaea Ainsliaea foliosa \N \N \N \N \N 40379 S.wightii Stemonoporus Stemonoporus wightii \N \N \N \N \N 40380 P.aimae Passiflora Passiflora aimae \N \N \N \N \N 40381 C.jorullense Cirsium Cirsium jorullense \N \N \N \N \N 40382 C.arcticum Chrysanthemum Chrysanthemum arcticum \N \N \N \N \N 40383 P.decipiens Persicaria Persicaria decipiens willow-weed \N \N \N \N 40384 P.humilis Phyllobolus Phyllobolus humilis \N \N \N \N \N 40385 N.caerulea Nemesia Nemesia caerulea \N \N \N \N \N 40386 F.prangifolia Ferula Ferula prangifolia \N \N \N \N \N 40387 P.treyvaudii Pimelea Pimelea treyvaudii \N \N \N \N \N 40388 M.dodecandra Miconia Miconia dodecandra \N \N \N \N \N 40389 H.negevensis Hormuzakia Hormuzakia negevensis \N \N \N \N \N 40390 F.heliophila Farsetia Farsetia heliophila \N \N \N \N \N 40391 H.SH-2010 Homalium Homalium sp. SH-2010 \N \N \N \N \N 40392 L.purpureum Lamium Lamium purpureum purple dead-nettle,red archangel \N \N \N \N 40393 \N genus Ribes \N \N \N \N \N 40394 L.spinosa Lasia Lasia spinosa \N \N \N \N \N 40395 C.harveyana Ceratandra Ceratandra harveyana \N \N \N \N \N 40396 V.vinifera Vitis Vitis vinifera wine grape \N \N \N \N 40397 S.hirsutissimum Solanum Solanum hirsutissimum \N \N \N \N \N 40398 S.palustris Sonchus Sonchus palustris \N \N \N \N \N 40399 M.denticulata Macaranga Macaranga denticulata \N \N \N \N \N 40400 T.elata Tongoloa Tongoloa elata \N \N \N \N \N 40401 E.hemsleyanum Eryngium Eryngium hemsleyanum \N \N \N \N \N 40402 O.multicaulis Otiophora Otiophora multicaulis \N \N \N \N \N 40403 \N genus Dionysia \N \N \N \N \N 40404 P.foliata Pseudovanilla Pseudovanilla foliata \N \N \N \N \N 40405 E.glaucescens Elymus Elymus glaucescens \N \N \N \N \N 40406 C.splendens Cyrtandra Cyrtandra splendens \N \N \N \N \N 40407 S.linariifolia Stackhousia Stackhousia linariifolia \N \N \N \N \N 40408 P.micropetala Passiflora Passiflora micropetala \N \N \N \N \N 40409 A.nessorhina Atriplex Atriplex nessorhina \N \N \N \N \N 40410 B.striatus Bromus Bromus striatus \N \N \N \N \N 40411 P.loranthophylla Pleurothallis Pleurothallis loranthophylla \N \N \N \N \N 40412 R.quadrangularis Rhigospira Rhigospira quadrangularis \N \N \N \N \N 40413 B.lanceolatus Bromus Bromus lanceolatus Mediterranean brome \N \N \N \N 40414 G.retrorsum Geranium Geranium retrorsum New Zealand geranium \N \N \N \N 40415 S.1709 Sinningia Sinningia sp. Romero et al. 1709 \N \N \N \N \N 40416 A.buxifolia Alyxia Alyxia buxifolia \N \N \N \N \N 40417 S.surru Saribus Saribus surru \N \N \N \N \N 40418 A.occidentale Achnatherum Achnatherum occidentale \N \N \N \N \N 40419 A.griffithii Arisaema Arisaema griffithii \N \N \N \N \N 40420 \N tribe Stachydeae \N \N \N \N \N 40421 B.cuneata Babiana Babiana cuneata \N \N \N \N \N 40422 T.griffithii Toxicodendron Toxicodendron griffithii \N \N \N \N \N 40423 \N varietas Mulguraea aspera var. longidentata \N \N \N \N \N 40424 A.galeata Aspalathus Aspalathus galeata \N \N \N \N \N 40425 X.glabriuscula Xylorhiza Xylorhiza glabriuscula \N \N \N \N \N 40426 \N genus Poraqueiba \N \N \N \N \N 40427 A.mayana Acacia Acacia mayana \N \N \N \N \N 40428 A.PS2007MT01 Aconitum Aconitum sp. PS2007MT01 \N \N \N \N \N 40429 F.tortifolia Fritillaria Fritillaria tortifolia \N \N \N \N \N 40430 A.deltoidea Aubrieta Aubrieta deltoidea \N \N \N \N \N 40431 B.frutescens Bonellia Bonellia frutescens \N \N \N \N \N 40432 P.hakusanensis Plantago Plantago hakusanensis \N \N \N \N \N 40433 E.bracteata Euphorbia Euphorbia bracteata \N \N \N \N \N 40434 D.XMW-2002-12 Dendrobium Dendrobium sp. XMW-2002-12 \N \N \N \N \N 40435 B.1 Begonia Begonia sp. Thailand 1 \N \N \N \N \N 40436 S.pseudoarnica Senecio Senecio pseudoarnica seaside ragwort \N \N \N \N 40437 E.halimifolia Encelia Encelia halimifolia \N \N \N \N \N 40438 P.falcata Persoonia Persoonia falcata \N \N \N \N \N 40439 B.3336 Borojoa Borojoa sp. Bremer et al. 3336 \N \N \N \N \N 40440 \N genus Opuntia prickly-pears \N \N \N \N 40441 D.crinitus Daucus Daucus crinitus \N \N \N \N \N 40442 \N family Centroplacaceae \N \N \N \N \N 40443 E.magistrati Erica Erica magistrati \N \N \N \N \N 40444 R.2664 Rinorea Rinorea cf. kemoensis Sonke 2664 \N \N \N \N \N 40445 T.asiatica Toddalia Toddalia asiatica \N \N \N \N \N 40446 S.cordobensis Sphaeralcea Sphaeralcea cordobensis \N \N \N \N \N 40447 T.trifoliatum Thaspium Thaspium trifoliatum \N \N \N \N \N 40448 \N subspecies Casuarina equisetifolia subsp. equisetifolia \N \N \N \N \N 40449 H.1118 Heterospathe Heterospathe sp. Baker 1118 \N \N \N \N \N 40450 S.subnemoralis Senecio Senecio subnemoralis \N \N \N \N \N 40451 M.nervosa Melaleuca Melaleuca nervosa \N \N \N \N \N 40452 D.christophersenii Deschampsia Deschampsia christophersenii \N \N \N \N \N 40453 P.subulata Plagiostachys Plagiostachys subulata \N \N \N \N \N 40454 D.lautumia Dichelachne Dichelachne lautumia \N \N \N \N \N 40455 C.alma Carex Carex alma \N \N \N \N \N 40456 W.linifolia Wahlenbergia Wahlenbergia linifolia \N \N \N \N \N 40457 \N genus Synanthes \N \N \N \N \N 40458 H.acorifolia Helmholtzia Helmholtzia acorifolia \N \N \N \N \N 40459 C.stenolepis Corispermum Corispermum stenolepis \N \N \N \N \N 40460 E.thyrsifera Elegia Elegia thyrsifera \N \N \N \N \N 40461 C.rouyi Centaurea Centaurea rouyi \N \N \N \N \N 40462 \N genus Pteridophyllum \N \N \N \N \N 40463 P.grandifolia Pseuduvaria Pseuduvaria grandifolia \N \N \N \N \N 40464 H.GAT-bg243 Hieracium Hieracium aff. asplundii GAT-bg243 \N \N \N \N \N 40465 M.rufibarbata Manglietia Manglietia rufibarbata \N \N \N \N \N 40466 S.neolapponum Salix Salix neolapponum \N \N \N \N \N 40467 G.tinctoria Garcinia Garcinia tinctoria \N \N \N \N \N 40468 V.parnassiifolia Villarsia Villarsia parnassiifolia \N \N \N \N \N 40469 C.thomasii Cryptotaenia Cryptotaenia thomasii \N \N \N \N \N 40470 A.kuntzei Anisothrix Anisothrix kuntzei \N \N \N \N \N 40471 S.lanceolata Sirhookera Sirhookera lanceolata \N \N \N \N \N 40472 B.oxyrrhina Brassica Brassica oxyrrhina \N \N \N \N \N 40473 P.achaicum Peucedanum Peucedanum achaicum \N \N \N \N \N 40474 H.gervaisii Helictotrichon Helictotrichon gervaisii \N \N \N \N \N 40475 D.cuyabensis Dalechampia Dalechampia cuyabensis \N \N \N \N \N 40476 \N subspecies Cerinthe major subsp. major \N \N \N \N \N 40477 R.sapidus Rubus Rubus sapidus \N \N \N \N \N 40478 S.junodii Sebaea Sebaea junodii \N \N \N \N \N 40479 R.hypoblematosum Rhododendron Rhododendron hypoblematosum \N \N \N \N \N 40480 L.subpeltatus Leucocroton Leucocroton subpeltatus \N \N \N \N \N 40481 C.sibirica Campanula Campanula sibirica \N \N \N \N \N 40482 O.borneensis Orchidantha Orchidantha borneensis \N \N \N \N \N 40483 D.grandiflora Dioclea Dioclea grandiflora mucana \N \N \N \N 40484 \N genus Enarganthe \N \N \N \N \N 45146 \N genus Periptera \N \N \N \N \N 40485 H.campestre Heliotropium Heliotropium campestre \N \N \N \N \N 40486 V.bulbosa Viola Viola bulbosa \N \N \N \N \N 40487 A.bromeliifolia Aechmea Aechmea bromeliifolia \N \N \N \N \N 40488 \N genus Oligochaetochilus \N \N \N \N \N 40489 D.desciscens Dracontioides Dracontioides desciscens \N \N \N \N \N 40490 \N genus Swallenia \N \N \N \N \N 40491 A.paniculatum Anginon Anginon paniculatum \N \N \N \N \N 40492 \N no rank unclassified Zingiberaceae \N \N \N \N \N 40493 U.fusca Urochloa Urochloa fusca \N \N \N \N \N 40494 \N genus Psammotropha \N \N \N \N \N 40495 P.swartzianum Piper Piper swartzianum \N \N \N \N \N 40496 \N varietas Ficus deltoidea var. motleyana \N \N \N \N \N 40497 M.tetragona Microtropis Microtropis tetragona \N \N \N \N \N 40498 \N genus Dalbergia \N \N \N \N \N 40499 M.macularis Mallotus Mallotus macularis \N \N \N \N \N 40500 Z.eremaeum Zygophyllum Zygophyllum eremaeum \N \N \N \N \N 40501 \N subtribe Tripogoninae \N \N \N \N \N 40502 L.vestita Leptodermis Leptodermis vestita \N \N \N \N \N 40503 B.mildbraedii Brachystegia Brachystegia mildbraedii \N \N \N \N \N 40504 D.lohohense Dendrobium Dendrobium lohohense \N \N \N \N \N 40505 T.2351 Telipogon Telipogon sp. Whitten 2351 \N \N \N \N \N 40506 V.thymoides Veronica Veronica thymoides \N \N \N \N \N 40507 V.ruprechtii Veronica Veronica ruprechtii \N \N \N \N \N 40508 P.anisum Piper Piper anisum \N \N \N \N \N 40509 V.lawsonii Vitis Vitis lawsonii \N \N \N \N \N 40510 F.bungeana Fraxinus Fraxinus bungeana northern ash,xiao ye qin \N \N \N \N 40511 P.tenellus Phyllanthus Phyllanthus tenellus \N \N \N \N \N 40512 A.garrettii Atriplex Atriplex garrettii \N \N \N \N \N 40513 V.macrocarpon Vaccinium Vaccinium macrocarpon American cranberry,large cranberry \N \N \N \N 40514 T.villosa Tephrosia Tephrosia villosa \N \N \N \N \N 40515 M.punctulatum Misodendrum Misodendrum punctulatum \N \N \N \N \N 40516 \N subspecies Dionysia revoluta subsp. canescens \N \N \N \N \N 40517 S.aculeolatum Sisymbrium Sisymbrium aculeolatum \N \N \N \N \N 40518 E.passerinae Erica Erica passerinae \N \N \N \N \N 40519 W.DS-2011 Withania Withania sp. DS-2011 \N \N \N \N \N 40520 A.lanuginosa Androsace Androsace lanuginosa \N \N \N \N \N 40521 S.discolor Steudnera Steudnera discolor \N \N \N \N \N 40522 I.unguicularis Iris Iris unguicularis \N \N \N \N \N 40523 H.decumbens Halenia Halenia decumbens \N \N \N \N \N 40524 \N genus Thysanocarpus \N \N \N \N \N 40525 C.laciniata Coptis Coptis laciniata \N \N \N \N \N 40526 M.gigantea Muhlenbergia Muhlenbergia gigantea \N \N \N \N \N 40527 L.girardianum Limonium Limonium girardianum \N \N \N \N \N 40528 G.hybrida Glandularia Glandularia x hybrida garden verbena \N \N \N \N 40529 \N family Boryaceae \N \N \N \N \N 40530 O.hyphaematicum Oncidium Oncidium hyphaematicum \N \N \N \N \N 40531 P.discolor Pseudonoseris Pseudonoseris discolor \N \N \N \N \N 40532 P.MG-2007 Pleurothallis Pleurothallis sp. MG-2007 \N \N \N \N \N 40533 A.humilis Arctomecon Arctomecon humilis \N \N \N \N \N 40534 P.paniculata Pterochaeta Pterochaeta paniculata \N \N \N \N \N 40535 A.venenata Alstonia Alstonia venenata \N \N \N \N \N 40536 B.wilburiana Blakea Blakea wilburiana \N \N \N \N \N 40537 A.biovulatum Alyssum Alyssum biovulatum \N \N \N \N \N 40538 C.flexuosa Chamaecrista Chamaecrista flexuosa \N \N \N \N \N 40539 \N subspecies Lavatera triloba subsp. agrigentina \N \N \N \N \N 40540 \N subtribe Thelmytrinae \N \N \N \N \N 40541 V.trichocarpa Vigna Vigna trichocarpa \N \N \N \N \N 40542 T.mutabile Trifolium Trifolium mutabile \N \N \N \N \N 40543 S.benzoin Styrax Styrax benzoin \N \N \N \N \N 40544 \N genus Tetraena \N \N \N \N \N 40545 B.lamprophylla Bonatea Bonatea lamprophylla \N \N \N \N \N 40546 H.myrtifolia Heimia Heimia myrtifolia \N \N \N \N \N 40547 \N genus Mikaniopsis \N \N \N \N \N 40548 N.floribunda Nuxia Nuxia floribunda \N \N \N \N \N 40549 D.carota Daucus Daucus carota Queen Anne's lace,carrot,carrots \N \N \N \N 40550 J.lantanifolia Jefea Jefea lantanifolia \N \N \N \N \N 40551 M.simplex Monophrynium Monophrynium simplex \N \N \N \N \N 40552 \N genus Styppeiochloa \N \N \N \N \N 40553 \N tribe Anomochloeae \N \N \N \N \N 40554 T.aurea Thelypodiopsis Thelypodiopsis aurea \N \N \N \N \N 40555 C.orbicularis Crassula Crassula orbicularis \N \N \N \N \N 40556 P.arundinacea Phalaris Phalaris arundinacea \N \N \N \N \N 40557 P.ternata Psiguria Psiguria ternata \N \N \N \N \N 40558 C.PMS-2010 Cucumis Cucumis sp. B PMS-2010 \N \N \N \N \N 40559 E.braceanus Elaeocarpus Elaeocarpus braceanus \N \N \N \N \N 40560 O.fragrans Ourisia Ourisia fragrans \N \N \N \N \N 40561 F.macdougalii Fouquieria Fouquieria macdougalii \N \N \N \N \N 40562 P.crassicaule Pelargonium Pelargonium crassicaule \N \N \N \N \N 40563 M.2519 unclassified Myrtaceae Myrtaceae gen. sp. RFK 2519 \N \N \N \N \N 40564 M.involucrata Malabaila Malabaila involucrata \N \N \N \N \N 40565 L.7-CEH Lupinus Lupinus sp. 7-CEH \N \N \N \N \N 40566 C.clementina Citrus Citrus clementina \N \N \N \N \N 40567 M.peruvianum Mesospinidium Mesospinidium peruvianum \N \N \N \N \N 40568 \N genus Canephora \N \N \N \N \N 40569 C.sphaerocephala Chresta Chresta sphaerocephala \N \N \N \N \N 40570 L.imbricatum Lachnospermum Lachnospermum imbricatum \N \N \N \N \N 40571 \N tribe Wielandieae \N \N \N \N \N 40572 \N genus Narcissus \N \N \N \N \N 40573 C.longipes Coelogyne Coelogyne longipes \N \N \N \N \N 40574 P.scutellaria Polyscias Polyscias scutellaria \N \N \N \N \N 40575 C.ferruginea Carex Carex ferruginea \N \N \N \N \N 40576 L.setifera Lonicera Lonicera setifera \N \N \N \N \N 40577 A.koschukensis Astragalus Astragalus koschukensis \N \N \N \N \N 40578 H.procumbens Hypecoum Hypecoum procumbens \N \N \N \N \N 40579 D.vieillardii Diospyros Diospyros vieillardii \N \N \N \N \N 40580 T.simplicifolium Teijsmanniodendron Teijsmanniodendron simplicifolium \N \N \N \N \N 40581 \N genus Carpoxylon \N \N \N \N \N 40582 V.multifida Veronica Veronica multifida \N \N \N \N \N 40584 C.H5_15 Castilleja Castilleja sp. H5_15 \N \N \N \N \N 40585 S.splendida Shorea Shorea splendida \N \N \N \N \N 40586 C.multiformis Cliffortia Cliffortia multiformis \N \N \N \N \N 40587 B.glabrata Burmeistera Burmeistera glabrata \N \N \N \N \N 40588 C.decandra Cordia Cordia decandra \N \N \N \N \N 40589 \N genus Anthyllis \N \N \N \N \N 40590 A.nevadensis Amphiscirpus Amphiscirpus nevadensis \N \N \N \N \N 40591 T.timococcum Triticum Triticum x timococcum \N \N \N \N \N 40592 P.paludosa Pulicaria Pulicaria paludosa \N \N \N \N \N 40593 E.tasmanicum Epilobium Epilobium tasmanicum \N \N \N \N \N 40594 \N genus Campylocentrum \N \N \N \N \N 40595 N.physalodes Nicandra Nicandra physalodes apple-of-Peru,shoo-fly plant \N \N \N \N 40596 P.palmeri Prosopis Prosopis palmeri \N \N \N \N \N 40597 C.nuttallii Cornus Cornus nuttallii mountain dogwood \N \N \N \N 40598 E.valida Earina Earina valida \N \N \N \N \N 40599 A.magnificum Asarum Asarum magnificum \N \N \N \N \N 40600 R.adenopodum Rhododendron Rhododendron adenopodum \N \N \N \N \N 40601 \N genus Macrochloa \N \N \N \N \N 40602 \N genus Gamanthus \N \N \N \N \N 40603 \N genus Jarandersonia \N \N \N \N \N 40604 C.coronopus Chenopodium Chenopodium coronopus \N \N \N \N \N 40605 N.beatricis Notyliopsis Notyliopsis beatricis \N \N \N \N \N 40606 U.lurida Uvaria Uvaria lurida \N \N \N \N \N 40607 F.procumbens Fumana Fumana procumbens \N \N \N \N \N 40608 L.gracilidelineata Lithops Lithops gracilidelineata \N \N \N \N \N 40609 S.jurtzevii Salix Salix jurtzevii \N \N \N \N \N 40610 C.woronowii Colchicum Colchicum woronowii \N \N \N \N \N 40611 P.psilostachya Pseudopiptadenia Pseudopiptadenia psilostachya \N \N \N \N \N 40612 T.suffrutescens Trichostema Trichostema suffrutescens \N \N \N \N \N 40613 M.repandodentata Macaranga Macaranga repandodentata \N \N \N \N \N 40614 A.neuquenensis Astragalus Astragalus neuquenensis \N \N \N \N \N 40615 P.kawensis Passiflora Passiflora kawensis \N \N \N \N \N 40616 M.guaranitica Manihot Manihot guaranitica \N \N \N \N \N 40617 C.morrowii Carex Carex morrowii \N \N \N \N \N 40618 A.guttatus Astragalus Astragalus guttatus \N \N \N \N \N 40619 S.papposa Scorzonera Scorzonera papposa \N \N \N \N \N 40620 C.zingiberoides Costus Costus zingiberoides \N \N \N \N \N 40621 \N subfamily Gesnerioideae \N \N \N \N \N 40622 R.crenaticupula Rhodostemonodaphne Rhodostemonodaphne crenaticupula \N \N \N \N \N 40623 M.occidentalis Micranthes Micranthes occidentalis \N \N \N \N \N 40624 A.polystachya Ascarina Ascarina polystachya \N \N \N \N \N 40625 E.verticillatum Enicostema Enicostema verticillatum \N \N \N \N \N 40626 S.pyrenaicus Senecio Senecio pyrenaicus \N \N \N \N \N 40627 L.chichicara Lepidium Lepidium chichicara \N \N \N \N \N 40628 \N genus Distyliopsis \N \N \N \N \N 40629 G.shallon Gaultheria Gaultheria shallon salal,shallon \N \N \N \N 40630 C.arborescens Caragana Caragana arborescens Siberian peashrub \N \N \N \N 40631 \N subspecies Onosma echioides subsp. canescens \N \N \N \N \N 40632 C.epunctata Caesalpinia Caesalpinia epunctata \N \N \N \N \N 40633 M.kollmannii Miconia Miconia kollmannii \N \N \N \N \N 40634 C.nivenioides Cliffortia Cliffortia nivenioides \N \N \N \N \N 40635 C.boliviana Calceolaria Calceolaria boliviana \N \N \N \N \N 40636 H.amorginum Helichrysum Helichrysum amorginum \N \N \N \N \N 40637 D.cerinum Dendrobium Dendrobium cerinum \N \N \N \N \N 40638 N.hispanicus Narcissus Narcissus hispanicus \N \N \N \N \N 40639 \N varietas Willkommia texana var. texana \N \N \N \N \N 40640 H.caespitosum Hieracium Hieracium caespitosum king-devil,meadow hawkweed,yellow fox-and-cubs \N \N \N \N 40641 S.peruvianum Lycopersicon Solanum peruvianum Peruvian tomato \N \N \N \N 40642 \N subspecies Laserpitium gallicum subsp. orospedanum \N \N \N \N \N 40643 T.caput-medusae Taeniatherum Taeniatherum caput-medusae \N \N \N \N \N 40644 A.cruzensis Arctostaphylos Arctostaphylos cruzensis \N \N \N \N \N 40645 A.aridum Arisaema Arisaema aridum \N \N \N \N \N 40646 L.urens Lobelia Lobelia urens \N \N \N \N \N 40647 S.intricata Sclerolaena Sclerolaena intricata \N \N \N \N \N 40648 \N subspecies Impatiens mackeyana subsp. claeri \N \N \N \N \N 40649 M.indicus Melilotus Melilotus indicus Indian sweet-clover,senji,sourclover \N \N \N \N 40650 S.thecaphora Siparuna Siparuna thecaphora \N \N \N \N \N 40651 S.vicinum Solanum Solanum vicinum \N \N \N \N \N 43372 \N genus Parapyrenaria \N \N \N \N \N 40652 S.horridum Solanum Solanum horridum \N \N \N \N \N 40653 \N varietas Plantago princeps var. laxifolia \N \N \N \N \N 40654 A.sedifolium Aeonium Aeonium sedifolium \N \N \N \N \N 40655 O.cristatum Oncidium Oncidium cristatum \N \N \N \N \N 40656 P.brachystachys Phalaris Phalaris brachystachys \N \N \N \N \N 40657 C.criuva Clusia Clusia criuva \N \N \N \N \N 40658 \N genus Knightia \N \N \N \N \N 40659 B.excelsa Bertholletia Bertholletia excelsa Brazil nut \N \N \N \N 40660 A.sericea Anogeissus Anogeissus sericea \N \N \N \N \N 40661 R.bracteata Rosa Rosa bracteata Macartny rose \N \N \N \N 40662 L.leptopetalum Lepidium Lepidium leptopetalum \N \N \N \N \N 40663 \N genus Hermannia \N \N \N \N \N 40664 P.umbrosa Potentilla Potentilla umbrosa \N \N \N \N \N 40665 \N genus Xenia \N \N \N \N \N 40666 \N subspecies Centaurea boissieri subsp. boissieri \N \N \N \N \N 40667 S.splendens Salvia Salvia splendens bonfire salvia,scarlet sage \N \N \N \N 40668 \N varietas Fraxinus pennsylvanica var. subintegerrima green ash \N \N \N \N 40669 \N subspecies Deschampsia cespitosa subsp. cespitosa \N \N \N \N \N 40670 N.mitis Neorautanenia Neorautanenia mitis \N \N \N \N \N 40671 C.arvensis Convolvulus Convolvulus arvensis \N \N \N \N \N 40672 \N family Austrobaileyaceae \N \N \N \N \N 40673 \N family Canellaceae wild cinnamon family \N \N \N \N 40674 D.styraciformis Diospyros Diospyros styraciformis \N \N \N \N \N 40675 C.platychila Cischweinfia Cischweinfia platychila \N \N \N \N \N 40676 L.procumbens Lespedeza Lespedeza procumbens \N \N \N \N \N 40677 G.foliosa Gagea Gagea foliosa \N \N \N \N \N 40678 \N genus Exothea \N \N \N \N \N 40679 \N no rank Rosa banksiae f. lutea \N \N \N \N \N 40680 \N genus Parathesis \N \N \N \N \N 40681 \N varietas Aloe greatheadii var. davyana \N \N \N \N \N 40682 C.JPM-2011 Clerodendrum Clerodendrum sp. JPM-2011 \N \N \N \N \N 40683 \N genus Calandrinia \N \N \N \N \N 40684 A.hexandra Ateleia Ateleia hexandra \N \N \N \N \N 40685 H.insulare Heliosperma Heliosperma insulare \N \N \N \N \N 40686 F.asparagifolia Ferulago Ferulago asparagifolia \N \N \N \N \N 40687 S.laconica Silene Silene laconica \N \N \N \N \N 40688 \N genus Menyanthes \N \N \N \N \N 40689 A.12498 Adromischus Adromischus sp. Goldblatt 12498 \N \N \N \N \N 40690 A.paralurges Astragalus Astragalus paralurges \N \N \N \N \N 40691 M.phialanthoides Mazaea Mazaea phialanthoides \N \N \N \N \N 40692 A.cladantha Aoranthe Aoranthe cladantha \N \N \N \N \N 40693 P.lanipes Panicum Panicum lanipes \N \N \N \N \N 40694 F.lemanii Festuca Festuca lemanii \N \N \N \N \N 40695 \N genus Casearia \N \N \N \N \N 40696 T.funingense Tetrastigma Tetrastigma funingense \N \N \N \N \N 40697 P.betonicoides Phlomoides Phlomoides betonicoides \N \N \N \N \N 40698 M.vaginalis Monochoria Monochoria vaginalis \N \N \N \N \N 40699 H.carnosum Hedysarum Hedysarum carnosum \N \N \N \N \N 40700 X.holmbergii x Festulolium x Festulolium holmbergii \N \N \N \N \N 40701 C.aclandiae Cattleya Cattleya aclandiae \N \N \N \N \N 40702 D.dioeca Dentella Dentella dioeca \N \N \N \N \N 40703 A.retusa Anacampseros Anacampseros retusa \N \N \N \N \N 40704 D.angustata Dactylorhiza Dactylorhiza angustata \N \N \N \N \N 40705 C.harmandii Curcuma Curcuma harmandii \N \N \N \N \N 40706 B.regalis Boesenbergia Boesenbergia regalis \N \N \N \N \N 40707 \N genus Halogeton \N \N \N \N \N 40708 \N varietas Haworthia attenuata var. britteniana \N \N \N \N \N 40709 E.dysenterica Eugenia Eugenia dysenterica \N \N \N \N \N 40710 P.amboinicus Plectranthus Plectranthus amboinicus \N \N \N \N \N 40711 T.ophioglossa Taurantha Taurantha ophioglossa \N \N \N \N \N 40712 A.aroides Allium Allium aroides \N \N \N \N \N 40713 P.falcata Poecilanthe Poecilanthe falcata \N \N \N \N \N 40714 T.smithii Thalictrum Thalictrum smithii \N \N \N \N \N 40715 J.macrocarpa Jatropha Jatropha macrocarpa \N \N \N \N \N 40716 C.matthioli Cortusa Cortusa matthioli \N \N \N \N \N 40717 L.arizonica Lonicera Lonicera arizonica \N \N \N \N \N 40718 S.RCE-2006 Sanguisorba Sanguisorba sp. RCE-2006 \N \N \N \N \N 40719 Z.setacea Zeltnera Zeltnera setacea \N \N \N \N \N 40720 L.elegans Lithocarpus Lithocarpus elegans \N \N \N \N \N 40721 C.clusioides Clusia Clusia clusioides cupeillo \N \N \N \N 40722 C.188 Cliffortia Cliffortia cf. eriocephalina Whitehouse 188 \N \N \N \N \N 40723 C.liberistamina Camellia Camellia liberistamina \N \N \N \N \N 40724 \N varietas Polygonum runcinatum var. sinense \N \N \N \N \N 40725 A.clusii Aristolochia Aristolochia clusii \N \N \N \N \N 40726 \N genus Acanthopsis \N \N \N \N \N 40727 C.lepida Cliffortia Cliffortia lepida \N \N \N \N \N 40728 D.pruinata Dendroseris Dendroseris pruinata \N \N \N \N \N 40729 F.10432 Forcipella Forcipella sp. Daniel et al. 10432 \N \N \N \N \N 40730 P.rhomboidea Pimpinella Pimpinella rhomboidea \N \N \N \N \N 40731 C.AB-2009 Vanilla cf. Vanilla bahiana x Vanilla tahitensis AB-2009 \N \N \N \N \N 40732 Z.amole Ziziphus Ziziphus amole \N \N \N \N \N 40733 S.linearicarpum Scaphium Scaphium linearicarpum \N \N \N \N \N 40734 P.rotundifolia Phacelia Phacelia rotundifolia \N \N \N \N \N 40735 D.fuligifera Dracula Dracula fuligifera \N \N \N \N \N 40736 \N varietas Juncus validus var. validus \N \N \N \N \N 40737 S.martiana Senna Senna martiana \N \N \N \N \N 40738 O.pulchella Ocotea Ocotea pulchella \N \N \N \N \N 40739 S.teucriifolius Syncolostemon Syncolostemon teucriifolius \N \N \N \N \N 40740 A.schoenoprasoides Allium Allium schoenoprasoides \N \N \N \N \N 40741 C.nukuhivensis Cyrtandra Cyrtandra nukuhivensis \N \N \N \N \N 40742 P.fragrans Pentapanax Pentapanax fragrans \N \N \N \N \N 40743 O.glandulosa Olearia Olearia glandulosa \N \N \N \N \N 40744 D.punensis Dictyophragmus Dictyophragmus punensis \N \N \N \N \N 40745 T.pendulum Tropaeolum Tropaeolum pendulum \N \N \N \N \N 40746 C.rivularis Calceolaria Calceolaria rivularis \N \N \N \N \N 40747 \N genus Cenchrus \N \N \N \N \N 40748 \N varietas Lilium monadelphum var. szovitsianum \N \N \N \N \N 40749 M.petropolitana Miconia Miconia petropolitana \N \N \N \N \N 40750 \N genus Corynotheca \N \N \N \N \N 40751 \N subspecies Crepis atribarba subsp. atribarba \N \N \N \N \N 40752 A.bisulcatus Astragalus Astragalus bisulcatus \N \N \N \N \N 40753 A.pyramidatum Allosidastrum Allosidastrum pyramidatum \N \N \N \N \N 40754 R.haenkeana Ruellia Ruellia haenkeana \N \N \N \N \N 40755 A.zhejiangensis Actinidia Actinidia zhejiangensis \N \N \N \N \N 40756 L.dasystemum Lycium Lycium dasystemum \N \N \N \N \N 40757 P.pumila Pinguicula Pinguicula pumila small butterwort \N \N \N \N 40758 R.1853 Rulingia Rulingia aff. rotundifolia Wilkins & Wege 1853 \N \N \N \N \N 40759 S.dioica Stutzia Stutzia dioica \N \N \N \N \N 40760 W.sp. Wisteria Wisteria sp. \N \N \N \N \N 40761 A.hindsii Acacia Acacia hindsii \N \N \N \N \N 40762 A.nissenana Arctostaphylos Arctostaphylos nissenana \N \N \N \N \N 40763 S.bemarivensis Socratina Socratina bemarivensis \N \N \N \N \N 40764 A.monilifera Allocasuarina Allocasuarina monilifera \N \N \N \N \N 40765 \N subspecies Rhodiola chrysanthemifolia subsp. chrysanthemifolia \N \N \N \N \N 40766 V.oliganthum Viburnum Viburnum oliganthum \N \N \N \N \N 40767 B.selebicum Bracisepalum Bracisepalum selebicum \N \N \N \N \N 40768 A.floridum Anemopaegma Anemopaegma floridum \N \N \N \N \N 40769 T.kurdicum Thlaspi Thlaspi kurdicum \N \N \N \N \N 40770 F.hirsuta Fuirena Fuirena hirsuta \N \N \N \N \N 40771 \N subspecies Aspalathus hirta subsp. hirta \N \N \N \N \N 40772 M.liliiflora Magnolia Magnolia liliiflora purple magnolia \N \N \N \N 40773 M.H218 Merwilla Merwilla sp. Puff H218 \N \N \N \N \N 46116 \N genus Crinodendron \N \N \N \N \N 40774 T.TK40-5 unclassified Taraxacum Taraxacum (sect. Naevosa) sp. TK40-5 \N \N \N \N \N 40775 C.delicatula Centaurea Centaurea delicatula \N \N \N \N \N 40776 A.neoaurantiacum Amomum Amomum neoaurantiacum \N \N \N \N \N 40777 E.antisyphilitica Euphorbia Euphorbia antisyphilitica candelilla \N \N \N \N 40778 \N genus Robinsonia \N \N \N \N \N 40779 B.disticha Boophone Boophone disticha \N \N \N \N \N 40780 B.rajah Begonia Begonia rajah \N \N \N \N \N 40781 \N subspecies Banksia integrifolia subsp. compar \N \N \N \N \N 40782 C.s.n. Cistanthe Cistanthe aff. densiflora Kiesling and Peralta s.n. \N \N \N \N \N 40783 S.moreana Scaligeria Scaligeria moreana \N \N \N \N \N 40784 \N genus Staufferia \N \N \N \N \N 40785 S.echinata Strobilanthes Strobilanthes echinata \N \N \N \N \N 40786 L.lecocarpoides Lecocarpus Lecocarpus lecocarpoides \N \N \N \N \N 40787 F.contracta Festuca Festuca contracta \N \N \N \N \N 40788 D.falcatum Drepanostachyum Drepanostachyum falcatum \N \N \N \N \N 40789 \N genus Pseudopanax \N \N \N \N \N 40790 \N genus Anaueria \N \N \N \N \N 40791 C.aequatoris Croton Croton aequatoris \N \N \N \N \N 40792 A.scaphirostris Ariocarpus Ariocarpus scaphirostris \N \N \N \N \N 40793 P.761 Panicum Panicum sp. Forest 761 \N \N \N \N \N 40794 \N subspecies Erica plukenetii subsp. lineata \N \N \N \N \N 40795 E.kienastii Encyclia Encyclia kienastii \N \N \N \N \N 40796 \N genus Fedia \N \N \N \N \N 40797 D.atrans Diplodium Diplodium atrans \N \N \N \N \N 40798 P.venusta Protea Protea venusta \N \N \N \N \N 40799 \N genus Carmichaelia \N \N \N \N \N 40800 \N genus Anthospermum \N \N \N \N \N 40801 P.gnaphalioides Podotheca Podotheca gnaphalioides \N \N \N \N \N 40802 H.diplanthera Hemigenia Hemigenia diplanthera \N \N \N \N \N 40803 M.17903 Mimosa Mimosa aff. weberbaueri Pennington 17903 \N \N \N \N \N 40804 \N genus Robbrechtia \N \N \N \N \N 40805 M.indica Morus Morus indica \N \N \N \N \N 40806 T.leiocalyx Tinantia Tinantia leiocalyx \N \N \N \N \N 40807 C.curvibracteatus Costus Costus curvibracteatus \N \N \N \N \N 40808 S.pendulina Stomatostemma Stomatostemma pendulina \N \N \N \N \N 40809 L.cuchumatanensis Lycianthes Lycianthes cuchumatanensis \N \N \N \N \N 40810 B.villosa Babiana Babiana villosa \N \N \N \N \N 40811 \N subspecies Cynoglottis chetikiana subsp. paphlagonica \N \N \N \N \N 40812 C.palustris Caltha Caltha palustris \N \N \N \N \N 40813 C.glandulosa Coursetia Coursetia glandulosa \N \N \N \N \N 40814 C.pauciflorus Chrysopogon Chrysopogon pauciflorus \N \N \N \N \N 40815 \N genus Lasianthera \N \N \N \N \N 40816 D.doranii Dicrastylis Dicrastylis doranii \N \N \N \N \N 40817 G.albanum Geranium Geranium albanum \N \N \N \N \N 40818 I.cayennensis Inga Inga cayennensis \N \N \N \N \N 40819 M.involucrata Momordica Momordica involucrata \N \N \N \N \N 40820 E.orientalis Euphorbia Euphorbia orientalis \N \N \N \N \N 40821 C.prieurii Chrysophyllum Chrysophyllum prieurii \N \N \N \N \N 40822 O.crocata Oenanthe Oenanthe crocata water-dropwort,water-hemlock \N \N \N \N 40823 B.domingensis Burmeistera Burmeistera domingensis \N \N \N \N \N 40824 P.pseudoversicolor Pedicularis Pedicularis pseudoversicolor \N \N \N \N \N 40825 \N genus Orothamnus \N \N \N \N \N 40826 K.obovata Kunzea Kunzea obovata \N \N \N \N \N 40827 I.adenanthus Isodon Isodon adenanthus \N \N \N \N \N 40828 C.carthagenensis Cuphea Cuphea carthagenensis \N \N \N \N \N 40829 \N genus Aztekium \N \N \N \N \N 40830 P.barbata Persicaria Persicaria barbata \N \N \N \N \N 40831 P.biflora Pogoneura Pogoneura biflora \N \N \N \N \N 40832 \N tribe Massonieae \N \N \N \N \N 40833 C.leschenaultiana Clematis Clematis leschenaultiana \N \N \N \N \N 40834 G.scandens Guatteria Guatteria scandens \N \N \N \N \N 40835 R.pallida Ruprechtia Ruprechtia pallida \N \N \N \N \N 40836 A.toktogulicum Atraphaxis Atraphaxis toktogulicum \N \N \N \N \N 40837 L.pulchella Lepiderema Lepiderema pulchella \N \N \N \N \N 40838 S.erioblasta Saxifraga Saxifraga erioblasta \N \N \N \N \N 40839 O.mulsanti Ochrosia Ochrosia mulsanti \N \N \N \N \N 40840 P.expansissima Psychotria Psychotria expansissima \N \N \N \N \N 40841 O.podocarpa Oxytropis Oxytropis podocarpa \N \N \N \N \N 40842 \N subspecies Aspalathus intricata subsp. intricata \N \N \N \N \N 40843 \N genus Picris \N \N \N \N \N 40844 T.pilosa Trianthema Trianthema pilosa \N \N \N \N \N 40845 T.ixioides Thelymitra Thelymitra ixioides \N \N \N \N \N 40846 P.mucronifolia Pulicaria Pulicaria mucronifolia \N \N \N \N \N 40847 \N genus Chlorophytum \N \N \N \N \N 40848 C.pedunculata Cliffortia Cliffortia pedunculata \N \N \N \N \N 40849 P.villosa Passiflora Passiflora villosa \N \N \N \N \N 40850 \N genus Holocarpha \N \N \N \N \N 40851 E.regia Erica Erica regia \N \N \N \N \N 40852 A.centralis Austrobryonia Austrobryonia centralis \N \N \N \N \N 40853 H.asahinae Hypericum Hypericum asahinae \N \N \N \N \N 40854 \N varietas Salix exigua var. sessilifolia \N \N \N \N \N 40855 M.lenheirensis Myrcia Myrcia lenheirensis \N \N \N \N \N 40856 D.pervillei Deinbollia Deinbollia pervillei \N \N \N \N \N 40857 P.hispida Prunella Prunella hispida \N \N \N \N \N 40858 T.divaricata Tabernaemontana Tabernaemontana divaricata crepe jasmine,gou ya hua,pinwheelflower \N \N \N \N 40859 C.myconis Coleostephus Coleostephus myconis \N \N \N \N \N 40860 C.N184 Cyrtochilum Cyrtochilum sp. Williams N184 \N \N \N \N \N 40861 \N genus Gamblea \N \N \N \N \N 40862 P.integrifolia Pedicularis Pedicularis integrifolia \N \N \N \N \N 40863 E.metallica Endlicheria Endlicheria metallica \N \N \N \N \N 40864 A.lopesianum Antirrhinum Antirrhinum lopesianum \N \N \N \N \N 40865 \N subspecies Scorzonera undulata subsp. deliciosa \N \N \N \N \N 40866 \N varietas Eriodictyon trichocalyx var. trichocalyx \N \N \N \N \N 40867 V.procumbens Virectaria Virectaria procumbens \N \N \N \N \N 40868 G.jussieuana Geonoma Geonoma jussieuana \N \N \N \N \N 40869 H.pilosum Hieracium Hieracium pilosum \N \N \N \N \N 40870 L.setosissima Langloisia Langloisia setosissima \N \N \N \N \N 40871 P.acuminata Pterichis Pterichis acuminata \N \N \N \N \N 40872 X.schwaneckeana Xylosma Xylosma schwaneckeana \N \N \N \N \N 40873 E.viscaria Erica Erica viscaria \N \N \N \N \N 40874 B.nucifer Brownanthus Brownanthus nucifer \N \N \N \N \N 40875 E.intermedia Erica Erica intermedia \N \N \N \N \N 40876 U.chrysantha Utricularia Utricularia chrysantha \N \N \N \N \N 40877 \N genus Pericallis \N \N \N \N \N 40878 \N subspecies Elizaldia calycina subsp. calycina \N \N \N \N \N 40879 S.quadrangulare Solanum Solanum quadrangulare \N \N \N \N \N 40880 P.stenantha Paphia Paphia stenantha \N \N \N \N \N 40881 M.robusta Maytenus Maytenus robusta \N \N \N \N \N 40882 C.flexuosum Cicer Cicer flexuosum \N \N \N \N \N 40883 D.incisum Delphinium Delphinium incisum \N \N \N \N \N 40884 \N genus Helictonema \N \N \N \N \N 40885 O.micranthus Ornithopus Ornithopus micranthus \N \N \N \N \N 40886 \N subspecies Scorzonera villosa subsp. villosa \N \N \N \N \N 40887 I.zhejiangensis Ilex Ilex zhejiangensis \N \N \N \N \N 40888 E.domingensis Eugenia Eugenia domingensis \N \N \N \N \N 40889 P.cernuum Pleurostelma Pleurostelma cernuum \N \N \N \N \N 40890 K.koreana Kirengeshoma Kirengeshoma koreana \N \N \N \N \N 40891 M.polydactyla Mimosa Mimosa polydactyla \N \N \N \N \N 40892 Q.pumila Quercus Quercus pumila runner oak \N \N \N \N 40893 F.ulochaeta Festuca Festuca ulochaeta \N \N \N \N \N 40894 C.pouzolzii Cistus Cistus pouzolzii \N \N \N \N \N 40895 A.cariensis Armeria Armeria cariensis \N \N \N \N \N 40896 C.hystrix Cucumis Cucumis hystrix \N \N \N \N \N 40897 \N genus Molongum \N \N \N \N \N 40898 A.herba-alba Artemisia Artemisia herba-alba white wormwood \N \N \N \N 40899 S.nidulans Schmalhausenia Schmalhausenia nidulans \N \N \N \N \N 40900 H.trifoliata Hypelate Hypelate trifoliata \N \N \N \N \N 40901 L.spicata Liatris Liatris spicata \N \N \N \N \N 40902 C.thompsonii Crepis Crepis thompsonii \N \N \N \N \N 40903 L.palustris Limnosipanea Limnosipanea palustris \N \N \N \N \N 40904 L.immoderatum Leucadendron Leucadendron immoderatum \N \N \N \N \N 40905 C.Tchingou Coronanthera Coronanthera sp. Tchingou \N \N \N \N \N 40906 S.souliei Swertia Swertia souliei \N \N \N \N \N 40907 O.polycarpa Orophea Orophea polycarpa \N \N \N \N \N 40908 B.hildebrandtii Bulbophyllum Bulbophyllum hildebrandtii \N \N \N \N \N 40909 \N varietas Pedicularis bracteosa var. atrosanguinea \N \N \N \N \N 40910 A.eximia Aglaia Aglaia eximia \N \N \N \N \N 40911 T.amanoifolia Tacarcuna Tacarcuna amanoifolia \N \N \N \N \N 40912 A.gharbensis Anthemis Anthemis gharbensis \N \N \N \N \N 40913 A.6241 Acianthera Acianthera aff. johnsonii FP 6241 \N \N \N \N \N 40914 M.100184677 Matthiola Matthiola sp. B 100184677 \N \N \N \N \N 40915 A.formosana Alnus Alnus formosana \N \N \N \N \N 40916 \N tribe Careae \N \N \N \N \N 40917 \N genus Bobgunnia \N \N \N \N \N 40918 C.glandulosa Chloanthes Chloanthes glandulosa \N \N \N \N \N 40919 S.oreophilus Skapanthus Skapanthus oreophilus \N \N \N \N \N 40920 M.nitens Myonima Myonima nitens \N \N \N \N \N 40921 D.capensis Drosera Drosera capensis \N \N \N \N \N 40922 \N genus Bothriospermum \N \N \N \N \N 40923 V.US-s.n. Vernonia Vernonia sp. US-s.n. \N \N \N \N \N 40924 O.gurkenii Orthophytum Orthophytum gurkenii \N \N \N \N \N 40925 \N genus Klaseopsis \N \N \N \N \N 40926 M.beccarii Musa Musa beccarii \N \N \N \N \N 40927 S.ingifolium Solanum Solanum ingifolium \N \N \N \N \N 40928 A.platytropis Astragalus Astragalus platytropis \N \N \N \N \N 40929 L.lanata Loudetia Loudetia lanata \N \N \N \N \N 40930 X.squalens Xylobium Xylobium squalens \N \N \N \N \N 40931 C.sterculiifolia Cissus Cissus sterculiifolia \N \N \N \N \N 40932 A.equatorialis Arracacia Arracacia equatorialis \N \N \N \N \N 40933 L.6-CEH Lupinus Lupinus sp. 6-CEH \N \N \N \N \N 40934 \N genus Schlegelia \N \N \N \N \N 40935 L.nervosum Linum Linum nervosum \N \N \N \N \N 40936 E.4645 Eschweilera Eschweilera sp. Prevost & Sabatier 4645 \N \N \N \N \N 40937 \N genus Grubbia \N \N \N \N \N 40938 B.OR2902003 Bulbophyllum Bulbophyllum sp. OR2902003 \N \N \N \N \N 40939 O.cappadocica Onosma Onosma cappadocica \N \N \N \N \N 40940 P.martii Pritchardia Pritchardia martii \N \N \N \N \N 40941 P.hildebrandtii Platostoma Platostoma hildebrandtii \N \N \N \N \N 40942 A.lucida Ascarina Ascarina lucida \N \N \N \N \N 40943 T.crystallina Trianthema Trianthema crystallina \N \N \N \N \N 40944 H.verruculatum Hieracium Hieracium verruculatum \N \N \N \N \N 40945 H.freynianum Heracleum Heracleum freynianum \N \N \N \N \N 40946 E.australasica Eragrostis Eragrostis australasica \N \N \N \N \N 40947 \N varietas Acacia senegal var. leiorachis \N \N \N \N \N 40948 S.candolleana Saussurea Saussurea candolleana \N \N \N \N \N 40949 T.rhynchocalyptra Trianthema Trianthema rhynchocalyptra \N \N \N \N \N 40950 A.hubeiensis Actinidia Actinidia hubeiensis \N \N \N \N \N 40951 S.ingrata Sabicea Sabicea ingrata \N \N \N \N \N 40952 C.monticola Chimaphila Chimaphila monticola \N \N \N \N \N 40953 D.virgata Diplotaxis Diplotaxis virgata \N \N \N \N \N 40954 \N subspecies Inga nobilis subsp. quaternata \N \N \N \N \N 40955 P.ovatus Paranephelius Paranephelius ovatus \N \N \N \N \N 40956 P.umbellifera Psychotria Psychotria umbellifera \N \N \N \N \N 40957 C.magellense Cynoglossum Cynoglossum magellense \N \N \N \N \N 40958 P.clusii Paeonia Paeonia clusii \N \N \N \N \N 40959 A.KE273 Allophylus Allophylus sp. KE273 \N \N \N \N \N 40960 R.arvensis Rosa Rosa arvensis \N \N \N \N \N 40961 S.rigida Solidago Solidago rigida stiff-leaved goldenrod \N \N \N \N 40962 \N subspecies Vaccinium delavayi subsp. merrillianum \N \N \N \N \N 40963 C.tanacetifolia Camissonia Camissonia tanacetifolia \N \N \N \N \N 40964 \N genus Cromidon \N \N \N \N \N 40965 \N family Quillajaceae \N \N \N \N \N 40966 \N varietas Arisaema speciosum var. ziroense \N \N \N \N \N 40967 C.bracteosum Combretum Combretum bracteosum \N \N \N \N \N 40968 T.campestris Trithrinax Trithrinax campestris \N \N \N \N \N 40969 G.scabra Guettarda Guettarda scabra \N \N \N \N \N 40970 A.prostrata Arctotheca Arctotheca prostrata \N \N \N \N \N 40971 C.lamicola Craspedia Craspedia lamicola \N \N \N \N \N 40972 M.drakensbergensis Merxmuellera Merxmuellera drakensbergensis \N \N \N \N \N 40973 \N genus Fimbristylis \N \N \N \N \N 40974 \N varietas Mulguraea ligustrina var. lorentzii \N \N \N \N \N 40975 R.calophyllus Rubus Rubus calophyllus \N \N \N \N \N 40976 S.neronis Stapeliopsis Stapeliopsis neronis \N \N \N \N \N 40977 A.subvillosum Allium Allium subvillosum \N \N \N \N \N 40978 A.maximowiczii Acer Acer maximowiczii \N \N \N \N \N 40979 \N genus Iranecio \N \N \N \N \N 40980 C.despreauxii Convolvulus Convolvulus x despreauxii \N \N \N \N \N 40981 A.mutata Apoballis Apoballis mutata \N \N \N \N \N 40982 R.sogdiana Russowia Russowia sogdiana \N \N \N \N \N 40983 \N genus Urena \N \N \N \N \N 40984 R.lasiostylum Rhododendron Rhododendron lasiostylum \N \N \N \N \N 40985 C.flavus Cephalostemon Cephalostemon flavus \N \N \N \N \N 40986 F.saximontana Festuca Festuca saximontana \N \N \N \N \N 40987 L.keiskei Leucothoe Leucothoe keiskei \N \N \N \N \N 40988 V.lanceolata Veronica Veronica lanceolata \N \N \N \N \N 40989 I.hypoleuca Ibervillea Ibervillea hypoleuca \N \N \N \N \N 40990 \N genus Benthamiella \N \N \N \N \N 40991 \N genus Maprounea \N \N \N \N \N 40992 X.lanceolata Xiphotheca Xiphotheca lanceolata \N \N \N \N \N 40993 B.nana Begonia Begonia nana \N \N \N \N \N 40994 S.hirtipes Sidalcea Sidalcea hirtipes \N \N \N \N \N 40995 B.praemorsum Brachysema Brachysema praemorsum \N \N \N \N \N 40996 S.latifolius Sarcocephalus Sarcocephalus latifolius \N \N \N \N \N 40997 H.glabrata Hyobanche Hyobanche glabrata \N \N \N \N \N 40998 S.confusa Shorea Shorea confusa \N \N \N \N \N 40999 \N varietas Mimosa guilandinae var. guilandinae \N \N \N \N \N 41000 C.pedunculatum Cremastosperma Cremastosperma pedunculatum \N \N \N \N \N 41001 C.cordifolia Camellia Camellia cordifolia \N \N \N \N \N 41002 \N varietas Prunus mume var. pallescens \N \N \N \N \N 41003 C.mongolicum Cynanchum Cynanchum mongolicum \N \N \N \N \N 41004 C.australis Cotula Cotula australis carrotweed \N \N \N \N 41005 \N genus Erechtites \N \N \N \N \N 41006 C.splendida Calathea Calathea splendida \N \N \N \N \N 41007 O.albicarpa Opuntia Opuntia albicarpa \N \N \N \N \N 41008 K.sinuata Kermadecia Kermadecia sinuata \N \N \N \N \N 41009 B.minor Bonyunia Bonyunia minor \N \N \N \N \N 41010 S.annua Smelowskia Smelowskia annua \N \N \N \N \N 41011 M.daleoides Mimosa Mimosa daleoides \N \N \N \N \N 41012 H.virosum Hieracium Hieracium virosum \N \N \N \N \N 41013 S.paradoxa Suaeda Suaeda paradoxa \N \N \N \N \N 41014 C.stenanthus Cyrtanthus Cyrtanthus stenanthus \N \N \N \N \N 41015 A.drobovii Allium Allium drobovii \N \N \N \N \N 41016 C.osmophloeum Cinnamomum Cinnamomum osmophloeum \N \N \N \N \N 41017 L.conimbricensis Lotus Lotus conimbricensis \N \N \N \N \N 41018 C.sicula Carlina Carlina sicula \N \N \N \N \N 41019 C.schomburgkiana Clusia Clusia schomburgkiana \N \N \N \N \N 41020 T.TARBI70 unclassified Taraxacum Taraxacum (sect. Ruderalia) sp. TARBI70 \N \N \N \N \N 41021 \N subspecies Virectaria major subsp. major \N \N \N \N \N 41022 G.forbesii Garcinia Garcinia forbesii \N \N \N \N \N 41023 P.multicaulis Pyrrhopappus Pyrrhopappus multicaulis \N \N \N \N \N 41024 D.BGB-2009 Dalechampia Dalechampia aff. triphylla BGB-2009 \N \N \N \N \N 41025 P.wheeleri Poa Poa wheeleri \N \N \N \N \N 41026 P.WSY0032089-93 Penstemon Penstemon sp. WSY0032089-93 \N \N \N \N \N 41027 E.brittonii Eleocharis Eleocharis brittonii \N \N \N \N \N 41028 S.kungii Saussurea Saussurea kungii \N \N \N \N \N 41029 S.mauritanicus Sonchus Sonchus mauritanicus \N \N \N \N \N 41030 O.manuelariasii Oncidium Oncidium manuelariasii \N \N \N \N \N 41031 D.shankii Dalechampia Dalechampia shankii \N \N \N \N \N 41032 D.excentrica Dorstenia Dorstenia excentrica \N \N \N \N \N 41033 C.picturatum Caladium Caladium picturatum \N \N \N \N \N 41034 \N genus Salacia \N \N \N \N \N 41035 \N genus Cephalostemon \N \N \N \N \N 41036 \N genus Stemmatium \N \N \N \N \N 41037 \N subspecies Valeriana officinalis subsp. officinalis \N \N \N \N \N 41038 F.bungei Fortuynia Fortuynia bungei \N \N \N \N \N 41039 C.tappenbeckianus Costus Costus tappenbeckianus \N \N \N \N \N 41040 V.clarionifolia Valeriana Valeriana clarionifolia \N \N \N \N \N 41041 C.racemosa Cayaponia Cayaponia racemosa \N \N \N \N \N 41042 M.benthamii Mimosa Mimosa benthamii \N \N \N \N \N 41043 M.gigantea Macaranga Macaranga gigantea \N \N \N \N \N 41044 M.brenesii Miconia Miconia brenesii \N \N \N \N \N 41045 C.patens Chisocheton Chisocheton patens \N \N \N \N \N 41046 S.amabilis Sorbus Sorbus amabilis \N \N \N \N \N 41047 A.ficulneus Abelmoschus Abelmoschus ficulneus \N \N \N \N \N 41048 \N varietas Habenaria nuda var. pygmaea \N \N \N \N \N 41049 C.kerstingii Commiphora Commiphora kerstingii \N \N \N \N \N 41050 P.2338 Penstemon Penstemon sp. Oxelman 2338 \N \N \N \N \N 41051 \N varietas Cucurbita argyrosperma var. palmeri \N \N \N \N \N 41052 S.97.531 Smilax Smilax sp. CWD 97.531 \N \N \N \N \N 41053 P.spinosa Prunus Prunus spinosa blackthorn \N \N \N \N 41054 C.gigantea Calotropis Calotropis gigantea bowstring hemp,madar,mudar \N \N \N \N 41055 \N subtribe Angraecinae \N \N \N \N \N 41056 M.mildbraedii Marantochloa Marantochloa mildbraedii \N \N \N \N \N 41057 A.gonavensis Arcoa Arcoa gonavensis tamarinde marron \N \N \N \N 41058 T.tl148 unclassified Taraxacum Taraxacum (sect. Boreigena/Ceratophora) sp. tl148 \N \N \N \N \N 41059 S.regia Silene Silene regia royal catchfly \N \N \N \N 41060 \N genus Disa \N \N \N \N \N 41061 D.quadrangularis Dyschoriste Dyschoriste quadrangularis \N \N \N \N \N 41062 \N varietas Sarracenia purpurea var. burkii \N \N \N \N \N 41063 E.discolor Euphorbia Euphorbia discolor \N \N \N \N \N 41064 E.calycina Elizaldia Elizaldia calycina \N \N \N \N \N 41065 P.juncosae Pappobolus Pappobolus juncosae \N \N \N \N \N 46117 \N genus Ferrocalamus \N \N \N \N \N 41066 E.gariepina Euphorbia Euphorbia gariepina \N \N \N \N \N 41067 P.speciosa Passiflora Passiflora speciosa \N \N \N \N \N 41068 \N genus Persicaria \N \N \N \N \N 41069 \N genus Myriopteron \N \N \N \N \N 41070 M.rosea Margaretta Margaretta rosea \N \N \N \N \N 41071 P.elongata Primula Primula elongata \N \N \N \N \N 41072 C.tricoccon Cneorum Cneorum tricoccon \N \N \N \N \N 41073 \N genus Didymanthus \N \N \N \N \N 41074 S.rosulata Sarcopera Sarcopera rosulata \N \N \N \N \N 41075 A.cucullata Asclepias Asclepias cucullata \N \N \N \N \N 41076 P.goloskokovii Pilopleura Pilopleura goloskokovii \N \N \N \N \N 41077 R.panamensis Ruellia Ruellia panamensis \N \N \N \N \N 41078 V.magna Veronica Veronica magna \N \N \N \N \N 41079 \N genus Discocleidion \N \N \N \N \N 41080 C.madagascariense Coelocarpum Coelocarpum madagascariense \N \N \N \N \N 41081 P.saxatile Phagnalon Phagnalon saxatile \N \N \N \N \N 41082 S.steyermarkii Stegolepis Stegolepis steyermarkii \N \N \N \N \N 41083 B.griffithii Brassaiopsis Brassaiopsis griffithii \N \N \N \N \N 41084 W.sericea Westringia Westringia sericea \N \N \N \N \N 41085 C.afer Costus Costus afer \N \N \N \N \N 41086 P.atrorubens Pitcairnia Pitcairnia atrorubens \N \N \N \N \N 41087 B.bipinnatifida Banksia Banksia bipinnatifida \N \N \N \N \N 41088 \N subspecies Brachypodium sylvaticum subsp. glaucovirens \N \N \N \N \N 41089 D.rongchengensis Dendrocalamus Dendrocalamus rongchengensis \N \N \N \N \N 41090 L.album Lamium Lamium album white dead-nettle \N \N \N \N 41091 \N genus Thelasis \N \N \N \N \N 41092 H.lyrata Haplocarpha Haplocarpha lyrata \N \N \N \N \N 41093 M.DM346 Melaleuca Melaleuca sp. DM346 \N \N \N \N \N 41094 A.oreoprasoides Allium Allium oreoprasoides \N \N \N \N \N 41095 C.ulmifolia Cissus Cissus ulmifolia \N \N \N \N \N 41096 H.serratifolia Hydrangea Hydrangea serratifolia \N \N \N \N \N 41097 O.percoriacea Ocotea Ocotea percoriacea \N \N \N \N \N 41098 A.jaluense Aconitum Aconitum jaluense \N \N \N \N \N 41099 G.bifida Galeopsis Galeopsis bifida \N \N \N \N \N 41100 D.ovata Diclis Diclis ovata \N \N \N \N \N 41101 \N order Asterales \N \N \N \N \N 41102 C.grandis Camellia Camellia grandis \N \N \N \N \N 41103 \N no rank Mediterranean clade incertae sedis \N \N \N \N \N 41104 P.arachnoidea Podolepis Podolepis arachnoidea \N \N \N \N \N 41105 D.herbstobatae Dubautia Dubautia herbstobatae \N \N \N \N \N 41106 C.stenophylla Coffea Coffea stenophylla \N \N \N \N \N 41107 P.BL-2011 Psychotria Psychotria sp. BL-2011 \N \N \N \N \N 41108 P.tongaense Pelargonium Pelargonium tongaense \N \N \N \N \N 41109 I.coruscans Inga Inga coruscans \N \N \N \N \N 41110 C.mohanramii Ceropegia Ceropegia mohanramii \N \N \N \N \N 41111 C.africana Cuscuta Cuscuta africana \N \N \N \N \N 41112 A.chilense Adenocaulon Adenocaulon chilense \N \N \N \N \N 41113 A.grandiflora Adesmia Adesmia grandiflora \N \N \N \N \N 41114 P.atropidiformis Poa Poa atropidiformis \N \N \N \N \N 41115 M.hebepetala Myrcia Myrcia hebepetala \N \N \N \N \N 41116 D.berteroana Dendroseris Dendroseris berteroana \N \N \N \N \N 41117 R.s.n. Rhyncholacis Rhyncholacis sp. Amaral s.n. \N \N \N \N \N 41118 \N varietas Paphiopedilum tonsum var. braemii \N \N \N \N \N 41119 R.odorata Rondeletia Rondeletia odorata \N \N \N \N \N 41120 P.maculatum Pontechium Pontechium maculatum \N \N \N \N \N 41121 \N genus Pterygota \N \N \N \N \N 41122 \N genus Lebeckia \N \N \N \N \N 41123 N.torulosa Neotorularia Neotorularia torulosa \N \N \N \N \N 41124 M.lutea Muretia Muretia lutea \N \N \N \N \N 41125 P.ripicola Planchonella Planchonella ripicola \N \N \N \N \N 41126 \N genus Atractogyne \N \N \N \N \N 41127 G.glassii Graptopetalum Graptopetalum glassii \N \N \N \N \N 41128 A.chienningense Aconitum Aconitum chienningense \N \N \N \N \N 41129 H.hookeri Helictotrichon Helictotrichon hookeri \N \N \N \N \N 41130 N.georginae Nymphaea Nymphaea georginae \N \N \N \N \N 41131 S.stipularis Shorea Shorea stipularis \N \N \N \N \N 41132 E.racemosus Eriocephalus Eriocephalus racemosus \N \N \N \N \N 41133 A.agrestis Astragalus Astragalus agrestis \N \N \N \N \N 41134 A.staheliana Apinagia Apinagia staheliana \N \N \N \N \N 41135 S.texana Stillingia Stillingia texana Texas toothleaf \N \N \N \N 41136 B.comptonii Bubbia Bubbia comptonii \N \N \N \N \N 41137 A.aristulata Aulonemia Aulonemia aristulata \N \N \N \N \N 41138 T.juncea Tetratheca Tetratheca juncea \N \N \N \N \N 41139 \N genus Aridaria \N \N \N \N \N 41140 R.98-1834-28 Rytigynia Rytigynia sp. NBG 98-1834-28 \N \N \N \N \N 41141 A.arundelliana Alpinia Alpinia arundelliana \N \N \N \N \N 41142 M.hondurana Mimosa Mimosa hondurana \N \N \N \N \N 41143 C.carneus Cyrtanthus Cyrtanthus carneus \N \N \N \N \N 41144 M.bracteata Myricaria Myricaria bracteata \N \N \N \N \N 41145 B.lobbii Bulbophyllum Bulbophyllum lobbii \N \N \N \N \N 41146 M.latifolia Molineria Molineria latifolia lumbah \N \N \N \N 41147 C.glauca Canna Canna glauca \N \N \N \N \N 41148 \N varietas Michelia figo var. figo \N \N \N \N \N 41149 E.extensa Elegia Elegia extensa \N \N \N \N \N 41150 C.langkastii Comparettia Comparettia langkastii \N \N \N \N \N 41151 S.depressa Salicornia Salicornia depressa \N \N \N \N \N 41152 D.lenticellatum Dugandiodendron Dugandiodendron lenticellatum \N \N \N \N \N 41153 M.rugellosa Mandevilla Mandevilla rugellosa \N \N \N \N \N 41154 M.emersleyi Muhlenbergia Muhlenbergia emersleyi \N \N \N \N \N 41155 P.SH-2010 Pericampylus Pericampylus sp. SH-2010 \N \N \N \N \N 41156 C.graminicola Crinum Crinum graminicola \N \N \N \N \N 41157 M.scorpioides Myosotis Myosotis scorpioides forget-me-not \N \N \N \N 41158 C.00-214 Cistanthe Cistanthe sp. Hershkovitz 00-214 \N \N \N \N \N 41159 T.bullpenensis Telipogon Telipogon bullpenensis \N \N \N \N \N 41160 \N genus Evolvulus \N \N \N \N \N 41161 C.portillae Comparettia Comparettia portillae \N \N \N \N \N 41162 P.rufa Pilea Pilea rufa \N \N \N \N \N 41163 O.staffordiana Oxalis Oxalis staffordiana \N \N \N \N \N 41164 C.tinctoria Cuscuta Cuscuta tinctoria \N \N \N \N \N 41165 \N varietas Platanus mexicana var. mexicana \N \N \N \N \N 41166 S.elliottii Symphyotrichum Symphyotrichum elliottii \N \N \N \N \N 41167 H.purpurea Halimocnemis Halimocnemis purpurea \N \N \N \N \N 41168 S.nurrica Serapias Serapias nurrica \N \N \N \N \N 41169 B.480 Belonophora Belonophora sp. TAF 480 \N \N \N \N \N 41170 R.montanus Rumex Rumex montanus \N \N \N \N \N 41171 \N genus Heterolamium \N \N \N \N \N 41172 L.maculatum Lilium Lilium maculatum \N \N \N \N \N 41173 F.harpago Fagonia Fagonia harpago \N \N \N \N \N 41174 C.lobata Calceolaria Calceolaria lobata \N \N \N \N \N 41175 S.hexaptera Sebastiania Sebastiania hexaptera \N \N \N \N \N 41176 S.setchuensis Symplocos Symplocos setchuensis \N \N \N \N \N 41177 R.chiliantha Rhoiptelea Rhoiptelea chiliantha \N \N \N \N \N 41178 H.humilis Habenaria Habenaria humilis \N \N \N \N \N 41179 H.JANB-2011 Habenaria Habenaria sp. 10 JANB-2011 \N \N \N \N \N 41180 P.guestii Pulicaria Pulicaria guestii \N \N \N \N \N 41181 C.arizonicus Coreocarpus Coreocarpus arizonicus \N \N \N \N \N 41182 A.macvaughii Arracacia Arracacia macvaughii \N \N \N \N \N 41183 A.barbata Avena Avena barbata barbed oat,slender oat \N \N \N \N 41184 \N subspecies Teucrium polium subsp. capitatum \N \N \N \N \N 41185 C.hardyi Cynanchum Cynanchum hardyi \N \N \N \N \N 41186 G.myrianthea Grisollea Grisollea myrianthea \N \N \N \N \N 41187 B.officinalis Buddleja Buddleja officinalis \N \N \N \N \N 41188 M.mentosa Masdevallia Masdevallia mentosa \N \N \N \N \N 41189 \N genus Bothriocline \N \N \N \N \N 41190 C.polysperes Chionogentias Chionogentias polysperes \N \N \N \N \N 41191 S.s.n. Sonderina Sonderina sp. 2-Lutzeyer s.n. \N \N \N \N \N 41192 E.serrata Engelhardia Engelhardia serrata \N \N \N \N \N 41193 M.paniculata Melicope Melicope paniculata \N \N \N \N \N 41194 \N varietas Reseda gilgiana var. gilgiana \N \N \N \N \N 41195 R.patula Ruellia Ruellia patula \N \N \N \N \N 41196 A.debilis Aristolochia Aristolochia debilis ma dou ling,tian xian teng \N \N \N \N 41197 C.biflora Calceolaria Calceolaria biflora \N \N \N \N \N 41198 T.multiflora Tigridia Tigridia multiflora \N \N \N \N \N 41199 M.macrophyllus Melicytus Melicytus macrophyllus \N \N \N \N \N 41200 B.tiehmii Boechera Boechera tiehmii \N \N \N \N \N 41201 T.verrucosus Trigonostemon Trigonostemon verrucosus \N \N \N \N \N 41202 A.textile Allium Allium textile \N \N \N \N \N 41203 T.macropterus Tribulus Tribulus macropterus \N \N \N \N \N 41204 C.kongensis Croton Croton kongensis \N \N \N \N \N 41205 S.weinmanniifolius Schinus Schinus weinmanniifolius \N \N \N \N \N 41206 Y.polytricha Yushania Yushania polytricha \N \N \N \N \N 41207 T.variegata Tolumnia Tolumnia variegata \N \N \N \N \N 41208 A.strigosa Avena Avena strigosa black oat \N \N \N \N 41209 A.rosea Atriplex Atriplex rosea \N \N \N \N \N 41210 \N tribe Ampereae \N \N \N \N \N 41211 V.nakashimae Vigna Vigna nakashimae \N \N \N \N \N 41212 L.flavescens Leymus Leymus flavescens \N \N \N \N \N 41213 C.longiflorum Cyclophyllum Cyclophyllum longiflorum \N \N \N \N \N 41214 S.funstonii Saxifraga Saxifraga funstonii \N \N \N \N \N 41215 D.cordifolia Drymaria Drymaria cordifolia \N \N \N \N \N 41216 S.laxus Sporobolus Sporobolus laxus \N \N \N \N \N 41217 \N genus Tellima \N \N \N \N \N 41218 S.723 Securidaca Securidaca sp. Bello 723 \N \N \N \N \N 41219 L.96175 Linum Linum sp. Qiu 96175 \N \N \N \N \N 41220 \N no rank Rosa banksiae f. lutescens \N \N \N \N \N 41221 N.arenarium Nothoscordum Nothoscordum arenarium \N \N \N \N \N 41222 P.rupestre Phagnalon Phagnalon rupestre \N \N \N \N \N 41223 B.5957 Brachycorythis Brachycorythis sp. RBGK 5957 \N \N \N \N \N 41224 E.foetidum Erodium Erodium foetidum \N \N \N \N \N 41225 T.riederianus Trollius Trollius riederianus \N \N \N \N \N 41226 P.mira Prunus Prunus mira \N \N \N \N \N 41227 E.klapperi Echinocereus Echinocereus klapperi \N \N \N \N \N 41228 P.gabrielii Pulicaria Pulicaria gabrielii \N \N \N \N \N 41229 S.aucheri Salsola Salsola aucheri \N \N \N \N \N 41230 C.microcala Cordylostigma Cordylostigma microcala \N \N \N \N \N 41231 P.wilsonii Passiflora Passiflora wilsonii \N \N \N \N \N 41232 J.spongiosa Jordaaniella Jordaaniella spongiosa \N \N \N \N \N 41233 T.s.n. Tapeinochilos Tapeinochilos sp. Specht s.n. \N \N \N \N \N 41234 O.aureoflava Oxalis Oxalis aureoflava \N \N \N \N \N 41235 T.major Tragopogon Tragopogon major \N \N \N \N \N 41236 \N genus Cheilotheca \N \N \N \N \N 41237 D.rogersii Diplodium Diplodium rogersii \N \N \N \N \N 41238 L.chequen Luma Luma chequen \N \N \N \N \N 41239 H.quercifolia Hydrangea Hydrangea quercifolia \N \N \N \N \N 41240 \N genus Cyperochloa \N \N \N \N \N 41241 \N genus Schunkea \N \N \N \N \N 41242 A.genipi Artemisia Artemisia genipi \N \N \N \N \N 41243 \N genus Phillyrea \N \N \N \N \N 41244 H.occidentalis Helianthus Helianthus occidentalis \N \N \N \N \N 41245 H.busseana Hugonia Hugonia busseana \N \N \N \N \N 41246 C.tectorum Chondropetalum Chondropetalum tectorum \N \N \N \N \N 41247 \N no rank Phalaenopsis sp. 'pSPORT1' \N \N \N \N \N 41248 \N varietas Geranium shikokianum var. quelpaertense \N \N \N \N \N 41249 O.malkarmayorum Onosma Onosma malkarmayorum \N \N \N \N \N 41250 A.triplinervia Arrabidaea Arrabidaea triplinervia \N \N \N \N \N 41251 Q.lateralis Quesnelia Quesnelia lateralis \N \N \N \N \N 41252 \N subspecies Primula obconica subsp. begoniiformis \N \N \N \N \N 41253 P.glomerata Photinia Photinia glomerata \N \N \N \N \N 41254 I.latibracteata Iliamna Iliamna latibracteata \N \N \N \N \N 41255 M.physalodes Melasma Melasma physalodes \N \N \N \N \N 41256 M.peduncularis Maytenus Maytenus peduncularis \N \N \N \N \N 41257 P.hybridum Papaver Papaver hybridum rough poppy \N \N \N \N 41258 E.japonicum Eupatorium Eupatorium japonicum \N \N \N \N \N 41259 E.royleana Euphorbia Euphorbia royleana \N \N \N \N \N 41260 C.grossheimii Crambe Crambe grossheimii \N \N \N \N \N 41261 \N genus Machaonia \N \N \N \N \N 46118 \N genus Pararchidendron \N \N \N \N \N 41262 E.pallasii Euphorbia Euphorbia pallasii \N \N \N \N \N 41263 A.oxycarpus Aphragmus Aphragmus oxycarpus \N \N \N \N \N 41264 \N genus Actinolema \N \N \N \N \N 41265 E.ericifolius Euryops Euryops ericifolius \N \N \N \N \N 41266 T.baviensis Trevesia Trevesia baviensis \N \N \N \N \N 41267 D.clone' Dahlia Dahlia imperialis 'NZ clone' \N \N \N \N \N 41268 C.orientalis Crambe Crambe orientalis \N \N \N \N \N 41269 B.cuneata Burnettia Burnettia cuneata \N \N \N \N \N 41270 E.sparrmannii Erica Erica sparrmannii \N \N \N \N \N 41271 D.calycinum Dissanthelium Dissanthelium calycinum \N \N \N \N \N 41272 T.pohliana Tillandsia Tillandsia pohliana \N \N \N \N \N 41273 W.insignis Wetria Wetria insignis \N \N \N \N \N 41274 K.dasyphylla Koeleria Koeleria dasyphylla \N \N \N \N \N 41275 S.glauca Simarouba Simarouba glauca aceituno,dysentery-bark \N \N \N \N 41276 C.pedemontana Cruciata Cruciata pedemontana \N \N \N \N \N 41277 P.shangianus Panax Panax shangianus \N \N \N \N \N 41278 I.koreana Iris Iris koreana \N \N \N \N \N 41279 H.villosa Heuchera Heuchera villosa hairy alumroot \N \N \N \N 41280 V.pyrenaica Valeriana Valeriana pyrenaica \N \N \N \N \N 41281 L.nanum Lilium Lilium nanum \N \N \N \N \N 41282 \N subspecies Lyonothamnus floribundus subsp. asplenifolius Santa Cruz Island ironwood \N \N \N \N 41283 O.betschleriana Olmediella Olmediella betschleriana \N \N \N \N \N 41284 M.emarginata Macarisia Macarisia emarginata \N \N \N \N \N 41285 N.glutinosa Nepeta Nepeta glutinosa \N \N \N \N \N 41286 H.violacea Hypselodelphys Hypselodelphys violacea \N \N \N \N \N 41287 C.dieckii Campanula Campanula dieckii \N \N \N \N \N 41288 P.interior Petunia Petunia interior \N \N \N \N \N 41289 S.hexandrum Solanum Solanum hexandrum \N \N \N \N \N 41290 R.mollis Rosa Rosa mollis \N \N \N \N \N 41291 \N varietas Lotus argophyllus var. niveus \N \N \N \N \N 41292 \N subspecies Hornungia petraea subsp. petraea \N \N \N \N \N 41293 E.fruticosa Erithalis Erithalis fruticosa \N \N \N \N \N 41294 \N varietas Asarum sieboldii var. sieboldii \N \N \N \N \N 41295 T.rueppellianum Trifolium Trifolium rueppellianum \N \N \N \N \N 41296 O.tulearensis Ormocarpopsis Ormocarpopsis tulearensis \N \N \N \N \N 41297 G.caroli-kochii Gagea Gagea caroli-kochii \N \N \N \N \N 41298 P.gratiosa Polycycnis Polycycnis gratiosa \N \N \N \N \N 41299 B.luteum Brachystelma Brachystelma luteum \N \N \N \N \N 41300 L.barbarum Lycium Lycium barbarum goji berry,matrimony vine,ning xia gou qi,wolfberry \N \N \N \N 41301 Z.pilosa Zieria Zieria pilosa \N \N \N \N \N 41302 Z.grandiflora Zimmermannia Zimmermannia grandiflora \N \N \N \N \N 41303 N.mira Nepenthes Nepenthes mira \N \N \N \N \N 41304 D.cauliflora Diospyros Diospyros cauliflora \N \N \N \N \N 41305 S.95117 Smilax Smilax sp. Qiu 95117 \N \N \N \N \N 41306 C.attenuata Cuscuta Cuscuta attenuata \N \N \N \N \N 41307 \N genus Myripnois \N \N \N \N \N 41308 L.chamaepitys Lenzia Lenzia chamaepitys \N \N \N \N \N 41309 C.brevicornis Consolida Consolida brevicornis \N \N \N \N \N 41310 C.beeringianum Cerastium Cerastium beeringianum \N \N \N \N \N 41311 M.paradoxa Myrialepis Myrialepis paradoxa \N \N \N \N \N 41312 P.barbatus Plumatichilos Plumatichilos barbatus \N \N \N \N \N 41313 C.8382 Comparettia Comparettia sp. Hirtz 8382 \N \N \N \N \N 41314 H.spinuliflora Habrosia Habrosia spinuliflora \N \N \N \N \N 41315 D.parvifolia Dicrastylis Dicrastylis parvifolia \N \N \N \N \N 41316 I.obtusifolia Inula Inula obtusifolia \N \N \N \N \N 41317 E.lateralis Euchiton Euchiton lateralis \N \N \N \N \N 41318 B.cylindrocarpa Burmeistera Burmeistera cylindrocarpa \N \N \N \N \N 41319 \N genus Quivisianthe \N \N \N \N \N 41320 E.hedyotoides Euphorbia Euphorbia hedyotoides \N \N \N \N \N 41321 M.moto Manglietia Manglietia moto \N \N \N \N \N 41322 R.lucieae Rosa Rosa lucieae memorial rose \N \N \N \N 41323 J.perakensis Johannesteijsmannia Johannesteijsmannia perakensis \N \N \N \N \N 41324 P.ciliatum Pereilema Pereilema ciliatum \N \N \N \N \N 41325 S.retusus Sarcolobus Sarcolobus retusus \N \N \N \N \N 41326 P.309 Pinanga Pinanga sp. Loo 309 \N \N \N \N \N 41327 M.rufa Merxmuellera Merxmuellera rufa \N \N \N \N \N 41328 R.albertii Rosa Rosa albertii \N \N \N \N \N 41329 P.rumphiana Pinanga Pinanga rumphiana \N \N \N \N \N 41330 M.warburgii Metroxylon Metroxylon warburgii \N \N \N \N \N 41331 P.acapulcensis Pterocarpus Pterocarpus acapulcensis \N \N \N \N \N 41332 I.dunnianum Illicium Illicium dunnianum \N \N \N \N \N 41333 N.nummularia Nautonia Nautonia nummularia \N \N \N \N \N 41334 \N genus Thesium \N \N \N \N \N 41335 R.sativus Raphanus Raphanus raphanistrum x Raphanus sativus \N \N \N \N \N 41336 L.rotundum Lepidium Lepidium rotundum \N \N \N \N \N 41337 \N family Coriariaceae \N \N \N \N \N 41338 X.arnottianum Xanthophyllum Xanthophyllum arnottianum \N \N \N \N \N 41339 H.linearifolium Holcoglossum Holcoglossum linearifolium \N \N \N \N \N 41340 H.andinum Hemipogon Hemipogon andinum \N \N \N \N \N 41341 P.pubescens Petalostigma Petalostigma pubescens \N \N \N \N \N 41342 S.siegesbeckius Smallanthus Smallanthus siegesbeckius \N \N \N \N \N 41343 \N genus Dombeya \N \N \N \N \N 41344 E.asperrimum Echium Echium asperrimum \N \N \N \N \N 41345 T.cometia Thecacoris Thecacoris cometia \N \N \N \N \N 41346 \N tribe Condamineeae \N \N \N \N \N 41347 C.umpquaensis Calochortus Calochortus umpquaensis \N \N \N \N \N 41348 T.cacao Theobroma Theobroma cacao cacao,cocoa \N \N \N \N 41349 \N varietas Gymnocalycium hossei var. hossei \N \N \N \N \N 41350 A.atepalus Acianthus Acianthus atepalus \N \N \N \N \N 41351 O.wildeana Ornithoboea Ornithoboea wildeana \N \N \N \N \N 41352 T.5602 unclassified Taraxacum Taraxacum (sect. Borealia) sp. 5602 \N \N \N \N \N 41353 C.angustifolia Curcuma Curcuma angustifolia East Indian arrowroot,tikor \N \N \N \N 41354 V.propinquum Viburnum Viburnum propinquum \N \N \N \N \N 41355 E.2067 Enicosanthum Enicosanthum sp. Ambriansyah et al. 2067 \N \N \N \N \N 41356 M.FS876 Maytenus Maytenus sp. FS876 \N \N \N \N \N 41357 G.acuminata Gurania Gurania acuminata \N \N \N \N \N 41358 \N genus Cuscuta \N \N \N \N \N 41359 \N genus Mulinum \N \N \N \N \N 41360 P.glaucescens Primula Primula glaucescens \N \N \N \N \N 41361 L.blandus Lampranthus Lampranthus blandus \N \N \N \N \N 41362 \N genus Henrardia \N \N \N \N \N 41363 E.dentatus Elymus Elymus dentatus \N \N \N \N \N 41364 S.officinalis Salvia Salvia officinalis garden sage \N \N \N \N 41365 R.illyricus Ranunculus Ranunculus illyricus \N \N \N \N \N 41366 G.banksii Grevillea Grevillea banksii \N \N \N \N \N 41367 L.linearis Leucanthemella Leucanthemella linearis \N \N \N \N \N 41368 A.brachypetalus Artabotrys Artabotrys brachypetalus \N \N \N \N \N 41369 M.officinarum Mandragora Mandragora officinarum mandrake \N \N \N \N 41370 C.IT-2010a Cucumis Cucumis sp. IT-2010a \N \N \N \N \N 41371 A.circinatum Acer Acer circinatum vine maple \N \N \N \N 41372 D.annuum Dimerostemma Dimerostemma annuum \N \N \N \N \N 41373 S.canadensis Solidago Solidago canadensis \N \N \N \N \N 41374 O.exalatum Oncidium Oncidium exalatum \N \N \N \N \N 41375 M.speciosa Moraea Moraea speciosa \N \N \N \N \N 41376 S.pubescens Syringa Syringa pubescens \N \N \N \N \N 41377 C.JK-2008m Cardamine Cardamine sp. JK-2008m \N \N \N \N \N 41378 \N subspecies Jacobaea carniolica subsp. carniolica \N \N \N \N \N 41379 A.cobbe Allophylus Allophylus cobbe \N \N \N \N \N 41380 R.kurdica Rhynchocorys Rhynchocorys kurdica \N \N \N \N \N 41381 \N genus Pseudoridolfia \N \N \N \N \N 41382 C.tataricum Conioselinum Conioselinum tataricum \N \N \N \N \N 41383 \N varietas Lagenophora stipitata var. montana \N \N \N \N \N 41384 Z.andina Zannichellia Zannichellia andina \N \N \N \N \N 41385 C.melanocarpus Cotoneaster Cotoneaster melanocarpus \N \N \N \N \N 41386 C.454 Clusia Clusia cf. flavida Gustafsson 454 \N \N \N \N \N 41387 P.restrepioides Pleurothallis Pleurothallis restrepioides \N \N \N \N \N 41388 \N genus Wentsaiboea \N \N \N \N \N 41389 C.brevistylum Cirsium Cirsium brevistylum Indian thistle \N \N \N \N 41390 C.brevicaulis Carex Carex brevicaulis \N \N \N \N \N 41391 S.palembanica Saraca Saraca palembanica \N \N \N \N \N 41392 M.canescens Mespilus Mespilus canescens \N \N \N \N \N 41393 O.azorellacea Oreomyrrhis Oreomyrrhis azorellacea \N \N \N \N \N 41394 \N genus Hesperomannia \N \N \N \N \N 41395 L.macrantha Limosella Limosella macrantha \N \N \N \N \N 41396 A.caricinus Amphipogon Amphipogon caricinus \N \N \N \N \N 41397 \N family Ixonanthaceae \N \N \N \N \N 41398 B.fernandesii Byttneria Byttneria fernandesii \N \N \N \N \N 41399 S.lupulinum Satyrium Satyrium lupulinum \N \N \N \N \N 41400 E.wandoo Eucalyptus Eucalyptus wandoo \N \N \N \N \N 41401 A.violacea Amphithalea Amphithalea violacea \N \N \N \N \N 41402 \N genus Oligomeris \N \N \N \N \N 41403 K.hispida Keetia Keetia hispida \N \N \N \N \N 41404 L.souliei Leontopodium Leontopodium souliei \N \N \N \N \N 41405 D.kailarsenii Dalzellia Dalzellia kailarsenii \N \N \N \N \N 41406 B.lophophora Baynesia Baynesia lophophora \N \N \N \N \N 41407 A.insularis Avena Avena insularis \N \N \N \N \N 41408 B.flavida Berberis Berberis flavida \N \N \N \N \N 41409 C.pungens Cicer Cicer pungens \N \N \N \N \N 41410 S.cuneata Sclerolaena Sclerolaena cuneata \N \N \N \N \N 41411 M.parvifolia Momordica Momordica parvifolia \N \N \N \N \N 41412 P.dominantinervium Piper Piper dominantinervium \N \N \N \N \N 41413 C.reclinata Colubrina Colubrina reclinata \N \N \N \N \N 41414 P.zambesiaca Polystachya Polystachya zambesiaca \N \N \N \N \N 41415 U.laxiflora Uncinia Uncinia laxiflora \N \N \N \N \N 41416 D.adhatodoides Duvernoia Duvernoia adhatodoides \N \N \N \N \N 41417 S.incarnata Sprengelia Sprengelia incarnata \N \N \N \N \N 41418 G.columbinum Geranium Geranium columbinum \N \N \N \N \N 41419 \N genus Scadoxus \N \N \N \N \N 41420 V.dahuricum Veratrum Veratrum dahuricum \N \N \N \N \N 41421 \N genus Bravaisia \N \N \N \N \N 41422 H.reticulata Haworthia Haworthia reticulata \N \N \N \N \N 41423 E.leiomerus Erigeron Erigeron leiomerus \N \N \N \N \N 41424 F.ovalis Ferdinandusa Ferdinandusa ovalis \N \N \N \N \N 41425 \N genus Listrostachys \N \N \N \N \N 41426 S.ustulatus Sonchus Sonchus ustulatus \N \N \N \N \N 41427 C.CEH-2010a Calyptrocarya Calyptrocarya sp. CEH-2010a \N \N \N \N \N 44334 \N genus Chlamydophora \N \N \N \N \N 41428 B.balansae Bromelia Bromelia balansae \N \N \N \N \N 41429 D.aristata Disa Disa aristata \N \N \N \N \N 41430 \N genus Moraea \N \N \N \N \N 41431 M.TAP Macrocarpaea Macrocarpaea sp. TAP \N \N \N \N \N 41432 S.lanceolata Scaphochlamys Scaphochlamys lanceolata \N \N \N \N \N 41433 A.flavum Arisaema Arisaema flavum \N \N \N \N \N 41434 P.concolor Pachycarpus Pachycarpus concolor \N \N \N \N \N 41435 S.trabutiana Saxifraga Saxifraga trabutiana \N \N \N \N \N 41436 Y.carnerosana Yucca Yucca carnerosana \N \N \N \N \N 41437 \N genus Rosenbergiodendron \N \N \N \N \N 41438 S.haenkei Salvia Salvia haenkei \N \N \N \N \N 41439 E.retroflexa Eleocharis Eleocharis retroflexa \N \N \N \N \N 41440 P.ternifolia Pityrodia Pityrodia ternifolia \N \N \N \N \N 41441 E.mathewsii Epidendrum Epidendrum mathewsii \N \N \N \N \N 41442 B.lunarioides Bauhinia Bauhinia lunarioides \N \N \N \N \N 41443 L.franchetiana Ligularia Ligularia franchetiana \N \N \N \N \N 41444 U.paucispicata Urochloa Urochloa paucispicata \N \N \N \N \N 41445 V.pompona Vanilla Vanilla pompona \N \N \N \N \N 41446 R.2171 Randia Randia aff. pubiflora Gustafsson et al. 2171 \N \N \N \N \N 41447 M.pedunculatum Monadenium Monadenium pedunculatum \N \N \N \N \N 41448 P.bracteata Paraia Paraia bracteata \N \N \N \N \N 41449 \N genus Tetraphyllum \N \N \N \N \N 41450 J.scabrifolia Jarava Jarava scabrifolia \N \N \N \N \N 41451 F.pellucidopunctata Ficus Ficus pellucidopunctata \N \N \N \N \N 41452 P.freyniana Potentilla Potentilla freyniana \N \N \N \N \N 41453 H.arenaria Habenaria Habenaria arenaria \N \N \N \N \N 41454 \N varietas Petroselinum crispum Neapolitanum Group Italian parsley \N \N \N \N 46119 \N genus Scaphispatha \N \N \N \N \N 41455 S.zeyheri Stipagrostis Stipagrostis zeyheri \N \N \N \N \N 41456 \N varietas Gymnocalycium baldianum var. baldianum \N \N \N \N \N 41457 \N genus Microula \N \N \N \N \N 41458 E.fedtschenkoana Euphrasia Euphrasia fedtschenkoana \N \N \N \N \N 41459 C.sebestena Cordia Cordia sebestena anacahuita,geigertree,siricote blanco \N \N \N \N 41460 B.torta Bidens Bidens torta \N \N \N \N \N 41461 C.triceratops Chiloglottis Chiloglottis triceratops \N \N \N \N \N 41462 P.s.n. Prescottia Prescottia sp. 2 Szlachetko s.n. \N \N \N \N \N 41463 S.0040Gal Lycopersicon Solanum sp. 0040Gal \N \N \N \N \N 41464 B.rigida Berkheya Berkheya rigida \N \N \N \N \N 41465 P.glyciphylla Poitea Poitea glyciphylla \N \N \N \N \N 41466 T.fitzgeraldii Triodia Triodia fitzgeraldii \N \N \N \N \N 41467 C.spinosa Caragana Caragana spinosa \N \N \N \N \N 41468 I.kuakuensis Ixora Ixora kuakuensis \N \N \N \N \N 41469 K.baxteri Kunzea Kunzea baxteri \N \N \N \N \N 41470 E.banksii Erica Erica banksii \N \N \N \N \N 41471 C.wigginsii Croton Croton wigginsii \N \N \N \N \N 41472 R.primuloides Raffenaldia Raffenaldia primuloides \N \N \N \N \N 41473 C.tweediei Calliandra Calliandra tweediei \N \N \N \N \N 41474 A.nivea Alfredia Alfredia nivea \N \N \N \N \N 41475 C.obovata Carphalea Carphalea obovata \N \N \N \N \N 41476 C.cajamarcana Coursetia Coursetia cajamarcana \N \N \N \N \N 41477 C.saligna Centaurea Centaurea saligna \N \N \N \N \N 41478 \N subspecies Reseda lanceolata subsp. lanceolata \N \N \N \N \N 41479 D.palembanicus Dipterocarpus Dipterocarpus palembanicus \N \N \N \N \N 41480 \N genus Hypenia \N \N \N \N \N 41481 P.confusa Pleione Pleione x confusa \N \N \N \N \N 41482 T.physodes Trifolium Trifolium physodes \N \N \N \N \N 41483 \N genus Thrixspermum \N \N \N \N \N 41484 N.mutabilis Nicotiana Nicotiana mutabilis \N \N \N \N \N 41485 \N varietas Zeugites americanus var. mexicanus \N \N \N \N \N 41486 S.piurae Solanum Solanum piurae \N \N \N \N \N 41487 C.grandiflora Clusia Clusia grandiflora \N \N \N \N \N 41488 P.lutea Polygala Polygala lutea orange milkwort \N \N \N \N 41489 \N genus Dipentodon \N \N \N \N \N 41490 C.tylocarpum Corispermum Corispermum tylocarpum \N \N \N \N \N 41491 C.glabra Conostylis Conostylis glabra \N \N \N \N \N 41492 \N subspecies Arisaema flavum subsp. tibeticum \N \N \N \N \N 41493 \N genus Macrolenes \N \N \N \N \N 41494 S.aurea Sebaea Sebaea aurea \N \N \N \N \N 41495 S.thysanotus Streptocarpus Streptocarpus thysanotus \N \N \N \N \N 41496 \N genus Wimmerella \N \N \N \N \N 41497 P.ovata Perrottetia Perrottetia ovata \N \N \N \N \N 41498 D.depauperatum Delphinium Delphinium depauperatum \N \N \N \N \N 41499 S.mocinoi Salvia Salvia mocinoi \N \N \N \N \N 41500 P.flava Piptadenia Piptadenia flava \N \N \N \N \N 41501 H.ciliolata Hyacinthoides Hyacinthoides ciliolata \N \N \N \N \N 41502 N.brevipes Neotorularia Neotorularia brevipes \N \N \N \N \N 41503 S.SH-2010 Strophanthus Strophanthus sp. SH-2010 \N \N \N \N \N 41504 I.emarginata Isatis Isatis emarginata \N \N \N \N \N 41505 A.parishii Atriplex Atriplex parishii \N \N \N \N \N 41506 E.colorata Echeveria Echeveria colorata \N \N \N \N \N 41507 M.rosthornii Macropanax Macropanax rosthornii \N \N \N \N \N 41508 F.statice Fagopyrum Fagopyrum statice \N \N \N \N \N 41509 H.uniseriatum Hymenostephium Hymenostephium uniseriatum \N \N \N \N \N 41510 A.graebneriana Abelia Abelia graebneriana \N \N \N \N \N 41511 O.bifida Oxalis Oxalis bifida \N \N \N \N \N 41512 M.cardinalis Mimulus Mimulus cardinalis \N \N \N \N \N 41513 B.mcvaughii Bunchosia Bunchosia mcvaughii \N \N \N \N \N 41514 A.verticillata Aphelandra Aphelandra verticillata \N \N \N \N \N 41515 S.513 Sphaerorrhiza Sphaerorrhiza sp. Araujo & al. 513 \N \N \N \N \N 41516 V.sororia Viola Viola sororia blue praire violet,common blue violet,dooryard violet \N \N \N \N 41517 \N genus Hagsatera \N \N \N \N \N 41518 G.10948 Gomphrena Gomphrena sp. Chase 10948 \N \N \N \N \N 41519 S.tenuiflorum Syzygium Syzygium tenuiflorum \N \N \N \N \N 41520 R.keithii Rafflesia Rafflesia keithii \N \N \N \N \N 41521 E.heikobleheri Echinodorus Echinodorus heikobleheri \N \N \N \N \N 41522 S.eugeniifolia Strychnos Strychnos eugeniifolia \N \N \N \N \N 41523 Q.baloot Quercus Quercus baloot \N \N \N \N \N 41524 C.2489 Cuscuta Cuscuta cf. chilensis Teiller et al 2489 \N \N \N \N \N 41525 A.rheophytica Areca Areca rheophytica \N \N \N \N \N 41526 R.moorei Rhinerrhiza Rhinerrhiza moorei \N \N \N \N \N 41527 L.nasmophila Livistona Livistona nasmophila \N \N \N \N \N 41528 H.fritzei Hieracium Hieracium fritzei \N \N \N \N \N 41529 S.antillensis Stelis Stelis antillensis \N \N \N \N \N 41530 D.1527 Descurainia Descurainia cf. brevisiliqua Goodson 1527 \N \N \N \N \N 41531 B.SH-2010 Bacopa Bacopa sp. SH-2010 \N \N \N \N \N 41532 S.virginiana Spiraea Spiraea virginiana \N \N \N \N \N 41533 \N genus Dissocarpus \N \N \N \N \N 41534 \N subspecies Linaria multicaulis subsp. galioides \N \N \N \N \N 41535 H.pulchra Huttonaea Huttonaea pulchra \N \N \N \N \N 41536 A.parviflorum Achyrospermum Achyrospermum parviflorum \N \N \N \N \N 41537 F.hopeiensis Fraxinus Fraxinus hopeiensis \N \N \N \N \N 41538 A.bryoides Arabis Arabis bryoides \N \N \N \N \N 41539 C.cervicornu Cliffortia Cliffortia cervicornu \N \N \N \N \N 41540 C.nevadensis Centranthus Centranthus nevadensis \N \N \N \N \N 41541 \N genus Pseudogaltonia \N \N \N \N \N 41542 C.edulis Carissa Carissa edulis \N \N \N \N \N 41543 O.sabahensis Orchidantha Orchidantha sabahensis \N \N \N \N \N 41544 G.baileyana Grevillea Grevillea baileyana \N \N \N \N \N 41545 A.ampeloprasum Allium Allium ampeloprasum leek \N \N \N \N 41546 A.arboreus Allophylus Allophylus arboreus \N \N \N \N \N 41547 P.undulatosepala Pitcairnia Pitcairnia undulatosepala \N \N \N \N \N 41548 S.polaris Salix Salix polaris \N \N \N \N \N 41549 \N subspecies Cardamine amara subsp. opicii \N \N \N \N \N 41550 G.angustus Gonatopus Gonatopus angustus \N \N \N \N \N 41551 M.pygmaea Microseris Microseris pygmaea \N \N \N \N \N 41552 R.neves-armondii Rhipsalis Rhipsalis neves-armondii \N \N \N \N \N 41553 A.crassa Aegilops Aegilops crassa \N \N \N \N \N 41554 F.praealta Floydia Floydia praealta \N \N \N \N \N 41555 S.africana Stipularia Stipularia africana \N \N \N \N \N 41556 M.foetida Momordica Momordica foetida \N \N \N \N \N 41557 F.clavipilosa Felicia Felicia clavipilosa \N \N \N \N \N 41558 U.africana Uncaria Uncaria africana \N \N \N \N \N 41559 B.humbertii Bulbophyllum Bulbophyllum humbertii \N \N \N \N \N 41560 A.lactiflora Artemisia Artemisia lactiflora \N \N \N \N \N 41561 C.deltoidifolia Coronanthera Coronanthera deltoidifolia \N \N \N \N \N 41562 \N genus Mucuna \N \N \N \N \N 41563 \N varietas Carex tonsa var. rugosperma parachute sedge \N \N \N \N 41564 V.corymbosum Vaccinium Vaccinium corymbosum American blueberry,highbush blueberry \N \N \N \N 41565 R.904 Razafimandimbisonia Razafimandimbisonia sp. 2 Eriksson et al. 904 \N \N \N \N \N 41566 L.virgatum Limonium Limonium virgatum \N \N \N \N \N 41567 C.dallachii Casearia Casearia dallachii \N \N \N \N \N 41568 \N genus Rondonanthus \N \N \N \N \N 41569 \N family Agdestidaceae \N \N \N \N \N 41570 A.mairei Actaea Actaea mairei \N \N \N \N \N 41571 E.sakishimensis Eurya Eurya sakishimensis \N \N \N \N \N 41572 S.martiana Sida Sida martiana \N \N \N \N \N 41573 D.cintranus Dianthus Dianthus cintranus \N \N \N \N \N 41574 \N genus Gonocytisus \N \N \N \N \N 41575 P.epunctulata Parnassia Parnassia epunctulata \N \N \N \N \N 41576 C.guianensis Cassipourea Cassipourea guianensis \N \N \N \N \N 41577 V.hancockii Vitis Vitis hancockii \N \N \N \N \N 41578 C.cyperoides Cyperus Cyperus cyperoides \N \N \N \N \N 41579 \N no rank Zoysieae incertae sedis \N \N \N \N \N 41580 \N genus Monostylis \N \N \N \N \N 41581 P.decaryi Pervillaea Pervillaea decaryi \N \N \N \N \N 41582 C.cathayensis Carya Carya cathayensis \N \N \N \N \N 41583 P.tinctoria Persicaria Persicaria tinctoria \N \N \N \N \N 41584 M.acuminata Mecardonia Mecardonia acuminata axilflower \N \N \N \N 41585 \N subspecies Silene caroliniana subsp. caroliniana \N \N \N \N \N 41586 \N family Atherospermataceae \N \N \N \N \N 41587 \N genus Caxamarca \N \N \N \N \N 41588 \N subspecies Triantha occidentalis subsp. brevistyla \N \N \N \N \N 41589 A.maowenensis Angelica Angelica maowenensis \N \N \N \N \N 41590 \N subspecies Peltogyne paniculata subsp. pubescens \N \N \N \N \N 41591 C.semperflorens Crotalaria Crotalaria semperflorens \N \N \N \N \N 41592 R.auriculatum Rhododendron Rhododendron auriculatum \N \N \N \N \N 41593 D.praealta Draba Draba praealta \N \N \N \N \N 41594 I.kilimanjari Impatiens Impatiens kilimanjari \N \N \N \N \N 41595 \N subspecies Cortusa matthioli subsp. moravica \N \N \N \N \N 41596 \N genus Conoclinium \N \N \N \N \N 41597 C.repens Coprosma Coprosma repens \N \N \N \N \N 41598 D.albosanguineum Dendrobium Dendrobium albosanguineum \N \N \N \N \N 41599 P.tenuis Polygala Polygala tenuis \N \N \N \N \N 41600 P.miersii Passiflora Passiflora miersii \N \N \N \N \N 41601 A.bellidiastrum Aster Aster bellidiastrum daisy star aster \N \N \N \N 41602 S.grotei Saintpaulia Saintpaulia grotei \N \N \N \N \N 41603 \N genus Brucea \N \N \N \N \N 41604 P.auritum Piper Piper auritum \N \N \N \N \N 41605 M.longipes Melampodium Melampodium longipes \N \N \N \N \N 41606 S.americana Streptogyna Streptogyna americana \N \N \N \N \N 41607 T.tenellum Trisetum Trisetum tenellum \N \N \N \N \N 41608 A.tuvinicum Allium Allium tuvinicum \N \N \N \N \N 41609 C.supplex Chamaecrista Chamaecrista supplex \N \N \N \N \N 41610 L.marlothii Lotononis Lotononis marlothii \N \N \N \N \N 41611 D.incisa Descurainia Descurainia incisa \N \N \N \N \N 41612 V.grandiflorum Veratrum Veratrum grandiflorum \N \N \N \N \N 41613 \N genus Anaxeton \N \N \N \N \N 41614 M.dichotoma Maxillaria Maxillaria dichotoma \N \N \N \N \N 41615 E.alphitonioides Emmenosperma Emmenosperma alphitonioides \N \N \N \N \N 41616 P.hylandii Pseuduvaria Pseuduvaria hylandii \N \N \N \N \N 41617 R.makinoi Rhododendron Rhododendron makinoi \N \N \N \N \N 41618 S.NIL-Ol-6 Lycopersicon Solanum sp. NIL-Ol-6 \N \N \N \N \N 41619 \N subspecies Hibbertia empetrifolia subsp. empetrifolia \N \N \N \N \N 41620 \N family Stegnospermataceae \N \N \N \N \N 41621 A.interrupta Apera Apera interrupta \N \N \N \N \N 41622 A.rhizomatosus Amorphophallus Amorphophallus rhizomatosus \N \N \N \N \N 41623 S.macrophylla Symplocos Symplocos macrophylla \N \N \N \N \N 41624 L.variolosus Lithocarpus Lithocarpus variolosus \N \N \N \N \N 41625 \N varietas Hypericum attenuatum var. confertissimum \N \N \N \N \N 41626 \N genus Degeneria \N \N \N \N \N 41627 \N subtribe Acianthinae \N \N \N \N \N 41628 \N genus Dicyclophora \N \N \N \N \N 41629 H.crassifolium Helichrysum Helichrysum crassifolium \N \N \N \N \N 41630 \N genus Planchonella \N \N \N \N \N 41631 N.linearis Nicotiana Nicotiana linearis \N \N \N \N \N 41632 \N tribe Areae \N \N \N \N \N 41633 A.taquetii Astilbe Astilbe taquetii \N \N \N \N \N 41634 S.halepense Sorghum Sorghum halepense Johnson grass \N \N \N \N 41635 A.vinosa Asclepias Asclepias vinosa \N \N \N \N \N 41636 M.potosina Manfreda Manfreda potosina \N \N \N \N \N 41637 C.lunifera Chiloschista Chiloschista lunifera \N \N \N \N \N 41638 A.pseudospathulata Alstroemeria Alstroemeria pseudospathulata \N \N \N \N \N 41639 P.erectum Polygonum Polygonum erectum \N \N \N \N \N 41640 M.oreas Melocactus Melocactus oreas \N \N \N \N \N 41641 M.acuifolia Margaritopsis Margaritopsis acuifolia \N \N \N \N \N 41642 M.virginiana Magnolia Magnolia virginiana sweetbay \N \N \N \N 41643 M.jacquemontii Melanocenchris Melanocenchris jacquemontii \N \N \N \N \N 41644 M.liliifera Magnolia Magnolia liliifera \N \N \N \N \N 41645 L.uncialis Lupinus Lupinus uncialis \N \N \N \N \N 41646 K.islandica Koenigia Koenigia islandica \N \N \N \N \N 41647 \N genus Trichophorum \N \N \N \N \N 41648 R.montana Rhaphidophora Rhaphidophora montana \N \N \N \N \N 41649 G.costata Garcinia Garcinia costata \N \N \N \N \N 41650 D.purpurea Diplotropis Diplotropis purpurea \N \N \N \N \N 41651 O.varelae Ononis Ononis varelae \N \N \N \N \N 41652 A.speciosa Asclepias Asclepias speciosa \N \N \N \N \N 41653 C.serpentinum Colchicum Colchicum serpentinum \N \N \N \N \N 41654 O.kegeljani Oncidium Oncidium kegeljani \N \N \N \N \N 41655 C.sancti-lazari Croton Croton sancti-lazari \N \N \N \N \N 41656 O.cintrana Ononis Ononis cintrana \N \N \N \N \N 41657 \N varietas Dendrobium tetragonum var. cacatua \N \N \N \N \N 41658 S.plumosa Stipagrostis Stipagrostis plumosa \N \N \N \N \N 41659 R.xanthotricha Rytigynia Rytigynia xanthotricha \N \N \N \N \N 41660 \N genus Edmondia \N \N \N \N \N 41661 L.macropus Leea Leea macropus \N \N \N \N \N 41662 O.stuartii Olearia Olearia stuartii \N \N \N \N \N 41663 S.perfoliata Sideritis Sideritis perfoliata \N \N \N \N \N 41664 A.sagittata Atriplex Atriplex sagittata \N \N \N \N \N 41665 C.ochroleucus Crocus Crocus ochroleucus \N \N \N \N \N 41666 I.sepulcralis Isolepis Isolepis sepulcralis \N \N \N \N \N 41667 H.piperifolium Heterostemma Heterostemma piperifolium \N \N \N \N \N 41668 E.hermaphroditum Empetrum Empetrum hermaphroditum \N \N \N \N \N 41669 \N subspecies Gueldenstaedtia verna subsp. multiflora \N \N \N \N \N 41670 E.palmatum Eryngium Eryngium palmatum \N \N \N \N \N 41671 O.SH-2010 Oreorchis Oreorchis sp. SH-2010 \N \N \N \N \N 41672 A.hirtus Amorphophallus Amorphophallus hirtus \N \N \N \N \N 41673 \N genus Dinizia \N \N \N \N \N 41674 C.10497 Carex Carex cf. brevior Reznicek 10497 \N \N \N \N \N 41675 \N genus Erycina \N \N \N \N \N 41676 \N genus Uldinia \N \N \N \N \N 41677 H.latifolia Holboellia Holboellia latifolia \N \N \N \N \N 41678 F.atricha Ficus Ficus atricha \N \N \N \N \N 41679 B.orcuttii Brodiaea Brodiaea orcuttii \N \N \N \N \N 41680 L.sample environmental samples Taxonomy:531413 Lamiaceae environmental sample \N \N \N \N \N 41681 \N family Tetrameristaceae \N \N \N \N \N 41682 P.wigramiana Primula Primula wigramiana \N \N \N \N \N 41683 P.coronata Petalacte Petalacte coronata \N \N \N \N \N 41684 E.goetzei Elephantorrhiza Elephantorrhiza goetzei \N \N \N \N \N 41685 C.soratensis Croton Croton soratensis \N \N \N \N \N 41686 B.americana Brunfelsia Brunfelsia americana \N \N \N \N \N 41687 D.acuta Dalbergia Dalbergia acuta \N \N \N \N \N 41688 C.sibthorpiana Cynara Cynara sibthorpiana \N \N \N \N \N 41689 S.9965 Schoenocaulon Schoenocaulon sp. Hinton 9965 \N \N \N \N \N 41690 A.retroflexus Amaranthus Amaranthus retroflexus common amaranth,redroot amaranth,rough pigweed \N \N \N \N 41691 \N subspecies Eucalyptus willisii subsp. willisii \N \N \N \N \N 41692 S.caulescens Syngonanthus Syngonanthus caulescens \N \N \N \N \N 41693 A.rhizomophora Aristida Aristida rhizomophora \N \N \N \N \N 41694 D.quadriseta Deyeuxia Deyeuxia quadriseta \N \N \N \N \N 41695 W.caracasana Wigandia Wigandia caracasana \N \N \N \N \N 41696 D.tsayuensis Dysosma Dysosma tsayuensis \N \N \N \N \N 41697 A.pratensis Aeschynomene Aeschynomene pratensis \N \N \N \N \N 41698 W.solanacea Witheringia Witheringia solanacea \N \N \N \N \N 41699 \N subfamily Crotonoideae \N \N \N \N \N 41700 R.nigrum Ribes Ribes nigrum European black currant \N \N \N \N 41701 A.2845 Aa Aa sp. Alvarez 2845 \N \N \N \N \N 41702 C.myrrha Commiphora Commiphora myrrha myrrh \N \N \N \N 41703 \N subspecies Polystachya caespitifica subsp. latilabris \N \N \N \N \N 41704 T.rhodesica Tephrosia Tephrosia rhodesica \N \N \N \N \N 41705 \N genus Huodendron \N \N \N \N \N 41706 \N genus Didelotia \N \N \N \N \N 41707 C.plicatum Calycogonium Calycogonium plicatum \N \N \N \N \N 41708 O.sintenisii Ocotea Ocotea sintenisii \N \N \N \N \N 41709 P.digitalis Physostegia Physostegia digitalis \N \N \N \N \N 41710 P.californicum Phoradendron Phoradendron californicum \N \N \N \N \N 41711 \N genus Eleutherospermum \N \N \N \N \N 41712 D.arseniewii Draba Draba arseniewii \N \N \N \N \N 41713 P.ternata Pinellia Pinellia ternata \N \N \N \N \N 41714 A.autariatus Amphoricarpos Amphoricarpos autariatus \N \N \N \N \N 41715 W.somnifera Withania Withania somnifera ashwagandha \N \N \N \N 41716 C.strigosa Centrolepis Centrolepis strigosa \N \N \N \N \N 41717 L.cardinalis Lobelia Lobelia cardinalis cardinal flower \N \N \N \N 41718 \N genus Meiracyllium \N \N \N \N \N 41719 L.rotundifolia Lafuentea Lafuentea rotundifolia \N \N \N \N \N 41720 A.fasciculatum Allium Allium fasciculatum \N \N \N \N \N 41721 P.densispica Pedicularis Pedicularis densispica \N \N \N \N \N 41722 C.sulphurea Centaurea Centaurea sulphurea \N \N \N \N \N 41723 B.sibirica Brunnera Brunnera sibirica \N \N \N \N \N 41724 T.lanuginosus Tribulus Tribulus lanuginosus \N \N \N \N \N 41725 O.heterodactylum Oncidium Oncidium heterodactylum \N \N \N \N \N 41726 C.montana Coptosapelta Coptosapelta montana \N \N \N \N \N 41727 L.interjectum Limonium Limonium interjectum \N \N \N \N \N 41728 O.clementis Oreobolopsis Oreobolopsis clementis \N \N \N \N \N 41729 L.LM201001/6 Ledebouria Ledebouria sp. Mucina LM201001/6 \N \N \N \N \N 41730 C.scabriuscula Carex Carex scabriuscula \N \N \N \N \N 41731 \N genus Camarea \N \N \N \N \N 41732 A.GB-57 Ancistrocladus Ancistrocladus sp. Bringmann GB-57 \N \N \N \N \N 41733 B.corymbosa Berberis Berberis corymbosa \N \N \N \N \N 41734 T.striatum Toxicodendron Toxicodendron striatum \N \N \N \N \N 41735 N.striatum Notobubon Notobubon striatum \N \N \N \N \N 41736 D.thunbergii Dianthus Dianthus thunbergii \N \N \N \N \N 41737 \N no rank Acanthaceae incertae sedis \N \N \N \N \N 41738 F.occidentalis Festuca Festuca occidentalis \N \N \N \N \N 41739 B.arguta Broussaisia Broussaisia arguta \N \N \N \N \N 41740 A.gigaphylla Alseodaphne Alseodaphne gigaphylla \N \N \N \N \N 41741 P.yunnanensis Populus Populus yunnanensis \N \N \N \N \N 41742 B.sonderiana Begonia Begonia sonderiana \N \N \N \N \N 41743 B.pervariabilis Bambusa Bambusa pervariabilis \N \N \N \N \N 41744 C.flagellaris Celastrus Celastrus flagellaris \N \N \N \N \N 41745 K.gabonensis Klainedoxa Klainedoxa gabonensis mututtu \N \N \N \N 41746 D.insularis Digitaria Digitaria insularis \N \N \N \N \N 41747 A.skinneri Astroworthia Astroworthia skinneri \N \N \N \N \N 41748 B.benthamiana Blepharidachne Blepharidachne benthamiana \N \N \N \N \N 41749 C.ageratoides Conyza Conyza ageratoides \N \N \N \N \N 41750 \N genus Bonniera \N \N \N \N \N 41751 E.amygdaloides Euphorbia Euphorbia amygdaloides \N \N \N \N \N 41752 S.micranthus Stylapterus Stylapterus micranthus \N \N \N \N \N 41753 B.squarrosa Boissiera Boissiera squarrosa \N \N \N \N \N 41754 L.wardianus Larsenianthus Larsenianthus wardianus \N \N \N \N \N 41755 \N genus Ixia \N \N \N \N \N 41756 O.keithii Orbea Orbea keithii \N \N \N \N \N 41757 \N genus Veratrilla \N \N \N \N \N 41758 \N genus Catamixis \N \N \N \N \N 41759 T.sporadicus Thamnochortus Thamnochortus sporadicus \N \N \N \N \N 41760 \N genus Geissolepis \N \N \N \N \N 41761 P.boquetensis Psychotria Psychotria boquetensis \N \N \N \N \N 41762 B.purpureus Batesanthus Batesanthus purpureus \N \N \N \N \N 41763 E.gongylocarpa Eucalyptus Eucalyptus gongylocarpa \N \N \N \N \N 41764 M.caledonensis Muraltia Muraltia caledonensis \N \N \N \N \N 41765 B.littoralis Bunochilus Bunochilus littoralis \N \N \N \N \N 41766 S.hoehnei Solanum Solanum hoehnei \N \N \N \N \N 41767 C.volcanica Cantua Cantua volcanica \N \N \N \N \N 41768 S.myriacanthum Solanum Solanum myriacanthum \N \N \N \N \N 41769 A.macrorrhizos Alocasia Alocasia macrorrhizos ape,cunjevoi,giant taro,malanga \N \N \N \N 41770 D.ornithopoda Dimeria Dimeria ornithopoda \N \N \N \N \N 41771 H.traillii Hieracium Hieracium traillii \N \N \N \N \N 41772 O.riojana Ophrys Ophrys riojana \N \N \N \N \N 41773 M.rotundifolia Metrosideros Metrosideros rotundifolia \N \N \N \N \N 41774 C.moratii Coffea Coffea moratii \N \N \N \N \N 41775 C.montana Cliffortia Cliffortia montana \N \N \N \N \N 41776 C.campestris Chamaecrista Chamaecrista campestris \N \N \N \N \N 41777 L.glaucus Lotus Lotus glaucus \N \N \N \N \N 41778 E.deflexus Enkianthus Enkianthus deflexus \N \N \N \N \N 41779 M.iridifolia Muhlenbergia Muhlenbergia iridifolia \N \N \N \N \N 41780 J.ensifolius Juncus Juncus ensifolius \N \N \N \N \N 41781 B.multangula Begonia Begonia multangula \N \N \N \N \N 41782 P.virens Perezia Perezia virens \N \N \N \N \N 41783 \N genus Arundina \N \N \N \N \N 41784 M.clinopodioides Monarda Monarda clinopodioides \N \N \N \N \N 41785 A.pauciloba Anthemis Anthemis pauciloba \N \N \N \N \N 41786 R.speciosa Rafflesia Rafflesia speciosa \N \N \N \N \N 41787 O.grossheimii Orobanche Orobanche grossheimii \N \N \N \N \N 41788 E.reptans Eragrostis Eragrostis reptans creeping lovegrass \N \N \N \N 41789 \N family Dasypogonaceae \N \N \N \N \N 41790 T.thouarsiana Turraea Turraea thouarsiana \N \N \N \N \N 41791 P.namaquana Protea Protea namaquana \N \N \N \N \N 41792 V.barandanum Vaccinium Vaccinium barandanum \N \N \N \N \N 41793 C.album Corema Corema album \N \N \N \N \N 41794 \N subspecies Disa spathulata subsp. spathulata \N \N \N \N \N 41795 A.laconica Anthemis Anthemis laconica \N \N \N \N \N 41796 I.nubigena Impatiens Impatiens nubigena \N \N \N \N \N 41797 P.floccosum Pleuranthodium Pleuranthodium floccosum \N \N \N \N \N 41798 \N genus Achimenes \N \N \N \N \N 41799 \N genus Cordylostigma \N \N \N \N \N 41800 C.thomasii Crocus Crocus thomasii \N \N \N \N \N 41801 C.guadalupensis Clidemia Clidemia guadalupensis \N \N \N \N \N 41802 M.humilis Morella Morella humilis \N \N \N \N \N 41803 A.goeldianus Araeococcus Araeococcus goeldianus \N \N \N \N \N 41804 G.blainii Guatteria Guatteria blainii \N \N \N \N \N 41805 \N genus Clastopus \N \N \N \N \N 41806 A.semibaccata Atriplex Atriplex semibaccata Australian saltbush \N \N \N \N 41807 R.sp. Raphanus Raphanus sp. \N \N \N \N \N 41808 H.roseum Heracleum Heracleum roseum \N \N \N \N \N 41809 H.graminea Hypochaeris Hypochaeris graminea \N \N \N \N \N 41810 E.porsildii Erigeron Erigeron porsildii \N \N \N \N \N 41811 B.morrisonensis Berberis Berberis morrisonensis \N \N \N \N \N 41812 D.danthonioides Deschampsia Deschampsia danthonioides \N \N \N \N \N 41813 T.stahlii Ternstroemia Ternstroemia stahlii \N \N \N \N \N 41814 H.sedenense Helictotrichon Helictotrichon sedenense \N \N \N \N \N 41815 C.kwangsiensis Camellia Camellia kwangsiensis \N \N \N \N \N 41816 \N subspecies Elizaldia calycina subsp. multicolor \N \N \N \N \N 41817 \N tribe Chuniophoeniceae \N \N \N \N \N 41818 L.potanini Leptodermis Leptodermis potanini \N \N \N \N \N 41819 C.partita Cuscuta Cuscuta partita \N \N \N \N \N 41820 C.lanceolata Carex Carex lanceolata \N \N \N \N \N 41821 P.stenocaulis Puntia Puntia stenocaulis \N \N \N \N \N 41822 S.grandifolia Sarcandra Sarcandra grandifolia \N \N \N \N \N 41823 D.muralis Diplotaxis Diplotaxis muralis annual wallrocket \N \N \N \N 41824 C.luteum Calostemma Calostemma luteum \N \N \N \N \N 41825 C.PMS-2010 Cucumis Cucumis sp. A PMS-2010 \N \N \N \N \N 41826 F.monticola Flourensia Flourensia monticola \N \N \N \N \N 41827 S.involucrata Silene Silene involucrata \N \N \N \N \N 41828 A.gracilis Arnica Arnica gracilis \N \N \N \N \N 41829 P.monticola Podolepis Podolepis monticola \N \N \N \N \N 41830 \N genus Viminaria \N \N \N \N \N 41831 S.cauliflorus Stelechocarpus Stelechocarpus cauliflorus \N \N \N \N \N 41832 \N genus Coussarea \N \N \N \N \N 41833 C.tomentosus Cleistanthus Cleistanthus tomentosus \N \N \N \N \N 41834 C.fecunda Carex Carex fecunda \N \N \N \N \N 41835 M.rigidifolia Moraea Moraea rigidifolia \N \N \N \N \N 41836 \N varietas Boehmeria clidemioides var. clidemioides \N \N \N \N \N 41837 M.decaisnei Matelea Matelea decaisnei \N \N \N \N \N 41838 C.decumbens Chaboissaea Chaboissaea decumbens \N \N \N \N \N 41839 C.majalis Convallaria Convallaria majalis lily-of-the-valley \N \N \N \N 41840 C.barbatus Costus Costus barbatus \N \N \N \N \N 41841 \N varietas Tofieldia coccinea var. kondoi \N \N \N \N \N 41842 C.russanovii Crataegus Crataegus russanovii \N \N \N \N \N 41843 B.suffrutescens Boechera Boechera suffrutescens \N \N \N \N \N 41844 V.micranthum Veratrum Veratrum micranthum \N \N \N \N \N 41845 B.alnoides Betula Betula alnoides Indian birch,xi hua \N \N \N \N 41846 S.tomentosa Stevia Stevia tomentosa \N \N \N \N \N 41847 F.nowickii Fosterella Fosterella nowickii \N \N \N \N \N 41848 \N genus Campuloclinium \N \N \N \N \N 41849 C.dransfieldii Calamus Calamus dransfieldii \N \N \N \N \N 41850 C.sebaeoides Crassula Crassula sebaeoides \N \N \N \N \N 41851 L.1421 Ledebouria Ledebouria sp. Wetschnig 1421 \N \N \N \N \N 41852 A.cundinamarcensis Aragoa Aragoa cundinamarcensis \N \N \N \N \N 41853 P.magnoliifolia Peperomia Peperomia magnoliifolia \N \N \N \N \N 41854 J.leratii Jasminum Jasminum leratii \N \N \N \N \N 41855 \N subspecies Pinguicula longifolia subsp. reichenbachiana \N \N \N \N \N 41856 M.pterocalyx Metagentiana Metagentiana pterocalyx \N \N \N \N \N 41857 A.sachalinense Aconitum Aconitum sachalinense \N \N \N \N \N 41858 O.vagans Ozothamnus Ozothamnus vagans \N \N \N \N \N 41859 L.canescens Lepidaploa Lepidaploa canescens \N \N \N \N \N 41860 C.H1_43 Castilleja Castilleja sp. H1_43 \N \N \N \N \N 41861 O.trollii Oxalis Oxalis trollii \N \N \N \N \N 41862 D.carinata Diuris Diuris carinata \N \N \N \N \N 41863 A.congener Amyema Amyema congener \N \N \N \N \N 41864 \N subspecies Isatis cappadocica subsp. cappadocica \N \N \N \N \N 41865 \N genus Renanthera \N \N \N \N \N 41866 \N subspecies Veronica cuneifolia subsp. isaurica \N \N \N \N \N 41867 C.sexangularis Critonia Critonia sexangularis \N \N \N \N \N 41868 D.chrysolepis Drosera Drosera chrysolepis \N \N \N \N \N 41869 \N genus Ruellia \N \N \N \N \N 41870 B.bambos Bambusa Bambusa aff. bambos \N \N \N \N \N 41871 C.pinnata Clematis Clematis pinnata \N \N \N \N \N 41872 R.faberi Rubus Rubus faberi \N \N \N \N \N 41873 C.jimenezii Croton Croton jimenezii \N \N \N \N \N 41874 R.DES-2002 Rhodoleia Rhodoleia sp. DES-2002 \N \N \N \N \N 41875 R.5762 Renealmia Renealmia aff. polypus Harris 5762 \N \N \N \N \N 41876 D.incompta Draba Draba incompta \N \N \N \N \N 41877 T.alata Thecostele Thecostele alata \N \N \N \N \N 41878 \N genus Swietenia mahogany \N \N \N \N 41879 M.nesophilus Mallotus Mallotus nesophilus \N \N \N \N \N 41880 A.hirsutissima Alkanna Alkanna hirsutissima \N \N \N \N \N 41881 M.ligulata Malleola Malleola ligulata \N \N \N \N \N 41882 A.milleri Anchusa Anchusa milleri \N \N \N \N \N 41883 E.chrysantha Ehrendorferia Ehrendorferia chrysantha \N \N \N \N \N 41884 D.duclouxii Diospyros Diospyros duclouxii \N \N \N \N \N 41885 P.spinosa Phylloxylon Phylloxylon spinosa \N \N \N \N \N 41886 \N genus Danthoniopsis \N \N \N \N \N 41887 D.fulvopilosa Diospyros Diospyros fulvopilosa \N \N \N \N \N 41888 \N genus Catoferia \N \N \N \N \N 41889 H.uniflora Helianthella Helianthella uniflora \N \N \N \N \N 41890 C.heterochrous Croton Croton heterochrous \N \N \N \N \N 41891 P.chibae Phalaenopsis Phalaenopsis chibae \N \N \N \N \N 41892 \N subspecies Eucalyptus moorei subsp. serpentinicola \N \N \N \N \N 41893 S.kareniae Stelis Stelis kareniae \N \N \N \N \N 41894 D.farmeri Dendrobium Dendrobium farmeri \N \N \N \N \N 41895 H.shuangpaiensis Hilliella Hilliella shuangpaiensis \N \N \N \N \N 41896 E.melananthus Euonymus Euonymus melananthus \N \N \N \N \N 41897 P.stannardii Paepalanthus Paepalanthus stannardii \N \N \N \N \N 41898 C.glabrata Cornus Cornus glabrata \N \N \N \N \N 41899 P.saxicola Praecereus Praecereus saxicola \N \N \N \N \N 41900 \N genus Hovea \N \N \N \N \N 41901 \N varietas Veronica chamaedrys var. eglandulosa \N \N \N \N \N 41902 M.monticola Musa Musa monticola \N \N \N \N \N 41903 \N genus Vahadenia \N \N \N \N \N 41904 M.communis Malus Malus x domestica x Pyrus communis \N \N \N \N \N 41905 I.paraguariensis Ilex Ilex paraguariensis Brazilian-tea,mate,yerba-mate \N \N \N \N 41906 O.wardii Oonopsis Oonopsis wardii \N \N \N \N \N 41907 E.flavum Epimedium Epimedium flavum \N \N \N \N \N 41908 S.AK120007 Stelis Stelis sp. AK120007 \N \N \N \N \N 41909 C.bulbosum Chaerophyllum Chaerophyllum bulbosum \N \N \N \N \N 41910 L.glandulosa Lewisia Lewisia glandulosa \N \N \N \N \N 41911 B.heterostemon Biebersteinia Biebersteinia heterostemon \N \N \N \N \N 41912 U.ruziziensis Urochloa Urochloa ruziziensis Congo grass \N \N \N \N 41913 \N genus Opithandra \N \N \N \N \N 41914 \N subspecies Carex stenophylla subsp. stenophylloides \N \N \N \N \N 41915 G.platyphylla Guardiola Guardiola platyphylla \N \N \N \N \N 41916 L.douglasii Limnanthes Limnanthes douglasii Douglas's meadowfoam \N \N \N \N 41917 R.pirifolia Rhamnus Rhamnus pirifolia \N \N \N \N \N 41918 C.lyrata Campanula Campanula lyrata \N \N \N \N \N 41919 C.dshungarica Chesneya Chesneya dshungarica \N \N \N \N \N 41920 \N genus Haptanthus \N \N \N \N \N 41921 \N genus Nauclea \N \N \N \N \N 41922 C.hancei Cleistogenes Cleistogenes hancei \N \N \N \N \N 41923 V.treleasei Viburnum Viburnum treleasei \N \N \N \N \N 41924 V.calvum Viburnum Viburnum calvum \N \N \N \N \N 41925 \N genus Greyia \N \N \N \N \N 41926 \N subspecies Allium schoenoprasum subsp. latiorifolium \N \N \N \N \N 41927 C.epirotes Crantzia Crantzia epirotes \N \N \N \N \N 41928 C.sinensis Corylopsis Corylopsis sinensis \N \N \N \N \N 41929 C.aurantiaca Campylandra Campylandra aurantiaca \N \N \N \N \N 41930 L.micranthus Lupinus Lupinus micranthus \N \N \N \N \N 41931 \N genus Hylocereus \N \N \N \N \N 41932 A.pickeringii Astragalus Astragalus pickeringii \N \N \N \N \N 41933 \N genus Sparganium \N \N \N \N \N 41934 H.pallens Havardia Havardia pallens \N \N \N \N \N 41935 M.komarovii Mandenovia Mandenovia komarovii \N \N \N \N \N 41936 A.wiestii Avena Avena strigosa x Avena wiestii \N \N \N \N \N 41937 C.pluricallata Chiloglottis Chiloglottis pluricallata \N \N \N \N \N 41938 B.chinensis Breonia Breonia chinensis \N \N \N \N \N 41939 M.sydowii Manekia Manekia sydowii \N \N \N \N \N 41940 \N forma Lepismium houlletianum f. regnellii \N \N \N \N \N 41941 S.colpophylla Silene Silene colpophylla \N \N \N \N \N 41942 A.acutilobus Amaranthus Amaranthus acutilobus \N \N \N \N \N 41943 \N subspecies Limnanthes floccosa subsp. bellingeriana \N \N \N \N \N 41944 A.glaucifolium Anemoclema Anemoclema glaucifolium \N \N \N \N \N 41945 T.catharinensis Trichocline Trichocline catharinensis \N \N \N \N \N 41946 E.longisetus Echinocereus Echinocereus longisetus \N \N \N \N \N 41947 M.renifolia Micropleura Micropleura renifolia \N \N \N \N \N 41948 T.subnudum Thesium Thesium subnudum \N \N \N \N \N 41949 A.mucronata Acacia Acacia mucronata narrow-leaf wattle,variable sally \N \N \N \N 41950 G.rostanii Gentiana Gentiana rostanii \N \N \N \N \N 41951 M.inodora Micromeria Micromeria inodora \N \N \N \N \N 41952 P.eggersii Psychotria Psychotria eggersii \N \N \N \N \N 41953 C.roycei Chamelaucium Chamelaucium roycei \N \N \N \N \N 41954 C.boliviana Cumulopuntia Cumulopuntia boliviana \N \N \N \N \N 41955 L.filamentosa Lachnaea Lachnaea filamentosa \N \N \N \N \N 41956 S.perrieri Streptocarpus Streptocarpus perrieri \N \N \N \N \N 41957 B.psilophylla Begonia Begonia psilophylla \N \N \N \N \N 41958 C.asymmetrica Chusquea Chusquea asymmetrica \N \N \N \N \N 41959 \N no rank environmental samples Taxonomy:1096667 \N \N \N \N \N 41960 B.eisenii Bacopa Bacopa eisenii \N \N \N \N \N 41961 P.haumanii Paspalum Paspalum haumanii \N \N \N \N \N 41962 L.chunii Lindera Lindera chunii \N \N \N \N \N 41963 C.1713 Costus Costus aff. globosus Mood 1713 \N \N \N \N \N 41964 S.anglica Spartina Spartina anglica \N \N \N \N \N 41965 B.diffusa Blumea Blumea diffusa \N \N \N \N \N 41966 I.leptoclada Iresine Iresine leptoclada \N \N \N \N \N 41967 B.hookeri Boschniakia Boschniakia hookeri \N \N \N \N \N 41968 S.felinum Solanum Solanum felinum \N \N \N \N \N 41969 X.involucrata Xyris Xyris involucrata \N \N \N \N \N 41970 C.3629 Clusia Clusia sp. JA 3629 \N \N \N \N \N 41971 J.476481 Juglans Juglans sp. NSW 476481 \N \N \N \N \N 41972 E.6994 Elegia Elegia sp. Hahn 6994 \N \N \N \N \N 41973 \N varietas Carex insaniae var. papillaticulmis \N \N \N \N \N 41974 C.acutangula Caralluma Caralluma acutangula \N \N \N \N \N 41975 M.racemosa Marlierea Marlierea racemosa \N \N \N \N \N 41976 A.fimbrifolia Apinagia Apinagia fimbrifolia \N \N \N \N \N 41977 A.scabrum Agrostocrinum Agrostocrinum scabrum \N \N \N \N \N 41978 P.limbata Persicaria Persicaria limbata \N \N \N \N \N 41979 \N genus Tongoloa \N \N \N \N \N 41980 P.oleosa Poga Poga oleosa \N \N \N \N \N 41981 S.rupicola Sinningia Sinningia rupicola \N \N \N \N \N 41982 C.humilis Convolvulus Convolvulus humilis \N \N \N \N \N 41983 L.hispidus Leontodon Leontodon hispidus \N \N \N \N \N 41984 E.dombeyana Eleocharis Eleocharis dombeyana \N \N \N \N \N 41985 A.GW2766 Arenga Arenga cf. microcarpa GW2766 \N \N \N \N \N 41986 H.wallisii Houlletia Houlletia wallisii \N \N \N \N \N 41987 C.trilobus Cocculus Cocculus trilobus \N \N \N \N \N 41988 \N genus Varthemia \N \N \N \N \N 41989 C.unguiculata Clarkia Clarkia unguiculata \N \N \N \N \N 41990 A.capricorne Astrophytum Astrophytum capricorne \N \N \N \N \N 41991 T.ternifolia Tournefortia Tournefortia ternifolia \N \N \N \N \N 41992 L.villosus Lasiocladus Lasiocladus villosus \N \N \N \N \N 41993 R.tanguticum Rheum Rheum tanguticum Chinese rhubarb,da huang \N \N \N \N 41994 P.succulentum Polycarpon Polycarpon succulentum \N \N \N \N \N 41995 \N genus Ptilagrostis \N \N \N \N \N 41996 G.rigida Garcinia Garcinia rigida \N \N \N \N \N 41997 L.rhinanthifolia Lamourouxia Lamourouxia rhinanthifolia \N \N \N \N \N 41998 P.lindebergii Poa Poa lindebergii \N \N \N \N \N 41999 \N varietas Senecio diversipinnus var. discoideus \N \N \N \N \N 42000 B.elatior Bobea Bobea elatior \N \N \N \N \N 42001 C.zambesicus Croton Croton zambesicus \N \N \N \N \N 42002 E.texanum Erodium Erodium texanum \N \N \N \N \N 42003 C.jacea Centaurea Centaurea jacea \N \N \N \N \N 42004 P.AM-2009 Pimpinella Pimpinella sp. B AM-2009 \N \N \N \N \N 42005 G.minimum Geocarpon Geocarpon minimum tinytim \N \N \N \N 42006 E.crenata Elytraria Elytraria crenata \N \N \N \N \N 42007 L.graminifolium Lepidium Lepidium graminifolium \N \N \N \N \N 42008 \N genus Pinanga \N \N \N \N \N 42009 P.insipidum Pentarrhinum Pentarrhinum insipidum \N \N \N \N \N 42010 H.villosa Hypoxis Hypoxis villosa \N \N \N \N \N 42011 M.yunnanensis Malus Malus yunnanensis \N \N \N \N \N 42012 H.glomerata Hechtia Hechtia glomerata \N \N \N \N \N 42013 \N varietas Drosera montana var. schwackei \N \N \N \N \N 42014 \N subspecies Leucadendron elimense subsp. salteri \N \N \N \N \N 42015 X.leonidii Xyloselinum Xyloselinum leonidii \N \N \N \N \N 42016 G.stenopleurum Gymnocalycium Gymnocalycium stenopleurum \N \N \N \N \N 42017 T.cavalerei Trichosanthes Trichosanthes cavalerei \N \N \N \N \N 42018 \N genus Diosma \N \N \N \N \N 42019 X.bracteatum Xerochrysum Xerochrysum bracteatum \N \N \N \N \N 42020 D.subulata Diosma Diosma subulata \N \N \N \N \N 42021 C.nigromarginata Carex Carex nigromarginata \N \N \N \N \N 42022 \N subspecies Dendrobium kingianum subsp. kingianum \N \N \N \N \N 42023 S.glaziovii Simira Simira glaziovii \N \N \N \N \N 42024 C.pallidus Callistemon Callistemon pallidus \N \N \N \N \N 42025 S.capense Sisymbrium Sisymbrium capense \N \N \N \N \N 42026 C.mas Cornus Cornus mas cornelian cherry \N \N \N \N 42027 C.putida Coprosma Coprosma putida \N \N \N \N \N 42028 \N genus Shafera \N \N \N \N \N 42029 M.triste Marsypopetalum Marsypopetalum triste \N \N \N \N \N 42030 E.tsiampacca Elmerrillia Elmerrillia tsiampacca \N \N \N \N \N 42031 H.microstachyum Heliotropium Heliotropium microstachyum \N \N \N \N \N 42032 C.chailluana Cyrtorchis Cyrtorchis chailluana \N \N \N \N \N 42033 \N genus Morisia \N \N \N \N \N 42034 O.laxiflora Onobrychis Onobrychis laxiflora \N \N \N \N \N 42035 \N genus Titanopsis \N \N \N \N \N 42036 C.longifolia Cordylostigma Cordylostigma longifolia \N \N \N \N \N 42037 \N genus Anopyxis \N \N \N \N \N 42038 R.globosa Rorippa Rorippa globosa \N \N \N \N \N 42039 G.arcuatus Gladiolus Gladiolus arcuatus \N \N \N \N \N 42040 P.imparifolia Pilea Pilea imparifolia \N \N \N \N \N 42041 \N varietas Carex crinita var. brevicrinis \N \N \N \N \N 42042 P.tropica Phylica Phylica tropica \N \N \N \N \N 42043 M.enneandra Mollugo Mollugo enneandra \N \N \N \N \N 42044 \N genus Cochlearia \N \N \N \N \N 42045 P.biloba Petrophile Petrophile biloba \N \N \N \N \N 42046 \N varietas Aristida purpurascens var. purpurascens \N \N \N \N \N 42047 P.19 Piper Piper sp. RA 19 \N \N \N \N \N 42048 L.brevior Lankesteria Lankesteria brevior \N \N \N \N \N 42049 T.erecta Tagetes Tagetes erecta African marigold,big marigold \N \N \N \N 42050 E.transtagana Euphorbia Euphorbia transtagana \N \N \N \N \N 42051 V.umbrosa Veronica Veronica umbrosa \N \N \N \N \N 42052 B.curvicarpa Brachyscome Brachyscome curvicarpa \N \N \N \N \N 42053 P.ferox Prosopis Prosopis ferox \N \N \N \N \N 42054 C.cyclophora Calathea Calathea cyclophora \N \N \N \N \N 42055 A.pittieri Aechmea Aechmea pittieri \N \N \N \N \N 42056 R.gayana Reseda Reseda gayana \N \N \N \N \N 42057 I.h-4b Impatiens Impatiens sp. h-4b \N \N \N \N \N 42058 \N subspecies Kniphofia triangularis subsp. triangularis \N \N \N \N \N 42059 T.battiscombei Thunbergia Thunbergia battiscombei \N \N \N \N \N 42060 N.anchusoides Nonea Nonea anchusoides \N \N \N \N \N 42061 D.macrophylla Dasistoma Dasistoma macrophylla \N \N \N \N \N 42062 A.fruticulosa Ajania Ajania fruticulosa \N \N \N \N \N 42063 C.pickeringii Coreopsis Coreopsis pickeringii \N \N \N \N \N 42064 M.gabonense Megaphrynium Megaphrynium gabonense \N \N \N \N \N 42065 \N order Acorales \N \N \N \N \N 42066 M.mathildae Mammillaria Mammillaria mathildae \N \N \N \N \N 42067 K.serratuloides Klasea Klasea serratuloides \N \N \N \N \N 42068 F.glaberrima Ficus Ficus glaberrima \N \N \N \N \N 42069 \N genus Synaphea \N \N \N \N \N 42070 V.372 Vitis Vitis sp. Nie & Meng 372 \N \N \N \N \N 42071 L.bicolor Lespedeza Lespedeza bicolor shrubby lespedeza \N \N \N \N 42072 F.30784 Forchhammeria Forchhammeria sp. Iltis 30784 \N \N \N \N \N 42073 S.alaorii Sophronitis Sophronitis alaorii \N \N \N \N \N 42074 \N genus Tacinga \N \N \N \N \N 42075 P.odoardi Popowia Popowia odoardi \N \N \N \N \N 42076 H.fagifolia Hiraea Hiraea fagifolia \N \N \N \N \N 42077 C.trilingue Cyrtochilum Cyrtochilum trilingue \N \N \N \N \N 42078 C.incana Cliffortia Cliffortia incana \N \N \N \N \N 42079 L.rigens Leontodon Leontodon rigens \N \N \N \N \N 42080 C.zeylanicum Canarium Canarium zeylanicum \N \N \N \N \N 42081 W.paniculata Wendlandia Wendlandia paniculata \N \N \N \N \N 42082 P.cristatella Pedicularis Pedicularis cristatella \N \N \N \N \N 42083 R.discolor Rubus Rubus discolor \N \N \N \N \N 42084 B.testiculata Bifora Bifora testiculata \N \N \N \N \N 42085 C.shahvarica Cousinia Cousinia shahvarica \N \N \N \N \N 42086 \N varietas Lupinus lepidus var. utahensis \N \N \N \N \N 42087 P.spinosus Pleiacanthus Pleiacanthus spinosus \N \N \N \N \N 42088 C.porphyritica Corymbia Corymbia porphyritica \N \N \N \N \N 42089 D.marlothii Dipcadi Dipcadi marlothii \N \N \N \N \N 42090 B.bungei Batrachium Batrachium bungei \N \N \N \N \N 42091 C.belizensis Coccoloba Coccoloba belizensis \N \N \N \N \N 42092 K.dandelion Krigia Krigia dandelion \N \N \N \N \N 42093 P.hemipterocarpa Polygala Polygala hemipterocarpa \N \N \N \N \N 42094 C.perglobosa Carex Carex perglobosa \N \N \N \N \N 42095 \N genus Paypayrola \N \N \N \N \N 42096 \N subspecies Prunus serotina subsp. capuli \N \N \N \N \N 42097 M.pendens Maxillaria Maxillaria pendens \N \N \N \N \N 42098 V.micranthella Viola Viola micranthella \N \N \N \N \N 42099 M.mutabilis Myrcia Myrcia mutabilis \N \N \N \N \N 42100 \N varietas Pimpinella anthriscoides var. anthriscoides \N \N \N \N \N 42101 \N varietas Maxillaria mosenii var. hatschbachii \N \N \N \N \N 42102 F.setosa Fargesia Fargesia setosa \N \N \N \N \N 42103 \N genus Anomatheca \N \N \N \N \N 42104 E.cochleata Encyclia Encyclia cochleata \N \N \N \N \N 42105 D.smilacinum Disporum Disporum smilacinum \N \N \N \N \N 42106 M.ramulosa Mimosa Mimosa ramulosa \N \N \N \N \N 42107 \N genus Zuvanda \N \N \N \N \N 42108 P.edgeworthii Platanthera Platanthera edgeworthii \N \N \N \N \N 42109 \N tribe Monstereae \N \N \N \N \N 42111 C.microcephala Cephalaria Cephalaria microcephala \N \N \N \N \N 42112 R.aristosa Rhexia Rhexia aristosa \N \N \N \N \N 42113 P.capillare Pelargonium Pelargonium capillare \N \N \N \N \N 42114 A.cultriformis Acacia Acacia cultriformis \N \N \N \N \N 42115 P.sublitorale Peponium Peponium sublitorale \N \N \N \N \N 42116 \N genus Bryocarpum \N \N \N \N \N 42117 T.sylvatica Tylophora Tylophora sylvatica \N \N \N \N \N 42118 Z.densissimum Zingiber Zingiber densissimum \N \N \N \N \N 42119 D.purpusii Davilanthus Davilanthus purpusii \N \N \N \N \N 42120 E.pohlianum Eryngium Eryngium pohlianum \N \N \N \N \N 42121 A.poliophylla Apochloa Apochloa poliophylla \N \N \N \N \N 42122 O.penicillata Oxalis Oxalis penicillata \N \N \N \N \N 42123 A.monticola Astragalus Astragalus monticola \N \N \N \N \N 42124 G.tenue Gastrolobium Gastrolobium tenue \N \N \N \N \N 42125 P.brachyphylla Pseudopentameris Pseudopentameris brachyphylla \N \N \N \N \N 42126 S.gatopensis Sebertia Sebertia gatopensis \N \N \N \N \N 42127 R.buhseana Reseda Reseda buhseana \N \N \N \N \N 42128 P.ubatubense Piper Piper ubatubense \N \N \N \N \N 42129 R.pittieri Ruellia Ruellia pittieri \N \N \N \N \N 42130 D.chevalieri Dendropanax Dendropanax chevalieri \N \N \N \N \N 42131 \N genus Olneya \N \N \N \N \N 42132 T.egertonianum Trigonidium Trigonidium egertonianum \N \N \N \N \N 42133 D.australis Diplolepis Diplolepis australis \N \N \N \N \N 42134 \N varietas Prunus cerasifera var. divaricata \N \N \N \N \N 42135 B.fraseri Billardiera Billardiera fraseri \N \N \N \N \N 42136 S.gracilis Schaffnerella Schaffnerella gracilis \N \N \N \N \N 42137 F.fasciculata Fouquieria Fouquieria fasciculata \N \N \N \N \N 42138 M.hyacinthina Mussatia Mussatia hyacinthina \N \N \N \N \N 42140 G.palauica Gymnosporia Gymnosporia palauica \N \N \N \N \N 42141 O.pygmaea Ourisia Ourisia pygmaea \N \N \N \N \N 42142 H.WB1135 Hydriastele Hydriastele sp. B WB1135 \N \N \N \N \N 42143 \N tribe Echinocereeae \N \N \N \N \N 42144 \N genus Lerchea \N \N \N \N \N 42145 C.cascarilloides Croton Croton cascarilloides \N \N \N \N \N 42146 U.JTM-2009a Urochilus Urochilus sp. JTM-2009a \N \N \N \N \N 42147 \N genus Neocinnamomum \N \N \N \N \N 42148 O.sarmentosa Oenanthe Oenanthe sarmentosa \N \N \N \N \N 42149 D.DraB31 Draba Draba sp. DraB31 \N \N \N \N \N 42150 R.cultivar Rhododendron Rhododendron hybrid cultivar \N \N \N \N \N 42151 M.corymbosa Melochia Melochia corymbosa \N \N \N \N \N 42152 \N genus Ellipeia \N \N \N \N \N 42153 \N subspecies Hordeum vulgare subsp. spontaneum wild barley \N \N \N \N 42154 P.hookerae Paphiopedilum Paphiopedilum hookerae \N \N \N \N \N 42155 S.grahamii Schizanthus Schizanthus grahamii \N \N \N \N \N 42156 \N genus Heliosperma \N \N \N \N \N 42157 C.japonica Callicarpa Callicarpa japonica \N \N \N \N \N 42158 A.morio Anacamptis Anacamptis morio \N \N \N \N \N 42159 I.ampullacea Ipomoea Ipomoea ampullacea \N \N \N \N \N 42160 C.sempervirens Capnoides Capnoides sempervirens pink corydalis,rock harlequin \N \N \N \N 42161 M.yunnanensis Musa Musa yunnanensis \N \N \N \N \N 42162 C.strictiflora Cryptochloa Cryptochloa strictiflora \N \N \N \N \N 42163 \N varietas Cynara cardunculus var. scolymus artichoke,globe artichoke \N \N \N \N 42164 \N forma Salvia castanea f. glabrescens \N \N \N \N \N 42165 A.cauliflora Allexis Allexis cauliflora \N \N \N \N \N 42166 \N genus Sylvipoa \N \N \N \N \N 42167 A.andersonii Aeschynanthus Aeschynanthus andersonii \N \N \N \N \N 42168 U.semecarpifolia Uvaria Uvaria semecarpifolia \N \N \N \N \N 42169 C.5710 Croton Croton sp. 5710 \N \N \N \N \N 42170 \N subspecies Acer tschonoskii subsp. koreanum \N \N \N \N \N 42171 Z.oxyphyllum Zanthoxylum Zanthoxylum oxyphyllum \N \N \N \N \N 42172 H.hendersonii Horkelia Horkelia hendersonii \N \N \N \N \N 42173 Z.newmanii Zingiber Zingiber newmanii \N \N \N \N \N 42174 C.sinensis Citrus Citrus sinensis Valencia orange,apfelsine,naranja,navel orange,sweet orange \N \N \N \N 42175 S.lavandulifolia Stachys Stachys lavandulifolia \N \N \N \N \N 42176 O.perennis Oryza Oryza perennis \N \N \N \N \N 42177 R.sericea Rhodomyrtus Rhodomyrtus sericea \N \N \N \N \N 42178 P.dioica Pimenta Pimenta dioica Jamaica-pepper,allspice,malaqueta \N \N \N \N 42179 \N varietas Lewisia rediviva var. minor \N \N \N \N \N 42180 T.letestui Tabernaemontana Tabernaemontana letestui \N \N \N \N \N 42181 G.jamaicensis Gonolobus Gonolobus jamaicensis \N \N \N \N \N 42182 \N genus Berteroella \N \N \N \N \N 42183 C.bungei Catalpa Catalpa bungei \N \N \N \N \N 42184 O.coeganum Orthopterum Orthopterum coeganum \N \N \N \N \N 42185 I.alba Inga Inga alba \N \N \N \N \N 42186 A.haenkei Alpinia Alpinia haenkei \N \N \N \N \N 42187 L.uniflora Lachemilla Lachemilla uniflora \N \N \N \N \N 42188 D.picta Dicoma Dicoma picta \N \N \N \N \N 42189 S.levis Streptocarpus Streptocarpus levis \N \N \N \N \N 42190 B.CVM-2007 Betula Betula sp. CVM-2007 \N \N \N \N \N 42191 L.ralstonii Leionema Leionema ralstonii \N \N \N \N \N 42192 \N varietas Lithocarpus fenestratus var. brachycarpus \N \N \N \N \N 42193 B.hirsuta Brya Brya hirsuta \N \N \N \N \N 42194 C.salikounda Copaifera Copaifera salikounda \N \N \N \N \N 42195 R.capixabensis Rhodostemonodaphne Rhodostemonodaphne capixabensis \N \N \N \N \N 42196 M.juniperoides Metalasia Metalasia juniperoides \N \N \N \N \N 42197 A.ZHAO063 Acronema Acronema sp. KUN ZHAO063 \N \N \N \N \N 42198 T.crispum Thelypodium Thelypodium crispum \N \N \N \N \N 42199 N.argyrophylla Nassauvia Nassauvia argyrophylla \N \N \N \N \N 42200 H.bourgaei Hippocrepis Hippocrepis bourgaei \N \N \N \N \N 42201 \N genus Zanthoxylum \N \N \N \N \N 42202 E.densa Egeria Egeria densa \N \N \N \N \N 42203 C.sclerotricha Campanula Campanula sclerotricha \N \N \N \N \N 42204 H.involucrata Hydrangea Hydrangea involucrata \N \N \N \N \N 42205 I.henryi Illicium Illicium henryi \N \N \N \N \N 42206 M.conrauana Magnistipula Magnistipula conrauana \N \N \N \N \N 42207 E.scoparium Erysimum Erysimum scoparium \N \N \N \N \N 42208 B.rorida Byblis Byblis rorida \N \N \N \N \N 42211 D.citrinus Didymocarpus Didymocarpus citrinus \N \N \N \N \N 42212 M.fastigiata Metalasia Metalasia fastigiata \N \N \N \N \N 42213 F.elaeochytris Ferula Ferula elaeochytris \N \N \N \N \N 42214 S.multiinterruptum Solanum Solanum multiinterruptum \N \N \N \N \N 42215 P.gibbosa Phalaenopsis Phalaenopsis gibbosa \N \N \N \N \N 42216 V.rhytidophyllum Viburnum Viburnum rhytidophyllum leatherleaf \N \N \N \N 42217 \N genus Colletoecema \N \N \N \N \N 42218 P.cobaea Penstemon Penstemon cobaea \N \N \N \N \N 42219 A.styracifolius Artocarpus Artocarpus styracifolius \N \N \N \N \N 42220 P.dactyloceras Podangis Podangis dactyloceras \N \N \N \N \N 42221 T.RSA-18923 Thysanocarpus Thysanocarpus sp. RSA-18923 \N \N \N \N \N 42222 B.nivea Boehmeria Boehmeria nivea Chinese silk-plant,ramie,zhu ma \N \N \N \N 42223 \N genus Philonotion \N \N \N \N \N 42224 P.ciliata Puelia Puelia ciliata \N \N \N \N \N 42225 N.capensis Nymania Nymania capensis \N \N \N \N \N 42226 \N genus Dicliptera \N \N \N \N \N 42227 C.spinosa Chuquiraga Chuquiraga spinosa \N \N \N \N \N 42228 P.mexicana Prunus Prunus mexicana Mexican plum \N \N \N \N 42229 R.orientalis Rhynchocorys Rhynchocorys orientalis \N \N \N \N \N 42230 S.bicolor Sorghum Sorghum bicolor broomcorn,milo,sorghum \N \N \N \N 42231 L.martagon Lilium Lilium martagon \N \N \N \N \N 42232 M.glauca Monsonia Monsonia glauca \N \N \N \N \N 42233 L.dasystyla Lonicera Lonicera dasystyla \N \N \N \N \N 42234 M.azedarach Melia Melia azedarach Persian lilac,chinaberry,lian \N \N \N \N 42235 D.hystrix Dasyphyllum Dasyphyllum hystrix \N \N \N \N \N 42236 C.orientalis Chrysopogon Chrysopogon orientalis \N \N \N \N \N 42237 E.pallida Eucalyptus Eucalyptus pallida \N \N \N \N \N 42238 R.franzenbachii Rheum Rheum franzenbachii \N \N \N \N \N 42239 C.debilis Compsoneura Compsoneura debilis \N \N \N \N \N 42240 S.deltoideus Senecio Senecio deltoideus \N \N \N \N \N 42241 S.montanum Seseli Seseli montanum \N \N \N \N \N 42242 O.occidentale Onosmodium Onosmodium occidentale \N \N \N \N \N 42243 A.selskiana Aizopsis Aizopsis selskiana \N \N \N \N \N 42244 B.cordylocarpa Bidens Bidens cordylocarpa \N \N \N \N \N 42245 C.odontorhiza Corallorhiza Corallorhiza odontorhiza \N \N \N \N \N 42246 M.smilacifolius Melothrianthus Melothrianthus smilacifolius \N \N \N \N \N 42247 O.discors Ophrys Ophrys discors \N \N \N \N \N 42248 C.abrotanoides Carpesium Carpesium abrotanoides \N \N \N \N \N 42249 M.nigrum Melanopsidium Melanopsidium nigrum \N \N \N \N \N 42250 T.championi Tutcheria Tutcheria championi \N \N \N \N \N 42251 S.altissima Serjania Serjania altissima \N \N \N \N \N 42252 G.musaica Guzmania Guzmania musaica \N \N \N \N \N 42253 E.menziesii Erysimum Erysimum menziesii \N \N \N \N \N 42254 \N genus Leptogonum \N \N \N \N \N 42255 O.aucheri Ormosciadium Ormosciadium aucheri \N \N \N \N \N 42256 \N genus Mastersia \N \N \N \N \N 42257 P.parryi Penstemon Penstemon parryi \N \N \N \N \N 42258 S.foveolaria Styrax Styrax foveolaria \N \N \N \N \N 42259 H.purpurea Harveya Harveya purpurea \N \N \N \N \N 42260 T.JK3671 unclassified Taraxacum Taraxacum (sect. Leucantha) sp. JK3671 \N \N \N \N \N 42261 M.coronata Maireana Maireana coronata \N \N \N \N \N 42262 P.althaeifolia Proboscidea Proboscidea althaeifolia desert unicorn-plant \N \N \N \N 42263 A.incisa Aristolochia Aristolochia incisa \N \N \N \N \N 42264 S.amara Syagrus Syagrus amara \N \N \N \N \N 42265 S.fauriei Saussurea Saussurea fauriei \N \N \N \N \N 42266 \N genus Alexfloydia \N \N \N \N \N 42267 B.pachyacantha Berberis Berberis pachyacantha \N \N \N \N \N 42268 A.pinnatifida Andryala Andryala pinnatifida \N \N \N \N \N 42269 C.elegans Chamaedorea Chamaedorea elegans \N \N \N \N \N 42270 P.alatum Pleiospermium Pleiospermium alatum \N \N \N \N \N 42271 \N genus Hemmantia \N \N \N \N \N 42272 \N subspecies Cistus chinamadensis subsp. chinamadensis \N \N \N \N \N 42273 A.10732 Adelobotrys Adelobotrys sp. Ruokolainen 10732 \N \N \N \N \N 42274 B.srilankensis Bromheadia Bromheadia srilankensis \N \N \N \N \N 42275 \N genus Wilkesia \N \N \N \N \N 42276 \N varietas Coptis japonica var. japonica \N \N \N \N \N 42277 C.mirabile Cyclamen Cyclamen mirabile \N \N \N \N \N 42278 R.pseudodeminuta Rebutia Rebutia pseudodeminuta \N \N \N \N \N 42279 \N genus Nothosaerva \N \N \N \N \N 42280 I.inhambanensis Indigofera Indigofera inhambanensis \N \N \N \N \N 42281 S.vavilovii Secale Secale vavilovii \N \N \N \N \N 42282 O.atacamensis Oxalis Oxalis atacamensis \N \N \N \N \N 42283 T.sessilifolia Tabernaemontana Tabernaemontana sessilifolia \N \N \N \N \N 42284 L.usagarensis Leucas Leucas usagarensis \N \N \N \N \N 42285 M.grandis Meconopsis Meconopsis grandis \N \N \N \N \N 42286 R.GLA-2009 Renealmia Renealmia aff. polypus GLA-2009 \N \N \N \N \N 42287 A.surumuensis Apinagia Apinagia surumuensis \N \N \N \N \N 42288 R.alectorolophus Rhinanthus Rhinanthus alectorolophus \N \N \N \N \N 42289 T.velutina Turnera Turnera velutina \N \N \N \N \N 42290 H.coronarium Hedysarum Hedysarum coronarium French-honeysuckle,Italian sainfoin,cock's-head \N \N \N \N 42291 A.gigantea Aristolochia Aristolochia gigantea \N \N \N \N \N 42292 P.azorica Picconia Picconia azorica \N \N \N \N \N 42293 P.qiui Paeonia Paeonia qiui \N \N \N \N \N 42294 D.mohavensis Deinandra Deinandra mohavensis \N \N \N \N \N 42295 P.berteroi Pilostyles Pilostyles berteroi \N \N \N \N \N 42296 E.XL-2011 Elymus Elymus sp. XL-2011 \N \N \N \N \N 42297 C.tricolor Croton Croton tricolor \N \N \N \N \N 42298 S.englerianus Senecio Senecio englerianus \N \N \N \N \N 42299 \N genus Maharanga \N \N \N \N \N 42300 M.tibicinis Myrmecophila Myrmecophila tibicinis \N \N \N \N \N 42301 D.phylicoides Dillwynia Dillwynia phylicoides \N \N \N \N \N 42302 P.timoriana Parkia Parkia timoriana \N \N \N \N \N 42303 S.ignigenum Schoenocaulon Schoenocaulon ignigenum \N \N \N \N \N 42304 N.pearsonii Notobubon Notobubon pearsonii \N \N \N \N \N 42305 A.kamelinii Arabis Arabis kamelinii \N \N \N \N \N 42306 H.bungei Haplophyllum Haplophyllum bungei \N \N \N \N \N 42308 G.sarmentosa Goldmanella Goldmanella sarmentosa \N \N \N \N \N 42309 C.lanceolatum Crepidiastrum Crepidiastrum lanceolatum \N \N \N \N \N 42310 C.domestica Cariniana Cariniana domestica \N \N \N \N \N 42311 \N genus Zabelia \N \N \N \N \N 42312 \N genus Aubrieta \N \N \N \N \N 42313 L.equisetiformis Lescaillea Lescaillea equisetiformis \N \N \N \N \N 42314 T.alpestre Thlaspi Thlaspi alpestre \N \N \N \N \N 42315 \N genus Himantoglossum \N \N \N \N \N 42316 P.coffeoides Polyalthia Polyalthia coffeoides \N \N \N \N \N 42317 F.latifolia Fraxinus Fraxinus latifolia Oregon ash \N \N \N \N 42318 H.lancifolia Hosta Hosta lancifolia Japanese plantain lily,saji-giboshi \N \N \N \N 42319 A.LE077 Angelonia Angelonia sp. LE077 \N \N \N \N \N 42320 \N subspecies Noccaea fendleri subsp. glauca \N \N \N \N \N 42321 \N genus Ranalisma \N \N \N \N \N 42322 C.americanus Ceanothus Ceanothus americanus \N \N \N \N \N 42323 C.botryoides Chamaecrista Chamaecrista botryoides \N \N \N \N \N 42324 S.micranthum Scleronema Scleronema micranthum \N \N \N \N \N 42325 S.sessilifolia Schmidtottia Schmidtottia sessilifolia \N \N \N \N \N 42326 Z.monophyllum Zanthoxylum Zanthoxylum monophyllum yellow prickle \N \N \N \N 42327 T.triglochin Trisetella Trisetella triglochin \N \N \N \N \N 42328 C.epilobioides Clarkia Clarkia epilobioides \N \N \N \N \N 42329 B.prismatica Brocchinia Brocchinia prismatica \N \N \N \N \N 42330 L.uniflora Littorella Littorella uniflora American shoreweed \N \N \N \N 42331 P.werdermannii Puya Puya werdermannii \N \N \N \N \N 42332 S.melastomifolius Senecio Senecio melastomifolius \N \N \N \N \N 42333 C.tomentosa Chenoleoides Chenoleoides tomentosa \N \N \N \N \N 42334 M.dies-viridis Macrocarpaea Macrocarpaea dies-viridis \N \N \N \N \N 42335 \N varietas Alseuosmia banksii var. linarifolia \N \N \N \N \N 42336 D.orthocentrum Delphinium Delphinium orthocentrum \N \N \N \N \N 42337 G.gracilis Gaultheria Gaultheria gracilis \N \N \N \N \N 42338 C.preminghana Craspedia Craspedia preminghana \N \N \N \N \N 42339 V.alba Viola Viola alba \N \N \N \N \N 42340 \N genus Eriosema \N \N \N \N \N 42341 I.5 Ixora Ixora sp. RRH 5 \N \N \N \N \N 42342 C.conirostris Calamus Calamus conirostris \N \N \N \N \N 42343 C.madagascariensis Cinnamosma Cinnamosma madagascariensis \N \N \N \N \N 42344 L.glandulosa Layia Layia glandulosa \N \N \N \N \N 42345 \N genus Orophea \N \N \N \N \N 42346 F.indigesta Festuca Festuca indigesta \N \N \N \N \N 42347 \N genus Ectopopterys \N \N \N \N \N 42348 V.varingifolium Vaccinium Vaccinium varingifolium \N \N \N \N \N 42349 D.5613 Dendrobium Dendrobium aff. rarum Clements 5613 \N \N \N \N \N 42350 L.ichangensis Litsea Litsea ichangensis \N \N \N \N \N 42351 P.myrtifolia Polygala Polygala myrtifolia \N \N \N \N \N 42352 P.lanceolata Pavetta Pavetta lanceolata \N \N \N \N \N 42353 C.decumbens Crassula Crassula decumbens \N \N \N \N \N 42354 E.ferruginea Eria Eria ferruginea \N \N \N \N \N 42355 R.amarum Ribes Ribes amarum bitter gooseberry \N \N \N \N 42356 W.cintiensis Weingartia Weingartia cintiensis \N \N \N \N \N 42357 M.argenteus Mimetes Mimetes argenteus \N \N \N \N \N 42358 C.pauper Casuarina Casuarina pauper \N \N \N \N \N 42359 S.carneum Satyrium Satyrium carneum \N \N \N \N \N 42360 M.simulans Myriophyllum Myriophyllum simulans \N \N \N \N \N 42361 A.granatensis Apalanthe Apalanthe granatensis \N \N \N \N \N 42362 S.levynsiae Selago Selago levynsiae \N \N \N \N \N 42363 O.diffusa Ononis Ononis diffusa \N \N \N \N \N 42364 D.napiforme Delosperma Delosperma napiforme \N \N \N \N \N 42365 A.hollowayi Atriplex Atriplex hollowayi \N \N \N \N \N 42366 R.taiwanianum Rhododendron Rhododendron taiwanianum \N \N \N \N \N 42367 S.caspicum Sterigmostemum Sterigmostemum caspicum \N \N \N \N \N 42368 C.parviflora Carlowrightia Carlowrightia parviflora \N \N \N \N \N 42369 D.cordata Daviesia Daviesia cordata \N \N \N \N \N 42370 B.akeassii Borassus Borassus akeassii \N \N \N \N \N 42371 \N genus Phlojodicarpus \N \N \N \N \N 42372 M.3678 Macrolobium Macrolobium sp. Redden 3678 \N \N \N \N \N 42373 T.viscidum Teucrium Teucrium viscidum xue jian chou \N \N \N \N 42374 A.wrightii Acourtia Acourtia wrightii \N \N \N \N \N 42375 E.resinosum Eupatorium Eupatorium resinosum pine barren thoroughwort \N \N \N \N 42376 E.acrolasia Epilasia Epilasia acrolasia \N \N \N \N \N 42377 A.rigida Allocasuarina Allocasuarina rigida \N \N \N \N \N 42378 L.ericoides Lychnophora Lychnophora ericoides \N \N \N \N \N 42379 P.schimperiana Phyllopentas Phyllopentas schimperiana \N \N \N \N \N 42380 \N subspecies Vitis vinifera subsp. caucasica \N \N \N \N \N 42381 C.tinifolia Cordia Cordia tinifolia \N \N \N \N \N 42382 S.verbascifolia Salvia Salvia verbascifolia \N \N \N \N \N 42383 \N genus Ferocactus \N \N \N \N \N 42384 H.brachyandrus Habranthus Habranthus brachyandrus \N \N \N \N \N 42385 \N genus Hannoa \N \N \N \N \N 42386 R.sichotense Rhododendron Rhododendron sichotense \N \N \N \N \N 42387 \N subspecies Streptanthus carinatus subsp. arizonicus \N \N \N \N \N 42388 V.ciliata Vietnamosasa Vietnamosasa ciliata \N \N \N \N \N 42389 C.hackelii Cleistogenes Cleistogenes hackelii \N \N \N \N \N 42390 O.rotundifolius Orthosiphon Orthosiphon rotundifolius \N \N \N \N \N 42391 N.diversifolia Nicodemia Nicodemia diversifolia \N \N \N \N \N 42392 E.repens Epigaea Epigaea repens trailing arbutus \N \N \N \N 42393 R.setchuenensis Rubus Rubus setchuenensis \N \N \N \N \N 42394 G.platystachya Globba Globba platystachya \N \N \N \N \N 42395 E.hebeclados Eurya Eurya hebeclados \N \N \N \N \N 42396 E.montana Eucomis Eucomis montana \N \N \N \N \N 42397 \N varietas Morus alba var. alba Guangdong mulberry \N \N \N \N 42398 S.convolutum Sisyrinchium Sisyrinchium convolutum \N \N \N \N \N 42399 B.muscicola Briggsia Briggsia muscicola \N \N \N \N \N 42400 E.pedicellata Eschweilera Eschweilera pedicellata \N \N \N \N \N 42401 Z.sericea Zornia Zornia sericea \N \N \N \N \N 42402 \N genus Macrotyloma \N \N \N \N \N 47158 \N genus Vexatorella \N \N \N \N \N 42403 S.scheffleri Strychnos Strychnos scheffleri \N \N \N \N \N 42404 A.afraspera Aeschynomene Aeschynomene afraspera \N \N \N \N \N 42405 A.dzumacensis Acropogon Acropogon dzumacensis \N \N \N \N \N 42406 M.venatorum Mimosa Mimosa venatorum \N \N \N \N \N 42407 T.fabacea Thermopsis Thermopsis fabacea \N \N \N \N \N 42408 A.subsecundus Astragalus Astragalus subsecundus \N \N \N \N \N 42409 B.bidentatum Bulbophyllum Bulbophyllum bidentatum \N \N \N \N \N 42410 B.distichophylla Buckleya Buckleya distichophylla \N \N \N \N \N 42411 G.haenkeana Gomphrena Gomphrena haenkeana \N \N \N \N \N 42412 C.mexicana Chrysactinia Chrysactinia mexicana \N \N \N \N \N 42413 B.aculeata Brahea Brahea aculeata \N \N \N \N \N 42414 S.rubra Shorea Shorea rubra \N \N \N \N \N 42415 A.holochrysum Aeonium Aeonium holochrysum \N \N \N \N \N 42416 D.eriantha Diospyros Diospyros eriantha \N \N \N \N \N 42417 I.porcata Inga Inga porcata \N \N \N \N \N 42418 P.simulatrix Parrya Parrya simulatrix \N \N \N \N \N 42419 S.speciosa Sarcocapnos Sarcocapnos speciosa \N \N \N \N \N 42420 A.sardoa Anchusa Anchusa sardoa \N \N \N \N \N 42421 \N subspecies Androcymbium roseum subsp. roseum \N \N \N \N \N 42422 T.arenarium Tetramolopium Tetramolopium arenarium \N \N \N \N \N 42423 \N genus Paphia \N \N \N \N \N 42424 \N subspecies Primula auricula subsp. auricula \N \N \N \N \N 42425 V.melanoceras Vachellia Vachellia melanoceras \N \N \N \N \N 42426 C.LR-2011 Curcuma Curcuma sp. LR-2011 \N \N \N \N \N 42427 D.smilacifolia Dioscorea Dioscorea smilacifolia \N \N \N \N \N 42428 \N genus Portulaca \N \N \N \N \N 42429 O.intermedia Ostryopsis Ostryopsis intermedia \N \N \N \N \N 42430 O.excelsa Opuntia Opuntia excelsa \N \N \N \N \N 42431 S.filamentosum Sarawakodendron Sarawakodendron filamentosum \N \N \N \N \N 42432 C.palmata Carludovica Carludovica palmata Panama-hat palm,chidra,jipijapa \N \N \N \N 42433 A.parvifolia Acleisanthes Acleisanthes parvifolia \N \N \N \N \N 42434 M.whittenii Maxillaria Maxillaria whittenii \N \N \N \N \N 42435 C.intrusa Calpurnia Calpurnia intrusa \N \N \N \N \N 42436 \N genus Phippsia \N \N \N \N \N 42437 A.pusilla Ammoides Ammoides pusilla \N \N \N \N \N 42438 A.paeoniifolia Angelica Angelica paeoniifolia \N \N \N \N \N 42439 P.calcicola Pentanisia Pentanisia calcicola \N \N \N \N \N 42440 A.formosana Adinandra Adinandra formosana \N \N \N \N \N 42441 P.borneensis Phalaenopsis Phalaenopsis borneensis \N \N \N \N \N 42442 P.cordifolia Prescottia Prescottia cordifolia \N \N \N \N \N 42443 C.caeruleus Carthamus Carthamus caeruleus \N \N \N \N \N 42444 C.poselgeri Cochemiea Cochemiea poselgeri \N \N \N \N \N 42445 \N genus Plowmanianthus \N \N \N \N \N 42446 R.leptopeplum Rhododendron Rhododendron leptopeplum \N \N \N \N \N 42447 S.SH-2010 Senecio Senecio sp. SH-2010 \N \N \N \N \N 42448 \N varietas Photinia serratifolia var. serratifolia \N \N \N \N \N 42449 F.1825 Ficus Ficus variegata Blume, 1825 \N \N \N \N \N 42450 R.erysimoides Rhammatophyllum Rhammatophyllum erysimoides \N \N \N \N \N 42451 R.flagellaris Rubus Rubus flagellaris American dewberry,northern dewberry \N \N \N \N 42452 A.parryana Arctostaphylos Arctostaphylos parryana \N \N \N \N \N 42453 \N genus Cuphocarpus \N \N \N \N \N 42454 S.confusa Sotoa Sotoa confusa \N \N \N \N \N 42455 \N genus Cryptopylos \N \N \N \N \N 42456 \N genus Pecteilis \N \N \N \N \N 42457 H.orientalis Helleborus Helleborus orientalis lenten-rose \N \N \N \N 42458 J.sorianoi Jarava Jarava sorianoi \N \N \N \N \N 42459 C.glandulosa Chiritopsis Chiritopsis glandulosa \N \N \N \N \N 42460 V.alpestre Veratrum Veratrum alpestre \N \N \N \N \N 42461 P.guangdongensis Phyllanthus Phyllanthus guangdongensis \N \N \N \N \N 42462 \N genus Podalyria \N \N \N \N \N 42463 \N subspecies Impatiens mackeyana subsp. mackeyana \N \N \N \N \N 42464 R.cornutus Ranunculus Ranunculus cornutus \N \N \N \N \N 42465 S.longicaulis Scaphyglottis Scaphyglottis longicaulis \N \N \N \N \N 42466 R.maritima Ruppia Ruppia maritima widgeon-grass \N \N \N \N 42467 V.linearifolia Vicia Vicia linearifolia \N \N \N \N \N 42468 R.herzogii Rollinia Rollinia herzogii \N \N \N \N \N 42469 T.vulgare Tripolium Tripolium vulgare \N \N \N \N \N 42470 H.hamata Haloragis Haloragis hamata \N \N \N \N \N 42471 C.ochrocephala Centaurea Centaurea ochrocephala \N \N \N \N \N 42472 G.brevicaule Geranium Geranium brevicaule \N \N \N \N \N 42473 \N genus Aposeris \N \N \N \N \N 42474 A.tolucensis Arracacia Arracacia tolucensis \N \N \N \N \N 42475 B.major Boykinia Boykinia major \N \N \N \N \N 42476 P.oppositifolia Picradeniopsis Picradeniopsis oppositifolia \N \N \N \N \N 42477 T.perclara Tococa Tococa perclara \N \N \N \N \N 42478 A.buchnerianus Aeollanthus Aeollanthus buchnerianus \N \N \N \N \N 42479 M.pulla Maxillaria Maxillaria pulla \N \N \N \N \N 42480 T.70 Tristaniopsis Tristaniopsis sp. Rutschmann 70 \N \N \N \N \N 42481 L.japonica Liparis Liparis japonica \N \N \N \N \N 42482 E.bulbosum Erianthecium Erianthecium bulbosum \N \N \N \N \N 42483 C.rigida Cousinia Cousinia rigida \N \N \N \N \N 42484 H.polybotrys Hedysarum Hedysarum polybotrys \N \N \N \N \N 42485 P.herrerae Paphinia Paphinia herrerae \N \N \N \N \N 42486 E.scabra Echinochloa Echinochloa scabra \N \N \N \N \N 42487 C.hainanensis Chionanthus Chionanthus hainanensis \N \N \N \N \N 42488 D.cuspidata Dacryodes Dacryodes cuspidata \N \N \N \N \N 42489 \N varietas Melampodium cinereum var. ramosissimum \N \N \N \N \N 42490 Z.cuneifolium Zygophyllum Zygophyllum cuneifolium \N \N \N \N \N 42491 J.macrocalathia Jurinea Jurinea macrocalathia \N \N \N \N \N 42492 S.muscipula Silene Silene muscipula \N \N \N \N \N 42493 G.erioclada Genista Genista erioclada \N \N \N \N \N 42494 P.dasyphyllus Penstemon Penstemon dasyphyllus \N \N \N \N \N 42495 \N subspecies Rotheca myricoides subsp. muenzneri \N \N \N \N \N 42496 E.cashmeriana Euphorbia Euphorbia cashmeriana \N \N \N \N \N 42497 P.turrubarensis Psychotria Psychotria turrubarensis \N \N \N \N \N 42498 R.keniensis Ranunculus Ranunculus keniensis \N \N \N \N \N 42500 L.cinerascens Lithospermum Lithospermum cinerascens \N \N \N \N \N 42501 C.cariensis Centaurea Centaurea cariensis \N \N \N \N \N 42502 H.willdenowia Hypodiscus Hypodiscus willdenowia \N \N \N \N \N 42503 \N genus Badusa \N \N \N \N \N 42504 A.SH-2010 Amischotolype Amischotolype sp. SH-2010 \N \N \N \N \N 42505 P.phylicoides Pertya Pertya phylicoides \N \N \N \N \N 42506 \N subspecies Hydrangea arborescens subsp. radiata \N \N \N \N \N 42507 P.petraea Pilosella Pilosella petraea \N \N \N \N \N 42508 I.articulata Indigofera Indigofera articulata \N \N \N \N \N 42509 C.palustris Cuphea Cuphea palustris \N \N \N \N \N 42510 A.pinnatifida Arctotis Arctotis pinnatifida \N \N \N \N \N 42511 P.endotrachys Pleurothallis Pleurothallis endotrachys \N \N \N \N \N 42512 D.arctogena Draba Draba arctogena \N \N \N \N \N 42513 E.capense Ezosciadium Ezosciadium capense \N \N \N \N \N 42514 \N genus Samolus \N \N \N \N \N 42515 C.JJD-2001 Carmichaelia Carmichaelia sp. JJD-2001 \N \N \N \N \N 42516 R.macrorrhynchus Ranunculus Ranunculus macrorrhynchus \N \N \N \N \N 42517 P.seticaulis Polystachya Polystachya seticaulis \N \N \N \N \N 42518 M.intertexta Medicago Medicago intertexta \N \N \N \N \N 42519 \N genus Poeppigia \N \N \N \N \N 42520 P.coccoloboides Piper Piper coccoloboides \N \N \N \N \N 42521 E.robusta Euphorbia Euphorbia robusta \N \N \N \N \N 42522 E.scheeri Echinocereus Echinocereus scheeri \N \N \N \N \N 42523 I.shennongjiaensis Ilex Ilex shennongjiaensis \N \N \N \N \N 42524 S.desertorum Streptoloma Streptoloma desertorum \N \N \N \N \N 42525 C.montana Citrus Citrus montana \N \N \N \N \N 42526 C.trichopiliochila Cattleya Cattleya trichopiliochila \N \N \N \N \N 42527 R.pilosa Ruellia Ruellia pilosa \N \N \N \N \N 42528 P.pringlei Pachycereus Pachycereus pringlei \N \N \N \N \N 42529 D.occidentalis Dirca Dirca occidentalis \N \N \N \N \N 42530 K.trichinoides Kyphocarpa Kyphocarpa trichinoides \N \N \N \N \N 42531 D.californica Danthonia Danthonia californica California oat grass \N \N \N \N 42532 \N genus Cymophora \N \N \N \N \N 42533 C.pruniforme Chrysophyllum Chrysophyllum pruniforme \N \N \N \N \N 42534 L.quadrifolia Lysimachia Lysimachia quadrifolia \N \N \N \N \N 42535 \N varietas Dissocarpus biflorus var. biflorus \N \N \N \N \N 42536 \N genus Guraniopsis \N \N \N \N \N 42537 A.hainanensis Alseodaphne Alseodaphne hainanensis \N \N \N \N \N 42538 A.tsaratananensis Andriana Andriana tsaratananensis \N \N \N \N \N 42539 C.CAN6 Cardamine Cardamine cf. corymbosa CAN6 \N \N \N \N \N 42540 P.ventricosa Phaedranassa Phaedranassa ventricosa \N \N \N \N \N 42541 P.fractiflexa Pinanga Pinanga fractiflexa \N \N \N \N \N 42542 M.humilis Myriactis Myriactis humilis \N \N \N \N \N 42543 P.discolor Pachyanthus Pachyanthus discolor \N \N \N \N \N 42544 \N genus Trichaulax \N \N \N \N \N 42545 H.paniculata Haploclathra Haploclathra paniculata \N \N \N \N \N 42546 \N subfamily Viticoideae \N \N \N \N \N 42547 S.nilotica Salvia Salvia nilotica \N \N \N \N \N 42548 L.affine Lithophragma Lithophragma affine \N \N \N \N \N 42549 G.libani Geranium Geranium libani \N \N \N \N \N 42550 S.kingii Saussurea Saussurea kingii \N \N \N \N \N 42551 E.septata Eurya Eurya septata \N \N \N \N \N 42552 D.gracilis Dichilus Dichilus gracilis \N \N \N \N \N 42553 S.angolensis Sabicea Sabicea angolensis \N \N \N \N \N 42554 B.cardiocarpa Brachyscome Brachyscome cardiocarpa \N \N \N \N \N 42555 T.horsfieldii Typhonium Typhonium horsfieldii \N \N \N \N \N 42556 G.pohliana Guettarda Guettarda pohliana \N \N \N \N \N 42557 V.grandiflora Verticordia Verticordia grandiflora \N \N \N \N \N 42558 D.hentyi Drymophloeus Drymophloeus hentyi \N \N \N \N \N 42559 \N genus Piliocalyx \N \N \N \N \N 42560 S.crispum Solanum Solanum crispum Chilean potato-tree \N \N \N \N 42561 G.geardii Gladiolus Gladiolus geardii \N \N \N \N \N 42562 N.linearifolia Nolana Nolana linearifolia \N \N \N \N \N 42563 R.philippiana Rorippa Rorippa philippiana \N \N \N \N \N 42564 M.169 Malva Malva sp. Rippey 169 \N \N \N \N \N 42565 O.calophyllus Omphalogonus Omphalogonus calophyllus \N \N \N \N \N 42566 \N varietas Vicia venosa var. yamanakae \N \N \N \N \N 42567 A.congesta Aristida Aristida congesta \N \N \N \N \N 42568 L.coronaria Lasthenia Lasthenia coronaria \N \N \N \N \N 42569 P.psilophyllus Pterostyrax Pterostyrax psilophyllus \N \N \N \N \N 42570 P.media Pyrola Pyrola media \N \N \N \N \N 42571 \N subspecies Arabis planisiliqua subsp. nemorensis \N \N \N \N \N 42572 H.setosa Hypoxis Hypoxis setosa \N \N \N \N \N 42573 S.sarikeensis Schismatoglottis Schismatoglottis sarikeensis \N \N \N \N \N 42574 \N subspecies Sideritis pungens subsp. javalambrensis \N \N \N \N \N 42575 D.acutifolius Durio Durio acutifolius \N \N \N \N \N 42576 P.breviloba Parachimarrhis Parachimarrhis breviloba \N \N \N \N \N 42577 \N subspecies Petunia axillaris subsp. parodii \N \N \N \N \N 42578 P.juncifolia Pentaschistis Pentameris juncifolia \N \N \N \N \N 42579 S.lanceum Schoenoxiphium Schoenoxiphium lanceum \N \N \N \N \N 42580 A.augustum Abroma Abroma augustum \N \N \N \N \N 42581 R.triloba Rudbeckia Rudbeckia triloba \N \N \N \N \N 42582 C.crus-galli Crataegus Crataegus crus-galli cockspur hawthorn \N \N \N \N 42583 J.turkestanicus Juncus Juncus turkestanicus \N \N \N \N \N 42584 \N genus Lycoris \N \N \N \N \N 42585 \N subspecies Gymnocalycium monvillei subsp. horridispinum \N \N \N \N \N 42586 \N genus Bobartia \N \N \N \N \N 42587 C.pusilla Cischweinfia Cischweinfia pusilla \N \N \N \N \N 42588 S.arborescens Seringia Seringia arborescens \N \N \N \N \N 42589 D.alveatum Diplodium Diplodium alveatum \N \N \N \N \N 42590 S.warscewiczii Styrax Styrax warscewiczii \N \N \N \N \N 42591 G.oolepis Grindelia Grindelia oolepis \N \N \N \N \N 42592 L.microphyllus Lasiocroton Lasiocroton microphyllus \N \N \N \N \N 42593 C.littlei Carramboa Carramboa littlei \N \N \N \N \N 42594 A.pyrifolium Aspidosperma Aspidosperma pyrifolium \N \N \N \N \N 42595 S.sylvicola Simsia Simsia sylvicola \N \N \N \N \N 42596 \N genus Monophyllorchis \N \N \N \N \N 42597 H.sarykamyschense Hieracium Hieracium sarykamyschense \N \N \N \N \N 42598 C.amazonicus Costus Costus amazonicus \N \N \N \N \N 42599 C.elata Carex Carex elata \N \N \N \N \N 42600 D.arundinaceum Dulichium Dulichium arundinaceum \N \N \N \N \N 42601 S.laui Smithiantha Smithiantha laui \N \N \N \N \N 42602 G.uniflora Garcinia Garcinia uniflora \N \N \N \N \N 42603 C.lucida Coprosma Coprosma lucida \N \N \N \N \N 42604 D.1645 Dorstenia Dorstenia sp. 1645 \N \N \N \N \N 42605 N.oblongifolia Neolitsea Neolitsea oblongifolia \N \N \N \N \N 42606 D.melantha Dalea Dalea melantha \N \N \N \N \N 42607 L.andersonii Lupinus Lupinus andersonii \N \N \N \N \N 42608 \N genus Canacomyrica \N \N \N \N \N 42609 F.viridissima Forsythia Forsythia viridissima \N \N \N \N \N 42610 \N genus Berkheya \N \N \N \N \N 42611 P.hirschtianus Peniocereus Peniocereus hirschtianus \N \N \N \N \N 42612 A.mairei Allium Allium mairei \N \N \N \N \N 42613 \N subspecies Ziziphora hispanica subsp. aragonensis \N \N \N \N \N 42614 \N no rank Musa acuminata AAAA Group \N \N \N \N \N 42615 A.argenteum Alyssum Alyssum argenteum \N \N \N \N \N 42616 \N genus Manniella \N \N \N \N \N 42617 C.rutoides Clematis Clematis rutoides \N \N \N \N \N 42618 P.macrostomum Papaver Papaver macrostomum \N \N \N \N \N 42619 \N genus Helianthostylis \N \N \N \N \N 42620 S.IND Shepherdia Shepherdia sp. IND \N \N \N \N \N 42621 \N genus Humboldtia \N \N \N \N \N 42622 \N subspecies Conostylis setigera subsp. setigera \N \N \N \N \N 42623 H.quararibeoides Humbertiella Humbertiella quararibeoides \N \N \N \N \N 42625 M.denticulata Momordica Momordica denticulata \N \N \N \N \N 42626 M.douglasii Minuartia Minuartia douglasii \N \N \N \N \N 42627 M.thorelii Mallotus Mallotus thorelii \N \N \N \N \N 42628 C.heterocalyx Croton Croton heterocalyx \N \N \N \N \N 42629 T.s.n. Triuris Triuris sp. Vergara Silva s.n. \N \N \N \N \N 42630 \N genus Petalodiscus \N \N \N \N \N 42631 \N subspecies Hibiscus brackenridgei subsp. brackenridgei \N \N \N \N \N 42632 \N subspecies Galium noxium subsp. valantioides \N \N \N \N \N 42633 S.sylvestris Salvia Salvia sylvestris woodland sage \N \N \N \N 42634 \N subspecies Cyclamen coum subsp. elegans \N \N \N \N \N 42635 D.heterocarpum Dendrobium Dendrobium heterocarpum \N \N \N \N \N 42636 L.hitchcockii Luzula Luzula hitchcockii \N \N \N \N \N 42637 A.praeclara Ayenia Ayenia praeclara \N \N \N \N \N 42638 \N genus Malleastrum \N \N \N \N \N 42639 P.californicum Pseudognaphalium Pseudognaphalium californicum \N \N \N \N \N 42640 O.bicornis Ornithocephalus Ornithocephalus bicornis \N \N \N \N \N 42641 L.novaecambriae Luzula Luzula novaecambriae \N \N \N \N \N 42642 \N genus Brassica \N \N \N \N \N 42643 A.90195 Ada Ada sp. Whitten 90195 \N \N \N \N \N 42644 L.virens Leucocroton Leucocroton virens \N \N \N \N \N 42645 K.uniflora Kalanchoe Kalanchoe uniflora \N \N \N \N \N 42646 T.SH-2010 Trachelospermum Trachelospermum sp. SH-2010 \N \N \N \N \N 42647 T.pachysiphon Tabernaemontana Tabernaemontana pachysiphon \N \N \N \N \N 42648 \N subspecies Delphinium hansenii subsp. hansenii \N \N \N \N \N 42649 C.natsudaidai Citrus Citrus natsudaidai \N \N \N \N \N 42650 P.virens Penstemon Penstemon virens \N \N \N \N \N 42651 S.albidum Sassafras Sassafras albidum white sassafras \N \N \N \N 42652 X.spinosum Xanthium Xanthium spinosum \N \N \N \N \N 42653 F.adenosperma Ficus Ficus adenosperma \N \N \N \N \N 42654 R.sacciolepoides Renvoizea Renvoizea sacciolepoides \N \N \N \N \N 42655 A.s.n. Acampe Acampe sp. Szlachetko s.n. \N \N \N \N \N 42656 \N genus Schizozygia \N \N \N \N \N 42657 C.albersiana Cibirhiza Cibirhiza albersiana \N \N \N \N \N 42658 N.neoguineensis Nepenthes Nepenthes neoguineensis \N \N \N \N \N 42659 C.92 Corallocarpus Corallocarpus sp. Holstein et al. 92 \N \N \N \N \N 42660 C.amplifolia Carex Carex amplifolia \N \N \N \N \N 42661 V.kiangsiensis Viola Viola kiangsiensis \N \N \N \N \N 42662 S.nono Schefflera Schefflera nono \N \N \N \N \N 42663 E.cornuta Eucalyptus Eucalyptus cornuta \N \N \N \N \N 42664 H.nutans Hopea Hopea nutans \N \N \N \N \N 42665 S.herrenhusana Sievekingia Sievekingia herrenhusana \N \N \N \N \N 42666 P.aracaensis Pagamea Pagamea aracaensis \N \N \N \N \N 42667 A.mohrii Aristida Aristida mohrii \N \N \N \N \N 42668 P.389 Phyllanthus Phyllanthus cf. orbicularis Van Ee et al. 389 \N \N \N \N \N 42669 \N varietas Rhododendron sanguineum var. sanguineum \N \N \N \N \N 42670 N.NY551 Nymphaea Nymphaea sp. NY551 \N \N \N \N \N 42671 T.portobellensis Tetracera Tetracera portobellensis \N \N \N \N \N 42672 P.filiformis Phaseolus Phaseolus filiformis slimjim bean \N \N \N \N 42673 E.virginicus Elymus Elymus virginicus Virginia wild rye \N \N \N \N 42674 C.tenuis Carthamus Carthamus tenuis \N \N \N \N \N 42675 I.staintonii Iris Iris staintonii \N \N \N \N \N 42676 C.grandis Cassia Cassia grandis \N \N \N \N \N 42677 \N subspecies Lobularia canariensis subsp. spathulata \N \N \N \N \N 42678 L.scabra Lepidagathis Lepidagathis scabra \N \N \N \N \N 42679 D.treleasei Delphinium Delphinium treleasei \N \N \N \N \N 42680 P.silvatica Parapentas Parapentas silvatica \N \N \N \N \N 42681 A.aschersonianum Allium Allium aschersonianum \N \N \N \N \N 42682 A.decaryi Achyrocalyx Achyrocalyx decaryi \N \N \N \N \N 42683 O.oxyphyllum Oxystigma Oxystigma oxyphyllum \N \N \N \N \N 42684 A.brachycarpa Anaxagorea Anaxagorea brachycarpa \N \N \N \N \N 42685 V.lycopodioides Hebe Veronica lycopodioides \N \N \N \N \N 42686 T.budjnurdense Tanacetum Tanacetum budjnurdense \N \N \N \N \N 42687 \N no rank Acer buergerianum var. formosanum \N \N \N \N \N 42688 \N varietas Santalum insulare var. insulare \N \N \N \N \N 42689 B.deltoidea Bahiopsis Bahiopsis deltoidea \N \N \N \N \N 42690 F.chlorifolia Flaveria Flaveria chlorifolia \N \N \N \N \N 42691 E.joaquinana Extriplex Extriplex joaquinana \N \N \N \N \N 42692 M.fruticulosa Matthiola Matthiola fruticulosa \N \N \N \N \N 42693 V.hebanthum Viburnum Viburnum hebanthum \N \N \N \N \N 42694 M.brachyloba Manihot Manihot brachyloba \N \N \N \N \N 42695 M.amurensis Maackia Maackia amurensis \N \N \N \N \N 42696 P.P138 Physalis Physalis sp. P138 \N \N \N \N \N 42697 C.lurida Coriaria Coriaria lurida \N \N \N \N \N 42698 A.hastata Arenga Arenga hastata \N \N \N \N \N 42699 A.fragrans Abronia Abronia fragrans \N \N \N \N \N 42700 R.scabra Richardia Richardia scabra \N \N \N \N \N 42701 B.crocea Bloomeria Bloomeria crocea \N \N \N \N \N 42702 G.krugii Guettarda Guettarda krugii \N \N \N \N \N 42703 P.sapiense Phacelophrynium Phacelophrynium sapiense \N \N \N \N \N 42704 S.peregrina Sibthorpia Sibthorpia peregrina \N \N \N \N \N 42705 \N genus Tamaulipa \N \N \N \N \N 42706 \N genus Pentaclethra \N \N \N \N \N 42707 S.ibarrae Sideroxylon Sideroxylon ibarrae \N \N \N \N \N 42708 V.donii Veronica Veronica donii \N \N \N \N \N 42709 H.bonplandianum Hedyosmum Hedyosmum bonplandianum \N \N \N \N \N 42710 B.falcatum Bupleurum Bupleurum falcatum \N \N \N \N \N 42711 M.curvipetala Muraltia Muraltia curvipetala \N \N \N \N \N 42712 P.cathayana Populus Populus cathayana \N \N \N \N \N 42713 H.halimifolia Hormathophylla Hormathophylla halimifolia \N \N \N \N \N 42714 B.FS688 Bulbophyllum Bulbophyllum sp. FS688 \N \N \N \N \N 42715 \N genus Carpotroche \N \N \N \N \N 42716 G.zamorae Guatteria Guatteria zamorae \N \N \N \N \N 42717 \N genus Collospermum \N \N \N \N \N 42718 P.usteri Paspalum Paspalum usteri \N \N \N \N \N 42719 T.lindstroemii Tephroseris Tephroseris lindstroemii \N \N \N \N \N 42720 B.drymophloeoides Brassiophoenix Brassiophoenix drymophloeoides \N \N \N \N \N 42721 \N subspecies Sarcocornia quinqueflora subsp. quinqueflora \N \N \N \N \N 42722 C.waimeae Clermontia Clermontia waimeae \N \N \N \N \N 42723 D.virgultosa Diplopterys Diplopterys virgultosa \N \N \N \N \N 42724 C.3854 Clusia Clusia sp. JA 3854 \N \N \N \N \N 42725 A.americanus Acmispon Acmispon americanus \N \N \N \N \N 42726 S.boliviensis Scaphyglottis Scaphyglottis boliviensis \N \N \N \N \N 42727 P.austrocaledonicum Piper Piper austrocaledonicum \N \N \N \N \N 42728 K.mocambicana Kalanchoe Kalanchoe mocambicana \N \N \N \N \N 42729 A.lucidum Archidendron Archidendron lucidum \N \N \N \N \N 42730 R.zippelii Rhizanthes Rhizanthes zippelii \N \N \N \N \N 42731 C.tweedyi Cistanthe Cistanthe tweedyi \N \N \N \N \N 42732 H.altissima Hemarthria Hemarthria altissima halt grass,red quick,snake grass \N \N \N \N 42733 \N genus Othocallis \N \N \N \N \N 42734 \N genus Faradaya \N \N \N \N \N 42735 H.filipendula Hyparrhenia Hyparrhenia filipendula \N \N \N \N \N 42736 S.oedipus Solanum Solanum oedipus \N \N \N \N \N 42737 C.creticum Cynoglossum Cynoglossum creticum \N \N \N \N \N 42738 U.alpina Utricularia Utricularia alpina \N \N \N \N \N 42739 Z.radians Zosima Zosima radians \N \N \N \N \N 42740 E.longipedicellata Eriotheca Eriotheca longipedicellata \N \N \N \N \N 42741 T.waialealae Tetraplasandra Tetraplasandra waialealae \N \N \N \N \N 42742 E.angustum Epilobium Epilobium angustum \N \N \N \N \N 42743 \N subspecies Magnolia sieboldii subsp. sinensis \N \N \N \N \N 42744 \N genus Savannosiphon \N \N \N \N \N 42745 \N subspecies Arabidopsis halleri subsp. dacica \N \N \N \N \N 42746 T.odorifera Temnadenia Temnadenia odorifera \N \N \N \N \N 42747 S.alba Spiloxene Spiloxene alba \N \N \N \N \N 42748 P.magenteum Pelargonium Pelargonium magenteum \N \N \N \N \N 42749 M.busseana Mimosa Mimosa busseana \N \N \N \N \N 42750 \N genus Boesenbergia \N \N \N \N \N 42751 X.annuum Xeranthemum Xeranthemum annuum \N \N \N \N \N 42752 E.misera Euphorbia Euphorbia misera \N \N \N \N \N 42753 G.maximowicziana Goodyera Goodyera maximowicziana \N \N \N \N \N 42754 E.rubiginosa Eurya Eurya rubiginosa \N \N \N \N \N 42755 \N genus Sorghum \N \N \N \N \N 42756 S.truncata Schlumbergera Schlumbergera truncata Thanksgiving cactus,claw cactus,crab cactus \N \N \N \N 42757 C.populifolius Cistus Cistus populifolius \N \N \N \N \N 42758 M.2373 Maxillaria Maxillaria cf. scorpoidea Whitten 2373 \N \N \N \N \N 42759 L.glabra Lotononis Lotononis glabra \N \N \N \N \N 42760 \N genus Alyssoides \N \N \N \N \N 42761 S.dura Scutachne Scutachne dura \N \N \N \N \N 42762 E.lanatum Eriophyllum Eriophyllum lanatum \N \N \N \N \N 42763 \N genus Dolichandrone \N \N \N \N \N 42764 M.pedunculata Morinda Morinda pedunculata \N \N \N \N \N 42765 D.97750 Dioscorea Dioscorea sp. 97750 \N \N \N \N \N 42766 \N subspecies Erica abietina subsp. diabolis \N \N \N \N \N 42767 H.flagellare Hieracium Hieracium flagellare \N \N \N \N \N 42768 S.trinerve Satyrium Satyrium trinerve \N \N \N \N \N 42769 C.ajax Cyperus Cyperus ajax \N \N \N \N \N 42770 T.warmingii Taccarum Taccarum warmingii \N \N \N \N \N 42771 \N varietas Carex deflexa var. deflexa \N \N \N \N \N 42772 N.0401 Nymphaea Nymphaea sp. Bergthorsson 0401 \N \N \N \N \N 42773 C.pedunculatum Crinum Crinum pedunculatum \N \N \N \N \N 42774 C.vulcanicola Celastrus Celastrus vulcanicola \N \N \N \N \N 42775 B.bealei Berberis Berberis bealei \N \N \N \N \N 42776 E.phytolaccoides Erythrospermum Erythrospermum phytolaccoides \N \N \N \N \N 42777 L.meyenii Lepidium Lepidium meyenii \N \N \N \N \N 42778 \N varietas Banksia sessilis var. cygnorum \N \N \N \N \N 42779 A.flaccida Arctotis Arctotis flaccida \N \N \N \N \N 42780 L.pumila Loeselia Loeselia pumila \N \N \N \N \N 42781 I.tiliacea Ipomoea Ipomoea tiliacea \N \N \N \N \N 42782 R.nepalensis Rumex Rumex nepalensis \N \N \N \N \N 42783 C.garciniifolia Carallia Carallia garciniifolia \N \N \N \N \N 42784 H.perforata Harrisonia Harrisonia perforata \N \N \N \N \N 42785 C.senensis Coccinia Coccinia senensis \N \N \N \N \N 42786 A.dulcis Austromyrtus Austromyrtus dulcis \N \N \N \N \N 42787 G.reflexa Guatteria Guatteria reflexa \N \N \N \N \N 42788 C.wahuensis Carex Carex wahuensis \N \N \N \N \N 42789 S.sulphurea Sebaea Sebaea sulphurea \N \N \N \N \N 42790 S.nigrirostris Setaria Setaria nigrirostris \N \N \N \N \N 42791 R.induta Randia Randia induta \N \N \N \N \N 42792 E.selloana Eduandrea Eduandrea selloana \N \N \N \N \N 42793 C.africana Commiphora Commiphora africana \N \N \N \N \N 42794 R.monosperma Retama Retama monosperma \N \N \N \N \N 42795 E.wightianum Exacum Exacum wightianum \N \N \N \N \N 42796 \N genus Nothofagus \N \N \N \N \N 42797 A.guangxiensis Acidosasa Acidosasa guangxiensis \N \N \N \N \N 42798 P.psychotriifolia Psychotria Psychotria psychotriifolia \N \N \N \N \N 42799 K.striata Kummerowia Kummerowia striata \N \N \N \N \N 42800 O.insignis Ozoroa Ozoroa insignis \N \N \N \N \N 42801 S.morettii Simaba Simaba morettii \N \N \N \N \N 42802 C.kermadecensis Carex Carex kermadecensis \N \N \N \N \N 42803 K.oblonga Kageneckia Kageneckia oblonga \N \N \N \N \N 42804 C.subincana Cuspidaria Cuspidaria subincana \N \N \N \N \N 42805 \N varietas Mimosa acantholoba var. eurycarpa \N \N \N \N \N 42806 G.nivalis Gentiana Gentiana nivalis \N \N \N \N \N 42807 \N subfamily Cinchonoideae \N \N \N \N \N 42808 G.floribundum Gymnopodium Gymnopodium floribundum \N \N \N \N \N 42809 I.unguiculata Ivesia Ivesia unguiculata \N \N \N \N \N 42810 \N subspecies Stachys germanica subsp. heldreichii \N \N \N \N \N 42811 \N genus Faika \N \N \N \N \N 42812 M.trinervia Miconia Miconia trinervia \N \N \N \N \N 42813 B.hirsuta Babiana Babiana hirsuta \N \N \N \N \N 42814 O.kunthiana Oenothera Oenothera kunthiana \N \N \N \N \N 42815 A.filifolia Anisotome Anisotome filifolia \N \N \N \N \N 42816 B.lanata Banksia Banksia lanata \N \N \N \N \N 42817 E.roseorum Eriotheca Eriotheca roseorum \N \N \N \N \N 42818 C.alainii Croton Croton alainii \N \N \N \N \N 42819 \N subspecies Sonchus ustulatus subsp. maderensis \N \N \N \N \N 46607 \N genus Robiquetia \N \N \N \N \N 42820 A.pyramidatus Aztecaster Aztecaster pyramidatus \N \N \N \N \N 42821 P.triandra Plantago Plantago triandra \N \N \N \N \N 42822 E.rigidissimus Echinocereus Echinocereus rigidissimus \N \N \N \N \N 42823 I.spinosa Indigofera Indigofera spinosa \N \N \N \N \N 42824 P.monophylla Paramignya Paramignya monophylla \N \N \N \N \N 42825 M.surinamensis Manihot Manihot surinamensis \N \N \N \N \N 42826 E.scoparia Eucalyptus Eucalyptus scoparia wallangarra white gum \N \N \N \N 42827 L.sinense Leontopodium Leontopodium sinense \N \N \N \N \N 42828 F.5078 Fosterella Fosterella sp. LEME 5078 \N \N \N \N \N 42829 P.dinklagei Polystemonanthus Polystemonanthus dinklagei \N \N \N \N \N 42830 D.humilis Dalechampia Dalechampia humilis \N \N \N \N \N 42831 A.adenandriflora Agathosma Agathosma adenandriflora \N \N \N \N \N 42832 \N genus Strempeliopsis \N \N \N \N \N 42833 T.TL206 unclassified Taraxacum Taraxacum (sect. Macrodonta) sp. TL206 \N \N \N \N \N 42834 E.tenuis Eleocharis Eleocharis tenuis \N \N \N \N \N 42835 C.loureiroana Clematis Clematis loureiroana \N \N \N \N \N 42836 C.tetrandrum Chrysosplenium Chrysosplenium tetrandrum \N \N \N \N \N 42837 T.singaporensis Talauma Talauma singaporensis \N \N \N \N \N 42838 D.alticola Dracophyllum Dracophyllum alticola \N \N \N \N \N 42839 O.setosa Oxalis Oxalis setosa \N \N \N \N \N 42840 L.borbasii Lotus Lotus borbasii \N \N \N \N \N 42841 \N genus Eunomia \N \N \N \N \N 42842 V.globosa Voacanga Voacanga globosa \N \N \N \N \N 42843 A.bicolor Adenocaulon Adenocaulon bicolor \N \N \N \N \N 42844 P.boothii Primula Primula boothii \N \N \N \N \N 42845 H.TL419 Hydrobryum Hydrobryum sp. TL419 \N \N \N \N \N 42846 S.petiolaris Streptanthus Streptanthus petiolaris \N \N \N \N \N 42847 A.setosa Alcea Alcea setosa \N \N \N \N \N 42848 \N subspecies Physostegia virginiana subsp. praemorsa \N \N \N \N \N 42849 P.lineata Pedicularis Pedicularis lineata \N \N \N \N \N 42850 \N genus Octomeria \N \N \N \N \N 42851 N.indica Neoachmandra Neoachmandra indica \N \N \N \N \N 42852 O.eichingeri Oryza Oryza eichingeri \N \N \N \N \N 42853 H.hibernica Hedera Hedera hibernica Atlantic ivy \N \N \N \N 42854 S.angulata Schefflera Schefflera angulata \N \N \N \N \N 42855 G.hians Grandiphyllum Grandiphyllum hians \N \N \N \N \N 42856 P.SGR-2001 Pertusadina Pertusadina sp. SGR-2001 \N \N \N \N \N 42857 D.palustris Dendropanax Dendropanax palustris \N \N \N \N \N 42858 \N varietas Echinacea paradoxa var. neglecta \N \N \N \N \N 42859 C.MVSP-2007 Cymbalaria Cymbalaria sp. MVSP-2007 \N \N \N \N \N 42860 B.bicarpellata Bertiera Bertiera bicarpellata \N \N \N \N \N 42861 M.lithospermifolia Myosotis Myosotis lithospermifolia \N \N \N \N \N 42862 C.BWvE-2008 Croton Croton sp. sect. Lasiogyne BWvE-2008 \N \N \N \N \N 42863 N.capillaris Navarretia Navarretia capillaris \N \N \N \N \N 42864 C.lanceolatum Chrysophyllum Chrysophyllum lanceolatum \N \N \N \N \N 42865 \N subspecies Arctostaphylos viscida subsp. viscida \N \N \N \N \N 42866 C.Mayombe Coffea Coffea sp. Mayombe \N \N \N \N \N 42867 M.gentryi Maxillaria Maxillaria gentryi \N \N \N \N \N 42868 M.pilispina Mammillaria Mammillaria pilispina \N \N \N \N \N 42869 H.artemisiifolius Hymenopappus Hymenopappus artemisiifolius \N \N \N \N \N 42870 \N genus Melittis \N \N \N \N \N 42871 L.longiflorum Lithospermum Lithospermum longiflorum \N \N \N \N \N 42872 S.macrogyne Scleria Scleria macrogyne \N \N \N \N \N 42873 S.silvaticus Stenostephanus Stenostephanus silvaticus \N \N \N \N \N 42874 \N genus Oxygraphis \N \N \N \N \N 42875 F.salticola Fagraea Fagraea salticola \N \N \N \N \N 42876 S.capitata Stephanodaphne Stephanodaphne capitata \N \N \N \N \N 42877 \N genus Azara \N \N \N \N \N 42878 C.urucurana Croton Croton urucurana \N \N \N \N \N 42879 H.pauciflora Harveya Harveya pauciflora \N \N \N \N \N 42880 L.pulverulenta Leucaena Leucaena pulverulenta garba de chivo,guaje de monte \N \N \N \N 42881 O.kedra Ophrys Ophrys kedra \N \N \N \N \N 42882 \N varietas Veratrum stamineum var. micranthum \N \N \N \N \N 42883 \N subspecies Cuscuta australis subsp. tinei \N \N \N \N \N 42884 P.minima Primula Primula minima \N \N \N \N \N 42885 D.dielsiana Drosera Drosera dielsiana \N \N \N \N \N 42886 C.geonomiformis Chamaedorea Chamaedorea geonomiformis \N \N \N \N \N 42887 L.leptogyne Lithocarpus Lithocarpus leptogyne \N \N \N \N \N 42888 O.aucheri Ochradenus Ochradenus aucheri \N \N \N \N \N 42889 I.congesta Ipomopsis Ipomopsis congesta \N \N \N \N \N 42890 G.hillii Gossia Gossia hillii \N \N \N \N \N 42891 U.SA5E0399 Uncaria Uncaria sp. SA5E0399 \N \N \N \N \N 42892 A.humbertii Alectra Alectra humbertii \N \N \N \N \N 42893 Q.polycarpa Quercus Quercus polycarpa \N \N \N \N \N 42894 D.elliptica Dichaea Dichaea elliptica \N \N \N \N \N 42895 E.heterodoxa Euphorbia Euphorbia heterodoxa \N \N \N \N \N 42896 S.hainanensis Sarcandra Sarcandra hainanensis \N \N \N \N \N 42897 E.pallasii Erysimum Erysimum pallasii \N \N \N \N \N 42898 C.H1_45 Castilleja Castilleja sp. H1_45 \N \N \N \N \N 42899 R.flammula Ranunculus Ranunculus flammula \N \N \N \N \N 42900 \N genus Dendrobium \N \N \N \N \N 42901 \N genus Epistemma \N \N \N \N \N 42902 P.woombye Phebalium Phebalium woombye \N \N \N \N \N 42903 D.aubryana Dracaena Dracaena aubryana \N \N \N \N \N 42904 P.andinus Pentacyphus Pentacyphus andinus \N \N \N \N \N 42905 D.rositae Draba Draba rositae \N \N \N \N \N 42906 P.parviflorus Polyceratocarpus Polyceratocarpus parviflorus \N \N \N \N \N 42907 R.brakdamensis Ruschia Ruschia brakdamensis \N \N \N \N \N 42908 P.gibbensii Penstemon Penstemon gibbensii \N \N \N \N \N 42909 T.constrictiflorus Tapinanthus Tapinanthus constrictiflorus \N \N \N \N \N 42910 S.aurantiaca Sandersonia Sandersonia aurantiaca Chinese-lantern lily,Christmas-bells \N \N \N \N 42911 D.elegans Dendrocalamus Dendrocalamus elegans \N \N \N \N \N 42912 L.japonica Leersia Leersia japonica \N \N \N \N \N 42913 \N genus Thurovia \N \N \N \N \N 42914 \N varietas Eriodictyon crassifolium var. crassifolium \N \N \N \N \N 42915 P.canariense Pancratium Pancratium canariense \N \N \N \N \N 42916 S.parviflora Sclerolaena Sclerolaena parviflora \N \N \N \N \N 42917 P.guianensis Palicourea Palicourea guianensis \N \N \N \N \N 42918 A.pinnanensis Alpinia Alpinia pinnanensis \N \N \N \N \N 42919 I.allenii Inga Inga allenii \N \N \N \N \N 42920 M.3200 Maxillaria Maxillaria cf. perryae Whitten 3200 \N \N \N \N \N 42921 O.rariflora Ortachne Ortachne rariflora \N \N \N \N \N 42922 \N genus Otacanthus \N \N \N \N \N 42923 H.hexaptera Habenaria Habenaria hexaptera \N \N \N \N \N 42924 \N genus Firmiana \N \N \N \N \N 42925 G.glandulosissima Genlisea Genlisea glandulosissima \N \N \N \N \N 42926 R.435 Rhytidophyllum Rhytidophyllum sp. Hahn 435 \N \N \N \N \N 42927 C.chathamica Carex Carex chathamica \N \N \N \N \N 42928 \N subspecies Magnolia pacifica subsp. tarahumara \N \N \N \N \N 42929 \N genus Balbisia \N \N \N \N \N 42930 \N subspecies Rafnia capensis subsp. pedicellata \N \N \N \N \N 42931 \N genus Melodorum \N \N \N \N \N 42932 \N varietas Cardamine parviflora var. arenicola \N \N \N \N \N 42933 I.tridentata Iris Iris tridentata \N \N \N \N \N 42934 P.wentzeliana Protea Protea wentzeliana \N \N \N \N \N 42935 S.diffusa Schiedea Schiedea diffusa \N \N \N \N \N 42936 \N genus Holostemma \N \N \N \N \N 42937 \N varietas Gazania rigens var. uniflora \N \N \N \N \N 42938 P.holtzii Psychotria Psychotria holtzii \N \N \N \N \N 42939 \N genus Proserpinaca \N \N \N \N \N 42940 \N genus Homalomena \N \N \N \N \N 42941 G.pulchella Gynatrix Gynatrix pulchella \N \N \N \N \N 42942 A.glabrata Acalypha Acalypha glabrata \N \N \N \N \N 42943 A.MVSP-2007 Asperula Asperula sp. MVSP-2007 \N \N \N \N \N 42944 H.CH269 Hydriastele Hydriastele sp. CH269 \N \N \N \N \N 42945 G.rutenbergiana Gravesia Gravesia rutenbergiana \N \N \N \N \N 42946 A.spicata Aphaerema Aphaerema spicata \N \N \N \N \N 42947 \N genus Nandina \N \N \N \N \N 42948 B.elaeagnifolia Brachyglottis Brachyglottis elaeagnifolia \N \N \N \N \N 42949 \N genus Callistemon \N \N \N \N \N 42950 C.perrottetii Crotalaria Crotalaria perrottetii \N \N \N \N \N 42951 C.mossambicensis Chloris Chloris mossambicensis \N \N \N \N \N 42952 S.pittosporifolium Solanum Solanum pittosporifolium \N \N \N \N \N 42953 B.canescens Blancoa Blancoa canescens \N \N \N \N \N 42954 D.rostrata Dacryodes Dacryodes rostrata \N \N \N \N \N 42955 C.pannosa Cousinia Cousinia pannosa \N \N \N \N \N 42956 \N tribe Buchnereae \N \N \N \N \N 42957 C.deweyana Carex Carex deweyana \N \N \N \N \N 42958 E.squamata Eragrostis Eragrostis squamata \N \N \N \N \N 42959 G.racemosa Gloxiniopsis Gloxiniopsis racemosa \N \N \N \N \N 42960 O.chaetophorus Oligochaetochilus Oligochaetochilus chaetophorus \N \N \N \N \N 42961 C.pottsii Croton Croton pottsii \N \N \N \N \N 42962 T.burmannii Tetraria Tetraria burmannii \N \N \N \N \N 42963 E.eryngiifolia Eurybia Eurybia eryngiifolia thistleleaf aster \N \N \N \N 42964 D.praetermissa Dactylorhiza Dactylorhiza praetermissa \N \N \N \N \N 42965 S.'Guyana' Schefflera Schefflera sp. 'Guyana' \N \N \N \N \N 42966 \N genus Myricaria \N \N \N \N \N 42967 L.oliverorum Lachnaea Lachnaea oliverorum \N \N \N \N \N 42968 M.myriophylla Maba Maba myriophylla \N \N \N \N \N 42969 O.alpigenum Oreostemma Oreostemma alpigenum tundra aster \N \N \N \N 42970 S.megachlamys Stelis Stelis megachlamys \N \N \N \N \N 42971 C.parviflorus Cistus Cistus parviflorus \N \N \N \N \N 42972 N.polysepala Nuphar Nuphar polysepala \N \N \N \N \N 42973 L.glandulosa Liatris Liatris glandulosa \N \N \N \N \N 42974 C.pulchella Commersonia Commersonia pulchella \N \N \N \N \N 42975 G.G1827 Glycine Glycine sp. G1827 \N \N \N \N \N 42976 J.altifrons Johannesteijsmannia Johannesteijsmannia altifrons \N \N \N \N \N 42977 B.toxisperma Baillonella Baillonella toxisperma \N \N \N \N \N 42978 P.LBF-2008 Passiflora Passiflora sp. LBF-2008 \N \N \N \N \N 42979 \N subspecies Penaea cneorum subsp. gigantea \N \N \N \N \N 42980 E.bignoniflora Eremophila Eremophila bignoniflora \N \N \N \N \N 42981 C.lemmonii Carex Carex lemmonii \N \N \N \N \N 42982 M.AL-2008 Marantochloa Marantochloa sp. AL-2008 \N \N \N \N \N 42983 O.pulchella Ourisia Ourisia pulchella \N \N \N \N \N 42984 O.chlorotica Opuntia Opuntia chlorotica \N \N \N \N \N 42985 S.harleyi Stachyarrhena Stachyarrhena harleyi \N \N \N \N \N 48413 \N genus Echinorhyncha \N \N \N \N \N 42986 A.fruticulosa Allmaniopsis Allmaniopsis fruticulosa \N \N \N \N \N 42987 \N subspecies Alyssum serpyllifolium subsp. serpyllifolium \N \N \N \N \N 42988 C.fruticosum Citharexylum Citharexylum fruticosum \N \N \N \N \N 42989 C.gracillima Chamarea Chamarea gracillima \N \N \N \N \N 42990 S.exstans Sorghum Sorghum exstans \N \N \N \N \N 42991 C.1739 Cyrtochilum Cyrtochilum sp. Whitten 1739 \N \N \N \N \N 42992 M.confertiflora Mirbelia Mirbelia confertiflora \N \N \N \N \N 42993 S.sylvatica Stachys Stachys sylvatica \N \N \N \N \N 42994 S.superba Shorea Shorea superba \N \N \N \N \N 42995 S.cerander Satyria Satyria cerander \N \N \N \N \N 42996 P.hupehensis Pterocarya Pterocarya hupehensis \N \N \N \N \N 42997 \N genus Grahamia \N \N \N \N \N 42998 S.linearifolia Satureja Satureja linearifolia \N \N \N \N \N 42999 \N subtribe Hulseinae \N \N \N \N \N 43000 L.13828 Lasiocarpus Lasiocarpus sp. Anderson 13828 \N \N \N \N \N 43001 L.1-CEH Lupinus Lupinus sp. 1-CEH \N \N \N \N \N 43002 B.grandiflora Brickellia Brickellia grandiflora \N \N \N \N \N 43003 M.poculata Mimosa Mimosa poculata \N \N \N \N \N 43004 N.schottii Nissolia Nissolia schottii \N \N \N \N \N 43005 N.rosengurttii Nassella Nassella rosengurttii \N \N \N \N \N 43006 \N genus Orobanche \N \N \N \N \N 43007 Z.cohabitans Zaluzianskya Zaluzianskya cohabitans \N \N \N \N \N 43008 S.macranthus Syncolostemon Syncolostemon macranthus \N \N \N \N \N 43009 \N genus Jurinella \N \N \N \N \N 43010 \N varietas Cypripedium macranthos var. speciosum \N \N \N \N \N 43011 E.capillacea Eleocharis Eleocharis capillacea \N \N \N \N \N 43012 F.undulata Ferula Ferula undulata \N \N \N \N \N 43013 S.albicans Sumbaviopsis Sumbaviopsis albicans \N \N \N \N \N 43014 O.GMS-2008 Orobanche Orobanche cf. crenata GMS-2008 \N \N \N \N \N 43015 T.fasciata Tetraria Tetraria fasciata \N \N \N \N \N 43016 P.cyananthus Penstemon Penstemon cyananthus \N \N \N \N \N 43017 H.roseus Haemanthus Haemanthus roseus \N \N \N \N \N 43018 A.mackliniana Allocasuarina Allocasuarina mackliniana \N \N \N \N \N 43019 P.latifolia Polycarpaea Polycarpaea latifolia \N \N \N \N \N 43020 S.pauciflora Shorea Shorea pauciflora \N \N \N \N \N 43021 R.pygmaea Ruellia Ruellia pygmaea \N \N \N \N \N 43022 L.sprucei Lachemilla Lachemilla sprucei \N \N \N \N \N 43023 M.scabrida Microtea Microtea scabrida \N \N \N \N \N 43024 \N genus Potarophytum \N \N \N \N \N 43025 S.polypodioides Saussurea Saussurea polypodioides \N \N \N \N \N 43026 P.botrychioides Pternopetalum Pternopetalum botrychioides \N \N \N \N \N 43027 H.versteegiana Heterospathe Heterospathe versteegiana \N \N \N \N \N 43028 T.saxicola Thryptomene Thryptomene saxicola \N \N \N \N \N 43029 C.goeringii Cymbopogon Cymbopogon goeringii \N \N \N \N \N 43030 E.polycephala Euphorbia Euphorbia polycephala \N \N \N \N \N 43031 A.chilensis Andeimalva Andeimalva chilensis \N \N \N \N \N 43032 S.sanguinea Sarcodes Sarcodes sanguinea \N \N \N \N \N 43033 V.scabrido-glandulosa Verbena Verbena scabrido-glandulosa \N \N \N \N \N 43034 C.glabrifilis Centropogon Centropogon glabrifilis \N \N \N \N \N 43035 B.glaberrima Balansaea Balansaea glaberrima \N \N \N \N \N 43036 \N varietas Callitriche heterophylla var. bolanderi \N \N \N \N \N 43037 \N genus Poecilolepis \N \N \N \N \N 43038 C.pulchella Cunonia Cunonia pulchella \N \N \N \N \N 43039 C.latifolia Coussapoa Coussapoa latifolia \N \N \N \N \N 43040 R.triflora Ruprechtia Ruprechtia triflora \N \N \N \N \N 43041 \N genus Spathiphyllum \N \N \N \N \N 43042 L.purpureus Lablab Lablab purpureus antaque,banner bean,carmelita,frijol caballero,hyacinth bean,natoba \N \N \N \N 43043 A.murrayana Acacia Acacia murrayana \N \N \N \N \N 43044 A.leonardii Aphelandra Aphelandra leonardii \N \N \N \N \N 43045 \N genus Lachnocapsa \N \N \N \N \N 43046 \N varietas Pomaderris phylicifolia var. ericoides \N \N \N \N \N 43047 E.VFI-2011 Eustoma Eustoma sp. VFI-2011 \N \N \N \N \N 43048 S.purpurea Sanicula Sanicula purpurea purpleflower blacksnakeroot \N \N \N \N 43049 T.pallidus Theropogon Theropogon pallidus \N \N \N \N \N 43050 S.anisophylla Strobilanthes Strobilanthes anisophylla \N \N \N \N \N 43051 \N genus Fuertesimalva \N \N \N \N \N 43052 C.minor Caleana Caleana minor \N \N \N \N \N 43053 L.cuneifolium Lomatogonium Lomatogonium cuneifolium \N \N \N \N \N 43054 L.radiata Lycianthes Lycianthes radiata \N \N \N \N \N 43055 T.tricuspidata Trichosanthes Trichosanthes tricuspidata \N \N \N \N \N 43056 O.adspersa Oxalis Oxalis adspersa \N \N \N \N \N 43057 R.CHR562184 Rytidosperma Rytidosperma aff. pumilum CHR562184 \N \N \N \N \N 43058 B.penduliflora Boehmeria Boehmeria penduliflora \N \N \N \N \N 43059 \N subspecies Cotyledon tomentosa subsp. tomentosa \N \N \N \N \N 43060 \N genus Microdracoides \N \N \N \N \N 43061 J.JID-2002 Juncus Juncus sp. JID-2002 \N \N \N \N \N 43062 L.ZAF-2500 Ledebouria Ledebouria aff. revoluta ZAF-2500 \N \N \N \N \N 43063 E.occidentalis Eucalyptus Eucalyptus occidentalis \N \N \N \N \N 43064 M.luteoviride Metanarthecium Metanarthecium luteoviride \N \N \N \N \N 43065 \N subspecies Arctostaphylos hookeri subsp. hookeri \N \N \N \N \N 43066 \N varietas Lycopus lucidus var. hirtus \N \N \N \N \N 43067 I.LBZ-2011 Impatiens Impatiens sp. LBZ-2011 \N \N \N \N \N 43068 S.ecatepecana Stevia Stevia ecatepecana \N \N \N \N \N 43069 L.triphylla Lewisia Lewisia triphylla \N \N \N \N \N 43070 P.strigosa Picris Picris strigosa \N \N \N \N \N 43071 C.mitchellii Conospermum Conospermum mitchellii \N \N \N \N \N 43072 D.oblongifolium Doronicum Doronicum oblongifolium \N \N \N \N \N 43073 O.sicula Ononis Ononis sicula \N \N \N \N \N 43074 M.1974-0006-0961 Maxillaria Maxillaria cf. luteoalba SEL 1974-0006-0961 \N \N \N \N \N 43075 V.myrtillus Vaccinium Vaccinium myrtillus bilberry,whortleberry \N \N \N \N 43076 S.nussia Stranvaesia Stranvaesia nussia \N \N \N \N \N 43077 S.arborescens Swartzia Swartzia arborescens \N \N \N \N \N 43078 P.guacayanum Protium Protium guacayanum \N \N \N \N \N 43079 M.gonzalo-palomae Microsechium Microsechium gonzalo-palomae \N \N \N \N \N 43080 L.distans Licuala Licuala distans \N \N \N \N \N 43081 C.huttonii Cyrtanthus Cyrtanthus huttonii \N \N \N \N \N 43082 \N subspecies Cytisus scoparius subsp. reverchonii \N \N \N \N \N 43083 B.texana Bartonia Bartonia texana \N \N \N \N \N 43084 R.mariana Rhexia Rhexia mariana Maryland meadowbeauty \N \N \N \N 43085 C.platycarpum Chartoloma Chartoloma platycarpum \N \N \N \N \N 43086 R.sylvestris Rorippa Rorippa sylvestris \N \N \N \N \N 43087 \N genus Aldama \N \N \N \N \N 43088 T.farreri Trollius Trollius farreri \N \N \N \N \N 43089 M.sparsiflora Myosotis Myosotis sparsiflora \N \N \N \N \N 43090 B.boliviensis Begonia Begonia boliviensis \N \N \N \N \N 43091 H.LG-2009 Hieracium Hieracium sp. LG-2009 \N \N \N \N \N 43092 R.pilosa Rondeletia Rondeletia pilosa \N \N \N \N \N 43093 A.fallax Anisophyllea Anisophyllea fallax \N \N \N \N \N 43094 D.dalstroemii Dracula Dracula dalstroemii \N \N \N \N \N 43095 S.affinis Stachys Stachys affinis Japanese artichoke \N \N \N \N 43096 A.acutangulus Anisodus Anisodus acutangulus \N \N \N \N \N 43097 B.rhynchopetala Bruguiera Bruguiera x rhynchopetala \N \N \N \N \N 43098 E.prolata Erica Erica prolata \N \N \N \N \N 43099 F.angustifolia Fockea Fockea angustifolia \N \N \N \N \N 43100 C.bilimekii Chusquea Chusquea bilimekii \N \N \N \N \N 43101 C.lanceolata Cuphea Cuphea lanceolata \N \N \N \N \N 43102 P.rupifragum Papaver Papaver rupifragum Spanish poppy \N \N \N \N 43103 N.dyeri Nasa Nasa dyeri \N \N \N \N \N 43104 \N subtribe Bifrenariinae \N \N \N \N \N 43105 \N genus Macairea \N \N \N \N \N 43106 C.haynaldii Colchicum Colchicum haynaldii \N \N \N \N \N 43107 C.flava Consolida Consolida flava \N \N \N \N \N 43108 M.multijugum Macrolobium Macrolobium multijugum \N \N \N \N \N 43109 F.caulescens Frondaria Frondaria caulescens \N \N \N \N \N 43110 R.pinfaensis Rubus Rubus pinfaensis \N \N \N \N \N 43111 F.glauca Fritillaria Fritillaria glauca \N \N \N \N \N 43112 C.viridula Carex Carex demissa x Carex viridula \N \N \N \N \N 43113 C.albida Crepis Crepis albida \N \N \N \N \N 43114 P.epihydrus Potamogeton Potamogeton bicupulatus x Potamogeton epihydrus \N \N \N \N \N 43115 \N subspecies Festuca heterophylla subsp. heterophylla \N \N \N \N \N 43116 Z.acsmithii Zygogynum Zygogynum acsmithii \N \N \N \N \N 43117 P.muelleri Paraneurachne Paraneurachne muelleri \N \N \N \N \N 43118 B.arvensis Buglossoides Buglossoides arvensis corn gromwell,pigeonweed \N \N \N \N 43119 \N varietas Stachyurus salicifolius var. lancicifolius \N \N \N \N \N 43120 \N genus Fitzalania \N \N \N \N \N 43121 \N genus Abronia \N \N \N \N \N 43122 \N subspecies Heliotropium curassavicum subsp. oculatum \N \N \N \N \N 43123 I.effusa Ipomopsis Ipomopsis effusa \N \N \N \N \N 43124 Z.mairei Ziziphus Ziziphus mairei \N \N \N \N \N 43125 A.sichuanense Arceuthobium Arceuthobium sichuanense \N \N \N \N \N 43126 C.brachystachyum Candolleodendron Candolleodendron brachystachyum \N \N \N \N \N 43127 S.cornishiana Sclerolaena Sclerolaena cornishiana \N \N \N \N \N 43128 S.krylovi Stipa Stipa krylovi \N \N \N \N \N 43129 \N tribe Rumiceae \N \N \N \N \N 43130 G.jonquilodorus Gladiolus Gladiolus jonquilodorus \N \N \N \N \N 43131 \N genus Convallaria \N \N \N \N \N 43132 P.cortusifolium Pelargonium Pelargonium cortusifolium \N \N \N \N \N 43133 P.nagashima Pleioblastus Pleioblastus nagashima \N \N \N \N \N 43134 S.caudata Symplocos Symplocos caudata \N \N \N \N \N 43135 \N genus Philodice \N \N \N \N \N 43136 \N genus Neobyrnesia \N \N \N \N \N 43137 B.shortii Boechera Boechera shortii \N \N \N \N \N 43138 P.scandens Podolobium Podolobium scandens \N \N \N \N \N 43139 E.glutinosa Erica Erica glutinosa \N \N \N \N \N 43140 \N genus Iliamna \N \N \N \N \N 43141 A.woodsiana Angophora Angophora woodsiana \N \N \N \N \N 43142 \N subspecies Ribes oxyacanthoides subsp. setosum inland gooseberry \N \N \N \N 43143 C.microaustralica Cleome Cleome microaustralica \N \N \N \N \N 43144 T.peduncularis Tabernaemontana Tabernaemontana peduncularis \N \N \N \N \N 43145 R.semenovii Rhodiola Rhodiola semenovii \N \N \N \N \N 43146 P.indicus Pterocarpus Pterocarpus indicus \N \N \N \N \N 43147 P.cinnabarina Passiflora Passiflora cinnabarina \N \N \N \N \N 43148 T.scopulorum Tengia Tengia scopulorum \N \N \N \N \N 43149 T.esiangkara Tinospora Tinospora esiangkara \N \N \N \N \N 43150 A.hendersonii Apocynum Apocynum hendersonii \N \N \N \N \N 43151 \N genus Asystasia \N \N \N \N \N 43152 T.cearensis Turnera Turnera cearensis \N \N \N \N \N 43153 I.tomentosa Isoberlinia Isoberlinia tomentosa \N \N \N \N \N 43154 \N tribe Calenduleae \N \N \N \N \N 43155 \N genus Stenotalis \N \N \N \N \N 43156 V.rupestris Vitis Vitis cinerea var. helleri x Vitis rupestris \N \N \N \N \N 43157 \N subfamily Secamonoideae \N \N \N \N \N 43158 C.albescens Conostylis Conostylis albescens \N \N \N \N \N 43159 M.haplosciadea Motherwellia Motherwellia haplosciadea \N \N \N \N \N 43160 A.acuminata Acacia Acacia acuminata raspberry jam \N \N \N \N 43161 S.adhaerens Solanum Solanum adhaerens \N \N \N \N \N 43162 B.falcatum Bulbophyllum Bulbophyllum falcatum \N \N \N \N \N 43163 B.hernandioides Begonia Begonia hernandioides \N \N \N \N \N 43164 E.ericiflora Echidnopsis Echidnopsis ericiflora \N \N \N \N \N 43165 B.scoparius Bromus Bromus scoparius broom brome \N \N \N \N 43166 \N varietas Silene repens var. sinensis \N \N \N \N \N 43167 \N genus Spatholirion \N \N \N \N \N 43168 M.noctiluca Macrocarpaea Macrocarpaea noctiluca \N \N \N \N \N 43169 M.delavayi Meconopsis Meconopsis delavayi \N \N \N \N \N 43170 C.ameliae Croton Croton ameliae \N \N \N \N \N 43171 H.meeusei Hibiscus Hibiscus meeusei \N \N \N \N \N 43172 \N genus Formanodendron \N \N \N \N \N 43173 Z.pacifica Zostera Zostera pacifica \N \N \N \N \N 43174 C.unguiculatus Corybas Corybas unguiculatus \N \N \N \N \N 43175 D.amoena Draba Draba amoena \N \N \N \N \N 43176 G.coronensis Grindelia Grindelia coronensis \N \N \N \N \N 43177 I.wrightii Ipomoea Ipomoea wrightii \N \N \N \N \N 43178 S.neopulchella Saussurea Saussurea neopulchella \N \N \N \N \N 43179 \N genus Skeptrostachys \N \N \N \N \N 43180 A.yunnanensis Amorphophallus Amorphophallus yunnanensis \N \N \N \N \N 43181 M.elliotii Moraea Moraea elliotii \N \N \N \N \N 43182 A.BJ-2009c unclassified Adelieae Adelieae sp. BJ-2009c \N \N \N \N \N 43183 C.schlechteri Cliffortia Cliffortia schlechteri \N \N \N \N \N 43184 P.stuhlmannii Polyalthia Polyalthia stuhlmannii \N \N \N \N \N 43185 C.dissimilis Corynocarpus Corynocarpus dissimilis \N \N \N \N \N 43186 A.indivisum Aptosimum Aptosimum indivisum \N \N \N \N \N 43187 H.scaphus Hymenocoleus Hymenocoleus scaphus \N \N \N \N \N 43188 D.orobanchoides Dictyostega Dictyostega orobanchoides \N \N \N \N \N 43189 N.browallioides Nierembergia Nierembergia browallioides \N \N \N \N \N 43190 \N genus Anaphalioides \N \N \N \N \N 43191 D.barclayana Draba Draba barclayana \N \N \N \N \N 43192 E.eglandulosa Euphorbia Euphorbia eglandulosa \N \N \N \N \N 43193 P.bornmuelleri Polygonum Polygonum bornmuelleri \N \N \N \N \N 43194 N.dasycarpa Nassella Nassella dasycarpa \N \N \N \N \N 43195 \N genus Silvaea \N \N \N \N \N 43196 O.cordifolium Oxylobium Oxylobium cordifolium \N \N \N \N \N 43197 \N subspecies Impatiens mackeyana subsp. zenkeri \N \N \N \N \N 43198 O.austrohispanica Orobanche Orobanche austrohispanica \N \N \N \N \N 43199 C.crassifolia Cardamine Cardamine crassifolia \N \N \N \N \N 43200 B.brasiliensis Brasiliopuntia Brasiliopuntia brasiliensis \N \N \N \N \N 43201 \N genus Pauridia \N \N \N \N \N 43202 N.sericeocarpa Neoluederitzia Neoluederitzia sericeocarpa \N \N \N \N \N 46995 \N genus Pternopetalum \N \N \N \N \N 43203 P.desertorum Pelargonium Pelargonium desertorum \N \N \N \N \N 43204 P.parvifolius Phyllanthus Phyllanthus parvifolius \N \N \N \N \N 43205 B.grandiflora Blackstonia Blackstonia grandiflora \N \N \N \N \N 43206 \N genus Aspidistra \N \N \N \N \N 43207 Z.labiosum Zygosepalum Zygosepalum labiosum \N \N \N \N \N 43208 L.cordifolia Leandra Leandra cordifolia \N \N \N \N \N 43209 L.integrifolius Lagarosolen Lagarosolen integrifolius \N \N \N \N \N 43210 P.persica Prunus Prunus davidiana x Prunus persica \N \N \N \N \N 43211 P.euphlebia Planchonella Planchonella euphlebia hickory boxwood \N \N \N \N 43212 T.1676 Trattinnickia Trattinnickia sp. DR 1676 \N \N \N \N \N 43213 C.caerulea Chirita Chirita caerulea \N \N \N \N \N 43214 C.athrostachya Carex Carex athrostachya \N \N \N \N \N 43215 L.umbellata Lindera Lindera umbellata kuro-moji \N \N \N \N 43216 \N subspecies Impatiens keilii subsp. keilii \N \N \N \N \N 43217 P.punctata Pedicularis Pedicularis punctata \N \N \N \N \N 43218 \N genus Beilschmiedia \N \N \N \N \N 43219 L.lavandulifolia Leucas Leucas lavandulifolia \N \N \N \N \N 43220 \N genus Ceratopetalum \N \N \N \N \N 43221 C.australis Chionochloa Chionochloa australis \N \N \N \N \N 43222 M.geniculata Minuartia Minuartia geniculata \N \N \N \N \N 43223 G.futtereri Gentiana Gentiana futtereri \N \N \N \N \N 43224 \N subspecies Hypericum hypericoides subsp. hypericoides \N \N \N \N \N 43225 P.'Pipinui' Pimelea Pimelea sp. 'Pipinui' \N \N \N \N \N 43226 S.lucida Stevia Stevia lucida \N \N \N \N \N 43227 D.furcatopedicellatum Dendrobium Dendrobium furcatopedicellatum \N \N \N \N \N 43228 P.paniensis Pycnandra Pycnandra paniensis \N \N \N \N \N 43229 S.subspicata Satureja Satureja subspicata \N \N \N \N \N 43230 \N genus Humularia \N \N \N \N \N 43231 C.bracteata Centaurea Centaurea bracteata \N \N \N \N \N 43232 H.subcapitata Hemiboea Hemiboea subcapitata \N \N \N \N \N 43233 G.arborea Gesnouinia Gesnouinia arborea \N \N \N \N \N 43234 P.gracilis Paliavana Paliavana gracilis \N \N \N \N \N 43235 H.asiatica Hanabusaya Hanabusaya asiatica \N \N \N \N \N 43236 \N genus Grazielodendron \N \N \N \N \N 43237 C.sinense Cymbidium Cymbidium sinense \N \N \N \N \N 43238 A.pseudobrachystachys Astragalus Astragalus pseudobrachystachys \N \N \N \N \N 43239 M.ashtonii Macaranga Macaranga ashtonii \N \N \N \N \N 43240 M.pentandra Mastixia Mastixia pentandra \N \N \N \N \N 43241 L.parthenocomos Lockhartia Lockhartia parthenocomos \N \N \N \N \N 43242 T.sasseri Tolumnia Tolumnia sasseri \N \N \N \N \N 43243 A.erecta Afrobrunnichia Afrobrunnichia erecta \N \N \N \N \N 43244 M.tuberosum Monotagma Monotagma tuberosum \N \N \N \N \N 43245 L.modestum Leucadendron Leucadendron modestum \N \N \N \N \N 43246 M.thyoides Melaleuca Melaleuca thyoides \N \N \N \N \N 43247 D.CANB625042 Diuris Diuris sp. CANB625042 \N \N \N \N \N 43248 H.PI401349 Henrardia Henrardia sp. PI401349 \N \N \N \N \N 43249 M.3219 Meiogyne Meiogyne sp. Kessler 3219 \N \N \N \N \N 43250 A.santolinifolia Artemisia Artemisia santolinifolia \N \N \N \N \N 43251 \N varietas Nierembergia linariifolia var. linariifolia \N \N \N \N \N 43252 F.cahum Furcraea Furcraea cahum \N \N \N \N \N 43253 A.ottonis Aquilegia Aquilegia ottonis \N \N \N \N \N 43254 G.roraimensis Genlisea Genlisea roraimensis \N \N \N \N \N 43255 E.divinorum Euclea Euclea divinorum \N \N \N \N \N 43256 M.luisana Mimosa Mimosa luisana \N \N \N \N \N 43257 A.foliata Aletris Aletris foliata \N \N \N \N \N 43258 \N genus Petalostelma \N \N \N \N \N 43259 B.weddellii Bulbophyllum Bulbophyllum weddellii \N \N \N \N \N 43260 S.39 Stoebe Stoebe sp. Balele 39 \N \N \N \N \N 43261 E.virosa Euphorbia Euphorbia virosa \N \N \N \N \N 43262 S.phoxocarpum Solanum Solanum phoxocarpum \N \N \N \N \N 43263 T.hygrophilum Taraxacum Taraxacum hygrophilum \N \N \N \N \N 43264 \N subspecies Gesneria viridiflora subsp. sintenisii \N \N \N \N \N 43265 R.sambavensis Rytigynia Rytigynia sambavensis \N \N \N \N \N 43266 S.sugimurae Saussurea Saussurea sugimurae \N \N \N \N \N 43267 N.souliea Nannoglottis Nannoglottis souliea \N \N \N \N \N 43268 P.coccoidea Pilostyles Pilostyles coccoidea \N \N \N \N \N 43269 D.arborescens Dichrostachys Dichrostachys arborescens \N \N \N \N \N 43270 R.phycelloides Rhodophiala Rhodophiala phycelloides \N \N \N \N \N 43271 \N genus Poulsenia \N \N \N \N \N 43272 H.tweedii Holmbergia Holmbergia tweedii \N \N \N \N \N 43273 Q.MES117 Quercus Quercus sp. MES117 \N \N \N \N \N 43274 P.foliiforme Paspalum Paspalum foliiforme \N \N \N \N \N 43275 \N varietas Malesherbia humilis var. parviflora \N \N \N \N \N 43276 \N genus Cicuta \N \N \N \N \N 43277 H.peploides Honkenya Honkenya peploides \N \N \N \N \N 43278 P.bicolor Puya Puya bicolor \N \N \N \N \N 43279 C.americana Conopholis Conopholis americana \N \N \N \N \N 43280 S.glabrescens Spathelia Spathelia glabrescens \N \N \N \N \N 43281 B.brachypoda Berberis Berberis brachypoda \N \N \N \N \N 43282 D.ochroleuca Draba Draba ochroleuca \N \N \N \N \N 43283 O.tenelliflora Oldenlandia Oldenlandia tenelliflora \N \N \N \N \N 43284 D.scullyi Disa Disa scullyi \N \N \N \N \N 43285 B.salsum Bunium Bunium salsum \N \N \N \N \N 43286 H.zenkeri Hypodaphnis Hypodaphnis zenkeri \N \N \N \N \N 43287 C.souiensis Camarotea Camarotea souiensis \N \N \N \N \N 43288 C.mongue Croton Croton mongue \N \N \N \N \N 43289 \N genus Abrus \N \N \N \N \N 43290 O.semicastrata Ormosia Ormosia semicastrata \N \N \N \N \N 43291 O.mattirolii Onosma Onosma mattirolii \N \N \N \N \N 43292 A.americana Anemone Anemone americana American liverleaf \N \N \N \N 43293 P.WO2009029739 Plantago Plantago sp. WO2009029739 \N \N \N \N \N 43294 H.3332 Hydrocotyle Hydrocotyle sp. Van Valkenburg & Zijlstra 3332 \N \N \N \N \N 43295 C.fraterna Camellia Camellia fraterna \N \N \N \N \N 43296 A.fragrans Aquilegia Aquilegia fragrans \N \N \N \N \N 43297 S.scabrifolia Setaria Setaria scabrifolia \N \N \N \N \N 43298 A.pricei Alpinia Alpinia pricei \N \N \N \N \N 43299 L.repens Ludwigia Ludwigia repens \N \N \N \N \N 43300 T.volubilis Tragia Tragia volubilis \N \N \N \N \N 43301 \N genus Lappula \N \N \N \N \N 43302 M.vieillardii Myodocarpus Myodocarpus vieillardii \N \N \N \N \N 43303 V.grandisepala Viola Viola grandisepala \N \N \N \N \N 43304 A.atriuscula Alchemilla Alchemilla atriuscula \N \N \N \N \N 43305 C.racemosa Castilleja Castilleja racemosa \N \N \N \N \N 43306 H.scarlatina Harveya Harveya scarlatina \N \N \N \N \N 43307 C.O-550 Chondrorhyncha Chondrorhyncha sp. Chase O-550 \N \N \N \N \N 43308 C.comosa Curcuma Curcuma comosa \N \N \N \N \N 43309 A.minima Aiphanes Aiphanes minima \N \N \N \N \N 43310 \N genus Tecoma \N \N \N \N \N 43311 D.truncatum Dendrobium Dendrobium truncatum \N \N \N \N \N 43312 \N genus Cephalophyllum \N \N \N \N \N 43313 T.porrifolius Tragopogon Tragopogon porrifolius oyster plant,salsify \N \N \N \N 43314 R.barrelieri Reseda Reseda barrelieri \N \N \N \N \N 43315 A.tulipifolium Allium Allium tulipifolium \N \N \N \N \N 43316 \N genus Westoniella \N \N \N \N \N 43317 R.wilburii Razisea Razisea wilburii \N \N \N \N \N 43318 M.curtipes Maxillaria Maxillaria curtipes \N \N \N \N \N 43319 R.pseudobuxifolium Rhododendron Rhododendron pseudobuxifolium \N \N \N \N \N 43320 C.yemense Crinum Crinum yemense \N \N \N \N \N 43321 S.nuttallii Schiedea Schiedea nuttallii \N \N \N \N \N 43322 \N genus Diandrolyra \N \N \N \N \N 43323 J.Asia2 Jurinea Jurinea sp. Asia2 \N \N \N \N \N 43324 C.(Tunbridge) Craspedia Craspedia sp. (Tunbridge) \N \N \N \N \N 43325 \N genus Carpobrotus \N \N \N \N \N 43326 \N subspecies Echidnopsis scutellata subsp. dhofarensis \N \N \N \N \N 43327 A.avenaceus Anisopogon Anisopogon avenaceus \N \N \N \N \N 43328 R.beggeriana Rosa Rosa beggeriana \N \N \N \N \N 43329 N.cunninghamii Nothofagus Nothofagus cunninghamii \N \N \N \N \N 43330 S.SR-2010 Schotia Schotia aff. brachypetala SR-2010 \N \N \N \N \N 43331 R.javanicum Rhododendron Rhododendron javanicum \N \N \N \N \N 43332 \N genus Heterothalamus \N \N \N \N \N 43333 \N genus Stilpnogyne \N \N \N \N \N 43334 E.pusilla Eleocharis Eleocharis pusilla \N \N \N \N \N 43335 T.koordersii Teyleria Teyleria koordersii \N \N \N \N \N 43336 S.japonica Stemona Stemona japonica \N \N \N \N \N 43337 M.olivetorum Muscari Muscari olivetorum \N \N \N \N \N 43338 C.arenarius Ceratocarpus Ceratocarpus arenarius \N \N \N \N \N 43339 \N genus Gaultheria \N \N \N \N \N 43340 C.defoliatum Cymbidium Cymbidium defoliatum \N \N \N \N \N 43341 P.fernaldiana Poa Poa fernaldiana \N \N \N \N \N 43342 L.fernandeziana Lactoris Lactoris fernandeziana \N \N \N \N \N 43343 \N subspecies Viola lutea subsp. calaminaria \N \N \N \N \N 43344 \N genus Iseia \N \N \N \N \N 43345 O.venezuelana Oxandra Oxandra venezuelana \N \N \N \N \N 43346 E.spathulata Eucalyptus Eucalyptus spathulata \N \N \N \N \N 43347 \N no rank environmental samples Taxonomy:1008282 \N \N \N \N \N 43348 B.perrieri Breonia Breonia perrieri \N \N \N \N \N 43349 A.oreophilum Allium Allium oreophilum \N \N \N \N \N 43350 \N genus Alfaroa \N \N \N \N \N 43351 S.lobosporus Sphenostemon Sphenostemon lobosporus \N \N \N \N \N 43352 T.kotoense Tuberolabium Tuberolabium kotoense \N \N \N \N \N 43353 E.bellidiastrum Erigeron Erigeron bellidiastrum \N \N \N \N \N 43354 P.quercifolia Pilea Pilea quercifolia \N \N \N \N \N 43355 W.8741 Warneckea Warneckea cf. schliebenii Luke 8741 \N \N \N \N \N 43356 R.subscaposus Ranunculus Ranunculus subscaposus \N \N \N \N \N 43357 C.wightii Commiphora Commiphora wightii \N \N \N \N \N 43358 \N genus Dioncophyllum \N \N \N \N \N 43359 E.attastoma Euphorbia Euphorbia attastoma \N \N \N \N \N 43360 \N genus Chiritopsis \N \N \N \N \N 43361 \N subspecies Rhipsalis baccifera subsp. erythrocarpa \N \N \N \N \N 43362 L.oxycarpum Lepidium Lepidium oxycarpum \N \N \N \N \N 43363 \N subspecies Chuquiraga spinosa subsp. rotundifolia \N \N \N \N \N 43364 S.aethiopicus Siphonochilus Siphonochilus aethiopicus \N \N \N \N \N 43365 L.nemaclada Lessingia Lessingia nemaclada \N \N \N \N \N 43366 G.brasiliense Gearum Gearum brasiliense \N \N \N \N \N 43367 C.pallida Comandra Comandra pallida \N \N \N \N \N 43368 Z.nevadensis Zeltnera Zeltnera nevadensis \N \N \N \N \N 43369 O.bataua Oenocarpus Oenocarpus bataua \N \N \N \N \N 43370 \N subspecies Lobularia canariensis subsp. palmensis \N \N \N \N \N 43371 I.karooica Ischyrolepis Ischyrolepis karooica \N \N \N \N \N 43373 M.hernandezii Mammillaria Mammillaria hernandezii \N \N \N \N \N 43374 K.uvaria Kniphofia Kniphofia uvaria \N \N \N \N \N 43375 G.fergusoniae Glottiphyllum Glottiphyllum fergusoniae \N \N \N \N \N 43376 C.dalmatica Centaurea Centaurea dalmatica \N \N \N \N \N 43377 \N genus Pladaroxylon \N \N \N \N \N 43378 O.illyricum Onopordum Onopordum illyricum \N \N \N \N \N 43379 S.armenum Sempervivum Sempervivum armenum \N \N \N \N \N 43380 P.jenissejensis Potentilla Potentilla jenissejensis \N \N \N \N \N 43381 S.rhodopaea Soldanella Soldanella rhodopaea \N \N \N \N \N 43382 \N genus Hylotelephium \N \N \N \N \N 43383 A.pseudocotula Anthemis Anthemis pseudocotula \N \N \N \N \N 43384 C.olesiphylla Chamaecrista Chamaecrista olesiphylla \N \N \N \N \N 43385 T.geniculata Thalia Thalia geniculata fire-flag \N \N \N \N 43386 \N varietas Aloe ciliaris var. ciliaris \N \N \N \N \N 43387 L.CD-2005 Lolium Lolium sp. CD-2005 \N \N \N \N \N 43388 G.cirrifica Goodenia Goodenia cirrifica \N \N \N \N \N 43389 H.costata Hygrophila Hygrophila costata \N \N \N \N \N 43390 A.novoguineensis Arrhenechthites Arrhenechthites novoguineensis \N \N \N \N \N 43391 H.microphyllum Helichrysum Helichrysum microphyllum \N \N \N \N \N 43392 H.1336 Himatanthus Himatanthus sp. Silveira 1336 \N \N \N \N \N 43393 C.modocensis Crepis Crepis modocensis \N \N \N \N \N 43394 \N varietas Rhododendron mucronulatum var. mucronulatum \N \N \N \N \N 43395 H.JANB-2011 Habenaria Habenaria aff. nuda JANB-2011 \N \N \N \N \N 43396 L.fragrans Lepechinia Lepechinia fragrans fragrant pitcher sage \N \N \N \N 43397 P.pulcherrima Potentilla Potentilla pulcherrima \N \N \N \N \N 43399 C.salvatoris Coccothrinax Coccothrinax salvatoris \N \N \N \N \N 43400 D.drummondii Diuris Diuris drummondii tall donkey orchid \N \N \N \N 43401 D.erecta Duranta Duranta erecta golden dewdrops,pigeon berry,sky flower \N \N \N \N 43402 \N subspecies Linaria multicaulis subsp. heterophylla \N \N \N \N \N 43403 P.majus Polycnemum Polycnemum majus \N \N \N \N \N 43404 S.faberi Styrax Styrax faberi \N \N \N \N \N 43405 S.MD-2011 Sertifera Sertifera sp. MD-2011 \N \N \N \N \N 43406 C.maritima Crucianella Crucianella maritima \N \N \N \N \N 43407 C.preslii Carex Carex preslii \N \N \N \N \N 43408 A.tagala Aristolochia Aristolochia tagala \N \N \N \N \N 43409 T.cynocrambe Theligonum Theligonum cynocrambe \N \N \N \N \N 43410 M.505473 Melicytus Melicytus aff. novae-zelandiae CHR 505473 \N \N \N \N \N 43411 A.ugandensis Aerangis Aerangis ugandensis \N \N \N \N \N 43412 P.pseudoverruculosa Peperomia Peperomia pseudoverruculosa \N \N \N \N \N 43413 F.oppositifolia Flaveria Flaveria oppositifolia \N \N \N \N \N 43414 R.perfoliata Rafnia Rafnia perfoliata \N \N \N \N \N 43415 D.cryptantha Draba Draba cryptantha \N \N \N \N \N 43416 E.albipollinifera Euphorbia Euphorbia albipollinifera \N \N \N \N \N 43417 S.uncinatus Sclerocactus Sclerocactus uncinatus \N \N \N \N \N 43418 \N subspecies Ononis spinosa subsp. maritima \N \N \N \N \N 43419 T.viridifolium Thesium Thesium viridifolium \N \N \N \N \N 43420 S.zenkeri Stachyanthus Stachyanthus zenkeri \N \N \N \N \N 43421 D.triflorum Desmodium Desmodium triflorum amor-do-campo,hierba cuartillo,kuddalia \N \N \N \N 43422 \N genus Pleuropetalum \N \N \N \N \N 43423 C.sartwelliana Carex Carex sartwelliana \N \N \N \N \N 43424 Z.rubens Zingiber Zingiber rubens \N \N \N \N \N 43425 S.diclinis Silene Silene diclinis \N \N \N \N \N 43426 H.pilifera Halotis Halotis pilifera \N \N \N \N \N 43427 C.cipoensis Constantia Constantia cipoensis \N \N \N \N \N 43428 O.malacophylla Orostachys Orostachys malacophylla dun ye wa song \N \N \N \N 43429 M.verrucosa Marsdenia Marsdenia verrucosa \N \N \N \N \N 43430 R.orthocladum Rhododendron Rhododendron orthocladum \N \N \N \N \N 43431 S.rostrata Shinnersoseris Shinnersoseris rostrata \N \N \N \N \N 43432 G.racemosa Griselinia Griselinia racemosa \N \N \N \N \N 43433 C.incisa Cissus Cissus incisa marine-ivy \N \N \N \N 43434 L.hypoleuca Licania Licania hypoleuca \N \N \N \N \N 43435 P.tuberculata Pultenaea Pultenaea tuberculata \N \N \N \N \N 43436 L.micrantha Lantana Lantana micrantha \N \N \N \N \N 43437 P.javana Pinanga Pinanga javana \N \N \N \N \N 43438 \N varietas Veronica sp. 'rumelica' \N \N \N \N \N 43439 A.aculeatosepala Aechmea Aechmea aculeatosepala \N \N \N \N \N 43440 M.parasylvatica Monnina Monnina parasylvatica \N \N \N \N \N 43441 C.laevis Chondroscaphe Chondroscaphe laevis \N \N \N \N \N 43442 \N genus Braunsia \N \N \N \N \N 43443 S.tessmannii Septotheca Septotheca tessmannii \N \N \N \N \N 43444 D.ordensis Drosera Drosera ordensis \N \N \N \N \N 43445 P.pendula Pyrostria Pyrostria pendula \N \N \N \N \N 43446 A.wardiana Aristolochia Aristolochia wardiana \N \N \N \N \N 43447 \N order Proteales \N \N \N \N \N 43448 S.dulosa Schismatoglottis Schismatoglottis dulosa \N \N \N \N \N 43449 E.inaccessum Eryngium Eryngium inaccessum \N \N \N \N \N 43450 H.caucasicum Hedysarum Hedysarum caucasicum \N \N \N \N \N 43451 M.rolfeana Masdevallia Masdevallia rolfeana \N \N \N \N \N 43452 C.angulata Cryptocarya Cryptocarya angulata \N \N \N \N \N 43453 H.2104' Hoffmannia Hoffmannia sp. 'Andersson 2104' \N \N \N \N \N 43454 \N no rank Heldreichia bupleurifolia ssp. KM-2009b \N \N \N \N \N 43455 S.anquetilia Skimmia Skimmia anquetilia \N \N \N \N \N 43456 \N subspecies Elymus lanceolatus subsp. lanceolatus \N \N \N \N \N 43457 \N genus Augea \N \N \N \N \N 43458 \N genus Euaraliopsis \N \N \N \N \N 43459 S.tenuifolia Secamone Secamone tenuifolia \N \N \N \N \N 43460 M.discolor Maasia Maasia discolor \N \N \N \N \N 43461 T.micranthum Toxicoscordion Toxicoscordion micranthum \N \N \N \N \N 43462 \N subspecies Wurmbea biglandulosa subsp. flindersica \N \N \N \N \N 43463 S.perforatum Stizophyllum Stizophyllum perforatum \N \N \N \N \N 43464 E.capitulata Euphorbia Euphorbia capitulata \N \N \N \N \N 43465 B.salicifolius Barkleyanthus Barkleyanthus salicifolius \N \N \N \N \N 43466 \N genus Blyxa \N \N \N \N \N 43467 \N genus Sleumerodendron \N \N \N \N \N 43468 G.pseudominutiflora Gagea Gagea pseudominutiflora \N \N \N \N \N 43469 T.pillansii Tetraria Tetraria pillansii \N \N \N \N \N 43470 E.filipendula Erica Erica filipendula \N \N \N \N \N 43471 S.dubiosus Streblacanthus Streblacanthus dubiosus \N \N \N \N \N 43472 L.oblongifolia Lavatera Lavatera oblongifolia \N \N \N \N \N 43473 L.60 Lupinus Lupinus sp. Eastwood 60 \N \N \N \N \N 43474 T.namaquense Thesium Thesium namaquense \N \N \N \N \N 43475 P.nigra Populus Populus simonii x Populus nigra \N \N \N \N \N 43476 \N genus Ceratocentron \N \N \N \N \N 43477 I.arnhemensis Ilex Ilex arnhemensis \N \N \N \N \N 43478 L.koreana Liparis Liparis koreana \N \N \N \N \N 43479 L.dichotomus Linanthus Linanthus dichotomus eveningsnow \N \N \N \N 43480 G.scapigera Goodenia Goodenia scapigera \N \N \N \N \N 43481 S.microcephalus Smallanthus Smallanthus microcephalus \N \N \N \N \N 43482 N.conoidea Neolloydia Neolloydia conoidea \N \N \N \N \N 43483 A.cyclops Acacia Acacia cyclops \N \N \N \N \N 43484 G.retrotrichus Gyrocheilos Gyrocheilos retrotrichus \N \N \N \N \N 43485 M.dhwojii Meconopsis Meconopsis dhwojii \N \N \N \N \N 43486 D.longifolium Dendrochilum Dendrochilum longifolium \N \N \N \N \N 43487 C.leuzeoides Centaurea Centaurea leuzeoides \N \N \N \N \N 43488 \N genus Brachystephanus \N \N \N \N \N 43489 M.tricolor Mimulus Mimulus tricolor \N \N \N \N \N 43490 S.crataegifolius Senecio Senecio crataegifolius \N \N \N \N \N 43491 \N genus Langsdorffia \N \N \N \N \N 43492 A.holathera Aristida Aristida holathera \N \N \N \N \N 43493 A.juncea Athanasia Athanasia juncea \N \N \N \N \N 43494 A.armeniaca Avenula Avenula armeniaca \N \N \N \N \N 43495 C.heterophylla Callitriche Callitriche heterophylla \N \N \N \N \N 43496 D.pubescens Desmanthus Desmanthus pubescens \N \N \N \N \N 43497 C.patula Cyrtandra Cyrtandra patula \N \N \N \N \N 43498 S.acuminata Schefflera Schefflera acuminata \N \N \N \N \N 43499 V.buddlejiformis Viguiera Viguiera buddlejiformis \N \N \N \N \N 43500 D.montana Disa Disa montana \N \N \N \N \N 43501 \N genus Holcoglossum \N \N \N \N \N 43502 \N genus Calyptrotheca \N \N \N \N \N 43503 A.alopecuroides Astragalus Astragalus alopecuroides \N \N \N \N \N 43504 S.diospyrifolium Syzygium Syzygium diospyrifolium \N \N \N \N \N 43505 \N genus Ledermanniella \N \N \N \N \N 43506 G.danguyana Gnidia Gnidia danguyana \N \N \N \N \N 43507 R.alekseevii Rohrbachia Rohrbachia alekseevii \N \N \N \N \N 43508 C.stracheyi Cornus Cornus stracheyi \N \N \N \N \N 43509 C.heptapotamicum Corispermum Corispermum heptapotamicum \N \N \N \N \N 43510 \N family Strasburgeriaceae \N \N \N \N \N 43511 E.wawawaiensis Elymus Elymus wawawaiensis Snake River wheatgrass \N \N \N \N 43512 A.pastorius Astragalus Astragalus pastorius \N \N \N \N \N 43513 S.arabicus Schismus Schismus arabicus \N \N \N \N \N 43514 N.thunbergiana Nymphoides Nymphoides thunbergiana \N \N \N \N \N 43515 S.vaginata Schrenkia Schrenkia vaginata \N \N \N \N \N 43516 \N genus Brownleea \N \N \N \N \N 43517 S.ilicifolius Senecio Senecio ilicifolius \N \N \N \N \N 43518 S.marianum Silybum Silybum marianum holy thistle,lady's thistle,milk thistle \N \N \N \N 43519 A.adenophora Ageratina Ageratina adenophora \N \N \N \N \N 43520 \N genus Hymenolobus \N \N \N \N \N 43521 \N genus Cneoridium \N \N \N \N \N 43522 \N genus Nirarathamnos \N \N \N \N \N 43523 R.chinensis Rhus Rhus chinensis \N \N \N \N \N 43524 B.nutans Bulbophyllum Bulbophyllum nutans \N \N \N \N \N 43525 \N subfamily Enkianthoideae \N \N \N \N \N 43526 I.SH-2010 Ixora Ixora sp. SH-2010 \N \N \N \N \N 43527 L.sphagnophila Lysipomia Lysipomia sphagnophila \N \N \N \N \N 43528 \N genus Buchanania \N \N \N \N \N 43529 E.avasmontana Euphorbia Euphorbia avasmontana \N \N \N \N \N 43530 T.vaseyi Trillium Trillium vaseyi sweet beth \N \N \N \N 43531 R.bolivianum Ribes Ribes bolivianum \N \N \N \N \N 43532 T.rubicunda Tournefortia Tournefortia rubicunda \N \N \N \N \N 43533 S.convallariodora Salvertia Salvertia convallariodora \N \N \N \N \N 43534 L.pinnatum Lepidium Lepidium pinnatum \N \N \N \N \N 43535 \N subspecies Descurainia paradisa subsp. paradisa \N \N \N \N \N 43536 \N varietas Ceanothus cuneatus var. dubius \N \N \N \N \N 43537 L.denticulosus Lysionotus Lysionotus denticulosus \N \N \N \N \N 43538 P.TJSW-2011 Planchonella Planchonella sp. TJSW-2011 \N \N \N \N \N 43539 P.feddei Parthenocissus Parthenocissus feddei \N \N \N \N \N 43540 E.A Eugenia Eugenia sp. A \N \N \N \N \N 43541 O.zeyheri Orothamnus Orothamnus zeyheri marsh rose \N \N \N \N 43542 N.charruana Nassella Nassella charruana \N \N \N \N \N 43543 V.bryophila Valeriana Valeriana bryophila \N \N \N \N \N 43544 \N subspecies Cyrtanthus mackenii subsp. cooperi \N \N \N \N \N 43545 P.oligantha Pityopsis Pityopsis oligantha \N \N \N \N \N 43546 C.annectens Carex Carex annectens \N \N \N \N \N 43547 \N varietas Spiraea japonica var. glabra \N \N \N \N \N 43548 \N varietas Balsamorhiza macrolepis var. macrolepis \N \N \N \N \N 43549 L.hodgei Lantana Lantana hodgei \N \N \N \N \N 43550 M.diotostigma Microsteira Microsteira diotostigma \N \N \N \N \N 43551 M.hyemalis Miconia Miconia hyemalis \N \N \N \N \N 43552 S.buergeriana Sambucus Sambucus buergeriana \N \N \N \N \N 43553 N.cunninghamii Nestegis Nestegis cunninghamii \N \N \N \N \N 43554 S.farinifer Senecio Senecio farinifer \N \N \N \N \N 43555 T.erubescens Tillandsia Tillandsia erubescens \N \N \N \N \N 43556 C.mexicanum Chiangiodendron Chiangiodendron mexicanum \N \N \N \N \N 43557 M.attenuata Maxillaria Maxillaria attenuata \N \N \N \N \N 43558 P.kaalensis Planchonella Planchonella kaalensis \N \N \N \N \N 43559 C.physaloides Colensoa Colensoa physaloides \N \N \N \N \N 43560 \N subspecies Salvia erythrostoma subsp. isabelina \N \N \N \N \N 43561 O.recticaulis Oxalis Oxalis recticaulis \N \N \N \N \N 43562 H.eggertii Helianthus Helianthus eggertii \N \N \N \N \N 43563 C.bigelovii Crossosoma Crossosoma bigelovii \N \N \N \N \N 43564 A.4502 Aparisthmium Aparisthmium sp. Carvalho et al. 4502 \N \N \N \N \N 43565 A.mvdb-G3 Arthraxon Arthraxon sp. mvdb-G3 \N \N \N \N \N 43566 P.neudeckeri Paphinia Paphinia neudeckeri \N \N \N \N \N 43567 A.microstoma Aristolochia Aristolochia microstoma \N \N \N \N \N 43568 P.tetrandra Prismatomeris Prismatomeris tetrandra \N \N \N \N \N 43569 M.zeilmanniana Mammillaria Mammillaria zeilmanniana \N \N \N \N \N 43570 V.kansuense Viburnum Viburnum kansuense \N \N \N \N \N 43571 M.quitensis Mimosa Mimosa quitensis \N \N \N \N \N 43572 \N genus Vicatia \N \N \N \N \N 43573 H.albanicum Heliosperma Heliosperma albanicum \N \N \N \N \N 43574 M.macrantha Microcoelia Microcoelia macrantha \N \N \N \N \N 43575 B.molokaiensis Bidens Bidens molokaiensis \N \N \N \N \N 43576 P.melanocystis Physalis Physalis melanocystis \N \N \N \N \N 43577 D.helleriana Draba Draba helleriana \N \N \N \N \N 43578 \N genus Phyllopodium \N \N \N \N \N 43579 A.lusitanica Avena Avena lusitanica \N \N \N \N \N 43580 M.oppositifolia Maireana Maireana oppositifolia \N \N \N \N \N 43581 D.linearis Dahlia Dahlia linearis \N \N \N \N \N 43582 D.hypargyreus Davilanthus Davilanthus hypargyreus \N \N \N \N \N 43583 M.hortensia Myosotidium Myosotidium hortensia giant forget-me-not \N \N \N \N 43584 O.coerulescens Orobanche Orobanche coerulescens \N \N \N \N \N 43585 A.artemisiifolia Ambrosia Ambrosia artemisiifolia annual ragweed,common ragweed,short ragweed \N \N \N \N 43586 O.aspidorhinum Oncidium Oncidium aspidorhinum \N \N \N \N \N 43587 E.equisetifolia Erica Erica equisetifolia \N \N \N \N \N 43588 C.dinklagei Carapa Carapa dinklagei \N \N \N \N \N 43589 V.coerulea Vanda Vanda coerulea \N \N \N \N \N 43590 V.friburgensis Vriesea Vriesea friburgensis \N \N \N \N \N 43591 F.angustifolia Feeria Feeria angustifolia \N \N \N \N \N 43592 S.officinale Sisymbrium Sisymbrium officinale \N \N \N \N \N 43593 B.hispida Benincasa Benincasa hispida ash gourd,wax gourd,winter melon \N \N \N \N 43594 D.brassica Diospyros Diospyros brassica \N \N \N \N \N 43595 G.cunonius Gladiolus Gladiolus cunonius \N \N \N \N \N 43596 D.edulis Debregeasia Debregeasia edulis \N \N \N \N \N 43597 A.mexicana Abatia Abatia mexicana \N \N \N \N \N 43598 \N genus Isostigma \N \N \N \N \N 43599 \N tribe Zanonieae \N \N \N \N \N 43600 H.anomalus Hybanthus Hybanthus anomalus \N \N \N \N \N 43601 \N varietas Gentiana dahurica var. dahurica \N \N \N \N \N 43602 O.secundum Ornithogalum Ornithogalum secundum \N \N \N \N \N 43603 T.lupinaster Trifolium Trifolium lupinaster \N \N \N \N \N 43604 N.dealbata Neolitsea Neolitsea dealbata \N \N \N \N \N 43605 D.diffusus Dianthus Dianthus diffusus \N \N \N \N \N 43606 R.luteola Reseda Reseda luteola \N \N \N \N \N 43607 G.densa Groenlandia Groenlandia densa \N \N \N \N \N 43608 E.persicus Echinops Echinops persicus \N \N \N \N \N 43609 \N tribe Crotalarieae \N \N \N \N \N 43610 L.caryophyllea Lavoisiera Lavoisiera caryophyllea \N \N \N \N \N 43611 B.spicata Boerhavia Boerhavia spicata \N \N \N \N \N 43612 I.TP-2009 Inga Inga sp. 13 TP-2009 \N \N \N \N \N 43613 O.scabrum Origanum Origanum scabrum \N \N \N \N \N 43614 S.mirabilis Sarcoglyphis Sarcoglyphis mirabilis \N \N \N \N \N 43615 \N varietas Spiranthes sinensis var. amoena \N \N \N \N \N 43616 C.U-01 Cypripedium Cypripedium sp. U-01 \N \N \N \N \N 43617 L.chevalieri Lasianthus Lasianthus chevalieri \N \N \N \N \N 43618 A.sylvicola Anthocercis Anthocercis sylvicola \N \N \N \N \N 43619 S.fissuratum Stryphnodendron Stryphnodendron fissuratum \N \N \N \N \N 43620 S.parviflora Schlegelia Schlegelia parviflora \N \N \N \N \N 43621 P.formosana Pleione Pleione formosana \N \N \N \N \N 43622 D.alba Drosera Drosera alba \N \N \N \N \N 43623 S.pentandra Symplocos Symplocos pentandra \N \N \N \N \N 43624 M.rectiflora Marcgravia Marcgravia rectiflora \N \N \N \N \N 43625 \N genus Roentgenia \N \N \N \N \N 43626 O.jaburan Ophiopogon Ophiopogon jaburan \N \N \N \N \N 43627 H.7 Hakea Hakea sp. 1-Anderson 7 \N \N \N \N \N 43628 \N genus Calceolaria \N \N \N \N \N 43629 P.sp. Populus Populus sp. \N \N \N \N \N 43630 R.subestipitatum Rhododendron Rhododendron subestipitatum \N \N \N \N \N 43631 M.repens Maripa Maripa repens \N \N \N \N \N 43632 \N varietas Collinsia torreyi var. torreyi \N \N \N \N \N 43633 A.hyperborea Artemisia Artemisia hyperborea \N \N \N \N \N 43634 A.pseudohybridus Aeschynanthus Aeschynanthus pseudohybridus \N \N \N \N \N 43635 C.pskemica Calophaca Calophaca pskemica \N \N \N \N \N 43636 C.robinsiae Campanula Campanula robinsiae \N \N \N \N \N 43637 A.kusshakuensis Alpinia Alpinia kusshakuensis \N \N \N \N \N 43638 P.cynanchoides Pithecoctenium Pithecoctenium cynanchoides \N \N \N \N \N 43639 \N genus Feddea \N \N \N \N \N 43640 V.multinervosa Vaseyochloa Vaseyochloa multinervosa \N \N \N \N \N 43641 \N genus Hensmania \N \N \N \N \N 43642 \N subspecies Poa laxa subsp. flexuosa \N \N \N \N \N 43643 A.burretiana Attalea Attalea burretiana \N \N \N \N \N 43644 P.cystiporon Peponidium Peponidium cystiporon \N \N \N \N \N 43645 A.rupestris Anemone Anemone rupestris \N \N \N \N \N 43646 G.alnasteretum Glyceria Glyceria alnasteretum \N \N \N \N \N 43647 A.499 Anigozanthos Anigozanthos sp. Prince 499 \N \N \N \N \N 43648 R.spiculosa Racinaea Racinaea spiculosa \N \N \N \N \N 43649 C.alabamensis Croton Croton alabamensis \N \N \N \N \N 43650 \N genus Berberis barberry \N \N \N \N 43651 \N varietas Carex digitalis var. digitalis \N \N \N \N \N 43652 P.brachycarpa Paraboea Paraboea brachycarpa \N \N \N \N \N 43653 C.pulchellum Calyptridium Calyptridium pulchellum Mariposa pussypaws \N \N \N \N 43654 C.vogtherriana Coryphantha Coryphantha vogtherriana \N \N \N \N \N 43655 E.nigrescens Eleocharis Eleocharis nigrescens \N \N \N \N \N 43656 L.cuzcoensis Lithospermum Lithospermum cuzcoensis \N \N \N \N \N 43657 P.tenuicylindrica Parodia Parodia tenuicylindrica \N \N \N \N \N 43658 C.mauritianus Camptocarpus Camptocarpus mauritianus \N \N \N \N \N 43659 H.bretschneideri Hydrangea Hydrangea bretschneideri \N \N \N \N \N 43660 \N subspecies Deinandra greeneana subsp. peninsularis \N \N \N \N \N 43661 S.bellidifolius Senecio Senecio bellidifolius \N \N \N \N \N 43662 B.alta Bothriochloa Bothriochloa alta \N \N \N \N \N 43663 L.11264 Ladenbergia Ladenbergia sp. Schunke-Vigo 11264 \N \N \N \N \N 43664 \N genus Astrophytum \N \N \N \N \N 43665 M.grandis Millettia Millettia grandis \N \N \N \N \N 43666 E.trialatus Echinodorus Echinodorus trialatus \N \N \N \N \N 43667 A.vulgare Astrocaryum Astrocaryum vulgare \N \N \N \N \N 43668 E.coquimbanum Eryngium Eryngium coquimbanum \N \N \N \N \N 43669 G.GC0048 Gomesa Gomesa aff. lietzei GC0048 \N \N \N \N \N 43670 E.ramosus Enteropogon Enteropogon ramosus \N \N \N \N \N 43671 P.foetidus Pterocereus Pterocereus foetidus \N \N \N \N \N 43672 D.monticola Dendrobium Dendrobium monticola \N \N \N \N \N 43673 \N order Bruniales \N \N \N \N \N 43674 S.sawafutagi Symplocos Symplocos sawafutagi \N \N \N \N \N 43675 C.stigmaticus Cercestis Cercestis stigmaticus \N \N \N \N \N 43676 H.gracilis Haworthia Haworthia gracilis \N \N \N \N \N 43677 \N varietas Polygonum cuspidatum var. terminalis \N \N \N \N \N 43678 A.klaineana Anopyxis Anopyxis klaineana \N \N \N \N \N 43679 B.microphylla Berberis Berberis microphylla \N \N \N \N \N 43680 P.conjugens Primula Primula conjugens Bonneville shootingstar \N \N \N \N 43681 P.havlasae Pelargonium Pelargonium havlasae \N \N \N \N \N 43682 A.ciliaris Aloe Aloe ciliaris \N \N \N \N \N 43683 G.burchellii Guatteria Guatteria burchellii \N \N \N \N \N 43684 S.glanduliflora Stapelia Stapelia glanduliflora \N \N \N \N \N 43685 G.decorata Gentiana Gentiana decorata \N \N \N \N \N 43686 V.annulata Vanzijlia Vanzijlia annulata \N \N \N \N \N 43687 D.gregulus Dendrobium Dendrobium gregulus \N \N \N \N \N 43688 \N family Monimiaceae \N \N \N \N \N 43689 C.heterophylla Cousinia Cousinia heterophylla \N \N \N \N \N 43690 H.conferta Hemigenia Hemigenia conferta \N \N \N \N \N 43691 \N varietas Pimpinella cretica var. arabica \N \N \N \N \N 43692 \N genus Hollandaea \N \N \N \N \N 43693 I.nzabiana Impatiens Impatiens nzabiana \N \N \N \N \N 43694 B.leptophylla Banksia Banksia leptophylla \N \N \N \N \N 43695 E.parvula Eleocharis Eleocharis parvula \N \N \N \N \N 43696 \N genus Tropidocarpum \N \N \N \N \N 43697 T.quinquecostatus Thymus Thymus quinquecostatus Japanese thyme,di jiao,ibuki-jako-so \N \N \N \N 43698 V.sublobata Veronica Veronica sublobata \N \N \N \N \N 43699 \N genus Diascia \N \N \N \N \N 43700 C.wainihaensis Cyrtandra Cyrtandra wainihaensis \N \N \N \N \N 43701 A.oxysepala Aquilegia Aquilegia oxysepala \N \N \N \N \N 43702 O.pumila Ophiorrhiza Ophiorrhiza pumila \N \N \N \N \N 43703 P.gramineus Pleioblastus Pleioblastus gramineus \N \N \N \N \N 43704 D.mogollonica Draba Draba mogollonica Mogollon Mountain draba \N \N \N \N 43705 S.viscosa Silene Silene viscosa \N \N \N \N \N 43706 C.filifera Caladenia Caladenia filifera \N \N \N \N \N 43707 B.maudiae Bolusiella Bolusiella maudiae \N \N \N \N \N 43708 L.rupicola Loxococcus Loxococcus rupicola \N \N \N \N \N 43709 C.brevicaulis Coussarea Coussarea brevicaulis \N \N \N \N \N 43710 C.glareosa Carex Carex glareosa \N \N \N \N \N 43711 S.dolichocremastrum Solanum Solanum dolichocremastrum \N \N \N \N \N 43712 T.setiferum Trifolium Trifolium setiferum \N \N \N \N \N 43713 N.laseroides Neoconopodium Neoconopodium laseroides \N \N \N \N \N 43714 P.confertiflorum Pittosporum Pittosporum confertiflorum \N \N \N \N \N 43715 P.locuples Psydrax Psydrax locuples \N \N \N \N \N 43716 \N genus Plathymenia \N \N \N \N \N 43717 C.hastata Capparis Capparis hastata \N \N \N \N \N 43718 \N genus Nyctaginia \N \N \N \N \N 43719 \N varietas Herrickia glauca var. pulchra \N \N \N \N \N 43720 A.sphaerica Anacaona Anacaona sphaerica \N \N \N \N \N 43721 \N subspecies Fagus grandifolia subsp. mexicana \N \N \N \N \N 43722 M.orbicularis Manihot Manihot orbicularis \N \N \N \N \N 43723 A.micrantha Achillea Achillea micrantha \N \N \N \N \N 43724 A.rosifolia Ackama Ackama rosifolia \N \N \N \N \N 43725 Z.grandiflora Zinnia Zinnia grandiflora \N \N \N \N \N 43726 M.acerifolia Mabrya Mabrya acerifolia \N \N \N \N \N 43727 I.brasiliensis Imperata Imperata brasiliensis \N \N \N \N \N 43728 C.sericeus Conocarpus Conocarpus sericeus \N \N \N \N \N 43729 C.arenicola Corchorus Corchorus arenicola \N \N \N \N \N 43730 T.longiflora Tocoyena Tocoyena longiflora \N \N \N \N \N 43731 \N varietas Pereskia grandifolia var. grandifolia \N \N \N \N \N 43732 P.viride Pachyphytum Pachyphytum viride \N \N \N \N \N 43733 S.gardneri Solanum Solanum gardneri \N \N \N \N \N 43734 B.neoalaskana Betula Betula neoalaskana resin birch \N \N \N \N 43735 C.stuhlmannii Crinum Crinum stuhlmannii \N \N \N \N \N 43736 G.tomentosa Galactites Galactites tomentosa \N \N \N \N \N 43737 J.regia Juglans Juglans hindsii x Juglans regia \N \N \N \N \N 43738 P.celastroides Pristimera Pristimera celastroides \N \N \N \N \N 43739 M.torta Myrcia Myrcia torta \N \N \N \N \N 43740 D.arenaria Diuris Diuris arenaria \N \N \N \N \N 43741 \N genus Actinostemma \N \N \N \N \N 43742 E.squamulata Echidnopsis Echidnopsis squamulata \N \N \N \N \N 43743 A.costatum Acrotrema Acrotrema costatum \N \N \N \N \N 43744 C.2093 Cuatrecasasiodendron Cuatrecasasiodendron sp. Rova et al. 2093 \N \N \N \N \N 43745 W.serrata Weinmannia Weinmannia serrata \N \N \N \N \N 43746 C.subcordatifolia Chassalia Chassalia subcordatifolia \N \N \N \N \N 43747 C.lundellii Croton Croton lundellii \N \N \N \N \N 43748 G.prostrata Glandora Glandora prostrata \N \N \N \N \N 43749 C.barbinervis Clethra Clethra barbinervis \N \N \N \N \N 43750 P.platycarpa Polygala Polygala platycarpa \N \N \N \N \N 43751 P.virginiana Physalis Physalis virginiana \N \N \N \N \N 43752 G.s.n. Gyrinops Gyrinops sp. Zich s.n. \N \N \N \N \N 43753 I.delavayi Iris Iris delavayi \N \N \N \N \N 43754 \N varietas Chaerophyllum colensoi var. delicatulum \N \N \N \N \N 43755 P.minutissima Primula Primula minutissima \N \N \N \N \N 43756 \N genus Neobrittonia \N \N \N \N \N 43757 A.cymosa Acrisione Acrisione cymosa \N \N \N \N \N 43758 P.turkestanica Parrya Parrya turkestanica \N \N \N \N \N 43759 A.africana Ansellia Ansellia africana \N \N \N \N \N 43760 Z.prismatocarpum Zygophyllum Zygophyllum prismatocarpum \N \N \N \N \N 43761 O.tigroides Oncidium Oncidium tigroides \N \N \N \N \N 43762 T.annuum Trigonospermum Trigonospermum annuum \N \N \N \N \N 43763 V.myriocephala Verbesina Verbesina myriocephala \N \N \N \N \N 43764 C.bidentata Chloraea Chloraea bidentata \N \N \N \N \N 43765 A.intermedia Amphithalea Amphithalea intermedia \N \N \N \N \N 43766 O.filamentosum Ocimum Ocimum filamentosum \N \N \N \N \N 43767 \N subspecies Anthriscus sylvestris subsp. sylvestris \N \N \N \N \N 43768 A.primulifolium Arcyosperma Arcyosperma primulifolium \N \N \N \N \N 43769 E.ruthenicum Erodium Erodium ruthenicum \N \N \N \N \N 43770 \N genus Hindsia \N \N \N \N \N 43771 P.borneense Phymatarum Phymatarum borneense \N \N \N \N \N 43772 P.brevipes Pradosia Pradosia brevipes \N \N \N \N \N 43773 A.3671 Asclepias Asclepias aff. glaucescens Fishbein 3671 \N \N \N \N \N 43774 M.chinghaiensis Mandragora Mandragora chinghaiensis \N \N \N \N \N 43775 \N genus Sindoropsis \N \N \N \N \N 43776 T.10280 Tetrastigma Tetrastigma cf. tuberculatum Wen 10280 \N \N \N \N \N 43777 L.saxatile Leucospermum Leucospermum saxatile \N \N \N \N \N 43778 M.paleata Maxillaria Maxillaria paleata \N \N \N \N \N 43779 E.woroschilowii Elymus Elymus woroschilowii \N \N \N \N \N 43780 S.meiantha Satyria Satyria meiantha \N \N \N \N \N 43781 H.pomanensis Harrisia Harrisia pomanensis \N \N \N \N \N 43782 M.letestui Maltebrunia Maltebrunia letestui \N \N \N \N \N 47863 \N genus Platychorda \N \N \N \N \N 43783 O.hayatana Ophiorrhiza Ophiorrhiza hayatana \N \N \N \N \N 43784 \N subclass rosids \N \N \N \N \N 43785 S.involucrata Shuteria Shuteria involucrata \N \N \N \N \N 43786 F.tenella Forstera Forstera tenella \N \N \N \N \N 43787 C.binghamii Crinum Crinum binghamii \N \N \N \N \N 43788 L.dregeanus Lampranthus Lampranthus dregeanus \N \N \N \N \N 43789 P.atrospicum Piper Piper atrospicum \N \N \N \N \N 43790 H.carolina Halesia Halesia carolina Carolina silverbell \N \N \N \N 43791 R.pluribracteatus Rubus Rubus pluribracteatus \N \N \N \N \N 43792 D.empetrifolium Disterigma Disterigma empetrifolium \N \N \N \N \N 43793 F.kelifi Ferula Ferula kelifi \N \N \N \N \N 43794 T.aureus Tragopogon Tragopogon aureus \N \N \N \N \N 43795 P.saportae Pistacia Pistacia x saportae \N \N \N \N \N 43796 C.ghiesbreghtianus Calochortus Calochortus ghiesbreghtianus \N \N \N \N \N 43797 \N genus Buckollia \N \N \N \N \N 43798 S.crassifolia Salacia Salacia crassifolia \N \N \N \N \N 43799 R.subintegrifolia Rinorea Rinorea subintegrifolia \N \N \N \N \N 43800 P.cylindraceus Plectranthus Plectranthus cylindraceus \N \N \N \N \N 43801 N.nemorosa Nothochelone Nothochelone nemorosa \N \N \N \N \N 43802 G.frondosa Gaylussacia Gaylussacia frondosa blue-tangle,dangleberry \N \N \N \N 43803 G.pole-evansii Gladiolus Gladiolus pole-evansii \N \N \N \N \N 43804 D.cashmerianum Delphinium Delphinium cashmerianum \N \N \N \N \N 43805 E.dasyacanthus Echinocereus Echinocereus dasyacanthus \N \N \N \N \N 43806 L.anatolicus Lupinus Lupinus anatolicus \N \N \N \N \N 43807 C.erosa Cissus Cissus erosa \N \N \N \N \N 43808 M.voburnensis Mammillaria Mammillaria voburnensis \N \N \N \N \N 43809 U.siamensis Urobotrya Urobotrya siamensis \N \N \N \N \N 43810 P.africana Prosopis Prosopis africana \N \N \N \N \N 43811 F.thouarsianum Filicium Filicium thouarsianum \N \N \N \N \N 43812 H.579 Harpochloa Harpochloa sp. Hodkinson 579 \N \N \N \N \N 43813 M.tenuifolia Monnina Monnina tenuifolia \N \N \N \N \N 43814 B.tetragona Begonia Begonia tetragona \N \N \N \N \N 43815 P.contermina Planchonella Planchonella contermina \N \N \N \N \N 43816 A.obtusifolia Anisophyllea Anisophyllea obtusifolia \N \N \N \N \N 43817 G.hypotrichium Galium Galium hypotrichium \N \N \N \N \N 43818 R.rumelicus Ranunculus Ranunculus rumelicus \N \N \N \N \N 43819 S.stolonifera Sarcostemma Sarcostemma stolonifera \N \N \N \N \N 43820 M.pubescens Microrphium Microrphium pubescens \N \N \N \N \N 43821 C.frutex Caragana Caragana frutex \N \N \N \N \N 43822 S.arabica Stipa Stipa arabica \N \N \N \N \N 43823 I.leprieurii Indigofera Indigofera leprieurii \N \N \N \N \N 43824 G.rivale Galium Galium rivale \N \N \N \N \N 43825 A.eriochlamys Allocasuarina Allocasuarina eriochlamys \N \N \N \N \N 43826 A.atriplicifolium Arnoglossum Arnoglossum atriplicifolium \N \N \N \N \N 43827 A.cannabinum Apocynum Apocynum cannabinum \N \N \N \N \N 43828 S.herbacea Salicornia Salicornia herbacea \N \N \N \N \N 43829 G.rauschii Gymnocalycium Gymnocalycium rauschii \N \N \N \N \N 43830 E.sacandros Elymus Elymus sacandros \N \N \N \N \N 43831 \N varietas Anulocaulis leiosolenus var. leiosolenus \N \N \N \N \N 43832 T.aggregatum Thesium Thesium aggregatum \N \N \N \N \N 43833 D.reticulata Disa Disa reticulata \N \N \N \N \N 43834 P.oceanica Posidonia Posidonia oceanica \N \N \N \N \N 43835 M.austroyunnanensis Maytenus Maytenus austroyunnanensis \N \N \N \N \N 43836 B.arundanum Biarum Biarum arundanum \N \N \N \N \N 43837 L.octandra Luxemburgia Luxemburgia octandra \N \N \N \N \N 43838 M.styphelioides Melaleuca Melaleuca styphelioides \N \N \N \N \N 43839 \N varietas Goodyera foliosa var. laevis \N \N \N \N \N 43840 B.MAK-2009 Boechera Boechera retrofracta hybrid sp. MAK-2009 \N \N \N \N \N 43841 G.triflora Gentiana Gentiana triflora \N \N \N \N \N 43842 C.alpina Clematis Clematis alpina \N \N \N \N \N 43843 Q.lobata Quercus Quercus lobata valley oak \N \N \N \N 43844 D.4884 Dinizia Dinizia sp. Folli 4884 \N \N \N \N \N 43845 J.eriostachya Jarava Jarava eriostachya \N \N \N \N \N 43846 R.laetevirens Randia Randia laetevirens \N \N \N \N \N 43847 A.spruceanum Aspidosperma Aspidosperma spruceanum \N \N \N \N \N 43848 A.prostratum Allium Allium prostratum \N \N \N \N \N 43849 \N genus Otospermum \N \N \N \N \N 43850 S.virginica Silene Silene virginica \N \N \N \N \N 43851 S.insularis Silene Silene insularis \N \N \N \N \N 43852 S.mortonii Solanum Solanum mortonii \N \N \N \N \N 43853 A.shevockii Allium Allium shevockii \N \N \N \N \N 43854 D.fawcettii Dendrophylax Dendrophylax fawcettii \N \N \N \N \N 43855 \N genus Sechiopsis \N \N \N \N \N 43856 O.paniculata Olearia Olearia paniculata \N \N \N \N \N 43857 C.nevadensis Cuscuta Cuscuta nevadensis \N \N \N \N \N 43858 C.pseudoconcolor Ceratolobus Ceratolobus pseudoconcolor \N \N \N \N \N 43859 S.muriculata Sorocea Sorocea muriculata \N \N \N \N \N 43860 L.tenuifolium Linum Linum tenuifolium \N \N \N \N \N 43861 S.19663 Scleranthus Scleranthus aff. fasciculatus WELTU 19663 \N \N \N \N \N 43862 C.sphacelatus Cenchrus Cenchrus sphacelatus \N \N \N \N \N 43863 S.yunnanensis Syringa Syringa yunnanensis \N \N \N \N \N 43864 M.costenya Mimosa Mimosa costenya \N \N \N \N \N 43865 T.tkx93 unclassified Taraxacum Taraxacum sp. tkx93 \N \N \N \N \N 43866 H.diamantinensis Hoffmannseggella Hoffmannseggella diamantinensis \N \N \N \N \N 43867 S.486 Symplocos Symplocos sp. 486 \N \N \N \N \N 43868 G.270KM Genoplesium Genoplesium sp. 270KM \N \N \N \N \N 43869 \N genus Amphistemon \N \N \N \N \N 43870 J.mandshurica Juglans Juglans mandshurica \N \N \N \N \N 43871 C.pilosa Curculigo Curculigo pilosa \N \N \N \N \N 43872 T.ramosissima Triraphis Triraphis ramosissima \N \N \N \N \N 43873 H.stevenii Heracleum Heracleum stevenii \N \N \N \N \N 43874 K.5051 Kunzea Kunzea sp. M Egan 5051 \N \N \N \N \N 43875 P.sylvestris Pimelea Pimelea sylvestris \N \N \N \N \N 43876 S.ziamaeana Stelechantha Stelechantha ziamaeana \N \N \N \N \N 43877 C.hongkongensis Camellia Camellia hongkongensis \N \N \N \N \N 43878 U.geminiscapa Utricularia Utricularia geminiscapa hiddenfruit bladderwort \N \N \N \N 43879 A.multifida Anemone Anemone multifida \N \N \N \N \N 43880 C.chenopodioides Chenopodium Chenopodium chenopodioides \N \N \N \N \N 43881 S.qingyuanensis Sasa Sasa qingyuanensis \N \N \N \N \N 43882 O.amentacea Opilia Opilia amentacea \N \N \N \N \N 43883 P.pseudaurea Packera Packera pseudaurea \N \N \N \N \N 43884 U.delicatula Utricularia Utricularia delicatula \N \N \N \N \N 43885 S.alopecurus Sorocephalus Sorocephalus alopecurus \N \N \N \N \N 43886 E.18336 Elaeocarpus Elaeocarpus sp. Brass 18336 \N \N \N \N \N 43887 \N genus Sceletium \N \N \N \N \N 43888 T.daltonii Trymalium Trymalium daltonii \N \N \N \N \N 43889 D.stenoaurita Dendrocalamopsis Dendrocalamopsis stenoaurita \N \N \N \N \N 43890 \N subspecies Rhodiola integrifolia subsp. leedyi \N \N \N \N \N 43891 A.parvifolia Aquilaria Aquilaria parvifolia \N \N \N \N \N 43892 L.ramosa Lysimachia Lysimachia ramosa \N \N \N \N \N 43893 \N genus Nelia \N \N \N \N \N 43894 C.crispa Commersonia Commersonia crispa \N \N \N \N \N 43895 H.coronopifolia Heliophila Heliophila coronopifolia showy sunflax,sporries \N \N \N \N 43896 E.dichroma Encyclia Encyclia dichroma \N \N \N \N \N 43897 \N varietas Achillea millefolium var. borealis \N \N \N \N \N 43898 I.narcissodora Ixora Ixora narcissodora \N \N \N \N \N 43899 \N genus Diapensia \N \N \N \N \N 43900 A.tenorioi Ateleia Ateleia tenorioi \N \N \N \N \N 43901 S.havanensis Smilax Smilax havanensis \N \N \N \N \N 43902 P.pubescens Psychotria Psychotria pubescens \N \N \N \N \N 43903 P.lindleyanum Phragmipedium Phragmipedium lindleyanum \N \N \N \N \N 43904 A.'lanum' Acer Acer 'lanum' \N \N \N \N \N 43905 D.americana Discaria Discaria americana \N \N \N \N \N 43906 T.verticillata Trigonobalanus Trigonobalanus verticillata \N \N \N \N \N 43907 E.aquilina Eucalyptus Eucalyptus aquilina \N \N \N \N \N 43908 \N genus Feretia \N \N \N \N \N 43909 \N genus Calycadenia \N \N \N \N \N 43910 H.falcicornis Habenaria Habenaria falcicornis \N \N \N \N \N 43911 C.aristeguietae Cuscuta Cuscuta aristeguietae \N \N \N \N \N 43912 P.ambigua Polygala Polygala ambigua \N \N \N \N \N 43913 C.capense Centaurium Centaurium capense \N \N \N \N \N 43914 A.1886 Achyrospermum Achyrospermum sp. Lewalle 1886 \N \N \N \N \N 43915 \N genus Jamesia \N \N \N \N \N 43916 M.rugosa Miconia Miconia rugosa \N \N \N \N \N 43917 C.lophocarpa Caloncoba Caloncoba lophocarpa \N \N \N \N \N 43918 R.globulosum Rheum Rheum globulosum \N \N \N \N \N 43919 P.tribuloides Pleurothallis Pleurothallis tribuloides \N \N \N \N \N 43920 H.lanuginosa Hinterhubera Hinterhubera lanuginosa \N \N \N \N \N 43921 N.campestris Nelsonia Nelsonia campestris \N \N \N \N \N 43922 S.minutifoliolum Solanum Solanum minutifoliolum \N \N \N \N \N 43923 A.berteroanus Astragalus Astragalus berteroanus \N \N \N \N \N 43924 S.macrantha Samyda Samyda macrantha \N \N \N \N \N 43925 C.arvense Cirsium Cirsium arvense Canada thistle \N \N \N \N 43926 M.utriculatus Macrotorus Macrotorus utriculatus \N \N \N \N \N 43927 C.densiflora Castilleja Castilleja densiflora \N \N \N \N \N 43928 \N varietas Chaetanthera chilensis var. tenuifolia \N \N \N \N \N 43929 R.reflexus Rubus Rubus reflexus \N \N \N \N \N 43930 \N genus Calibrachoa \N \N \N \N \N 43931 V.surinamensis Virola Virola surinamensis \N \N \N \N \N 43932 \N varietas Imperata cylindrica var. major \N \N \N \N \N 43933 H.pumilus Helianthus Helianthus pumilus \N \N \N \N \N 43934 \N genus Dicrocaulon \N \N \N \N \N 43935 \N varietas Prunus serrulata var. pubescens \N \N \N \N \N 43936 \N genus Asarum \N \N \N \N \N 43937 T.eriosperma Trigonia Trigonia eriosperma \N \N \N \N \N 43938 R.obtusum Rhododendron Rhododendron obtusum \N \N \N \N \N 43939 R.hajastana Rhaponticoides Rhaponticoides hajastana \N \N \N \N \N 43940 \N varietas Ficus deltoidea var. deltoidea \N \N \N \N \N 43941 A.pearcei Arrabidaea Arrabidaea pearcei \N \N \N \N \N 43942 S.aralocaspica Suaeda Suaeda aralocaspica \N \N \N \N \N 43943 \N varietas Collinsia sparsiflora var. sparsiflora \N \N \N \N \N 43944 S.chirayita Swertia Swertia chirayita \N \N \N \N \N 43945 P.laurentiana Primula Primula laurentiana \N \N \N \N \N 43946 E.sibthorpii Ebenus Ebenus sibthorpii \N \N \N \N \N 43947 S.armena Silene Silene armena \N \N \N \N \N 43948 S.pulvinata Saussurea Saussurea pulvinata \N \N \N \N \N 43949 D.integrifolia Draba Draba integrifolia \N \N \N \N \N 43950 D.sikkimensis Draba Draba sikkimensis \N \N \N \N \N 43951 \N genus Glechoma \N \N \N \N \N 43952 \N varietas Ampelopsis glandulosa var. glandulosa \N \N \N \N \N 43953 T.aristata Teloxys Teloxys aristata \N \N \N \N \N 43954 H.longicornutum Hedychium Hedychium longicornutum \N \N \N \N \N 43955 \N varietas Physalis hederifolia var. puberula \N \N \N \N \N 43956 R.laeve Rytidosperma Rytidosperma laeve \N \N \N \N \N 43957 D.annulatum Dichanthium Dichanthium annulatum \N \N \N \N \N 43958 L.phlebophyllus Lonchocarpus Lonchocarpus phlebophyllus palo de oro \N \N \N \N 43959 P.milingensis Phlomoides Phlomoides milingensis \N \N \N \N \N 43960 R.biflorus Rubus Rubus biflorus \N \N \N \N \N 43961 R.kinabaluense Reinwardtiodendron Reinwardtiodendron kinabaluense \N \N \N \N \N 43962 T.tomentosa Tilia Tilia tomentosa silver lime,silver linden \N \N \N \N 43963 T.fuscata Tephroseris Tephroseris fuscata \N \N \N \N \N 43964 B.scandens Bauhinia Bauhinia scandens \N \N \N \N \N 43965 A.baccifera Ammannia Ammannia baccifera \N \N \N \N \N 43966 H.petelotii Habenaria Habenaria petelotii \N \N \N \N \N 43967 A.laricis Arceuthobium Arceuthobium laricis \N \N \N \N \N 43968 P.ciliata Pilea Pilea ciliata \N \N \N \N \N 43969 \N genus Pygmaeothamnus \N \N \N \N \N 43970 S.bahamense Solanum Solanum bahamense canker-berry \N \N \N \N 43971 S.delavayi Stephania Stephania delavayi \N \N \N \N \N 43972 L.minor Lagophylla Lagophylla minor \N \N \N \N \N 43973 B.brownii Banksia Banksia brownii \N \N \N \N \N 43974 D.caudiculata Dubouzetia Dubouzetia caudiculata \N \N \N \N \N 43975 P.molliiforme Polygonum Polygonum molliiforme \N \N \N \N \N 43976 \N varietas Luzula banksiana var. migrata \N \N \N \N \N 43977 \N varietas Ilex yunnanensis var. gentilis \N \N \N \N \N 43978 D.vagans Dasyphyllum Dasyphyllum vagans \N \N \N \N \N 43979 T.cordifolia Tinospora Tinospora cordifolia \N \N \N \N \N 43980 A.subfastigiata Arctopoa Arctopoa subfastigiata \N \N \N \N \N 43981 A.microphylla Acaena Acaena microphylla \N \N \N \N \N 43982 X.ZXZ-2007 x Triticosecale x Triticosecale sp. ZXZ-2007 \N \N \N \N \N 43983 O.asperulum Osteospermum Osteospermum asperulum \N \N \N \N \N 43984 C.5663 Cayaponia Cayaponia sp. Ceron 5663 \N \N \N \N \N 43985 P.vulcanica Pilea Pilea vulcanica \N \N \N \N \N 43986 C.tripteris Coreopsis Coreopsis tripteris \N \N \N \N \N 43987 N.C2 Neonauclea Neonauclea sp. C2 \N \N \N \N \N 43988 G.trilobum Gossypium Gossypium trilobum \N \N \N \N \N 43989 S.angustifolia Salvadora Salvadora angustifolia \N \N \N \N \N 43990 \N subspecies Erica kingaensis subsp. rugegensis \N \N \N \N \N 43991 L.polyantha Lindera Lindera polyantha \N \N \N \N \N 43992 \N genus Heptacodium \N \N \N \N \N 43993 C.gynocrates Carex Carex gynocrates northern bog sedge \N \N \N \N 43994 S.bakeri Spartina Spartina bakeri \N \N \N \N \N 43995 \N genus Lebronnecia \N \N \N \N \N 43996 M.odoratissima Magnolia Magnolia odoratissima \N \N \N \N \N 43997 B.scutifolia Begonia Begonia scutifolia \N \N \N \N \N 43998 H.costata Hedeoma Hedeoma costata \N \N \N \N \N 43999 P.microphyllophora Peperomia Peperomia microphyllophora \N \N \N \N \N 44000 V.hookeri Hebe Veronica hookeri \N \N \N \N \N 44001 J.macrostipula Janotia Janotia macrostipula \N \N \N \N \N 44002 P.xanthocephalus Psephellus Psephellus xanthocephalus \N \N \N \N \N 44003 C.involucrata Capitularina Capitularina involucrata \N \N \N \N \N 44004 \N subspecies Cenchrus polystachios subsp. atrichus \N \N \N \N \N 44005 Z.odorifera Zieria Zieria odorifera \N \N \N \N \N 44006 P.cyanescens Philenoptera Philenoptera cyanescens Yoruba indigo \N \N \N \N 44007 S.lutea Schlumbergera Schlumbergera lutea \N \N \N \N \N 44008 D.1528 Disterigma Disterigma sp. Pedraza 1528 \N \N \N \N \N 44009 D.surculosa Draba Draba surculosa \N \N \N \N \N 44010 M.dictyocarpa Monnina Monnina dictyocarpa \N \N \N \N \N 44011 D.HLB-2010 Distichlis Distichlis sp. HLB-2010 \N \N \N \N \N 44012 O.lanceolata Osyris Osyris lanceolata \N \N \N \N \N 44013 I.spectabilis Inga Inga spectabilis \N \N \N \N \N 44014 A.asplundii Amaranthus Amaranthus asplundii \N \N \N \N \N 44015 P.bengalensis Psilanthus Psilanthus bengalensis \N \N \N \N \N 44016 T.cernuum Trillium Trillium cernuum nodding trillium \N \N \N \N 44017 E.garberi Euphorbia Euphorbia garberi \N \N \N \N \N 44018 C.epiphytica Clidemia Clidemia epiphytica \N \N \N \N \N 44019 \N family Nitrariaceae \N \N \N \N \N 44020 M.capitata Meryta Meryta capitata \N \N \N \N \N 44021 S.kingii Swertia Swertia kingii \N \N \N \N \N 44022 M.natalensis Moraea Moraea natalensis \N \N \N \N \N 44023 S.lumholtzianum Solanum Solanum lumholtzianum \N \N \N \N \N 44024 O.dregeana Oligomeris Oligomeris dregeana \N \N \N \N \N 44025 V.gracilis Vallisneria Vallisneria gracilis \N \N \N \N \N 44026 S.arvensis Stachys Stachys arvensis \N \N \N \N \N 44027 \N genus Angostura \N \N \N \N \N 44028 \N genus Maclurochloa \N \N \N \N \N 44029 \N genus Brazoria \N \N \N \N \N 44030 S.sorbifolia Sorbaria Sorbaria sorbifolia \N \N \N \N \N 44031 D.viridiflora Dyssochroma Dyssochroma viridiflora \N \N \N \N \N 44032 R.lateriflorus Ranunculus Ranunculus lateriflorus \N \N \N \N \N 44033 \N no rank Saccharum hybrid cultivar F134 \N \N \N \N \N 44034 A.turczaninovii Aquilegia Aquilegia turczaninovii \N \N \N \N \N 44035 G.australiana Grahamia Grahamia australiana \N \N \N \N \N 44036 V.takahashii Viola Viola chaerophylloides x Viola x takahashii \N \N \N \N \N 44037 S.ukranensis Stipa Stipa ukranensis \N \N \N \N \N 44038 S.liukiuensis Satakentia Satakentia liukiuensis \N \N \N \N \N 44039 A.ternata Allosyncarpia Allosyncarpia ternata \N \N \N \N \N 44040 A.thessala Anchusa Anchusa thessala \N \N \N \N \N 44041 M.hainanensis Morinda Morinda hainanensis \N \N \N \N \N 44042 O.asteriscoides Osmitopsis Osmitopsis asteriscoides \N \N \N \N \N 44043 P.naufelum Pteropyrum Pteropyrum naufelum \N \N \N \N \N 44044 C.insularis Cristaria Cristaria insularis \N \N \N \N \N 44045 L.peruviana Luzula Luzula peruviana \N \N \N \N \N 44046 H.curtissii Hypoxis Hypoxis curtissii \N \N \N \N \N 44047 R.beyrichiana Ruellia Ruellia beyrichiana \N \N \N \N \N 44048 M.luteoalba Moraea Moraea luteoalba \N \N \N \N \N 44049 C.flaviflora Curcuma Curcuma flaviflora \N \N \N \N \N 44050 \N genus Callipeltis \N \N \N \N \N 44051 P.sabulosum Polygonum Polygonum sabulosum \N \N \N \N \N 44052 \N genus Hierobotana \N \N \N \N \N 44053 S.borealis Stellaria Stellaria borealis \N \N \N \N \N 44054 I.ensata Iris Iris ensata \N \N \N \N \N 44055 T.elongatum Triticum x Lophopyrum Triticum aestivum x Lophopyrum elongatum \N \N \N \N \N 44056 P.megaseifolia Primula Primula megaseifolia \N \N \N \N \N 44057 \N varietas Bouteloua uniflora var. uniflora \N \N \N \N \N 44058 A.cruciatum Androcymbium Androcymbium cruciatum \N \N \N \N \N 44059 C.kweichowensis Castanopsis Castanopsis kweichowensis \N \N \N \N \N 44060 D.linifolium Duthiastrum Duthiastrum linifolium \N \N \N \N \N 44061 V.eugeniae Viola Viola eugeniae \N \N \N \N \N 44062 C.olympica Campanula Campanula olympica \N \N \N \N \N 44063 R.pedatus Rubus Rubus pedatus \N \N \N \N \N 44064 C.spruceanus Croton Croton spruceanus \N \N \N \N \N 44065 \N family Pandanaceae screw-pine family \N \N \N \N 44066 S.palmetto Sabal Sabal palmetto cabbage palm,cabbage palmetto \N \N \N \N 44067 \N varietas Myrceugenia ovata var. nannophylla \N \N \N \N \N 44068 S.JK-2009 Sebaea Sebaea sp. 3 JK-2009 \N \N \N \N \N 44069 G.zeylanicum Glochidion Glochidion zeylanicum \N \N \N \N \N 44070 D.episcopale Dimerostemma Dimerostemma episcopale \N \N \N \N \N 48056 \N genus Nitrophila \N \N \N \N \N 44071 B.pinheiroi Bauhinia Bauhinia pinheiroi \N \N \N \N \N 44072 M.deflexum Microstigma Microstigma deflexum \N \N \N \N \N 44073 P.esquirolei Paphiopedilum Paphiopedilum esquirolei \N \N \N \N \N 44074 L.latifolia Lasiospora Lasiospora latifolia \N \N \N \N \N 44075 A.convallarioides Avonsera Avonsera convallarioides \N \N \N \N \N 44076 \N genus Polytrias \N \N \N \N \N 44077 O.pulchella Oxalis Oxalis pulchella \N \N \N \N \N 44078 D.tortuosa Deverra Deverra tortuosa \N \N \N \N \N 44079 S.brachycephala Saussurea Saussurea brachycephala \N \N \N \N \N 44080 A.epacridis Astroloma Astroloma epacridis \N \N \N \N \N 44081 L.guineensis Leea Leea guineensis \N \N \N \N \N 44082 \N genus Neobertiera \N \N \N \N \N 44083 B.arborea Barnadesia Barnadesia arborea \N \N \N \N \N 44084 P.ferruginea Parsonsia Parsonsia ferruginea \N \N \N \N \N 44085 V.longiflora Valeriana Valeriana longiflora \N \N \N \N \N 44086 E.fulgens Euphorbia Euphorbia fulgens \N \N \N \N \N 44087 K.gobicola Kengyilia Kengyilia gobicola \N \N \N \N \N 44088 S.615 unclassified Sapotaceae Sapotaceae sp. Swenson 615 \N \N \N \N \N 44089 S.517' Streblosa Streblosa aff. myriocarpa 'Nielsen 517' \N \N \N \N \N 44090 M.macrocarpa Minuartia Minuartia macrocarpa \N \N \N \N \N 44091 T.prionochila Tolumnia Tolumnia prionochila \N \N \N \N \N 44092 \N subspecies Gymnocalycium pflanzii subsp. zegarrae \N \N \N \N \N 44093 K.cerinthifolia Klasea Klasea cerinthifolia \N \N \N \N \N 44094 R.crassifolium Rhododendron Rhododendron crassifolium \N \N \N \N \N 44095 B.ambigua Briza Briza ambigua \N \N \N \N \N 44096 L.formosus Leucocyclus Leucocyclus formosus \N \N \N \N \N 44097 X.sp. x Doritaenopsis x Doritaenopsis sp. \N \N \N \N \N 44098 E.asclepium Elaeoselinum Elaeoselinum asclepium \N \N \N \N \N 44099 L.weddellianum Lytocaryum Lytocaryum weddellianum \N \N \N \N \N 44100 \N no rank Vandeae incertae sedis \N \N \N \N \N 44101 \N varietas Michelia fulva var. calcicola \N \N \N \N \N 44102 \N varietas Lessingia glandulifera var. glandulifera \N \N \N \N \N 44103 T.humifusa Tylosema Tylosema humifusa \N \N \N \N \N 44104 C.candida Condylostylis Condylostylis candida \N \N \N \N \N 44105 C.decumbens Cousinia Cousinia shahvarica x Cousinia decumbens \N \N \N \N \N 44106 S.centrale Solanum Solanum centrale \N \N \N \N \N 44107 C.selaginoides Cassiope Cassiope selaginoides \N \N \N \N \N 44108 D.petelotii Dioscorea Dioscorea petelotii \N \N \N \N \N 44109 \N subspecies Acer buergerianum subsp. buergerianum \N \N \N \N \N 44110 T.frutescens Talinopsis Talinopsis frutescens \N \N \N \N \N 44111 D.barbarossa Drakonorchis Drakonorchis barbarossa dragon orchid \N \N \N \N 44112 O.virginiana Ostrya Ostrya virginiana American hop-hornbeam,ironwood \N \N \N \N 44113 J.gracilicaulis Juncus Juncus gracilicaulis \N \N \N \N \N 44114 \N varietas Centaurea resupinata var. humilis \N \N \N \N \N 44115 \N tribe Brachypodieae \N \N \N \N \N 44116 S.anticostense Symphyotrichum Symphyotrichum anticostense \N \N \N \N \N 44117 A.rosea Arabis Arabis rosea \N \N \N \N \N 44118 T.violifolium Typhonium Typhonium violifolium \N \N \N \N \N 44119 A.atlantica Armeria Armeria atlantica \N \N \N \N \N 44120 C.berlandieri Chenopodium Chenopodium berlandieri \N \N \N \N \N 44121 T.racemosa Trophis Trophis racemosa \N \N \N \N \N 44122 P.caerulescens Pternandra Pternandra caerulescens \N \N \N \N \N 44123 A.gracilis Agrocharis Agrocharis gracilis \N \N \N \N \N 44124 P.hispida Pseudoclausia Pseudoclausia hispida \N \N \N \N \N 44125 A.darwasicum Allium Allium darwasicum \N \N \N \N \N 44126 D.cubensis Dyschoriste Dyschoriste cubensis \N \N \N \N \N 44127 \N genus Mazus \N \N \N \N \N 44128 M.flavida Matthiola Matthiola flavida \N \N \N \N \N 44129 M.iodoides Mappianthus Mappianthus iodoides \N \N \N \N \N 44130 C.pensylvanica Cardamine Cardamine pensylvanica Pennsylvania bittercress \N \N \N \N 44131 N.pineliana Neoregelia Neoregelia pineliana \N \N \N \N \N 44132 E.convallarioides Eria Eria convallarioides \N \N \N \N \N 44133 B.minor Brachysema Brachysema minor \N \N \N \N \N 44134 C.ouachitana Carex Carex ouachitana \N \N \N \N \N 44135 A.corrugata Astroloba Astroloba corrugata \N \N \N \N \N 44136 T.lappaceum Trifolium Trifolium lappaceum \N \N \N \N \N 44137 \N subspecies Aspalathus retroflexa subsp. bicolor \N \N \N \N \N 44138 E.Espluis53 Elleanthus Elleanthus sp. Espluis53 \N \N \N \N \N 44139 D.LW-2011 Dischidia Dischidia sp. 1 LW-2011 \N \N \N \N \N 48512 P.ulei Parkia Parkia ulei \N \N \N \N \N 44140 V.humblotii Vernonia Vernonia humblotii \N \N \N \N \N 44141 I.caligenis Isolepis Isolepis caligenis \N \N \N \N \N 44142 \N genus Gypsophila \N \N \N \N \N 44143 P.humilis Pimelea Pimelea humilis \N \N \N \N \N 44144 E.obtusiflora Eragrostis Eragrostis obtusiflora \N \N \N \N \N 44145 E.rabenii Eleocharis Eleocharis rabenii \N \N \N \N \N 44146 P.longa Polygala Polygala longa \N \N \N \N \N 44147 P.saligna Planchonella Planchonella saligna \N \N \N \N \N 44148 \N genus Grammatotheca \N \N \N \N \N 44149 P.nana Phlox Phlox nana \N \N \N \N \N 44150 T.antennifer Trichoceros Trichoceros antennifer \N \N \N \N \N 44151 D.polita Duvalia Duvalia polita \N \N \N \N \N 44152 \N genus Pogogyne \N \N \N \N \N 44153 H.lyallii Hoheria Hoheria lyallii \N \N \N \N \N 44154 C.polourensis Caragana Caragana polourensis \N \N \N \N \N 44155 P.tropica Pomaderris Pomaderris tropica \N \N \N \N \N 44156 C.suberosus Callistemon Callistemon suberosus \N \N \N \N \N 44157 S.2223 Stromanthe Stromanthe aff. jacquinii Andersson 2223 \N \N \N \N \N 44158 A.praemorsa Acampe Acampe praemorsa \N \N \N \N \N 44159 P.fruticosa Polygala Polygala fruticosa \N \N \N \N \N 44160 P.longifolia Pimelea Pimelea longifolia \N \N \N \N \N 44161 C.1898 Cyrtandra Cyrtandra sp. Plunkett 1898 \N \N \N \N \N 44162 I.reticulata Iris Iris reticulata \N \N \N \N \N 44163 P.cristatus Potamogeton Potamogeton cristatus \N \N \N \N \N 44164 E.cassythoides Euphorbia Euphorbia cassythoides \N \N \N \N \N 44165 C.gaubae Centaurea Centaurea gaubae \N \N \N \N \N 44166 \N varietas Sorbus commixta var. rufoferruginea \N \N \N \N \N 44167 \N subspecies Byttneria catalpifolia subsp. catalpifolia \N \N \N \N \N 44168 \N genus Tanacetum \N \N \N \N \N 44169 P.hui Phoebe Phoebe hui \N \N \N \N \N 44170 C.robustum Caulophyllum Caulophyllum robustum \N \N \N \N \N 44171 A.ptenopum Archidendron Archidendron ptenopum \N \N \N \N \N 44172 Z.stenophyllum Zanthoxylum Zanthoxylum stenophyllum \N \N \N \N \N 44173 V.phalacrocarpa Viola Viola phalacrocarpa \N \N \N \N \N 44174 H.ramosissima Hemigenia Hemigenia ramosissima \N \N \N \N \N 44175 M.heteromorpha Macropodiella Macropodiella heteromorpha \N \N \N \N \N 44176 C.saguramica Cota Cota saguramica \N \N \N \N \N 44177 C.pomeliana Centaurea Centaurea pomeliana \N \N \N \N \N 44178 S.cinnabarina Salvia Salvia cinnabarina \N \N \N \N \N 44179 \N varietas Aconitum nagarum var. heterotrichum \N \N \N \N \N 44180 M.tenella Massonia Massonia tenella \N \N \N \N \N 44181 G.communis Gladiolus Gladiolus communis \N \N \N \N \N 44182 C.sphaerospermus Cyperus Cyperus sphaerospermus \N \N \N \N \N 44183 P.napaulensis Prunus Prunus napaulensis \N \N \N \N \N 44184 \N genus Boissiera \N \N \N \N \N 44185 V.ficifolia Vitis Vitis ficifolia \N \N \N \N \N 44186 A.ismelia Anthemis Anthemis ismelia \N \N \N \N \N 44187 P.floribundum Polygonum Polygonum floribundum \N \N \N \N \N 44188 \N varietas Banksia meisneri var. ascendens \N \N \N \N \N 44189 T.latifolia Tillandsia Tillandsia latifolia \N \N \N \N \N 44190 T.insignis Tabebuia Tabebuia insignis \N \N \N \N \N 44191 \N no rank core eudicotyledons incertae sedis \N \N \N \N \N 44192 V.catarractae Hebe Veronica catarractae \N \N \N \N \N 44193 P.howellii Poa Poa howellii \N \N \N \N \N 44194 H.longicaulis Halenia Halenia longicaulis \N \N \N \N \N 44195 O.macrolepis Orobanche Orobanche macrolepis \N \N \N \N \N 44196 D.muscosum Delphinium Delphinium muscosum \N \N \N \N \N 44197 \N tribe Lamieae \N \N \N \N \N 44198 P.parviflora Parmentiera Parmentiera parviflora \N \N \N \N \N 44199 E.podophyllus Erigeron Erigeron podophyllus \N \N \N \N \N 44200 T.phylicifolia Tenrhynea Tenrhynea phylicifolia \N \N \N \N \N 44201 P.paludosa Passerina Passerina paludosa \N \N \N \N \N 44202 C.rufescens Cupania Cupania rufescens \N \N \N \N \N 44203 E.nankotaizanensis Euphrasia Euphrasia nankotaizanensis \N \N \N \N \N 44204 P.parryi Phacelia Phacelia minor x Phacelia parryi \N \N \N \N \N 44205 C.medius Crocus Crocus medius \N \N \N \N \N 44206 P.leptostachya Phryma Phryma leptostachya \N \N \N \N \N 44207 \N genus Oligarrhena \N \N \N \N \N 44208 L.parviflorus Leptosiphon Leptosiphon parviflorus \N \N \N \N \N 44209 A.tsiangii Aesculus Aesculus tsiangii \N \N \N \N \N 44210 H.thrincioides Hypochaeris Hypochaeris thrincioides \N \N \N \N \N 44211 N.galapagensis Nolana Nolana galapagensis \N \N \N \N \N 44212 C.poeppigii Campylocentrum Campylocentrum poeppigii \N \N \N \N \N 44213 A.macrocephala Asteropsis Asteropsis macrocephala \N \N \N \N \N 44214 P.stellatus Phedimus Phedimus stellatus \N \N \N \N \N 44215 P.laticuspis Phyllonoma Phyllonoma laticuspis \N \N \N \N \N 44216 P.gigantea Peperomia Peperomia gigantea \N \N \N \N \N 44217 \N subspecies Claytonia rubra subsp. depressa \N \N \N \N \N 44218 F.andicola Ficus Ficus andicola \N \N \N \N \N 44219 B.elaeagnifolia Begonia Begonia elaeagnifolia \N \N \N \N \N 44220 R.penduliflora Rhodostemonodaphne Rhodostemonodaphne penduliflora \N \N \N \N \N 44221 B.pliniana Bactris Bactris pliniana \N \N \N \N \N 44222 S.yasi Santalum Santalum yasi yasi \N \N \N \N 44223 Z.4606 Zygophyllum Zygophyllum sp. van Zyl 4606 \N \N \N \N \N 44224 C.uliginosa Cardamine Cardamine uliginosa \N \N \N \N \N 44225 E.walteri Echinochloa Echinochloa walteri \N \N \N \N \N 44226 A.morisiana Achillea Achillea x morisiana \N \N \N \N \N 44227 \N varietas Halimolobos perplexus var. perplexus \N \N \N \N \N 44228 C.paraguariensis Collaea Collaea paraguariensis \N \N \N \N \N 44229 A.ankarana Amorphophallus Amorphophallus ankarana \N \N \N \N \N 44230 P.cyphochilum Prasophyllum Prasophyllum cyphochilum \N \N \N \N \N 44231 N.forgetiana Nicotiana Nicotiana forgetiana \N \N \N \N \N 44232 O.distantiflora Oestlundia Oestlundia distantiflora \N \N \N \N \N 44233 F.recisa Fibraurea Fibraurea recisa \N \N \N \N \N 44234 O.argentatus Oreopanax Oreopanax argentatus \N \N \N \N \N 44235 \N subspecies Pimelea suaveolens subsp. suaveolens \N \N \N \N \N 44236 G.multiflora Globba Globba multiflora \N \N \N \N \N 44237 C.monogyna Crataegus Crataegus monogyna \N \N \N \N \N 44238 B.oleifera Bicuiba Bicuiba oleifera \N \N \N \N \N 44239 A.hooveri Arctostaphylos Arctostaphylos hooveri \N \N \N \N \N 44240 S.nicolsonii Schismatoglottis Schismatoglottis nicolsonii \N \N \N \N \N 44241 L.pumilum Lilium Lilium pumilum \N \N \N \N \N 44242 C.spinosa Chomelia Chomelia spinosa \N \N \N \N \N 44243 \N genus Carlquistia \N \N \N \N \N 44244 \N subspecies Dicerandra frutescens subsp. modesta \N \N \N \N \N 44245 S.hayesiana Senna Senna hayesiana \N \N \N \N \N 44246 \N genus Sarcopygme \N \N \N \N \N 44247 \N subfamily Stifftioideae \N \N \N \N \N 44248 L.chinensis Lycoris Lycoris chinensis \N \N \N \N \N 44249 A.YL-2004 Agrostis Agrostis sp. YL-2004 \N \N \N \N \N 44250 L.coelhoi Lorostemon Lorostemon coelhoi \N \N \N \N \N 44251 F.durandoi Festuca Festuca durandoi \N \N \N \N \N 44252 A.bracteata Aspalathus Aspalathus bracteata \N \N \N \N \N 44253 S.emarcidum Satyrium Satyrium emarcidum \N \N \N \N \N 44254 \N no rank Stylosanthes guianensis species complex \N \N \N \N \N 44255 L.debilis Lampranthus Lampranthus debilis \N \N \N \N \N 44256 A.isabellana Alstroemeria Alstroemeria isabellana \N \N \N \N \N 44257 S.buxifolia Stevensia Stevensia buxifolia \N \N \N \N \N 44258 C.purpurascens Cymopterus Cymopterus purpurascens \N \N \N \N \N 44259 U.parthenopipes Utricularia Utricularia parthenopipes \N \N \N \N \N 44260 E.borealis Erigeron Erigeron borealis \N \N \N \N \N 44261 I.levingei Impatiens Impatiens levingei \N \N \N \N \N 44262 L.montanus Lamprocephalus Lamprocephalus montanus \N \N \N \N \N 49123 \N genus Melicoccus \N \N \N \N \N 44263 \N subspecies Leptospermum polygalifolium subsp. polygalifolium \N \N \N \N \N 44264 S.ternatanus Scirpus Scirpus ternatanus \N \N \N \N \N 44265 V.filicaulis Vigna Vigna filicaulis \N \N \N \N \N 44266 C.grandifolia Caraipa Caraipa grandifolia \N \N \N \N \N 44267 S.cana Sopubia Sopubia cana \N \N \N \N \N 44268 S.pauciflora Stephanomeria Stephanomeria pauciflora wire lettuce \N \N \N \N 44269 J.heldreichii Jasione Jasione heldreichii \N \N \N \N \N 44270 G.orbicularis Gentiana Gentiana orbicularis \N \N \N \N \N 44271 L.glabrata Lasthenia Lasthenia glabrata \N \N \N \N \N 44272 R.aphlebia Rauvolfia Rauvolfia aphlebia \N \N \N \N \N 44273 \N genus Spathodea \N \N \N \N \N 44274 D.impatiens Descurainia Descurainia impatiens \N \N \N \N \N 44275 H.ovalifolium Hypericum Hypericum ovalifolium \N \N \N \N \N 44276 D.cestroides Duckeodendron Duckeodendron cestroides \N \N \N \N \N 44277 \N varietas Tillandsia fendleri var. fendleri \N \N \N \N \N 44278 C.delicata Coryphantha Coryphantha delicata \N \N \N \N \N 44279 \N genus Wiborgia \N \N \N \N \N 44280 V.microcarpa Valerianella Valerianella microcarpa \N \N \N \N \N 44281 P.corymbosa Poranthera Poranthera corymbosa \N \N \N \N \N 44282 O.s.n. Oldenburgia Oldenburgia sp. Kaellersjoe s.n. \N \N \N \N \N 44283 C.glaucifolia Chamaedorea Chamaedorea glaucifolia \N \N \N \N \N 44284 A.arida Aspalathus Aspalathus arida \N \N \N \N \N 44285 B.ledermannii Burmannia Burmannia ledermannii \N \N \N \N \N 44286 C.repens Cyanotis Cyanotis repens \N \N \N \N \N 44287 \N genus Lepiderema \N \N \N \N \N 44288 D.hercoglossum Dendrobium Dendrobium hercoglossum \N \N \N \N \N 44289 \N genus Meeboldina \N \N \N \N \N 44290 P.iwatensis Pedicularis Pedicularis iwatensis \N \N \N \N \N 44291 H.sparsum Hieracium Hieracium sparsum \N \N \N \N \N 44292 S.vesicaria Sesbania Sesbania vesicaria bagpod,bladderpod \N \N \N \N 44293 P.annua Poa Poa annua \N \N \N \N \N 44294 M.bombycis Morus Morus bombycis \N \N \N \N \N 44295 G.dasyphylla Grubovia Grubovia dasyphylla \N \N \N \N \N 44296 S.cuneata Swertia Swertia cuneata \N \N \N \N \N 44297 \N genus Oncostema \N \N \N \N \N 44298 C.ashei Clinopodium Clinopodium ashei \N \N \N \N \N 44299 M.gayana Montiopsis Montiopsis gayana \N \N \N \N \N 44300 \N genus Bouea \N \N \N \N \N 44301 L.mucorifera Lavoisiera Lavoisiera mucorifera \N \N \N \N \N 44302 A.pertegasii Antirrhinum Antirrhinum pertegasii \N \N \N \N \N 44303 P.pulvinaris Potentilla Potentilla pulvinaris \N \N \N \N \N 44304 E.pergracilis Eragrostis Eragrostis pergracilis \N \N \N \N \N 44305 O.omegaifera Ophrys Ophrys omegaifera \N \N \N \N \N 44306 E.vermiculata Euphorbia Euphorbia vermiculata \N \N \N \N \N 44307 H.sanguineum Helichrysum Helichrysum sanguineum \N \N \N \N \N 44308 P.98/3521 Plectrophora Plectrophora sp. Gerlach 98/3521 \N \N \N \N \N 44309 \N genus Piptospatha \N \N \N \N \N 44310 L.peruvianum Lithospermum Lithospermum peruvianum \N \N \N \N \N 44311 S.7-64 Silene Silene sp. Liden 7-64 \N \N \N \N \N 44312 \N subspecies Wurmbea biglandulosa subsp. biglandulosa \N \N \N \N \N 44313 D.hendersoniana Dyakia Dyakia hendersoniana \N \N \N \N \N 44314 M.ononidifolia Muraltia Muraltia ononidifolia \N \N \N \N \N 44315 T.blaisdellii Trichosalpinx Trichosalpinx blaisdellii \N \N \N \N \N 44316 H.binata Hardwickia Hardwickia binata \N \N \N \N \N 44317 L.mollendoensis Lupinus Lupinus mollendoensis \N \N \N \N \N 44318 B.pulverulenta Barbacenia Barbacenia pulverulenta \N \N \N \N \N 44319 H.gariepina Heliophila Heliophila gariepina \N \N \N \N \N 44320 \N genus Moehringia \N \N \N \N \N 44321 C.1309' Chusquea Chusquea sp. 'LC et al. 1309' \N \N \N \N \N 44322 B.stipulata Bathysa Bathysa stipulata \N \N \N \N \N 44323 L.affghanum Lepidium Lepidium affghanum \N \N \N \N \N 44324 E.socorrensis Erigeron Erigeron socorrensis \N \N \N \N \N 44325 S.guianensis Stylosanthes guianensis species complex Stylosanthes guianensis stylo \N \N \N \N 44326 \N family Polemoniaceae phlox family \N \N \N \N 44327 C.gracilipes Croton Croton gracilipes \N \N \N \N \N 44328 \N genus Sphaerobambos \N \N \N \N \N 44329 P.malvacea Primula Primula malvacea \N \N \N \N \N 44330 S.SH-2010 Sambucus Sambucus sp. SH-2010 \N \N \N \N \N 44331 C.japonica Croomia Croomia japonica \N \N \N \N \N 44332 S.almon Shorea Shorea almon \N \N \N \N \N 44333 L.crassa Leavenworthia Leavenworthia crassa \N \N \N \N \N 44335 H.scaberrimum Hedyosmum Hedyosmum scaberrimum \N \N \N \N \N 44336 O.caerulea Oxalis Oxalis caerulea \N \N \N \N \N 44337 S.dasyphyllum Solanum Solanum dasyphyllum \N \N \N \N \N 44338 \N subspecies Elymus elymoides subsp. californicus \N \N \N \N \N 44339 C.vankovii Centaurea Centaurea vankovii \N \N \N \N \N 44340 T.campaniflora Turnera Turnera campaniflora \N \N \N \N \N 44341 \N genus Xyloselinum \N \N \N \N \N 44342 C.231 Cliffortia Cliffortia cf. semiteres Whitehouse 231 \N \N \N \N \N 44343 \N family Metteniusaceae \N \N \N \N \N 44344 A.minyura Acacia Acacia minyura \N \N \N \N \N 44345 I.microsepala Ipomoea Ipomoea microsepala \N \N \N \N \N 44346 P.mexicana Physalis Physalis mexicana \N \N \N \N \N 44347 S.insignis Simaba Simaba insignis \N \N \N \N \N 44348 E.hedgei Echinops Echinops hedgei \N \N \N \N \N 44349 C.pennellii Calceolaria Calceolaria pennellii \N \N \N \N \N 44350 S.33.061 Salicornia Salicornia aff. perennans Freitag 33.061 \N \N \N \N \N 44351 T.cordifolium Tripterospermum Tripterospermum cordifolium \N \N \N \N \N 44352 E.recoderi Erodium Erodium recoderi \N \N \N \N \N 44353 A.zanzibaricus Acridocarpus Acridocarpus zanzibaricus \N \N \N \N \N 44354 O.oppositifolia Ornithostaphylos Ornithostaphylos oppositifolia Baja California birdbush \N \N \N \N 44355 L.jamesii Leucas Leucas jamesii \N \N \N \N \N 44356 A.rydbergii Arnica Arnica rydbergii \N \N \N \N \N 44357 R.graminifolia Rudbeckia Rudbeckia graminifolia \N \N \N \N \N 44358 V.atroviridipetala Viridantha Viridantha atroviridipetala \N \N \N \N \N 44359 C.uliginosa Cleistes Cleistes uliginosa \N \N \N \N \N 44361 T.gossweileri Tricalysia Tricalysia gossweileri \N \N \N \N \N 44362 A.luzuloides Amphiasma Amphiasma luzuloides \N \N \N \N \N 44363 H.evidens Hypacanthium Hypacanthium evidens \N \N \N \N \N 44364 Z.elliottiana Zantedeschia Zantedeschia elliottiana \N \N \N \N \N 44365 Z.maritima Zinnia Zinnia maritima \N \N \N \N \N 44366 L.glazioviana Luxemburgia Luxemburgia glazioviana \N \N \N \N \N 44367 A.davidii Acer Acer davidii \N \N \N \N \N 44368 C.marmarosiensis Centaurea Centaurea marmarosiensis \N \N \N \N \N 44369 \N genus Mitrastemon \N \N \N \N \N 44370 S.brevipilosa Saintpaulia Saintpaulia brevipilosa \N \N \N \N \N 44371 \N genus Daucus \N \N \N \N \N 44372 G.divaricatum Galium Galium divaricatum \N \N \N \N \N 44373 C.deflexa Centaurea Centaurea deflexa \N \N \N \N \N 44374 H.chungii Hydrangea Hydrangea chungii \N \N \N \N \N 44375 H.lachenalii Hieracium Hieracium lachenalii \N \N \N \N \N 44376 S.humifusum Sedum Sedum humifusum \N \N \N \N \N 44377 \N subspecies Dichanthelium oligosanthes subsp. scribnerianum \N \N \N \N \N 44378 R.berteroi Robinsonia Robinsonia berteroi \N \N \N \N \N 44379 C.prostratus Convolvulus Convolvulus prostratus \N \N \N \N \N 44380 V.primulifolia Viola Viola primulifolia \N \N \N \N \N 44381 C.sylvaticus Croton Croton sylvaticus \N \N \N \N \N 44382 B.3960 Brachyscome Brachyscome aff. gracilis Short 3960 \N \N \N \N \N 44383 S.grande Scaphosepalum Scaphosepalum grande \N \N \N \N \N 44384 W.cuneifolia Warea Warea cuneifolia \N \N \N \N \N 44385 D.dulcis Durio Durio dulcis \N \N \N \N \N 44386 W.sousae Warneckea Warneckea sousae \N \N \N \N \N 44387 B.leandrianum Bulbophyllum Bulbophyllum leandrianum \N \N \N \N \N 44388 \N varietas Gentiana prostrata var. ludlowii \N \N \N \N \N 44389 \N forma Eleocharis wichurae f. petasata \N \N \N \N \N 44390 R.makaluensis Ranunculus Ranunculus makaluensis \N \N \N \N \N 44391 P.concinna Palaua Palaua concinna \N \N \N \N \N 44392 \N subspecies Sideritis gomeraea subsp. perezii \N \N \N \N \N 44393 C.incana Cunila Cunila incana \N \N \N \N \N 44394 H.lacunosa Hoya Hoya lacunosa \N \N \N \N \N 44395 \N genus Tetraclis \N \N \N \N \N 44396 H.stricta Haloragis Haloragis stricta \N \N \N \N \N 44397 K.centauroides Klasea Klasea centauroides \N \N \N \N \N 44398 \N varietas Andromeda polifolia var. latifolia bog rosemary \N \N \N \N 44399 I.costellata Ipomoea Ipomoea costellata \N \N \N \N \N 44400 M.spiciforma Micraira Micraira spiciforma \N \N \N \N \N 44401 T.brevipes Tersonia Tersonia brevipes \N \N \N \N \N 44402 S.thalia Stromanthe Stromanthe thalia \N \N \N \N \N 44403 P.pyrularium Panicum Panicum pyrularium \N \N \N \N \N 44404 A.neglecta Amelanchier Amelanchier neglecta \N \N \N \N \N 44405 F.hygrophila Fargesia Fargesia hygrophila \N \N \N \N \N 44406 C.deistelii Costus Costus deistelii \N \N \N \N \N 44407 \N tribe Petreeae \N \N \N \N \N 44408 B.oligantha Banksia Banksia oligantha \N \N \N \N \N 44409 \N genus Maniltoa \N \N \N \N \N 44410 V.guianensis Vismia Vismia guianensis \N \N \N \N \N 44411 P.gelida Potentilla Potentilla gelida \N \N \N \N \N 44412 P.goniocarpa Prangos Prangos goniocarpa \N \N \N \N \N 44413 H.texensis Hechtia Hechtia texensis \N \N \N \N \N 44414 C.pedunculata Chamaedorea Chamaedorea pedunculata \N \N \N \N \N 44415 T.arnottii Talinum Talinum arnottii \N \N \N \N \N 44416 J.weberbaueri Jaltomata Jaltomata weberbaueri \N \N \N \N \N 44417 C.leichtlinii Calochortus Calochortus leichtlinii smokey mariposa \N \N \N \N 44418 \N subspecies Artemisia borealis subsp. richardsoniana \N \N \N \N \N 44419 H.kremerianum Hammatolobium Hammatolobium kremerianum \N \N \N \N \N 44420 A.chinensis Astilbe Astilbe chinensis \N \N \N \N \N 44421 \N order Gunnerales \N \N \N \N \N 44422 A.baldensis Anemone Anemone baldensis \N \N \N \N \N 44423 A.erecta Aristolochia Aristolochia erecta \N \N \N \N \N 44424 \N genus Yucca yuccas \N \N \N \N 44425 B.subvelutinus Bromus Bromus subvelutinus hoary brome,short brome \N \N \N \N 44426 W.zamorana Warmingia Warmingia zamorana \N \N \N \N \N 44427 R.molle Rhododendron Rhododendron molle \N \N \N \N \N 44428 S.tenuis Stevia Stevia tenuis \N \N \N \N \N 44429 \N genus Dicranolepis \N \N \N \N \N 44430 R.pedunculata Remijia Remijia pedunculata \N \N \N \N \N 44431 C.sempervirens Cheirolophus Cheirolophus sempervirens \N \N \N \N \N 44432 H.hurkana Heliophila Heliophila hurkana \N \N \N \N \N 44433 H.gyantsensis Hippophae Hippophae gyantsensis \N \N \N \N \N 44434 L.genistifolia Linaria Linaria genistifolia \N \N \N \N \N 44435 G.obtusiramea Genista Genista obtusiramea \N \N \N \N \N 44436 C.parviflora Clermontia Clermontia parviflora \N \N \N \N \N 44437 C.palawanense Ceuthostoma Ceuthostoma palawanense \N \N \N \N \N 44438 R.nyingchiense Rhododendron Rhododendron nyingchiense \N \N \N \N \N 44439 \N genus Vateria \N \N \N \N \N 44440 D.7141' Dalbergia Dalbergia sp. 'Lavin 7141' \N \N \N \N \N 44441 P.mairei Paris Paris mairei \N \N \N \N \N 44442 \N subspecies Hieracium aurantiacum subsp. auropurpureum \N \N \N \N \N 44443 \N tribe Willughbeeae \N \N \N \N \N 44444 C.cochinchinense Cratoxylum Cratoxylum cochinchinense \N \N \N \N \N 44445 Y.exilis Yushania Yushania exilis \N \N \N \N \N 44446 Q.littorea Quisqualis Quisqualis littorea \N \N \N \N \N 44447 K.fosbergii Kadua Kadua fosbergii \N \N \N \N \N 44448 C.rhyacophila Coreopsis Coreopsis rhyacophila \N \N \N \N \N 44449 \N subspecies Disa aconitoides subsp. aconitoides \N \N \N \N \N 44450 L.atropurpurea Lysimachia Lysimachia atropurpurea \N \N \N \N \N 44451 \N genus Geniostoma \N \N \N \N \N 44452 G.brevipedicellata Gaertnera Gaertnera brevipedicellata \N \N \N \N \N 44453 A.rupicola Allocasuarina Allocasuarina rupicola \N \N \N \N \N 44454 E.wildpretii Echium Echium wildpretii \N \N \N \N \N 44455 H.pumila Harveya Harveya pumila \N \N \N \N \N 44456 E.repens Elymus Elymus repens \N \N \N \N \N 44457 I.spicata Ifloga Ifloga spicata \N \N \N \N \N 44458 C.DK-2009 Carapa Carapa sp. 26 DK-2009 \N \N \N \N \N 44459 E.handiense Echium Echium handiense \N \N \N \N \N 44460 P.rotundatus Phaseolus Phaseolus rotundatus \N \N \N \N \N 44461 A.'Iowa' Amaranthus Amaranthus sp. 'Iowa' \N \N \N \N \N 44462 S.corymbiflora Sessea Sessea corymbiflora \N \N \N \N \N 44463 \N genus Schistostephium \N \N \N \N \N 44464 N.lobbii Nama Nama lobbii \N \N \N \N \N 44465 \N genus Arrowsmithia \N \N \N \N \N 44466 \N no rank Saccharum hybrid cultivar Q117 \N \N \N \N \N 44467 T.aurea Trichostachys Trichostachys aurea \N \N \N \N \N 44468 Z.capillipes Zimmermannia Zimmermannia capillipes \N \N \N \N \N 44469 \N genus Oncotheca \N \N \N \N \N 44470 C.linearis Chilopsis Chilopsis linearis desert-willow \N \N \N \N 44471 \N genus Aspidogyne \N \N \N \N \N 44472 S.4038-BB38 Saldinia Saldinia sp. 1 Bremer et al. 4038-BB38 \N \N \N \N \N 44473 G.fremontii Gentiana Gentiana fremontii \N \N \N \N \N 44474 O.microtheca Oldenlandia Oldenlandia microtheca \N \N \N \N \N 44475 P.abyssinica Picris Picris abyssinica \N \N \N \N \N 44476 C.elongata Carex Carex elongata \N \N \N \N \N 44477 S.fabaria Silene Silene fabaria \N \N \N \N \N 44478 M.longistylum Mesembryanthemum Mesembryanthemum longistylum \N \N \N \N \N 44479 S.jimenezii Scaphyglottis Scaphyglottis jimenezii \N \N \N \N \N 44480 P.trilobata Ponthieva Ponthieva trilobata \N \N \N \N \N 44481 P.linearifolia Pleurothallis Pleurothallis linearifolia \N \N \N \N \N 44482 D.costae Dianthus Dianthus costae \N \N \N \N \N 44483 C.pulvinata Chaetanthera Chaetanthera pulvinata \N \N \N \N \N 44484 L.nana Leucophysalis Leucophysalis nana \N \N \N \N \N 44485 H.nicotianifolium Heliotropium Heliotropium nicotianifolium \N \N \N \N \N 44486 S.vestita Sessea Sessea vestita \N \N \N \N \N 44487 M.decipiens Mallotus Mallotus decipiens \N \N \N \N \N 44488 H.amplexicaulis Heliophila Heliophila amplexicaulis \N \N \N \N \N 44489 \N subspecies Sambucus racemosa subsp. pubens \N \N \N \N \N 44490 A.ciliata Arabis Arabis ciliata \N \N \N \N \N 44491 E.zamorensis Erycina Erycina zamorensis \N \N \N \N \N 44492 V.perinensis Viola Viola perinensis \N \N \N \N \N 44493 L.aegaeus Lotus Lotus aegaeus \N \N \N \N \N 44494 \N genus Bivinia \N \N \N \N \N 44495 S.krylovii Seseli Seseli krylovii \N \N \N \N \N 44496 P.procera Poeppigia Poeppigia procera \N \N \N \N \N 44497 E.exserta Emilia Emilia exserta \N \N \N \N \N 44498 B.oyacachensis Burmeistera Burmeistera oyacachensis \N \N \N \N \N 44499 \N genus Muraltia \N \N \N \N \N 44500 \N genus Maihueniopsis \N \N \N \N \N 44501 C.cervariifolia Cervaria Cervaria cervariifolia \N \N \N \N \N 44502 N.paracyrtopoda Neonauclea Neonauclea paracyrtopoda \N \N \N \N \N 44503 S.bhutanica Stipa Stipa bhutanica \N \N \N \N \N 44504 A.myosurus Ascochilopsis Ascochilopsis myosurus \N \N \N \N \N 44505 C.montis-eeka Carex Carex montis-eeka \N \N \N \N \N 44506 C.ballotifolia Calceolaria Calceolaria ballotifolia \N \N \N \N \N 44507 \N genus Hesperevax \N \N \N \N \N 44508 P.cynops Plantago Plantago cynops \N \N \N \N \N 44509 C.longibracteata Cephalanthera Cephalanthera longibracteata \N \N \N \N \N 44510 R.microphyllum Ribes Ribes microphyllum \N \N \N \N \N 44511 \N genus Iresine \N \N \N \N \N 44512 \N genus Salmea \N \N \N \N \N 44513 P.lacunosum Piper Piper lacunosum \N \N \N \N \N 44514 \N subspecies Impatiens confusa subsp. longicornu \N \N \N \N \N 44515 V.lucentina Vella Vella lucentina \N \N \N \N \N 44516 T.crucigerum Tanaecium Tanaecium crucigerum \N \N \N \N \N 44517 \N genus Stenandrium \N \N \N \N \N 44518 S.triandra Salix Salix triandra \N \N \N \N \N 44519 B.chiasmogyna Begonia Begonia chiasmogyna \N \N \N \N \N 44520 E.cuneata Euphrasia Euphrasia cuneata \N \N \N \N \N 44521 \N genus Macarthuria \N \N \N \N \N 44522 \N subspecies Protium heptaphyllum subsp. ulei \N \N \N \N \N 44523 M.praecox Medicago Medicago praecox \N \N \N \N \N 44524 L.417a Lampranthus Lampranthus sp. Klak 417a \N \N \N \N \N 44525 G.erinoides Gloxinia Gloxinia erinoides \N \N \N \N \N 44526 G.baccata Gaylussacia Gaylussacia baccata black huckleberry \N \N \N \N 44527 T.calochila Tolumnia Tolumnia calochila \N \N \N \N \N 44528 P.hybrida Petunia Petunia x hybrida garden petunia \N \N \N \N 44529 D.millefolia Descurainia Descurainia millefolia \N \N \N \N \N 44530 H.javanica Hymenorchis Hymenorchis javanica \N \N \N \N \N 44531 C.villosa Ctenanthe Ctenanthe villosa \N \N \N \N \N 44532 R.stricta Retanilla Retanilla stricta \N \N \N \N \N 44533 A.paradoxus Astragalus Astragalus paradoxus \N \N \N \N \N 44534 D.95111 Dipsacus Dipsacus sp. Qiu 95111 \N \N \N \N \N 44535 T.TL209-2 unclassified Taraxacum Taraxacum (sect. Naevosa) sp. TL209-2 \N \N \N \N \N 44536 P.niveum Paphiopedilum Paphiopedilum niveum \N \N \N \N \N 44537 \N genus Schefflerodendron \N \N \N \N \N 44538 S.macropodum Scaphium Scaphium macropodum kembang semangkok \N \N \N \N 44539 B.macropoda Burckella Burckella macropoda \N \N \N \N \N 44540 P.sphaerocephalus Paepalanthus Paepalanthus sphaerocephalus \N \N \N \N \N 44541 R.longisepalus Rubus Rubus longisepalus \N \N \N \N \N 44542 \N genus Heteromera \N \N \N \N \N 44543 \N genus Schisandra \N \N \N \N \N 44544 \N genus Fallugia \N \N \N \N \N 44545 \N varietas Pyrus ussuriensis var. aromatica Iwateyamanashi \N \N \N \N 44546 T.peltophorum Tropaeolum Tropaeolum peltophorum \N \N \N \N \N 44547 G.walujewii Gentiana Gentiana walujewii \N \N \N \N \N 44548 G.brandegeei Gordonia Gordonia brandegeei \N \N \N \N \N 44549 H.patagonica Hypochaeris Hypochaeris patagonica \N \N \N \N \N 44550 T.sp. Trichosanthes Trichosanthes sp. \N \N \N \N \N 44551 \N genus Elodea \N \N \N \N \N 44552 B.glareosa Boechera Boechera glareosa \N \N \N \N \N 44553 C.africanum Capnophyllum Capnophyllum africanum \N \N \N \N \N 44554 C.centaurea Coleocoma Coleocoma centaurea \N \N \N \N \N 44555 V.cofassus Vitex Vitex cofassus \N \N \N \N \N 44556 S.bourgeauii Sonchus Sonchus bourgeauii \N \N \N \N \N 44557 B.discolor Brachylaena Brachylaena discolor \N \N \N \N \N 49605 \N genus Scindapsus \N \N \N \N \N 44558 E.radulina Eurybia Eurybia radulina \N \N \N \N \N 44559 A.onobrychoides Anthyllis Anthyllis onobrychoides \N \N \N \N \N 44560 \N genus White-sloanea \N \N \N \N \N 44561 C.puniceus Clianthus Clianthus puniceus \N \N \N \N \N 44562 \N subtribe Centratherinae \N \N \N \N \N 44563 \N genus Gynochthodes \N \N \N \N \N 44564 \N subspecies Ranunculus peltatus subsp. peltatus \N \N \N \N \N 44565 R.columnaris Richtersveldia Richtersveldia columnaris \N \N \N \N \N 44566 C.crassifolia Calodecaryia Calodecaryia crassifolia \N \N \N \N \N 44567 \N genus Zotovia \N \N \N \N \N 44568 L.virgaurea Ligularia Ligularia virgaurea \N \N \N \N \N 44569 A.adsurgens Avenula Avenula adsurgens \N \N \N \N \N 44570 S.pinnatifidus Sonchus Sonchus pinnatifidus \N \N \N \N \N 44571 \N genus Phyteuma \N \N \N \N \N 44572 T.nilotica Tamarix Tamarix nilotica \N \N \N \N \N 44573 C.echinocarpa Cylindropuntia Cylindropuntia echinocarpa \N \N \N \N \N 44574 P.asiaticus Parasilaus Parasilaus asiaticus \N \N \N \N \N 44575 T.2220 Tricoryne Tricoryne sp. Chase 2220 \N \N \N \N \N 44576 A.macrantha Artemisia Artemisia macrantha \N \N \N \N \N 44577 B.edulis Bomarea Bomarea edulis \N \N \N \N \N 44578 C.repanda Chiritopsis Chiritopsis repanda \N \N \N \N \N 44579 U.metrosideros Uromyrtus Uromyrtus metrosideros \N \N \N \N \N 44580 P.magalismontanum Peucedanum Peucedanum magalismontanum \N \N \N \N \N 44581 M.platyphylla Minuartia Minuartia platyphylla \N \N \N \N \N 44582 S.salsula Sphaerophysa Sphaerophysa salsula Austrian peaweed,swainson-pea \N \N \N \N 44583 S.vescum Solanum Solanum vescum \N \N \N \N \N 44584 U.hamiltonii Uvaria Uvaria hamiltonii \N \N \N \N \N 44585 S.psychotrioides Straussia Straussia psychotrioides \N \N \N \N \N 44586 I.latifolia Impatiens Impatiens latifolia \N \N \N \N \N 44587 A.schweinfurthii Anthocleista Anthocleista schweinfurthii \N \N \N \N \N 44588 S.hispanicus Scolymus Scolymus hispanicus \N \N \N \N \N 44589 \N genus Aloysia \N \N \N \N \N 44590 I.cynanchifolia Ipomoea Ipomoea cynanchifolia \N \N \N \N \N 44591 \N genus Gluta \N \N \N \N \N 44592 P.594 Pyrostria Pyrostria sp. 4 Razafimandimbison & Ravelonarivo 594 \N \N \N \N \N 44593 E.hispidula Erica Erica hispidula \N \N \N \N \N 44594 \N genus Talamancalia \N \N \N \N \N 44595 B.barceloi Bupleurum Bupleurum barceloi \N \N \N \N \N 44596 A.grandifolium Abutilon Abutilon grandifolium \N \N \N \N \N 44597 V.lautum Viburnum Viburnum lautum \N \N \N \N \N 44598 I.anemonoides Isopyrum Isopyrum anemonoides \N \N \N \N \N 44599 \N genus Leptocanna \N \N \N \N \N 44600 D.megacalyx Dimorphanthera Dimorphanthera megacalyx \N \N \N \N \N 44601 C.hermaphroditica Callitriche Callitriche hermaphroditica \N \N \N \N \N 44602 T.aspera Trema Trema aspera \N \N \N \N \N 44603 M.laevigata Mikania Mikania laevigata \N \N \N \N \N 44604 P.incarnata Passiflora Passiflora cincinnata x Passiflora incarnata \N \N \N \N \N 44605 \N genus Bellium \N \N \N \N \N 44606 L.Lys20 Leiospora Leiospora sp. Lys20 \N \N \N \N \N 44607 T.latifolium Tripsacum Tripsacum latifolium \N \N \N \N \N 44608 \N subspecies Genista umbellata subsp. umbellata \N \N \N \N \N 44609 \N tribe Conringieae \N \N \N \N \N 44610 \N genus Achyrospermum \N \N \N \N \N 44611 T.fontanesii Tetraena Tetraena fontanesii \N \N \N \N \N 44612 \N genus Willughbeia \N \N \N \N \N 44613 \N varietas Pancratium foetidum var. oranense \N \N \N \N \N 44614 G.bohemicum Geranium Geranium bohemicum \N \N \N \N \N 44615 S.cylindrica Scaevola Scaevola cylindrica \N \N \N \N \N 44616 M.longifolium Melampodium Melampodium longifolium \N \N \N \N \N 44617 O.flexuosum Ornithogalum Ornithogalum flexuosum \N \N \N \N \N 44618 E.russeolum Eriophorum Eriophorum russeolum \N \N \N \N \N 44619 C.3588 Clusia Clusia sp. JA 3588 \N \N \N \N \N 44620 C.contorta Caesia Caesia contorta \N \N \N \N \N 44621 P.aurantioides Passiflora Passiflora aurantioides \N \N \N \N \N 44622 O.myrsinoides Olearia Olearia myrsinoides \N \N \N \N \N 44623 N.sibirica Nepeta Nepeta sibirica \N \N \N \N \N 44624 \N family Dirachmaceae \N \N \N \N \N 44625 I.tanganyikensis Indigofera Indigofera tanganyikensis \N \N \N \N \N 44626 \N genus Brownlowia \N \N \N \N \N 44627 M.pubiflora Matelea Matelea pubiflora \N \N \N \N \N 44628 O.sitiaca Orchis Orchis sitiaca \N \N \N \N \N 44629 C.catenata Cousinia Cousinia catenata \N \N \N \N \N 44630 P.ligustroides Polygala Polygala ligustroides \N \N \N \N \N 44631 C.gomerae Crambe Crambe gomerae \N \N \N \N \N 44632 S.biflora Sipanea Sipanea biflora \N \N \N \N \N 44633 D.altaicum Diarthron Diarthron altaicum \N \N \N \N \N 44634 C.legionis-septimae Centaurea Centaurea legionis-septimae \N \N \N \N \N 44635 \N genus Triaenophora \N \N \N \N \N 44636 \N genus Acroglochin \N \N \N \N \N 44637 \N genus Dicranostigma \N \N \N \N \N 44638 D.stenoloba Draba Draba stenoloba \N \N \N \N \N 44639 C.biebersteinii Cerastium Cerastium biebersteinii \N \N \N \N \N 44640 D.rigida Draba Draba rigida \N \N \N \N \N 44641 C.vansonii Cryptostephanus Cryptostephanus vansonii \N \N \N \N \N 44642 F.inexpectata Filago Filago inexpectata \N \N \N \N \N 44643 H.schultesii Hieracium Hieracium schultesii \N \N \N \N \N 44644 \N genus Myxopappus \N \N \N \N \N 44645 R.catananche Rhodanthemum Rhodanthemum catananche \N \N \N \N \N 44646 M.pachyacron Maxillaria Maxillaria pachyacron \N \N \N \N \N 44647 H.hesperidum Hannonia Hannonia hesperidum \N \N \N \N \N 44648 P.1448 Piper Piper sp. Tepe 1448 \N \N \N \N \N 44649 F.rubifolium Fagopyrum Fagopyrum rubifolium \N \N \N \N \N 44650 \N genus Brachyelytrum \N \N \N \N \N 44651 P.townsendii Potentilla Potentilla townsendii \N \N \N \N \N 44652 \N varietas Eriogonum corymbosum var. glutinosum \N \N \N \N \N 44653 A.raddeana Androsace Androsace raddeana \N \N \N \N \N 44654 C.(Marlb) Craspedia Craspedia sp. (Marlb) \N \N \N \N \N 44655 N.arvensis Nigella Nigella arvensis wild fennel \N \N \N \N 44656 A.PCR3 Aptosimum Aptosimum sp. KES PCR3 \N \N \N \N \N 44657 \N family Calceolariaceae \N \N \N \N \N 44658 M.incana Mimosa Mimosa incana \N \N \N \N \N 44659 T.heubergeri Tillandsia Tillandsia heubergeri \N \N \N \N \N 44660 \N genus Triplarina \N \N \N \N \N 44661 N.caespitosa Nassella Nassella caespitosa \N \N \N \N \N 44662 L.rosea Leipoldtia Leipoldtia rosea \N \N \N \N \N 44663 T.altissima Tetragastris Tetragastris altissima \N \N \N \N \N 44664 M.requienii Mentha Mentha requienii Corsican mint \N \N \N \N 44665 S.91SL Stephania Stephania sp. 91SL \N \N \N \N \N 44666 V.celtica Valeriana Valeriana celtica \N \N \N \N \N 44667 D.paniculata Deinandra Deinandra paniculata \N \N \N \N \N 44668 C.stenosepalum Canthium Canthium stenosepalum \N \N \N \N \N 44669 P.spina-christi Paliurus Paliurus spina-christi \N \N \N \N \N 44670 \N varietas Senna macranthera var. nervosa \N \N \N \N \N 44671 \N genus Bhesa \N \N \N \N \N 44672 C.campanulatum Clytostoma Clytostoma campanulatum \N \N \N \N \N 44673 N.procumbens Neurada Neurada procumbens \N \N \N \N \N 44674 T.taklamakanensis Tamarix Tamarix taklamakanensis \N \N \N \N \N 44675 G.umbrosus Goniothalamus Goniothalamus umbrosus \N \N \N \N \N 44676 \N genus Mitella \N \N \N \N \N 44677 P.calyculatus Psittacanthus Psittacanthus calyculatus \N \N \N \N \N 44678 G.cuatrecasasii Gonzalagunia Gonzalagunia cuatrecasasii \N \N \N \N \N 44679 E.phaeocarpa Erica Erica phaeocarpa \N \N \N \N \N 44680 A.cavanillesiana Arenaria Arenaria cavanillesiana \N \N \N \N \N 44681 G.devoniana Galeandra Galeandra devoniana \N \N \N \N \N 44682 P.reptans Phyla Phyla reptans \N \N \N \N \N 44683 C.albonitens Centaurea Centaurea albonitens \N \N \N \N \N 44684 L.australis Leucopogon Leucopogon australis \N \N \N \N \N 44685 A.elliptica Aglaia Aglaia elliptica \N \N \N \N \N 44686 L.narbonense Linum Linum narbonense \N \N \N \N \N 44687 E.guianensis Etaballia Etaballia guianensis \N \N \N \N \N 44688 \N varietas Corylus cornuta var. californica \N \N \N \N \N 44689 C.sphaerocarpa Crotalaria Crotalaria sphaerocarpa \N \N \N \N \N 44690 N.schiraziana Nepeta Nepeta schiraziana \N \N \N \N \N 44691 T.membranostylis Trollius Trollius membranostylis \N \N \N \N \N 44692 G.oblongicalyx Glossoloma Glossoloma oblongicalyx \N \N \N \N \N 44693 N.zollingeri Neuwiedia Neuwiedia zollingeri \N \N \N \N \N 44694 \N genus Saccolabium \N \N \N \N \N 44695 N.spectabilis Neoastelia Neoastelia spectabilis \N \N \N \N \N 44696 B.nutans Billbergia Billbergia nutans \N \N \N \N \N 44697 \N varietas Achillea millefolium var. gigantea \N \N \N \N \N 44698 S.phaeantha Saussurea Saussurea phaeantha \N \N \N \N \N 44699 S.nigriviolaceum Solanum Solanum nigriviolaceum \N \N \N \N \N 44700 G.glauca Gnidia Gnidia glauca \N \N \N \N \N 44701 C.ovata Cardamine Cardamine ovata \N \N \N \N \N 44702 \N no rank lamiids \N \N \N \N \N 44703 \N genus Finschia \N \N \N \N \N 44704 O.645 Ormosia Ormosia sp. Pennington 645 \N \N \N \N \N 44705 O.tazaensis Ononis Ononis tazaensis \N \N \N \N \N 44706 S.viridissima Symplocos Symplocos viridissima \N \N \N \N \N 44707 A.korneliuslemsii Aeonium Aeonium korneliuslemsii \N \N \N \N \N 44708 X.crutchfieldii Xanthisma Xanthisma crutchfieldii \N \N \N \N \N 44709 P.venustum Paphiopedilum Paphiopedilum venustum \N \N \N \N \N 44710 B.subrotundifolia Bauhinia Bauhinia subrotundifolia \N \N \N \N \N 44711 S.BC140 Syzygium Syzygium sp. BC140 \N \N \N \N \N 44712 M.544 Mandirola Mandirola aff. ichthyostoma Araujo 544 \N \N \N \N \N 44713 \N genus Koellensteinia \N \N \N \N \N 44714 O.acropterum Osteocarpum Osteocarpum acropterum \N \N \N \N \N 44715 \N genus Cardiandra \N \N \N \N \N 44716 \N genus Howelliella \N \N \N \N \N 44717 S.disermas Salvia Salvia disermas \N \N \N \N \N 44718 C.grandiflora Collomia Collomia grandiflora large flower mountaintrumpet \N \N \N \N 44719 H.hedyotidea Hedyotis Hedyotis hedyotidea \N \N \N \N \N 44720 C.antennaria Chersodoma Chersodoma antennaria \N \N \N \N \N 44721 D.brasiliensis Dystovomita Dystovomita brasiliensis \N \N \N \N \N 44722 \N genus Heywoodia \N \N \N \N \N 44723 \N genus Taeckholmia \N \N \N \N \N 44724 U.crinita Uraria Uraria crinita \N \N \N \N \N 44725 A.andreettae Aetheorhyncha Aetheorhyncha andreettae \N \N \N \N \N 44726 M.chinensis Maackia Maackia chinensis \N \N \N \N \N 44727 C.sagittatus Cucumis Cucumis sagittatus \N \N \N \N \N 44728 E.mariae Elaeagia Elaeagia mariae \N \N \N \N \N 48513 P.amplum Piper Piper amplum \N \N \N \N \N 44729 \N varietas Vriesea ospinae var. ospinae \N \N \N \N \N 44730 N.689 Nuphar Nuphar sp. Palmer 689 \N \N \N \N \N 44731 D.pillansii Dilatris Dilatris pillansii \N \N \N \N \N 44732 P.49 Pentaphragma Pentaphragma sp. Duangjai 49 \N \N \N \N \N 44733 I.nigricans Ixora Ixora nigricans \N \N \N \N \N 44734 D.aegypticus Didesmus Didesmus aegypticus \N \N \N \N \N 44735 S.nematanthodes Seemannia Seemannia nematanthodes \N \N \N \N \N 44736 P.pinnatifidum Philodendron Philodendron pinnatifidum \N \N \N \N \N 44737 G.gageoides Gagea Gagea gageoides \N \N \N \N \N 44738 M.oreophila Machilus Machilus oreophila \N \N \N \N \N 44739 H.brevicornis Halenia Halenia brevicornis \N \N \N \N \N 44740 E.parviflorum Epilobium Epilobium parviflorum \N \N \N \N \N 44741 B.longibracteata Berberis Berberis longibracteata \N \N \N \N \N 44742 \N genus Myopordon \N \N \N \N \N 44743 T.JK3517 unclassified Taraxacum Taraxacum (sect. Piesis) sp. JK3517 \N \N \N \N \N 44744 C.hollrungii Calamus Calamus hollrungii \N \N \N \N \N 44745 S.forcipitata Salsola Salsola forcipitata \N \N \N \N \N 44746 M.arenacea Muhlenbergia Muhlenbergia arenacea \N \N \N \N \N 44747 E.canum Eritrichium Eritrichium canum \N \N \N \N \N 44748 F.fulva Ficus Ficus fulva \N \N \N \N \N 44749 L.rubella Lippia Lippia rubella \N \N \N \N \N 44750 \N family Clethraceae \N \N \N \N \N 44751 C.cainito Chrysophyllum Chrysophyllum cainito star apple \N \N \N \N 44752 \N genus Glossonema \N \N \N \N \N 44753 L.multiflora Ledebouriella Ledebouriella multiflora \N \N \N \N \N 44754 T.juniperina Taxandria Taxandria juniperina \N \N \N \N \N 44755 A.dealbata Acacia Acacia dealbata \N \N \N \N \N 50093 D.sp. Dianthus Dianthus sp. \N \N \N \N \N 44756 P.serpyllaceum Polygonum Polygonum serpyllaceum \N \N \N \N \N 44757 P.longiglumis Pentameris sect. Pentameris Pentameris longiglumis \N \N \N \N \N 44758 A.thurberi Anisacanthus Anisacanthus thurberi \N \N \N \N \N 44759 H.papillosum Hedysarum Hedysarum papillosum \N \N \N \N \N 44760 \N subspecies Acer saccharum subsp. saccharum \N \N \N \N \N 44761 H.entrichoma Halosarcia Halosarcia entrichoma \N \N \N \N \N 44762 V.phlomoides Verbascum Verbascum phlomoides \N \N \N \N \N 44763 T.crocifolius Tragopogon Tragopogon crocifolius \N \N \N \N \N 44764 L.truncata Liparis Liparis truncata \N \N \N \N \N 44765 \N genus Crowea \N \N \N \N \N 44766 O.suratii Orchidantha Orchidantha suratii \N \N \N \N \N 44767 H.rudbeckioides Hymenostephium Hymenostephium rudbeckioides \N \N \N \N \N 44768 C.tomentella Cousinia Cousinia tomentella \N \N \N \N \N 44769 M.canadensis Mentha Mentha canadensis Japanese mint,corn mint \N \N \N \N 44770 C.cyminum Cuminum Cuminum cyminum cumin \N \N \N \N 44771 A.amaranthoides Axyris Axyris amaranthoides \N \N \N \N \N 44772 \N genus Spathelia \N \N \N \N \N 44773 \N genus Schweinfurthia \N \N \N \N \N 44774 G.himalayense Geranium Geranium himalayense \N \N \N \N \N 44775 A.sp. Antirrhinum Antirrhinum sp. \N \N \N \N \N 44776 C.aureus Corryocactus Corryocactus aureus \N \N \N \N \N 44777 \N genus Wilkiea \N \N \N \N \N 44778 M.humile Melolobium Melolobium humile \N \N \N \N \N 44779 \N genus Glomeropitcairnia \N \N \N \N \N 44780 C.wattiana Crataegus Crataegus wattiana \N \N \N \N \N 44781 A.conollyi Ammodendron Ammodendron conollyi \N \N \N \N \N 44782 S.assamica Steudnera Steudnera assamica \N \N \N \N \N 44783 O.696 Ochrothallus Ochrothallus sp. Munzinger 696 \N \N \N \N \N 44784 S.aculeastrum Solanum Solanum aculeastrum \N \N \N \N \N 44785 \N tribe Galegeae \N \N \N \N \N 44786 \N genus Stonesiella \N \N \N \N \N 44787 \N genus Foveolina \N \N \N \N \N 44788 H.prasandrus Honorius Honorius prasandrus \N \N \N \N \N 44789 M.linariifolia Melaleuca Melaleuca linariifolia \N \N \N \N \N 44790 P.koehnei Pyrus Pyrus koehnei \N \N \N \N \N 44791 S.jacquemontii Sporobolus Sporobolus jacquemontii \N \N \N \N \N 44792 C.brachypoda Chamaedorea Chamaedorea brachypoda \N \N \N \N \N 44793 C.ovata Catalpa Catalpa ovata Chinese catalpa \N \N \N \N 44794 C.10303 Carex Carex cf. microptera Reznicek 10303 \N \N \N \N \N 44795 P.cablin Pogostemon Pogostemon cablin patchouli \N \N \N \N 44796 N.billbergioides Nidularium Nidularium billbergioides \N \N \N \N \N 44797 C.bractescens Chysis Chysis bractescens \N \N \N \N \N 44798 E.schultzii Ectrosia Ectrosia schultzii \N \N \N \N \N 44799 H.thesioides Haplophyllum Haplophyllum thesioides \N \N \N \N \N 44800 \N tribe Astereae \N \N \N \N \N 44801 L.japonicum Ligustrum Ligustrum japonicum \N \N \N \N \N 44802 D.serratifolia Duranta Duranta serratifolia \N \N \N \N \N 44803 \N subspecies Sorghum bicolor subsp. verticilliflorum common wild sorghum \N \N \N \N 44804 S.lycocarpum Solanum Solanum lycocarpum \N \N \N \N \N 44805 \N genus Monanthochloe \N \N \N \N \N 44806 H.floccosa Henckelia Henckelia floccosa \N \N \N \N \N 44807 O.primuloides Oxalis Oxalis primuloides \N \N \N \N \N 44808 I.argillicola Ipomoea Ipomoea argillicola \N \N \N \N \N 44809 L.xylocarpum Lepidopetalum Lepidopetalum xylocarpum \N \N \N \N \N 44810 \N subfamily Symphorematoideae \N \N \N \N \N 44811 T.cucullatum Taraxacum Taraxacum cucullatum \N \N \N \N \N 44812 H.somranii Hydrobryum Hydrobryum somranii \N \N \N \N \N 44813 B.tecomaca Bursera Bursera tecomaca \N \N \N \N \N 44814 E.densiflorum Epilobium Epilobium densiflorum \N \N \N \N \N 44815 B.ramosissima Bauhinia Bauhinia ramosissima \N \N \N \N \N 44816 C.erythropoda Crataegus Crataegus erythropoda Cerro hawthorn \N \N \N \N 44817 N.usquiliensis Nasa Nasa usquiliensis \N \N \N \N \N 44818 M.longipes Massonia Massonia longipes \N \N \N \N \N 44819 C.argaea Campanula Campanula argaea \N \N \N \N \N 44820 D.norae Didymosalpinx Didymosalpinx norae \N \N \N \N \N 44821 B.odoratissimus Bystropogon Bystropogon odoratissimus \N \N \N \N \N 44822 F.graciliflora Fedia Fedia graciliflora \N \N \N \N \N 44823 S.tameiameiae Styphelia Styphelia tameiameiae \N \N \N \N \N 44824 H.dentatum Homalium Homalium dentatum \N \N \N \N \N 51220 \N genus Scleroblitum \N \N \N \N \N 44825 C.11447 Cyphostemma Cyphostemma cf. serpens 11447 \N \N \N \N \N 44826 S.canariensis Salvia Salvia canariensis \N \N \N \N \N 44827 \N genus Centrostachys \N \N \N \N \N 44828 T.K3727/8 unclassified Taraxacum Taraxacum sp. K3727/8 \N \N \N \N \N 44829 F.paniculata Frasera Frasera paniculata \N \N \N \N \N 44830 \N genus Hertia \N \N \N \N \N 44831 F.aculeata Felicia Felicia aculeata \N \N \N \N \N 44832 V.texana Valeriana Valeriana texana Guadalupe valerian \N \N \N \N 44833 A.capitata Aspalathus Aspalathus capitata \N \N \N \N \N 44834 P.hongshanensis Primula Primula hongshanensis \N \N \N \N \N 44835 D.sinuata Dimorphotheca Dimorphotheca sinuata African daisy \N \N \N \N 44836 G.imbricatus Gladiolus Gladiolus imbricatus \N \N \N \N \N 44837 G.pilosa Gratiola Gratiola pilosa \N \N \N \N \N 44838 M.bulbocalcarata Microcoelia Microcoelia bulbocalcarata \N \N \N \N \N 44839 E.namaquensis Euphorbia Euphorbia namaquensis \N \N \N \N \N 44840 N.simulans Nymphoides Nymphoides simulans \N \N \N \N \N 44841 S.pianmaensis Swertia Swertia pianmaensis \N \N \N \N \N 44842 S.hamelioides Spigelia Spigelia hamelioides \N \N \N \N \N 44843 P.ledermanniana Ponapea Ponapea ledermanniana \N \N \N \N \N 44844 E.radicans Erica Erica radicans \N \N \N \N \N 44845 L.fragilis Leandra Leandra fragilis \N \N \N \N \N 44846 P.dipterocarpacea Pakaraimaea Pakaraimaea dipterocarpacea \N \N \N \N \N 44847 P.krugii Pilea Pilea krugii \N \N \N \N \N 44848 S.V24 Saintpaulia Saintpaulia cf. ionantha V24 \N \N \N \N \N 44849 F.gilesii Fagopyrum Fagopyrum gilesii \N \N \N \N \N 44850 J.magnifica Johannesteijsmannia Johannesteijsmannia magnifica \N \N \N \N \N 44851 \N subspecies Ranunculus gmelinii subsp. purshii \N \N \N \N \N 44852 A.stenophylla Androsace Androsace stenophylla \N \N \N \N \N 44853 P.robusta Podolepis Podolepis robusta \N \N \N \N \N 44854 Y.filamentosa Yucca Yucca filamentosa Adam's-needle,bear-grass,spoon-leaf yucca \N \N \N \N 44855 \N genus Graderia \N \N \N \N \N 44856 G.discolor Guatteria Guatteria discolor \N \N \N \N \N 44857 C.tragacanthoides Cicer Cicer tragacanthoides \N \N \N \N \N 44858 S.hypericifolia Spiraea Spiraea hypericifolia \N \N \N \N \N 44859 D.asper Dendrocalamus Dendrocalamus asper \N \N \N \N \N 44860 C.laevivaginata Carex Carex laevivaginata \N \N \N \N \N 44861 P.zimapanica Packera Packera zimapanica \N \N \N \N \N 44862 P.bimundorum Potentilla Potentilla bimundorum \N \N \N \N \N 44863 P.urostachyum Piper Piper urostachyum \N \N \N \N \N 44864 C.2721 Canephora Canephora sp. Davis 2721 \N \N \N \N \N 44865 C.morrisonensis Cotoneaster Cotoneaster morrisonensis \N \N \N \N \N 44866 \N tribe Onoserideae \N \N \N \N \N 44867 \N genus Euryodendron \N \N \N \N \N 44868 P.rhodoptera Polystachya Polystachya rhodoptera \N \N \N \N \N 44869 A.huttonii Anagallis Anagallis huttonii \N \N \N \N \N 44870 A.bullulata Astroloba Astroloba bullulata \N \N \N \N \N 44871 T.patagonica Tetrachondra Tetrachondra patagonica \N \N \N \N \N 44872 C.micrantha Cayaponia Cayaponia micrantha \N \N \N \N \N 44873 \N genus Stylophorum \N \N \N \N \N 44874 H.discolor Holodiscus Holodiscus discolor \N \N \N \N \N 44875 C.baetica Cynara Cynara baetica \N \N \N \N \N 44876 M.rigida Muraltia Muraltia rigida \N \N \N \N \N 44877 S.singuliflorus Scleranthus Scleranthus singuliflorus \N \N \N \N \N 44878 M.bubalina Miconia Miconia bubalina \N \N \N \N \N 44879 T.domingensis Typha Typha domingensis totora \N \N \N \N 44880 A.subincisa Acaena Acaena subincisa \N \N \N \N \N 44881 \N genus Pachira \N \N \N \N \N 44882 G.flanaganii Gladiolus Gladiolus flanaganii \N \N \N \N \N 44883 L.multicapitula Leucaena Leucaena multicapitula frijolillo \N \N \N \N 44884 O.hapalotyle Oncidium Oncidium hapalotyle \N \N \N \N \N 44885 B.rosea Bletia Bletia rosea \N \N \N \N \N 44886 P.subvahliana Potentilla Potentilla subvahliana \N \N \N \N \N 44887 P.dominguensis Pilea Pilea dominguensis \N \N \N \N \N 44888 B.nuttallii Bigelowia Bigelowia nuttallii \N \N \N \N \N 44889 C.nubicola Calophyllum Calophyllum nubicola \N \N \N \N \N 44890 O.macrophylla Oxandra Oxandra macrophylla \N \N \N \N \N 44891 \N genus Leucaster \N \N \N \N \N 44892 \N genus Saranthe \N \N \N \N \N 44893 P.armeniacum Paphiopedilum Paphiopedilum armeniacum \N \N \N \N \N 44894 R.siamensis Rauwenhoffia Rauwenhoffia siamensis \N \N \N \N \N 44895 I.lungshengense Isometrum Isometrum lungshengense \N \N \N \N \N 44896 R.aurantiaca Rudolfiella Rudolfiella aurantiaca \N \N \N \N \N 44897 T.trichopterum Trifolium Trifolium trichopterum \N \N \N \N \N 44898 \N subspecies Scrophularia variegata subsp. variegata \N \N \N \N \N 44899 O.purpurea Osmorhiza Osmorhiza purpurea \N \N \N \N \N 44900 C.carsei Corybas Corybas carsei \N \N \N \N \N 44901 M.parvifolia Morinda Morinda parvifolia \N \N \N \N \N 44902 \N subspecies Anthyllis vulneraria subsp. vulneraria \N \N \N \N \N 44903 \N genus Streptocalyx \N \N \N \N \N 44904 A.hartwegii Asarum Asarum hartwegii \N \N \N \N \N 44905 T.turneri Tiquilia Tiquilia turneri \N \N \N \N \N 44906 A.panurensis Aniba Aniba panurensis \N \N \N \N \N 44907 D.glandulosus Dontostemon Dontostemon glandulosus \N \N \N \N \N 44908 V.websteri Viola Viola websteri \N \N \N \N \N 44909 C.kurdicum Colchicum Colchicum kurdicum \N \N \N \N \N 44910 S.alatum Sesamum Sesamum alatum \N \N \N \N \N 44911 A.erinacea Aiphanes Aiphanes erinacea \N \N \N \N \N 44912 O.cheirophorum Oncidium Oncidium cheirophorum \N \N \N \N \N 44913 E.urna-viridis Erica Erica urna-viridis \N \N \N \N \N 44914 B.tubulosa Babiana Babiana tubulosa \N \N \N \N \N 44915 E.wallichiana Ehretia Ehretia wallichiana \N \N \N \N \N 44916 C.transtagana Campanula Campanula transtagana \N \N \N \N \N 44917 \N subspecies Androsace cylindrica subsp. willkommii \N \N \N \N \N 44918 A.albens Asclepias Asclepias albens \N \N \N \N \N 44919 B.marginatus Bromus Bromus marginatus mountain brome,western bromegrass \N \N \N \N 44920 O.cuspidatus Orthocarpus Orthocarpus cuspidatus \N \N \N \N \N 51997 \N genus Cratoxylum \N \N \N \N \N 44921 \N varietas Eriogonum esmeraldense var. toiyabense \N \N \N \N \N 44922 S.krukoffii Stenostephanus Stenostephanus krukoffii \N \N \N \N \N 44923 H.oreophila Huttonaea Huttonaea oreophila \N \N \N \N \N 44924 B.cooperi Berberis Berberis cooperi \N \N \N \N \N 44925 \N genus Humbertochloa \N \N \N \N \N 44926 R.argyreus Ranunculus Ranunculus argyreus \N \N \N \N \N 44927 M.fasciculatum Monophrynium Monophrynium fasciculatum \N \N \N \N \N 44928 R.mekongense Rhododendron Rhododendron mekongense \N \N \N \N \N 44929 H.hispida Halocharis Halocharis hispida \N \N \N \N \N 44930 C.coriandrifolium Callianthemum Callianthemum coriandrifolium \N \N \N \N \N 44931 S.13624 Salicornia Salicornia aff. perennans Neuffer & Hurka 13624 \N \N \N \N \N 44932 S.lempergii Saponaria Saponaria x lempergii \N \N \N \N \N 44933 H.stellaris Hessea Hessea stellaris \N \N \N \N \N 44934 D.intermedia Danthonia Danthonia intermedia \N \N \N \N \N 44935 N.fallax Narenga Narenga fallax \N \N \N \N \N 44936 I.salsoloides Inula Inula salsoloides \N \N \N \N \N 44937 S.hispanicum Sedum Sedum hispanicum \N \N \N \N \N 44938 P.lepidophylla Parastrephia Parastrephia lepidophylla \N \N \N \N \N 44939 E.ovina Erica Erica ovina \N \N \N \N \N 44940 V.AB-2009 Vanilla Vanilla cf. palmarum AB-2009 \N \N \N \N \N 44941 O.glauca Otatea Otatea glauca \N \N \N \N \N 44942 C.cadophora Corymbia Corymbia cadophora \N \N \N \N \N 44943 A.macrophylla Anemonopsis Anemonopsis macrophylla \N \N \N \N \N 44944 T.zhukovskyi Triticum Triticum zhukovskyi \N \N \N \N \N 44945 S.31.313 Salicornia Salicornia aff. patula Freitag 31.313 \N \N \N \N \N 44946 \N genus Hymenandra \N \N \N \N \N 44947 P.vandarum Papilionanthe Papilionanthe vandarum \N \N \N \N \N 51058 \N genus Xylanthemum \N \N \N \N \N 44948 C.ceramicus Chisocheton Chisocheton ceramicus \N \N \N \N \N 44949 A.cinerea Ammosperma Ammosperma cinerea \N \N \N \N \N 44950 \N genus Antopetitia \N \N \N \N \N 44951 A.phenax Asclepias Asclepias phenax \N \N \N \N \N 44952 G.phyllocalyx Gentiana Gentiana phyllocalyx \N \N \N \N \N 44953 \N genus Ullucus \N \N \N \N \N 44954 \N genus Eberlanzia \N \N \N \N \N 44955 A.tenuissima Aspalathus Aspalathus tenuissima \N \N \N \N \N 44956 G.eurycarpa Glycyrrhiza Glycyrrhiza eurycarpa \N \N \N \N \N 44957 C.3635 Clusia Clusia sp. JA 3635 \N \N \N \N \N 44958 \N genus Petalolophus \N \N \N \N \N 44959 T.minuta Tagetes Tagetes minuta \N \N \N \N \N 44960 T.aciculiflora Tricalysia Tricalysia aciculiflora \N \N \N \N \N 44961 B.nana Bulbinella Bulbinella nana \N \N \N \N \N 44962 \N varietas Piptochaetium stipoides var. echinulatum \N \N \N \N \N 44963 T.3669 unclassified Taraxacum Taraxacum (sect. Borealia) sp. 3669 \N \N \N \N \N 44964 S.donkelaarii Selenicereus Selenicereus donkelaarii \N \N \N \N \N 44965 D.boliviense Dactylostelma Dactylostelma boliviense \N \N \N \N \N 44966 I.sibirica Iris Iris sibirica Siberian iris \N \N \N \N 44967 \N genus Neohymenopogon \N \N \N \N \N 44968 M.robusta Moraea Moraea robusta \N \N \N \N \N 44969 C.arachnoidea Cousinia Cousinia arachnoidea \N \N \N \N \N 44970 P.54 Pinguicula Pinguicula sp. Erixon 54 \N \N \N \N \N 44971 C.portulacea Crassula Crassula portulacea \N \N \N \N \N 44972 B.blakeana Bauhinia Bauhinia blakeana Hong Kong orchidtree \N \N \N \N 44973 O.cretica Ophrys Ophrys cretica \N \N \N \N \N 44974 P.wurdackiana Polygala Polygala wurdackiana \N \N \N \N \N 44975 T.pilosa Triumfetta Triumfetta pilosa \N \N \N \N \N 44976 \N genus Eithea \N \N \N \N \N 44977 \N genus Williamodendron \N \N \N \N \N 44978 C.lusitanica Callitriche Callitriche lusitanica \N \N \N \N \N 44979 N.subdita Nauclea Nauclea subdita \N \N \N \N \N 44980 A.rariflorum Alisma Alisma rariflorum \N \N \N \N \N 44981 V.pilifera Vanilla Vanilla pilifera \N \N \N \N \N 44982 D.longicalyx Dianthus Dianthus longicalyx \N \N \N \N \N 44983 A.rubripes Artemisia Artemisia rubripes \N \N \N \N \N 44984 C.linifolia Centaurea Centaurea linifolia \N \N \N \N \N 44985 E.aaron-rossii Euphorbia Euphorbia aaron-rossii \N \N \N \N \N 44986 \N genus Schoenorchis \N \N \N \N \N 44987 \N varietas Triticum spelta var. album \N \N \N \N \N 44988 G.hexandra Gaura Gaura hexandra harlequinbush \N \N \N \N 44989 D.turbinata Dorstenia Dorstenia turbinata \N \N \N \N \N 44990 E.vitiense Elaeodendron Elaeodendron vitiense \N \N \N \N \N 44991 \N genus Ryania \N \N \N \N \N 44992 L.tenue Lepidocaryum Lepidocaryum tenue \N \N \N \N \N 44993 E.pernitens Epilobium Epilobium pernitens \N \N \N \N \N 44994 H.verticillatum Hylotelephium Hylotelephium verticillatum \N \N \N \N \N 44995 P.ralphii Pittosporum Pittosporum ralphii \N \N \N \N \N 44996 S.jenischiana Stanhopea Stanhopea jenischiana \N \N \N \N \N 44997 E.palustris Euphorbia Euphorbia palustris \N \N \N \N \N 44998 N.FF-2006 Nerine Nerine sp. FF-2006 \N \N \N \N \N 44999 K.1999 Kalanchoe Kalanchoe sp. Mort 1999 \N \N \N \N \N 45000 A.asarense Allium Allium asarense \N \N \N \N \N 45001 \N tribe Joliffieae \N \N \N \N \N 45002 S.Ssonov4 Sobralia Sobralia sp. Ssonov4 \N \N \N \N \N 45003 C.taurica Cruciata Cruciata taurica \N \N \N \N \N 45004 E.botrys Erodium Erodium botrys \N \N \N \N \N 45005 E.semenovii Euonymus Euonymus semenovii \N \N \N \N \N 45006 C.armeniaca Consolida Consolida armeniaca \N \N \N \N \N 45007 P.96236 Peperomia Peperomia sp. Qiu 96236 \N \N \N \N \N 45008 \N genus Caryopteris bluebeards \N \N \N \N 45009 S.ochroleuca Scabiosa Scabiosa ochroleuca \N \N \N \N \N 45010 A.africanus Aneulophus Aneulophus africanus \N \N \N \N \N 45011 \N subspecies Arachis paraguariensis subsp. paraguariensis \N \N \N \N \N 45012 D.alaskana Douglasia Douglasia alaskana \N \N \N \N \N 45013 A.leucantha Aa Aa leucantha \N \N \N \N \N 45014 C.subangulatus Ceratolobus Ceratolobus subangulatus \N \N \N \N \N 45015 C.alta Corythophora Corythophora alta \N \N \N \N \N 45016 \N subtribe Stokesiinae \N \N \N \N \N 45017 P.paui Perralderia Perralderia paui \N \N \N \N \N 45018 D.cliffortiana Dalea Dalea cliffortiana \N \N \N \N \N 45019 E.urens Eucnide Eucnide urens \N \N \N \N \N 45020 A.glandulifera Arachis Arachis glandulifera \N \N \N \N \N 45021 A.longipes Allophylus Allophylus longipes \N \N \N \N \N 45022 \N genus Sphallerocarpus \N \N \N \N \N 45023 \N varietas Stachyurus chinensis var. latus \N \N \N \N \N 45024 S.hasslerianum Solanum Solanum hasslerianum \N \N \N \N \N 45025 V.yatabei Vaccinium Vaccinium yatabei \N \N \N \N \N 45026 E.alaskanus Elymus Elymus alaskanus \N \N \N \N \N 45027 C.curvata Carpha Carpha curvata \N \N \N \N \N 45028 L.crassifolius Lotus Lotus crassifolius \N \N \N \N \N 45029 M.tremuloides Metrosideros Metrosideros tremuloides \N \N \N \N \N 45030 T.chamaedrys Teucrium Teucrium chamaedrys wall germander \N \N \N \N 45031 \N varietas Houstonia purpurea var. purpurea \N \N \N \N \N 45032 E.brachyphylla Euphorbia Euphorbia brachyphylla \N \N \N \N \N 45033 F.littoralis Fimbristylis Fimbristylis littoralis \N \N \N \N \N 45034 A.caerulea Anthorrhiza Anthorrhiza caerulea \N \N \N \N \N 45035 T.carnea Thelymitra Thelymitra carnea \N \N \N \N \N 45036 B.thorelii Boesenbergia Boesenbergia thorelii \N \N \N \N \N 45037 C.broussoneti Crinum Crinum broussoneti \N \N \N \N \N 45038 S.1233 Saussurea Saussurea cf. tatsienensis Liu 1233 \N \N \N \N \N 45039 \N genus Iodes \N \N \N \N \N 45040 R.heudelotii Ricinodendron Ricinodendron heudelotii \N \N \N \N \N 45041 G.griffithiana Gaultheria Gaultheria griffithiana \N \N \N \N \N 45042 F.schippii Ficus Ficus schippii \N \N \N \N \N 45043 \N genus Fusaea \N \N \N \N \N 45044 R.schlippenbachii Rhododendron Rhododendron schlippenbachii \N \N \N \N \N 45045 A.spinosus Amaranthus Amaranthus spinosus \N \N \N \N \N 45046 C.hyalina Calopsis Calopsis hyalina \N \N \N \N \N 45047 D.aurea Diuris Diuris aurea \N \N \N \N \N 45048 C.utilis Caraipa Caraipa utilis \N \N \N \N \N 45049 P.SH-2010 Plantago Plantago sp. SH-2010 \N \N \N \N \N 45050 \N varietas Cardiandra moellendorffii var. moellendorffii \N \N \N \N \N 45051 P.trifoliolatus Prenanthes Prenanthes trifoliolatus \N \N \N \N \N 45052 C.megalosperma Cochlearia Cochlearia megalosperma \N \N \N \N \N 45053 K.cordata Kadua Kadua cordata \N \N \N \N \N 45054 B.vivipara Bistorta Bistorta vivipara \N \N \N \N \N 45055 H.pumilio Haemanthus Haemanthus pumilio \N \N \N \N \N 45056 M.rhizinoides Macaranga Macaranga rhizinoides \N \N \N \N \N 45057 C.fasciculiflora Clematis Clematis fasciculiflora \N \N \N \N \N 45058 G.tomentosa Gaultheria Gaultheria tomentosa duraznillo,shamsque \N \N \N \N 45059 A.campylorrhynchum Aconitum Aconitum campylorrhynchum \N \N \N \N \N 45060 P.pulchella Pithocarpa Pithocarpa pulchella \N \N \N \N \N 45061 P.hookeri Phyllanthus Phyllanthus hookeri \N \N \N \N \N 45062 A.grandiflora Acranthera Acranthera grandiflora \N \N \N \N \N 45063 C.PRC400115 Chenopodium Chenopodium sp. PRC400115 \N \N \N \N \N 45064 \N genus Enicosanthum \N \N \N \N \N 45065 B.hainanensis Bauhinia Bauhinia hainanensis \N \N \N \N \N 45066 C.raineri Campanula Campanula raineri \N \N \N \N \N 45067 P.bipinnatifidum Philodendron Philodendron bipinnatifidum fiddle-leaf philodendron,panda plant \N \N \N \N 45068 \N genus Dichapetalum \N \N \N \N \N 45069 E.dahuricus Echinops Echinops dahuricus \N \N \N \N \N 45070 L.orientale Lomatium Lomatium orientale \N \N \N \N \N 45071 \N subspecies Lecythis persistens subsp. persistens \N \N \N \N \N 45072 D.hookeri Dasypogon Dasypogon hookeri \N \N \N \N \N 45073 S.phacoides Swainsona Swainsona phacoides \N \N \N \N \N 45074 C.lanfrancoi Cremnophyton Cremnophyton lanfrancoi \N \N \N \N \N 45075 S.buergeriana Scrophularia Scrophularia buergeriana \N \N \N \N \N 45076 P.ecklonii Prionanthium Prionanthium ecklonii \N \N \N \N \N 45077 C.malurensis Cousinia Cousinia malurensis \N \N \N \N \N 45078 G.eleutherosepala Gomesa Gomesa eleutherosepala \N \N \N \N \N 45079 L.effusa Luzula Luzula effusa \N \N \N \N \N 45080 \N genus Lindsayomyrtus \N \N \N \N \N 45081 A.filidens Allium Allium filidens \N \N \N \N \N 45082 C.medica Citrus Citrus medica Buddha's hand,citron \N \N \N \N 45083 A.panamense Acosmium Acosmium panamense \N \N \N \N \N 45084 S.kentaniensis Streptocarpus Streptocarpus kentaniensis \N \N \N \N \N 45085 R.manillana Rafflesia Rafflesia manillana \N \N \N \N \N 45086 P.NFL-2010 Phillyrea Phillyrea sp. 1 NFL-2010 \N \N \N \N \N 45087 O.splendens Ocotea Ocotea splendens \N \N \N \N \N 45088 E.propinqua Erica Erica propinqua \N \N \N \N \N 45089 G.glabra Gunniopsis Gunniopsis glabra \N \N \N \N \N 45090 C.montanum Chrysophthalmum Chrysophthalmum montanum \N \N \N \N \N 45091 A.vagus Astragalus Astragalus vagus \N \N \N \N \N 45092 N.digluta Nicotiana Nicotiana digluta \N \N \N \N \N 45093 O.polyrhiza Oxalis Oxalis polyrhiza \N \N \N \N \N 45094 \N genus Platonia \N \N \N \N \N 45095 \N genus Myoporum \N \N \N \N \N 45096 A.aurantiaca Aphelandra Aphelandra aurantiaca \N \N \N \N \N 45097 P.cinerascens Pedicularis Pedicularis cinerascens \N \N \N \N \N 45098 C.diversifolius Cocculus Cocculus diversifolius \N \N \N \N \N 45099 E.nevskii Elymus Elymus nevskii \N \N \N \N \N 45100 T.watsonii Tricardia Tricardia watsonii \N \N \N \N \N 45101 C.tenuispina Cousinia Cousinia tenuispina \N \N \N \N \N 45102 S.radiata Saxifraga Saxifraga radiata \N \N \N \N \N 45103 P.laevigatum Piper Piper laevigatum \N \N \N \N \N 45104 O.levantina Ophrys Ophrys levantina \N \N \N \N \N 45105 A.pilifera Alepidea Alepidea pilifera \N \N \N \N \N 45106 H.trifurca Heliophila Heliophila trifurca \N \N \N \N \N 45107 P.dahlianum Papaver Papaver dahlianum \N \N \N \N \N 45108 \N genus Aichryson \N \N \N \N \N 45109 D.pilulifera Dypsis Dypsis pilulifera \N \N \N \N \N 45110 E.apiculatus Elaeocarpus Elaeocarpus apiculatus \N \N \N \N \N 45111 C.virgata Cliffortia Cliffortia virgata \N \N \N \N \N 45112 \N genus Gonocarpus \N \N \N \N \N 45113 A.lutea Asphodeline Asphodeline lutea \N \N \N \N \N 45114 D.dodecandrus Distichostemon Distichostemon dodecandrus \N \N \N \N \N 52480 \N genus Blepharodon \N \N \N \N \N 45115 P.565 Pseudoxandra Pseudoxandra aff. pacifica van Rooden et al. 565 \N \N \N \N \N 45116 F.brachyphylla Festuca Festuca brachyphylla \N \N \N \N \N 45117 \N subspecies Allium jesdianum subsp. jesdianum \N \N \N \N \N 45118 \N subspecies Petunia axillaris subsp. subandina \N \N \N \N \N 45119 \N genus Mezia \N \N \N \N \N 45120 T.pellucidus Thamnochortus Thamnochortus pellucidus \N \N \N \N \N 45121 Z.granulata Zieria Zieria granulata \N \N \N \N \N 45122 L.moziniana Lycianthes Lycianthes moziniana \N \N \N \N \N 45123 \N varietas Coprosma propinqua cf. var. martinii CHR 595238 \N \N \N \N \N 45124 E.B-AAA-2006 Eschweilera Eschweilera sp. B-AAA-2006 \N \N \N \N \N 45125 V.edwallii Vanilla Vanilla edwallii \N \N \N \N \N 45126 \N genus Cremastra \N \N \N \N \N 45127 P.lancifoli Paragenipa Paragenipa lancifoli \N \N \N \N \N 45128 \N genus Schoenia \N \N \N \N \N 45129 T.album Taraxacum Taraxacum album \N \N \N \N \N 45130 P.lineolatus Pachycarpus Pachycarpus lineolatus \N \N \N \N \N 45131 C.venosum Crinum Crinum venosum \N \N \N \N \N 45132 A.villosa Amphithalea Amphithalea villosa \N \N \N \N \N 45133 S.nordestina Sinningia Sinningia nordestina \N \N \N \N \N 45134 C.tiburonensis Calochortus Calochortus tiburonensis \N \N \N \N \N 45135 \N genus Parochetus \N \N \N \N \N 45136 A.harmsianum Argyrolobium Argyrolobium harmsianum \N \N \N \N \N 45137 N.nidulans Nassella Nassella nidulans \N \N \N \N \N 45138 C.marantina Calathea Calathea marantina \N \N \N \N \N 45139 \N subspecies Delarbrea montana subsp. montana \N \N \N \N \N 45140 C.flaviflorum Chrysosplenium Chrysosplenium flaviflorum \N \N \N \N \N 45141 I.ambondrombeensis Io Io ambondrombeensis \N \N \N \N \N 45142 F.brevifolia Ficinia Ficinia brevifolia \N \N \N \N \N 45143 \N genus Coccineorchis \N \N \N \N \N 45144 \N subspecies Dactylorhiza incarnata subsp. cruenta \N \N \N \N \N 45147 \N subspecies Banksia laevigata subsp. laevigata \N \N \N \N \N 45148 E.sesamoides Edmondia Edmondia sesamoides \N \N \N \N \N 45149 C.linearifolia Cliffortia Cliffortia linearifolia \N \N \N \N \N 45150 R.diacanthum Ribes Ribes diacanthum \N \N \N \N \N 45151 P.xylosteoides Piper Piper xylosteoides \N \N \N \N \N 45152 \N subspecies Allocasuarina eriochlamys subsp. eriochlamys \N \N \N \N \N 45153 C.kirkii Centemopsis Centemopsis kirkii \N \N \N \N \N 45154 R.gigantea Rhodocoma Rhodocoma gigantea \N \N \N \N \N 45155 E.chihuahuaensis Echeveria Echeveria chihuahuaensis \N \N \N \N \N 45156 P.kurzii Pseudobambusa Pseudobambusa kurzii \N \N \N \N \N 45157 \N subspecies Phagnalon stenolepis subsp. abdulazizianum \N \N \N \N \N 45158 P.pennatifolius Pilocarpus Pilocarpus pennatifolius \N \N \N \N \N 45159 L.940 Lepidium Lepidium sp. 940 \N \N \N \N \N 45160 I.jinicuil Inga Inga jinicuil \N \N \N \N \N 45161 C.megarrhiza Coccinia Coccinia megarrhiza \N \N \N \N \N 45162 E.DES-2011 Eupomatia Eupomatia sp. DES-2011 \N \N \N \N \N 45163 \N subspecies Asterolasia pallida subsp. hyalina \N \N \N \N \N 45164 A.calycosus Astragalus Astragalus calycosus \N \N \N \N \N 45165 \N subtribe Emelianthinae \N \N \N \N \N 45166 M.obcordata Micholitzia Micholitzia obcordata \N \N \N \N \N 45167 V.stenostachyum Veronicastrum Veronicastrum stenostachyum \N \N \N \N \N 45168 C.erythranthum Cynanchum Cynanchum erythranthum \N \N \N \N \N 45169 A.sieboldiana Alnus Alnus sieboldiana \N \N \N \N \N 45170 C.micranthum Combretum Combretum micranthum \N \N \N \N \N 45171 P.foliosus Potamogeton Potamogeton pusillus x Potamogeton foliosus \N \N \N \N \N 45172 P.cruciferum Pterygodium Pterygodium cruciferum \N \N \N \N \N 45173 \N varietas Viburnum erubescens var. prattii \N \N \N \N \N 45174 C.chinense Conioselinum Conioselinum chinense \N \N \N \N \N 45175 C.heyneana Curcuma Curcuma heyneana \N \N \N \N \N 45176 A.lagopoides Aeluropus Aeluropus lagopoides \N \N \N \N \N 45177 A.molybdenus Astragalus Astragalus molybdenus \N \N \N \N \N 45178 S.flexuosa Syagrus Syagrus flexuosa \N \N \N \N \N 45179 S.hindsianum Solanum Solanum hindsianum \N \N \N \N \N 45180 C.banaticum Cerastium Cerastium banaticum \N \N \N \N \N 45181 S.obcordata Scaphochlamys Scaphochlamys obcordata \N \N \N \N \N 45182 A.crassiflorum Aconitum Aconitum crassiflorum \N \N \N \N \N 45183 S.major Soldanella Soldanella major \N \N \N \N \N 45184 P.cavaleriei Paederia Paederia cavaleriei \N \N \N \N \N 45185 I.rothii Indigofera Indigofera rothii \N \N \N \N \N 45186 C.serrata Chaetanthera Chaetanthera serrata \N \N \N \N \N 45187 P.sarmentosa Psychotria Psychotria sarmentosa \N \N \N \N \N 45188 C.elegans Colquhounia Colquhounia elegans \N \N \N \N \N 45189 P.flosculosus Plagius Plagius flosculosus \N \N \N \N \N 45190 A.akaka Allium Allium akaka \N \N \N \N \N 45191 O.secunda Orthilia Orthilia secunda dan ce hua,one-sided wintergreen \N \N \N \N 45192 O.rufipogon Oryza Oryza rufipogon common wild rice,red rice \N \N \N \N 45193 B.deflexa Bunchosia Bunchosia deflexa \N \N \N \N \N 45194 V.caulescens Vallisneria Vallisneria caulescens \N \N \N \N \N 45195 P.trichanthum Panicum Panicum trichanthum \N \N \N \N \N 45196 E.caravata Elleanthus Elleanthus caravata \N \N \N \N \N 45197 F.tropica Freylinia Freylinia tropica \N \N \N \N \N 45198 P.huebneri Polyotidium Polyotidium huebneri \N \N \N \N \N 45199 \N genus Geophila \N \N \N \N \N 45200 \N varietas Sarcococca ruscifolia var. ruscifolia \N \N \N \N \N 45201 B.geminiflora Bonplandia Bonplandia geminiflora \N \N \N \N \N 45202 S.corumbensis Simira Simira corumbensis \N \N \N \N \N 45203 P.spinulosa Pultenaea Pultenaea spinulosa \N \N \N \N \N 45204 E.microspermum Eriocoelum Eriocoelum microspermum \N \N \N \N \N 45205 M.suffruticosa Moltkia Moltkia suffruticosa \N \N \N \N \N 45206 P.obtusata Platanthera Platanthera obtusata \N \N \N \N \N 45207 \N varietas Actinidia rubricaulis var. coriacea \N \N \N \N \N 45208 L.staudtii Lepidobotrys Lepidobotrys staudtii \N \N \N \N \N 45209 N.lindheimeriana Nolina Nolina lindheimeriana devil's-shoestring \N \N \N \N 45210 \N genus Gilia \N \N \N \N \N 45211 B.comberi Berberis Berberis comberi \N \N \N \N \N 52867 \N genus Melliodendron \N \N \N \N \N 45212 R.womersleyi Rhododendron Rhododendron womersleyi \N \N \N \N \N 45213 P.triandra Porodittia Porodittia triandra \N \N \N \N \N 45214 C.atrata Ceratandra Ceratandra atrata \N \N \N \N \N 45215 E.roseum Epipogium Epipogium roseum \N \N \N \N \N 45216 N.cassia Neolitsea Neolitsea cassia \N \N \N \N \N 45217 \N subspecies Centaurea bombycina subsp. bombycina \N \N \N \N \N 45218 \N genus Oreomyrrhis \N \N \N \N \N 45219 A.championii Aristolochia Aristolochia championii \N \N \N \N \N 45220 S.rubrimolle Syzygium Syzygium rubrimolle \N \N \N \N \N 45221 G.curtisii Globba Globba curtisii \N \N \N \N \N 45222 \N genus Amyrea \N \N \N \N \N 45223 M.assurgentiflora Malva Malva assurgentiflora island-mallow \N \N \N \N 45224 S.glastifolius Senecio Senecio glastifolius \N \N \N \N \N 45225 P.minor Persicaria Persicaria minor \N \N \N \N \N 45226 E.oresigena Erica Erica oresigena \N \N \N \N \N 45227 \N genus Huidobria \N \N \N \N \N 45228 B.cultivar Brugmansia Brugmansia hybrid cultivar \N \N \N \N \N 45229 R.gracilentum Rhododendron Rhododendron gracilentum \N \N \N \N \N 45230 C.vulpina Calceolaria Calceolaria vulpina \N \N \N \N \N 45231 V.dasypus Vellozia Vellozia dasypus \N \N \N \N \N 45232 \N varietas Valeriana officinalis var. latifolia \N \N \N \N \N 45233 T.reflexum Trifolium Trifolium reflexum \N \N \N \N \N 45234 O.speciosa Oenothera Oenothera speciosa pink-ladies \N \N \N \N 45235 P.hostmannianum Piper Piper hostmannianum \N \N \N \N \N 45236 T.serrulatum Tetrastigma Tetrastigma serrulatum \N \N \N \N \N 45237 P.egregia Pentastemona Pentastemona egregia \N \N \N \N \N 45238 \N genus Aphloia \N \N \N \N \N 45239 R.humile Ribes Ribes humile \N \N \N \N \N 45240 M.elliptica Morinda Morinda elliptica \N \N \N \N \N 45241 P.geayi Pachypodium Pachypodium geayi \N \N \N \N \N 45242 H.sexstylosa Hoheria Hoheria angustifolia x Hoheria sexstylosa \N \N \N \N \N 45243 J.gossypiifolia Jatropha Jatropha gossypiifolia bellyache bush,black physicnut,erva purgante,mamoninha \N \N \N \N 45244 L.bracteata Leucactinia Leucactinia bracteata \N \N \N \N \N 45245 O.6611 Orobanche Orobanche cf. aegyptiaca HST 6611 \N \N \N \N \N 45246 S.australasica Sambucus Sambucus australasica \N \N \N \N \N 45247 H.glabella Hypoxis Hypoxis glabella \N \N \N \N \N 45248 C.sempervirens Chrysolepis Chrysolepis sempervirens \N \N \N \N \N 45249 S.abscondita Salix Salix abscondita \N \N \N \N \N 45250 C.clandestinum Cynoglossum Cynoglossum clandestinum \N \N \N \N \N 45251 A.korthalsii Aglaia Aglaia korthalsii \N \N \N \N \N 45252 E.macrophyllum Elatostema Elatostema macrophyllum \N \N \N \N \N 45253 P.lasiorrachis Palicourea Palicourea lasiorrachis \N \N \N \N \N 45254 \N varietas Aloysia gratissima var. schulziae \N \N \N \N \N 45255 F.nervosa Ficus Ficus nervosa \N \N \N \N \N 45256 S.C1029 Stenocactus Stenocactus sp. C1029 \N \N \N \N \N 45257 A.brachycarpa Arabis Arabis brachycarpa \N \N \N \N \N 45258 E.chilensis Eriosyce Eriosyce chilensis \N \N \N \N \N 45259 P.marojejyense Canthium Peponidium marojejyense \N \N \N \N \N 45260 E.AB-2005 Eperua Eperua sp. AB-2005 \N \N \N \N \N 45261 O.pimeleoides Olearia Olearia pimeleoides \N \N \N \N \N 45262 H.brasiliana Harpalyce Harpalyce brasiliana \N \N \N \N \N 45263 N.javanica Neolitsea Neolitsea javanica \N \N \N \N \N 45264 \N genus Drymaria \N \N \N \N \N 45265 E.confinis Ebenopsis Ebenopsis confinis \N \N \N \N \N 45266 \N genus Eucommia \N \N \N \N \N 45267 \N subspecies Wislizenia refracta subsp. palmeri \N \N \N \N \N 45268 D.solanacea Dunalia Dunalia solanacea \N \N \N \N \N 45269 D.granadensis Drimys Drimys granadensis \N \N \N \N \N 45270 C.pseudovestitus Cyperus Cyperus pseudovestitus \N \N \N \N \N 45271 \N genus Trixis \N \N \N \N \N 45272 \N subspecies Helleborus multifidus subsp. hercegovinus \N \N \N \N \N 45273 T.spinulosum Thesium Thesium spinulosum \N \N \N \N \N 45274 \N subspecies Ononis hispida subsp. hispida \N \N \N \N \N 45275 D.gigantea Drosera Drosera gigantea \N \N \N \N \N 45276 P.lindigii Phalaris Phalaris lindigii \N \N \N \N \N 45277 A.ranunculoides Anemone Anemone nemorosa x Anemone ranunculoides \N \N \N \N \N 45278 P.arborescens Phonus Phonus arborescens \N \N \N \N \N 45279 B.hieronymi Bromelia Bromelia hieronymi \N \N \N \N \N 45280 \N subspecies Asclepias asperula subsp. capricornu \N \N \N \N \N 45281 E.Esp3 Elleanthus Elleanthus sp. Esp3 \N \N \N \N \N 45282 O.appendiculatum Oxypetalum Oxypetalum appendiculatum \N \N \N \N \N 45283 \N varietas Downingia concolor var. concolor \N \N \N \N \N 45284 H.koyamae Hydrodiscus Hydrodiscus koyamae \N \N \N \N \N 45285 C.pallida Cologania Cologania pallida \N \N \N \N \N 45286 N.leiophyllus Notothixos Notothixos leiophyllus \N \N \N \N \N 45287 H.macrospadix Hydriastele Hydriastele macrospadix \N \N \N \N \N 45288 E.leucantha Euphorbia Euphorbia leucantha \N \N \N \N \N 45289 M.BK39060 Malus Malus sp. BK39060 \N \N \N \N \N 45290 \N genus Cerinthe \N \N \N \N \N 45291 \N genus Milium \N \N \N \N \N 45292 A.pseudoplatanus Acer Acer pseudoplatanus sycamore maple \N \N \N \N 45293 C.castaneoides Cleistes Cleistes castaneoides \N \N \N \N \N 45294 P.hybrida Poa Poa hybrida \N \N \N \N \N 45295 \N genus Dictyandra \N \N \N \N \N 45296 G.heterostyla Geissorhiza Geissorhiza heterostyla \N \N \N \N \N 45297 \N genus Belosynapsis \N \N \N \N \N 45298 R.bequaertii Ranunculus Ranunculus bequaertii \N \N \N \N \N 45299 C.dominicensis Charianthus Charianthus dominicensis \N \N \N \N \N 45300 P.capuronii Phanerodiscus Phanerodiscus capuronii \N \N \N \N \N 45301 O.ibis Oncidium Oncidium ibis \N \N \N \N \N 45302 L.dolichophylla Lactuca Lactuca dolichophylla \N \N \N \N \N 45303 \N genus Cymbocarpum \N \N \N \N \N 45304 M.subulatifolium Microepidendrum Microepidendrum subulatifolium \N \N \N \N \N 45305 D.JLB71 Dendrobium Dendrobium sp. JLB71 \N \N \N \N \N 45306 S.sumatrana Shorea Shorea sumatrana \N \N \N \N \N 45307 C.racemosa Cornus Cornus racemosa panicled dogwood \N \N \N \N 45308 C.tenuis Columnea Columnea tenuis \N \N \N \N \N 45309 E.subinermis Echinocereus Echinocereus subinermis \N \N \N \N \N 45310 \N tribe Coptosapelteae \N \N \N \N \N 45311 H.crucifera Habenaria Habenaria crucifera \N \N \N \N \N 45312 C.echinus Cirsium Cirsium echinus \N \N \N \N \N 45313 O.velleum Oncidium Oncidium velleum \N \N \N \N \N 45314 L.sexdentata Leucas Leucas sexdentata \N \N \N \N \N 45315 B.maculata Bertolonia Bertolonia maculata \N \N \N \N \N 45316 C.dendrotricha Cassiope Cassiope dendrotricha \N \N \N \N \N 45317 S.edule Saccharum officinarum complex Saccharum edule \N \N \N \N \N 45318 H.dentata Hebenstretia Hebenstretia dentata \N \N \N \N \N 45319 N.orientalis Nigella Nigella orientalis \N \N \N \N \N 45320 A.gelasinum Asarum Asarum gelasinum \N \N \N \N \N 45321 \N genus Didymodoxa \N \N \N \N \N 45322 D.eligulata Dichaea Dichaea eligulata \N \N \N \N \N 45323 I.parviflora Impatiens Impatiens parviflora \N \N \N \N \N 45324 D.riedeliana Duguetia Duguetia riedeliana \N \N \N \N \N 45325 M.smaragdinum Monotagma Monotagma smaragdinum \N \N \N \N \N 45326 \N genus Hanguana \N \N \N \N \N 45327 R.pinardi Ranunculus Ranunculus pinardi \N \N \N \N \N 45328 C.60 Coffea Coffea sp. IRD-Montpelier OD 60 \N \N \N \N \N 45329 \N varietas Corylus sieboldiana var. brevirostris \N \N \N \N \N 45330 \N genus Hedycarya \N \N \N \N \N 45331 C.minor Coutoubea Coutoubea minor \N \N \N \N \N 45332 S.japonica Strobilanthes Strobilanthes japonica \N \N \N \N \N 45333 S.wrightii Sedum Sedum wrightii \N \N \N \N \N 45334 L.crassa Leonia Leonia crassa \N \N \N \N \N 45335 A.cissampeloides Adenia Adenia cissampeloides \N \N \N \N \N 45336 N.palmyrensis Nonea Nonea palmyrensis \N \N \N \N \N 45337 C.1154 Coreopsis Coreopsis sp. 1154 \N \N \N \N \N 45338 M.humbertii Meineckia Meineckia humbertii \N \N \N \N \N 45339 N.tristis Neoregelia Neoregelia tristis \N \N \N \N \N 45340 C.unshiu Citrus Citrus reticulata x Citrus unshiu \N \N \N \N \N 45341 \N varietas Hepatica nobilis var. asiatica \N \N \N \N \N 45342 \N genus Coccinia \N \N \N \N \N 45343 C.flava Cobaea Cobaea flava \N \N \N \N \N 45344 B.vacciniifolia Bistorta Bistorta vacciniifolia \N \N \N \N \N 45345 S.occidentalis Senegalia Senegalia occidentalis \N \N \N \N \N 45346 C.sericantha Cortaderia Cortaderia sericantha \N \N \N \N \N 45347 P.schmidtianum Polypleurum Polypleurum schmidtianum \N \N \N \N \N 45348 C.houstoniana Calliandra Calliandra houstoniana \N \N \N \N \N 45349 P.oxyphyllus Potamogeton Potamogeton pusillus x Potamogeton oxyphyllus \N \N \N \N \N 45350 \N family Balanopaceae \N \N \N \N \N 45351 \N genus Anodendron \N \N \N \N \N 45352 \N subspecies Veronica catarractae subsp. catarractae \N \N \N \N \N 45353 O.puberula Ocotea Ocotea puberula \N \N \N \N \N 45354 M.anomala Microplumeria Microplumeria anomala \N \N \N \N \N 45355 R.subcorymbosus Ranunculus Ranunculus subcorymbosus \N \N \N \N \N 45356 \N subspecies Vitex trifolia subsp. litoralis \N \N \N \N \N 45357 C.macradenia Codonanthe Codonanthe macradenia \N \N \N \N \N 45358 T.gemellum Trifolium Trifolium gemellum \N \N \N \N \N 45359 A.petersiana Ancylobothrys Ancylobothrys petersiana \N \N \N \N \N 45360 P.neocaledonica Pycnandra Pycnandra neocaledonica \N \N \N \N \N 45361 S.nimbicola Streptocarpus Streptocarpus nimbicola \N \N \N \N \N 45362 \N subspecies Asclepias vestita subsp. vestita \N \N \N \N \N 45363 P.riparense Piper Piper riparense \N \N \N \N \N 45364 M.lepidura Mnesithea Mnesithea lepidura \N \N \N \N \N 45365 C.elaeagnoides Capparis Capparis elaeagnoides \N \N \N \N \N 45366 P.latihila Planchonella Planchonella latihila \N \N \N \N \N 45367 \N varietas Pentameris pictigluma var. gracilis \N \N \N \N \N 45368 \N genus Cota \N \N \N \N \N 45369 \N genus Stapelianthus \N \N \N \N \N 45370 A.peruviana Aristolochia Aristolochia peruviana \N \N \N \N \N 45371 B.campestris Bactris Bactris campestris \N \N \N \N \N 45372 \N genus Pholisma \N \N \N \N \N 45373 R.africana Randonia Randonia africana \N \N \N \N \N 45374 H.caudatifolia Hedyotis Hedyotis caudatifolia \N \N \N \N \N 45375 \N genus Agrostis bent grasses,bents \N \N \N \N 45376 \N genus Bonania \N \N \N \N \N 45377 H.adscendens Harrisia Harrisia adscendens \N \N \N \N \N 45378 H.oblongifolium Hypericum Hypericum oblongifolium \N \N \N \N \N 45379 A.amazonicus Anthodiscus Anthodiscus amazonicus \N \N \N \N \N 45380 S.implicata Salsola Salsola implicata \N \N \N \N \N 45381 L.grayi Lilium Lilium grayi \N \N \N \N \N 45382 G.ruizii Gentianella Gentianella ruizii \N \N \N \N \N 45383 C.sylvaticum Cerastium Cerastium sylvaticum \N \N \N \N \N 45384 G.saundersii Gladiolus Gladiolus saundersii \N \N \N \N \N 45385 A.suaveolens Acacia Acacia suaveolens \N \N \N \N \N 45386 V.hectorii Hebe Veronica hectorii \N \N \N \N \N 45387 T.56 Tamarix Tamarix cf. ramosissima 56 \N \N \N \N \N 45388 C.stenopetalum Colchicum Colchicum stenopetalum \N \N \N \N \N 45389 \N genus Owenia \N \N \N \N \N 45390 P.wrightii Potamogeton Potamogeton distinctus x Potamogeton wrightii \N \N \N \N \N 45391 \N genus Formania \N \N \N \N \N 45392 M.HS590 Momordica Momordica sp. HS590 \N \N \N \N \N 45393 S.gemmipara Saxifraga Saxifraga gemmipara \N \N \N \N \N 45394 \N varietas Pedicularis bracteosa var. latifolia \N \N \N \N \N 45395 O.vaginalis Ononis Ononis vaginalis \N \N \N \N \N 45396 E.condylotricha Euclasta Euclasta condylotricha \N \N \N \N \N 45397 M.pseudoglaziovii Manihot Manihot pseudoglaziovii \N \N \N \N \N 45398 S.linderi Schizocolea Schizocolea linderi \N \N \N \N \N 45399 C.longpasiaensis Coelogyne Coelogyne longpasiaensis \N \N \N \N \N 45400 C.nanum Colchicum Colchicum nanum \N \N \N \N \N 45401 N.caerulescens Noccaea Noccaea caerulescens \N \N \N \N \N 45402 L.P4078 Lolium Lolium sp. P4078 \N \N \N \N \N 45403 R.humilis Rosenia Rosenia humilis \N \N \N \N \N 45404 \N subfamily Blossfeldioideae \N \N \N \N \N 45405 I.mocquerysii Ixora Ixora mocquerysii \N \N \N \N \N 45406 \N genus Catananche \N \N \N \N \N 45407 O.pedunculare Ophthalmoblapton Ophthalmoblapton pedunculare \N \N \N \N \N 45408 S.supinum Solanum Solanum supinum \N \N \N \N \N 45409 \N genus Cotylelobium \N \N \N \N \N 45410 A.obcordata Aspidopterys Aspidopterys obcordata \N \N \N \N \N 45411 P.texana Prunus Prunus texana Texas peachbush \N \N \N \N 45412 G.trimera Guettarda Guettarda trimera \N \N \N \N \N 45413 P.rubricaulis Potentilla Potentilla rubricaulis \N \N \N \N \N 45414 T.SH-2010 Thevetia Thevetia sp. SH-2010 \N \N \N \N \N 45415 A.pumilum Aptosimum Aptosimum pumilum \N \N \N \N \N 45416 C.dilatata Calceolaria Calceolaria dilatata \N \N \N \N \N 45417 N.kurdica Nepeta Nepeta kurdica \N \N \N \N \N 45418 P.adenophorum Panicum Panicum adenophorum \N \N \N \N \N 45419 F.hispida Ficus Ficus hispida \N \N \N \N \N 45420 G.phaeum Geranium Geranium phaeum \N \N \N \N \N 45421 R.lichenoxenos Rytigynia Rytigynia lichenoxenos \N \N \N \N \N 45422 T.melaenodendron Triplaris Triplaris melaenodendron \N \N \N \N \N 45423 A.andicola Amicia Amicia andicola \N \N \N \N \N 45424 D.elata Draba Draba elata \N \N \N \N \N 45425 \N family Orchidaceae orchid family \N \N \N \N 45426 \N genus Baccharoides \N \N \N \N \N 45427 M.salicifolium Menepetalum Menepetalum salicifolium \N \N \N \N \N 45428 E.osiris Echinodorus Echinodorus osiris \N \N \N \N \N 45429 S.hancei Syzygium Syzygium hancei \N \N \N \N \N 45430 \N genus Degenia \N \N \N \N \N 45431 B.dissectifolia Brachyscome Brachyscome dissectifolia \N \N \N \N \N 45432 R.longipedunculata Ruellia Ruellia longipedunculata \N \N \N \N \N 45433 W.stenopetala Waireia Waireia stenopetala \N \N \N \N \N 45434 P.pospischilii Paederia Paederia pospischilii \N \N \N \N \N 45435 G.affinis Gomidesia Gomidesia affinis \N \N \N \N \N 45436 M.rotundilabia Maxillaria Maxillaria rotundilabia \N \N \N \N \N 45437 C.perpulchrum Chrysophyllum Chrysophyllum perpulchrum \N \N \N \N \N 45438 \N varietas Bursera fagaroides var. elongata \N \N \N \N \N 45439 M.Sandymount Melicytus Melicytus sp. Sandymount \N \N \N \N \N 45440 S.globosa Scaevola Scaevola globosa \N \N \N \N \N 45441 H.novogaliciana Heliopsis Heliopsis novogaliciana \N \N \N \N \N 45442 M.armillaris Melaleuca Melaleuca armillaris \N \N \N \N \N 45443 B.elegans Brassaiopsis Brassaiopsis elegans \N \N \N \N \N 45444 \N genus Anginon \N \N \N \N \N 45445 \N genus Tetracarpidium \N \N \N \N \N 45446 A.lehmannianus Astragalus Astragalus lehmannianus \N \N \N \N \N 45447 \N genus Podolobium \N \N \N \N \N 45448 M.himalaica Maddenia Maddenia himalaica \N \N \N \N \N 45449 E.183 Elatostema Elatostema aff. velutinicaule Hadiah 183 \N \N \N \N \N 45450 \N subspecies Crepis multicaulis subsp. congesta \N \N \N \N \N 45451 B.cruciata Buchnera Buchnera cruciata \N \N \N \N \N 45452 D.vespertilio Dracula Dracula vespertilio \N \N \N \N \N 45453 \N genus Oreobliton \N \N \N \N \N 45454 P.depressa Pilea Pilea depressa \N \N \N \N \N 45455 H.graecum Hymenonema Hymenonema graecum \N \N \N \N \N 45456 S.nudiflorum Sphaerolobium Sphaerolobium nudiflorum \N \N \N \N \N 45457 C.yatabeanum Cypripedium Cypripedium yatabeanum \N \N \N \N \N 45458 C.forbesii Calyptrocalyx Calyptrocalyx forbesii \N \N \N \N \N 45459 P.flava Pimelea Pimelea flava \N \N \N \N \N 45460 M.speciosissima Mimosa Mimosa speciosissima \N \N \N \N \N 45461 \N subspecies Crocus biflorus subsp. melantherus \N \N \N \N \N 45462 R.klamathensis Rudbeckia Rudbeckia klamathensis \N \N \N \N \N 45463 S.pinifolius Sorocephalus Sorocephalus pinifolius \N \N \N \N \N 45464 I.persica Iris Iris persica Persian iris \N \N \N \N 45465 \N genus Symmeria \N \N \N \N \N 45466 S.tuberosus Steptorhamphus Steptorhamphus tuberosus \N \N \N \N \N 45467 M.jaime-hintonii Muhlenbergia Muhlenbergia jaime-hintonii \N \N \N \N \N 45468 \N genus Semaphyllanthe \N \N \N \N \N 45469 O.volubilis Otomeria Otomeria volubilis \N \N \N \N \N 45470 L.tuyrana Lecythis Lecythis tuyrana \N \N \N \N \N 45471 M.pomifera Machilus Machilus pomifera \N \N \N \N \N 45472 \N genus Hazomalania \N \N \N \N \N 45473 M.mojavensis Mentzelia Mentzelia mojavensis \N \N \N \N \N 45474 J.elegans Jasminum Jasminum elegans \N \N \N \N \N 45475 \N varietas Capsicum baccatum var. pendulum Peruvian pepper,aji,chinchi uchu,escabeche,piment chien \N \N \N \N 45476 D.10766 Descurainia Descurainia cf. erodiifolia Roig 10766 \N \N \N \N \N 45477 C.teucrioides Calceolaria Calceolaria teucrioides \N \N \N \N \N 45478 \N subspecies Aletes macdougalii subsp. breviradiatus \N \N \N \N \N 45479 P.lamerei Pachypodium Pachypodium lamerei \N \N \N \N \N 45480 S.radicans Scirpus Scirpus radicans \N \N \N \N \N 45481 E.gymnonota Euphorbia Euphorbia gymnonota \N \N \N \N \N 45482 C.assiniboinensis Carex Carex assiniboinensis \N \N \N \N \N 45483 S.V74 Saintpaulia Saintpaulia sp. V74 \N \N \N \N \N 45484 H.maroccana Hertia Hertia maroccana \N \N \N \N \N 45485 A.maackii Aster Aster maackii \N \N \N \N \N 45486 L.montana Liparis Liparis montana \N \N \N \N \N 45487 \N genus Champereia \N \N \N \N \N 45488 P.japonica Persea Persea japonica \N \N \N \N \N 45489 T.pubescens Thymelaea Thymelaea pubescens \N \N \N \N \N 45490 A.crassum Aridarum Aridarum crassum \N \N \N \N \N 45491 C.fysonii Crotalaria Crotalaria fysonii \N \N \N \N \N 45492 \N subspecies Pinguicula longifolia subsp. longifolia \N \N \N \N \N 45493 A.integerrima Anastrabe Anastrabe integerrima \N \N \N \N \N 45494 \N genus Cyrtandra \N \N \N \N \N 45495 \N genus Weddellina \N \N \N \N \N 45496 \N subspecies Heracleum sphondylium subsp. transsilvanicum \N \N \N \N \N 45497 C.turcica Crepis Crepis turcica \N \N \N \N \N 45498 \N varietas Arisaema nikoense var. alpicola \N \N \N \N \N 45499 \N subspecies Aridaria noctiflora subsp. defoliata \N \N \N \N \N 45500 \N varietas Tragopogon buphthalmoides var. buphthalmoides \N \N \N \N \N 45501 M.H219 Merwilla Merwilla sp. Puff H219 \N \N \N \N \N 45502 R.mariae Rhododendron Rhododendron mariae \N \N \N \N \N 45503 A.fulgens Aechmea Aechmea fulgens \N \N \N \N \N 45504 B.palmata Begonia Begonia palmata \N \N \N \N \N 45505 I.brevipes Isatis Isatis brevipes \N \N \N \N \N 45506 C.T42 Corycium Corycium sp. T42 \N \N \N \N \N 45507 C.02-75 Cistanthe Cistanthe sp. Hershkovitz 02-75 \N \N \N \N \N 45508 P.intermedium Paspalum Paspalum intermedium \N \N \N \N \N 45509 L.viscosa Lamourouxia Lamourouxia viscosa \N \N \N \N \N 45510 T.resupinatum Trifolium Trifolium resupinatum \N \N \N \N \N 45511 P.niruri Phyllanthus Phyllanthus niruri \N \N \N \N \N 45512 S.longisperma Shorea Shorea longisperma \N \N \N \N \N 45513 \N genus Fieldia \N \N \N \N \N 45514 S.kirilowii Sorbaria Sorbaria kirilowii \N \N \N \N \N 45515 S.connatum Smyrnium Smyrnium connatum \N \N \N \N \N 45516 D.fruticosa Dissotis Dissotis fruticosa \N \N \N \N \N 45517 C.98 Carpotroche Carpotroche sp. Alford 98 \N \N \N \N \N 45518 \N genus Evotella \N \N \N \N \N 45519 L.gibertii Limonium Limonium gibertii \N \N \N \N \N 45520 H.guangdongensis Hilliella Hilliella guangdongensis \N \N \N \N \N 45521 K.lappacea Krameria Krameria lappacea \N \N \N \N \N 45522 N.eymae Nepenthes Nepenthes eymae \N \N \N \N \N 45523 L.formosus Lupinus Lupinus formosus \N \N \N \N \N 45524 P.biglandulare Panicum Panicum biglandulare \N \N \N \N \N 45525 M.somnians Mimosa Mimosa somnians \N \N \N \N \N 45526 C.kilimandscharica Crambe Crambe kilimandscharica \N \N \N \N \N 45527 C.boliviensis Cortaderia Cortaderia boliviensis \N \N \N \N \N 45528 A.retroflexa Aspalathus Aspalathus retroflexa \N \N \N \N \N 45529 \N genus Loudetia \N \N \N \N \N 45530 L.agrestis Leandra Leandra agrestis \N \N \N \N \N 45531 E.cassia Euphorbia Euphorbia cassia \N \N \N \N \N 45532 C.latens Conostylis Conostylis latens \N \N \N \N \N 45533 C.rotundifolium Camptoloma Camptoloma rotundifolium \N \N \N \N \N 45534 S.magnifolia Senna Senna magnifolia \N \N \N \N \N 45535 M.bipinnatifida Montanoa Montanoa bipinnatifida \N \N \N \N \N 45536 \N genus Archanthemis \N \N \N \N \N 45537 L.floridana Lactuca Lactuca floridana \N \N \N \N \N 45538 E.simulata Echinacea Echinacea paradoxa x Echinacea simulata \N \N \N \N \N 45539 F.officinalis Fumaria Fumaria officinalis common fumitory,earth-smoke,wax-dolls \N \N \N \N 45540 E.membranaceum Epithema Epithema membranaceum \N \N \N \N \N 45541 B.pappulosa Bellis Bellis pappulosa \N \N \N \N \N 45542 \N varietas Spiraea japonica var. stellaris \N \N \N \N \N 45543 S.325 Stellaria Stellaria sp. 325 \N \N \N \N \N 45544 C.3367 Crotalaria Crotalaria sp. Van Wyk 3367 \N \N \N \N \N 45545 P.2297 Pauridiantha Pauridiantha sp. Deured 2297 \N \N \N \N \N 45546 A.deamii Aeschynomene Aeschynomene deamii \N \N \N \N \N 45547 C.macedonicum Colchicum Colchicum macedonicum \N \N \N \N \N 45548 \N tribe Mimoseae \N \N \N \N \N 45549 N.lagascae Nassauvia Nassauvia lagascae \N \N \N \N \N 45550 G.rechingeri Gongylotaxis Gongylotaxis rechingeri \N \N \N \N \N 45551 C.nobile Cremosperma Cremosperma nobile \N \N \N \N \N 45552 \N genus Australopyrum \N \N \N \N \N 45553 A.decipiens Atraphaxis Atraphaxis decipiens \N \N \N \N \N 45554 L.954750075 Lycium Lycium cf. chinense Nijmegen 954750075 \N \N \N \N \N 45555 \N subspecies Centaurea triumfettii subsp. adscendens \N \N \N \N \N 45556 S.parvibracteata Sanchezia Sanchezia parvibracteata \N \N \N \N \N 45557 \N genus Clarisia \N \N \N \N \N 45558 G.laciniata Grindelia Grindelia laciniata \N \N \N \N \N 45559 P.vivax Phyllostachys Phyllostachys vivax \N \N \N \N \N 45560 C.transnokoensis Camellia Camellia transnokoensis \N \N \N \N \N 45561 A.rubiginosa Aechmea Aechmea rubiginosa \N \N \N \N \N 45562 A.pallidus Anisochilus Anisochilus pallidus \N \N \N \N \N 45563 Z.megacephala Zaluzania Zaluzania megacephala \N \N \N \N \N 45564 A.parnesia Anthemis Anthemis parnesia \N \N \N \N \N 45565 C.saccatum Catasetum Catasetum saccatum \N \N \N \N \N 45566 \N family Asteliaceae \N \N \N \N \N 45567 M.SH-2010 Mischocarpus Mischocarpus sp. SH-2010 \N \N \N \N \N 45568 C.franchetiana Cardamine Cardamine franchetiana \N \N \N \N \N 45569 \N subspecies Lyonothamnus floribundus subsp. floribundus Catalina ironwood \N \N \N \N 45570 D.ampullare Drepanostachyum Drepanostachyum ampullare \N \N \N \N \N 45571 \N genus Acca \N \N \N \N \N 45572 D.myricoides Distylium Distylium myricoides \N \N \N \N \N 45573 L.corallina Lymania Lymania corallina \N \N \N \N \N 45574 P.transvaalense Pelargonium Pelargonium transvaalense \N \N \N \N \N 45575 L.deflexa Leucas Leucas deflexa \N \N \N \N \N 45576 P.isthmicus Peltastes Peltastes isthmicus \N \N \N \N \N 45577 \N varietas Bupleurum longicaule var. amplexicaule \N \N \N \N \N 45578 L.asperrimus Leontodon Leontodon asperrimus \N \N \N \N \N 45579 A.californica Adolphia Adolphia californica California prickbush \N \N \N \N 45580 B.oblongata Badiera Badiera oblongata \N \N \N \N \N 45581 S.kamerunensis Staudtia Staudtia kamerunensis \N \N \N \N \N 45582 G.wolfii Graphephorum Graphephorum wolfii \N \N \N \N \N 45583 A.divaricata Arytera Arytera divaricata \N \N \N \N \N 45584 P.hildebrandtii Pulicaria Pulicaria hildebrandtii \N \N \N \N \N 45585 C.pedatifolia Cucurbita Cucurbita pedatifolia \N \N \N \N \N 45586 M.widgrenii Mollinedia Mollinedia widgrenii \N \N \N \N \N 45587 R.micrantha Rosa Rosa micrantha \N \N \N \N \N 45588 H.drepanocarpa Hoffmannseggia Hoffmannseggia drepanocarpa sicklepod holdback \N \N \N \N 45589 \N subspecies Erophaca baetica subsp. orientalis \N \N \N \N \N 45590 W.gracilis Wendtia Wendtia gracilis \N \N \N \N \N 45591 P.triphyllus Penstemon Penstemon triphyllus \N \N \N \N \N 45592 S.thomsonii Solanum Solanum thomsonii \N \N \N \N \N 45593 S.gracilis Spartina Spartina gracilis alkali cordgrass \N \N \N \N 45594 \N genus Araeococcus \N \N \N \N \N 45595 H.wrightii Halodule Halodule wrightii \N \N \N \N \N 45596 U.clavata Uvaria Uvaria clavata \N \N \N \N \N 45597 S.passerina Salsola Salsola passerina \N \N \N \N \N 45598 R.luchunensis Rhaphidophora Rhaphidophora luchunensis \N \N \N \N \N 45599 B.lancangensis Begonia Begonia lancangensis \N \N \N \N \N 45600 E.pulchella Erica Erica pulchella \N \N \N \N \N 45601 \N varietas Muhlenbergia villiflora var. villosa \N \N \N \N \N 45602 W.neotropica Wolffiella Wolffiella neotropica \N \N \N \N \N 45603 S.heptapotamica Salsola Salsola heptapotamica \N \N \N \N \N 45604 F.scoparia Fagonia Fagonia scoparia \N \N \N \N \N 45605 R.morongii Ruellia Ruellia morongii \N \N \N \N \N 45606 C.CHR514290 Craspedia Craspedia sp. CHR514290 \N \N \N \N \N 45607 \N genus Henophyton \N \N \N \N \N 45608 Z.laxiflora Zieria Zieria laxiflora \N \N \N \N \N 45609 P.fastigiata Parapolydora Parapolydora fastigiata \N \N \N \N \N 45610 E.sample environmental samples Taxonomy:531425 Eucalyptus environmental sample \N \N \N \N \N 45611 \N subspecies Argemone pleiacantha subsp. pleiacantha \N \N \N \N \N 45612 S.mystax Stelis Stelis mystax \N \N \N \N \N 45613 \N genus Potalia \N \N \N \N \N 45614 R.marchionensis Reynoldsia Reynoldsia marchionensis \N \N \N \N \N 45615 K.kewensis Kalanchoe Kalanchoe kewensis \N \N \N \N \N 45616 E.subspinosa Eversmannia Eversmannia subspinosa \N \N \N \N \N 45617 V.formosa Labiatoides Veronica formosa \N \N \N \N \N 45618 T.pierotii Tephroseris Tephroseris pierotii \N \N \N \N \N 45619 V.guerreroana Vernonia Vernonia guerreroana \N \N \N \N \N 45620 S.clathrata Salix Salix clathrata \N \N \N \N \N 45621 S.JW5140 Strychnos Strychnos sp. JW5140 \N \N \N \N \N 45622 F.polyantha Ficus Ficus polyantha \N \N \N \N \N 45623 P.millegrana Paspalum Paspalum millegrana \N \N \N \N \N 45624 A.alpina Antennaria Antennaria alpina \N \N \N \N \N 45625 \N genus Micropyropsis \N \N \N \N \N 45626 V.zizanioides Vetiveria Vetiveria zizanioides cuscus grass,khus-khus,vetivergrass \N \N \N \N 45627 S.africana Sebaea Sebaea africana \N \N \N \N \N 45628 L.divaricata Luzula Luzula divaricata \N \N \N \N \N 45629 \N subspecies Perideridia parishii subsp. latifolia \N \N \N \N \N 45630 \N genus Nemacladus \N \N \N \N \N 45631 \N subspecies Gilia cana subsp. triceps \N \N \N \N \N 45632 C.bracteata Corydalis Corydalis bracteata \N \N \N \N \N 45633 \N no rank unclassified Orobanchaceae \N \N \N \N \N 45634 A.glaucescens Alchemilla Alchemilla glaucescens \N \N \N \N \N 45635 S.thomasiifolium Solanum Solanum thomasiifolium \N \N \N \N \N 45636 C.refractus Cymbopogon Cymbopogon refractus \N \N \N \N \N 45637 K.graminea Koellensteinia Koellensteinia graminea \N \N \N \N \N 45638 I.comptonii Ixora Ixora comptonii \N \N \N \N \N 45639 A.macrophylla Argomuellera Argomuellera macrophylla \N \N \N \N \N 45640 \N genus Eloyella \N \N \N \N \N 45641 B.cubensis Bonnetia Bonnetia cubensis \N \N \N \N \N 45642 S.exarata Saxifraga Saxifraga exarata \N \N \N \N \N 45643 B.insculpta Bothriochloa Bothriochloa insculpta \N \N \N \N \N 45644 T.anomala Tylophora Tylophora anomala \N \N \N \N \N 45645 A.hunanense Arisaema Arisaema hunanense \N \N \N \N \N 45646 B.stellatum Bupleurum Bupleurum stellatum \N \N \N \N \N 45647 L.bachmaensis Licuala Licuala bachmaensis \N \N \N \N \N 45648 \N varietas Leucaena confertiflora var. confertiflora \N \N \N \N \N 45649 \N genus Goetzea \N \N \N \N \N 45650 A.loesneriana Alyxia Alyxia loesneriana \N \N \N \N \N 45651 T.reliquum Trillium Trillium reliquum \N \N \N \N \N 45652 E.fluitans Eryngium Eryngium fluitans \N \N \N \N \N 45653 \N family Tetrachondraceae \N \N \N \N \N 45654 \N subspecies Rotheca myricoides subsp. napperae \N \N \N \N \N 45655 A.consobrinum Anthurium Anthurium consobrinum \N \N \N \N \N 45656 \N varietas Oenocarpus bataua var. oligocarpus \N \N \N \N \N 45657 E.verdoorniae Eugenia Eugenia verdoorniae \N \N \N \N \N 45658 \N genus Zeltnera \N \N \N \N \N 45659 E.orthoclada Euphorbia Euphorbia orthoclada \N \N \N \N \N 45660 E.diversifolia Eucalyptus Eucalyptus diversifolia \N \N \N \N \N 45661 C.buchananii Carex Carex buchananii \N \N \N \N \N 45662 S.steenisiana Strobilanthes Strobilanthes steenisiana \N \N \N \N \N 45663 S.hupehensis Silene Silene hupehensis \N \N \N \N \N 45664 C.decapetala Caesalpinia Caesalpinia decapetala shoofly \N \N \N \N 45665 B.rubiginosa Baumea Baumea rubiginosa \N \N \N \N \N 45666 P.orientale Papaver Papaver orientale Oriental poppy \N \N \N \N 45667 P.longisepala Physostegia Physostegia longisepala \N \N \N \N \N 45668 S.sonoharae Symplocos Symplocos sonoharae \N \N \N \N \N 45669 A.paulistana Aristolochia Aristolochia paulistana \N \N \N \N \N 45670 H.moserianum Hypericum Hypericum x moserianum \N \N \N \N \N 45671 \N varietas Arbutus xalapensis var. texana \N \N \N \N \N 45672 C.pearsonii Callistemon Callistemon pearsonii \N \N \N \N \N 45673 \N subspecies Pseudoroegneria strigosa subsp. aegilopoides \N \N \N \N \N 45674 T.MAG-2009 Tovomita Tovomita sp. 4 MAG-2009 \N \N \N \N \N 45675 P.alaskensis Phlox Phlox alaskensis \N \N \N \N \N 45676 C.tybakiensis Crepis Crepis tybakiensis \N \N \N \N \N 45677 A.PS2014MT01 Aconitum Aconitum sp. PS2014MT01 \N \N \N \N \N 45678 C.chlorosarca Crataegus Crataegus chlorosarca \N \N \N \N \N 45679 N.cubensis Neomezia Neomezia cubensis \N \N \N \N \N 45680 B.varipeltata Begonia Begonia varipeltata \N \N \N \N \N 45681 S.tenerrimus Sonchus Sonchus tenerrimus \N \N \N \N \N 45682 F.menabeensis Ficus Ficus menabeensis \N \N \N \N \N 45683 L.juncea Lygodesmia Lygodesmia juncea \N \N \N \N \N 45684 S.araliacea Steganotaenia Steganotaenia araliacea \N \N \N \N \N 45685 P.alpicola Primula Primula alpicola \N \N \N \N \N 45686 P.laetispicum Piper Piper laetispicum \N \N \N \N \N 45687 E.rubiginosum Erioglossum Erioglossum rubiginosum \N \N \N \N \N 45688 P.hasslerianus Priogymnanthus Priogymnanthus hasslerianus \N \N \N \N \N 45689 G.21-9274A Guatteria Guatteria cf. hilariana Gottsberger and Gottsberger 21-9274A \N \N \N \N \N 45690 H.bicolor Hymenidium Hymenidium bicolor \N \N \N \N \N 45691 R.anomalus Raukaua Raukaua anomalus \N \N \N \N \N 45692 A.WP4D0905 Aphanamixis Aphanamixis sp. WP4D0905 \N \N \N \N \N 45693 S.canaliculata Saxifraga Saxifraga canaliculata \N \N \N \N \N 45694 S.ancistrochaetus Scirpus Scirpus ancistrochaetus \N \N \N \N \N 45695 S.chirayta Swertia Swertia chirayta \N \N \N \N \N 45696 P.pansum Panicum Panicum pansum \N \N \N \N \N 52868 \N genus Pereilema \N \N \N \N \N 45697 P.macroceras Pausinystalia Pausinystalia macroceras \N \N \N \N \N 45698 O.bisexualis Oxychloe Oxychloe bisexualis \N \N \N \N \N 45699 M.tenuifolia Macowania Macowania tenuifolia \N \N \N \N \N 45700 S.crassifolia Stewartia Stewartia crassifolia \N \N \N \N \N 45701 C.taxifolium Conospermum Conospermum taxifolium \N \N \N \N \N 45702 \N genus Hedypnois \N \N \N \N \N 45703 \N subspecies Ulex parviflorus subsp. parviflorus \N \N \N \N \N 45704 E.capensis Ekebergia Ekebergia capensis \N \N \N \N \N 45705 C.radiata Caucaea Caucaea radiata \N \N \N \N \N 45706 \N varietas Chamaecrista desvauxii var. glauca \N \N \N \N \N 45707 \N genus Rostkovia \N \N \N \N \N 45708 A.schelichowii Astragalus Astragalus schelichowii \N \N \N \N \N 45709 G.stenocarpum Gastrolobium Gastrolobium stenocarpum \N \N \N \N \N 45710 C.nervina Carex Carex nervina \N \N \N \N \N 45711 I.thibaudiana Inga Inga thibaudiana \N \N \N \N \N 45712 B.ciliata Belosynapsis Belosynapsis ciliata \N \N \N \N \N 45713 M.pondii Mammillaria Mammillaria pondii \N \N \N \N \N 45714 N.stokoei Nebelia Nebelia stokoei \N \N \N \N \N 45715 B.modica Besleria Besleria modica \N \N \N \N \N 45716 \N subspecies Silene integripetala subsp. integripetala \N \N \N \N \N 45717 \N family Asteropeiaceae \N \N \N \N \N 45718 P.stileferum Piper Piper stileferum \N \N \N \N \N 45719 C.mildrediae Clarkia Clarkia mildrediae \N \N \N \N \N 45720 \N genus Jacaratia \N \N \N \N \N 45721 S.grandis Sredinskya Sredinskya grandis \N \N \N \N \N 45722 L.berlandieri Linum Linum berlandieri \N \N \N \N \N 45723 L.majuscula Licania Licania majuscula \N \N \N \N \N 45724 X.papuana Xanthomyrtus Xanthomyrtus papuana \N \N \N \N \N 45725 M.montana Maclurochloa Maclurochloa montana \N \N \N \N \N 45726 P.mollis Pedicularis Pedicularis mollis \N \N \N \N \N 45727 P.turkestana Piptoptera Piptoptera turkestana \N \N \N \N \N 45728 A.garbancillo Astragalus Astragalus garbancillo \N \N \N \N \N 45729 \N subspecies Claytonia parviflora subsp. grandiflora \N \N \N \N \N 45730 C.bungei Clerodendrum Clerodendrum bungei \N \N \N \N \N 45731 S.incrassatus Senecio Senecio incrassatus \N \N \N \N \N 45732 G.alexeenkoana Gagea Gagea alexeenkoana \N \N \N \N \N 45733 V.natans Vallisneria Vallisneria natans \N \N \N \N \N 45734 D.rupestre Dracocephalum Dracocephalum rupestre \N \N \N \N \N 45735 P.TB-2011 Pedersenia Pedersenia sp. TB-2011 \N \N \N \N \N 45736 \N subspecies Triaspis hypericoides subsp. nelsonii \N \N \N \N \N 45737 \N genus Chirita \N \N \N \N \N 45738 A.contractum Achnatherum Achnatherum contractum \N \N \N \N \N 45739 C.jamiesonii Comparettia Comparettia jamiesonii \N \N \N \N \N 45740 \N genus Sclerocactus \N \N \N \N \N 45741 P.virgata Polygala Polygala virgata \N \N \N \N \N 45742 F.dryepondtiana Ficus Ficus dryepondtiana \N \N \N \N \N 45743 P.heterophylla Patrinia Patrinia heterophylla \N \N \N \N \N 45744 C.drummondii Chamelaucium Chamelaucium drummondii \N \N \N \N \N 45745 E.mirabilis Echinopsis Echinopsis mirabilis \N \N \N \N \N 45746 \N subspecies Armeria arenaria subsp. confusa \N \N \N \N \N 45747 M.pumila Malus Malus pumila paradise apple,ping guo \N \N \N \N 45748 D.bernhardii Datura Datura bernhardii \N \N \N \N \N 45749 \N no rank unclassified Triticeae \N \N \N \N \N 45750 L.saponarioides Lisianthius Lisianthius saponarioides \N \N \N \N \N 45751 P.maculata Pinanga Pinanga maculata \N \N \N \N \N 45752 \N genus Crepidorhopalon \N \N \N \N \N 45753 I.campanulata Isolona Isolona campanulata \N \N \N \N \N 45754 A.multiflora Aegiphila Aegiphila multiflora \N \N \N \N \N 45755 \N genus Polytaxis \N \N \N \N \N 45756 Q.MG386 Quapoya Quapoya sp. MG386 \N \N \N \N \N 45757 \N subspecies Polygonum cognatum subsp. cognatum \N \N \N \N \N 45758 \N varietas Oxytropis oreophila var. juniperina \N \N \N \N \N 45759 A.nicolsonii Aridarum Aridarum nicolsonii \N \N \N \N \N 45760 \N genus Anchonium \N \N \N \N \N 45761 \N varietas Calotis scabiosifolia var. scabiosifolia \N \N \N \N \N 45762 A.suarezensis Abrahamia Abrahamia suarezensis \N \N \N \N \N 45763 E.planchoniana Eucalyptus Eucalyptus planchoniana \N \N \N \N \N 45764 A.giganteum Androtrichum Androtrichum giganteum \N \N \N \N \N 45765 G.viscosum Gnaphalium Gnaphalium viscosum \N \N \N \N \N 45766 S.holstii Streptocarpus Streptocarpus holstii \N \N \N \N \N 45767 G.calcaratus Gasteranthus Gasteranthus calcaratus \N \N \N \N \N 45768 A.pinaster Allocasuarina Allocasuarina pinaster \N \N \N \N \N 45769 G.benthamiana Gongylolepis Gongylolepis benthamiana \N \N \N \N \N 45770 B.variegata Bauhinia Bauhinia variegata mountain ebony,orchid tree \N \N \N \N 45771 I.setacea Isolepis Isolepis setacea \N \N \N \N \N 45772 M.galpinii Metalasia Metalasia galpinii \N \N \N \N \N 45773 A.ravenii Anthurium Anthurium ravenii \N \N \N \N \N 45774 G.lowryi Gaertnera Gaertnera lowryi \N \N \N \N \N 45775 U.gracilipes Uvaria Uvaria gracilipes \N \N \N \N \N 45776 E.corneri Etlingera Etlingera corneri \N \N \N \N \N 45777 \N genus Psilotrichum \N \N \N \N \N 45778 C.frigida Cistanthe Cistanthe frigida \N \N \N \N \N 45779 C.divergens Ceanothus Ceanothus divergens \N \N \N \N \N 45780 E.rotundifolium Eupatorium Eupatorium rotundifolium roundleaf thoroughwort \N \N \N \N 45781 G.dinhensis Glycosmis Glycosmis dinhensis \N \N \N \N \N 45782 W.W010 Withania Withania sp. W010 \N \N \N \N \N 45783 S.macrobotrys Strongylodon Strongylodon macrobotrys \N \N \N \N \N 45784 C.debarensis Campanula Campanula debarensis \N \N \N \N \N 45785 P.rurivagum Polygonum Polygonum rurivagum \N \N \N \N \N 45786 C.speciosa Cousinia Cousinia speciosa \N \N \N \N \N 45787 \N genus Oxyrhachis \N \N \N \N \N 45788 \N genus Amphidasya \N \N \N \N \N 45789 A.torresii Arachnothryx Arachnothryx torresii \N \N \N \N \N 45790 O.leptocalyx Oxalis Oxalis leptocalyx \N \N \N \N \N 45791 M.wendlandii Myrmecophila Myrmecophila wendlandii \N \N \N \N \N 45792 M.aquaticum Myosoton Myosoton aquaticum \N \N \N \N \N 45793 \N subspecies Echinops ritro subsp. ritro \N \N \N \N \N 45794 O.matudae Opuntia Opuntia matudae \N \N \N \N \N 45795 M.nivea Munnozia Munnozia nivea \N \N \N \N \N 45796 L.micrantha Lindernia Lindernia micrantha \N \N \N \N \N 45797 P.lorea Protea Protea lorea \N \N \N \N \N 45798 H.orientalis Hugonia Hugonia orientalis \N \N \N \N \N 45799 G.fatrae Gentianella Gentianella fatrae \N \N \N \N \N 45800 E.mollis Enteropogon Enteropogon mollis \N \N \N \N \N 45801 D.funckeana Draba Draba funckeana \N \N \N \N \N 45802 A.riparia Arida Arida riparia \N \N \N \N \N 45803 O.barbosiana Orbignya Orbignya barbosiana \N \N \N \N \N 45804 S.pendulus Scirpus Scirpus pendulus \N \N \N \N \N 45805 U.dictyoneura Urochloa Urochloa dictyoneura \N \N \N \N \N 45806 T.sechellensis Timonius Timonius sechellensis \N \N \N \N \N 45807 N.pallens Neolitsea Neolitsea pallens \N \N \N \N \N 45808 H.2165 Habenaria Habenaria sp. Alves 2165 \N \N \N \N \N 45809 S.caribaea Swartzia Swartzia caribaea \N \N \N \N \N 45810 D.tonkinensis Deutzianthus Deutzianthus tonkinensis \N \N \N \N \N 45811 B.polylepis Bidens Bidens polylepis \N \N \N \N \N 45812 M.acuminata Matelea Matelea acuminata \N \N \N \N \N 45813 L.brunioides Leucadendron Leucadendron brunioides \N \N \N \N \N 45814 D.stenostachya Dielsia Dielsia stenostachya \N \N \N \N \N 45815 M.avenacea Microlaena Microlaena avenacea \N \N \N \N \N 45816 B.glandulosa Betula Betula glandulosa \N \N \N \N \N 45817 P.cultriformis Polystachya Polystachya cultriformis \N \N \N \N \N 45818 R.2163 Randia Randia aff. hondensis Persson et al. 2163 \N \N \N \N \N 45819 O.ornithoglossum Oncidium Oncidium ornithoglossum \N \N \N \N \N 45820 A.dealbatum Amomum Amomum dealbatum \N \N \N \N \N 45821 \N genus Camaridium \N \N \N \N \N 45822 V.subramaniana Vigna Vigna subramaniana \N \N \N \N \N 45823 G.chabertii Gagea Gagea chabertii \N \N \N \N \N 45824 T.soczavae Taraxacum Taraxacum soczavae \N \N \N \N \N 45825 P.semi-immersum Piper Piper semi-immersum \N \N \N \N \N 45826 \N tribe Caryodendreae \N \N \N \N \N 45827 P.japonica Polygala Polygala japonica \N \N \N \N \N 45828 P.sabinei Pleuropogon Pleuropogon sabinei \N \N \N \N \N 45829 L.shanesii Lycianthes Lycianthes shanesii \N \N \N \N \N 45830 D.saccifera Dactylorhiza Dactylorhiza saccifera \N \N \N \N \N 45831 A.caraganae Astragalus Astragalus caraganae \N \N \N \N \N 45832 A.jumellei Alistilus Alistilus jumellei \N \N \N \N \N 45833 A.trigona Acmadenia Acmadenia trigona \N \N \N \N \N 45834 S.brevipes Sloanea Sloanea brevipes \N \N \N \N \N 45835 O.cockaynei Oncostylus Oncostylus cockaynei \N \N \N \N \N 45836 \N genus Triniteurybia \N \N \N \N \N 45837 M.dorsiloba Miconia Miconia dorsiloba \N \N \N \N \N 45838 D.sphaerocarpa Dufrenoya Dufrenoya sphaerocarpa \N \N \N \N \N 45839 \N subtribe Poinae \N \N \N \N \N 45840 H.pteropetala Heteropterys Heteropterys pteropetala \N \N \N \N \N 45841 R.shuichengensis Ranunculus Ranunculus shuichengensis \N \N \N \N \N 45842 N.4731 Nuxia Nuxia sp. Hedberg 4731 \N \N \N \N \N 45843 C.s.n. Celosia Celosia sp. Cuenoud s.n. \N \N \N \N \N 45844 \N no rank Vigna unguiculata subsp. unguiculata Textilis Group \N \N \N \N \N 45845 T.2413 Telipogon Telipogon sp. Whitten 2413 \N \N \N \N \N 45846 R.erianthum Rytidosperma Rytidosperma erianthum \N \N \N \N \N 45847 B.mentosum Bulbophyllum Bulbophyllum mentosum \N \N \N \N \N 45848 L.JAS-2011b Leitneria Leitneria sp. JAS-2011b \N \N \N \N \N 45849 D.petiolatus Drepananthus Drepananthus petiolatus \N \N \N \N \N 45850 A.tingitana Acis Acis tingitana \N \N \N \N \N 45851 H.paronychioides Heliotropium Heliotropium paronychioides \N \N \N \N \N 45852 D.potamophila Dichaea Dichaea potamophila \N \N \N \N \N 45853 L.8242 Leea Leea sp. 8242 \N \N \N \N \N 45854 C.megalopetalum Chamelaucium Chamelaucium megalopetalum \N \N \N \N \N 45855 \N genus Ptilotrichum \N \N \N \N \N 45856 M.maxonii Monopyle Monopyle maxonii \N \N \N \N \N 45857 \N genus Stylocline \N \N \N \N \N 45858 P.pubescens Philadelphus Philadelphus pubescens \N \N \N \N \N 45859 H.ambavilla Hubertia Hubertia ambavilla \N \N \N \N \N 45860 J.allioides Juncus Juncus allioides \N \N \N \N \N 45861 L.robusta Leptecophylla Leptecophylla robusta \N \N \N \N \N 45862 M.pratense Melampyrum Melampyrum pratense \N \N \N \N \N 45863 P.clypearia Pithecellobium Pithecellobium clypearia \N \N \N \N \N 45864 P.tamarugo Prosopis Prosopis tamarugo \N \N \N \N \N 45865 A.malybo Astrocaryum Astrocaryum malybo \N \N \N \N \N 45866 \N genus Colebrookea \N \N \N \N \N 45867 B.gracilipes Berberis Berberis gracilipes \N \N \N \N \N 45868 \N subspecies Digitalis purpurea subsp. mauretanica \N \N \N \N \N 45869 \N subspecies Gilia capitata subsp. capitata \N \N \N \N \N 45870 \N genus Cissampelopsis \N \N \N \N \N 45871 D.tenuifolia Dodonaea Dodonaea tenuifolia \N \N \N \N \N 45872 \N varietas Neolitsea aurata var. paraciculata \N \N \N \N \N 45873 \N genus Carrierea \N \N \N \N \N 45874 A.olympica Arabis Arabis olympica \N \N \N \N \N 45875 R.sample environmental samples Taxonomy:218698 rosid environmental sample \N \N \N \N \N 45876 S.hugeri Smilax Smilax hugeri \N \N \N \N \N 45877 A.racemosa Atuna Atuna racemosa \N \N \N \N \N 45878 L.pricei Ligustrum Ligustrum pricei \N \N \N \N \N 45879 M.knersvlaktensis Moraea Moraea knersvlaktensis \N \N \N \N \N 45880 C.fruticulosus Convolvulus Convolvulus fruticulosus \N \N \N \N \N 45881 M.villosa Magnolia Magnolia villosa \N \N \N \N \N 45882 M.flavescens Monsonia Monsonia flavescens \N \N \N \N \N 45883 L.haenkei Leptosolena Leptosolena haenkei \N \N \N \N \N 45884 T.bicornis Trapa Trapa bicornis \N \N \N \N \N 45885 \N subspecies Festuca rubra subsp. commutata \N \N \N \N \N 45886 P.braceana Phalaenopsis Phalaenopsis braceana \N \N \N \N \N 45887 \N genus Kailarsenia \N \N \N \N \N 45888 S.longicolle Satyrium Satyrium longicolle \N \N \N \N \N 45889 N.sphaerosperma Neoachmandra Neoachmandra sphaerosperma \N \N \N \N \N 45890 D.gibbsiae Dendrochilum Dendrochilum gibbsiae \N \N \N \N \N 45891 A.humilis Aralia Aralia humilis \N \N \N \N \N 45892 \N genus Endocaulos \N \N \N \N \N 45893 C.tuviae Colchicum Colchicum tuviae \N \N \N \N \N 45894 F.vasculosa Ficus Ficus vasculosa \N \N \N \N \N 45895 X.tenax Xerophyllum Xerophyllum tenax \N \N \N \N \N 45896 C.ruamahanga Crassula Crassula ruamahanga \N \N \N \N \N 45897 \N varietas Phacelia crenulata var. ambigua purplestem phacelia \N \N \N \N 45898 A.palustris Arachis Arachis palustris \N \N \N \N \N 45899 S.valsuganensis Sinningia Sinningia valsuganensis \N \N \N \N \N 45900 T.discolor Tococa Tococa discolor \N \N \N \N \N 45901 G.benehoavensis Genista Genista benehoavensis \N \N \N \N \N 45902 O.incurvum Oncidium Oncidium incurvum \N \N \N \N \N 45903 H.fulvescens Helichrysum Helichrysum fulvescens \N \N \N \N \N 45904 I.palliderosea Impatiens Impatiens palliderosea \N \N \N \N \N 45905 \N genus Nylandtia \N \N \N \N \N 45906 G.ruscifolia Griselinia Griselinia ruscifolia \N \N \N \N \N 45907 \N genus Adenia \N \N \N \N \N 45908 E.billardierei Eryngium Eryngium billardierei \N \N \N \N \N 45909 S.repandum Sium Sium repandum \N \N \N \N \N 45910 \N varietas Croton lindheimerianus var. tharpii \N \N \N \N \N 45911 C.pentastylis Cadellia Cadellia pentastylis \N \N \N \N \N 45912 Z.tenue Zygophyllum Zygophyllum tenue \N \N \N \N \N 45913 C.dielsii Cryptandra Cryptandra dielsii \N \N \N \N \N 45914 P.implicatus Paepalanthus Paepalanthus implicatus \N \N \N \N \N 45915 A.mantinianum Acanthephippium Acanthephippium mantinianum \N \N \N \N \N 45916 I.yunnanensis Ilex Ilex yunnanensis \N \N \N \N \N 45917 \N genus Acmanthera \N \N \N \N \N 45918 T.3475 Tetrastigma Tetrastigma sp. Deng 3475 \N \N \N \N \N 45919 A.tricornis Anthemis Anthemis tricornis \N \N \N \N \N 45920 S.aphanactis Senecio Senecio aphanactis chaparral ragwort \N \N \N \N 45921 \N subspecies Senecio mohavensis subsp. breviflorus \N \N \N \N \N 45922 O.EE504 Oxalis Oxalis sp. EE504 \N \N \N \N \N 45923 O.rhombipetala Oenothera Oenothera rhombipetala \N \N \N \N \N 45924 R.atlanticum Rhododendron Rhododendron atlanticum \N \N \N \N \N 45925 \N varietas Eriogonum giganteum var. compactum \N \N \N \N \N 45926 C.dielsii Conostylis Conostylis dielsii \N \N \N \N \N 45927 B.pubescens Bromus Bromus pubescens Canada brome \N \N \N \N 45928 T.capitata Tabebuia Tabebuia capitata \N \N \N \N \N 45929 S.punctulata Stelis Stelis punctulata \N \N \N \N \N 45930 C.halimii Citrus Citrus halimii limau kadangsa \N \N \N \N 45931 \N subspecies Pentameris aurea subsp. pilosogluma \N \N \N \N \N 45932 V.macloskeyi Viola Viola macloskeyi sweet white violet \N \N \N \N 45933 C.tribracteolatus Cytisus Cytisus tribracteolatus \N \N \N \N \N 45934 Z.angustifolia Ziziphus Ziziphus angustifolia \N \N \N \N \N 45935 C.paraguariense Camptosema Camptosema paraguariense \N \N \N \N \N 45936 K.rooperi Kniphofia Kniphofia rooperi \N \N \N \N \N 45937 M.emarginata Moldenhawera Moldenhawera emarginata \N \N \N \N \N 45938 L.watereri Laburnum Laburnum x watereri \N \N \N \N \N 45939 D.ormocarpoides Diphysa Diphysa ormocarpoides \N \N \N \N \N 45940 B.longifolia Bonellia Bonellia longifolia \N \N \N \N \N 45941 P.glaziovii Philodendron Philodendron glaziovii \N \N \N \N \N 45942 S.obtusifolium Sideroxylon Sideroxylon obtusifolium \N \N \N \N \N 45943 M.involucrata Meriania Meriania involucrata \N \N \N \N \N 45944 P.claussenii Phyllanthus Phyllanthus claussenii \N \N \N \N \N 45945 \N varietas Adenophora triphylla var. japonica \N \N \N \N \N 45946 A.dissecta Aciphylla Aciphylla dissecta \N \N \N \N \N 45947 D.imperialis Dahlia Dahlia imperialis \N \N \N \N \N 45948 J.capitatus Juncus Juncus capitatus \N \N \N \N \N 45949 D.diandra Didiplis Didiplis diandra water-purslane \N \N \N \N 45950 A.penninervis Acacia Acacia penninervis \N \N \N \N \N 45951 U.minor Ulmus Ulmus minor \N \N \N \N \N 45952 \N varietas Ficus erecta var. beecheyana \N \N \N \N \N 45953 \N subspecies Thymus daenensis subsp. daenensis \N \N \N \N \N 45954 C.phyllostachys Carex Carex phyllostachys \N \N \N \N \N 45955 C.133 Conradina Conradina sp. Edwards 133 \N \N \N \N \N 45956 H.californicus Helianthus Helianthus californicus \N \N \N \N \N 45957 \N genus Caulophyllum \N \N \N \N \N 45958 \N subspecies Navarretia linearifolia subsp. pinnatisecta \N \N \N \N \N 45959 P.gilgiana Pimelea Pimelea gilgiana \N \N \N \N \N 45960 T.elongata Torilis Torilis elongata \N \N \N \N \N 45961 H.lanata Harpalyce Harpalyce lanata \N \N \N \N \N 45962 C.rosulans Catadysia Catadysia rosulans \N \N \N \N \N 45963 P.stenostachya Platystele Platystele stenostachya \N \N \N \N \N 45964 E.australianus Euonymus Euonymus australianus \N \N \N \N \N 45965 M.morganiana Mammillaria Mammillaria morganiana \N \N \N \N \N 45966 T.peduncularis Ternstroemia Ternstroemia peduncularis \N \N \N \N \N 45967 R.gayana Robinsonia Robinsonia gayana \N \N \N \N \N 45968 \N genus Baldellia \N \N \N \N \N 45969 \N genus Rhaphidophora \N \N \N \N \N 45970 \N genus Abroma \N \N \N \N \N 45971 Q.arizonica Quercus Quercus arizonica \N \N \N \N \N 45972 O.serrulata Oenothera Oenothera serrulata \N \N \N \N \N 45973 A.pedleyi Acacia Acacia pedleyi \N \N \N \N \N 45974 N.shingningensis Neolitsea Neolitsea shingningensis \N \N \N \N \N 45975 \N genus Diplopeltis \N \N \N \N \N 45976 T.rumelicus Tragopogon Tragopogon rumelicus \N \N \N \N \N 45977 D.affghanica Draba Draba affghanica \N \N \N \N \N 45978 C.vivantii Cirsium Cirsium x vivantii \N \N \N \N \N 45979 B.paniculata Bhesa Bhesa paniculata \N \N \N \N \N 45980 P.speciosa Polyspora Polyspora speciosa \N \N \N \N \N 45981 B.ciluliae Bulbophyllum Bulbophyllum ciluliae \N \N \N \N \N 45982 \N genus Hyoseris \N \N \N \N \N 45983 D.avenoides Deyeuxia Deyeuxia avenoides \N \N \N \N \N 45984 S.trachyspermus Sauropus Sauropus trachyspermus \N \N \N \N \N 45985 \N tribe Hyalideae \N \N \N \N \N 45986 \N varietas Actinidia macrosperma var. mumoides \N \N \N \N \N 45987 M.ashei Magnolia Magnolia ashei \N \N \N \N \N 45988 G.SRR-2011 Galeandra Galeandra sp. SRR-2011 \N \N \N \N \N 45989 E.gentryi Euphorbia Euphorbia gentryi \N \N \N \N \N 45990 R.rugosa Rhynchospora Rhynchospora rugosa \N \N \N \N \N 45991 A.paposanus Astragalus Astragalus paposanus \N \N \N \N \N 45992 M.rorida Myrcia Myrcia rorida \N \N \N \N \N 45993 B.strigosifolia Boehmeria Boehmeria strigosifolia \N \N \N \N \N 45994 Z.mioga Zingiber Zingiber mioga Japanese ginger,myoga \N \N \N \N 45995 A.dolosa Artemisia Artemisia dolosa \N \N \N \N \N 45996 L.spathulatus Lathyrus Lathyrus spathulatus \N \N \N \N \N 45997 H.incana Hirschfeldia Hirschfeldia incana buchanweed,hairy brassica \N \N \N \N 45998 B.barkeriola Barkeria Barkeria barkeriola \N \N \N \N \N 45999 C.incurvata Cuscuta Cuscuta incurvata \N \N \N \N \N 46000 A.12801 Aspidistra Aspidistra aff. fungilliformis Tamura 12801 \N \N \N \N \N 46001 C.macrantha Coryanthes Coryanthes macrantha \N \N \N \N \N 46002 \N genus Holothrix \N \N \N \N \N 46003 \N genus Helicteres \N \N \N \N \N 46004 J.cyanoides Jurinea Jurinea cyanoides \N \N \N \N \N 46005 R.rossii Rhynchostele Rhynchostele rossii \N \N \N \N \N 46006 \N genus Macleania \N \N \N \N \N 46007 \N genus Reseda \N \N \N \N \N 46008 S.maritima Suaeda Suaeda maritima \N \N \N \N \N 46009 M.tovarensis Masdevallia Masdevallia tovarensis \N \N \N \N \N 46010 P.szechuanica Primula Primula szechuanica \N \N \N \N \N 46011 S.rubra Synthyris Synthyris rubra \N \N \N \N \N 46012 S.pubescens Sextonia Sextonia pubescens \N \N \N \N \N 46013 S.australis Suaeda Suaeda australis \N \N \N \N \N 46014 B.silletensis Begonia Begonia prostrata x Begonia silletensis \N \N \N \N \N 46015 U.rhododactylos Utricularia Utricularia rhododactylos \N \N \N \N \N 46016 G.olgae Gagea Gagea olgae \N \N \N \N \N 46017 F.variegata Fimbristylis Fimbristylis variegata \N \N \N \N \N 46018 D.linearifolia Dicrastylis Dicrastylis linearifolia \N \N \N \N \N 46019 A.penduliflorus Astragalus Astragalus penduliflorus \N \N \N \N \N 46020 C.macropoda Chorispora Chorispora macropoda \N \N \N \N \N 46021 S.congestiflora Shorea Shorea congestiflora \N \N \N \N \N 46022 P.fendleri Physaria Physaria fendleri Fendler's bladderpod \N \N \N \N 46023 \N subspecies Celastrus paniculatus subsp. paniculatus \N \N \N \N \N 46024 N.laevis Nebelia Nebelia laevis \N \N \N \N \N 46025 A.vlokii Amphithalea Amphithalea vlokii \N \N \N \N \N 46026 G.richardianum Galium Galium richardianum \N \N \N \N \N 46027 C.exigua Cephalanthera Cephalanthera exigua \N \N \N \N \N 46028 O.psammophila Oenothera Oenothera psammophila St. Anthony's dunes evening-primrose \N \N \N \N 46029 H.albomarginata Henckelia Henckelia albomarginata \N \N \N \N \N 46030 \N genus Pottsia \N \N \N \N \N 46031 C.paludosa Coreopsis Coreopsis paludosa \N \N \N \N \N 46032 M.guillauminiana Mammillaria Mammillaria guillauminiana \N \N \N \N \N 46033 C.variegata Corymbia Corymbia variegata \N \N \N \N \N 46034 \N no rank unclassified Dilleniaceae \N \N \N \N \N 46035 B.silvestris Babingtonia Babingtonia silvestris \N \N \N \N \N 46036 Z.mirabilis Zaluzianskya Zaluzianskya mirabilis \N \N \N \N \N 46037 P.pulchroides Phyllanthus Phyllanthus pulchroides \N \N \N \N \N 46038 S.kurzii Solanum Solanum kurzii \N \N \N \N \N 46039 P.integrifolia Platyschkuhria Platyschkuhria integrifolia \N \N \N \N \N 46040 E.rehmannii Ehrharta Ehrharta rehmannii \N \N \N \N \N 46041 P.chrysacanthion Parodia Parodia chrysacanthion \N \N \N \N \N 46042 P.sinuosa Posidonia Posidonia sinuosa \N \N \N \N \N 46043 A.callosa Actinidia Actinidia callosa \N \N \N \N \N 46044 I.nemorosus Ichnanthus Ichnanthus nemorosus \N \N \N \N \N 46045 I.scabra Iphiona Iphiona scabra \N \N \N \N \N 46046 L.rhodostegia Lysidice Lysidice rhodostegia \N \N \N \N \N 46047 L.coronopifolia Lobelia Lobelia coronopifolia \N \N \N \N \N 46048 E.bristolii Echinocereus Echinocereus bristolii \N \N \N \N \N 46049 T.pycnocarpa Tamarix Tamarix pycnocarpa \N \N \N \N \N 46050 D.sandwicensis Dianella Dianella sandwicensis \N \N \N \N \N 46051 R.crassa Ramirezella Ramirezella crassa \N \N \N \N \N 46052 L.cicera Lathyrus Lathyrus cicera flat-pod pea,red pea \N \N \N \N 46053 F.angustifolia Forestiera Forestiera angustifolia \N \N \N \N \N 46054 A.decorticans Adenocarpus Adenocarpus decorticans \N \N \N \N \N 46055 \N varietas Spondias mombin var. globosa \N \N \N \N \N 46056 R.davidii Rosa Rosa davidii \N \N \N \N \N 46057 C.H1_23 Castilleja Castilleja sp. H1_23 \N \N \N \N \N 46058 D.congestum Dichelostemma Dichelostemma congestum ookow \N \N \N \N 46059 P.2000-448 Pterichis Pterichis sp. Weigend 2000-448 \N \N \N \N \N 46060 I.cyaneum Iochroma Iochroma cyaneum \N \N \N \N \N 46061 B.verrucosa Bryonia Bryonia verrucosa \N \N \N \N \N 46062 C.erythrocoryne Costus Costus erythrocoryne \N \N \N \N \N 46063 E.grandiflorus Euonymus Euonymus grandiflorus \N \N \N \N \N 46064 B.aquatica Byblis Byblis aquatica \N \N \N \N \N 46065 G.tenera Glandularia Glandularia tenera \N \N \N \N \N 46066 \N genus Dinteranthus \N \N \N \N \N 46067 C.racemosus Celastrus Celastrus racemosus \N \N \N \N \N 46068 S.tanalensis Symphonia Symphonia tanalensis \N \N \N \N \N 46069 P.jacobseniana Portulaca Portulaca jacobseniana \N \N \N \N \N 46070 X.107 Xanthosoma Xanthosoma sp. Barabe 107 \N \N \N \N \N 46071 B.147 Begonia Begonia sp. Forrest 147 \N \N \N \N \N 46072 P.obovata Packera Packera obovata \N \N \N \N \N 46073 G.benthamii Geissois Geissois benthamii \N \N \N \N \N 46074 E.evansii Erica Erica evansii \N \N \N \N \N 46075 K.wagenitzi Kalidiopsis Kalidiopsis wagenitzi \N \N \N \N \N 46076 \N family Stachyuraceae \N \N \N \N \N 46077 C.ligans Corymbia Corymbia ligans \N \N \N \N \N 46078 \N subspecies Phlomis crinita subsp. crinita \N \N \N \N \N 46079 D.glomerata Datisca Datisca glomerata \N \N \N \N \N 46080 P.angustifolius Pachyanthus Pachyanthus angustifolius \N \N \N \N \N 46081 B.richardsonii Bromus Bromus richardsonii \N \N \N \N \N 46082 S.rugosa Solidago Solidago rugosa \N \N \N \N \N 46083 E.albertiniana Euchaetis Euchaetis albertiniana \N \N \N \N \N 46084 \N genus Pseudobaeckea \N \N \N \N \N 46085 V.seychellarum Vateriopsis Vateriopsis seychellarum \N \N \N \N \N 46086 B.lemmonii Boechera Boechera lemmonii \N \N \N \N \N 46087 I.longifolius Isopogon Isopogon longifolius \N \N \N \N \N 46088 \N genus Eriostemon \N \N \N \N \N 46089 E.vernicosa Erica Erica vernicosa \N \N \N \N \N 46090 G.corymbifera Gentianella Gentianella corymbifera \N \N \N \N \N 46091 B.muricata Bassia Bassia muricata \N \N \N \N \N 46092 M.brevifolia Maireana Maireana brevifolia \N \N \N \N \N 46093 M.silvestris Maytenus Maytenus silvestris \N \N \N \N \N 46094 Z.citrina Zephyranthes Zephyranthes citrina \N \N \N \N \N 46095 G.trichanthera Glycosmis Glycosmis trichanthera \N \N \N \N \N 46096 T.secunda Tetracme Tetracme secunda \N \N \N \N \N 46097 I.aureliana Impatiens Impatiens aureliana \N \N \N \N \N 46098 A.caesiella Acacia Acacia caesiella \N \N \N \N \N 46099 P.steinbachii Porcelia Porcelia steinbachii \N \N \N \N \N 46100 \N subspecies Erica coccinea subsp. coccinea \N \N \N \N \N 46101 A.tequilana Agave Agave tequilana \N \N \N \N \N 46102 \N subspecies Costus amazonicus subsp. krukovii \N \N \N \N \N 46103 P.richardsonii Potamogeton Potamogeton richardsonii Richardson's pondweed \N \N \N \N 46104 C.pubescens Canavalia Canavalia pubescens \N \N \N \N \N 46105 D.lapaziana Draba Draba lapaziana \N \N \N \N \N 46106 \N genus Mediocalcar \N \N \N \N \N 46107 C.biflora Capraria Capraria biflora \N \N \N \N \N 46108 L.beckneriana Lycianthes Lycianthes beckneriana \N \N \N \N \N 46109 C.poaeoides Calamagrostis Calamagrostis poaeoides \N \N \N \N \N 46110 V.mengtzeanum Veratrum Veratrum mengtzeanum \N \N \N \N \N 46111 G.longipes Gymnanthes Gymnanthes longipes \N \N \N \N \N 46112 S.wettsteiniana Saussurea Saussurea wettsteiniana \N \N \N \N \N 46113 A.aculeatum Astrocaryum Astrocaryum aculeatum \N \N \N \N \N 46114 E.japonica Euchresta Euchresta japonica \N \N \N \N \N 46115 B.compacta Brachyglottis Brachyglottis compacta \N \N \N \N \N 46120 S.polytrichantha Strychnos Strychnos polytrichantha \N \N \N \N \N 46121 \N genus Icuria \N \N \N \N \N 46122 L.glabrata Luzula Luzula glabrata \N \N \N \N \N 46123 A.pierreanum Amomum Amomum pierreanum \N \N \N \N \N 46124 A.ovinus Astragalus Astragalus ovinus \N \N \N \N \N 46125 M.monticola Machilus Machilus monticola \N \N \N \N \N 46126 T.ericifolia Tetratheca Tetratheca ericifolia \N \N \N \N \N 46127 I.bicornuta Impatiens Impatiens bicornuta \N \N \N \N \N 46128 P.humilis Perebea Perebea humilis \N \N \N \N \N 46129 \N genus Petradoria \N \N \N \N \N 46130 \N genus Neopatersonia \N \N \N \N \N 46131 C.acuminata Caiophora Caiophora acuminata \N \N \N \N \N 46132 M.suaveolens Melodinus Melodinus suaveolens \N \N \N \N \N 46133 S.ekmaniana Sigmoidotropis Sigmoidotropis ekmaniana \N \N \N \N \N 46134 M.10282 Melanophylla Melanophylla sp. Thulin et al. 10282 \N \N \N \N \N 46135 P.sphaerocarpa Persea Persea sphaerocarpa \N \N \N \N \N 46136 T.NHW-2005-2 Trichoceros Trichoceros sp. NHW-2005-2 \N \N \N \N \N 46137 \N genus Hippobromus \N \N \N \N \N 46138 \N genus Notholirion \N \N \N \N \N 46139 A.altissima Aspalathus Aspalathus altissima \N \N \N \N \N 46140 H.platycarpum Hesperolaburnum Hesperolaburnum platycarpum \N \N \N \N \N 46141 T.latifolia Thryallis Thryallis latifolia \N \N \N \N \N 46142 O.GMS-2008 Orobanche Orobanche cf. aegyptiaca GMS-2008 \N \N \N \N \N 46143 H.FL-2007 Helleborus Helleborus sp. FL-2007 \N \N \N \N \N 46144 \N subspecies Solanum tuberosum subsp. andigenum \N \N \N \N \N 46145 \N genus Rhysotoechia \N \N \N \N \N 46146 C.salicifolia Camellia Camellia salicifolia \N \N \N \N \N 46147 C.bicornutum Caularthron Caularthron bicornutum \N \N \N \N \N 46148 P.lanata Pulicaria Pulicaria lanata \N \N \N \N \N 46149 \N tribe Zoysieae \N \N \N \N \N 46150 F.repens Ficinia Ficinia repens \N \N \N \N \N 46151 A.parviflora Artemisia Artemisia parviflora \N \N \N \N \N 46152 C.peckiana Castilleja Castilleja peckiana \N \N \N \N \N 46153 I.bungei Iris Iris bungei \N \N \N \N \N 46154 I.SH-2010 Ipomoea Ipomoea sp. SH-2010 \N \N \N \N \N 46155 \N subspecies Achnatherum occidentale subsp. californicum \N \N \N \N \N 46156 P.esquincensis Phaseolus Phaseolus esquincensis \N \N \N \N \N 46157 R.macrophyllum Rhabdodendron Rhabdodendron macrophyllum \N \N \N \N \N 46158 M.bicarinata Myrcia Myrcia bicarinata \N \N \N \N \N 46159 M.aquatica Mentha Mentha aquatica water mint \N \N \N \N 46160 E.turriger Echites Echites turriger \N \N \N \N \N 46161 \N subspecies Sagittaria graminea subsp. weatherbiana \N \N \N \N \N 46162 M.saxicola Muraltia Muraltia saxicola \N \N \N \N \N 46163 P.WSY0032131-3 Penstemon Penstemon sp. WSY0032131-3 \N \N \N \N \N 46164 T.tigrinum Trichocentrum Trichocentrum tigrinum \N \N \N \N \N 46165 C.stricta Calamagrostis Calamagrostis stricta \N \N \N \N \N 46166 E.bourgatii Eryngium Eryngium bourgatii \N \N \N \N \N 46167 E.villosa Ehrharta Ehrharta villosa \N \N \N \N \N 46168 S.bauhinioides Senna Senna bauhinioides \N \N \N \N \N 46169 O.depressa Opuntia Opuntia depressa \N \N \N \N \N 46170 C.michauxii Croton Croton michauxii \N \N \N \N \N 46171 B.lindleyana Banksia Banksia lindleyana \N \N \N \N \N 46172 \N genus Monotes \N \N \N \N \N 46173 S.palmensis Sambucus Sambucus palmensis \N \N \N \N \N 46174 O.gratissimum Ocimum Ocimum bascilicum x Ocimum gratissimum \N \N \N \N \N 46175 \N genus Decarya \N \N \N \N \N 46176 S.rubroligula Sinobambusa Sinobambusa rubroligula \N \N \N \N \N 46177 O.shinzatoi Oxygyne Oxygyne shinzatoi \N \N \N \N \N 46178 \N varietas Miconia ceramicarpa var. navioensis \N \N \N \N \N 46179 \N genus Dasymachalon \N \N \N \N \N 46180 D.elegans Dombeya Dombeya elegans \N \N \N \N \N 46181 \N genus Hypacanthium \N \N \N \N \N 46182 A.triternatum Aspidosperma Aspidosperma triternatum \N \N \N \N \N 46183 A.s.n. Arisaema Arisaema sp. He s.n. \N \N \N \N \N 46184 R.viscosum Rhododendron Rhododendron viscosum \N \N \N \N \N 46185 \N genus Diphelypaea \N \N \N \N \N 46186 P.lilacina Pinguicula Pinguicula lilacina \N \N \N \N \N 46187 I.exellii Indigofera Indigofera exellii \N \N \N \N \N 46188 \N no rank environmental samples Taxonomy:417447 \N \N \N \N \N 46189 S.intrans Sorghum Sorghum intrans \N \N \N \N \N 46190 B.tanquana Babiana Babiana tanquana \N \N \N \N \N 46191 H.naegelianum Hieracium Hieracium naegelianum \N \N \N \N \N 46192 \N varietas Crataegus pinnatifida var. pinnatifida \N \N \N \N \N 46193 C.heterolepis Carex Carex heterolepis \N \N \N \N \N 46194 B.ucayalina Browneopsis Browneopsis ucayalina \N \N \N \N \N 46195 R.anthosphaerum Rhododendron Rhododendron anthosphaerum \N \N \N \N \N 46196 P.villosus Pseudolotus Pseudolotus villosus \N \N \N \N \N 46197 P.tenella Prunus Prunus tenella dwarf Russian almond \N \N \N \N 46198 L.capense Lepidium Lepidium capense \N \N \N \N \N 46199 G.odorata Gynocardia Gynocardia odorata \N \N \N \N \N 46200 L.grandis Licuala Licuala grandis \N \N \N \N \N 46201 D.penduliflora Diclidanthera Diclidanthera penduliflora \N \N \N \N \N 46202 P.amboniana Psychotria Psychotria amboniana \N \N \N \N \N 46203 O.tunetana Orobanche Orobanche tunetana \N \N \N \N \N 46204 \N subtribe Galeottiellinae \N \N \N \N \N 46205 C.deschampsioides Calamagrostis Calamagrostis deschampsioides \N \N \N \N \N 46206 R.ramiflora Romulea Romulea ramiflora \N \N \N \N \N 46207 \N genus Lopholepis \N \N \N \N \N 46208 B.riparia Bletia Bletia riparia \N \N \N \N \N 46209 C.6140 Cayratia Cayratia sp. 6140 \N \N \N \N \N 46210 \N genus Devia \N \N \N \N \N 46211 \N genus Elymus wild rye \N \N \N \N 46212 \N varietas Lomatium bicolor var. bicolor \N \N \N \N \N 46213 \N varietas Phacelia campanularia var. campanularia \N \N \N \N \N 46214 \N genus Nototrichium \N \N \N \N \N 46215 E.934 Exochaenium Exochaenium sp. Dessein et al. 934 \N \N \N \N \N 46216 C.cantabricus Cytisus Cytisus cantabricus \N \N \N \N \N 46217 \N genus Thysanella \N \N \N \N \N 46218 P.euryoides Pentaphylax Pentaphylax euryoides \N \N \N \N \N 46219 S.tatarinowii Silene Silene tatarinowii \N \N \N \N \N 46220 T.karelinii Tamarix Tamarix karelinii \N \N \N \N \N 46221 \N genus Bleasdalea \N \N \N \N \N 46222 C.tomentosa Cotyledon Cotyledon tomentosa \N \N \N \N \N 46223 S.odoratissimus Styrax Styrax odoratissimus \N \N \N \N \N 46224 G.gomezoides Gomesa Gomesa gomezoides \N \N \N \N \N 46225 E.eichleri Euphorbia Euphorbia eichleri \N \N \N \N \N 46226 N.bongso Nepenthes Nepenthes bongso \N \N \N \N \N 46227 T.odoratissima Tabernaemontana Tabernaemontana odoratissima \N \N \N \N \N 46228 T.bidentatum Teucrium Teucrium bidentatum \N \N \N \N \N 46229 E.columbiensis Eleocharis Eleocharis columbiensis \N \N \N \N \N 46230 A.volutare Androcymbium Androcymbium volutare \N \N \N \N \N 46231 L.hirsuta Liatris Liatris hirsuta \N \N \N \N \N 46232 D.patula Deschampsia Deschampsia patula \N \N \N \N \N 46233 I.virgatus Indianthus Indianthus virgatus \N \N \N \N \N 46234 P.grenvilleae Pelargonium Pelargonium grenvilleae \N \N \N \N \N 46235 D.sessile Disporum Disporum sessile \N \N \N \N \N 46236 B.FS1006 Bulbophyllum Bulbophyllum sp. FS1006 \N \N \N \N \N 46237 G.montana Gingidia Gingidia montana \N \N \N \N \N 46238 E.longisiliquum Eremobium Eremobium longisiliquum \N \N \N \N \N 46239 D.collinsiae Drosera Drosera collinsiae \N \N \N \N \N 46240 A.ledermannii Aceratium Aceratium ledermannii \N \N \N \N \N 46241 S.laminamaensis Saussurea Saussurea laminamaensis \N \N \N \N \N 46242 C.punctatus Croton Croton punctatus gulf croton \N \N \N \N 46243 R.petrieana Rhaphidophora Rhaphidophora petrieana \N \N \N \N \N 46244 \N genus Brassiophoenix \N \N \N \N \N 46245 R.beauverdii Raoulia Raoulia beauverdii \N \N \N \N \N 46246 R.circasiana Rapatea Rapatea circasiana \N \N \N \N \N 46247 M.SH-2010 Mastixia Mastixia sp. SH-2010 \N \N \N \N \N 46248 R.YI00824 Ruppia Ruppia sp. YI00824 \N \N \N \N \N 46249 O.linifolia Omphalodes Omphalodes linifolia Venus' navelwort \N \N \N \N 46250 O.aragonensis Ononis Ononis aragonensis \N \N \N \N \N 46251 S.bonariense Solanum Solanum bonariense \N \N \N \N \N 46252 \N varietas Muhlenbergia mexicana var. filiformis \N \N \N \N \N 46253 \N genus Phyllanthera \N \N \N \N \N 46254 \N genus Parnassia \N \N \N \N \N 46255 S.ocreata Smilax Smilax ocreata \N \N \N \N \N 46256 M.tricephala Mimosa Mimosa tricephala \N \N \N \N \N 46257 S.anthemidiflorus Syngonanthus Syngonanthus anthemidiflorus \N \N \N \N \N 46258 S.macilwraithianum Syzygium Syzygium macilwraithianum \N \N \N \N \N 46259 \N subspecies Androcymbium burchellii subsp. pulchrum \N \N \N \N \N 46260 P.munroi Piptatherum Piptatherum munroi \N \N \N \N \N 46261 S.crinitum Solanum Solanum crinitum \N \N \N \N \N 46262 C.chrysantha Centaurea Centaurea chrysantha \N \N \N \N \N 46263 \N genus Actinoschoenus \N \N \N \N \N 46264 \N genus Calyptrocalyx \N \N \N \N \N 46265 \N genus Dendrophylax \N \N \N \N \N 46266 I.TP-2009 Inga Inga sp. 56 TP-2009 \N \N \N \N \N 46267 M.argentea Melaleuca Melaleuca argentea \N \N \N \N \N 46268 M.pulchella Melaleuca Melaleuca pulchella \N \N \N \N \N 46269 C.myriocarpus Cucumis Cucumis myriocarpus \N \N \N \N \N 46270 E.saxicola Erica Erica saxicola \N \N \N \N \N 46271 \N varietas Rhynchospora consanguinea var. subspeciosa \N \N \N \N \N 46272 T.JK4067 unclassified Taraxacum Taraxacum (sect. Calanthodia) sp. JK4067 \N \N \N \N \N 46273 J.chilensis Jubaea Jubaea chilensis \N \N \N \N \N 46274 C.aspera Cristaria Cristaria aspera \N \N \N \N \N 46275 R.pitreana Rondeletia Rondeletia pitreana \N \N \N \N \N 46276 B.pilosa Byttneria Byttneria pilosa \N \N \N \N \N 46277 M.knippeliana Mammillaria Mammillaria knippeliana \N \N \N \N \N 46278 \N genus Hebepetalum \N \N \N \N \N 46279 M.luteus Mimulus Mimulus luteus \N \N \N \N \N 46280 \N genus Dichrocephala \N \N \N \N \N 46281 E.subrecta Etlingera Etlingera subrecta \N \N \N \N \N 46282 \N genus Henckelia \N \N \N \N \N 46283 E.hyssopifolium Eupatorium Eupatorium hyssopifolium hyssopleaf thoroughwort \N \N \N \N 46284 O.caesia Orobanche Orobanche caesia \N \N \N \N \N 46285 A.macrocephala Ainsliaea Ainsliaea macrocephala \N \N \N \N \N 46286 E.vaseyi Eupatorium Eupatorium vaseyi \N \N \N \N \N 46287 L.alpina Lotononis Lotononis alpina \N \N \N \N \N 53357 A.incana Alnus Alnus incana \N \N \N \N \N 46288 B.lyallii Brachystephanus Brachystephanus lyallii \N \N \N \N \N 46289 \N genus Duhaldea \N \N \N \N \N 46290 \N genus Heteranthera \N \N \N \N \N 46291 L.chartacea Lecythis Lecythis chartacea \N \N \N \N \N 46292 \N genus Trichostephanus \N \N \N \N \N 46293 G.lawrencei Gentiana Gentiana lawrencei \N \N \N \N \N 46294 S.1438 unclassified Sapotaceae Sapotaceae sp. Munzinger 1438 \N \N \N \N \N 46295 B.ellipticum Brachystelma Brachystelma ellipticum \N \N \N \N \N 46296 C.leucophyllus Croton Croton leucophyllus \N \N \N \N \N 46297 C.elegans Castilleja Castilleja elegans \N \N \N \N \N 46298 C.galioides Cyclopia Cyclopia galioides \N \N \N \N \N 46299 P.5269 Polyscias Polyscias cf. belensis Lowry 5269 \N \N \N \N \N 46300 \N genus Seemannaralia \N \N \N \N \N 46301 G.alpinus Galanthus Galanthus alpinus \N \N \N \N \N 46302 A.mexicana Anemone Anemone mexicana \N \N \N \N \N 46303 R.costata Ruellia Ruellia costata \N \N \N \N \N 46304 S.mortonii Schoenocaulon Schoenocaulon mortonii \N \N \N \N \N 46305 L.filicaulis Lachnaea Lachnaea filicaulis \N \N \N \N \N 46306 M.uniflora Minuartia Minuartia uniflora \N \N \N \N \N 46307 N.suberosa Neobyrnesia Neobyrnesia suberosa \N \N \N \N \N 46308 C.bleeseri Corymbia Corymbia bleeseri \N \N \N \N \N 46309 D.parvibracteata Dahlia Dahlia parvibracteata \N \N \N \N \N 46310 P.conradinae Prunus Prunus conradinae \N \N \N \N \N 46311 P.moranensis Pinguicula Pinguicula moranensis \N \N \N \N \N 46312 S.macrantha Sobralia Sobralia macrantha \N \N \N \N \N 46313 C.orbicularis Coursetia Coursetia orbicularis \N \N \N \N \N 46314 T.bifidum Trifolium Trifolium bifidum \N \N \N \N \N 46315 C.RG-2006 Charybdis Charybdis cf. maritima RG-2006 \N \N \N \N \N 46316 C.grenadensis Charianthus Charianthus grenadensis \N \N \N \N \N 46317 D.tenompokense Dendrochilum Dendrochilum tenompokense \N \N \N \N \N 46318 B.fibrosa Brachyachne Brachyachne fibrosa \N \N \N \N \N 46319 O.124 Oligostachyum Oligostachyum sp. Triplett 124 \N \N \N \N \N 46320 S.crispa Sphaeralcea Sphaeralcea crispa \N \N \N \N \N 46321 P.oxyphyllus Phyllanthus Phyllanthus oxyphyllus \N \N \N \N \N 46322 M.callithrix Mimosa Mimosa callithrix \N \N \N \N \N 46323 A.abyssinicus Amorphophallus Amorphophallus abyssinicus \N \N \N \N \N 46324 \N genus Jaborosa \N \N \N \N \N 46325 N.s.n. Neobenthamia Neobenthamia sp. Heidelberg BG s.n. \N \N \N \N \N 46326 P.sample environmental samples Taxonomy:493874 Poa environmental sample \N \N \N \N \N 46327 O.hirtellus Oplismenus Oplismenus hirtellus \N \N \N \N \N 46328 V.verna Veronica Veronica verna \N \N \N \N \N 46329 \N varietas Mitella furusei var. subramosa \N \N \N \N \N 46330 C.domingensis Clavija Clavija domingensis \N \N \N \N \N 46331 \N varietas Calliandra houstoniana var. anomala \N \N \N \N \N 46332 C.tenuifolia Cayratia Cayratia tenuifolia \N \N \N \N \N 46333 C.rosea Coreopsis Coreopsis rosea \N \N \N \N \N 46334 P.geniculata Prunus Prunus geniculata scrub plum \N \N \N \N 46335 T.spicatum Thesium Thesium spicatum \N \N \N \N \N 46336 P.boliviense Panicum Panicum boliviense \N \N \N \N \N 46337 G.WO2008015263 Gossypium Gossypium sp. WO2008015263 \N \N \N \N \N 46338 B.radulosa Brunsvigia Brunsvigia radulosa \N \N \N \N \N 46339 C.mannii Cephalostachyum Cephalostachyum mannii \N \N \N \N \N 46340 \N genus Herodotia \N \N \N \N \N 46341 P.chenopodiifolia Physalis Physalis chenopodiifolia \N \N \N \N \N 46342 A.ovata Arnica Arnica ovata \N \N \N \N \N 46343 P.encholirioides Pitcairnia Pitcairnia encholirioides \N \N \N \N \N 46344 M.makineana Miricacalia Miricacalia makineana \N \N \N \N \N 46345 T.salicifolia Tetrataxis Tetrataxis salicifolia \N \N \N \N \N 46346 L.macraei Linum Linum macraei \N \N \N \N \N 46347 A.inaequiloba Acacia Acacia inaequiloba \N \N \N \N \N 46348 P.gilletii Pseudoprosopis Pseudoprosopis gilletii \N \N \N \N \N 46349 L.triticoides Leymus Leymus triticoides \N \N \N \N \N 46350 P.cornuti Plantago Plantago cornuti \N \N \N \N \N 46351 L.havilandii Lithocarpus Lithocarpus havilandii \N \N \N \N \N 46352 O.litoralis Ochagavia Ochagavia litoralis \N \N \N \N \N 46353 M.ravenii Mentzelia Mentzelia ravenii \N \N \N \N \N 46354 S.floribunda Sutera Sutera floribunda \N \N \N \N \N 46355 M.eriosphaera Maireana Maireana eriosphaera \N \N \N \N \N 46356 \N varietas Kalmia microphylla var. occidentalis \N \N \N \N \N 46357 P.caespitosum Petrophytum Petrophytum caespitosum \N \N \N \N \N 46358 R.parvifolia Rytigynia Rytigynia parvifolia \N \N \N \N \N 46359 A.karelinii Askellia Askellia karelinii \N \N \N \N \N 46360 B.egregia Begonia Begonia egregia \N \N \N \N \N 46361 \N genus Sanblasia \N \N \N \N \N 46362 G.speciosa Garcinia Garcinia speciosa \N \N \N \N \N 46363 A.tabularis Astilboides Astilboides tabularis \N \N \N \N \N 46364 \N genus Noccidium \N \N \N \N \N 46365 P.P076 Physalis Physalis sp. P076 \N \N \N \N \N 46366 B.lineare Blepharodon Blepharodon lineare \N \N \N \N \N 46367 B.adoensis Bromus Bromus adoensis \N \N \N \N \N 46368 I.moorensis Ixora Ixora moorensis \N \N \N \N \N 46369 B.multifida Biebersteinia Biebersteinia multifida \N \N \N \N \N 46370 C.strigilatum Cestrum Cestrum strigilatum \N \N \N \N \N 46371 \N subspecies Senecio lautus subsp. maritimus \N \N \N \N \N 46372 \N subspecies Castilleja rubicundula subsp. rubicundula \N \N \N \N \N 46373 \N genus Nephradenia \N \N \N \N \N 46374 S.isoetifolium Syringodium Syringodium isoetifolium \N \N \N \N \N 46375 S.arcanum Lycopersicon Solanum arcanum \N \N \N \N \N 46376 M.splendens Mandevilla Mandevilla splendens \N \N \N \N \N 46377 M.pilosa Mitrasacme Mitrasacme pilosa \N \N \N \N \N 46378 M.angustifolia Moltkia Moltkia angustifolia \N \N \N \N \N 46379 T.kauffmannii Tillandsia Tillandsia kauffmannii \N \N \N \N \N 46380 \N family Tetracarpaeaceae \N \N \N \N \N 46381 P.tridentata Purshia Purshia tridentata antelope brush,bitterbrush \N \N \N \N 46382 S.macrophylla Salvia Salvia macrophylla \N \N \N \N \N 46383 P.P148 Physalis Physalis sp. P148 \N \N \N \N \N 54708 \N genus Manniophyton \N \N \N \N \N 46384 M.dispersa Mentzelia Mentzelia dispersa \N \N \N \N \N 46385 E.utilis Eugeissona Eugeissona utilis \N \N \N \N \N 46386 \N varietas Mimosa polycarpa var. subandina \N \N \N \N \N 46387 E.nakaii Elymus Elymus nakaii \N \N \N \N \N 46388 P.linnaei Philodendron Philodendron linnaei \N \N \N \N \N 46389 G.villosa Gaura Gaura villosa \N \N \N \N \N 46390 S.19781 Stachys Stachys cf. vulnerabilis Hinton et al. 19781 \N \N \N \N \N 46391 \N genus Stachyanthus \N \N \N \N \N 46392 D.pycnocentrum Delphinium Delphinium pycnocentrum \N \N \N \N \N 46393 T.androssowii Tamarix Tamarix androssowii \N \N \N \N \N 46394 P.tarambassica Psychotria Psychotria tarambassica \N \N \N \N \N 46395 P.appendiculata Phalaenopsis Phalaenopsis appendiculata \N \N \N \N \N 46396 P.quinquefolia Potentilla Potentilla quinquefolia \N \N \N \N \N 46397 G.granulosa Gagea Gagea granulosa \N \N \N \N \N 46398 S.tenuifolia Stephanomeria Stephanomeria tenuifolia wire lettuce \N \N \N \N 46399 A.gilanica Anthemis Anthemis gilanica \N \N \N \N \N 46400 S.glomerata Soroseris Soroseris glomerata \N \N \N \N \N 46401 A.arenaria Asclepias Asclepias arenaria \N \N \N \N \N 46402 C.carsei Carex Carex carsei \N \N \N \N \N 46403 \N genus Caloncoba \N \N \N \N \N 46404 O.kochii Ornithogalum Ornithogalum kochii \N \N \N \N \N 46405 M.oreomyrtus Metrosideros Metrosideros oreomyrtus \N \N \N \N \N 46406 C.lasiorhyncha Castilleja Castilleja lasiorhyncha \N \N \N \N \N 46407 A.pulchra Adenia Adenia pulchra \N \N \N \N \N 46408 \N forma Asarum sieboldii f. sieboldii \N \N \N \N \N 46409 S.sejunctum Solanum Solanum sejunctum \N \N \N \N \N 46410 S.excelsa Spathelia Spathelia excelsa \N \N \N \N \N 46411 A.robbertsei Acacia Acacia robbertsei \N \N \N \N \N 46412 H.candicans Hiptage Hiptage candicans \N \N \N \N \N 46413 A.koreana Astilbe Astilbe koreana \N \N \N \N \N 46414 P.deltoidea Pedicularis Pedicularis deltoidea \N \N \N \N \N 46415 A.incisifidum Aconitum Aconitum incisifidum \N \N \N \N \N 46416 P.obovata Psammotropha Psammotropha obovata \N \N \N \N \N 46417 C.stricta Carex Carex stricta \N \N \N \N \N 46418 E.obcordata Eriotheca Eriotheca obcordata \N \N \N \N \N 46419 H.triste Hieracium Hieracium triste \N \N \N \N \N 46420 C.scilloides Centaurium Centaurium scilloides \N \N \N \N \N 46421 C.acaulis Carlina Carlina acaulis \N \N \N \N \N 46422 O.ubomboensis Orbea Orbea ubomboensis \N \N \N \N \N 46423 M.russeliana Monarda Monarda russeliana \N \N \N \N \N 46424 \N genus Abatia \N \N \N \N \N 46425 S.glabrum Sparattanthelium Sparattanthelium glabrum \N \N \N \N \N 46426 P.purpusii Phyllanthus Phyllanthus purpusii \N \N \N \N \N 46427 C.trifida Carex Carex trifida \N \N \N \N \N 46428 M.papillosum Myriophyllum Myriophyllum papillosum \N \N \N \N \N 46429 N.pauciflora Nicotiana Nicotiana pauciflora \N \N \N \N \N 46430 \N varietas Aloe arborescens var. natalensis \N \N \N \N \N 46431 B.stewardii Briggsia Briggsia stewardii \N \N \N \N \N 46432 \N genus Lycurus \N \N \N \N \N 46433 H.retrocalla Haraella Haraella retrocalla \N \N \N \N \N 46434 I.latifolius Indocalamus Indocalamus latifolius \N \N \N \N \N 46435 R.idaeopsis Rubus Rubus idaeopsis \N \N \N \N \N 46436 T.375 Trichoceros Trichoceros sp. Trujillo 375 \N \N \N \N \N 46437 E.baccans Erica Erica baccans \N \N \N \N \N 46438 T.pauciflora Thelymitra Thelymitra pauciflora \N \N \N \N \N 46439 G.erianthum Geranium Geranium erianthum \N \N \N \N \N 46440 C.zoysii Campanula Campanula zoysii \N \N \N \N \N 46441 A.sibirica Anticlea Anticlea sibirica \N \N \N \N \N 46442 L.oliverianum Ligusticum Ligusticum oliverianum \N \N \N \N \N 46443 T.lanceolatum Trifolium Trifolium lanceolatum \N \N \N \N \N 46444 C.pungens Cryptandra Cryptandra pungens \N \N \N \N \N 46445 \N genus Pseudolmedia \N \N \N \N \N 46446 F.subgelderi Ficus Ficus subgelderi \N \N \N \N \N 46447 C.silentvalleyi Cucumis Cucumis silentvalleyi \N \N \N \N \N 46448 S.fibulifera Sida Sida fibulifera \N \N \N \N \N 46449 C.rubricalyx Columnea Columnea rubricalyx \N \N \N \N \N 46450 N.vargasii Nasa Nasa vargasii \N \N \N \N \N 46451 \N genus Winifredia \N \N \N \N \N 46452 A.hans-meyeri Anatherostipa Anatherostipa hans-meyeri \N \N \N \N \N 46453 C.nodiflorus Convolvulus Convolvulus nodiflorus \N \N \N \N \N 46454 P.arguta Platycrater Platycrater arguta \N \N \N \N \N 46455 O.mammosa Ophrys Ophrys mammosa \N \N \N \N \N 46456 N.yunnanensis Nyssa Nyssa yunnanensis \N \N \N \N \N 46457 B.dewevrei Bertiera Bertiera dewevrei \N \N \N \N \N 46458 R.kamerunensis Rinorea Rinorea kamerunensis \N \N \N \N \N 46459 S.guyanensis Sandwithia Sandwithia guyanensis \N \N \N \N \N 46460 C.velenovskyi Centaurea Centaurea velenovskyi \N \N \N \N \N 46461 \N subspecies Lupinus angustifolius subsp. angustifolius \N \N \N \N \N 46462 S.lycioides Sideroxylon Sideroxylon lycioides \N \N \N \N \N 46463 L.alternifolia Ludwigia Ludwigia alternifolia rattlebox,seedbox \N \N \N \N 46464 T.CH_E102Smono Triticum Triticum sp. CH_E102Smono \N \N \N \N \N 46465 P.murex Pedalium Pedalium murex \N \N \N \N \N 46466 P.peperomioides Pilea Pilea peperomioides \N \N \N \N \N 46467 P.2311 Planchonella Planchonella sp. Munzinger 2311 \N \N \N \N \N 46468 A.grandiflora Agonis Agonis grandiflora \N \N \N \N \N 46469 V.violifolia Villarsia Villarsia violifolia \N \N \N \N \N 46470 \N genus Amborella \N \N \N \N \N 46471 V.minor Vinca Vinca minor common periwinkle,running-myrtle \N \N \N \N 46472 R.MDG-2446 Rhodocodon Rhodocodon sp. MDG-2446 \N \N \N \N \N 46473 C.rupestris Corydalis Corydalis rupestris \N \N \N \N \N 46474 C.cyclodontea Clypeola Clypeola cyclodontea \N \N \N \N \N 46475 \N genus Sinomenium \N \N \N \N \N 46476 T.longicalcaratum Trichocentrum Trichocentrum longicalcaratum \N \N \N \N \N 46477 T.nivea Trigonia Trigonia nivea \N \N \N \N \N 46478 \N genus Letestua \N \N \N \N \N 46479 A.antalyensis Astragalus Astragalus antalyensis \N \N \N \N \N 46480 D.bovei Doellia Doellia bovei \N \N \N \N \N 55389 \N genus Dielitzia \N \N \N \N \N 46481 O.compositus Oplismenus Oplismenus compositus \N \N \N \N \N 46482 P.simonii Pleioblastus Pleioblastus simonii \N \N \N \N \N 46483 D.polyacanthos Desmoncus Desmoncus polyacanthos \N \N \N \N \N 46484 C.ovalis Carex Carex ovalis \N \N \N \N \N 46485 \N subspecies Sidalcea oregana subsp. hydrophila \N \N \N \N \N 46486 L.serrulata Leptinella Leptinella serrulata \N \N \N \N \N 46487 A.tribracteatum Allium Allium tribracteatum \N \N \N \N \N 46488 M.hybrida Medicago Medicago hybrida \N \N \N \N \N 46489 \N family Apocynaceae dogbane family \N \N \N \N 46490 R.oerstedii Rossioglossum Rossioglossum oerstedii \N \N \N \N \N 46491 \N genus Joosia \N \N \N \N \N 46492 \N genus Fosteria \N \N \N \N \N 46493 \N varietas Cliffortia ruscifolia var. purpurea \N \N \N \N \N 46494 L.ruscifolia Lasiacis Lasiacis ruscifolia \N \N \N \N \N 46495 S.MAG-2009 Swartzia Swartzia sp. MAG-2009 \N \N \N \N \N 46496 \N genus Chuniophoenix \N \N \N \N \N 46497 P.siamica Paravitex Paravitex siamica \N \N \N \N \N 46498 D.picta Dorstenia Dorstenia picta \N \N \N \N \N 46499 G.discolor Gaultheria Gaultheria discolor \N \N \N \N \N 46500 R.mira Randia Randia mira \N \N \N \N \N 46501 \N varietas Mimulus nanus var. jepsonii \N \N \N \N \N 46502 A.uniflora Aphaenandra Aphaenandra uniflora \N \N \N \N \N 46503 I.neei Ipomoea Ipomoea neei \N \N \N \N \N 46504 C.bifaria Cleistes Cleistes bifaria \N \N \N \N \N 46505 T.macrophyllum Talipariti Talipariti macrophyllum \N \N \N \N \N 46506 A.intracontinentalis Atriplex Atriplex intracontinentalis \N \N \N \N \N 46507 P.simplicifrons Pinanga Pinanga simplicifrons \N \N \N \N \N 46508 B.corallicola Basiphyllaea Basiphyllaea corallicola \N \N \N \N \N 46509 T.laomae Tetrameranthus Tetrameranthus laomae \N \N \N \N \N 46510 L.duperreana Lagerstroemia Lagerstroemia duperreana \N \N \N \N \N 46511 L.catharticum Linum Linum catharticum fairy flax,mountain flax \N \N \N \N 46512 C.praecincta Chloraea Chloraea praecincta \N \N \N \N \N 46513 \N genus Trientalis \N \N \N \N \N 46514 H.longirostris Haplostichanthus Haplostichanthus longirostris \N \N \N \N \N 46515 A.novaepommeraniae Alpinia Alpinia novaepommeraniae \N \N \N \N \N 46516 B.breviscapis Brachyscome Brachyscome breviscapis \N \N \N \N \N 46517 S.trichostomus Sisyranthus Sisyranthus trichostomus \N \N \N \N \N 46518 \N genus Oxypetalum \N \N \N \N \N 46519 O.copiosa Oxalis Oxalis copiosa \N \N \N \N \N 46520 C.filicaulis Calceolaria Calceolaria filicaulis \N \N \N \N \N 46521 I.rhombifolius Ichnocarpus Ichnocarpus rhombifolius \N \N \N \N \N 46522 P.masayensis Polystachya Polystachya masayensis \N \N \N \N \N 46523 P.grazielae Philodendron Philodendron grazielae \N \N \N \N \N 46524 A.asymmetricus Astragalus Astragalus asymmetricus \N \N \N \N \N 46525 P.leonensis Penstemon Penstemon leonensis \N \N \N \N \N 46526 \N genus Amaioua \N \N \N \N \N 46527 O.alismoides Ottelia Ottelia alismoides \N \N \N \N \N 46528 D.filifolia Diaspasis Diaspasis filifolia \N \N \N \N \N 46529 O.elongatum Origanum Origanum elongatum \N \N \N \N \N 46530 \N genus Scopolia \N \N \N \N \N 46531 B.meisneri Banksia Banksia meisneri \N \N \N \N \N 46532 S.huancabambense Solanum Solanum huancabambense \N \N \N \N \N 46533 S.sesban Sesbania Sesbania sesban Egyptian sesban \N \N \N \N 46534 R.pittieri Rhipidocladum Rhipidocladum pittieri \N \N \N \N \N 46535 C.nigrescens Coptosperma Coptosperma nigrescens \N \N \N \N \N 46536 R.gracilis Rauvolfia Rauvolfia gracilis \N \N \N \N \N 46537 \N genus Sogerianthe \N \N \N \N \N 46538 C.lemmonii Cologania Cologania lemmonii \N \N \N \N \N 46539 L.tetragonolobus Lotus Lotus tetragonolobus winged pea \N \N \N \N 46540 \N varietas Plantago princeps var. longibracteata \N \N \N \N \N 46541 A.commersonii Apium Apium commersonii \N \N \N \N \N 46542 B.macra Bothriochloa Bothriochloa macra \N \N \N \N \N 46543 C.bambusoides Chusquea Chusquea bambusoides \N \N \N \N \N 46544 A.ovata Asteranthera Asteranthera ovata \N \N \N \N \N 46545 D.serratilabium Dendrobium Dendrobium serratilabium \N \N \N \N \N 46546 E.xyridiformis Eleocharis Eleocharis xyridiformis \N \N \N \N \N 46547 I.rugosiformis Isodon Isodon rugosiformis \N \N \N \N \N 46548 \N varietas Salvia nipponica var. trisecta \N \N \N \N \N 46549 D.aquatica Duroia Duroia aquatica \N \N \N \N \N 46550 M.inconspicua Matelea Matelea inconspicua \N \N \N \N \N 46551 \N genus Myriocephalus \N \N \N \N \N 46552 L.concolor Ledebouria Ledebouria concolor \N \N \N \N \N 46553 P.rubronigriflora Pitcairnia Pitcairnia rubronigriflora \N \N \N \N \N 46554 \N genus Lethedon \N \N \N \N \N 46555 L.insignis Lysimachia Lysimachia insignis \N \N \N \N \N 46556 M.conifera Macaranga Macaranga conifera \N \N \N \N \N 46557 M.hyssopus Mirandea Mirandea hyssopus \N \N \N \N \N 46558 F.arfakensis Ficus Ficus arfakensis \N \N \N \N \N 46559 G.trichodes Glossostigma Glossostigma trichodes \N \N \N \N \N 46560 P.filifolia Parryella Parryella filifolia common dunebroom \N \N \N \N 46561 M.deppeana Moussonia Moussonia deppeana \N \N \N \N \N 46562 S.umbellata Strophostyles Strophostyles umbellata pink fuzzybean \N \N \N \N 46563 A.euthycarpa Acacia Acacia euthycarpa \N \N \N \N \N 46564 S.cookii Solanum Solanum cookii \N \N \N \N \N 46565 S.speciosa Symplocos Symplocos speciosa \N \N \N \N \N 46566 R.eglanteria Rosa Rosa eglanteria eglantine,eglantine rose,sweetbrier \N \N \N \N 46567 N.humboldtiana Nasa Nasa humboldtiana \N \N \N \N \N 46568 N.atractyloides Navarretia Navarretia atractyloides \N \N \N \N \N 46569 P.aurantia Passiflora Passiflora aurantia \N \N \N \N \N 46570 P.viridis Phalaenopsis Phalaenopsis viridis \N \N \N \N \N 46571 M.beccariana Mussaendopsis Mussaendopsis beccariana \N \N \N \N \N 46572 B.uniolae Briza Briza uniolae \N \N \N \N \N 46573 M.grandidentata Miconia Miconia grandidentata \N \N \N \N \N 46574 T.dasyurum Trifolium Trifolium dasyurum \N \N \N \N \N 46575 T.paradoxum Tanacetum Tanacetum paradoxum \N \N \N \N \N 46576 I.cuspidata Impatiens Impatiens cuspidata \N \N \N \N \N 55974 \N genus Sertifera \N \N \N \N \N 46577 T.macdowellii Thelocactus Thelocactus macdowellii \N \N \N \N \N 46578 I.nummulariifolia Indigofera Indigofera nummulariifolia \N \N \N \N \N 46579 D.XMW-2002-20 Dendrobium Dendrobium sp. XMW-2002-20 \N \N \N \N \N 46580 P.teaguei Pleurothallis Pleurothallis teaguei \N \N \N \N \N 46581 \N genus Tetralocularia \N \N \N \N \N 46582 H.erodioides Hermannia Hermannia erodioides \N \N \N \N \N 46583 P.heterophylla Physalis Physalis heterophylla \N \N \N \N \N 46584 M.elegans Myricaria Myricaria elegans \N \N \N \N \N 46585 A.grandiflora Argemone Argemone grandiflora \N \N \N \N \N 46586 R.revoilii Rhoicissus Rhoicissus revoilii \N \N \N \N \N 46587 D.torulosa Dicentra Dicentra torulosa \N \N \N \N \N 46588 O.involucrata Oreomyrrhis Oreomyrrhis involucrata \N \N \N \N \N 46589 \N genus Maerua \N \N \N \N \N 46590 \N subspecies Veronica spicata subsp. spicata \N \N \N \N \N 46591 P.chrysanthus Phyllanthus Phyllanthus chrysanthus \N \N \N \N \N 46592 T.intermedia Trias Trias intermedia \N \N \N \N \N 46593 A.crassna Aquilaria Aquilaria crassna \N \N \N \N \N 46594 \N tribe Nervilieae \N \N \N \N \N 46595 C.repens Chelyocarpus Chelyocarpus repens \N \N \N \N \N 46596 H.aurea Hypoxis Hypoxis aurea \N \N \N \N \N 46597 L.micrantha Lymanbensonia Lymanbensonia micrantha \N \N \N \N \N 46598 P.bahiensis Ptilochaeta Ptilochaeta bahiensis \N \N \N \N \N 46599 I.jalapa Ipomoea Ipomoea jalapa \N \N \N \N \N 46600 \N varietas Nesaea radicans var. floribunda \N \N \N \N \N 46601 S.CG491 Senna Senna sp. CG491 \N \N \N \N \N 46602 \N subspecies Ficus cordata subsp. cordata \N \N \N \N \N 46603 S.flavescens Silene Silene flavescens \N \N \N \N \N 46604 \N subspecies Fagus sylvatica subsp. sylvatica \N \N \N \N \N 46605 C.kappleri Chaunochiton Chaunochiton kappleri \N \N \N \N \N 46606 \N genus Hicksbeachia \N \N \N \N \N 46608 S.foliosa Spartina Spartina foliosa \N \N \N \N \N 46609 D.mossambicense Dichapetalum Dichapetalum mossambicense \N \N \N \N \N 46610 G.SH-2010 Gardenia Gardenia sp. SH-2010 \N \N \N \N \N 46611 N.spongiosa Nymphoides Nymphoides spongiosa \N \N \N \N \N 46612 M.tubiflora Mandevilla Mandevilla tubiflora \N \N \N \N \N 46613 V.philippinensis Villaria Villaria philippinensis \N \N \N \N \N 46614 \N varietas Cypripedium bardolphianum var. zhongdianense \N \N \N \N \N 46615 \N subspecies Convolvulus sabatius subsp. mauritanicus \N \N \N \N \N 46616 I.wikstroemioides Isodon Isodon wikstroemioides \N \N \N \N \N 46617 \N varietas Arabis serrata var. glauca \N \N \N \N \N 46618 D.bicolor Dalea Dalea bicolor silver prairie-clover \N \N \N \N 46619 \N genus Serratula \N \N \N \N \N 46620 \N varietas Magnolia macrophylla var. macrophylla \N \N \N \N \N 46621 L.subobruta Leandra Leandra subobruta \N \N \N \N \N 46622 C.cyanomontana Cineraria Cineraria cyanomontana \N \N \N \N \N 46623 Z.corallinum Zingiber Zingiber corallinum \N \N \N \N \N 46624 O.ochrantha Oxytropis Oxytropis ochrantha \N \N \N \N \N 46625 F.pumila Ficus Ficus pumila climbing fig,creeping fig,creeping rubber plant \N \N \N \N 46626 \N genus Galax \N \N \N \N \N 46627 K.complanata Korthalsella Korthalsella complanata \N \N \N \N \N 46628 B.ebolowensis Begonia Begonia ebolowensis \N \N \N \N \N 46629 O.japonica Omphalodes Omphalodes japonica \N \N \N \N \N 46630 A.exstipulata Aglaia Aglaia exstipulata \N \N \N \N \N 46631 \N genus Campylostachys \N \N \N \N \N 46632 A.spinosa Argania Argania spinosa \N \N \N \N \N 46633 S.congesta Stegostyla Stegostyla congesta \N \N \N \N \N 46634 R.pungens Rubus Rubus pungens \N \N \N \N \N 46635 O.tolmiei Orthocarpus Orthocarpus tolmiei \N \N \N \N \N 46636 H.phlomoides Hygrophila Hygrophila phlomoides \N \N \N \N \N 46637 F.platyphylla Ficus Ficus platyphylla \N \N \N \N \N 46638 R.alpina Richea Richea alpina \N \N \N \N \N 46639 \N genus Coursetia \N \N \N \N \N 46640 X.'Yellow' x Mokara x Mokara cv. 'Yellow' \N \N \N \N \N 46641 O.argillacea Oxalis Oxalis argillacea \N \N \N \N \N 46642 D.setaceus Diplopogon Diplopogon setaceus \N \N \N \N \N 46643 V.schumanniana Vangueria Vangueria schumanniana \N \N \N \N \N 46644 C.barbata Campanula Campanula barbata \N \N \N \N \N 46645 Q.glauca Quercus Quercus glauca \N \N \N \N \N 46646 A.superba Argemone Argemone superba \N \N \N \N \N 46647 M.tijucensis Myrcia Myrcia tijucensis \N \N \N \N \N 46648 P.gracilentus Penstemon Penstemon gracilentus \N \N \N \N \N 46649 I.minutiflora Ianhedgea Ianhedgea minutiflora \N \N \N \N \N 46650 \N subspecies Onobrychis arenaria subsp. sibirica \N \N \N \N \N 46651 Y.platystegia Yeatesia Yeatesia platystegia \N \N \N \N \N 46652 S.insulare Santalum Santalum insulare \N \N \N \N \N 46653 A.herbaceum Anthospermum Anthospermum herbaceum \N \N \N \N \N 46654 \N genus Torenia \N \N \N \N \N 46655 \N varietas Diplopeltis huegelii var. subintegra \N \N \N \N \N 46656 C.verticillata Conradina Conradina verticillata Cumberland false rosemary \N \N \N \N 46657 A.integer Artocarpus Artocarpus integer campedak,chempedak \N \N \N \N 46658 S.consanguinea Saxifraga Saxifraga consanguinea \N \N \N \N \N 46659 P.dolabella Peperomia Peperomia dolabella \N \N \N \N \N 46660 S.otites Solanum Solanum otites \N \N \N \N \N 46661 B.portoricensis Brunfelsia Brunfelsia portoricensis \N \N \N \N \N 46662 T.purpurea Tephrosia Tephrosia purpurea \N \N \N \N \N 46663 A.thalictrifolia Aquilegia Aquilegia thalictrifolia \N \N \N \N \N 46664 R.caillei Raphidiocystis Raphidiocystis caillei \N \N \N \N \N 46665 C.leptonervia Carex Carex leptonervia \N \N \N \N \N 46666 N.degenii Nigella Nigella degenii \N \N \N \N \N 46667 H.guianensis Hernandia Hernandia guianensis \N \N \N \N \N 46668 P.rigidum Polygonum Polygonum rigidum \N \N \N \N \N 46669 \N varietas Mimosa distachya var. oligacantha \N \N \N \N \N 46670 J.himalensis Juncus Juncus himalensis \N \N \N \N \N 46671 \N genus Heterospathe \N \N \N \N \N 46672 \N family Datiscaceae \N \N \N \N \N 46673 \N genus Itoa \N \N \N \N \N 46674 C.sessiliflora Cyclopia Cyclopia sessiliflora \N \N \N \N \N 46675 S.linifolia Suaeda Suaeda linifolia \N \N \N \N \N 46676 \N varietas Stipagrostis ciliata var. capensis \N \N \N \N \N 46677 M.philippica Mussaenda Mussaenda philippica \N \N \N \N \N 46678 C.paradisi Citrus Citrus reticulata x Citrus paradisi \N \N \N \N \N 46679 \N subspecies Coelogyne occultata subsp. occultata \N \N \N \N \N 46680 \N varietas Leonotis ocymifolia var. schinzii \N \N \N \N \N 46681 S.cossoniana Sideritis Sideritis cossoniana \N \N \N \N \N 46682 \N genus Stellarioides \N \N \N \N \N 46683 V.divaricata Vitex Vitex divaricata \N \N \N \N \N 46684 S.virgata Stackhousia Stackhousia virgata \N \N \N \N \N 46685 \N subspecies Eriastrum densifolium subsp. mohavense \N \N \N \N \N 46686 S.2026 Schumannianthus Schumannianthus sp. Poulsen 2026 \N \N \N \N \N 46687 \N order Buxales \N \N \N \N \N 46688 S.EAP-2003 Satyria Satyria sp. EAP-2003 \N \N \N \N \N 46689 \N genus Pentachaeta pygmydaisy \N \N \N \N 46690 \N genus Arcyosperma \N \N \N \N \N 46691 \N genus Bedfordia \N \N \N \N \N 46692 L.myriocarpum Lepidium Lepidium myriocarpum \N \N \N \N \N 46693 M.dielsiana Moehringia Moehringia dielsiana \N \N \N \N \N 46694 O.kopetdaghensis Oryzopsis Oryzopsis kopetdaghensis \N \N \N \N \N 46695 \N genus Goydera \N \N \N \N \N 46696 M.tchihatchewii Michauxia Michauxia tchihatchewii \N \N \N \N \N 46697 \N genus Petalochilus \N \N \N \N \N 46698 L.ferocissimum Lycium Lycium ferocissimum \N \N \N \N \N 46699 P.adenophora Polygala Polygala adenophora \N \N \N \N \N 46700 S.hispidula Synandra Synandra hispidula \N \N \N \N \N 46701 P.cryptandroides Phylica Phylica cryptandroides \N \N \N \N \N 46702 L.DCY-02 Ligusticum Ligusticum sp. DCY-02 \N \N \N \N \N 46703 V.longicaulis Vriesea Vriesea longicaulis \N \N \N \N \N 46704 H.laciniatus Helianthus Helianthus laciniatus \N \N \N \N \N 46705 C.flavescens Coptosapelta Coptosapelta flavescens \N \N \N \N \N 46706 I.asperula Ilex Ilex asperula \N \N \N \N \N 46707 R.imschootiana Renanthera Renanthera imschootiana \N \N \N \N \N 46708 C.fissirostris Carex Carex fissirostris \N \N \N \N \N 46709 E.parvicyathophora Euphorbia Euphorbia parvicyathophora \N \N \N \N \N 46710 \N genus Antirrhinum snapdragons \N \N \N \N 46711 \N varietas Paris polyphylla var. yunnanensis \N \N \N \N \N 46712 E.s.n. Erythrococca Erythrococca sp. Cheek s.n. \N \N \N \N \N 46713 E.wilsonii Epilobium Epilobium wilsonii \N \N \N \N \N 46714 \N subspecies Syringa oblata subsp. dilatata \N \N \N \N \N 46715 A.sphaerocephala Artemisia Artemisia sphaerocephala \N \N \N \N \N 46716 C.igualensis Cordia Cordia igualensis \N \N \N \N \N 46717 C.2003_52 Crataegus Crataegus cf. flava 2003_52 \N \N \N \N \N 46718 A.membranaceus Astragalus Astragalus membranaceus \N \N \N \N \N 46719 I.pumila Iris Iris pumila \N \N \N \N \N 46720 P.stokoei Protea Protea stokoei \N \N \N \N \N 46721 C.kleiniae Cylindropuntia Cylindropuntia kleiniae \N \N \N \N \N 46722 H.adenophyllum Hesperolinon Hesperolinon adenophyllum \N \N \N \N \N 46723 \N genus Strobocalyx \N \N \N \N \N 46724 M.sanantonioensis Maxillaria Maxillaria sanantonioensis \N \N \N \N \N 46725 \N genus Stathmostelma \N \N \N \N \N 46726 H.aurea Homalocalyx Homalocalyx aurea \N \N \N \N \N 46727 A.sikkimensis Acomastylis Acomastylis sikkimensis \N \N \N \N \N 46728 \N varietas Hemiboea gracilis var. gracilis \N \N \N \N \N 46729 M.marginata Maxillaria Maxillaria marginata \N \N \N \N \N 46730 \N genus Centrochloa \N \N \N \N \N 46731 P.barbicalyx Primula Primula barbicalyx \N \N \N \N \N 46732 T.rubrivenium Tetrorchidium Tetrorchidium rubrivenium \N \N \N \N \N 46733 C.sp. Cunoniaceae Cunoniaceae gen. sp. \N \N \N \N \N 46734 \N genus Gerrardina \N \N \N \N \N 46735 T.eleagnoides Tetrazygia Tetrazygia eleagnoides \N \N \N \N \N 46736 \N genus Sinocrassula \N \N \N \N \N 46737 S.pulcherrima Stipa Stipa pulcherrima \N \N \N \N \N 46738 L.spartea Linaria Linaria spartea \N \N \N \N \N 46739 C.microptera Carex Carex microptera \N \N \N \N \N 46740 P.incarnatum Pelargonium Pelargonium incarnatum \N \N \N \N \N 46741 W.grahamiana Wajira Wajira grahamiana \N \N \N \N \N 46742 A.wettsteinii Ardisiandra Ardisiandra wettsteinii \N \N \N \N \N 46743 M.setifolia Muhlenbergia Muhlenbergia setifolia \N \N \N \N \N 46744 C.discolor Clidemia Clidemia discolor \N \N \N \N \N 46745 O.MED-54330 Othocallis Othocallis sp. MED-54330 \N \N \N \N \N 46746 X.DK-2009 Xylocarpus Xylocarpus sp. DK-2009 \N \N \N \N \N 46747 M.monophylla Marantochloa Marantochloa monophylla \N \N \N \N \N 46748 R.hochstetterorum Rubus Rubus hochstetterorum \N \N \N \N \N 46749 B.cheilocarpa Brachyscome Brachyscome cheilocarpa \N \N \N \N \N 46750 \N varietas Agropyron cristatum var. imbricatum \N \N \N \N \N 46751 P.montana Polemannia Polemannia montana \N \N \N \N \N 46752 T.vulgare Tanacetum Tanacetum vulgare tansy \N \N \N \N 46753 C.triasii Crepis Crepis triasii \N \N \N \N \N 46754 C.edulis Cordeauxia Cordeauxia edulis hebb,jehebnut,jicib \N \N \N \N 46755 \N subspecies Paeonia mascula subsp. russoi \N \N \N \N \N 46756 M.paludosa Myrosmodes Myrosmodes paludosa \N \N \N \N \N 46757 C.hypoglauca Cyclea Cyclea hypoglauca \N \N \N \N \N 46758 B.pedicellaris Bergia Bergia pedicellaris \N \N \N \N \N 46759 C.portenschlagiana Campanula Campanula portenschlagiana \N \N \N \N \N 46760 B.furfuracea Begonia Begonia furfuracea \N \N \N \N \N 46761 \N genus Leucojum \N \N \N \N \N 46762 G.oaxacana Gymnolaena Gymnolaena oaxacana \N \N \N \N \N 46763 S.caracasana Stevia Stevia caracasana \N \N \N \N \N 46764 A.gymnandrum Aconitum Aconitum gymnandrum \N \N \N \N \N 46765 A.cultivar Alstroemeria Alstroemeria hybrid cultivar \N \N \N \N \N 46766 J.punctata Jovellana Jovellana punctata \N \N \N \N \N 46767 B.pellegrinii Bikinia Bikinia pellegrinii \N \N \N \N \N 46768 C.baldaccii Centaurea Centaurea baldaccii \N \N \N \N \N 46769 C.bononiensis Campanula Campanula bononiensis \N \N \N \N \N 46770 C.lutetiana Circaea Circaea lutetiana \N \N \N \N \N 46771 I.verticillata Isotria Isotria verticillata \N \N \N \N \N 46772 D.fruticosa Dasiphora Dasiphora fruticosa \N \N \N \N \N 46773 P.daphnoides Psychotria Psychotria daphnoides \N \N \N \N \N 46774 B.palauensis Badusa Badusa palauensis \N \N \N \N \N 46775 B.cultivar Begonia Begonia hybrid cultivar \N \N \N \N \N 46776 S.tomentosa Sesbania Sesbania tomentosa Oahu riverhemp,`ohai \N \N \N \N 46777 L.japonicum Leontopodium Leontopodium japonicum \N \N \N \N \N 46778 B.sizemoreae Begonia Begonia sizemoreae \N \N \N \N \N 46779 V.arizonica Vitis Vitis arizonica \N \N \N \N \N 46780 C.kabuliana Consolida Consolida kabuliana \N \N \N \N \N 46781 E.heldreichii Eryngium Eryngium heldreichii \N \N \N \N \N 46782 O.9152 Octopoma Octopoma sp. Klak 9152 \N \N \N \N \N 46783 \N genus Homalanthus \N \N \N \N \N 46784 R.natans Ranunculus Ranunculus natans \N \N \N \N \N 46785 M.schweinfurthiana Mormolyca Mormolyca schweinfurthiana \N \N \N \N \N 46786 P.rigida Parasponia Parasponia rigida \N \N \N \N \N 46787 \N genus Dewevrella \N \N \N \N \N 46788 E.strigilifolia Erica Erica strigilifolia \N \N \N \N \N 46789 A.walteri Androcymbium Androcymbium walteri \N \N \N \N \N 46790 S.schinzianum Sesamum Sesamum schinzianum \N \N \N \N \N 46791 T.obliquilobum Taraxacum Taraxacum obliquilobum \N \N \N \N \N 46792 C.buchholzii Cyperus Cyperus buchholzii \N \N \N \N \N 46793 B.lasiantha Beccariella Beccariella lasiantha \N \N \N \N \N 46794 P.costata Pilea Pilea costata \N \N \N \N \N 46795 A.sample environmental samples Taxonomy:1096669 Astrocaryum environmental sample \N \N \N \N \N 46796 C.griffithii Carlemannia Carlemannia griffithii \N \N \N \N \N 46797 A.latifolium Antirrhinum Antirrhinum latifolium \N \N \N \N \N 46798 O.eckloniana Oxalis Oxalis eckloniana \N \N \N \N \N 46799 P.milioides Panicum Panicum milioides \N \N \N \N \N 46800 B.longifolia Bellis Bellis longifolia \N \N \N \N \N 46801 A.racemosa Aralia Aralia racemosa \N \N \N \N \N 46802 X.elongatum Xylobium Xylobium elongatum \N \N \N \N \N 46803 C.hongkongensis Cornus Cornus hongkongensis \N \N \N \N \N 46804 \N genus Tipuana \N \N \N \N \N 46805 A.purpurea Abrotanella Abrotanella purpurea \N \N \N \N \N 46806 B.horizontale Bulbophyllum Bulbophyllum horizontale \N \N \N \N \N 46807 B.multiflora Baissea Baissea multiflora \N \N \N \N \N 46808 \N varietas Aechmea weilbachii var. weilbachii \N \N \N \N \N 46809 L.humbertii Libanothamnus Libanothamnus humbertii \N \N \N \N \N 46810 E.subpeltatophylla Euphorbia Euphorbia subpeltatophylla \N \N \N \N \N 46811 X.hostilis Xanthorrhoea Xanthorrhoea hostilis \N \N \N \N \N 46812 C.japonense Chrysanthemum Chrysanthemum japonense \N \N \N \N \N 46813 C.intermedium Cochlospermum Cochlospermum intermedium \N \N \N \N \N 46814 \N subspecies Calceolaria corymbosa subsp. montana \N \N \N \N \N 46815 I.finlaysoniana Ixora Ixora finlaysoniana \N \N \N \N \N 46816 K.japonica Kerria Kerria japonica Japanese kerria,Japanese-rose,di tang hua \N \N \N \N 46817 C.benthamianus Chrysopogon Chrysopogon benthamianus \N \N \N \N \N 46818 \N subspecies Tina striata subsp. multifoliolata \N \N \N \N \N 46819 L.fraseri Leucopogon Leucopogon fraseri \N \N \N \N \N 46820 \N varietas Caralluma adscendens var. carinata \N \N \N \N \N 46821 P.orthotropa Pseudosasa Pseudosasa orthotropa \N \N \N \N \N 46822 F.vasquezii Fosterella Fosterella vasquezii \N \N \N \N \N 46823 R.revealii Rumfordia Rumfordia revealii \N \N \N \N \N 46824 U.cordata Uvaria Uvaria cordata \N \N \N \N \N 46825 \N varietas Platanus occidentalis var. palmeri \N \N \N \N \N 46826 \N forma Pinguicula grandiflora f. grandiflora \N \N \N \N \N 46827 C.leichtlinii Camassia Camassia leichtlinii \N \N \N \N \N 46828 B.gossweileri Bussea Bussea gossweileri \N \N \N \N \N 46829 O.montifuga Oreacanthus Oreacanthus montifuga \N \N \N \N \N 46830 A.532 Amellus Amellus sp. Forest 532 \N \N \N \N \N 46831 C.johnstonii Clerodendrum Clerodendrum johnstonii \N \N \N \N \N 46832 \N genus Humiria \N \N \N \N \N 46833 V.vesicaria Valerianella Valerianella vesicaria \N \N \N \N \N 46834 \N genus Escobaria \N \N \N \N \N 46835 B.sanguinea Brugmansia Brugmansia sanguinea \N \N \N \N \N 46836 S.JK-2007 Stenanthemum Stenanthemum sp. JK-2007 \N \N \N \N \N 46837 S.macrostachyum Sclerodactylon Sclerodactylon macrostachyum \N \N \N \N \N 46838 P.multiovulata Pseuduvaria Pseuduvaria multiovulata \N \N \N \N \N 46839 \N genus Staelia \N \N \N \N \N 46840 A.berlandieri Anemone Anemone berlandieri \N \N \N \N \N 46841 C.deserti Convolvulus Convolvulus deserti \N \N \N \N \N 46842 P.aurea Phyllostachys Phyllostachys aurea \N \N \N \N \N 46843 E.fontqueriana Euphorbia Euphorbia fontqueriana \N \N \N \N \N 46844 N.japonica Neomolinia Neomolinia japonica \N \N \N \N \N 46845 \N no rank unclassified Catasetinae \N \N \N \N \N 46846 B.lindleyana Barkeria Barkeria lindleyana \N \N \N \N \N 46847 S.lydgatei Schiedea Schiedea lydgatei \N \N \N \N \N 46848 D.micrantha Dendroseris Dendroseris micrantha \N \N \N \N \N 46849 R.gouanii Ranunculus Ranunculus gouanii \N \N \N \N \N 46850 C.serratum Cymbidium Cymbidium serratum \N \N \N \N \N 46851 O.34056 Orobanche Orobanche cf. rosmarina Gu 34056 \N \N \N \N \N 46852 C.cataonica Centaurea Centaurea cataonica \N \N \N \N \N 46853 A.maurorum Aristolochia Aristolochia maurorum \N \N \N \N \N 46854 C.microphylla Camellia Camellia microphylla \N \N \N \N \N 46855 B.regia Babiana Babiana regia \N \N \N \N \N 46856 \N genus Aeranthes \N \N \N \N \N 46857 \N genus Varilla \N \N \N \N \N 46858 M.andersonii Madagasikaria Madagasikaria andersonii \N \N \N \N \N 46859 P.microbotrys Polyscias Polyscias microbotrys \N \N \N \N \N 46860 D.novae-zelandiae Donatia Donatia novae-zelandiae \N \N \N \N \N 46861 M.macrocarpa Mangifera Mangifera macrocarpa \N \N \N \N \N 46862 T.vleiensis Trianthema Trianthema vleiensis \N \N \N \N \N 46863 L.paniculatum Lepidium Lepidium paniculatum \N \N \N \N \N 46864 C.trinervis Carex Carex trinervis \N \N \N \N \N 46865 B.axillaris Buchanania Buchanania axillaris \N \N \N \N \N 46866 D.longituba Dendrophthoe Dendrophthoe longituba \N \N \N \N \N 46867 P.pulchella Potentilla Potentilla pulchella \N \N \N \N \N 46868 O.longiflorus Oxyceros Oxyceros longiflorus \N \N \N \N \N 46869 S.endressii Sideritis Sideritis endressii \N \N \N \N \N 46870 C.decidua Carex Carex decidua \N \N \N \N \N 46871 S.radiatum Sesamum Sesamum radiatum \N \N \N \N \N 46872 T.planifolium Trichophorum Trichophorum planifolium \N \N \N \N \N 46873 V.decurrens Viguiera Viguiera decurrens \N \N \N \N \N 46874 M.villosa Molineria Molineria villosa \N \N \N \N \N 46875 A.subincana Arrabidaea Arrabidaea subincana \N \N \N \N \N 46876 B.squarrulosa Babingtonia Babingtonia squarrulosa \N \N \N \N \N 46877 \N genus Gymnospermium \N \N \N \N \N 46878 P.heterophyllum Pternopetalum Pternopetalum heterophyllum \N \N \N \N \N 46879 L.moorei Legnephora Legnephora moorei \N \N \N \N \N 46880 D.eburnea Dressleria Dressleria eburnea \N \N \N \N \N 46881 A.henryi Aralia Aralia henryi \N \N \N \N \N 46882 D.brennensis Dactylorhiza Dactylorhiza brennensis \N \N \N \N \N 46883 L.truncatum Lycium Lycium truncatum \N \N \N \N \N 46884 G.galeata Gongora Gongora galeata \N \N \N \N \N 46885 H.ocymoides Halimium Halimium ocymoides \N \N \N \N \N 46886 A.decurrens Adenoglossa Adenoglossa decurrens \N \N \N \N \N 46887 \N subspecies Helianthus praecox subsp. praecox \N \N \N \N \N 46888 S.tortuosus Streptanthus Streptanthus tortuosus mountain jewelflower \N \N \N \N 46889 E.villosa Eriosyce Eriosyce villosa \N \N \N \N \N 46890 M.subspicatum Melolobium Melolobium subspicatum \N \N \N \N \N 46891 M.sinica Manglietia Manglietia sinica \N \N \N \N \N 46892 A.septentrionale Aconitum Aconitum septentrionale \N \N \N \N \N 46893 S.diander Scleranthus Scleranthus diander \N \N \N \N \N 46894 \N genus Thaspium \N \N \N \N \N 46895 E.sociabilis Eriosyce Eriosyce sociabilis \N \N \N \N \N 46896 C.incurviformis Carex Carex incurviformis \N \N \N \N \N 46897 P.bimbiensis Psychotria Psychotria bimbiensis \N \N \N \N \N 46898 D.BGB-2009b Dalechampia Dalechampia sp. BGB-2009b \N \N \N \N \N 46899 E.helioscopia Euphorbia Euphorbia helioscopia \N \N \N \N \N 46900 Q.macranthera Quercus Quercus macranthera Persian oak \N \N \N \N 46901 P.minuta Pauridia Pauridia minuta \N \N \N \N \N 46902 P.horombense Pachypodium Pachypodium horombense \N \N \N \N \N 46903 I.alopecuroides Indigofera Indigofera alopecuroides \N \N \N \N \N 46904 \N genus Hesperelaea \N \N \N \N \N 46905 C.chalcedonicum Colchicum Colchicum chalcedonicum \N \N \N \N \N 46906 A.insulana Acalypha Acalypha insulana \N \N \N \N \N 46907 \N varietas Dombeya acutangula aff. var. palmata TLP-2010 \N \N \N \N \N 46908 S.pruriens Sterculia Sterculia pruriens \N \N \N \N \N 46909 S.madagascariensis Strychnos Strychnos madagascariensis \N \N \N \N \N 46910 C.hintonii Caesalpinia Caesalpinia hintonii \N \N \N \N \N 46911 T.44 Triunia Triunia sp. Lundberg 44 \N \N \N \N \N 46912 M.tilingii Mimulus Mimulus tilingii \N \N \N \N \N 46913 R.villosa Ruellia Ruellia villosa \N \N \N \N \N 46914 D.latiflorus Dendrocalamus Dendrocalamus hamiltonii x Dendrocalamus latiflorus \N \N \N \N \N 46915 L.platyglossa Layia Layia platyglossa \N \N \N \N \N 46916 \N genus Orthopterygium \N \N \N \N \N 46917 \N family Stemonuraceae \N \N \N \N \N 46918 \N no rank Saccharum hybrid cultivar Co 94032 \N \N \N \N \N 46919 T.parnassicum Taraxacum Taraxacum parnassicum \N \N \N \N \N 46920 A.feayi Asclepias Asclepias feayi \N \N \N \N \N 46921 P.ceresia Paspalum Paspalum ceresia \N \N \N \N \N 46922 \N genus Apatophyllum \N \N \N \N \N 46923 O.kuekenthalii Oreobolus Oreobolus kuekenthalii \N \N \N \N \N 46924 A.pilosula Arctostaphylos Arctostaphylos pilosula \N \N \N \N \N 46925 D.serotinus Dianthus Dianthus serotinus \N \N \N \N \N 46926 V.erythrocarpa Vatairea Vatairea erythrocarpa \N \N \N \N \N 46927 C.fasciola Campylocentrum Campylocentrum fasciola \N \N \N \N \N 46928 B.selbyi Boechera Boechera selbyi \N \N \N \N \N 46929 T.clusii Torminalis Torminalis clusii \N \N \N \N \N 46930 L.gracilis Licuala Licuala gracilis \N \N \N \N \N 46931 C.pedoglossa Crangonorchis Crangonorchis pedoglossa \N \N \N \N \N 46932 P.argyrophyllum Piper Piper argyrophyllum \N \N \N \N \N 46933 T.balansae Trifolium Trifolium balansae \N \N \N \N \N 46934 L.erinus Lobelia Lobelia erinus \N \N \N \N \N 46935 M.purpureus Mimulus Mimulus purpureus \N \N \N \N \N 46936 A.tanguticum Aconitum Aconitum tanguticum \N \N \N \N \N 46937 G.hanaense Geranium Geranium hanaense Maui geranium \N \N \N \N 46938 M.tenuipilis Machilus Machilus tenuipilis \N \N \N \N \N 46939 S.hirtum Solanum Solanum hirtum \N \N \N \N \N 46940 P.ecuadorensis Plutarchia Plutarchia ecuadorensis \N \N \N \N \N 46941 L.vulgaris Linaria Linaria vulgaris common toadflax \N \N \N \N 46942 \N genus Anisopappus \N \N \N \N \N 46943 M.pilosulum Microlepidium Microlepidium pilosulum \N \N \N \N \N 46944 V.SK-2008 Virectaria Virectaria sp. SK-2008 \N \N \N \N \N 46945 P.4068 Prismatomeris Prismatomeris sp. 4 Davis 4068 \N \N \N \N \N 46946 S.linearistipularis Salix Salix linearistipularis \N \N \N \N \N 46947 G.laoticus Goniothalamus Goniothalamus laoticus \N \N \N \N \N 46948 \N genus Tristira \N \N \N \N \N 46949 \N subspecies Genista longipes subsp. longipes \N \N \N \N \N 46950 B.officinalis Bistorta Bistorta officinalis \N \N \N \N \N 46951 P.gracilis Phlox Phlox gracilis \N \N \N \N \N 46952 M.icterica Monanthes Monanthes icterica \N \N \N \N \N 46953 J.kilaea Jurinea Jurinea kilaea \N \N \N \N \N 46954 X.equisetoides Xerophyta Xerophyta equisetoides \N \N \N \N \N 46955 \N subspecies Crepis sancta subsp. nemauensis \N \N \N \N \N 46956 \N genus Fusispermum \N \N \N \N \N 46957 L.bicolor Leptotes Leptotes bicolor \N \N \N \N \N 46958 E.subtrinervis Erigeron Erigeron subtrinervis \N \N \N \N \N 46959 \N genus Coelocarpum \N \N \N \N \N 46960 D.productus Dendropanax Dendropanax productus \N \N \N \N \N 46961 G.bicolor Gasteria Gasteria bicolor \N \N \N \N \N 46962 F.dajinensis Fritillaria Fritillaria dajinensis \N \N \N \N \N 46963 I.microcalyx Indigofera Indigofera microcalyx \N \N \N \N \N 46964 S.nervosa Scrophularia Scrophularia nervosa \N \N \N \N \N 46965 S.rubens Stipa Stipa rubens \N \N \N \N \N 46966 D.glauca Dichaea Dichaea glauca \N \N \N \N \N 46967 P.plicata Pagamea Pagamea plicata \N \N \N \N \N 46968 L.eliasii Laserpitium Laserpitium eliasii \N \N \N \N \N 46969 E.pursaetha Entada Entada pursaetha \N \N \N \N \N 46970 P.sessilis Pimelea Pimelea sessilis \N \N \N \N \N 46971 \N tribe Digitalideae \N \N \N \N \N 46972 C.coccineum Combretum Combretum coccineum \N \N \N \N \N 46973 T.azureum Tropaeolum Tropaeolum azureum \N \N \N \N \N 46974 T.antimenorrhoea Trixis Trixis antimenorrhoea \N \N \N \N \N 46975 A.parviflora Angraecopsis Angraecopsis parviflora \N \N \N \N \N 46976 S.curvifolia Spatalla Spatalla curvifolia \N \N \N \N \N 46977 A.14264 Alseodaphne Alseodaphne sp. van der Werff & Nguyen 14264 \N \N \N \N \N 46978 A.tuberculosa Aristida Aristida tuberculosa \N \N \N \N \N 46979 C.aureolensis Carex Carex aureolensis \N \N \N \N \N 46980 C.tanaiticum Ceratophyllum Ceratophyllum tanaiticum \N \N \N \N \N 46981 G.dolomiticum Geranium Geranium dolomiticum \N \N \N \N \N 46982 R.calcicola Rhodocodon Rhodocodon calcicola \N \N \N \N \N 46983 M.obscurum Myoporum Myoporum obscurum bastard ironwood,popwood \N \N \N \N 46984 S.pseudopygmea Scorzonera Scorzonera pseudopygmea \N \N \N \N \N 46985 E.enysii Elymus Elymus enysii \N \N \N \N \N 46986 D.clusii Doronicum Doronicum clusii \N \N \N \N \N 46987 C.megarhiza Claytonia Claytonia megarhiza alpine springbeauty \N \N \N \N 46988 O.grayi Ocotea Ocotea grayi \N \N \N \N \N 46989 C.rigidus Callistemon Callistemon rigidus \N \N \N \N \N 46990 A.ruscinonensis Armeria Armeria ruscinonensis \N \N \N \N \N 46991 C.schoenanthus Cymbopogon Cymbopogon schoenanthus \N \N \N \N \N 46992 C.purpurifera Carex Carex purpurifera \N \N \N \N \N 46993 E.heermannii Eriogonum Eriogonum heermannii \N \N \N \N \N 46994 A.zebrina Aechmea Aechmea zebrina \N \N \N \N \N 46996 P.355 Pinanga Pinanga aff. malaiana Joko Witono 355 \N \N \N \N \N 46997 N.glabra Neonauclea Neonauclea glabra \N \N \N \N \N 46998 O.acaulis Opithandra Opithandra acaulis \N \N \N \N \N 46999 I.gairdnerae Indigofera Indigofera gairdnerae \N \N \N \N \N 47000 A.linearifolia Arachis Arachis linearifolia \N \N \N \N \N 47001 H.trionum Hibiscus Hibiscus trionum Venice-mallow,flower-of-an-hour \N \N \N \N 47002 C.corrugata Carex Carex corrugata \N \N \N \N \N 47003 P.pajonalis Persea Persea pajonalis \N \N \N \N \N 47004 P.viridiglaucescens Phyllostachys Phyllostachys viridiglaucescens \N \N \N \N \N 47005 \N genus Gymnostachys \N \N \N \N \N 47006 P.JEES-2007 Pravinaria Pravinaria cf. endertii JEES-2007 \N \N \N \N \N 47007 D.pseudorupestris Drymocallis Drymocallis pseudorupestris \N \N \N \N \N 47008 A.puberula Austrostipa Austrostipa puberula \N \N \N \N \N 47009 A.turbinata Aesculus Aesculus hippocastanum x Aesculus turbinata \N \N \N \N \N 47010 \N genus Haylockia \N \N \N \N \N 47011 G.paniculatus Gerrardanthus Gerrardanthus paniculatus \N \N \N \N \N 47012 J.crateriorum Johanneshowellia Johanneshowellia crateriorum \N \N \N \N \N 47013 P.sclerantha Psammisia Psammisia sclerantha \N \N \N \N \N 47014 M.caseariifolia Microdesmis Microdesmis caseariifolia \N \N \N \N \N 47015 M.capense Mystacidium Mystacidium capense \N \N \N \N \N 47016 C.bolanderi Carex Carex bolanderi \N \N \N \N \N 47017 F.natalensis Ficus Ficus natalensis \N \N \N \N \N 47018 M.rubrum Marathrum Marathrum rubrum \N \N \N \N \N 47019 M.dealbata Montitega Montitega dealbata \N \N \N \N \N 47020 L.HWS-2009 Lecocarpus Lecocarpus sp. HWS-2009 \N \N \N \N \N 47021 R.veitchianum Rhododendron Rhododendron veitchianum \N \N \N \N \N 47022 Z.flavicoma Zinnia Zinnia flavicoma \N \N \N \N \N 47023 A.gillii Arceuthobium Arceuthobium gillii \N \N \N \N \N 47024 \N genus Stenocactus \N \N \N \N \N 47025 \N genus Chelonanthus \N \N \N \N \N 47026 \N genus Pseudosicydium \N \N \N \N \N 47027 T.caespititius Thymus Thymus caespititius \N \N \N \N \N 47028 P.speciosa Prunus Prunus speciosa Oshima cherry,oshima-zakura \N \N \N \N 47029 X.pectinata Xerodraba Xerodraba pectinata \N \N \N \N \N 47030 G.2709 Gaertnera Gaertnera sp. Malcomber 2709 \N \N \N \N \N 47031 L.canadensis Laportea Laportea canadensis \N \N \N \N \N 47032 B.biloba Byttneria Byttneria biloba \N \N \N \N \N 47033 D.pulchrum Disepalum Disepalum pulchrum \N \N \N \N \N 47034 O.oblongiformis Oxalis Oxalis oblongiformis \N \N \N \N \N 47035 I.imbricata Iris Iris imbricata \N \N \N \N \N 47036 \N genus Phragmipedium \N \N \N \N \N 47037 C.prolifer Chamaecytisus Chamaecytisus prolifer \N \N \N \N \N 47038 E.Esppomar Elleanthus Elleanthus sp. Esppomar \N \N \N \N \N 47039 L.acutifolia Luzula Luzula acutifolia \N \N \N \N \N 47040 E.jacksonii Eucalyptus Eucalyptus jacksonii \N \N \N \N \N 47041 F.SH-2010 Forestiera Forestiera sp. SH-2010 \N \N \N \N \N 47042 \N varietas Gymnocalycium pflanzii var. paraguayense \N \N \N \N \N 47043 T.angustata Typha Typha angustata \N \N \N \N \N 47044 \N varietas Platyschkuhria integrifolia var. integrifolia \N \N \N \N \N 47045 B.FS1040 Bulbophyllum Bulbophyllum sp. FS1040 \N \N \N \N \N 47046 N.luteifolia Nemcia Nemcia luteifolia \N \N \N \N \N 47047 Z.quitensis Zeltnera Zeltnera quitensis \N \N \N \N \N 47048 N.sarniensis Nerine Nerine sarniensis \N \N \N \N \N 47049 \N varietas Ixeris dentata var. albiflora \N \N \N \N \N 47050 R.angulata Raspalia Raspalia angulata \N \N \N \N \N 47051 S.cantense Solanum Solanum cantense \N \N \N \N \N 47052 S.reflexiflorum Solanum Solanum reflexiflorum \N \N \N \N \N 47053 L.connorsii Litsea Litsea connorsii \N \N \N \N \N 47054 S.wallichiana Strychnos Strychnos wallichiana \N \N \N \N \N 47055 Z.KGD-2009 Zygia Zygia sp. KGD-2009 \N \N \N \N \N 47056 G.subglabra Genlisea Genlisea subglabra \N \N \N \N \N 47057 C.tahoensis Carex Carex tahoensis \N \N \N \N \N 47058 S.americana Smelowskia Smelowskia americana \N \N \N \N \N 47059 T.berteronianus Tragus Tragus berteronianus \N \N \N \N \N 47060 V.soutpansbergensis Vangueria Vangueria soutpansbergensis \N \N \N \N \N 47061 R.monroi Raoulia Raoulia monroi \N \N \N \N \N 47062 M.ochrocalyx Matisia Matisia ochrocalyx \N \N \N \N \N 47063 \N tribe Pangieae \N \N \N \N \N 47064 P.henningii Potamogeton Potamogeton henningii \N \N \N \N \N 47065 \N genus Gomphocarpus \N \N \N \N \N 47066 O.boehmeri Orostachys Orostachys boehmeri \N \N \N \N \N 47067 T.subcordatum Tetrathyrium Tetrathyrium subcordatum \N \N \N \N \N 47068 \N genus Vieraea \N \N \N \N \N 47069 A.uniflorum Aframomum Aframomum uniflorum \N \N \N \N \N 47070 \N genus Intsia \N \N \N \N \N 47071 I.aluminicola Ixora Ixora aluminicola \N \N \N \N \N 47072 A.hansenii Alpinia Alpinia hansenii \N \N \N \N \N 47073 \N varietas Pedicularis bracteosa var. bracteosa \N \N \N \N \N 47074 S.'Ecuador' Schefflera Schefflera sp. 'Ecuador' \N \N \N \N \N 47075 \N varietas Lomatium graveolens var. graveolens \N \N \N \N \N 47076 A.microcarpum Acanthospermum Acanthospermum microcarpum \N \N \N \N \N 47077 C.SH-2010 Cayratia Cayratia sp. SH-2010 \N \N \N \N \N 47078 G.sessiliflorum Glochidion Glochidion sessiliflorum \N \N \N \N \N 47079 A.macowani Alepidea Alepidea macowani \N \N \N \N \N 47080 B.uniflora Brunfelsia Brunfelsia uniflora \N \N \N \N \N 47081 S.fragosoi Saxifraga Saxifraga fragosoi \N \N \N \N \N 47082 A.sterilis Avena Avena sterilis \N \N \N \N \N 47083 A.ochroleuca Achillea Achillea ochroleuca \N \N \N \N \N 47084 T.calcarea Tabernaemontana Tabernaemontana calcarea \N \N \N \N \N 47085 S.hukaoana Salix Salix hukaoana \N \N \N \N \N 47086 \N varietas Aristolochia kaempferi var. kaempferi \N \N \N \N \N 47087 D.saxorum Dipcadi Dipcadi saxorum \N \N \N \N \N 47088 I.laevigata Iris Iris laevigata \N \N \N \N \N 47089 O.formosana Ormosia Ormosia formosana \N \N \N \N \N 47090 M.oreganus Marah Marah oreganus Oregon manroot,common manroot \N \N \N \N 47091 P.filchnerae Primula Primula filchnerae \N \N \N \N \N 47092 A.haitiensis Annona Annona haitiensis \N \N \N \N \N 47093 C.marlothiana Calostephane Calostephane marlothiana \N \N \N \N \N 47094 A.goyazense Angelphytum Angelphytum goyazense \N \N \N \N \N 47095 A.serotina Aridaria Aridaria serotina \N \N \N \N \N 47096 M.schizocarpa Musa Musa acuminata x Musa schizocarpa \N \N \N \N \N 47097 B.capillipes Begonia Begonia capillipes \N \N \N \N \N 47098 P.africana Parkinsonia Parkinsonia africana \N \N \N \N \N 47099 \N subspecies Viola tenuicornis subsp. tenuicornis \N \N \N \N \N 47100 \N varietas Rhododendron roxieanum var. oreonastes \N \N \N \N \N 47101 I.gongshanensis Impatiens Impatiens gongshanensis \N \N \N \N \N 47102 P.ensiformis Poa Poa ensiformis \N \N \N \N \N 47103 O.tenuis Oldenlandia Oldenlandia tenuis \N \N \N \N \N 47104 D.asperum Diplodium Diplodium asperum \N \N \N \N \N 47105 \N varietas Chaetanthera stuebelii var. stuebelii \N \N \N \N \N 47106 A.latifolia Ammannia Ammannia latifolia \N \N \N \N \N 47107 P.volubilis Plukenetia Plukenetia volubilis \N \N \N \N \N 47108 A.maximowiczii Alnus Alnus maximowiczii \N \N \N \N \N 47109 E.alata Eschweilera Eschweilera alata \N \N \N \N \N 47110 \N genus Allolepis \N \N \N \N \N 47111 S.nevadensis Saxifraga Saxifraga nevadensis \N \N \N \N \N 47112 H.parvulum Helanthium Helanthium parvulum \N \N \N \N \N 47113 P.240 Pinguicula Pinguicula sp. Jobson 240 \N \N \N \N \N 47114 A.murinus Astragalus Astragalus murinus \N \N \N \N \N 47115 R.digitata Rhoicissus Rhoicissus digitata \N \N \N \N \N 47116 C.marnierana Crassula Crassula marnierana \N \N \N \N \N 47117 P.implexa Psammomoya Psammomoya implexa \N \N \N \N \N 47118 \N genus Distichoselinum \N \N \N \N \N 47119 M.wufengensis Magnolia Magnolia wufengensis \N \N \N \N \N 47120 P.irgangii Podostemum Podostemum irgangii \N \N \N \N \N 47121 U.dunlopii Utricularia Utricularia dunlopii \N \N \N \N \N 47122 P.stipoides Piptochaetium Piptochaetium stipoides \N \N \N \N \N 47123 L.pseudolycioides Lycianthes Lycianthes pseudolycioides \N \N \N \N \N 47124 M.MWC1234 Myrmecophila Myrmecophila cf. tibicinus MWC1234 \N \N \N \N \N 47125 V.orobus Vicia Vicia orobus \N \N \N \N \N 47126 A.williamsii Arachis Arachis williamsii \N \N \N \N \N 47127 V.196-17 Vitis Vitis sp. 196-17 \N \N \N \N \N 47128 \N varietas Cuscuta xanthochortos var. carinata \N \N \N \N \N 47129 C.122375 Campylocentrum Campylocentrum sp. Heidelberg BG 122375 \N \N \N \N \N 47130 A.neglecta Aegilops Aegilops neglecta \N \N \N \N \N 47131 A.baladensis Archirhodomyrtus Archirhodomyrtus baladensis \N \N \N \N \N 47132 C.hastata Chlorocrambe Chlorocrambe hastata \N \N \N \N \N 47133 S.peregrina Scrophularia Scrophularia peregrina \N \N \N \N \N 47134 O.daucorlaya Orlaya Orlaya daucorlaya \N \N \N \N \N 47135 \N forma Jasminum laurifolium f. nitidum \N \N \N \N \N 47136 P.12866 Piper Piper cf. gigantifolium Mori 12866 \N \N \N \N \N 47137 C.tymphaea Campanula Campanula tymphaea \N \N \N \N \N 47138 C.fragillima Cousinia Cousinia fragillima \N \N \N \N \N 47139 G.ekmanii Goetzea Goetzea ekmanii \N \N \N \N \N 47140 S.multijuga Senna Senna multijuga \N \N \N \N \N 47141 M.5638 Monopyle Monopyle aff. macrocarpa Clark 5638 \N \N \N \N \N 47142 M.pealiana Magnolia Magnolia pealiana \N \N \N \N \N 47143 E.laredoi Escobaria Escobaria laredoi \N \N \N \N \N 47144 A.nodosa Austrostipa Austrostipa nodosa \N \N \N \N \N 47145 H.bigelovii Helenium Helenium bigelovii \N \N \N \N \N 47146 \N subspecies Felicia filifolia subsp. schaeferi \N \N \N \N \N 47147 L.lanifera Launaea Launaea lanifera \N \N \N \N \N 47148 \N genus Lomandra \N \N \N \N \N 47149 A.angustifolia Atalaya Atalaya angustifolia \N \N \N \N \N 47150 C.formosensis Crateva Crateva formosensis \N \N \N \N \N 47151 A.chamaejasme Androsace Androsace chamaejasme \N \N \N \N \N 47152 D.anatolicus Dianthus Dianthus anatolicus \N \N \N \N \N 47153 \N subspecies Carex bromoides subsp. montana \N \N \N \N \N 47154 M.MA39 Microtis Microtis aff. angusii MA39 \N \N \N \N \N 47155 E.andrieuxii Eucodonia Eucodonia andrieuxii \N \N \N \N \N 47156 L.ordii Lomandra Lomandra ordii \N \N \N \N \N 47157 I.trita Indigofera Indigofera trita \N \N \N \N \N 47159 P.inaequivalve Paspalum Paspalum inaequivalve \N \N \N \N \N 47160 K.senegalensis Kohautia Kohautia senegalensis \N \N \N \N \N 47161 D.streptocarpa Draba Draba streptocarpa pretty draba \N \N \N \N 47162 H.tricostata Halophila Halophila tricostata \N \N \N \N \N 47163 C.SH-2010 Cyclonema Cyclonema sp. SH-2010 \N \N \N \N \N 47164 S.elachophyllum Solanum Solanum elachophyllum \N \N \N \N \N 47165 S.pyrrhias Schismatoglottis Schismatoglottis pyrrhias \N \N \N \N \N 47166 C.newberryi Cymopterus Cymopterus newberryi sweetroot springparsley \N \N \N \N 47167 H.sinensis Hedera Hedera sinensis \N \N \N \N \N 47168 D.juniperina Draba Draba juniperina \N \N \N \N \N 47169 \N genus Thomasia \N \N \N \N \N 47170 D.odora Dionysia Dionysia odora \N \N \N \N \N 47171 W.31093 Wachendorfia Wachendorfia sp. 31093 \N \N \N \N \N 47172 D.chrysadenius Didymocistus Didymocistus chrysadenius \N \N \N \N \N 47173 A.arbuscula Artemisia Artemisia arbuscula low sagebrush \N \N \N \N 47174 T.anomala Tessmannia Tessmannia anomala \N \N \N \N \N 47175 D.infirma Doellingeria Doellingeria infirma \N \N \N \N \N 47176 A.venusta Anatherostipa Anatherostipa venusta \N \N \N \N \N 47177 P.dolichoglossa Pedicularis Pedicularis dolichoglossa \N \N \N \N \N 47178 A.nerinoides Ammocharis Ammocharis nerinoides \N \N \N \N \N 47179 L.depressum Loeseliastrum Loeseliastrum depressum \N \N \N \N \N 47180 O.melena Ophrys Ophrys melena \N \N \N \N \N 47181 \N genus Coreopsis \N \N \N \N \N 47182 C.ruksansii Corydalis Corydalis ruksansii \N \N \N \N \N 47183 S.obovata Schiedea Schiedea obovata \N \N \N \N \N 47184 \N varietas Lupinus albifrons var. douglasii \N \N \N \N \N 47185 A.melanacme Anthemis Anthemis melanacme \N \N \N \N \N 47186 R.vanderystii Robynsiophyton Robynsiophyton vanderystii \N \N \N \N \N 47187 H.lindleyana Heteropterys Heteropterys lindleyana \N \N \N \N \N 52998 \N genus Xeronema \N \N \N \N \N 47188 F.scirpoidea Fuirena Fuirena scirpoidea \N \N \N \N \N 47189 C.flavens Croton Croton flavens \N \N \N \N \N 47190 C.molestus Chrysothamnus Chrysothamnus molestus \N \N \N \N \N 47191 D.1028 Dianthus Dianthus sp. Downie 1028 \N \N \N \N \N 47192 E.pelargoniflorum Erodium Erodium pelargoniflorum \N \N \N \N \N 47193 A.securifolia Aspalathus Aspalathus securifolia \N \N \N \N \N 47194 R.hygrophila Ruellia Ruellia hygrophila \N \N \N \N \N 47195 L.glaberrimum Leucadendron Leucadendron glaberrimum \N \N \N \N \N 47196 S.adscendens Solanum Solanum adscendens sonoita nightshade \N \N \N \N 47197 M.pungens Myrcianthes Myrcianthes pungens \N \N \N \N \N 47198 I.graminoides Isolepis Isolepis graminoides \N \N \N \N \N 47199 M.cyanosperma Margaritaria Margaritaria cyanosperma \N \N \N \N \N 47200 Z.zamiifolia Zamioculcas Zamioculcas zamiifolia \N \N \N \N \N 47201 T.orbiculatum Thlaspi Thlaspi orbiculatum \N \N \N \N \N 47202 S.talaumifolius Stenopadus Stenopadus talaumifolius \N \N \N \N \N 47203 H.shockleyi Hecastocleis Hecastocleis shockleyi \N \N \N \N \N 47204 I.lutea Incarvillea Incarvillea lutea \N \N \N \N \N 47205 B.reflexa Barbacenia Barbacenia reflexa \N \N \N \N \N 47206 P.mekongense Platostoma Platostoma mekongense \N \N \N \N \N 47207 C.strigosus Cyperus Cyperus strigosus \N \N \N \N \N 47208 C.grandidieri Cynanchum Cynanchum grandidieri \N \N \N \N \N 47209 A.albus Amorphophallus Amorphophallus albus \N \N \N \N \N 47210 \N genus Orthopterum \N \N \N \N \N 47211 U.tenella Utricularia Utricularia tenella \N \N \N \N \N 47212 M.floribunda Michelia Michelia floribunda \N \N \N \N \N 47213 S.venezuelensis Sabicea Sabicea venezuelensis \N \N \N \N \N 47214 \N subspecies Ranunculus haastii subsp. haastii \N \N \N \N \N 47215 D.dioscoreifolia Dalechampia Dalechampia dioscoreifolia \N \N \N \N \N 47216 O.arboreum Oxydendrum Oxydendrum arboreum sourwood \N \N \N \N 47217 C.integra Castilleja Castilleja integra \N \N \N \N \N 47218 \N genus Hilleria \N \N \N \N \N 47219 T.lemmonii Trifolium Trifolium lemmonii \N \N \N \N \N 47220 N.melastomatoides Neosprucea Neosprucea melastomatoides \N \N \N \N \N 47221 \N genus Capnophyllum \N \N \N \N \N 47222 P.kotzebuei Parnassia Parnassia kotzebuei \N \N \N \N \N 47223 R.pacheco-leonis Rhipsalis Rhipsalis pacheco-leonis \N \N \N \N \N 47224 C.tridens Corchorus Corchorus tridens \N \N \N \N \N 47225 E.formosa Eureiandra Eureiandra formosa \N \N \N \N \N 47226 P.parvulus Phaseolus Phaseolus parvulus \N \N \N \N \N 47227 D.bellatulum Dendrobium Dendrobium bellatulum \N \N \N \N \N 47228 O.harlingii Otoglossum Otoglossum harlingii \N \N \N \N \N 47229 P.floribunda Pogogyne Pogogyne floribunda \N \N \N \N \N 47230 W.8777 Warneckea Warneckea sp. Luke 8777 \N \N \N \N \N 47231 C.subpeltata Cordemoya Cordemoya subpeltata \N \N \N \N \N 47232 C.foetida Crepis Crepis foetida \N \N \N \N \N 47233 T.hubbardiana Tristachya Tristachya hubbardiana \N \N \N \N \N 47234 S.chimantensis Schefflera Schefflera chimantensis \N \N \N \N \N 47235 E.cheirolepis Euphorbia Euphorbia cheirolepis \N \N \N \N \N 47236 E.cubica Erica Erica cubica \N \N \N \N \N 47237 D.atlantica Digitalis Digitalis atlantica \N \N \N \N \N 47238 D.hemsleyi Dioscorea Dioscorea hemsleyi \N \N \N \N \N 47239 \N genus Nematoceras \N \N \N \N \N 47240 P.trichotomus Phyllobolus Phyllobolus trichotomus \N \N \N \N \N 47241 \N varietas Cristaria integerrima var. integerrima \N \N \N \N \N 47242 J.humilis Jurinea Jurinea humilis \N \N \N \N \N 47243 R.hirta Rudbeckia Rudbeckia hirta \N \N \N \N \N 47244 \N genus Digitacalia \N \N \N \N \N 47245 \N genus Astraea \N \N \N \N \N 47246 P.cookii Poa Poa cookii \N \N \N \N \N 47247 P.wittmanniana Paeonia Paeonia wittmanniana \N \N \N \N \N 47248 I.willmottiana Iris Iris willmottiana \N \N \N \N \N 47249 R.giganteus Rumex Rumex giganteus \N \N \N \N \N 47250 E.monsoniana Erica Erica monsoniana \N \N \N \N \N 47251 P.guanxianensis Pseudosasa Pseudosasa guanxianensis \N \N \N \N \N 47252 X.moluccensis Xylocarpus Xylocarpus moluccensis \N \N \N \N \N 47253 O.haumaniana Oxychloe Oxychloe haumaniana \N \N \N \N \N 47254 E.O-432 Epistephium Epistephium sp. Chase O-432 \N \N \N \N \N 47255 \N subtribe Leiboldiinae \N \N \N \N \N 47256 R.donaldiana Rebutia Rebutia donaldiana \N \N \N \N \N 47257 N.polycephala Nidorella Nidorella polycephala \N \N \N \N \N 47258 H.fascicularis Henriettea Henriettea fascicularis \N \N \N \N \N 47259 H.pseudopopulus Helmiopsis Helmiopsis pseudopopulus \N \N \N \N \N 47260 M.2578 Maxillaria Maxillaria cf. plicata Whitten 2578 \N \N \N \N \N 47261 I.meruensis Impatiens Impatiens meruensis \N \N \N \N \N 47262 I.h-2a Impatiens Impatiens sp. h-2a \N \N \N \N \N 47263 C.orbiculatus Cocculus Cocculus orbiculatus \N \N \N \N \N 47264 C.dentata Cordia Cordia dentata \N \N \N \N \N 47265 S.jepomii Schismatoglottis Schismatoglottis jepomii \N \N \N \N \N 47266 Z.90024 Zygogynum Zygogynum sp. Qiu 90024 \N \N \N \N \N 47267 S.rosmarinus Seidlitzia Seidlitzia rosmarinus \N \N \N \N \N 47268 P.91047 Peperomia Peperomia sp. Qiu 91047 \N \N \N \N \N 47269 T.oppositifolia Taralea Taralea oppositifolia \N \N \N \N \N 47270 C.albidus Cistus Cistus albidus \N \N \N \N \N 47271 D.minutilloi Doronicum Doronicum x minutilloi \N \N \N \N \N 47272 D.922 Dianthus Dianthus sp. M. Nepokroeff 922 \N \N \N \N \N 47273 \N forma Prunus persica f. scleropersica \N \N \N \N \N 47274 \N genus Nyssa \N \N \N \N \N 47275 C.psaridis Colchicum Colchicum psaridis \N \N \N \N \N 47276 C.chrysanthoides Camellia Camellia chrysanthoides \N \N \N \N \N 47277 A.viscosa Arnica Arnica viscosa \N \N \N \N \N 47278 P.rheophyticus Phyllanthus Phyllanthus rheophyticus \N \N \N \N \N 47279 E.obtusa Eragrostis Eragrostis obtusa \N \N \N \N \N 47280 E.virginensis Encelia Encelia virginensis \N \N \N \N \N 47281 \N genus Rudgea \N \N \N \N \N 47282 P.alba Populus Populus alba abele,gin-doro,silver-leaf poplar,white poplar,xin bai yang \N \N \N \N 47283 \N varietas Haworthia turgida var. turgida \N \N \N \N \N 47284 A.filifolia Artemisia Artemisia filifolia \N \N \N \N \N 47285 U.7501 Urophyllum Urophyllum sp. Beaman 7501 \N \N \N \N \N 47286 \N varietas Bactris gasipaes var. chichagui \N \N \N \N \N 47287 P.cryptogrammata Psychotria Psychotria cryptogrammata \N \N \N \N \N 47288 Q.engelmannii Quercus Quercus engelmannii mesa oak \N \N \N \N 47289 M.timothianum Macropiper Macropiper timothianum \N \N \N \N \N 47290 S.hastata Salix Salix hastata halberd willow \N \N \N \N 47291 P.schimperiana Psydrax Psydrax schimperiana \N \N \N \N \N 47292 A.arenaria Armeria Armeria arenaria \N \N \N \N \N 47293 \N genus Basananthe \N \N \N \N \N 47294 G.insolita Gurania Gurania insolita \N \N \N \N \N 47295 \N varietas Polemonium caeruleum var. vulgare \N \N \N \N \N 47296 S.laxiflorum Sorghum Sorghum laxiflorum \N \N \N \N \N 47297 N.dichondrifolia Nertera Nertera dichondrifolia \N \N \N \N \N 47298 \N varietas Brassica oleracea var. alboglabra Chinese kale \N \N \N \N 47299 A.caricum Alyssum Alyssum caricum \N \N \N \N \N 47300 \N varietas Cardiocrinum giganteum var. yunnanense \N \N \N \N \N 47301 E.brevipes Elymus Elymus brevipes \N \N \N \N \N 47302 O.besseyi Oxytropis Oxytropis besseyi \N \N \N \N \N 47303 A.chilensis Aristotelia Aristotelia chilensis \N \N \N \N \N 47304 G.borneensis Gonystylus Gonystylus borneensis \N \N \N \N \N 47305 \N genus Raphia \N \N \N \N \N 47306 P.DES Pieris Pieris sp. DES \N \N \N \N \N 47307 \N varietas Cliffortia paucistaminea var. paucistaminea \N \N \N \N \N 47308 L.alpinum Linum Linum alpinum \N \N \N \N \N 47309 C.fedorovii Campanula Campanula fedorovii \N \N \N \N \N 47310 F.radiata Ficinia Ficinia radiata \N \N \N \N \N 47311 C.calliantha Caesia Caesia calliantha \N \N \N \N \N 47312 P.porphyrophyllum Piper Piper porphyrophyllum \N \N \N \N \N 47313 E.cervantesii Eryngium Eryngium cervantesii \N \N \N \N \N 47314 K.acuminata Kadua Kadua acuminata \N \N \N \N \N 47315 P.aurita Pericallis Pericallis aurita \N \N \N \N \N 47316 \N genus Milleria \N \N \N \N \N 47317 P.urvillei Plinthanthesis Plinthanthesis urvillei \N \N \N \N \N 47318 C.greuteri Cousinia Cousinia greuteri \N \N \N \N \N 47319 L.cultivar Lupinus Lupinus hybrid cultivar \N \N \N \N \N 47320 C.plumieri Cicerbita Cicerbita plumieri \N \N \N \N \N 47321 V.oblongifolia Vigna Vigna oblongifolia \N \N \N \N \N 47322 \N genus Bakeridesia \N \N \N \N \N 47323 \N genus Limacia \N \N \N \N \N 47324 L.falcata Lepidagathis Lepidagathis falcata \N \N \N \N \N 47325 B.ensifolia Bletia Bletia ensifolia \N \N \N \N \N 47326 R.810 Rhodocolea Rhodocolea sp. Zjhra 810 \N \N \N \N \N 47327 \N varietas Correa lawrenceana var. grampiana \N \N \N \N \N 47328 X.dactylophyllum Xenophyllum Xenophyllum dactylophyllum \N \N \N \N \N 47329 L.1882 Leucaena Leucaena hybrid sp. Hughes 1882 \N \N \N \N \N 47330 \N genus Hemimeris \N \N \N \N \N 47331 T.subulata Trichopilia Trichopilia subulata \N \N \N \N \N 47332 B.alba Baptisia Baptisia alba white wild indigo \N \N \N \N 47333 C.intermedia Crepis Crepis intermedia \N \N \N \N \N 47334 \N genus Magydaris \N \N \N \N \N 47335 G.thunbergianum Galium Galium thunbergianum \N \N \N \N \N 47336 S.princeae Satyrium Satyrium princeae \N \N \N \N \N 47337 A.lainzii Adenocarpus Adenocarpus aureus x Adenocarpus lainzii \N \N \N \N \N 47338 N.planipetala Neogoezia Neogoezia planipetala \N \N \N \N \N 47339 W.ororiensis Werauhia Werauhia ororiensis \N \N \N \N \N 47340 P.frutescens Procris Procris frutescens \N \N \N \N \N 47341 S.akinfievii Silene Silene akinfievii \N \N \N \N \N 47342 \N varietas Vigna umbellata var. umbellata \N \N \N \N \N 47343 E.halophilum Eutrema Eutrema halophilum \N \N \N \N \N 47344 C.bulbifera Cicuta Cicuta bulbifera \N \N \N \N \N 47345 S.4707 Stachyarrhena Stachyarrhena sp. Jansen-Jacobs 4707 \N \N \N \N \N 47346 S.purpurellum Sisyrinchium Sisyrinchium purpurellum \N \N \N \N \N 47347 C.sarmentosa Claytonia Claytonia sarmentosa \N \N \N \N \N 47348 D.patens Dracophyllum Dracophyllum patens \N \N \N \N \N 47349 L.orientalis Lycopsis Lycopsis orientalis \N \N \N \N \N 47350 G.xantholeuca Globba Globba xantholeuca \N \N \N \N \N 47351 R.latifunda Ruprechtia Ruprechtia latifunda \N \N \N \N \N 47352 L.25230 unclassified Lauraceae Lauraceae gen. sp. Vasquez 25230 \N \N \N \N \N 47353 H.gnidioides Hymenolepis Hymenolepis gnidioides \N \N \N \N \N 47354 L.Fiji Liparis Liparis sp. Fiji \N \N \N \N \N 47355 O.lachenalii Oenanthe Oenanthe lachenalii \N \N \N \N \N 47356 S.montana Sutherlandia Sutherlandia montana \N \N \N \N \N 47357 S.uralensis Silene Silene uralensis \N \N \N \N \N 47358 \N no rank unclassified Convolvulaceae \N \N \N \N \N 47359 A.microcarpa Aquilaria Aquilaria microcarpa \N \N \N \N \N 47360 \N genus Amelanchier \N \N \N \N \N 47361 A.rigida Acampe Acampe rigida \N \N \N \N \N 47362 F.grahliana Frailea Frailea grahliana \N \N \N \N \N 47363 C.davuricum Cerastium Cerastium davuricum \N \N \N \N \N 47364 C.virginica Claytonia Claytonia virginica Virginia springbeauty \N \N \N \N 47365 A.luzuloides Antennaria Antennaria luzuloides \N \N \N \N \N 47366 L.costaricensis Laestadia Laestadia costaricensis \N \N \N \N \N 47367 V.fragile Vaccinium Vaccinium fragile \N \N \N \N \N 47368 A.hirsutiflora Angelica Angelica hirsutiflora \N \N \N \N \N 47369 L.sylvestris Lathyrus Lathyrus sylvestris \N \N \N \N \N 47370 H.concinnum Hermogenodendron Hermogenodendron concinnum \N \N \N \N \N 47371 T.revolutum Thalictrum Thalictrum revolutum \N \N \N \N \N 47372 G.augusta Gustavia Gustavia augusta \N \N \N \N \N 47373 C.splendida Cuphea Cuphea splendida \N \N \N \N \N 47374 D.sericea Danthonia Danthonia sericea \N \N \N \N \N 47375 C.pterocaula Campanula Campanula pterocaula \N \N \N \N \N 47376 \N genus Rhadamanthopsis \N \N \N \N \N 47377 S.sandwicense Syzygium Syzygium sandwicense \N \N \N \N \N 47378 Z.crassifolium Zygogynum Zygogynum crassifolium \N \N \N \N \N 47379 L.pluriloculatus Leucopogon Leucopogon pluriloculatus \N \N \N \N \N 47380 E.nigricans Eragrostis Eragrostis nigricans \N \N \N \N \N 47381 C.oldfieldii Calothamnus Calothamnus oldfieldii \N \N \N \N \N 47382 C.chaunocoleus Chordifex Chordifex chaunocoleus \N \N \N \N \N 47383 S.acuruensis Senna Senna acuruensis \N \N \N \N \N 47384 C.psilocarpa Corchoropsis Corchoropsis psilocarpa \N \N \N \N \N 47385 \N genus Helietta \N \N \N \N \N 47386 P.vitiense Piper Piper vitiense \N \N \N \N \N 47387 T.obtusus Thamnochortus Thamnochortus obtusus \N \N \N \N \N 47388 M.inclinata Moraea Moraea inclinata \N \N \N \N \N 47389 L.crassiusculus Leymus Leymus crassiusculus \N \N \N \N \N 47390 P.glabrescens Protium Protium glabrescens \N \N \N \N \N 47391 M.moniliformis Monilaria Monilaria moniliformis \N \N \N \N \N 47392 C.bipinnatus Cosmos Cosmos bipinnatus \N \N \N \N \N 47393 P.hirta Potentilla Potentilla hirta \N \N \N \N \N 47394 M.mediocris Michelia Michelia mediocris \N \N \N \N \N 47395 \N genus Eremodraba \N \N \N \N \N 47396 P.auriberbis Penstemon Penstemon auriberbis \N \N \N \N \N 47397 P.pinnatum Pelargonium Pelargonium pinnatum \N \N \N \N \N 47398 G.Sunyataram Goniothalamus Goniothalamus sp. Sunyataram \N \N \N \N \N 47399 P.coryphaeum Paspalum Paspalum coryphaeum \N \N \N \N \N 47400 C.dodonaea Comocladia Comocladia dodonaea \N \N \N \N \N 47401 \N genus Leucocarpus \N \N \N \N \N 47402 A.impexus Astragalus Astragalus impexus \N \N \N \N \N 47403 F.elskensii Fadogia Fadogia elskensii \N \N \N \N \N 47404 H.heydeana Hauya Hauya heydeana \N \N \N \N \N 47405 A.weilbachii Aechmea Aechmea weilbachii \N \N \N \N \N 47406 A.appalachiana Arundinaria Arundinaria appalachiana \N \N \N \N \N 47407 A.capillifolia Aphanopleura Aphanopleura capillifolia \N \N \N \N \N 47408 S.chinensis Sericocalyx Sericocalyx chinensis \N \N \N \N \N 47409 T.thymoides Thymopsis Thymopsis thymoides \N \N \N \N \N 47410 P.sugiyamanum Paphiopedilum Paphiopedilum sugiyamanum \N \N \N \N \N 47411 R.brotherusii Ranunculus Ranunculus brotherusii \N \N \N \N \N 47412 C.linearis Conomitra Conomitra linearis \N \N \N \N \N 47413 \N varietas Miconia cerasiflora var. cerasiflora \N \N \N \N \N 47414 \N genus Callistachys \N \N \N \N \N 47415 E.aphyllum Epipogium Epipogium aphyllum \N \N \N \N \N 47416 J.incana Jacobaea Jacobaea incana \N \N \N \N \N 47417 \N family Thesiaceae \N \N \N \N \N 47418 A.murcae Aechmea Aechmea murcae \N \N \N \N \N 47419 S.kleinia Senecio Senecio kleinia \N \N \N \N \N 47420 \N genus Calyptrosciadium \N \N \N \N \N 47421 L.abyssinica Lefebvrea Lefebvrea abyssinica \N \N \N \N \N 47422 \N subspecies Festuca paniculata subsp. paniculata \N \N \N \N \N 47423 \N genus Pistacia \N \N \N \N \N 47424 \N subspecies Aspalathus pachyloba subsp. villicaulis \N \N \N \N \N 47425 D.MP-2011 Dipcadi Dipcadi sp. 4 MP-2011 \N \N \N \N \N 47426 P.spatulatus Penstemon Penstemon spatulatus \N \N \N \N \N 47427 A.6-VI-95A' Anigozanthos Anigozanthos sp. 'Simpson 6-VI-95A' \N \N \N \N \N 47428 C.coahuilensis Calamagrostis Calamagrostis coahuilensis \N \N \N \N \N 47429 A.MD Arisaema Arisaema sp. MD \N \N \N \N \N 47430 S.laciniatum Silphium Silphium laciniatum \N \N \N \N \N 47431 A.stricta Asta Asta stricta \N \N \N \N \N 47432 B.verticillata Boerhavia Boerhavia verticillata \N \N \N \N \N 47433 A.rojasiana Aristolochia Aristolochia rojasiana \N \N \N \N \N 47434 G.pilosa Germainia Germainia pilosa \N \N \N \N \N 47435 C.ulei Compsoneura Compsoneura ulei \N \N \N \N \N 47436 P.platycephala Parkia Parkia platycephala \N \N \N \N \N 47437 P.caparoensis Paepalanthus Paepalanthus caparoensis \N \N \N \N \N 47438 H.2200 Hymenochilus Hymenochilus aff. cycnocephalus DE Murfet 2200 \N \N \N \N \N 47439 P.moaensis Pachyanthus Pachyanthus moaensis \N \N \N \N \N 47440 \N subspecies Aegilops tauschii subsp. strangulata \N \N \N \N \N 47441 A.bertierifolia Alibertia Alibertia bertierifolia \N \N \N \N \N 47442 P.kaernbachii Pandanus Pandanus kaernbachii \N \N \N \N \N 47443 C.laevigata Crambe Crambe laevigata \N \N \N \N \N 47444 D.pterogyne Dendrochilum Dendrochilum pterogyne \N \N \N \N \N 47445 I.nicolai Iris Iris nicolai \N \N \N \N \N 47446 P.vulgaris Primula Primula vulgaris \N \N \N \N \N 47447 C.gillettii Calciphila Calciphila gillettii \N \N \N \N \N 47448 C.SH-2010 Calotropis Calotropis sp. SH-2010 \N \N \N \N \N 47449 A.idaeum Arum Arum idaeum \N \N \N \N \N 47450 L.cuspidata Lepidagathis Lepidagathis cuspidata \N \N \N \N \N 47451 O.krugii Ormosia Ormosia krugii \N \N \N \N \N 47452 I.linifolia Iris Iris linifolia \N \N \N \N \N 47453 P.africana Plagiostyles Plagiostyles africana \N \N \N \N \N 47454 C.OM-2010 Combretum Combretum sp. OM-2010 \N \N \N \N \N 47455 D.orientalis Dodartia Dodartia orientalis \N \N \N \N \N 47456 C.spiculata Cibirhiza Cibirhiza spiculata \N \N \N \N \N 47457 \N subspecies Triteleia crocea subsp. crocea \N \N \N \N \N 47458 T.s3 unclassified Taraxacum Taraxacum (sect. Scariosa) sp. s3 \N \N \N \N \N 47459 H.4550 Hibiscus Hibiscus sp. Fryxell, Craven & Stewart 4550 \N \N \N \N \N 47460 B.beckleri Berberidopsis Berberidopsis beckleri \N \N \N \N \N 47461 \N subspecies Edraianthus serbicus subsp. stankovicii \N \N \N \N \N 47462 C.retisquama Ceratostylis Ceratostylis retisquama \N \N \N \N \N 47463 M.umbellata Monsonia Monsonia umbellata \N \N \N \N \N 47464 C.curetum Carlina Carlina curetum \N \N \N \N \N 47465 C.fantastica Ceropegia Ceropegia fantastica \N \N \N \N \N 47466 M.sample environmental samples Taxonomy:531417 Myrtaceae environmental sample \N \N \N \N \N 47467 E.plantagineum Eryngium Eryngium plantagineum \N \N \N \N \N 47468 C.bellioides Chaetopappa Chaetopappa bellioides \N \N \N \N \N 47469 K.brachystachya Kniphofia Kniphofia brachystachya \N \N \N \N \N 47470 \N subspecies Limnanthes alba subsp. versicolor \N \N \N \N \N 47471 T.triradiatum Trachyspermum Trachyspermum triradiatum \N \N \N \N \N 47472 O.morrisoniana Oreofraga Oreofraga morrisoniana \N \N \N \N \N 47473 S.reginae Siparuna Siparuna reginae \N \N \N \N \N 47474 G.wigginsii Galium Galium wigginsii \N \N \N \N \N 47475 C.africana Celtis Celtis africana \N \N \N \N \N 47476 O.sativa Oryza Oryza sativa red rice,rice \N \N \N \N 47477 L.L26 Liparis Liparis cf. japonica L26 \N \N \N \N \N 47478 \N genus Tabaroa \N \N \N \N \N 47479 H.sibirica Hesperis Hesperis sibirica \N \N \N \N \N 47480 D.lanceolatus Durio Durio lanceolatus \N \N \N \N \N 47481 S.zahlbruckneri Saurauia Saurauia zahlbruckneri \N \N \N \N \N 47482 H.crassifolia Heterotaxis Heterotaxis crassifolia \N \N \N \N \N 47483 C.craspedotrichus Croton Croton craspedotrichus \N \N \N \N \N 47484 \N genus Pseudosindora \N \N \N \N \N 47485 G.multicaulis Galphimia Galphimia multicaulis \N \N \N \N \N 47486 P.braunii Paropsia Paropsia braunii \N \N \N \N \N 47487 \N genus Stephanostema \N \N \N \N \N 47488 \N genus Trachycarpus fan palms \N \N \N \N 47489 H.taraxacoides Hypochaeris Hypochaeris taraxacoides \N \N \N \N \N 47490 A.macrocalyx Acridocarpus Acridocarpus macrocalyx \N \N \N \N \N 47491 \N varietas Stipa tianschanica var. klemenzii \N \N \N \N \N 47492 C.delicatula Chusquea Chusquea delicatula \N \N \N \N \N 47493 S.oblongifolia Schefflera Schefflera oblongifolia \N \N \N \N \N 47494 \N varietas Actinidia macrosperma var. macrosperma \N \N \N \N \N 47495 \N varietas Cornus oblonga var. griffithii \N \N \N \N \N 47496 \N subspecies Phalaenopsis aphrodite subsp. formosana \N \N \N \N \N 47497 S.stans Smilax Smilax stans \N \N \N \N \N 47498 H.ascyron Hypericum Hypericum ascyron \N \N \N \N \N 47499 \N varietas Eriosyce subgibbosa var. castanea \N \N \N \N \N 47500 C.carinata Coelogyne Coelogyne carinata \N \N \N \N \N 47501 \N tribe Fuireneae \N \N \N \N \N 47502 E.lasiogyne Eleutherococcus Eleutherococcus lasiogyne \N \N \N \N \N 47503 S.hippocampoides Stylosanthes guianensis species complex Stylosanthes hippocampoides \N \N \N \N \N 47504 \N genus Ixiolaena \N \N \N \N \N 47505 A.sicula Aristolochia Aristolochia sicula \N \N \N \N \N 47506 C.nubigenum Clinopodium Clinopodium nubigenum \N \N \N \N \N 47507 C.seraglio Campanula Campanula seraglio \N \N \N \N \N 47508 \N varietas Centaurea rouyi var. rouyi \N \N \N \N \N 47509 A.megalocarpa Actites Actites megalocarpa \N \N \N \N \N 47510 \N varietas Fimbristylis longispica var. boninensis \N \N \N \N \N 47511 M.costaricensis Miconia Miconia costaricensis \N \N \N \N \N 47512 P.nutans Paspalum Paspalum nutans \N \N \N \N \N 47513 F.qinlingensis Fargesia Fargesia qinlingensis \N \N \N \N \N 47514 S.minutiflorum Sisyrinchium Sisyrinchium minutiflorum \N \N \N \N \N 47515 \N genus Delpinophytum \N \N \N \N \N 47516 C.filipes Cyrtandra Cyrtandra filipes \N \N \N \N \N 47517 S.wildpretii Sonchus Sonchus wildpretii \N \N \N \N \N 47518 P.subauriculata Paullinia Paullinia subauriculata \N \N \N \N \N 47519 T.bessarabicum Thinopyrum Thinopyrum bessarabicum \N \N \N \N \N 47520 A.inulifolium Austroeupatorium Austroeupatorium inulifolium \N \N \N \N \N 47521 R.kawakamii Rhododendron Rhododendron kawakamii \N \N \N \N \N 47522 E.conopseum Epidendrum Epidendrum conopseum \N \N \N \N \N 47523 C.tunicata Cylindropuntia Cylindropuntia tunicata \N \N \N \N \N 47524 K.mentzelioides Klaprothia Klaprothia mentzelioides \N \N \N \N \N 47525 E.campanularis Erica Erica campanularis \N \N \N \N \N 47526 E.cylindricum Entandrophragma Entandrophragma cylindricum aboudikro,sapele-mahogany \N \N \N \N 47527 H.eyreana Haloragis Haloragis eyreana \N \N \N \N \N 47528 \N genus Pterospora \N \N \N \N \N 47529 \N genus Coleataenia \N \N \N \N \N 47530 M.sphaeroidea Momordica Momordica sphaeroidea \N \N \N \N \N 47531 L.webbii Lactucosonchus Lactucosonchus webbii \N \N \N \N \N 47532 R.neomexicanus Rubus Rubus neomexicanus New Mexico raspberry \N \N \N \N 47533 M.rupestris Minuartia Minuartia rupestris \N \N \N \N \N 47534 M.acaciifolium Macrolobium Macrolobium acaciifolium \N \N \N \N \N 47535 P.lowii Paphiopedilum Paphiopedilum lowii \N \N \N \N \N 47536 P.bicolor Pittosporum Pittosporum bicolor \N \N \N \N \N 47537 D.scapigera Deuterocohnia Deuterocohnia scapigera \N \N \N \N \N 47538 \N genus Brachyloma \N \N \N \N \N 47539 S.carolinense Solanum Solanum carolinense ball nightshade \N \N \N \N 47540 \N genus Ixocactus \N \N \N \N \N 47541 S.claritae Sisyrinchium Sisyrinchium claritae \N \N \N \N \N 47542 A.polyacantha Acacia Acacia polyacantha \N \N \N \N \N 47543 C.ensiformis Centaurea Centaurea ensiformis \N \N \N \N \N 47544 M.asiatica Mentha Mentha asiatica \N \N \N \N \N 47545 L.xanthocoma Leandra Leandra xanthocoma \N \N \N \N \N 47546 \N genus Amellus \N \N \N \N \N 47547 L.epacridoideum Leptospermum Leptospermum epacridoideum \N \N \N \N \N 47548 C.aurea Cuscuta Cuscuta aurea \N \N \N \N \N 47549 D.juncea Diostea Diostea juncea \N \N \N \N \N 47550 L.milanjiana Leucas Leucas milanjiana \N \N \N \N \N 47551 M.eminii Maesopsis Maesopsis eminii \N \N \N \N \N 47552 E.mutabilis Elymus Elymus mutabilis \N \N \N \N \N 47553 M.'sepikensis' Metrosideros Metrosideros sp. 'sepikensis' \N \N \N \N \N 47554 S.orientalis Salsola Salsola orientalis \N \N \N \N \N 47555 \N genus Staphylea \N \N \N \N \N 47556 G.formosa Glischrocolla Glischrocolla formosa \N \N \N \N \N 47557 C.bispinosa Carissa Carissa bispinosa \N \N \N \N \N 47558 C.gabonensis Crudia Crudia gabonensis \N \N \N \N \N 47559 E.5650A Elattostachys Elattostachys sp. Lowry 5650A \N \N \N \N \N 47560 S.apetala Sagina Sagina apetala \N \N \N \N \N 47561 D.platypoda Drosera Drosera platypoda \N \N \N \N \N 47562 \N subspecies Anthriscus sylvestris subsp. nemorosa \N \N \N \N \N 47563 \N subspecies Camassia quamash subsp. utahensis \N \N \N \N \N 47564 \N subspecies Zea mays subsp. mays Indian corn,corn,maize \N \N \N \N 47565 P.grossularioides Pelargonium Pelargonium grossularioides \N \N \N \N \N 47566 S.kraussii Salacia Salacia kraussii \N \N \N \N \N 47567 V.formosa Vavilovia Vavilovia formosa \N \N \N \N \N 47568 S.30.018 Salicornia Salicornia aff. patula Freitag 30.018 \N \N \N \N \N 47569 G.webbianum Gymnostoma Gymnostoma webbianum \N \N \N \N \N 47570 \N genus Scorzoneroides \N \N \N \N \N 47571 T.densiflorum Thesium Thesium densiflorum \N \N \N \N \N 47572 P.garckei Passiflora Passiflora garckei \N \N \N \N \N 47573 C.psidioides Combretum Combretum psidioides \N \N \N \N \N 47574 S.dichotomum Stoibrax Stoibrax dichotomum \N \N \N \N \N 47575 T.pittieri Tocoyena Tocoyena pittieri \N \N \N \N \N 47576 F.gibbosa Fritillaria Fritillaria gibbosa \N \N \N \N \N 47577 D.corymbosa Deutzia Deutzia corymbosa \N \N \N \N \N 47578 A.dadah Artocarpus Artocarpus dadah \N \N \N \N \N 47579 M.surinamensis Malmea Malmea surinamensis \N \N \N \N \N 47580 \N subspecies Chuquiraga ulicina subsp. acicularis \N \N \N \N \N 47581 P.glabra Pilea Pilea glabra \N \N \N \N \N 47582 Y.acutangula Yinshania Yinshania acutangula \N \N \N \N \N 47583 \N genus Synedrella \N \N \N \N \N 47584 U.foliosa Urochloa Urochloa foliosa \N \N \N \N \N 47585 E.capillaris Eremogone Eremogone capillaris \N \N \N \N \N 47586 A.anthemiformis Anthemis Anthemis anthemiformis \N \N \N \N \N 47587 L.coriaceifolius Lagarosolen Lagarosolen coriaceifolius \N \N \N \N \N 47588 P.rugelii Polygala Polygala rugelii \N \N \N \N \N 47589 L.delnorticus Lathyrus Lathyrus delnorticus \N \N \N \N \N 47590 C.madagascariensis Comoranthus Comoranthus madagascariensis \N \N \N \N \N 47591 K.spartioides Krameria Krameria spartioides \N \N \N \N \N 47592 S.randaiense Sassafras Sassafras randaiense \N \N \N \N \N 47593 O.pulteneae Oxylobium Oxylobium pulteneae \N \N \N \N \N 47594 P.subsiliquosa Parrya Parrya subsiliquosa \N \N \N \N \N 47595 \N genus Eurystyles \N \N \N \N \N 47596 R.incarnatum Ribes Ribes incarnatum \N \N \N \N \N 47597 I.linifolia Indigofera Indigofera linifolia \N \N \N \N \N 47598 C.maximus Centaurothamnus Centaurothamnus maximus \N \N \N \N \N 47599 A.atkinsiana Acacia Acacia atkinsiana \N \N \N \N \N 47600 O.ornithopodioides Ononis Ononis ornithopodioides \N \N \N \N \N 47601 \N genus Echinosophora \N \N \N \N \N 47602 H.neblinae Hebepetalum Hebepetalum neblinae \N \N \N \N \N 47603 A.purpurascens Anisophyllea Anisophyllea purpurascens \N \N \N \N \N 47604 P.ovalifolia Primula Primula ovalifolia \N \N \N \N \N 47605 T.mammosum Theobroma Theobroma mammosum \N \N \N \N \N 47606 E.obliqua Eucalyptus Eucalyptus obliqua messmate stringybark \N \N \N \N 47607 S.caesia Saxifraga Saxifraga caesia \N \N \N \N \N 47608 \N genus Pentodon \N \N \N \N \N 47609 J.polyclada Jarava Jarava polyclada \N \N \N \N \N 47610 S.corallorrhiza Scaphyglottis Scaphyglottis corallorrhiza \N \N \N \N \N 47611 \N genus Panopsis \N \N \N \N \N 47612 G.ceciliae Glossostelma Glossostelma ceciliae \N \N \N \N \N 47613 \N genus Crepis \N \N \N \N \N 47614 P.atrovirens Papaver Papaver atrovirens \N \N \N \N \N 47615 T.formosissimum Taraxacum Taraxacum formosissimum \N \N \N \N \N 47616 \N genus Fadogia \N \N \N \N \N 47617 G.spathacea Gagea Gagea spathacea \N \N \N \N \N 47618 P.rumphii Polyalthia Polyalthia rumphii \N \N \N \N \N 47619 G.mustelinum Gossypium Gossypium mustelinum \N \N \N \N \N 47620 O.berteroi Osmorhiza Osmorhiza berteroi \N \N \N \N \N 47621 J.berteroi Jacquinia Jacquinia berteroi \N \N \N \N \N 47622 D.suberecta Dicliptera Dicliptera suberecta \N \N \N \N \N 47623 \N varietas Achillea millefolium var. puberula \N \N \N \N \N 47624 A.minutum Alyssum Alyssum minutum \N \N \N \N \N 47625 G.splendens Gazania Gazania splendens \N \N \N \N \N 47626 S.burrito Sedum Sedum burrito \N \N \N \N \N 47627 \N subspecies Ranunculus turneri subsp. jacuticus \N \N \N \N \N 47628 R.floribunda Renealmia Renealmia floribunda \N \N \N \N \N 47629 T.littoralis Thouarsiora Thouarsiora littoralis \N \N \N \N \N 47630 M.turbinea Malesherbia Malesherbia turbinea \N \N \N \N \N 47631 R.webbiana Rosa Rosa webbiana \N \N \N \N \N 47632 C.vallis-pacis Cineraria Cineraria vallis-pacis \N \N \N \N \N 47633 S.wallacei Solanum Solanum wallacei Catalina nightshade \N \N \N \N 47634 T.magellanicum Tetroncium Tetroncium magellanicum \N \N \N \N \N 47635 B.SH-2010 Breynia Breynia sp. SH-2010 \N \N \N \N \N 47636 T.tasmanica Tetracarpaea Tetracarpaea tasmanica \N \N \N \N \N 47637 E.hoffmanniana Euphorbia Euphorbia hoffmanniana \N \N \N \N \N 47638 S.marmulano Sideroxylon Sideroxylon marmulano \N \N \N \N \N 47639 E.floridanus Echinodorus Echinodorus floridanus \N \N \N \N \N 55975 \N genus Corallodiscus \N \N \N \N \N 47640 C.salicifolius Cephalanthus Cephalanthus salicifolius \N \N \N \N \N 47641 C.formicarum Chisocheton Chisocheton formicarum \N \N \N \N \N 47642 C.acaule Cypripedium Cypripedium acaule pink lady's slipper \N \N \N \N 47643 N.stenophyllus Nestotus Nestotus stenophyllus \N \N \N \N \N 47644 T.pappiformis Trikeraia Trikeraia pappiformis \N \N \N \N \N 47645 P.turkestanica Pseudoclausia Pseudoclausia turkestanica \N \N \N \N \N 47646 \N genus Cylicodiscus \N \N \N \N \N 47647 E.divergens Erigeron Erigeron divergens \N \N \N \N \N 47648 K.dinarica Knautia Knautia dinarica \N \N \N \N \N 47649 L.nitida Lonicera Lonicera nitida \N \N \N \N \N 47650 G.palawensis Gmelina Gmelina palawensis \N \N \N \N \N 47651 N.solandri Nothofagus Nothofagus solandri \N \N \N \N \N 47652 S.30166 Salicornia Salicornia aff. perennans Freitag 30166 \N \N \N \N \N 47653 F.persica Frankenia Frankenia persica \N \N \N \N \N 47654 B.aemula Banksia Banksia aemula \N \N \N \N \N 47655 C.montanus Chimonocalamus Chimonocalamus montanus \N \N \N \N \N 47656 \N forma Diospyros malabarica f. atrata \N \N \N \N \N 47657 A.flavum Aframomum Aframomum flavum \N \N \N \N \N 47658 S.hirtigluma Stipagrostis Stipagrostis hirtigluma \N \N \N \N \N 47659 D.tristis Didymocarpus Didymocarpus tristis \N \N \N \N \N 47660 G.triglochin Geonoma Geonoma triglochin \N \N \N \N \N 47661 P.flavum Plocaniophyllon Plocaniophyllon flavum \N \N \N \N \N 47662 C.preussii Calocrater Calocrater preussii \N \N \N \N \N 47663 S.uniflora Symplocos Symplocos uniflora \N \N \N \N \N 47664 C.eburnea Chondroscaphe Chondroscaphe eburnea \N \N \N \N \N 47665 C.coriacea Cyanea Cyanea coriacea \N \N \N \N \N 47666 N.bigelovii Nicotiana Nicotiana tabacum x Nicotiana bigelovii \N \N \N \N \N 47667 \N subspecies Alnus incana subsp. tenuifolia \N \N \N \N \N 47668 R.nivicola Ranunculus Ranunculus nivicola \N \N \N \N \N 47669 C.lutea Carex Carex lutea \N \N \N \N \N 47670 I.hermannioides Indigofera Indigofera hermannioides \N \N \N \N \N 47671 B.leschenaultii Beyeria Beyeria leschenaultii \N \N \N \N \N 47672 I.hamadae Indocalamus Indocalamus hamadae \N \N \N \N \N 47673 C.grayana Cyrtandra Cyrtandra grayana \N \N \N \N \N 47674 A.attenuata Aspidistra Aspidistra attenuata \N \N \N \N \N 47675 W.lanceolata Wattakaka Wattakaka lanceolata \N \N \N \N \N 47676 P.cyanandrum Polygonum Polygonum cyanandrum \N \N \N \N \N 47677 T.columbiensis Tabernaemontana Tabernaemontana columbiensis \N \N \N \N \N 47678 A.lancifolia Ainsliaea Ainsliaea lancifolia \N \N \N \N \N 47679 L.wrightii Lebeckia Lebeckia wrightii \N \N \N \N \N 47680 B.porosa Bauhinia Bauhinia porosa \N \N \N \N \N 47681 C.lasiandra Clematis Clematis lasiandra si gua hua \N \N \N \N 47682 \N genus Huntleya \N \N \N \N \N 47683 S.stella Saussurea Saussurea stella \N \N \N \N \N 47684 R.burttii Rhododendron Rhododendron burttii \N \N \N \N \N 47685 M.gattefossei Mentha Mentha gattefossei \N \N \N \N \N 47686 M.chilensis Monttea Monttea chilensis \N \N \N \N \N 47687 E.woodii Erica Erica woodii \N \N \N \N \N 47688 H.ellipsoidea Hemsleya Hemsleya ellipsoidea \N \N \N \N \N 47689 O.volvox Oncidium Oncidium volvox \N \N \N \N \N 47690 M.ciliaris Medicago Medicago ciliaris \N \N \N \N \N 47691 \N genus Elaeagia \N \N \N \N \N 47692 \N subspecies Raphanus raphanistrum subsp. landra \N \N \N \N \N 47693 D.speciosus Disocactus Disocactus speciosus \N \N \N \N \N 47694 H.amabilis Hemsleya Hemsleya amabilis \N \N \N \N \N 47695 D.staphisagria Delphinium Delphinium staphisagria \N \N \N \N \N 47696 R.hepburnii Racemobambos Racemobambos hepburnii \N \N \N \N \N 47697 R.argentea Rhodamnia Rhodamnia argentea silver malletwood \N \N \N \N 47698 P.querceticola Platythelys Platythelys querceticola \N \N \N \N \N 47699 N.cordifolia Neomitranthes Neomitranthes cordifolia \N \N \N \N \N 47700 T.distichum Thinopyrum Thinopyrum distichum \N \N \N \N \N 47701 M.cruciatum Martellidendron Martellidendron cruciatum \N \N \N \N \N 47702 A.rupestris Aleisanthia Aleisanthia rupestris \N \N \N \N \N 47703 G.altissima Gypsophila Gypsophila altissima \N \N \N \N \N 47704 \N subspecies Hedysarum aculeolatum subsp. aculeolatum \N \N \N \N \N 47705 A.triflorum Acer Acer triflorum \N \N \N \N \N 47706 B.lycium Berberis Berberis lycium \N \N \N \N \N 47707 L.trigynum Linum Linum trigynum \N \N \N \N \N 47708 F.melinocarpa Ficus Ficus melinocarpa \N \N \N \N \N 47709 \N genus Sciadodendron \N \N \N \N \N 47710 H.alpinum Heracleum Heracleum alpinum \N \N \N \N \N 47711 \N subspecies Arabidopsis lyrata subsp. lyrata \N \N \N \N \N 47712 S.kurziana Sagittaria Sagittaria kurziana \N \N \N \N \N 47713 S.rhombifolia Simsia Simsia rhombifolia \N \N \N \N \N 47714 G.schofieldii Geum Geum schofieldii \N \N \N \N \N 47715 M.standleyi Mammillaria Mammillaria standleyi \N \N \N \N \N 47716 A.graminifolius Anthochortus Anthochortus graminifolius \N \N \N \N \N 47717 T.umbellatum Thlaspi Thlaspi umbellatum \N \N \N \N \N 47718 S.scandens Siphocampylus Siphocampylus scandens \N \N \N \N \N 47719 T.nigromontanum Thesium Thesium nigromontanum \N \N \N \N \N 47720 \N subspecies Armeria villosa subsp. carratracensis \N \N \N \N \N 47721 L.jenkinsiana Livistona Livistona jenkinsiana \N \N \N \N \N 47722 U.JEES-2007 Urophyllum Urophyllum sp. 2 JEES-2007 \N \N \N \N \N 47723 B.erectiloba Bremeria Bremeria erectiloba \N \N \N \N \N 47724 \N varietas Clematis uncinata var. ovatifolia \N \N \N \N \N 47725 A.uniflora Adenandra Adenandra uniflora \N \N \N \N \N 47726 L.canescens Lallemantia Lallemantia canescens \N \N \N \N \N 47727 C.disjunctus Croton Croton disjunctus \N \N \N \N \N 47728 A.petelotii Arisaema Arisaema petelotii \N \N \N \N \N 47729 C.pygmaeum Calyptridium Calyptridium pygmaeum \N \N \N \N \N 47730 O.pulchra Osa Osa pulchra \N \N \N \N \N 47731 J.berardioides Jurinea Jurinea berardioides \N \N \N \N \N 47732 C.lupuliformis Cuscuta Cuscuta lupuliformis \N \N \N \N \N 47733 G.arenaria Glycine Glycine arenaria \N \N \N \N \N 47734 D.rectum Dorycnium Dorycnium rectum \N \N \N \N \N 47735 O.frutescens Orphium Orphium frutescens \N \N \N \N \N 47736 H.elgonense Heracleum Heracleum elgonense \N \N \N \N \N 47737 M.trifoliolatus Muelleranthus Muelleranthus trifoliolatus \N \N \N \N \N 47738 Z.rigidum Zygophyllum Zygophyllum rigidum \N \N \N \N \N 47739 M.adenoscepes Monanthes Monanthes adenoscepes \N \N \N \N \N 47740 D.glandulosus Dipterocarpus Dipterocarpus glandulosus \N \N \N \N \N 47741 G.aristata Gaillardia Gaillardia aristata blanket-flower \N \N \N \N 47742 B.melleum Bulbophyllum Bulbophyllum melleum \N \N \N \N \N 47743 C.rotundus Cyperus Cyperus rotundus \N \N \N \N \N 47744 \N genus Cladogelonium \N \N \N \N \N 47745 P.chunii Pleione Pleione chunii \N \N \N \N \N 47746 D.rhodocalyx Diospyros Diospyros rhodocalyx \N \N \N \N \N 47747 B.bituminosa Bolusafra Bolusafra bituminosa \N \N \N \N \N 47748 E.lumbricalis Euphorbia Euphorbia lumbricalis \N \N \N \N \N 47749 C.erectisepala Cliffortia Cliffortia erectisepala \N \N \N \N \N 47750 D.benguellensis Dorstenia Dorstenia benguellensis \N \N \N \N \N 47751 \N genus Cedrelopsis \N \N \N \N \N 47752 M.1831 Macaranga Macaranga cf. hispida Weiblen 1831 \N \N \N \N \N 47753 I.arborescens Illicium Illicium arborescens \N \N \N \N \N 47754 H.mirandae Hoffmannseggella Hoffmannseggella mirandae \N \N \N \N \N 47755 F.irisana Ficus Ficus irisana \N \N \N \N \N 47756 P.subnuda Packera Packera subnuda \N \N \N \N \N 47757 \N genus Saposhnikovia \N \N \N \N \N 47758 C.crocodylium Centaurea Centaurea crocodylium \N \N \N \N \N 47759 E.gruinum Erodium Erodium gruinum \N \N \N \N \N 47760 P.irwinii Pterostylis Pterostylis irwinii \N \N \N \N \N 47761 \N genus Balanophora \N \N \N \N \N 47762 C.montelinasana Castroviejoa Castroviejoa montelinasana \N \N \N \N \N 47763 E.scoparia Erica Erica scoparia besom heath \N \N \N \N 47764 C.medians Cousinia Cousinia medians \N \N \N \N \N 47765 D.glaucescens Diplusodon Diplusodon glaucescens \N \N \N \N \N 54642 \N genus Bouchetia \N \N \N \N \N 47766 H.javanica Hydrocotyle Hydrocotyle javanica \N \N \N \N \N 47767 \N subspecies Oenothera deltoides subsp. cognata \N \N \N \N \N 47768 K.coriacea Kadua Kadua coriacea \N \N \N \N \N 47769 C.057 Carex Carex cf. pensylvanica KSRB 057 \N \N \N \N \N 47770 E.atrorubens Echinacea Echinacea atrorubens \N \N \N \N \N 47771 C.quintuplinervis Catanthera Catanthera quintuplinervis \N \N \N \N \N 47772 P.undata Psychotria Psychotria undata \N \N \N \N \N 47773 C.distachya Carex Carex distachya \N \N \N \N \N 47774 \N genus Lecythis \N \N \N \N \N 47775 \N no rank Cucurbita cv. Kurokawa Amakuri \N \N \N \N \N 47776 A.schimperi Achyrospermum Achyrospermum schimperi \N \N \N \N \N 47777 S.riddellii Solidago Solidago riddellii Riddell's goldenrod \N \N \N \N 47778 S.smithii Syzygium Syzygium smithii lilly-pilly \N \N \N \N 47779 \N genus Dracophyllum \N \N \N \N \N 47780 S.cambodianum Spirolobium Spirolobium cambodianum \N \N \N \N \N 47781 \N varietas Bidens pilosa var. pilosa \N \N \N \N \N 47782 E.maculosa Eleocharis Eleocharis maculosa \N \N \N \N \N 47783 P.alpinum Phleum Phleum alpinum \N \N \N \N \N 47784 L.pulvinaris Lupinus Lupinus pulvinaris \N \N \N \N \N 47785 C.forrestii Caryopteris Caryopteris forrestii \N \N \N \N \N 47786 \N no rank Spiraeeae \N \N \N \N \N 47787 C.parviflora Chuquiraga Chuquiraga parviflora \N \N \N \N \N 47788 \N subspecies Sideritis soluta subsp. gueimaris \N \N \N \N \N 47789 B.americana Browallia Browallia americana \N \N \N \N \N 47790 C.cholla Cylindropuntia Cylindropuntia cholla \N \N \N \N \N 47791 \N genus Stutzia \N \N \N \N \N 47792 O.covenyi Olearia Olearia covenyi \N \N \N \N \N 47793 C.calochlamys Cobananthus Cobananthus calochlamys \N \N \N \N \N 47794 \N varietas Camellia pyxidiacea var. rubituberculata \N \N \N \N \N 47795 G.foliosa Guaduella Guaduella foliosa \N \N \N \N \N 47796 V.gracilis Viola Viola gracilis \N \N \N \N \N 47797 \N varietas Camellia yunnanensis var. camellioides \N \N \N \N \N 47798 \N genus Chimantaea \N \N \N \N \N 47799 E.leistneri Euphorbia Euphorbia leistneri \N \N \N \N \N 47800 O.aequidentata Onobrychis Onobrychis aequidentata \N \N \N \N \N 47801 \N forma Sagittaria trifolia f. longiloba \N \N \N \N \N 47802 C.acuminata Ceiba Ceiba acuminata \N \N \N \N \N 47803 P.talpinaria Pleurothallis Pleurothallis talpinaria \N \N \N \N \N 47804 C.deltoidea Coptis Coptis deltoidea \N \N \N \N \N 47805 C.astonii Carmichaelia Carmichaelia astonii \N \N \N \N \N 47806 C.racemiflorus Cotoneaster Cotoneaster racemiflorus \N \N \N \N \N 47807 S.33.151 Salicornia Salicornia aff. perennans Freitag 33.151 \N \N \N \N \N 47808 P.alpestre Piptatherum Piptatherum alpestre \N \N \N \N \N 47809 O.longipedicellatus Ochthocosmus Ochthocosmus longipedicellatus \N \N \N \N \N 47810 P.flaccidum Piptatherum Piptatherum flaccidum \N \N \N \N \N 47811 R.martinezii Rhipidocladum Rhipidocladum martinezii \N \N \N \N \N 47812 \N subspecies Striga bilabiata subsp. linearifolia \N \N \N \N \N 47813 H.imbricata Hinterhubera Hinterhubera imbricata \N \N \N \N \N 47814 A.rouyana Armeria Armeria rouyana \N \N \N \N \N 47815 A.nyeriensis Aloe Aloe nyeriensis \N \N \N \N \N 47816 A.australiensis Astonia Astonia australiensis \N \N \N \N \N 47817 C.monspeliensium Carduncellus Carduncellus monspeliensium \N \N \N \N \N 47818 S.sundaica Stylosanthes Stylosanthes sundaica \N \N \N \N \N 47819 C.speciosus Corytoplectus Corytoplectus speciosus \N \N \N \N \N 47820 T.schlechteri Trichosanthes Trichosanthes schlechteri \N \N \N \N \N 47821 B.balanophora Bactris Bactris balanophora \N \N \N \N \N 47822 \N genus Thouinia \N \N \N \N \N 47823 \N genus Thelymitra \N \N \N \N \N 47824 V.scutellata Veronica Veronica scutellata \N \N \N \N \N 47825 G.comoriensis Gyrostipula Gyrostipula comoriensis \N \N \N \N \N 47826 O.punctata Oryza Oryza punctata \N \N \N \N \N 47827 D.cayennensis Diospyros Diospyros cayennensis \N \N \N \N \N 47828 \N subspecies Combretum celastroides subsp. orientale \N \N \N \N \N 47829 A.carnosa Aspalathus Aspalathus carnosa \N \N \N \N \N 47830 \N genus Aeglopsis \N \N \N \N \N 47831 F.agrestis Fadogia Fadogia agrestis \N \N \N \N \N 47832 \N subspecies Pisum sativum subsp. abyssinicum Abyssinian pea \N \N \N \N 47833 C.brevicolumna Camellia Camellia brevicolumna \N \N \N \N \N 47834 D.aequalis Diuris Diuris aequalis \N \N \N \N \N 47835 C.filipes Chiococca Chiococca filipes \N \N \N \N \N 47836 \N genus Bromus \N \N \N \N \N 47837 Q.asterolepis Quararibea Quararibea asterolepis \N \N \N \N \N 47838 D.equestris x Doritaenopsis Doritis pulcherrima x Phalaenopsis equestris \N \N \N \N \N 47839 \N genus Lepeostegeres \N \N \N \N \N 47840 O.fragilis Opuntia Opuntia fragilis brittle cactus \N \N \N \N 47841 P.comorense Peponidium Peponidium comorense \N \N \N \N \N 47842 H.3624 Hildebrandtia Hildebrandtia sp. Phillipson and Milijaona 3624 \N \N \N \N \N 47843 C.circaeoides Cuphea Cuphea circaeoides \N \N \N \N \N 47844 P.douglasii Polygonum Polygonum douglasii \N \N \N \N \N 47845 B.polilloensis Begonia Begonia polilloensis \N \N \N \N \N 47846 B.koehleri Boechera Boechera koehleri \N \N \N \N \N 47847 L.lucida Lindera Lindera lucida \N \N \N \N \N 47848 G.vilersiana Garcinia Garcinia vilersiana \N \N \N \N \N 47849 \N varietas Rhododendron roxieanum var. roxieanum \N \N \N \N \N 47850 C.2209 Chamaexeros Chamaexeros sp. Chase 2209 \N \N \N \N \N 47851 P.ovale Paspalum Paspalum ovale Vasey's grass \N \N \N \N 47852 K.6152 Kohleria Kohleria aff. villosa Clark 6152 \N \N \N \N \N 47853 C.gladiata Canavalia Canavalia gladiata Japanese jack bean,sword bean \N \N \N \N 47854 D.venosa Disa Disa venosa \N \N \N \N \N 47855 S.schumannianum Solanum Solanum schumannianum \N \N \N \N \N 47856 \N genus Platyschkuhria \N \N \N \N \N 47857 P.lucida Pilea Pilea lucida \N \N \N \N \N 47858 N.294 Neesia Neesia sp. Lamm 294 \N \N \N \N \N 47859 S.orgaadayi Saussurea Saussurea orgaadayi \N \N \N \N \N 47860 \N genus Hoehnea \N \N \N \N \N 47861 \N genus Monttea \N \N \N \N \N 47862 C.exigua Campanula Campanula exigua \N \N \N \N \N 47864 L.salina Leucheria Leucheria salina \N \N \N \N \N 47865 U.kigesiensis Uebelinia Uebelinia kigesiensis \N \N \N \N \N 47866 A.gigantea Arundinaria Arundinaria gigantea \N \N \N \N \N 47867 M.ventricosa Moraea Moraea ventricosa \N \N \N \N \N 47868 \N varietas Phacelia viscida var. albiflora \N \N \N \N \N 47869 P.frigidus Petasites Petasites frigidus Arctic sweet coltsfoot \N \N \N \N 47870 C.sample environmental samples Taxonomy:1008274 Centaurea environmental sample \N \N \N \N \N 47871 T.flexuosum Thesium Thesium flexuosum \N \N \N \N \N 47872 M.gracilens Monolopia Monolopia gracilens \N \N \N \N \N 47873 \N varietas Correa reflexa var. insularis \N \N \N \N \N 47874 E.inordinata Erica Erica inordinata \N \N \N \N \N 47875 B.macrolepis Balsamorhiza Balsamorhiza macrolepis \N \N \N \N \N 47876 M.cadmea Myosotis Myosotis cadmea \N \N \N \N \N 47877 \N genus Pterocaulon \N \N \N \N \N 47878 \N genus Spathandra \N \N \N \N \N 47879 H.algeriensis Hedera Hedera algeriensis \N \N \N \N \N 47880 P.inaequalifolia Peperomia Peperomia inaequalifolia \N \N \N \N \N 47881 P.cuneifolium Phyllopodium Phyllopodium cuneifolium \N \N \N \N \N 47882 G.ceylanicum Gymnostachyum Gymnostachyum ceylanicum \N \N \N \N \N 47883 S.tenue Sium Sium tenue \N \N \N \N \N 47884 L.gracilis Leptocodon Leptocodon gracilis \N \N \N \N \N 47885 S.multinervia Skimmia Skimmia multinervia \N \N \N \N \N 47886 C.macrocalyx Collomia Collomia macrocalyx \N \N \N \N \N 47887 A.chinense Arceuthobium Arceuthobium chinense \N \N \N \N \N 47888 B.paucinervata Bauhinia Bauhinia paucinervata \N \N \N \N \N 47889 S.subtile Sedum Sedum subtile \N \N \N \N \N 47890 L.maingayi Litsea Litsea maingayi \N \N \N \N \N 47891 R.minor Razafimandimbisonia Razafimandimbisonia minor \N \N \N \N \N 47892 G.valenzuelana Guettarda Guettarda valenzuelana \N \N \N \N \N 47893 C.canescens Cousinia Cousinia canescens \N \N \N \N \N 47894 P.reflexipetalum Pelargonium Pelargonium reflexipetalum \N \N \N \N \N 47895 \N genus Pouzolzia \N \N \N \N \N 47896 S.sinensis Stewartia Stewartia sinensis \N \N \N \N \N 47897 O.2529b Oncidium Oncidium cf. hallii Blanco 2529b \N \N \N \N \N 47898 E.punicea Euphorbia Euphorbia punicea \N \N \N \N \N 47899 B.microphylla Bahiopsis Bahiopsis microphylla \N \N \N \N \N 47900 H.mingjinianum Hylotelephium Hylotelephium mingjinianum \N \N \N \N \N 47901 L.misticola Lupinus Lupinus misticola \N \N \N \N \N 47902 C.isomorphus Chordifex Chordifex isomorphus \N \N \N \N \N 47903 R.lechleri Rytidosperma Rytidosperma lechleri \N \N \N \N \N 47904 A.schurii Achillea Achillea schurii \N \N \N \N \N 47905 L.ovoidea Lysimachia Lysimachia ovoidea \N \N \N \N \N 47906 \N genus Cucumeropsis \N \N \N \N \N 47907 A.99/0912 Acacia Acacia sp. 99/0912 \N \N \N \N \N 47908 D.glabrata Drymocallis Drymocallis glabrata \N \N \N \N \N 47909 L.chingshuiensis Lysimachia Lysimachia chingshuiensis \N \N \N \N \N 47910 \N genus Cyrtogonone \N \N \N \N \N 47911 \N varietas Costus guanaiensis var. macrostrobilus \N \N \N \N \N 47912 S.formosa Swainsona Swainsona formosa \N \N \N \N \N 47913 L.modesta Lonicera Lonicera modesta \N \N \N \N \N 47914 P.macrophylla Podandrogyne Podandrogyne macrophylla \N \N \N \N \N 47915 T.montanus Tragopogon Tragopogon montanus \N \N \N \N \N 47916 W.sapinii Warneckea Warneckea sapinii \N \N \N \N \N 47917 C.interjecta Carex Carex interjecta \N \N \N \N \N 47918 L.petiolaris Leutea Leutea petiolaris \N \N \N \N \N 47919 A.vavilovii Allium Allium vavilovii \N \N \N \N \N 47920 S.glutinosa Sida Sida glutinosa \N \N \N \N \N 47921 P.P126 Physalis Physalis sp. P126 \N \N \N \N \N 47922 V.monticola Veronica Veronica monticola \N \N \N \N \N 47923 \N subspecies Pimelea sericostachya subsp. sericostachya \N \N \N \N \N 47924 D.caffra Didymodoxa Didymodoxa caffra \N \N \N \N \N 47925 \N family Oleaceae olive famly \N \N \N \N 47926 S.15943 Symplocos Symplocos sp. McPherson 15943 \N \N \N \N \N 47927 E.calceoliflora Emblingia Emblingia calceoliflora \N \N \N \N \N 47928 A.deliciosa Actinidia Actinidia deliciosa Chinese gooseberry,kiwifruit \N \N \N \N 47929 S.cernua Strobilanthes Strobilanthes cernua \N \N \N \N \N 47930 P.borealis Primula Primula borealis \N \N \N \N \N 47931 T.taiwanense Tripterospermum Tripterospermum taiwanense \N \N \N \N \N 47932 H.TJB-2007 Helianthemum Helianthemum sp. TJB-2007 \N \N \N \N \N 47933 P.albispicum Piper Piper albispicum \N \N \N \N \N 47934 E.inflatum Eriogonum Eriogonum inflatum \N \N \N \N \N 47935 C.saxatilis Campanula Campanula saxatilis \N \N \N \N \N 47936 S.filiformis Sanguisorba Sanguisorba filiformis \N \N \N \N \N 47937 S.timorense Sorghum Sorghum timorense \N \N \N \N \N 47938 O.nogalesii Onopordum Onopordum nogalesii \N \N \N \N \N 47939 A.decora Arachis Arachis decora \N \N \N \N \N 47940 P.pierrei Piper Piper pierrei \N \N \N \N \N 47941 W.helenioides Wyethia Wyethia helenioides \N \N \N \N \N 47942 C.madagascariensis Cordyla Cordyla madagascariensis \N \N \N \N \N 47943 A.rhamnoides Antirhea Antirhea rhamnoides \N \N \N \N \N 47944 M.eugenioides Mastixia Mastixia eugenioides \N \N \N \N \N 47945 C.harana Coelogyne Coelogyne harana \N \N \N \N \N 47946 T.spartea Taverniera Taverniera spartea \N \N \N \N \N 47947 H.angiospermum Heliotropium Heliotropium angiospermum \N \N \N \N \N 47948 G.chacoense Gymnocalycium Gymnocalycium chacoense \N \N \N \N \N 47949 S.J.R.B.Tosh-2008 Sericanthe Sericanthe sp. J.R.B.Tosh-2008 \N \N \N \N \N 47950 C.selysioides Cayaponia Cayaponia selysioides \N \N \N \N \N 47951 B.kydiifolium Burretiodendron Burretiodendron kydiifolium \N \N \N \N \N 47952 H.spinulosa Halophila Halophila spinulosa \N \N \N \N \N 47953 S.33.030 Salicornia Salicornia aff. perennans Freitag 33.030 \N \N \N \N \N 47954 C.crinitum Chaerophyllum Chaerophyllum crinitum \N \N \N \N \N 47955 \N varietas Lilium auratum var. platyphyllum \N \N \N \N \N 47956 S.candidus Streptocarpus Streptocarpus candidus \N \N \N \N \N 47957 S.maritimus Senecio Senecio maritimus \N \N \N \N \N 47958 T.MEM-2009 Tolpis Tolpis sp. 1 MEM-2009 \N \N \N \N \N 47959 C.watanabei Campylandra Campylandra watanabei \N \N \N \N \N 47960 T.longiradiata Tithonia Tithonia longiradiata \N \N \N \N \N 47961 \N genus Rovaeanthus \N \N \N \N \N 47962 M.aucubifolia Melanophylla Melanophylla aucubifolia \N \N \N \N \N 47963 \N subspecies Tephroseris integrifolia subsp. aurantiaca \N \N \N \N \N 47964 O.caliginis Otholobium Otholobium caliginis \N \N \N \N \N 47965 P.fimbriatum Piptochaetium Piptochaetium fimbriatum \N \N \N \N \N 47966 E.neoporpax Epidendrum Epidendrum neoporpax \N \N \N \N \N 47967 L.acutifolia Lycianthes Lycianthes acutifolia \N \N \N \N \N 47968 E.gigantangion Eucalyptus Eucalyptus gigantangion \N \N \N \N \N 47969 E.solandri Elymus Elymus solandri \N \N \N \N \N 47970 G.microrrhynchum Gymnospermium Gymnospermium microrrhynchum \N \N \N \N \N 47971 P.bicolana Pinanga Pinanga bicolana \N \N \N \N \N 47972 C.angulata Cuscuta Cuscuta angulata \N \N \N \N \N 47973 \N genus Trikeraia \N \N \N \N \N 47974 \N tribe Cochlearieae \N \N \N \N \N 47975 P.myrtifolius Phyllanthus Phyllanthus myrtifolius \N \N \N \N \N 47976 W.exigua Weinmannia Weinmannia exigua \N \N \N \N \N 47977 \N varietas Pentameris pictigluma var. mannii \N \N \N \N \N 47978 C.umbellata Claytonia Claytonia umbellata \N \N \N \N \N 47979 P.senticosa Persicaria Persicaria senticosa \N \N \N \N \N 47980 L.garrettii Litsea Litsea garrettii \N \N \N \N \N 47981 S.veris Sipanea Sipanea veris \N \N \N \N \N 47982 C.obtusifolium Chorizema Chorizema obtusifolium \N \N \N \N \N 47983 P.gaubaeana Primula Primula gaubaeana \N \N \N \N \N 47984 A.monophylla Aristogeitonia Aristogeitonia monophylla \N \N \N \N \N 47985 \N genus Microseris silverpuffs \N \N \N \N 47986 \N subspecies Elaeocarpus largiflorens subsp. largiflorens \N \N \N \N \N 47987 \N genus Trichoscypha \N \N \N \N \N 47988 L.cordifolius Leptopus Leptopus cordifolius \N \N \N \N \N 47989 C.yunnanensis Craigia Craigia yunnanensis \N \N \N \N \N 47990 I.pleurocarpa Isolona Isolona pleurocarpa \N \N \N \N \N 47991 C.decaisnei Cremanthodium Cremanthodium decaisnei \N \N \N \N \N 47992 E.tangutorum Elymus Elymus tangutorum \N \N \N \N \N 47993 R.parkeri Rubus Rubus parkeri \N \N \N \N \N 47994 B.blanda Babiana Babiana blanda \N \N \N \N \N 47995 V.crassifolium Vaccinium Vaccinium crassifolium creeping blueberry \N \N \N \N 47996 B.macrantha Brachycorythis Brachycorythis macrantha \N \N \N \N \N 47997 R.rousei Rhododendron Rhododendron rousei \N \N \N \N \N 47998 S.viridis Salvia Salvia viridis \N \N \N \N \N 47999 E.robivelonae Euphorbia Euphorbia robivelonae \N \N \N \N \N 48000 \N genus Bruguiera \N \N \N \N \N 48001 B.monoica Bryonia Bryonia monoica \N \N \N \N \N 48002 W.variabilis Wurmbea Wurmbea variabilis \N \N \N \N \N 48003 B.aculeata Banksia Banksia aculeata \N \N \N \N \N 48004 E.dregeana Eleocharis Eleocharis dregeana \N \N \N \N \N 48005 M.chlorosticta Manihot Manihot chlorosticta \N \N \N \N \N 48006 C.acerosa Coprosma Coprosma acerosa \N \N \N \N \N 48007 T.scaberulum Trachyspermum Trachyspermum scaberulum \N \N \N \N \N 48008 P.multiplinervium Piper Piper multiplinervium \N \N \N \N \N 48009 B.letestui Bikinia Bikinia letestui ekop,mayo \N \N \N \N 48010 B.uaupensis Byttneria Byttneria uaupensis \N \N \N \N \N 48011 N.purdieanus Neriacanthus Neriacanthus purdieanus \N \N \N \N \N 48012 A.dracontioides Amorphophallus Amorphophallus dracontioides \N \N \N \N \N 48013 C.lindleyana Cyrtosia Cyrtosia lindleyana \N \N \N \N \N 48014 R.nitida Rosa Rosa nitida \N \N \N \N \N 48015 S.purpusii Senna Senna purpusii \N \N \N \N \N 48016 V.punctatum Viburnum Viburnum punctatum \N \N \N \N \N 48017 P.japonica Primula Primula japonica \N \N \N \N \N 48018 C.dioscoridis Crepis Crepis dioscoridis \N \N \N \N \N 48019 W.verticillata Wilbrandia Wilbrandia verticillata \N \N \N \N \N 48020 B.cusia Baphicacanthus Baphicacanthus cusia \N \N \N \N \N 48021 L.erubescens Leptospermum Leptospermum erubescens \N \N \N \N \N 48022 \N genus Pritzelago \N \N \N \N \N 48023 O.rigidior Oxypolis Oxypolis rigidior \N \N \N \N \N 48024 P.forrestii Polygonum Polygonum forrestii \N \N \N \N \N 48025 D.grandiflorum Dendrochilum Dendrochilum grandiflorum \N \N \N \N \N 48026 Z.villanensis Zizaniopsis Zizaniopsis villanensis \N \N \N \N \N 48027 C.bunites Corymbia Corymbia bunites \N \N \N \N \N 48028 \N subtribe Scolyminae \N \N \N \N \N 48029 L.0043995 Leontopodium Leontopodium cf. stracheyi Safer 0043995 \N \N \N \N \N 48030 D.pruniferus Drepananthus Drepananthus pruniferus \N \N \N \N \N 48031 T.populnea Thespesia Thespesia populnea \N \N \N \N \N 48032 J.RJM-2010 Jaltomata Jaltomata sp. RJM-2010 \N \N \N \N \N 48033 A.minima Anagallis Anagallis minima \N \N \N \N \N 48034 P.fargesii Paris Paris fargesii \N \N \N \N \N 48035 L.divaricatum Lepidium Lepidium divaricatum \N \N \N \N \N 48036 M.9536 Melaleuca Melaleuca sp. L. Craven 9536 \N \N \N \N \N 48037 T.sphaerocarpa Tabernaemontana Tabernaemontana sphaerocarpa \N \N \N \N \N 48038 \N genus Pterostemma \N \N \N \N \N 48039 P.radicatum Pachycladon Pachycladon radicatum \N \N \N \N \N 48040 A.scheryi Asclepias Asclepias scheryi \N \N \N \N \N 48041 R.chingii Rehmannia Rehmannia chingii \N \N \N \N \N 48042 B.macrocarpa Breonia Breonia macrocarpa \N \N \N \N \N 48043 \N subspecies Acer davidii subsp. grosseri \N \N \N \N \N 48044 S.longifolia Securidaca Securidaca longifolia \N \N \N \N \N 48045 \N genus Halimodendron \N \N \N \N \N 48046 P.deltoideum Philodendron Philodendron deltoideum \N \N \N \N \N 48047 C.moschata Cucurbita Cucurbita maxima x Cucurbita moschata \N \N \N \N \N 48048 S.longicauda Satyrium Satyrium longicauda \N \N \N \N \N 48049 V.brueggeri Vanhouttea Vanhouttea brueggeri \N \N \N \N \N 48050 N.heudelotii Nymphaea Nymphaea heudelotii \N \N \N \N \N 48051 J.roigii Jacquinia Jacquinia roigii \N \N \N \N \N 48052 C.abbottii Catha Catha abbottii \N \N \N \N \N 48053 G.eriophylla Gaultheria Gaultheria eriophylla \N \N \N \N \N 48054 P.lappulaceus Pharus Pharus lappulaceus \N \N \N \N \N 48055 T.obscurum Trifolium Trifolium obscurum \N \N \N \N \N 48057 L.australis Littorella Littorella australis \N \N \N \N \N 48058 P.madagascariensis Perriera Perriera madagascariensis \N \N \N \N \N 48059 S.aptera Swartzia Swartzia aptera \N \N \N \N \N 48060 B.cordifolia Byttneria Byttneria cordifolia \N \N \N \N \N 48061 F.rogersii Felicia Felicia rogersii \N \N \N \N \N 48062 C.mezianus Cenchrus Cenchrus mezianus \N \N \N \N \N 48063 E.albicans Echium Echium albicans \N \N \N \N \N 48064 G.coccinea Gaura Gaura coccinea \N \N \N \N \N 48065 O.2576 Ochrothallus Ochrothallus cf. blanchonii Munzinger et al. 2576 \N \N \N \N \N 48066 M.trinasutum Meiracyllium Meiracyllium trinasutum \N \N \N \N \N 48067 A.campylosema Astragalus Astragalus campylosema \N \N \N \N \N 48068 R.beninensis Raphiostylis Raphiostylis beninensis \N \N \N \N \N 48069 S.andulensis Shorea Shorea andulensis \N \N \N \N \N 48070 U.longifolium Urophyllum Urophyllum longifolium \N \N \N \N \N 48071 S.nipponica Salix Salix nipponica \N \N \N \N \N 48072 H.angustipetala Hydrangea Hydrangea angustipetala \N \N \N \N \N 48073 L.bridgesii Lobelia Lobelia bridgesii \N \N \N \N \N 48074 \N subspecies Hylotelephium telephium subsp. telephium \N \N \N \N \N 48075 U.sp. unclassified Cyperaceae unknown cyperaceous sp. \N \N \N \N \N 48076 P.jahnii Paepalanthus Paepalanthus jahnii \N \N \N \N \N 48077 S.bahamensis Spathelia Spathelia bahamensis \N \N \N \N \N 48078 R.alpinum Rhytidosporum Rhytidosporum alpinum \N \N \N \N \N 48079 \N genus Ceratocaryum \N \N \N \N \N 48080 C.wallichii Cyrtandra Cyrtandra wallichii \N \N \N \N \N 48081 W.pygmaea Wahlenbergia Wahlenbergia pygmaea \N \N \N \N \N 48082 E.caffra Erica Erica caffra \N \N \N \N \N 48083 H.laevigatus Helianthus Helianthus laevigatus \N \N \N \N \N 48084 \N subspecies Anthemis werneri subsp. werneri \N \N \N \N \N 48085 A.harperi Agalinis Agalinis harperi \N \N \N \N \N 48086 \N genus Colletia \N \N \N \N \N 48087 S.paniculatum Solanum Solanum paniculatum jurubeba \N \N \N \N 48088 K.triangularis Kniphofia Kniphofia triangularis \N \N \N \N \N 48089 C.spinosum Clerodendrum Clerodendrum spinosum \N \N \N \N \N 48090 L.australis Listera Listera australis \N \N \N \N \N 48091 H.firmum Homalospermum Homalospermum firmum \N \N \N \N \N 48092 H.trachypleura Harbouria Harbouria trachypleura \N \N \N \N \N 48093 \N subspecies Adenia globosa subsp. pseudoglobosa \N \N \N \N \N 48094 E.prostrata Eclipta Eclipta prostrata \N \N \N \N \N 48095 S.volgense Sisymbrium Sisymbrium volgense \N \N \N \N \N 48096 S.nana Scilla Scilla nana \N \N \N \N \N 48097 G.317 Gyrocarpus Gyrocarpus sp. Chase 317 \N \N \N \N \N 48098 A.christianii Arabis Arabis christianii \N \N \N \N \N 48099 \N genus Nephrophyllidium \N \N \N \N \N 48100 A.peninsularis Arbutus Arbutus peninsularis \N \N \N \N \N 48101 A.nitidulum Argyrotegium Argyrotegium nitidulum \N \N \N \N \N 48102 M.lutarioriparius Miscanthus Miscanthus lutarioriparius \N \N \N \N \N 48103 H.15606 Haemodorum Haemodorum sp. 15606 \N \N \N \N \N 48104 P.laycockii Paraphalaenopsis Paraphalaenopsis laycockii \N \N \N \N \N 48105 M.megadontus Mallotus Mallotus megadontus \N \N \N \N \N 48106 S.quadrinervis Shorea Shorea quadrinervis \N \N \N \N \N 48107 P.'Pachuca' Pinguicula Pinguicula sp. 'Pachuca' \N \N \N \N \N 48108 \N varietas Salvia carnea var. carnea \N \N \N \N \N 48109 D.vasselotii Disa Disa vasselotii \N \N \N \N \N 48110 O.unguiculatus Oreosolen Oreosolen unguiculatus \N \N \N \N \N 48111 C.rosei Caesalpinia Caesalpinia rosei \N \N \N \N \N 48112 C.harrisoniana Cattleya Cattleya harrisoniana \N \N \N \N \N 48113 P.AG-2007 Primula Primula sp. AG-2007 \N \N \N \N \N 48114 D.glaucescens Diploclisia Diploclisia glaucescens \N \N \N \N \N 48115 M.tristis Manihot Manihot tristis \N \N \N \N \N 48116 L.2536 Lepechinia Lepechinia sp. JBW 2536 \N \N \N \N \N 48117 G.pardalinus Gladiolus Gladiolus pardalinus \N \N \N \N \N 48118 \N varietas Ficus pedunculosa var. pedunculosa \N \N \N \N \N 48119 S.circumflexa Scorzonera Scorzonera circumflexa \N \N \N \N \N 48120 B.pedicularoides Bartsia Bartsia pedicularoides \N \N \N \N \N 48121 O.dipetala Oligomeris Oligomeris dipetala \N \N \N \N \N 48122 A.emarginata Atamisquea Atamisquea emarginata vomitbush \N \N \N \N 48123 S.buchananii Simplicia Simplicia buchananii \N \N \N \N \N 48124 A.prostrata Avena Avena prostrata \N \N \N \N \N 48125 S.talura Shorea Shorea talura \N \N \N \N \N 48126 S.glaberrima Secamone Secamone glaberrima \N \N \N \N \N 48127 H.procera Habenaria Habenaria procera \N \N \N \N \N 48128 C.3416 Cremastosperma Cremastosperma sp. Tello 3416 \N \N \N \N \N 48129 E.hypertropicum Echium Echium hypertropicum \N \N \N \N \N 48130 D.cordifolia Dicrastylis Dicrastylis cordifolia \N \N \N \N \N 48131 V.jalapaensis Viola Viola jalapaensis \N \N \N \N \N 48132 S.rubra Spergularia Spergularia rubra \N \N \N \N \N 48133 L.coquimbensis Leucocoryne Leucocoryne coquimbensis \N \N \N \N \N 48134 S.portillae Sarcoglottis Sarcoglottis portillae \N \N \N \N \N 48135 \N genus Sibiraea \N \N \N \N \N 48136 L.purpurocaeruleum Lithospermum Lithospermum purpurocaeruleum \N \N \N \N \N 48137 \N varietas Cuscuta japonica var. formosana tai wan tu si zi \N \N \N \N 48138 L.nevadensis Lathyrus Lathyrus nevadensis Nevada pae \N \N \N \N 48139 C.crassum Chrysanthemum Chrysanthemum crassum \N \N \N \N \N 48140 G.minus Gompholobium Gompholobium minus \N \N \N \N \N 48141 P.articulata Potentilla Potentilla articulata \N \N \N \N \N 48142 \N genus Sedirea \N \N \N \N \N 48143 L.campanulatus Linanthus Linanthus campanulatus \N \N \N \N \N 48144 G.PWF-2011 Gaultheria Gaultheria sp. PWF-2011 \N \N \N \N \N 48145 \N genus Nemophila \N \N \N \N \N 48146 R.purpurascens Rauvolfia Rauvolfia purpurascens \N \N \N \N \N 48147 M.strumata Maxillaria Maxillaria strumata \N \N \N \N \N 48148 I.ostruthium Imperatoria Imperatoria ostruthium \N \N \N \N \N 48149 T.yaquianum Tetramerium Tetramerium yaquianum \N \N \N \N \N 48150 P.japonica Prunus Prunus japonica \N \N \N \N \N 48151 R.300 Randia Randia sp. Persson and Gustafsson 300 \N \N \N \N \N 48152 C.haematodes Cymbidium Cymbidium haematodes \N \N \N \N \N 48153 M.angustifolia Montia Montia angustifolia \N \N \N \N \N 48154 E.berberidea Erythrococca Erythrococca berberidea \N \N \N \N \N 48155 C.aethusifolia Clematis Clematis aethusifolia \N \N \N \N \N 48156 S.sanguinea Saxifraga Saxifraga sanguinea \N \N \N \N \N 48157 O.auriculifolia Othonna Othonna auriculifolia \N \N \N \N \N 48158 S.ascendens Streblus Streblus ascendens \N \N \N \N \N 48159 S.suaveolens Solanum Solanum suaveolens \N \N \N \N \N 48160 C.acockii Chondropetalum Chondropetalum acockii \N \N \N \N \N 48161 \N genus Zapoteca \N \N \N \N \N 48162 \N genus Lagarinthus \N \N \N \N \N 48163 S.irio Sisymbrium Sisymbrium irio \N \N \N \N \N 48164 E.serpyllifolius Edraianthus Edraianthus serpyllifolius \N \N \N \N \N 48165 S.peruviana Sambucus Sambucus peruviana \N \N \N \N \N 48166 P.rothschildianum Paphiopedilum Paphiopedilum rothschildianum \N \N \N \N \N 48167 T.pauciflora Tabernaemontana Tabernaemontana pauciflora \N \N \N \N \N 48168 S.muirii Stoebe Stoebe muirii \N \N \N \N \N 48169 T.filicaule Tripterospermum Tripterospermum filicaule \N \N \N \N \N 48170 O.arctobia Oxytropis Oxytropis arctobia \N \N \N \N \N 48171 P.CGR-2011 Psychotria Psychotria sp. CGR-2011 \N \N \N \N \N 48172 U.grandiflora Uvularia Uvularia grandiflora \N \N \N \N \N 48173 O.hartwegii Odontostomum Odontostomum hartwegii \N \N \N \N \N 48174 M.trinervia Matudaea Matudaea trinervia \N \N \N \N \N 48175 P.warburgianum Palaquium Palaquium warburgianum \N \N \N \N \N 48176 T.australasiae Tristellateia Tristellateia australasiae \N \N \N \N \N 48177 L.oblanceolatum Limonium Limonium oblanceolatum \N \N \N \N \N 48178 \N subspecies Doliocarpus major subsp. major \N \N \N \N \N 48179 \N subspecies Chlorophytum sphacelatum subsp. sphacelatum \N \N \N \N \N 48180 A.plutonia Anthemis Anthemis plutonia \N \N \N \N \N 48181 \N subspecies Carex reuteriana subsp. reuteriana \N \N \N \N \N 48182 B.jalbertii Bivinia Bivinia jalbertii \N \N \N \N \N 48183 R.popinense Rytidosperma Rytidosperma popinense \N \N \N \N \N 48184 L.dioica Lonicera Lonicera dioica \N \N \N \N \N 48185 C.buxifolia Cantua Cantua buxifolia \N \N \N \N \N 48186 D.micrantha Dicrastylis Dicrastylis micrantha \N \N \N \N \N 48187 \N genus Spirogardnera \N \N \N \N \N 48188 D.orientis Diuris Diuris orientis \N \N \N \N \N 48189 G.ovoidea Glycosmis Glycosmis ovoidea \N \N \N \N \N 48190 S.qinghaiense Syncalathium Syncalathium qinghaiense \N \N \N \N \N 48191 A.integrifolia Artemisia Artemisia integrifolia \N \N \N \N \N 48192 S.fluviatilis Sericocalyx Sericocalyx fluviatilis \N \N \N \N \N 48193 \N subspecies Centaurea triumfettii subsp. stricta \N \N \N \N \N 48194 H.patella Hoya Hoya patella \N \N \N \N \N 48195 M.pudica Mimosa Mimosa pudica sensitive-plant \N \N \N \N 48196 \N no rank unclassified Apocynaceae \N \N \N \N \N 48197 D.muliense Delphinium Delphinium muliense \N \N \N \N \N 48198 \N subspecies Chrysanthemoides incana subsp. incana \N \N \N \N \N 48199 T.sambesiaca Terminalia Terminalia sambesiaca \N \N \N \N \N 48200 \N genus Fernandezia \N \N \N \N \N 48201 E.smithii Eriogonum Eriogonum smithii \N \N \N \N \N 48202 B.costaricensis Beloglottis Beloglottis costaricensis \N \N \N \N \N 48203 S.vilvoides Sacciolepis Sacciolepis vilvoides \N \N \N \N \N 48204 L.rahmeri Lepidium Lepidium rahmeri \N \N \N \N \N 48205 C.abergiana Corymbia Corymbia abergiana \N \N \N \N \N 48206 C.triflora Centella Centella triflora \N \N \N \N \N 48207 C.hovenii Calophaca Calophaca hovenii \N \N \N \N \N 48208 P.varia Plantago Plantago varia \N \N \N \N \N 48209 T.dichroanthum Trifolium Trifolium dichroanthum \N \N \N \N \N 48210 A.rigida Anemone Anemone rigida \N \N \N \N \N 48211 C.helleri Carex Carex helleri \N \N \N \N \N 48212 C.clavata Carex Carex clavata \N \N \N \N \N 48213 \N genus Didelta \N \N \N \N \N 48214 P.albovaginatus Paepalanthus Paepalanthus albovaginatus \N \N \N \N \N 48215 H.dura Haloragis Haloragis dura \N \N \N \N \N 48216 B.leratii Babingtonia Babingtonia leratii \N \N \N \N \N 48217 F.scott-elliotii Ficus Ficus scott-elliotii \N \N \N \N \N 48218 A.hirtipes Acacia Acacia hirtipes \N \N \N \N \N 48219 V.pedata Viola Viola pedata \N \N \N \N \N 48220 J.sparrei Jacaranda Jacaranda sparrei \N \N \N \N \N 48221 F.hystrix Festuca Festuca hystrix \N \N \N \N \N 48222 \N family Caricaceae papaya family \N \N \N \N 48223 \N genus Ledebouria \N \N \N \N \N 48224 S.afra Schotia Schotia afra \N \N \N \N \N 48225 C.eburnea Carex Carex eburnea \N \N \N \N \N 48226 A.brachypetalus Astragalus Astragalus brachypetalus \N \N \N \N \N 48227 N.carpesioides Nannoglottis Nannoglottis carpesioides \N \N \N \N \N 48228 H.americana Haylockia Haylockia americana \N \N \N \N \N 48229 \N genus Bunias \N \N \N \N \N 48230 \N genus Thamnea \N \N \N \N \N 48231 C.tolucana Cuphea Cuphea tolucana \N \N \N \N \N 48232 P.leninghausii Parodia Parodia leninghausii \N \N \N \N \N 48233 \N subtribe Diurinae \N \N \N \N \N 48234 \N genus Callicarpa \N \N \N \N \N 48235 O.porphyriosiphon Oxalis Oxalis porphyriosiphon \N \N \N \N \N 48236 \N family Circaeasteraceae \N \N \N \N \N 48237 A.brachycarpus Acmispon Acmispon brachycarpus \N \N \N \N \N 48238 S.graveolens Syzygium Syzygium graveolens \N \N \N \N \N 48239 P.23 Phyllanthus Phyllanthus sp. Kawakita 23 \N \N \N \N \N 48240 C.strobilifera Cliffortia Cliffortia strobilifera \N \N \N \N \N 48241 P.karwinskii Passiflora Passiflora karwinskii \N \N \N \N \N 48242 P.supfiana Polystachya Polystachya supfiana \N \N \N \N \N 48243 A.albicans Asclepias Asclepias albicans \N \N \N \N \N 48244 R.elliptica Rosa Rosa elliptica \N \N \N \N \N 48245 \N genus Whittonia \N \N \N \N \N 48246 C.89 Cliffortia Cliffortia cf. verrucosa Whitehouse 89 \N \N \N \N \N 48247 I.wallichiana Iguanura Iguanura wallichiana \N \N \N \N \N 48248 D.antirrinoides Didymocarpus Didymocarpus antirrinoides \N \N \N \N \N 48249 \N genus Trophaeastrum \N \N \N \N \N 48250 C.stillmanii Coreopsis Coreopsis stillmanii \N \N \N \N \N 48251 B.humilis Bactris Bactris humilis \N \N \N \N \N 48252 P.'Turakina' Pimelea Pimelea sp. 'Turakina' \N \N \N \N \N 48253 P.BJC-2009 Poikilospermum Poikilospermum sp. BJC-2009 \N \N \N \N \N 48254 C.ottonis Comparettia Comparettia ottonis \N \N \N \N \N 48255 E.valerianifolius Erechtites Erechtites valerianifolius Brazilian fireweed \N \N \N \N 48256 C.vaginata Conostylis Conostylis vaginata \N \N \N \N \N 48257 C.ferganensis Cousinia Cousinia ferganensis \N \N \N \N \N 48258 O.knowltonii Ostrya Ostrya knowltonii \N \N \N \N \N 48259 A.haneltii Allium Allium haneltii \N \N \N \N \N 48260 M.evanescens Mimulus Mimulus evanescens \N \N \N \N \N 48261 \N family Didiereaceae \N \N \N \N \N 48262 C.chrysophylla Chrysolepis Chrysolepis chrysophylla \N \N \N \N \N 48263 C.laurifolia Carpolepis Carpolepis laurifolia \N \N \N \N \N 48264 I.compressa Indigofera Indigofera compressa \N \N \N \N \N 48265 C.purpurascens Chelonanthus Chelonanthus purpurascens \N \N \N \N \N 48266 C.aomorense Cirsium Cirsium aomorense \N \N \N \N \N 48267 \N genus Robinsonella \N \N \N \N \N 48268 \N genus Monocyclanthus \N \N \N \N \N 48269 \N genus Dryopoa \N \N \N \N \N 48270 T.andinum Trifolium Trifolium andinum \N \N \N \N \N 48271 \N subspecies Aspalathus arida subsp. procumbens \N \N \N \N \N 48272 G.amplexifolia Guadua Guadua amplexifolia \N \N \N \N \N 48273 H.grandidieri Hibiscus Hibiscus grandidieri \N \N \N \N \N 48274 M.mexicana Mentzelia Mentzelia mexicana \N \N \N \N \N 48275 I.raphanifolia Isatis Isatis raphanifolia \N \N \N \N \N 48276 \N genus Isodendrion \N \N \N \N \N 48277 V.prostrata Veronica Veronica prostrata \N \N \N \N \N 48278 \N subspecies Musa maclayi subsp. maclayi \N \N \N \N \N 48279 P.purpurascens Phagnalon Phagnalon purpurascens \N \N \N \N \N 48280 I.oliveri Iphigenia Iphigenia oliveri \N \N \N \N \N 48281 I.urticifolia Impatiens Impatiens urticifolia \N \N \N \N \N 48282 W.nutans Wikstroemia Wikstroemia nutans \N \N \N \N \N 48283 T.gundlachii Tolumnia Tolumnia gundlachii \N \N \N \N \N 48284 O.waltonii Onosma Onosma waltonii \N \N \N \N \N 48285 C.maculatum Conium Conium maculatum fool's-parsley,poison hemlock,spotted hemlock \N \N \N \N 48286 K.quinquefolia Klasea Klasea quinquefolia \N \N \N \N \N 48287 D.scorzoneroides Dolichoglottis Dolichoglottis scorzoneroides \N \N \N \N \N 48288 G.sericocephala Gnidia Gnidia sericocephala \N \N \N \N \N 48289 \N varietas Passiflora foetida var. arizonica \N \N \N \N \N 48290 D.callizonus Dianthus Dianthus callizonus \N \N \N \N \N 48291 \N varietas Pleurospermum hookeri var. thomsonii \N \N \N \N \N 48292 L.distans Liparis Liparis distans \N \N \N \N \N 48293 E.stictosepala Eugenia Eugenia stictosepala \N \N \N \N \N 48294 \N genus Chamaele \N \N \N \N \N 48295 M.1408 Macrolobium Macrolobium sp. Redden 1408 \N \N \N \N \N 48296 E.SH-2010 Eryngium Eryngium sp. SH-2010 \N \N \N \N \N 48297 S.saposhnikovii Salix Salix saposhnikovii \N \N \N \N \N 48298 \N varietas Mimosa polycephala var. polycephala \N \N \N \N \N 48299 \N subspecies Iris hymenospatha subsp. hymenospatha \N \N \N \N \N 48300 M.oppositifolia Medusagyne Medusagyne oppositifolia \N \N \N \N \N 48301 R.malvaceum Ribes Ribes malvaceum chaparral currant \N \N \N \N 48302 T.nigrispinus Tephrocactus Tephrocactus nigrispinus \N \N \N \N \N 48303 \N genus Indigofera indigo \N \N \N \N 48304 R.raeae Ranunculus Ranunculus raeae \N \N \N \N \N 48305 G.pumila Glandularia Glandularia pumila \N \N \N \N \N 48306 \N no rank unclassified Poeae \N \N \N \N \N 48307 O.riograndensis Oncidium Oncidium riograndensis \N \N \N \N \N 48308 P.propinqua Phyllostachys Phyllostachys propinqua \N \N \N \N \N 48309 T.trichotomum Tetradium Tetradium trichotomum \N \N \N \N \N 48310 A.bolanderi Allium Allium bolanderi \N \N \N \N \N 48311 R.dewitii Rinorea Rinorea dewitii \N \N \N \N \N 48312 \N subspecies Erica plukenetii subsp. penicellata \N \N \N \N \N 48313 D.leptophylla Daviesia Daviesia leptophylla \N \N \N \N \N 48314 A.nitidum Arcytophyllum Arcytophyllum nitidum \N \N \N \N \N 48315 \N genus Ulugbekia \N \N \N \N \N 48316 H.heterosperma Hemsleya Hemsleya heterosperma \N \N \N \N \N 48317 \N genus Georgeantha \N \N \N \N \N 48318 E.texensis Echinocactus Echinocactus texensis \N \N \N \N \N 48319 \N genus Incarum \N \N \N \N \N 48320 \N genus Stenodrepanum \N \N \N \N \N 48321 G.poeppigiana Gustavia Gustavia poeppigiana \N \N \N \N \N 48322 \N subspecies Iris caucasica subsp. caucasica \N \N \N \N \N 48323 P.californica Phacelia Phacelia californica \N \N \N \N \N 48324 A.archangelica Angelica Angelica archangelica wild parsnip \N \N \N \N 48325 \N genus Tetradymia \N \N \N \N \N 48326 P.marnierianus Peniocereus Peniocereus marnierianus \N \N \N \N \N 48327 S.bicornis Sclerolaena Sclerolaena bicornis \N \N \N \N \N 48328 M.wilburii Munnozia Munnozia wilburii \N \N \N \N \N 48329 A.oleifolius Alectryon Alectryon oleifolius Australian rosewood,bonaree \N \N \N \N 48330 A.meridionalis Alonsoa Alonsoa meridionalis \N \N \N \N \N 48331 T.tenuirostre Tropaeolum Tropaeolum x tenuirostre \N \N \N \N \N 48332 A.cupuliferum Allium Allium cupuliferum \N \N \N \N \N 48333 \N no rank Rivineae \N \N \N \N \N 48334 \N subtribe Leucanthemopsidinae \N \N \N \N \N 48335 G.baillonii Galium Galium baillonii \N \N \N \N \N 48336 G.holosteoides Gentianella Gentianella holosteoides \N \N \N \N \N 48337 C.villosa Calycadenia Calycadenia villosa dwarf calycadenia \N \N \N \N 48338 P.paradoxus Ptychococcus Ptychococcus paradoxus \N \N \N \N \N 48339 \N subspecies Fraxinus excelsior subsp. excelsior \N \N \N \N \N 48340 P.unijugatus Plagioscyphus Plagioscyphus unijugatus \N \N \N \N \N 48341 Z.juniperinum Zanthoxylum Zanthoxylum juniperinum \N \N \N \N \N 48342 L.6973 Lachnanthes Lachnanthes sp. Hahn 6973 \N \N \N \N \N 48343 S.pratensis Sipanea Sipanea pratensis \N \N \N \N \N 48344 C.quitensis Colobanthus Colobanthus quitensis \N \N \N \N \N 48345 P.oleifolia Polygala Polygala oleifolia \N \N \N \N \N 54741 \N genus Cornutia \N \N \N \N \N 48346 N.amplexicaulis Nicotiana Nicotiana amplexicaulis \N \N \N \N \N 48347 A.ochroleucus Amorphophallus Amorphophallus ochroleucus \N \N \N \N \N 48348 C.rigida Cullumia Cullumia rigida \N \N \N \N \N 48349 \N no rank Lamiales incertae sedis \N \N \N \N \N 48350 A.sarmentosa Androsace Androsace sarmentosa \N \N \N \N \N 48351 A.asipapote Acanthosyris Acanthosyris asipapote \N \N \N \N \N 48352 B.excisa Buxus Buxus excisa \N \N \N \N \N 48353 C.rosayroana Cullenia Cullenia rosayroana \N \N \N \N \N 48354 N.gardneriana Neogyna Neogyna gardneriana \N \N \N \N \N 48355 V.delavayi Vaccinium Vaccinium delavayi \N \N \N \N \N 48356 C.setosum Cirsium Cirsium setosum \N \N \N \N \N 48357 P.lagoensis Prestonia Prestonia lagoensis \N \N \N \N \N 48358 \N genus Opisthiolepis \N \N \N \N \N 48359 T.glabratum Tetrastigma Tetrastigma glabratum \N \N \N \N \N 48360 B.pantoblepharon Bulbophyllum Bulbophyllum pantoblepharon \N \N \N \N \N 48361 R.pyramidalis Renealmia Renealmia pyramidalis \N \N \N \N \N 48362 C.macropus Crepis Crepis macropus \N \N \N \N \N 48363 C.monostachya Carex Carex monostachya \N \N \N \N \N 48364 P.grandiflorum Pelargonium Pelargonium grandiflorum \N \N \N \N \N 48365 C.kwangsiensis Curcuma Curcuma kwangsiensis \N \N \N \N \N 48366 M.violacea Myonima Myonima violacea \N \N \N \N \N 48367 E.pungens Elaeagnus Elaeagnus pungens hu tui zi,spiny oleaster \N \N \N \N 48368 P.dodecandra Polanisia Polanisia dodecandra \N \N \N \N \N 48369 \N genus Triplasis \N \N \N \N \N 48370 M.tuberosa Micropyropsis Micropyropsis tuberosa \N \N \N \N \N 48371 B.glauca Bursera Bursera glauca \N \N \N \N \N 48372 D.schoenlandianum Drosanthemum Drosanthemum schoenlandianum \N \N \N \N \N 48373 C.acuta Carex Carex acuta \N \N \N \N \N 48374 F.utahensis Fendlerella Fendlerella utahensis \N \N \N \N \N 48375 L.jamesonii Lachemilla Lachemilla jamesonii \N \N \N \N \N 48376 C.ochrolepidium Cirsium Cirsium ochrolepidium \N \N \N \N \N 48377 T.sp. Torenia Torenia sp. \N \N \N \N \N 48378 A.cinerea Arenaria Arenaria cinerea \N \N \N \N \N 48379 P.aracouchini Protium Protium aracouchini \N \N \N \N \N 48380 S.pallida Senna Senna pallida \N \N \N \N \N 48381 M.fistulosa Monarda Monarda fistulosa \N \N \N \N \N 48382 P.fruticulosa Parrya Parrya fruticulosa \N \N \N \N \N 48383 I.argyraeum Indigastrum Indigastrum argyraeum \N \N \N \N \N 48384 H.courbaril Hymenaea Hymenaea courbaril \N \N \N \N \N 48385 P.lyallii Pimelea Pimelea lyallii \N \N \N \N \N 48386 R.rigidus Rubus Rubus rigidus \N \N \N \N \N 48387 A.stipulata Aralia Aralia stipulata \N \N \N \N \N 48388 \N varietas Heliophila linearis var. linearis \N \N \N \N \N 48389 \N subspecies Armeria arenaria subsp. bilbilitana \N \N \N \N \N 48390 C.cyanus Centaurea Centaurea cyanus bachelor's-button,blue bottle \N \N \N \N 48391 T.trifoliata Thamnosma Thamnosma trifoliata \N \N \N \N \N 48392 O.gutfreundiana Oncidium Oncidium gutfreundiana \N \N \N \N \N 48393 R.esquirolii Rhamnus Rhamnus esquirolii \N \N \N \N \N 48394 P.lutea Pentopetia Pentopetia lutea \N \N \N \N \N 48395 A.patula Acrotriche Acrotriche patula \N \N \N \N \N 48396 M.antirrhiniflora Maurandella Maurandella antirrhiniflora \N \N \N \N \N 48397 \N family Anacampserotaceae \N \N \N \N \N 48398 H.bolanderi Horkelia Horkelia bolanderi \N \N \N \N \N 48399 S.flaemingii Swartzia Swartzia flaemingii \N \N \N \N \N 48400 L.portula Lythrum Lythrum portula \N \N \N \N \N 48401 W.humbertiana Weinmannia Weinmannia humbertiana \N \N \N \N \N 48402 E.elymoides Elymus Elymus elymoides \N \N \N \N \N 48403 J.roei Jonesiopsis Jonesiopsis roei \N \N \N \N \N 48404 R.inaequalis Rafnia Rafnia inaequalis \N \N \N \N \N 48405 J.copaia Jacaranda Jacaranda copaia \N \N \N \N \N 48406 A.trisecta Adenia Adenia trisecta \N \N \N \N \N 48407 A.australis Arctostaphylos Arctostaphylos australis \N \N \N \N \N 48408 I.rugosa Indigofera Indigofera rugosa \N \N \N \N \N 48409 \N genus Thecacoris \N \N \N \N \N 48410 \N genus Physorhynchus \N \N \N \N \N 48411 E.hottentotica Erica Erica hottentotica \N \N \N \N \N 48412 \N genus Grandiphyllum \N \N \N \N \N 48414 O.sandwicensis Ochrosia Ochrosia sandwicensis \N \N \N \N \N 48415 \N genus Harveya \N \N \N \N \N 48416 R.pilosa Richardia Richardia pilosa \N \N \N \N \N 48417 R.aquitanicus Rumex Rumex aquitanicus \N \N \N \N \N 48418 N.verdcourtii Neonotonia Neonotonia verdcourtii \N \N \N \N \N 48419 E.VM08-03-1 Empetrum Empetrum cf. atropurpureum Maunder VM08-03-1 \N \N \N \N \N 48420 V.mongolicum Viburnum Viburnum mongolicum \N \N \N \N \N 48421 I.microcentra Impatiens Impatiens microcentra \N \N \N \N \N 48422 \N genus Artia \N \N \N \N \N 48423 M.limax Masdevallia Masdevallia limax \N \N \N \N \N 48424 M.elleryana Melicope Melicope elleryana \N \N \N \N \N 48425 \N genus Greenovia \N \N \N \N \N 48426 \N genus Nesohedyotis \N \N \N \N \N 48427 C.tirinensis Cousinia Cousinia tirinensis \N \N \N \N \N 48428 E.emersus Echinodorus Echinodorus emersus \N \N \N \N \N 48429 S.mexicana Samyda Samyda mexicana \N \N \N \N \N 48430 I.scabrida Impatiens Impatiens scabrida \N \N \N \N \N 48431 E.rigidum Epidendrum Epidendrum rigidum \N \N \N \N \N 48432 H.procumbens Hymenolobus Hymenolobus procumbens \N \N \N \N \N 48433 M.23707 Mimosa Mimosa sp. Wood 23707 \N \N \N \N \N 48434 P.decora Pedicularis Pedicularis decora \N \N \N \N \N 48435 B.zamorae Bejaria Bejaria zamorae \N \N \N \N \N 48436 G.thesioides Gyrostemon Gyrostemon thesioides \N \N \N \N \N 48437 H.heermannii Holocarpha Holocarpha heermannii \N \N \N \N \N 48438 T.azorica Tolpis Tolpis azorica \N \N \N \N \N 48439 N.holmboei Nertera Nertera holmboei \N \N \N \N \N 48440 P.subvestita Poa Poa subvestita \N \N \N \N \N 48441 \N no rank Saccharum hybrid cultivar TSP05-4 \N \N \N \N \N 48442 C.dubium Cnidium Cnidium dubium \N \N \N \N \N 48443 R.alba Rosa Rosa x alba \N \N \N \N \N 48444 M.luteo-rubra Manettia Manettia luteo-rubra \N \N \N \N \N 48445 C.bracteata Crudia Crudia bracteata \N \N \N \N \N 48446 C.flava Caladenia Caladenia flava \N \N \N \N \N 48447 S.instita Schefflera Schefflera instita \N \N \N \N \N 48448 P.nigrescens Periploca Periploca nigrescens \N \N \N \N \N 48449 S.oblongifolia Stephanodaphne Stephanodaphne oblongifolia \N \N \N \N \N 48450 A.bivonii Adenocarpus Adenocarpus bivonii \N \N \N \N \N 48451 C.rhacoma Crossopetalum Crossopetalum rhacoma \N \N \N \N \N 48452 G.sericea Genista Genista sericea \N \N \N \N \N 48453 F.paniculata Fuchsia Fuchsia paniculata \N \N \N \N \N 48454 R.trichophyllus Ranunculus Ranunculus trichophyllus \N \N \N \N \N 48455 A.viguieri Aloe Aloe viguieri \N \N \N \N \N 48456 G.koelerioides Gymnachne Gymnachne koelerioides \N \N \N \N \N 48457 G.cleistanthum Glossostigma Glossostigma cleistanthum \N \N \N \N \N 48458 P.spania Poa Poa spania \N \N \N \N \N 48459 \N genus Phaseolus \N \N \N \N \N 48460 G.ranifera Gomesa Gomesa ranifera \N \N \N \N \N 48461 L.abyssinica Luzula Luzula abyssinica \N \N \N \N \N 48462 A.circinnata Anthyllis Anthyllis circinnata \N \N \N \N \N 48463 \N tribe Caryoteae \N \N \N \N \N 48464 H.cordifolia Hopea Hopea cordifolia \N \N \N \N \N 48465 D.macrophyllum Doronicum Doronicum macrophyllum \N \N \N \N \N 48466 C.chlorocarpus Carolus Carolus chlorocarpus \N \N \N \N \N 48467 B.borneense Borassodendron Borassodendron borneense \N \N \N \N \N 48468 \N subspecies Hordeum brevisubulatum subsp. turkestanicum \N \N \N \N \N 48469 A.aristatum Arcytophyllum Arcytophyllum aristatum \N \N \N \N \N 48470 S.japonica Scabiosa Scabiosa japonica \N \N \N \N \N 48471 \N genus Cyananthus \N \N \N \N \N 48472 B.schizocheila Burbidgea Burbidgea schizocheila \N \N \N \N \N 48473 P.lambda Prosthechea Prosthechea lambda \N \N \N \N \N 48474 A.douglasii Arceuthobium Arceuthobium douglasii \N \N \N \N \N 48475 S.cultivar Scoparia Scoparia hybrid cultivar \N \N \N \N \N 48476 \N genus Tarchonanthus \N \N \N \N \N 48477 R.paschale Rytidosperma Rytidosperma paschale \N \N \N \N \N 48478 V.aconitifolia Vigna Vigna aconitifolia \N \N \N \N \N 48479 S.tuberosum Solanum Solanum sparsipilum x Solanum tuberosum \N \N \N \N \N 48480 A.junciformis Aristida Aristida junciformis \N \N \N \N \N 48481 B.melanocarpa Brachyscome Brachyscome melanocarpa \N \N \N \N \N 48482 H.succosa Henriettea Henriettea succosa \N \N \N \N \N 48483 D.palpebrae Dendrobium Dendrobium palpebrae \N \N \N \N \N 48484 A.angustatus Allophylus Allophylus angustatus \N \N \N \N \N 48485 M.muelleri Myriophyllum Myriophyllum muelleri \N \N \N \N \N 48486 P.7042 Prunus Prunus sp. Wen 7042 \N \N \N \N \N 48487 G.hombroniana Garcinia Garcinia hombroniana \N \N \N \N \N 48488 V.horovitziana Vasconcellea Vasconcellea horovitziana \N \N \N \N \N 48489 D.subacaulis Dianthus Dianthus subacaulis \N \N \N \N \N 48490 S.cichoriacea Stephanomeria Stephanomeria cichoriacea \N \N \N \N \N 48491 E.erina Erica Erica erina \N \N \N \N \N 48492 H.99-6325 Hanguana Hanguana sp. Kress 99-6325 \N \N \N \N \N 48493 M.desertorum Mentzelia Mentzelia desertorum \N \N \N \N \N 48494 P.crenata Planchonella Planchonella crenata \N \N \N \N \N 48495 P.lineare Paspalum Paspalum lineare \N \N \N \N \N 48496 S.skutchii Squamopappus Squamopappus skutchii \N \N \N \N \N 48497 \N genus Platysepalum \N \N \N \N \N 48498 E.mahabobokensis Euphorbia Euphorbia mahabobokensis \N \N \N \N \N 48499 H.bivalvis Hernandia Hernandia bivalvis \N \N \N \N \N 48500 D.parishii Dendrobium Dendrobium parishii \N \N \N \N \N 48501 \N genus Lindenbergia \N \N \N \N \N 48502 \N subspecies Daviesia ulicifolia subsp. stenophylla \N \N \N \N \N 48503 O.oblongatum Oncidium Oncidium oblongatum \N \N \N \N \N 48504 M.setosa Mimosa Mimosa setosa \N \N \N \N \N 48505 B.2783 Baskervilla Baskervilla sp. Whitten 2783 \N \N \N \N \N 48506 \N no rank Anigozanthos viridis ssp. Cataby (S.D. Hopper 1786) \N \N \N \N \N 48507 S.candidum Satyrium Satyrium candidum \N \N \N \N \N 48508 A.hintonii Aztekium Aztekium hintonii \N \N \N \N \N 48509 A.tianschanica Arabis Arabis tianschanica \N \N \N \N \N 48510 C.laza Cyphostemma Cyphostemma laza \N \N \N \N \N 48511 C.pervelutina Coreopsis Coreopsis pervelutina \N \N \N \N \N 48514 R.cassubicifolius Ranunculus Ranunculus cassubicifolius \N \N \N \N \N 48515 S.romanzoffiana Syagrus Syagrus romanzoffiana \N \N \N \N \N 48516 C.ferruginea Cryptocoryne Cryptocoryne ferruginea \N \N \N \N \N 48517 E.lemmonii Eriogonum Eriogonum lemmonii \N \N \N \N \N 48518 \N no rank Salicaceae incertae sedis \N \N \N \N \N 48519 T.forrestii Tripterygium Tripterygium forrestii \N \N \N \N \N 48520 \N genus Myxopyrum \N \N \N \N \N 48521 M.trifida Moraea Moraea trifida \N \N \N \N \N 48522 C.1834 Corsia Corsia sp. Neyland 1834 \N \N \N \N \N 48523 T.patula Tagetes Tagetes patula French marigold \N \N \N \N 48524 Z.acanthopodium Zanthoxylum Zanthoxylum acanthopodium \N \N \N \N \N 48525 D.strongylanthum Dendrobium Dendrobium strongylanthum \N \N \N \N \N 48526 A.hongkongensis Artabotrys Artabotrys hongkongensis \N \N \N \N \N 48527 F.uncinata Ferraria Ferraria uncinata \N \N \N \N \N 48528 N.canadensis Nuttallanthus Nuttallanthus canadensis Canada toadflax \N \N \N \N 48529 C.laxiflora Cyrtandra Cyrtandra laxiflora \N \N \N \N \N 48530 S.saccata Stanhopea Stanhopea saccata \N \N \N \N \N 48531 A.homalolepis Anthemis Anthemis homalolepis \N \N \N \N \N 48532 C.goulimyi Crocus Crocus goulimyi \N \N \N \N \N 48533 U.ZAF-3941 Urgineopsis Urgineopsis cf. modesta ZAF-3941 \N \N \N \N \N 48534 D.corymbosa Deinandra Deinandra corymbosa \N \N \N \N \N 48535 F.grossularioides Ficus Ficus grossularioides \N \N \N \N \N 48536 P.barbatus Penstemon Penstemon barbatus \N \N \N \N \N 48537 G.(NQ5) Gymnosporia Gymnosporia sp. C (NQ5) \N \N \N \N \N 48538 P.simplex Pimelea Pimelea simplex \N \N \N \N \N 48539 E.regnellii Eryngium Eryngium regnellii \N \N \N \N \N 48540 H.compressum Helictotrichon Helictotrichon compressum \N \N \N \N \N 48541 M.suberosa Medinilla Medinilla suberosa \N \N \N \N \N 48542 \N no rank Saccharum hybrid cultivar R46 \N \N \N \N \N 48543 \N forma Rhipsalis teres f. prismatica \N \N \N \N \N 48544 B.farinacea Bambusa Bambusa farinacea \N \N \N \N \N 48545 A.29016 Amomum Amomum sp. Wilkie et al. 29016 \N \N \N \N \N 48546 D.pteropoda Dahlia Dahlia pteropoda \N \N \N \N \N 48547 \N genus Athenaea \N \N \N \N \N 48548 \N tribe Phaseoleae \N \N \N \N \N 48549 S.hermonthica Striga Striga hermonthica purple witchweed \N \N \N \N 48550 R.parnassiifolius Ranunculus Ranunculus parnassiifolius \N \N \N \N \N 48551 \N genus Renantherella \N \N \N \N \N 48552 \N tribe Bridelieae \N \N \N \N \N 48553 I.minutoaurea Iris Iris minutoaurea \N \N \N \N \N 48554 G.zekuensis Gentiana Gentiana zekuensis \N \N \N \N \N 48555 B.rhaphidacantha Bactris Bactris rhaphidacantha \N \N \N \N \N 48556 L.alvimii Lymania Lymania alvimii \N \N \N \N \N 48557 H.argyranthum Helichrysum Helichrysum argyranthum \N \N \N \N \N 48558 O.microdasys Opuntia Opuntia microdasys angel's-wings,bunny-ears prickly-pear,cegador,golden-bristle \N \N \N \N 48559 P.alpestris Pilea Pilea alpestris \N \N \N \N \N 48560 P.fraseri Peperomia Peperomia fraseri \N \N \N \N \N 48561 A.h204 Albuca Albuca sp. h204 \N \N \N \N \N 48562 E.scirpinum Eryngium Eryngium scirpinum \N \N \N \N \N 48563 T.coriaceum Thalictrum Thalictrum coriaceum \N \N \N \N \N 48564 L.corrugata Lecythis Lecythis corrugata \N \N \N \N \N 48565 T.acuminatum Trigonidium Trigonidium acuminatum \N \N \N \N \N 48566 C.aurea Canbya Canbya aurea \N \N \N \N \N 48567 H.28 Hasseltia Hasseltia sp. Alford 28 \N \N \N \N \N 48568 \N genus Craibia \N \N \N \N \N 48569 \N varietas Platymiscium floribundum var. floribundum \N \N \N \N \N 48570 E.grandiflorus Echinodorus Echinodorus grandiflorus \N \N \N \N \N 48571 \N genus Pheidochloa \N \N \N \N \N 48572 \N varietas Coelospermum paniculatum var. syncarpum \N \N \N \N \N 48573 \N genus Dioicodendron \N \N \N \N \N 48574 S.jamesonii Sisyrinchium Sisyrinchium jamesonii \N \N \N \N \N 48575 L.ericifolium Leucadendron Leucadendron ericifolium \N \N \N \N \N 48576 A.longipes Angelica Angelica longipes \N \N \N \N \N 48577 T.schumannianus Tynanthus Tynanthus schumannianus \N \N \N \N \N 48578 A.peruviana Alseis Alseis peruviana \N \N \N \N \N 48579 T.coulteri Tetraclea Tetraclea coulteri \N \N \N \N \N 48580 I.fulgens Indigofera Indigofera fulgens \N \N \N \N \N 48581 E.seriphiifolia Erica Erica seriphiifolia \N \N \N \N \N 48582 \N genus Cneorum \N \N \N \N \N 48583 M.lenneoides Millettia Millettia lenneoides \N \N \N \N \N 48584 Z.pygmaeum Zygophyllum Zygophyllum pygmaeum \N \N \N \N \N 48585 \N genus Glischrothamnus \N \N \N \N \N 48586 \N genus Picradeniopsis \N \N \N \N \N 48587 H.indica Hyophorbe Hyophorbe indica \N \N \N \N \N 48588 A.adfinis Androsace Androsace adfinis \N \N \N \N \N 48589 N.trifida Nicolletia Nicolletia trifida \N \N \N \N \N 48590 L.prostrata Lotononis Lotononis prostrata \N \N \N \N \N 48591 \N genus Haraella \N \N \N \N \N 48592 \N genus Millotia \N \N \N \N \N 48593 H.rhopalocarpa Hydriastele Hydriastele rhopalocarpa \N \N \N \N \N 48594 P.ovina Potentilla Potentilla ovina \N \N \N \N \N 48595 P.microcarpa Prunus Prunus microcarpa \N \N \N \N \N 48596 \N forma Erigeron thunbergii f. haruoi \N \N \N \N \N 48597 A.alpinum Aframomum Aframomum alpinum \N \N \N \N \N 48598 C.nitida Cuscuta Cuscuta nitida \N \N \N \N \N 48599 C.velutinus Croton Croton velutinus \N \N \N \N \N 48600 S.beaugleholei Solanum Solanum beaugleholei \N \N \N \N \N 48601 E.trichotoma Euphorbia Euphorbia trichotoma \N \N \N \N \N 48602 \N subspecies Alnus alnobetula subsp. fruticosa \N \N \N \N \N 48603 M.pyrophila Moraea Moraea pyrophila \N \N \N \N \N 48604 P.atrovaginata Phyllostachys Phyllostachys atrovaginata \N \N \N \N \N 48605 C.gilletiana Citropsis Citropsis gilletiana \N \N \N \N \N 48606 C.foliosum Chenopodium Chenopodium foliosum \N \N \N \N \N 48607 \N genus Pogonotium \N \N \N \N \N 48608 E.acaule Erodium Erodium acaule \N \N \N \N \N 48609 E.acanthocarpum Echium Echium acanthocarpum \N \N \N \N \N 48610 \N genus Exellodendron \N \N \N \N \N 48611 C.elmeri Castilleja Castilleja elmeri \N \N \N \N \N 58291 \N genus Speculantha \N \N \N \N \N 48612 Z.pittieri Zeugites Zeugites pittieri \N \N \N \N \N 48613 B.spiculifolia Bruckenthalia Bruckenthalia spiculifolia spike heath \N \N \N \N 48614 \N varietas Aechmea nudicaulis var. nudicaulis \N \N \N \N \N 48615 I.barnumae Iris Iris barnumae \N \N \N \N \N 48616 O.orthophyllum Ornithogalum Ornithogalum orthophyllum \N \N \N \N \N 48617 D.densiflorum Dendrobium Dendrobium densiflorum \N \N \N \N \N 48618 G.bella Graffenrieda Graffenrieda bella \N \N \N \N \N 48619 \N genus Alloteropsis \N \N \N \N \N 48620 H.GP-2003 Hordeum Hordeum cf. pusillum GP-2003 \N \N \N \N \N 48621 P.kimnachii Pachyphytum Pachyphytum kimnachii \N \N \N \N \N 48622 C.dioritica Crepis Crepis dioritica \N \N \N \N \N 48623 M.laticifera Mimosa Mimosa laticifera \N \N \N \N \N 48624 I.mairetii Ipomoea Ipomoea mairetii \N \N \N \N \N 48625 \N subtribe Aveninae \N \N \N \N \N 48626 C.jussieui Chuquiraga Chuquiraga jussieui chuquiragua,flower of the Andes \N \N \N \N 48627 C.hyssopifolia Cuphea Cuphea hyssopifolia Mexican-heather \N \N \N \N 48628 V.randii Vangueria Vangueria randii \N \N \N \N \N 48629 P.perciliata Parnassia Parnassia perciliata \N \N \N \N \N 48630 \N varietas Actinidia deliciosa var. deliciosa \N \N \N \N \N 48631 E.nudicaulis Enceliopsis Enceliopsis nudicaulis \N \N \N \N \N 48632 C.commutatus Cymbopogon Cymbopogon commutatus \N \N \N \N \N 48633 S.2622 unclassified Sapotaceae Sapotaceae sp. Munzinger 2622 \N \N \N \N \N 48634 M.philaeana Morettia Morettia philaeana \N \N \N \N \N 48635 C.morifolium Chrysanthemum Chrysanthemum x morifolium florist's chrysanthemum,mum \N \N \N \N 48636 R.giraldii Ribes Ribes giraldii \N \N \N \N \N 48637 H.procumbens Harpagophytum Harpagophytum procumbens Kalahari devil's claw \N \N \N \N 48638 M.piperita Mentha Mentha x piperita peppermint \N \N \N \N 48639 M.acutilobus Myxopappus Myxopappus acutilobus \N \N \N \N \N 48640 H.turbinata Hensmania Hensmania turbinata \N \N \N \N \N 48641 T.hawaiensis Tetraplasandra Tetraplasandra hawaiensis \N \N \N \N \N 48642 L.ballianus Lupinus Lupinus ballianus \N \N \N \N \N 48643 P.mazaruniensis Psychotria Psychotria mazaruniensis \N \N \N \N \N 48644 S.rosmarinifolia Santolina Santolina rosmarinifolia \N \N \N \N \N 48645 P.muelleri Piper Piper muelleri \N \N \N \N \N 48646 G.smeathmannii Garcinia Garcinia smeathmannii \N \N \N \N \N 48647 U.erinacea Uncinia Uncinia erinacea \N \N \N \N \N 48648 \N genus Perrierophytum \N \N \N \N \N 48649 \N genus Saugetia \N \N \N \N \N 48650 \N genus Systeloglossum \N \N \N \N \N 48651 L.nigricans Lecanorchis Lecanorchis nigricans \N \N \N \N \N 48652 V.wrightii Vaccinium Vaccinium wrightii \N \N \N \N \N 48653 H.refulgens Hoffmannia Hoffmannia refulgens \N \N \N \N \N 48654 E.capensis Eragrostis Eragrostis capensis \N \N \N \N \N 48655 T.gileri Theobroma Theobroma gileri \N \N \N \N \N 48656 G.mexicanum Galium Galium mexicanum \N \N \N \N \N 48657 \N subspecies Eleocharis palustris subsp. waltersii \N \N \N \N \N 48658 S.10195 Salicornia Salicornia aff. perennans Neuffer 10195 \N \N \N \N \N 48659 H.cuneata Horkelia Horkelia cuneata \N \N \N \N \N 48660 A.amazonicus Actinostemon Actinostemon amazonicus \N \N \N \N \N 48661 H.ensifolium Haemodorum Haemodorum ensifolium \N \N \N \N \N 48662 P.abbreviatus Phyllobolus Phyllobolus abbreviatus \N \N \N \N \N 48663 \N varietas Dyschoriste schiedeana var. decumbens \N \N \N \N \N 48664 P.rivas-martinezii Pseudomisopates Pseudomisopates rivas-martinezii \N \N \N \N \N 48665 E.lateriflora Erica Erica lateriflora \N \N \N \N \N 48666 E.clivorum Elymus Elymus clivorum \N \N \N \N \N 48667 P.hellwigii Pleuranthodium Pleuranthodium hellwigii \N \N \N \N \N 48668 \N genus Plumbago leadwort \N \N \N \N 48669 S.04F/0036 Salicornia Salicornia aff. ramosissima Teege 04F/0036 \N \N \N \N \N 48670 C.linczevskyi Cota Cota linczevskyi \N \N \N \N \N 48671 S.supa Sindora Sindora supa \N \N \N \N \N 48672 \N subfamily Idiospermoideae \N \N \N \N \N 48673 P.albiflora Potentilla Potentilla albiflora \N \N \N \N \N 48674 A.nemorum Aconitum Aconitum nemorum \N \N \N \N \N 48675 F.schidosperma Fosterella Fosterella schidosperma \N \N \N \N \N 48676 R.lyallii Ranunculus Ranunculus lyallii \N \N \N \N \N 48677 A.dactylina Aechmea Aechmea dactylina \N \N \N \N \N 48678 P.deflexa Psychotria Psychotria deflexa \N \N \N \N \N 48679 A.dentata Aldama Aldama dentata \N \N \N \N \N 48680 T.lythroides Thymelaea Thymelaea lythroides \N \N \N \N \N 48681 K.malayana Kostermansia Kostermansia malayana \N \N \N \N \N 48682 E.1402 Etlingera Etlingera aff. muluensis Mood and Pedersen 1402 \N \N \N \N \N 48683 M.rosacea Musa Musa rosacea \N \N \N \N \N 48684 B.brevirimosa Begonia Begonia brevirimosa \N \N \N \N \N 48685 \N genus Reinwardtia \N \N \N \N \N 48686 C.brachiata Clematis Clematis brachiata \N \N \N \N \N 48687 C.gracilipes Cremastosperma Cremastosperma gracilipes \N \N \N \N \N 48688 S.polypetala Silene Silene polypetala eastern fringed catchfly \N \N \N \N 48689 P.multiflora Passiflora Passiflora multiflora \N \N \N \N \N 48690 \N genus Lens \N \N \N \N \N 48691 E.propendens Erica Erica propendens \N \N \N \N \N 48692 \N varietas Disa lugens var. lugens \N \N \N \N \N 48693 S.ligustrina Schiedea Schiedea ligustrina \N \N \N \N \N 48694 M.sphagnicola Miconia Miconia sphagnicola \N \N \N \N \N 48695 \N genus Dillenia \N \N \N \N \N 48696 C.obtusata Carex Carex obtusata \N \N \N \N \N 48697 G.pterocarpum Grammosciadium Grammosciadium pterocarpum \N \N \N \N \N 48698 T.catesbaei Trillium Trillium catesbaei \N \N \N \N \N 48699 J.herrerae Jaltomata Jaltomata herrerae \N \N \N \N \N 48700 C.eriostachys Caesalpinia Caesalpinia eriostachys \N \N \N \N \N 48701 C.steenkampianus Croton Croton steenkampianus \N \N \N \N \N 48702 \N subspecies Zea mays subsp. mays x Zea mays subsp. parviglumis \N \N \N \N \N 48703 C.sinuata Cevallia Cevallia sinuata \N \N \N \N \N 48704 H.hillii Harpullia Harpullia hillii \N \N \N \N \N 48705 C.Koniambo Coronanthera Coronanthera sp. Koniambo \N \N \N \N \N 48706 C.meyeri-johannis Ceropegia Ceropegia meyeri-johannis \N \N \N \N \N 48707 B.186 Brachystephanus Brachystephanus sp. Lane 186 \N \N \N \N \N 48708 E.caudatum Entandrophragma Entandrophragma caudatum \N \N \N \N \N 48709 E.7979 Eschweilera Eschweilera sp. Aguilar 7979 \N \N \N \N \N 48710 A.lasaensis Astragalus Astragalus lasaensis \N \N \N \N \N 48711 R.grandiflorum Rhytidophyllum Rhytidophyllum grandiflorum \N \N \N \N \N 48712 S.alexanderi Sedum Sedum alexanderi \N \N \N \N \N 48713 C.versicolor Chadsia Chadsia versicolor \N \N \N \N \N 48714 M.diversiglumis Muhlenbergia Muhlenbergia diversiglumis \N \N \N \N \N 48715 D.xiphophylla Dracaena Dracaena xiphophylla \N \N \N \N \N 48716 \N genus Phyllobotryon \N \N \N \N \N 48717 \N subspecies Festuca matthewsii subsp. latifundii \N \N \N \N \N 48718 U.molinae Ugni Ugni molinae \N \N \N \N \N 48719 \N varietas Stachyurus salicifolius var. salicifolius \N \N \N \N \N 48720 S.brockiei Scleranthus Scleranthus brockiei \N \N \N \N \N 48721 \N genus Hilgeria \N \N \N \N \N 48722 R.nervosa Rhynchospora Rhynchospora nervosa \N \N \N \N \N 48723 H.lanatus Holcus Holcus lanatus velvet grass \N \N \N \N 48724 V.locusta Valerianella Valerianella locusta European cornsalad,lamb's-lettuce \N \N \N \N 48725 S.960 Storthocalyx Storthocalyx sp. Munzinger 960 \N \N \N \N \N 48726 \N genus Dasymaschalon \N \N \N \N \N 48727 \N subspecies Bauhinia forficata subsp. pruinosa \N \N \N \N \N 48728 D.klainei Daniellia Daniellia klainei \N \N \N \N \N 48729 B.linearifolia Boerhavia Boerhavia linearifolia \N \N \N \N \N 48730 S.pumila Saponaria Saponaria pumila \N \N \N \N \N 48731 \N genus Trevoa \N \N \N \N \N 48732 M.familiaris Microtis Microtis familiaris \N \N \N \N \N 48733 \N family Putranjivaceae \N \N \N \N \N 48734 \N genus Philodendron \N \N \N \N \N 48735 N.didepta Nicotiana Nicotiana didepta \N \N \N \N \N 48736 P.parviflora Porphyrostachys Porphyrostachys parviflora \N \N \N \N \N 48737 C.metallica Chamaedorea Chamaedorea metallica \N \N \N \N \N 48738 P.featherstonei Piptochaetium Piptochaetium featherstonei \N \N \N \N \N 48739 B.superba Butea Butea superba \N \N \N \N \N 48740 L.artvinense Lilium Lilium artvinense \N \N \N \N \N 48741 C.durandii Celtis Celtis durandii \N \N \N \N \N 48742 M.marina Medicago Medicago marina \N \N \N \N \N 48743 \N genus Glycydendron \N \N \N \N \N 48744 A.tinctoria Asperula Asperula tinctoria \N \N \N \N \N 48745 G.straminea Gaultheria Gaultheria straminea \N \N \N \N \N 48746 P.nodosus Phaseolus Phaseolus nodosus \N \N \N \N \N 48747 H.stenopetalum Hedychium Hedychium stenopetalum \N \N \N \N \N 48748 A.marginata Anisoptera Anisoptera marginata \N \N \N \N \N 48749 \N genus Diarrhena \N \N \N \N \N 48750 M.pilifolia Moraea Moraea pilifolia \N \N \N \N \N 48751 B.naevosa Barkeria Barkeria naevosa \N \N \N \N \N 48752 C.depressa Centaurea Centaurea depressa \N \N \N \N \N 48753 P.bonsai Paepalanthus Paepalanthus bonsai \N \N \N \N \N 48754 D.rugosa Dacryodes Dacryodes rugosa \N \N \N \N \N 48755 P.susannae Protea Protea susannae \N \N \N \N \N 48756 T.neurophylla Tarenna Tarenna neurophylla \N \N \N \N \N 48757 A.sphaerocephalon Allium Allium sphaerocephalon \N \N \N \N \N 48758 T.macrophyllum Tetrathylacium Tetrathylacium macrophyllum \N \N \N \N \N 48759 \N genus Tracyina \N \N \N \N \N 48760 P.peltatum Peltophorum Peltophorum peltatum \N \N \N \N \N 48761 \N genus Deeringothamnus \N \N \N \N \N 48762 R.pennellii Ruellia Ruellia pennellii \N \N \N \N \N 48763 S.uniflosculosa Staehelina Staehelina uniflosculosa \N \N \N \N \N 48764 V.infausta Vangueria Vangueria infausta \N \N \N \N \N 48765 H.'bombicella' Hibiscus Hibiscus sp. 'bombicella' \N \N \N \N \N 48766 E.Cuba Epidendrum Epidendrum sp. Cuba \N \N \N \N \N 48767 C.rollae Ceropegia Ceropegia rollae \N \N \N \N \N 48768 U.chamae Uvaria Uvaria chamae finger-root \N \N \N \N 48769 M.gatunensis Myrcia Myrcia gatunensis \N \N \N \N \N 48770 C.crawfordii Carex Carex crawfordii \N \N \N \N \N 48771 \N genus Campsidium \N \N \N \N \N 48772 A.symphyocarpa Annona Annona symphyocarpa \N \N \N \N \N 48773 A.echidniformis Astragalus Astragalus echidniformis \N \N \N \N \N 48774 \N genus Bergera \N \N \N \N \N 48775 \N varietas Aristida purpurea var. longiseta \N \N \N \N \N 48776 S.99-051 Sinningia Sinningia sp. Chautems Perret 99-051 \N \N \N \N \N 48777 \N varietas Arisaema ciliatum var. liubaense \N \N \N \N \N 48778 C.cochleare Cymbidium Cymbidium cochleare \N \N \N \N \N 48779 M.oblongifolium Machaerium Machaerium oblongifolium \N \N \N \N \N 48780 U.adpressa Utricularia Utricularia adpressa \N \N \N \N \N 48781 G.haberiana Gymnosporia Gymnosporia haberiana \N \N \N \N \N 48782 \N genus Melicytus \N \N \N \N \N 48783 M.casta Mimosa Mimosa casta \N \N \N \N \N 48784 S.retrorsus Senecio Senecio retrorsus \N \N \N \N \N 48785 P.fosteriana Portea Portea fosteriana \N \N \N \N \N 48786 C.lateriflora Cuspidaria Cuspidaria lateriflora \N \N \N \N \N 48787 L.rachidocladum Lycium Lycium rachidocladum \N \N \N \N \N 48788 T.kolpakowskiana Tulipa Tulipa kolpakowskiana \N \N \N \N \N 48789 G.litorale Gonocaryum Gonocaryum litorale \N \N \N \N \N 48790 \N varietas Iris potaninii var. ionantha \N \N \N \N \N 48791 C.remotifolium Cirsium Cirsium remotifolium \N \N \N \N \N 48792 B.malabarica Boehmeria Boehmeria malabarica \N \N \N \N \N 48793 Q.duckei Quararibea Quararibea duckei \N \N \N \N \N 48794 D.yaouhensis Diospyros Diospyros yaouhensis \N \N \N \N \N 48795 P.fendleri Palicourea Palicourea fendleri \N \N \N \N \N 48796 L.bipinnata Lavandula Lavandula bipinnata \N \N \N \N \N 48797 P.recondita Protea Protea recondita \N \N \N \N \N 48798 C.nepeta Clinopodium Clinopodium nepeta \N \N \N \N \N 48799 Q.dalechampii Quercus Quercus dalechampii \N \N \N \N \N 48800 G.hexapetala Gustavia Gustavia hexapetala \N \N \N \N \N 48801 M.novaguineensis Macaranga Macaranga novaguineensis \N \N \N \N \N 48802 C.sogdiana Cousinia Cousinia sogdiana \N \N \N \N \N 48803 S.diversifolia Sphaeromeria Sphaeromeria diversifolia \N \N \N \N \N 48804 \N genus Centella \N \N \N \N \N 58486 \N genus Coptidium \N \N \N \N \N 48805 L.orientalis Lonicera Lonicera orientalis \N \N \N \N \N 48806 Q.inversa Quaqua Quaqua inversa \N \N \N \N \N 48807 M.leucantha Marantochloa Marantochloa leucantha \N \N \N \N \N 48808 H.glauca Heliophila Heliophila glauca \N \N \N \N \N 48809 D.heterotricha Descurainia Descurainia heterotricha \N \N \N \N \N 48810 A.h423 Arthropodium Arthropodium sp. h423 \N \N \N \N \N 48811 E.otjipembana Euphorbia Euphorbia otjipembana \N \N \N \N \N 48812 A.ramosissima Aristida Aristida ramosissima \N \N \N \N \N 48813 E.grandidens Euphorbia Euphorbia grandidens \N \N \N \N \N 48814 \N subspecies Gagea bohemica subsp. bohemica \N \N \N \N \N 48815 R.brandegeei Ribes Ribes brandegeei \N \N \N \N \N 48816 \N genus Filipendula \N \N \N \N \N 48817 \N varietas Gentiana scabra var. buergeri \N \N \N \N \N 48818 S.s.n. Stachys Stachys cf. stricta Ahart s.n. \N \N \N \N \N 48819 A.ovale Arisaema Arisaema ovale \N \N \N \N \N 48820 B.709 Bulbophyllum Bulbophyllum sp. 709 \N \N \N \N \N 48821 R.lamprophyllum Rhododendron Rhododendron lamprophyllum \N \N \N \N \N 48822 E.vesicaria Eruca Eruca vesicaria \N \N \N \N \N 48823 S.spathulatum Symphyotrichum Symphyotrichum spathulatum \N \N \N \N \N 48824 P.murrayi Polyscias Polyscias murrayi \N \N \N \N \N 48825 V.glandulosa Veronica Veronica glandulosa \N \N \N \N \N 48826 P.aeneus Phyllanthus Phyllanthus aeneus \N \N \N \N \N 48827 \N genus Hookerochloa \N \N \N \N \N 48828 A.pusillus Acianthus Acianthus pusillus \N \N \N \N \N 48829 P.albozonatum Piper Piper albozonatum \N \N \N \N \N 48830 \N genus Amitostigma \N \N \N \N \N 48831 \N genus Sterculia \N \N \N \N \N 48832 \N subspecies Primula auricula subsp. tatriaca \N \N \N \N \N 48833 B.rubescens Brosimum Brosimum rubescens bloodwood,cacique,palisangre,pau-rainha \N \N \N \N 48834 P.zosteriformis Potamogeton Potamogeton zosteriformis \N \N \N \N \N 55323 S.cernua Senna Senna cernua \N \N \N \N \N 48835 N.josei Niphogeton Niphogeton josei \N \N \N \N \N 48836 P.acaulis Phoenix Phoenix acaulis \N \N \N \N \N 48837 R.papulentus Ranunculus Ranunculus papulentus \N \N \N \N \N 48838 H.asperum Heracleum Heracleum asperum \N \N \N \N \N 48839 P.laureola Petalodiscus Petalodiscus laureola \N \N \N \N \N 48840 \N varietas Downingia concolor var. brevior \N \N \N \N \N 48841 P.jeffreyi Primula Primula jeffreyi Sierrra shootingstar \N \N \N \N 48842 L.propinquus Leucopogon Leucopogon propinquus \N \N \N \N \N 48843 H.balsamifera Humiria Humiria balsamifera \N \N \N \N \N 48844 O.novoguineense Osmoxylon Osmoxylon novoguineense \N \N \N \N \N 48845 \N genus Deinandra \N \N \N \N \N 48846 S.ibityensis Streptocarpus Streptocarpus ibityensis \N \N \N \N \N 48847 \N genus Bixa \N \N \N \N \N 48848 C.pallens Calydorea Calydorea pallens \N \N \N \N \N 48849 C.pilosa Cayaponia Cayaponia pilosa \N \N \N \N \N 48850 L.temulentum Lolium Lolium temulentum \N \N \N \N \N 48851 \N genus Oyedaea \N \N \N \N \N 48852 S.arcuata Suaeda Suaeda arcuata \N \N \N \N \N 48853 P.gorodkovii Potentilla Potentilla gorodkovii \N \N \N \N \N 48854 L.involucrata Lantana Lantana involucrata \N \N \N \N \N 48855 S.elatior Stevia Stevia elatior \N \N \N \N \N 48856 P.canaliculata Protea Protea canaliculata \N \N \N \N \N 48857 \N genus Langloisia \N \N \N \N \N 48858 \N genus Chaetosciadium \N \N \N \N \N 48859 N.macrophyllum Notholirion Notholirion macrophyllum \N \N \N \N \N 48860 W.incurvata Willdenowia Willdenowia incurvata \N \N \N \N \N 48861 P.polystachyos Pycreus Pycreus polystachyos \N \N \N \N \N 48862 R.azlanii Rafflesia Rafflesia azlanii \N \N \N \N \N 48863 E.robertsonii Eucalyptus Eucalyptus robertsonii \N \N \N \N \N 48864 S.jamesii Solanum Solanum jamesii \N \N \N \N \N 48865 \N genus Elizaldia \N \N \N \N \N 48866 A.benthamii Arenaria Arenaria benthamii hilly sandwort \N \N \N \N 48867 T.sessile Trillium Trillium sessile toadshade \N \N \N \N 48868 C.standleyi Cryptocentrum Cryptocentrum standleyi \N \N \N \N \N 48869 E.umbelliformis Euphorbia Euphorbia umbelliformis \N \N \N \N \N 48870 M.italicum Melampyrum Melampyrum italicum \N \N \N \N \N 48871 C.dusenii Crossandrella Crossandrella dusenii \N \N \N \N \N 48872 N.fargesii Neocinnamomum Neocinnamomum fargesii \N \N \N \N \N 48873 T.JS5099 unclassified Taraxacum Taraxacum (sect. Tibetana/Sikimensia) sp. JS5099 \N \N \N \N \N 48874 \N varietas Turnera coerulea var. surinamensis \N \N \N \N \N 48875 L.rigida Livistona Livistona rigida \N \N \N \N \N 48876 A.derderianum Allium Allium derderianum \N \N \N \N \N 48877 G.leptolepis Glyceria Glyceria leptolepis \N \N \N \N \N 48878 S.songarica Silene Silene songarica \N \N \N \N \N 48879 C.rubra Ceratostylis Ceratostylis rubra \N \N \N \N \N 48880 B.filamentifera Barbacenia Barbacenia filamentifera \N \N \N \N \N 48881 I.mazumbaiensis Impatiens Impatiens mazumbaiensis \N \N \N \N \N 48882 A.paradoxa Allocasuarina Allocasuarina paradoxa \N \N \N \N \N 48883 \N genus Chondropyxis \N \N \N \N \N 48884 M.nicaeensis Malva Malva nicaeensis \N \N \N \N \N 48885 R.stricta Reseda Reseda stricta \N \N \N \N \N 48886 O.orientale Ormocarpum Ormocarpum orientale \N \N \N \N \N 48887 \N genus Rhodiola \N \N \N \N \N 48888 \N varietas Bauhinia macranthera var. grayana \N \N \N \N \N 48889 C.peloponnesiaca Crataegus Crataegus x peloponnesiaca \N \N \N \N \N 48890 \N subspecies Adenia heterophylla subsp. australis \N \N \N \N \N 48891 I.2773 Ixyophora Ixyophora aff. carinata Whitten 2773 \N \N \N \N \N 48892 \N subspecies Rosa stellata subsp. mirifica \N \N \N \N \N 48893 D.chrysea Duguetia Duguetia chrysea \N \N \N \N \N 48894 \N subspecies Taraxacum platycarpum subsp. platycarpum \N \N \N \N \N 48895 A.komarovii Atropa Atropa komarovii \N \N \N \N \N 48896 C.obovatum Cynanchum Cynanchum obovatum \N \N \N \N \N 48897 \N genus Cloezia \N \N \N \N \N 48898 R.pallida Rhynchospora Rhynchospora pallida \N \N \N \N \N 48899 \N varietas Ceanothus papillosus var. roweanus \N \N \N \N \N 48900 L.muelleri-ferdinandi Lepidium Lepidium muelleri-ferdinandi \N \N \N \N \N 48901 C.VA2001 Clusia Clusia sp. VA2001 \N \N \N \N \N 48902 E.dulcis Eleocharis Eleocharis dulcis Chinese water-chestnut \N \N \N \N 48903 L.quinquelocularis Lonicera Lonicera quinquelocularis \N \N \N \N \N 48904 A.pentaphyllea Alchemilla Alchemilla pentaphyllea \N \N \N \N \N 48905 T.ampliflorus Telipogon Telipogon ampliflorus \N \N \N \N \N 48906 O.aveyronensis Ophrys Ophrys aveyronensis \N \N \N \N \N 48907 P.kingii Psorothamnus Psorothamnus kingii \N \N \N \N \N 48908 \N varietas Calotis cuneata var. cuneata \N \N \N \N \N 48909 G.microcephala Genista Genista microcephala \N \N \N \N \N 48910 \N genus Sutrina \N \N \N \N \N 48911 T.martinicensis Trimezia Trimezia martinicensis \N \N \N \N \N 48912 E.ellipticum Exostema Exostema ellipticum \N \N \N \N \N 48913 A.861 Anthoxanthum Anthoxanthum sp. Forest 861 \N \N \N \N \N 48914 L.linearifolia Ledermanniella Ledermanniella linearifolia \N \N \N \N \N 48915 A.hamatipetalum Aconitum Aconitum hamatipetalum \N \N \N \N \N 48916 E.berlandieri Exhalimolobos Exhalimolobos berlandieri \N \N \N \N \N 48917 S.stenosperma Sphaeradenia Sphaeradenia stenosperma \N \N \N \N \N 48918 T.paronychioides Trichogyne Trichogyne paronychioides \N \N \N \N \N 48919 \N subspecies Teucrium scorodonia subsp. scorodonia \N \N \N \N \N 48920 D.quadrivalvis Dolichandra Dolichandra quadrivalvis \N \N \N \N \N 48921 P.rufescens Phoebe Phoebe rufescens \N \N \N \N \N 48922 T.tomentosum Trifolium Trifolium tomentosum woolly clover \N \N \N \N 48923 E.oldhamii Elaeagnus Elaeagnus oldhamii \N \N \N \N \N 48924 \N genus Ixanthus \N \N \N \N \N 48925 S.crispa Schomburgkia Schomburgkia crispa \N \N \N \N \N 48926 \N genus Desmopsis \N \N \N \N \N 48927 \N genus Caucasalia \N \N \N \N \N 48928 L.weilleri Lotus Lotus weilleri \N \N \N \N \N 48929 M.sampsonii Macaranga Macaranga sampsonii \N \N \N \N \N 48930 D.petiolaris Diplopeltis Diplopeltis petiolaris \N \N \N \N \N 56201 \N tribe Pomaderreae \N \N \N \N \N 48931 \N varietas Medicago truncatula var. truncatula \N \N \N \N \N 48932 R.sericea Rosa Rosa sericea \N \N \N \N \N 48933 T.orientale Toxicodendron Toxicodendron orientale \N \N \N \N \N 48934 T.738 Taraxacum Taraxacum sp. Sojak 738 \N \N \N \N \N 48935 \N varietas Croton morifolius var. morifolius \N \N \N \N \N 48936 A.divaricata Adenophora Adenophora divaricata \N \N \N \N \N 48937 A.stenophylla Adenophora Adenophora stenophylla \N \N \N \N \N 48938 A.micropodioides Angianthus Angianthus micropodioides \N \N \N \N \N 48939 P.montium Piper Piper montium \N \N \N \N \N 48940 L.gigantea Leucocasia Leucocasia gigantea \N \N \N \N \N 48941 E.alpina Euphrasia Euphrasia alpina \N \N \N \N \N 48942 S.jaliscensis Stevia Stevia jaliscensis \N \N \N \N \N 48943 \N genus Afrocalathea \N \N \N \N \N 48944 A.arthuri Astragalus Astragalus arthuri \N \N \N \N \N 48945 S.guianensis Siparuna Siparuna guianensis \N \N \N \N \N 48946 S.novo-guineensis Schleinitzia Schleinitzia novo-guineensis \N \N \N \N \N 48947 \N subspecies Dionysia revoluta subsp. revoluta \N \N \N \N \N 48948 V.eristalioides Vicia Vicia eristalioides \N \N \N \N \N 48949 \N varietas Symphyotrichum ericoides var. ericoides \N \N \N \N \N 48950 \N subspecies Corylus cornuta subsp. cornuta \N \N \N \N \N 48951 P.carrii Papuasicyos Papuasicyos carrii \N \N \N \N \N 48952 \N no rank Saccharum hybrid cultivar SP80-3280 \N \N \N \N \N 48953 A.stenophylla Antennaria Antennaria stenophylla \N \N \N \N \N 48954 S.gracilipes Spiloxene Spiloxene gracilipes \N \N \N \N \N 48955 V.spathulata Viola Viola spathulata \N \N \N \N \N 48956 A.bicolor Avicennia Avicennia bicolor \N \N \N \N \N 48957 I.103 Ixora Ixora sp. Poliane 103 \N \N \N \N \N 48958 V.heyneana Vitis Vitis heyneana \N \N \N \N \N 48959 \N genus Arethusa \N \N \N \N \N 48960 S.vansittartense Solanum Solanum vansittartense \N \N \N \N \N 48961 W.acuminata Waitzia Waitzia acuminata \N \N \N \N \N 48962 R.briquetii Rhodanthemum Rhodanthemum briquetii \N \N \N \N \N 48963 B.catharticus Bromus Bromus catharticus cebadilla,rescue grass,rescuegrass,triguillo \N \N \N \N 48964 M.dioica Mammillaria Mammillaria dioica \N \N \N \N \N 48965 \N genus Hylaeanthe \N \N \N \N \N 48966 V.capensis Vahlia Vahlia capensis \N \N \N \N \N 48967 \N genus Fergania \N \N \N \N \N 48968 C.hirsuta Cardamine Cardamine hirsuta hairy bittercress \N \N \N \N 48969 A.nitida Andira Andira nitida \N \N \N \N \N 48970 D.leucophaeus Dianthus Dianthus leucophaeus \N \N \N \N \N 48971 \N genus Vallaris \N \N \N \N \N 48972 \N genus Alchemilla \N \N \N \N \N 48973 G.baniensis Gahnia Gahnia baniensis \N \N \N \N \N 48974 A.chinensis Atractylodes Atractylodes chinensis \N \N \N \N \N 48975 C.cruciata Carex Carex cruciata \N \N \N \N \N 48976 E.esculenta Echinochloa Echinochloa esculenta Japanese barnyard millet \N \N \N \N 48977 S.tierneyanum Syzygium Syzygium tierneyanum \N \N \N \N \N 48978 R.viscosa Robinia Robinia viscosa clammy locust \N \N \N \N 48979 P.stricta Primula Primula stricta \N \N \N \N \N 48980 S.falciferoides Shorea Shorea falciferoides \N \N \N \N \N 48981 \N no rank Saccharum hybrid cultivar H32-8560 \N \N \N \N \N 48982 S.whalenii Solanum Solanum whalenii \N \N \N \N \N 48983 D.harveyana Disa Disa harveyana \N \N \N \N \N 48984 S.schliebenii Sphyrarhynchus Sphyrarhynchus schliebenii \N \N \N \N \N 48985 P.paniculata Phylica Phylica paniculata \N \N \N \N \N 48986 K.baurii Kniphofia Kniphofia baurii \N \N \N \N \N 48987 I.stenophylla Indigofera Indigofera stenophylla \N \N \N \N \N 48988 \N varietas Correa alba var. pannosa \N \N \N \N \N 48989 S.lanceolata Sacoila Sacoila lanceolata \N \N \N \N \N 48990 P.corymbosa Pheidonocarpa Pheidonocarpa corymbosa \N \N \N \N \N 48991 S.SA166 Sonneratia Sonneratia sp. Shi SA166 \N \N \N \N \N 48992 N.serratisepala Neillia Neillia serratisepala \N \N \N \N \N 48993 B.vacciniifolia Byrsonima Byrsonima vacciniifolia \N \N \N \N \N 48994 T.sutchuenensis Taxillus Taxillus sutchuenensis \N \N \N \N \N 48995 \N genus Antiaris \N \N \N \N \N 48996 R.bengalensis Rinorea Rinorea bengalensis \N \N \N \N \N 59748 \N genus Dimeria \N \N \N \N \N 48997 M.charantia Momordica Momordica charantia balsam pear,bitter gourd,bitter melon \N \N \N \N 48998 A.vestita Austrocylindropuntia Austrocylindropuntia vestita \N \N \N \N \N 48999 \N subspecies Nigella degenii subsp. jenny \N \N \N \N \N 49000 S.galphimiifolius Sphedamnocarpus Sphedamnocarpus galphimiifolius \N \N \N \N \N 49001 \N genus Bambusa bamboos \N \N \N \N 49002 A.decus-silvae Amorphophallus Amorphophallus decus-silvae \N \N \N \N \N 49003 \N subspecies Ononis cristata subsp. cristata \N \N \N \N \N 49004 A.alpinum Anthoxanthum Anthoxanthum alpinum \N \N \N \N \N 49005 A.igniaria Ancathia Ancathia igniaria \N \N \N \N \N 49006 B.squarrosus Bromus Bromus squarrosus corn brome \N \N \N \N 49007 A.regina Alcantarea Alcantarea regina \N \N \N \N \N 49008 D.brevifolia Deuterocohnia Deuterocohnia brevifolia \N \N \N \N \N 49009 L.morongii Lycium Lycium morongii \N \N \N \N \N 49010 G.kurtzii Grahamia Grahamia kurtzii \N \N \N \N \N 49011 C.bretschneideri Cornus Cornus bretschneideri \N \N \N \N \N 49012 C.monacantha Cornulaca Cornulaca monacantha \N \N \N \N \N 49013 \N no rank Artemisia vulgaris (type 1) \N \N \N \N \N 49014 J.articulatus Juncus Juncus articulatus jointleaf rush \N \N \N \N 49015 T.glaziovii Thrasya Thrasya glaziovii \N \N \N \N \N 49016 C.451 Croton Croton cf. lundellii van Ee 451 \N \N \N \N \N 49017 P.sieberianum Pennisetum Pennisetum sieberianum \N \N \N \N \N 49018 \N varietas Gaultheria leucocarpa var. leucocarpa \N \N \N \N \N 49019 R.seyrigii Rytigynia Rytigynia seyrigii \N \N \N \N \N 49020 M.salazarii Mariosousa Mariosousa salazarii \N \N \N \N \N 49021 A.koelzii Allium Allium koelzii \N \N \N \N \N 49022 S.erosa Spermacoce Spermacoce erosa \N \N \N \N \N 49023 O.suprabasalis Ossaea Ossaea suprabasalis \N \N \N \N \N 49024 K.littledalei Kobresia Kobresia littledalei \N \N \N \N \N 49025 O.JTM-2009a Oligochaetochilus Oligochaetochilus sp. JTM-2009a \N \N \N \N \N 49026 J.lindbergii Jobinia Jobinia lindbergii \N \N \N \N \N 49027 A.vestita Acronychia Acronychia vestita lemon aspen \N \N \N \N 49028 E.semicostatus Elymus Elymus semicostatus \N \N \N \N \N 49029 P.darialica Primula Primula darialica \N \N \N \N \N 49030 D.DraB34 Draba Draba sp. DraB34 \N \N \N \N \N 49031 E.tegulifolia Erica Erica tegulifolia \N \N \N \N \N 49032 P.brevifolia Pomaderris Pomaderris brevifolia \N \N \N \N \N 49033 C.verapazensis Croton Croton verapazensis \N \N \N \N \N 49034 D.ditassoides Ditassa Ditassa ditassoides \N \N \N \N \N 49035 \N genus Trochodendron \N \N \N \N \N 49036 T.lydgatei Tetraplasandra Tetraplasandra lydgatei \N \N \N \N \N 49037 \N genus Catanthera \N \N \N \N \N 49038 E.lancifolium Eupatorium Eupatorium album x Eupatorium lancifolium \N \N \N \N \N 49039 A.adscensionis Aristida Aristida adscensionis \N \N \N \N \N 49040 \N varietas Mimosa dryandroides var. extratropica \N \N \N \N \N 49041 C.martiana Conceveiba Conceveiba martiana \N \N \N \N \N 49042 N.cordata Nymphoides Nymphoides cordata \N \N \N \N \N 49043 C.festucacea Carex Carex festucacea \N \N \N \N \N 49044 D.chestertonii Dracula Dracula chestertonii \N \N \N \N \N 49045 A.kingdon-wardii Aralia Aralia kingdon-wardii \N \N \N \N \N 49046 C.SL-10 unclassified Citrus cybrid citrus SL-10 \N \N \N \N \N 49047 M.aculeata Moutabea Moutabea aculeata \N \N \N \N \N 49048 D.bishopii Dimerostemma Dimerostemma bishopii \N \N \N \N \N 49049 O.bernierianum Ormocarpum Ormocarpum bernierianum \N \N \N \N \N 49050 V.oxycoccos Vaccinium Vaccinium oxycoccos European cranberry,mossberry \N \N \N \N 49051 \N genus Stenosepala \N \N \N \N \N 49052 S.argentata Stelis Stelis argentata \N \N \N \N \N 49053 T.hookeri Trachymene Trachymene hookeri \N \N \N \N \N 49054 G.aesculifolia Godmania Godmania aesculifolia \N \N \N \N \N 49055 R.alpinus Rubus Rubus alpinus \N \N \N \N \N 49056 \N genus Adenolisianthus \N \N \N \N \N 49057 \N varietas Allium ampeloprasum var. holmense \N \N \N \N \N 49058 A.bianorii Aristolochia Aristolochia bianorii \N \N \N \N \N 49059 H.obovata Haya Haya obovata \N \N \N \N \N 49060 S.s.n. Sparrmannia Sparrmannia sp. Winter s.n. \N \N \N \N \N 49061 R.fumana Rinzia Rinzia fumana \N \N \N \N \N 49062 \N genus Paradrymonia \N \N \N \N \N 49063 A.guayaquilensis Acanthocladus Acanthocladus guayaquilensis \N \N \N \N \N 49064 P.bissei Pinguicula Pinguicula bissei \N \N \N \N \N 49065 L.cuneifolius Leucopogon Leucopogon cuneifolius \N \N \N \N \N 49066 S.membranacea Sebaea Sebaea membranacea \N \N \N \N \N 49067 G.begaudii Gunnarella Gunnarella begaudii \N \N \N \N \N 49068 \N varietas Chorizanthe brevicornu var. brevicornu \N \N \N \N \N 49069 P.amazonicum Protium Protium amazonicum \N \N \N \N \N 49070 D.sagittalis Disa Disa sagittalis \N \N \N \N \N 49071 \N subspecies Alyssum montanum subsp. gmelinii \N \N \N \N \N 49072 B.umbellata Berberis Berberis umbellata \N \N \N \N \N 49073 \N genus Pseudoraphis \N \N \N \N \N 49074 \N genus Commicarpus \N \N \N \N \N 49075 T.aphanoneurum Trachystoma Trachystoma aphanoneurum \N \N \N \N \N 49076 L.canbyi Lomatium Lomatium canbyi \N \N \N \N \N 49077 P.bithynica Pfosseria Pfosseria bithynica \N \N \N \N \N 49078 P.abyssinicum Pentarrhinum Pentarrhinum abyssinicum \N \N \N \N \N 49079 C.yezoensis Cardamine Cardamine yezoensis \N \N \N \N \N 49080 \N varietas Cleome oxyphylla var. oxyphylla \N \N \N \N \N 49081 O.pauciflora Otiophora Otiophora pauciflora \N \N \N \N \N 49082 C.axillaris Clusiella Clusiella axillaris \N \N \N \N \N 49083 B.alpinum Bunium Bunium alpinum \N \N \N \N \N 49084 Y.austro-orientalis Yua Yua austro-orientalis \N \N \N \N \N 49085 \N subspecies Carlina acanthifolia subsp. cynara \N \N \N \N \N 49086 P.sinomontanum Polygonum Polygonum sinomontanum \N \N \N \N \N 49087 R.speciosa Ruellia Ruellia speciosa \N \N \N \N \N 49088 B.buonopozense Bombax Bombax buonopozense Gold Coast bombax \N \N \N \N 49089 \N varietas Leymus secalinus var. qinghaicus \N \N \N \N \N 49090 P.hirtzii Pepinia Pepinia hirtzii \N \N \N \N \N 49091 \N subspecies Salix myrsinifolia subsp. kolaensis \N \N \N \N \N 59845 \N genus Cottonia \N \N \N \N \N 49092 T.tortilis Trachyandra Trachyandra tortilis \N \N \N \N \N 49093 C.arvensis Calendula Calendula arvensis field marigold \N \N \N \N 49094 U.micranthus Ulex Ulex micranthus \N \N \N \N \N 49095 C.bakeri Crepis Crepis bakeri \N \N \N \N \N 49096 P.leptospermoides Pimelea Pimelea leptospermoides \N \N \N \N \N 49097 S.ram Sapria Sapria ram \N \N \N \N \N 49098 T.diuretica Tripogandra Tripogandra diuretica \N \N \N \N \N 49099 C.antarctica Chionochloa Chionochloa antarctica \N \N \N \N \N 49100 A.adoensis Aristida Aristida adoensis \N \N \N \N \N 49101 G.iaspicula Grevillea Grevillea iaspicula \N \N \N \N \N 49102 C.heterandra Clarkia Clarkia heterandra \N \N \N \N \N 49103 O.sphegifera Ophrys Ophrys sphegifera \N \N \N \N \N 49104 U.multifida Utricularia Utricularia multifida \N \N \N \N \N 49105 A.adauctum Argyranthemum Argyranthemum adauctum \N \N \N \N \N 49106 G.macrodon Grammosciadium Grammosciadium macrodon \N \N \N \N \N 49107 V.sieboldiana Viola Viola sieboldiana \N \N \N \N \N 49108 H.furcellatus Hibiscus Hibiscus furcellatus lindenleaf rosemallow \N \N \N \N 49109 I.confusa Impatiens Impatiens confusa \N \N \N \N \N 49110 V.bashanica Vitis Vitis bashanica \N \N \N \N \N 49111 \N genus Picrodendron \N \N \N \N \N 49112 P.novae-hollandiae Paractaenum Paractaenum novae-hollandiae \N \N \N \N \N 49113 B.riedelianum Balfourodendron Balfourodendron riedelianum \N \N \N \N \N 49114 \N genus Corrigiola \N \N \N \N \N 49115 R.subinopertus Rubus Rubus subinopertus \N \N \N \N \N 49116 A.hastifolium Athroisma Athroisma hastifolium \N \N \N \N \N 49117 D.integrifolia Dryas Dryas integrifolia \N \N \N \N \N 49118 A.brevipes Alantsilodendron Alantsilodendron brevipes \N \N \N \N \N 49119 \N subspecies Gyrocarpus americanus subsp. americanus \N \N \N \N \N 49120 A.propinquum Amomum Amomum propinquum \N \N \N \N \N 49121 \N varietas Griselinia ruscifolia var. ruscifolia \N \N \N \N \N 49122 A.MG-2009 Allium Allium aff. koelzii MG-2009 \N \N \N \N \N 49124 G.dolichocarpa Glycine Glycine dolichocarpa \N \N \N \N \N 49125 \N genus Worsleya \N \N \N \N \N 49126 W.chinensis Wedelia Wedelia chinensis \N \N \N \N \N 49127 \N genus Schizoglossum \N \N \N \N \N 49128 S.chaseae Simsia Simsia chaseae \N \N \N \N \N 49129 E.cernua Erica Erica cernua \N \N \N \N \N 49130 L.onubensis Linaria Linaria onubensis \N \N \N \N \N 49131 F.watkinsiana Ficus Ficus watkinsiana \N \N \N \N \N 49132 P.major Persea Persea major \N \N \N \N \N 49133 S.macrocarpa Syagrus Syagrus macrocarpa \N \N \N \N \N 49134 P.villosum Piper Piper villosum \N \N \N \N \N 49135 E.macrocalyx Eryngium Eryngium macrocalyx \N \N \N \N \N 49136 R.hookeri Raoulia Raoulia hookeri \N \N \N \N \N 49137 H.mutabilis Hibiscus Hibiscus mutabilis cotton-rose,fuyo \N \N \N \N 49138 E.labialis Erica Erica labialis \N \N \N \N \N 49139 B.vaneedenii Bouteloua Bouteloua vaneedenii \N \N \N \N \N 49140 C.ornithopodioides Cleome Cleome ornithopodioides \N \N \N \N \N 49141 N.supina Nepeta Nepeta supina \N \N \N \N \N 49142 R.thurifera Robinsonia Robinsonia thurifera \N \N \N \N \N 49143 O.fusca Ophrys Ophrys fusca \N \N \N \N \N 49144 S.pruinosus Stenocereus Stenocereus pruinosus \N \N \N \N \N 49145 P.rowleei Pleurothallis Pleurothallis rowleei \N \N \N \N \N 49146 M.sherardiana Malvella Malvella sherardiana \N \N \N \N \N 49147 \N genus Leucomeris \N \N \N \N \N 49148 P.nummulariifolius Phyllanthus Phyllanthus nummulariifolius \N \N \N \N \N 49149 O.10893 Oligochaetochilus Oligochaetochilus sp. MAC 10893 \N \N \N \N \N 49150 P.4' Persea Persea sp. 'Freddy 4' \N \N \N \N \N 49151 C.aculeata Cullumia Cullumia aculeata \N \N \N \N \N 49152 C.burchellii Calopsis Calopsis burchellii \N \N \N \N \N 49153 P.hendersonii Petrophytum Petrophytum hendersonii \N \N \N \N \N 49154 L.holsaticum Lamium Lamium x holsaticum \N \N \N \N \N 49155 E.walkeri Exacum Exacum walkeri \N \N \N \N \N 49156 \N genus Aniseia \N \N \N \N \N 49157 P.1357 Polyscias Polyscias cf. guilfoylei Plunkett 1357 \N \N \N \N \N 49158 F.ovata Ficus Ficus ovata \N \N \N \N \N 49159 E.muricata Eurya Eurya muricata \N \N \N \N \N 49160 S.serrata Stevia Stevia serrata sawtooth candyleaf \N \N \N \N 49161 P.delavayi Pternopetalum Pternopetalum delavayi \N \N \N \N \N 49162 W.humilis Wiborgia Wiborgia humilis \N \N \N \N \N 49163 P.sphaerantha Pedicularis Pedicularis sphaerantha \N \N \N \N \N 49164 C.inermis Castanopsis Castanopsis inermis \N \N \N \N \N 49165 C.riceanus Corytoplectus Corytoplectus riceanus \N \N \N \N \N 49166 D.leonis Dendrobium Dendrobium leonis \N \N \N \N \N 49167 E.hamata Euphorbia Euphorbia hamata \N \N \N \N \N 49168 A.laxum Aichryson Aichryson laxum \N \N \N \N \N 49169 R.verticillatum Rhynchospermum Rhynchospermum verticillatum \N \N \N \N \N 49170 \N family Violaceae violet family \N \N \N \N 49171 V.caroliniana Vicia Vicia caroliniana Carolina vetch,pale vetch,wood vetch \N \N \N \N 49172 H.erecta Haloragis Haloragis erecta \N \N \N \N \N 49173 L.GAR-021018-01 Ledermanniella Ledermanniella cf. bosii GAR-021018-01 \N \N \N \N \N 49174 C.caroliniana Claytonia Claytonia caroliniana \N \N \N \N \N 49175 A.floribunda Alchorneopsis Alchorneopsis floribunda \N \N \N \N \N 49176 S.lancifolia Shibataea Shibataea lancifolia \N \N \N \N \N 49177 S.angustifolia Sphaeralcea Sphaeralcea angustifolia copper globemallow \N \N \N \N 49178 A.cochlearis Acacia Acacia cochlearis \N \N \N \N \N 49179 B.notabilis Besleria Besleria notabilis \N \N \N \N \N 49180 E.macropus Euphorbia Euphorbia macropus \N \N \N \N \N 49181 I.angustisepalum Illicium Illicium angustisepalum \N \N \N \N \N 49182 \N genus Hetaeria \N \N \N \N \N 49183 A.swellendamense Anginon Anginon swellendamense \N \N \N \N \N 49184 H.jamesii Hilaria Hilaria jamesii \N \N \N \N \N 49185 G.diversifolia Girardinia Girardinia diversifolia \N \N \N \N \N 49186 D.peguanum Dendrobium Dendrobium peguanum \N \N \N \N \N 49187 S.simulans Stemmadenia Stemmadenia simulans \N \N \N \N \N 49188 P.sagasteguii Piptochaetium Piptochaetium sagasteguii \N \N \N \N \N 49189 A.acunae Antillanthus Antillanthus acunae \N \N \N \N \N 49190 C.podantha Cayaponia Cayaponia podantha \N \N \N \N \N 49191 M.rugosa Mandevilla Mandevilla rugosa \N \N \N \N \N 49192 G.quasitenuifolia Gagea Gagea quasitenuifolia \N \N \N \N \N 49193 P.guillauminii Phyllanthus Phyllanthus guillauminii \N \N \N \N \N 49194 L.verbascifolia Lachnostachys Lachnostachys verbascifolia \N \N \N \N \N 49195 \N genus Merwilla \N \N \N \N \N 49196 S.albiflora Stilbe Stilbe albiflora \N \N \N \N \N 49197 G.poeppigii Geogenanthus Geogenanthus poeppigii \N \N \N \N \N 49198 G.clavata Grusonia Grusonia clavata club cholla \N \N \N \N 49199 V.trichadena Veronica Veronica trichadena \N \N \N \N \N 49200 \N genus Vatairea \N \N \N \N \N 49201 \N genus Turbinicarpus \N \N \N \N \N 49202 C.spissa Coccothrinax Coccothrinax spissa \N \N \N \N \N 49203 O.buchholzii Oxystigma Oxystigma buchholzii \N \N \N \N \N 49204 \N genus Sporadanthus \N \N \N \N \N 49205 G.longituba Glechoma Glechoma longituba \N \N \N \N \N 49206 E.namaquensis Eragrostis Eragrostis namaquensis \N \N \N \N \N 49207 V.exaltata Villarsia Villarsia exaltata \N \N \N \N \N 49208 C.argyrantha Carex Carex argyrantha \N \N \N \N \N 49209 T.pyramidatum Tanaecium Tanaecium pyramidatum \N \N \N \N \N 49210 L.1391 Loasa Loasa cf. insons 1391 \N \N \N \N \N 49211 H.delicatula Heterospathe Heterospathe delicatula \N \N \N \N \N 49212 \N genus Styrax \N \N \N \N \N 49213 E.speciosissimus Euryops Euryops speciosissimus \N \N \N \N \N 49214 \N genus Styloceras \N \N \N \N \N 49215 P.auriculata Pinanga Pinanga auriculata \N \N \N \N \N 49216 S.laurina Symplocos Symplocos laurina \N \N \N \N \N 49217 P.tardans Piper Piper tardans \N \N \N \N \N 49218 M.californica Minuartia Minuartia californica \N \N \N \N \N 49219 C.angustissima Coriaria Coriaria angustissima \N \N \N \N \N 49220 \N subspecies Helictotrichon bromoides subsp. bromoides \N \N \N \N \N 57262 \N genus Sullivantia \N \N \N \N \N 49221 R.asperum Rhytidophyllum Rhytidophyllum asperum \N \N \N \N \N 49222 P.cronquistii Paris Paris cronquistii \N \N \N \N \N 49223 S.guttata Sinningia Sinningia guttata \N \N \N \N \N 49224 M.amaluzae Masdevallia Masdevallia amaluzae \N \N \N \N \N 49225 S.andersonii Silene Silene andersonii \N \N \N \N \N 49226 B.caudata Benzingia Benzingia caudata \N \N \N \N \N 49227 \N subspecies Ipomopsis aggregata subsp. bridgesii \N \N \N \N \N 49228 \N genus Borodinia \N \N \N \N \N 49229 M.loubseri Moraea Moraea loubseri \N \N \N \N \N 49230 G.spenceri Gentianella Gentianella spenceri \N \N \N \N \N 49231 T.smithii Taeniophyllum Taeniophyllum smithii \N \N \N \N \N 49232 \N genus Nama \N \N \N \N \N 49233 D.inaequiglumis Dichelachne Dichelachne inaequiglumis \N \N \N \N \N 49234 C.multijugum Cicer Cicer multijugum \N \N \N \N \N 49235 S.SP826 Sisyrinchium Sisyrinchium aff. graminifolium SP826 \N \N \N \N \N 49236 \N genus Glandora \N \N \N \N \N 49237 M.microsperma Muhlenbergia Muhlenbergia microsperma \N \N \N \N \N 49238 A.lyratum Adenocaulon Adenocaulon lyratum \N \N \N \N \N 49239 P.arenicola Phylloxylon Phylloxylon arenicola \N \N \N \N \N 49240 P.canescens Pomaria Pomaria canescens \N \N \N \N \N 49241 P.alnifolia Passiflora Passiflora alnifolia \N \N \N \N \N 49242 M.macrochlamys Mapouria Mapouria macrochlamys \N \N \N \N \N 49243 S.dressleri Sanblasia Sanblasia dressleri \N \N \N \N \N 49244 S.4971 Schefflera Schefflera aff. robusta Monro 4971 \N \N \N \N \N 49245 I.argentea Indigofera Indigofera argentea \N \N \N \N \N 49246 A.denticulata Aeschynomene Aeschynomene denticulata \N \N \N \N \N 49247 T.duchartrei Thottea Thottea duchartrei \N \N \N \N \N 49248 P.drummondii Pimelea Pimelea drummondii \N \N \N \N \N 49249 S.fruticosa Sanvitalia Sanvitalia fruticosa \N \N \N \N \N 49250 C.occidentalis Coptis Coptis occidentalis \N \N \N \N \N 49251 P.5262 Pravinaria Pravinaria cf. endertii Sands 5262 \N \N \N \N \N 49252 A.werdermannii Alstroemeria Alstroemeria werdermannii \N \N \N \N \N 49253 C.furta Caralluma Caralluma furta \N \N \N \N \N 49254 G.syndetika Glycine Glycine syndetika \N \N \N \N \N 49255 M.alba Maxillaria Maxillaria alba \N \N \N \N \N 49256 C.platypetala Corylopsis Corylopsis platypetala \N \N \N \N \N 49257 \N genus Macropeplus \N \N \N \N \N 49258 \N genus Coccothrinax \N \N \N \N \N 49259 H.bordelonianum Hedychium Hedychium bordelonianum \N \N \N \N \N 49260 G.celebica Garcinia Garcinia celebica \N \N \N \N \N 49261 P.longistylis Perrottetia Perrottetia longistylis \N \N \N \N \N 49262 S.halmaturinum Spyridium Spyridium halmaturinum \N \N \N \N \N 49263 D.humifusa Dodonaea Dodonaea humifusa \N \N \N \N \N 49264 E.elegans Eryngium Eryngium elegans \N \N \N \N \N 49265 D.villosa Desmoscelis Desmoscelis villosa \N \N \N \N \N 49266 \N genus Hesperidanthus \N \N \N \N \N 49267 C.campaniensis Coffea Coffea campaniensis \N \N \N \N \N 49268 E.spathacea Elegia Elegia spathacea \N \N \N \N \N 49269 R.simensis Ranunculus Ranunculus simensis \N \N \N \N \N 49270 P.diospyricarpa Pyrenaria Pyrenaria diospyricarpa \N \N \N \N \N 49271 \N varietas Lupinus lepidus var. aridus \N \N \N \N \N 49272 A.edulis Arracacia Arracacia edulis \N \N \N \N \N 49273 \N genus Sciadotenia \N \N \N \N \N 49274 P.brachyphylla Pultenaea Pultenaea brachyphylla \N \N \N \N \N 49275 P.stellatus Ptilostemon Ptilostemon stellatus \N \N \N \N \N 49276 \N genus Sonderina \N \N \N \N \N 49277 P.macroloba Pentaclethra Pentaclethra macroloba \N \N \N \N \N 49278 A.fischeri Alchemilla Alchemilla fischeri \N \N \N \N \N 49279 O.intermedius Ophiopogon Ophiopogon intermedius \N \N \N \N \N 49280 P.multisepala Parapyrenaria Parapyrenaria multisepala \N \N \N \N \N 49281 A.neglectus Astephanus Astephanus neglectus \N \N \N \N \N 49282 J.effusus Juncus Juncus effusus common rush \N \N \N \N 49283 S.Ar134 Schismatoglottis Schismatoglottis sp. Ar134 \N \N \N \N \N 49284 L.ferruginea Litsea Litsea ferruginea \N \N \N \N \N 49285 M.poeppigii Maieta Maieta poeppigii \N \N \N \N \N 49286 P.liga Phoradendron Phoradendron liga Argentine mistletoe \N \N \N \N 49287 P.pohlii Passiflora Passiflora pohlii \N \N \N \N \N 49288 S.canadensis Sanicula Sanicula canadensis Canadian blacksnakeroot \N \N \N \N 49289 A.johnsonii Androstachys Androstachys johnsonii \N \N \N \N \N 49290 C.crapnelliana Camellia Camellia crapnelliana \N \N \N \N \N 49291 P.truncata Passiflora Passiflora truncata \N \N \N \N \N 49292 G.acanthocarpus Gonocarpus Gonocarpus acanthocarpus \N \N \N \N \N 49293 D.purpureopictus Didymocarpus Didymocarpus purpureopictus \N \N \N \N \N 49294 C.redingii Calochone Calochone redingii \N \N \N \N \N 49295 P.forrestiana Pimelea Pimelea forrestiana \N \N \N \N \N 49296 C.microcephala Calathea Calathea microcephala \N \N \N \N \N 49297 R.micranthus Ranunculus Ranunculus micranthus rock buttercup \N \N \N \N 49298 C.macrophyllum Cenostigma Cenostigma macrophyllum \N \N \N \N \N 49299 B.tubiflora Babiana Babiana tubiflora \N \N \N \N \N 49300 \N genus Poecilostachys \N \N \N \N \N 49301 C.sibirica Claytonia Claytonia sibirica \N \N \N \N \N 49302 S.bolivianum Solanum Solanum bolivianum \N \N \N \N \N 49303 M.gualaquizensis Maxillaria Maxillaria gualaquizensis \N \N \N \N \N 49304 A.microbotrya Acacia Acacia microbotrya \N \N \N \N \N 49305 R.nelsonii Randia Randia nelsonii \N \N \N \N \N 49306 S.taraxacifolia Saussurea Saussurea taraxacifolia \N \N \N \N \N 49307 \N genus Hymenocallis \N \N \N \N \N 49308 L.kingii Litsea Litsea kingii \N \N \N \N \N 49309 O.melanocarpum Orbexilum Orbexilum melanocarpum \N \N \N \N \N 49310 C.chloodes Centaurium Centaurium chloodes \N \N \N \N \N 49311 C.RBN154.2 Combretum Combretum cf. mkuzense RBN154.2 \N \N \N \N \N 49312 M.spicata Muraltia Muraltia spicata \N \N \N \N \N 49313 P.kitaibeliana Primula Primula kitaibeliana \N \N \N \N \N 49314 S.2301 Stachyphrynium Stachyphrynium sp. Poulsen 2301 \N \N \N \N \N 49315 \N subtribe Traginae \N \N \N \N \N 49316 P.foliosa Pedicularis Pedicularis foliosa \N \N \N \N \N 49317 D.glandulosa Dodonaea Dodonaea glandulosa \N \N \N \N \N 49318 S.lacera Silene Silene lacera \N \N \N \N \N 49319 P.dindondl Papuacalia Papuacalia dindondl \N \N \N \N \N 49320 \N genus Rhombochlamys \N \N \N \N \N 49321 L.ZAF-2504 Ledebouria Ledebouria sp. ZAF-2504 \N \N \N \N \N 49322 M.racemosa Miconia Miconia racemosa \N \N \N \N \N 49323 D.eriopila Duroia Duroia eriopila \N \N \N \N \N 49324 \N subspecies Phlox pilosa subsp. fulgida \N \N \N \N \N 49325 G.renwickiana Grevillea Grevillea renwickiana \N \N \N \N \N 49326 P.xerophilus Plectranthus Plectranthus xerophilus \N \N \N \N \N 49327 \N subspecies Crocus gargaricus subsp. gargaricus \N \N \N \N \N 49328 \N subspecies Leptecophylla juniperina subsp. oxycedrus \N \N \N \N \N 49329 T.sS5723 unclassified Taraxacum Taraxacum (sect. Alpestria/Ruderalia) sp. sS5723 \N \N \N \N \N 49330 \N genus Urginea \N \N \N \N \N 49331 E.chiloensis Echinopsis Echinopsis chiloensis \N \N \N \N \N 49332 R.hoelleri Rhipsalis Rhipsalis hoelleri \N \N \N \N \N 49333 \N genus Harperocallis \N \N \N \N \N 49334 E.areolatum Erythroxylum Erythroxylum areolatum \N \N \N \N \N 49335 C.douglasii Cicuta Cicuta douglasii \N \N \N \N \N 49336 C.floccosa Chaetanthera Chaetanthera floccosa \N \N \N \N \N 49337 C.glaucum Crinum Crinum glaucum \N \N \N \N \N 49338 X.truncata Xylothamia Xylothamia truncata \N \N \N \N \N 49339 A.caricinus Astragalus Astragalus caricinus \N \N \N \N \N 49340 L.microcephala Lipocarpha Lipocarpha microcephala \N \N \N \N \N 49341 P.stachyodes Prescottia Prescottia stachyodes \N \N \N \N \N 49342 \N no rank Hordeum bulbosum subsp. nodosum \N \N \N \N \N 49343 \N subspecies Erica perspicua subsp. perspicua \N \N \N \N \N 49344 N.eustachya Nepenthes Nepenthes eustachya \N \N \N \N \N 49345 B.lyciacea Bourreria Bourreria lyciacea \N \N \N \N \N 49346 L.duciformis Ligularia Ligularia duciformis \N \N \N \N \N 49347 S.vaccinioides Solanum Solanum vaccinioides \N \N \N \N \N 49348 \N genus Vlokia \N \N \N \N \N 49349 B.3366 Brunellia Brunellia sp. Lewis 3366 \N \N \N \N \N 49350 G.ekmanii Gesneria Gesneria ekmanii \N \N \N \N \N 49351 Q.virgiliana Quercus Quercus virgiliana \N \N \N \N \N 49352 \N genus Gelidocalamus \N \N \N \N \N 49353 S.obassia Styrax Styrax obassia \N \N \N \N \N 49354 L.dubia Lindernia Lindernia dubia yellowseed false pimpernel \N \N \N \N 49355 \N genus Eulophia \N \N \N \N \N 49356 C.IP-2011 Cleisocentron Cleisocentron sp. IP-2011 \N \N \N \N \N 49357 V.montana Valeriana Valeriana montana \N \N \N \N \N 49358 C.mairei Cordia Cordia mairei \N \N \N \N \N 49359 P.globulariifolium Phyteuma Phyteuma globulariifolium \N \N \N \N \N 49360 E.lactiflua Euphorbia Euphorbia lactiflua \N \N \N \N \N 49361 \N genus Cenolophium \N \N \N \N \N 49362 \N genus Tococa \N \N \N \N \N 49363 \N genus Eremosyne \N \N \N \N \N 49364 \N genus Mildbraedia \N \N \N \N \N 49365 P.chuarense Piper Piper chuarense \N \N \N \N \N 49366 S.japonica Scopolia Scopolia japonica \N \N \N \N \N 49367 W.mackenzii Walleria Walleria mackenzii \N \N \N \N \N 49368 P.jacquinianum Podospermum Podospermum jacquinianum \N \N \N \N \N 49369 \N genus Phyllarthron \N \N \N \N \N 49370 B.fallowiana Buddleja Buddleja fallowiana \N \N \N \N \N 49371 F.bellidioides Felicia Felicia bellidioides \N \N \N \N \N 49372 A.holmgreniorum Astragalus Astragalus holmgreniorum \N \N \N \N \N 49373 \N genus Normandia \N \N \N \N \N 49374 A.grandiflora Adenophora Adenophora grandiflora \N \N \N \N \N 49375 C.annamensis Cyathocalyx Cyathocalyx annamensis \N \N \N \N \N 49376 A.atlantica Avena Avena atlantica \N \N \N \N \N 49377 T.ovatum Trichostema Trichostema ovatum San Joaquin bluecurls \N \N \N \N 49378 S.acanthocarpum Sterigmostemum Sterigmostemum acanthocarpum \N \N \N \N \N 49379 C.palmeri Calochortus Calochortus palmeri \N \N \N \N \N 49380 \N genus Pygmaeocereus \N \N \N \N \N 49381 L.pseudokunstleri Lithocarpus Lithocarpus pseudokunstleri \N \N \N \N \N 49382 \N tribe Merremieae \N \N \N \N \N 49383 A.protensum Allium Allium protensum \N \N \N \N \N 49384 P.incrassata Pabellonia Pabellonia incrassata \N \N \N \N \N 49385 T.truncata Trichosanthes Trichosanthes truncata \N \N \N \N \N 49386 \N varietas Ceanothus fendleri var. venosus \N \N \N \N \N 49387 A.saxatile Aethionema Aethionema saxatile \N \N \N \N \N 49388 V.schimperi Vigna Vigna schimperi \N \N \N \N \N 49389 N.BCI036152 Nectandra Nectandra sp. BCI036152 \N \N \N \N \N 49390 B.diandrus Bromus Bromus diandrus ripgut brome \N \N \N \N 49391 \N genus Carrichtera \N \N \N \N \N 49392 W.neglecta Wolffia Wolffia neglecta \N \N \N \N \N 49393 \N varietas Pediomelum latestipulatum var. appressum \N \N \N \N \N 49394 \N genus Leonotis \N \N \N \N \N 49395 \N subspecies Achillea millefolium subsp. sudetica \N \N \N \N \N 49396 S.aculeatissimum Solanum Solanum aculeatissimum Dutch eggplant \N \N \N \N 49397 P.hopeiensis Pyrus Pyrus hopeiensis \N \N \N \N \N 49398 A.billardierei Atriplex Atriplex billardierei \N \N \N \N \N 49399 G.subincana Glandularia Glandularia subincana \N \N \N \N \N 49400 P.mitiaroana Pritchardia Pritchardia mitiaroana \N \N \N \N \N 49401 \N subspecies Ranunculus acris subsp. pumilus \N \N \N \N \N 49402 L.pseudotasmanicum Lepidium Lepidium pseudotasmanicum \N \N \N \N \N 49403 L.radicans Lepturus Lepturus radicans \N \N \N \N \N 49404 T.bursifolia Transberingia Transberingia bursifolia \N \N \N \N \N 49405 \N varietas Eriogonum corymbosum var. nilesii \N \N \N \N \N 49406 \N subspecies Hippophae rhamnoides subsp. gyantsensis \N \N \N \N \N 49407 \N varietas Trachelospermum gracilipes var. liukiuense \N \N \N \N \N 49408 D.michuacanus Dichromanthus Dichromanthus michuacanus \N \N \N \N \N 49409 A.amurensis Anemone Anemone amurensis \N \N \N \N \N 49410 F.angustielliptica Fenerivia Fenerivia angustielliptica \N \N \N \N \N 49411 K.longifolia Kalanchoe Kalanchoe longifolia \N \N \N \N \N 49412 I.rivularis Iliamna Iliamna rivularis \N \N \N \N \N 49413 I.psittacorum Inga Inga psittacorum \N \N \N \N \N 49414 T.darwinii Tiquilia Tiquilia darwinii \N \N \N \N \N 49415 H.tehamense Hesperolinon Hesperolinon tehamense \N \N \N \N \N 49416 M.2638 Maxillaria Maxillaria cf. confusa Whitten 2638 \N \N \N \N \N 49417 B.decipiens Brachyscome Brachyscome decipiens \N \N \N \N \N 49418 E.5052 Eysenhardtia Eysenhardtia sp. Lavin 5052 \N \N \N \N \N 49419 M.exaltata Maxillaria Maxillaria exaltata \N \N \N \N \N 49420 \N varietas Viburnum opulus var. sargentii \N \N \N \N \N 49421 T.barbinode Thaspium Thaspium barbinode \N \N \N \N \N 49422 D.incisa Dryas Dryas incisa \N \N \N \N \N 49423 C.limetta Citrus Citrus limetta \N \N \N \N \N 49424 \N genus Arthropogon \N \N \N \N \N 49425 \N subspecies Bidens sandvicensis subsp. confusa \N \N \N \N \N 49426 C.eydeana Cornus Cornus eydeana \N \N \N \N \N 49427 D.rosulata Drosera Drosera rosulata \N \N \N \N \N 49428 L.stiversii Lupinus Lupinus stiversii \N \N \N \N \N 49429 \N varietas Aegilops crassa var. glumiaristata \N \N \N \N \N 49430 C.equinum Cirsium Cirsium equinum \N \N \N \N \N 49431 P.praecox Phyllostachys Phyllostachys praecox zaozhu \N \N \N \N 49432 O.blitopertha Ophrys Ophrys blitopertha \N \N \N \N \N 49433 G.lutea Gentiana Gentiana lutea yellow gentian \N \N \N \N 49434 G.splendens Gentianella Gentianella splendens \N \N \N \N \N 49435 \N varietas Boehmeria clidemioides var. diffusa \N \N \N \N \N 49436 \N subspecies Rubus arcticus subsp. stellatus \N \N \N \N \N 49437 \N genus Brasiliopuntia \N \N \N \N \N 49438 L.2008/315 Leontodon Leontodon sp. 2008/315 \N \N \N \N \N 49439 C.ovata Chionochloa Chionochloa ovata \N \N \N \N \N 49440 L.junceum Lomatium Lomatium junceum \N \N \N \N \N 49441 H.latifolia Hymenocallis Hymenocallis latifolia Cayman Islands spiderlily,chrysolite-lily \N \N \N \N 49442 \N genus Floscopa \N \N \N \N \N 49443 V.stangeana Vanda Vanda stangeana \N \N \N \N \N 49444 \N genus Pinckneya \N \N \N \N \N 49445 C.1942 Carpinus Carpinus sp. Tibet 1942 \N \N \N \N \N 49446 O.turquinensis Ossaea Ossaea turquinensis \N \N \N \N \N 49447 A.pubescens Aquilegia Aquilegia formosa x Aquilegia pubescens \N \N \N \N \N 49448 P.sagittata Pontederia Pontederia sagittata \N \N \N \N \N 49449 N.incisifolius Nemosenecio Nemosenecio incisifolius \N \N \N \N \N 49450 A.armerina Arenaria Arenaria armerina \N \N \N \N \N 49451 E.kraussiana Euphorbia Euphorbia kraussiana \N \N \N \N \N 49452 \N genus Staurogyne \N \N \N \N \N 49453 E.humile Eryngium Eryngium humile \N \N \N \N \N 49454 M.esculenta Myrica Myrica esculenta \N \N \N \N \N 49455 M.pinchotiana Mollinedia Mollinedia pinchotiana \N \N \N \N \N 49456 P.portulacifolia Pereskia Pereskia portulacifolia \N \N \N \N \N 49457 T.hildebrandtii Triainolepis Triainolepis hildebrandtii \N \N \N \N \N 49458 N.lycioides Nolana Nolana lycioides \N \N \N \N \N 49459 C.anisophylla Cissus Cissus anisophylla \N \N \N \N \N 49460 H.planus Hallianthus Hallianthus planus \N \N \N \N \N 49461 E.strigosus Erigeron Erigeron strigosus daisy-fleabane,prairie fleabane \N \N \N \N 49462 L.modesta Lennea Lennea modesta \N \N \N \N \N 49463 \N genus Epilyna \N \N \N \N \N 49464 P.386 Pterichis Pterichis sp. Trujillo 386 \N \N \N \N \N 49465 S.celastrinea Symplocos Symplocos celastrinea \N \N \N \N \N 49466 S.trachypoda Smilax Smilax trachypoda \N \N \N \N \N 49467 R.sandwicensis Reynoldsia Reynoldsia sandwicensis \N \N \N \N \N 49468 C.sagittata Chromolaena Chromolaena sagittata \N \N \N \N \N 49469 I.trollii Isolepis Isolepis trollii \N \N \N \N \N 49470 C.guttata Crossyne Crossyne guttata \N \N \N \N \N 49471 S.StS-2010b Solanum Solanum sp. StS-2010b \N \N \N \N \N 49472 B.asiatica Barringtonia Barringtonia asiatica fish-poison-tree \N \N \N \N 49473 L.gracile Lophatherum Lophatherum gracile \N \N \N \N \N 49474 B.micropetaliforme Bulbophyllum Bulbophyllum micropetaliforme \N \N \N \N \N 49475 Q.trojana Quercus Quercus trojana \N \N \N \N \N 49476 R.trifidus Rubus Rubus trifidus \N \N \N \N \N 49477 S.formosanus Sinopanax Sinopanax formosanus \N \N \N \N \N 49478 A.minus Arctium Arctium minus \N \N \N \N \N 61111 \N genus Dichosciadium \N \N \N \N \N 49479 B.morii Byrsonima Byrsonima morii \N \N \N \N \N 49480 V.bollonsii Hebe Veronica bollonsii \N \N \N \N \N 49481 L.parthenoglossa Lockhartia Lockhartia parthenoglossa \N \N \N \N \N 49482 D.zonatus Dianthus Dianthus zonatus \N \N \N \N \N 49483 V.mexicana Varilla Varilla mexicana \N \N \N \N \N 49484 S.aria Sorbus Sorbus aria chess-apple \N \N \N \N 49485 L.niloticum Lepidium Lepidium niloticum \N \N \N \N \N 49486 C.albomaculatus Cnidoscolus Cnidoscolus albomaculatus \N \N \N \N \N 49487 P.viridiflora Pauridiantha Pauridiantha viridiflora \N \N \N \N \N 49488 E.jamaicensis Erigeron Erigeron jamaicensis \N \N \N \N \N 49489 A.(L-80.0613) Alpinia Alpinia sp. 1 (L-80.0613) \N \N \N \N \N 49490 A.cylindrocephala Alpinia Alpinia cylindrocephala \N \N \N \N \N 49491 \N genus Sagittaria \N \N \N \N \N 49492 A.echegarayi Artemisia Artemisia echegarayi \N \N \N \N \N 49493 A.garrettii Aeschynanthus Aeschynanthus garrettii \N \N \N \N \N 49494 A.arborea Amelanchier Amelanchier arborea \N \N \N \N \N 49495 T.multifolia Tenicroa Tenicroa multifolia \N \N \N \N \N 49496 C.millenii Cola Cola millenii \N \N \N \N \N 49497 S.contractus Sporobolus Sporobolus contractus \N \N \N \N \N 49498 L.pusillum Leontopodium Leontopodium pusillum \N \N \N \N \N 49499 A.dracunculoides Artemisia Artemisia dracunculoides \N \N \N \N \N 49500 B.obliqua Begonia Begonia obliqua \N \N \N \N \N 49501 F.lingua Ficus Ficus lingua \N \N \N \N \N 49502 A.lainzii Adenocarpus Adenocarpus lainzii \N \N \N \N \N 49503 C.pernambucensis Cereus Cereus pernambucensis \N \N \N \N \N 49504 \N family Sphenocleaceae \N \N \N \N \N 49505 E.occidentalis Euplassa Euplassa occidentalis \N \N \N \N \N 49506 N.eremophila Nepeta Nepeta eremophila \N \N \N \N \N 49507 E.cordata Eucalyptus Eucalyptus cordata \N \N \N \N \N 49508 A.limbatum Aframomum Aframomum limbatum \N \N \N \N \N 49509 L.breviculus Leptosiphon Leptosiphon breviculus \N \N \N \N \N 49510 B.pentagonantha Baeckea Baeckea pentagonantha \N \N \N \N \N 49511 L.trisulca Lemna Lemna trisulca \N \N \N \N \N 49512 H.B16 Helictotrichon Helictotrichon sp. Hodkinson B16 \N \N \N \N \N 49513 H.asterolasia Hydrangea Hydrangea asterolasia \N \N \N \N \N 49514 A.quinquedentata Asclepias Asclepias quinquedentata \N \N \N \N \N 49515 T.478 unclassified Taraxacum Taraxacum (sect. Ruderalia) sp. 478 \N \N \N \N \N 49516 V.nelsonii Villadia Villadia nelsonii \N \N \N \N \N 49517 C.owariensis Cissampelos Cissampelos owariensis \N \N \N \N \N 49518 C.tricolor Calandrinia Calandrinia tricolor \N \N \N \N \N 49519 S.centralis Schoenus Schoenus centralis \N \N \N \N \N 49520 S.parryi Scopulophila Scopulophila parryi \N \N \N \N \N 49521 H.italica Hyacinthoides Hyacinthoides italica \N \N \N \N \N 49522 G.spicata Gamochaeta Gamochaeta spicata \N \N \N \N \N 49523 F.bidentis Flaveria Flaveria bidentis \N \N \N \N \N 49524 C.engelii Cranichis Cranichis engelii \N \N \N \N \N 49525 C.tomentosa Campanula Campanula tomentosa \N \N \N \N \N 49526 M.multicaulis Maxillaria Maxillaria multicaulis \N \N \N \N \N 49527 S.hieronymi Solanum Solanum hieronymi \N \N \N \N \N 49528 C.macrocalyx Cyananthus Cyananthus macrocalyx \N \N \N \N \N 49529 P.gaguedi Protea Protea gaguedi \N \N \N \N \N 49530 N.tentaculata Nepenthes Nepenthes tentaculata \N \N \N \N \N 49531 C.ilicifolius Chamaesphacos Chamaesphacos ilicifolius \N \N \N \N \N 49532 I.heterospermum Ionopsidium Ionopsidium heterospermum \N \N \N \N \N 49533 \N tribe Dulichieae \N \N \N \N \N 49534 C.tuckermanii Carex Carex tuckermanii \N \N \N \N \N 49535 G.pulchella Gomphrena Gomphrena pulchella \N \N \N \N \N 49536 \N subspecies Polygonum humifusum subsp. caurianum \N \N \N \N \N 49537 A.edulis Allophylus Allophylus edulis \N \N \N \N \N 49538 \N subspecies Leymus racemosus subsp. sabulosus \N \N \N \N \N 49539 T.deppeana Tillandsia Tillandsia deppeana \N \N \N \N \N 49540 Y.yadongensis Yushania Yushania yadongensis \N \N \N \N \N 49541 H.leucocephala Hydrocotyle Hydrocotyle leucocephala \N \N \N \N \N 49542 P.involucratum Polygonatum Polygonatum involucratum \N \N \N \N \N 49543 H.fruticulosa Hemicrambe Hemicrambe fruticulosa \N \N \N \N \N 49544 C.schiedei Campylocentrum Campylocentrum schiedei \N \N \N \N \N 49545 P.multiflora Pericallis Pericallis multiflora \N \N \N \N \N 49546 D.laingsburgensis Dianthus Dianthus laingsburgensis \N \N \N \N \N 49547 O.sardienii Ornithogalum Ornithogalum sardienii \N \N \N \N \N 49548 G.salsoloides Gonocarpus Gonocarpus salsoloides \N \N \N \N \N 49549 P.WSY0032121-3 Penstemon Penstemon sp. WSY0032121-3 \N \N \N \N \N 49550 N.parviflora Nivenia Nivenia parviflora \N \N \N \N \N 49551 L.ibota Ligustrum Ligustrum ibota \N \N \N \N \N 49552 C.sahafaryensis Coffea Coffea sahafaryensis \N \N \N \N \N 49553 \N subspecies Anthemis maroccana subsp. maroccana \N \N \N \N \N 49554 O.oligophylla Ononis Ononis oligophylla \N \N \N \N \N 49555 G.lydia Genista Genista lydia \N \N \N \N \N 49556 S.hispida Spermacoce Spermacoce hispida \N \N \N \N \N 49557 K.intermedia Knautia Knautia intermedia \N \N \N \N \N 49558 L.gunnii Liparophyllum Liparophyllum gunnii \N \N \N \N \N 49559 S.pilosa Symplocos Symplocos pilosa \N \N \N \N \N 49560 P.1597 Piper Piper sp. Tepe 1597 \N \N \N \N \N 49561 P.tenuiloba Primula Primula tenuiloba \N \N \N \N \N 49562 Y.crassicollis Yushania Yushania crassicollis \N \N \N \N \N 49563 C.plantagineum Craterostigma Craterostigma plantagineum \N \N \N \N \N 49564 C.natalensis Cephalaria Cephalaria natalensis \N \N \N \N \N 49565 C.peruviana Cornus Cornus peruviana \N \N \N \N \N 49566 A.emarginata Adesmia Adesmia emarginata \N \N \N \N \N 49567 B.callejasiana Bomarea Bomarea callejasiana \N \N \N \N \N 49568 M.tonalensis Mammillaria Mammillaria tonalensis \N \N \N \N \N 49569 K.coralligemma Kniphofia Kniphofia coralligemma \N \N \N \N \N 49570 P.holosericea Passiflora Passiflora holosericea \N \N \N \N \N 49571 C.sieboldii Castanopsis Castanopsis sieboldii \N \N \N \N \N 49572 C.danfordiae Crocus Crocus danfordiae \N \N \N \N \N 49573 M.juniperina Microlicia Microlicia juniperina \N \N \N \N \N 49574 C.hermanni Centaurea Centaurea hermanni \N \N \N \N \N 49575 B.umbrosa Barbacenia Barbacenia umbrosa \N \N \N \N \N 49576 N.Z14 Neoachmandra Neoachmandra sp. Z14 \N \N \N \N \N 49577 E.setifer Echinops Echinops setifer \N \N \N \N \N 49578 E.alsa Euphrasia Euphrasia alsa \N \N \N \N \N 49579 A.leptophylla Achillea Achillea leptophylla \N \N \N \N \N 49580 U.distachya Urochloa Urochloa distachya \N \N \N \N \N 49581 C.margaretae Captaincookia Captaincookia margaretae \N \N \N \N \N 49582 S.fanniniae Streptocarpus Streptocarpus fanniniae \N \N \N \N \N 49583 C.decumbens Cytisus Cytisus decumbens \N \N \N \N \N 49584 R.brasiliensis Ramisia Ramisia brasiliensis \N \N \N \N \N 49585 \N genus Schizachyrium \N \N \N \N \N 49586 P.simpsonii Pediocactus Pediocactus simpsonii \N \N \N \N \N 49587 S.tootsik Sinobambusa Sinobambusa tootsik \N \N \N \N \N 49588 \N varietas Croton pottsii var. pottsii \N \N \N \N \N 49589 V.lamellata Vanda Vanda lamellata \N \N \N \N \N 49590 \N genus Semiramisia \N \N \N \N \N 49591 A.turgidocarpus Astragalus Astragalus turgidocarpus \N \N \N \N \N 49592 E.sessilifolium Eriodictyon Eriodictyon sessilifolium \N \N \N \N \N 49593 \N genus Merrillia \N \N \N \N \N 49594 O.prostrata Ophiorrhiza Ophiorrhiza prostrata \N \N \N \N \N 49595 P.asperum Prionostemma Prionostemma asperum \N \N \N \N \N 49596 A.hassleriana Alibertia Alibertia hassleriana \N \N \N \N \N 49597 P.villifera Pimelea Pimelea villifera \N \N \N \N \N 49598 \N varietas Camellia sinensis var. assamica Assam tea \N \N \N \N 49599 S.spontaneum Saccharum officinarum complex Saccharum spontaneum fodder cane,wild sugarcane \N \N \N \N 49600 L.argenteum Leucadendron Leucadendron argenteum \N \N \N \N \N 49601 H.tenuiloba Horkelia Horkelia tenuiloba \N \N \N \N \N 49602 V.rotundifolia Viola Viola rotundifolia \N \N \N \N \N 49603 Z.asiatica Zostera Zostera asiatica \N \N \N \N \N 49604 L.monandra Ledermanniella Ledermanniella monandra \N \N \N \N \N 49606 A.floribundum Antiphytum Antiphytum floribundum \N \N \N \N \N 49607 B.ciliocarpa Brachyscome Brachyscome ciliocarpa \N \N \N \N \N 49608 S.glaucescens Sidalcea Sidalcea glaucescens \N \N \N \N \N 49609 F.clematidifolia Ferula Ferula clematidifolia \N \N \N \N \N 49610 \N subspecies Androsace elongata subsp. breistrofferi \N \N \N \N \N 49611 C.leucanthus Costus Costus leucanthus \N \N \N \N \N 49612 T.nuptae-jucundae Tropaeolum Tropaeolum nuptae-jucundae \N \N \N \N \N 49613 C.21632 Curculigo Curculigo sp. Chase 21632 \N \N \N \N \N 49614 B.calyptrocalyx Barringtonia Barringtonia calyptrocalyx \N \N \N \N \N 49615 F.puberulenta Frasera Frasera puberulenta \N \N \N \N \N 49616 C.tamala Cinnamomum Cinnamomum tamala \N \N \N \N \N 49617 \N subspecies Iris stenophylla subsp. allisonii \N \N \N \N \N 49618 \N varietas Viburnum sempervirens var. trichophorum \N \N \N \N \N 49619 T.capensis Typha Typha capensis \N \N \N \N \N 49620 B.lycoctonifolia Boykinia Boykinia lycoctonifolia \N \N \N \N \N 49621 P.alopecuros Pedicularis Pedicularis alopecuros \N \N \N \N \N 49622 \N subspecies Geranium sessiliflorum subsp. novaezelandiae \N \N \N \N \N 49623 \N tribe Cranichideae \N \N \N \N \N 49624 C.douglasii Chorizanthe Chorizanthe douglasii \N \N \N \N \N 49625 C.conoidea Carex Carex conoidea \N \N \N \N \N 49626 C.aromatica Curcuma Curcuma aromatica wild turmeric \N \N \N \N 49627 T.brevirostris Tragopogon Tragopogon brevirostris \N \N \N \N \N 49628 K.kopetdaghensis Korshinskya Korshinskya kopetdaghensis \N \N \N \N \N 49629 B.FS874 Bulbophyllum Bulbophyllum sp. FS874 \N \N \N \N \N 49630 K.pumila Kalanchoe Kalanchoe pumila \N \N \N \N \N 49631 A.oaxacanum Arceuthobium Arceuthobium oaxacanum \N \N \N \N \N 49632 D.amplexicaulis Draba Draba amplexicaulis \N \N \N \N \N 49633 A.hunnemannii Argemone Argemone hunnemannii \N \N \N \N \N 49634 M.gamblei Machilus Machilus gamblei \N \N \N \N \N 49635 R.lanceolata Rinorea Rinorea lanceolata \N \N \N \N \N 49636 V.creticum Verbascum Verbascum creticum \N \N \N \N \N 49637 D.goehringii Dyckia Dyckia goehringii \N \N \N \N \N 49638 T.sp. Triticum Triticum sp. \N \N \N \N \N 49639 B.ferruginiflora Buckinghamia Buckinghamia ferruginiflora \N \N \N \N \N 49640 T.glossostigma Trianthema Trianthema glossostigma \N \N \N \N \N 49641 C.microphyllum Cynanchum Cynanchum microphyllum \N \N \N \N \N 49642 T.hystrix Telipogon Telipogon hystrix \N \N \N \N \N 49643 \N genus Hamamelis witch hazels \N \N \N \N 49644 \N genus Dendrochilum \N \N \N \N \N 49645 N.carolinae Neoregelia Neoregelia carolinae \N \N \N \N \N 49646 P.curuense Platymiscium Platymiscium curuense \N \N \N \N \N 49647 C.tenuissima Cyrtostylis Cyrtostylis tenuissima \N \N \N \N \N 49648 G.renniana Gnidia Gnidia renniana \N \N \N \N \N 49649 C.caricoides Coleataenia Coleataenia caricoides \N \N \N \N \N 49650 P.crinitum Pogonatherum Pogonatherum crinitum \N \N \N \N \N 49651 \N varietas Costus comosus var. comosus \N \N \N \N \N 49652 \N genus Cleonia \N \N \N \N \N 49653 P.spinescens Pimelea Pimelea spinescens \N \N \N \N \N 49654 O.rigidus Osmanthus Osmanthus rigidus \N \N \N \N \N 49655 A.flexuosa Avenella Avenella flexuosa crinkled hair grass \N \N \N \N 49656 \N varietas Cattleya guttata var. leopoldii \N \N \N \N \N 49657 D.guatemalensis Ditaxis Ditaxis guatemalensis \N \N \N \N \N 49658 D.oreades Draba Draba oreades \N \N \N \N \N 49659 L.heterophyllum Lepidium Lepidium heterophyllum \N \N \N \N \N 49660 A.seabrensis Attalea Attalea seabrensis \N \N \N \N \N 49661 H.australis Hoya Hoya australis Samoan waxplant \N \N \N \N 49662 O.tipuloides Oncidium Oncidium tipuloides \N \N \N \N \N 49663 C.cordifolia Callisia Callisia cordifolia \N \N \N \N \N 49664 \N genus Bauera \N \N \N \N \N 49665 A.basineri Astragalus Astragalus basineri \N \N \N \N \N 49666 C.moorei Citronella Citronella moorei \N \N \N \N \N 49667 S.asperata Schismatoglottis Schismatoglottis asperata \N \N \N \N \N 49668 \N genus Tripteris \N \N \N \N \N 49669 L.oligophyllum Linum Linum oligophyllum \N \N \N \N \N 49670 L.tatarica Lactuca Lactuca tatarica \N \N \N \N \N 49671 D.balslevii Disterigma Disterigma balslevii \N \N \N \N \N 49672 B.divaricata Byttneria Byttneria divaricata \N \N \N \N \N 49673 E.malipoensis Eriobotrya Eriobotrya malipoensis \N \N \N \N \N 49674 D.NSW720039 Diuris Diuris aff. punctata NSW720039 \N \N \N \N \N 49675 D.bromeliifolius Dasypogon Dasypogon bromeliifolius \N \N \N \N \N 49676 S.peruviana Scilla Scilla peruviana Cuban lily,Peruvian jacinth,hyacinth-of-Peru \N \N \N \N 49677 C.argyratus Croton Croton argyratus \N \N \N \N \N 49678 P.tricolor Pedicularis Pedicularis tricolor \N \N \N \N \N 49679 \N genus Gearum \N \N \N \N \N 49680 \N genus Calopogonium \N \N \N \N \N 49681 R.prattii Rosa Rosa prattii \N \N \N \N \N 49682 V.paradoxa Vitellaria Vitellaria paradoxa karite-nu,shea-buttertree \N \N \N \N 49683 S.lutea Salpistele Salpistele lutea \N \N \N \N \N 49684 \N genus Bursaria \N \N \N \N \N 49685 L.exsertus Lisianthius Lisianthius exsertus \N \N \N \N \N 49686 S.viridiflora Simira Simira viridiflora \N \N \N \N \N 49687 \N tribe Leucadeae \N \N \N \N \N 49688 R.sikangensis Rosa Rosa sikangensis \N \N \N \N \N 49689 S.campylospatha Syagrus Syagrus campylospatha \N \N \N \N \N 49690 D.bodkinii Disperis Disperis bodkinii \N \N \N \N \N 49691 R.semnoides Rhododendron Rhododendron semnoides \N \N \N \N \N 49692 N.alcaracensis Narcissus Narcissus alcaracensis \N \N \N \N \N 49693 \N genus Indurgia \N \N \N \N \N 49694 C.plumbaginoides Ceratostigma Ceratostigma plumbaginoides lan xue hua \N \N \N \N 49695 C.commersonianum Cerastium Cerastium commersonianum \N \N \N \N \N 49696 M.helleri Mouriri Mouriri helleri \N \N \N \N \N 49697 O.sanderianus Oreopanax Oreopanax sanderianus \N \N \N \N \N 49698 \N family Ericaceae heath family \N \N \N \N 49699 O.1676 Oncidium Oncidium cf. schmidtianum Whitten 1676 \N \N \N \N \N 49700 \N genus Coeloglossum \N \N \N \N \N 49701 C.pumilus Ceanothus Ceanothus pumilus \N \N \N \N \N 49702 L.hansonii Lilium Lilium hansonii \N \N \N \N \N 49703 A.hispida Arenaria Arenaria hispida \N \N \N \N \N 49704 P.geraniifolia Primula Primula geraniifolia \N \N \N \N \N 49705 G.fleischerianum Gymnocalycium Gymnocalycium fleischerianum \N \N \N \N \N 49706 M.vestita Mimosa Mimosa vestita \N \N \N \N \N 49707 R.eumorphantha Ruellia Ruellia eumorphantha \N \N \N \N \N 49708 G.amygdalinum Gymnanthemum Gymnanthemum amygdalinum \N \N \N \N \N 49709 E.eminens Euadenia Euadenia eminens \N \N \N \N \N 49710 M.novae-zelandiae Montigena Montigena novae-zelandiae \N \N \N \N \N 49711 \N genus Grubovia \N \N \N \N \N 49712 C.bursa-pastoris Capsella Capsella bursa-pastoris shepherd's purse \N \N \N \N 49713 D.cultivar Delphinium Delphinium hybrid cultivar \N \N \N \N \N 49714 \N forma Sasa cernua f. nebulosa \N \N \N \N \N 49715 P.mayumbensis Pauridiantha Pauridiantha mayumbensis \N \N \N \N \N 49716 H.beccarii Halophila Halophila beccarii \N \N \N \N \N 49717 O.repens Ononis Ononis repens restharrow \N \N \N \N 49718 C.trifolia Cardamine Cardamine trifolia \N \N \N \N \N 49719 \N genus Rhigospira \N \N \N \N \N 49720 C.arenaria Catananche Catananche arenaria \N \N \N \N \N 49721 \N genus Aorchis \N \N \N \N \N 49722 H.nicolai Helichrysum Helichrysum nicolai \N \N \N \N \N 49723 P.neomexicana Packera Packera neomexicana \N \N \N \N \N 49724 C.zippeliana Ceriops Ceriops zippeliana \N \N \N \N \N 49725 C.cabrerae Cistanthe Cistanthe cabrerae \N \N \N \N \N 49726 \N subtribe Matricariinae \N \N \N \N \N 49727 \N varietas Chorizanthe robusta var. hartwegii \N \N \N \N \N 49728 B.sphaerocarpa Baptisia Baptisia sphaerocarpa yellow wild indigo \N \N \N \N 49729 \N genus Egeria \N \N \N \N \N 49730 M.scirpoidea Machaerina Machaerina scirpoidea \N \N \N \N \N 49731 A.pedunculata Aspalathus Aspalathus pedunculata \N \N \N \N \N 49732 T.cernuum Trisetum Trisetum cernuum \N \N \N \N \N 49733 C.pallescens Chenopodium Chenopodium pallescens \N \N \N \N \N 49734 C.gracilis Citrus Citrus gracilis \N \N \N \N \N 49735 C.obovata Clusia Clusia obovata \N \N \N \N \N 49736 T.glaber Thamnochortus Thamnochortus glaber \N \N \N \N \N 49737 U.brizantha Urochloa Urochloa brizantha braquiaria,bread grass,palisade grass \N \N \N \N 49738 D.capitatum Dichelostemma Dichelostemma capitatum blue dicks \N \N \N \N 49739 A.jonesii Acacia Acacia jonesii \N \N \N \N \N 49740 C.adenensis Caralluma Caralluma adenensis \N \N \N \N \N 49741 \N subspecies Acacia longifolia subsp. longifolia \N \N \N \N \N 49742 O.lehmannianum Oncidium Oncidium lehmannianum \N \N \N \N \N 49743 \N genus Dichroa \N \N \N \N \N 49744 \N varietas Boechera fernaldiana var. fernaldiana \N \N \N \N \N 49745 \N genus Kadsura \N \N \N \N \N 49746 G.inuloides Grindelia Grindelia inuloides \N \N \N \N \N 49747 O.s.n. Olyra Olyra sp. Hodkinson s.n. \N \N \N \N \N 49748 C.bigelowii Carex Carex bigelowii \N \N \N \N \N 49749 \N subspecies Frasera albicaulis subsp. nitida \N \N \N \N \N 49750 L.roborea Lijndenia Lijndenia roborea \N \N \N \N \N 49751 Z.vinkii Zygogynum Zygogynum vinkii \N \N \N \N \N 49752 H.mendocinum Heliotropium Heliotropium mendocinum \N \N \N \N \N 49753 E.cubensis Eosanthe Eosanthe cubensis \N \N \N \N \N 49754 \N genus Havardia \N \N \N \N \N 49755 D.macrocalyx Dasymaschalon Dasymaschalon macrocalyx \N \N \N \N \N 49756 M.rotata Medicago Medicago rotata \N \N \N \N \N 49757 C.vallis-rosetto Carex Carex vallis-rosetto \N \N \N \N \N 49758 \N genus Cassinia \N \N \N \N \N 49759 \N subspecies Primula obconica subsp. fujianensis \N \N \N \N \N 49760 \N genus Bartlettia \N \N \N \N \N 49761 \N genus Stylidium \N \N \N \N \N 49762 \N genus Pachystegia \N \N \N \N \N 49763 S.reflexa Syringa Syringa reflexa \N \N \N \N \N 49764 \N genus Poga \N \N \N \N \N 49765 A.sylvestris Arachis Arachis sylvestris amendoim do porco,mandubi do porco \N \N \N \N 49766 J.triglumis Juncus Juncus triglumis \N \N \N \N \N 49767 \N genus Jouvea \N \N \N \N \N 49768 O.tenuiflorum Ocimum Ocimum tenuiflorum holy basil \N \N \N \N 49769 L.holstii Lobelia Lobelia holstii \N \N \N \N \N 49770 H.vestita Hulsea Hulsea vestita \N \N \N \N \N 49771 M.alpigena Myrceugenia Myrceugenia alpigena \N \N \N \N \N 49772 F.decurvata Fargesia Fargesia decurvata \N \N \N \N \N 49773 O.neocaledonica Oxanthera Oxanthera neocaledonica \N \N \N \N \N 49774 P.tenuifila Passiflora Passiflora tenuifila \N \N \N \N \N 49775 T.cordifolium Typhonium Typhonium cordifolium \N \N \N \N \N 49776 I.spicata Ilex Ilex spicata \N \N \N \N \N 49777 \N order Alismatales \N \N \N \N \N 49778 \N subspecies Colchicum lingulatum subsp. lingulatum \N \N \N \N \N 49779 P.corallina Pepinia Pepinia corallina \N \N \N \N \N 49780 C.pittieri Clidemia Clidemia pittieri \N \N \N \N \N 49781 \N genus Ruilopezia \N \N \N \N \N 49782 D.odorifera Dalbergia Dalbergia odorifera fragrant rosewood \N \N \N \N 49783 \N tribe Gloxineae \N \N \N \N \N 49784 A.gunibicum Allium Allium gunibicum \N \N \N \N \N 49785 \N genus Strongylodon \N \N \N \N \N 49786 F.pandurata Fernaldia Fernaldia pandurata \N \N \N \N \N 49787 C.6201 Capparis Capparis sp. Hahn 6201 \N \N \N \N \N 49788 E.fulgens Echeveria Echeveria fulgens \N \N \N \N \N 49789 C.balansae Canarium Canarium balansae \N \N \N \N \N 49790 M.japurensis Miconia Miconia japurensis \N \N \N \N \N 49791 \N genus Cocculus \N \N \N \N \N 49792 S.paradoxa Synandrodaphne Synandrodaphne paradoxa \N \N \N \N \N 49793 S.bojeri Schefflera Schefflera bojeri \N \N \N \N \N 49794 \N genus Anthemis \N \N \N \N \N 49795 D.glaucifolia Diospyros Diospyros glaucifolia \N \N \N \N \N 49796 \N genus Dielsiodoxa \N \N \N \N \N 49797 S.serrata Schizomeria Schizomeria serrata \N \N \N \N \N 49798 R.vidalii Rhapis Rhapis vidalii \N \N \N \N \N 49799 O.laurifolia Oxandra Oxandra laurifolia \N \N \N \N \N 49800 \N genus Franklinia \N \N \N \N \N 49801 S.tenuis Saxifraga Saxifraga tenuis \N \N \N \N \N 49802 S.fulgens Senecio Senecio fulgens \N \N \N \N \N 49803 D.aspersa Dioscorea Dioscorea aspersa \N \N \N \N \N 49804 D.sumatrana Diospyros Diospyros sumatrana \N \N \N \N \N 49805 T.conchuliferus Thysanocarpus Thysanocarpus conchuliferus \N \N \N \N \N 49806 \N genus Thyrsosalacia \N \N \N \N \N 49807 \N genus Plinthus \N \N \N \N \N 49808 A.submarginata Abrotanella Abrotanella submarginata \N \N \N \N \N 49809 A.pulchra Alstroemeria Alstroemeria pulchra \N \N \N \N \N 49810 B.orientalis Brunsvigia Brunsvigia orientalis \N \N \N \N \N 49811 S.rigida Stachys Stachys rigida \N \N \N \N \N 49812 \N genus Argyrotegium \N \N \N \N \N 49813 A.madagascariense Anthostema Anthostema madagascariense \N \N \N \N \N 49814 A.turkestanicum Allium Allium turkestanicum \N \N \N \N \N 49815 D.trojana Digitalis Digitalis trojana \N \N \N \N \N 49816 T.1725 Trichostachys Trichostachys sp. Sonke 1725 \N \N \N \N \N 49817 \N subspecies Carex brunnescens subsp. brunnescens \N \N \N \N \N 49818 I.candida Inula Inula candida \N \N \N \N \N 49819 P.muscoides Pedicularis Pedicularis muscoides \N \N \N \N \N 49820 H.stebbinsii Harmonia Harmonia stebbinsii \N \N \N \N \N 49821 Q.coccinea Quercus Quercus coccinea scarlet oak \N \N \N \N 49822 T.tibetica Tricholepis Tricholepis tibetica \N \N \N \N \N 49823 P.hyperborealis Packera Packera hyperborealis northern groundsel \N \N \N \N 49824 F.xylosycia Ficus Ficus xylosycia \N \N \N \N \N 49825 S.lurida Swertia Swertia lurida \N \N \N \N \N 49826 S.urens Sterculia Sterculia urens Indian tragacanth \N \N \N \N 49827 C.jaegeriana Canna Canna jaegeriana \N \N \N \N \N 49828 A.pycnostachya Austrostipa Austrostipa pycnostachya \N \N \N \N \N 49829 P.stratiotes Pistia Pistia stratiotes shellflower,water lettuce \N \N \N \N 49830 L.kelleyanum Lilium Lilium kelleyanum \N \N \N \N \N 49831 Z.205 Zanthoxylum Zanthoxylum sp. 205 \N \N \N \N \N 49832 \N genus Meziella \N \N \N \N \N 49833 L.rediviva Lunaria Lunaria rediviva \N \N \N \N \N 49834 V.bracteatum Viburnum Viburnum bracteatum \N \N \N \N \N 49835 E.leucotrachela Erica Erica leucotrachela \N \N \N \N \N 49836 D.pulcherrima Draba Draba pulcherrima \N \N \N \N \N 49837 S.fibrosum Syzygium Syzygium fibrosum \N \N \N \N \N 49838 \N genus Mundulea \N \N \N \N \N 49839 M.septentrionalis Moussonia Moussonia septentrionalis \N \N \N \N \N 49840 P.weberbaueri Palaua Palaua weberbaueri \N \N \N \N \N 49841 H.pseudanthemis Hymenostemma Hymenostemma pseudanthemis \N \N \N \N \N 49842 L.parishii Lycium Lycium parishii \N \N \N \N \N 49843 S.interruptus Sporadanthus Sporadanthus interruptus \N \N \N \N \N 49844 T.macrocarpum Thalictrum Thalictrum macrocarpum \N \N \N \N \N 49845 M.dispersa Muraltia Muraltia dispersa \N \N \N \N \N 49846 P.gilanicus Psephellus Psephellus gilanicus \N \N \N \N \N 49847 D.s.n. Dialypetalum Dialypetalum sp. Koopman et al. s.n. \N \N \N \N \N 49848 H.insularis Hepatica Hepatica insularis \N \N \N \N \N 49849 C.micrantha Cryptandra Cryptandra micrantha \N \N \N \N \N 49850 H.griggsiana Heliconia Heliconia griggsiana \N \N \N \N \N 49851 \N varietas Perilla frutescens var. frutescens \N \N \N \N \N 49852 \N genus Nemopanthus \N \N \N \N \N 49853 L.paradoxa Ligularia Ligularia paradoxa \N \N \N \N \N 49854 A.maximowiczii Allium Allium maximowiczii \N \N \N \N \N 49855 P.arcana Phyllostachys Phyllostachys arcana \N \N \N \N \N 49856 P.cognata Ptelea Ptelea cognata \N \N \N \N \N 49857 \N genus Astronia \N \N \N \N \N 49858 \N genus Pollichia \N \N \N \N \N 49859 E.formosana Euphorbia Euphorbia formosana \N \N \N \N \N 49860 \N genus Malmea \N \N \N \N \N 49861 L.exsertum Lycium Lycium exsertum Arizona desert-thorn \N \N \N \N 49862 P.pilosa Psychotria Psychotria pilosa \N \N \N \N \N 49863 A.MPM4 Alocasia Alocasia sp. MPM4 \N \N \N \N \N 49864 S.ebracteatus Samolus Samolus ebracteatus limewater brookweed \N \N \N \N 49865 \N genus Metapetrocosmea \N \N \N \N \N 49866 S.amblyophylla Stuckenia Stuckenia amblyophylla \N \N \N \N \N 61112 \N genus Holostylon \N \N \N \N \N 49867 B.zanguebaricum Blepharispermum Blepharispermum zanguebaricum \N \N \N \N \N 49868 \N genus Vallesia \N \N \N \N \N 49869 \N genus Gymnocalycium \N \N \N \N \N 49870 M.2737 Maxillaria Maxillaria cf. variabilis Whitten 2737 \N \N \N \N \N 49871 C.divaricata Caryopteris Caryopteris divaricata \N \N \N \N \N 49872 E.insulana Euphorbia Euphorbia insulana \N \N \N \N \N 49873 C.thornei Carex Carex thornei \N \N \N \N \N 49874 H.pendulum Helichrysum Helichrysum pendulum \N \N \N \N \N 49875 S.racemosa Symphysia Symphysia racemosa \N \N \N \N \N 49876 C.briquetii Cleome Cleome briquetii \N \N \N \N \N 49877 F.oaxacana Fosteria Fosteria oaxacana \N \N \N \N \N 49878 I.primuliflorum Isometrum Isometrum primuliflorum \N \N \N \N \N 49879 V.candolleana Valeriana Valeriana candolleana \N \N \N \N \N 49880 P.gussonei Petagnaea Petagnaea gussonei \N \N \N \N \N 49881 D.eriophora Deiregyne Deiregyne eriophora \N \N \N \N \N 49882 C.habessinica Commiphora Commiphora habessinica Arabian myrrh \N \N \N \N 49883 E.alta Euphorbia Euphorbia alta \N \N \N \N \N 49884 E.atropetiolata Eschweilera Eschweilera atropetiolata \N \N \N \N \N 49885 C.alexandri Catophractes Catophractes alexandri \N \N \N \N \N 49886 L.martinezii Lapiedra Lapiedra martinezii \N \N \N \N \N 49887 A.coreana Agrimonia Agrimonia coreana \N \N \N \N \N 49888 C.fimbriatum Catasetum Catasetum fimbriatum \N \N \N \N \N 49889 C.H5_39A Castilleja Castilleja sp. H5_39A \N \N \N \N \N 49890 A.impressus Amorphophallus Amorphophallus impressus \N \N \N \N \N 49891 B.insignis Bottegoa Bottegoa insignis \N \N \N \N \N 49892 T.pusillum Tribolium Tribolium pusillum \N \N \N \N \N 49893 M.lucidum Marsypopetalum Marsypopetalum lucidum \N \N \N \N \N 49894 P.litorale Peucedanum Peucedanum litorale \N \N \N \N \N 49895 \N genus Kirengeshoma \N \N \N \N \N 49896 R.zpl Rosmarinus Rosmarinus sp. MIB zpl \N \N \N \N \N 49897 S.crotalarioides Senna Senna crotalarioides \N \N \N \N \N 49898 T.oxyceras Thlaspi Thlaspi oxyceras \N \N \N \N \N 49899 A.JLC-2009 Anetanthus Anetanthus sp. JLC-2009 \N \N \N \N \N 49900 K.drepanophylla Kniphofia Kniphofia drepanophylla \N \N \N \N \N 49901 G.graminea Gilliesia Gilliesia graminea \N \N \N \N \N 49902 P.nutans Psychotria Psychotria nutans \N \N \N \N \N 49903 \N genus Elephantomene \N \N \N \N \N 49904 F.racemigera Ficus Ficus racemigera \N \N \N \N \N 49905 \N subspecies Deinandra increscens subsp. increscens \N \N \N \N \N 49906 L.pulcherrima Lindera Lindera pulcherrima \N \N \N \N \N 49907 T.erecta Thunbergia Thunbergia erecta \N \N \N \N \N 49908 A.albida Aristolochia Aristolochia albida \N \N \N \N \N 49909 C.glabratus Cephalanthus Cephalanthus glabratus \N \N \N \N \N 49910 C.wrightii Colpothrinax Colpothrinax wrightii \N \N \N \N \N 49911 \N genus Adelia \N \N \N \N \N 49912 \N genus Pseudofortuynia \N \N \N \N \N 49913 A.hololeios Astragalus Astragalus hololeios \N \N \N \N \N 49914 B.homonyma Begonia Begonia homonyma \N \N \N \N \N 49915 C.jasonii Crinum Crinum jasonii \N \N \N \N \N 49916 \N genus Amorimia \N \N \N \N \N 49917 C.veraguanum Cremosperma Cremosperma veraguanum \N \N \N \N \N 49918 \N genus Stokesia \N \N \N \N \N 49919 S.malachroides Sidalcea Sidalcea malachroides \N \N \N \N \N 49920 P.lobbii Phalaenopsis Phalaenopsis lobbii \N \N \N \N \N 49921 E.cilianensis Eragrostis Eragrostis cilianensis stink grass \N \N \N \N 49922 \N subspecies Juncus arcticus subsp. alaskanus Alaska rush \N \N \N \N 49923 A.burjaticum Allium Allium burjaticum \N \N \N \N \N 49924 S.alba Sempervivella Sempervivella alba \N \N \N \N \N 49925 P.mutisii Persea Persea mutisii \N \N \N \N \N 49926 \N genus Leptaleum \N \N \N \N \N 49927 C.acuminata Cyanea Cyanea acuminata \N \N \N \N \N 49928 I.CQ-2001 Iris Iris sp. CQ-2001 \N \N \N \N \N 49929 E.patagonicus Elymus Elymus patagonicus \N \N \N \N \N 49930 \N varietas Gazania rigens var. leucolaena \N \N \N \N \N 49931 V.fonckii Valeriana Valeriana fonckii \N \N \N \N \N 49932 S.homonyma Setaria Setaria homonyma \N \N \N \N \N 49933 M.transmontana Muilla Muilla transmontana \N \N \N \N \N 49934 S.valerandi Samolus Samolus valerandi \N \N \N \N \N 49935 N.axillaris Nassauvia Nassauvia axillaris \N \N \N \N \N 49936 C.ochmatochila Cyrtochiloides Cyrtochiloides ochmatochila \N \N \N \N \N 49937 S.sarracenicus Senecio Senecio sarracenicus \N \N \N \N \N 49938 E.gregersenii Euphorbia Euphorbia gregersenii \N \N \N \N \N 49939 \N varietas Physalis longifolia var. subglabrata \N \N \N \N \N 49940 C.sativa Cannabis Cannabis sativa hemp,marijuana \N \N \N \N 49941 P.coerulea Pasithea Pasithea coerulea \N \N \N \N \N 49942 A.mollis Austrostipa Austrostipa mollis \N \N \N \N \N 49943 E.eriantha Euphorbia Euphorbia eriantha \N \N \N \N \N 49944 E.chloroleucus Echinops Echinops chloroleucus \N \N \N \N \N 49945 P.brevifolia Plocama Plocama brevifolia \N \N \N \N \N 49946 \N family Aphanopetalaceae \N \N \N \N \N 49947 E.orientale Elaeodendron Elaeodendron orientale false olive \N \N \N \N 49948 C.welwitschii Corallocarpus Corallocarpus welwitschii \N \N \N \N \N 49949 J.fimbriata Jenmaniella Jenmaniella fimbriata \N \N \N \N \N 49950 P.ebracteatum Pleiochiton Pleiochiton ebracteatum \N \N \N \N \N 49951 D.heterocoma Draba Draba heterocoma \N \N \N \N \N 49952 G.fastigiata Gnidia Gnidia fastigiata \N \N \N \N \N 49953 H.conformis Heteropterys Heteropterys conformis \N \N \N \N \N 49954 C.lancifolium Cyclocodon Cyclocodon lancifolium \N \N \N \N \N 49955 P.yunnanensis Paederia Paederia yunnanensis \N \N \N \N \N 49956 \N subspecies Acacia hebeclada subsp. chobiensis \N \N \N \N \N 49957 R.rubra Ruellia Ruellia rubra \N \N \N \N \N 49958 R.alpina Rhizobotrya Rhizobotrya alpina \N \N \N \N \N 49959 V.alpina Viscaria Viscaria alpina alpine catchfly \N \N \N \N 49960 N.scrophularioides Nepeta Nepeta scrophularioides \N \N \N \N \N 49961 P.ochreata Pleurothallis Pleurothallis ochreata \N \N \N \N \N 49962 P.flagellicuspe Piper Piper flagellicuspe \N \N \N \N \N 49963 \N genus Drapetes \N \N \N \N \N 49964 D.alobulum Diplodium Diplodium alobulum \N \N \N \N \N 49965 C.hypoglauca Cryptolepis Cryptolepis hypoglauca \N \N \N \N \N 49966 L.gracile Linum Linum gracile \N \N \N \N \N 49967 M.lewisii Mimulus Mimulus lewisii \N \N \N \N \N 49968 S.gracilis Scaphispatha Scaphispatha gracilis \N \N \N \N \N 49969 C.bourgaei Cicerbita Cicerbita bourgaei \N \N \N \N \N 49970 C.anulque Calathea Calathea anulque \N \N \N \N \N 49971 S.101 Salicornia Salicornia cf. procumbens Keremma 101 \N \N \N \N \N 49972 D.nobilis Deckenia Deckenia nobilis \N \N \N \N \N 49973 T.parviflora Trembleya Trembleya parviflora \N \N \N \N \N 49974 \N subspecies Oreobliton thesioides subsp. thesioides \N \N \N \N \N 49975 A.macropoda Armeria Armeria macropoda \N \N \N \N \N 49976 \N subspecies Limnanthes floccosa subsp. pumila \N \N \N \N \N 49977 C.decurva Coprosma Coprosma decurva \N \N \N \N \N 49978 A.wallichii Apostasia Apostasia wallichii \N \N \N \N \N 49979 T.ovatum Trillium Trillium ovatum Western white trillium \N \N \N \N 49980 \N genus Cedrelinga \N \N \N \N \N 49981 C.acanthocladus Convolvulus Convolvulus acanthocladus \N \N \N \N \N 49982 E.stapfii Eragrostis Eragrostis stapfii \N \N \N \N \N 49983 \N varietas Santalum insulare var. hendersonense \N \N \N \N \N 49984 S.95015 Stellaria Stellaria sp. Qiu 95015 \N \N \N \N \N 49985 E.apiculata Eurycoma Eurycoma apiculata \N \N \N \N \N 49986 T.bolusii Tetraria Tetraria bolusii \N \N \N \N \N 49987 P.crassifolia Paraboea Paraboea crassifolia \N \N \N \N \N 49988 C.azalea Camellia Camellia azalea \N \N \N \N \N 49989 \N varietas Lupinus albifrons var. abramsii \N \N \N \N \N 49990 D.leichhardtii Datura Datura leichhardtii \N \N \N \N \N 49991 G.cyrtoloba Glycine Glycine cyrtoloba \N \N \N \N \N 49992 E.cordigera Encyclia Encyclia cordigera \N \N \N \N \N 49993 M.speciosa Mitragyna Mitragyna speciosa \N \N \N \N \N 49994 T.linearifolia Taxandria Taxandria linearifolia \N \N \N \N \N 49995 \N genus Lindleya \N \N \N \N \N 49996 N.barbatus Nabalus Nabalus barbatus \N \N \N \N \N 49997 C.atrorubens Cunonia Cunonia atrorubens \N \N \N \N \N 49998 A.bushehrica Anthemis Anthemis bushehrica \N \N \N \N \N 49999 P.AJCV-2010 Passiflora Passiflora sp. AJCV-2010 \N \N \N \N \N 50000 \N genus Retzia \N \N \N \N \N 50001 S.hatschbachii Sinningia Sinningia hatschbachii \N \N \N \N \N 50002 \N varietas Mimosa sensitiva var. sensitiva \N \N \N \N \N 50003 C.altissima Cota Cota altissima \N \N \N \N \N 50004 \N varietas Stipa sareptana var. krylovii \N \N \N \N \N 50005 T.zygoon Tarenna Tarenna zygoon \N \N \N \N \N 50006 U.tricolor Utricularia Utricularia tricolor \N \N \N \N \N 50007 P.carthagenensis Psychotria Psychotria carthagenensis \N \N \N \N \N 50008 E.squarrosa Endiandra Endiandra squarrosa \N \N \N \N \N 50009 P.gracillima Peperomia Peperomia gracillima \N \N \N \N \N 50010 O.austrocaledonicus Osmanthus Osmanthus austrocaledonicus \N \N \N \N \N 50011 J.frigida Jarava Jarava frigida \N \N \N \N \N 50012 P.trintae Passiflora Passiflora trintae \N \N \N \N \N 50013 A.longicalyx Aeschynanthus Aeschynanthus longicalyx \N \N \N \N \N 50014 G.santarena Galeandra Galeandra santarena \N \N \N \N \N 50015 D.938 Dendropanax Dendropanax sp. Fine 938 \N \N \N \N \N 50016 P.547 Poikilospermum Poikilospermum sp. Wooliams 547 \N \N \N \N \N 50017 R.macropodoides Ranunculus Ranunculus macropodoides \N \N \N \N \N 50018 L.atroviolacea Ligularia Ligularia atroviolacea \N \N \N \N \N 50019 M.cuticularis Melaleuca Melaleuca cuticularis salt water paperbark \N \N \N \N 50020 R.MAG-2009 Rinorea Rinorea sp. MAG-2009 \N \N \N \N \N 50021 P.orthoclada Poa Poa orthoclada \N \N \N \N \N 50022 B.dentata Banksia Banksia dentata \N \N \N \N \N 50023 N.luederitzii Nesaea Nesaea luederitzii \N \N \N \N \N 50024 C.tenuifolia Cardamine Cardamine tenuifolia \N \N \N \N \N 50025 N.gigantea Nymphaea Nymphaea colorata x Nymphaea gigantea \N \N \N \N \N 50026 T.7103 Telipogon Telipogon sp. Hirtz 7103 \N \N \N \N \N 50027 I.alberti Iris Iris alberti \N \N \N \N \N 50028 H.viridiflora Hoffmannseggella Hoffmannseggella viridiflora \N \N \N \N \N 50029 A.rosea Alcea Alcea rosea hollyhock \N \N \N \N 50030 C.martii Cavendishia Cavendishia martii \N \N \N \N \N 50031 E.blascoi Elaeocarpus Elaeocarpus blascoi \N \N \N \N \N 50032 \N genus Limnobium \N \N \N \N \N 50033 \N genus Hecastocleis \N \N \N \N \N 50034 M.mayarensis Manilkara Manilkara mayarensis \N \N \N \N \N 50035 D.bahiensis Duguetia Duguetia bahiensis \N \N \N \N \N 50036 H.procerum Hieracium Hieracium procerum \N \N \N \N \N 50037 \N genus Hippobroma \N \N \N \N \N 50038 L.blakei Leucopogon Leucopogon blakei \N \N \N \N \N 50039 P.crocea Palicourea Palicourea crocea \N \N \N \N \N 50040 R.obovatum Rhigozum Rhigozum obovatum \N \N \N \N \N 50041 \N forma Haworthia fasciata f. fasciata \N \N \N \N \N 50042 D.fitzgeraldii Dracophyllum Dracophyllum fitzgeraldii \N \N \N \N \N 50043 C.alpestris Campanula Campanula alpestris \N \N \N \N \N 50044 D.kiusiana Daphne Daphne kiusiana \N \N \N \N \N 50045 O.microphyllum Oxylobium Oxylobium microphyllum \N \N \N \N \N 50046 O.lacaitae Ophrys Ophrys lacaitae \N \N \N \N \N 50047 \N genus Synsepalum \N \N \N \N \N 50048 \N subspecies Begonia loranthoides subsp. rhopalocarpa \N \N \N \N \N 50049 A.hispida Acalypha Acalypha hispida Philippine-medusa,chenilleplant,red-hot cattail \N \N \N \N 50050 D.esmeraldae Drosera Drosera esmeraldae \N \N \N \N \N 50051 I.caucasica Iris Iris caucasica \N \N \N \N \N 50052 C.3700 Clusia Clusia sp. JA 3700 \N \N \N \N \N 50053 O.syriacum Origanum Origanum syriacum \N \N \N \N \N 50054 T.haussknechtii Trifolium Trifolium haussknechtii \N \N \N \N \N 50055 A.luteoalbum Aframomum Aframomum luteoalbum \N \N \N \N \N 50056 P.incana Poliomintha Poliomintha incana \N \N \N \N \N 50057 C.tomentosa Charpentiera Charpentiera tomentosa \N \N \N \N \N 50058 F.cylindracea Fuchsia Fuchsia cylindracea \N \N \N \N \N 50059 H.DES-2002 Hydrocotyle Hydrocotyle sp. DES-2002 \N \N \N \N \N 50060 \N varietas Sarcocornia pillansiae var. pillansiae \N \N \N \N \N 50061 M.carsonii Magnolia Magnolia carsonii \N \N \N \N \N 50062 S.vestissimum Solanum Solanum vestissimum \N \N \N \N \N 50063 L.tenellum Lithophragma Lithophragma tenellum \N \N \N \N \N 50064 H.pentaphyllus Hesperothamnus Hesperothamnus pentaphyllus \N \N \N \N \N 50065 L.hirta Lachenalia Lachenalia hirta \N \N \N \N \N 50066 C.cordata Cuphea Cuphea cordata \N \N \N \N \N 50067 D.PW-2004 Dioscorea Dioscorea cf. apurimacensis PW-2004 \N \N \N \N \N 50068 D.mollissima Draba Draba mollissima \N \N \N \N \N 50069 F.phaeodisca Frailea Frailea phaeodisca \N \N \N \N \N 50070 G.aurantiaca Globba Globba aurantiaca \N \N \N \N \N 50071 C.spicatus Chloranthus Chloranthus spicatus cha-ran,chulantree,jin su lan \N \N \N \N 50072 L.uliginosus Lotus Lotus uliginosus big trefoil \N \N \N \N 50073 L.nemorum Lysimachia Lysimachia nemorum yellow pimpernel \N \N \N \N 50074 O.isthmi Oncidium Oncidium isthmi \N \N \N \N \N 50075 C.nicaraguensis Carapa Carapa nicaraguensis \N \N \N \N \N 50076 P.kawagoeana Persicaria Persicaria kawagoeana \N \N \N \N \N 50077 C.corymbosa Cuscuta Cuscuta corymbosa \N \N \N \N \N 50078 V.ochracea Hebe Veronica ochracea \N \N \N \N \N 50079 \N genus Ancistrocactus \N \N \N \N \N 50080 C.crassifolia Coprosma Coprosma crassifolia \N \N \N \N \N 50081 P.chinensis Potentilla Potentilla chinensis \N \N \N \N \N 50082 E.squamigera Eleocharis Eleocharis squamigera \N \N \N \N \N 50083 H.involucrata Heteromorpha Heteromorpha involucrata \N \N \N \N \N 50084 C.reldioides Cremosperma Cremosperma reldioides \N \N \N \N \N 50085 L.liliifolia Liparis Liparis liliifolia lily-leaved twayblade,mauve sleekwort \N \N \N \N 50086 \N genus Chrysoprenanthes \N \N \N \N \N 50087 \N genus Isopogon \N \N \N \N \N 50088 L.acuticarpa Lotononis Lotononis acuticarpa \N \N \N \N \N 50089 C.nitida Cola Cola nitida \N \N \N \N \N 50090 C.nodosum Chaerophyllum Chaerophyllum nodosum \N \N \N \N \N 50091 \N genus Chydenanthus \N \N \N \N \N 50092 C.acerosus Calopappus Calopappus acerosus \N \N \N \N \N 50094 M.13574 Mesanthemum Mesanthemum sp. van der Werff and McPherson 13574 \N \N \N \N \N 50095 C.leiorhyncha Carex Carex leiorhyncha \N \N \N \N \N 50096 O.dyris Ophrys Ophrys dyris \N \N \N \N \N 50097 S.aegyptius Senecio Senecio aegyptius \N \N \N \N \N 50098 N.reitzii Napeanthus Napeanthus reitzii \N \N \N \N \N 50099 \N genus Koehneria \N \N \N \N \N 50100 C.DK-2009 Carapa Carapa sp. 2 DK-2009 \N \N \N \N \N 50101 S.amara Soulamea Soulamea amara \N \N \N \N \N 50102 T.sidoides Turnera Turnera sidoides \N \N \N \N \N 50103 \N subspecies Rhipsalis floccosa subsp. pittieri \N \N \N \N \N 50104 E.brasiliense Eryngium Eryngium brasiliense \N \N \N \N \N 50105 S.firma Silene Silene firma \N \N \N \N \N 50106 R.mesogaeus Rubus Rubus mesogaeus \N \N \N \N \N 50107 \N varietas Dahlia dissecta var. sublignosa \N \N \N \N \N 50108 L.reticulata Lasiochlamys Lasiochlamys reticulata \N \N \N \N \N 50109 G.roezlii Guzmania Guzmania roezlii \N \N \N \N \N 50110 C.oaxacana Cordia Cordia oaxacana \N \N \N \N \N 50111 A.manausensis Anaxagorea Anaxagorea manausensis \N \N \N \N \N 50112 P.petrophila Prostanthera Prostanthera petrophila \N \N \N \N \N 50113 \N genus Sidalcea checkerblooms \N \N \N \N 50114 E.ambigua Edmundoa Edmundoa ambigua \N \N \N \N \N 50115 C.nuttallii Cardamine Cardamine nuttallii \N \N \N \N \N 50116 C.saxatilis Culcasia Culcasia saxatilis \N \N \N \N \N 50117 H.brevicaule Haemodorum Haemodorum brevicaule \N \N \N \N \N 50118 M.jalapa Mirabilis Mirabilis jalapa garden four-o'clock \N \N \N \N 50119 \N no rank Saccharum hybrid cultivar (mixed) \N \N \N \N \N 50120 S.Shut-0001 Stemona Stemona sp. Shut-0001 \N \N \N \N \N 50121 \N genus Asperula \N \N \N \N \N 50122 E.pubens Endiandra Endiandra pubens \N \N \N \N \N 50123 L.alpinus Lotus Lotus alpinus \N \N \N \N \N 50124 M.integrifolium Melanodendron Melanodendron integrifolium \N \N \N \N \N 50125 E.capensis Eugenia Eugenia capensis \N \N \N \N \N 50126 \N genus Putterlickia \N \N \N \N \N 50127 B.populifolia Bidens Bidens populifolia \N \N \N \N \N 50128 \N genus Agalmyla \N \N \N \N \N 50129 A.daghestanicum Allium Allium daghestanicum \N \N \N \N \N 50130 P.biaurita Psychotria Psychotria biaurita \N \N \N \N \N 50131 O.schlechteri Oryza Oryza schlechteri \N \N \N \N \N 50132 A.bifida Actaea Actaea bifida \N \N \N \N \N 50133 P.elata Peristeria Peristeria elata \N \N \N \N \N 50134 E.aucheri Euphorbia Euphorbia aucheri \N \N \N \N \N 50135 C.guazumifolia Campomanesia Campomanesia guazumifolia \N \N \N \N \N 50136 \N genus Garhadiolus \N \N \N \N \N 50137 C.canescens Carex Carex canescens \N \N \N \N \N 50138 P.6216 Palmorchis Palmorchis cf. silvicola Salazar 6216 \N \N \N \N \N 50139 R.baueri Rhopalostylis Rhopalostylis baueri \N \N \N \N \N 50140 M.hexasticha Myrcia Myrcia hexasticha \N \N \N \N \N 50141 S.melastomoides Solanum Solanum melastomoides \N \N \N \N \N 50142 D.kananaskia Draba Draba kananaskia \N \N \N \N \N 50143 \N subspecies Navarretia nigelliformis subsp. radians \N \N \N \N \N 50144 \N subspecies Avena barbata subsp. barbata \N \N \N \N \N 50145 \N genus Horsfordia \N \N \N \N \N 50146 A.integrifolium Astranthium Astranthium integrifolium \N \N \N \N \N 50147 U.JEES-2007 Urophyllum Urophyllum sp. 3 JEES-2007 \N \N \N \N \N 50148 \N genus Glischrocaryon \N \N \N \N \N 50149 E.crenatifolia Eurya Eurya crenatifolia \N \N \N \N \N 50150 P.aureosulcata Phyllostachys Phyllostachys aureosulcata \N \N \N \N \N 50151 \N genus Arnaldoa \N \N \N \N \N 50152 C.itatiaiae Cleistes Cleistes itatiaiae \N \N \N \N \N 50153 L.longiflorum Lilium Lilium longiflorum trumpet lily \N \N \N \N 50154 P.sagittatum Polygonum Polygonum sagittatum \N \N \N \N \N 50155 \N subspecies Najas guadalupensis subsp. olivacea \N \N \N \N \N 50156 S.burchellii Sparattanthelium Sparattanthelium burchellii \N \N \N \N \N 50157 B.arbuscula Brachypodium Brachypodium arbuscula \N \N \N \N \N 50158 G.appressa Gaultheria Gaultheria appressa \N \N \N \N \N 61599 \N genus Arthrostemma \N \N \N \N \N 50159 S.gaumeri Schizachyrium Schizachyrium gaumeri \N \N \N \N \N 50160 B.mollis Bauhinia Bauhinia mollis \N \N \N \N \N 50161 S.ungeri Silene Silene ungeri \N \N \N \N \N 50162 D.alternifolius Darwiniothamnus Darwiniothamnus alternifolius \N \N \N \N \N 50163 A.ellisii Aerangis Aerangis ellisii \N \N \N \N \N 50164 U.nemoralis Uncinia Uncinia nemoralis \N \N \N \N \N 50165 C.phoeniceus Callistemon Callistemon phoeniceus \N \N \N \N \N 50166 E.corrugata Etlingera Etlingera corrugata \N \N \N \N \N 50167 P.cornuta Prunus Prunus cornuta Himalayan bird cherry \N \N \N \N 50168 T.venulosum Thalictrum Thalictrum venulosum early meadowrue \N \N \N \N 50169 P.pilosa Pomaria Pomaria pilosa \N \N \N \N \N 50170 T.boliviana Trigonia Trigonia boliviana \N \N \N \N \N 50171 G.woronowii Galanthus Galanthus rizehensis x Galanthus woronowii \N \N \N \N \N 50172 S.buxifolia Scutia Scutia buxifolia \N \N \N \N \N 50173 C.neocaledonicum Coilochilus Coilochilus neocaledonicum \N \N \N \N \N 50174 U.rudis Urochloa Urochloa rudis \N \N \N \N \N 50175 R.eclecteum Rhododendron Rhododendron eclecteum \N \N \N \N \N 50176 S.grantii Synadenium Synadenium grantii \N \N \N \N \N 50177 L.410 Lagenaria Lagenaria sp. Njau et al. 410 \N \N \N \N \N 50178 F.virens Ficus Ficus virens huang ge shu,spotted fig \N \N \N \N 50179 D.rotundifolia Dombeya Dombeya rotundifolia \N \N \N \N \N 50180 H.ovata Heteropterys Heteropterys ovata \N \N \N \N \N 50181 C.sartwellii Carex Carex sartwellii \N \N \N \N \N 50182 S.muticum Satyrium Satyrium muticum \N \N \N \N \N 50183 \N subspecies Sidalcea malviflora subsp. laciniata \N \N \N \N \N 50184 \N genus Helwingia \N \N \N \N \N 50185 L.sabianensis Leandra Leandra sabianensis \N \N \N \N \N 50186 B.australis Baxteria Baxteria australis \N \N \N \N \N 50187 C.nymanii Cardamine Cardamine nymanii \N \N \N \N \N 50188 A.bellidifolia Arctotis Arctotis bellidifolia \N \N \N \N \N 50189 \N genus Chionachne \N \N \N \N \N 50190 E.EHR-2010 Eleocharis Eleocharis aff. smallii EHR-2010 \N \N \N \N \N 50191 G.discolor Guapira Guapira discolor \N \N \N \N \N 50192 I.horsfalliae Ipomoea Ipomoea horsfalliae Kuhio-vine,prince's vine \N \N \N \N 50193 S.scariosum Sisyrinchium Sisyrinchium scariosum \N \N \N \N \N 50194 H.palmeri Houstonia Houstonia palmeri \N \N \N \N \N 50195 C.glabella Cassytha Cassytha glabella \N \N \N \N \N 50196 C.wonganensis Conostylis Conostylis wonganensis \N \N \N \N \N 50197 A.dregei Androcymbium Androcymbium dregei \N \N \N \N \N 50198 E.lanuginosa Epacris Epacris lanuginosa \N \N \N \N \N 50199 P.vaseyi Potamogeton Potamogeton vaseyi \N \N \N \N \N 50200 \N subspecies Cuscuta approximata subsp. macranthera \N \N \N \N \N 50201 A.webbii Argyranthemum Argyranthemum webbii \N \N \N \N \N 50202 B.papyrifera Broussonetia Broussonetia papyrifera aka,gou shu,paper-mulberry \N \N \N \N 50203 P.toxophylla Pseudoarabidopsis Pseudoarabidopsis toxophylla \N \N \N \N \N 50204 S.jayorum Sclerotheca Sclerotheca jayorum \N \N \N \N \N 50205 C.maculata Cicuta Cicuta maculata \N \N \N \N \N 50206 A.marauensis Aechmea Aechmea marauensis \N \N \N \N \N 50207 M.hondurensis Miconia Miconia hondurensis \N \N \N \N \N 50208 S.mathiasiana Sciadotenia Sciadotenia mathiasiana \N \N \N \N \N 50209 P.magellanica Philesia Philesia magellanica \N \N \N \N \N 50210 T.strumosum Trichodiadema Trichodiadema strumosum \N \N \N \N \N 50211 P.surinamense Philodendron Philodendron surinamense \N \N \N \N \N 50212 \N subspecies Salvia dorrii subsp. mearnsii purple sage \N \N \N \N 50213 C.megalanthum Clinopodium Clinopodium megalanthum \N \N \N \N \N 50214 G.prochazkianum Gymnocalycium Gymnocalycium prochazkianum \N \N \N \N \N 50215 V.vicina Vicia Vicia vicina \N \N \N \N \N 50216 P.virginica Planodes Planodes virginica \N \N \N \N \N 50217 C.brunonis Centropappus Centropappus brunonis \N \N \N \N \N 50218 G.flavibracteata Globba Globba cf. flavibracteata \N \N \N \N \N 50219 T.myrmecophila Tachigali Tachigali myrmecophila \N \N \N \N \N 50220 C.patens Clematis Clematis patens \N \N \N \N \N 50221 Z.keayana Zehneria Zehneria keayana \N \N \N \N \N 50222 S.mexicana Serjania Serjania mexicana \N \N \N \N \N 50223 B.nivale Bellium Bellium nivale \N \N \N \N \N 50224 L.gouldiana Laelia Laelia gouldiana \N \N \N \N \N 50225 L.seubertii Luzula Luzula seubertii \N \N \N \N \N 50226 Y.baccata Yucca Yucca baccata \N \N \N \N \N 50227 P.taquetii Persicaria Persicaria taquetii \N \N \N \N \N 50228 S.compactus Sisyranthus Sisyranthus compactus \N \N \N \N \N 50229 P.gracilicaule Panicum Panicum gracilicaule \N \N \N \N \N 50230 H.epapposum Helichrysum Helichrysum epapposum \N \N \N \N \N 50231 C.roxburghii Chrysophyllum Chrysophyllum roxburghii \N \N \N \N \N 50232 C.taiwanianum Crepidiastrum Crepidiastrum taiwanianum \N \N \N \N \N 50233 N.sanderae Nicotiana Nicotiana langsdorffii x Nicotiana sanderae \N \N \N \N \N 50234 \N varietas Cercis canadensis var. canadensis \N \N \N \N \N 50235 T.139 Timonius Timonius sp. Persson 139 \N \N \N \N \N 50236 V.biflora Viola Viola biflora \N \N \N \N \N 50237 D.koolauense Dichanthelium Dichanthelium koolauense \N \N \N \N \N 50238 T.concinna Taurantha Taurantha concinna \N \N \N \N \N 50239 D.aemulum Dendrobium Dendrobium aemulum \N \N \N \N \N 50240 C.zempoaltepetlensis Castilleja Castilleja zempoaltepetlensis \N \N \N \N \N 50241 \N varietas Ligularia virgaurea var. oligocephala \N \N \N \N \N 50242 S.19710860 Saintpaulia Saintpaulia cf. ionantha 19710860 \N \N \N \N \N 50243 L.mooreana Lepidorrhachis Lepidorrhachis mooreana \N \N \N \N \N 50244 G.viscida Geraea Geraea viscida sticky desert-sunflower \N \N \N \N 50245 M.campestris Myrceugenia Myrceugenia campestris \N \N \N \N \N 50246 \N varietas Carex insaniae var. subdita \N \N \N \N \N 50247 C.farafanganensis Coffea Coffea farafanganensis \N \N \N \N \N 50248 S.ludwigii Schoenoxiphium Schoenoxiphium ludwigii \N \N \N \N \N 50249 O.pendula Ononis Ononis pendula \N \N \N \N \N 50250 M.leptophylla Mandevilla Mandevilla leptophylla \N \N \N \N \N 50251 T.loeflingianum Trisetum Trisetum loeflingianum \N \N \N \N \N 50252 T.copeyensis Telanthophora Telanthophora copeyensis \N \N \N \N \N 50253 C.euerganea Clavija Clavija euerganea \N \N \N \N \N 50254 B.brongniartii Bactris Bactris brongniartii \N \N \N \N \N 50255 \N tribe Teedieae \N \N \N \N \N 50256 S.odoratissima Sericanthe Sericanthe odoratissima \N \N \N \N \N 50257 I.thalictroides Isopyrum Isopyrum thalictroides \N \N \N \N \N 50258 A.pentandra Aristolochia Aristolochia pentandra \N \N \N \N \N 50259 \N genus Stenia \N \N \N \N \N 50260 E.bockii Elaeagnus Elaeagnus bockii \N \N \N \N \N 50261 \N varietas Sacoila lanceolata var. lanceolata \N \N \N \N \N 50262 \N genus Adromischus \N \N \N \N \N 50263 S.hypochra Shorea Shorea hypochra \N \N \N \N \N 50264 L.2610 Lycaste Lycaste cf. tricolor MB 2610 \N \N \N \N \N 50265 \N subspecies Clematoclethra scandens subsp. tomentella \N \N \N \N \N 50266 \N genus Brandisia \N \N \N \N \N 50267 P.patellifolia Pultenaea Pultenaea patellifolia \N \N \N \N \N 50268 P.incana Pteronia Pteronia incana \N \N \N \N \N 50269 P.lentus Penstemon Penstemon lentus \N \N \N \N \N 50270 M.vulgare Marrubium Marrubium vulgare white horehound \N \N \N \N 50271 \N genus Vella \N \N \N \N \N 50272 A.rubra Arctous Arctous rubra \N \N \N \N \N 50273 S.AK120009 Stelis Stelis sp. AK120009 \N \N \N \N \N 50274 T.disarticulata Tecticornia Tecticornia disarticulata \N \N \N \N \N 50275 \N varietas Ranunculus inamoenus var. alpeophilus \N \N \N \N \N 50276 \N varietas Mentzelia marginata var. cronquistii \N \N \N \N \N 50277 L.ovalifolius Leucopogon Leucopogon ovalifolius \N \N \N \N \N 50278 \N subspecies Rhipsalis paradoxa subsp. septentrionalis \N \N \N \N \N 50279 R.bracteosum Ribes Ribes bracteosum California black currant,stink currant \N \N \N \N 50280 G.integrifolia Grindelia Grindelia integrifolia \N \N \N \N \N 50281 L.schimperi Lotus Lotus schimperi \N \N \N \N \N 50282 S.organensis Symplocos Symplocos organensis \N \N \N \N \N 50283 I.hameliana Indoschulzia Indoschulzia hameliana \N \N \N \N \N 58814 \N genus Diegodendron \N \N \N \N \N 50284 \N subspecies Galium californicum subsp. flaccidum \N \N \N \N \N 50285 L.kingii Leucopoa Leucopoa kingii \N \N \N \N \N 50286 W.fidaiana Weingartia Weingartia fidaiana \N \N \N \N \N 50287 C.falklandica Calceolaria Calceolaria falklandica \N \N \N \N \N 50288 \N subspecies Gilia capitata subsp. chamissonis \N \N \N \N \N 50289 G.demeusei Guibourtia Guibourtia demeusei African rosewood,Cameroons copal,bubinga,ebana,paka \N \N \N \N 50290 C.falcata Comparettia Comparettia falcata \N \N \N \N \N 50291 P.coccinea Pachystachys Pachystachys coccinea \N \N \N \N \N 50292 Z.sessilifolium Zygophyllum Zygophyllum sessilifolium \N \N \N \N \N 50293 C.calpidicarpa Cyrtandra Cyrtandra calpidicarpa \N \N \N \N \N 50294 B.styracoides Bruinsmia Bruinsmia styracoides \N \N \N \N \N 50295 H.compressa Hemarthria Hemarthria compressa \N \N \N \N \N 50296 H.hookerianum Hypericum Hypericum hookerianum \N \N \N \N \N 50297 J.christianeae Janusia Janusia christianeae \N \N \N \N \N 50298 P.neotericus Penstemon Penstemon neotericus Plumas County beardtongue \N \N \N \N 50299 \N genus Guamatela \N \N \N \N \N 50300 V.katoi Vincetoxicum Vincetoxicum katoi \N \N \N \N \N 50301 \N subspecies Limnanthes alba subsp. parishii \N \N \N \N \N 50302 \N subspecies Arabis pubescens subsp. decumbens \N \N \N \N \N 50303 P.6421 Pelexia Pelexia sp. Salazar et al. 6421 \N \N \N \N \N 50304 S.milleri Sophronitis Sophronitis milleri \N \N \N \N \N 50305 H.heterophyllus Hibiscus Hibiscus heterophyllus native rosella,sorreltree \N \N \N \N 50306 \N subspecies Eragrostis mexicana subsp. virescens \N \N \N \N \N 50307 \N genus Empetrum \N \N \N \N \N 50308 A.zebrina Alocasia Alocasia zebrina \N \N \N \N \N 50309 O.streptacantha Opuntia Opuntia streptacantha \N \N \N \N \N 50310 L.michauxianus Lotus Lotus michauxianus \N \N \N \N \N 50311 \N genus Correa \N \N \N \N \N 50312 K.uniflora Kelseya Kelseya uniflora \N \N \N \N \N 50313 B.tuitensis Bessera Bessera tuitensis \N \N \N \N \N 50314 E.nevadensis Euphorbia Euphorbia nevadensis \N \N \N \N \N 50315 J.aporophylla Jacquiniella Jacquiniella aporophylla \N \N \N \N \N 50316 \N tribe Sabiceeae \N \N \N \N \N 50317 \N subfamily Xanthorrhoeoideae \N \N \N \N \N 50318 M.pauciflora Muhlenbergia Muhlenbergia pauciflora \N \N \N \N \N 50319 M.fallacina Macaranga Macaranga fallacina \N \N \N \N \N 50320 S.borealis Salix Salix borealis \N \N \N \N \N 50321 D.brevifolia Deschampsia Deschampsia brevifolia \N \N \N \N \N 50322 \N genus Lasiocarpus \N \N \N \N \N 50323 W.buiningiana Weingartia Weingartia buiningiana \N \N \N \N \N 50324 A.kelamensis Alocasia Alocasia sp. kelamensis \N \N \N \N \N 50325 P.lancifolia Paragenipa Paragenipa lancifolia \N \N \N \N \N 50326 R.roseus Rubus Rubus roseus \N \N \N \N \N 50327 \N genus Guaduella \N \N \N \N \N 50328 M.fulgens Maxillaria Maxillaria fulgens \N \N \N \N \N 50329 M.mizuho Morus Morus mizuho rui-sui mulberry \N \N \N \N 50330 X.19308 x Triticosecale x Triticosecale sp. Chase 19308 \N \N \N \N \N 50331 P.kyimbilaensis Pimpinella Pimpinella kyimbilaensis \N \N \N \N \N 50332 T.schumanniana Tabebuia Tabebuia schumanniana \N \N \N \N \N 50333 M.macowanii Merxmuellera Merxmuellera macowanii \N \N \N \N \N 50334 I.diabolica Isolepis Isolepis diabolica \N \N \N \N \N 50335 T.maclurei Tolypanthus Tolypanthus maclurei \N \N \N \N \N 50336 P.insolita Plerandra Plerandra insolita \N \N \N \N \N 50337 D.microphylla Digoniopterys Digoniopterys microphylla \N \N \N \N \N 50338 M.hahniana Mammillaria Mammillaria hahniana lady-of-Mexico cactus \N \N \N \N 50339 A.coriacea Atriplex Atriplex coriacea \N \N \N \N \N 50340 C.delicatus Chimonocalamus Chimonocalamus delicatus \N \N \N \N \N 50341 \N genus Genista woadwaxen \N \N \N \N 50342 S.seemannii Syzygium Syzygium seemannii \N \N \N \N \N 50343 P.exscapa Primula Primula exscapa \N \N \N \N \N 50344 G.delphinioides Gasteranthus Gasteranthus delphinioides \N \N \N \N \N 50345 \N genus Encholirium \N \N \N \N \N 50346 T.glabra Tofieldia Tofieldia glabra \N \N \N \N \N 50347 T.zambesiacus Triplochiton Triplochiton zambesiacus \N \N \N \N \N 50348 D.concanense Dipcadi Dipcadi concanense \N \N \N \N \N 50349 N.alatus Nabalus Nabalus alatus \N \N \N \N \N 50350 \N subspecies Descurainia pinnata subsp. pinnata \N \N \N \N \N 50351 S.hirta Scutellaria Scutellaria hirta \N \N \N \N \N 50352 C.amada Curcuma Curcuma amada \N \N \N \N \N 50353 P.glabra Pterisanthes Pterisanthes glabra \N \N \N \N \N 50354 P.canescens Podolepis Podolepis canescens \N \N \N \N \N 50355 F.pleioramosum Fagopyrum Fagopyrum pleioramosum \N \N \N \N \N 50356 O.middendorffii Oxytropis Oxytropis middendorffii \N \N \N \N \N 50357 S.canadensis Shepherdia Shepherdia canadensis \N \N \N \N \N 50358 P.mongolica Phlomis Phlomis mongolica \N \N \N \N \N 50359 E.umbelliflora Erica Erica umbelliflora \N \N \N \N \N 50360 Z.latifolia Zollernia Zollernia latifolia \N \N \N \N \N 50361 C.reticulata Citrus Citrus reticulata mandarin orange,tangerine \N \N \N \N 50362 D.tomentosus Dendrocalamus Dendrocalamus tomentosus \N \N \N \N \N 50363 R.inundata Ruellia Ruellia inundata \N \N \N \N \N 50364 O.lomonosowii Olgaea Olgaea lomonosowii \N \N \N \N \N 50365 C.polyandrus Croton Croton polyandrus \N \N \N \N \N 50366 E.argentea Erica Erica argentea \N \N \N \N \N 50367 D.affinis Dalechampia Dalechampia affinis \N \N \N \N \N 50368 C.schreberiana Cecropia Cecropia schreberiana \N \N \N \N \N 50369 E.bella Eleocharis Eleocharis bella \N \N \N \N \N 50370 B.reflexa Bletia Bletia reflexa \N \N \N \N \N 50371 H.virginicum Helenium Helenium virginicum Virginia sneezeweed \N \N \N \N 50372 \N genus Sericanthe \N \N \N \N \N 50373 C.arundinacea Cinna Cinna arundinacea \N \N \N \N \N 50374 Z.macrostachya Zoysia Zoysia macrostachya \N \N \N \N \N 50375 \N family Rhabdodendraceae \N \N \N \N \N 50376 F.orientalis Fagus Fagus orientalis \N \N \N \N \N 50377 T.elegans Tetramicra Tetramicra elegans \N \N \N \N \N 50378 C.medica Citrus Citrus maxima x Citrus medica \N \N \N \N \N 50379 N.altissima Neesia Neesia altissima \N \N \N \N \N 50380 R.makanjana Rotheca Rotheca makanjana \N \N \N \N \N 50381 \N subspecies Portulaca umbraticola subsp. lanceolata \N \N \N \N \N 50382 W.anethifolia Werdermannia Werdermannia anethifolia \N \N \N \N \N 50383 L.germanorum Lessingia Lessingia germanorum \N \N \N \N \N 50384 \N genus Diastema \N \N \N \N \N 50385 S.davyi Streptocarpus Streptocarpus davyi \N \N \N \N \N 50386 E.allioides Elaeosticta Elaeosticta allioides \N \N \N \N \N 50387 T.628Hnew unclassified Taraxacum Taraxacum (sect. Naevosa) sp. 628Hnew \N \N \N \N \N 50388 D.guatemalensis Donnellsmithia Donnellsmithia guatemalensis \N \N \N \N \N 50389 A.cannabina Althaea Althaea cannabina \N \N \N \N \N 50390 S.australe Stylobasium Stylobasium australe \N \N \N \N \N 50391 C.sinensis Cistanche Cistanche sinensis \N \N \N \N \N 50392 H.echioides Helminthotheca Helminthotheca echioides \N \N \N \N \N 50393 A.cretica Anchusella Anchusella cretica \N \N \N \N \N 50394 \N genus Lepidophyllum \N \N \N \N \N 50395 A.clypeolata Achillea Achillea clypeolata \N \N \N \N \N 50396 P.caramanicus Podocytisus Podocytisus caramanicus \N \N \N \N \N 50397 T.sylvestris Tulipa Tulipa sylvestris \N \N \N \N \N 50398 S.meridensis Smallanthus Smallanthus meridensis \N \N \N \N \N 50399 S.usambarense Schefflerodendron Schefflerodendron usambarense \N \N \N \N \N 50400 M.grandiflora Mussaenda Mussaenda grandiflora \N \N \N \N \N 50401 \N tribe Paraphlomideae \N \N \N \N \N 50402 H.sclerocarpum Heliotropium Heliotropium sclerocarpum \N \N \N \N \N 50403 \N genus Collinsonia \N \N \N \N \N 50404 \N genus Cachrys \N \N \N \N \N 50405 N.KN20 Nymphaea Nymphaea cf. mexicana KN20 \N \N \N \N \N 50406 \N genus Physokentia \N \N \N \N \N 50407 L.zeylanica Luisia Luisia zeylanica \N \N \N \N \N 50408 D.bulbifera Dioscorea Dioscorea bulbifera aerial yam,air-potato,potato yam \N \N \N \N 50409 R.mucronulatum Rhododendron Rhododendron mucronulatum \N \N \N \N \N 50410 C.phelypaea Cistanche Cistanche phelypaea \N \N \N \N \N 50411 C.tungurahuae Comparettia Comparettia tungurahuae \N \N \N \N \N 50412 P.microdictyus Phyllanthus Phyllanthus microdictyus \N \N \N \N \N 50413 G.ophioglossa Globba Globba ophioglossa \N \N \N \N \N 50414 Q.dentata Quercus Quercus dentata \N \N \N \N \N 50415 G.biloba Grewia Grewia biloba \N \N \N \N \N 50416 S.sphenophylla Salix Salix sphenophylla \N \N \N \N \N 50417 M.campestris Musa Musa campestris \N \N \N \N \N 50418 R.segetum Ridolfia Ridolfia segetum \N \N \N \N \N 50419 D.rugosum Dichapetalum Dichapetalum rugosum \N \N \N \N \N 50420 S.spinosa Saracha Saracha spinosa \N \N \N \N \N 50421 P.multicaule Pachypterygium Pachypterygium multicaule \N \N \N \N \N 50422 \N genus Erismadelphus \N \N \N \N \N 50423 \N subspecies Armeria ruscinonensis subsp. ruscinonensis \N \N \N \N \N 50424 P.bilocularis Pomaderris Pomaderris bilocularis \N \N \N \N \N 50425 S.marmarossiensis Soldanella Soldanella marmarossiensis \N \N \N \N \N 50426 M.1305 Mammea Mammea sp. Sweeney 1305 \N \N \N \N \N 50427 P.P107 Physalis Physalis sp. P107 \N \N \N \N \N 50428 C.fuscescens Croton Croton fuscescens \N \N \N \N \N 50429 C.klugii Chaubardia Chaubardia klugii \N \N \N \N \N 50430 S.vieillardii Spathoglottis Spathoglottis vieillardii \N \N \N \N \N 50431 P.schistorhiza Parakeelya Parakeelya schistorhiza \N \N \N \N \N 50432 M.bifolium Macrolobium Macrolobium bifolium \N \N \N \N \N 50433 C.DK-2009 Carapa Carapa sp. 27 DK-2009 \N \N \N \N \N 50434 E.dryophyllus Erigeron Erigeron dryophyllus \N \N \N \N \N 50435 \N genus Critonia \N \N \N \N \N 50436 H.fargesii Heracleum Heracleum fargesii \N \N \N \N \N 50437 \N varietas Chaetanthera microphylla var. microphylla \N \N \N \N \N 50438 \N genus Bryaspis \N \N \N \N \N 50439 P.serratum Prionium Prionium serratum \N \N \N \N \N 50440 T.CH_M53Sdcum Triticum Triticum sp. CH_M53Sdcum \N \N \N \N \N 50441 A.pseudocampanulata Atriplex Atriplex pseudocampanulata \N \N \N \N \N 50442 N.icarica Nigella Nigella icarica \N \N \N \N \N 50443 X.asphodeloides Xerophyllum Xerophyllum asphodeloides \N \N \N \N \N 50444 B.dimorpha Bouteloua Bouteloua dimorpha Acapulco grass \N \N \N \N 50445 \N subspecies Onosma echioides subsp. dalmatica \N \N \N \N \N 50446 S.091200/6-2 Salicornia Salicornia sp. Mucina 091200/6-2 \N \N \N \N \N 50447 D.madagascariensis Didierea Didierea madagascariensis \N \N \N \N \N 50448 P.edule Pangium Pangium edule \N \N \N \N \N 50449 A.infernalis Alocasia Alocasia infernalis \N \N \N \N \N 50450 P.caldaria Primula Primula caldaria \N \N \N \N \N 50451 \N varietas Oreomyrrhis involucrata var. pubescens \N \N \N \N \N 50452 A.caballeroi Armeria Armeria caballeroi \N \N \N \N \N 50453 \N genus Corymborkis \N \N \N \N \N 50454 P.mucronata Penaea Penaea mucronata \N \N \N \N \N 50455 A.kwangsiensis Aristolochia Aristolochia kwangsiensis \N \N \N \N \N 50456 S.hippomarathrum Seseli Seseli hippomarathrum \N \N \N \N \N 50457 C.ganderi Cylindropuntia Cylindropuntia ganderi \N \N \N \N \N 50458 E.yecorensis Eleocharis Eleocharis yecorensis \N \N \N \N \N 50459 C.verticillaris Cousinia Cousinia verticillaris \N \N \N \N \N 50460 P.lomentifera Piptadeniopsis Piptadeniopsis lomentifera \N \N \N \N \N 50461 F.baldschuanica Fallopia Fallopia baldschuanica \N \N \N \N \N 50462 S.cuspidata Swartzia Swartzia cuspidata \N \N \N \N \N 50463 I.viscidula Inula Inula viscidula \N \N \N \N \N 50464 E.lignosa Euphorbia Euphorbia lignosa \N \N \N \N \N 50465 \N tribe Browningieae \N \N \N \N \N 50466 \N varietas Gnaphalium luteoalbum var. compactum \N \N \N \N \N 50467 E.laevigatum Erucastrum Erucastrum laevigatum \N \N \N \N \N 50468 P.hasskarlii Pollia Pollia hasskarlii \N \N \N \N \N 50469 C.glanduligera Cardamine Cardamine glanduligera \N \N \N \N \N 50470 Z.capitata Ziziphora Ziziphora capitata \N \N \N \N \N 50471 Z.mauritiana Ziziphus Ziziphus mauritiana Chinese-date,Indian-plum,ber,beri,cottony jujube \N \N \N \N 50472 S.texanum Schoenocaulon Schoenocaulon texanum \N \N \N \N \N 50473 \N genus Tephrosia \N \N \N \N \N 50474 T.rariflorum Thesium Thesium rariflorum \N \N \N \N \N 50475 \N genus Gynura \N \N \N \N \N 50476 O.longistaminata Oryza Oryza sativa x Oryza longistaminata \N \N \N \N \N 50477 R.oligomeroides Reseda Reseda oligomeroides \N \N \N \N \N 50478 \N genus Gironniera \N \N \N \N \N 50479 \N varietas Mimosa gracilis var. invisiformis \N \N \N \N \N 50480 S.landbeckii Senecio Senecio landbeckii \N \N \N \N \N 50481 A.hastata Adenia Adenia hastata \N \N \N \N \N 50482 E.mainty Euphorbia Euphorbia mainty \N \N \N \N \N 50483 \N varietas Chenopodium berlandieri var. sinuatum \N \N \N \N \N 50484 F.praemorsa Ficinia Ficinia praemorsa \N \N \N \N \N 50485 \N genus Metasasa \N \N \N \N \N 50486 N.chubutensis Nassauvia Nassauvia chubutensis \N \N \N \N \N 50487 C.microphylla Coriaria Coriaria microphylla \N \N \N \N \N 50488 C.buraeavii Caiophora Caiophora buraeavii \N \N \N \N \N 50489 G.chiapasana Gymnolaena Gymnolaena chiapasana \N \N \N \N \N 50490 N.pentaphylla Neoachmandra Neoachmandra pentaphylla \N \N \N \N \N 50491 I.lindheimeri Ibervillea Ibervillea lindheimeri \N \N \N \N \N 50492 M.johnstonii Mimulus Mimulus johnstonii \N \N \N \N \N 50493 M.schaffneri Metastelma Metastelma schaffneri \N \N \N \N \N 50494 C.bipinnatifida Chiritopsis Chiritopsis bipinnatifida \N \N \N \N \N 50495 M.pusilliflora Matelea Matelea pusilliflora \N \N \N \N \N 50496 E.yuccifolium Eryngium Eryngium yuccifolium rattlesnake master,rattlesnake-master \N \N \N \N 50497 L.pileata Lonicera Lonicera pileata \N \N \N \N \N 50498 S.samoensis Solfia Solfia samoensis \N \N \N \N \N 50499 M.brevipedicellata Myrceugenia Myrceugenia brevipedicellata \N \N \N \N \N 50500 C.hirsuta Cyperochloa Cyperochloa hirsuta \N \N \N \N \N 50501 B.kweichowense Bupleurum Bupleurum kweichowense \N \N \N \N \N 50502 P.mirabilis Puya Puya mirabilis \N \N \N \N \N 50503 S.tenuispinum Solanum Solanum tenuispinum \N \N \N \N \N 50504 E.pycnophylla Espeletia Espeletia pycnophylla \N \N \N \N \N 50505 D.erinacea Diodonopsis Diodonopsis erinacea \N \N \N \N \N 50506 \N tribe Arabideae \N \N \N \N \N 50507 R.vlokii Rafnia Rafnia vlokii \N \N \N \N \N 50508 C.H1_18 Castilleja Castilleja sp. H1_18 \N \N \N \N \N 50509 K.melanthera Kengyilia Kengyilia melanthera \N \N \N \N \N 50510 S.emetica Secamone Secamone emetica \N \N \N \N \N 50511 A.hymenotheca Atriplex Atriplex hymenotheca \N \N \N \N \N 50512 C.robertsonii Calochilus Calochilus robertsonii \N \N \N \N \N 50513 C.nana Callitriche Callitriche nana \N \N \N \N \N 50514 S.spathellosum Steinchisma Steinchisma spathellosum \N \N \N \N \N 50515 S.nux-vomica Strychnos Strychnos nux-vomica \N \N \N \N \N 50516 D.staudtii Drypetes Drypetes staudtii \N \N \N \N \N 50517 P.habenarioides Pterichis Pterichis habenarioides \N \N \N \N \N 50518 \N genus Collinsia \N \N \N \N \N 50519 C.corifolia Cyanostegia Cyanostegia corifolia \N \N \N \N \N 50520 S.cordigera Serapias Serapias cordigera \N \N \N \N \N 50521 V.viminalis Ventilago Ventilago viminalis supplejack \N \N \N \N 50522 A.angulata Atriplex Atriplex angulata \N \N \N \N \N 50523 \N genus Trimenia \N \N \N \N \N 50524 I.gracilipes Iris Iris gracilipes \N \N \N \N \N 50525 A.inaequalis Arrabidaea Arrabidaea inaequalis \N \N \N \N \N 50526 P.stapfianum Panicum Panicum stapfianum \N \N \N \N \N 50527 C.polymorpha Canna Canna polymorpha \N \N \N \N \N 50528 A.ochranthum Anthurium Anthurium ochranthum \N \N \N \N \N 50529 B.bicolor Bursera Bursera bicolor \N \N \N \N \N 50530 B.odontites Bupleurum Bupleurum odontites \N \N \N \N \N 50531 J.sinclairii Jovellana Jovellana sinclairii \N \N \N \N \N 50532 \N tribe Hyoscyameae \N \N \N \N \N 50533 T.platycarpa Tephrosia Tephrosia platycarpa \N \N \N \N \N 50534 R.cyprius Rumex Rumex cyprius \N \N \N \N \N 50535 S.FS890 Strychnos Strychnos sp. FS890 \N \N \N \N \N 50536 P.roylei Pedicularis Pedicularis roylei \N \N \N \N \N 50537 R.wadanum Rhododendron Rhododendron wadanum \N \N \N \N \N 50538 F.neilsonii Fimbristylis Fimbristylis neilsonii \N \N \N \N \N 50539 O.articulata Oxalis Oxalis articulata \N \N \N \N \N 50540 C.galeata Cynorkis Cynorkis galeata \N \N \N \N \N 50541 P.diffusus Prismatocarpus Prismatocarpus diffusus \N \N \N \N \N 50542 \N genus Pachycormus \N \N \N \N \N 50543 \N genus Trigoniastrum \N \N \N \N \N 50544 F.gracilis Froelichia Froelichia gracilis \N \N \N \N \N 50545 C.vernacula Carex Carex vernacula \N \N \N \N \N 50546 A.coelestis Aechmea Aechmea coelestis \N \N \N \N \N 50547 A.obtusiloba Artemisia Artemisia obtusiloba \N \N \N \N \N 50548 L.discolor Leucas Leucas discolor \N \N \N \N \N 50549 \N subspecies Sarracenia rubra subsp. gulfensis \N \N \N \N \N 50550 \N genus Tetradium \N \N \N \N \N 50551 C.mackenziei Carex Carex mackenziei \N \N \N \N \N 50552 C.BS5611 Clusia Clusia sp. BS5611 \N \N \N \N \N 50553 I.gracilis Ipomoea Ipomoea gracilis \N \N \N \N \N 50554 B.baccata Begonia Begonia baccata \N \N \N \N \N 50555 M.sanguinea Musa Musa sanguinea \N \N \N \N \N 50556 M.griffithii Magnolia Magnolia griffithii \N \N \N \N \N 50557 S.graminea Stellaria Stellaria graminea \N \N \N \N \N 50558 G.macrocephala Gomphrena Gomphrena macrocephala \N \N \N \N \N 50559 F.orientalis Fragaria Fragaria orientalis \N \N \N \N \N 50560 T.consanguineum Tetramolopium Tetramolopium consanguineum \N \N \N \N \N 50561 C.argocalla Caladenia Caladenia argocalla \N \N \N \N \N 50562 \N genus Buchnera \N \N \N \N \N 50563 X.aphyllus Xerosiphon Xerosiphon aphyllus \N \N \N \N \N 50564 S.glycophylla Smilax Smilax glycophylla \N \N \N \N \N 50565 D.killipii Drymonia Drymonia killipii \N \N \N \N \N 50566 N.miniatus Narcissus Narcissus miniatus \N \N \N \N \N 50567 I.st-johnii Ixora Ixora st-johnii \N \N \N \N \N 50568 \N genus Weberocereus \N \N \N \N \N 50569 \N family Himantandraceae \N \N \N \N \N 50570 C.michoacana Carex Carex michoacana \N \N \N \N \N 50571 \N varietas Clarkia xantiana var. parviflora \N \N \N \N \N 50572 F.multiflora Fockea Fockea multiflora \N \N \N \N \N 50573 \N genus Papuasicyos \N \N \N \N \N 50574 D.brownii Dichapetalum Dichapetalum brownii \N \N \N \N \N 50575 \N genus Paramongaia \N \N \N \N \N 50576 S.'AB-95006' Senecio Senecio sp. 'AB-95006' \N \N \N \N \N 50577 P.elliptica Primula Primula elliptica \N \N \N \N \N 50578 E.obovata Ericameria Ericameria obovata \N \N \N \N \N 50579 \N genus Brunellia \N \N \N \N \N 50580 P.madagascariensis Pentatropis Pentatropis madagascariensis \N \N \N \N \N 50581 B.pancherii Bikkia Bikkia pancherii \N \N \N \N \N 50582 S.canescens Sinningia Sinningia canescens \N \N \N \N \N 50583 \N genus Selysia \N \N \N \N \N 50584 \N varietas Calopogon tuberosus var. simpsonii \N \N \N \N \N 50585 M.tomentosa Miconia Miconia tomentosa \N \N \N \N \N 50586 A.pendula Alnus Alnus pendula \N \N \N \N \N 50587 N.densiflora Nepenthes Nepenthes densiflora \N \N \N \N \N 50588 W.purpurascens Whytockia Whytockia purpurascens \N \N \N \N \N 50589 \N genus Siloxerus \N \N \N \N \N 50590 R.montana Rhodophiala Rhodophiala montana \N \N \N \N \N 50591 C.imberbe Combretum Combretum imberbe \N \N \N \N \N 50592 A.rugosa Alpinia Alpinia rugosa \N \N \N \N \N 50593 P.mauritiana Polystachya Polystachya mauritiana \N \N \N \N \N 50594 A.assadii Allium Allium assadii \N \N \N \N \N 50595 \N subspecies Deverra denudata subsp. aphylla \N \N \N \N \N 50596 S.speciosa Sterculia Sterculia speciosa \N \N \N \N \N 50597 \N genus Jubaeopsis \N \N \N \N \N 50598 D.septemloba Dioscorea Dioscorea septemloba \N \N \N \N \N 50599 P.praeclara Platanthera Platanthera praeclara Great Plains white fringed orchid,Western prairie fringed orchid \N \N \N \N 50600 P.deformis Pheladenia Pheladenia deformis \N \N \N \N \N 50601 C.habrantha Couepia Couepia habrantha \N \N \N \N \N 50602 P.heptaphylla Parthenocissus Parthenocissus heptaphylla \N \N \N \N \N 50603 S.pronum Solanum Solanum pronum \N \N \N \N \N 50604 E.vagans Euonymus Euonymus vagans \N \N \N \N \N 50605 A.tessmannii Alloplectus Alloplectus tessmannii \N \N \N \N \N 50606 M.sericea Mundulea Mundulea sericea \N \N \N \N \N 50607 A.mesanthera Alpinia Alpinia mesanthera \N \N \N \N \N 50608 A.lehmanniana Atriplex Atriplex lehmanniana \N \N \N \N \N 50609 \N subspecies Teucrium flavum subsp. flavum \N \N \N \N \N 50610 T.balcanicus Tragopogon Tragopogon balcanicus \N \N \N \N \N 50611 L.spinescens Leptospermum Leptospermum spinescens \N \N \N \N \N 50612 R.cassius Ranunculus Ranunculus cassius \N \N \N \N \N 50613 T.ciliata Tabernaemontana Tabernaemontana ciliata \N \N \N \N \N 50614 G.tomentosus Goniothalamus Goniothalamus tomentosus \N \N \N \N \N 50615 M.sample environmental samples Taxonomy:1096688 Myristicaceae environmental sample \N \N \N \N \N 50616 P.3109 Pyrolirion Pyrolirion sp. Meerow 3109 \N \N \N \N \N 50617 C.MW-2003 Caiophora Caiophora cf. pterosperma MW-2003 \N \N \N \N \N 50618 R.nitidum Rhaponticum Rhaponticum nitidum \N \N \N \N \N 50619 C.lopezsocasii Convolvulus Convolvulus lopezsocasii \N \N \N \N \N 50620 M.brachytricha Macaranga Macaranga brachytricha \N \N \N \N \N 50621 C.parlatoris Colchicum Colchicum parlatoris \N \N \N \N \N 50622 P.chilensis Prosopis Prosopis chilensis Chilean mesquite \N \N \N \N 50623 M.sericea Montiopsis Montiopsis sericea \N \N \N \N \N 50624 A.menziesiana Astelia Astelia menziesiana \N \N \N \N \N 50625 S.angustatum Syngonium Syngonium angustatum \N \N \N \N \N 50626 \N varietas Penstemon davidsonii var. menziesii \N \N \N \N \N 50627 L.verticillata Lachemilla Lachemilla verticillata \N \N \N \N \N 50628 A.longiloba Alocasia Alocasia longiloba \N \N \N \N \N 50629 P.leandrianus Petalodiscus Petalodiscus leandrianus \N \N \N \N \N 50630 V.viride Veratrum Veratrum viride green false hellebore \N \N \N \N 50631 G.melanandrum Geranium Geranium melanandrum \N \N \N \N \N 50632 G.resiniflua Gardenia Gardenia resiniflua \N \N \N \N \N 50633 S.chlorantha Strychnos Strychnos chlorantha \N \N \N \N \N 50634 M.angulata Montanoa Montanoa angulata \N \N \N \N \N 50635 A.brancifolia Alocasia Alocasia brancifolia \N \N \N \N \N 50636 \N genus Patosia \N \N \N \N \N 50637 C.javanicus Cucumis Cucumis javanicus \N \N \N \N \N 50638 N.pseudocalycina Neonauclea Neonauclea pseudocalycina \N \N \N \N \N 50639 D.draconis Dendrobium Dendrobium draconis \N \N \N \N \N 50640 A.microphylla Astilbe Astilbe microphylla \N \N \N \N \N 50641 \N genus Chorisepalum \N \N \N \N \N 50642 I.maackii Iris Iris maackii \N \N \N \N \N 50643 B.santosii Brodriguesia Brodriguesia santosii \N \N \N \N \N 50644 F.excorticata Fuchsia Fuchsia excorticata \N \N \N \N \N 50645 V.revoluta Viguiera Viguiera revoluta \N \N \N \N \N 50646 G.aruensis Goniothalamus Goniothalamus aruensis \N \N \N \N \N 50647 A.bloomeri Achnatherum Achnatherum x bloomeri \N \N \N \N \N 50648 C.beuckeri Cryptanthus Cryptanthus beuckeri \N \N \N \N \N 50649 C.multicolor Collinsia Collinsia multicolor \N \N \N \N \N 50650 E.turczaninowii Euphorbia Euphorbia turczaninowii \N \N \N \N \N 50651 M.preissiana Melaleuca Melaleuca preissiana \N \N \N \N \N 50652 C.congestus Cyclopogon Cyclopogon congestus \N \N \N \N \N 50653 S.dioicum Solanum Solanum dioicum \N \N \N \N \N 50654 M.vitifolia Merremia Merremia vitifolia \N \N \N \N \N 50655 A.grandiflorum Aethionema Aethionema grandiflorum \N \N \N \N \N 50656 V.quinqueradiata Viguiera Viguiera quinqueradiata \N \N \N \N \N 50657 D.larreoides Dodonaea Dodonaea larreoides \N \N \N \N \N 50658 \N genus Drosera sundews \N \N \N \N 50659 I.capnoides Iris Iris capnoides \N \N \N \N \N 50660 \N genus Pugionium \N \N \N \N \N 50661 M.guatemalensis Magnolia Magnolia guatemalensis \N \N \N \N \N 50662 \N family Chrysobalanaceae \N \N \N \N \N 50663 A.barbujana Apollonias Apollonias barbujana \N \N \N \N \N 50664 C.barbata Coelogyne Coelogyne barbata \N \N \N \N \N 50665 T.544 unclassified Taraxacum Taraxacum (sect. Kashmirana) sp. 544 \N \N \N \N \N 50666 N.lithophila Neoparrya Neoparrya lithophila \N \N \N \N \N 50667 A.dichotoma Aristida Aristida dichotoma \N \N \N \N \N 50668 L.xanthostachya Leandra Leandra xanthostachya \N \N \N \N \N 50669 \N genus Jancaea \N \N \N \N \N 50670 S.pojarkovae Salicornia Salicornia pojarkovae \N \N \N \N \N 50671 \N genus Cyttaranthus \N \N \N \N \N 50672 B.CEH-2010 Bulbostylis Bulbostylis sp. CEH-2010 \N \N \N \N \N 50673 B.humblotii Bulbophyllum Bulbophyllum humblotii \N \N \N \N \N 50674 F.sp. Fagraea Fagraea sp. \N \N \N \N \N 50675 S.poissonii Sphedamnocarpus Sphedamnocarpus poissonii \N \N \N \N \N 50676 I.rosenbachiana Iris Iris rosenbachiana \N \N \N \N \N 50677 C.arisanensis Calanthe Calanthe arisanensis \N \N \N \N \N 50678 T.diffusa Tremandra Tremandra diffusa \N \N \N \N \N 50679 F.minutistipula Fagonia Fagonia minutistipula \N \N \N \N \N 50680 D.janthina Dionysia Dionysia janthina \N \N \N \N \N 50681 L.floribundus Lyonothamnus Lyonothamnus floribundus \N \N \N \N \N 50682 P.cultivar Paphiopedilum Paphiopedilum hybrid cultivar \N \N \N \N \N 50683 P.claytonii Panicum Panicum claytonii \N \N \N \N \N 50684 A.nagarum Aconitum Aconitum nagarum \N \N \N \N \N 50685 P.BL-2011c Psychotria Psychotria sp. BL-2011c \N \N \N \N \N 50686 S.stellatum Sphaerocardamum Sphaerocardamum stellatum \N \N \N \N \N 50687 C.williamsii Conimitella Conimitella williamsii \N \N \N \N \N 50688 \N varietas Polystachya vulcanica var. aconitiflora \N \N \N \N \N 50689 I.griffithiana Indorouchera Indorouchera griffithiana \N \N \N \N \N 50690 M.aurita Mnesithea Mnesithea aurita \N \N \N \N \N 50691 V.barroetana Viola Viola barroetana \N \N \N \N \N 50692 U.oblita Urochloa Urochloa oblita \N \N \N \N \N 50693 C.pulchella Cuitlauzina Cuitlauzina pulchella \N \N \N \N \N 50694 S.spinulosa Syreitschikovia Syreitschikovia spinulosa \N \N \N \N \N 50695 G.mimuloides Goodenia Goodenia mimuloides \N \N \N \N \N 50696 T.carinatus Tachiadenus Tachiadenus carinatus \N \N \N \N \N 50697 L.crispilabia Laelia Laelia crispilabia \N \N \N \N \N 50698 \N varietas Mimosa diplotricha var. diplotricha \N \N \N \N \N 50699 H.gymnocephalum Hieracium Hieracium gymnocephalum \N \N \N \N \N 50700 P.obovata Psychotria Psychotria obovata \N \N \N \N \N 50701 T.montanum Teucrium Teucrium montanum \N \N \N \N \N 50702 T.minor Tribonanthes Tribonanthes minor \N \N \N \N \N 50703 G.engysiphon Gladiolus Gladiolus engysiphon \N \N \N \N \N 50704 B.diosmifolia Baeckea Baeckea diosmifolia \N \N \N \N \N 50705 S.rehderiana Sinojackia Sinojackia rehderiana \N \N \N \N \N 50706 \N subspecies Genista cinerea subsp. speciosa \N \N \N \N \N 50707 B.heterophylla Boronia Boronia heterophylla \N \N \N \N \N 50708 H.dura Hebenstretia Hebenstretia dura \N \N \N \N \N 50709 A.hintoniana Achimenes Achimenes hintoniana \N \N \N \N \N 50710 \N genus Bathiorhamnus \N \N \N \N \N 50711 S.intricata Saxifraga Saxifraga intricata \N \N \N \N \N 50712 S.stellativelutinum Solanum Solanum stellativelutinum \N \N \N \N \N 50713 C.squarrosa Cleistogenes Cleistogenes squarrosa \N \N \N \N \N 50714 C.biaurita Cobaea Cobaea biaurita \N \N \N \N \N 50715 V.arcturus Verbascum Verbascum arcturus \N \N \N \N \N 50716 C.pentaclada Cissus Cissus pentaclada \N \N \N \N \N 50717 P.scortechinii Pinanga Pinanga scortechinii \N \N \N \N \N 50718 S.capitata Sphenotoma Sphenotoma capitata \N \N \N \N \N 50719 A.albidula Actephila Actephila albidula \N \N \N \N \N 50720 C.fuchsiifolia Cuphea Cuphea fuchsiifolia \N \N \N \N \N 50721 E.elliotii Euphorbia Euphorbia elliotii \N \N \N \N \N 50722 P.grevei Pentopetia Pentopetia grevei \N \N \N \N \N 50723 H.montelinasanum Helichrysum Helichrysum montelinasanum \N \N \N \N \N 50724 D.pyramidale Delphinium Delphinium pyramidale \N \N \N \N \N 50725 R.nuttallii Rhododendron Rhododendron nuttallii \N \N \N \N \N 50726 M.breviseta Muhlenbergia Muhlenbergia breviseta \N \N \N \N \N 50727 D.viride Dipcadi Dipcadi viride \N \N \N \N \N 50728 G.jensii Gagea Gagea jensii \N \N \N \N \N 50729 A.pauciflora Acronychia Acronychia pauciflora \N \N \N \N \N 50730 C.05-232 Callicarpa Callicarpa sp. Leeratiwong 05-232 \N \N \N \N \N 50731 D.xantholeucum Delphinium Delphinium xantholeucum \N \N \N \N \N 61600 \N genus Mesospinidium \N \N \N \N \N 50732 \N subspecies Arctostaphylos stanfordiana subsp. raichei \N \N \N \N \N 50733 T.acutifolius Tripodanthus Tripodanthus acutifolius \N \N \N \N \N 50734 I.amorphoides Indigofera Indigofera amorphoides \N \N \N \N \N 50735 T.kiusianum Thalictrum Thalictrum kiusianum \N \N \N \N \N 50736 P.longistylosum Polypleurum Polypleurum longistylosum \N \N \N \N \N 50737 V.hexandra Vancouveria Vancouveria hexandra \N \N \N \N \N 50738 P.MAJ-674 Piper Piper sp. 1 MAJ-674 \N \N \N \N \N 50739 \N subspecies Rorippa islandica subsp. islandica \N \N \N \N \N 50740 \N varietas Mimosa adamantina var. adamantina \N \N \N \N \N 50741 R.viscosissimum Ribes Ribes viscosissimum sticky currant \N \N \N \N 50742 B.salteri Babiana Babiana salteri \N \N \N \N \N 50743 L.linearis Lupinus Lupinus linearis \N \N \N \N \N 50744 C.fockeana Clusia Clusia fockeana \N \N \N \N \N 50745 V.AB-2009 Vanilla Vanilla cf. phalaenopsis AB-2009 \N \N \N \N \N 50746 F.U151-17 Fraxinus Fraxinus sp. U151-17 \N \N \N \N \N 50747 M.palmeri Mimosa Mimosa palmeri \N \N \N \N \N 50748 S.lanata Strychnos Strychnos lanata \N \N \N \N \N 50749 T.93-204 Tetrorchidium Tetrorchidium cf. macrophyllum Bell et al. 93-204 \N \N \N \N \N 50750 L.ornduffii Lasthenia Lasthenia ornduffii \N \N \N \N \N 50751 T.JRI-2009 Tripsacum Tripsacum sp. JRI-2009 \N \N \N \N \N 50752 B.lasiantha Boucerosia Boucerosia lasiantha \N \N \N \N \N 50753 P.rugosa Primula Primula rugosa \N \N \N \N \N 50754 B.liukiuensis Buxus Buxus liukiuensis \N \N \N \N \N 50755 F.johannis Ficus Ficus johannis \N \N \N \N \N 50756 W.afghanica Winklera Winklera afghanica \N \N \N \N \N 50757 R.tuberosa Ruellia Ruellia tuberosa \N \N \N \N \N 50758 N.GTC-2001 Nemcia Nemcia sp. GTC-2001 \N \N \N \N \N 50759 M.glabra Mitrephora Mitrephora glabra \N \N \N \N \N 50760 S.solisii Solanum Solanum solisii \N \N \N \N \N 50761 T.'Yadav_Kerala' Theriophonum Theriophonum sp. 'Yadav_Kerala' \N \N \N \N \N 50762 C.polypodiifolia Centaurea Centaurea polypodiifolia \N \N \N \N \N 50763 I.henryi Iris Iris henryi \N \N \N \N \N 59105 \N genus Appunia \N \N \N \N \N 50764 C.graecum Cicer Cicer graecum \N \N \N \N \N 50765 M.lasiophylla Micromeria Micromeria lasiophylla \N \N \N \N \N 50766 \N subspecies Scorzonera hispanica subsp. crispatula \N \N \N \N \N 50767 \N family Ulmaceae elm family \N \N \N \N 50768 D.tomentosa Ditassa Ditassa tomentosa \N \N \N \N \N 50769 B.lobata Begonia Begonia lobata \N \N \N \N \N 50770 E.macrophylla Eriotheca Eriotheca macrophylla \N \N \N \N \N 50771 A.autumnalis Acis Acis autumnalis autumn snowflake \N \N \N \N 50772 T.australis Tribeles Tribeles australis \N \N \N \N \N 50773 A.martinicensis Aegiphila Aegiphila martinicensis \N \N \N \N \N 50774 R.guatemalensis Rumfordia Rumfordia guatemalensis \N \N \N \N \N 50775 G.latifolia Gyminda Gyminda latifolia \N \N \N \N \N 50776 \N subspecies Gasteranthus calcaratus subsp. oncogastrus \N \N \N \N \N 50777 \N genus Oncocalamus \N \N \N \N \N 50778 \N genus Japonolirion \N \N \N \N \N 50779 C.s.n. Cynorkis Cynorkis sp. Szlachetko s.n. \N \N \N \N \N 50780 C.lechleri Cleome Cleome lechleri \N \N \N \N \N 50781 \N family Anisophylleaceae \N \N \N \N \N 50782 \N genus Endlicheria \N \N \N \N \N 50783 I.nematopoda Ixora Ixora nematopoda \N \N \N \N \N 50784 F.japonica Forsythia Forsythia japonica \N \N \N \N \N 50785 V.aphylla Voyria Voyria aphylla ghostplant \N \N \N \N 50786 G.popovii Gontscharovia Gontscharovia popovii \N \N \N \N \N 50787 V.96.701 Vitis Vitis sp. CWD 96.701 \N \N \N \N \N 50788 D.trulla Dichaea Dichaea trulla \N \N \N \N \N 50789 P.ischnoclada Passiflora Passiflora ischnoclada \N \N \N \N \N 50790 B.negrosensis Begonia Begonia negrosensis \N \N \N \N \N 50791 S.phyllodinea Senna Senna phyllodinea \N \N \N \N \N 50792 \N varietas Phalacroseris bolanderi var. coronata \N \N \N \N \N 50793 S.mukorossi Sapindus Sapindus mukorossi Chinese soapberry,dodan,mukuroji,soapnut \N \N \N \N 50794 U.minutiflora Urceola Urceola minutiflora \N \N \N \N \N 50795 \N subspecies Acer campbellii subsp. flabellatum \N \N \N \N \N 50796 S.chionophora Saussurea Saussurea chionophora \N \N \N \N \N 50797 \N genus Valantia \N \N \N \N \N 50798 R.hirsutoglandulosa Ruellia Ruellia hirsutoglandulosa \N \N \N \N \N 50799 E.intricatum Elachanthemum Elachanthemum intricatum \N \N \N \N \N 50800 \N genus Pseudorlaya \N \N \N \N \N 50801 D.sylvaticum Delphinium Delphinium sylvaticum \N \N \N \N \N 50802 R.cardiosepala Rochelia Rochelia cardiosepala \N \N \N \N \N 50803 P.nitidum Piper Piper nitidum \N \N \N \N \N 50804 P.cyathophorus Penstemon Penstemon cyathophorus \N \N \N \N \N 50805 \N genus Amphorogyne \N \N \N \N \N 50806 I.longitubus Isodon Isodon longitubus \N \N \N \N \N 50807 A.dangarensis Acacia Acacia dangarensis \N \N \N \N \N 50808 C.renda Cyrtostachys Cyrtostachys renda \N \N \N \N \N 50809 A.jesdianum Allium Allium jesdianum \N \N \N \N \N 50810 C.xerantica Carex Carex xerantica \N \N \N \N \N 50811 \N genus Neogoezia \N \N \N \N \N 50812 B.kurzii Blumeodendron Blumeodendron kurzii \N \N \N \N \N 50813 P.mikweiensis Persea Persea mikweiensis \N \N \N \N \N 50814 C.orbiculata Cotyledon Cotyledon orbiculata \N \N \N \N \N 50815 D.plocamoides Dicheranthus Dicheranthus plocamoides \N \N \N \N \N 50816 V.dirimliensis Viola Viola dirimliensis \N \N \N \N \N 50817 P.reticulata Pseuduvaria Pseuduvaria reticulata \N \N \N \N \N 50818 H.incrassatus Haenianthus Haenianthus incrassatus \N \N \N \N \N 50819 C.monspeliensis Cistus Cistus monspeliensis \N \N \N \N \N 50820 S.ecklonii Stellarioides Stellarioides ecklonii \N \N \N \N \N 50821 R.pimpinellifolius Ranunculus Ranunculus pimpinellifolius \N \N \N \N \N 50822 \N genus Cupania \N \N \N \N \N 50823 O.fontana Oxalis Oxalis fontana \N \N \N \N \N 50824 F.rukam Flacourtia Flacourtia rukam \N \N \N \N \N 50825 C.sargentii Crataegus Crataegus sargentii \N \N \N \N \N 50826 \N genus Chlidanthus \N \N \N \N \N 50827 N.confertifolia Neolitsea Neolitsea confertifolia \N \N \N \N \N 50828 \N genus Elephantopus \N \N \N \N \N 50829 P.gymnoclada Phacelia Phacelia gymnoclada \N \N \N \N \N 50830 \N subspecies Calceolaria corymbosa subsp. floccosa \N \N \N \N \N 50831 \N genus Mibora \N \N \N \N \N 50832 T.caracassana Triplaris Triplaris caracassana \N \N \N \N \N 50833 \N genus Rubrivena \N \N \N \N \N 50834 C.coreana Corylopsis Corylopsis coreana \N \N \N \N \N 50835 E.crinitum Erodium Erodium crinitum \N \N \N \N \N 50836 C.ASTP-2011 Coprosma Coprosma sp. ASTP-2011 \N \N \N \N \N 50837 D.pernyi Disporopsis Disporopsis pernyi \N \N \N \N \N 50838 I.pseudosinicus Indocalamus Indocalamus pseudosinicus \N \N \N \N \N 50839 F.graminea Fosterella Fosterella graminea \N \N \N \N \N 50840 \N genus Sideritis \N \N \N \N \N 50841 P.anolidurus Piptadenia Piptadenia anolidurus \N \N \N \N \N 50842 E.EHR-2010 Eleocharis Eleocharis aff. dombeyana EHR-2010 \N \N \N \N \N 50843 C.hohenackeri Cenchrus Cenchrus hohenackeri \N \N \N \N \N 50844 \N varietas Phedimus aizoon var. floribundus \N \N \N \N \N 50845 L.EBK-2007a Lobelia Lobelia sp. EBK-2007a \N \N \N \N \N 50846 M.carminea Metrosideros Metrosideros carminea \N \N \N \N \N 50847 B.granitica Babingtonia Babingtonia granitica \N \N \N \N \N 50848 \N genus Anchusa \N \N \N \N \N 50849 F.BG-2009 Fissistigma Fissistigma cf. acuminatissimum BG-2009 \N \N \N \N \N 50850 R.elephas Rhynchocorys Rhynchocorys elephas \N \N \N \N \N 50851 E.janszii Erodium Erodium janszii \N \N \N \N \N 50852 P.drummondii Phlox Phlox drummondii \N \N \N \N \N 50853 P.umbellifera Pseudohandelia Pseudohandelia umbellifera \N \N \N \N \N 50854 B.rapa Brassica Brassica rapa field mustard \N \N \N \N 50855 C.cilicium Cyclamen Cyclamen cilicium \N \N \N \N \N 50856 S.angusta Soldanella Soldanella angusta \N \N \N \N \N 50857 \N genus Monocostus \N \N \N \N \N 50858 \N genus Amphisiphon \N \N \N \N \N 50859 P.membranacea Psychotria Psychotria membranacea \N \N \N \N \N 50860 I.shikokianus Isodon Isodon shikokianus \N \N \N \N \N 50861 \N genus Pleurothallis \N \N \N \N \N 50862 S.calicotricha Schaueria Schaueria calicotricha \N \N \N \N \N 50863 E.crassipes Euphorbia Euphorbia crassipes \N \N \N \N \N 50864 P.chapadense Panicum Panicum chapadense \N \N \N \N \N 50865 P.chiriquiensis Psychotria Psychotria chiriquiensis \N \N \N \N \N 50866 R.ichangensis Rubus Rubus ichangensis \N \N \N \N \N 50867 B.andina Brachtia Brachtia andina \N \N \N \N \N 50868 M.meridensis Miconia Miconia meridensis \N \N \N \N \N 50869 M.correllii Matelea Matelea correllii \N \N \N \N \N 50870 I.glaucescens Iris Iris glaucescens \N \N \N \N \N 50871 B.guadalupensis Baeriopsis Baeriopsis guadalupensis \N \N \N \N \N 50872 C.punctatum Centratherum Centratherum punctatum \N \N \N \N \N 50873 H.chejuense Hypericum Hypericum chejuense \N \N \N \N \N 50874 M.longipilum Melampodium Melampodium longipilum \N \N \N \N \N 50875 \N genus Leptosiphon \N \N \N \N \N 50876 A.chinense Alangium Alangium chinense \N \N \N \N \N 50877 \N genus Prionotes \N \N \N \N \N 50878 L.1419 Ledebouria Ledebouria sp. Wetschnig 1419 \N \N \N \N \N 50879 R.verrucosa Reynoldsia Reynoldsia verrucosa \N \N \N \N \N 50880 \N genus Hickelia \N \N \N \N \N 50881 P.raimondoi Parkinsonia Parkinsonia raimondoi \N \N \N \N \N 50882 R.grayi Ranunculus Ranunculus grayi \N \N \N \N \N 50883 T.praecox Thlaspi Thlaspi praecox \N \N \N \N \N 50884 A.limbata Anchusa Anchusa limbata \N \N \N \N \N 50885 E.conzattii Euphorbia Euphorbia conzattii \N \N \N \N \N 50886 E.scaposum Eryngium Eryngium scaposum \N \N \N \N \N 50887 B.oblongifolia Banksia Banksia oblongifolia \N \N \N \N \N 50888 C.nutans Cyclolobium Cyclolobium nutans \N \N \N \N \N 50889 G.calciphila Gynura Gynura calciphila \N \N \N \N \N 50890 \N genus Faucaria \N \N \N \N \N 50891 S.tomentosa Strychnos Strychnos tomentosa \N \N \N \N \N 50892 I.ioides Impatiens Impatiens ioides \N \N \N \N \N 50893 C.coccinea Castela Castela coccinea \N \N \N \N \N 50894 \N genus Ochradenus \N \N \N \N \N 50895 G.juncea Galvezia Galvezia juncea \N \N \N \N \N 50896 \N varietas Miconia ceramicarpa var. crozierae \N \N \N \N \N 50897 K.corymbosa Keckiella Keckiella corymbosa redwood keckiella \N \N \N \N 50898 A.josiae Arabis Arabis josiae \N \N \N \N \N 50899 C.striatula Carex Carex striatula \N \N \N \N \N 50900 C.mauritianum Crinum Crinum mauritianum \N \N \N \N \N 50901 S.japonica Sabia Sabia japonica \N \N \N \N \N 50902 I.pritzelii Impatiens Impatiens pritzelii \N \N \N \N \N 50903 \N genus Nothoscordum \N \N \N \N \N 50904 P.lemaireanus Phyllocosmus Phyllocosmus lemaireanus \N \N \N \N \N 50905 \N subspecies Pentameris airoides subsp. airoides \N \N \N \N \N 50906 \N genus Hexachlamys \N \N \N \N \N 50907 P.pruinosa Pleiostachya Pleiostachya pruinosa \N \N \N \N \N 50908 Z.856 Zygophyllum Zygophyllum sp. Bellstedt 856 \N \N \N \N \N 50909 A.macroclinidioides Ainsliaea Ainsliaea macroclinidioides \N \N \N \N \N 50910 L.sociorum Lachnaea Lachnaea sociorum \N \N \N \N \N 50911 B.DRC-2004 Brownea Brownea sp. DRC-2004 \N \N \N \N \N 50912 H.leucorhoda Hoya Hoya leucorhoda \N \N \N \N \N 50913 P.munroi Primula Primula munroi \N \N \N \N \N 50914 E.fageticola Epipactis Epipactis fageticola \N \N \N \N \N 50915 M.aq-mur_tub Myriophyllum Myriophyllum cf. muricatum aq-mur_tub \N \N \N \N \N 50916 \N genus Micraira \N \N \N \N \N 50917 D.macrophylla Diphysa Diphysa macrophylla \N \N \N \N \N 50918 N.ovata Notelaea Notelaea ovata \N \N \N \N \N 50919 P.flexuosus Phyllanthus Phyllanthus flexuosus \N \N \N \N \N 50920 T.K3661 unclassified Taraxacum Taraxacum (sect. Sinensia) sp. K3661 \N \N \N \N \N 50921 A.pogonantha Arenaria Arenaria pogonantha \N \N \N \N \N 50922 M.argentata Microcos Microcos argentata \N \N \N \N \N 50923 S.latifolia Stevia Stevia latifolia \N \N \N \N \N 50924 G.ridleyi Goniothalamus Goniothalamus ridleyi \N \N \N \N \N 50925 A.stellata Abatia Abatia stellata \N \N \N \N \N 50926 D.ramulosa Draba Draba ramulosa Tushar Mountain draba \N \N \N \N 50927 W.urens Wigandia Wigandia urens \N \N \N \N \N 50928 D.moricandiana Duguetia Duguetia moricandiana \N \N \N \N \N 50929 \N genus Persea \N \N \N \N \N 50930 C.24169-SF Craterispermum Craterispermum sp. 3 24169-SF \N \N \N \N \N 50931 C.tunicatum Cynanchum Cynanchum tunicatum \N \N \N \N \N 50932 C.fendleri Chusquea Chusquea fendleri \N \N \N \N \N 50933 S.tuquerrense Solanum Solanum tuquerrense \N \N \N \N \N 50934 B.maraja Bactris Bactris maraja \N \N \N \N \N 50935 \N varietas Vigna pubigera var. pubigera \N \N \N \N \N 50936 S.inaequidens Senecio Senecio inaequidens \N \N \N \N \N 50937 Q.2006363 Quercus Quercus sp. Denk & Grimm 2006363 \N \N \N \N \N 50938 C.tomentosus Carphephorus Carphephorus tomentosus \N \N \N \N \N 50939 G.brasiliensis Gonatogyne Gonatogyne brasiliensis \N \N \N \N \N 50940 L.meyeriana Lebeckia Lebeckia meyeriana \N \N \N \N \N 50941 \N subspecies Eleocharis uniglumis subsp. sterneri \N \N \N \N \N 50942 S.aristata Salvia Salvia aristata \N \N \N \N \N 50943 O.pubipedicellatus Osmanthus Osmanthus pubipedicellatus \N \N \N \N \N 50944 \N genus Sphenostylis \N \N \N \N \N 50945 S.paniculata Saundersia Saundersia paniculata \N \N \N \N \N 50946 S.cardiosperma Senna Senna cardiosperma \N \N \N \N \N 50947 C.calcitrapae Centranthus Centranthus calcitrapae \N \N \N \N \N 50948 P.tancarvilleae Phaius Phaius tancarvilleae \N \N \N \N \N 50949 D.L239 Draba Draba sp. L239 \N \N \N \N \N 50950 M.fulviceps Mitrocereus Mitrocereus fulviceps \N \N \N \N \N 50951 L.korolkowii Lonicera Lonicera korolkowii \N \N \N \N \N 50952 V.baillonii Veratrilla Veratrilla baillonii \N \N \N \N \N 50953 M.tessellata Macaranga Macaranga tessellata \N \N \N \N \N 50954 P.globoideum Paspalidium Paspalidium globoideum \N \N \N \N \N 50955 L.socialis Ledebouria Ledebouria socialis \N \N \N \N \N 50956 \N genus Whipplea \N \N \N \N \N 50957 P.deustus Penstemon Penstemon deustus \N \N \N \N \N 50958 P.ionantha Pinguicula Pinguicula ionantha violet butterwort \N \N \N \N 50959 V.minima Vigna Vigna minima \N \N \N \N \N 50960 L.carnosa Lotononis Lotononis carnosa \N \N \N \N \N 59686 \N genus Lindernia \N \N \N \N \N 50961 \N varietas Banksia spinulosa var. collina \N \N \N \N \N 50962 S.arbuscula Salvia Salvia arbuscula \N \N \N \N \N 50963 C.bungeana Celtis Celtis bungeana Bunge hackberry \N \N \N \N 50964 \N genus Neurachne \N \N \N \N \N 50965 M.foveolata Miconia Miconia foveolata Puerto Rico johnnyberry \N \N \N \N 50966 R.cymosa Rondeletia Rondeletia cymosa \N \N \N \N \N 50967 V.fauriae Vicia Vicia fauriae \N \N \N \N \N 50968 E.humifusa Euphorbia Euphorbia humifusa \N \N \N \N \N 50969 D.findlayanum Dendrobium Dendrobium findlayanum Findlay's orchid \N \N \N \N 50970 B.rotundifolia Boykinia Boykinia rotundifolia \N \N \N \N \N 50971 A.hondala Adenia Adenia hondala \N \N \N \N \N 50972 D.wilsonii Dioclea Dioclea wilsonii \N \N \N \N \N 50973 N.longibracteata Nepeta Nepeta longibracteata \N \N \N \N \N 50974 L.litseifolius Lithocarpus Lithocarpus litseifolius \N \N \N \N \N 50975 P.fontiqueriana Pinguicula Pinguicula fontiqueriana \N \N \N \N \N 50976 \N genus Bunochilus \N \N \N \N \N 50977 C.forrestii Chamelaucium Chamelaucium forrestii \N \N \N \N \N 50978 V.mexicana Vigethia Vigethia mexicana \N \N \N \N \N 50979 M.peruviana Macbrideina Macbrideina peruviana \N \N \N \N \N 50980 \N varietas Orobanche cernua var. cumana \N \N \N \N \N 50981 L.curtisii Luisia Luisia curtisii \N \N \N \N \N 50982 B.zabeliana Berberis Berberis zabeliana \N \N \N \N \N 50983 M.dubia Muhlenbergia Muhlenbergia dubia \N \N \N \N \N 50984 M.cadereytensis Mammillaria Mammillaria cadereytensis \N \N \N \N \N 50985 D.gracilis Daucus Daucus gracilis \N \N \N \N \N 50986 E.fasciculatum Eriogonum Eriogonum fasciculatum \N \N \N \N \N 50987 H.pinnatum Heterosperma Heterosperma pinnatum \N \N \N \N \N 50988 \N subspecies Olea europaea subsp. cuspidata \N \N \N \N \N 50989 C.serratifolia Cyrtandra Cyrtandra serratifolia \N \N \N \N \N 50990 \N genus Polystachya \N \N \N \N \N 50991 W.lima Wangenheimia Wangenheimia lima \N \N \N \N \N 50992 S.marminorensis Sideritis Sideritis marminorensis \N \N \N \N \N 50993 \N subspecies Stackhousia aspericocca subsp. aspericocca \N \N \N \N \N 50994 O.estradae Oncidium Oncidium estradae \N \N \N \N \N 50995 \N genus Cacosmia \N \N \N \N \N 50996 S.atrata Saxifraga Saxifraga atrata \N \N \N \N \N 50997 \N genus Streptosiphon \N \N \N \N \N 50998 R.moorei Rubus Rubus moorei \N \N \N \N \N 50999 A.tricolor Amaranthus Amaranthus tricolor Chinese spinach,tampala \N \N \N \N 51000 P.spongiocaule Pericalymma Pericalymma spongiocaule \N \N \N \N \N 51001 \N genus Coilonox \N \N \N \N \N 51002 \N genus Danthoniastrum \N \N \N \N \N 51003 P.ferreyrae Psychotria Psychotria ferreyrae \N \N \N \N \N 51004 D.incarnata Dactylorhiza Dactylorhiza incarnata \N \N \N \N \N 51005 G.striata Glyceria Glyceria striata \N \N \N \N \N 51006 C.aurita Campanula Campanula aurita \N \N \N \N \N 51007 H.seravschanicus Hyssopus Hyssopus seravschanicus \N \N \N \N \N 51008 S.comosa Staavia Staavia comosa \N \N \N \N \N 51009 C.lineare Cynanchum Cynanchum lineare \N \N \N \N \N 51010 P.mollicomum Pelargonium Pelargonium mollicomum \N \N \N \N \N 51011 D.semiscandens Dendrocalamus Dendrocalamus semiscandens \N \N \N \N \N 51012 T.cacondensis Tricalysia Tricalysia cacondensis \N \N \N \N \N 51013 O.hygrophila Oxalis Oxalis hygrophila \N \N \N \N \N 51014 M.haemantha Malesherbia Malesherbia haemantha \N \N \N \N \N 51015 G.1048 Gurania Gurania sp. 10 Steele 1048 \N \N \N \N \N 51016 \N subspecies Crepis vesicaria subsp. vesicaria \N \N \N \N \N 51017 F.paulayana Fagonia Fagonia paulayana \N \N \N \N \N 51018 M.grahamii Mammillaria Mammillaria grahamii \N \N \N \N \N 51019 I.cassine Ilex Ilex cassine dahoon \N \N \N \N 51020 A.aucherii Atriplex Atriplex aucherii \N \N \N \N \N 51021 R.chartacea Ruellia Ruellia chartacea \N \N \N \N \N 51022 L.aphanoides Lachemilla Lachemilla aphanoides \N \N \N \N \N 51023 R.tengku-adlinii Rafflesia Rafflesia tengku-adlinii \N \N \N \N \N 51024 \N subspecies Podostemum rutifolium subsp. rutifolium \N \N \N \N \N 51025 C.henryi Cirsium Cirsium henryi \N \N \N \N \N 51026 D.goldschmidtianum Dendrobium Dendrobium goldschmidtianum \N \N \N \N \N 51027 \N genus Triplachne \N \N \N \N \N 51028 B.rupestris Brachysiphon Brachysiphon rupestris \N \N \N \N \N 51029 C.acerbianum Clerodendrum Clerodendrum acerbianum \N \N \N \N \N 51030 A.ovalifolium Aspidoglossum Aspidoglossum ovalifolium \N \N \N \N \N 51031 L.CDB-2011 unclassified Livistoninae Livistoninae sp. CDB-2011 \N \N \N \N \N 51032 \N genus Remirea \N \N \N \N \N 51033 C.racemosa Curculigo Curculigo racemosa \N \N \N \N \N 51034 G.paraguayense Gymnocalycium Gymnocalycium paraguayense \N \N \N \N \N 51035 O.lycoctoni Orobanche Orobanche lycoctoni \N \N \N \N \N 51036 T.citrifolia Tabernaemontana Tabernaemontana citrifolia \N \N \N \N \N 51037 \N genus Hedbergia \N \N \N \N \N 51038 R.KEJ-2009 Rumex Rumex cf. obtusifolius KEJ-2009 \N \N \N \N \N 51039 H.empetrifolia Hibbertia Hibbertia empetrifolia \N \N \N \N \N 51040 M.subcorymbosa Miconia Miconia subcorymbosa \N \N \N \N \N 51041 V.insolitum Veratrum Veratrum insolitum \N \N \N \N \N 51042 G.comptonii Gladiolus Gladiolus comptonii \N \N \N \N \N 51043 P.albidus Penstemon Penstemon albidus \N \N \N \N \N 51044 P.collina Pilostyles Pilostyles collina \N \N \N \N \N 51045 G.glandulifera Gavilea Gavilea glandulifera \N \N \N \N \N 51046 T.alpestre Teucrium Teucrium alpestre \N \N \N \N \N 51047 M.schaeferi Manulea Manulea schaeferi \N \N \N \N \N 51048 I.drepanophora Impatiens Impatiens drepanophora \N \N \N \N \N 51049 N.NY434 Nymphaea Nymphaea cf. carpentariae NY434 \N \N \N \N \N 51050 M.capitata Melaleuca Melaleuca capitata \N \N \N \N \N 51051 \N genus Cryptothladia \N \N \N \N \N 51052 C.australasicum Cullen Cullen australasicum \N \N \N \N \N 51053 D.TNS:L-17 Dalzellia Dalzellia sp. TNS:L-17 \N \N \N \N \N 51054 M.dispersus Mallotus Mallotus dispersus \N \N \N \N \N 51055 \N family Berberidaceae barberry family \N \N \N \N 51056 \N genus Ceroxylon \N \N \N \N \N 51057 \N genus Brachychloa \N \N \N \N \N 51059 C.glabrata Craspedia Craspedia glabrata \N \N \N \N \N 51060 H.pluricaule Hylotelephium Hylotelephium pluricaule \N \N \N \N \N 51061 R.inops Regelia Regelia inops \N \N \N \N \N 51062 O.volubilis Oligactis Oligactis volubilis \N \N \N \N \N 51063 O.variegata Ononis Ononis variegata \N \N \N \N \N 51064 F.virosa Flueggea Flueggea virosa \N \N \N \N \N 51065 G.papuana Gardenia Gardenia papuana \N \N \N \N \N 51066 G.caucasicus Gladiolus Gladiolus caucasicus \N \N \N \N \N 51067 J.neotropica Juglans Juglans neotropica \N \N \N \N \N 51068 Z.indica Zanonia Zanonia indica \N \N \N \N \N 51069 A.elongatus Aponogeton Aponogeton elongatus \N \N \N \N \N 51070 C.rechingeri Cicer Cicer rechingeri \N \N \N \N \N 51071 \N genus Nastus \N \N \N \N \N 51072 P.standleyi Passiflora Passiflora standleyi \N \N \N \N \N 51073 P.superbus Paepalanthus Paepalanthus superbus \N \N \N \N \N 51074 N.pascoensis Nasa Nasa pascoensis \N \N \N \N \N 51075 R.corylifolia Rulingia Rulingia corylifolia \N \N \N \N \N 51076 A.cirrhatum Arthropodium Arthropodium cirrhatum \N \N \N \N \N 51077 Y.queretaroensis Yucca Yucca queretaroensis \N \N \N \N \N 51078 C.canariensis Canarina Canarina canariensis \N \N \N \N \N 51079 H.wightii Hoya Hoya wightii \N \N \N \N \N 51080 M.ramulosa Muhlenbergia Muhlenbergia ramulosa \N \N \N \N \N 51081 V.hispanica Vaccaria Vaccaria hispanica cow herb \N \N \N \N 51082 C.roderickii Ceanothus Ceanothus roderickii \N \N \N \N \N 51083 A.s.n. Angylocalyx Angylocalyx sp. Pennington s.n. \N \N \N \N \N 51084 C.clandonensis Caryopteris Caryopteris x clandonensis \N \N \N \N \N 51085 P.papillionaceum Pelargonium Pelargonium papillionaceum \N \N \N \N \N 51086 C.crenulata Coprosma Coprosma crenulata \N \N \N \N \N 51087 C.glandulifera Corylopsis Corylopsis glandulifera \N \N \N \N \N 51088 E.deltoidea Euphorbia Euphorbia deltoidea \N \N \N \N \N 51089 \N genus Bleekrodea \N \N \N \N \N 51090 S.CD12-2 Stachys Stachys sp. CD12-2 \N \N \N \N \N 51091 \N genus Pyrenaria \N \N \N \N \N 51092 C.granulosus Centropogon Centropogon granulosus \N \N \N \N \N 51093 C.englerianus Ctenolophon Ctenolophon englerianus \N \N \N \N \N 51094 \N subspecies Argemone turnerae subsp. turnerae \N \N \N \N \N 51095 N.fossalis Navarretia Navarretia fossalis \N \N \N \N \N 51096 S.celastrineus Siphonodon Siphonodon celastrineus \N \N \N \N \N 51097 M.rubicunda Marsdenia Marsdenia rubicunda \N \N \N \N \N 51098 Q.turbinata Quararibea Quararibea turbinata \N \N \N \N \N 51099 A.longecassidatum Aconitum Aconitum longecassidatum \N \N \N \N \N 51100 M.henryi Maianthemum Maianthemum henryi \N \N \N \N \N 51101 P.gilliesii Philibertia Philibertia gilliesii \N \N \N \N \N 51102 \N varietas Mimulus nanus var. mephiticus \N \N \N \N \N 51103 \N subtribe Sporobolinae \N \N \N \N \N 51104 A.leptalea Acacia Acacia leptalea \N \N \N \N \N 51105 P.grandifolium Philodendron Philodendron grandifolium \N \N \N \N \N 51106 \N genus Kalaharia \N \N \N \N \N 51107 C.sciadephora Chazaliella Chazaliella sciadephora \N \N \N \N \N 51108 A.tatarinowii Acorus Acorus tatarinowii \N \N \N \N \N 51109 R.tessmannii Randia Randia tessmannii \N \N \N \N \N 51110 T.S5109 unclassified Taraxacum Taraxacum (sect. Calanthodia) sp. S5109 \N \N \N \N \N 51111 C.verrucosa Coelogyne Coelogyne verrucosa \N \N \N \N \N 51112 C.argentea Coccothrinax Coccothrinax argentea broom palm,yuraguana \N \N \N \N 51113 O.namaquensis Orbea Orbea namaquensis \N \N \N \N \N 51114 E.pachysantha Euphorbia Euphorbia pachysantha \N \N \N \N \N 51115 \N genus Euryomyrtus \N \N \N \N \N 51116 \N genus Douglasia \N \N \N \N \N 51117 L.macranthus Leonurus Leonurus macranthus \N \N \N \N \N 51118 S.occidentalis Suaeda Suaeda occidentalis \N \N \N \N \N 51119 R.haastii Ranunculus Ranunculus haastii \N \N \N \N \N 51120 \N varietas Oxytropis arctica var. arctica \N \N \N \N \N 51121 G.bayrianum Gymnocalycium Gymnocalycium bayrianum \N \N \N \N \N 51122 \N varietas Sinocrassula indica var. luteorubra \N \N \N \N \N 51123 \N genus Orthosiphon \N \N \N \N \N 51124 E.candicans Echinopsis Echinopsis candicans \N \N \N \N \N 51125 E.aquatica Ehretia Ehretia aquatica \N \N \N \N \N 51126 M.guatemalense Mortoniodendron Mortoniodendron guatemalense \N \N \N \N \N 51127 E.liebmannii Egletes Egletes liebmannii \N \N \N \N \N 51128 S.EBC65 Syzygium Syzygium sp. EBC65 \N \N \N \N \N 51129 M.claussenii Mimosa Mimosa claussenii \N \N \N \N \N 51130 B.microcarpum Bunium Bunium microcarpum \N \N \N \N \N 51131 C.chrysochlora Cousinia Cousinia chrysochlora \N \N \N \N \N 51132 D.scoparia Deverra Deverra scoparia \N \N \N \N \N 51133 S.bolusii Streptocarpus Streptocarpus bolusii \N \N \N \N \N 51134 N.cissiflora Nectandra Nectandra cissiflora \N \N \N \N \N 51135 B.laniflora Bassia Bassia laniflora \N \N \N \N \N 51136 P.bergii Panicum Panicum bergii \N \N \N \N \N 51137 M.dentatus Melilotus Melilotus dentatus \N \N \N \N \N 51138 \N genus Takhtajaniantha \N \N \N \N \N 51139 M.AM25 Mirbelia Mirbelia sp. AM25 \N \N \N \N \N 51140 B.tenax Baumea Baumea tenax \N \N \N \N \N 51141 \N genus Castellanosia \N \N \N \N \N 51142 O.parryi Oxytropis Oxytropis parryi \N \N \N \N \N 51143 O.macrobotryum Ophiorrhiziphyllon Ophiorrhiziphyllon macrobotryum \N \N \N \N \N 51144 Q.faginea Quercus Quercus faginea \N \N \N \N \N 51145 D.elegans Desmodium Desmodium elegans \N \N \N \N \N 51146 S.schomburgkii Sericocalyx Sericocalyx schomburgkii \N \N \N \N \N 51147 E.palmeri Ericameria Ericameria palmeri \N \N \N \N \N 51148 \N subspecies Phlox glaberrima subsp. interior \N \N \N \N \N 51149 G.713 Globba Globba sp. Lindstrom 713 \N \N \N \N \N 51150 D.reclinata Dombeya Dombeya reclinata \N \N \N \N \N 51151 D.cultivar Dahlia Dahlia hybrid cultivar \N \N \N \N \N 51152 \N genus Hirtzia \N \N \N \N \N 51153 C.pallidulus Croton Croton pallidulus \N \N \N \N \N 51154 B.macrocephala Bomarea Bomarea macrocephala \N \N \N \N \N 51155 \N genus Pittosporum \N \N \N \N \N 51156 S.marizii Silene Silene marizii \N \N \N \N \N 60173 \N genus Peixotoa \N \N \N \N \N 51157 P.reticulatus Phaseolus Phaseolus reticulatus \N \N \N \N \N 51158 C.humilis Copiapoa Copiapoa humilis \N \N \N \N \N 51159 B.austrotaiwanensis Begonia Begonia austrotaiwanensis \N \N \N \N \N 51160 C.praetermissa Cyrtorchis Cyrtorchis praetermissa \N \N \N \N \N 51161 S.havanense Solanum Solanum havanense \N \N \N \N \N 51162 P.carnosula Porterella Porterella carnosula \N \N \N \N \N 51163 E.humidicola Eragrostis Eragrostis humidicola \N \N \N \N \N 51164 P.simensis Primula Primula simensis \N \N \N \N \N 51165 E.albida Eleocharis Eleocharis albida \N \N \N \N \N 51166 T.kirilowii Tridactylina Tridactylina kirilowii \N \N \N \N \N 51167 \N varietas Acacia luederitzii var. retinens \N \N \N \N \N 51168 S.obcordatum Sedum Sedum obcordatum \N \N \N \N \N 51169 O.subterraneum Ombrophytum Ombrophytum subterraneum \N \N \N \N \N 51170 \N genus Blennospora \N \N \N \N \N 51171 L.velutiniflora Leptodermis Leptodermis velutiniflora \N \N \N \N \N 51172 T.gracilis Tinnea Tinnea gracilis \N \N \N \N \N 51173 P.brevipuberula Psychotria Psychotria brevipuberula \N \N \N \N \N 51174 C.racemosa Cuphea Cuphea racemosa \N \N \N \N \N 51175 \N forma Rhipsalis dissimilis f. dissimilis \N \N \N \N \N 51176 A.glomerulans Alchemilla Alchemilla glomerulans \N \N \N \N \N 51177 B.intermedius Bromus Bromus intermedius \N \N \N \N \N 51178 N.roborowskii Nitraria Nitraria roborowskii \N \N \N \N \N 51179 C.polyanthum Cynanchum Cynanchum polyanthum \N \N \N \N \N 51180 B.lupulinum Bulbophyllum Bulbophyllum lupulinum \N \N \N \N \N 51181 L.calcarata Lonicera Lonicera calcarata \N \N \N \N \N 51182 M.melintangensis Macrosolen Macrosolen melintangensis \N \N \N \N \N 51183 S.2355 Sphyrastylis Sphyrastylis sp. Dalstrom 2355 \N \N \N \N \N 51184 B.juergensii Briza Briza juergensii \N \N \N \N \N 51185 C.eatonii Cirsium Cirsium eatonii \N \N \N \N \N 51186 C.assamica Cissus Cissus assamica \N \N \N \N \N 51187 G.lurida Graphorkis Graphorkis lurida \N \N \N \N \N 51188 E.curvula Eragrostis Eragrostis curvula Boer love grass,weeping love grass \N \N \N \N 51189 T.eusepala Tabernaemontana Tabernaemontana eusepala \N \N \N \N \N 51190 H.argentea Hyalis Hyalis argentea \N \N \N \N \N 51191 \N genus Ravenala \N \N \N \N \N 51192 Q.senescens Quercus Quercus senescens \N \N \N \N \N 51193 T.filifolia Tenicroa Tenicroa filifolia \N \N \N \N \N 51194 S.tinctorium Sisyrinchium Sisyrinchium tinctorium \N \N \N \N \N 51195 \N subspecies Gladiolus permeabilis subsp. edulis \N \N \N \N \N 51196 D.longissimum Dasylirion Dasylirion longissimum \N \N \N \N \N 51197 F.albomarginata Frasera Frasera albomarginata \N \N \N \N \N 51198 N.coriacea Nectandra Nectandra coriacea \N \N \N \N \N 51199 T.physanthum Trifolium Trifolium physanthum \N \N \N \N \N 51200 P.175 Ponera Ponera cf. striata Cassio 175 \N \N \N \N \N 51201 C.hoodii Carex Carex hoodii \N \N \N \N \N 51202 G.intermedia Garcinia Garcinia intermedia \N \N \N \N \N 51203 I.alata Inga Inga alata \N \N \N \N \N 51204 F.rufescens Fraxinus Fraxinus rufescens \N \N \N \N \N 51205 L.hancei Lithocarpus Lithocarpus hancei \N \N \N \N \N 51206 H.sphaerocarpa Hemsleya Hemsleya sphaerocarpa \N \N \N \N \N 51207 \N subspecies Acharagma roseanum subsp. galeanense \N \N \N \N \N 51208 B.emendata Besleria Besleria emendata \N \N \N \N \N 51209 C.beetlei Croton Croton beetlei \N \N \N \N \N 51210 C.androstemma Conostylis Conostylis androstemma \N \N \N \N \N 51211 C.savalanica Campanula Campanula savalanica \N \N \N \N \N 51212 H.crassipes Hoya Hoya crassipes \N \N \N \N \N 51213 A.australe Acanthospermum Acanthospermum australe \N \N \N \N \N 51214 \N genus Notopora \N \N \N \N \N 51215 S.lanata Symplocos Symplocos lanata \N \N \N \N \N 51216 E.onopordum Echinops Echinops onopordum \N \N \N \N \N 51217 \N genus Nipponanthemum \N \N \N \N \N 51218 R.orbicularifolia Reevesia Reevesia orbicularifolia \N \N \N \N \N 51219 F.tikoua Ficus Ficus tikoua \N \N \N \N \N 51221 C.austriacus Chamaecytisus Chamaecytisus austriacus \N \N \N \N \N 51222 M.alpinum Melolobium Melolobium alpinum \N \N \N \N \N 51223 O.thyrsoides Ornithogalum Ornithogalum thyrsoides chinkerinchee \N \N \N \N 51224 C.rosei Cymopterus Cymopterus rosei \N \N \N \N \N 51225 S.lanata Strobilanthes Strobilanthes lanata \N \N \N \N \N 51226 R.stellatus Rubus Rubus stellatus \N \N \N \N \N 51227 D.moschatum Dendrobium Dendrobium moschatum \N \N \N \N \N 51228 N.alta Nerine Nerine alta \N \N \N \N \N 51229 I.cuneifolia Ipomoea Ipomoea cuneifolia \N \N \N \N \N 51230 K.latifolia Klasea Klasea latifolia \N \N \N \N \N 51231 \N subspecies Ononis spinosa subsp. masquillierii \N \N \N \N \N 51232 S.scaberrima Shorea Shorea scaberrima \N \N \N \N \N 51233 A.himalaica Aucuba Aucuba himalaica \N \N \N \N \N 51234 R.malacophylla Ruellia Ruellia malacophylla \N \N \N \N \N 51235 T.takil Trachycarpus Trachycarpus takil \N \N \N \N \N 51236 C.alpina Chloraea Chloraea alpina \N \N \N \N \N 51237 C.discolor Calanthe Calanthe discolor \N \N \N \N \N 51238 H.LR-2011 Hedychium Hedychium sp. LR-2011 \N \N \N \N \N 51239 E.micromera Euphorbia Euphorbia micromera \N \N \N \N \N 51240 S.homogyniphyllus Sinosenecio Sinosenecio homogyniphyllus \N \N \N \N \N 51241 S.inflexum Schizodium Schizodium inflexum \N \N \N \N \N 51242 P.villosula Potentilla Potentilla villosula \N \N \N \N \N 51243 M.careyana Micranthes Micranthes careyana \N \N \N \N \N 51244 T.axillariflora Tsoongia Tsoongia axillariflora \N \N \N \N \N 51245 L.procera Laetia Laetia procera \N \N \N \N \N 51246 I.latifolia Ilex Ilex latifolia tara-yo \N \N \N \N 51247 D.densiflora Disa Disa cf. densiflora \N \N \N \N \N 51248 \N genus Petteria \N \N \N \N \N 51249 E.maximilianii Erica Erica maximilianii \N \N \N \N \N 51250 \N genus Pseudonemacladus \N \N \N \N \N 51251 \N no rank unclassified Paniceae \N \N \N \N \N 51252 S.vaseyi Salvia Salvia vaseyi \N \N \N \N \N 51253 P.acutissimus Phyllanthus Phyllanthus acutissimus \N \N \N \N \N 51254 F.karatavica Ferula Ferula karatavica \N \N \N \N \N 51255 A.spica-venti Apera Apera spica-venti common wind grass,silky-bent grass \N \N \N \N 51256 B.silletensis Begonia Begonia silletensis \N \N \N \N \N 51257 C.recta Carex Carex recta \N \N \N \N \N 51258 M.reverchonii Mercurialis Mercurialis reverchonii \N \N \N \N \N 51259 N.murudensis Nepenthes Nepenthes murudensis \N \N \N \N \N 51260 \N genus Chikusichloa \N \N \N \N \N 51261 \N genus Astrotrichilia \N \N \N \N \N 51262 C.meeusei Cucumis Cucumis meeusei \N \N \N \N \N 51263 R.oblongifolia Riencourtia Riencourtia oblongifolia \N \N \N \N \N 51264 P.solfiana Psychotria Psychotria solfiana \N \N \N \N \N 51265 D.lehmannii Dussia Dussia lehmannii \N \N \N \N \N 51266 M.ligulata Miconia Miconia ligulata \N \N \N \N \N 51267 W.odorata Wurmbea Wurmbea odorata \N \N \N \N \N 51268 A.samoiedorum Artemisia Artemisia samoiedorum \N \N \N \N \N 51269 P.medusula Pseudosabicea Pseudosabicea medusula \N \N \N \N \N 51270 E.polytricha Eragrostis Eragrostis polytricha \N \N \N \N \N 51271 \N genus Uribea \N \N \N \N \N 51272 C.pubituberculatus Cucumis Cucumis pubituberculatus \N \N \N \N \N 51273 \N genus Schtschurowskia \N \N \N \N \N 51274 C.cloiselii Carphalea Carphalea cloiselii \N \N \N \N \N 51275 S.thomsonii Sorbus Sorbus thomsonii \N \N \N \N \N 51276 E.cinereum Eriocaulon Eriocaulon cinereum \N \N \N \N \N 51277 C.pittieri Cestrum Cestrum pittieri \N \N \N \N \N 51278 M.albicephalus Micranthocereus Micranthocereus albicephalus \N \N \N \N \N 51279 G.brasiliensis Galianthe Galianthe brasiliensis \N \N \N \N \N 51280 S.rodriguezii Senecio Senecio rodriguezii \N \N \N \N \N 51281 C.JHL-2011 Cypripedium Cypripedium aff. tibeticum JHL-2011 \N \N \N \N \N 51282 \N varietas Protea angolensis var. divaricata \N \N \N \N \N 51283 \N genus Nevillea \N \N \N \N \N 51284 I.fargesii Ilex Ilex fargesii \N \N \N \N \N 51285 \N genus Phyllostachys \N \N \N \N \N 51286 C.obtecta Crotalaria Crotalaria obtecta \N \N \N \N \N 51287 V.awabuki Viburnum Viburnum awabuki \N \N \N \N \N 51288 E.phaeocephalus Echinops Echinops phaeocephalus \N \N \N \N \N 51289 \N varietas Lycopersicon peruvianum var. humifusum \N \N \N \N \N 51290 \N genus Clinostigma \N \N \N \N \N 51291 G.involucrata Gymnotheca Gymnotheca involucrata \N \N \N \N \N 51292 \N genus Lemurophoenix \N \N \N \N \N 51293 B.7629 Brunsvigia Brunsvigia cf. radulosa Spies 7629 \N \N \N \N \N 51294 U.trichopus Urochloa Urochloa trichopus \N \N \N \N \N 51295 \N no rank Musa ABB Group cooking banana,plantain \N \N \N \N 51296 \N genus Darwinia \N \N \N \N \N 51297 M.rupertiana Mimosa Mimosa rupertiana \N \N \N \N \N 51298 S.acromelaena Setaria Setaria acromelaena \N \N \N \N \N 51299 O.phaeotricha Oxalis Oxalis phaeotricha \N \N \N \N \N 51300 M.setosa Malpighia Malpighia setosa \N \N \N \N \N 51301 M.huastecensis Mirandea Mirandea huastecensis \N \N \N \N \N 51302 P.ephedroides Psammomoya Psammomoya ephedroides \N \N \N \N \N 51303 \N subspecies Veronica prostrata subsp. scheereri \N \N \N \N \N 51304 L.domesticum Lansium Lansium domesticum duku,langsat \N \N \N \N 51305 L.intermedia Ligularia Ligularia intermedia \N \N \N \N \N 51306 S.AK110012 Stelis Stelis sp. AK110012 \N \N \N \N \N 51307 V.carnea Verbena Verbena carnea \N \N \N \N \N 51308 S.axillaris Strychnos Strychnos axillaris \N \N \N \N \N 51309 G.siphonantha Gentiana Gentiana straminea x Gentiana siphonantha \N \N \N \N \N 51310 S.anguivi Solanum Solanum anguivi \N \N \N \N \N 51311 D.caryophyllaceum Dicypellium Dicypellium caryophyllaceum \N \N \N \N \N 51312 P.taenialis Phalaenopsis Phalaenopsis taenialis \N \N \N \N \N 51313 \N genus Onopordum \N \N \N \N \N 51314 \N genus Byrsonima \N \N \N \N \N 51315 \N genus Echinopogon \N \N \N \N \N 51316 \N genus Ibetralia \N \N \N \N \N 51317 Q.Zadar Quercus Quercus sp. Zadar \N \N \N \N \N 51318 C.glandulosus Convolvulus Convolvulus glandulosus \N \N \N \N \N 51319 B.triopterifolia Byrsonima Byrsonima triopterifolia \N \N \N \N \N 51320 I.conzattii Indigofera Indigofera conzattii \N \N \N \N \N 51321 \N genus Oreonesion \N \N \N \N \N 51322 \N subtribe Zygopetalinae \N \N \N \N \N 51323 C.1991-1092 Cryosophila Cryosophila sp. 1991-1092 \N \N \N \N \N 51324 C.prolongi Centaurea Centaurea prolongi \N \N \N \N \N 51325 A.cordata Andira Andira cordata \N \N \N \N \N 51326 N.prolifera Navarretia Navarretia prolifera \N \N \N \N \N 51327 S.carduiforme Solanum Solanum carduiforme \N \N \N \N \N 51328 Z.beecheyanum Zanthoxylum Zanthoxylum beecheyanum \N \N \N \N \N 51329 S.pudicus Senecio Senecio pudicus \N \N \N \N \N 51330 C.argentea Cordobia Cordobia argentea \N \N \N \N \N 51331 P.batangensis Pedicularis Pedicularis batangensis \N \N \N \N \N 51332 I.maritima Inga Inga maritima \N \N \N \N \N 51333 \N genus Duckeodendron \N \N \N \N \N 51334 \N genus Spiloxene \N \N \N \N \N 51335 H.brevipes Hyptis Hyptis brevipes \N \N \N \N \N 51336 N.nouchali Nymphaea Nymphaea nouchali \N \N \N \N \N 51337 \N genus Rungia \N \N \N \N \N 51338 A.capensis Asparagus Asparagus capensis \N \N \N \N \N 51339 P.hyalina Pilea Pilea hyalina \N \N \N \N \N 51340 M.brasiliensis Myrcia Myrcia brasiliensis \N \N \N \N \N 51341 C.pterocarpa Cliffortia Cliffortia pterocarpa \N \N \N \N \N 51342 \N varietas Carthamus tinctorius var. inermis \N \N \N \N \N 51343 A.triphyllum Arisaema Arisaema triphyllum jack-in-the-pulpit \N \N \N \N 51344 S.raeseri Sideritis Sideritis raeseri \N \N \N \N \N 51345 E.purpusii Eryngium Eryngium purpusii \N \N \N \N \N 51346 \N varietas Astragalus palanae var. grandiflora \N \N \N \N \N 51347 B.sphagnoides Burmannia Burmannia sphagnoides \N \N \N \N \N 51348 M.italica Medicago Medicago italica \N \N \N \N \N 51349 \N subtribe Orchidinae \N \N \N \N \N 51350 \N genus Dendrosipanea \N \N \N \N \N 51351 A.standleyana Ardisia Ardisia standleyana \N \N \N \N \N 51352 P.caperata Peperomia Peperomia caperata \N \N \N \N \N 51353 D.acicularis Daviesia Daviesia acicularis \N \N \N \N \N 51354 P.prionophylla Photinia Photinia prionophylla \N \N \N \N \N 51355 M.trichogynis Meineckia Meineckia trichogynis \N \N \N \N \N 51356 \N subspecies Maianthemum racemosum subsp. amplexicaule \N \N \N \N \N 51357 Z.beyrichii Zeltnera Zeltnera beyrichii \N \N \N \N \N 51358 M.scandens Myoxanthus Myoxanthus scandens \N \N \N \N \N 51359 R.scabrifolia Rudbeckia Rudbeckia scabrifolia \N \N \N \N \N 51360 C.raynalii Commicarpus Commicarpus raynalii \N \N \N \N \N 51361 C.sulfurea Columnea Columnea sulfurea \N \N \N \N \N 51362 H.davidii Hemiptelea Hemiptelea davidii \N \N \N \N \N 51363 N.longifolia Neomarica Neomarica longifolia \N \N \N \N \N 51364 L.chamaedryoides Lepechinia Lepechinia chamaedryoides \N \N \N \N \N 51365 M.delicatula Mimosa Mimosa delicatula \N \N \N \N \N 51366 P.chinensis Parthenocissus Parthenocissus chinensis \N \N \N \N \N 51367 U.sessilifructus Uncaria Uncaria sessilifructus \N \N \N \N \N 51368 \N order Apiales \N \N \N \N \N 51369 \N genus Jovibarba \N \N \N \N \N 51370 P.cajanifolia Pearsonia Pearsonia cajanifolia \N \N \N \N \N 51371 H.calceolaria Hybanthus Hybanthus calceolaria \N \N \N \N \N 51372 M.humboldtii Mammillaria Mammillaria humboldtii \N \N \N \N \N 51373 D.mexicana Donnellsmithia Donnellsmithia mexicana \N \N \N \N \N 51374 W.2811 Wilkiea Wilkiea sp. Hyland 2811 \N \N \N \N \N 51375 A.laggeri Androsace Androsace laggeri \N \N \N \N \N 51376 M.sieversii Malus Malus x domestica x Malus sieversii \N \N \N \N \N 51377 A.palladinii Arctium Arctium palladinii \N \N \N \N \N 51378 D.xanthocarpa Deinbollia Deinbollia xanthocarpa \N \N \N \N \N 51379 L.dendroides Limonium Limonium dendroides \N \N \N \N \N 51380 S.insularis Santolina Santolina insularis \N \N \N \N \N 51381 A.chamaedryfolia Aloysia Aloysia chamaedryfolia \N \N \N \N \N 51382 \N subspecies Arctostaphylos crustacea subsp. rosei \N \N \N \N \N 51383 G.havardii Grindelia Grindelia havardii \N \N \N \N \N 51384 B.napifolia Blumea Blumea napifolia \N \N \N \N \N 51385 J.procumbens Jaltomata Jaltomata procumbens \N \N \N \N \N 51386 F.chloroleuca Fibraurea Fibraurea chloroleuca \N \N \N \N \N 51387 P.2777 Palaua Palaua sp. Schneider et al. 2777 \N \N \N \N \N 51388 O.balearica Ophrys Ophrys balearica \N \N \N \N \N 51389 S.bibracteata Strobilanthes Strobilanthes bibracteata \N \N \N \N \N 51390 \N varietas Kunzea aff. ericoides var. microflora PJD-2008 \N \N \N \N \N 51391 E.cynometroides Eligmocarpus Eligmocarpus cynometroides \N \N \N \N \N 51392 P.micrantha Pentas Pentas micrantha \N \N \N \N \N 51393 S.funereum Sisyrinchium Sisyrinchium funereum \N \N \N \N \N 51394 S.LM-2007 Sulcorebutia Sulcorebutia sp. LM-2007 \N \N \N \N \N 51395 R.glandulosa Rhamnus Rhamnus glandulosa \N \N \N \N \N 51396 C.microphylla Commersonia Commersonia microphylla \N \N \N \N \N 51397 S.emerus Sesbania Sesbania emerus \N \N \N \N \N 51398 \N subspecies Noccaea fendleri subsp. siskiyouense \N \N \N \N \N 51399 S.aligerum Solanum Solanum aligerum \N \N \N \N \N 51400 P.P088 Physalis Physalis sp. P088 \N \N \N \N \N 51401 R.pedicellatus Restio Restio pedicellatus \N \N \N \N \N 51402 H.aculeata Heterorhachis Heterorhachis aculeata \N \N \N \N \N 51403 H.trichanthera Heteropterys Heteropterys trichanthera \N \N \N \N \N 51404 A.officinalis Asparagus Asparagus officinalis garden asparagus \N \N \N \N 51405 C.SH-2010 Cyathostemma Cyathostemma sp. SH-2010 \N \N \N \N \N 51406 R.frontinensis Rhodostemonodaphne Rhodostemonodaphne frontinensis \N \N \N \N \N 51407 \N varietas Mutisia kurtzii var. kurtzii \N \N \N \N \N 51408 R.rotundifolium Ribes Ribes rotundifolium \N \N \N \N \N 51409 P.exclamationis Peperomia Peperomia exclamationis \N \N \N \N \N 51410 L.pterodonta Laggera Laggera pterodonta \N \N \N \N \N 51411 L.MP-2011 Ledebouria Ledebouria sp. 5 MP-2011 \N \N \N \N \N 51412 \N no rank Clusiaceae incertae sedis \N \N \N \N \N 51413 \N varietas Myricaria elegans var. tsetangensis \N \N \N \N \N 51414 \N genus Phaeoptilum \N \N \N \N \N 51415 C.viridiflorus Chelonanthus Chelonanthus viridiflorus \N \N \N \N \N 51416 T.corymbosa Thottea Thottea corymbosa \N \N \N \N \N 51417 C.purpurascens Cerastium Cerastium purpurascens \N \N \N \N \N 51418 T.hendersonii Triteleia Triteleia hendersonii \N \N \N \N \N 51419 G.nepalense Geranium Geranium nepalense \N \N \N \N \N 51420 U.borneensis Uvaria Uvaria borneensis \N \N \N \N \N 51421 C.pyrenaica Cochlearia Cochlearia pyrenaica \N \N \N \N \N 51422 \N genus Caleana \N \N \N \N \N 51423 \N genus Elythranthera \N \N \N \N \N 51424 L.fragrans Lindera Lindera fragrans \N \N \N \N \N 51425 T.laxa Tamarix Tamarix laxa \N \N \N \N \N 51426 \N subspecies Halothamnus auriculus subsp. acutifolius \N \N \N \N \N 51427 P.carnea Pholidota Pholidota carnea \N \N \N \N \N 51428 P.transcaucasica Polygala Polygala transcaucasica \N \N \N \N \N 51429 \N genus Cycloloma \N \N \N \N \N 51430 B.ericoides Brachyloma Brachyloma ericoides \N \N \N \N \N 51431 R.triangularis Rhipsalis Rhipsalis triangularis \N \N \N \N \N 51432 C.rupestris Chiliadenus Chiliadenus rupestris \N \N \N \N \N 51433 C.doianus Cladopus Cladopus doianus \N \N \N \N \N 51434 A.colombiana Aa Aa colombiana \N \N \N \N \N 51435 C.deusta Centaurea Centaurea deusta \N \N \N \N \N 51436 \N genus Cronquistia \N \N \N \N \N 51437 C.montana Cedrela Cedrela montana \N \N \N \N \N 51438 T.repanda Thrasyopsis Thrasyopsis repanda \N \N \N \N \N 51439 D.grandis Donax Donax grandis bemban \N \N \N \N 51440 \N varietas Ceanothus gloriosus var. exaltatus \N \N \N \N \N 51441 A.pseudoampeloprasum Allium Allium pseudoampeloprasum \N \N \N \N \N 51442 A.oliganthum Allium Allium oliganthum \N \N \N \N \N 51443 \N genus Xenostegia \N \N \N \N \N 51444 T.sinense Tetracentron Tetracentron sinense \N \N \N \N \N 51445 C.s.n. Cyclopogon Cyclopogon sp. Szlachetko s.n. \N \N \N \N \N 51446 C.elata Curcuma Curcuma elata \N \N \N \N \N 51447 V.polemoniifolia Valeriana Valeriana polemoniifolia \N \N \N \N \N 51448 A.purpurascens Adrorhizon Adrorhizon purpurascens \N \N \N \N \N 51449 \N subspecies Helianthus nuttallii subsp. parishii \N \N \N \N \N 51450 \N family Passifloraceae passionflower famly \N \N \N \N 51451 S.biflora Smilax Smilax biflora \N \N \N \N \N 51452 \N varietas Oreostemma alpigenum var. haydenii \N \N \N \N \N 51453 L.quitense Lepidium Lepidium quitense \N \N \N \N \N 51454 C.buforum Capsicum Capsicum buforum \N \N \N \N \N 51455 S.eltonica Suaeda Suaeda eltonica \N \N \N \N \N 51456 \N subspecies Oenothera pallida subsp. trichocalyx \N \N \N \N \N 51457 P.densipila Paysonia Paysonia densipila \N \N \N \N \N 51458 S.geayi Secamone Secamone geayi \N \N \N \N \N 51459 \N varietas Nesaea radicans var. radicans \N \N \N \N \N 51460 \N genus Glastaria \N \N \N \N \N 51461 V.intermedia Verbena Verbena intermedia \N \N \N \N \N 51462 P.dissectum Prionosciadium Prionosciadium dissectum \N \N \N \N \N 51463 O.natans Oxalis Oxalis natans \N \N \N \N \N 51464 M.anceps Mandevilla Mandevilla anceps \N \N \N \N \N 51465 \N genus Ornithoglossum \N \N \N \N \N 51466 H.lingulatum Holcoglossum Holcoglossum lingulatum \N \N \N \N \N 51467 T.brevifolium Teucrium Teucrium brevifolium \N \N \N \N \N 51468 S.perplexa Sandbergia Sandbergia perplexa \N \N \N \N \N 51469 \N genus Melodinus \N \N \N \N \N 51470 A.acanthoclada Aspalathus Aspalathus acanthoclada \N \N \N \N \N 51471 O.hainanensis Osmanthus Osmanthus hainanensis \N \N \N \N \N 51472 G.nobile Gossypium Gossypium nobile \N \N \N \N \N 51473 \N forma Ilex macropoda f. pseudomacropoda \N \N \N \N \N 51474 H.convolutum Helictotrichon Helictotrichon convolutum \N \N \N \N \N 51475 T.occidentale Trifolium Trifolium occidentale \N \N \N \N \N 51476 \N subspecies Foeniculum vulgare subsp. vulgare \N \N \N \N \N 51477 S.pulchella Sternbergia Sternbergia pulchella \N \N \N \N \N 51478 E.brunonis Elythranthera Elythranthera brunonis \N \N \N \N \N 51479 A.portei Alocasia Alocasia portei \N \N \N \N \N 51480 C.divaricatum Carpesium Carpesium divaricatum \N \N \N \N \N 51481 L.pogonocalyx Leucopogon Leucopogon pogonocalyx \N \N \N \N \N 51482 \N subspecies Lens culinaris subsp. culinaris \N \N \N \N \N 51483 \N genus Calydorea \N \N \N \N \N 51484 \N genus Dyakia \N \N \N \N \N 51485 P.brevifolia Pimelea Pimelea brevifolia \N \N \N \N \N 51486 A.JM03 Aristolochia Aristolochia sp. JM03 \N \N \N \N \N 51487 S.ovata Stevia Stevia ovata \N \N \N \N \N 51488 D.leroyi Delphinium Delphinium leroyi \N \N \N \N \N 51489 H.cylindrica Heuchera Heuchera cylindrica \N \N \N \N \N 51490 M.SH-2010 Melodinus Melodinus sp. SH-2010 \N \N \N \N \N 51491 \N subspecies Achillea pindicola subsp. integrifolia \N \N \N \N \N 51492 L.azoricus Lotus Lotus azoricus \N \N \N \N \N 51493 S.paniculatus Schedonnardus Schedonnardus paniculatus \N \N \N \N \N 51494 P.phylicoides Phyllota Phyllota phylicoides \N \N \N \N \N 51495 C.yujii Cryptocoryne Cryptocoryne yujii \N \N \N \N \N 51496 G.gracillima Grewia Grewia gracillima \N \N \N \N \N 51497 R.subcanina Rosa Rosa subcanina \N \N \N \N \N 51498 M.camaridii Maxillaria Maxillaria camaridii \N \N \N \N \N 51499 N.menthoides Nepeta Nepeta menthoides \N \N \N \N \N 51500 O.apifera Ophrys Ophrys apifera \N \N \N \N \N 51501 H.beccariana Hopea Hopea beccariana \N \N \N \N \N 51502 P.majusculum Piper Piper majusculum \N \N \N \N \N 51503 P.bradei Poa Poa bradei \N \N \N \N \N 51504 \N genus Carpesium \N \N \N \N \N 51505 C.somalense Cyclamen Cyclamen somalense \N \N \N \N \N 51506 \N genus Averrhoidium \N \N \N \N \N 51507 C.desertorum Chenopodium Chenopodium desertorum \N \N \N \N \N 51508 S.5 Salicornia Salicornia sp. Pankova 5 \N \N \N \N \N 51509 S.esalqueana Sophronitis Sophronitis esalqueana \N \N \N \N \N 51510 \N genus Myrtus \N \N \N \N \N 51511 \N genus Macroclinium \N \N \N \N \N 51512 \N genus Coluria \N \N \N \N \N 51513 C.HGWB-75 Chirita Chirita sp. HGWB-75 \N \N \N \N \N 51514 M.11118 Matayba Matayba cf. opaca Acevedo 11118 \N \N \N \N \N 51515 D.leptolobus Desmanthus Desmanthus leptolobus \N \N \N \N \N 51516 O.ridleyi Oryza Oryza ridleyi \N \N \N \N \N 51517 B.acreana Bauhinia Bauhinia acreana \N \N \N \N \N 51518 D.bicolor Dietes Dietes bicolor \N \N \N \N \N 51519 P.crassipes Pinanga Pinanga crassipes \N \N \N \N \N 51520 A.jinyangense Aconitum Aconitum jinyangense \N \N \N \N \N 51521 A.umbellatus Astragalus Astragalus umbellatus \N \N \N \N \N 51522 \N genus Dinemagonum \N \N \N \N \N 51523 E.tetralix Erica Erica tetralix \N \N \N \N \N 51524 \N subspecies Elymus nodosus subsp. dorudicus \N \N \N \N \N 51525 C.bella Calathea Calathea bella \N \N \N \N \N 51526 I.miniata Indigofera Indigofera miniata \N \N \N \N \N 51527 H.keniensis Habenaria Habenaria keniensis \N \N \N \N \N 51528 H.macranthum Hieracium Hieracium macranthum \N \N \N \N \N 51529 B.ranunculoides Bupleurum Bupleurum ranunculoides \N \N \N \N \N 51530 H.elwesii Hedychium Hedychium elwesii \N \N \N \N \N 51531 D.floribunda Dipelta Dipelta floribunda \N \N \N \N \N 51532 G.repevensis Goniothalamus Goniothalamus repevensis \N \N \N \N \N 51533 A.dieffenbachii Aciphylla Aciphylla dieffenbachii \N \N \N \N \N 51534 H.crenulata Hesperethusa Hesperethusa crenulata \N \N \N \N \N 51535 L.radicans Luzuriaga Luzuriaga radicans \N \N \N \N \N 51536 A.undulatum Aeonium Aeonium undulatum \N \N \N \N \N 51537 D.cordata Dendrocnide Dendrocnide cordata \N \N \N \N \N 51538 S.8246 Symplocos Symplocos sp. Clark et al. 8246 \N \N \N \N \N 51539 M.macrocarpa Monopyle Monopyle macrocarpa \N \N \N \N \N 51540 L.myrsinites Lebetanthus Lebetanthus myrsinites \N \N \N \N \N 51541 M.imbricata Maxillaria Maxillaria imbricata \N \N \N \N \N 51542 O.cachemiriana Oxytropis Oxytropis cachemiriana \N \N \N \N \N 51543 \N genus Morettia \N \N \N \N \N 51544 D.TJSW-2011 Dysoxylum Dysoxylum sp. TJSW-2011 \N \N \N \N \N 51545 \N genus Sageretia \N \N \N \N \N 51546 C.woodii Carex Carex woodii \N \N \N \N \N 51547 C.foliosa Cousinia Cousinia foliosa \N \N \N \N \N 51548 P.davisii Physocardamum Physocardamum davisii \N \N \N \N \N 51549 S.fuscum Sedum Sedum fuscum \N \N \N \N \N 51550 C.dammeri Cotoneaster Cotoneaster dammeri \N \N \N \N \N 51551 A.platychaeta Austrostipa Austrostipa platychaeta \N \N \N \N \N 51552 M.albida Mimosa Mimosa albida \N \N \N \N \N 51553 P.zinniiflora Pereskia Pereskia zinniiflora \N \N \N \N \N 51554 W.depressa Wahlenbergia Wahlenbergia depressa \N \N \N \N \N 51555 C.12674 Cromidon Cromidon sp. Goldblatt 12674 \N \N \N \N \N 51556 E.oliganthus Elleanthus Elleanthus oliganthus \N \N \N \N \N 51557 B.verticillata Banksia Banksia verticillata \N \N \N \N \N 51558 S.SRR-2011 Sievekingia Sievekingia sp. 2 SRR-2011 \N \N \N \N \N 51559 G.serrata Gaultheria Gaultheria serrata \N \N \N \N \N 51560 K.elegans Kaempferia Kaempferia elegans \N \N \N \N \N 51561 B.184 Bulbostylis Bulbostylis sp. Clarke 184 \N \N \N \N \N 51562 M.peekelii Musa Musa peekelii \N \N \N \N \N 51563 C.milnei Cyrtandra Cyrtandra cf. milnei \N \N \N \N \N 51564 R.villosa Reseda Reseda villosa \N \N \N \N \N 51565 H.roshevitzii Hordeum Hordeum roshevitzii \N \N \N \N \N 51566 F.pilosa Fatoua Fatoua pilosa \N \N \N \N \N 51567 O.5608 Oncidium Oncidium aff. volvox Atwood 5608 \N \N \N \N \N 51568 E.russicum Echium Echium russicum \N \N \N \N \N 51569 \N genus Streptochaeta \N \N \N \N \N 51570 S.flaccida Saphesia Saphesia flaccida \N \N \N \N \N 51571 P.uniceps Parantennaria Parantennaria uniceps \N \N \N \N \N 51572 \N varietas Adenia heterophylla var. heterophylla \N \N \N \N \N 51573 I.sepacuitensis Ipomoea Ipomoea sepacuitensis \N \N \N \N \N 51574 T.JK3713(35) unclassified Taraxacum Taraxacum (sect. Erythrocarpa) sp. JK3713(35) \N \N \N \N \N 51575 D.occidentale Delphinium Delphinium x occidentale \N \N \N \N \N 51576 C.collinus Cyrtanthus Cyrtanthus collinus \N \N \N \N \N 51577 R.578 Reldia Reldia sp. Amaya & Smith 578 \N \N \N \N \N 51578 D.arcanus Daucus Daucus arcanus \N \N \N \N \N 51579 \N tribe Podochileae \N \N \N \N \N 51580 M.stenolobum Maianthemum Maianthemum stenolobum \N \N \N \N \N 51581 P.imbecilla Poa Poa imbecilla \N \N \N \N \N 51582 D.corrugatum Dendrochilum Dendrochilum corrugatum \N \N \N \N \N 51583 R.ashibetsuensis Ranunculus Ranunculus ashibetsuensis \N \N \N \N \N 51584 M.hariotiana Microterangis Microterangis hariotiana \N \N \N \N \N 51585 P.lawrenceana Pescatoria Pescatoria lawrenceana \N \N \N \N \N 51586 S.amoenum Scaphopetalum Scaphopetalum amoenum \N \N \N \N \N 51587 R.sororium Rhododendron Rhododendron sororium \N \N \N \N \N 51588 C.oblongifolia Clermontia Clermontia oblongifolia \N \N \N \N \N 51589 P.almum Paspalum Paspalum almum \N \N \N \N \N 51590 L.surotatensis Lycianthes Lycianthes surotatensis \N \N \N \N \N 51591 T.sphaerocephala Thurnia Thurnia sphaerocephala \N \N \N \N \N 51592 C.friedrichiae Conophytum Conophytum friedrichiae \N \N \N \N \N 51593 C.pallidum Cullen Cullen pallidum \N \N \N \N \N 51594 A.edulis Amana Amana edulis \N \N \N \N \N 51595 W.concolor Wimmeria Wimmeria concolor \N \N \N \N \N 51596 C.alatus Chelonanthus Chelonanthus alatus \N \N \N \N \N 51597 C.porrecta Corymbia Corymbia porrecta \N \N \N \N \N 51598 \N genus Pterygodium \N \N \N \N \N 51599 E.cordata Erica Erica cordata \N \N \N \N \N 51600 H.crurigera Hexadesmia Hexadesmia crurigera \N \N \N \N \N 51601 \N varietas Indigofera tinctoria var. arcuata \N \N \N \N \N 51602 \N family Montiaceae \N \N \N \N \N 51603 P.P133 Physalis Physalis sp. P133 \N \N \N \N \N 51604 J.JPM-2011 Jovellana Jovellana sp. JPM-2011 \N \N \N \N \N 51605 C.pumila Christensonella Christensonella pumila \N \N \N \N \N 51606 \N genus Neoluederitzia \N \N \N \N \N 51607 P.rugulosa Polylepis Polylepis rugulosa \N \N \N \N \N 51608 B.gireoudiana Brassia Brassia gireoudiana \N \N \N \N \N 51609 N.asturiensis Narcissus Narcissus asturiensis \N \N \N \N \N 51610 P.amboinensis Phaius Phaius amboinensis \N \N \N \N \N 51611 B.subincisa Bahiopsis Bahiopsis subincisa \N \N \N \N \N 51612 C.andreana Cucurbita Cucurbita andreana \N \N \N \N \N 63924 \N genus Downingia \N \N \N \N \N 51613 M.integrifolia Meconopsis Meconopsis integrifolia Farrer's lampshade-poppy,yellow poppywort \N \N \N \N 51614 A.suffrutescens Antennaria Antennaria suffrutescens \N \N \N \N \N 51615 E.subalatus Echinodorus Echinodorus subalatus \N \N \N \N \N 51616 M.poasana Magnolia Magnolia poasana \N \N \N \N \N 51617 C.hunzikerianum Capsicum Capsicum hunzikerianum \N \N \N \N \N 51618 N.CL-2009 Nymphaea Nymphaea cf. macrosperma CL-2009 \N \N \N \N \N 51619 O.minarum Oxypetalum Oxypetalum minarum \N \N \N \N \N 51620 A.eminens Achnatherum Achnatherum eminens \N \N \N \N \N 51621 S.satyrioides Steveniella Steveniella satyrioides \N \N \N \N \N 51622 L.ambiguus Loxocalyx Loxocalyx ambiguus \N \N \N \N \N 51623 P.pubinervis Poa Poa pubinervis \N \N \N \N \N 51624 C.waltonii Cyclorhiza Cyclorhiza waltonii \N \N \N \N \N 51625 B.brasiliensis Barbacenia Barbacenia brasiliensis \N \N \N \N \N 51626 C.erinaceus Calamus Calamus erinaceus \N \N \N \N \N 51627 \N subspecies Senecio mohavensis subsp. mohavensis \N \N \N \N \N 51628 \N genus Viridantha \N \N \N \N \N 51629 C.argecillensis Centaurea Centaurea argecillensis \N \N \N \N \N 51630 C.suyapensis Croton Croton suyapensis \N \N \N \N \N 51631 \N genus Cochlospermum \N \N \N \N \N 51632 K.angustifolia Kochia Kochia angustifolia \N \N \N \N \N 51633 P.kuntzei Prosopis Prosopis kuntzei barba de tigre,carand \N \N \N \N 51634 S.s.n. Saxifraga Saxifraga sp. Cuenoud s.n. \N \N \N \N \N 51635 C.filicinum Coelopleurum Coelopleurum filicinum \N \N \N \N \N 51636 \N genus Guaiacum \N \N \N \N \N 51637 O.littoralis Opuntia Opuntia littoralis \N \N \N \N \N 51638 C.triniifolia Centaurea Centaurea triniifolia \N \N \N \N \N 51639 C.rhodoneurum Cyrtochilum Cyrtochilum rhodoneurum \N \N \N \N \N 51640 R.kauaiensis Remya Remya kauaiensis \N \N \N \N \N 51641 G.prancei Gleasonia Gleasonia prancei \N \N \N \N \N 51642 P.beyrichianum Pereilema Pereilema beyrichianum \N \N \N \N \N 51643 A.nallyi Aechmea Aechmea nallyi \N \N \N \N \N 51644 W.glabra Wyethia Wyethia glabra \N \N \N \N \N 51645 E.excelsus Elymus Elymus excelsus \N \N \N \N \N 51646 C.sanguinea Columnea Columnea sanguinea \N \N \N \N \N 51647 P.adenandrum Piper Piper adenandrum \N \N \N \N \N 51648 A.transmontana Armeria Armeria transmontana \N \N \N \N \N 51649 S.capitellatum Sphenosciadium Sphenosciadium capitellatum \N \N \N \N \N 51650 A.procerus Armatocereus Armatocereus procerus \N \N \N \N \N 51651 A.longicaulis Aeschynanthus Aeschynanthus longicaulis \N \N \N \N \N 51652 V.filifera Veitchia Veitchia filifera \N \N \N \N \N 51653 C.paraguariensis Caesalpinia Caesalpinia paraguariensis \N \N \N \N \N 51654 H.arizonicum Helenium Helenium arizonicum \N \N \N \N \N 51655 \N genus Crypteronia \N \N \N \N \N 51656 C.tonkinensis Caryodaphnopsis Caryodaphnopsis tonkinensis \N \N \N \N \N 51657 K.dawsoniana Kanakomyrtus Kanakomyrtus dawsoniana \N \N \N \N \N 51658 G.macrorrhizum Geranium Geranium macrorrhizum \N \N \N \N \N 51659 \N genus Leucheria \N \N \N \N \N 51660 \N varietas Hylotelephium sieboldii var. sieboldii \N \N \N \N \N 51661 \N varietas Aconitum sungpanense var. leucanthum \N \N \N \N \N 51662 D.gemmata Daphne Daphne gemmata \N \N \N \N \N 51663 \N genus Archakebia \N \N \N \N \N 51664 \N genus Mayanaea \N \N \N \N \N 51665 L.lamprophyllum Leionema Leionema lamprophyllum \N \N \N \N \N 51666 C.triplicata Calanthe Calanthe triplicata \N \N \N \N \N 51667 C.nuecensis Coreopsis Coreopsis nuecensis \N \N \N \N \N 51668 \N genus Theilera \N \N \N \N \N 51669 R.maxima Resnova Resnova maxima \N \N \N \N \N 51670 A.duthieana Amylotheca Amylotheca duthieana \N \N \N \N \N 51671 \N genus Vepris \N \N \N \N \N 51672 L.pectinata Lessingia Lessingia pectinata \N \N \N \N \N 51673 \N genus Gaudinia \N \N \N \N \N 51674 H.umbellatum Holosteum Holosteum umbellatum \N \N \N \N \N 51675 N.fragrans Nothoscordum Nothoscordum fragrans \N \N \N \N \N 51676 K.rigidifolia Kniphofia Kniphofia rigidifolia \N \N \N \N \N 51677 H.s.n. Hemerocallis Hemerocallis sp. Hansen s.n. \N \N \N \N \N 51678 A.lugonis Alseis Alseis lugonis \N \N \N \N \N 51679 P.sykesii Pentanisia Pentanisia sykesii \N \N \N \N \N 51680 \N genus Aulacocalyx \N \N \N \N \N 51681 C.gigantea Cleome Cleome gigantea \N \N \N \N \N 51682 S.viminalis Salix Salix miyabeana x Salix viminalis \N \N \N \N \N 51683 H.hottoniiflora Hydrotriche Hydrotriche hottoniiflora \N \N \N \N \N 51684 L.insignis Lipskya Lipskya insignis \N \N \N \N \N 51685 H.sinicum Holcoglossum Holcoglossum sinicum \N \N \N \N \N 51686 C.cultivar Cucurbita Cucurbita hybrid cultivar \N \N \N \N \N 51687 A.raddeana Anemone Anemone raddeana \N \N \N \N \N 51688 C.holostegius Chloranthus Chloranthus holostegius \N \N \N \N \N 51689 C.sclerocarpa Caesalpinia Caesalpinia sclerocarpa \N \N \N \N \N 51690 G.alata Guatteria Guatteria alata \N \N \N \N \N 51691 C.ANM-2010 Cedrela Cedrela sp. ANM-2010 \N \N \N \N \N 51692 P.longipes Phacelia Phacelia longipes \N \N \N \N \N 51693 C.alaskana Campanula Campanula alaskana \N \N \N \N \N 51694 S.subulata Sagittaria Sagittaria subulata \N \N \N \N \N 51695 P.litorosa Poa Poa litorosa \N \N \N \N \N 51696 C.fontinale Cirsium Cirsium fontinale \N \N \N \N \N 51697 V.perrieri Vaughania Vaughania perrieri \N \N \N \N \N 51698 \N varietas Morus mongolica var. diabolica \N \N \N \N \N 51699 A.elliotii Afroligusticum Afroligusticum elliotii \N \N \N \N \N 51700 C.brevifolia Caragana Caragana brevifolia \N \N \N \N \N 51701 P.parishii Plectranthus Plectranthus parishii \N \N \N \N \N 51702 \N varietas Bupleurum candollei var. atropurpureum \N \N \N \N \N 51703 C.capillaris Crepis Crepis capillaris \N \N \N \N \N 51704 S.balearica Succowia Succowia balearica \N \N \N \N \N 51705 J.minuta Jacobaea Jacobaea minuta \N \N \N \N \N 51706 Q.dumosa Quercus Quercus dumosa \N \N \N \N \N 51707 P.lentiginosa Pleurothallis Pleurothallis lentiginosa \N \N \N \N \N 51708 R.pumilum Rytidosperma Rytidosperma pumilum \N \N \N \N \N 51709 \N genus Habenaria \N \N \N \N \N 51710 \N genus Tecomaria \N \N \N \N \N 51711 R.nudiuscula Rorippa Rorippa nudiuscula \N \N \N \N \N 51712 O.ritro Orobanche Orobanche ritro \N \N \N \N \N 51713 L.caespitosum Lophopyrum Lophopyrum caespitosum \N \N \N \N \N 5 M.esculenta Manihot Manihot esculenta cassava,manioc,tapioca,yuca \N \N \N \N 51714 M.urceolatus Melichrus Melichrus urceolatus \N \N \N \N \N 51715 \N genus Myristica \N \N \N \N \N 51716 B.maritima Batis Batis maritima \N \N \N \N \N 51717 P.tonkinensis Polyspora Polyspora tonkinensis \N \N \N \N \N 51718 \N genus Ellisochloa \N \N \N \N \N 51719 I.excisus Isodon Isodon excisus \N \N \N \N \N 51720 P.lasiophrys Pedicularis Pedicularis lasiophrys \N \N \N \N \N 51721 S.obovata Stemmadenia Stemmadenia obovata \N \N \N \N \N 51722 C.aurantiacum Cestrum Cestrum aurantiacum \N \N \N \N \N 51723 \N subspecies Eucalyptus preissiana subsp. preissiana \N \N \N \N \N 51724 \N genus Sabatia \N \N \N \N \N 51725 B.tsienii Berberis Berberis tsienii \N \N \N \N \N 51726 U.angolensis Uvaria Uvaria angolensis \N \N \N \N \N 51727 A.discolor Asterotrichion Asterotrichion discolor \N \N \N \N \N 51728 L.viridiflora Liparis Liparis viridiflora \N \N \N \N \N 51729 S.2538 Salvia Salvia sp. JBW 2538 \N \N \N \N \N 51730 \N varietas Silphium asteriscus var. trifoliatum \N \N \N \N \N 51731 R.schlieperianum Rossioglossum Rossioglossum schlieperianum \N \N \N \N \N 51732 S.panamensis Schefflera Schefflera panamensis \N \N \N \N \N 51733 P.floribunda Pimelea Pimelea floribunda \N \N \N \N \N 51734 N.konishii Nothaphoebe Nothaphoebe konishii \N \N \N \N \N 51735 D.turbinata Dillenia Dillenia turbinata \N \N \N \N \N 51736 C.ossetica Campanula Campanula ossetica \N \N \N \N \N 51737 \N subspecies Crotalaria virgulata subsp. grantiana \N \N \N \N \N 51738 A.globosa Artemisia Artemisia globosa \N \N \N \N \N 51739 \N family Salvadoraceae mustard-tree family \N \N \N \N 51740 L.brachyactis Leontopodium Leontopodium brachyactis \N \N \N \N \N 51741 I.pezizifera Inga Inga pezizifera \N \N \N \N \N 51742 S.6668 Sarcophrynium Sarcophrynium sp. Harris 6668 \N \N \N \N \N 51743 S.monticola Schefflera Schefflera monticola \N \N \N \N \N 51744 P.tampicana Packera Packera tampicana \N \N \N \N \N 51745 \N genus Adenocalymma \N \N \N \N \N 51746 P.densiflora Praravinia Praravinia densiflora \N \N \N \N \N 51747 P.bryoides Pycnophyllum Pycnophyllum bryoides \N \N \N \N \N 51748 A.californica Acalypha Acalypha californica \N \N \N \N \N 51749 T.bavaricum Taraxacum Taraxacum bavaricum \N \N \N \N \N 51750 B.nivea Buddleja Buddleja nivea \N \N \N \N \N 51751 D.cauliflorus Drepananthus Drepananthus cauliflorus \N \N \N \N \N 51752 L.squamaria Lathraea Lathraea squamaria \N \N \N \N \N 51753 B.spiciformis Brachystegia Brachystegia spiciformis \N \N \N \N \N 51754 L.daphnoides Leucadendron Leucadendron daphnoides \N \N \N \N \N 51755 D.giganteus Dendrocalamus Dendrocalamus giganteus giant bamboo \N \N \N \N 51756 A.margininervatus Aphanocalyx Aphanocalyx margininervatus \N \N \N \N \N 51757 C.tomentosum Clerodendrum Clerodendrum tomentosum \N \N \N \N \N 51758 P.heterochroma Primula Primula heterochroma \N \N \N \N \N 51759 \N genus Chamaemelum \N \N \N \N \N 51760 M.333 Meliosma Meliosma aff. cuneifolia Moore 333 \N \N \N \N \N 51761 \N genus Pogostemon \N \N \N \N \N 51762 C.molle Combretum Combretum molle \N \N \N \N \N 51763 O.T987 Otiophora Otiophora sp. Eriksson et al. T987 \N \N \N \N \N 51764 L.brachiata Lomelosia Lomelosia brachiata \N \N \N \N \N 51765 C.subpannosus Croton Croton subpannosus \N \N \N \N \N 51766 J.indica Jerdonia Jerdonia indica \N \N \N \N \N 51767 C.hispidulum Calycogonium Calycogonium hispidulum \N \N \N \N \N 51768 \N subfamily Cestroideae \N \N \N \N \N 51769 C.1996 Chisocheton Chisocheton sp. Okada 1996 \N \N \N \N \N 51770 B.rosea Burchardia Burchardia rosea \N \N \N \N \N 51771 V.quinata Vitex Vitex quinata \N \N \N \N \N 51772 E.stenosiphon Echium Echium stenosiphon \N \N \N \N \N 51773 H.brasilianum Hippeastrum Hippeastrum brasilianum \N \N \N \N \N 51774 P.KS-2002 Peucedanum Peucedanum sp. KS-2002 \N \N \N \N \N 51775 E.pentaphylla Eriotheca Eriotheca pentaphylla \N \N \N \N \N 51776 V.capense Viscum Viscum capense \N \N \N \N \N 51777 H.ensifolia Heterochaenia Heterochaenia ensifolia \N \N \N \N \N 51778 H.TLPC-2009 Hesperidanthus Hesperidanthus sp. TLPC-2009 \N \N \N \N \N 51779 \N varietas Litsea variabilis var. oblonga \N \N \N \N \N 51780 C.metlesicsii Cheirolophus Cheirolophus metlesicsii \N \N \N \N \N 51781 G.herteri Gunnera Gunnera herteri \N \N \N \N \N 51782 P.alpinum Pachypleurum Pachypleurum alpinum \N \N \N \N \N 51783 F.mogoltavica Ferula Ferula mogoltavica \N \N \N \N \N 51784 P.griffithii Polygonum Polygonum griffithii \N \N \N \N \N 51785 P.latialatum Pleiospermium Pleiospermium latialatum \N \N \N \N \N 51786 T.cardenasii Tarasa Tarasa cardenasii \N \N \N \N \N 51787 \N varietas Bactris gasipaes var. gasipaes \N \N \N \N \N 51788 \N genus Pterodon \N \N \N \N \N 51789 \N varietas Arundinella hirta var. ciliata \N \N \N \N \N 51790 A.insularis Ateleia Ateleia insularis \N \N \N \N \N 51791 I.hildebrandtii Ipomoea Ipomoea hildebrandtii \N \N \N \N \N 51792 T.tenuissima Tornabenea Tornabenea tenuissima \N \N \N \N \N 51793 H.insularis Henrya Henrya insularis \N \N \N \N \N 51794 L.obtusiloba Lindera Lindera obtusiloba \N \N \N \N \N 51795 P.maximowiczii Prunus Prunus maximowiczii Korean cherry,miyama cherry \N \N \N \N 51796 C.japonica Coptis Coptis japonica Japanese goldthread \N \N \N \N 51797 S.dalibardiforme Solanum Solanum dalibardiforme \N \N \N \N \N 51798 A.fruticosa Ayenia Ayenia fruticosa \N \N \N \N \N 51799 P.integerrima Pistacia Pistacia integerrima \N \N \N \N \N 51800 T.liliana Temochloa Temochloa liliana \N \N \N \N \N 51801 A.kirkii Aciphylla Aciphylla kirkii \N \N \N \N \N 51802 S.lanata Salix Salix lanata woolly willow,wooly willow \N \N \N \N 51803 C.foliosa Campanula Campanula foliosa \N \N \N \N \N 51804 T.stipitata Tasmannia Tasmannia stipitata \N \N \N \N \N 51805 \N subspecies Erica fascicularis subsp. fascicularis \N \N \N \N \N 51806 E.bariensis Euphorbia Euphorbia bariensis \N \N \N \N \N 51807 \N genus Afrostyrax \N \N \N \N \N 51808 C.aculeata Casearia Casearia aculeata \N \N \N \N \N 51809 P.ferruginea Panopsis Panopsis ferruginea \N \N \N \N \N 51810 I.TP-2009 Inga Inga sp. 41 TP-2009 \N \N \N \N \N 51811 V.floribundum Vaccinium Vaccinium floribundum Colombian blueberry,mortino \N \N \N \N 51812 J.floribunda Jungia Jungia floribunda \N \N \N \N \N 51813 B.nutans Bambusa Bambusa nutans \N \N \N \N \N 51814 S.sodiroi Steiractinia Steiractinia sodiroi \N \N \N \N \N 51815 O.malampuzhaensis Oryza Oryza malampuzhaensis \N \N \N \N \N 51816 P.incana Perityle Perityle incana \N \N \N \N \N 51817 P.boykinii Polygala Polygala boykinii \N \N \N \N \N 51818 L.chalepensis Linaria Linaria chalepensis \N \N \N \N \N 51819 B.flammea Bonellia Bonellia flammea \N \N \N \N \N 51820 B.leipoldtii Babiana Babiana leipoldtii \N \N \N \N \N 51821 S.perfoliatum Silphium Silphium perfoliatum cup-plant \N \N \N \N 51822 C.grandiflora Cryptostegia Cryptostegia grandiflora \N \N \N \N \N 51823 A.chamissonis Aristolochia Aristolochia chamissonis \N \N \N \N \N 51824 V.magnifica Viola Viola magnifica \N \N \N \N \N 51825 C.hongheensis Citrus Citrus hongheensis Honghe papeda,alei \N \N \N \N 51826 \N genus Oreoschimperella \N \N \N \N \N 51827 A.cettoana Achimenes Achimenes cettoana \N \N \N \N \N 51828 P.waimeae Phyllostegia Phyllostegia waimeae \N \N \N \N \N 51829 C.leichtlinii Crocus Crocus leichtlinii \N \N \N \N \N 51830 P.arundinellum Paspalum Paspalum arundinellum \N \N \N \N \N 51831 A.angustifolia Alstroemeria Alstroemeria angustifolia \N \N \N \N \N 51832 \N subspecies Allocasuarina rigida subsp. rigida \N \N \N \N \N 51833 C.paniculata Centaurea Centaurea paniculata \N \N \N \N \N 51834 C.gabunensis Cylicodiscus Cylicodiscus gabunensis \N \N \N \N \N 51835 V.spicata Veronica Veronica spicata spiked speedwell \N \N \N \N 51836 E.leachii Echidnopsis Echidnopsis leachii \N \N \N \N \N 51837 \N subfamily Gymnarrhenoideae \N \N \N \N \N 51838 P.lutosus Polypogon Polypogon lutosus \N \N \N \N \N 51839 \N genus Crioceras \N \N \N \N \N 51840 E.rudis Eucalyptus Eucalyptus rudis moitch,swamp gum \N \N \N \N 51841 R.bullatus Ranunculus Ranunculus bullatus \N \N \N \N \N 51842 H.leschenaultiana Heteropterys Heteropterys leschenaultiana \N \N \N \N \N 51843 H.dulongjiangensis Hemsleya Hemsleya dulongjiangensis \N \N \N \N \N 51844 P.radicans Prenia Prenia radicans \N \N \N \N \N 51845 L.WOC4 Liparis Liparis sp. WOC4 \N \N \N \N \N 51846 P.tenuifolia Pultenaea Pultenaea tenuifolia \N \N \N \N \N 51847 \N varietas Chorizanthe brevicornu var. spathulata \N \N \N \N \N 51848 B.triloba Basananthe Basananthe triloba \N \N \N \N \N 51849 \N varietas Solanum stramoniifolium var. inerme \N \N \N \N \N 51850 S.heterophylla Stylomecon Stylomecon heterophylla \N \N \N \N \N 51851 \N genus Dimerocostus \N \N \N \N \N 51852 H.salicifolia Hakea Hakea salicifolia \N \N \N \N \N 51853 P.P132 Physalis Physalis sp. P132 \N \N \N \N \N 51854 O.jahnii Oyedaea Oyedaea jahnii \N \N \N \N \N 51855 C.verticillatum Craspidospermum Craspidospermum verticillatum \N \N \N \N \N 51856 E.racemosa Eucalyptus Eucalyptus racemosa \N \N \N \N \N 51857 H.guerrerensis Helleriella Helleriella guerrerensis \N \N \N \N \N 51858 P.wallichii Pueraria Pueraria wallichii \N \N \N \N \N 51859 A.attenuata Alepidea Alepidea attenuata \N \N \N \N \N 51860 P.obovata Passiflora Passiflora obovata \N \N \N \N \N 51861 A.fragrans Ainsliaea Ainsliaea fragrans \N \N \N \N \N 51862 \N genus Dactylopetalum \N \N \N \N \N 51863 C.Nevado Calandrinia Calandrinia sp. Valle Nevado \N \N \N \N \N 51864 P.douglasii Phacelia Phacelia douglasii \N \N \N \N \N 51865 A.volubile Aconitum Aconitum volubile \N \N \N \N \N 51866 K.endressiana Kairoa Kairoa endressiana \N \N \N \N \N 51867 A.edulis Aglaia Aglaia edulis \N \N \N \N \N 51868 A.tauschii Aegilops Aegilops tauschii \N \N \N \N \N 51869 Z.wutaiense Zanthoxylum Zanthoxylum wutaiense \N \N \N \N \N 51870 P.LA-2002 Psychotria Psychotria aff. bangueyensis LA-2002 \N \N \N \N \N 51871 T.parviflora Tachia Tachia parviflora \N \N \N \N \N 51872 Q.geminata Quercus Quercus geminata \N \N \N \N \N 51873 \N varietas Swartzia panacoco var. sagotii \N \N \N \N \N 51874 S.armeniaca Scorzonera Scorzonera armeniaca \N \N \N \N \N 51875 P.loriformis Photinia Photinia loriformis \N \N \N \N \N 51876 D.transversum Dendrochilum Dendrochilum transversum \N \N \N \N \N 51877 A.cernua Alfredia Alfredia cernua \N \N \N \N \N 51878 P.laetevirens Poa Poa laetevirens \N \N \N \N \N 51879 S.monteiroae Stomatostemma Stomatostemma monteiroae \N \N \N \N \N 51880 S.sachalinensis Silene Silene sachalinensis \N \N \N \N \N 51881 C.eriophorum Cerastium Cerastium eriophorum \N \N \N \N \N 51882 P.kaniense Phrynium Phrynium kaniense \N \N \N \N \N 51883 M.notabilis Morus Morus notabilis \N \N \N \N \N 51884 O.luteus Orthocarpus Orthocarpus luteus \N \N \N \N \N 51885 R.leucantha Ruellia Ruellia leucantha \N \N \N \N \N 51886 P.papillosa Pentaschistis Pentameris papillosa \N \N \N \N \N 51887 P.cretica Pimpinella Pimpinella cretica \N \N \N \N \N 51888 C.scariosum Cirsium Cirsium scariosum elk thistle,meadow thistle \N \N \N \N 51889 \N genus Trichostachys \N \N \N \N \N 51890 U.flaccida Uncinia Uncinia flaccida \N \N \N \N \N 51891 M.barnardii Moraea Moraea barnardii \N \N \N \N \N 51892 E.submuticus Elymus Elymus submuticus \N \N \N \N \N 51893 C.bracteosa Commelina Commelina bracteosa \N \N \N \N \N 51894 S.375 Schismatoclada Schismatoclada sp. Razafimandimbison & Ravelonarivo 375 \N \N \N \N \N 51895 C.wallichii Clausena Clausena wallichii \N \N \N \N \N 51896 E.nivosus Echinocereus Echinocereus nivosus \N \N \N \N \N 51897 E.nervosa Elattostachys Elattostachys nervosa \N \N \N \N \N 51898 M.planipes Myrceugenia Myrceugenia planipes \N \N \N \N \N 51899 J.alabamensis Jamesianthus Jamesianthus alabamensis \N \N \N \N \N 51900 A.malacitana Armeria Armeria malacitana \N \N \N \N \N 51901 D.coccinea Dahlia Dahlia coccinea \N \N \N \N \N 51902 H.griffithii Hydrobryum Hydrobryum griffithii \N \N \N \N \N 51903 A.yakusimense Asarum Asarum yakusimense \N \N \N \N \N 51904 \N genus Brunfelsia \N \N \N \N \N 51905 S.fluminensis Smilax Smilax fluminensis \N \N \N \N \N 51906 R.elata Rorippa Rorippa elata \N \N \N \N \N 51907 P.wrightii Potamogeton Potamogeton praelongus x Potamogeton wrightii \N \N \N \N \N 51908 M.schumannii Mammillaria Mammillaria schumannii \N \N \N \N \N 51909 L.pyrophilum Lilium Lilium pyrophilum \N \N \N \N \N 51910 J.macrocephala Jurinea Jurinea macrocephala \N \N \N \N \N 51911 P.nigellastrum Peganum Peganum nigellastrum \N \N \N \N \N 51912 L.oligocephala Liatris Liatris oligocephala \N \N \N \N \N 51913 R.glischrum Rhododendron Rhododendron glischrum \N \N \N \N \N 51914 A.diabolicum Acer Acer diabolicum \N \N \N \N \N 51915 S.repens Sarmienta Sarmienta repens \N \N \N \N \N 51916 N.atra Neololeba Neololeba atra \N \N \N \N \N 51917 C.210 Canthium Canthium sp. 2 Karehed et al. 210 \N \N \N \N \N 51918 C.densiflora Cryptocarya Cryptocarya densiflora \N \N \N \N \N 51919 O.tarijensis Oenothera Oenothera tarijensis \N \N \N \N \N 51920 P.verticillaris Phaulopsis Phaulopsis verticillaris \N \N \N \N \N 51921 Z.glabrata Ziziphus Ziziphus glabrata \N \N \N \N \N 51922 \N varietas Tofieldia yoshiiana var. hyugaensis \N \N \N \N \N 51923 C.alata Crescentia Crescentia alata \N \N \N \N \N 51924 P.5733 Peucedanum Peucedanum sp. Phillipson 5733 \N \N \N \N \N 51925 E.hispidus Elytropappus Elytropappus hispidus \N \N \N \N \N 51926 T.palaestinum Trifolium Trifolium palaestinum \N \N \N \N \N 51927 A.maroccana Anthemis Anthemis maroccana \N \N \N \N \N 51928 \N subtribe Distephaninae \N \N \N \N \N 51929 S.transvaalensis Syncolostemon Syncolostemon transvaalensis \N \N \N \N \N 51930 C.nivalis Caiophora Caiophora nivalis \N \N \N \N \N 51931 A.coriophora Anacamptis Anacamptis coriophora \N \N \N \N \N 51932 T.pulchra Tibouchina Tibouchina pulchra \N \N \N \N \N 60559 \N genus Discospermum \N \N \N \N \N 51933 G.virgata Gaylussacia Gaylussacia virgata \N \N \N \N \N 51934 S.hispida Sipanea Sipanea hispida \N \N \N \N \N 51935 S.brasiliensis Senecio Senecio brasiliensis \N \N \N \N \N 51936 C.dasylobum Coelospermum Coelospermum dasylobum \N \N \N \N \N 51937 C.chinensis Corylus Corylus chinensis \N \N \N \N \N 51938 A.foetida Anagyris Anagyris foetida \N \N \N \N \N 51939 V.carinata Valerianella Valerianella carinata \N \N \N \N \N 51940 W.natalensis Wrightia Wrightia natalensis \N \N \N \N \N 51941 P.pubens Pinckneya Pinckneya pubens \N \N \N \N \N 51942 D.lanciloba Didymosalpinx Didymosalpinx lanciloba \N \N \N \N \N 51943 H.debilis Helianthus Helianthus debilis cucumberleaf sunflower \N \N \N \N 51944 E.spinosa Emex Emex spinosa \N \N \N \N \N 51945 P.MAJ-2004 Peperomia Peperomia sp. MAJ-2004 \N \N \N \N \N 51946 S.transiliensis Semenovia Semenovia transiliensis \N \N \N \N \N 51947 C.rufula Crataegus Crataegus rufula rusty hawthorn \N \N \N \N 51948 S.leucotrichum Seriphidium Seriphidium leucotrichum \N \N \N \N \N 51949 L.thermarum Leucheria Leucheria thermarum \N \N \N \N \N 51950 O.biancae Ophrys Ophrys biancae \N \N \N \N \N 51951 M.ponerantha Maxillaria Maxillaria ponerantha \N \N \N \N \N 51952 F.cymosa Fimbristylis Fimbristylis cymosa \N \N \N \N \N 51953 E.wallichii Eriophyton Eriophyton wallichii \N \N \N \N \N 51954 V.banksii Viola Viola banksii \N \N \N \N \N 51955 A.linearis Asclepias Asclepias linearis \N \N \N \N \N 51956 A.angustifolia Angelonia Angelonia angustifolia \N \N \N \N \N 51957 K.digitaliflora Kohleria Kohleria digitaliflora \N \N \N \N \N 51958 S.henningsii Strychnos Strychnos henningsii \N \N \N \N \N 51959 P.lanata Paraboea Paraboea lanata \N \N \N \N \N 51960 R.floccigerum Rhododendron Rhododendron floccigerum \N \N \N \N \N 51961 K.mezii Kubitzkia Kubitzkia mezii \N \N \N \N \N 51962 P.pulvinata Parrya Parrya pulvinata \N \N \N \N \N 51963 H.cretensis Hypochaeris Hypochaeris cretensis \N \N \N \N \N 51964 G.quisqueyana Gesneria Gesneria quisqueyana \N \N \N \N \N 51965 C.leptosepala Caltha Caltha leptosepala \N \N \N \N \N 51966 \N genus Henriettella \N \N \N \N \N 51967 S.plumieri Scaevola Scaevola plumieri \N \N \N \N \N 51968 \N varietas Dendrobium speciosum var. capricornicum \N \N \N \N \N 51969 \N no rank Saccharum hybrid cultivar M442-51 \N \N \N \N \N 51970 \N varietas Talipariti tiliaceum var. pernambucense \N \N \N \N \N 51971 T.606 unclassified Taraxacum Taraxacum (sect. Palustria) sp. 606 \N \N \N \N \N 51972 \N subspecies Oxalis articulata subsp. rubra \N \N \N \N \N 51973 B.portoricensis Banara Banara portoricensis \N \N \N \N \N 51974 L.albicaulis Lupinus Lupinus albicaulis \N \N \N \N \N 51975 P.hymenostephana Plocama Plocama hymenostephana \N \N \N \N \N 51976 A.capitatus Ancistrorhynchus Ancistrorhynchus capitatus \N \N \N \N \N 51977 L.davidii Lathyrus Lathyrus davidii \N \N \N \N \N 51978 C.yunnanensis Cardamine Cardamine yunnanensis \N \N \N \N \N 51979 P.MBG Pharus Pharus sp. 1993-0580-4 MBG \N \N \N \N \N 51980 C.cornuta Corylus Corylus cornuta \N \N \N \N \N 51981 C.leptolepis Cousinia Cousinia leptolepis \N \N \N \N \N 51982 T.capensis Tolpis Tolpis capensis \N \N \N \N \N 51983 S.skinneri Senna Senna skinneri \N \N \N \N \N 51984 M.hastifolia Munnozia Munnozia hastifolia \N \N \N \N \N 51985 P.faberi Phoebe Phoebe faberi \N \N \N \N \N 51986 T.smilacina Tinospora Tinospora smilacina \N \N \N \N \N 51987 C.macrophylla California California macrophylla \N \N \N \N \N 51988 B.cervicata Bidens Bidens cervicata \N \N \N \N \N 51989 L.halenbergensis Lebeckia Lebeckia halenbergensis \N \N \N \N \N 51990 S.CEH-2010 Scleria Scleria sp. CEH-2010 \N \N \N \N \N 51991 C.delavayi Clematis Clematis delavayi \N \N \N \N \N 51992 E.dens-canis Erythronium Erythronium dens-canis \N \N \N \N \N 51993 M.polydidyma Mimosa Mimosa polydidyma \N \N \N \N \N 51994 R.floribunda Rudolfiella Rudolfiella floribunda \N \N \N \N \N 51995 R.linoides Radiola Radiola linoides \N \N \N \N \N 51996 \N genus Heliocarpus \N \N \N \N \N 51998 P.sinensis Petrocosmea Petrocosmea sinensis \N \N \N \N \N 51999 D.SH-2010 Dodonaea Dodonaea sp. SH-2010 \N \N \N \N \N 52000 A.lactea Androsace Androsace lactea \N \N \N \N \N 52001 R.humilis Rhapis Rhapis humilis \N \N \N \N \N 52002 Q.vacciinifolia Quercus Quercus vacciinifolia huckleberry oak \N \N \N \N 52003 K.farinacea Kalanchoe Kalanchoe farinacea \N \N \N \N \N 52004 K.galioides Kelloggia Kelloggia galioides \N \N \N \N \N 52005 O.unguiculoides Oncidium Oncidium unguiculoides \N \N \N \N \N 52006 P.tunicoides Psammosilene Psammosilene tunicoides \N \N \N \N \N 52007 P.wilhelminiae Paphiopedilum Paphiopedilum wilhelminiae \N \N \N \N \N 52008 A.macrospathum Arisaema Arisaema macrospathum \N \N \N \N \N 52009 C.andina Cabreraea Cabreraea andina \N \N \N \N \N 52010 M.pendula Melothria Melothria pendula \N \N \N \N \N 52011 A.uniflora Aspalathus Aspalathus uniflora \N \N \N \N \N 52012 D.planiscapum Dendrochilum Dendrochilum planiscapum \N \N \N \N \N 52013 \N genus Galium \N \N \N \N \N 52014 C.pestalozzae Cota Cota pestalozzae \N \N \N \N \N 52015 E.standleyi Echinolaena Echinolaena standleyi \N \N \N \N \N 52016 P.lundellii Psychotria Psychotria lundellii \N \N \N \N \N 52017 C.breweri Calandrinia Calandrinia breweri \N \N \N \N \N 52018 L.nelumbifolia Ligularia Ligularia nelumbifolia \N \N \N \N \N 52019 R.ungernii Rhododendron Rhododendron ungernii \N \N \N \N \N 52020 A.delavayi Acanthocalyx Acanthocalyx delavayi \N \N \N \N \N 52021 B.dipetala Begonia Begonia dipetala \N \N \N \N \N 52022 A.gracile Amitostigma Amitostigma gracile \N \N \N \N \N 52023 V.pseudolablab Vatovaea Vatovaea pseudolablab \N \N \N \N \N 52024 A.mildbraedii Arisaema Arisaema mildbraedii \N \N \N \N \N 52025 M.peregrinum Marrubium Marrubium peregrinum \N \N \N \N \N 52026 P.udum Paspalidium Paspalidium udum \N \N \N \N \N 52027 \N varietas Emmenanthe penduliflora var. penduliflora \N \N \N \N \N 52028 E.koreensis Echinosophora Echinosophora koreensis \N \N \N \N \N 52029 \N varietas Fraxinus velutina var. glabra \N \N \N \N \N 52030 G.unguiculatus Gladiolus Gladiolus unguiculatus \N \N \N \N \N 52031 \N varietas Triodia irritans var. laxispicata \N \N \N \N \N 52032 C.carratracensis Centaurea Centaurea carratracensis \N \N \N \N \N 52033 \N no rank Achillea millefolium complex \N \N \N \N \N 52034 \N subspecies Genista tournefortii subsp. tournefortii \N \N \N \N \N 52035 L.salicaria Lythrum Lythrum salicaria \N \N \N \N \N 52036 G.numidica Genista Genista numidica \N \N \N \N \N 52037 H.chionoides Helichrysum Helichrysum chionoides \N \N \N \N \N 52038 M.pimpinelloideum Melanosciadium Melanosciadium pimpinelloideum \N \N \N \N \N 52039 P.filipes Polygonatum Polygonatum filipes \N \N \N \N \N 52040 C.caucasicum Chaerophyllum Chaerophyllum caucasicum \N \N \N \N \N 52041 P.rehmii Pentatrichia Pentatrichia rehmii \N \N \N \N \N 52042 \N genus Ainsliaea \N \N \N \N \N 52043 B.glomerata Buxus Buxus glomerata \N \N \N \N \N 52044 S.pallaryi Satureja Satureja pallaryi \N \N \N \N \N 52045 C.spermacoce Cuphea Cuphea spermacoce \N \N \N \N \N 52046 R.westlandii Rhododendron Rhododendron westlandii \N \N \N \N \N 52047 R.mortoniana Rhysotoechia Rhysotoechia mortoniana \N \N \N \N \N 52048 A.fragrans Artemisia Artemisia fragrans \N \N \N \N \N 52049 C.holstii Cussonia Cussonia holstii \N \N \N \N \N 52050 B.fusicarpa Barringtonia Barringtonia fusicarpa \N \N \N \N \N 52051 M.gedebe Mangifera Mangifera gedebe \N \N \N \N \N 52052 A.fasciculata Aureliana Aureliana fasciculata \N \N \N \N \N 52053 \N subtribe Loliinae \N \N \N \N \N 52054 \N genus Brasiliocroton \N \N \N \N \N 52055 B.1 Begonia Begonia sp. Vietnam 1 \N \N \N \N \N 52056 \N genus Zygogynum \N \N \N \N \N 52057 H.tetraptera Halesia Halesia tetraptera snowdroptree \N \N \N \N 52058 G.microstegia Grevillea Grevillea microstegia \N \N \N \N \N 52059 S.scabrella Stevia Stevia scabrella \N \N \N \N \N 52060 A.himalayana Adenophora Adenophora himalayana \N \N \N \N \N 52061 \N genus Polyosma \N \N \N \N \N 52062 Z.abelicea Zelkova Zelkova abelicea \N \N \N \N \N 52063 P.kawakamii Paulownia Paulownia kawakamii \N \N \N \N \N 52064 \N genus Agoseris \N \N \N \N \N 52065 C.procumbens Chaerophyllum Chaerophyllum procumbens \N \N \N \N \N 52066 S.greggii Sericodes Sericodes greggii \N \N \N \N \N 52067 M.magnifica Memora Memora magnifica \N \N \N \N \N 52068 \N subspecies Ptilostemon diacanthus subsp. turcicus \N \N \N \N \N 52069 M.haberi Maxillaria Maxillaria haberi \N \N \N \N \N 52070 \N genus Monotropa \N \N \N \N \N 52071 S.pinnatifolia Syringa Syringa pinnatifolia \N \N \N \N \N 52072 R.dermatopetala Renealmia Renealmia dermatopetala \N \N \N \N \N 52073 A.mollis Alchemilla Alchemilla mollis \N \N \N \N \N 52074 \N genus Pennisetum \N \N \N \N \N 52075 D.obovata Diapensia Diapensia obovata iwaume \N \N \N \N 52076 C.indicus Cucumis Cucumis indicus \N \N \N \N \N 52077 A.greenwayi Andropogon Andropogon greenwayi \N \N \N \N \N 52078 O.105360 Oryza Oryza sp. IRGC 105360 \N \N \N \N \N 52079 \N genus Laxmannia \N \N \N \N \N 52080 B.angulosum Bupleurum Bupleurum angulosum \N \N \N \N \N 52081 B.grisea Bikinia Bikinia grisea \N \N \N \N \N 52082 S.acutifolia Silene Silene acutifolia \N \N \N \N \N 52083 S.wardii Saussurea Saussurea wardii \N \N \N \N \N 52084 P.papilio Passiflora Passiflora papilio \N \N \N \N \N 52085 \N family Portulacaceae purslane family \N \N \N \N 52086 S.pterantha Suaeda Suaeda pterantha \N \N \N \N \N 52087 A.heydei Astragalus Astragalus heydei \N \N \N \N \N 52088 T.apiculata Tinopsis Tinopsis apiculata \N \N \N \N \N 52089 L.salicifolia Lychnophora Lychnophora salicifolia \N \N \N \N \N 52090 M.cordata Mikania Mikania cordata \N \N \N \N \N 52091 \N no rank unclassified Cyperaceae \N \N \N \N \N 52092 L.japonicus Leonurus Leonurus japonicus Chinese motherwort,sagebrush motherwort,yi mu cao \N \N \N \N 52093 E.glaucum Ensete Ensete glaucum \N \N \N \N \N 52094 V.trifida Hebe Veronica trifida \N \N \N \N \N 52095 \N genus Hyalolaena \N \N \N \N \N 52096 I.porrecta Indigofera Indigofera porrecta \N \N \N \N \N 52097 \N subspecies Arctostaphylos manzanita subsp. elegans \N \N \N \N \N 52098 A.1686 Ada Ada sp. Whitten 1686 \N \N \N \N \N 52099 S.kuegleriana Sideritis Sideritis kuegleriana \N \N \N \N \N 52100 D.MP-2011 Dipcadi Dipcadi sp. 5 MP-2011 \N \N \N \N \N 52101 M.vasquezii Mosannona Mosannona vasquezii \N \N \N \N \N 52102 H.hispanica Hyacinthoides Hyacinthoides hispanica Spanish bluebell \N \N \N \N 52103 T.petersiana Thunbergia Thunbergia petersiana \N \N \N \N \N 52104 O.campylorrhiza Oxalis Oxalis campylorrhiza \N \N \N \N \N 52105 S.grandiflora Secamone Secamone grandiflora \N \N \N \N \N 52106 C.quercetorum Croton Croton quercetorum \N \N \N \N \N 52107 \N genus Bernoullia \N \N \N \N \N 52108 A.cremnophylax Astragalus Astragalus cremnophylax \N \N \N \N \N 52109 H.SK-2011a Hydrobryum Hydrobryum sp. SK-2011a \N \N \N \N \N 52110 \N subspecies Eucalyptus globulus subsp. globulus \N \N \N \N \N 52111 T.pulcher Trollius Trollius pulcher \N \N \N \N \N 52112 \N genus Pentadesma \N \N \N \N \N 52113 R.setosus Rubus Rubus setosus \N \N \N \N \N 52114 C.pendula Chrysoprenanthes Chrysoprenanthes pendula \N \N \N \N \N 52115 S.erythracanthum Solanum Solanum erythracanthum \N \N \N \N \N 52116 C.planata Carex Carex planata \N \N \N \N \N 52117 \N family Peridiscaceae \N \N \N \N \N 52118 C.pachyandra Camellia Camellia pachyandra \N \N \N \N \N 52119 P.incana Pentzia Pentzia incana \N \N \N \N \N 52120 \N genus Docynia \N \N \N \N \N 52121 H.ramageana Hohenbergia Hohenbergia ramageana \N \N \N \N \N 52122 A.8455 unclassified Apocynaceae Apocynaceae sp. Hicks 8455 \N \N \N \N \N 52123 C.4275 Commersonia Commersonia aff. gaudichaudii Brown 4275 \N \N \N \N \N 52124 M.leucaenoides Mimosa Mimosa leucaenoides \N \N \N \N \N 52125 H.collina Heliophila Heliophila collina \N \N \N \N \N 52126 A.conyzoides Ageratum Ageratum conyzoides \N \N \N \N \N 52127 L.bifidum Lamium Lamium bifidum \N \N \N \N \N 52128 A.Sul065 Aerides Aerides aff. lawrenciae Sul065 \N \N \N \N \N 52129 C.goodrichii Cymopterus Cymopterus goodrichii \N \N \N \N \N 52130 C.fuentesiana Cristaria Cristaria fuentesiana \N \N \N \N \N 52131 \N genus Ajania \N \N \N \N \N 52132 R.magniflora Rulingia Rulingia magniflora \N \N \N \N \N 52133 I.234 Ixora Ixora sp. Karehed et al. 234 \N \N \N \N \N 52134 \N subspecies Cynanchum adalinae subsp. adalinae \N \N \N \N \N 52135 P.macrolepis Phaseolus Phaseolus macrolepis \N \N \N \N \N 52136 E.pycnostachyum Epilobium Epilobium pycnostachyum \N \N \N \N \N 52137 P.edulis Phyllostachys Phyllostachys edulis kikko-chiku,mhousou,moso bamboo,mosochiku \N \N \N \N 52138 \N genus Clematepistephium \N \N \N \N \N 52139 \N subspecies Phaseolus polystachios subsp. smilacifolius \N \N \N \N \N 52140 \N genus Ensete \N \N \N \N \N 52141 \N genus Atelanthera \N \N \N \N \N 52142 \N genus Fissistigma \N \N \N \N \N 52143 \N tribe Callitricheae \N \N \N \N \N 52144 A.8840 Anthostema Anthostema sp. Miller et al. 8840 \N \N \N \N \N 52145 S.fragilis Salix Salix fragilis brittle willow \N \N \N \N 52146 \N genus Scandix \N \N \N \N \N 52147 A.umbrosum Aconitum Aconitum umbrosum \N \N \N \N \N 52148 P.woodii Phagnalon Phagnalon woodii \N \N \N \N \N 52149 \N subspecies Pimelea longiflora subsp. longiflora \N \N \N \N \N 52150 S.plerandroides Schefflera Schefflera plerandroides \N \N \N \N \N 52151 \N genus Acantholepis \N \N \N \N \N 52152 A.longipetiolatum Amomum Amomum longipetiolatum \N \N \N \N \N 52153 P.yunckeri Pittosporum Pittosporum yunckeri \N \N \N \N \N 52154 H.lateriflora Harperia Harperia lateriflora \N \N \N \N \N 52155 P.micrantha Platanthera Platanthera micrantha \N \N \N \N \N 52156 O.1627 Oncidium Oncidium sp. Whitten 1627 \N \N \N \N \N 52157 \N genus Novenia \N \N \N \N \N 52158 E.latifolium Epidendrum Epidendrum latifolium \N \N \N \N \N 52159 L.pulchella Lavoisiera Lavoisiera pulchella \N \N \N \N \N 52160 \N genus Hallianthus \N \N \N \N \N 52161 C.album Chrysosplenium Chrysosplenium album \N \N \N \N \N 52162 E.major Eucalyptus Eucalyptus major Queensland grey gum \N \N \N \N 52163 O.grandiflora Orchidantha Orchidantha grandiflora \N \N \N \N \N 52164 A.baldaccii Alyssum Alyssum baldaccii \N \N \N \N \N 52165 P.tremuloides Populus Populus tremuloides quaking aspen \N \N \N \N 52166 M.fasciculatum Microstegium Microstegium fasciculatum \N \N \N \N \N 52167 \N varietas Anticlea elegans var. elegans \N \N \N \N \N 52168 V.catalonica Viola Viola catalonica \N \N \N \N \N 52169 M.korthalsii Mallotus Mallotus korthalsii \N \N \N \N \N 52170 H.muticum Hordeum Hordeum muticum \N \N \N \N \N 52171 G.anonyma Gagea Gagea anonyma \N \N \N \N \N 52172 S.aspericaulis Senecio Senecio aspericaulis \N \N \N \N \N 52173 I.palembanica Intsia Intsia palembanica \N \N \N \N \N 52174 P.serraria Plantago Plantago serraria \N \N \N \N \N 52175 \N subspecies Pedicularis confertiflora subsp. parvifolia \N \N \N \N \N 52176 B.simaruba Bursera Bursera simaruba West Indian-birch,gumbo limbo,palo mulato \N \N \N \N 52177 \N varietas Rhododendron quadrasianum var. rosmarinifolium \N \N \N \N \N 52178 \N subspecies Iris tenuissima subsp. tenuissima \N \N \N \N \N 52179 \N genus Pentactina \N \N \N \N \N 52180 N.frutescens Neuontobotrys Neuontobotrys frutescens \N \N \N \N \N 52181 \N genus Alinula \N \N \N \N \N 52182 S.sprucei Sagittaria Sagittaria sprucei \N \N \N \N \N 52183 C.macrocarpa Campylotropis Campylotropis macrocarpa \N \N \N \N \N 52184 \N genus Pentanopsis \N \N \N \N \N 52185 M.schiedeana Magnolia Magnolia schiedeana \N \N \N \N \N 52186 S.steinbachii Sorocea Sorocea steinbachii \N \N \N \N \N 52187 O.calophylla Ocotea Ocotea calophylla \N \N \N \N \N 52188 \N genus Centroplacus \N \N \N \N \N 52189 I.aquatica Ipomoea Ipomoea aquatica \N \N \N \N \N 52190 \N genus Actinidia \N \N \N \N \N 52191 C.ulicina Colletia Colletia ulicina \N \N \N \N \N 52192 \N family Fabaceae pea family \N \N \N \N 52193 \N tribe Smelowskieae \N \N \N \N \N 64411 \N genus Schistocarpaea \N \N \N \N \N 52194 Z.capricorni Zostera Zostera capricorni \N \N \N \N \N 52195 \N genus Augouardia \N \N \N \N \N 52196 C.martinianus Croton Croton martinianus \N \N \N \N \N 52197 \N subspecies Echinodorus grandiflorus subsp. aureus \N \N \N \N \N 52198 G.truncatus Grammosolen Grammosolen truncatus \N \N \N \N \N 52199 G.diffusa Githopsis Githopsis diffusa \N \N \N \N \N 52200 T.glaucum Typhonium Typhonium glaucum \N \N \N \N \N 52201 \N subspecies Phlox carolina subsp. alta \N \N \N \N \N 52202 S.villosa Sarcotoechia Sarcotoechia villosa \N \N \N \N \N 52203 S.grandifolia Saintpaulia Saintpaulia grandifolia \N \N \N \N \N 52204 C.humbertiana Cienfuegosia Cienfuegosia humbertiana \N \N \N \N \N 52205 M.nivellei Myrtus Myrtus nivellei \N \N \N \N \N 52206 C.pendula Cyrtandra Cyrtandra pendula \N \N \N \N \N 52207 \N genus Kleinia \N \N \N \N \N 52208 J.cadmea Jurinea Jurinea cadmea \N \N \N \N \N 52209 \N genus Lobanilia \N \N \N \N \N 52210 \N varietas Lactuca indica var. laciniata Indian lettuce \N \N \N \N 52211 N.mollis Nolana Nolana mollis \N \N \N \N \N 52212 \N genus Marlothiella \N \N \N \N \N 52213 C.pteropoda Chirita Chirita pteropoda \N \N \N \N \N 52214 \N varietas Oxytropis arctica var. barnebyana \N \N \N \N \N 52215 T.forrestii Tremacron Tremacron forrestii \N \N \N \N \N 52216 S.rosea Spirotheca Spirotheca rosea \N \N \N \N \N 52217 V.cheesemanii Hebe Veronica cheesemanii \N \N \N \N \N 52218 J.officinale Jasminum Jasminum officinale common jasmine,jessamine,su fang hua \N \N \N \N 52219 V.glaucophylla Verrucularia Verrucularia glaucophylla \N \N \N \N \N 52220 S.pseudolanata Scorzonera Scorzonera pseudolanata \N \N \N \N \N 52221 P.sclerophylla Polyalthia Polyalthia sclerophylla \N \N \N \N \N 52222 S.SH-2010 Salvia Salvia sp. SH-2010 \N \N \N \N \N 52223 D.villosa Dioscorea Dioscorea villosa \N \N \N \N \N 52224 G.sclerocephalus Gymnocarpos Gymnocarpos sclerocephalus \N \N \N \N \N 52225 B.josephii Begonia Begonia josephii \N \N \N \N \N 61437 \N genus Metopium \N \N \N \N \N 52226 \N subspecies Centaurea triumfettii subsp. axillaris \N \N \N \N \N 52227 H.suffulta Hirtella Hirtella suffulta \N \N \N \N \N 52228 S.adnatifolia Sclerophylax Sclerophylax adnatifolia \N \N \N \N \N 52229 H.Island Halosarcia Halosarcia sp. Angelfish Island \N \N \N \N \N 52230 C.nana Chuniophoenix Chuniophoenix nana \N \N \N \N \N 52231 \N genus Ranorchis \N \N \N \N \N 52232 E.splendens Elsholtzia Elsholtzia splendens \N \N \N \N \N 52233 \N subspecies Primula vulgaris subsp. vulgaris \N \N \N \N \N 52234 C.grandifolia Cavendishia Cavendishia grandifolia \N \N \N \N \N 52235 \N family Restionaceae \N \N \N \N \N 52236 S.vernalis Sternbergia Sternbergia vernalis \N \N \N \N \N 52237 C.dissecta Cardamine Cardamine dissecta forkleaf toothwort \N \N \N \N 52238 D.floribundum Drosanthemum Drosanthemum floribundum \N \N \N \N \N 52239 N.suaveolens Nicotiana Nicotiana suaveolens \N \N \N \N \N 52240 E.geoides Erodium Erodium geoides \N \N \N \N \N 52241 B.montana Beauprea Beauprea montana \N \N \N \N \N 52242 P.aequatoguineensis Polyscias Polyscias aequatoguineensis \N \N \N \N \N 52243 M.oblongata Maytenus Maytenus oblongata \N \N \N \N \N 52244 \N subspecies Hordeum brachyantherum subsp. brachyantherum meadow barley \N \N \N \N 52245 F.lacor Ficus Ficus lacor \N \N \N \N \N 52246 \N genus Reissantia \N \N \N \N \N 52247 L.chapaensis Lysimachia Lysimachia chapaensis \N \N \N \N \N 52248 \N genus Myriopus \N \N \N \N \N 52249 A.oblongifolia Atriplex Atriplex oblongifolia \N \N \N \N \N 52250 M.campestris Microseris Microseris campestris \N \N \N \N \N 52251 G.ferruginea Guatteria Guatteria ferruginea \N \N \N \N \N 52252 I.bijuga Intsia Intsia bijuga fehi,gayac \N \N \N \N 52253 G.pentaphyllum Gynostemma Gynostemma pentaphyllum jiaogulan \N \N \N \N 52254 S.triphyllum Syngonium Syngonium triphyllum \N \N \N \N \N 52255 S.bartholomewii Smelowskia Smelowskia bartholomewii \N \N \N \N \N 52256 M.victoris Magadania Magadania victoris \N \N \N \N \N 52257 \N genus Nicotiana \N \N \N \N \N 52258 P.concepcionis Piper Piper concepcionis \N \N \N \N \N 52259 C.amazonica Clusia Clusia amazonica \N \N \N \N \N 52260 A.richardsonii Achnatherum Achnatherum richardsonii \N \N \N \N \N 52261 L.flavicans Lecanorchis Lecanorchis flavicans \N \N \N \N \N 52262 C.quadrangulare Conostomium Conostomium quadrangulare \N \N \N \N \N 52263 M.brachybotrya Miconia Miconia brachybotrya \N \N \N \N \N 52264 P.cordata Pinellia Pinellia cordata \N \N \N \N \N 52265 P.billardieri Phelline Phelline billardieri \N \N \N \N \N 52266 C.confertiformis Chamaecrista Chamaecrista confertiformis \N \N \N \N \N 52267 P.laurocerasus Prunus Prunus laurocerasus English laurel,cherry laurel \N \N \N \N 52268 H.ingifolius Heterostemon Heterostemon ingifolius \N \N \N \N \N 52269 P.haritonidae Prospero Prospero haritonidae \N \N \N \N \N 52270 C.squarrosus Cyperus Cyperus squarrosus \N \N \N \N \N 52271 P.macradenia Piptadenia Piptadenia macradenia \N \N \N \N \N 52272 G.septentrionalis Glyceria Glyceria septentrionalis \N \N \N \N \N 52273 P.sangii Paphiopedilum Paphiopedilum sangii \N \N \N \N \N 52274 S.orientalis Streptocarpus Streptocarpus orientalis \N \N \N \N \N 52275 K.maviensis Keysseria Keysseria maviensis \N \N \N \N \N 52276 B.1538 Brownea Brownea sp. JJ Doyle 1538 \N \N \N \N \N 52277 \N subspecies Cornus hongkongensis subsp. ferruginea \N \N \N \N \N 52278 C.joppensis Cephalaria Cephalaria joppensis \N \N \N \N \N 52279 C.strobilifera Crossandra Crossandra strobilifera \N \N \N \N \N 52280 N.bicornis Nemesia Nemesia bicornis \N \N \N \N \N 52281 U.ectomycorrhiza environmental samples Taxonomy:197740 uncultured Corylus avellana from ectomycorrhiza \N \N \N \N \N 52282 S.migoi Symplocos Symplocos migoi \N \N \N \N \N 52283 K.rhizophylla Klotzschia Klotzschia rhizophylla \N \N \N \N \N 52284 I.leucoclada Indigofera Indigofera leucoclada \N \N \N \N \N 52285 \N genus Stanfieldiella \N \N \N \N \N 52286 T.cistoides Tribulus Tribulus cistoides abrojo,burnut,herbe soleil,pagode,puncture-vine \N \N \N \N 52287 \N varietas Metrosideros polymorpha var. dieteri \N \N \N \N \N 52288 E.lycopodioides Eriothrix Eriothrix lycopodioides \N \N \N \N \N 52289 X.monospora Xymalos Xymalos monospora \N \N \N \N \N 52290 \N family Vochysiaceae \N \N \N \N \N 52291 \N genus Diplocaulobium \N \N \N \N \N 52292 P.longifolius Penianthus Penianthus longifolius \N \N \N \N \N 52293 M.petiolata Mitreola Mitreola petiolata \N \N \N \N \N 52294 A.sousae Acaciella Acaciella sousae \N \N \N \N \N 52295 \N genus Sisyndite \N \N \N \N \N 52296 \N genus Pentalinon \N \N \N \N \N 52297 B.smithiae Begonia Begonia smithiae \N \N \N \N \N 52298 S.montana Satureja Satureja montana winter savory \N \N \N \N 52299 G.namaquensis Gethyllis Gethyllis namaquensis \N \N \N \N \N 52300 G.johnstonii Galium Galium johnstonii \N \N \N \N \N 52301 P.10983 Portulaca Portulaca sp. Chase 10983 \N \N \N \N \N 52302 H.nymphaeifolia Hernandia Hernandia nymphaeifolia \N \N \N \N \N 52303 A.dumetorum Annona Annona dumetorum \N \N \N \N \N 52304 S.nubigena Scaevola Scaevola nubigena \N \N \N \N \N 52305 C.dimorpholepis Carex Carex dimorpholepis \N \N \N \N \N 52306 V.multiflora Virola Virola multiflora \N \N \N \N \N 52307 S.quadrifida Stockwellia Stockwellia quadrifida \N \N \N \N \N 52308 \N genus Microcarpaea \N \N \N \N \N 52309 C.vendae Combretum Combretum vendae \N \N \N \N \N 52310 P.paleacea Passerina Passerina paleacea \N \N \N \N \N 52311 M.cyanoides Melastoma Melastoma cyanoides \N \N \N \N \N 52312 E.clokeyi Erigeron Erigeron clokeyi \N \N \N \N \N 52313 S.quartiniana Searsia Searsia quartiniana \N \N \N \N \N 52314 E.galeandrae Eurychone Eurychone galeandrae \N \N \N \N \N 52315 H.pulchra Harveya Harveya pulchra \N \N \N \N \N 52316 \N subspecies Monotoca linifolia subsp. algida \N \N \N \N \N 52317 C.chinensis Clematis Clematis chinensis \N \N \N \N \N 52318 A.GLA-2009 Aframomum Aframomum sp. B GLA-2009 \N \N \N \N \N 52319 H.desertorum Helictotrichon Helictotrichon desertorum \N \N \N \N \N 52320 \N genus Umtiza \N \N \N \N \N 61438 \N genus Leiothrix \N \N \N \N \N 52321 O.SQ-2011 unclassified Oncidiinae Oncidiinae sp. SQ-2011 \N \N \N \N \N 52322 E.costaricensis Erythrina Erythrina costaricensis \N \N \N \N \N 52323 L.rigidum Leptothrium Leptothrium rigidum \N \N \N \N \N 52324 C.pitayensis Cinchona Cinchona pitayensis \N \N \N \N \N 52325 \N varietas Astragalus lentiginosus var. araneosus \N \N \N \N \N 52326 \N genus Passerina \N \N \N \N \N 52327 \N genus Muschleria \N \N \N \N \N 52328 T.CH_E65Smono Triticum Triticum sp. CH_E65Smono \N \N \N \N \N 52329 A.SH-2010 Aster Aster sp. SH-2010 \N \N \N \N \N 52330 O.chionophilum Ornithogalum Ornithogalum chionophilum \N \N \N \N \N 52331 A.javensis Allophylus Allophylus javensis \N \N \N \N \N 52332 \N subspecies Carex bigelowii subsp. lugens \N \N \N \N \N 52333 B.angularis Begonia Begonia angularis \N \N \N \N \N 52334 S.aronioides Sorbus Sorbus aronioides \N \N \N \N \N 52335 P.auriculata Pterostylis Pterostylis auriculata \N \N \N \N \N 52336 M.calycinum Misopates Misopates calycinum \N \N \N \N \N 52337 D.razii Drimia Drimia razii \N \N \N \N \N 52338 T.blossfeldiana Tradescantia Tradescantia blossfeldiana \N \N \N \N \N 52339 \N genus Scaphosepalum \N \N \N \N \N 52340 S.czerepanovii Steptorhamphus Steptorhamphus czerepanovii \N \N \N \N \N 52341 I.gaubae Isatis Isatis gaubae \N \N \N \N \N 52342 M.lucida Morinda Morinda lucida \N \N \N \N \N 52343 G.blommesteinii Gladiolus Gladiolus blommesteinii \N \N \N \N \N 52344 L.calcicola Lithospermum Lithospermum calcicola \N \N \N \N \N 52345 \N genus Sparaxis \N \N \N \N \N 52346 L.longicalycata Licuala Licuala longicalycata \N \N \N \N \N 52347 G.britteniana Gethyllis Gethyllis britteniana \N \N \N \N \N 52348 E.rakotozafyana Erica Erica rakotozafyana \N \N \N \N \N 52349 P.grandiflora Petrocoptis Petrocoptis grandiflora \N \N \N \N \N 52350 P.lettermanii Poa Poa lettermanii \N \N \N \N \N 52351 A.tuolumnense Allium Allium tuolumnense \N \N \N \N \N 52352 P.99-6335 Phrynium Phrynium sp. Kress 99-6335 \N \N \N \N \N 52353 \N genus Muellerina \N \N \N \N \N 52354 S.bicolor Spathanthus Spathanthus bicolor \N \N \N \N \N 52355 P.coronaria Pescatoria Pescatoria coronaria \N \N \N \N \N 52356 S.convallarioides Speirantha Speirantha convallarioides \N \N \N \N \N 52357 S.corniculatum Stenostelma Stenostelma corniculatum \N \N \N \N \N 52358 G.stellatum Gymnocalycium Gymnocalycium stellatum \N \N \N \N \N 52359 A.sepicanus Artocarpus Artocarpus sepicanus \N \N \N \N \N 52360 D.viridescens Disporum Disporum viridescens \N \N \N \N \N 52361 D.revolutum Diplodium Diplodium revolutum \N \N \N \N \N 52362 C.00-11 Cistanthe Cistanthe sp. Hershkovitz 00-11 \N \N \N \N \N 52363 H.amplexifolia Hochreutinera Hochreutinera amplexifolia \N \N \N \N \N 52364 B.longistyla Begonia Begonia longistyla \N \N \N \N \N 52365 D.malvaceus Distichostemon Distichostemon malvaceus \N \N \N \N \N 52366 S.jacfelicis Sericanthe Sericanthe jacfelicis \N \N \N \N \N 52367 H.deflexa Hackelia Hackelia deflexa \N \N \N \N \N 52368 G.tenera Gagea Gagea tenera \N \N \N \N \N 52369 \N genus Molopanthera \N \N \N \N \N 52370 R.sample environmental samples Taxonomy:1096714 Rubiaceae environmental sample \N \N \N \N \N 52371 \N varietas Armeria filicaulis var. minor \N \N \N \N \N 52372 L.strobilinum Leucadendron Leucadendron strobilinum \N \N \N \N \N 52373 E.grandiflora Eucharis Eucharis x grandiflora \N \N \N \N \N 52374 C.membranacea Cambessedesia Cambessedesia membranacea \N \N \N \N \N 52375 S.macrocephala Stylosanthes Stylosanthes macrocephala \N \N \N \N \N 52376 A.horridus Acanthosicyos Acanthosicyos horridus \N \N \N \N \N 52377 P.acutifolia Penaea Penaea acutifolia \N \N \N \N \N 52378 \N genus Havetia \N \N \N \N \N 52379 L.gigantea Luzula Luzula gigantea \N \N \N \N \N 52380 \N genus Brachystele \N \N \N \N \N 52381 A.luzonensis Anaxagorea Anaxagorea luzonensis \N \N \N \N \N 52382 H.drummondii Hypericum Hypericum drummondii \N \N \N \N \N 52383 K.hondensis Kohleria Kohleria hondensis \N \N \N \N \N 52384 A.gummifera Adenia Adenia gummifera \N \N \N \N \N 52385 D.decussata Dracula Dracula decussata \N \N \N \N \N 52386 \N genus Balsamorhiza \N \N \N \N \N 52387 M.scariosa Meeboldina Meeboldina scariosa \N \N \N \N \N 52388 \N varietas Phacelia campanularia var. vasiformis \N \N \N \N \N 52389 S.covesii Senna Senna covesii \N \N \N \N \N 52390 C.cunninghamii Crotalaria Crotalaria cunninghamii birdflower,parrot pea \N \N \N \N 52391 P.lusitanica Pinguicula Pinguicula lusitanica \N \N \N \N \N 52392 \N genus Macleaya \N \N \N \N \N 52393 D.borbonica Deinbollia Deinbollia borbonica \N \N \N \N \N 52394 \N genus Cylindropuntia \N \N \N \N \N 52395 C.monticola Centaurea Centaurea monticola \N \N \N \N \N 52396 \N genus Fenerivia \N \N \N \N \N 52397 M.reflexum Monadenium Monadenium reflexum \N \N \N \N \N 52398 C.socotrana Caralluma Caralluma socotrana \N \N \N \N \N 52399 S.chamaecyparissus Santolina Santolina chamaecyparissus \N \N \N \N \N 52400 M.ligularis Muhlenbergia Muhlenbergia ligularis \N \N \N \N \N 52401 E.coffeifolia Eugenia Eugenia coffeifolia \N \N \N \N \N 52402 N.capricornica Neoalsomitra Neoalsomitra capricornica \N \N \N \N \N 52403 C.podocarpa Carex Carex podocarpa \N \N \N \N \N 52404 \N subspecies Phoradendron bolleanum subsp. pauciflorum \N \N \N \N \N 52405 C.nitens Callicephalus Callicephalus nitens \N \N \N \N \N 52406 C.lanceolata Calceolaria Calceolaria lanceolata \N \N \N \N \N 52407 I.kusanoi Ilex Ilex kusanoi \N \N \N \N \N 52408 L.echinatum Lepidium Lepidium echinatum \N \N \N \N \N 52409 A.adonidifolia Anthemis Anthemis adonidifolia \N \N \N \N \N 52410 M.864 Mimosa Mimosa sp. Simon 864 \N \N \N \N \N 52411 M.2967 Maxillaria Maxillaria cf. luteoalba Blanco 2967 \N \N \N \N \N 52412 T.involucrata Trachyandra Trachyandra involucrata \N \N \N \N \N 52413 M.gracile Machaerium Machaerium gracile \N \N \N \N \N 52414 A.caledonensis Aspalathus Aspalathus caledonensis \N \N \N \N \N 52415 L.glandulosa Loeselia Loeselia glandulosa \N \N \N \N \N 52416 V.minima Vellozia Vellozia minima \N \N \N \N \N 52417 S.buchananii Streptocarpus Streptocarpus buchananii \N \N \N \N \N 52418 H.floridana Hartwrightia Hartwrightia floridana \N \N \N \N \N 52419 T.calocephalum Trifolium Trifolium calocephalum \N \N \N \N \N 52420 C.major Clusia Clusia major \N \N \N \N \N 52421 P.muriculatum Pteroceras Pteroceras muriculatum \N \N \N \N \N 52422 P.chippindalliae Pentaschistis Pentameris chippindalliae \N \N \N \N \N 52423 S.pusilla Soldanella Soldanella pusilla \N \N \N \N \N 52424 D.glandulosa Diospyros Diospyros glandulosa \N \N \N \N \N 52425 E.articulata Eliea Eliea articulata \N \N \N \N \N 52426 U.elegantissima Unonopsis Unonopsis elegantissima \N \N \N \N \N 52427 \N subspecies Eucalyptus willisii subsp. falciformis \N \N \N \N \N 52428 P.floribunda Pedicularis Pedicularis floribunda \N \N \N \N \N 52429 C.buchtieniana Calceolaria Calceolaria buchtieniana \N \N \N \N \N 52430 R.repens Ranunculus Ranunculus repens \N \N \N \N \N 52431 P.rouppelliae Protea Protea rouppelliae \N \N \N \N \N 52432 \N subspecies Acer palmatum subsp. amoenum \N \N \N \N \N 52433 C.antonii Campylanthus Campylanthus antonii \N \N \N \N \N 52434 \N subtribe Clinospermatinae \N \N \N \N \N 52435 C.rhombeum Chorizema Chorizema rhombeum \N \N \N \N \N 52436 G.cataractalis Garcinia Garcinia cataractalis \N \N \N \N \N 52437 S.cuneifolia Satureja Satureja cuneifolia \N \N \N \N \N 52438 \N subspecies Anacyclus pyrethrum subsp. pyrethrum \N \N \N \N \N 52439 S.ovatilobata Symplocos Symplocos ovatilobata \N \N \N \N \N 52440 D.spathacea Dolichandrone Dolichandrone spathacea mangrove trumpet-tree \N \N \N \N 52441 \N genus Halfordia \N \N \N \N \N 52442 E.caeruleum Eryngium Eryngium caeruleum \N \N \N \N \N 52443 G.aberrans Gnidia Gnidia aberrans \N \N \N \N \N 52444 M.angustiloba Matelea Matelea angustiloba \N \N \N \N \N 52445 C.grandifolia Chimonobambusa Chimonobambusa grandifolia \N \N \N \N \N 52446 H.aureum Helichrysum Helichrysum aureum \N \N \N \N \N 52447 \N genus Grobya \N \N \N \N \N 52448 I.pseudohamata Impatiens Impatiens pseudohamata \N \N \N \N \N 52449 P.victoriensis Pultenaea Pultenaea victoriensis \N \N \N \N \N 52450 G.commutata Gagea Gagea commutata \N \N \N \N \N 52451 L.coreanus Leymus Leymus coreanus \N \N \N \N \N 52452 \N genus Jungia \N \N \N \N \N 52453 A.macrospadiceus Acorus Acorus macrospadiceus \N \N \N \N \N 52454 O.alexandrae Oncidium Oncidium alexandrae \N \N \N \N \N 52455 S.taxifolia Salix Salix taxifolia \N \N \N \N \N 52456 H.mechowii Hibiscus Hibiscus mechowii \N \N \N \N \N 52457 B.imperfoliata Blackstonia Blackstonia imperfoliata \N \N \N \N \N 52458 \N no rank Polygonoideae incertae sedis \N \N \N \N \N 52459 C.odoratissimum Cochliostema Cochliostema odoratissimum \N \N \N \N \N 52460 S.s.n. Salicornia Salicornia cf. perennans Hoehn s.n. \N \N \N \N \N 52461 H.disjunctum Hesperolinon Hesperolinon disjunctum \N \N \N \N \N 52462 R.intermedia Reichardia Reichardia intermedia \N \N \N \N \N 52463 F.baeuerlenii Ficus Ficus baeuerlenii \N \N \N \N \N 52464 D.ciliaris Digitaria Digitaria ciliaris southern crabgrass,summer grass \N \N \N \N 52465 S.situsanguinum Satyrium Satyrium situsanguinum \N \N \N \N \N 52466 B.balliana Barneoudia Barneoudia balliana \N \N \N \N \N 52467 L.latihastata Ligularia Ligularia latihastata \N \N \N \N \N 52468 T.speciosa Telekia Telekia speciosa \N \N \N \N \N 52469 G.kauaiensis Gunnera Gunnera kauaiensis \N \N \N \N \N 52470 \N subspecies Arabis soyeri subsp. subcoriacea \N \N \N \N \N 52471 A.fruticosa Amorpha Amorpha fruticosa \N \N \N \N \N 52472 A.khasyana Anisadenia Anisadenia khasyana \N \N \N \N \N 52473 C.aggregatum Chondropetalum Chondropetalum aggregatum \N \N \N \N \N 52474 \N family Frankeniaceae \N \N \N \N \N 52475 G.elwesii Galanthus Galanthus elwesii \N \N \N \N \N 52476 F.windischii Fosterella Fosterella windischii \N \N \N \N \N 52477 E.religiosus Erigeron Erigeron religiosus \N \N \N \N \N 52478 G.maculata Gasteria Gasteria maculata \N \N \N \N \N 52479 A.calcicola Aletes Aletes calcicola \N \N \N \N \N 52481 J.90-3 Jovellana Jovellana sp. DePamphilis 90-3 \N \N \N \N \N 52482 P.pumilio Primula Primula pumilio \N \N \N \N \N 52483 A.purpureifolia Angelica Angelica purpureifolia \N \N \N \N \N 52484 N.fallax Nymphoides Nymphoides fallax \N \N \N \N \N 52485 \N subspecies Sagittaria graminea subsp. graminea \N \N \N \N \N 52486 C.velutina Cotyledon Cotyledon velutina \N \N \N \N \N 52487 N.pyramidalis Nemcia Nemcia pyramidalis \N \N \N \N \N 52488 G.lateriflora Garcinia Garcinia lateriflora \N \N \N \N \N 52489 R.sartorianus Ranunculus Ranunculus sartorianus \N \N \N \N \N 52490 \N subspecies Vasconcellea microcarpa subsp. microcarpa \N \N \N \N \N 52491 R.ulmifolius Rubus Rubus ulmifolius \N \N \N \N \N 52492 A.16104 Asparagus Asparagus sp. Quagliariello 16104 \N \N \N \N \N 52493 R.ansericollis Ruellia Ruellia ansericollis \N \N \N \N \N 52494 D.erythrochaete Dracula Dracula erythrochaete \N \N \N \N \N 52495 C.asiaticum Crinum Crinum asiaticum Asiatic poisonbulb \N \N \N \N 52496 \N subspecies Moehringia intricata subsp. giennensis \N \N \N \N \N 52497 C.coccineum Cynomorium Cynomorium coccineum \N \N \N \N \N 52498 P.leptophylla Parnassia Parnassia leptophylla \N \N \N \N \N 52499 C.adonense Cycnium Cycnium adonense \N \N \N \N \N 52500 \N varietas Waitzia acuminata var. albicans \N \N \N \N \N 52501 \N subspecies Teucrium polium subsp. polium \N \N \N \N \N 52502 M.glomeratum Microcodon Microcodon glomeratum \N \N \N \N \N 52503 E.caroliniensis Elytraria Elytraria caroliniensis \N \N \N \N \N 52504 D.micranthus Dontostemon Dontostemon micranthus \N \N \N \N \N 52505 T.vesiculosum Trifolium Trifolium vesiculosum \N \N \N \N \N 52506 D.tempehes Dipterocarpus Dipterocarpus tempehes \N \N \N \N \N 52507 C.curvifolium Chasmanthium Chasmanthium curvifolium \N \N \N \N \N 52508 C.goniocarpum Calophyllum Calophyllum goniocarpum \N \N \N \N \N 52509 A.manglesii Anigozanthos Anigozanthos manglesii \N \N \N \N \N 52510 A.cuspa Aspidosperma Aspidosperma cuspa \N \N \N \N \N 52511 V.submersa Villarsia Villarsia submersa \N \N \N \N \N 52512 \N subspecies Primula cusickiana subsp. cusickiana \N \N \N \N \N 52513 \N genus Ancistrochilus \N \N \N \N \N 52514 M.purpusii Muhlenbergia Muhlenbergia purpusii \N \N \N \N \N 52515 B.affine Bulbophyllum Bulbophyllum affine \N \N \N \N \N 52516 P.klotzschianus Phyllanthus Phyllanthus klotzschianus \N \N \N \N \N 52517 A.candidissimum Arisaema Arisaema candidissimum \N \N \N \N \N 52518 P.gardneri Passiflora Passiflora gardneri \N \N \N \N \N 52519 B.laciniata Borya Borya laciniata \N \N \N \N \N 52520 D.biloba Dioscorea Dioscorea biloba \N \N \N \N \N 52521 L.obovata Lonicera Lonicera obovata \N \N \N \N \N 52522 S.glandulosum Sapium Sapium glandulosum \N \N \N \N \N 52523 D.biformis Desmocladus Desmocladus biformis \N \N \N \N \N 52524 C.pareira Cissampelos Cissampelos pareira \N \N \N \N \N 52525 A.praecox Andira Andira praecox \N \N \N \N \N 52526 \N genus Pohlidium \N \N \N \N \N 52527 B.parviflora Brownleea Brownleea parviflora \N \N \N \N \N 52528 M.alyssifolia Matthiola Matthiola alyssifolia \N \N \N \N \N 52529 D.BGB-2009a Dalechampia Dalechampia sp. BGB-2009a \N \N \N \N \N 52530 \N genus Salpinctes \N \N \N \N \N 52531 I.suaveolens Ilex Ilex suaveolens \N \N \N \N \N 52532 S.agrarium Solanum Solanum agrarium \N \N \N \N \N 52533 \N family Burmanniaceae \N \N \N \N \N 52534 C.wilkinsiana Campanula Campanula wilkinsiana \N \N \N \N \N 52535 C.20-1 Cornus Cornus cf. canadensis Xiang and Fan 20-1 \N \N \N \N \N 52536 C.richardsonii Carex Carex richardsonii \N \N \N \N \N 52537 L.urmenetae Loasa Loasa urmenetae \N \N \N \N \N 52538 \N varietas Senna multijuga var. lindleyana \N \N \N \N \N 52539 E.advena Eragrostis Eragrostis advena \N \N \N \N \N 52540 C.cumingii Cyrtandra Cyrtandra cumingii \N \N \N \N \N 52541 O.lutea Odontadenia Odontadenia lutea \N \N \N \N \N 52542 E.duriaei Eryngium Eryngium duriaei \N \N \N \N \N 52543 Q.imbricaria Quercus Quercus imbricaria laurel oak,shingle oak \N \N \N \N 52544 A.fruticulosa Andrachne Andrachne fruticulosa \N \N \N \N \N 52545 B.epinnata Bursera Bursera epinnata \N \N \N \N \N 52546 \N tribe Rhinantheae \N \N \N \N \N 52547 C.seminuda Chiloglottis Chiloglottis seminuda \N \N \N \N \N 52548 A.canescens Atriplex Atriplex canescens four-winged saltbush,shadscale \N \N \N \N 52549 O.verticillaris Oxytropis Oxytropis verticillaris \N \N \N \N \N 52550 P.neomexicanus Penstemon Penstemon neomexicanus \N \N \N \N \N 52551 H.SH-2010 Heliocarpus Heliocarpus sp. SH-2010 \N \N \N \N \N 52552 P.tonkinensis Passiflora Passiflora tonkinensis \N \N \N \N \N 52553 S.stelligerum Solanum Solanum stelligerum \N \N \N \N \N 52554 M.bartlettii Monarda Monarda bartlettii \N \N \N \N \N 52555 C.davidsonianus Calochortus Calochortus davidsonianus \N \N \N \N \N 52556 C.triumfettii Cota Cota triumfettii \N \N \N \N \N 52557 \N varietas Callicarpa havilandii var. hispida \N \N \N \N \N 52558 M.standleyi Montanoa Montanoa standleyi \N \N \N \N \N 52559 P.dominigensis Pouteria Pouteria dominigensis \N \N \N \N \N 52560 G.diplocycla Greenovia Greenovia diplocycla \N \N \N \N \N 52561 \N genus Parentucellia \N \N \N \N \N 52562 L.uydoensis Lycoris Lycoris uydoensis \N \N \N \N \N 52563 \N genus Selenia \N \N \N \N \N 52564 P.iteophylla Psychotria Psychotria iteophylla \N \N \N \N \N 52565 L.arbuscula Lepidium Lepidium arbuscula \N \N \N \N \N 52566 P.adamantinensis Pleurothallis Pleurothallis adamantinensis \N \N \N \N \N 52567 P.juglandifolius Phyllanthus Phyllanthus juglandifolius \N \N \N \N \N 52568 B.rupestris Brassica Brassica rupestris \N \N \N \N \N 52569 \N family Simaroubaceae quassia family \N \N \N \N 52570 S.'Cameroon' Stonesia Stonesia sp. 'Cameroon' \N \N \N \N \N 52571 \N genus Streptosolen \N \N \N \N \N 52572 B.symmetrantha Babiana Babiana symmetrantha \N \N \N \N \N 52573 G.combsii Guettarda Guettarda combsii \N \N \N \N \N 52574 C.parthenioides Coreocarpus Coreocarpus parthenioides \N \N \N \N \N 52575 P.grandifolium Protium Protium grandifolium \N \N \N \N \N 52576 V.rubrifolia Veronica Veronica rubrifolia \N \N \N \N \N 52577 A.utleyorum Alibertia Alibertia utleyorum \N \N \N \N \N 52578 S.spectabilis Symplocos Symplocos spectabilis \N \N \N \N \N 52579 S.viscida Saussurea Saussurea viscida \N \N \N \N \N 52580 C.reticulata Chloraea Chloraea reticulata \N \N \N \N \N 52581 R.recurva Rhodostemonodaphne Rhodostemonodaphne recurva \N \N \N \N \N 52582 S.orientalis Scirpus Scirpus orientalis \N \N \N \N \N 52583 \N genus Markea \N \N \N \N \N 52584 M.coumeta Myrcia Myrcia coumeta \N \N \N \N \N 52585 \N genus Xenophyllum \N \N \N \N \N 52586 P.heyneanus Pogostemon Pogostemon heyneanus \N \N \N \N \N 52587 L.3-CEH Lupinus Lupinus sp. 3-CEH \N \N \N \N \N 52588 S.racemosa Swartzia Swartzia racemosa \N \N \N \N \N 52589 P.rigida Polevansia Polevansia rigida \N \N \N \N \N 52590 L.sarmentosa Launaea Launaea sarmentosa \N \N \N \N \N 52591 F.mucuso Ficus Ficus mucuso \N \N \N \N \N 52592 P.quartinianum Phagnalon Phagnalon quartinianum \N \N \N \N \N 52593 P.arborea Pentacalia Pentacalia arborea \N \N \N \N \N 52594 M.pauciflorus Mimetes Mimetes pauciflorus \N \N \N \N \N 52595 \N subspecies Cota melanoloma subsp. melanoloma \N \N \N \N \N 52596 H.GRG-2008 Hemigenia Hemigenia sp. 2 GRG-2008 \N \N \N \N \N 52597 M.fittkaui Mammillaria Mammillaria fittkaui \N \N \N \N \N 52598 C.eburneum Cymbidium Cymbidium eburneum \N \N \N \N \N 52599 \N genus Chionographis \N \N \N \N \N 52600 L.brachystachya Lessertia Lessertia brachystachya \N \N \N \N \N 52601 \N genus Dilochia \N \N \N \N \N 52602 A.virgatum Asyneuma Asyneuma virgatum \N \N \N \N \N 52603 N.codonandra Nothofagus Nothofagus codonandra \N \N \N \N \N 52604 P.obovata Psydrax Psydrax obovata \N \N \N \N \N 52605 \N subspecies Ivesia lycopodioides subsp. megalopetala \N \N \N \N \N 52606 A.corniculatum Aegiceras Aegiceras corniculatum \N \N \N \N \N 52607 L.cappadocicus Leymus Leymus cappadocicus \N \N \N \N \N 62114 \N genus Phlebolobium \N \N \N \N \N 52608 B.arborea Bursera Bursera arborea \N \N \N \N \N 52609 A.lemmonii Allium Allium lemmonii \N \N \N \N \N 52610 \N genus Melocarpum \N \N \N \N \N 52611 C.leptalea Carex Carex leptalea \N \N \N \N \N 52612 F.macrosciadea Ferulago Ferulago macrosciadea \N \N \N \N \N 52613 P.subglabra Pseudoselago Pseudoselago subglabra \N \N \N \N \N 52614 F.azorica Frangula Frangula azorica \N \N \N \N \N 52615 I.squalida Indigofera Indigofera squalida \N \N \N \N \N 52616 S.JWC-20007 Soulamea Soulamea sp. JWC-20007 \N \N \N \N \N 52617 C.vallesiaca Centaurea Centaurea vallesiaca \N \N \N \N \N 52618 R.alpicola Rudbeckia Rudbeckia alpicola \N \N \N \N \N 52619 M.glomerata Mikania Mikania glomerata \N \N \N \N \N 52620 C.soliman Croton Croton soliman \N \N \N \N \N 52621 P.serpentinus Peniocereus Peniocereus serpentinus \N \N \N \N \N 52622 T.pusillum Taeniophyllum Taeniophyllum pusillum \N \N \N \N \N 52623 \N genus Streptocaulon \N \N \N \N \N 52624 \N genus Rhipidocladum \N \N \N \N \N 52625 L.narbonense Loncomelos Loncomelos narbonense star-of-Bethlehem \N \N \N \N 52626 F.nigra Fraxinus Fraxinus nigra black ash \N \N \N \N 52627 C.undulatus Corybas Corybas undulatus \N \N \N \N \N 52628 S.greuteriana Sternbergia Sternbergia greuteriana \N \N \N \N \N 52629 D.muscoides Distichia Distichia muscoides \N \N \N \N \N 52630 I.ludwigii Isolepis Isolepis ludwigii \N \N \N \N \N 52631 C.lativena Carex Carex lativena \N \N \N \N \N 52632 A.moschatum Atherosperma Atherosperma moschatum Tasmanian sassafras \N \N \N \N 52633 \N genus Kohleria \N \N \N \N \N 52634 A.kirrindicus Astragalus Astragalus kirrindicus \N \N \N \N \N 52635 P.J.R.B.Tosh-2008 Peponidium Peponidium sp. J.R.B.Tosh-2008 \N \N \N \N \N 52636 M.decumbens Maerua Maerua decumbens \N \N \N \N \N 52637 J.magnistipulata Julbernardia Julbernardia magnistipulata \N \N \N \N \N 52638 \N varietas Aegilops tauschii var. meyeri \N \N \N \N \N 52639 M.guerinae Myriocephalus Myriocephalus guerinae \N \N \N \N \N 52640 \N genus Heliophila Cape stock \N \N \N \N 52641 A.hirtella Asclepias Asclepias hirtella \N \N \N \N \N 52642 O.brachycarpa Oenothera Oenothera brachycarpa \N \N \N \N \N 52643 C.atrothea Camellia Camellia atrothea \N \N \N \N \N 52644 P.angustifolia Philotheca Philotheca angustifolia \N \N \N \N \N 52645 \N genus Mida \N \N \N \N \N 52646 \N genus Louteridium \N \N \N \N \N 52647 C.retusa Crotalaria Crotalaria retusa \N \N \N \N \N 52648 A.linaria Asclepias Asclepias linaria \N \N \N \N \N 52649 S.rivinifolia Securidaca Securidaca rivinifolia \N \N \N \N \N 52650 M.botryoides Muscari Muscari botryoides \N \N \N \N \N 52651 E.frigida Euphrasia Euphrasia frigida \N \N \N \N \N 52652 C.bigbendensis Croton Croton bigbendensis \N \N \N \N \N 52653 O.lojaconoi Ophrys Ophrys lojaconoi \N \N \N \N \N 52654 A.foveolata Aristolochia Aristolochia foveolata \N \N \N \N \N 52655 C.sulphureus Cosmos Cosmos sulphureus orange cosmos \N \N \N \N 52656 \N genus Psorothamnus \N \N \N \N \N 52657 L.laxum Leucadendron Leucadendron laxum \N \N \N \N \N 52658 S.tragacantha Sterculia Sterculia tragacantha \N \N \N \N \N 52659 R.pirifolius Rubus Rubus pirifolius \N \N \N \N \N 52660 \N genus Platycyamus \N \N \N \N \N 52661 C.tetracantha Cylindropuntia Cylindropuntia x tetracantha \N \N \N \N \N 52662 I.teitensis Impatiens Impatiens teitensis \N \N \N \N \N 52663 P.ankazobeensis Pyrostria Pyrostria ankazobeensis \N \N \N \N \N 52664 K.weddellianus Kentrothamnus Kentrothamnus weddellianus \N \N \N \N \N 52665 D.tiliacea Dombeya Dombeya tiliacea \N \N \N \N \N 52666 L.labiatus Leochilus Leochilus labiatus \N \N \N \N \N 52667 \N genus Alseodaphne \N \N \N \N \N 52668 P.montanus Penstemon Penstemon montanus \N \N \N \N \N 52669 M.turquinensis Miconia Miconia turquinensis \N \N \N \N \N 52670 B.steudneri Bonatea Bonatea steudneri \N \N \N \N \N 52671 H.linearis Helicotropis Helicotropis linearis \N \N \N \N \N 52672 N.oguraensis Nuphar Nuphar oguraensis \N \N \N \N \N 52673 P.japonica Peristrophe Peristrophe japonica \N \N \N \N \N 52674 S.jiuhuashanicus Sinosenecio Sinosenecio jiuhuashanicus \N \N \N \N \N 52675 C.spathulatum Chorizema Chorizema spathulatum \N \N \N \N \N 52676 A.refractum Aconitum Aconitum refractum \N \N \N \N \N 52677 E.raddeanum Enemion Enemion raddeanum \N \N \N \N \N 52678 Q.laurifolia Quercus Quercus laurifolia swamp laurel oak \N \N \N \N 52679 F.davidii Fritillaria Fritillaria davidii \N \N \N \N \N 52680 D.brasiliense Dasyphyllum Dasyphyllum brasiliense \N \N \N \N \N 52681 O.frenchii Oligochaetochilus Oligochaetochilus frenchii \N \N \N \N \N 52682 P.mesembricum Polygonum Polygonum mesembricum \N \N \N \N \N 52683 G.fruticosa Garcinia Garcinia fruticosa \N \N \N \N \N 52684 M.foveolata Michelia Michelia foveolata \N \N \N \N \N 52685 A.pinnata Arenga Arenga pinnata \N \N \N \N \N 52686 A.argyrophylla Alchemilla Alchemilla argyrophylla \N \N \N \N \N 52687 A.spinifolia Aralia Aralia spinifolia \N \N \N \N \N 52688 M.aucheri Malabaila Malabaila aucheri \N \N \N \N \N 52689 \N genus Connarus \N \N \N \N \N 52690 L.officinale Lithospermum Lithospermum officinale \N \N \N \N \N 52691 G.cynanchoides Gaudichaudia Gaudichaudia cynanchoides \N \N \N \N \N 52692 L.subulata Leandra Leandra subulata \N \N \N \N \N 52693 S.leimanthoides Stenanthium Stenanthium leimanthoides \N \N \N \N \N 52694 P.albiflorus Plagiobothrys Plagiobothrys albiflorus \N \N \N \N \N 52695 C.demersum Ceratophyllum Ceratophyllum demersum hornwort \N \N \N \N 52696 A.macradenia Acacia Acacia macradenia \N \N \N \N \N 52697 T.africana Tamarix Tamarix africana \N \N \N \N \N 52698 B.swartziana Bunchosia Bunchosia swartziana \N \N \N \N \N 52699 A.vallesiaca Artemisia Artemisia vallesiaca \N \N \N \N \N 52700 P.carneum Pelargonium Pelargonium carneum \N \N \N \N \N 52701 V.tanacetifolia Valeriana Valeriana tanacetifolia \N \N \N \N \N 52702 I.acradenia Isocoma Isocoma acradenia \N \N \N \N \N 52703 A.catechu Acacia Acacia catechu \N \N \N \N \N 52704 \N genus Lepidogyne \N \N \N \N \N 52705 \N varietas Fagopyrum gracilipes var. odontopterum \N \N \N \N \N 52706 N.clavigera Neoalsomitra Neoalsomitra clavigera \N \N \N \N \N 52707 H.sieboldii Hylotelephium Hylotelephium sieboldii \N \N \N \N \N 52708 A.hexatepalus Aponogeton Aponogeton hexatepalus \N \N \N \N \N 52709 A.helmsii Allocasuarina Allocasuarina helmsii \N \N \N \N \N 52710 G.intonsa Gnephosis Gnephosis intonsa \N \N \N \N \N 52711 C.ciliata Chaetanthera Chaetanthera ciliata \N \N \N \N \N 52712 \N tribe Freylinieae \N \N \N \N \N 52713 P.ibarrae Pinguicula Pinguicula ibarrae \N \N \N \N \N 52714 A.kerrii Aristolochia Aristolochia kerrii \N \N \N \N \N 52715 \N tribe Neottieae \N \N \N \N \N 52716 C.betafensis Cyperus Cyperus betafensis \N \N \N \N \N 52717 \N genus Stackhousia \N \N \N \N \N 52718 D.94/49 Drimia Drimia cf. macrantha Stedje 94/49 \N \N \N \N \N 52719 R.penduliflora Ramirezella Ramirezella penduliflora \N \N \N \N \N 52720 P.suberosa Parthenocissus Parthenocissus suberosa \N \N \N \N \N 52721 D.WP4B1005 Drypetes Drypetes sp. WP4B1005 \N \N \N \N \N 52722 \N family Campanulaceae bellflower family \N \N \N \N 52723 T.phanerophlebia Terminalia Terminalia phanerophlebia \N \N \N \N \N 52724 S.creber Sporobolus Sporobolus creber \N \N \N \N \N 52725 A.podocarpa Actaea Actaea podocarpa \N \N \N \N \N 52726 \N genus Flacourtia \N \N \N \N \N 52727 \N genus Nouelia \N \N \N \N \N 52728 \N genus Malvalthaea \N \N \N \N \N 52729 A.liliifolia Adenophora Adenophora liliifolia ladybells \N \N \N \N 52730 B.purpusii Blakea Blakea purpusii \N \N \N \N \N 52731 V.adenophorum Viburnum Viburnum adenophorum \N \N \N \N \N 52732 C.H5_19 Castilleja Castilleja sp. H5_19 \N \N \N \N \N 52733 A.viridiflora Asclepias Asclepias viridiflora \N \N \N \N \N 52734 S.passargei Striga Striga passargei \N \N \N \N \N 52735 P.calamaria Prosthechea Prosthechea calamaria \N \N \N \N \N 52736 F.cumingiana Freycinetia Freycinetia cumingiana \N \N \N \N \N 52737 R.capparoides Ritchiea Ritchiea capparoides \N \N \N \N \N 52738 \N subspecies Centaurea resupinata subsp. simulans \N \N \N \N \N 52739 G.parvula Gaultheria Gaultheria parvula \N \N \N \N \N 52740 R.837 Rhodocolea Rhodocolea sp. Zjhra 837 \N \N \N \N \N 52741 C.lanata Carlina Carlina lanata \N \N \N \N \N 52742 \N genus Crithmum \N \N \N \N \N 52743 P.alchorneifolia Paranecepsia Paranecepsia alchorneifolia \N \N \N \N \N 52744 \N subspecies Macropiper excelsum subsp. peltatum \N \N \N \N \N 52745 G.macrophyllus Gonystylus Gonystylus macrophyllus \N \N \N \N \N 52746 P.lancifolia Parrya Parrya lancifolia \N \N \N \N \N 52747 C.schiedeanum Chiropetalum Chiropetalum schiedeanum \N \N \N \N \N 52748 O.commutata Omphalodes Omphalodes commutata \N \N \N \N \N 52749 \N genus Pterolobium \N \N \N \N \N 52750 \N genus Schottariella \N \N \N \N \N 52751 L.forrestii Lomatogonium Lomatogonium forrestii \N \N \N \N \N 52752 L.palustris Lotus Lotus palustris \N \N \N \N \N 52753 \N subfamily Amaryllidoideae \N \N \N \N \N 52754 D.simulans Dioscorea Dioscorea simulans \N \N \N \N \N 52755 E.leptophylla Eurya Eurya leptophylla \N \N \N \N \N 52756 A.18425 Argomuellera Argomuellera sp. McPherson 18425 \N \N \N \N \N 52757 R.anceps Rhadinothamnus Rhadinothamnus anceps \N \N \N \N \N 52758 A.fissoides Antegibbaeum Antegibbaeum fissoides \N \N \N \N \N 52759 A.insigne Asarum Asarum insigne \N \N \N \N \N 52760 H.planifolium Haemodorum Haemodorum planifolium \N \N \N \N \N 52761 O.siberica Othocallis Othocallis siberica Siberian squill \N \N \N \N 52762 S.flaccidifolia Salvia Salvia flaccidifolia \N \N \N \N \N 52763 D.paysonii Dryopetalon Dryopetalon paysonii \N \N \N \N \N 52764 R.telephiifolia Reseda Reseda telephiifolia \N \N \N \N \N 52765 T.4320Hnew unclassified Taraxacum Taraxacum sp. 4320Hnew \N \N \N \N \N 52766 C.stolonifera Chamaedorea Chamaedorea stolonifera \N \N \N \N \N 52767 \N genus Zollernia \N \N \N \N \N 52768 O.alpina Oxalis Oxalis alpina \N \N \N \N \N 52769 U.australis Utricularia Utricularia australis \N \N \N \N \N 65381 \N genus Thurnia \N \N \N \N \N 52770 O.douglasii Olsynium Olsynium douglasii \N \N \N \N \N 52771 P.carolorum Polyscias Polyscias carolorum \N \N \N \N \N 52772 C.hookeri Chimarrhis Chimarrhis hookeri \N \N \N \N \N 52773 I.lehmannii Iochroma Iochroma lehmannii \N \N \N \N \N 52774 T.15f unclassified Taraxacum Taraxacum (sect. Erythrocarpa) sp. 15f \N \N \N \N \N 52775 A.triloba Asimina Asimina triloba pawpaw \N \N \N \N 52776 L.rosthornii Lilium Lilium rosthornii \N \N \N \N \N 52777 V.inamoenum Vincetoxicum Vincetoxicum inamoenum \N \N \N \N \N 52778 S.sorbifolia Spathelia Spathelia sorbifolia \N \N \N \N \N 52779 P.bonjardinensis Petunia Petunia bonjardinensis \N \N \N \N \N 52780 R.edgeworthii Rhododendron Rhododendron edgeworthii \N \N \N \N \N 52781 H.leschenaultii Hypericum Hypericum leschenaultii \N \N \N \N \N 52782 P.quadrifolia Peperomia Peperomia quadrifolia \N \N \N \N \N 52783 P.cunninghamii Plantago Plantago cunninghamii \N \N \N \N \N 52784 P.2727 Psychotria Psychotria sp. Bremer 2727 \N \N \N \N \N 52785 T.macrocalyx Tabernaemontana Tabernaemontana macrocalyx \N \N \N \N \N 52786 A.apiacea Artemisia Artemisia apiacea \N \N \N \N \N 52787 \N genus Machairophyllum \N \N \N \N \N 52788 A.komarovianum Allium Allium komarovianum \N \N \N \N \N 52789 D.brevisiliqua Descurainia Descurainia brevisiliqua \N \N \N \N \N 52790 C.dolichophylla Coffea Coffea dolichophylla \N \N \N \N \N 52791 S.chinensis Schisandra Schisandra chinensis magnolia-vine,wu wei zi \N \N \N \N 52792 A.laxiflora Aletris Aletris laxiflora \N \N \N \N \N 52793 C.auriculata Castilleja Castilleja auriculata \N \N \N \N \N 52794 J.comata Justicia Justicia comata \N \N \N \N \N 52795 C.nitens Croton Croton nitens \N \N \N \N \N 52796 V.corymbosa Voyria Voyria corymbosa \N \N \N \N \N 52797 M.coahuilensis Mammillaria Mammillaria coahuilensis \N \N \N \N \N 52798 P.siamicum Peucedanum Peucedanum siamicum \N \N \N \N \N 52799 G.polycephalum Gymnophyton Gymnophyton polycephalum \N \N \N \N \N 52800 S.botumirimensis Schefflera Schefflera botumirimensis \N \N \N \N \N 52801 S.angustata Sibiraea Sibiraea angustata \N \N \N \N \N 52802 N.anamensis Nepenthes Nepenthes anamensis \N \N \N \N \N 52803 R.albicans Ravenea Ravenea albicans \N \N \N \N \N 52804 \N subspecies Rhipsalis baccifera subsp. hileiabaiana \N \N \N \N \N 52805 S.sessiflora Sogerianthe Sogerianthe sessiflora \N \N \N \N \N 52806 C.procera Cyrtocarpa Cyrtocarpa procera \N \N \N \N \N 52807 C.raichei Calochortus Calochortus raichei \N \N \N \N \N 52808 P.rivulorum Pterocyclus Pterocyclus rivulorum \N \N \N \N \N 52809 M.stenandrum Mesembryanthemum Mesembryanthemum stenandrum \N \N \N \N \N 52810 \N subspecies Aegilops speltoides subsp. speltoides goat grass \N \N \N \N 52811 \N genus Leucocalantha \N \N \N \N \N 52812 \N genus Heisteria \N \N \N \N \N 52813 \N genus Tecophilaea \N \N \N \N \N 52814 M.ochroleuca Moraea Moraea ochroleuca \N \N \N \N \N 52815 E.polylepis Euchiton Euchiton polylepis \N \N \N \N \N 52816 A.bucharicum Allium Allium bucharicum \N \N \N \N \N 52817 \N genus Ammophila \N \N \N \N \N 52818 \N genus Reineckea \N \N \N \N \N 52819 C.madagascariensis Carex Carex madagascariensis \N \N \N \N \N 52820 M.huberi Medicago Medicago huberi \N \N \N \N \N 52821 H.thomsonii Hoya Hoya thomsonii \N \N \N \N \N 52822 L.setosa Lethedon Lethedon setosa \N \N \N \N \N 52823 V.reinwardtii Verreauxia Verreauxia reinwardtii \N \N \N \N \N 52824 \N subspecies Guarea macrophylla subsp. macrophylla \N \N \N \N \N 52825 I.perrieri Inula Inula perrieri \N \N \N \N \N 52826 S.aegyptiaca Silene Silene aegyptiaca \N \N \N \N \N 52827 \N tribe Momordiceae \N \N \N \N \N 52828 B.macropetalum Brachystelma Brachystelma macropetalum \N \N \N \N \N 52829 S.distans Scleria Scleria distans \N \N \N \N \N 52830 S.euryphyllus Savannosiphon Savannosiphon euryphyllus \N \N \N \N \N 52831 \N genus Chamira \N \N \N \N \N 52832 L.formosa Lambertia Lambertia formosa \N \N \N \N \N 52833 S.oliganthus Streptanthus Streptanthus oliganthus \N \N \N \N \N 52834 T.squarrosum Thalictrum Thalictrum squarrosum \N \N \N \N \N 52835 M.gallinarum Martellidendron Martellidendron gallinarum \N \N \N \N \N 52836 P.colorata Pseudowintera Pseudowintera colorata \N \N \N \N \N 52837 \N genus Broussaisia \N \N \N \N \N 52838 J.lezamae Jaltomata Jaltomata lezamae \N \N \N \N \N 52839 \N genus Vernonanthura \N \N \N \N \N 52840 P.fryeri Potamogeton Potamogeton fryeri \N \N \N \N \N 52841 \N genus Phyllachne \N \N \N \N \N 52842 O.spitzelii Orchis Orchis spitzelii \N \N \N \N \N 52843 C.edithae Caralluma Caralluma edithae \N \N \N \N \N 52844 \N subspecies Perezia squarrosa subsp. cubaetensis \N \N \N \N \N 52845 R.hybridus Ranunculus Ranunculus hybridus \N \N \N \N \N 52846 V.lantanoides Viburnum Viburnum lantanoides \N \N \N \N \N 52847 S.sempervivus Senecio Senecio sempervivus \N \N \N \N \N 52848 \N genus Krasnovia \N \N \N \N \N 52849 F.leptocarpa Forsteronia Forsteronia leptocarpa \N \N \N \N \N 52850 N.chinensis Najas Najas chinensis \N \N \N \N \N 52851 A.rostrata Abrotanella Abrotanella rostrata \N \N \N \N \N 52852 H.khaoyaiense Hydrobryum Hydrobryum khaoyaiense \N \N \N \N \N 52853 R.serrulata Rhynchanthera Rhynchanthera serrulata \N \N \N \N \N 52854 S.guzmanguense Solanum Solanum guzmanguense \N \N \N \N \N 52855 P.euchila Pultenaea Pultenaea euchila \N \N \N \N \N 52856 W.lipscombiae Warczewiczella Warczewiczella lipscombiae \N \N \N \N \N 52857 G.sylvestris Genista Genista sylvestris \N \N \N \N \N 52858 C.chiriquianum Cestrum Cestrum chiriquianum \N \N \N \N \N 52859 S.asperifolia Streptostachys Streptostachys asperifolia \N \N \N \N \N 52860 N.mapuluensis Nepenthes Nepenthes mapuluensis \N \N \N \N \N 52861 G.max Glycine Glycine max soybean,soybeans \N \N \N \N 52862 S.suffruticosa Stemodia Stemodia suffruticosa \N \N \N \N \N 52863 T.K3660 unclassified Taraxacum Taraxacum (sect. Dissecta) sp. K3660 \N \N \N \N \N 52864 \N genus Dais \N \N \N \N \N 52865 \N genus Brachythrix \N \N \N \N \N 52866 C.lantzii Cremocarpon Cremocarpon lantzii \N \N \N \N \N 52869 D.cyanocentrum Dendrobium Dendrobium cyanocentrum \N \N \N \N \N 52870 D.verna Draba Draba verna \N \N \N \N \N 52871 C.villosum Capsicum Capsicum villosum \N \N \N \N \N 52872 E.serotinum Eupatorium Eupatorium serotinum lateflowering thoroughwort \N \N \N \N 52873 \N varietas Polygonum weyrichii var. alpinum \N \N \N \N \N 52874 O.94-14614-3 Ochagavia Ochagavia cf. carnea FRP 94-14614-3 \N \N \N \N \N 52875 V.virescens Valeriana Valeriana virescens \N \N \N \N \N 52876 \N genus Cypselea \N \N \N \N \N 52877 G.diandrum Glossostigma Glossostigma diandrum mudmat \N \N \N \N 52878 T.adpressum Tropaeolum Tropaeolum adpressum \N \N \N \N \N 52879 U.pittieri Uniola Uniola pittieri \N \N \N \N \N 52880 I.flavidus Isodon Isodon flavidus \N \N \N \N \N 52881 S.ctenophyllus Senecio Senecio ctenophyllus \N \N \N \N \N 52882 S.campanulatum Solanum Solanum campanulatum \N \N \N \N \N 52883 P.mollis Physalis Physalis mollis field groundcherry \N \N \N \N 52884 P.canariensis Phalaris Phalaris canariensis \N \N \N \N \N 52885 S.corniculata Suaeda Suaeda corniculata \N \N \N \N \N 52886 S.tessmannii Swartzia Swartzia tessmannii \N \N \N \N \N 52887 A.catalinae Arctostaphylos Arctostaphylos catalinae \N \N \N \N \N 52888 I.odaesanensis Iris Iris odaesanensis \N \N \N \N \N 52889 E.echi715 Eupatorium Eupatorium sp. Schmidt echi715 \N \N \N \N \N 52890 L.lyratum Lepidium Lepidium lyratum \N \N \N \N \N 52891 M.tomentosa Manihot Manihot tomentosa \N \N \N \N \N 52892 P.fastigiata Paronychia Paronychia fastigiata \N \N \N \N \N 52893 C.villarsii Chaerophyllum Chaerophyllum villarsii \N \N \N \N \N 52894 M.jucunda Miconia Miconia jucunda \N \N \N \N \N 52895 \N genus Transberingia \N \N \N \N \N 52896 G.bohemica Gentianella Gentianella bohemica \N \N \N \N \N 52897 \N subtribe Tupeinae \N \N \N \N \N 52898 P.uniglandulosa Polanisia Polanisia uniglandulosa \N \N \N \N \N 52899 C.obovata Cliffortia Cliffortia obovata \N \N \N \N \N 52900 C.VB9639 Clusia Clusia sp. VB9639 \N \N \N \N \N 52901 \N genus Neogardneria \N \N \N \N \N 52902 H.grumosa Hymenachne Hymenachne grumosa \N \N \N \N \N 52903 H.pumilis Hesperochiron Hesperochiron pumilis \N \N \N \N \N 52904 C.mannii Carex Carex mannii \N \N \N \N \N 52905 \N genus Neohenricia \N \N \N \N \N 52906 A.riparia Aristida Aristida riparia \N \N \N \N \N 52907 S.HT Stephania Stephania sp. 83 HT \N \N \N \N \N 52908 M.speciosus Myoxanthus Myoxanthus speciosus \N \N \N \N \N 52909 S.laricifolia Salsola Salsola laricifolia \N \N \N \N \N 52910 C.santolinoides Chaenactis Chaenactis santolinoides \N \N \N \N \N 52911 T.litoralis Terminalia Terminalia litoralis \N \N \N \N \N 52912 D.harra Diplotaxis Diplotaxis harra \N \N \N \N \N 52913 \N genus Centrolobium \N \N \N \N \N 52914 N.yunnanensis Nannoglottis Nannoglottis yunnanensis \N \N \N \N \N 52915 A.unifolia Albuca Albuca unifolia \N \N \N \N \N 52916 P.niveus Ptilostemon Ptilostemon niveus \N \N \N \N \N 52917 L.ruschiorum Lithops Lithops ruschiorum \N \N \N \N \N 52918 C.cordifolia Crambe Crambe cordifolia \N \N \N \N \N 52919 \N varietas Saurauia tristyla var. oldhamii \N \N \N \N \N 52920 P.carduchorum Prunus Prunus carduchorum \N \N \N \N \N 52921 L.strigosa Lisaea Lisaea strigosa \N \N \N \N \N 52922 T.talbotii Tricalysia Tricalysia talbotii \N \N \N \N \N 52923 L.lipskyanus Lophanthus Lophanthus lipskyanus \N \N \N \N \N 52924 M.macrodendron Memecylon Memecylon macrodendron \N \N \N \N \N 52925 \N genus Atherandra \N \N \N \N \N 52926 V.michelii Virola Virola michelii \N \N \N \N \N 52927 A.clanwilliamae-gloria Albuca Albuca clanwilliamae-gloria \N \N \N \N \N 52928 R.penicillata Rhyncholacis Rhyncholacis penicillata \N \N \N \N \N 52929 \N genus Pancratium \N \N \N \N \N 52930 P.citrina Passiflora Passiflora citrina \N \N \N \N \N 52931 D.chacaye Discaria Discaria chacaye \N \N \N \N \N 52932 S.urticifolia Stachytarpheta Stachytarpheta urticifolia \N \N \N \N \N 52933 A.shawii Albuca Albuca shawii \N \N \N \N \N 52934 S.altaiensis Sibiraea Sibiraea altaiensis \N \N \N \N \N 52935 M.simplicifolia Mauria Mauria simplicifolia \N \N \N \N \N 52936 \N genus Neofinetia \N \N \N \N \N 52937 M.microcarpa Machilus Machilus microcarpa \N \N \N \N \N 52938 R.inopertus Rubus Rubus inopertus \N \N \N \N \N 52939 U.vanderystii Uvariopsis Uvariopsis vanderystii \N \N \N \N \N 52940 A.sericeum Amomum Amomum sericeum \N \N \N \N \N 52941 A.depauperata Artemisia Artemisia depauperata \N \N \N \N \N 52942 P.myriantha Pilea Pilea myriantha \N \N \N \N \N 52943 V.blancoi Vitis Vitis blancoi \N \N \N \N \N 52944 E.polymnioides Erato Erato polymnioides \N \N \N \N \N 52945 C.soboliferum Colchicum Colchicum soboliferum \N \N \N \N \N 52946 G.jaliscensis Gonolobus Gonolobus jaliscensis \N \N \N \N \N 52947 P.angustiphysa Physalis Physalis angustiphysa \N \N \N \N \N 52948 \N genus Aextoxicon \N \N \N \N \N 52949 S.EAK-2008 Setaria Setaria sp. EAK-2008 \N \N \N \N \N 52950 M.atriplicifolia Montanoa Montanoa atriplicifolia \N \N \N \N \N 52951 A.dracunculoides Amphiachyris Amphiachyris dracunculoides \N \N \N \N \N 52952 A.pentandrum Antidesma Antidesma pentandrum \N \N \N \N \N 52953 \N subspecies Olea europaea subsp. maroccana \N \N \N \N \N 52954 C.betulifolium Clinopodium Clinopodium betulifolium \N \N \N \N \N 52955 M.amphibium Myriophyllum Myriophyllum amphibium \N \N \N \N \N 52956 S.mitopoda Stevia Stevia mitopoda \N \N \N \N \N 52957 C.apennina Cardamine Cardamine apennina \N \N \N \N \N 52958 O.maritimus Otanthus Otanthus maritimus \N \N \N \N \N 52959 M.kauaiense Mezoneuron Mezoneuron kauaiense \N \N \N \N \N 52960 \N genus Burchardia \N \N \N \N \N 52961 A.strobilacea Acanthostachys Acanthostachys strobilacea \N \N \N \N \N 52962 B.O-581 Bletia Bletia sp. Chase O-581 \N \N \N \N \N 52963 G.junghuhniana Gaertnera Gaertnera junghuhniana \N \N \N \N \N 52964 D.dichrophylla Diospyros Diospyros dichrophylla \N \N \N \N \N 52965 M.rhomboidalis Margaritaria Margaritaria rhomboidalis \N \N \N \N \N 52966 \N genus Pleuropterantha \N \N \N \N \N 52967 B.annectens Berkheya Berkheya annectens \N \N \N \N \N 52968 P.subfalcatus Paepalanthus Paepalanthus subfalcatus \N \N \N \N \N 52969 K.oliviformis Kentiopsis Kentiopsis oliviformis \N \N \N \N \N 52970 P.exserta Petunia Petunia exserta \N \N \N \N \N 52971 L.pratensis Lathyrus Lathyrus pratensis meadow pea,meadow vetchling \N \N \N \N 52972 J.dichotomus Juncus Juncus dichotomus \N \N \N \N \N 52973 L.hispanicus Lupinus Lupinus hispanicus \N \N \N \N \N 52974 C.heptaphylla Cardamine Cardamine heptaphylla \N \N \N \N \N 52975 D.pumilla Dregeochloa Dregeochloa pumilla \N \N \N \N \N 52976 P.pubescens Physalis Physalis pubescens capuli,downy ground-cherry,muyaca \N \N \N \N 52977 \N subspecies Calycadenia truncata subsp. truncata \N \N \N \N \N 52978 \N varietas Nicotiana noctiflora var. noctiflora \N \N \N \N \N 52979 H.debilissimus Hybanthus Hybanthus debilissimus \N \N \N \N \N 52980 \N genus Capraria \N \N \N \N \N 52981 C.anatolicum Cicer Cicer anatolicum \N \N \N \N \N 52982 I.havardii Ipomopsis Ipomopsis havardii \N \N \N \N \N 52983 \N varietas Primula kisoana var. kisoana \N \N \N \N \N 52984 L.makinoana Liparis Liparis makinoana \N \N \N \N \N 52985 P.baretiana Polyscias Polyscias baretiana \N \N \N \N \N 52986 M.brachyandra Melaleuca Melaleuca brachyandra \N \N \N \N \N 52987 W.lingulata Wolffiella Wolffiella lingulata \N \N \N \N \N 52988 \N genus Iteiluma \N \N \N \N \N 52989 \N family Picrodendraceae \N \N \N \N \N 52990 P.ilheusense Piper Piper ilheusense \N \N \N \N \N 52991 S.bismarckii Stenia Stenia bismarckii \N \N \N \N \N 52992 F.engleriana Fagus Fagus engleriana \N \N \N \N \N 52993 E.SH-2010 Euphorbia Euphorbia sp. SH-2010 \N \N \N \N \N 52994 P.colorata Pentaschistis Pentameris colorata \N \N \N \N \N 52995 \N genus Ateleia \N \N \N \N \N 52996 L.schlechteri Lepturus Lepturus schlechteri \N \N \N \N \N 52997 O.microphylla Oreophysa Oreophysa microphylla \N \N \N \N \N 52999 A.prodigiosus Astragalus Astragalus prodigiosus \N \N \N \N \N 53000 V.nigritana Vetiveria Vetiveria nigritana \N \N \N \N \N 53001 R.corymbulosa Rosa Rosa corymbulosa \N \N \N \N \N 53002 \N genus Bartsia \N \N \N \N \N 53003 C.brachypoda Caragana Caragana brachypoda \N \N \N \N \N 53004 H.maheensis Hypoxidia Hypoxidia maheensis \N \N \N \N \N 53005 B.analamazoatrae Bulbophyllum Bulbophyllum analamazoatrae \N \N \N \N \N 53006 L.ammobia Lachnagrostis Lachnagrostis ammobia \N \N \N \N \N 53007 F.subulata Festuca Festuca subulata \N \N \N \N \N 53008 P.5474 Polyscias Polyscias sp. Lowry 5474 \N \N \N \N \N 53009 C.lucidus Croton Croton lucidus \N \N \N \N \N 53010 S.guatemalensis Sabal Sabal guatemalensis \N \N \N \N \N 53011 S.quadrifida Sterculia Sterculia quadrifida \N \N \N \N \N 53012 L.arenicola Linanthus Linanthus arenicola sanddune linanthus \N \N \N \N 53013 \N subspecies Meineckia phyllanthoides subsp. somalensis \N \N \N \N \N 53014 K.sibirica Knorringia Knorringia sibirica \N \N \N \N \N 53015 S.arabica Stachys Stachys arabica \N \N \N \N \N 53016 I.helenioides Inula Inula helenioides \N \N \N \N \N 53017 L.grandis Litsea Litsea grandis \N \N \N \N \N 53018 L.preissianus Lepidobolus Lepidobolus preissianus \N \N \N \N \N 53019 H.vahlii Hieracium Hieracium vahlii \N \N \N \N \N 53020 E.nudipes Eleocharis Eleocharis nudipes \N \N \N \N \N 53021 C.falcifolia Cyrtandra Cyrtandra falcifolia \N \N \N \N \N 53022 I.calva Inulanthera Inulanthera calva \N \N \N \N \N 53023 \N genus Pseudoacanthocereus \N \N \N \N \N 53024 T.recurvatum Trillium Trillium recurvatum bloody noses,prairie trillium \N \N \N \N 53025 C.gyokuchin Cymbidium Cymbidium gyokuchin \N \N \N \N \N 53026 \N genus Pentace \N \N \N \N \N 53027 M.asiatica Monolepis Monolepis asiatica \N \N \N \N \N 53028 M.sessiliflora Medinilla Medinilla sessiliflora \N \N \N \N \N 53029 \N subspecies Arachnorchis applanata subsp. erubescens \N \N \N \N \N 53030 S.1077 Saussurea Saussurea cf. tatsienensis Liu 1077 \N \N \N \N \N 53031 T.tomentosa Thibaudia Thibaudia tomentosa \N \N \N \N \N 53032 \N genus Cinchona \N \N \N \N \N 53033 A.tamaensis Asarum Asarum tamaensis \N \N \N \N \N 53034 H.simulans Haemodorum Haemodorum simulans \N \N \N \N \N 53035 A.brevipedicellata Anaxagorea Anaxagorea brevipedicellata \N \N \N \N \N 53036 S.portensis Silene Silene portensis \N \N \N \N \N 53037 G.lindheimeri Gaura Gaura lindheimeri \N \N \N \N \N 53038 L.cuencanus Lasiocephalus Lasiocephalus cuencanus \N \N \N \N \N 53039 S.ballyi Senecio Senecio ballyi \N \N \N \N \N 53040 C.02-145 Cistanthe Cistanthe sp. Hershkovitz 02-145 \N \N \N \N \N 53041 B.itatiaiae Briza Briza itatiaiae \N \N \N \N \N 53042 C.elynoides Carex Carex elynoides \N \N \N \N \N 53043 \N genus Polyxena \N \N \N \N \N 53044 B.marmorata Bryonia Bryonia marmorata \N \N \N \N \N 53045 C.maranguense Cyphostemma Cyphostemma maranguense \N \N \N \N \N 53046 \N genus Synima \N \N \N \N \N 53047 E.obtusa Eleocharis Eleocharis obtusa \N \N \N \N \N 53048 E.miserrimum Epidendrum Epidendrum miserrimum \N \N \N \N \N 53049 \N genus Mutellina \N \N \N \N \N 53050 A.filicaulis Armeria Armeria filicaulis \N \N \N \N \N 53051 L.caerulea Lonicera Lonicera caerulea blue honeysuckle \N \N \N \N 53052 \N subtribe Aerangidinae \N \N \N \N \N 53053 T.masuiana Tetracera Tetracera masuiana \N \N \N \N \N 53054 C.mongolicum Chrysanthemum Chrysanthemum mongolicum \N \N \N \N \N 53055 V.muralis Vulpia Vulpia muralis \N \N \N \N \N 53056 M.turbinata Medicago Medicago turbinata \N \N \N \N \N 53057 S.subcretacea Silene Silene subcretacea \N \N \N \N \N 53058 T.tricolor Tropaeolum Tropaeolum rhomboideum x Tropaeolum tricolor \N \N \N \N \N 53059 S.quitoense Solanum Solanum quitoense lulo,naranjilla \N \N \N \N 53060 P.vahlii Phanera Phanera vahlii \N \N \N \N \N 53061 I.rubromaculata Impatiens Impatiens rubromaculata \N \N \N \N \N 53062 T.lanceanum Trichocentrum Trichocentrum lanceanum \N \N \N \N \N 53063 S.rangei Sporobolus Sporobolus rangei \N \N \N \N \N 53064 M.anagensis Monanthes Monanthes anagensis \N \N \N \N \N 53065 P.pubistipulum Piper Piper pubistipulum \N \N \N \N \N 53066 P.longipedata Podolepis Podolepis longipedata \N \N \N \N \N 53067 D.spiralis Desmoschoenus Desmoschoenus spiralis \N \N \N \N \N 53068 V.humbertiana Vaughania Vaughania humbertiana \N \N \N \N \N 53069 C.ecirrhosa Cephalopentandra Cephalopentandra ecirrhosa \N \N \N \N \N 53070 H.megapotamica Hypochaeris Hypochaeris megapotamica \N \N \N \N \N 53071 C.aprevalii Commiphora Commiphora aprevalii \N \N \N \N \N 53072 C.16-XII-97-1 Cynometra Cynometra sp. Herendeen 16-XII-97-1 \N \N \N \N \N 53073 A.WS Anoectochilus Anoectochilus sp. WS \N \N \N \N \N 53074 \N genus Luetzelburgia \N \N \N \N \N 53075 M.angustisecta Malesherbia Malesherbia angustisecta \N \N \N \N \N 53076 G.sambukii Gypsophila Gypsophila sambukii \N \N \N \N \N 53077 S.coccinea Sterculia Sterculia coccinea \N \N \N \N \N 53078 W.delavayi Wikstroemia Wikstroemia delavayi \N \N \N \N \N 53079 L.polyadena Leandra Leandra polyadena \N \N \N \N \N 53080 L.prutenicum Laserpitium Laserpitium prutenicum \N \N \N \N \N 53081 C.transsylvanicum Cerastium Cerastium transsylvanicum \N \N \N \N \N 53082 C.tenuifolia Cleome Cleome tenuifolia \N \N \N \N \N 53083 C.horizontalis Cotoneaster Cotoneaster horizontalis \N \N \N \N \N 53084 \N subspecies Triticum timopheevii subsp. armeniacum \N \N \N \N \N 53085 \N genus Condaminea \N \N \N \N \N 53086 J.torreyi Juncus Juncus torreyi \N \N \N \N \N 53087 \N genus Lytocaryum \N \N \N \N \N 53088 D.racemiferum Diastema Diastema racemiferum \N \N \N \N \N 53089 E.antiquorum Euphorbia Euphorbia antiquorum \N \N \N \N \N 53090 I.antarctica Isolepis Isolepis antarctica \N \N \N \N \N 53091 L.weilleri Linaria Linaria weilleri \N \N \N \N \N 53092 O.homeri Ophrys Ophrys homeri \N \N \N \N \N 53093 L.stepposus Lotus Lotus stepposus \N \N \N \N \N 53094 O.inclusum Octopoma Octopoma inclusum \N \N \N \N \N 53095 I.fuchsioides Iochroma Iochroma fuchsioides \N \N \N \N \N 53096 D.fargesii Decaisnea Decaisnea fargesii \N \N \N \N \N 53097 M.pterocarpa Momordica Momordica pterocarpa \N \N \N \N \N 53098 C.malpighioides Callaeum Callaeum malpighioides \N \N \N \N \N 53099 D.gerrardii Drypetes Drypetes gerrardii \N \N \N \N \N 53100 L.skinneri Lycaste Lycaste skinneri \N \N \N \N \N 53101 O.medicaginea Oxalis Oxalis medicaginea \N \N \N \N \N 53102 W.rupestris Wahlenbergia Wahlenbergia rupestris \N \N \N \N \N 53103 U.kirkii Uvariodendron Uvariodendron kirkii \N \N \N \N \N 53104 Z.carinata Zephyranthes Zephyranthes carinata \N \N \N \N \N 53105 M.alutacea Manihot Manihot alutacea \N \N \N \N \N 53106 C.salviifolius Cistus Cistus salviifolius \N \N \N \N \N 53107 H.spectabilis Helicotropis Helicotropis spectabilis \N \N \N \N \N 53108 C.sanguinea Caladenia Caladenia sanguinea \N \N \N \N \N 53109 \N genus Arum \N \N \N \N \N 53110 E.feddemae Euphorbia Euphorbia feddemae \N \N \N \N \N 53111 C.aspera Centaurea Centaurea aspera \N \N \N \N \N 53112 V.aestivalis Vitis Vitis aestivalis \N \N \N \N \N 53113 H.pamphylicum Helichrysum Helichrysum pamphylicum \N \N \N \N \N 53114 H.spinosa Hormathophylla Hormathophylla spinosa \N \N \N \N \N 53115 S.przewalskii Saussurea Saussurea przewalskii \N \N \N \N \N 53116 S.magalismontana Searsia Searsia magalismontana \N \N \N \N \N 53117 O.phaeacantha Opuntia Opuntia phaeacantha Mojave prickly-pear \N \N \N \N 53118 R.wessneriana Rebutia Rebutia wessneriana \N \N \N \N \N 53119 \N genus Chaetanthus \N \N \N \N \N 53120 S.elata Sanicula Sanicula elata \N \N \N \N \N 53121 \N genus Urera \N \N \N \N \N 53122 G.nemoralis Glyceria Glyceria nemoralis \N \N \N \N \N 53123 T.pungens Triodia Triodia pungens \N \N \N \N \N 53124 \N genus Hanburia \N \N \N \N \N 53125 M.coumete Myrcia Myrcia coumete \N \N \N \N \N 53126 D.ecuadorensis Dichaea Dichaea ecuadorensis \N \N \N \N \N 53127 P.glaucescens Pulicaria Pulicaria glaucescens \N \N \N \N \N 53128 C.macrospadix Chamaedorea Chamaedorea macrospadix \N \N \N \N \N 53129 \N genus Zootrophion \N \N \N \N \N 53130 W.cartilaginea Wahlenbergia Wahlenbergia cartilaginea \N \N \N \N \N 53131 L.chinensis Leptocanna Leptocanna chinensis \N \N \N \N \N 53132 B.scaposa Bartlettia Bartlettia scaposa \N \N \N \N \N 53133 S.boyacensis Senecio Senecio boyacensis \N \N \N \N \N 53134 Y.constricta Yucca Yucca constricta \N \N \N \N \N 53135 B.FS943 Bulbophyllum Bulbophyllum sp. FS943 \N \N \N \N \N 53136 O.oblonga Ocotea Ocotea oblonga \N \N \N \N \N 53137 S.ciliata Salomonia Salomonia ciliata \N \N \N \N \N 53138 \N genus Pachynema \N \N \N \N \N 53139 \N genus Kentrothamnus \N \N \N \N \N 53140 \N subspecies Sericolea calophylla subsp. grossiserrata \N \N \N \N \N 53141 C.crassifolia Codonanthe Codonanthe crassifolia \N \N \N \N \N 53142 P.fulgidum Pelargonium Pelargonium fulgidum \N \N \N \N \N 53143 C.RR-91-19 Coccocypselum Coccocypselum sp. RR-91-19 \N \N \N \N \N 53144 A.curvicarpus Astragalus Astragalus curvicarpus \N \N \N \N \N 53145 H.filifolia Heliopsis Heliopsis filifolia \N \N \N \N \N 53146 S.graciliramulosa Salvia Salvia graciliramulosa \N \N \N \N \N 53147 \N genus Pleea \N \N \N \N \N 53148 G.salteri Gladiolus Gladiolus salteri \N \N \N \N \N 53149 S.ebulus Sambucus Sambucus ebulus \N \N \N \N \N 53150 H.atratum Hieracium Hieracium atratum \N \N \N \N \N 53151 C.elatior Calceolaria Calceolaria elatior \N \N \N \N \N 53152 P.lobbianum Pothoidium Pothoidium lobbianum \N \N \N \N \N 53153 L.platyspermum Leucadendron Leucadendron platyspermum \N \N \N \N \N 53154 H.setosum Hypericum Hypericum setosum \N \N \N \N \N 53155 \N genus Stenocarpus \N \N \N \N \N 53156 P.quercetorum Pelargonium Pelargonium quercetorum \N \N \N \N \N 53157 A.polycephala Aspalathus Aspalathus polycephala \N \N \N \N \N 53158 I.postii Iris Iris postii \N \N \N \N \N 53159 T.caroliniensis Trautvetteria Trautvetteria caroliniensis \N \N \N \N \N 53160 A.euryphylla Angophora Angophora euryphylla \N \N \N \N \N 53161 L.macrocephala Lasianthaea Lasianthaea macrocephala \N \N \N \N \N 53162 I.achyranthoides Indigofera Indigofera achyranthoides \N \N \N \N \N 53163 T.55 Tamarix Tamarix cf. parviflora 55 \N \N \N \N \N 53164 A.mangium Acacia Acacia mangium \N \N \N \N \N 53165 S.alexandrina Senna Senna alexandrina Indian senna,casse,jalelo \N \N \N \N 53166 L.altaicum Linum Linum altaicum \N \N \N \N \N 53167 C.latisiliqua Chaetocalyx Chaetocalyx latisiliqua \N \N \N \N \N 53168 \N genus Ruppia \N \N \N \N \N 53169 \N varietas Boehmeria nivea var. viridula \N \N \N \N \N 53170 \N genus Eucrypta \N \N \N \N \N 53171 C.yunnanense Clerodendrum Clerodendrum yunnanense \N \N \N \N \N 53172 \N genus Tridynamia \N \N \N \N \N 53173 E.microneura Endiandra Endiandra microneura \N \N \N \N \N 53174 T.championii Tripterospermum Tripterospermum championii \N \N \N \N \N 53175 T.undulata Tournefortia Tournefortia undulata \N \N \N \N \N 53176 A.muelleri Atriplex Atriplex muelleri \N \N \N \N \N 53177 P.prostrata Prunus Prunus prostrata mountain cherry,rock cherry \N \N \N \N 53178 C.fallax Cladopus Cladopus fallax \N \N \N \N \N 53179 C.caesius Calamus Calamus caesius \N \N \N \N \N 53180 K.paleacea Kozlovia Kozlovia paleacea \N \N \N \N \N 53181 \N subspecies Asclepias californica subsp. californica \N \N \N \N \N 53182 C.retusus Chionanthus Chionanthus retusus \N \N \N \N \N 53183 O.portilloides Oncidium Oncidium portilloides \N \N \N \N \N 53184 \N genus Idahoa \N \N \N \N \N 53185 S.trevesioides Schefflera Schefflera trevesioides \N \N \N \N \N 53186 P.senegalensis Persicaria Persicaria senegalensis \N \N \N \N \N 53187 G.microcalyx Gentianella Gentianella microcalyx \N \N \N \N \N 53188 B.calycinum Baliospermum Baliospermum calycinum \N \N \N \N \N 53189 C.charrieriana Coffea Coffea charrieriana \N \N \N \N \N 53190 S.cincta Swertia Swertia cincta \N \N \N \N \N 53191 T.laciniatus Thysanocarpus Thysanocarpus laciniatus \N \N \N \N \N 53192 \N genus Christensonia \N \N \N \N \N 53193 E.neesii Eragrostis Eragrostis neesii \N \N \N \N \N 53194 B.tetrapterocarpa Brachyscome Brachyscome tetrapterocarpa \N \N \N \N \N 53195 H.tubispathus Habranthus Habranthus tubispathus \N \N \N \N \N 53196 M.strobophylla Melaleuca Melaleuca strobophylla \N \N \N \N \N 53197 \N varietas Prunus cerasifera var. cerasifera \N \N \N \N \N 53198 I.emodi Incarvillea Incarvillea emodi \N \N \N \N \N 53199 \N genus Caralluma \N \N \N \N \N 53200 F.pterocarpa Fezia Fezia pterocarpa \N \N \N \N \N 53201 L.983 Limeum Limeum sp. Hoot 983 \N \N \N \N \N 53202 \N subspecies Coincya monensis subsp. recurvata \N \N \N \N \N 53203 S.interior Salix Salix interior sandbar willow \N \N \N \N 53204 \N genus Dendrocereus \N \N \N \N \N 53205 D.cossonianum Delphinium Delphinium cossonianum \N \N \N \N \N 53206 D.sinensis Diphylleia Diphylleia sinensis \N \N \N \N \N 53207 T.chinchensis Tournefortia Tournefortia chinchensis \N \N \N \N \N 53208 \N genus Sanguisorba \N \N \N \N \N 53209 A.cuneata Anthemis Anthemis cuneata \N \N \N \N \N 53210 \N genus Pastinaca \N \N \N \N \N 53211 A.choisyi Allionia Allionia choisyi \N \N \N \N \N 53212 C.broussonetii Cologania Cologania broussonetii \N \N \N \N \N 53213 M.nuda Mentzelia Mentzelia nuda \N \N \N \N \N 53214 C.magennisii Cynodon Cynodon x magennisii \N \N \N \N \N 53215 M.torreyi Mimulus Mimulus torreyi \N \N \N \N \N 53216 G.poeppigii Gaultheria Gaultheria poeppigii \N \N \N \N \N 53217 A.reptans Arctotis Arctotis reptans \N \N \N \N \N 53218 S.campylacanthum Solanum Solanum campylacanthum \N \N \N \N \N 53219 N.villosus Nematanthus Nematanthus villosus \N \N \N \N \N 53220 \N subspecies Gilia ochroleuca subsp. exilis \N \N \N \N \N 53221 G.celebica Galearia Galearia celebica \N \N \N \N \N 53222 A.calcareum Arisaema Arisaema calcareum \N \N \N \N \N 53223 S.hookeriana Sarcococca Sarcococca hookeriana \N \N \N \N \N 53224 B.halconensis Begonia Begonia halconensis \N \N \N \N \N 53225 C.746 Cistanthe Cistanthe sp. Ford 746 \N \N \N \N \N 53226 S.berlandieri Stevia Stevia berlandieri \N \N \N \N \N 53227 L.nitida Loasa Loasa nitida \N \N \N \N \N 53228 A.hygrophilum Arum Arum hygrophilum \N \N \N \N \N 53229 \N genus Hofmeisterella \N \N \N \N \N 53230 C.dinisii Capsicodendron Capsicodendron dinisii \N \N \N \N \N 53231 A.dregeanum Allium Allium dregeanum \N \N \N \N \N 53232 \N subspecies Cassiope tetragona subsp. tetragona \N \N \N \N \N 53233 C.planosus Cymopterus Cymopterus planosus \N \N \N \N \N 53234 \N genus Aristida \N \N \N \N \N 53235 G.woronowii Galanthus Galanthus woronowii \N \N \N \N \N 53236 F.capillifolia Festuca Festuca capillifolia \N \N \N \N \N 53237 G.santiaguensis Glandularia Glandularia santiaguensis \N \N \N \N \N 53238 \N varietas Proustia cuneifolia var. mendocina \N \N \N \N \N 53239 L.carnosifolia Lonicera Lonicera carnosifolia \N \N \N \N \N 53240 \N genus Peliosanthes \N \N \N \N \N 53241 P.346 Peponidium Peponidium sp. Ranirison 346 \N \N \N \N \N 53242 X.pseudobaccharis Xylothamia Xylothamia pseudobaccharis \N \N \N \N \N 53243 G.watsonioides Gladiolus Gladiolus watsonioides \N \N \N \N \N 53244 O.primuloides Opithandra Opithandra primuloides \N \N \N \N \N 53245 A.messerschmidtiana Artemisia Artemisia messerschmidtiana \N \N \N \N \N 53246 J.maxillarioides Jumellea Jumellea maxillarioides \N \N \N \N \N 53247 \N tribe Bernardieae \N \N \N \N \N 53248 M.rubra Morus Morus rubra red mulberry \N \N \N \N 53249 O.travancorica Ochlandra Ochlandra travancorica \N \N \N \N \N 53250 C.43/96 Chenopodium Chenopodium sp. CHEN 43/96 \N \N \N \N \N 53251 A.ganopoda Alexgeorgea Alexgeorgea ganopoda \N \N \N \N \N 53252 \N varietas Isodon umbrosus var. latifolius \N \N \N \N \N 53253 S.rosmarinifolia Salix Salix rosmarinifolia \N \N \N \N \N 53254 \N subspecies Phlox pilosa subsp. pilosa \N \N \N \N \N 53255 C.praecox Chimonanthus Chimonanthus praecox wintersweet \N \N \N \N 53256 \N varietas Chaetanthera tenella var. tenella \N \N \N \N \N 53257 L.pleurandroides Lissanthe Lissanthe pleurandroides \N \N \N \N \N 53258 E.alexandri Erica Erica alexandri \N \N \N \N \N 53259 A.alexiteria Antidesma Antidesma alexiteria \N \N \N \N \N 53260 \N genus Sarcococca sweet box \N \N \N \N 53261 S.301) Swartzia Swartzia sp. G (Torke 301) \N \N \N \N \N 53262 \N subspecies Gentiana pumila subsp. delphinensis \N \N \N \N \N 53263 S.fleuryanum Synsepalum Synsepalum fleuryanum \N \N \N \N \N 53264 X.hartwegiana Xerospiraea Xerospiraea hartwegiana \N \N \N \N \N 53265 S.broteri Selinum Selinum broteri \N \N \N \N \N 53266 \N genus Codonorchis \N \N \N \N \N 53267 H.recurva Halenia Halenia recurva \N \N \N \N \N 53268 V.calcareum Vincetoxicum Vincetoxicum calcareum \N \N \N \N \N 53269 F.spathacea Fargesia Fargesia spathacea umbrella bamboo \N \N \N \N 53270 C.LYJB Coptosperma Coptosperma sp. LYJB \N \N \N \N \N 53271 D.corsicum Doronicum Doronicum corsicum \N \N \N \N \N 53272 D.longipes Draba Draba longipes \N \N \N \N \N 53273 G.grossifibrosa Guihaia Guihaia grossifibrosa \N \N \N \N \N 53274 C.monogyna Centrolepis Centrolepis monogyna \N \N \N \N \N 53275 L.latimerae Lachenalia Lachenalia latimerae \N \N \N \N \N 53276 L.vivaldii Lobelia Lobelia vivaldii \N \N \N \N \N 53277 A.crassifolia Atriplex Atriplex crassifolia \N \N \N \N \N 53278 C.fistula Cassia Cassia fistula golden-rain,pudding-pie-tree,purging cassia \N \N \N \N 53279 \N subspecies Eruca vesicaria subsp. sativa arugula,garden rocket \N \N \N \N 53280 S.gleasonii Schefflera Schefflera gleasonii \N \N \N \N \N 53281 S.elegans Saussurea Saussurea elegans \N \N \N \N \N 53282 Z.candida Zephyranthes Zephyranthes candida \N \N \N \N \N 53283 W.kargliana Weingartia Weingartia kargliana \N \N \N \N \N 53284 H.seubertiana Heteranthera Heteranthera seubertiana \N \N \N \N \N 53285 P.attollens Pedicularis Pedicularis attollens \N \N \N \N \N 53286 S.bergeri Sedum Sedum bergeri \N \N \N \N \N 53287 C.hirtella Coprosma Coprosma hirtella \N \N \N \N \N 53288 I.MAG-2009 Ilex Ilex sp. MAG-2009 \N \N \N \N \N 53289 A.guianensis Ardisia Ardisia guianensis \N \N \N \N \N 53290 L.bigelovii Linanthus Linanthus bigelovii Bigelow's linanthus \N \N \N \N 53291 E.Esp4 Elleanthus Elleanthus sp. Esp4 \N \N \N \N \N 53292 L.mexicana Leandra Leandra mexicana \N \N \N \N \N 53293 F.lilliputiana Ficus Ficus lilliputiana \N \N \N \N \N 53294 E.glossanthus Erymophyllum Erymophyllum glossanthus \N \N \N \N \N 53295 A.burchardii Apteranthes Apteranthes burchardii \N \N \N \N \N 53296 T.jokerstii Trifolium Trifolium jokerstii \N \N \N \N \N 53297 C.meisneriana Cryptocarya Cryptocarya meisneriana \N \N \N \N \N 53298 B.longiflora Boesenbergia Boesenbergia longiflora \N \N \N \N \N 53299 P.molokiniensis Portulaca Portulaca molokiniensis \N \N \N \N \N 53300 \N genus Gastridium \N \N \N \N \N 53301 \N subspecies Reseda undata subsp. undata \N \N \N \N \N 53302 A.magna Arachis Arachis ipaensis x Arachis magna \N \N \N \N \N 53303 P.polycolea Poa Poa polycolea \N \N \N \N \N 53304 P.catholicum Pterygodium Pterygodium catholicum \N \N \N \N \N 53305 N.viridiflorus Narcissus Narcissus viridiflorus \N \N \N \N \N 53306 A.subtingens Aspalathus Aspalathus subtingens \N \N \N \N \N 53307 \N genus Helichrysum \N \N \N \N \N 53308 H.anulata Hoya Hoya anulata \N \N \N \N \N 53309 P.11531 Phyllanthus Phyllanthus sp. Cheek 11531 \N \N \N \N \N 53310 \N varietas Senecio integerrimus var. exaltatus \N \N \N \N \N 53311 \N genus Whitfieldia \N \N \N \N \N 53312 P.glaucophyllum Paphiopedilum Paphiopedilum glaucophyllum \N \N \N \N \N 53313 S.inaequilaterum Stizophyllum Stizophyllum inaequilaterum \N \N \N \N \N 53314 H.alexanderae Hedyotis Hedyotis alexanderae \N \N \N \N \N 53315 E.scandens Erythropalum Erythropalum scandens \N \N \N \N \N 53316 H.grandiflora Hermannia Hermannia grandiflora \N \N \N \N \N 53317 S.picachensis Senegalia Senegalia picachensis \N \N \N \N \N 53318 Z.aurea Zizia Zizia aurea golden alexanders \N \N \N \N 53319 V.carbunculorum Vitex Vitex carbunculorum \N \N \N \N \N 53320 P.afer Ptilostemon Ptilostemon afer \N \N \N \N \N 53321 V.elliptica Hebe Veronica elliptica \N \N \N \N \N 53322 \N genus Billia \N \N \N \N \N 53323 S.punctata Saracha Saracha punctata \N \N \N \N \N 53324 C.pycnocephalus Carduus Carduus pycnocephalus \N \N \N \N \N 53325 P.adnata Pelexia Pelexia adnata \N \N \N \N \N 53326 \N varietas Pedicularis siphonantha var. siphonantha \N \N \N \N \N 53327 \N genus Epigaea \N \N \N \N \N 53328 L.vimineum Lycium Lycium vimineum \N \N \N \N \N 53329 R.quadrasianum Rhododendron Rhododendron quadrasianum \N \N \N \N \N 53330 A.esterhuyseniae Askidiosperma Askidiosperma esterhuyseniae \N \N \N \N \N 53331 D.membranacea Dioscorea Dioscorea membranacea \N \N \N \N \N 53332 T.diepenhorstii Tetrastigma Tetrastigma diepenhorstii \N \N \N \N \N 53333 Z.fulvum Zygophyllum Zygophyllum fulvum \N \N \N \N \N 53334 E.bellioides Erigeron Erigeron bellioides \N \N \N \N \N 53335 A.coriaceus Alectryon Alectryon coriaceus \N \N \N \N \N 53336 \N genus Restrepiella \N \N \N \N \N 53337 \N subspecies Asclepias vestita subsp. parishii \N \N \N \N \N 53338 B.latifolia Banisteriopsis Banisteriopsis latifolia \N \N \N \N \N 53339 P.longifolia Protea Protea longifolia \N \N \N \N \N 53340 D.cdK73 Dianthus Dianthus sp. cdK73 \N \N \N \N \N 53341 \N genus Gossweilerodendron \N \N \N \N \N 53342 H.dissecta Heliophila Heliophila dissecta \N \N \N \N \N 53343 B.spathulifolia Beauprea Beauprea spathulifolia \N \N \N \N \N 53344 P.P081 Physalis Physalis sp. P081 \N \N \N \N \N 53345 P.monspeliensis Polypogon Polypogon monspeliensis beard grass,rabbit-foot grass \N \N \N \N 53346 \N genus Funkiella \N \N \N \N \N 53347 M.elegans Madia Madia elegans common Madia \N \N \N \N 53348 P.auriculata Passiflora Passiflora auriculata \N \N \N \N \N 53349 M.splendida Musa Musa splendida \N \N \N \N \N 53350 B.parodii Berberis Berberis parodii \N \N \N \N \N 53351 \N tribe Hymenodictyeae \N \N \N \N \N 53352 G.tristicha Gentianella Gentianella tristicha \N \N \N \N \N 53353 P.asperifolia Piriqueta Piriqueta asperifolia \N \N \N \N \N 53354 A.reticulata Agnorhiza Agnorhiza reticulata \N \N \N \N \N 53355 C.nodosus Charianthus Charianthus nodosus \N \N \N \N \N 53356 P.DH-2011 Phillyrea Phillyrea sp. DH-2011 \N \N \N \N \N 53358 F.tugelensis Fockea Fockea tugelensis \N \N \N \N \N 53359 S.controversa Swida Swida controversa \N \N \N \N \N 53360 C.parvipetala Camellia Camellia parvipetala \N \N \N \N \N 53361 A.orientalis Ajuga Ajuga orientalis \N \N \N \N \N 53362 A.00228 Aeschynanthus Aeschynanthus cf. viridiflorus Argent and Hendrian 00228 \N \N \N \N \N 53363 L.ZAF-2471 Ledebouria Ledebouria aff. revoluta ZAF-2471 \N \N \N \N \N 53364 S.salviifolia Sida Sida salviifolia \N \N \N \N \N 53365 M.verna Myosotis Myosotis verna \N \N \N \N \N 53366 S.piluliferum Solanum Solanum piluliferum \N \N \N \N \N 53367 B.pentandra Bauhinia Bauhinia pentandra \N \N \N \N \N 53368 G.hyacinthina Griffinia Griffinia hyacinthina \N \N \N \N \N 53369 A.camptodontus Astragalus Astragalus camptodontus \N \N \N \N \N 53370 G.pubescens Greeniopsis Greeniopsis pubescens \N \N \N \N \N 53371 A.flava Aspidonepsis Aspidonepsis flava \N \N \N \N \N 53372 P.balansana Pichonia Pichonia balansana \N \N \N \N \N 53373 C.oppositifolia Colebrookea Colebrookea oppositifolia \N \N \N \N \N 53374 A.parvifolia Aristolochia Aristolochia parvifolia \N \N \N \N \N 53375 L.americana Littorella Littorella americana \N \N \N \N \N 53376 C.griseus Ceanothus Ceanothus griseus \N \N \N \N \N 53377 N.viscidula Navarretia Navarretia viscidula \N \N \N \N \N 53378 S.glabrum Syrmatium Syrmatium glabrum \N \N \N \N \N 53379 E.chamissonis Eriophorum Eriophorum chamissonis \N \N \N \N \N 53380 A.villosa Armeria Armeria villosa \N \N \N \N \N 53381 E.nereidum Euphorbia Euphorbia nereidum \N \N \N \N \N 53382 C.laticeps Carex Carex laticeps \N \N \N \N \N 53383 C.mcphersonii Coffea Coffea mcphersonii \N \N \N \N \N 53384 I.spinigera Ilex Ilex spinigera \N \N \N \N \N 53385 L.subulatum Lepidium Lepidium subulatum \N \N \N \N \N 53386 S.tsinchengshanensis Smilax Smilax tsinchengshanensis \N \N \N \N \N 53387 N.monosperma Neptunia Neptunia monosperma \N \N \N \N \N 53388 \N subspecies Primula boothii subsp. repens \N \N \N \N \N 53389 L.LLC-2007 Lithocarpus Lithocarpus sp. LLC-2007 \N \N \N \N \N 53390 Z.simulans Zanthoxylum Zanthoxylum simulans Sichuan-pepper,ye hua jiao \N \N \N \N 53391 M.sp. Muscari Muscari sp. \N \N \N \N \N 53392 P.petiolatum Pohlidium Pohlidium petiolatum \N \N \N \N \N 53393 C.glanduligera Coryphantha Coryphantha glanduligera \N \N \N \N \N 53394 P.flabellaris Pomaderris Pomaderris flabellaris \N \N \N \N \N 53395 E.SH-2010 Erigeron Erigeron sp. SH-2010 \N \N \N \N \N 53396 G.dryandroides Grevillea Grevillea dryandroides \N \N \N \N \N 53397 R.rostratum Ranalisma Ranalisma rostratum \N \N \N \N \N 53398 H.MAB-2005 Hesperis Hesperis sp. MAB-2005 \N \N \N \N \N 53399 R.longipes Ruthalicia Ruthalicia longipes \N \N \N \N \N 53400 S.okinawensis Symplocos Symplocos okinawensis \N \N \N \N \N 53401 E.spiculatum Eminium Eminium spiculatum \N \N \N \N \N 53402 R.elata Reseda Reseda elata \N \N \N \N \N 53403 S.sukaczevii Salsola Salsola sukaczevii \N \N \N \N \N 53404 P.dunniana Paris Paris dunniana \N \N \N \N \N 53405 G.anomala Gnidia Gnidia anomala \N \N \N \N \N 53406 L.cinerea Lebeckia Lebeckia cinerea \N \N \N \N \N 53407 P.fasciculatum Piptostigma Piptostigma fasciculatum \N \N \N \N \N 53408 H.virginianum Hydrophyllum Hydrophyllum virginianum \N \N \N \N \N 53409 L.schwackeana Luxemburgia Luxemburgia schwackeana \N \N \N \N \N 53410 L.oreganus Lupinus Lupinus oreganus \N \N \N \N \N 53411 A.triodon Aliciella Aliciella triodon \N \N \N \N \N 53412 \N varietas Actinidia eriantha var. calvescens \N \N \N \N \N 53413 L.whelanii Lasjia Lasjia whelanii \N \N \N \N \N 53414 D.megalocarpa Duguetia Duguetia megalocarpa \N \N \N \N \N 53415 C.rodrigoi Condylago Condylago rodrigoi \N \N \N \N \N 53416 G.decurrens Guatteria Guatteria decurrens \N \N \N \N \N 53417 H.benzingii Hirtzia Hirtzia benzingii \N \N \N \N \N 53418 E.sphaericus Euchiton Euchiton sphaericus \N \N \N \N \N 53419 M.crassifolia Muraltia Muraltia crassifolia \N \N \N \N \N 53420 \N genus Euryale \N \N \N \N \N 53421 C.longgangensis Camellia Camellia longgangensis \N \N \N \N \N 53422 C.spinulosa Chirita Chirita spinulosa \N \N \N \N \N 53423 \N varietas Isodon shikokianus var. shikokianus \N \N \N \N \N 53424 \N genus Calophaca \N \N \N \N \N 53425 P.kahiliensis Phyllostegia Phyllostegia kahiliensis \N \N \N \N \N 53426 P.resurgens Phyllobolus Phyllobolus resurgens \N \N \N \N \N 53427 C.filicauloides Cliffortia Cliffortia filicauloides \N \N \N \N \N 53428 T.mandshurica Tilia Tilia mandshurica \N \N \N \N \N 53429 L.macrodon Lycium Lycium macrodon desert wolfberry \N \N \N \N 53430 \N subspecies Sidalcea malviflora subsp. malviflora \N \N \N \N \N 53431 \N genus Melichrus \N \N \N \N \N 53432 A.huegelii Alyogyne Alyogyne huegelii \N \N \N \N \N 53433 \N varietas Chorizanthe robusta var. robusta \N \N \N \N \N 53434 M.lactea Malesherbia Malesherbia lactea \N \N \N \N \N 53435 \N subspecies Crocus sieberi subsp. sublimis \N \N \N \N \N 53436 \N genus Verreauxia \N \N \N \N \N 53437 G.maritima Glaux Glaux maritima \N \N \N \N \N 53438 P.minor Phaius Phaius minor \N \N \N \N \N 53439 S.moniliformis Sclerostegia Sclerostegia moniliformis \N \N \N \N \N 53440 \N varietas Dracaena reflexa var. occidentalis \N \N \N \N \N 53441 B.nossibea Begonia Begonia nossibea \N \N \N \N \N 53442 J.falcatus Juncus Juncus falcatus \N \N \N \N \N 53443 A.echidna Astragalus Astragalus echidna \N \N \N \N \N 53444 \N genus Mezzettia \N \N \N \N \N 53445 B.muelleri Brachyscome Brachyscome muelleri \N \N \N \N \N 53446 L.latifolius Lathyrus Lathyrus latifolius everlasting-pea,perennial-pea \N \N \N \N 53447 R.acerosum Rytidosperma Rytidosperma acerosum \N \N \N \N \N 53448 A.macrophylla Anthonotha Anthonotha macrophylla \N \N \N \N \N 53449 S.declinata Saraca Saraca declinata \N \N \N \N \N 53450 E.vivipara Escobaria Escobaria vivipara \N \N \N \N \N 53451 S.acutilobum Solanum Solanum acutilobum \N \N \N \N \N 53452 R.brachycarpa Rorippa Rorippa brachycarpa \N \N \N \N \N 53453 D.sabulorum Dichanthelium Dichanthelium sabulorum \N \N \N \N \N 53454 \N subspecies Centaurea triumfettii subsp. tanaitica \N \N \N \N \N 53455 I.astragalina Indigofera Indigofera astragalina \N \N \N \N \N 53456 H.horridum Hieracium Hieracium horridum \N \N \N \N \N 53457 C.tracyanum Cymbidium Cymbidium tracyanum \N \N \N \N \N 53458 A.eriocarpa Asclepias Asclepias eriocarpa \N \N \N \N \N 53459 \N genus Podonosma \N \N \N \N \N 53460 N.munroi Neurachne Neurachne munroi \N \N \N \N \N 53461 P.cinerascens Persea Persea cinerascens \N \N \N \N \N 53462 R.championii Rhodoleia Rhodoleia championii \N \N \N \N \N 53463 S.boivinii Stauracanthus Stauracanthus boivinii \N \N \N \N \N 53464 S.paniculatum Sidastrum Sidastrum paniculatum \N \N \N \N \N 53465 P.pyramidata Paragonia Paragonia pyramidata \N \N \N \N \N 53466 B.gracilis Beaucarnea Beaucarnea gracilis \N \N \N \N \N 53467 S.tunicoides Silene Silene tunicoides \N \N \N \N \N 53468 \N family Capparaceae \N \N \N \N \N 53469 P.cyclocarpum Ptilotrichum Ptilotrichum cyclocarpum \N \N \N \N \N 53470 D.kempteriana Dimorphanthera Dimorphanthera kempteriana \N \N \N \N \N 53471 S.morototoni Schefflera Schefflera morototoni \N \N \N \N \N 53472 B.semicompositum Bupleurum Bupleurum semicompositum \N \N \N \N \N 53473 \N forma Aristida gypsophila f. diffusa \N \N \N \N \N 53474 A.californica Aralia Aralia californica \N \N \N \N \N 53475 S.itambana Sophronitis Sophronitis itambana \N \N \N \N \N 53476 M.scoparia Monotoca Monotoca scoparia \N \N \N \N \N 53477 G.rigens Gazania Gazania rigens treasure-flower \N \N \N \N 53478 \N genus Schippia \N \N \N \N \N 53479 S.oxysepala Scrophularia Scrophularia oxysepala \N \N \N \N \N 53480 \N subspecies Carex canescens subsp. canescens \N \N \N \N \N 53481 O.gratissimum Ocimum Ocimum gratissimum \N \N \N \N \N 53482 \N genus Schlechtendalia \N \N \N \N \N 53483 E.guillemetii Euphorbia Euphorbia guillemetii \N \N \N \N \N 53484 T.polygonoides Torenia Torenia polygonoides \N \N \N \N \N 53485 N.holmgrenii Nevada Nevada holmgrenii \N \N \N \N \N 53486 C.ensifolium Cymbidium Cymbidium ensifolium \N \N \N \N \N 53487 P.uniseriata Pulicaria Pulicaria uniseriata \N \N \N \N \N 53488 A.longispinea Acacia Acacia longispinea \N \N \N \N \N 53489 \N no rank unclassified Fagus \N \N \N \N \N 53490 P.johnstonii Peniocereus Peniocereus johnstonii \N \N \N \N \N 53491 D.bifida Deinanthe Deinanthe bifida \N \N \N \N \N 53492 M.paniculata Maripa Maripa paniculata \N \N \N \N \N 53493 D.sericea Draba Draba sericea \N \N \N \N \N 53494 \N genus Lapageria \N \N \N \N \N 53495 P.tepperi Podolepis Podolepis tepperi \N \N \N \N \N 53496 P.YCFS-2009b Pseuduvaria Pseuduvaria sp. YCFS-2009b \N \N \N \N \N 53497 T.procumbens Telosma Telosma procumbens \N \N \N \N \N 53498 D.secundiflora Danthonia Danthonia secundiflora \N \N \N \N \N 53499 V.angivensis Vigna Vigna angivensis \N \N \N \N \N 53500 R.marginata Rhynchotropis Rhynchotropis marginata \N \N \N \N \N 53501 S.latifolia Sorbus Sorbus latifolia broadleaf whitebeam,mostajeiro \N \N \N \N 53502 B.kazinoki Broussonetia Broussonetia kazinoki kozo \N \N \N \N 53503 P.nudicaulis Pimpinella Pimpinella nudicaulis \N \N \N \N \N 53504 S.dulcamara Solanum Solanum dulcamara climbing nightshade \N \N \N \N 53505 \N genus Aniselytron \N \N \N \N \N 53506 L.altaica Lactuca Lactuca altaica \N \N \N \N \N 53507 L.dilloniana Larnax Larnax dilloniana \N \N \N \N \N 53508 \N subspecies Pultenaea calycina subsp. proxena \N \N \N \N \N 53509 O.mannii Oncocalamus Oncocalamus mannii \N \N \N \N \N 53510 M.viperina Mammillaria Mammillaria viperina \N \N \N \N \N 53511 I.nil Ipomoea Ipomoea nil Japanese morning glory,qian niu \N \N \N \N 53512 M.huttonii Moraea Moraea huttonii \N \N \N \N \N 53513 C.lasiophyllus Caulanthus Caulanthus lasiophyllus California mustard \N \N \N \N 53514 C.krausei Carex Carex krausei \N \N \N \N \N 53515 Q.gambelii Quercus Quercus gambelii Gambel oak \N \N \N \N 53516 \N varietas Gymnocalycium hossei var. nidulans \N \N \N \N \N 53517 P.villosus Phlojodicarpus Phlojodicarpus villosus \N \N \N \N \N 53518 C.aequialta Carex Carex aequialta \N \N \N \N \N 53519 C.acuminatus Callistemon Callistemon acuminatus \N \N \N \N \N 53520 L.cyanea Lens Lens cyanea \N \N \N \N \N 53521 C.neurophora Carex Carex neurophora \N \N \N \N \N 53522 \N subspecies Virgilia oroboides subsp. ferruginea \N \N \N \N \N 53523 S.albornozii Solanum Solanum albornozii \N \N \N \N \N 53524 \N subspecies Heracleum sphondylium subsp. ternatum \N \N \N \N \N 53525 \N genus Hoehnephytum \N \N \N \N \N 53526 \N genus Dioscoreophyllum \N \N \N \N \N 53527 N.C113 Najas Najas sp. C113 \N \N \N \N \N 53528 A.costaricensis Alternanthera Alternanthera costaricensis \N \N \N \N \N 53529 \N genus Pseuderia \N \N \N \N \N 53530 \N subspecies Perezia lactucoides subsp. palustris \N \N \N \N \N 53531 A.apioides Aralia Aralia apioides \N \N \N \N \N 53532 \N genus Trichanthodium \N \N \N \N \N 53533 C.O-821 Collabium Collabium sp. Chase O-821 \N \N \N \N \N 53534 P.sericea Polygala Polygala sericea \N \N \N \N \N 53535 L.graveolens Lomatium Lomatium graveolens king desert parsley \N \N \N \N 53536 C.lyrata Crepis Crepis lyrata \N \N \N \N \N 53537 S.graveolens Stachydeoma Stachydeoma graveolens mock pennyroyal \N \N \N \N 53538 M.indica Microchloa Microchloa indica \N \N \N \N \N 53539 A.guttatus Aeschynanthus Aeschynanthus guttatus \N \N \N \N \N 53540 \N genus Simethis \N \N \N \N \N 53541 S.hapalum Solanum Solanum hapalum \N \N \N \N \N 53542 S.cearensis Syagrus Syagrus cearensis \N \N \N \N \N 53543 F.francoi Festuca Festuca francoi \N \N \N \N \N 53544 A.propinquus Astragalus Astragalus propinquus \N \N \N \N \N 53545 \N genus Cobananthus \N \N \N \N \N 53546 \N genus Suksdorfia \N \N \N \N \N 53547 \N genus Lewisia \N \N \N \N \N 53548 S.macrocarpon Solanum Solanum macrocarpon \N \N \N \N \N 53549 I.achillaeoides Ixodia Ixodia achillaeoides \N \N \N \N \N 53550 C.tubulosa Campanula Campanula tubulosa \N \N \N \N \N 53551 F.echinata Fuertesimalva Fuertesimalva echinata \N \N \N \N \N 53552 A.schweinfurthii Airyantha Airyantha schweinfurthii \N \N \N \N \N 53553 M.decandra Mollugo Mollugo decandra \N \N \N \N \N 53554 A.venusta Arctotis Arctotis venusta \N \N \N \N \N 53555 O.parvifolia Ormocarpopsis Ormocarpopsis parvifolia \N \N \N \N \N 53556 A.crucisetosa Arabis Arabis crucisetosa \N \N \N \N \N 53557 R.missouriense Ribes Ribes missouriense \N \N \N \N \N 53558 A.ovatum Antirrhinum Antirrhinum ovatum \N \N \N \N \N 53559 \N genus Pseudarrhenatherum \N \N \N \N \N 53560 D.insignis Decaisnea Decaisnea insignis \N \N \N \N \N 53561 E.fuscescens Erica Erica fuscescens \N \N \N \N \N 53562 \N genus Diploglottis \N \N \N \N \N 53563 T.nanus Trachycarpus Trachycarpus nanus \N \N \N \N \N 53564 \N genus Porphyrostachys \N \N \N \N \N 53565 G.tetramera Gaultheria Gaultheria tetramera \N \N \N \N \N 53566 G.hystrix Gmelina Gmelina hystrix \N \N \N \N \N 53567 C.valentina Coronilla Coronilla valentina \N \N \N \N \N 53568 M.thailandica Magnolia Magnolia thailandica \N \N \N \N \N 53569 P.ambigua Phyllostegia Phyllostegia ambigua \N \N \N \N \N 53570 D.commutatum Dichanthelium Dichanthelium commutatum \N \N \N \N \N 53571 \N genus Dibrachionostylus \N \N \N \N \N 53572 A.paeoniifolius Amorphophallus Amorphophallus paeoniifolius \N \N \N \N \N 53573 \N genus Kubitzkia \N \N \N \N \N 53574 C.macrophylla Chouxia Chouxia macrophylla \N \N \N \N \N 53575 H.rariflorum Heliotropium Heliotropium rariflorum \N \N \N \N \N 53576 L.ruderale Lithospermum Lithospermum ruderale \N \N \N \N \N 53577 B.stellata Brassaiopsis Brassaiopsis stellata \N \N \N \N \N 53578 E.atromontana Erica Erica atromontana \N \N \N \N \N 53579 M.collina Muraltia Muraltia collina \N \N \N \N \N 53580 E.groenewaldii Euphorbia Euphorbia groenewaldii \N \N \N \N \N 53581 B.gaumeri Bakeridesia Bakeridesia gaumeri \N \N \N \N \N 53582 \N genus Periploca \N \N \N \N \N 53583 A.gilviflorus Astragalus Astragalus gilviflorus \N \N \N \N \N 53584 \N genus Cintia \N \N \N \N \N 53585 P.novozelandica Planchonella Planchonella novozelandica \N \N \N \N \N 53586 M.JJS-2010c Mentzelia Mentzelia sp. JJS-2010c \N \N \N \N \N 53587 S.herbacea Smilax Smilax herbacea smooth carrionflower \N \N \N \N 53588 S.crassicaulis Sanicula Sanicula crassicaulis Pacific blacksnakeroot \N \N \N \N 53589 \N genus Peponium \N \N \N \N \N 53590 S.divaricata Sclerolaena Sclerolaena divaricata \N \N \N \N \N 53591 M.salaccensis Musa Musa salaccensis \N \N \N \N \N 53592 T.lugardii Trifolium Trifolium lugardii \N \N \N \N \N 53593 L.multifidum Lamium Lamium multifidum \N \N \N \N \N 53594 B.edentatum Bulbophyllum Bulbophyllum edentatum \N \N \N \N \N 53595 O.pusilla Oxalis Oxalis pusilla \N \N \N \N \N 53596 C.parviflora Chesneya Chesneya parviflora \N \N \N \N \N 53597 V.pumila Viola Viola pumila \N \N \N \N \N 53598 F.arizonica Froelichia Froelichia arizonica Arizona snake-cotton \N \N \N \N 53599 \N genus Stachyarrhena \N \N \N \N \N 53600 \N genus Loxodiscus \N \N \N \N \N 53601 A.crispa Asclepias Asclepias crispa \N \N \N \N \N 53602 P.lutea Pseudofumaria Pseudofumaria lutea \N \N \N \N \N 53603 J.ranarius Juncus Juncus ranarius \N \N \N \N \N 53604 E.parvifolium Eriospermum Eriospermum parvifolium \N \N \N \N \N 53605 C.stevenii Centaurea Centaurea stevenii \N \N \N \N \N 53606 U.digitatum Urelytrum Urelytrum digitatum \N \N \N \N \N 53607 P.ixocarpa Physalis Physalis ixocarpa tomatillo \N \N \N \N 53608 D.pinifolia Duidaea Duidaea pinifolia \N \N \N \N \N 53609 S.calcicola Stewartia Stewartia calcicola \N \N \N \N \N 53610 C.porphyroglossa Calotis Calotis porphyroglossa \N \N \N \N \N 53611 P.incana Polylepis Polylepis incana \N \N \N \N \N 53612 \N genus Mussaenda \N \N \N \N \N 53613 P.uruguense Piptochaetium Piptochaetium uruguense \N \N \N \N \N 53614 \N genus Myosoton \N \N \N \N \N 53615 B.moritziana Bomarea Bomarea moritziana \N \N \N \N \N 53616 A.esculentus Abelmoschus Abelmoschus esculentus gumbo,kacang bendi,lady's fingers,okra,quiabo \N \N \N \N 53617 C.tenuis Cordylanthus Cordylanthus tenuis \N \N \N \N \N 53618 T.GW2444 Teijsmanniodendron Teijsmanniodendron sp. GW2444 \N \N \N \N \N 53619 R.decussata Rytigynia Rytigynia decussata \N \N \N \N \N 53620 I.psoraloides Indigofera Indigofera psoraloides \N \N \N \N \N 53621 \N varietas Lupinus formosus var. formosus \N \N \N \N \N 53622 V.mustangensis Vitis Vitis mustangensis Mustang grape \N \N \N \N 53623 S.giganteum Saccharum Saccharum giganteum sugarcane plumegrass \N \N \N \N 53624 C.intumescens Carex Carex intumescens \N \N \N \N \N 53625 A.flammeum Alloxylon Alloxylon flammeum \N \N \N \N \N 53626 O.aucheri Onobrychis Onobrychis aucheri \N \N \N \N \N 53627 E.triseta Eriachne Eriachne triseta \N \N \N \N \N 53628 \N varietas Acacia pulchella var. reflexa \N \N \N \N \N 53629 \N genus Rhammatophyllum \N \N \N \N \N 53630 \N varietas Aristida adscensionis var. coarctata \N \N \N \N \N 53631 D.miscolobium Dalbergia Dalbergia miscolobium \N \N \N \N \N 53632 C.crispa Chloraea Chloraea crispa \N \N \N \N \N 53633 P.marginata Primula Primula marginata \N \N \N \N \N 53634 \N family Lauraceae laurel family \N \N \N \N 53635 A.faranae Astrocaryum Astrocaryum faranae \N \N \N \N \N 53636 A.longifolia Ammocharis Ammocharis longifolia \N \N \N \N \N 53637 D.chapmanii Daviesia Daviesia chapmanii \N \N \N \N \N 53638 E.barnadesii Echinospartum Echinospartum barnadesii \N \N \N \N \N 53639 P.begoniicolor Piper Piper begoniicolor \N \N \N \N \N 53640 O.latifolia Oenothera Oenothera latifolia mountain evening-primrose \N \N \N \N 53641 A.aspera Aphananthe Aphananthe aspera mukutree \N \N \N \N 53642 \N varietas Malacothrix saxatilis var. commutata \N \N \N \N \N 53643 G.medicaginea Goodia Goodia medicaginea \N \N \N \N \N 53644 H.jaxartica Hyalolaena Hyalolaena jaxartica \N \N \N \N \N 53645 G.cardiosepala Gaultheria Gaultheria cardiosepala \N \N \N \N \N 53646 S.monimioides Syzygium Syzygium monimioides \N \N \N \N \N 53647 K.anthotheca Khaya Khaya anthotheca \N \N \N \N \N 66653 \N genus Petrocodon \N \N \N \N \N 53648 B.longiflora Brachiaria Brachiaria longiflora \N \N \N \N \N 53649 G.minor Glossodia Glossodia minor \N \N \N \N \N 53650 D.gratiosissimum Dendrobium Dendrobium gratiosissimum \N \N \N \N \N 53651 P.floribunda Phyllostegia Phyllostegia floribunda \N \N \N \N \N 53652 V.oligyrtia Viola Viola oligyrtia \N \N \N \N \N 53653 C.griffithii Crypteronia Crypteronia griffithii \N \N \N \N \N 53654 \N varietas Brassica juncea var. gemmifera \N \N \N \N \N 53655 S.buxifolium Spyridium Spyridium buxifolium \N \N \N \N \N 53656 B.crassifolium Bellium Bellium crassifolium \N \N \N \N \N 53657 C.inerme Clerodendrum Clerodendrum inerme \N \N \N \N \N 53658 E.bulbosa Erigenia Erigenia bulbosa \N \N \N \N \N 53659 \N varietas Jacobaea cannabifolia var. integrifolia \N \N \N \N \N 53660 R.henryi Rhodoleia Rhodoleia henryi \N \N \N \N \N 53661 \N subspecies Arctostaphylos montana subsp. ravenii \N \N \N \N \N 53662 S.odorus Senecio Senecio odorus \N \N \N \N \N 53663 S.campanulata Salvia Salvia campanulata \N \N \N \N \N 53664 C.ghiesbreghtiana Coutaportla Coutaportla ghiesbreghtiana \N \N \N \N \N 53665 T.monachne Tricholaena Tricholaena monachne \N \N \N \N \N 53666 H.ternata Hoffmannseggia Hoffmannseggia ternata \N \N \N \N \N 53667 A.salgarense Anthurium Anthurium salgarense \N \N \N \N \N 53668 D.hesperium Delphinium Delphinium hesperium western larkspur \N \N \N \N 53669 O.microphylla Ourisia Ourisia microphylla \N \N \N \N \N 53670 I.mooneyi Indigofera Indigofera mooneyi \N \N \N \N \N 53671 B.celsissima Buckinghamia Buckinghamia celsissima \N \N \N \N \N 53672 F.californica Filago Filago californica \N \N \N \N \N 53673 \N varietas Luzula picta var. pallida \N \N \N \N \N 53674 L.mwingensis Leucas Leucas mwingensis \N \N \N \N \N 53675 F.itatiaiae Fernseea Fernseea itatiaiae \N \N \N \N \N 53676 C.pulcherrimum Calophyllum Calophyllum pulcherrimum \N \N \N \N \N 62115 \N genus Sclerosciadium \N \N \N \N \N 53677 O.strombocarpum Omphalocarpum Omphalocarpum strombocarpum \N \N \N \N \N 53678 \N subspecies Sedum greggii subsp. angustifolium \N \N \N \N \N 53679 E.labiosa Eremostachys Eremostachys labiosa \N \N \N \N \N 53680 T.densiflora Thibaudia Thibaudia densiflora \N \N \N \N \N 53681 \N genus Aspidosperma \N \N \N \N \N 53682 \N genus Oonopsis \N \N \N \N \N 53683 O.stolzii Otiophora Otiophora stolzii \N \N \N \N \N 53684 B.hookeri Berberis Berberis hookeri \N \N \N \N \N 53685 D.intermedia Disa Disa intermedia \N \N \N \N \N 53686 M.chamomilla Matricaria Matricaria chamomilla \N \N \N \N \N 53687 H.resendeana Haworthia Haworthia resendeana \N \N \N \N \N 53688 O.willowmorensis Ophionella Ophionella willowmorensis \N \N \N \N \N 53689 \N genus Sarawakodendron \N \N \N \N \N 53690 E.crenatifolia Enriquebeltrania Enriquebeltrania crenatifolia \N \N \N \N \N 53691 W.austro-occidentalis Warneckea Warneckea austro-occidentalis \N \N \N \N \N 53692 K.mitejea Kalanchoe Kalanchoe mitejea \N \N \N \N \N 53693 E.Creek' Eleocharis Eleocharis sp. 'Lansen Creek' \N \N \N \N \N 53694 A.longipes Aspalathus Aspalathus longipes \N \N \N \N \N 53695 C.umbellata Carex Carex umbellata \N \N \N \N \N 53696 \N tribe Vaccinieae \N \N \N \N \N 53697 A.fragrans Albuca Albuca fragrans \N \N \N \N \N 53698 C.petalophylla Corymbia Corymbia petalophylla \N \N \N \N \N 53699 I.61 Iberis Iberis sp. Monfils & Conner 61 \N \N \N \N \N 53700 S.stellaris Symplocos Symplocos stellaris \N \N \N \N \N 53701 \N subspecies Lupinus hispanicus subsp. hispanicus \N \N \N \N \N 53702 E.glabrescens Elaeoluma Elaeoluma glabrescens \N \N \N \N \N 53703 A.distantiflora Aleisanthiopsis Aleisanthiopsis distantiflora \N \N \N \N \N 53704 \N genus Lancea \N \N \N \N \N 53705 \N genus Chionochloa \N \N \N \N \N 53706 A.petiolata Anaxagorea Anaxagorea petiolata \N \N \N \N \N 53707 A.latifolia Acmanthera Acmanthera latifolia \N \N \N \N \N 53708 S.sericea Swartzia Swartzia sericea \N \N \N \N \N 53709 \N varietas Bauhinia scandens var. horsfieldii \N \N \N \N \N 53710 E.nitens Eucalyptus Eucalyptus nitens \N \N \N \N \N 53711 A.praecox Allium Allium praecox \N \N \N \N \N 53712 C.dealbata Centaurea Centaurea dealbata \N \N \N \N \N 53713 A.dimorpha Antennaria Antennaria dimorpha \N \N \N \N \N 53714 C.hirtzii Comparettia Comparettia hirtzii \N \N \N \N \N 53715 P.chienkweiensis Persea Persea chienkweiensis \N \N \N \N \N 53716 A.lucyi Archidendron Archidendron lucyi \N \N \N \N \N 53717 A.textilis Alopecurus Alopecurus textilis \N \N \N \N \N 53718 C.sparsiflorum Chrysophyllum Chrysophyllum sparsiflorum \N \N \N \N \N 53719 \N genus Loxanthera \N \N \N \N \N 53720 T.latifolium Trifolium Trifolium latifolium \N \N \N \N \N 53721 \N genus Browneopsis \N \N \N \N \N 53722 \N varietas Malesherbia weberbaueri var. weberbaueri \N \N \N \N \N 53723 A.swallenii Achnatherum Achnatherum swallenii \N \N \N \N \N 53724 C.patagua Crinodendron Crinodendron patagua \N \N \N \N \N 53725 G.supralabellata Gavilea Gavilea supralabellata \N \N \N \N \N 53726 M.concavilabia Maxillaria Maxillaria concavilabia \N \N \N \N \N 53727 G.latrobeana Glycine Glycine latrobeana \N \N \N \N \N 53728 G.968 Gomesa Gomesa sp. Pansarin 968 \N \N \N \N \N 53729 C.petiolatus Chaunanthus Chaunanthus petiolatus \N \N \N \N \N 53730 A.lawii Aglaia Aglaia lawii \N \N \N \N \N 53731 S.cuneifolia Saxifraga Saxifraga cuneifolia \N \N \N \N \N 53732 S.bebbiana Salix Salix bebbiana \N \N \N \N \N 53733 C.howellii Calochortus Calochortus howellii \N \N \N \N \N 53734 \N genus Alluaudiopsis \N \N \N \N \N 53735 H.ligusticifolium Heracleum Heracleum ligusticifolium \N \N \N \N \N 53736 A.galanthum Allium Allium galanthum \N \N \N \N \N 53737 S.wightianum Sideroxylon Sideroxylon wightianum \N \N \N \N \N 53738 P.wachenheimii Piper Piper wachenheimii \N \N \N \N \N 53739 S.melongena Solanum Solanum melongena aubergine,brinjal,eggplant \N \N \N \N 53740 B.sharpeana Bertya Bertya sharpeana \N \N \N \N \N 53741 \N forma Abeliophyllum distichum f. lilacinum \N \N \N \N \N 53742 \N genus Guilandina \N \N \N \N \N 53743 S.elsae Serapias Serapias elsae \N \N \N \N \N 53744 T.africanum x Triticosecale Triticum sp. ZXZ-2007 x Secale strictum subsp. africanum \N \N \N \N \N 53745 S.mellifera Silene Silene mellifera \N \N \N \N \N 53746 C.paleacea Carex Carex recta x Carex paleacea \N \N \N \N \N 53747 \N subfamily Lasioideae \N \N \N \N \N 53748 \N genus Compsoneura \N \N \N \N \N 53749 \N genus Glossostelma \N \N \N \N \N 53750 \N genus Oxyrhynchus \N \N \N \N \N 53751 P.confertum Pelargonium Pelargonium confertum \N \N \N \N \N 53752 \N genus Sredinskya \N \N \N \N \N 53753 F.fastigiata Ficinia Ficinia fastigiata \N \N \N \N \N 53754 O.flava Orobanche Orobanche flava \N \N \N \N \N 53755 M.umbratilis Maxillaria Maxillaria umbratilis \N \N \N \N \N 53756 I.constanzae Ignurbia Ignurbia constanzae \N \N \N \N \N 53757 M.elliptica Monotoca Monotoca elliptica \N \N \N \N \N 53758 S.hariotii Saxifraga Saxifraga hariotii \N \N \N \N \N 53759 L.accedens Litsea Litsea accedens \N \N \N \N \N 53760 H.belangeriana Halostachys Halostachys belangeriana \N \N \N \N \N 53761 H.hedinii Hymenidium Hymenidium hedinii \N \N \N \N \N 53762 \N varietas Galanthus elwesii var. elwesii \N \N \N \N \N 53763 \N genus Dictyostega \N \N \N \N \N 53764 M.stylophorus Megacodon Megacodon stylophorus \N \N \N \N \N 53765 V.subalpina Hebe Veronica subalpina \N \N \N \N \N 53766 P.venosa Paullinia Paullinia venosa \N \N \N \N \N 53767 C.lutescens Castilleja Castilleja lutescens \N \N \N \N \N 53768 L.peruviana Lecointea Lecointea peruviana \N \N \N \N \N 53769 \N genus Anoectochilus \N \N \N \N \N 53770 S.ranunculacea Sidalcea Sidalcea ranunculacea \N \N \N \N \N 53771 \N genus Chiliophyllum \N \N \N \N \N 53772 L.rediviva Lewisia Lewisia rediviva bitter root \N \N \N \N 53773 A.QW06005 Acer Acer sp. QW06005 \N \N \N \N \N 53774 M.herradurae Masdevallia Masdevallia herradurae \N \N \N \N \N 53775 S.macrantha Streptostachys Streptostachys macrantha \N \N \N \N \N 53776 N.thermarum Nymphaea Nymphaea thermarum \N \N \N \N \N 53777 L.sisymbrioides Lepidium Lepidium sisymbrioides \N \N \N \N \N 53778 C.albertii Cousinia Cousinia albertii \N \N \N \N \N 53779 B.latifolia Buchanania Buchanania latifolia \N \N \N \N \N 53780 U.crassifolia Uebelinia Uebelinia crassifolia \N \N \N \N \N 53781 H.argutifolius Helleborus Helleborus argutifolius \N \N \N \N \N 53782 \N subspecies Platymiscium pubescens subsp. zehntneri \N \N \N \N \N 53783 C.flaccida Canna Canna flaccida bandana-of-the-everglades,golden canna \N \N \N \N 53784 N.tarapacana Neuontobotrys Neuontobotrys tarapacana \N \N \N \N \N 53785 \N subspecies Aspalathus retroflexa subsp. retroflexa \N \N \N \N \N 53786 M.ducis Macaranga Macaranga ducis \N \N \N \N \N 53787 M.leptorhiza Muraltia Muraltia leptorhiza \N \N \N \N \N 53788 I.hippocrateoides Ilex Ilex hippocrateoides \N \N \N \N \N 53789 K.(h) Kunzea Kunzea aff. ericoides (h) \N \N \N \N \N 53790 M.fischeriana Medicago Medicago fischeriana \N \N \N \N \N 53791 C.128 Cliffortia Cliffortia cf. polita Whitehouse 128 \N \N \N \N \N 53792 B.alopecuros Bromus Bromus alopecuros weedy brome \N \N \N \N 53793 \N varietas Carex filifolia var. filifolia \N \N \N \N \N 53794 V.japonicum Viburnum Viburnum japonicum \N \N \N \N \N 53795 \N genus Glossostigma \N \N \N \N \N 53796 A.americana Abolboda Abolboda americana \N \N \N \N \N 53797 \N varietas Foeniculum vulgare var. vulgare bitter fennel \N \N \N \N 53798 \N family Phellinaceae \N \N \N \N \N 53799 L.capitata Lespedeza Lespedeza capitata \N \N \N \N \N 53800 B.prisca Blomia Blomia prisca \N \N \N \N \N 53801 C.walteri Crinum Crinum walteri \N \N \N \N \N 53802 P.arenarium Polygonum Polygonum arenarium \N \N \N \N \N 53803 A.declinatus Amorphophallus Amorphophallus declinatus \N \N \N \N \N 53804 A.lebbeck Albizia Albizia lebbeck \N \N \N \N \N 53805 \N genus Dipoma \N \N \N \N \N 53806 P.favifolia Pimpinella Pimpinella favifolia \N \N \N \N \N 53807 D.biformifolia Dioscorea Dioscorea biformifolia \N \N \N \N \N 53808 I.olgae Incarvillea Incarvillea olgae \N \N \N \N \N 53809 P.tenuisectum Phtheirospermum Phtheirospermum tenuisectum \N \N \N \N \N 53810 \N genus Nautilocalyx \N \N \N \N \N 53811 D.polygonoides Dioscorea Dioscorea polygonoides \N \N \N \N \N 53812 R.reticulatum Rheum Rheum reticulatum \N \N \N \N \N 53813 P.monticola Pseuduvaria Pseuduvaria monticola \N \N \N \N \N 53814 P.nanum Pelargonium Pelargonium nanum \N \N \N \N \N 53815 T.korolkowii Tamarix Tamarix korolkowii \N \N \N \N \N 53816 E.laguroides Ebenus Ebenus laguroides \N \N \N \N \N 53817 S.bicolor Sauropus Sauropus bicolor \N \N \N \N \N 53818 C.dolichocarpa Corymbia Corymbia dolichocarpa \N \N \N \N \N 53819 \N genus Gentiana gentian \N \N \N \N 53820 C.macrocephalum Carpesium Carpesium macrocephalum \N \N \N \N \N 53821 C.breviflorus Cyrtanthus Cyrtanthus breviflorus \N \N \N \N \N 53822 P.capillaris Pentaschistis Pentameris capillaris \N \N \N \N \N 53823 Q.robur Quercus Quercus dalechampii x Quercus robur \N \N \N \N \N 53824 L.latifolia Lichtensteinia Lichtensteinia latifolia \N \N \N \N \N 53825 D.volcanica Draba Draba volcanica \N \N \N \N \N 53826 P.sternii Piper Piper sternii \N \N \N \N \N 53827 P.paludosa Peixotoa Peixotoa paludosa \N \N \N \N \N 53828 T.pinnatifidum Thaspium Thaspium pinnatifidum \N \N \N \N \N 53829 \N genus Castratella \N \N \N \N \N 53830 C.rugulosa Consolida Consolida rugulosa \N \N \N \N \N 53831 P.corrigioloides Polygonum Polygonum corrigioloides \N \N \N \N \N 53832 A.nuttallianum Antirrhinum Antirrhinum nuttallianum violet snapdragon \N \N \N \N 53833 \N genus Paratriaina \N \N \N \N \N 53834 C.paranaensis Cleistes Cleistes paranaensis \N \N \N \N \N 53835 G.bifolium Galium Galium bifolium \N \N \N \N \N 53836 P.petropolitana Portea Portea petropolitana \N \N \N \N \N 53837 B.rhomboidea Blainvillea Blainvillea rhomboidea \N \N \N \N \N 53838 E.amurense Epilobium Epilobium amurense \N \N \N \N \N 53839 \N varietas Brassica oleracea var. medullosa marrow-stem kale \N \N \N \N 53840 P.caespitifica Polystachya Polystachya caespitifica \N \N \N \N \N 53841 C.pallida Crotalaria Crotalaria pallida smooth rattlebox \N \N \N \N 53842 S.villosa Sabicea Sabicea villosa \N \N \N \N \N 53843 T.ruandensis Tricalysia Tricalysia ruandensis \N \N \N \N \N 53844 E.morrisbyi Eucalyptus Eucalyptus morrisbyi \N \N \N \N \N 53845 S.thyrsiflora Sabicea Sabicea thyrsiflora \N \N \N \N \N 53846 U.cannabina Urtica Urtica cannabina \N \N \N \N \N 53847 S.wikstroemiifolia Symplocos Symplocos wikstroemiifolia \N \N \N \N \N 53848 A.micrantha Atriplex Atriplex micrantha \N \N \N \N \N 53849 R.gmelinii Ranunculus Ranunculus gmelinii \N \N \N \N \N 53850 K.simplex Kreodanthus Kreodanthus simplex \N \N \N \N \N 53851 C.adscendens Cotyledon Cotyledon adscendens \N \N \N \N \N 53852 T.TL265-1 unclassified Taraxacum Taraxacum (sect. Naevosa) sp. TL265-1 \N \N \N \N \N 53853 P.474 Peperomia Peperomia aff. pinoi 474 \N \N \N \N \N 53854 S.tropaeolifolius Senecio Senecio tropaeolifolius \N \N \N \N \N 53855 P.gnaphalodes Psilostrophe Psilostrophe gnaphalodes \N \N \N \N \N 53856 C.leucantha Cardamine Cardamine leucantha \N \N \N \N \N 53857 A.hamersleyensis Acacia Acacia hamersleyensis \N \N \N \N \N 53858 D.tortile Dendrobium Dendrobium tortile \N \N \N \N \N 53859 A.asphodeloides Anemarrhena Anemarrhena asphodeloides \N \N \N \N \N 53860 S.monoptera Salsola Salsola monoptera \N \N \N \N \N 53861 E.grandis Eucalyptus Eucalyptus grandis rose gum \N \N \N \N 53862 A.trachyacanthos Astragalus Astragalus trachyacanthos \N \N \N \N \N 53863 P.purpurata Perezia Perezia purpurata \N \N \N \N \N 53864 D.radicans Draba Draba radicans \N \N \N \N \N 53865 \N subspecies Savignya parviflora subsp. longistyla \N \N \N \N \N 53866 R.brookeanum Rhododendron Rhododendron brookeanum \N \N \N \N \N 53867 S.dombeyi Salvia Salvia dombeyi \N \N \N \N \N 53868 \N subspecies Cynoglossum pustulatum subsp. parviflorum \N \N \N \N \N 53869 L.glabrum Lithophragma Lithophragma glabrum \N \N \N \N \N 53870 G.micrantha Genista Genista micrantha \N \N \N \N \N 53871 \N varietas Nothofagus solandri var. cliffortioides \N \N \N \N \N 53872 \N genus Warszewiczia \N \N \N \N \N 53873 D.ovatum Dendrobium Dendrobium ovatum \N \N \N \N \N 53874 F.ligulata Festuca Festuca ligulata \N \N \N \N \N 53875 B.tenuis Bunochilus Bunochilus tenuis \N \N \N \N \N 53876 T.tuberculata Tiquilia Tiquilia tuberculata \N \N \N \N \N 53877 T.ochracea Tabebuia Tabebuia ochracea \N \N \N \N \N 53878 \N genus Rhaphiolepis \N \N \N \N \N 53879 E.deplanchei Earina Earina deplanchei \N \N \N \N \N 53880 M.parviflorum Martiodendron Martiodendron parviflorum bosmahonie,tataboballi \N \N \N \N 53881 L.leptantha Levenhookia Levenhookia leptantha \N \N \N \N \N 53882 C.punctata Carex Carex punctata \N \N \N \N \N 53883 A.comosa Aegilops Aegilops comosa \N \N \N \N \N 53884 D.pinnata Dodonaea Dodonaea pinnata \N \N \N \N \N 53885 D.gormanii Douglasia Douglasia gormanii \N \N \N \N \N 53886 C.nana Carmichaelia Carmichaelia nana \N \N \N \N \N 53887 H.crispiflorus Hexalobus Hexalobus crispiflorus \N \N \N \N \N 53888 L.nigricans Lembotropis Lembotropis nigricans \N \N \N \N \N 53889 R.tibetica Roscoea Roscoea tibetica \N \N \N \N \N 53890 T.obtusifolia Turraea Turraea obtusifolia \N \N \N \N \N 53891 G.urceolata Galax Galax urceolata \N \N \N \N \N 53892 C.hystrix Castanopsis Castanopsis hystrix \N \N \N \N \N 53893 A.bracteatus Acianthus Acianthus bracteatus \N \N \N \N \N 53894 V.pilosa Veronica Veronica pilosa \N \N \N \N \N 53895 A.sisalana Agave Agave sisalana sisal \N \N \N \N 53896 M.incertifolia Marantochloa Marantochloa incertifolia \N \N \N \N \N 53897 C.palustris Calamus Calamus palustris \N \N \N \N \N 53898 A.excelsum Arthrostylidium Arthrostylidium excelsum \N \N \N \N \N 53899 G.G2035 Glycine Glycine sp. G2035 \N \N \N \N \N 53900 \N family Setchellanthaceae \N \N \N \N \N 53901 \N genus Caesia \N \N \N \N \N 53902 P.cineraria Prosopis Prosopis cineraria \N \N \N \N \N 53903 S.nigrescens Silene Silene nigrescens \N \N \N \N \N 53904 C.macra Chionochloa Chionochloa macra \N \N \N \N \N 53905 B.integrifolia Blepharis Blepharis integrifolia \N \N \N \N \N 53906 B.indica Bassia Bassia indica \N \N \N \N \N 53907 E.Espkopf Elleanthus Elleanthus sp. Espkopf \N \N \N \N \N 53908 C.chinghaiensis Caragana Caragana chinghaiensis \N \N \N \N \N 53909 \N subspecies Chrysanthemoides monilifera subsp. pisifera \N \N \N \N \N 53910 C.elata Cousinia Cousinia elata \N \N \N \N \N 53911 H.calcicola Hypericum Hypericum calcicola \N \N \N \N \N 53912 \N genus Neowerdermannia \N \N \N \N \N 53913 \N genus Espadaea \N \N \N \N \N 53914 S.argentinum Solanum Solanum argentinum \N \N \N \N \N 53915 P.puwenensis Phoebe Phoebe puwenensis \N \N \N \N \N 53916 T.coelesyriacus Tragopogon Tragopogon coelesyriacus \N \N \N \N \N 53917 P.bosseri Peponidium Peponidium bosseri \N \N \N \N \N 53918 S.isensis Salvia Salvia isensis \N \N \N \N \N 53919 K.midzorensis Knautia Knautia midzorensis \N \N \N \N \N 53920 G.tarapacana Grindelia Grindelia tarapacana \N \N \N \N \N 53921 K.speciosa Karomia Karomia speciosa \N \N \N \N \N 53922 L.platyphylla Leptactina Leptactina platyphylla \N \N \N \N \N 53923 C.45510 Cremastosperma Cremastosperma sp. Gentry 45510 \N \N \N \N \N 53924 S.vulgaris Silene Silene vulgaris bladder campion,maiden's-tears \N \N \N \N 53925 H.sempervivoides Hamadryas Hamadryas sempervivoides \N \N \N \N \N 53926 F.heterophylla Fosterella Fosterella heterophylla \N \N \N \N \N 53927 P.jasminifolia Pleonotoma Pleonotoma jasminifolia \N \N \N \N \N 53928 \N subspecies Ononis spinosa subsp. spinosa \N \N \N \N \N 53929 N.pfisteri Nassella Nassella pfisteri \N \N \N \N \N 53930 C.lenis Cordia Cordia lenis \N \N \N \N \N 53931 F.pitcairniifolia Fascicularia Fascicularia pitcairniifolia \N \N \N \N \N 53932 T.filamentosum Thalictrum Thalictrum filamentosum \N \N \N \N \N 53933 V.tibetica Vicia Vicia tibetica \N \N \N \N \N 53934 P.capitata Pisonia Pisonia capitata \N \N \N \N \N 53935 L.bradei Lepanthes Lepanthes bradei \N \N \N \N \N 53936 \N genus Centrolepis \N \N \N \N \N 53937 T.paniculata Tillandsia Tillandsia paniculata \N \N \N \N \N 53938 P.7031 Peliosanthes Peliosanthes cf. sinica Tamura & Pooma 7031 \N \N \N \N \N 53939 \N varietas Ceanothus jepsonii var. jepsonii \N \N \N \N \N 53940 A.desertorum Artemisia Artemisia desertorum \N \N \N \N \N 53941 O.luteopurpureum Oncidium Oncidium luteopurpureum \N \N \N \N \N 53942 V.abyssinica Vermifrux Vermifrux abyssinica \N \N \N \N \N 53943 A.obtusum Aulosepalum Aulosepalum obtusum \N \N \N \N \N 53944 A.linkiana Armeria Armeria linkiana \N \N \N \N \N 53945 R.acetosella Rumex Rumex acetosella common sorrel,red sorrel,sheep sorrel \N \N \N \N 53946 T.JS5102 unclassified Taraxacum Taraxacum (sect. Sikimensia) sp. JS5102 \N \N \N \N \N 53947 T.MJM-2005 Triumfetta Triumfetta cf. pilosa MJM-2005 \N \N \N \N \N 53948 P.MY-2009 Papaver Papaver sp. MY-2009 \N \N \N \N \N 53949 S.952265 Senna Senna sp. KPBG 952265 \N \N \N \N \N 53950 T.acocantheroides Tricalysia Tricalysia acocantheroides \N \N \N \N \N 53951 \N varietas Pimelea curviflora var. sericea \N \N \N \N \N 53952 T.aristolochioides Tylophora Tylophora aristolochioides \N \N \N \N \N 53953 L.arboreus Lupinus Lupinus arboreus tree lupine \N \N \N \N 53954 \N varietas Banksia spinulosa var. spinulosa \N \N \N \N \N 53955 V.membranacea Vigna Vigna membranacea \N \N \N \N \N 53956 C.ochotense Corispermum Corispermum ochotense \N \N \N \N \N 53957 S.thomasii Sebaea Sebaea thomasii \N \N \N \N \N 53958 A.scleroclada Allocasuarina Allocasuarina scleroclada \N \N \N \N \N 53959 O.odoratum Ophrypetalum Ophrypetalum odoratum \N \N \N \N \N 53960 C.abolinii Cousinia Cousinia abolinii \N \N \N \N \N 53961 F.thonningii Ficus Ficus thonningii \N \N \N \N \N 53962 P.melanospermus Phyllobolus Phyllobolus melanospermus \N \N \N \N \N 53963 \N subspecies Camassia quamash subsp. azurea \N \N \N \N \N 53964 \N genus Mocinnodaphne \N \N \N \N \N 63956 \N genus Aulonemia \N \N \N \N \N 53965 L.macrocarpa Ladenbergia Ladenbergia macrocarpa \N \N \N \N \N 53966 O.fusiformis Orogenia Orogenia fusiformis California Indian potato \N \N \N \N 53967 K.rugata Kohleria Kohleria rugata \N \N \N \N \N 53968 D.scandens Dalechampia Dalechampia scandens \N \N \N \N \N 53969 R.setifolium Rytidosperma Rytidosperma setifolium \N \N \N \N \N 53970 D.womersleyi Dimorphanthera Dimorphanthera womersleyi \N \N \N \N \N 53971 L.kunthiana Licania Licania kunthiana \N \N \N \N \N 53972 A.humulifolia Ampelopsis Ampelopsis humulifolia \N \N \N \N \N 53973 P.caulescens Pentaschistis Pentameris caulescens \N \N \N \N \N 53974 P.608 Phyllanthus Phyllanthus aff. moorei Munzinger and McPherson 608 \N \N \N \N \N 53975 \N genus Aira \N \N \N \N \N 53976 T.CH_M67Adcum Triticum Triticum sp. CH_M67Adcum \N \N \N \N \N 53977 M.australis Myosotis Myosotis australis \N \N \N \N \N 53978 \N genus Schizogyne \N \N \N \N \N 53979 A.ipaensis Arachis Arachis ipaensis \N \N \N \N \N 53980 T.JK5843 unclassified Taraxacum Taraxacum (sect. Dioszegia) sp. JK5843 \N \N \N \N \N 53981 A.6703 Allium Allium sp. GAT 6703 \N \N \N \N \N 53982 V.winin Veitchia Veitchia winin \N \N \N \N \N 53983 L.exocarpi Lysiana Lysiana exocarpi \N \N \N \N \N 53984 \N genus Psacaliopsis \N \N \N \N \N 53985 S.tridentata Sibbaldiopsis Sibbaldiopsis tridentata \N \N \N \N \N 53986 R.aperta Ruprechtia Ruprechtia aperta \N \N \N \N \N 53987 S.leptophylla Stevia Stevia leptophylla \N \N \N \N \N 53988 V.microphylla Valeriana Valeriana microphylla \N \N \N \N \N 53989 C.velutinum Cerastium Cerastium velutinum \N \N \N \N \N 53990 A.cebennensis Arabidopsis Arabidopsis cebennensis \N \N \N \N \N 53991 R.tianschanica Richteria Richteria tianschanica \N \N \N \N \N 53992 D.andina Drimys Drimys andina \N \N \N \N \N 53993 C.zhejiangensis Chimonanthus Chimonanthus zhejiangensis \N \N \N \N \N 53994 R.loxophylla Rulingia Rulingia loxophylla \N \N \N \N \N 53995 D.altsonii Dicymbe Dicymbe altsonii \N \N \N \N \N 53996 P.angustifolia Perebea Perebea angustifolia \N \N \N \N \N 53997 E.celastroides Euphorbia Euphorbia celastroides \N \N \N \N \N 53998 M.ericifolia Melaleuca Melaleuca ericifolia \N \N \N \N \N 53999 R.secundiflorum Retiniphyllum Retiniphyllum secundiflorum \N \N \N \N \N 54000 M.spinosa Moluccella Moluccella spinosa \N \N \N \N \N 54001 \N genus Ferulopsis \N \N \N \N \N 54002 T.arborea Tamarix Tamarix arborea \N \N \N \N \N 54003 P.suffruticosa Paeonia Paeonia suffruticosa moutan peony,tree peony \N \N \N \N 54004 C.matangense Cyrtochilum Cyrtochilum matangense \N \N \N \N \N 54005 \N genus Tessaria \N \N \N \N \N 54006 O.muellerii Olearia Olearia muellerii \N \N \N \N \N 54007 T.alatum Taraxacum Taraxacum alatum \N \N \N \N \N 54008 \N genus Lemna duckweed \N \N \N \N 54009 D.paspalaceus Desmanthus Desmanthus paspalaceus \N \N \N \N \N 54010 O.matsumuranus Osmanthus Osmanthus matsumuranus \N \N \N \N \N 54011 R.rex Rhododendron Rhododendron rex \N \N \N \N \N 54012 E.tenuis Erigeron Erigeron tenuis \N \N \N \N \N 54013 S.cassioides Sophora Sophora cassioides pelu \N \N \N \N 54014 \N subspecies Beta vulgaris subsp. maritima palanki,sea beet \N \N \N \N 54015 S.allenii Satyria Satyria allenii \N \N \N \N \N 54016 \N subspecies Serratula tinctoria subsp. seoanei \N \N \N \N \N 54017 \N genus Centradenia \N \N \N \N \N 54018 K.parvula Kadua Kadua parvula \N \N \N \N \N 54019 M.HS438 Momordica Momordica sp. HS438 \N \N \N \N \N 54020 C.nova Carex Carex nova \N \N \N \N \N 54021 K.monocephala Kyllinga Kyllinga monocephala \N \N \N \N \N 54022 P.seemannii Phytelephas Phytelephas seemannii \N \N \N \N \N 54023 L.divaricata Luehea Luehea divaricata \N \N \N \N \N 54024 P.chaseanum Paspalum Paspalum chaseanum \N \N \N \N \N 54025 \N genus Trichodesma \N \N \N \N \N 54026 P.detritophilum Papaver Papaver detritophilum \N \N \N \N \N 54027 T.asiaticum Trachelospermum Trachelospermum asiaticum \N \N \N \N \N 54028 \N genus Grevillea \N \N \N \N \N 54029 D.hirta Diplotaxis Diplotaxis hirta \N \N \N \N \N 54030 C.pugionifera Cousinia Cousinia pugionifera \N \N \N \N \N 66654 \N genus Ptychopetalum \N \N \N \N \N 54031 B.canadensis Berberis Berberis canadensis Allegheny barberry,American barberry \N \N \N \N 54032 L.sativus Lathyrus Lathyrus sativus chickling vetch,white pea \N \N \N \N 54033 S.roylei Stipa Stipa roylei \N \N \N \N \N 54034 M.bracteatum Macroptilium Macroptilium bracteatum \N \N \N \N \N 54035 \N genus Disepalum \N \N \N \N \N 54036 M.mieheana Mammillaria Mammillaria mieheana \N \N \N \N \N 54037 M.albiflora Moraea Moraea albiflora \N \N \N \N \N 54038 S.ramosissima Salicornia Salicornia ramosissima \N \N \N \N \N 54039 G.veitchiorum Gentiana Gentiana sino-ornata x Gentiana veitchiorum \N \N \N \N \N 54040 S.rosea Swartzia Swartzia rosea \N \N \N \N \N 54041 C.muirii Carlquistia Carlquistia muirii \N \N \N \N \N 54042 L.pusilla Lachnaea Lachnaea pusilla \N \N \N \N \N 54043 T.echinulatum Typhonium Typhonium echinulatum \N \N \N \N \N 54044 C.alismatifolia Curcuma Curcuma alismatifolia \N \N \N \N \N 54045 M.subverticillaris Myrcia Myrcia subverticillaris \N \N \N \N \N 54046 I.melissoides Isodon Isodon melissoides \N \N \N \N \N 54047 \N subspecies Centaurium erythraea subsp. rumelicum \N \N \N \N \N 54048 A.4625 Alloplectus Alloplectus sp. Clark 4625 \N \N \N \N \N 54049 S.PF-2010 Schefflera Schefflera cf. violacea PF-2010 \N \N \N \N \N 54050 H.triticeus Heteropogon Heteropogon triticeus \N \N \N \N \N 54051 X.rhizomatum Xanthisma Xanthisma rhizomatum \N \N \N \N \N 54052 A.floribunda Abelia Abelia floribunda \N \N \N \N \N 54053 \N genus Conanthera \N \N \N \N \N 54054 C.MB0825 Curcuma Curcuma sp. MB0825 \N \N \N \N \N 54055 \N genus Malanea \N \N \N \N \N 54056 M.orthoceras Medicago Medicago orthoceras \N \N \N \N \N 54057 N.13207 Notoseris Notoseris sp. Li Heng 13207 \N \N \N \N \N 54058 H.bechuanense Hirpicium Hirpicium bechuanense \N \N \N \N \N 54059 C.monostachya Caryota Caryota monostachya \N \N \N \N \N 54060 C.densa Carex Carex densa \N \N \N \N \N 64927 \N genus Ornithostaphylos \N \N \N \N \N 54061 R.erythrocaulis Rorippa Rorippa erythrocaulis \N \N \N \N \N 54062 \N genus Pratia \N \N \N \N \N 54063 M.incisoserrata Maddenia Maddenia incisoserrata \N \N \N \N \N 54064 \N varietas Helicotropis linearis var. linearis \N \N \N \N \N 54065 P.leptostylidifolia Planchonella Planchonella leptostylidifolia \N \N \N \N \N 54066 C.nana Chusquea Chusquea nana \N \N \N \N \N 54067 \N genus Telitoxicum \N \N \N \N \N 54068 B.breynei Bikinia Bikinia breynei \N \N \N \N \N 54069 \N genus Urceola \N \N \N \N \N 54070 P.pusilla Potentilla Potentilla pusilla \N \N \N \N \N 54071 \N genus Sclerolinon \N \N \N \N \N 54072 A.viridis Agalinis Agalinis viridis \N \N \N \N \N 54073 M.retusa Mendoncia Mendoncia retusa \N \N \N \N \N 54074 L.edulis Lannea Lannea edulis \N \N \N \N \N 54075 E.paradoxa Eichhornia Eichhornia paradoxa \N \N \N \N \N 54076 T.kuntzeanum Tropaeolum Tropaeolum kuntzeanum \N \N \N \N \N 54077 \N varietas Mimosa papposa var. papposa \N \N \N \N \N 54078 W.maculata Witheringia Witheringia maculata \N \N \N \N \N 54079 P.maritimum Polygonum Polygonum maritimum \N \N \N \N \N 54080 N.sylvestris Nicotiana Nicotiana sylvestris wood tobacco \N \N \N \N 54081 A.trifoliolata Andira Andira trifoliolata \N \N \N \N \N 54082 S.visianii Satureja Satureja visianii \N \N \N \N \N 54083 \N family Winteraceae \N \N \N \N \N 54084 \N subfamily Ericoideae \N \N \N \N \N 54085 \N subspecies Dubautia ciliolata subsp. glutinosa \N \N \N \N \N 54086 G.hanburyi Garcinia Garcinia hanburyi \N \N \N \N \N 54087 S.sphaerocarpum Satyrium Satyrium sphaerocarpum \N \N \N \N \N 54088 \N subfamily Ixoroideae \N \N \N \N \N 54089 R.sandwicensis Rhus Rhus sandwicensis \N \N \N \N \N 54090 C.mcvaughii Carlowrightia Carlowrightia mcvaughii \N \N \N \N \N 54091 \N genus Kobresia \N \N \N \N \N 54092 P.caledonicum Peponium Peponium caledonicum \N \N \N \N \N 54093 C.nepalensis Coriaria Coriaria nepalensis \N \N \N \N \N 54094 B.caerulescens Bellis Bellis caerulescens \N \N \N \N \N 54095 B.madagascariensis Bleekrodea Bleekrodea madagascariensis \N \N \N \N \N 54096 C.boothii Camissonia Camissonia boothii \N \N \N \N \N 54097 T.furcistipes Tridactyle Tridactyle furcistipes \N \N \N \N \N 54098 E.cordifolia Eucryphia Eucryphia cordifolia \N \N \N \N \N 54099 I.gossypifera Ipomopsis Ipomopsis gossypifera \N \N \N \N \N 54100 \N genus Alococarpum \N \N \N \N \N 54101 \N varietas Chiritopsis repanda var. guilinensis \N \N \N \N \N 54102 R.hirsuta Reichenbachia Reichenbachia hirsuta \N \N \N \N \N 54103 \N genus Afraegle \N \N \N \N \N 54104 R.persica Rydingia Rydingia persica \N \N \N \N \N 54105 U.americana Ulmus Ulmus americana American elm \N \N \N \N 54106 M.altissima Manulea Manulea altissima \N \N \N \N \N 54107 E.sundaica Eleocharis Eleocharis sundaica \N \N \N \N \N 54108 A.dichotomum Aichryson Aichryson dichotomum \N \N \N \N \N 54109 \N genus Fortunearia \N \N \N \N \N 54110 E.acaulis Euphorbia Euphorbia acaulis \N \N \N \N \N 54111 \N subspecies Phaseolus coccineus subsp. coccineus \N \N \N \N \N 54112 N.involucrata Navarretia Navarretia involucrata \N \N \N \N \N 54113 G.drummondii Gaura Gaura drummondii \N \N \N \N \N 54114 \N genus Steinchisma \N \N \N \N \N 54115 C.kohalae Clermontia Clermontia kohalae \N \N \N \N \N 54116 \N subspecies Thymelaea pubescens subsp. elliptica \N \N \N \N \N 54117 C.warscewiczii Calathea Calathea warscewiczii \N \N \N \N \N 54118 P.pinnatifida Parrya Parrya pinnatifida \N \N \N \N \N 54119 S.'hannemanii' Solanum Solanum sp. 'hannemanii' \N \N \N \N \N 54120 H.bulbosum Hordeum Hordeum bulbosum \N \N \N \N \N 54121 P.exiguum Piptatherum Piptatherum exiguum \N \N \N \N \N 54122 L.coopertus Lithocarpus Lithocarpus coopertus barusang,bohol oyagan \N \N \N \N 54123 E.algoensis Euryops Euryops algoensis \N \N \N \N \N 54124 \N genus Aiphanes \N \N \N \N \N 54125 \N forma Eleutherococcus divaricatus f. sachunense \N \N \N \N \N 54126 K.physaloides Krapovickasia Krapovickasia physaloides \N \N \N \N \N 54127 \N varietas Juncus triglumis var. albescens \N \N \N \N \N 54128 C.camphora Cinnamomum Cinnamomum camphora camphor tree \N \N \N \N 54129 L.condensatus Leymus Leymus condensatus \N \N \N \N \N 54130 \N genus Phrodus \N \N \N \N \N 54131 C.rehmii Citrullus Citrullus rehmii \N \N \N \N \N 54132 T.subterraneum Trifolium Trifolium subterraneum \N \N \N \N \N 54133 \N genus Orixa \N \N \N \N \N 54134 S.umbellifera Schefflera Schefflera umbellifera \N \N \N \N \N 54135 L.bidentatum Lepidium Lepidium bidentatum \N \N \N \N \N 54136 S.montevidensis Senecio Senecio montevidensis \N \N \N \N \N 54137 L.crumaniana Lotononis Lotononis crumaniana \N \N \N \N \N 54138 E.filacea Elegia Elegia filacea \N \N \N \N \N 54139 M.MAG-2009 Maytenus Maytenus sp. MAG-2009 \N \N \N \N \N 54140 J.uncialis Juncus Juncus uncialis \N \N \N \N \N 54141 \N genus Synaptolepis \N \N \N \N \N 54142 A.s.n. Allamanda Allamanda sp. Wurdack s.n. \N \N \N \N \N 54143 U.paniculata Uniola Uniola paniculata \N \N \N \N \N 54144 C.parviflora Clusia Clusia parviflora \N \N \N \N \N 54145 O.'railway' Orchidantha Orchidantha sp. nov. 'railway' \N \N \N \N \N 54146 S.raddeana Salix Salix raddeana \N \N \N \N \N 54147 S.gemma Stelis Stelis gemma \N \N \N \N \N 54148 \N varietas Brassica juncea var. napiformis jie cai ge da,root mustard \N \N \N \N 54149 O.longissima Oenothera Oenothera longissima \N \N \N \N \N 54150 A.petitianum Afroligusticum Afroligusticum petitianum \N \N \N \N \N 54151 C.stenocodon Campanula Campanula stenocodon \N \N \N \N \N 54152 C.rhabdospermum Chrysosplenium Chrysosplenium rhabdospermum \N \N \N \N \N 54153 \N subspecies Genista hirsuta subsp. hirsuta \N \N \N \N \N 54154 A.virgatum Alyssum Alyssum virgatum \N \N \N \N \N 54155 P.pelinos Pimelea Pimelea pelinos \N \N \N \N \N 54156 C.acaulis Cymopterus Cymopterus acaulis \N \N \N \N \N 54157 A.maclurei Alpinia Alpinia maclurei \N \N \N \N \N 54158 A.pycnantha Acacia Acacia pycnantha \N \N \N \N \N 54159 C.actinacantha Cousinia Cousinia actinacantha \N \N \N \N \N 54160 C.turbinata Carex Carex turbinata \N \N \N \N \N 54161 M.lamellata Microcephala Microcephala lamellata \N \N \N \N \N 54162 C.MM-2009 Corallodiscus Corallodiscus sp. MM-2009 \N \N \N \N \N 54163 \N varietas Craspedia lanata var. elongata \N \N \N \N \N 54164 M.2366 Maxillaria Maxillaria cf. triloris Whitten 2366 \N \N \N \N \N 54165 \N genus Pertya \N \N \N \N \N 54166 \N tribe Sipaneeae \N \N \N \N \N 54167 B.diversispicula Bouteloua Bouteloua diversispicula \N \N \N \N \N 54168 P.spinosum Pelargonium Pelargonium spinosum \N \N \N \N \N 54169 W.australiensis Wetria Wetria australiensis \N \N \N \N \N 54170 O.goreensis Oldenlandia Oldenlandia goreensis \N \N \N \N \N 54171 C.arborescens Cratoxylum Cratoxylum arborescens gerongong \N \N \N \N 54172 A.cespitosa Anchusa Anchusa cespitosa \N \N \N \N \N 54173 E.humbertii Exacum Exacum humbertii \N \N \N \N \N 54174 K.vitifolia Kitaibela Kitaibela vitifolia \N \N \N \N \N 54175 \N varietas Alpinia strobiliformis var. glabra \N \N \N \N \N 54176 \N subspecies Nigella arvensis subsp. glauca \N \N \N \N \N 54177 \N genus Tussilago \N \N \N \N \N 54178 A.aurantiacum Ascocentrum Ascocentrum aurantiacum \N \N \N \N \N 54179 O.ravenii Oenothera Oenothera ravenii \N \N \N \N \N 54180 T.pustulata Triolena Triolena pustulata \N \N \N \N \N 54181 C.stellatopilosus Croton Croton stellatopilosus \N \N \N \N \N 54182 M.anisopetala Mascagnia Mascagnia anisopetala \N \N \N \N \N 54183 P.682 Peponidium Peponidium sp. Mouly 682 \N \N \N \N \N 54184 C.weberbaueri Chuquiraga Chuquiraga weberbaueri \N \N \N \N \N 54185 L.campanulatus Lasiocephalus Lasiocephalus campanulatus \N \N \N \N \N 54186 S.aequinoctiale Selenipedium Selenipedium aequinoctiale \N \N \N \N \N 54187 H.adenopetala Hinterhubera Hinterhubera adenopetala \N \N \N \N \N 54188 T.pingbianensis Tupistra Tupistra pingbianensis \N \N \N \N \N 54189 N.kilneri Neisosperma Neisosperma kilneri \N \N \N \N \N 54190 E.deserticola Echinopsis Echinopsis deserticola \N \N \N \N \N 54191 D.zenkeri Diogoa Diogoa zenkeri \N \N \N \N \N 54192 \N varietas Rhododendron degronianum var. degronianum \N \N \N \N \N 54193 R.nipensis Rondeletia Rondeletia nipensis \N \N \N \N \N 54194 \N subspecies Dendrosenecio kilimanjari subsp. cottonii \N \N \N \N \N 54195 R.oreotrephes Rhododendron Rhododendron oreotrephes \N \N \N \N \N 54196 H.7596 Heliophila Heliophila sp. Linder et al. 7596 \N \N \N \N \N 54197 S.delavayi Silene Silene delavayi \N \N \N \N \N 54198 L.urticifolia Lindenbergia Lindenbergia urticifolia \N \N \N \N \N 54199 L.curtisii Lasianthus Lasianthus curtisii \N \N \N \N \N 54200 L.pallida Leucaena Leucaena pallida guajal \N \N \N \N 54201 M.polyphylla Monanthes Monanthes polyphylla \N \N \N \N \N 54202 V.gerardii Voanioala Voanioala gerardii \N \N \N \N \N 54203 E.hanekomii Erica Erica hanekomii \N \N \N \N \N 54204 C.cleiostoma Cerinthe Cerinthe cleiostoma \N \N \N \N \N 54205 I.1777 Indigofera Indigofera sp. Wilson & Palmer 1777 \N \N \N \N \N 54206 C.appalachica Carex Carex appalachica \N \N \N \N \N 54207 \N tribe Crotoneae \N \N \N \N \N 54208 \N genus Lyperia \N \N \N \N \N 54209 \N genus Coleocoma \N \N \N \N \N 54210 C.macloviana Carex Carex macloviana \N \N \N \N \N 54211 L.axillaris Leucothoe Leucothoe axillaris dog-hobble,leucothoe \N \N \N \N 54212 A.93006 Altingia Altingia sp. Qiu 93006 \N \N \N \N \N 54213 C.pedunculosa Coronanthera Coronanthera pedunculosa \N \N \N \N \N 54214 C.moellendorffii Cardiandra Cardiandra moellendorffii \N \N \N \N \N 54215 B.geminata Barbosella Barbosella geminata \N \N \N \N \N 54216 V.shuehshanarum Veratrum Veratrum shuehshanarum \N \N \N \N \N 54217 O.2711 Oncidium Oncidium aff. heteranthum Whitten 2711 \N \N \N \N \N 54218 S.7345 Steriphoma Steriphoma sp. Cornejo 7345 \N \N \N \N \N 54219 A.muricata Adesmia Adesmia muricata \N \N \N \N \N 54220 \N subspecies Phyllobolus digitatus subsp. digitatus \N \N \N \N \N 54221 \N subspecies Claytonia exigua subsp. exigua \N \N \N \N \N 54222 \N varietas Rhodosciadium glaucum var. lineare \N \N \N \N \N 54223 A.edmondstonei Astragalus Astragalus edmondstonei \N \N \N \N \N 54224 A.tenella Anagallis Anagallis tenella \N \N \N \N \N 54225 P.pterocarpum Peltophorum Peltophorum pterocarpum \N \N \N \N \N 54226 T.moquini Traganum Traganum moquini \N \N \N \N \N 54227 Y.anceps Yushania Yushania anceps \N \N \N \N \N 54228 B.serrata Brachiaria Brachiaria serrata \N \N \N \N \N 54229 P.webbii Prunus Prunus webbii \N \N \N \N \N 54230 B.GF-2007 Bulbophyllum Bulbophyllum aff. baronii GF-2007 \N \N \N \N \N 54231 \N genus Gundelia \N \N \N \N \N 54232 E.dybowskii Espostoopsis Espostoopsis dybowskii \N \N \N \N \N 54233 T.clintonii Trichophorum Trichophorum clintonii \N \N \N \N \N 54234 \N subspecies Plantago spathulata subsp. picta \N \N \N \N \N 54235 L.leptoclada Lessingia Lessingia leptoclada \N \N \N \N \N 54236 P.apennina Primula Primula apennina \N \N \N \N \N 54237 D.foliosa Dactylorhiza Dactylorhiza foliosa \N \N \N \N \N 54238 P.racemosa Phyllostegia Phyllostegia racemosa \N \N \N \N \N 54239 \N subspecies Scrophularia variegata subsp. rupestris \N \N \N \N \N 54240 R.hauthalii Rhynchosia Rhynchosia hauthalii \N \N \N \N \N 54241 A.sesamoides Astragalus Astragalus sesamoides \N \N \N \N \N 54242 L.grandifolius Lithocarpus Lithocarpus grandifolius \N \N \N \N \N 54243 I.siculifer Impatiens Impatiens siculifer \N \N \N \N \N 54244 M.marginata Miconia Miconia marginata \N \N \N \N \N 54245 C.versicolor Campanula Campanula versicolor \N \N \N \N \N 54246 P.pauciflora Polygala Polygala pauciflora \N \N \N \N \N 54247 L.nautilus Lepanthes Lepanthes nautilus \N \N \N \N \N 54248 \N family Cucurbitaceae cucumber family \N \N \N \N 54249 B.sarcopoda Bursera Bursera sarcopoda \N \N \N \N \N 54250 H.quinquedentata Hermas Hermas quinquedentata \N \N \N \N \N 54251 C.cymosum Cirsium Cirsium cymosum \N \N \N \N \N 54252 B.media Bonamia Bonamia media \N \N \N \N \N 54253 M.arenicola Muhlenbergia Muhlenbergia arenicola \N \N \N \N \N 54254 B.rufa Briza Briza rufa \N \N \N \N \N 54255 \N tribe Fontanesieae \N \N \N \N \N 54256 M.whytei Monanthotaxis Monanthotaxis whytei \N \N \N \N \N 54257 \N genus Barongia \N \N \N \N \N 54258 D.muricata Dichaea Dichaea muricata \N \N \N \N \N 54259 C.cardunculus Cynara Cynara cardunculus cardoon,wild artichoke \N \N \N \N 54260 T.coreanum Taraxacum Taraxacum coreanum \N \N \N \N \N 54261 F.nubicola Fragaria Fragaria nubicola \N \N \N \N \N 54262 M.ignorata Monsonia Monsonia ignorata \N \N \N \N \N 54263 J.sanchez-vegae Jaltomata Jaltomata sanchez-vegae \N \N \N \N \N 54264 M.sericeum Melampodium Melampodium sericeum \N \N \N \N \N 54265 P.tricuspidatus Pterocelastrus Pterocelastrus tricuspidatus \N \N \N \N \N 54266 E.oleifera Elaeis Elaeis oleifera American oil palm \N \N \N \N 54267 O.diosmifolius Ozothamnus Ozothamnus diosmifolius \N \N \N \N \N 54268 O.12895 Orobanche Orobanche sp. Sanchez Pedraja 12895 \N \N \N \N \N 54269 \N genus Brazzeia \N \N \N \N \N 54270 \N genus Ceratolimon \N \N \N \N \N 54271 G.tenuifolia Gilberta Gilberta tenuifolia \N \N \N \N \N 54272 M.lindheimeri Muhlenbergia Muhlenbergia lindheimeri \N \N \N \N \N 54273 A.occidentalis Acanthocereus Acanthocereus occidentalis \N \N \N \N \N 54274 P.intermedium Platostoma Platostoma intermedium \N \N \N \N \N 54275 C.discolor Comarostaphylis Comarostaphylis discolor \N \N \N \N \N 54276 P.capitata Psychotria Psychotria capitata \N \N \N \N \N 54277 T.dinghoui Thottea Thottea dinghoui \N \N \N \N \N 54278 T.cherryi Ternstroemia Ternstroemia cherryi \N \N \N \N \N 54279 S.diversifolium Stathmostelma Stathmostelma diversifolium \N \N \N \N \N 54280 \N genus Acaena \N \N \N \N \N 54281 L.nervosa Lonicera Lonicera nervosa \N \N \N \N \N 54282 \N genus Dasispermum \N \N \N \N \N 54283 C.persicum Calligonum Calligonum persicum \N \N \N \N \N 54284 P.pungens Pleurophora Pleurophora pungens \N \N \N \N \N 54285 O.carnosa Othonna Othonna carnosa \N \N \N \N \N 54286 A.ovata Antonia Antonia ovata \N \N \N \N \N 54287 W.rotunda Wolffiella Wolffiella rotunda \N \N \N \N \N 54288 \N genus Clausia \N \N \N \N \N 54289 A.alaicum Allium Allium alaicum \N \N \N \N \N 54290 V.telephiifolia Veronica Veronica telephiifolia \N \N \N \N \N 54291 E.subarctica Euphrasia Euphrasia subarctica arctic eyebright \N \N \N \N 54292 I.guttata Ipomopsis Ipomopsis guttata \N \N \N \N \N 54293 A.trabeculosa Alnus Alnus trabeculosa \N \N \N \N \N 54294 R.67562 Rhipsalis Rhipsalis sp. Rauh 67562 \N \N \N \N \N 54295 B.sibiricum Bupleurum Bupleurum sibiricum \N \N \N \N \N 54296 J.SH-2010 Jasminum Jasminum sp. SH-2010 \N \N \N \N \N 54297 B.acuta Bryonia Bryonia acuta \N \N \N \N \N 54298 \N varietas Tetramolopium humile var. humile \N \N \N \N \N 54299 \N genus Lankesterella \N \N \N \N \N 54300 B.myricifolia Bernardia Bernardia myricifolia \N \N \N \N \N 54301 P.alata Pterygota Pterygota alata \N \N \N \N \N 54302 \N subspecies Carlina biebersteinii subsp. brevibracteata \N \N \N \N \N 54303 \N subspecies Linaria multicaulis subsp. aurasiaca \N \N \N \N \N 54304 P.frutescens Piper Piper frutescens \N \N \N \N \N 54305 \N genus Ischaemum \N \N \N \N \N 54306 A.purpurata Alpinia Alpinia purpurata red-ginger \N \N \N \N 54307 \N genus Itasina \N \N \N \N \N 54308 O.purpurascens Oreonana Oreonana purpurascens \N \N \N \N \N 54309 A.brevicaulis Archangelica Archangelica brevicaulis \N \N \N \N \N 54310 \N genus Cheirolophus \N \N \N \N \N 54311 S.neriifolius Suberanthus Suberanthus neriifolius \N \N \N \N \N 54312 \N varietas Boehmeria strigosifolia var. strigosifolia \N \N \N \N \N 54313 P.saundersii Pachypodium Pachypodium saundersii \N \N \N \N \N 54314 A.robusta Acacia Acacia robusta \N \N \N \N \N 54315 D.natolica Draba Draba natolica \N \N \N \N \N 54316 S.caesia Salix Salix caesia blue willow \N \N \N \N 54317 P.cambodgense Platostoma Platostoma cambodgense \N \N \N \N \N 54318 \N genus Disporum \N \N \N \N \N 54319 E.gossweileri Endadenium Endadenium gossweileri \N \N \N \N \N 54320 P.pringlei Polianthes Polianthes pringlei \N \N \N \N \N 54321 F.boninsimae Ficus Ficus boninsimae \N \N \N \N \N 54322 G.koraiense Geranium Geranium koraiense \N \N \N \N \N 54323 \N genus Minaria \N \N \N \N \N 54324 G.jodinifolia Griselinia Griselinia jodinifolia \N \N \N \N \N 54325 M.stenophylla Mundulea Mundulea stenophylla \N \N \N \N \N 54326 C.friburgense Capsicum Capsicum friburgense \N \N \N \N \N 54327 P.fordeana Poa Poa fordeana \N \N \N \N \N 54328 C.reticulata Callerya Callerya reticulata \N \N \N \N \N 54329 I.langebergensis Indigofera Indigofera langebergensis \N \N \N \N \N 54330 \N subspecies Cyanotis repens subsp. repens \N \N \N \N \N 54331 F.pubescens Fridericia Fridericia pubescens \N \N \N \N \N 54332 M.perryae Maxillaria Maxillaria perryae \N \N \N \N \N 54333 C.pycnoloba Cousinia Cousinia pycnoloba \N \N \N \N \N 54334 \N subspecies Hordeum brevisubulatum subsp. violaceum \N \N \N \N \N 54335 A.schimperianum Arisaema Arisaema schimperianum \N \N \N \N \N 54336 \N varietas Paris thibetica var. apetala \N \N \N \N \N 54337 \N genus Lepidaploa \N \N \N \N \N 54338 C.insularimontanum Cinnamomum Cinnamomum insularimontanum \N \N \N \N \N 54339 H.barnebyi Hesperidanthus Hesperidanthus barnebyi \N \N \N \N \N 54340 G.macrocarpum Geocaryum Geocaryum macrocarpum \N \N \N \N \N 54341 H.cupulata Hedycarya Hedycarya cupulata \N \N \N \N \N 54342 \N varietas Fimbristylis ferruginea var. anpinensis \N \N \N \N \N 54343 O.schliebenii Olea Olea schliebenii \N \N \N \N \N 54344 C.corymbosa Coelogyne Coelogyne corymbosa \N \N \N \N \N 54345 D.KH Dilkea Dilkea sp. KH \N \N \N \N \N 54346 \N subspecies Centaurea bombycina subsp. xeranthemoides \N \N \N \N \N 54347 M.mutica Melica Melica mutica \N \N \N \N \N 54348 N.domingensis Narvalina Narvalina domingensis \N \N \N \N \N 54349 C.macvaughii Caesalpinia Caesalpinia macvaughii \N \N \N \N \N 54350 \N genus Sericostachys \N \N \N \N \N 54351 T.fruticosum Thesium Thesium fruticosum \N \N \N \N \N 54352 S.thelopodium Solanum Solanum thelopodium \N \N \N \N \N 54353 C.occidentalis Cardamine Cardamine occidentalis \N \N \N \N \N 54354 G.itatiaiae Graphistylis Graphistylis itatiaiae \N \N \N \N \N 54355 \N varietas Senecio flaccidus var. douglasii \N \N \N \N \N 54356 N.lanceolata Nemesia Nemesia lanceolata \N \N \N \N \N 54357 C.parvifolia Chamaedorea Chamaedorea parvifolia \N \N \N \N \N 54358 H.sanhan Hornstedtia Hornstedtia sanhan \N \N \N \N \N 54359 S.daltonii Sonchus Sonchus daltonii \N \N \N \N \N 54360 E.triangularis Euphorbia Euphorbia triangularis \N \N \N \N \N 54361 M.SH-2010 Mallotus Mallotus sp. SH-2010 \N \N \N \N \N 54362 L.campestre Lepidium Lepidium campestre bastard cress,field peppergrass,field pepperweed,pepperwort \N \N \N \N 54363 A.sachokiana Arabis Arabis sachokiana \N \N \N \N \N 54364 M.glabra Marsdenia Marsdenia glabra \N \N \N \N \N 54365 L.fluitans Leiothrix Leiothrix fluitans \N \N \N \N \N 54366 T.Barrett-1504 Typhonium Typhonium aff. liliifolium Barrett-1504 \N \N \N \N \N 54367 N.holosericea Nesphostylis Nesphostylis holosericea \N \N \N \N \N 54368 N.bryoides Nardophyllum Nardophyllum bryoides \N \N \N \N \N 54369 A.obovata Anathallis Anathallis obovata \N \N \N \N \N 54370 H.SK-2009b Hydrobryum Hydrobryum sp. SK-2009b \N \N \N \N \N 54371 \N varietas Thelesperma pubescens var. caespitosum \N \N \N \N \N 54372 N.stocktonii Nicotiana Nicotiana stocktonii \N \N \N \N \N 54373 R.multiflora Racinaea Racinaea multiflora \N \N \N \N \N 54374 N.crepidineus Nabalus Nabalus crepidineus \N \N \N \N \N 54375 E.lusitanica Epipactis Epipactis lusitanica \N \N \N \N \N 54376 \N subspecies Pulicaria paludosa subsp. paludosa \N \N \N \N \N 54377 P.collinum Polianthion Polianthion collinum \N \N \N \N \N 54378 \N subspecies Patellifolia procumbens subsp. procumbens \N \N \N \N \N 54379 S.bermudana Sabal Sabal bermudana \N \N \N \N \N 54380 P.suberosa Praravinia Praravinia suberosa \N \N \N \N \N 54381 M.congesta Myosotis Myosotis congesta \N \N \N \N \N 54382 C.wallichii Crucihimalaya Crucihimalaya wallichii \N \N \N \N \N 54383 B.kirkii Brachyglottis Brachyglottis kirkii \N \N \N \N \N 54384 C.schraderianum Chenopodium Chenopodium schraderianum \N \N \N \N \N 54385 N.guianensis Norantea Norantea guianensis \N \N \N \N \N 54386 T.nitidus Timonius Timonius nitidus \N \N \N \N \N 54387 \N genus Colpodium \N \N \N \N \N 54388 \N varietas Ziziphus jujuba var. spinosa \N \N \N \N \N 54389 L.weberbaueri Lupinus Lupinus weberbaueri \N \N \N \N \N 54390 O.drummondii Oxalis Oxalis drummondii \N \N \N \N \N 54391 S.lagoensis Schleidenia Schleidenia lagoensis \N \N \N \N \N 54392 L.repens Lepturus Lepturus repens \N \N \N \N \N 54393 E.hooveri Euphorbia Euphorbia hooveri \N \N \N \N \N 54394 C.coulteri Cymopterus Cymopterus coulteri \N \N \N \N \N 54395 P.microdon Psychotria Psychotria microdon \N \N \N \N \N 54396 S.heptaphylla Schefflera Schefflera heptaphylla \N \N \N \N \N 54397 \N subspecies Senecio squalidus subsp. araneosus \N \N \N \N \N 54398 N.2001-3 Nepenthes Nepenthes sp. HHM 2001-3 \N \N \N \N \N 54399 C.ornata Calathea Calathea ornata \N \N \N \N \N 54400 S.sisarum Sium Sium sisarum skirret \N \N \N \N 54401 C.leiocalycinus Convolvulus Convolvulus leiocalycinus \N \N \N \N \N 54402 \N genus Calopsis \N \N \N \N \N 54403 \N genus Lecanorchis \N \N \N \N \N 54404 C.sciuripabulum Clytostoma Clytostoma sciuripabulum \N \N \N \N \N 54405 L.virgata Lessingia Lessingia virgata \N \N \N \N \N 54406 H.lasiocarpum Heliotropium Heliotropium lasiocarpum \N \N \N \N \N 54407 O.graminifolium Oncidium Oncidium graminifolium \N \N \N \N \N 54408 V.pazensis Viguiera Viguiera pazensis \N \N \N \N \N 54409 R.blairiana Rhodamnia Rhodamnia blairiana iron malletwood \N \N \N \N 54410 D.antarctica Deschampsia Deschampsia antarctica Antarctic hairgrass \N \N \N \N 54411 S.recurvicuspis Sclerolaena Sclerolaena recurvicuspis \N \N \N \N \N 54412 R.pendulina Rosa Rosa pendulina alpine rose \N \N \N \N 54413 B.panchtharensis Begonia Begonia panchtharensis \N \N \N \N \N 54414 A.huanglianshanensis Alseodaphne Alseodaphne huanglianshanensis \N \N \N \N \N 54415 \N genus Oncostemum \N \N \N \N \N 54416 E.pumila Eucalyptus Eucalyptus pumila \N \N \N \N \N 54417 \N varietas Aconitum carmichaelii var. truppelianum \N \N \N \N \N 54418 C.vadosa Castilleja Castilleja vadosa \N \N \N \N \N 54419 \N genus Drosanthemum \N \N \N \N \N 54420 R.apenninus Ranunculus Ranunculus apenninus \N \N \N \N \N 54421 L.floridana Leitneria Leitneria floridana \N \N \N \N \N 54422 D.aurea Daubenya Daubenya aurea \N \N \N \N \N 54423 S.marina Spergularia Spergularia marina lesser sea-spurrey,salt sandspurry \N \N \N \N 54424 A.fascicularis Aeschynomene Aeschynomene fascicularis \N \N \N \N \N 54425 V.smallii Vaccinium Vaccinium smallii \N \N \N \N \N 54426 R.micropylora Rafflesia Rafflesia micropylora \N \N \N \N \N 54427 \N tribe Ehrharteae \N \N \N \N \N 54428 G.floribundus Gladiolus Gladiolus floribundus \N \N \N \N \N 54429 U.fistulosa Utricularia Utricularia fistulosa \N \N \N \N \N 54430 H.tricostatum Helichrysum Helichrysum tricostatum \N \N \N \N \N 54431 F.DH-2011 Fraxinus Fraxinus sp. DH-2011 \N \N \N \N \N 54432 A.SH-2010 Alocasia Alocasia sp. SH-2010 \N \N \N \N \N 54433 C.reticulatus Crocus Crocus reticulatus \N \N \N \N \N 54434 R.AT-2011 Ranunculus Ranunculus sp. AT-2011 \N \N \N \N \N 54435 \N varietas Prunus serrulata var. tomentella \N \N \N \N \N 54436 T.inconspicua Trithuria Trithuria inconspicua \N \N \N \N \N 54437 H.austriacum Heracleum Heracleum austriacum \N \N \N \N \N 54438 F.albipila Ficus Ficus albipila \N \N \N \N \N 54439 \N family Gesneriaceae African violet family \N \N \N \N 54440 L.telifera Licuala Licuala telifera \N \N \N \N \N 54441 A.gonoclada Acacia Acacia gonoclada \N \N \N \N \N 54442 A.trichophora Arenaria Arenaria trichophora \N \N \N \N \N 54443 M.seriatoramosa Myrceugenia Myrceugenia seriatoramosa \N \N \N \N \N 54444 P.modesta Primula Primula modesta \N \N \N \N \N 54445 I.ghesquierei Isolona Isolona ghesquierei \N \N \N \N \N 54446 R.vaginiviscosa Renvoizea Renvoizea vaginiviscosa \N \N \N \N \N 54447 L.chenopodioides Lysimachia Lysimachia chenopodioides \N \N \N \N \N 54448 \N varietas Morus alba var. multicaulis \N \N \N \N \N 54449 C.subcernuum Crinum Crinum subcernuum \N \N \N \N \N 54450 G.9E8 Gladiolus Gladiolus sp. A 9E8 \N \N \N \N \N 54451 V.vestita Vitex Vitex vestita \N \N \N \N \N 54452 C.hectorii Carex Carex hectorii \N \N \N \N \N 54453 \N subspecies Crocus biflorus subsp. weldenii \N \N \N \N \N 54454 E.rubiginosa Evotella Evotella rubiginosa \N \N \N \N \N 54455 O.commutata Oxalis Oxalis commutata \N \N \N \N \N 54456 A.caesiglauca Acaena Acaena caesiglauca \N \N \N \N \N 54457 \N genus Elaeodendron \N \N \N \N \N 54458 B.hancei Brandisia Brandisia hancei \N \N \N \N \N 54459 M.ibaguensis Miconia Miconia ibaguensis \N \N \N \N \N 54460 \N genus Pilopleura \N \N \N \N \N 54461 T.ovalifolia Tricalysia Tricalysia ovalifolia \N \N \N \N \N 54462 \N genus Pycnanthus \N \N \N \N \N 54463 \N genus Gardneria \N \N \N \N \N 54464 S.sessilis Stenogyne Stenogyne sessilis \N \N \N \N \N 54465 L.hobsonii Lignariella Lignariella hobsonii \N \N \N \N \N 54466 H.nutans Homalanthus Homalanthus nutans \N \N \N \N \N 54467 \N subspecies Phlox pilosa subsp. deamii \N \N \N \N \N 54468 M.nana Moraea Moraea nana \N \N \N \N \N 54469 L.hieronymi Lamprothyrsus Lamprothyrsus hieronymi \N \N \N \N \N 54470 O.chinensis Osbeckia Osbeckia chinensis \N \N \N \N \N 54471 \N varietas Gymnocalycium damsii var. rotundulum \N \N \N \N \N 54472 S.poochlamys Saussurea Saussurea poochlamys \N \N \N \N \N 54473 C.lasiocarpus Chisocheton Chisocheton lasiocarpus \N \N \N \N \N 54474 \N genus Zingeria \N \N \N \N \N 54475 A.ellisii Allium Allium ellisii \N \N \N \N \N 54476 D.birmanica Dioscorea Dioscorea birmanica \N \N \N \N \N 54477 G.macarenensis Gustavia Gustavia macarenensis \N \N \N \N \N 54478 B.tenuicaulis Bistorta Bistorta tenuicaulis \N \N \N \N \N 54479 R.phoenicolasius Rubus Rubus phoenicolasius Japanese wineberry,duo xian xuan gou zi,wine raspberry \N \N \N \N 54480 \N genus Tylecodon \N \N \N \N \N 54481 A.palustris Artemisia Artemisia palustris \N \N \N \N \N 54482 L.microphyllus Lysionotus Lysionotus microphyllus \N \N \N \N \N 54483 C.palmicida Clusia Clusia palmicida \N \N \N \N \N 54484 G.carmenicola Galium Galium carmenicola \N \N \N \N \N 54485 D.tetraphylla Deplanchea Deplanchea tetraphylla \N \N \N \N \N 54486 X.sp. x Tritordeum x Tritordeum sp. \N \N \N \N \N 54487 P.montana Pristiglottis Pristiglottis montana \N \N \N \N \N 54488 C.attenuata Conyza Conyza attenuata \N \N \N \N \N 54489 V.dichotoma Vassobia Vassobia dichotoma \N \N \N \N \N 54490 \N genus Sesbania \N \N \N \N \N 54491 V.baccifera Vismia Vismia baccifera \N \N \N \N \N 54492 C.congolensis Cyttaranthus Cyttaranthus congolensis \N \N \N \N \N 54493 C.silvicola Ceratostema Ceratostema silvicola \N \N \N \N \N 54494 C.dysocarpum Cyphostemma Cyphostemma dysocarpum \N \N \N \N \N 54495 P.maculata Polystachya Polystachya maculata \N \N \N \N \N 54496 H.maraisii Haworthia Haworthia maraisii \N \N \N \N \N 54497 \N varietas Pediomelum hypogaeum var. subulatum \N \N \N \N \N 54498 S.occidentalis Salvia Salvia occidentalis \N \N \N \N \N 54499 M.hirsutissima Mimosa Mimosa hirsutissima \N \N \N \N \N 54500 L.synandra Lissanthe Lissanthe synandra \N \N \N \N \N 54501 D.candida Dalea Dalea candida \N \N \N \N \N 54502 R.obtusiflora Rauvolfia Rauvolfia obtusiflora \N \N \N \N \N 54503 A.setacea Aristida Aristida setacea \N \N \N \N \N 54504 I.arguta Impatiens Impatiens arguta \N \N \N \N \N 54505 E.seguieriana Euphorbia Euphorbia seguieriana \N \N \N \N \N 54506 P.globosa Parashorea Parashorea globosa \N \N \N \N \N 54507 H.ovata Howelliella Howelliella ovata \N \N \N \N \N 54508 \N genus Tresanthera \N \N \N \N \N 54509 T.JS5103 unclassified Taraxacum Taraxacum (sect. Calanthodia/Mongolica) sp. JS5103 \N \N \N \N \N 54510 \N genus Siamanthus \N \N \N \N \N 54511 R.beddomei Rauvolfia Rauvolfia beddomei \N \N \N \N \N 54512 L.EBK-2007d Lobelia Lobelia sp. EBK-2007d \N \N \N \N \N 54513 \N genus Hypselodelphys \N \N \N \N \N 54514 E.leptopus Erica Erica leptopus \N \N \N \N \N 54515 S.endopogon Solanum Solanum endopogon \N \N \N \N \N 54516 A.patagonica Alstroemeria Alstroemeria patagonica \N \N \N \N \N 54517 P.portula Peplis Peplis portula \N \N \N \N \N 54518 S.anisatum Syzygium Syzygium anisatum \N \N \N \N \N 54519 T.562 Tovomita Tovomita sp. Vormisto 562 \N \N \N \N \N 54520 G.longifolium Gloeospermum Gloeospermum longifolium \N \N \N \N \N 54521 P.leonardii Penstemon Penstemon leonardii \N \N \N \N \N 54522 S.arguta Scrophularia Scrophularia arguta \N \N \N \N \N 54523 M.longifolia Morina Morina longifolia \N \N \N \N \N 54524 C.tosaense Chrysosplenium Chrysosplenium tosaense \N \N \N \N \N 54525 C.lambertiana Carex Carex lambertiana \N \N \N \N \N 54526 U.zeylanicum Urophyllum Urophyllum zeylanicum \N \N \N \N \N 54527 S.leucophylla Sarracenia Sarracenia leucophylla crimson pitcherplant \N \N \N \N 54528 P.rupestris Psathyrostachys Psathyrostachys rupestris \N \N \N \N \N 54529 \N subspecies Carex marina subsp. marina \N \N \N \N \N 54530 C.magdalenae Croton Croton magdalenae \N \N \N \N \N 54531 C.gilbertii Camellia Camellia gilbertii \N \N \N \N \N 54532 D.confinis Dimocarpus Dimocarpus confinis \N \N \N \N \N 54533 B.gibraltaricum Bupleurum Bupleurum gibraltaricum \N \N \N \N \N 54534 P.villosa Portulaca Portulaca villosa \N \N \N \N \N 54535 \N varietas Virectaria herbacoursi var. petrophila \N \N \N \N \N 54536 G.florida Genista Genista florida \N \N \N \N \N 54537 S.pungens Scleranthus Scleranthus pungens \N \N \N \N \N 54538 M.2817 Maxillaria Maxillaria aff. tubercularis Whitten 2817 \N \N \N \N \N 54539 O.661 Orobanche Orobanche cf. oxyloba Albach 661 \N \N \N \N \N 54540 C.3682 Clusia Clusia sp. JA 3682 \N \N \N \N \N 54541 S.SH-2010 Sphaerocoryne Sphaerocoryne sp. SH-2010 \N \N \N \N \N 54542 C.s.n. Cattleya Cattleya sp. Schoenbrunn s.n. \N \N \N \N \N 54543 S.seemannianum Syzygium Syzygium seemannianum \N \N \N \N \N 54544 \N subspecies Asperula glomerata subsp. turcomanica \N \N \N \N \N 54545 V.uliginosum Vaccinium Vaccinium uliginosum bog bilberry,bog blueberry \N \N \N \N 54546 P.81889 Phyllanthus Phyllanthus sp. Gutierrez et al. 81889 \N \N \N \N \N 54547 I.chalcantha Isoplexis Isoplexis chalcantha \N \N \N \N \N 54548 P.oertendahlii Plectranthus Plectranthus oertendahlii \N \N \N \N \N 54549 \N genus Cladanthus \N \N \N \N \N 54550 \N subtribe Plectocomiinae \N \N \N \N \N 54551 L.LM499 unclassified Liliopsida Liliopsida sp. LM499 \N \N \N \N \N 54552 C.ceylanica Cullenia Cullenia ceylanica \N \N \N \N \N 54553 \N genus Paracaleana \N \N \N \N \N 54554 E.juttae Euphorbia Euphorbia juttae \N \N \N \N \N 54555 M.transmorrisonensis Miscanthus Miscanthus transmorrisonensis \N \N \N \N \N 54556 A.crotalariae Astragalus Astragalus crotalariae \N \N \N \N \N 54557 T.spruneriana Trigonella Trigonella spruneriana \N \N \N \N \N 54558 I.cytisoides Indigofera Indigofera cytisoides \N \N \N \N \N 54559 P.simulans Parasponia Parasponia simulans \N \N \N \N \N 54560 R.tashiroi Rhododendron Rhododendron tashiroi \N \N \N \N \N 54561 C.capitellata Carpha Carpha capitellata \N \N \N \N \N 54562 \N genus Cyphostemma \N \N \N \N \N 54563 A.HWBG Aptosimum Aptosimum sp. DePamphilis HWBG \N \N \N \N \N 54564 \N genus Kjellbergiodendron \N \N \N \N \N 54565 P.erecta Pimelea Pimelea erecta \N \N \N \N \N 54566 \N varietas Ptilotus exaltatus var. villosus \N \N \N \N \N 54567 M.tenella Muhlenbergia Muhlenbergia tenella \N \N \N \N \N 54568 H.stelligerum Hieracium Hieracium stelligerum \N \N \N \N \N 54569 I.decora Iris Iris decora \N \N \N \N \N 54570 S.amplum Sorghum Sorghum amplum \N \N \N \N \N 54571 G.184 Greigia Greigia sp. RSJ 184 \N \N \N \N \N 54572 V.hyaeniscyamus Vicia Vicia hyaeniscyamus \N \N \N \N \N 54573 P.vellosoi Piper Piper vellosoi \N \N \N \N \N 54574 \N genus Suregada \N \N \N \N \N 54575 R.ceramica Rhopaloblaste Rhopaloblaste ceramica \N \N \N \N \N 54576 L.lewisii Linum Linum lewisii \N \N \N \N \N 54577 T.marginata Trichopilia Trichopilia marginata \N \N \N \N \N 54578 \N subspecies Clerodendrum cephalanthum subsp. montanum \N \N \N \N \N 54579 \N subspecies Teucrium scorodonia subsp. baeticum \N \N \N \N \N 54580 R.auricomus Ranunculus Ranunculus auricomus \N \N \N \N \N 54581 S.austromexicana Symplocos Symplocos austromexicana \N \N \N \N \N 54582 W.squamulosa Weddellina Weddellina squamulosa \N \N \N \N \N 54583 \N genus Sindechites \N \N \N \N \N 54584 M.leptoclada Metagentiana Metagentiana leptoclada \N \N \N \N \N 54585 E.excelsum Euryodendron Euryodendron excelsum \N \N \N \N \N 54586 P.mentiens Petalochilus Petalochilus mentiens \N \N \N \N \N 54587 P.lazorii Philodendron Philodendron lazorii \N \N \N \N \N 54588 O.howeyi Opuntia Opuntia howeyi \N \N \N \N \N 54589 \N varietas Gentiana rubicunda var. rubicunda \N \N \N \N \N 54590 \N genus Marasmodes \N \N \N \N \N 54591 K.inundata Klarobelia Klarobelia inundata \N \N \N \N \N 54592 B.guianensis Bertiera Bertiera guianensis \N \N \N \N \N 54593 M.NSW713871 Meeboldina Meeboldina sp. NSW713871 \N \N \N \N \N 54594 C.91282 Cyrtochilum Cyrtochilum sp. Whitten 91282 \N \N \N \N \N 54595 C.kinokuni Citrus Citrus kinokuni \N \N \N \N \N 54596 \N genus Lembocarpus \N \N \N \N \N 54597 A.multiflora Aerides Aerides multiflora \N \N \N \N \N 54598 D.calcar-equitis Delphinium Delphinium calcar-equitis \N \N \N \N \N 54599 T.prodigiosa Tillandsia Tillandsia prodigiosa \N \N \N \N \N 54600 P.cachemiriana Primula Primula cachemiriana \N \N \N \N \N 54601 P.cubeba Piper Piper cubeba \N \N \N \N \N 54602 C.11072 Annesorhiza clade incertae sedis cf. Chamarea sp. Goldblatt 11072 \N \N \N \N \N 54603 E.catipes Ewartia Ewartia catipes \N \N \N \N \N 54604 B.roraimae Bonnetia Bonnetia roraimae \N \N \N \N \N 54605 C.rupestris Cardamine Cardamine rupestris \N \N \N \N \N 54606 C.kivuensis Coffea Coffea kivuensis \N \N \N \N \N 54607 H.schinzii Hibiscus Hibiscus schinzii \N \N \N \N \N 54608 H.disjuncta Hohenbergia Hohenbergia disjuncta \N \N \N \N \N 54609 A.fruticosa Adenia Adenia fruticosa \N \N \N \N \N 66655 \N genus Stemonoporus \N \N \N \N \N 54610 C.meghrica Cousinia Cousinia meghrica \N \N \N \N \N 54611 T.3080 Tarenna Tarenna sp. Davis 3080 \N \N \N \N \N 54612 L.vulgare Leucanthemum Leucanthemum vulgare \N \N \N \N \N 54613 R.bungei Rochelia Rochelia bungei \N \N \N \N \N 54614 \N genus Dendrocalamopsis \N \N \N \N \N 54615 L.fargesii Lilium Lilium fargesii \N \N \N \N \N 54616 C.baileyi Cyrtandra Cyrtandra baileyi \N \N \N \N \N 54617 M.geometrizans Myrtillocactus Myrtillocactus geometrizans \N \N \N \N \N 54618 A.pauciflorus Almutaster Almutaster pauciflorus \N \N \N \N \N 54619 M.maritima Myosotis Myosotis maritima \N \N \N \N \N 54620 C.byzantinum Colchicum Colchicum x byzantinum \N \N \N \N \N 54621 B.preissii Brachyloma Brachyloma preissii \N \N \N \N \N 54622 S.amara Saussurea Saussurea amara \N \N \N \N \N 54623 M.kachirachirai Magnolia Magnolia kachirachirai \N \N \N \N \N 54624 E.orthocarpa Eysenhardtia Eysenhardtia orthocarpa \N \N \N \N \N 54625 S.luquanensis Swertia Swertia luquanensis \N \N \N \N \N 54626 S.mexicana Swartzia Swartzia mexicana \N \N \N \N \N 54627 D.subcordata Delissea Delissea subcordata \N \N \N \N \N 54628 P.crassipes Pericalymma Pericalymma crassipes \N \N \N \N \N 54629 P.hookeriana Pleione Pleione chunii x Pleione hookeriana \N \N \N \N \N 54630 M.odorata Morrenia Morrenia odorata \N \N \N \N \N 54631 T.insignis Thamnochortus Thamnochortus insignis \N \N \N \N \N 54632 \N genus Chelonistele \N \N \N \N \N 54633 \N subspecies Tephroseris flammea subsp. glabrifolia \N \N \N \N \N 54634 A.neurocarpa Astrocasia Astrocasia neurocarpa \N \N \N \N \N 54635 \N subspecies Onosma echioides subsp. angustifolia \N \N \N \N \N 54636 E.nervata Erica Erica nervata \N \N \N \N \N 54637 M.pyrenea Mimosa Mimosa pyrenea \N \N \N \N \N 54638 L.flagellare Lythrum Lythrum flagellare \N \N \N \N \N 54639 E.insulare Epilobium Epilobium insulare \N \N \N \N \N 54640 N.formosissima Nasa Nasa formosissima \N \N \N \N \N 54641 C.jagus Crinum Crinum jagus \N \N \N \N \N 54643 A.cordatum Acer Acer cordatum \N \N \N \N \N 54644 \N genus Monotrema \N \N \N \N \N 54645 G.dahuricum Geranium Geranium dahuricum \N \N \N \N \N 54646 B.wenshanensis Begonia Begonia wenshanensis \N \N \N \N \N 54647 P.lucida Photinia Photinia lucida \N \N \N \N \N 54648 A.purpurea Archontophoenix Archontophoenix purpurea \N \N \N \N \N 54649 P.purpurea Pimpinella Pimpinella purpurea \N \N \N \N \N 54650 A.ramosissimum Acanthorrhinum Acanthorrhinum ramosissimum \N \N \N \N \N 54651 C.tatei Commersonia Commersonia tatei \N \N \N \N \N 54652 A.bicolor Acaciella Acaciella bicolor \N \N \N \N \N 54653 S.claviflorum Syzygium Syzygium claviflorum \N \N \N \N \N 54654 V.glutinosa Vriesea Vriesea glutinosa \N \N \N \N \N 54655 \N genus Dudleya \N \N \N \N \N 54656 O.arnoldii Ophrys Ophrys arnoldii \N \N \N \N \N 54657 D.wislizeni Dimorphocarpa Dimorphocarpa wislizeni spectacle-pod,tourist-plant \N \N \N \N 54658 C.hirsutus Cynodon Cynodon hirsutus \N \N \N \N \N 54659 S.lyallii Stilbocarpa Stilbocarpa lyallii \N \N \N \N \N 54660 \N varietas Veratrum nigrum var. ussuriense \N \N \N \N \N 54661 G.sawtehii Goniothalamus Goniothalamus sawtehii \N \N \N \N \N 54662 R.montanus Ranunculus Ranunculus montanus \N \N \N \N \N 54663 M.guaranitica Mimosa Mimosa guaranitica \N \N \N \N \N 54664 A.angulata Alcea Alcea angulata \N \N \N \N \N 54665 S.platycarpa Solms-laubachia Solms-laubachia platycarpa \N \N \N \N \N 54666 B.ariza Brownea Brownea ariza \N \N \N \N \N 54667 P.himalayana Parthenocissus Parthenocissus himalayana \N \N \N \N \N 54668 G.acreana Guettarda Guettarda acreana \N \N \N \N \N 54669 P.fulgidus Paepalanthus Paepalanthus fulgidus \N \N \N \N \N 54670 V.gracilis Vigna Vigna gracilis \N \N \N \N \N 54671 P.coeruleum Platostoma Platostoma coeruleum \N \N \N \N \N 54672 H.chihuahuense Halimium Halimium chihuahuense \N \N \N \N \N 54673 T.stenophyllus Tragopogon Tragopogon stenophyllus \N \N \N \N \N 54674 L.acicularis Lindernia Lindernia acicularis \N \N \N \N \N 54675 E.multisetus Elymus Elymus multisetus \N \N \N \N \N 54676 S.3a Salicornia Salicornia aff. perennans Wucherer 3a \N \N \N \N \N 54677 M.cuneata Miliusa Miliusa cuneata \N \N \N \N \N 54678 A.benguellense Amphiasma Amphiasma benguellense \N \N \N \N \N 54679 A.zebdanense Allium Allium zebdanense \N \N \N \N \N 54680 U.cucullata Utricularia Utricularia cucullata \N \N \N \N \N 54681 I.longipetala Iris Iris longipetala \N \N \N \N \N 54682 S.s.n. Stenia Stenia aff. wendiae Whitten s.n. \N \N \N \N \N 54683 C.humifructus Cucumis Cucumis humifructus \N \N \N \N \N 54684 C.taygetica Crepis Crepis taygetica \N \N \N \N \N 54685 D.vulgaris Dracunculus Dracunculus vulgaris \N \N \N \N \N 54686 \N genus Kalbreyeriella \N \N \N \N \N 54687 R.sprucei Rauvolfia Rauvolfia sprucei \N \N \N \N \N 54688 V.melanops Vicia Vicia melanops \N \N \N \N \N 54689 M.densiflora Macaranga Macaranga densiflora \N \N \N \N \N 54690 G.cuneifolia Gesneria Gesneria cuneifolia \N \N \N \N \N 54691 \N varietas Pieris japonica var. yakushimensis \N \N \N \N \N 54692 S.calycina Swertia Swertia calycina \N \N \N \N \N 54693 \N genus Haldina \N \N \N \N \N 54694 E.makinoi Euphorbia Euphorbia makinoi \N \N \N \N \N 54695 M.formosa Mammillaria Mammillaria formosa \N \N \N \N \N 54696 D.fallax Drypetes Drypetes fallax \N \N \N \N \N 54697 C.zardkuhensis Cousinia Cousinia zardkuhensis \N \N \N \N \N 54698 C.album Canarium Canarium album Chinese white-olive \N \N \N \N 54699 \N genus Leonis \N \N \N \N \N 54700 B.s.n. Bulbophyllum Bulbophyllum aff. atropurpureum Menini s.n. \N \N \N \N \N 54701 S.ramosum Sphaerocardamum Sphaerocardamum ramosum \N \N \N \N \N 54702 R.micrantha Rauvolfia Rauvolfia micrantha \N \N \N \N \N 54703 A.recurva Aspalathus Aspalathus recurva \N \N \N \N \N 54704 H.spicatum Hedychium Hedychium spicatum \N \N \N \N \N 54705 F.baetica Festuca Festuca baetica \N \N \N \N \N 54706 R.islandica Rorippa Rorippa islandica \N \N \N \N \N 54707 S.maculatus Scolymus Scolymus maculatus \N \N \N \N \N 54709 C.elegans Cymbidium Cymbidium elegans \N \N \N \N \N 54710 \N genus Artemisiella \N \N \N \N \N 54711 A.spicata Alyxia Alyxia spicata \N \N \N \N \N 54712 \N genus Monotagma \N \N \N \N \N 54713 A.pentaphyllum Acer Acer pentaphyllum \N \N \N \N \N 54714 C.colensoi Chaerophyllum Chaerophyllum colensoi \N \N \N \N \N 54715 S.brachycalyx Symphytum Symphytum brachycalyx \N \N \N \N \N 54716 P.fragrans Petasites Petasites fragrans \N \N \N \N \N 54717 B.petasitifolia Begonia Begonia petasitifolia \N \N \N \N \N 54718 H.12729 Heppiella Heppiella sp. Stewart 12729 \N \N \N \N \N 54719 E.bracteolaris Erica Erica bracteolaris \N \N \N \N \N 54720 \N genus Rhapidophyllum \N \N \N \N \N 54721 T.purpurea Triplasis Triplasis purpurea \N \N \N \N \N 54722 D.pilifera Drymonia Drymonia pilifera \N \N \N \N \N 54723 L.minutifolium Lycium Lycium minutifolium \N \N \N \N \N 54724 P.glandulosus Penstemon Penstemon glandulosus \N \N \N \N \N 54725 H.integrifolius Helinus Helinus integrifolius \N \N \N \N \N 54726 \N subspecies Veronica spicata subsp. lanisepala \N \N \N \N \N 54727 A.urvilleana Anthemis Anthemis urvilleana \N \N \N \N \N 54728 B.liuyanii Begonia Begonia liuyanii \N \N \N \N \N 54729 I.brevicaulis Iris Iris brevicaulis \N \N \N \N \N 54730 C.catenata Cojoba Cojoba catenata \N \N \N \N \N 54731 L.IP-2011 Liparis Liparis sp. IP-2011 \N \N \N \N \N 54732 E.woodsonianus Echites Echites woodsonianus \N \N \N \N \N 54733 I.integerrima Ilex Ilex integerrima \N \N \N \N \N 54734 O.pilosa Orcuttia Orcuttia pilosa \N \N \N \N \N 54735 P.chrysanthes Pycnosorus Pycnosorus chrysanthes \N \N \N \N \N 54736 \N varietas Penstemon rydbergii var. oreocharis \N \N \N \N \N 54737 G.rigidulum Giliastrum Giliastrum rigidulum \N \N \N \N \N 54738 A.petersonii Aristida Aristida petersonii \N \N \N \N \N 54739 C.ulei Codonanthopsis Codonanthopsis ulei \N \N \N \N \N 54740 R.longicuspis Rosa Rosa longicuspis \N \N \N \N \N 54742 S.laxissimum Solanum Solanum laxissimum \N \N \N \N \N 54743 P.aphylla Pyrola Pyrola aphylla \N \N \N \N \N 54744 A.laetus Armatocereus Armatocereus laetus \N \N \N \N \N 54745 A.wilcoxiana Acronychia Acronychia wilcoxiana \N \N \N \N \N 54746 \N genus Ethulia \N \N \N \N \N 54747 \N subspecies Gagea bohemica subsp. saxatilis \N \N \N \N \N 54748 S.khamiesbergsis Stapeliopsis Stapeliopsis khamiesbergsis \N \N \N \N \N 54749 \N subspecies Agave striata subsp. striata \N \N \N \N \N 54750 \N genus Chrysitrix \N \N \N \N \N 54751 C.manombensis Coffea Coffea manombensis \N \N \N \N \N 54752 H.SK-2009a Hydrobryum Hydrobryum sp. SK-2009a \N \N \N \N \N 54753 H.seemannii Hydrangea Hydrangea seemannii \N \N \N \N \N 54754 Q.serrata Quercus Quercus serrata \N \N \N \N \N 54755 C.insculptum Cyrtochilum Cyrtochilum insculptum \N \N \N \N \N 54756 H.JHP-2008 Heracleum Heracleum sp. JHP-2008 \N \N \N \N \N 54757 \N genus Pseudoroegneria \N \N \N \N \N 54758 E.plukenetii Erica Erica plukenetii \N \N \N \N \N 54759 B.verecunda Begonia Begonia verecunda \N \N \N \N \N 54760 \N varietas Claytonia lanceolata var. lanceolata \N \N \N \N \N 54761 S.racemosus Sauropus Sauropus racemosus \N \N \N \N \N 54762 \N genus Parasponia \N \N \N \N \N 54763 C.smirnowii Cousinia Cousinia smirnowii \N \N \N \N \N 54764 M.salicifolia Morella Morella salicifolia \N \N \N \N \N 54765 C.collina Corymbia Corymbia collina \N \N \N \N \N 54766 J.guillermo-guerrae Jaltomata Jaltomata guillermo-guerrae \N \N \N \N \N 54767 L.felis Lepanthes Lepanthes felis \N \N \N \N \N 54768 C.australasicum Canarium Canarium australasicum \N \N \N \N \N 54769 M.myriantha Meliosma Meliosma myriantha \N \N \N \N \N 54770 G.emiliae Gladiolus Gladiolus emiliae \N \N \N \N \N 54771 A.scabridus Anisocarpus Anisocarpus scabridus \N \N \N \N \N 54772 R.aquatilis Ranunculus Ranunculus aquatilis \N \N \N \N \N 54773 \N genus Spatholobus \N \N \N \N \N 54774 \N genus Magodendron \N \N \N \N \N 54775 \N genus Antheroporum \N \N \N \N \N 54776 S.dolichostachya Salicornia Salicornia dolichostachya \N \N \N \N \N 54777 S.catombelense Solanum Solanum catombelense \N \N \N \N \N 54778 W.chirripoensis Westoniella Westoniella chirripoensis \N \N \N \N \N 54779 R.fruticosus Rubus Rubus fruticosus shrubby blackberry \N \N \N \N 54780 A.turbith Athamanta Athamanta turbith \N \N \N \N \N 54781 M.nudiflora Murdannia Murdannia nudiflora \N \N \N \N \N 54782 C.elegans Cestrum Cestrum elegans \N \N \N \N \N 54783 \N genus Vanasushava \N \N \N \N \N 54784 M.globosum Monotropastrum Monotropastrum globosum \N \N \N \N \N 54785 D.cryptopoda Drimia Drimia cryptopoda \N \N \N \N \N 54786 \N genus Pisonia \N \N \N \N \N 54787 \N subspecies Ceroxylon alpinum subsp. ecuadorense \N \N \N \N \N 54788 I.TP-2009 Inga Inga sp. 58 TP-2009 \N \N \N \N \N 54789 D.sanguinolentum Dendrobium Dendrobium sanguinolentum \N \N \N \N \N 54790 \N family Ochnaceae \N \N \N \N \N 54791 \N genus Olsynium \N \N \N \N \N 54792 C.pascuorum Cuphea Cuphea pascuorum \N \N \N \N \N 54793 S.retusus Stachyurus Stachyurus retusus \N \N \N \N \N 54794 L.roughii Lobelia Lobelia roughii \N \N \N \N \N 54795 S.portoricensis Styrax Styrax portoricensis \N \N \N \N \N 54796 E.exilis Eucalyptus Eucalyptus exilis \N \N \N \N \N 54797 S.diegensis Stephanomeria Stephanomeria diegensis \N \N \N \N \N 54798 A.collina Achillea millefolium complex Achillea setacea x Achillea collina \N \N \N \N \N 54799 S.afromontanus Sonchus Sonchus afromontanus \N \N \N \N \N 54800 G.lobatus Gerrardanthus Gerrardanthus lobatus \N \N \N \N \N 54801 C.1726 Cyrtochilum Cyrtochilum sp. Whitten 1726 \N \N \N \N \N 54802 C.snijmaniae Chamarea Chamarea snijmaniae \N \N \N \N \N 54803 P.altissima Picris Picris altissima \N \N \N \N \N 54804 A.colorata Alchemilla Alchemilla colorata \N \N \N \N \N 54805 \N genus Stillingia \N \N \N \N \N 54806 S.sambiranensis Sansevieria Sansevieria sambiranensis \N \N \N \N \N 54807 R.cabrerensis Ranunculus Ranunculus cabrerensis \N \N \N \N \N 54808 \N subspecies Echidnopsis sharpei subsp. sharpei \N \N \N \N \N 54809 M.glaucovirens Moehringia Moehringia glaucovirens \N \N \N \N \N 54810 R.wardii Roscoea Roscoea wardii \N \N \N \N \N 54811 U.parvifolia Ulmus Ulmus parvifolia Chinese elm,lacebark,leatherleaf elm \N \N \N \N 54812 W.435 Weinmannia Weinmannia sp. Bradford 435 \N \N \N \N \N 54813 C.raddeana Campanula Campanula raddeana \N \N \N \N \N 54814 A.CD-2009 Artemisia Artemisia sp. CD-2009 \N \N \N \N \N 54815 S.grandifolia Satyria Satyria grandifolia \N \N \N \N \N 54816 H.montevidensis Herreria Herreria montevidensis \N \N \N \N \N 54817 D.martirensis Deinandra Deinandra martirensis \N \N \N \N \N 54818 \N varietas Bystropogon origanifolius var. palmensis \N \N \N \N \N 54819 P.maritimum Peplidium Peplidium maritimum \N \N \N \N \N 54820 \N genus Biophytum \N \N \N \N \N 54821 \N genus Bussea \N \N \N \N \N 54822 P.lindenii Philodendron Philodendron lindenii \N \N \N \N \N 54823 Q.aliena Quercus Quercus aliena \N \N \N \N \N 54824 D.ovatum Disterigma Disterigma ovatum \N \N \N \N \N 54825 N.sandwicensis Nestegis Nestegis sandwicensis \N \N \N \N \N 54826 I.cholulensis Ipomoea Ipomoea cholulensis \N \N \N \N \N 54827 \N subspecies Asteriscus daltonii subsp. vogelii \N \N \N \N \N 54828 B.alleizettei Bulbophyllum Bulbophyllum alleizettei \N \N \N \N \N 54829 C.hintonii Coursetia Coursetia hintonii \N \N \N \N \N 54830 C.interior Carex Carex interior \N \N \N \N \N 54831 A.argentea Arnaldoa Arnaldoa argentea \N \N \N \N \N 54832 A.bellidifolium Anarrhinum Anarrhinum bellidifolium \N \N \N \N \N 54833 H.cryptonaevum Hieracium Hieracium cryptonaevum \N \N \N \N \N 54834 P.hatschbachii Passiflora Passiflora hatschbachii \N \N \N \N \N 54835 M.ramboi Mimosa Mimosa ramboi \N \N \N \N \N 54836 C.aequatorialis Centropogon Centropogon aequatorialis \N \N \N \N \N 54837 S.4988 Senna Senna cf. velutina Morrone and Belgrano 4988 \N \N \N \N \N 54838 \N genus Tricalysia \N \N \N \N \N 64928 \N genus Veltheimia \N \N \N \N \N 54839 A.stanfordiana Arctostaphylos Arctostaphylos stanfordiana \N \N \N \N \N 54840 M.texana Muhlenbergia Muhlenbergia texana \N \N \N \N \N 54841 L.pentapetala Lysimachia Lysimachia pentapetala \N \N \N \N \N 54842 C.214 Cliffortia Cliffortia cf. glauca Whitehouse 214 \N \N \N \N \N 54843 A.purpurea Arabis Arabis purpurea \N \N \N \N \N 54844 P.cucullatum Pelargonium Pelargonium cucullatum \N \N \N \N \N 54845 C.635 Cremastosperma Cremastosperma sp. Graham 635 \N \N \N \N \N 54846 A.hissaricum Allium Allium hissaricum \N \N \N \N \N 54847 H.grandidieri Harpagophytum Harpagophytum grandidieri \N \N \N \N \N 54848 \N subspecies Crocus pallasii subsp. dispathaceus \N \N \N \N \N 54849 P.floribunda Pieris Pieris floribunda mountain andromeda \N \N \N \N 54850 L.bakerianum Lilium Lilium bakerianum \N \N \N \N \N 54851 T.medium Trifolium Trifolium medium \N \N \N \N \N 54852 C.Euro1 Cakile Cakile sp. Euro1 \N \N \N \N \N 54853 E.glossophyllum Eryngium Eryngium glossophyllum \N \N \N \N \N 54854 \N genus Argyreia \N \N \N \N \N 54855 S.arenarium Sisyrinchium Sisyrinchium arenarium \N \N \N \N \N 54856 C.congregatus Coreocarpus Coreocarpus congregatus \N \N \N \N \N 54857 P.inexspectata Phelipanche Phelipanche inexspectata \N \N \N \N \N 54858 A.connatum Aspidoglossum Aspidoglossum connatum \N \N \N \N \N 54859 O.europaea Oxalis Oxalis europaea \N \N \N \N \N 54860 L.minuta Lemna Lemna minuta \N \N \N \N \N 54861 \N varietas Actephila excelsa var. javanica \N \N \N \N \N 54862 L.glomerata Lepechinia Lepechinia glomerata \N \N \N \N \N 54863 \N tribe Oligarrheneae \N \N \N \N \N 54864 A.altaica Atriplex Atriplex altaica \N \N \N \N \N 54865 L.ambigua Lebeckia Lebeckia ambigua \N \N \N \N \N 54866 B.tenellum Bothriospermum Bothriospermum tenellum \N \N \N \N \N 54867 C.hellespontica Consolida Consolida hellespontica \N \N \N \N \N 54868 D.pyrenaicus Dianthus Dianthus pyrenaicus \N \N \N \N \N 54869 M.yoroconte Magnolia Magnolia yoroconte \N \N \N \N \N 54870 A.haeckeliana Aptenia Aptenia haeckeliana \N \N \N \N \N 54871 A.vaginatus Alopecurus Alopecurus vaginatus \N \N \N \N \N 54872 A.hybridum Abutilon Abutilon x hybridum Chinese-lantern \N \N \N \N 54873 G.prolifera Glia Glia prolifera \N \N \N \N \N 54874 B.repens Barleria Barleria repens \N \N \N \N \N 54875 \N genus Iryanthera \N \N \N \N \N 54876 \N subspecies Ononis sicula subsp. sicula \N \N \N \N \N 54877 A.glaucum Asteriscium Asteriscium glaucum \N \N \N \N \N 54878 H.vulcanicum Hypericum Hypericum vulcanicum \N \N \N \N \N 54879 \N genus Griffonia \N \N \N \N \N 54880 A.aporoides Angraecum Angraecum aporoides \N \N \N \N \N 54881 F.pachyrrhachis Ficus Ficus pachyrrhachis \N \N \N \N \N 54882 \N varietas Allium atrosanguineum var. fedtschenkoanum \N \N \N \N \N 54883 X.MBG Xyris Xyris sp. 2000-0096 MBG \N \N \N \N \N 54884 A.forsteroides Abrotanella Abrotanella forsteroides \N \N \N \N \N 54885 S.digynum Sclerolinon Sclerolinon digynum \N \N \N \N \N 54886 S.nobilis Sanchezia Sanchezia nobilis \N \N \N \N \N 54887 C.spinosior Cylindropuntia Cylindropuntia spinosior \N \N \N \N \N 54888 C.MVSP-2007 Carissa Carissa sp. MVSP-2007 \N \N \N \N \N 54889 L.grandis Leonotis Leonotis grandis \N \N \N \N \N 54890 P.semibarbata Pedicularis Pedicularis semibarbata \N \N \N \N \N 54891 C.libera Carex Carex libera \N \N \N \N \N 54892 B.leonensis Baissea Baissea leonensis \N \N \N \N \N 54893 S.chocoana Sabicea Sabicea chocoana \N \N \N \N \N 54894 D.gracillimum Dipcadi Dipcadi gracillimum \N \N \N \N \N 54895 P.velutina Pentaschistis Pentameris velutina \N \N \N \N \N 54896 V.ferruginea Vitex Vitex ferruginea \N \N \N \N \N 54897 P.franklinii Phacelia Phacelia franklinii \N \N \N \N \N 54898 D.zombica Disa Disa zombica \N \N \N \N \N 54899 A.villosa Ardisia Ardisia villosa \N \N \N \N \N 54900 R.alaternoides Rondeletia Rondeletia alaternoides \N \N \N \N \N 54901 V.solanacea Vallaris Vallaris solanacea \N \N \N \N \N 54902 M.3165 Maxillaria Maxillaria cf. disticha Whitten 3165 \N \N \N \N \N 54903 M.cedralensis Maxillaria Maxillaria cedralensis \N \N \N \N \N 67527 \N genus Rytigynia \N \N \N \N \N 54904 \N subspecies Disperis bolusiana subsp. macrocorys \N \N \N \N \N 54905 N.angustifolia Nierembergia Nierembergia angustifolia \N \N \N \N \N 54906 \N subspecies Laserpitium eliasii subsp. thalictrifolium \N \N \N \N \N 54907 A.nevadensis Arenaria Arenaria nevadensis \N \N \N \N \N 54908 F.hesperidiiformis Ficus Ficus hesperidiiformis \N \N \N \N \N 54909 \N genus Rhinacanthus \N \N \N \N \N 54910 P.paucifolia Polygala Polygala paucifolia fringed milkwort,gaywings \N \N \N \N 54911 A.affinis Aniba Aniba affinis \N \N \N \N \N 54912 O.endocharis Oncidium Oncidium endocharis \N \N \N \N \N 54913 \N varietas Mimosa menabeensis var. menabeensis \N \N \N \N \N 54914 C.prolifer Cyperus Cyperus prolifer \N \N \N \N \N 54915 S.kennedyana Sabatia Sabatia kennedyana \N \N \N \N \N 54916 P.comosa Phelline Phelline comosa \N \N \N \N \N 54917 P.sellowii Prunus Prunus sellowii \N \N \N \N \N 54918 \N genus Campsis \N \N \N \N \N 54919 C.nola Cryptandra Cryptandra nola \N \N \N \N \N 54920 \N no rank Dendrobium grex Madame Thong-In \N \N \N \N \N 54921 E.microphylla Epacris Epacris microphylla coral heath \N \N \N \N 54922 C.heterophylla Cliffortia Cliffortia heterophylla \N \N \N \N \N 54923 K.albescens Koeleria Koeleria albescens \N \N \N \N \N 54924 S.sakuensis Salvia Salvia x sakuensis \N \N \N \N \N 54925 G.chinensis Gymnotheca Gymnotheca chinensis \N \N \N \N \N 54926 C.iguanaea Celtis Celtis iguanaea \N \N \N \N \N 54927 I.graminea Iris Iris graminea \N \N \N \N \N 54928 A.hirtifolium Allium Allium hirtifolium \N \N \N \N \N 54929 P.rotundipetalum Pelargonium Pelargonium rotundipetalum \N \N \N \N \N 54930 C.4 Charybdis Charybdis sp. 4 \N \N \N \N \N 54931 \N varietas Oxalis peduncularis var. pilosa \N \N \N \N \N 54932 \N genus Phragmotheca \N \N \N \N \N 54933 \N varietas Nierembergia linariifolia var. pampeana \N \N \N \N \N 54934 H.scorzonerae Hypochaeris Hypochaeris scorzonerae \N \N \N \N \N 54935 F.diversiformis Ficus Ficus diversiformis \N \N \N \N \N 54936 V.rolfei Villaria Villaria rolfei \N \N \N \N \N 54937 \N genus Phycella \N \N \N \N \N 54938 T.pubescens Tropaeolum Tropaeolum pubescens \N \N \N \N \N 54939 C.raphiocephala Cousinia Cousinia raphiocephala \N \N \N \N \N 54940 P.acaulos Protea Protea acaulos \N \N \N \N \N 54941 N.5 Neonauclea Neonauclea sp. 5 \N \N \N \N \N 54942 S.doronicum Senecio Senecio doronicum \N \N \N \N \N 54943 R.australis Rhodamnia Rhodamnia australis tropical ironwood \N \N \N \N 54944 S.stellatus Suberanthus Suberanthus stellatus \N \N \N \N \N 54945 B.variabilis Begonia Begonia variabilis \N \N \N \N \N 54946 O.caerulescens Obtegomeria Obtegomeria caerulescens \N \N \N \N \N 54947 P.fawcettiae Poa Poa fawcettiae \N \N \N \N \N 54948 N.humilis Nolina Nolina humilis \N \N \N \N \N 54949 T.fulvum Toxicodendron Toxicodendron fulvum \N \N \N \N \N 54950 C.serratus Chloranthus Chloranthus serratus \N \N \N \N \N 54951 P.LMP-2002-1 Plagiostachys Plagiostachys sp. LMP-2002-1 \N \N \N \N \N 54952 E.hibbertii Erica Erica hibbertii \N \N \N \N \N 54953 \N genus Maesopsis \N \N \N \N \N 54954 P.schumannii Poecilocalyx Poecilocalyx schumannii \N \N \N \N \N 54955 N.singalana Nepenthes Nepenthes singalana \N \N \N \N \N 54956 L.galactophyllum Lamium Lamium galactophyllum \N \N \N \N \N 54957 M.rosea Myricaria Myricaria rosea \N \N \N \N \N 54958 \N genus Pegaeophyton \N \N \N \N \N 54959 L.fortunei Lysimachia Lysimachia fortunei \N \N \N \N \N 54960 \N varietas Thelesperma filifolium var. intermedium \N \N \N \N \N 54961 O.dentata Oxalis Oxalis dentata \N \N \N \N \N 54962 M.chapensis Michelia Michelia chapensis \N \N \N \N \N 54963 M.pepericarpa Miconia Miconia pepericarpa \N \N \N \N \N 54964 M.nubigena Myrosmodes Myrosmodes nubigena \N \N \N \N \N 54965 A.altissima Ailanthus Ailanthus altissima China-sumac,stinking sumac,tree-of-heaven \N \N \N \N 54966 A.glauca Arctostaphylos Arctostaphylos glauca \N \N \N \N \N 54967 A.celastrina Azara Azara celastrina \N \N \N \N \N 54968 G.wittmackii Guzmania Guzmania wittmackii \N \N \N \N \N 54969 R.altaicus Ranunculus Ranunculus altaicus \N \N \N \N \N 54970 C.pichleri Centaurea Centaurea pichleri \N \N \N \N \N 54971 M.lanceolata Matelea Matelea lanceolata \N \N \N \N \N 54972 A.klamathensis Arctostaphylos Arctostaphylos klamathensis \N \N \N \N \N 54973 \N genus Licuala \N \N \N \N \N 54974 P.aequiglume Piptatherum Piptatherum aequiglume \N \N \N \N \N 54975 A.rhyticarpa Alcea Alcea rhyticarpa \N \N \N \N \N 54976 P.sagenarius Pseudananas Pseudananas sagenarius \N \N \N \N \N 54977 \N genus Adriana \N \N \N \N \N 54978 \N subspecies Carex fuscula subsp. fuscula \N \N \N \N \N 54979 G.weberbaueri Geonoma Geonoma weberbaueri \N \N \N \N \N 54980 L.bonaespei Liparia Liparia bonaespei \N \N \N \N \N 54981 M.platycarpum Myoporum Myoporum platycarpum \N \N \N \N \N 54982 I.h-6 Impatiens Impatiens sp. h-6 \N \N \N \N \N 54983 O.heliophila Oberonia Oberonia heliophila \N \N \N \N \N 54984 A.nipponica Apostasia Apostasia nipponica \N \N \N \N \N 54985 B.geniculata Babiana Babiana geniculata \N \N \N \N \N 54986 O.sp. Oryza Oryza sp. \N \N \N \N \N 54987 \N genus Gyranthera \N \N \N \N \N 54988 M.trianae Miconia Miconia trianae \N \N \N \N \N 54989 \N genus Misodendrum \N \N \N \N \N 54990 B.scabra Briza Briza scabra \N \N \N \N \N 54991 \N varietas Lessingia glandulifera var. peirsonii \N \N \N \N \N 54992 P.peyrierasii Pandanus Pandanus peyrierasii \N \N \N \N \N 54993 B.macintyreana Begonia Begonia macintyreana \N \N \N \N \N 54994 S.panamensis Symplocos Symplocos panamensis \N \N \N \N \N 54995 N.wightii Neonotonia Neonotonia wightii \N \N \N \N \N 54996 P.BAC-2010 unclassified Poaceae Poaceae sp. D BAC-2010 \N \N \N \N \N 54997 H.tropicus Homoranthus Homoranthus tropicus \N \N \N \N \N 54998 \N genus Treichelia \N \N \N \N \N 54999 O.insignis Opsicarpium Opsicarpium insignis \N \N \N \N \N 55000 A.concinnum Arisaema Arisaema concinnum \N \N \N \N \N 55001 T.malabarica Tinospora Tinospora malabarica \N \N \N \N \N 68977 \N genus Leucocasia \N \N \N \N \N 55002 K.simpliciuscula Kobresia Kobresia simpliciuscula \N \N \N \N \N 55003 E.acuminata Eriochloa Eriochloa acuminata \N \N \N \N \N 55004 M.laevis Molineriella Molineriella laevis \N \N \N \N \N 55005 E.mesembryanthemifolia Euphorbia Euphorbia mesembryanthemifolia \N \N \N \N \N 55006 M.bracteatum Monotrema Monotrema bracteatum \N \N \N \N \N 55007 B.1347 Borinda Borinda sp. Stapleton 1347 \N \N \N \N \N 55008 A.decaisneana Allocasuarina Allocasuarina decaisneana \N \N \N \N \N 55009 D.schippii Dendropanax Dendropanax schippii \N \N \N \N \N 55010 W.scutellarioides Warnockia Warnockia scutellarioides \N \N \N \N \N 55011 E.gomphocephala Eucalyptus Eucalyptus gomphocephala \N \N \N \N \N 55012 O.brassicifolia Omphalodes Omphalodes brassicifolia \N \N \N \N \N 55013 C.calolepis Centaurea Centaurea calolepis \N \N \N \N \N 55014 L.blumei Limacia Limacia blumei \N \N \N \N \N 55015 \N genus Trianoptiles \N \N \N \N \N 55016 C.venosa Clavija Clavija venosa \N \N \N \N \N 55017 \N subspecies Androcymbium burchellii subsp. burchellii \N \N \N \N \N 55018 C.austrocaroliniana Carex Carex austrocaroliniana \N \N \N \N \N 55019 H.ellipticus Heterostemon Heterostemon ellipticus \N \N \N \N \N 55020 L.monogynum Linum Linum monogynum \N \N \N \N \N 55021 \N subspecies Deschampsia cespitosa subsp. bottnica \N \N \N \N \N 55022 C.bulbosa Cyphia Cyphia bulbosa \N \N \N \N \N 55023 S.formosissima Sprekelia Sprekelia formosissima Aztec lily,Jacobean lily,St. James lily \N \N \N \N 55024 M.parvifolia Myrceugenia Myrceugenia parvifolia \N \N \N \N \N 55025 \N genus Althaea \N \N \N \N \N 55026 H.iberica Hedera Hedera iberica \N \N \N \N \N 55027 S.suffruticosa Simaba Simaba suffruticosa \N \N \N \N \N 55028 \N varietas Vigna umbellata var. gracilis \N \N \N \N \N 55029 O.retusum Oncidium Oncidium retusum \N \N \N \N \N 55030 O.sonderiana Oxalis Oxalis sonderiana \N \N \N \N \N 55031 \N genus Apodanthera \N \N \N \N \N 55032 \N genus Conomitra \N \N \N \N \N 55033 D.micranthum Disterigma Disterigma micranthum \N \N \N \N \N 55034 N.burbidgeae Nepenthes Nepenthes burbidgeae \N \N \N \N \N 55035 H.rarifolium Halanthium Halanthium rarifolium \N \N \N \N \N 55036 A.uruguayensis Aristida Aristida uruguayensis \N \N \N \N \N 55037 U.resupinata Utricularia Utricularia resupinata lavender bladderwort \N \N \N \N 55038 P.rigida Pedicularis Pedicularis rigida \N \N \N \N \N 55039 B.glabrata Buchnera Buchnera glabrata \N \N \N \N \N 55040 \N genus Spirotheca \N \N \N \N \N 55041 C.australis Chaetanthera Chaetanthera australis \N \N \N \N \N 55042 I.binderi Indigofera Indigofera binderi \N \N \N \N \N 55043 S.grandiflora Solandra Solandra grandiflora \N \N \N \N \N 55044 K.kokonorica Kengyilia Kengyilia kokonorica \N \N \N \N \N 55045 O.inermis Onobrychis Onobrychis inermis \N \N \N \N \N 55046 G.angelensis Gilia Gilia angelensis \N \N \N \N \N 55047 P.loyaltiensis Pachygone Pachygone loyaltiensis \N \N \N \N \N 55048 \N genus Azadirachta \N \N \N \N \N 55049 M.sinuata Mentzelia Mentzelia sinuata \N \N \N \N \N 55050 U.brachyura Urochloa Urochloa brachyura \N \N \N \N \N 55051 C.campestris Castilleja Castilleja campestris \N \N \N \N \N 55052 I.cincinnata Ischyrolepis Ischyrolepis cincinnata \N \N \N \N \N 55053 M.nossibiensis Mimosa Mimosa nossibiensis \N \N \N \N \N 55054 T.mongolicus Thymus Thymus mongolicus \N \N \N \N \N 55055 \N varietas Ourisia breviflora var. breviflora \N \N \N \N \N 55056 I.triloba Ipomoea Ipomoea triloba trilobed morning glory \N \N \N \N 55057 C.kermanense Cicer Cicer kermanense \N \N \N \N \N 55058 D.villosa Dignathia Dignathia villosa \N \N \N \N \N 55059 E.dissectus Erigeron Erigeron dissectus \N \N \N \N \N 55060 S.leptopetala Swartzia Swartzia leptopetala \N \N \N \N \N 55061 I.acuminata Inga Inga acuminata \N \N \N \N \N 55062 P.cryptopetala Portulaca Portulaca cryptopetala \N \N \N \N \N 55063 O.delphinensis Ophrys Ophrys delphinensis \N \N \N \N \N 55064 H.pulvinaris Haastia Haastia pulvinaris \N \N \N \N \N 55065 C.homollei Coffea Coffea homollei \N \N \N \N \N 55066 E.polygonifolia Euphorbia Euphorbia polygonifolia \N \N \N \N \N 55067 \N genus Tripetalum \N \N \N \N \N 55068 K.moluccana Kibara Kibara moluccana \N \N \N \N \N 55069 T.wightii Tripogon Tripogon wightii \N \N \N \N \N 55070 S.garnironii Scorzoneroides Scorzoneroides garnironii \N \N \N \N \N 55071 \N genus Antidaphne \N \N \N \N \N 55072 T.gossypina Tiquilia Tiquilia gossypina \N \N \N \N \N 55073 O.coarctata Oryza Oryza coarctata \N \N \N \N \N 55074 \N varietas Triticum dicoccoides var. macraaronsohnii \N \N \N \N \N 55075 C.pungens Ceratocephala Ceratocephala pungens \N \N \N \N \N 55076 T.sebifera Triadica Triadica sebifera Chinese tallowtree,candleberry-tree,popcorn-tree \N \N \N \N 55077 B.fremontii Berberis Berberis fremontii \N \N \N \N \N 55078 S.hoplopetalum Solanum Solanum hoplopetalum \N \N \N \N \N 55079 M.nanchuanense Maianthemum Maianthemum nanchuanense \N \N \N \N \N 55080 S.sceptrum Satyrium Satyrium sceptrum \N \N \N \N \N 55081 L.44597 Leycesteria Leycesteria sp. Boufford et al. 44597 \N \N \N \N \N 55082 D.arboreus Dendropanax Dendropanax arboreus \N \N \N \N \N 55083 A.coronopifolia Adenophora Adenophora coronopifolia \N \N \N \N \N 55084 C.stockeri Corymbia Corymbia stockeri \N \N \N \N \N 55085 G.nitida Gomphrena Gomphrena nitida \N \N \N \N \N 55086 C.palaestinus Carthamus Carthamus palaestinus \N \N \N \N \N 55087 R.leptostachya Radinosiphon Radinosiphon leptostachya \N \N \N \N \N 55088 H.glauca Herrickia Herrickia glauca Gray's aster \N \N \N \N 55089 A.bavarica Astrantia Astrantia bavarica \N \N \N \N \N 55090 \N genus Saldinia \N \N \N \N \N 55091 S.pumila Sophronitis Sophronitis pumila \N \N \N \N \N 55092 P.articulatum Phyllarthron Phyllarthron articulatum \N \N \N \N \N 55093 P.aizoon Phedimus Phedimus aizoon \N \N \N \N \N 55094 S.soluta Sideritis Sideritis soluta \N \N \N \N \N 55095 C.asiatica Centella Centella asiatica Asiatic pennywort,gotu kola,ji xue cao,sheep-rot,thankuni \N \N \N \N 55096 T.barbata Tolpis Tolpis barbata \N \N \N \N \N 55097 C.BWvE-2008 Croton Croton sp. sect. Cyclostigma BWvE-2008 \N \N \N \N \N 55098 S.ramulosa Sclerolaena Sclerolaena ramulosa \N \N \N \N \N 55099 L.arcticus Lupinus Lupinus arcticus \N \N \N \N \N 55100 P.600 Pyrostria Pyrostria sp. Mouly 600 \N \N \N \N \N 55101 \N subspecies Viola chamissoniana subsp. chamissoniana \N \N \N \N \N 55102 \N subspecies Linum hirsutum subsp. hirsutum \N \N \N \N \N 55103 R.eriocalyx Ruellia Ruellia eriocalyx \N \N \N \N \N 55104 M.longiloba Maxillaria Maxillaria longiloba \N \N \N \N \N 55105 G.taubertianus Gladiolus Gladiolus taubertianus \N \N \N \N \N 55106 G.glabrata Gymnanthes Gymnanthes glabrata \N \N \N \N \N 55107 A.compressa Austrostipa Austrostipa compressa \N \N \N \N \N 55108 \N genus Amylotheca \N \N \N \N \N 55109 C.waldsteiniana Campanula Campanula waldsteiniana \N \N \N \N \N 55110 \N genus Schnabelia \N \N \N \N \N 55111 Z.adenodonta Zieria Zieria adenodonta \N \N \N \N \N 55112 \N subspecies Setaria viridis subsp. pachystachys \N \N \N \N \N 55113 \N varietas Pimelea curviflora var. subglabrata \N \N \N \N \N 55114 H.negrilensis Hohenbergia Hohenbergia negrilensis \N \N \N \N \N 55115 L.verrucosa Lockhartia Lockhartia verrucosa \N \N \N \N \N 55116 P.belensis Papuasicyos Papuasicyos belensis \N \N \N \N \N 55117 B.hawaiensis Bidens Bidens hawaiensis \N \N \N \N \N 55118 Z.obliquum Zygophyllum Zygophyllum obliquum \N \N \N \N \N 55119 \N no rank Cynodonteae incertae sedis \N \N \N \N \N 55120 O.montanum Ornithogalum Ornithogalum montanum \N \N \N \N \N 55121 B.gracilis Basselinia Basselinia gracilis \N \N \N \N \N 55122 F.tinctoria Fibraurea Fibraurea tinctoria \N \N \N \N \N 55123 T.tripeltiferum Thalictrum Thalictrum tripeltiferum \N \N \N \N \N 55124 T.9765 Tanacetum Tanacetum cf. densum Oberprieler 9765 \N \N \N \N \N 55125 A.aculeata Acrocomia Acrocomia aculeata \N \N \N \N \N 55126 A.pintodasilvae Alyssum Alyssum pintodasilvae \N \N \N \N \N 55127 S.frigida Semenovia Semenovia frigida \N \N \N \N \N 55128 \N genus Lomatia \N \N \N \N \N 55129 E.iharanae Euphorbia Euphorbia iharanae \N \N \N \N \N 55130 M.C282 Monophyllorchis Monophyllorchis sp. Cassio C282 \N \N \N \N \N 55131 S.eylesii Streptocarpus Streptocarpus eylesii \N \N \N \N \N 55132 S.cinerascens Samolus Samolus cinerascens \N \N \N \N \N 55133 C.sabulosa Carex Carex sabulosa \N \N \N \N \N 55134 P.echinata Pternandra Pternandra echinata \N \N \N \N \N 55135 B.regnellii Bulbophyllum Bulbophyllum regnellii \N \N \N \N \N 55136 C.vulcanalis Chusquea Chusquea vulcanalis \N \N \N \N \N 55137 \N genus Nephrosperma \N \N \N \N \N 55138 \N varietas Sinobambusa tootsik var. tootsik \N \N \N \N \N 55139 A.00293 Aeschynanthus Aeschynanthus sp. 00293 \N \N \N \N \N 55140 C.leontodontoides Crepis Crepis leontodontoides \N \N \N \N \N 55141 H.shiuyingiae Hedyotis Hedyotis shiuyingiae \N \N \N \N \N 55142 I.stuhlmannii Impatiens Impatiens stuhlmannii \N \N \N \N \N 55143 E.complanata Eleocharis Eleocharis complanata \N \N \N \N \N 55144 L.repandum Lepidophorum Lepidophorum repandum \N \N \N \N \N 55145 M.scabra Menodora Menodora scabra \N \N \N \N \N 55146 S.testudinis Spondias Spondias testudinis \N \N \N \N \N 55147 P.obtusifolius Paepalanthus Paepalanthus obtusifolius \N \N \N \N \N 55148 L.simsiana Lebeckia Lebeckia simsiana \N \N \N \N \N 55149 G.magnicolumna Galeandra Galeandra magnicolumna \N \N \N \N \N 55150 S.viridifolium Solanum Solanum viridifolium \N \N \N \N \N 55151 P.floccosa Polyscias Polyscias floccosa \N \N \N \N \N 55152 T.aulieatensis Trichanthemis Trichanthemis aulieatensis \N \N \N \N \N 55153 H.intercedens Hordeum Hordeum intercedens \N \N \N \N \N 55154 E.magnicaespes Elymus Elymus magnicaespes \N \N \N \N \N 55155 A.inuloides Amblyocarpum Amblyocarpum inuloides \N \N \N \N \N 55156 C.fusca Calceolaria Calceolaria fusca \N \N \N \N \N 55157 G.macrotus Glossopappus Glossopappus macrotus \N \N \N \N \N 55158 G.chathamica Gentianella Gentianella chathamica \N \N \N \N \N 55159 G.tamirensis Goniothalamus Goniothalamus tamirensis \N \N \N \N \N 55160 S.thymbrifolia Satureja Satureja thymbrifolia \N \N \N \N \N 55161 P.trinervis Parnassia Parnassia trinervis \N \N \N \N \N 55162 P.SGR-2008 Peponidium Peponidium sp. SGR-2008 \N \N \N \N \N 55163 D.elegans Draba Draba elegans \N \N \N \N \N 55164 F.polesica Festuca Festuca polesica \N \N \N \N \N 55165 M.grusonii Mammillaria Mammillaria grusonii \N \N \N \N \N 55166 A.robustum Anemopaegma Anemopaegma robustum \N \N \N \N \N 55167 T.uralense Tanacetum Tanacetum uralense \N \N \N \N \N 55168 T.grandiflora Tephrosia Tephrosia grandiflora \N \N \N \N \N 55169 C.chrysantha Chloraea Chloraea chrysantha \N \N \N \N \N 55170 \N genus Tribeles \N \N \N \N \N 55171 C.limonia Camellia Camellia limonia \N \N \N \N \N 55172 A.squamuligera Asterolasia Asterolasia squamuligera \N \N \N \N \N 55173 M.sylvatica Miconia Miconia sylvatica \N \N \N \N \N 55174 R.hologlossum Rhynchoglossum Rhynchoglossum hologlossum \N \N \N \N \N 55175 B.fraternus Brownanthus Brownanthus fraternus \N \N \N \N \N 55176 S.sinensis Schima Schima sinensis \N \N \N \N \N 55177 S.shikikunensis Suzukia Suzukia shikikunensis \N \N \N \N \N 55178 \N genus Keckiella \N \N \N \N \N 55179 J.diffusissimus Juncus Juncus diffusissimus \N \N \N \N \N 55180 G.revolutum Gastrolobium Gastrolobium revolutum \N \N \N \N \N 55181 \N genus Pascopyrum \N \N \N \N \N 55182 S.khokhriakovii Salix Salix khokhriakovii \N \N \N \N \N 55183 C.mirabilis Cliffortia Cliffortia mirabilis \N \N \N \N \N 55184 C.ALD-2007 unclassified Celastraceae Celastraceae sp. ALD-2007 \N \N \N \N \N 55185 F.sibiricum Filifolium Filifolium sibiricum \N \N \N \N \N 55186 P.erythrorhiza Perideridia Perideridia erythrorhiza western yampah \N \N \N \N 55187 V.lobatifolia Vigna Vigna lobatifolia \N \N \N \N \N 55188 B.oregana Bolandra Bolandra oregana \N \N \N \N \N 55189 F.lanceolata Freylinia Freylinia lanceolata \N \N \N \N \N 55190 C.maritimum Crithmum Crithmum maritimum rock samphire,sea-fennel \N \N \N \N 55191 E.pallida Echinacea Echinacea pallida \N \N \N \N \N 55192 F.peninsulare Funastrum Funastrum peninsulare \N \N \N \N \N 55193 B.SM01-45 Buxus Buxus sp. Mathews SM01-45 \N \N \N \N \N 55194 C.pumila Coprosma Coprosma pumila \N \N \N \N \N 55195 P.erubescens Piriadacus Piriadacus erubescens \N \N \N \N \N 55196 C.tarmense Cynanchum Cynanchum tarmense \N \N \N \N \N 55197 M.biflora Matelea Matelea biflora \N \N \N \N \N 55198 D.chimaera Dracula Dracula chimaera \N \N \N \N \N 55199 C.rochebrunii Carex Carex rochebrunii \N \N \N \N \N 55200 P.verrucosum Philodendron Philodendron verrucosum \N \N \N \N \N 55201 \N varietas Vigna angularis var. angularis \N \N \N \N \N 55202 \N genus Orbeanthus \N \N \N \N \N 55203 P.limosa Pinanga Pinanga limosa \N \N \N \N \N 55204 C.ophiopellis Caryota Caryota ophiopellis \N \N \N \N \N 55205 S.pinanga Shorea Shorea pinanga \N \N \N \N \N 55206 S.nepalensis Saussurea Saussurea nepalensis \N \N \N \N \N 55207 P.galeata Pseuduvaria Pseuduvaria galeata \N \N \N \N \N 55208 E.kiwuensis Eragrostis Eragrostis kiwuensis \N \N \N \N \N 55209 R.lanceolata Rhus Rhus lanceolata \N \N \N \N \N 55210 S.medusula Sabicea Sabicea medusula \N \N \N \N \N 55211 S.chamaedryfolia Sideritis Sideritis chamaedryfolia \N \N \N \N \N 55212 P.laxiflora Philenoptera Philenoptera laxiflora \N \N \N \N \N 55213 M.hirsutissima Mentzelia Mentzelia hirsutissima \N \N \N \N \N 55214 M.flaviseta Muhlenbergia Muhlenbergia flaviseta \N \N \N \N \N 55215 H.diffusum Hirpicium Hirpicium diffusum \N \N \N \N \N 55216 B.rosea Balsamorhiza Balsamorhiza rosea \N \N \N \N \N 55217 M.macfarlanei Mirabilis Mirabilis macfarlanei \N \N \N \N \N 55218 C.simplicifolia Commiphora Commiphora simplicifolia \N \N \N \N \N 55219 G.grandiflora Galeottia Galeottia grandiflora \N \N \N \N \N 55220 S.canescens Spiraea Spiraea canescens \N \N \N \N \N 55221 C.feei Ceratolimon Ceratolimon feei \N \N \N \N \N 55222 H.forskaolii Hypoestes Hypoestes forskaolii \N \N \N \N \N 55223 A.acidula Acronychia Acronychia acidula \N \N \N \N \N 55224 C.glabrata Crambe Crambe glabrata \N \N \N \N \N 55225 C.gracilis Cladocolea Cladocolea gracilis \N \N \N \N \N 55226 P.tubiflorus Penstemon Penstemon tubiflorus \N \N \N \N \N 55227 E.procumbens Euphorbia Euphorbia procumbens \N \N \N \N \N 55228 M.speciosa Monnina Monnina speciosa \N \N \N \N \N 55229 \N varietas Prunus cerasus var. caproniana \N \N \N \N \N 55230 M.integripetala Mitella Mitella integripetala \N \N \N \N \N 55231 \N genus Alseuosmia \N \N \N \N \N 55232 P.leucantha Pimelea Pimelea leucantha \N \N \N \N \N 55233 B.assurgens Borreria Borreria assurgens \N \N \N \N \N 55234 A.melvillei Acacia Acacia melvillei yarran \N \N \N \N 55235 S.nemoralis Silene Silene nemoralis \N \N \N \N \N 55236 \N varietas Collomia debilis var. camporum \N \N \N \N \N 55237 R.columbianum Ribes Ribes columbianum \N \N \N \N \N 55238 G.bolanderi Galium Galium bolanderi \N \N \N \N \N 55239 A.quadrata Aspalathus Aspalathus quadrata \N \N \N \N \N 55240 \N varietas Smelowskia ovalis var. congesta \N \N \N \N \N 55241 I.neurocephala Ipomoea Ipomoea neurocephala \N \N \N \N \N 55242 \N genus Enterospermum \N \N \N \N \N 55243 A.trinervis Alyssopsis Alyssopsis trinervis \N \N \N \N \N 55244 S.polyanthus Streptocarpus Streptocarpus polyanthus \N \N \N \N \N 55245 H.rosea Hosackia Hosackia rosea \N \N \N \N \N 55246 P.1020 Peponidium Peponidium sp. Eriksson et al. 1020 \N \N \N \N \N 55247 \N genus Gaura \N \N \N \N \N 55248 \N subspecies Parvatia brunoniana subsp. elliptica \N \N \N \N \N 55249 H.erythropus Homalomena Homalomena erythropus \N \N \N \N \N 55250 B.jucunda Babingtonia Babingtonia jucunda \N \N \N \N \N 55251 N.curamalalensis Nassella Nassella curamalalensis \N \N \N \N \N 55252 \N genus Stizophyllum \N \N \N \N \N 55253 P.refractum Plagiosetum Plagiosetum refractum \N \N \N \N \N 55254 U.codesuri Uladendron Uladendron codesuri \N \N \N \N \N 55255 \N varietas Brassica juncea var. crassicaulis \N \N \N \N \N 55256 C.kilimandscharicum Cyphostemma Cyphostemma kilimandscharicum \N \N \N \N \N 55257 G.lanuginosus Gossypianthus Gossypianthus lanuginosus \N \N \N \N \N 55258 T.sibiricus Trollius Trollius sibiricus \N \N \N \N \N 55259 P.sandwicensis Pouteria Pouteria sandwicensis \N \N \N \N \N 55260 F.humbertii Fenerivia Fenerivia humbertii \N \N \N \N \N 55261 P.bartlingii Pityrodia Pityrodia bartlingii \N \N \N \N \N 55262 R.subulata Rhynchoryza Rhynchoryza subulata \N \N \N \N \N 55263 P.3135 Pycnandra Pycnandra sp. Munzinger 3135 \N \N \N \N \N 55264 \N genus Arbutus \N \N \N \N \N 55265 M.tomentosa Montanoa Montanoa tomentosa \N \N \N \N \N 55266 A.interruptus Amorphophallus Amorphophallus interruptus \N \N \N \N \N 55267 R.glabrata Robynsia Robynsia glabrata \N \N \N \N \N 55268 O.MO455 Oxalis Oxalis cf. lasiandra MO455 \N \N \N \N \N 55269 A.marmoratum Asarum Asarum marmoratum \N \N \N \N \N 55270 G.daucoides Grammosciadium Grammosciadium daucoides \N \N \N \N \N 55271 G.pulchella Gaillardia Gaillardia pulchella \N \N \N \N \N 55272 L.lontaroides Latania Latania lontaroides \N \N \N \N \N 55273 \N genus Zephyra \N \N \N \N \N 55274 F.delavayi Fritillaria Fritillaria delavayi \N \N \N \N \N 55275 D.chlorocephala Dalechampia Dalechampia chlorocephala \N \N \N \N \N 55276 T.macrorrhyncha Trigonella Trigonella macrorrhyncha \N \N \N \N \N 55277 N.wenshanensis Nyssa Nyssa wenshanensis \N \N \N \N \N 55278 C.tomentosa Conostylis Conostylis tomentosa \N \N \N \N \N 55279 \N genus Melia \N \N \N \N \N 55280 P.omiiana Pedicularis Pedicularis omiiana \N \N \N \N \N 55281 A.kayasanensis Adenophora Adenophora kayasanensis \N \N \N \N \N 55282 R.clementinae Rhododendron Rhododendron clementinae \N \N \N \N \N 55283 S.panduriforme Solanum Solanum panduriforme \N \N \N \N \N 55284 \N subspecies Arum elongatum subsp. elongatum \N \N \N \N \N 55285 A.nepalensis Alnus Alnus nepalensis \N \N \N \N \N 55286 \N genus Badiera \N \N \N \N \N 55287 S.robusta Strasburgeria Strasburgeria robusta \N \N \N \N \N 55288 H.JANB-2011 Habenaria Habenaria aff. subfiliformis JANB-2011 \N \N \N \N \N 55289 \N genus Torreyochloa \N \N \N \N \N 55290 A.oxyglottis Astragalus Astragalus oxyglottis \N \N \N \N \N 55291 C.grahamii Corynopuntia Corynopuntia grahamii \N \N \N \N \N 55292 E.cazorlanum Erodium Erodium cazorlanum \N \N \N \N \N 55293 R.mammillaris Raoulia Raoulia mammillaris \N \N \N \N \N 55294 G.scortechinii Garcinia Garcinia scortechinii \N \N \N \N \N 55295 \N genus Feroniella \N \N \N \N \N 55296 P.campanulatus Phaseolus Phaseolus campanulatus \N \N \N \N \N 55297 P.acaulis Penstemon Penstemon acaulis \N \N \N \N \N 55298 K.hirsuta Kalmia Kalmia hirsuta \N \N \N \N \N 55299 \N genus Damnamenia \N \N \N \N \N 55300 A.chinchillensis Acacia Acacia chinchillensis \N \N \N \N \N 55301 C.yavitensis Croton Croton yavitensis \N \N \N \N \N 55302 E.collinus Euchiton Euchiton collinus \N \N \N \N \N 55303 K.dissecta Klasea Klasea dissecta \N \N \N \N \N 55304 P.cupuligera Picris Picris cupuligera \N \N \N \N \N 55305 \N genus Austrobuxus \N \N \N \N \N 55306 A.radicans Aeschynanthus Aeschynanthus radicans \N \N \N \N \N 55307 L.villarsii Lepidium Lepidium villarsii \N \N \N \N \N 55308 C.tenella Collomia Collomia tenella \N \N \N \N \N 55309 G.calcicola Gaura Gaura calcicola \N \N \N \N \N 55310 M.lowii Macaranga Macaranga lowii \N \N \N \N \N 55311 \N genus Dittrichia \N \N \N \N \N 55312 P.schistosum Polygonum Polygonum schistosum \N \N \N \N \N 55313 \N genus Didissandra \N \N \N \N \N 55314 J.umbellifera Joosia Joosia umbellifera \N \N \N \N \N 55315 B.whitei Brachyscome Brachyscome whitei \N \N \N \N \N 55316 A.nicaeensis Acis Acis nicaeensis \N \N \N \N \N 55317 S.lachenaliiflora Spetaea Spetaea lachenaliiflora \N \N \N \N \N 55318 D.taylorii Dactylanthus Dactylanthus taylorii \N \N \N \N \N 55319 G.azurea Gentianella Gentianella azurea \N \N \N \N \N 55320 M.karwinskiana Mammillaria Mammillaria karwinskiana \N \N \N \N \N 55321 B.scordiodes Buddleja Buddleja scordiodes \N \N \N \N \N 55322 D.velutina Delonix Delonix velutina \N \N \N \N \N 55324 S.pinifolius Senecio Senecio pinifolius \N \N \N \N \N 55325 O.spectabilis Octolobus Octolobus spectabilis \N \N \N \N \N 55326 P.cyphocalyx Pediomelum Pediomelum cyphocalyx \N \N \N \N \N 55327 S.laotica Stewartia Stewartia laotica \N \N \N \N \N 55328 \N genus Lagopsis \N \N \N \N \N 55329 A.titanum Amorphophallus Amorphophallus titanum corpse flower,titan arum \N \N \N \N 55330 T.297 Tiquilia Tiquilia cf. conspicua Moore 297 \N \N \N \N \N 55331 M.s.n. Mulinum Mulinum sp. Hufford s.n. \N \N \N \N \N 55332 H.floribundum Hymenodictyon Hymenodictyon floribundum \N \N \N \N \N 55333 \N family Aquifoliaceae \N \N \N \N \N 55334 \N genus Oreoselinum \N \N \N \N \N 55335 R.monophyllus Ranunculus Ranunculus monophyllus \N \N \N \N \N 55336 H.madagascariensis Hickelia Hickelia madagascariensis \N \N \N \N \N 55337 S.myriophylla Selago Selago myriophylla \N \N \N \N \N 55338 A.schmakovii Achillea Achillea schmakovii \N \N \N \N \N 55339 \N genus Cucurbitella \N \N \N \N \N 55340 \N genus Euptelea \N \N \N \N \N 55341 A.comberi Archeria Archeria comberi \N \N \N \N \N 55342 T.rheophila Triglochin Triglochin rheophila \N \N \N \N \N 55343 C.aurea Carex Carex aurea \N \N \N \N \N 55344 R.osiliensis Rhinanthus Rhinanthus osiliensis \N \N \N \N \N 55345 T.ramosum Thalictrum Thalictrum ramosum \N \N \N \N \N 55346 N.jolyanus Nematanthus Nematanthus jolyanus \N \N \N \N \N 55347 B.elisabethae Begonia Begonia elisabethae \N \N \N \N \N 55348 \N subspecies Dubautia laxa subsp. laxa \N \N \N \N \N 55349 M.andinum Mostacillastrum Mostacillastrum andinum \N \N \N \N \N 55350 O.DH-2011 Osmanthus Osmanthus sp. DH-2011 \N \N \N \N \N 55351 A.priceana Apios Apios priceana traveler's delight \N \N \N \N 55352 C.papuana Coriaria Coriaria papuana \N \N \N \N \N 55353 R.rh6265 Rheum Rheum sp. Liu rh6265 \N \N \N \N \N 55354 C.collinus Calycopeplus Calycopeplus collinus \N \N \N \N \N 55355 E.delicatula Ehrharta Ehrharta delicatula \N \N \N \N \N 55356 S.echinatum Solanum Solanum echinatum \N \N \N \N \N 55357 \N genus Imperata \N \N \N \N \N 55358 S.aspera Salvia Salvia aspera \N \N \N \N \N 55359 S.samojedorum Silene Silene samojedorum \N \N \N \N \N 55360 L.provincialis Liatris Liatris provincialis \N \N \N \N \N 55361 T.NHW-2005-3 Trichoceros Trichoceros sp. NHW-2005-3 \N \N \N \N \N 55362 P.concinna Phyllopentas Phyllopentas concinna \N \N \N \N \N 55363 B.formosa Boechera Boechera formosa \N \N \N \N \N 55364 P.pteridophylla Pilea Pilea pteridophylla \N \N \N \N \N 55365 A.funiculata Aristida Aristida funiculata \N \N \N \N \N 55366 V.arborea Valeriana Valeriana arborea \N \N \N \N \N 55367 T.ciliare Tribolium Tribolium ciliare \N \N \N \N \N 55368 M.monosperma Mucuna Mucuna monosperma \N \N \N \N \N 55369 L.pringlei Lycianthes Lycianthes pringlei \N \N \N \N \N 55370 O.heterophylla Oxalis Oxalis heterophylla \N \N \N \N \N 55371 V.goldblattiana Villarsia Villarsia goldblattiana \N \N \N \N \N 55372 F.polystachya Ficinia Ficinia polystachya \N \N \N \N \N 55373 M.graminifolia Minuartia Minuartia graminifolia \N \N \N \N \N 55374 D.bonvalotii Delphinium Delphinium bonvalotii \N \N \N \N \N 55375 M.neblinae Macrocarpaea Macrocarpaea neblinae \N \N \N \N \N 55376 E.coquimbana Echinopsis Echinopsis coquimbana \N \N \N \N \N 55377 G.sinistra Gilia Gilia sinistra \N \N \N \N \N 55378 C.media Crataegus Crataegus media \N \N \N \N \N 55379 \N genus Schoenoplectiella \N \N \N \N \N 55380 R.ropalocarpa Racinaea Racinaea ropalocarpa \N \N \N \N \N 55381 P.lantanoides Phyllostegia Phyllostegia lantanoides \N \N \N \N \N 55382 \N subspecies Cistanche phelypaea subsp. phelypaea \N \N \N \N \N 55383 J.albicaulis Jurinea Jurinea albicaulis \N \N \N \N \N 55384 V.cauliflora Vasconcellea Vasconcellea cauliflora \N \N \N \N \N 55385 T.lanceolatum Trichostema Trichostema lanceolatum vinegarweed \N \N \N \N 55386 C.maorica Carex Carex maorica \N \N \N \N \N 55387 M.tuberosa Merremia Merremia tuberosa \N \N \N \N \N 55388 B.ovalifolia Besleria Besleria ovalifolia \N \N \N \N \N 55390 L.robinsoniana Licuala Licuala robinsoniana \N \N \N \N \N 55391 \N subtribe Cymbidiinae \N \N \N \N \N 55392 E.anceps Epidendrum Epidendrum anceps \N \N \N \N \N 55393 R.cavaleriei Rhododendron Rhododendron cavaleriei \N \N \N \N \N 55394 \N subspecies Impatiens kamerunensis subsp. kamerunensis \N \N \N \N \N 55395 C.apiculatum Chrysocephalum Chrysocephalum apiculatum \N \N \N \N \N 55396 \N genus Pellacalyx \N \N \N \N \N 55397 G.diphylla Gennaria Gennaria diphylla \N \N \N \N \N 55398 C.perfoliatum Cerastium Cerastium perfoliatum \N \N \N \N \N 55399 \N varietas Banksia spinulosa var. cunninghamii \N \N \N \N \N 55400 D.hirtella Drosera Drosera hirtella \N \N \N \N \N 55401 H.glauca Hermbstaedtia Hermbstaedtia glauca \N \N \N \N \N 55402 \N subtribe Tussilagininae \N \N \N \N \N 55403 T.aralensis Tamarix Tamarix aralensis \N \N \N \N \N 55404 M.lateriflorum Memecylon Memecylon lateriflorum \N \N \N \N \N 55405 G.velutinum Glochidion Glochidion velutinum \N \N \N \N \N 55406 A.kopetdagense Allium Allium kopetdagense \N \N \N \N \N 55407 S.thyrsiflorus Sauropus Sauropus thyrsiflorus \N \N \N \N \N 55408 E.620-99 Eryngium Eryngium cf. paniculatum Greissl 620-99 \N \N \N \N \N 55409 C.cupulata Cyrtandra Cyrtandra cupulata \N \N \N \N \N 55410 A.rupestris Aosa Aosa rupestris \N \N \N \N \N 55411 W.hederacea Wahlenbergia Wahlenbergia hederacea \N \N \N \N \N 55412 S.convallaria Stelis Stelis convallaria \N \N \N \N \N 55413 O.geelvinkianum Osmoxylon Osmoxylon geelvinkianum \N \N \N \N \N 55414 G.longipes Genista Genista longipes \N \N \N \N \N 55415 T.225633 Toddalia Toddalia sp. 225633 \N \N \N \N \N 55416 C.humile Cremanthodium Cremanthodium humile \N \N \N \N \N 55417 \N genus Acronema \N \N \N \N \N 55418 R.metternichii Rhododendron Rhododendron metternichii leatherleaf rhododendron \N \N \N \N 55419 O.erlangeri Otostegia Otostegia erlangeri \N \N \N \N \N 55420 T.fragrans Tenicroa Tenicroa fragrans \N \N \N \N \N 55421 T.zebrina Tradescantia Tradescantia zebrina inchplant \N \N \N \N 55422 C.201 Campomanesia Campomanesia sp. Lucas 201 \N \N \N \N \N 55423 L.glauca Lagotis Lagotis glauca \N \N \N \N \N 55424 R.amoena Ruellia Ruellia amoena \N \N \N \N \N 55425 E.petraea Erica Erica petraea \N \N \N \N \N 55426 \N varietas Psychotria panamensis var. panamensis \N \N \N \N \N 55427 Q.linearis Quaqua Quaqua linearis \N \N \N \N \N 55428 C.maximum Cerastium Cerastium maximum \N \N \N \N \N 55429 S.rubiginosa Santiria Santiria rubiginosa \N \N \N \N \N 55430 D.petraeus Dianthus Dianthus petraeus \N \N \N \N \N 55431 \N varietas Blumea hieraciifolia var. hamiltoni \N \N \N \N \N 55432 C.teretifolius Callistemon Callistemon teretifolius \N \N \N \N \N 55433 A.distachyus Aponogeton Aponogeton distachyus Cape-pondweed,water-hawthorn \N \N \N \N 55434 B.hainanensis Bambusa Bambusa hainanensis \N \N \N \N \N 55435 C.glabrata Chaetanthera Chaetanthera glabrata \N \N \N \N \N 55436 T.polygaloides Talinum Talinum polygaloides \N \N \N \N \N 55437 M.velloziana Mendoncia Mendoncia velloziana \N \N \N \N \N 55438 D.vaginata Disa Disa vaginata \N \N \N \N \N 55439 A.tuitensis Aechmea Aechmea tuitensis \N \N \N \N \N 55440 B.scoparia Bassia Bassia scoparia burning bush,summer cypress \N \N \N \N 55441 N.andina Nierembergia Nierembergia andina \N \N \N \N \N 55442 \N genus Tetracera \N \N \N \N \N 55443 V.MVSP-2007 Verbascum Verbascum sp. MVSP-2007 \N \N \N \N \N 55444 O.peruviana Oroya Oroya peruviana \N \N \N \N \N 55445 C.latifolia Caylusea Caylusea latifolia \N \N \N \N \N 55446 \N genus Gyrinops \N \N \N \N \N 55447 E.tricostata Eleocharis Eleocharis tricostata \N \N \N \N \N 55448 I.havilandii Ilex Ilex havilandii \N \N \N \N \N 55449 \N subspecies Streptocarpus beampingaratrensis subsp. antambolorum \N \N \N \N \N 55450 \N genus Filago \N \N \N \N \N 55451 A.doratoxylon Acacia Acacia doratoxylon brown lancewood,currawang,spearwood \N \N \N \N 55452 C.pyramidalis Carex Carex pyramidalis \N \N \N \N \N 55453 H.lanceolata Hippuris Hippuris x lanceolata \N \N \N \N \N 55454 C.hookeri Cortiella Cortiella hookeri \N \N \N \N \N 55455 O.vasconica Ophrys Ophrys vasconica \N \N \N \N \N 55456 C.pilosum Chrysosplenium Chrysosplenium pilosum \N \N \N \N \N 55457 H.PI401351 Heteranthelium Heteranthelium sp. PI401351 \N \N \N \N \N 55458 M.stenopetala Meiogyne Meiogyne stenopetala \N \N \N \N \N 55459 D.humistrata Dyschoriste Dyschoriste humistrata \N \N \N \N \N 55460 D.kameruniana Dorstenia Dorstenia kameruniana \N \N \N \N \N 55461 \N genus Petrocosmea \N \N \N \N \N 55462 C.terminalis Camellia Camellia terminalis \N \N \N \N \N 55463 S.algarviensis Sideritis Sideritis algarviensis \N \N \N \N \N 55464 M.longiflora Mammillaria Mammillaria longiflora \N \N \N \N \N 55465 H.axillaris Hamelia Hamelia axillaris \N \N \N \N \N 55466 \N genus Noticastrum \N \N \N \N \N 55467 A.conduplicata Atriplex Atriplex conduplicata \N \N \N \N \N 55468 A.runcinata Acourtia Acourtia runcinata \N \N \N \N \N 55469 J.sample environmental samples Taxonomy:1008284 Juglans environmental sample \N \N \N \N \N 55470 A.dongicola Austrostipa Austrostipa dongicola \N \N \N \N \N 55471 T.calaminare Thlaspi Thlaspi calaminare \N \N \N \N \N 55472 T.granulosa Tibouchina Tibouchina granulosa \N \N \N \N \N 55473 L.ionopogon Leandra Leandra ionopogon \N \N \N \N \N 55474 M.lateritum Modiolastrum Modiolastrum lateritum \N \N \N \N \N 55475 F.tadshikorum Ferula Ferula tadshikorum \N \N \N \N \N 55476 A.rostrata Attalea Attalea rostrata \N \N \N \N \N 55477 \N genus Chamaexeros \N \N \N \N \N 55478 S.elatum Seseli Seseli elatum \N \N \N \N \N 55479 L.papillosum Lepidium Lepidium papillosum \N \N \N \N \N 55480 P.serrata Pseudoselago Pseudoselago serrata \N \N \N \N \N 55481 N.parviflora Nolana Nolana parviflora \N \N \N \N \N 55482 P.oligantha Prescottia Prescottia oligantha \N \N \N \N \N 55483 R.tarapotana Ruellia Ruellia tarapotana \N \N \N \N \N 55484 C.morrenioides Cynanchum Cynanchum morrenioides \N \N \N \N \N 55485 \N genus Ochrosperma \N \N \N \N \N 55486 S.winkleri Spryginia Spryginia winkleri \N \N \N \N \N 55487 C.vitelliniflora Christensonella Christensonella vitelliniflora \N \N \N \N \N 55488 \N genus Aria whitebeam \N \N \N \N 55489 B.beecheyana Bambusa Bambusa beecheyana \N \N \N \N \N 55490 T.grossa Taraxis Taraxis grossa \N \N \N \N \N 55491 \N genus Hedysarum \N \N \N \N \N 55492 M.red2 Myriophyllum Myriophyllum sp. red2 \N \N \N \N \N 55493 S.SG-2007 Spirodela Spirodela sp. SG-2007 \N \N \N \N \N 55494 C.grandiflora Cynorkis Cynorkis grandiflora \N \N \N \N \N 55495 \N varietas Ainsliaea apiculata var. acerifolia \N \N \N \N \N 55496 E.sucrensis Echinopsis Echinopsis sucrensis \N \N \N \N \N 55497 V.pallens Viola Viola pallens \N \N \N \N \N 55498 M.melanotricha Miconia Miconia melanotricha \N \N \N \N \N 55499 S.alpina Soldanella Soldanella alpina \N \N \N \N \N 55500 P.gonoacantha Piptadenia Piptadenia gonoacantha \N \N \N \N \N 55501 L.rubescens Litsea Litsea rubescens \N \N \N \N \N 55502 G.falcata Glycine Glycine falcata \N \N \N \N \N 55503 A.aegobromus Astragalus Astragalus aegobromus \N \N \N \N \N 55504 S.flavidulus Syngonanthus Syngonanthus flavidulus \N \N \N \N \N 55505 A.ecalcarata Aquilegia Aquilegia ecalcarata \N \N \N \N \N 55506 H.angustifolium Hypocalymma Hypocalymma angustifolium \N \N \N \N \N 55507 \N genus Luina \N \N \N \N \N 55508 T.kelloggii Tauschia Tauschia kelloggii Kellogg's umbrellawort \N \N \N \N 55509 L.401 Leptonychia Leptonychia aff. pallida Whitlock et al. 401 \N \N \N \N \N 55510 D.hoppii Drymonia Drymonia hoppii \N \N \N \N \N 55511 K.pubescens Kalanchoe Kalanchoe pubescens \N \N \N \N \N 55512 P.brevifolius Phemeranthus Phemeranthus brevifolius \N \N \N \N \N 55513 S.ciliata Schismatoglottis Schismatoglottis ciliata \N \N \N \N \N 55514 P.polyanthus Phaseolus Phaseolus polyanthus \N \N \N \N \N 55515 A.hirsutum Archidendron Archidendron hirsutum \N \N \N \N \N 55516 C.gargantua Cyrtochilum Cyrtochilum gargantua \N \N \N \N \N 55517 \N subspecies Deinandra greeneana subsp. greeneana \N \N \N \N \N 55518 H.15614 Haemodorum Haemodorum sp. 15614 \N \N \N \N \N 55519 M.hypogaea Medicago Medicago hypogaea \N \N \N \N \N 55520 \N varietas Calophyllum teysmannii var. teysmannii \N \N \N \N \N 55521 \N genus Agapetes \N \N \N \N \N 55522 \N varietas Hedera hibernica var. hibernica \N \N \N \N \N 55523 \N varietas Rhododendron calostrotum var. calciphilum \N \N \N \N \N 55524 A.axillaris Acacia Acacia axillaris \N \N \N \N \N 55525 P.longicarpa Polyspora Polyspora longicarpa \N \N \N \N \N 55526 \N genus Hexatheca \N \N \N \N \N 55527 P.carolinensis Pluchea Pluchea carolinensis cattletongue,cure-for-all \N \N \N \N 55528 P.laevigata Pseudolmedia Pseudolmedia laevigata \N \N \N \N \N 55529 V.13-03 Viola Viola sp. Davis 13-03 \N \N \N \N \N 55530 \N genus Leptocodon \N \N \N \N \N 55531 V.rubra Vitis Vitis rubra \N \N \N \N \N 55532 P.orientalis Podonosma Podonosma orientalis \N \N \N \N \N 55533 M.ombrophilia Malus Malus ombrophilia \N \N \N \N \N 55534 B.insignis Betula Betula insignis xiang hua \N \N \N \N 55535 \N family Ceratophyllaceae \N \N \N \N \N 55536 N.jamesoniana Nymphaea Nymphaea jamesoniana \N \N \N \N \N 55537 G.pulchra Gastrorchis Gastrorchis pulchra \N \N \N \N \N 55538 S.wightiana Strobilanthes Strobilanthes wightiana \N \N \N \N \N 55539 \N genus Lavoixia \N \N \N \N \N 55540 J.cathayensis Juglans Juglans cathayensis \N \N \N \N \N 55541 C.coriacea Chamaemeles Chamaemeles coriacea \N \N \N \N \N 55542 H.excelsum Hymenodictyon Hymenodictyon excelsum \N \N \N \N \N 55543 C.peckii Caralluma Caralluma peckii \N \N \N \N \N 55544 H.tubulascens Hieracium Hieracium tubulascens \N \N \N \N \N 55545 D.floribunda Diplokeleba Diplokeleba floribunda \N \N \N \N \N 55546 H.kleberi Hoffmannseggella Hoffmannseggella kleberi \N \N \N \N \N 55547 A.YYL-2004 Aconitum Aconitum sp. YYL-2004 \N \N \N \N \N 55548 L.ambiguus Leptosiphon Leptosiphon ambiguus \N \N \N \N \N 55549 B.holstii Berberis Berberis holstii \N \N \N \N \N 55550 D.normandii Dacryodes Dacryodes normandii \N \N \N \N \N 55551 C.rigidifolius Cyperus Cyperus rigidifolius \N \N \N \N \N 55552 \N genus Cyanastrum \N \N \N \N \N 55553 \N genus Sericolea \N \N \N \N \N 55554 \N genus Syncarpia \N \N \N \N \N 55555 S.repens Serenoa Serenoa repens saw palmetto \N \N \N \N 55556 T.CH_E10Amono Triticum Triticum sp. CH_E10Amono \N \N \N \N \N 55557 \N genus Cryptocentrum \N \N \N \N \N 55558 D.brasiliensis Dalbergia Dalbergia brasiliensis \N \N \N \N \N 55559 \N subspecies Dubautia linearis subsp. hillebrandii \N \N \N \N \N 55560 \N subspecies Haworthia glauca var. herrei \N \N \N \N \N 55561 \N subspecies Festuca pratensis subsp. apennina \N \N \N \N \N 55562 S.chazaroi Sedum Sedum chazaroi \N \N \N \N \N 55563 P.lemhiensis Penstemon Penstemon lemhiensis \N \N \N \N \N 55564 P.microstipula Passiflora Passiflora microstipula \N \N \N \N \N 55565 E.cunninghamii Epaltes Epaltes cunninghamii \N \N \N \N \N 55566 F.thirkeana Ferulago Ferulago thirkeana \N \N \N \N \N 55567 E.wettsteinii Edraianthus Edraianthus wettsteinii \N \N \N \N \N 55568 \N subspecies Tephroseris palustris subsp. congesta \N \N \N \N \N 55569 P.thonningii Piliostigma Piliostigma thonningii \N \N \N \N \N 55570 G.officinalis Gentiana Gentiana officinalis \N \N \N \N \N 55571 \N varietas Heterosperma pinnatum var. pinnatum \N \N \N \N \N 55572 E.maderoi Encyclia Encyclia maderoi \N \N \N \N \N 55573 M.afropalustris Myosotis Myosotis afropalustris \N \N \N \N \N 55574 \N genus Paravitex \N \N \N \N \N 55575 O.heterophylla Opisthiolepis Opisthiolepis heterophylla \N \N \N \N \N 55576 B.antidysenterica Brucea Brucea antidysenterica \N \N \N \N \N 55577 R.ecuadorense Ribes Ribes ecuadorense \N \N \N \N \N 55578 H.richardsonii Heuchera Heuchera richardsonii Richardson's alumroot \N \N \N \N 55579 P.patagonica Philippiella Philippiella patagonica \N \N \N \N \N 55580 B.glauca Bridelia Bridelia glauca \N \N \N \N \N 55581 S.tarijense Solanum Solanum tarijense \N \N \N \N \N 55582 \N genus Cubilia \N \N \N \N \N 55583 P.perpusillum Piper Piper perpusillum \N \N \N \N \N 55584 P.burchellii Passerina Passerina burchellii \N \N \N \N \N 55585 \N genus Thysselinum \N \N \N \N \N 55586 \N genus Erythrophleum \N \N \N \N \N 55587 A.pomifera Anisophyllea Anisophyllea pomifera \N \N \N \N \N 55588 P.brachycarpa Podandrogyne Podandrogyne brachycarpa \N \N \N \N \N 55589 M.poselgeri Mammillaria Mammillaria poselgeri \N \N \N \N \N 55590 \N varietas Carex sp. JAD-2009b \N \N \N \N \N 55591 P.lepidanthus Pachycereus Pachycereus lepidanthus \N \N \N \N \N 55592 S.garrettii Sauropus Sauropus garrettii \N \N \N \N \N 55593 P.myrsine Polyscias Polyscias myrsine \N \N \N \N \N 55594 P.hispida Phyllostegia Phyllostegia hispida \N \N \N \N \N 55595 N.insignis Nasa Nasa insignis \N \N \N \N \N 55596 O.kuroiwae Ophiorrhiza Ophiorrhiza kuroiwae \N \N \N \N \N 55597 V.patula Vitex Vitex patula \N \N \N \N \N 55598 \N varietas Delphinium grandiflorum var. chinense \N \N \N \N \N 55599 S.communis Serjania Serjania communis \N \N \N \N \N 55600 \N genus Crucianella \N \N \N \N \N 55601 E.rosacea Erica Erica rosacea \N \N \N \N \N 55602 M.acuminata Mutisia Mutisia acuminata \N \N \N \N \N 55603 \N genus Gonocaryum \N \N \N \N \N 55604 E.attenuata Eleocharis Eleocharis attenuata \N \N \N \N \N 55605 C.nivifera Chionochloa Chionochloa nivifera \N \N \N \N \N 55606 \N genus Hemitomes \N \N \N \N \N 55607 C.vaillantii Crassula Crassula vaillantii \N \N \N \N \N 55608 Z.smilacifolia Zeugites Zeugites smilacifolia \N \N \N \N \N 55609 A.longifolius Acanthus Acanthus longifolius \N \N \N \N \N 55610 T.analamazaotrensis Tricalysia Tricalysia analamazaotrensis \N \N \N \N \N 55611 C.cenisia Campanula Campanula cenisia \N \N \N \N \N 55612 L.vernale Linum Linum vernale \N \N \N \N \N 55613 H.emoryi Hyptis Hyptis emoryi desert lavender \N \N \N \N 55614 \N genus Erato \N \N \N \N \N 55615 L.longistaminata Litsea Litsea longistaminata \N \N \N \N \N 55616 P.bispinosum Pachypodium Pachypodium bispinosum \N \N \N \N \N 55617 P.bungeana Persicaria Persicaria bungeana prickly smartweed \N \N \N \N 55618 S.macrostyla Silene Silene macrostyla \N \N \N \N \N 55619 \N varietas Ceanothus foliosus var. vineatus \N \N \N \N \N 55620 T.salzmannii Tabernaemontana Tabernaemontana salzmannii \N \N \N \N \N 55621 C.graeca Centaurea Centaurea graeca \N \N \N \N \N 55622 C.ensiformis Canavalia Canavalia ensiformis horse bean,jack bean \N \N \N \N 55623 S.tuberosa Sanicula Sanicula tuberosa \N \N \N \N \N 55624 R.370 Randia Randia sp. Persson and Gustafsson 370 \N \N \N \N \N 55625 C.H5_32 Castilleja Castilleja sp. H5_32 \N \N \N \N \N 55626 \N varietas Boechera pulchra var. pallens \N \N \N \N \N 55627 \N varietas Ourisia macrocarpa var. macrocarpa \N \N \N \N \N 55628 S.sulfurea Senna Senna sulfurea \N \N \N \N \N 55629 S.barthleniana Suessenguthia Suessenguthia barthleniana \N \N \N \N \N 55630 A.multiflorum Antirrhinum Antirrhinum multiflorum \N \N \N \N \N 55631 S.ammophila Silene Silene ammophila \N \N \N \N \N 55632 A.elegantula Asclepias Asclepias elegantula \N \N \N \N \N 55633 P.DG-2010 Parrya Parrya aff. alba DG-2010 \N \N \N \N \N 55634 S.2004-98 Salicornia Salicornia aff. patula Yaprak 2004-98 \N \N \N \N \N 55635 \N genus Planocarpa \N \N \N \N \N 55636 P.applanata Platychorda Platychorda applanata \N \N \N \N \N 55637 G.oatesii Gladiolus Gladiolus oatesii \N \N \N \N \N 55638 R.hypocrateriformis Ruspolia Ruspolia hypocrateriformis \N \N \N \N \N 55639 A.liliago Anthericum Anthericum liliago \N \N \N \N \N 55640 M.amabilis Masdevallia Masdevallia amabilis \N \N \N \N \N 55641 B.glomerata Barnadesia Barnadesia glomerata \N \N \N \N \N 55642 L.ocellatum Lilium Lilium ocellatum \N \N \N \N \N 55643 O.australiana Ostrearia Ostrearia australiana \N \N \N \N \N 55644 C.induta Cyrtandra Cyrtandra induta \N \N \N \N \N 55645 V.japonensis Veronica Veronica japonensis \N \N \N \N \N 55646 C.erecta Coryphantha Coryphantha erecta \N \N \N \N \N 55647 \N genus Leucocroton \N \N \N \N \N 55648 H.mesoamericanum Hymenolobium Hymenolobium mesoamericanum \N \N \N \N \N 55649 I.tanzaniensis Ixora Ixora tanzaniensis \N \N \N \N \N 55650 \N genus Coptosapelta \N \N \N \N \N 55651 \N genus Craterosiphon \N \N \N \N \N 55652 A.microsperma Anthemis Anthemis microsperma \N \N \N \N \N 55653 O.globuliferum Otoglossum Otoglossum globuliferum \N \N \N \N \N 55654 C.cymosa Chimarrhis Chimarrhis cymosa \N \N \N \N \N 55655 H.guatemalense Hordeum Hordeum guatemalense \N \N \N \N \N 55656 \N genus Pleurospermum \N \N \N \N \N 55657 P.microsepala Portlandia Portlandia microsepala \N \N \N \N \N 55658 P.carrilloanum Piper Piper carrilloanum \N \N \N \N \N 55659 M.porrecta Maxillaria Maxillaria porrecta \N \N \N \N \N 55660 V.adenoclada Vitis Vitis adenoclada \N \N \N \N \N 55661 S.fiebrigii Solanum Solanum fiebrigii \N \N \N \N \N 55662 P.hieronymi Polylepis Polylepis hieronymi \N \N \N \N \N 55663 \N genus Hederorkis \N \N \N \N \N 55664 M.oldemanii Miconia Miconia oldemanii \N \N \N \N \N 55665 D.reticulatum Dasyphyllum Dasyphyllum reticulatum \N \N \N \N \N 55666 M.petraeum Myriophyllum Myriophyllum petraeum \N \N \N \N \N 55667 A.splendens Armeria Armeria splendens \N \N \N \N \N 55668 D.graecum Dorycnium Dorycnium graecum \N \N \N \N \N 55669 D.calciphila Diospyros Diospyros calciphila \N \N \N \N \N 55670 S.urvillei Sedum Sedum urvillei \N \N \N \N \N 55671 F.pseudovina Festuca Festuca pseudovina \N \N \N \N \N 55672 T.orientalis Tragopogon Tragopogon orientalis \N \N \N \N \N 55673 M.floridulus Miscanthus Miscanthus floridulus \N \N \N \N \N 55674 \N genus Keayodendron \N \N \N \N \N 55675 W.fragarioides Waldsteinia Waldsteinia fragarioides barren strawberry \N \N \N \N 55676 R.grahamii Ranunculus Ranunculus grahamii \N \N \N \N \N 55677 \N subspecies Babiana nana subsp. nana \N \N \N \N \N 55678 S.robustum Saccharum officinarum complex Saccharum robustum \N \N \N \N \N 55679 I.EDNA06-00050 Inga Inga sp. EDNA06-00050 \N \N \N \N \N 55680 \N genus Sphaerocardamum \N \N \N \N \N 55681 P.pearcei Phragmipedium Phragmipedium pearcei \N \N \N \N \N 55682 E.disticha Eurya Eurya disticha \N \N \N \N \N 55683 \N genus Touroulia \N \N \N \N \N 55684 B.burchellii Bulbostylis Bulbostylis burchellii \N \N \N \N \N 55685 B.spinulosa Banksia Banksia spinulosa \N \N \N \N \N 55686 I.stans Ipomoea Ipomoea stans \N \N \N \N \N 55687 M.stenopetala Monodora Monodora stenopetala \N \N \N \N \N 55688 P.calimensis Psychotria Psychotria calimensis \N \N \N \N \N 55689 C.arctioides Cousinia Cousinia arctioides \N \N \N \N \N 55690 \N genus Polycycnis \N \N \N \N \N 55691 C.11163 Croton Croton cf. olivaceus Neill 11163 \N \N \N \N \N 55692 \N genus Kefersteinia \N \N \N \N \N 55693 V.latifolia Villarsia Villarsia latifolia \N \N \N \N \N 55694 C.suecica Cornus Cornus suecica Lapland cornel \N \N \N \N 55695 \N varietas Aloe conifera var. conifera \N \N \N \N \N 55696 P.ciliolare Paphiopedilum Paphiopedilum ciliolare \N \N \N \N \N 55697 C.tiglium Croton Croton tiglium \N \N \N \N \N 55698 P.ledermannii Polyscias Polyscias ledermannii \N \N \N \N \N 55699 J.minima Junellia Junellia minima \N \N \N \N \N 55700 T.hupehensis Tilia Tilia hupehensis \N \N \N \N \N 55701 M.pycnantha Mandevilla Mandevilla pycnantha \N \N \N \N \N 55702 \N genus Chelone \N \N \N \N \N 55703 \N varietas Phragmipedium longifolium var. hartwegii \N \N \N \N \N 55704 S.baetica Staehelina Staehelina baetica \N \N \N \N \N 55705 \N subspecies Agropyron fragile subsp. sibiricum \N \N \N \N \N 55706 D.cooperi Diospyros Diospyros cooperi \N \N \N \N \N 55707 C.ruber Centranthus Centranthus ruber red valerian \N \N \N \N 55708 M.6406 Maxillaria Maxillaria sp. Jost 6406 \N \N \N \N \N 55709 \N genus Walsura \N \N \N \N \N 55710 C.procumbens Coldenia Coldenia procumbens \N \N \N \N \N 55711 S.nipponica Salvia Salvia nipponica \N \N \N \N \N 55712 \N varietas Persea americana var. drymifolia Mexican avocado \N \N \N \N 64929 \N genus Eucodonia \N \N \N \N \N 55713 E.graniticola Euphorbia Euphorbia graniticola \N \N \N \N \N 55714 D.hallii Draba Draba hallii \N \N \N \N \N 55715 V.ambiguum Vincetoxicum Vincetoxicum ambiguum \N \N \N \N \N 55716 D.chrysotoxum Dendrobium Dendrobium chrysotoxum \N \N \N \N \N 55717 G.insipida Gaultheria Gaultheria insipida \N \N \N \N \N 55718 \N genus Harpochloa \N \N \N \N \N 55719 P.fasciculaceum Pelargonium Pelargonium fasciculaceum \N \N \N \N \N 55720 \N genus Tieghemopanax \N \N \N \N \N 55721 P.tibetica Poa Poa tibetica \N \N \N \N \N 55722 I.javensis Impatiens Impatiens javensis \N \N \N \N \N 55723 G.officinale Guaiacum Guaiacum officinale \N \N \N \N \N 55724 B.segetum Bidens Bidens segetum \N \N \N \N \N 55725 C.spiralis Chionochloa Chionochloa spiralis \N \N \N \N \N 55726 C.sp. Canavalia Canavalia sp. \N \N \N \N \N 55727 S.calyculata Scorzonera Scorzonera calyculata \N \N \N \N \N 55728 P.alpina Pritzelago Pritzelago alpina \N \N \N \N \N 55729 M.1139 Massonia Massonia sp. Wetschnig 1139 \N \N \N \N \N 55730 O.caricum Onopordum Onopordum caricum \N \N \N \N \N 55731 B.balansae Balanops Balanops balansae \N \N \N \N \N 55732 \N genus Sinobambusa \N \N \N \N \N 55733 O.rani Olearia Olearia rani \N \N \N \N \N 55734 C.picrocarpus Cucumis Cucumis picrocarpus \N \N \N \N \N 55735 A.alba Amphithalea Amphithalea alba \N \N \N \N \N 55736 P.hirtzii Pitcairnia Pitcairnia hirtzii \N \N \N \N \N 55737 \N tribe Cheloneae \N \N \N \N \N 55738 S.subulata Saussurea Saussurea subulata \N \N \N \N \N 55739 A.myoporoides Anthotroche Anthotroche myoporoides \N \N \N \N \N 55740 S.saxorum Sideroxylon Sideroxylon saxorum \N \N \N \N \N 55741 S.botryophora Syagrus Syagrus botryophora \N \N \N \N \N 55742 O.auricula Oreocharis Oreocharis auricula \N \N \N \N \N 55743 P.calomeris Pichonia Pichonia calomeris \N \N \N \N \N 55744 E.cochlidium Epidendrum Epidendrum cochlidium \N \N \N \N \N 55745 \N genus Budawangia \N \N \N \N \N 55746 M.comptonii Moraea Moraea comptonii \N \N \N \N \N 55747 H.nutans Heliamphora Heliamphora nutans \N \N \N \N \N 55748 P.solimoesense Philodendron Philodendron solimoesense \N \N \N \N \N 55749 P.caspica Physoptychis Physoptychis caspica \N \N \N \N \N 55750 M.racemosa Myrcia Myrcia racemosa \N \N \N \N \N 55751 P.lineata Palicourea Palicourea lineata \N \N \N \N \N 55752 E.pseudoglobulus Eucalyptus Eucalyptus pseudoglobulus \N \N \N \N \N 55753 S.natans Sparganium Sparganium natans \N \N \N \N \N 55754 \N genus Verbena vervains \N \N \N \N 55755 \N order Geraniales \N \N \N \N \N 55756 A.cincta Angelica Angelica cincta \N \N \N \N \N 55757 F.lipskyi Ferula Ferula lipskyi \N \N \N \N \N 55758 M.sirindhorniae Magnolia Magnolia sirindhorniae \N \N \N \N \N 55759 \N genus Jarava \N \N \N \N \N 55760 \N no rank North American clade \N \N \N \N \N 55761 D.parlatorei Dieffenbachia Dieffenbachia parlatorei \N \N \N \N \N 55762 T.27350 Triosteum Triosteum sp. Boufford et al. 27350 \N \N \N \N \N 55763 P.texana Parkinsonia Parkinsonia texana Texas paloverde \N \N \N \N 55764 O.herrei Othonna Othonna herrei \N \N \N \N \N 55765 S.dorisiana Salvia Salvia dorisiana \N \N \N \N \N 55766 S.luteum Sisymbrium Sisymbrium luteum \N \N \N \N \N 55767 \N varietas Astragalus didymocarpus var. dispermus \N \N \N \N \N 55768 P.multifida Potentilla Potentilla multifida \N \N \N \N \N 55769 M.longipedicellata Micropholis Micropholis longipedicellata \N \N \N \N \N 55770 \N genus Orbivestus \N \N \N \N \N 55771 A.balfourianus Astragalus Astragalus balfourianus \N \N \N \N \N 55772 S.sylvatica Seemannia Seemannia sylvatica \N \N \N \N \N 55773 E.nuttallianus Evolvulus Evolvulus nuttallianus \N \N \N \N \N 55774 P.4057 Prismatomeris Prismatomeris sp. 1 Davis 4057 \N \N \N \N \N 55775 \N species group Pentaschistis \N \N \N \N \N 55776 B.sinensis Bournea Bournea sinensis \N \N \N \N \N 55777 A.foeniculoides Anethum Anethum foeniculoides \N \N \N \N \N 55778 \N subspecies Shorea macroptera subsp. sandakanensis \N \N \N \N \N 55779 C.hirsutus Cocculus Cocculus hirsutus \N \N \N \N \N 55780 K.orbiculata Koernickanthe Koernickanthe orbiculata \N \N \N \N \N 55781 P.luteola Primula Primula luteola \N \N \N \N \N 55782 \N genus Henleophytum \N \N \N \N \N 55783 L.maculatum Lamium Lamium maculatum spotted dead-nettle \N \N \N \N 55784 C.floribundum Cymbidium Cymbidium floribundum \N \N \N \N \N 55785 M.pudica Mirabilis Mirabilis pudica \N \N \N \N \N 55786 \N subspecies Dichelostemma capitatum subsp. capitatum \N \N \N \N \N 55787 D.leporina Dalea Dalea leporina \N \N \N \N \N 55788 R.rotundifolia Rotala Rotala rotundifolia \N \N \N \N \N 55789 \N no rank Malvaceae incertae sedis \N \N \N \N \N 55790 C.swanii Carex Carex swanii \N \N \N \N \N 55791 A.tubicina Aptandra Aptandra tubicina \N \N \N \N \N 55792 \N genus Mareya \N \N \N \N \N 55793 S.yahikoensis Sasa Sasa yahikoensis \N \N \N \N \N 55794 C.penicillata Caralluma Caralluma penicillata \N \N \N \N \N 55795 \N no rank Mediterranean clade \N \N \N \N \N 55796 O.MM-2009 Ornithoboea Ornithoboea sp. MM-2009 \N \N \N \N \N 55797 D.sarmentosa Diodia Diodia sarmentosa \N \N \N \N \N 55798 \N genus Merxmuellera \N \N \N \N \N 55799 R.salviifolia Rulingia Rulingia salviifolia \N \N \N \N \N 55800 C.microcephalum Cullen Cullen microcephalum \N \N \N \N \N 55801 L.rhytidocarpum Lepidium Lepidium rhytidocarpum \N \N \N \N \N 55802 S.cordifolium Stenosiphonium Stenosiphonium cordifolium \N \N \N \N \N 55803 C.7020 Cissus Cissus sp. 7020 \N \N \N \N \N 55804 G.mauritiana Glycosmis Glycosmis mauritiana \N \N \N \N \N 55805 H.haplostachya Haplostachys Haplostachys haplostachya \N \N \N \N \N 55806 D.codonanthum Disterigma Disterigma codonanthum \N \N \N \N \N 55807 O.americanum Ocimum Ocimum americanum American basil,hoary basil \N \N \N \N 55808 S.cespitosa Saxifraga Saxifraga cespitosa \N \N \N \N \N 55809 \N genus Plagiostyles \N \N \N \N \N 55810 F.densiflora Fumaria Fumaria densiflora \N \N \N \N \N 55811 \N genus Duseniella \N \N \N \N \N 65803 \N genus Agnorhiza \N \N \N \N \N 55812 E.0458 Epimedium Epimedium sp. Guo 0458 \N \N \N \N \N 55813 R.bureavii Rhododendron Rhododendron bureavii \N \N \N \N \N 55814 N.acerosa Nenax Nenax acerosa \N \N \N \N \N 55815 \N genus Miltonia \N \N \N \N \N 55816 P.cuencae Pachyphyllum Pachyphyllum cuencae \N \N \N \N \N 55817 V.americana Veronica Veronica americana American brooklime \N \N \N \N 55818 S.tmolea Stachys Stachys tmolea \N \N \N \N \N 55819 N.antarctica Nothofagus Nothofagus antarctica \N \N \N \N \N 55820 C.papillosum Crinum Crinum papillosum \N \N \N \N \N 55821 B.dearei Bulbophyllum Bulbophyllum dearei \N \N \N \N \N 55822 J.squarrosus Juncus Juncus squarrosus \N \N \N \N \N 55823 A.pereskiifolia Adenophora Adenophora pereskiifolia \N \N \N \N \N 55824 E.nana Ebertia Ebertia nana \N \N \N \N \N 55825 R.longifolium Rhaponticum Rhaponticum longifolium \N \N \N \N \N 55826 F.rifana Festuca Festuca rifana \N \N \N \N \N 55827 M.chrysophylla Miconia Miconia chrysophylla \N \N \N \N \N 55828 U.multifaria Uncinia Uncinia multifaria \N \N \N \N \N 55829 \N genus Olea \N \N \N \N \N 55830 A.macrocarpa Alsomitra Alsomitra macrocarpa \N \N \N \N \N 55831 H.argentina Hieronymiella Hieronymiella argentina \N \N \N \N \N 55832 N.nervosa Nothofagus Nothofagus nervosa \N \N \N \N \N 55833 H.111716 Helmontia Helmontia sp. Steyermark 111716 \N \N \N \N \N 55834 E.leucolepis Eupatorium Eupatorium leucolepis justiceweed \N \N \N \N 55835 S.vestita Stilbe Stilbe vestita \N \N \N \N \N 55836 T.ohiensis Tradescantia Tradescantia ohiensis Ohio spiderwort,blue-jacket \N \N \N \N 55837 B.wadsworthii Byrsonima Byrsonima wadsworthii \N \N \N \N \N 55838 \N genus Baphicacanthus \N \N \N \N \N 55839 A.wardii Androsace Androsace wardii \N \N \N \N \N 55840 M.forrestii Maianthemum Maianthemum forrestii \N \N \N \N \N 55841 \N genus Physostegia \N \N \N \N \N 55842 E.preissiana Eucalyptus Eucalyptus preissiana bell-fruited mallee \N \N \N \N 55843 O.coeruleum Oxypetalum Oxypetalum coeruleum \N \N \N \N \N 55844 M.sauvagei Medicago Medicago sauvagei \N \N \N \N \N 55845 R.macrostachyum Ribes Ribes macrostachyum \N \N \N \N \N 55846 L.micrantha Lockhartia Lockhartia micrantha \N \N \N \N \N 55847 T.peruvianum Tetramerium Tetramerium peruvianum \N \N \N \N \N 55848 \N subspecies Senecio lautus subsp. lanceolatus \N \N \N \N \N 55849 A.trichocarpa Actinodaphne Actinodaphne trichocarpa \N \N \N \N \N 55850 P.saxifraga Pimpinella Pimpinella saxifraga burnet saxifrage \N \N \N \N 55851 H.conica Hornstedtia Hornstedtia conica \N \N \N \N \N 55852 R.nepalensis Rubus Rubus nepalensis \N \N \N \N \N 55853 V.vinifera Vitis Vitis rupestris x Vitis vinifera \N \N \N \N \N 55854 G.lacera Gahnia Gahnia lacera \N \N \N \N \N 55855 O.torulosa Ornithocarpa Ornithocarpa torulosa \N \N \N \N \N 55856 B.violacea Batesimalva Batesimalva violacea \N \N \N \N \N 55857 S.19.10.2006 Salicornia Salicornia aff. perennans Mehregan 19.10.2006 \N \N \N \N \N 55858 C.trapezifolia Copaifera Copaifera trapezifolia \N \N \N \N \N 55859 C.menziesii Calandrinia Calandrinia menziesii \N \N \N \N \N 55860 P.tomentosa Paulownia Paulownia tomentosa \N \N \N \N \N 55861 G.angustifolia Guzmania Guzmania angustifolia \N \N \N \N \N 55862 R.parviflora Rhexia Rhexia parviflora \N \N \N \N \N 55863 V.grypoceras Viola Viola grypoceras tachitsubo-sumire \N \N \N \N 55864 A.serpens Anagallis Anagallis serpens \N \N \N \N \N 55865 \N genus Hastingsia \N \N \N \N \N 55866 P.petiolaris Protea Protea petiolaris \N \N \N \N \N 55867 H.hermanniifolia Hibbertia Hibbertia hermanniifolia \N \N \N \N \N 55868 S.alsine Stellaria Stellaria alsine \N \N \N \N \N 55869 V.marginata Vitellariopsis Vitellariopsis marginata \N \N \N \N \N 55870 V.chamissoniana Viola Viola chamissoniana \N \N \N \N \N 55871 C.foermeranus Cenchrus Cenchrus foermeranus \N \N \N \N \N 55872 H.brasiliensis Hortia Hortia brasiliensis \N \N \N \N \N 55873 \N varietas Coptis chinensis var. brevisepala \N \N \N \N \N 55874 L.gallica Logfia Logfia gallica \N \N \N \N \N 55875 M.alba Macbridea Macbridea alba \N \N \N \N \N 55876 C.axillare Clinopodium Clinopodium axillare \N \N \N \N \N 55877 \N genus Chamaecytisus \N \N \N \N \N 55878 P.erinacea Pleurothallis Pleurothallis erinacea \N \N \N \N \N 55879 P.muscarioides Primula Primula muscarioides \N \N \N \N \N 55880 S.hintonii Sedum Sedum hintonii \N \N \N \N \N 55881 B.greyi Brachyglottis Brachyglottis greyi \N \N \N \N \N 55882 L.YEM-4340 Ledebouria Ledebouria aff. revoluta YEM-4340 \N \N \N \N \N 55883 T.angustilobum Typhonium Typhonium angustilobum \N \N \N \N \N 55884 T.ahouai Thevetia Thevetia ahouai \N \N \N \N \N 55885 \N varietas Actinidia glaucophylla var. glaucophylla \N \N \N \N \N 55886 H.cominsii Hoya Hoya cominsii \N \N \N \N \N 55887 S.kuranda Syzygium Syzygium kuranda \N \N \N \N \N 55888 P.glandulosa Pentaschistis Pentameris glandulosa \N \N \N \N \N 55889 Z.benthamii Zygostelma Zygostelma benthamii \N \N \N \N \N 55890 A.5579 Apinagia Apinagia cf. rangiferina CTP 5579 \N \N \N \N \N 55891 S.vulgaris Syringa Syringa vulgaris common lilac \N \N \N \N 55892 \N genus Monotheca \N \N \N \N \N 55893 \N genus Streptanthella \N \N \N \N \N 55894 S.vasta Salvia Salvia vasta \N \N \N \N \N 55895 M.scabrum Melasma Melasma scabrum \N \N \N \N \N 55896 D.pumilio Dysphania Dysphania pumilio \N \N \N \N \N 55897 T.dioica Trichosanthes Trichosanthes dioica palwal,pointed gourd \N \N \N \N 55898 A.werneri Anthemis Anthemis werneri \N \N \N \N \N 55899 \N subspecies Potamogeton sibiricus subsp. subsibiricus \N \N \N \N \N 55900 M.torreyi Muhlenbergia Muhlenbergia torreyi \N \N \N \N \N 55901 \N subspecies Rhipsalis floccosa subsp. floccosa \N \N \N \N \N 55902 \N genus Jaegeria \N \N \N \N \N 55903 \N genus Sinclairia \N \N \N \N \N 55904 \N genus Bergerocactus \N \N \N \N \N 55905 \N tribe Indofevilleeae \N \N \N \N \N 55906 \N varietas Symplocos prunifolia var. prunifolia \N \N \N \N \N 55907 \N varietas Lewisia columbiana var. columbiana \N \N \N \N \N 55908 R.vaseyi Rhododendron Rhododendron vaseyi \N \N \N \N \N 55909 M.ceramicarpa Miconia Miconia ceramicarpa \N \N \N \N \N 55910 \N varietas Froelichia interrupta var. alata \N \N \N \N \N 55911 O.wightiana Osyris Osyris wightiana \N \N \N \N \N 55912 \N genus Kogelbergia \N \N \N \N \N 55913 L.banksiana Luzula Luzula banksiana \N \N \N \N \N 55914 G.moorcroftiana Gentianella Gentianella moorcroftiana \N \N \N \N \N 55915 H.litwinowii Hyacinthus Hyacinthus litwinowii \N \N \N \N \N 55916 C.dioicus Croton Croton dioicus grassland croton,rosval \N \N \N \N 55917 D.megacalyx Daviesia Daviesia megacalyx \N \N \N \N \N 55918 A.standleyanum Astrocaryum Astrocaryum standleyanum \N \N \N \N \N 55919 \N subspecies Cornus hongkongensis subsp. melanotricha \N \N \N \N \N 55920 \N order Dioscoreales \N \N \N \N \N 55921 \N genus Grabowskia \N \N \N \N \N 55922 V.barclayana Vriesea Vriesea barclayana \N \N \N \N \N 55923 G.parviflora Galinsoga Galinsoga parviflora \N \N \N \N \N 55924 P.glauca Prosthechea Prosthechea glauca \N \N \N \N \N 55925 D.integer Dianthus Dianthus integer \N \N \N \N \N 55926 G.montis-cole Grevillea Grevillea montis-cole \N \N \N \N \N 55927 S.pachyneura Saussurea Saussurea pachyneura \N \N \N \N \N 55928 \N subtribe Baeriinae \N \N \N \N \N 55929 T.acaule Trifolium Trifolium acaule \N \N \N \N \N 55930 C.nelsonii Combretum Combretum nelsonii \N \N \N \N \N 55931 O.ovatifolia Ossaea Ossaea ovatifolia \N \N \N \N \N 55932 M.crispata Monodora Monodora crispata \N \N \N \N \N 55933 C.cozumeliensis Cuscuta Cuscuta cozumeliensis \N \N \N \N \N 55934 C.congensis Coffea Coffea congensis \N \N \N \N \N 55935 R.numidica Rupicapnos Rupicapnos numidica \N \N \N \N \N 55936 H.subaxillaris Heterotheca Heterotheca subaxillaris \N \N \N \N \N 55937 C.astragalina Cascaronia Cascaronia astragalina \N \N \N \N \N 55938 S.artemisioides Senna Senna artemisioides \N \N \N \N \N 55939 C.robustispina Coryphantha Coryphantha robustispina \N \N \N \N \N 55940 \N subspecies Sisyrinchium macrocarpum subsp. laetum \N \N \N \N \N 55941 S.palustris Stachys Stachys palustris \N \N \N \N \N 55942 L.pallida Leandra Leandra pallida \N \N \N \N \N 55943 S.llaveana Schiedeella Schiedeella llaveana \N \N \N \N \N 55944 K.spinosa Koeberlinia Koeberlinia spinosa \N \N \N \N \N 55945 \N genus Bathysa \N \N \N \N \N 55946 G.bulbifera Gagea Gagea bulbifera \N \N \N \N \N 55947 N.picta Nasa Nasa picta \N \N \N \N \N 55948 P.davidsonii Pteryxia Pteryxia davidsonii \N \N \N \N \N 55949 P.echinocephalus Ptilostemon Ptilostemon echinocephalus \N \N \N \N \N 55950 B.negrilensis Broughtonia Broughtonia negrilensis \N \N \N \N \N 55951 \N subspecies Ribes malvaceum subsp. malvaceum \N \N \N \N \N 55952 M.89 Mimosa Mimosa cf. polycarpa var. polycarpa Eastwood 89 \N \N \N \N \N 55953 G.varius Gladiolus Gladiolus varius \N \N \N \N \N 55954 V.latifolium Veratrum Veratrum latifolium \N \N \N \N \N 55955 M.554 Malanea Malanea sp. Persson 554 \N \N \N \N \N 55956 C.usitatus Calamus Calamus usitatus \N \N \N \N \N 55957 C.schliebenii Commelina Commelina schliebenii \N \N \N \N \N 55958 P.friedrichsthalii Piper Piper friedrichsthalii \N \N \N \N \N 55959 \N varietas Lupinus microcarpus var. densiflorus \N \N \N \N \N 55960 S.tonkinensis Stewartia Stewartia tonkinensis \N \N \N \N \N 55961 P.adenostyloides Parasenecio Parasenecio adenostyloides \N \N \N \N \N 55962 P.tropenbosii Pseudomonotes Pseudomonotes tropenbosii \N \N \N \N \N 55963 A.nigra Alpinia Alpinia nigra hei guo shan jiang \N \N \N \N 55964 \N genus Acanthosyris \N \N \N \N \N 55965 A.natalitius Acridocarpus Acridocarpus natalitius \N \N \N \N \N 55966 G.lucidum Galium Galium lucidum \N \N \N \N \N 55967 A.barteri Anubias Anubias barteri \N \N \N \N \N 55968 M.cochal Myrtillocactus Myrtillocactus cochal \N \N \N \N \N 55969 V.elatum Viburnum Viburnum elatum \N \N \N \N \N 55970 A.bellidiflorus Acrodon Acrodon bellidiflorus \N \N \N \N \N 55971 M.autumnalis Mandragora Mandragora autumnalis \N \N \N \N \N 55972 B.3637 Bouvardia Bouvardia sp. Torres & Tenorio 3637 \N \N \N \N \N 55973 L.rugelii Lasiacis Lasiacis rugelii \N \N \N \N \N 55976 O.jordalii Oxytropis Oxytropis jordalii \N \N \N \N \N 55977 K.argentea Krameria Krameria argentea \N \N \N \N \N 55978 S.menispermoidea Smilax Smilax menispermoidea \N \N \N \N \N 55979 U.hispida Utricularia Utricularia hispida \N \N \N \N \N 55980 R.L Raoulia Raoulia sp. L \N \N \N \N \N 55981 C.concolor Cousinia Cousinia concolor \N \N \N \N \N 55982 P.linkiana Prosthechea Prosthechea linkiana \N \N \N \N \N 55983 L.pseudohyssopifolium Lepidium Lepidium pseudohyssopifolium \N \N \N \N \N 55984 \N subfamily Grewioideae \N \N \N \N \N 55985 E.boissieri Echinospartum Echinospartum boissieri \N \N \N \N \N 55986 C.SH-2010 Cassia Cassia sp. SH-2010 \N \N \N \N \N 55987 Q.lobata Quincula Quincula lobata \N \N \N \N \N 55988 C.forbesii Crinum Crinum forbesii \N \N \N \N \N 55989 L.glauca Lindera Lindera glauca \N \N \N \N \N 55990 E.reptilis Echinodorus Echinodorus reptilis \N \N \N \N \N 55991 S.nutans Sideritis Sideritis nutans \N \N \N \N \N 55992 S.pentandra Salix Salix pentandra bay willow \N \N \N \N 55993 \N genus Echinocystis \N \N \N \N \N 55994 D.wallichii Dioscorea Dioscorea wallichii \N \N \N \N \N 55995 L.septentrionalis Leptosiphon Leptosiphon septentrionalis \N \N \N \N \N 55996 F.arundinacea Festuca Festuca arundinacea tall fescue \N \N \N \N 55997 V.spinosa Vella Vella spinosa \N \N \N \N \N 55998 C.longipedunculatus Corchorus Corchorus longipedunculatus \N \N \N \N \N 55999 R.humblotii Razafimandimbisonia Razafimandimbisonia humblotii \N \N \N \N \N 56000 P.lobata Paramignya Paramignya lobata \N \N \N \N \N 56001 \N genus Hymenaea \N \N \N \N \N 56002 C.pilosus Cordylanthus Cordylanthus pilosus \N \N \N \N \N 56003 \N genus Steptorhamphus \N \N \N \N \N 56004 M.collina Metrosideros Metrosideros collina \N \N \N \N \N 56005 J.riparia Jubelina Jubelina riparia \N \N \N \N \N 56006 D.hastata Ditassa Ditassa hastata \N \N \N \N \N 56007 W.denticulata Wolffiella Wolffiella denticulata \N \N \N \N \N 56008 H.plantaginea Hosta Hosta plantaginea August lily,yusan lily \N \N \N \N 56009 I.tweedyi Ivesia Ivesia tweedyi \N \N \N \N \N 56010 C.edithae Camellia Camellia edithae \N \N \N \N \N 56011 M.involucrata Macaranga Macaranga involucrata \N \N \N \N \N 56012 H.linearis Hovea Hovea linearis \N \N \N \N \N 56013 \N genus Otoba \N \N \N \N \N 56014 H.dregeana Heliophila Heliophila dregeana \N \N \N \N \N 56015 P.modesta Potentilla Potentilla modesta \N \N \N \N \N 56016 G.cordifolia Geophila Geophila cordifolia \N \N \N \N \N 56017 \N genus Pseudolotus \N \N \N \N \N 56018 R.helenae Renealmia Renealmia helenae \N \N \N \N \N 56019 V.gigantea Vernonia Vernonia gigantea \N \N \N \N \N 56020 F.triflora Festuca Festuca triflora \N \N \N \N \N 56021 \N subspecies Ranunculus crithmifolius subsp. crithmifolius \N \N \N \N \N 56022 M.cymbalaria Momordica Momordica cymbalaria \N \N \N \N \N 56023 \N varietas Tricalysia junodii var. junodii \N \N \N \N \N 56024 I.rubroglandulosa Indigofera Indigofera rubroglandulosa \N \N \N \N \N 56025 G.capitata Gilia Gilia capitata \N \N \N \N \N 56026 S.repens Scaevola Scaevola repens \N \N \N \N \N 56027 Z.pubinervis Ziziphus Ziziphus pubinervis \N \N \N \N \N 56028 E.arcuata Erica Erica arcuata \N \N \N \N \N 56029 P.crassipes Poa Poa crassipes \N \N \N \N \N 56030 S.lumutensis Shorea Shorea lumutensis \N \N \N \N \N 56031 B.alicida Begonia Begonia alicida \N \N \N \N \N 56032 C.mairei Camellia Camellia mairei \N \N \N \N \N 56033 E.SMAma003 Endlicheria Endlicheria sp. 2 SMAma003 \N \N \N \N \N 56034 M.obovata Mimusops Mimusops obovata red milkwood \N \N \N \N 56035 \N subspecies Aspalathus batodes subsp. spinulifolia \N \N \N \N \N 56036 T.canescens Tetradymia Tetradymia canescens \N \N \N \N \N 56037 \N genus Pleuranthodes \N \N \N \N \N 56038 W.membranifolia Warneckea Warneckea membranifolia \N \N \N \N \N 56039 \N subspecies Protium divaricatum subsp. krukoffii \N \N \N \N \N 56040 P.alleghaniensis Prunus Prunus alleghaniensis Allegheny plum \N \N \N \N 56041 T.longipes Ternstroemia Ternstroemia longipes \N \N \N \N \N 56042 \N subspecies Iris spuria subsp. spuria \N \N \N \N \N 56043 H.inflata Hoya Hoya inflata \N \N \N \N \N 56044 \N genus Torrenticola \N \N \N \N \N 56045 A.affinis Acrotriche Acrotriche affinis \N \N \N \N \N 56046 S.hoffmannii Sanicula Sanicula hoffmannii Hoffmann's blacksnakeroot \N \N \N \N 56047 P.glaberrima Phlox Phlox glaberrima \N \N \N \N \N 56048 \N genus Oldenlandia \N \N \N \N \N 56049 P.triphylla Palicourea Palicourea triphylla \N \N \N \N \N 56050 I.manaharensis Impatiens Impatiens manaharensis \N \N \N \N \N 56051 N.suzannae Nesogordonia Nesogordonia suzannae \N \N \N \N \N 56052 R.alsia Rhodiola Rhodiola alsia \N \N \N \N \N 56053 \N genus Triplochiton \N \N \N \N \N 56054 S.imbricata Strobilanthes Strobilanthes imbricata \N \N \N \N \N 56055 T.gardneri Tillandsia Tillandsia gardneri \N \N \N \N \N 56056 O.bracteolatum Otholobium Otholobium bracteolatum \N \N \N \N \N 56057 M.fragrans Montanoa Montanoa fragrans \N \N \N \N \N 56058 B.chrysogonum Bongardia Bongardia chrysogonum \N \N \N \N \N 56059 L.parviflorus Lotus Lotus parviflorus \N \N \N \N \N 56060 P.glandulosa Polygala Polygala glandulosa \N \N \N \N \N 56061 C.peduncularis Cottonia Cottonia peduncularis \N \N \N \N \N 56062 A.thinicola Arachnorchis Arachnorchis thinicola \N \N \N \N \N 56063 N.aequatoriana Nasa Nasa aequatoriana \N \N \N \N \N 56064 T.535 unclassified Taraxacum Taraxacum (sect. Obovata) sp. 535 \N \N \N \N \N 56065 L.chalandei Liparis Liparis chalandei \N \N \N \N \N 56066 C.venenifera Cerbera Cerbera venenifera \N \N \N \N \N 56067 T.doianum Tripterygium Tripterygium doianum \N \N \N \N \N 56068 Z.mucronata Zehneria Zehneria mucronata \N \N \N \N \N 56069 M.delavayi Megacarpaea Megacarpaea delavayi \N \N \N \N \N 56070 A.ovata Abildgaardia Abildgaardia ovata \N \N \N \N \N 56071 \N genus Eustoma \N \N \N \N \N 56072 E.grandis Eucalyptus Eucalyptus urophylla x Eucalyptus grandis \N \N \N \N \N 70141 \N genus Halosciastrum \N \N \N \N \N 56073 E.s.n. Elleanthus Elleanthus sp. Szlachetko s.n. \N \N \N \N \N 56074 \N varietas Carpolepis laurifolia var. demonstrans \N \N \N \N \N 56075 \N genus Amsonia \N \N \N \N \N 56076 T.jasminiflora Tricalysia Tricalysia jasminiflora \N \N \N \N \N 56077 H.multifida Hydrostachys Hydrostachys multifida \N \N \N \N \N 56078 M.kinabaluensis Macaranga Macaranga kinabaluensis \N \N \N \N \N 56079 J.BAC-2010 unclassified Juncaceae Juncaceae sp. A13 BAC-2010 \N \N \N \N \N 56080 G.platyphyllus Galanthus Galanthus platyphyllus \N \N \N \N \N 56081 C.usambarica Cleome Cleome usambarica \N \N \N \N \N 56082 L.eichleri Leandra Leandra eichleri \N \N \N \N \N 56083 \N genus Siliquamomum \N \N \N \N \N 56084 \N genus Ledenbergia \N \N \N \N \N 56085 L.alata Loxostylis Loxostylis alata \N \N \N \N \N 56086 \N genus Ixeris \N \N \N \N \N 56087 T.microphyllum Tripterospermum Tripterospermum microphyllum \N \N \N \N \N 56088 D.filicornis Disa Disa filicornis \N \N \N \N \N 56089 E.glumiflora Erica Erica glumiflora \N \N \N \N \N 56090 P.glabrescens Piper Piper glabrescens \N \N \N \N \N 56091 \N varietas Sideritis oroteneriffae var. oroteneriffae \N \N \N \N \N 56092 T.barbigerum Trifolium Trifolium barbigerum \N \N \N \N \N 56093 D.nova-anglica Daviesia Daviesia nova-anglica \N \N \N \N \N 56094 S.obscura Shorea Shorea obscura \N \N \N \N \N 56095 P.anisophylla Paradrymonia Paradrymonia anisophylla \N \N \N \N \N 56096 G.macrocarpa Glandonia Glandonia macrocarpa \N \N \N \N \N 56097 H.surattensis Hibiscus Hibiscus surattensis \N \N \N \N \N 56098 G.zollingeri Gentiana Gentiana zollingeri \N \N \N \N \N 56099 T.pinnata Taeckholmia Taeckholmia pinnata \N \N \N \N \N 56100 B.syringifolia Bauhinia Bauhinia syringifolia \N \N \N \N \N 56101 T.elliptica Tarlmounia Tarlmounia elliptica \N \N \N \N \N 56102 E.breviscapus Erigeron Erigeron breviscapus \N \N \N \N \N 56103 O.psilopoda Oxalis Oxalis psilopoda \N \N \N \N \N 56104 S.petraeus Sonderothamnus Sonderothamnus petraeus \N \N \N \N \N 56105 M.australis Malaccotristicha Malaccotristicha australis \N \N \N \N \N 56106 B.erecta Boerhavia Boerhavia erecta \N \N \N \N \N 56107 J.wilburii Jubelina Jubelina wilburii \N \N \N \N \N 56108 I.subdecolorata Iris Iris subdecolorata \N \N \N \N \N 56109 G.pharnacioides Gisekia Gisekia pharnacioides \N \N \N \N \N 56110 G.urbanum Geum Geum urbanum \N \N \N \N \N 56111 Y.baileyi Yucca Yucca baileyi Navajo yucca,alpine yucca \N \N \N \N 56112 L.guaraniticus Lupinus Lupinus guaraniticus \N \N \N \N \N 56113 B.viridiflora Bocoa Bocoa viridiflora \N \N \N \N \N 56114 L.maritima Lobularia Lobularia maritima sweet-alyssum \N \N \N \N 56115 P.tenellum Panicum Panicum tenellum \N \N \N \N \N 56116 S.oxypetalum Sedum Sedum oxypetalum \N \N \N \N \N 56117 I.panicoides Ichnanthus Ichnanthus panicoides \N \N \N \N \N 56118 S.monandra Stephanachne Stephanachne monandra \N \N \N \N \N 56119 B.coulteri Boerhavia Boerhavia coulteri \N \N \N \N \N 56120 P.parviflora Pultenaea Pultenaea parviflora \N \N \N \N \N 56121 R.californica Rosa Rosa californica \N \N \N \N \N 56122 \N subspecies Cynanchum leucanthum subsp. leucanthum \N \N \N \N \N 56123 P.gracilis Prunus Prunus gracilis Oklahoma plum \N \N \N \N 56124 P.15 Polysphaeria Polysphaeria sp. Mvungi 15 \N \N \N \N \N 56125 Z.dielsii Zabelia Zabelia dielsii \N \N \N \N \N 56126 \N varietas Aristida cumingiana var. cumingiana \N \N \N \N \N 56127 C.cuchumatanensis Carex Carex cuchumatanensis \N \N \N \N \N 56128 \N varietas Prunus mume var. pleiocarpa \N \N \N \N \N 56129 S.mahoriense Solanum Solanum mahoriense \N \N \N \N \N 56130 B.ecklonii Berzelia Berzelia ecklonii \N \N \N \N \N 56131 L.goetzei Lotus Lotus goetzei \N \N \N \N \N 56132 H.meliflua Hoya Hoya meliflua \N \N \N \N \N 56133 P.griffithianum Pimelodendron Pimelodendron griffithianum \N \N \N \N \N 56134 \N genus Ptilostemon \N \N \N \N \N 56135 S.staufferana Schefflera Schefflera staufferana \N \N \N \N \N 56136 H.villosa Hermas Hermas villosa \N \N \N \N \N 56137 E.gordonii Engomegoma Engomegoma gordonii \N \N \N \N \N 56138 H.hemistemon Herniaria Herniaria hemistemon \N \N \N \N \N 56139 C.erythroxyloides Croton Croton erythroxyloides \N \N \N \N \N 56140 \N tribe Dichondreae \N \N \N \N \N 56141 M.segetalis Melilotus Melilotus segetalis \N \N \N \N \N 56142 S.46 Solanum Solanum sp. Elder 46 \N \N \N \N \N 56143 \N genus Dielsiothamnus \N \N \N \N \N 56144 A.burkei Acacia Acacia burkei \N \N \N \N \N 56145 T.pretiosa Tillandsia Tillandsia pretiosa \N \N \N \N \N 56146 C.hamersleyana Corymbia Corymbia hamersleyana \N \N \N \N \N 56147 P.lessonii Pseudopanax Pseudopanax lessonii \N \N \N \N \N 56148 S.AK284496 Schoenus Schoenus aff. pauciflorus AK284496 \N \N \N \N \N 56149 A.hierochuntica Anastatica Anastatica hierochuntica \N \N \N \N \N 56150 C.EHR-2007 Climacoptera Climacoptera sp. EHR-2007 \N \N \N \N \N 56151 B.chilensis Berberis Berberis chilensis \N \N \N \N \N 56152 \N subspecies Genista sylvestris subsp. sylvestris \N \N \N \N \N 56153 M.melanocarpa Mimosa Mimosa melanocarpa \N \N \N \N \N 56154 L.13834 Lasiocarpus Lasiocarpus sp. Anderson 13834 \N \N \N \N \N 56155 L.praestabilis Lupinus Lupinus praestabilis \N \N \N \N \N 56156 I.tenuistipula Inga Inga tenuistipula \N \N \N \N \N 56157 P.cabulica Pyramidoptera Pyramidoptera cabulica \N \N \N \N \N 56158 E.dasyanthus Echinops Echinops dasyanthus \N \N \N \N \N 56159 A.heterophylla Agoseris Agoseris heterophylla \N \N \N \N \N 56160 \N genus Paysonia \N \N \N \N \N 56161 \N subspecies Polanisia dodecandra subsp. dodecandra \N \N \N \N \N 56162 M.vespertina Moraea Moraea vespertina \N \N \N \N \N 56163 M.oaxacana Manihot Manihot oaxacana \N \N \N \N \N 56164 \N varietas Potentilla parvifolia var. hypoleuca \N \N \N \N \N 56165 \N subspecies Helianthus niveus subsp. tephrodes \N \N \N \N \N 56166 T.dioicum Thalictrum Thalictrum dioicum early meadow-rue,quicksilver-weed \N \N \N \N 56167 P.lophantha Paraserianthes Paraserianthes lophantha \N \N \N \N \N 56168 \N genus Homalospermum \N \N \N \N \N 56169 G.brachyanthera Globba Globba brachyanthera \N \N \N \N \N 56170 D.DS14494_JM1595 Desmanthus Desmanthus sp. DS14494_JM1595 \N \N \N \N \N 56171 \N genus Dichotomanthes \N \N \N \N \N 56172 P.calanense Protium Protium calanense \N \N \N \N \N 56173 O.tetraphylla Oxalis Oxalis tetraphylla \N \N \N \N \N 56174 R.493 Richterago Richterago sp. Roque 493 \N \N \N \N \N 56175 C.grisea Carex Carex grisea \N \N \N \N \N 56176 \N varietas Ilex maximowicziana var. kanehirae \N \N \N \N \N 56177 M.heyderi Mammillaria Mammillaria heyderi \N \N \N \N \N 56178 E.triloba Elettariopsis Elettariopsis triloba \N \N \N \N \N 56179 E.excavata Erica Erica excavata \N \N \N \N \N 56180 \N genus Cyrtorhyncha \N \N \N \N \N 56181 L.arenarius Leymus Leymus arenarius \N \N \N \N \N 56182 A.cavaleriei Asteropyrum Asteropyrum cavaleriei \N \N \N \N \N 56183 O.stubbei Oenothera Oenothera stubbei \N \N \N \N \N 56184 P.crassifolium Pittosporum Pittosporum crassifolium \N \N \N \N \N 56185 \N genus Tinomiscium \N \N \N \N \N 56186 P.maderaspatensis Phyllanthus Phyllanthus maderaspatensis \N \N \N \N \N 56187 S.densifolia Scrophularia Scrophularia densifolia \N \N \N \N \N 56188 M.reflexa Moraea Moraea reflexa \N \N \N \N \N 56189 P.nuristanica Picris Picris nuristanica \N \N \N \N \N 56190 \N genus Borismene \N \N \N \N \N 56191 A.maximiliana Aphelandra Aphelandra maximiliana \N \N \N \N \N 56192 H.koreana Heloniopsis Heloniopsis koreana \N \N \N \N \N 56193 \N subspecies Primula dryadifolia subsp. dryadifolia \N \N \N \N \N 56194 Z.africana Zanha Zanha africana \N \N \N \N \N 56195 G.999 Gaertnera Gaertnera sp. Malcomber 999 \N \N \N \N \N 56196 P.cornuta Polygala Polygala cornuta \N \N \N \N \N 56197 C.venosa Coccoloba Coccoloba venosa \N \N \N \N \N 56198 A.230 Alloteropsis Alloteropsis sp. Hodkinson 230 \N \N \N \N \N 56199 S.minima Soldanella Soldanella minima \N \N \N \N \N 56200 F.eximia Ficus Ficus eximia \N \N \N \N \N 56202 P.SH-2010 Pristiglottis Pristiglottis sp. SH-2010 \N \N \N \N \N 56203 \N genus Margaritaria \N \N \N \N \N 56204 A.coccinea Ammannia Ammannia coccinea toothcup \N \N \N \N 56205 R.arundanum Rhodanthemum Rhodanthemum arundanum \N \N \N \N \N 56206 C.panormitana Centaurea Centaurea panormitana \N \N \N \N \N 56207 \N genus Rigiopappus \N \N \N \N \N 56208 F.jacens Fuertesimalva Fuertesimalva jacens \N \N \N \N \N 56209 B.hypoleuca Blepharandra Blepharandra hypoleuca \N \N \N \N \N 56210 R.polycarpa Ruppia Ruppia polycarpa \N \N \N \N \N 56211 P.daintreanum Pharochilum Pharochilum daintreanum \N \N \N \N \N 56212 P.otophorum Piper Piper otophorum \N \N \N \N \N 56213 B.latifolia Blumenbachia Blumenbachia latifolia \N \N \N \N \N 56214 C.salutaris Croton Croton salutaris \N \N \N \N \N 56215 \N genus Paronychia \N \N \N \N \N 56216 \N genus Denmoza \N \N \N \N \N 56217 H.sempervirens Helictotrichon Helictotrichon sempervirens \N \N \N \N \N 56218 R.vernicosum Rhytidophyllum Rhytidophyllum vernicosum \N \N \N \N \N 56219 A.regismontana Arctostaphylos Arctostaphylos regismontana \N \N \N \N \N 56220 O.gortynia Ophrys Ophrys gortynia \N \N \N \N \N 56221 \N genus Valeriana \N \N \N \N \N 56222 P.oblongatum Pelargonium Pelargonium oblongatum \N \N \N \N \N 56223 P.madagascariensis Pilgerina Pilgerina madagascariensis \N \N \N \N \N 56224 \N forma Gomphrena celosioides f. aureiflora \N \N \N \N \N 56225 L.laxus Leptocarpus Leptocarpus laxus \N \N \N \N \N 56226 P.papillosa Pseudoclausia Pseudoclausia papillosa \N \N \N \N \N 56227 F.NF-L Forsythia Forsythia sp. NF-L \N \N \N \N \N 56228 \N genus Gynoxys \N \N \N \N \N 56229 G.thoreliana Gagnepainia Gagnepainia thoreliana \N \N \N \N \N 56230 M.GW2420 Myristica Myristica sp. 1 GW2420 \N \N \N \N \N 56231 \N varietas Sarcocornia natalensis var. natalensis \N \N \N \N \N 56232 L.alfredii Livistona Livistona alfredii \N \N \N \N \N 56233 A.aromatica Anisotome Anisotome aromatica \N \N \N \N \N 56234 M.crispiseta Muhlenbergia Muhlenbergia crispiseta \N \N \N \N \N 56235 L.officinale Levisticum Levisticum officinale \N \N \N \N \N 56236 \N genus Chlorocrambe \N \N \N \N \N 56237 P.incanus Paepalanthus Paepalanthus incanus \N \N \N \N \N 56238 H.moerenhoutiana Hernandia Hernandia moerenhoutiana \N \N \N \N \N 56239 S.flahaultii Solanum Solanum flahaultii \N \N \N \N \N 56240 S.oreophila Salsola Salsola oreophila \N \N \N \N \N 56241 P.rhombocarpa Psychotria Psychotria rhombocarpa \N \N \N \N \N 56242 H.allanii Hoheria Hoheria x allanii \N \N \N \N \N 56243 V.belingana Virectaria Virectaria belingana \N \N \N \N \N 56244 H.gigantha Hemsleya Hemsleya gigantha \N \N \N \N \N 56245 S.2786 unclassified Sapotaceae Sapotaceae sp. Munzinger 2786 \N \N \N \N \N 56246 C.multicaulis Crassula Crassula multicaulis \N \N \N \N \N 56247 V.elongata Vetiveria Vetiveria elongata \N \N \N \N \N 56248 I.oligantha Ixora Ixora oligantha \N \N \N \N \N 56249 C.calathiformis Castanopsis Castanopsis calathiformis \N \N \N \N \N 56250 E.sepulcralis Eucalyptus Eucalyptus sepulcralis blue weeping gum \N \N \N \N 56251 \N family Schisandraceae \N \N \N \N \N 56252 A.monacanthus Arctopus Arctopus monacanthus \N \N \N \N \N 56253 G.gracei Glycine Glycine gracei \N \N \N \N \N 56254 P.malvifolia Pericallis Pericallis malvifolia \N \N \N \N \N 56255 H.fruticulosa Hemigraphis Hemigraphis fruticulosa \N \N \N \N \N 56256 J.gonzalezii Justicia Justicia gonzalezii \N \N \N \N \N 56257 M.tetragona Mesomelaena Mesomelaena tetragona \N \N \N \N \N 56258 T.candida Trichogyne Trichogyne candida \N \N \N \N \N 56259 \N varietas Didymocarpus insulsus var. payapensis \N \N \N \N \N 56260 B.utilis Betula Betula utilis Himalayan birch,bhojpatra,cao pi hua \N \N \N \N 56261 S.liguliloba Salvia Salvia liguliloba \N \N \N \N \N 56262 C.senta Carex Carex senta \N \N \N \N \N 56263 K.myosuroides Kobresia Kobresia myosuroides \N \N \N \N \N 56264 S.xinguensis Strychnos Strychnos xinguensis \N \N \N \N \N 56265 \N genus Psammosilene \N \N \N \N \N 56266 \N genus Picardaea \N \N \N \N \N 56267 O.vulgare Ornithoglossum Ornithoglossum vulgare \N \N \N \N \N 56268 P.deflexa Phyllodoce Phyllodoce deflexa \N \N \N \N \N 56269 N.incana Nolana Nolana incana \N \N \N \N \N 56270 I.histrioides Iris Iris histrioides \N \N \N \N \N 56271 A.kelleri Aristida Aristida kelleri \N \N \N \N \N 56272 C.phillipsii Cliffortia Cliffortia phillipsii \N \N \N \N \N 56273 P.lata Parsonsia Parsonsia lata \N \N \N \N \N 56274 \N genus Galeottiella \N \N \N \N \N 56275 B.dichromosomatica Brachyscome Brachyscome dichromosomatica \N \N \N \N \N 56276 \N genus Rhizanthella \N \N \N \N \N 56277 E.galalonensis Eugenia Eugenia galalonensis \N \N \N \N \N 56278 S.reptans Solanum Solanum reptans \N \N \N \N \N 56279 T.cerifera Tabernaemontana Tabernaemontana cerifera \N \N \N \N \N 56280 P.nidularia Phyllostachys Phyllostachys nidularia broom bamboo \N \N \N \N 56281 \N family Dilleniaceae \N \N \N \N \N 56282 R.racemosa Rhizophora Rhizophora racemosa \N \N \N \N \N 56283 S.gympiense Solanum Solanum gympiense \N \N \N \N \N 56284 \N subspecies Hordeum murinum subsp. glaucum \N \N \N \N \N 56285 J.seseloides Johreniopsis Johreniopsis seseloides \N \N \N \N \N 56286 M.rubra Maidenia Maidenia rubra \N \N \N \N \N 56287 P.pygmaea Puya Puya pygmaea \N \N \N \N \N 56288 E.calyptrata Euphorbia Euphorbia calyptrata \N \N \N \N \N 56289 M.surinamensis Mostuea Mostuea surinamensis \N \N \N \N \N 56290 O.nuristanica Ononis Ononis nuristanica \N \N \N \N \N 56291 P.spicatus Pilocarpus Pilocarpus spicatus \N \N \N \N \N 56292 C.metcalfiana Cryptocarya Cryptocarya metcalfiana \N \N \N \N \N 56293 A.armeniaca Althaea Althaea armeniaca \N \N \N \N \N 56294 C.filicina Carex Carex filicina \N \N \N \N \N 56295 P.doroteae Pentaplaris Pentaplaris doroteae \N \N \N \N \N 56296 C.elongatus Calorophus Calorophus elongatus \N \N \N \N \N 56297 F.semivestita Ficus Ficus semivestita \N \N \N \N \N 56298 T.2350 Telipogon Telipogon sp. Whitten 2350 \N \N \N \N \N 66094 \N genus Carpolyza \N \N \N \N \N 56299 F.acuminata Flabellariopsis Flabellariopsis acuminata \N \N \N \N \N 56300 B.chamaephyton Banksia Banksia chamaephyton \N \N \N \N \N 56301 E.glaberrimus Elymus Elymus glaberrimus \N \N \N \N \N 56302 P.polymorphum Pseudostachyum Pseudostachyum polymorphum \N \N \N \N \N 56303 E.celata Euphorbia Euphorbia celata \N \N \N \N \N 56304 E.Esp21 Elleanthus Elleanthus sp. Esp21 \N \N \N \N \N 56305 M.627 Megastylis Megastylis sp. Munzinger & McPherson 627 \N \N \N \N \N 56306 H.reticulata Helicia Helicia reticulata \N \N \N \N \N 56307 A.Gomantong Alocasia Alocasia sp. Gomantong \N \N \N \N \N 56308 R.victoriana Richea Richea victoriana \N \N \N \N \N 56309 P.eerwah Pouteria Pouteria eerwah \N \N \N \N \N 56310 L.suffruticosa Ludwigia Ludwigia suffruticosa \N \N \N \N \N 56311 A.uaipanensis Ayensua Ayensua uaipanensis \N \N \N \N \N 56312 M.variabilis Maxillaria Maxillaria variabilis \N \N \N \N \N 56313 O.maxillarioides Orchidantha Orchidantha maxillarioides \N \N \N \N \N 56314 D.stenocarpa Draba Draba stenocarpa \N \N \N \N \N 56315 L.reitzii Leandra Leandra reitzii \N \N \N \N \N 56316 A.aurea Aquilegia Aquilegia aurea \N \N \N \N \N 56317 \N subspecies Anthriscus sylvestris subsp. alpina \N \N \N \N \N 56318 G.murielae Gladiolus Gladiolus murielae \N \N \N \N \N 56319 M.pustulata Melaleuca Melaleuca pustulata \N \N \N \N \N 56320 C.oligantha Clidemia Clidemia oligantha \N \N \N \N \N 56321 \N family Molluginaceae carpet-weed family \N \N \N \N 56322 S.sinii Stewartia Stewartia sinii \N \N \N \N \N 56323 \N genus Durio \N \N \N \N \N 56324 M.velame Macrosiphonia Macrosiphonia velame \N \N \N \N \N 56325 F.alba Freesia Freesia alba \N \N \N \N \N 56326 C.longii Cardamine Cardamine longii \N \N \N \N \N 56327 R.lindleyi Rhododendron Rhododendron lindleyi \N \N \N \N \N 56328 \N varietas Lotus dendroideus var. traskiae \N \N \N \N \N 56329 B.mollis Bridelia Bridelia mollis \N \N \N \N \N 56330 T.diguetii Tillandsia Tillandsia diguetii \N \N \N \N \N 56331 P.exserta Petunia Petunia axillaris x Petunia exserta \N \N \N \N \N 56332 P.insignis Pachira Pachira insignis \N \N \N \N \N 56333 L.salicifolia Litsea Litsea salicifolia \N \N \N \N \N 56334 S.virgata Stephanomeria Stephanomeria virgata \N \N \N \N \N 56335 E.hispanica Erucaria Erucaria hispanica \N \N \N \N \N 56336 H.integrifolia Hulteniella Hulteniella integrifolia \N \N \N \N \N 56337 \N family Vivianiaceae \N \N \N \N \N 56338 T.tenuis Tylophora Tylophora tenuis \N \N \N \N \N 56339 S.leucotricha Sinningia Sinningia leucotricha \N \N \N \N \N 56340 C.raphanifolia Cardamine Cardamine raphanifolia \N \N \N \N \N 56341 E.eriocephala Erica Erica eriocephala \N \N \N \N \N 56342 M.nervosum Myxopyrum Myxopyrum nervosum \N \N \N \N \N 56343 B.plumosa Blepharizonia Blepharizonia plumosa \N \N \N \N \N 56344 M.cooperi Moraea Moraea cooperi \N \N \N \N \N 56345 A.integra Androsace Androsace integra \N \N \N \N \N 56346 M.armata Myrmecodia Myrmecodia armata \N \N \N \N \N 56347 A.nuttallii Arabis Arabis nuttallii \N \N \N \N \N 56348 \N subspecies Felicia filifolia subsp. bodkinii \N \N \N \N \N 56349 S.zeyheri Salsola Salsola zeyheri \N \N \N \N \N 56350 S.borealis Salicornia Salicornia borealis \N \N \N \N \N 56351 M.antirrhiniflora Maurandya Maurandya antirrhiniflora \N \N \N \N \N 56352 \N subspecies Disa spathulata subsp. tripartita \N \N \N \N \N 56353 L.shaanxiensis Lycoris Lycoris shaanxiensis \N \N \N \N \N 56354 A.schugnanicum Allium Allium schugnanicum \N \N \N \N \N 56355 \N varietas Astragalus canadensis var. brevidens \N \N \N \N \N 56356 \N genus Maxburretia \N \N \N \N \N 56357 D.australe Disphyma Disphyma australe \N \N \N \N \N 56358 H.pallasii Helichrysum Helichrysum pallasii \N \N \N \N \N 56359 C.burchelliana Carex Carex burchelliana \N \N \N \N \N 56360 A.3038 Argyrolobium Argyrolobium cf. sankeyi Van Wyk 3038 \N \N \N \N \N 56361 \N subspecies Hieracium alpinum subsp. alpinum \N \N \N \N \N 56362 B.madecassa Begonia Begonia madecassa \N \N \N \N \N 56363 G.segetum Gynura Gynura segetum \N \N \N \N \N 56364 R.hainanense Rhododendron Rhododendron hainanense \N \N \N \N \N 56365 G.crispus Gasteranthus Gasteranthus crispus \N \N \N \N \N 56366 M.ciliata Moehringia Moehringia ciliata \N \N \N \N \N 56367 M.rimosa Machilus Machilus rimosa \N \N \N \N \N 56368 S.nitidum Sorghum Sorghum nitidum \N \N \N \N \N 56369 W.3996 Wilkiea Wilkiea sp. Ford 3996 \N \N \N \N \N 56370 B.colvilei Buddleja Buddleja colvilei \N \N \N \N \N 56371 S.parviceps Symphyotrichum Symphyotrichum parviceps \N \N \N \N \N 56372 \N subspecies Arceuthobium vaginatum subsp. cryptopodum \N \N \N \N \N 56373 S.chrysantha Stifftia Stifftia chrysantha \N \N \N \N \N 56374 \N genus Lysimachia loosestrife \N \N \N \N 56375 H.asper Hibiscus Hibiscus asper \N \N \N \N \N 56376 \N varietas Prunus armeniaca var. armeniaca \N \N \N \N \N 56377 S.eggersii Scrophularia Scrophularia eggersii \N \N \N \N \N 56378 M.magellanica Maytenus Maytenus magellanica \N \N \N \N \N 56379 N.pampagrandensis Nassella Nassella pampagrandensis \N \N \N \N \N 56380 F.fulgens Fuchsia Fuchsia fulgens \N \N \N \N \N 56381 C.kalbreyeriana Columnea Columnea kalbreyeriana \N \N \N \N \N 56382 A.nobilis Anthocleista Anthocleista nobilis \N \N \N \N \N 56383 C.otrubae Carex Carex otrubae \N \N \N \N \N 56384 E.polycnemoides Euphorbia Euphorbia polycnemoides \N \N \N \N \N 56385 S.urniflora Stapeliopsis Stapeliopsis urniflora \N \N \N \N \N 56386 \N subspecies Onosma echioides subsp. echioides \N \N \N \N \N 56387 P.asparagoides Psyllocarpus Psyllocarpus asparagoides \N \N \N \N \N 56388 \N tribe Marsdenieae \N \N \N \N \N 56389 T.popovii Trachydium Trachydium popovii \N \N \N \N \N 56390 \N genus Lourtella \N \N \N \N \N 56391 G.AK285253 Geranium Geranium aff. solanderi AK285253 \N \N \N \N \N 56392 H.ciliata Hemigraphis Hemigraphis ciliata \N \N \N \N \N 56393 T.virgatus Thysanotus Thysanotus virgatus \N \N \N \N \N 56394 H.linearis Hesperomecon Hesperomecon linearis \N \N \N \N \N 56395 \N genus Empodisma \N \N \N \N \N 56396 C.clermontioides Clermontia Clermontia clermontioides \N \N \N \N \N 56397 S.marilandica Spigelia Spigelia marilandica Maryland pinkroot \N \N \N \N 56398 A.uliginosus Astragalus Astragalus uliginosus \N \N \N \N \N 56399 P.squarrosa Perezia Perezia squarrosa \N \N \N \N \N 56400 P.lepidocarpodendron Protea Protea lepidocarpodendron \N \N \N \N \N 56401 A.fragrans Anacamptis Anacamptis fragrans \N \N \N \N \N 56402 N.elatior Nicolaia Nicolaia elatior kantan,torch-ginger \N \N \N \N 56403 C.macrocarpa Carissa Carissa macrocarpa \N \N \N \N \N 56404 \N genus Omphalogramma \N \N \N \N \N 56405 A.littoralis Arytera Arytera littoralis \N \N \N \N \N 56406 C.rimbachii Croton Croton rimbachii \N \N \N \N \N 56407 L.lateritia Loasa Loasa lateritia \N \N \N \N \N 56408 C.comosa Campsiandra Campsiandra comosa \N \N \N \N \N 56409 \N varietas Eriogonum corymbosum var. orbiculatum \N \N \N \N \N 56410 S.album Sedum Sedum album \N \N \N \N \N 56411 C.filipes Cojoba Cojoba filipes \N \N \N \N \N 56412 S.huebneri Scaphyglottis Scaphyglottis huebneri \N \N \N \N \N 56413 \N genus Reldia \N \N \N \N \N 56414 \N subspecies Antirrhinum majus subsp. majus \N \N \N \N \N 56415 N.cephalotes Nepeta Nepeta cephalotes \N \N \N \N \N 56416 M.painteri Mammillaria Mammillaria painteri \N \N \N \N \N 56417 \N varietas Chione venosa var. buxifolia \N \N \N \N \N 56418 \N genus Pachyphytum \N \N \N \N \N 56419 A.polyantha Adenophora Adenophora polyantha \N \N \N \N \N 56420 N.repanda Nordenstamia Nordenstamia repanda \N \N \N \N \N 56421 G.livingstonei Garcinia Garcinia livingstonei \N \N \N \N \N 56422 F.monantha Fritillaria Fritillaria monantha \N \N \N \N \N 56423 C.NH-2011 Coccinia Coccinia aff. senensis NH-2011 \N \N \N \N \N 56424 E.tschimganicus Elymus Elymus tschimganicus \N \N \N \N \N 56425 S.cerasiferum Solanum Solanum cerasiferum \N \N \N \N \N 56426 J.glandulifera Jatropha Jatropha glandulifera \N \N \N \N \N 56427 \N subtribe Monanthochloinae \N \N \N \N \N 56428 C.spinosa Catesbaea Catesbaea spinosa lily thorn \N \N \N \N 56429 H.jaegeri Hesperidanthus Hesperidanthus jaegeri \N \N \N \N \N 56430 H.lechleri Hordeum Hordeum lechleri \N \N \N \N \N 56431 V.chosenensis Vicia Vicia chosenensis \N \N \N \N \N 56432 M.4191 Monnina Monnina sp. 1 Gonzalez 4191 \N \N \N \N \N 56433 P.serratifolia Photinia Photinia serratifolia \N \N \N \N \N 56434 \N genus Solenidium \N \N \N \N \N 56435 \N genus Beta \N \N \N \N \N 56436 \N subspecies Crocus imperati subsp. imperati \N \N \N \N \N 56437 L.dielsii Lifago Lifago dielsii \N \N \N \N \N 56438 \N genus Raphionacme \N \N \N \N \N 56439 M.dealbata Melaleuca Melaleuca dealbata \N \N \N \N \N 56440 D.wilsonii Dendrobium Dendrobium wilsonii \N \N \N \N \N 56441 \N subspecies Allium isakulii subsp. subkopetdagense \N \N \N \N \N 56442 \N genus Athertonia \N \N \N \N \N 56443 \N subspecies Fontanesia phillyreoides subsp. phillyreoides \N \N \N \N \N 56444 C.bojerianus Croton Croton bojerianus \N \N \N \N \N 56445 \N genus Alseis \N \N \N \N \N 56446 I.paniculata Inula Inula paniculata \N \N \N \N \N 56447 P.412 Pyrostria Pyrostria sp. 6 Razafimandimbison et al. 412 \N \N \N \N \N 56448 A.floribundum Alyssum Alyssum floribundum \N \N \N \N \N 56449 O.nana Oreorchis Oreorchis nana \N \N \N \N \N 56450 C.ixoroides Cyclophyllum Cyclophyllum ixoroides \N \N \N \N \N 56451 P.bifida Polystachya Polystachya bifida \N \N \N \N \N 56452 \N varietas Carex scirpoidea var. scirpoidea \N \N \N \N \N 56453 L.graminifolia Lactuca Lactuca graminifolia \N \N \N \N \N 56454 A.lobata Astraea Astraea lobata \N \N \N \N \N 56455 R.geminiflora Ruellia Ruellia geminiflora \N \N \N \N \N 56456 P.vulcanica Polystachya Polystachya vulcanica \N \N \N \N \N 56457 C.candicans Chiliadenus Chiliadenus candicans \N \N \N \N \N 56458 \N genus Triticum x Lophopyrum \N \N \N \N \N 56459 Z.SRR-2011 unclassified Zygopetalinae Zygopetalinae sp. 8 SRR-2011 \N \N \N \N \N 56460 \N varietas Iris virginica var. virginica \N \N \N \N \N 56461 E.nodosa Elytraria Elytraria nodosa \N \N \N \N \N 56462 A.nortonii Adenochilus Adenochilus nortonii \N \N \N \N \N 56463 P.veris Primula Primula veris cowslip \N \N \N \N 56464 R.breviscapa Renealmia Renealmia breviscapa \N \N \N \N \N 56465 S.sessilifolius Sclerocarpus Sclerocarpus sessilifolius \N \N \N \N \N 56466 M.trinervius Mallotus Mallotus trinervius \N \N \N \N \N 56467 M.71 Mosannona Mosannona sp. Chatrou et al. 71 \N \N \N \N \N 56468 \N subspecies Petunia integrifolia subsp. depauperata \N \N \N \N \N 56469 M.stricta Merxmuellera Merxmuellera stricta \N \N \N \N \N 56470 B.asteracanthus Blepharis Blepharis asteracanthus \N \N \N \N \N 56471 A.ciliare Aconitum Aconitum ciliare \N \N \N \N \N 56472 D.persica Dicyclophora Dicyclophora persica \N \N \N \N \N 56473 P.rufum Paspalum Paspalum rufum \N \N \N \N \N 56474 B.pulcherrimum Balaustion Balaustion pulcherrimum \N \N \N \N \N 56475 B.wrightii Brachystigma Brachystigma wrightii \N \N \N \N \N 56476 O.anthocrene Oncidium Oncidium anthocrene \N \N \N \N \N 56477 D.apiculata Diospyros Diospyros apiculata \N \N \N \N \N 56478 C.elliptica Clusia Clusia elliptica \N \N \N \N \N 56479 S.galaticum Smyrnium Smyrnium galaticum \N \N \N \N \N 56480 A.glandulosum Allium Allium glandulosum \N \N \N \N \N 56481 G.robustum Gymnocalycium Gymnocalycium robustum \N \N \N \N \N 56482 A.pinnatum Arthrophyllum Arthrophyllum pinnatum \N \N \N \N \N 56483 E.unijugum Eurypetalum Eurypetalum unijugum \N \N \N \N \N 56484 \N family Lentibulariaceae \N \N \N \N \N 56485 B.hookeri Balsamorhiza Balsamorhiza hookeri \N \N \N \N \N 56486 M.fasciculata Malesherbia Malesherbia fasciculata \N \N \N \N \N 56487 X.chevalieri Xeroderris Xeroderris chevalieri \N \N \N \N \N 56488 S.madagascariense Schoenoxiphium Schoenoxiphium madagascariense \N \N \N \N \N 56489 L.maroccanus Lotus Lotus maroccanus \N \N \N \N \N 56490 P.fragrans Prosthechea Prosthechea fragrans \N \N \N \N \N 56491 P.angustifolia Phoebe Phoebe angustifolia \N \N \N \N \N 56492 S.isomeca Stevia Stevia isomeca \N \N \N \N \N 56493 A.traversii Aciphylla Aciphylla traversii \N \N \N \N \N 56494 \N subspecies Pachycereus schottii subsp. schottii \N \N \N \N \N 56495 P.rigida Passerina Passerina rigida \N \N \N \N \N 56496 P.heterantha Pterisanthes Pterisanthes heterantha \N \N \N \N \N 56497 A.watsonii Atriplex Atriplex watsonii \N \N \N \N \N 56498 H.viridiflora Habenaria Habenaria viridiflora \N \N \N \N \N 56499 P.globiflora Philibertia Philibertia globiflora \N \N \N \N \N 56500 P.marianus Peniocereus Peniocereus marianus \N \N \N \N \N 56501 P.pallida Pentaschistis Pentameris pallida \N \N \N \N \N 56502 C.conjuncta Carex Carex conjuncta \N \N \N \N \N 56503 \N subspecies Aridaria noctiflora subsp. straminea \N \N \N \N \N 56504 I.marginisepala Ipomoea Ipomoea marginisepala \N \N \N \N \N 56505 P.angustisectum Philodendron Philodendron angustisectum \N \N \N \N \N 56506 S.gracile Sicyosperma Sicyosperma gracile \N \N \N \N \N 56507 C.macrantha Cota Cota macrantha \N \N \N \N \N 56508 \N genus Meeboldia \N \N \N \N \N 56509 G.utriculosa Gentiana Gentiana utriculosa \N \N \N \N \N 56510 C.baileyana Copernicia Copernicia baileyana \N \N \N \N \N 56511 P.carniolica Primula Primula carniolica \N \N \N \N \N 56512 \N genus Gloveria \N \N \N \N \N 56513 E.miniata Eucalyptus Eucalyptus miniata woollybutt \N \N \N \N 56514 \N genus Adenocaulon \N \N \N \N \N 56515 \N genus Glossopetalon \N \N \N \N \N 56516 S.radicans Senecio Senecio radicans \N \N \N \N \N 56517 M.sagittatopartita Manihot Manihot sagittatopartita \N \N \N \N \N 56518 V.pectinata Veronica Veronica pectinata \N \N \N \N \N 56519 O.biflora Oziroe Oziroe biflora \N \N \N \N \N 56520 \N genus Echiostachys \N \N \N \N \N 56521 C.rawsoniana Collomia Collomia rawsoniana \N \N \N \N \N 56522 E.montanum Epilobium Epilobium montanum \N \N \N \N \N 56523 S.javanica Stemona Stemona javanica \N \N \N \N \N 56524 I.delavayi Impatiens Impatiens delavayi \N \N \N \N \N 56525 J.przewalskii Juncus Juncus przewalskii \N \N \N \N \N 56526 \N genus Datisca \N \N \N \N \N 56527 C.gracilis Cleistes Cleistes gracilis \N \N \N \N \N 56528 C.pseudopaolii Commiphora Commiphora pseudopaolii \N \N \N \N \N 56529 S.latifolius Samolus Samolus latifolius \N \N \N \N \N 56530 S.spathulatum Stylobasium Stylobasium spathulatum \N \N \N \N \N 56531 I.370 Iochroma Iochroma sp. Smith 370 \N \N \N \N \N 56532 O.lineare Oncinema Oncinema lineare \N \N \N \N \N 56533 M.egensis Micropholis Micropholis egensis \N \N \N \N \N 56534 F.chiloensis Fragaria Fragaria chiloensis \N \N \N \N \N 56535 T.469 unclassified Taraxacum Taraxacum (sect. Kashmirana) sp. 469 \N \N \N \N \N 56536 \N subspecies Fumaria officinalis subsp. officinalis \N \N \N \N \N 56537 I.quarrei Indigofera Indigofera quarrei \N \N \N \N \N 56538 S.toliaraea Solanum Solanum toliaraea \N \N \N \N \N 56539 C.salignus Callistemon Callistemon salignus \N \N \N \N \N 56540 H.lobocarpum Hypericum Hypericum lobocarpum \N \N \N \N \N 56541 \N genus Pilosella \N \N \N \N \N 56542 B.ravenii Begonia Begonia ravenii \N \N \N \N \N 56543 V.waialenalenae Viola Viola waialenalenae \N \N \N \N \N 56544 S.multidens Strobilanthes Strobilanthes multidens \N \N \N \N \N 56545 P.2000611 Papaver Papaver sp. Yuan 2000611 \N \N \N \N \N 56546 C.aggregatum Clerodendrum Clerodendrum aggregatum \N \N \N \N \N 56547 E.congestiflora Eschweilera Eschweilera congestiflora \N \N \N \N \N 56548 P.204 Peponidium Peponidium sp. Karehed et al. 204 \N \N \N \N \N 56549 A.torreyi Atriplex Atriplex torreyi \N \N \N \N \N 56550 P.longidentatum Pseudosedum Pseudosedum longidentatum \N \N \N \N \N 56551 S.centrale Stenanthemum Stenanthemum centrale \N \N \N \N \N 56552 H.veselskyi Heliosperma Heliosperma veselskyi \N \N \N \N \N 56553 \N genus Decaspermum \N \N \N \N \N 56554 S.aprica Strobilanthes Strobilanthes aprica \N \N \N \N \N 56555 W.brongniartioides Weberbauerella Weberbauerella brongniartioides \N \N \N \N \N 56556 \N subspecies Iris tenuissima subsp. purdyiformis \N \N \N \N \N 56557 \N subspecies Cineraria lobata subsp. soutpansbergensis \N \N \N \N \N 56558 C.manillana Champereia Champereia manillana \N \N \N \N \N 56559 F.simplex Fuirena Fuirena simplex \N \N \N \N \N 56560 H.macilenta Habenaria Habenaria macilenta \N \N \N \N \N 56561 G.ciliaris Gazania Gazania ciliaris \N \N \N \N \N 56562 L.tripetala Lechea Lechea tripetala \N \N \N \N \N 56563 B.tenella Blumea Blumea tenella \N \N \N \N \N 56564 M.salicifolia Mida Mida salicifolia \N \N \N \N \N 56565 C.perforata Crassula Crassula perforata \N \N \N \N \N 56566 \N genus Cephalaria \N \N \N \N \N 56567 A.ealaensis Ancistrocladus Ancistrocladus ealaensis \N \N \N \N \N 56568 T.nuttallii Toxicoscordion Toxicoscordion nuttallii \N \N \N \N \N 56569 P.cultivar Pyrus Pyrus hybrid cultivar \N \N \N \N \N 56570 \N genus Ptychococcus \N \N \N \N \N 56571 P.subobliqua Psychotria Psychotria subobliqua \N \N \N \N \N 56572 B.yunnanensis Baijiania Baijiania yunnanensis \N \N \N \N \N 56573 O.spruneri Onosma Onosma spruneri \N \N \N \N \N 56574 E.verticillata Endlicheria Endlicheria verticillata \N \N \N \N \N 56575 P.medium Piptochaetium Piptochaetium medium \N \N \N \N \N 56576 S.2886 Saccharum officinarum complex Saccharum sp. clone IMP 2886 \N \N \N \N \N 56577 R.humeana Roscoea Roscoea humeana \N \N \N \N \N 56578 W.carinthiaca Wulfenia Wulfenia carinthiaca \N \N \N \N \N 56579 C.latifolium Cryptocentrum Cryptocentrum latifolium \N \N \N \N \N 56580 E.perennans Euphorbia Euphorbia perennans \N \N \N \N \N 56581 D.turczaninovii Draba Draba turczaninovii \N \N \N \N \N 56582 N.fragrans Nicotiana Nicotiana fragrans \N \N \N \N \N 56583 A.amazonicus Ampelozizyphus Ampelozizyphus amazonicus \N \N \N \N \N 56584 B.flabellifer Borassus Borassus flabellifer \N \N \N \N \N 56585 H.indica Heliconia Heliconia indica \N \N \N \N \N 56586 J.macrocarpa Jodrellia Jodrellia macrocarpa \N \N \N \N \N 56587 C.melanadenia Caesalpinia Caesalpinia melanadenia \N \N \N \N \N 56588 A.thunbergii Arisaema Arisaema thunbergii \N \N \N \N \N 56589 \N genus Pulsatilla \N \N \N \N \N 66588 \N genus Cavendishia \N \N \N \N \N 56590 R.kaempferi Rhododendron Rhododendron kaempferi \N \N \N \N \N 56591 M.verticillatum Myriophyllum Myriophyllum verticillatum \N \N \N \N \N 56592 T.turanicum Triticum Triticum turanicum \N \N \N \N \N 56593 D.sukatschewii Deschampsia Deschampsia sukatschewii \N \N \N \N \N 56594 V.filipes Vetiveria Vetiveria filipes \N \N \N \N \N 56595 \N subspecies Viola bulbosa subsp. tuberifera \N \N \N \N \N 56596 L.chiapensis Lophostachys Lophostachys chiapensis \N \N \N \N \N 56597 C.palustris Callitriche Callitriche palustris \N \N \N \N \N 56598 S.fimbricalyx Strophioblachia Strophioblachia fimbricalyx \N \N \N \N \N 56599 M.albicans Manochlamys Manochlamys albicans \N \N \N \N \N 56600 P.nervosa Psychotria Psychotria nervosa \N \N \N \N \N 56601 R.longicaudata Rytigynia Rytigynia longicaudata \N \N \N \N \N 56602 F.platypoda Fraxinus Fraxinus platypoda \N \N \N \N \N 56603 E.proteiflorum Eryngium Eryngium proteiflorum \N \N \N \N \N 56604 A.cardiophylla Acacia Acacia cardiophylla \N \N \N \N \N 56605 \N genus Juncus rushes \N \N \N \N 56606 N.pseudonarcissus Narcissus Narcissus pseudonarcissus daffodil \N \N \N \N 56607 R.cereuscula Rhipsalis Rhipsalis cereuscula \N \N \N \N \N 56608 S.orbiculare Satyrium Satyrium orbiculare \N \N \N \N \N 56609 A.collinsiae Actephila Actephila collinsiae \N \N \N \N \N 56610 \N tribe Antirrhineae \N \N \N \N \N 56611 M.orthocarpa Mimosa Mimosa orthocarpa \N \N \N \N \N 56612 C.glabra Carya Carya glabra pignut hickory,sweet pignut \N \N \N \N 56613 C.polyphylla Cleistogenes Cleistogenes polyphylla \N \N \N \N \N 56614 C.henryi Cypripedium Cypripedium henryi \N \N \N \N \N 56615 M.perrieri Megistostegium Megistostegium perrieri \N \N \N \N \N 56616 \N genus Triphasia \N \N \N \N \N 56617 B.exaltatum Bupleurum Bupleurum exaltatum \N \N \N \N \N 56618 \N genus Lomatogoniopsis \N \N \N \N \N 56619 M.stereophylla Merxmuellera Merxmuellera stereophylla \N \N \N \N \N 56620 C.ciliilabia Cranichis Cranichis ciliilabia \N \N \N \N \N 56621 H.2496 Hiptage Hiptage sp. Middleton 2496 \N \N \N \N \N 56622 C.alliodora Cordia Cordia alliodora ajo ajo,canalete,lourinho,pardillo,salmwood,urua \N \N \N \N 56623 M.japonicus Miscanthus Miscanthus japonicus \N \N \N \N \N 56624 M.repens Mitchella Mitchella repens \N \N \N \N \N 56625 P.curvata Protea Protea curvata \N \N \N \N \N 56626 A.fruticosum Achyrospermum Achyrospermum fruticosum \N \N \N \N \N 56627 C.liebrechtsiana Commitheca Commitheca liebrechtsiana \N \N \N \N \N 56628 E.teheranica Euphorbia Euphorbia teheranica \N \N \N \N \N 56629 G.aurea Gratiola Gratiola aurea \N \N \N \N \N 56630 R.timoriensis Ryssopterys Ryssopterys timoriensis \N \N \N \N \N 56631 \N genus Thottea \N \N \N \N \N 56632 C.banaticus Crocus Crocus banaticus \N \N \N \N \N 56633 G.caffra Grewia Grewia caffra \N \N \N \N \N 56634 S.SP821 Sisyrinchium Sisyrinchium aff. graminifolium SP821 \N \N \N \N \N 56635 S.rupestre Schizopetalon Schizopetalon rupestre \N \N \N \N \N 56636 A.pycnorhiza Artemisia Artemisia pycnorhiza \N \N \N \N \N 56637 \N subspecies Lasthenia glabrata subsp. glabrata \N \N \N \N \N 56638 P.scandens Pertya Pertya scandens \N \N \N \N \N 56639 \N genus Kostermansia \N \N \N \N \N 56640 \N subspecies Polygonum aviculare subsp. aviculare \N \N \N \N \N 56641 S.cinerascens Stevia Stevia cinerascens \N \N \N \N \N 56642 T.formosana Trigonotis Trigonotis formosana \N \N \N \N \N 56643 \N no rank Apium graveolens Dulce Group celery,stalk celery \N \N \N \N 56644 N.perpusilla Nananthea Nananthea perpusilla \N \N \N \N \N 56645 H.pedunculosus Habranthus Habranthus pedunculosus \N \N \N \N \N 56646 C.bolusii Cyclopia Cyclopia bolusii \N \N \N \N \N 56647 S.divaricata Suaeda Suaeda divaricata \N \N \N \N \N 56648 S.dolichorhachis Solanum Solanum dolichorhachis \N \N \N \N \N 56649 A.berteroi Angadenia Angadenia berteroi \N \N \N \N \N 56650 A.acutifolia Aristolochia Aristolochia acutifolia \N \N \N \N \N 56651 M.angolense Mezoneuron Mezoneuron angolense \N \N \N \N \N 56652 M.fosteri Majidea Majidea fosteri \N \N \N \N \N 56653 B.odorata Bunchosia Bunchosia odorata \N \N \N \N \N 56654 P.richardsonii Penstemon Penstemon richardsonii \N \N \N \N \N 56655 \N genus Peritoma \N \N \N \N \N 56656 L.aurea Lophiola Lophiola aurea \N \N \N \N \N 56657 \N varietas Lomatium scabrum var. scabrum \N \N \N \N \N 56658 G.sibuyanensis Greeniopsis Greeniopsis sibuyanensis \N \N \N \N \N 56659 C.parviflorum Chorizema Chorizema parviflorum \N \N \N \N \N 56660 L.bulbifera Lachenalia Lachenalia bulbifera \N \N \N \N \N 56661 \N family Cannaceae canna family \N \N \N \N 56662 \N genus Kleinhovia \N \N \N \N \N 56663 B.parkinsonii Bletia Bletia parkinsonii \N \N \N \N \N 56664 B.buxifolia Bossiaea Bossiaea buxifolia \N \N \N \N \N 56665 P.P143 Physalis Physalis sp. P143 \N \N \N \N \N 56666 P.verticillata Polygala Polygala verticillata \N \N \N \N \N 56667 P.ebracteolatus Phaeanthus Phaeanthus ebracteolatus \N \N \N \N \N 56668 W.biflora Wedelia Wedelia biflora \N \N \N \N \N 56669 C.alpina Cardamine Cardamine alpina \N \N \N \N \N 56670 \N genus Aletes \N \N \N \N \N 56671 P.SH-2010 Photinia Photinia sp. SH-2010 \N \N \N \N \N 56672 A.obovata Altingia Altingia obovata \N \N \N \N \N 56673 V.madagascariensis Vernonia Vernonia madagascariensis \N \N \N \N \N 56674 G.bulgaricum Geum Geum bulgaricum \N \N \N \N \N 56675 D.baudii Dipterocarpus Dipterocarpus baudii \N \N \N \N \N 56676 M.crucigera Mammillaria Mammillaria crucigera \N \N \N \N \N 56677 E.schimperi Euphorbia Euphorbia schimperi \N \N \N \N \N 56678 C.cornigera Cynara Cynara cornigera \N \N \N \N \N 56679 \N genus Kurzamra \N \N \N \N \N 56680 P.psychotriifolia Ptyssiglottis Ptyssiglottis psychotriifolia \N \N \N \N \N 56681 H.leucantha Heloniopsis Heloniopsis leucantha \N \N \N \N \N 56682 C.CN-2006 Curcuma Curcuma sp. CN-2006 \N \N \N \N \N 56683 N.cantabricus Narcissus Narcissus cantabricus \N \N \N \N \N 56684 V.capitata Villarsia Villarsia capitata \N \N \N \N \N 56685 R.crispa Racinaea Racinaea crispa \N \N \N \N \N 56686 L.203 Leersia Leersia sp. Reinheimer 203 \N \N \N \N \N 56687 \N varietas Corethrogyne filaginifolia var. californica \N \N \N \N \N 56688 P.minor Phacelia Phacelia minor \N \N \N \N \N 56689 E.lateralis Elleanthus Elleanthus lateralis \N \N \N \N \N 56690 \N genus Fremontodendron \N \N \N \N \N 56691 D.philippinensis Diospyros Diospyros philippinensis \N \N \N \N \N 56692 B.bartsiifolia Blakiella Blakiella bartsiifolia \N \N \N \N \N 56693 L.montanus Leptosiphon Leptosiphon montanus \N \N \N \N \N 56694 C.cuatrecasasii Curarea Curarea cuatrecasasii \N \N \N \N \N 56695 A.gneissicola Aloe Aloe gneissicola \N \N \N \N \N 56696 S.scaberulus Senecio Senecio scaberulus \N \N \N \N \N 56697 \N genus Uebelinia \N \N \N \N \N 56698 B.martiniana Banisteriopsis Banisteriopsis martiniana \N \N \N \N \N 56699 \N tribe Indigofereae \N \N \N \N \N 56700 \N genus Franciscodendron \N \N \N \N \N 56701 A.polifolia Andromeda Andromeda polifolia marsh holy-rose \N \N \N \N 56702 H.mortonianum Helictotrichon Helictotrichon mortonianum \N \N \N \N \N 56703 N.glacialis Novosieversia Novosieversia glacialis \N \N \N \N \N 56704 D.palmeri Doryanthes Doryanthes palmeri \N \N \N \N \N 56705 P.tarik Pultenaea Pultenaea tarik \N \N \N \N \N 56706 E.usambarica Euphorbia Euphorbia usambarica \N \N \N \N \N 56707 P.rotata Phlomoides Phlomoides rotata \N \N \N \N \N 56708 \N genus Pentatropis \N \N \N \N \N 56709 E.crispa Ericameria Ericameria crispa \N \N \N \N \N 56710 M.zaifui Musa Musa zaifui \N \N \N \N \N 56711 B.purpusi Beaucarnea Beaucarnea purpusi \N \N \N \N \N 56712 C.hexandra Cliffortia Cliffortia hexandra \N \N \N \N \N 56713 \N genus Gymnostoma \N \N \N \N \N 56714 A.SH-2010 Ancistrochilus Ancistrochilus sp. SH-2010 \N \N \N \N \N 56715 C.nuttallii Callitriche Callitriche nuttallii \N \N \N \N \N 56716 L.simonae Lotus Lotus simonae \N \N \N \N \N 56717 L.sessilifolia Lebeckia Lebeckia sessilifolia \N \N \N \N \N 56718 C.viridiflora Cleome Cleome viridiflora \N \N \N \N \N 56719 N.debneyi Nicotiana Nicotiana debneyi Debney's tobacco \N \N \N \N 56720 T.papuana Tainia Tainia papuana \N \N \N \N \N 56721 S.longipes Syzygium Syzygium longipes \N \N \N \N \N 56722 A.nilotica Acacia Acacia nilotica babul,mgunga,prickly acacia \N \N \N \N 56723 P.pumila Pseudorlaya Pseudorlaya pumila \N \N \N \N \N 56724 P.setacea Passiflora Passiflora setacea \N \N \N \N \N 56725 \N genus Prosopis mesquite \N \N \N \N 56726 M.decidua Manglietia Manglietia decidua \N \N \N \N \N 56727 A.rupestre Allium Allium rupestre \N \N \N \N \N 56728 A.bifolium Argostemma Argostemma bifolium \N \N \N \N \N 56729 G.ornata Gentiana Gentiana ornata \N \N \N \N \N 56730 I.tigridia Iris Iris tigridia \N \N \N \N \N 56731 \N subspecies Impatiens percordata subsp. percordata \N \N \N \N \N 56732 R.atropurpurea Ruilopezia Ruilopezia atropurpurea \N \N \N \N \N 56733 P.HBG70537 Peperomia Peperomia sp. HBG70537 \N \N \N \N \N 56734 F.olivieri Fagonia Fagonia olivieri \N \N \N \N \N 56735 P.pauciflorus Pyrrhopappus Pyrrhopappus pauciflorus \N \N \N \N \N 56736 F.petiolata Fosterella Fosterella petiolata \N \N \N \N \N 56737 L.anomalus Leontodon Leontodon anomalus \N \N \N \N \N 56738 A.legendrei Aconitum Aconitum legendrei \N \N \N \N \N 56739 H.longifolia Halimocnemis Halimocnemis longifolia \N \N \N \N \N 56740 A.hermanniae Anthyllis Anthyllis hermanniae \N \N \N \N \N 56741 S.ovalifolia Shorea Shorea ovalifolia \N \N \N \N \N 56742 B.watuwilensis Begonia Begonia watuwilensis \N \N \N \N \N 56743 L.distichum Lilium Lilium distichum chosen kuruma yuri,dong bei bai he,kochang lily \N \N \N \N 56744 N.pectinata Neopallasia Neopallasia pectinata \N \N \N \N \N 56745 S.ciliatum Symphyotrichum Symphyotrichum ciliatum \N \N \N \N \N 56746 A.costatovaginatum Allium Allium costatovaginatum \N \N \N \N \N 56747 E.alticola Erica Erica alticola \N \N \N \N \N 56748 H.spectabile Hylotelephium Hylotelephium spectabile \N \N \N \N \N 56749 B.lanata Betula Betula lanata \N \N \N \N \N 56750 \N genus Fuerstia \N \N \N \N \N 70142 \N genus Blutaparon \N \N \N \N \N 56751 K.salicornioides Korthalsella Korthalsella salicornioides \N \N \N \N \N 56752 A.huiliense Aconitum Aconitum huiliense \N \N \N \N \N 56753 I.innominata Iris Iris innominata \N \N \N \N \N 56754 T.nuda Tofieldia Tofieldia nuda \N \N \N \N \N 56755 A.ukurunduense Acer Acer ukurunduense \N \N \N \N \N 56756 \N genus Pappostipa \N \N \N \N \N 56757 \N genus Schoenocephalium \N \N \N \N \N 56758 C.minus Chaenorhinum Chaenorhinum minus \N \N \N \N \N 56759 W.marojejyensis Weinmannia Weinmannia marojejyensis \N \N \N \N \N 56760 \N genus Physoplexis \N \N \N \N \N 56761 \N varietas Dyschoriste schiedeana var. prostrata \N \N \N \N \N 56762 \N varietas Lotus crassifolius var. crassifolius \N \N \N \N \N 56763 J.dubia Jeffersonia Jeffersonia dubia \N \N \N \N \N 56764 T.scabrum Thesium Thesium scabrum \N \N \N \N \N 56765 \N genus Psilopeganum \N \N \N \N \N 56766 E.taurinensis Euphorbia Euphorbia taurinensis \N \N \N \N \N 56767 H.araguariensis Hirtella Hirtella araguariensis \N \N \N \N \N 56768 B.cubana Bonania Bonania cubana \N \N \N \N \N 56769 \N genus Helosis \N \N \N \N \N 56770 J.agrestis Jacquemontia Jacquemontia agrestis \N \N \N \N \N 56771 G.decandrus Gymnocarpos Gymnocarpos decandrus \N \N \N \N \N 56772 C.inflatus Cyananthus Cyananthus inflatus \N \N \N \N \N 56773 T.orthantha Tigridia Tigridia orthantha \N \N \N \N \N 56774 L.potaninii Lespedeza Lespedeza potaninii \N \N \N \N \N 56775 \N subspecies Paeonia suffruticosa subsp. yinpingmudan \N \N \N \N \N 56776 P.dissectus Penstemon Penstemon dissectus \N \N \N \N \N 56777 C.laxum Cestrum Cestrum laxum \N \N \N \N \N 56778 V.alpina Vanda Vanda alpina \N \N \N \N \N 56779 \N genus Cubanthus \N \N \N \N \N 56780 C.junos Citrus Citrus junos kuzu \N \N \N \N 56781 N.pingbienensis Neolitsea Neolitsea pingbienensis \N \N \N \N \N 56782 \N varietas Dendrobium aurantiacum var. denneanum \N \N \N \N \N 56783 T.tarapacana Tarasa Tarasa tarapacana \N \N \N \N \N 56784 E.pumilla Echeveria Echeveria pumilla \N \N \N \N \N 56785 \N varietas Gymnocalycium riojense var. platygomum \N \N \N \N \N 56786 G.schultzei Glossoloma Glossoloma schultzei \N \N \N \N \N 56787 \N subfamily Corymbioideae \N \N \N \N \N 56788 P.palmeri Plateilema Plateilema palmeri \N \N \N \N \N 56789 E.pamanesiorum Echinocereus Echinocereus pamanesiorum \N \N \N \N \N 56790 V.tauricola Veronica Veronica tauricola \N \N \N \N \N 56791 S.laricina Salsola Salsola laricina \N \N \N \N \N 56792 S.rubiginosa Sterculia Sterculia rubiginosa \N \N \N \N \N 56793 M.liebmannii Montanoa Montanoa liebmannii \N \N \N \N \N 56794 O.nummularifolia Olearia Olearia nummularifolia \N \N \N \N \N 56795 A.euxina Achillea millefolium complex Achillea euxina \N \N \N \N \N 56796 C.crenulata Crassula Crassula crenulata \N \N \N \N \N 56797 \N subspecies Origanum vulgare subsp. hirtum \N \N \N \N \N 56798 A.minor Astrantia Astrantia minor \N \N \N \N \N 56799 B.cedarbergensis Babiana Babiana cedarbergensis \N \N \N \N \N 56800 A.guineensis Ancistrocladus Ancistrocladus guineensis \N \N \N \N \N 56801 M.biglandulosa Miconia Miconia biglandulosa \N \N \N \N \N 56802 L.cirrhosus Lathyrus Lathyrus cirrhosus \N \N \N \N \N 56803 C.tenuiramula Cousinia Cousinia tenuiramula \N \N \N \N \N 56804 N.quadriloba Nymphoides Nymphoides quadriloba \N \N \N \N \N 56805 B.cucurbitifolia Begonia Begonia cucurbitifolia \N \N \N \N \N 56806 M.salmoniflora Monsonia Monsonia salmoniflora \N \N \N \N \N 56807 O.micrantha Oxalis Oxalis micrantha \N \N \N \N \N 56808 S.schomburgkiana Smilax Smilax schomburgkiana \N \N \N \N \N 56809 B.costaricensis Batocarpus Batocarpus costaricensis \N \N \N \N \N 56810 H.brevistylum Hypericum Hypericum brevistylum \N \N \N \N \N 56811 \N genus Macropidia \N \N \N \N \N 56812 M.maguanica Manglietia Manglietia maguanica \N \N \N \N \N 56813 P.californicum Pycnanthemum Pycnanthemum californicum Sierra mint \N \N \N \N 56814 \N genus Heteropterys \N \N \N \N \N 56815 G.uniflorum Galium Galium uniflorum \N \N \N \N \N 56816 V.michauxii Vicia Vicia michauxii \N \N \N \N \N 56817 O.grandiflora Oxytropis Oxytropis grandiflora \N \N \N \N \N 56818 L.tenellum Limonium Limonium tenellum \N \N \N \N \N 56819 D.fuhaiensis Draba Draba fuhaiensis \N \N \N \N \N 56820 G.chiriquiensis Guatteria Guatteria chiriquiensis \N \N \N \N \N 56821 S.densiflora Spiraea Spiraea densiflora \N \N \N \N \N 56822 C.matourensis Croton Croton matourensis \N \N \N \N \N 56823 B.malabarica Benkara Benkara malabarica \N \N \N \N \N 56824 C.adenophyllus Croton Croton adenophyllus \N \N \N \N \N 56825 C.thalictrifolium Chamaesium Chamaesium thalictrifolium \N \N \N \N \N 56826 S.hedyotidea Spigelia Spigelia hedyotidea \N \N \N \N \N 56827 \N genus Anisotoma \N \N \N \N \N 56828 N.pterocarpa Nolana Nolana pterocarpa \N \N \N \N \N 56829 S.harleyi Sinningia Sinningia harleyi \N \N \N \N \N 56830 C.villosum Chaenorhinum Chaenorhinum villosum \N \N \N \N \N 56831 K.splendens Koeleria Koeleria splendens \N \N \N \N \N 56832 B.stenophylla Byttneria Byttneria stenophylla \N \N \N \N \N 56833 N.repens Nierembergia Nierembergia repens whitecup \N \N \N \N 56834 E.hiemalis Erica Erica x hiemalis \N \N \N \N \N 56835 V.gazensis Vigna Vigna gazensis \N \N \N \N \N 56836 S.pseudoatocion Silene Silene pseudoatocion \N \N \N \N \N 56837 \N subspecies Dactylorhiza maculata subsp. ericetorum heath spotted-orchid \N \N \N \N 56838 \N subtribe Ursiniinae \N \N \N \N \N 56839 G.macrophylla Gunnera Gunnera macrophylla \N \N \N \N \N 56840 P.pulchra Phlox Phlox pulchra \N \N \N \N \N 56841 G.astonii Gentianella Gentianella astonii \N \N \N \N \N 56842 S.ramiflora Sciadotenia Sciadotenia ramiflora \N \N \N \N \N 56843 C.depauperatum Cyclotrichium Cyclotrichium depauperatum \N \N \N \N \N 56844 A.mucronifolius Astragalus Astragalus mucronifolius \N \N \N \N \N 56845 M.bracteosa Mascagnia Mascagnia bracteosa \N \N \N \N \N 56846 O.gerstneri Orbea Orbea gerstneri \N \N \N \N \N 56847 F.appendiculata Francoa Francoa appendiculata \N \N \N \N \N 56848 V.anticleoides Veratrum Veratrum anticleoides Siskiyou false hellebore \N \N \N \N 56849 H.trifida Habenaria Habenaria trifida \N \N \N \N \N 56850 \N genus Diclis \N \N \N \N \N 56851 \N family Begoniaceae begonia family \N \N \N \N 56852 C.auropurpureum Cyrtochilum Cyrtochilum auropurpureum \N \N \N \N \N 56853 C.acaule Crinum Crinum acaule \N \N \N \N \N 56854 B.ahogadoi Bonnetia Bonnetia ahogadoi \N \N \N \N \N 56855 S.canescens Salsola Salsola canescens \N \N \N \N \N 56856 M.amboinensis Maclura Maclura amboinensis \N \N \N \N \N 56857 P.benthamiana Photinia Photinia benthamiana \N \N \N \N \N 56858 \N genus Rhynchocalyx \N \N \N \N \N 56859 D.montanus Daucus Daucus montanus \N \N \N \N \N 56860 W.dichotoma Weinmannia Weinmannia dichotoma \N \N \N \N \N 56861 \N genus Macbrideina \N \N \N \N \N 56862 T.4218Hnew unclassified Taraxacum Taraxacum (sect. Suavia) sp. 4218Hnew \N \N \N \N \N 56863 C.inermis Calotis Calotis inermis \N \N \N \N \N 56864 D.91026 Daphniphyllum Daphniphyllum sp. Qiu 91026 \N \N \N \N \N 56865 C.koraiensis Celtis Celtis koraiensis \N \N \N \N \N 56866 \N subspecies Ecballium elaterium subsp. dioicum \N \N \N \N \N 56867 P.bolanderi Packera Packera bolanderi \N \N \N \N \N 56868 \N genus Craniotome \N \N \N \N \N 56869 M.sagittatum Mostacillastrum Mostacillastrum sagittatum \N \N \N \N \N 56870 \N genus Riencourtia \N \N \N \N \N 56871 E.unifolia Elettariopsis Elettariopsis unifolia \N \N \N \N \N 56872 E.velenovskyi Euphorbia Euphorbia velenovskyi \N \N \N \N \N 56873 C.microphylla Cardamine Cardamine microphylla small-leaf bittercress \N \N \N \N 56874 T.praetermissum Trifolium Trifolium praetermissum \N \N \N \N \N 56875 \N genus Socratina \N \N \N \N \N 56876 \N varietas Tiquilia canescens var. pulchella \N \N \N \N \N 56877 S.romuleifolia Saussurea Saussurea romuleifolia \N \N \N \N \N 56878 D.lindenii Draba Draba lindenii \N \N \N \N \N 56879 N.3625 Nesogordonia Nesogordonia sp. Schatz et al. 3625 \N \N \N \N \N 56880 D.philippinensis Dillenia Dillenia philippinensis \N \N \N \N \N 56881 D.H642 Drimiopsis Drimiopsis sp. MP H642 \N \N \N \N \N 56882 M.ochroleuca Maxillaria Maxillaria ochroleuca \N \N \N \N \N 56883 T.51 Tamarix Tamarix cf. canariensis 51 \N \N \N \N \N 56884 E.fulva Eriocnema Eriocnema fulva \N \N \N \N \N 56885 A.hintonii Aristida Aristida hintonii \N \N \N \N \N 56886 D.hyperborea Draba Draba hyperborea \N \N \N \N \N 56887 G.decapleura Gesneria Gesneria decapleura \N \N \N \N \N 56888 A.formosanum Acer Acer albopurpurascens x Acer buergerianum var. formosanum \N \N \N \N \N 56889 E.infera Eucalyptus Eucalyptus infera \N \N \N \N \N 56890 I.ferrea Ixora Ixora ferrea \N \N \N \N \N 56891 D.racemosa Danae Danae racemosa \N \N \N \N \N 56892 G.1929 Gazania Gazania sp. Koekemoer and Funk 1929 \N \N \N \N \N 56893 C.mollis Chamaecytisus Chamaecytisus mollis \N \N \N \N \N 56894 C.depauperata Crangonorchis Crangonorchis depauperata \N \N \N \N \N 56895 \N genus Tirania \N \N \N \N \N 56896 P.gorodkovii Papaver Papaver gorodkovii \N \N \N \N \N 56897 V.suspensum Viburnum Viburnum suspensum gomo-ju \N \N \N \N 56898 \N genus Desmaria \N \N \N \N \N 56899 \N genus Neomillspaughia \N \N \N \N \N 56900 A.zephyrea Allocasuarina Allocasuarina zephyrea \N \N \N \N \N 56901 A.ceramicus Astragalus Astragalus ceramicus \N \N \N \N \N 56902 \N subspecies Centaurea triumfettii subsp. aligera \N \N \N \N \N 56903 \N no rank unclassified Liliopsida \N \N \N \N \N 56904 C.delicatula Ctenopsis Ctenopsis delicatula \N \N \N \N \N 56905 C.americanum Cullen Cullen americanum \N \N \N \N \N 56906 \N genus Stellaria \N \N \N \N \N 56907 \N subspecies Tephroseris integrifolia subsp. aucheri \N \N \N \N \N 56908 O.weinmannianum Oncidium Oncidium weinmannianum \N \N \N \N \N 56909 \N genus Castela \N \N \N \N \N 56910 C.suecica Cornus Cornus canadensis x Cornus suecica \N \N \N \N \N 56911 H.decurrens Hymenidium Hymenidium decurrens \N \N \N \N \N 56912 H.enneaspermus Hybanthus Hybanthus enneaspermus \N \N \N \N \N 56913 A.apachecum Arceuthobium Arceuthobium apachecum \N \N \N \N \N 56914 A.strigosa Anchusa Anchusa strigosa \N \N \N \N \N 56915 D.viscidus Dianthus Dianthus viscidus \N \N \N \N \N 56916 \N genus Minuria \N \N \N \N \N 56917 \N varietas Eriogonum fasciculatum var. foliolosum \N \N \N \N \N 56918 \N subspecies Festuca nigrescens subsp. nigrescens \N \N \N \N \N 56919 \N subspecies Sixalix atropurpurea subsp. maritima \N \N \N \N \N 56920 P.brevicalyx Psychotria Psychotria brevicalyx \N \N \N \N \N 56921 V.vulgaris Viscaria Viscaria vulgaris German catchfly,clammy campion \N \N \N \N 56922 H.hirsutissimum Heliotropium Heliotropium hirsutissimum \N \N \N \N \N 56923 P.golungensis Pancovia Pancovia golungensis \N \N \N \N \N 56924 H.telephioides Hylotelephium Hylotelephium telephioides \N \N \N \N \N 56925 L.eriocalyx Leiospora Leiospora eriocalyx \N \N \N \N \N 56926 B.coyucensis Bursera Bursera coyucensis \N \N \N \N \N 56927 P.scullyana Pedicularis Pedicularis scullyana \N \N \N \N \N 56928 A.integrifolia Andryala Andryala integrifolia \N \N \N \N \N 56929 O.strictum Oxypetalum Oxypetalum strictum \N \N \N \N \N 56930 T.broussonetii Thymus Thymus broussonetii \N \N \N \N \N 56931 H.densiflorum Hedychium Hedychium densiflorum \N \N \N \N \N 56932 D.grandiflorum Delphinium Delphinium grandiflorum \N \N \N \N \N 56933 V.2519 Vitis Vitis sp. Soltis and Soltis 2519 \N \N \N \N \N 56934 A.discoidea Arnica Arnica discoidea \N \N \N \N \N 56935 A.versicolor Alstroemeria Alstroemeria versicolor \N \N \N \N \N 56936 \N varietas Elizabetha bicolor var. velutina \N \N \N \N \N 56937 M.8280 Microlicia Microlicia sp. Almeda et al. 8280 \N \N \N \N \N 56938 O.angustifolia Otiophora Otiophora angustifolia \N \N \N \N \N 56939 \N tribe Hunterieae \N \N \N \N \N 56940 E.philadelphicus Erigeron Erigeron philadelphicus \N \N \N \N \N 56941 G.cn2k2-98 Gentiana Gentiana sp. Yuan cn2k2-98 \N \N \N \N \N 56942 C.yoshinaganthum Chrysanthemum Chrysanthemum yoshinaganthum \N \N \N \N \N 72180 \N genus Biebersteinia \N \N \N \N \N 56943 R.auriculata Rudbeckia Rudbeckia auriculata \N \N \N \N \N 56944 H.pulcherrima Hedyotis Hedyotis pulcherrima \N \N \N \N \N 56945 C.rhytidophylla Camellia Camellia rhytidophylla \N \N \N \N \N 56946 M.6129 Microthelys Microthelys aff. minutiflora Salazar 6129 \N \N \N \N \N 56947 D.acuminatum Dichanthelium Dichanthelium acuminatum \N \N \N \N \N 56948 C.debile Clinopodium Clinopodium debile \N \N \N \N \N 56949 A.flavum Allium Allium flavum \N \N \N \N \N 56950 E.nummularifolium Exacum Exacum nummularifolium \N \N \N \N \N 56951 \N subspecies Stapeliopsis saxatilis subsp. saxatilis \N \N \N \N \N 56952 S.adhaerens Setaria Setaria adhaerens \N \N \N \N \N 56953 I.muelleri Ipomoea Ipomoea muelleri \N \N \N \N \N 56954 P.sorsogonum Piper Piper sorsogonum \N \N \N \N \N 56955 M.versicolor Muhlenbergia Muhlenbergia versicolor \N \N \N \N \N 56956 D.782 Digitaria Digitaria sp. Forest 782 \N \N \N \N \N 56957 G.circaeoides Galopina Galopina circaeoides \N \N \N \N \N 56958 H.griffithianum Haplophyllum Haplophyllum griffithianum \N \N \N \N \N 56959 C.canescens Clerodendrum Clerodendrum canescens \N \N \N \N \N 56960 T.heterophyllum Tetrastigma Tetrastigma heterophyllum \N \N \N \N \N 56961 A.salmoneum Adenocalymma Adenocalymma salmoneum \N \N \N \N \N 56962 C.7225) Combretum Combretum sp. A (Winter 7225) \N \N \N \N \N 56963 \N genus Cyclolobium \N \N \N \N \N 56964 A.rupicola Anemone Anemone rupicola \N \N \N \N \N 56965 P.keredjensis Prunus Prunus x keredjensis \N \N \N \N \N 56966 E.tindaliae Eucalyptus Eucalyptus tindaliae \N \N \N \N \N 56967 S.longipes Sukunia Sukunia longipes \N \N \N \N \N 56968 C.andersonii Cirsium Cirsium andersonii rose thistle \N \N \N \N 56969 C.crenulata Caralluma Caralluma crenulata \N \N \N \N \N 56970 \N genus Stenopetalum \N \N \N \N \N 56971 L.orvala Lamium Lamium orvala \N \N \N \N \N 56972 \N subspecies Crocus biflorus subsp. isauricus \N \N \N \N \N 56973 A.leptopus Antigonon Antigonon leptopus Mexican-creeper,bellsima,chain-of-love,coralvine \N \N \N \N 66589 \N genus Pachypodium \N \N \N \N \N 56974 \N subspecies Aletes macdougalii subsp. macdougalii \N \N \N \N \N 56975 A.blitoides Amaranthus Amaranthus blitoides matweed,prostrate amaranth \N \N \N \N 56976 C.barbadensis Coccothrinax Coccothrinax barbadensis \N \N \N \N \N 56977 V.arguta Veronica Veronica arguta \N \N \N \N \N 56978 P.floribundum Pseuderanthemum Pseuderanthemum floribundum \N \N \N \N \N 56979 H.SK-2011c Hydrobryum Hydrobryum sp. SK-2011c \N \N \N \N \N 56980 K.AK28214 Koeleria Koeleria aff. novozelandica AK28214 \N \N \N \N \N 56981 S.mundii Scolopia Scolopia mundii \N \N \N \N \N 56982 P.franchetiana Phlomis Phlomis franchetiana \N \N \N \N \N 56983 T.sample environmental samples Taxonomy:493874 Triticum environmental sample \N \N \N \N \N 56984 K.'Grande' Kaempferia Kaempferia sp. 'Grande' \N \N \N \N \N 56985 S.foliosa Scleria Scleria foliosa \N \N \N \N \N 56986 G.demareei Gaura Gaura demareei \N \N \N \N \N 56987 A.nyctaginifolia Asclepias Asclepias nyctaginifolia \N \N \N \N \N 56988 M.masafuerana Megalachne Megalachne masafuerana \N \N \N \N \N 56989 F.bernaysii Ficus Ficus bernaysii \N \N \N \N \N 56990 C.minuta Chaetanthera Chaetanthera minuta \N \N \N \N \N 56991 H.dyeri Hopea Hopea dyeri \N \N \N \N \N 56992 H.s.n. Hypseocharis Hypseocharis sp. Beck s.n. \N \N \N \N \N 56993 T.urceolatum Tremacron Tremacron urceolatum \N \N \N \N \N 56994 R.taisanensis Ranunculus Ranunculus taisanensis \N \N \N \N \N 56995 D.undulata Diospyros Diospyros undulata \N \N \N \N \N 56996 T.smaragdinus Telipogon Telipogon smaragdinus \N \N \N \N \N 56997 \N varietas Reseda amblycarpa var. adenensis \N \N \N \N \N 56998 \N genus Debregeasia \N \N \N \N \N 56999 A.brevicarpa Aspalathus Aspalathus brevicarpa \N \N \N \N \N 57000 T.JS5139 unclassified Taraxacum Taraxacum (sect. Tibetana) sp. JS5139 \N \N \N \N \N 57001 M.2889 Maxillaria Maxillaria cf. dalessandroi Whitten 2889 \N \N \N \N \N 57002 C.fasciculare Colchicum Colchicum fasciculare \N \N \N \N \N 57003 R.flanaganii Riocreuxia Riocreuxia flanaganii \N \N \N \N \N 57004 P.diversifolia Pulicaria Pulicaria diversifolia \N \N \N \N \N 57005 S.carinatifolium Sedum Sedum carinatifolium \N \N \N \N \N 57006 \N subspecies Cordylanthus maritimus subsp. canescens \N \N \N \N \N 57007 \N genus Vincetoxicum \N \N \N \N \N 57008 A.6942 Aechmea Aechmea sp. Hahn 6942 \N \N \N \N \N 57009 G.calyptrata Gaya Gaya calyptrata \N \N \N \N \N 57010 A.linearilobus Anacyclus Anacyclus linearilobus \N \N \N \N \N 57011 \N genus Costus \N \N \N \N \N 57012 P.oreophila Pentameris sect. Pentameris Pentameris oreophila \N \N \N \N \N 57013 S.trilobata Sphagneticola Sphagneticola trilobata \N \N \N \N \N 57014 P.comosa Passerina Passerina comosa \N \N \N \N \N 57015 O.brancifortii Orchis Orchis brancifortii \N \N \N \N \N 57016 \N tribe Tropidieae \N \N \N \N \N 57017 N.minor Narcissus Narcissus minor \N \N \N \N \N 57018 C.ampanihense Cynanchum Cynanchum ampanihense \N \N \N \N \N 57019 A.microcarpum Amomum Amomum microcarpum \N \N \N \N \N 57020 A.hemsleyana Actinidia Actinidia hemsleyana \N \N \N \N \N 57021 \N varietas Oreocharis argyreia var. angustifolia \N \N \N \N \N 57022 C.rigida Copernicia Copernicia rigida \N \N \N \N \N 57023 M.coudercii Mallotus Mallotus coudercii \N \N \N \N \N 57024 S.hydrangea Salvia Salvia hydrangea \N \N \N \N \N 57025 J.chotanae Jaltomata Jaltomata chotanae \N \N \N \N \N 57026 \N genus Discocactus \N \N \N \N \N 57027 L.multicaulis Linaria Linaria multicaulis \N \N \N \N \N 57028 P.pensylvanica Persicaria Persicaria pensylvanica \N \N \N \N \N 57029 A.coriacea Aerangis Aerangis coriacea \N \N \N \N \N 57030 A.bombycinus Astragalus Astragalus bombycinus \N \N \N \N \N 57031 \N tribe Desmodieae \N \N \N \N \N 57032 F.fontanesii Fumana Fumana fontanesii \N \N \N \N \N 57033 E.baldwinii Eleocharis Eleocharis baldwinii \N \N \N \N \N 57034 C.hassleri Coursetia Coursetia hassleri \N \N \N \N \N 57035 P.wawrae Psychotria Psychotria wawrae \N \N \N \N \N 57036 C.koenigii Chionachne Chionachne koenigii \N \N \N \N \N 57037 S.salignus Stenocarpus Stenocarpus salignus \N \N \N \N \N 57038 C.riparia Casuarina Casuarina riparia \N \N \N \N \N 57039 N.caloneura Naucleopsis Naucleopsis caloneura \N \N \N \N \N 57040 L.DGH-2009 Leycesteria Leycesteria sp. DGH-2009 \N \N \N \N \N 57041 \N varietas Collinsia bartsiifolia var. bartsiifolia \N \N \N \N \N 57042 M.ferruginea Miconia Miconia ferruginea \N \N \N \N \N 57043 P.thuringiaca Potentilla Potentilla thuringiaca \N \N \N \N \N 57044 A.tripterocarpum Aconogonon Aconogonon tripterocarpum \N \N \N \N \N 57045 R.amaniensis Rangaeris Rangaeris amaniensis \N \N \N \N \N 57046 D.pallidus Dendropanax Dendropanax pallidus \N \N \N \N \N 57047 B.SH-2010 Begonia Begonia sp. SH-2010 \N \N \N \N \N 57048 H.acuminata Heliconia Heliconia acuminata \N \N \N \N \N 57049 A.ruthiae Asclepias Asclepias ruthiae \N \N \N \N \N 57050 B.3128 Bromelia Bromelia sp. Brown 3128 \N \N \N \N \N 57051 P.1063 Peponidium Peponidium sp. Noyes et al. 1063 \N \N \N \N \N 57052 F.macrophylla Flemingia Flemingia macrophylla \N \N \N \N \N 57053 \N genus Balanites \N \N \N \N \N 57054 \N genus Mogoltavia \N \N \N \N \N 57055 G.schultesii Gaultheria Gaultheria schultesii \N \N \N \N \N 57056 \N genus Brachylaena \N \N \N \N \N 57057 S.neorossii Solanum Solanum neorossii \N \N \N \N \N 57058 R.ovata Ruttya Ruttya ovata \N \N \N \N \N 57059 C.australis Callerya Callerya australis \N \N \N \N \N 57060 C.queenslandicus Cladopus Cladopus queenslandicus \N \N \N \N \N 57061 C.palaestina Crepis Crepis palaestina \N \N \N \N \N 57062 M.sagu Metroxylon Metroxylon sagu sago palm \N \N \N \N 57063 \N genus Oeoniella \N \N \N \N \N 57064 \N subspecies Polygonum polygaloides subsp. kelloggii \N \N \N \N \N 57065 C.waterhousei Cryptandra Cryptandra waterhousei \N \N \N \N \N 57066 A.acerosum Acantholimon Acantholimon acerosum \N \N \N \N \N 57067 E.conveniens Eucalyptus Eucalyptus conveniens \N \N \N \N \N 57068 C.stenopetala Corylopsis Corylopsis stenopetala \N \N \N \N \N 66590 \N genus Fargesia \N \N \N \N \N 57069 \N subspecies Gentiana bavarica subsp. bavarica \N \N \N \N \N 57070 E.muelleri Evodiella Evodiella muelleri \N \N \N \N \N 57071 I.textorii Impatiens Impatiens textorii \N \N \N \N \N 57072 B.trifida Bungea Bungea trifida \N \N \N \N \N 57073 L.webbiana Lonicera Lonicera webbiana \N \N \N \N \N 57074 B.spathulata Brachyscome Brachyscome spathulata \N \N \N \N \N 57075 G.rotundata Guatteria Guatteria rotundata \N \N \N \N \N 57076 I.bismarckiana Iris Iris bismarckiana \N \N \N \N \N 57077 A.geophilum Asarum Asarum geophilum \N \N \N \N \N 57078 R.salzmannii Rostraria Rostraria salzmannii \N \N \N \N \N 57079 P.microphylla Polygala Polygala microphylla \N \N \N \N \N 57080 A.vogeliana Acacia Acacia vogeliana \N \N \N \N \N 57081 P.weberbaueri Paramongaia Paramongaia weberbaueri \N \N \N \N \N 57082 N.coronata Nolana Nolana coronata \N \N \N \N \N 57083 \N varietas Prunus umbellata var. umbellata \N \N \N \N \N 57084 M.somae Microstegium Microstegium somae \N \N \N \N \N 57085 S.30.012 Salicornia Salicornia aff. emerici Freitag 30.012 \N \N \N \N \N 57086 \N subspecies Achillea millefolium subsp. millefolium \N \N \N \N \N 57087 D.hispida Dioscorea Dioscorea hispida Asiatic bitter yam \N \N \N \N 57088 S.multiflora Speculantha Speculantha multiflora \N \N \N \N \N 57089 O.monandrum Ofaiston Ofaiston monandrum \N \N \N \N \N 57090 S.seminis Shorea Shorea seminis \N \N \N \N \N 57091 \N tribe Gymnarrheneae \N \N \N \N \N 57092 S.gummifer Sonchus Sonchus gummifer \N \N \N \N \N 57093 \N genus Hyalis \N \N \N \N \N 57094 P.sambiranensis Paederia Paederia sambiranensis \N \N \N \N \N 57095 G.hababensis Gyrocarpus Gyrocarpus hababensis \N \N \N \N \N 57096 \N genus Asteromyrtus \N \N \N \N \N 57097 U.versicolor Uvaria Uvaria versicolor \N \N \N \N \N 57098 G.robusta Gagea Gagea robusta \N \N \N \N \N 57099 \N genus Dianella \N \N \N \N \N 57100 \N varietas Adenia olaboensis var. parva \N \N \N \N \N 57101 C.conspersum Chamerion Chamerion conspersum \N \N \N \N \N 57102 P.clarkei Pedicularis Pedicularis clarkei \N \N \N \N \N 57103 T.perrieri Tricalysia Tricalysia perrieri \N \N \N \N \N 57104 A.apteroides Ainsliaea Ainsliaea apteroides \N \N \N \N \N 57105 A.calcaratum Acer Acer calcaratum \N \N \N \N \N 57106 \N genus Lepuropetalon \N \N \N \N \N 57107 C.turcomanica Crepis Crepis turcomanica \N \N \N \N \N 57108 D.N295 Discladium Discladium sp. N295 \N \N \N \N \N 57109 C.montana Conostegia Conostegia montana \N \N \N \N \N 57110 \N genus Stelis \N \N \N \N \N 57111 A.belangeri Atriplex Atriplex belangeri \N \N \N \N \N 57112 M.rubioi Maxillaria Maxillaria rubioi \N \N \N \N \N 57113 M.speciosa Mentzelia Mentzelia speciosa \N \N \N \N \N 57114 E.flaccidum Eremosparton Eremosparton flaccidum \N \N \N \N \N 57115 E.triste Echium Echium triste \N \N \N \N \N 57116 \N genus Corispermum \N \N \N \N \N 57117 L.talassica Lepidolopha Lepidolopha talassica \N \N \N \N \N 57118 P.boissierianum Phragmipedium Phragmipedium boissierianum \N \N \N \N \N 57119 L.papillifer Lithocarpus Lithocarpus papillifer \N \N \N \N \N 57120 C.spectabilis Costus Costus spectabilis \N \N \N \N \N 57121 F.purshiana Frangula Frangula purshiana cascara buckthorn,cascara sagrada,chittambark \N \N \N \N 57122 \N subspecies Dactylis glomerata subsp. hispanica \N \N \N \N \N 57123 \N varietas Deutzia parviflora var. amurensis \N \N \N \N \N 57124 \N genus Thelypodiopsis \N \N \N \N \N 57125 M.neobritannica Macaranga Macaranga neobritannica \N \N \N \N \N 57126 E.lavandulifolia Erica Erica lavandulifolia \N \N \N \N \N 57127 P.DG-2010 Parrya Parrya aff. albida DG-2010 \N \N \N \N \N 57128 S.rotunda Stephania Stephania rotunda \N \N \N \N \N 57129 T.licentiana Thermopsis Thermopsis licentiana \N \N \N \N \N 57130 P.leucocomus Ptilotus Ptilotus leucocomus \N \N \N \N \N 57131 \N genus Huanaca \N \N \N \N \N 57132 P.purpusii Pilosocereus Pilosocereus purpusii \N \N \N \N \N 57133 F.micropodioides Filago Filago micropodioides \N \N \N \N \N 57134 P.rivularis Prunus Prunus rivularis creek plum \N \N \N \N 57135 P.hederaceum Philodendron Philodendron hederaceum heart-leaf philodendron \N \N \N \N 57136 H.breviflora Hessea Hessea breviflora \N \N \N \N \N 57137 \N genus Damnxanthodium \N \N \N \N \N 57138 A.elaeagnoidea Aglaia Aglaia elaeagnoidea \N \N \N \N \N 57139 T.brizoides Triodia Triodia brizoides \N \N \N \N \N 57140 S.selloi Stevia Stevia selloi \N \N \N \N \N 57141 E.pulchelliflora Erica Erica pulchelliflora \N \N \N \N \N 57142 \N genus Bensoniella \N \N \N \N \N 57143 S.cernuum Solanum Solanum cernuum \N \N \N \N \N 57144 \N genus Albertinia \N \N \N \N \N 57145 V.syriaca Veronica Veronica syriaca \N \N \N \N \N 57146 C.pinnatus Carthamus Carthamus pinnatus \N \N \N \N \N 57147 M.lanceolata Melaleuca Melaleuca lanceolata \N \N \N \N \N 57148 B.inodora Bifrenaria Bifrenaria inodora \N \N \N \N \N 57149 L.latifolia Lavandula Lavandula latifolia \N \N \N \N \N 57150 F.pachyacantha Fagonia Fagonia pachyacantha \N \N \N \N \N 57151 K.debilis Korthalsia Korthalsia debilis \N \N \N \N \N 57152 P.spinescens Pseudoraphis Pseudoraphis spinescens \N \N \N \N \N 57153 V.racemosa Vigna Vigna racemosa \N \N \N \N \N 57154 E.subintegra Eurya Eurya subintegra \N \N \N \N \N 57155 H.tridentata Horkelia Horkelia tridentata \N \N \N \N \N 57156 C.linearifolia Carlowrightia Carlowrightia linearifolia \N \N \N \N \N 57157 M.tetrastoma Miconia Miconia tetrastoma graceful johnnyberry \N \N \N \N 57158 \N subspecies Arenaria grandiflora subsp. grandiflora \N \N \N \N \N 57159 \N varietas Ceanothus oliganthus var. oliganthus \N \N \N \N \N 57160 \N subspecies Dubautia laxa subsp. pseudoplantaginea \N \N \N \N \N 57161 C.taguahyensis Cordia Cordia taguahyensis \N \N \N \N \N 57162 M.torquata Meconopsis Meconopsis torquata \N \N \N \N \N 57163 F.brassi Flindersia Flindersia brassi \N \N \N \N \N 57164 C.alpina Conopholis Conopholis alpina \N \N \N \N \N 57165 \N subspecies Erica banksii subsp. purpurea \N \N \N \N \N 67947 \N order Crossosomatales \N \N \N \N \N 57166 A.cdT54 Atractylodes Atractylodes sp. cdT54 \N \N \N \N \N 57167 P.barrosoanum Philodendron Philodendron barrosoanum \N \N \N \N \N 57168 A.angustipetalum Amomum Amomum angustipetalum \N \N \N \N \N 57169 B.canescens Bupleurum Bupleurum canescens \N \N \N \N \N 57170 B.comosa Besleria Besleria comosa \N \N \N \N \N 57171 A.pterocarpa Astrotricha Astrotricha pterocarpa \N \N \N \N \N 57172 \N genus Biswarea \N \N \N \N \N 57173 E.cordata Eucnide Eucnide cordata \N \N \N \N \N 57174 L.trineura Leonis Leonis trineura \N \N \N \N \N 57175 S.bicuspidata Saxifragella Saxifragella bicuspidata \N \N \N \N \N 57176 B.albostellata Barleria Barleria albostellata \N \N \N \N \N 57177 L.ruthenicum Lycium Lycium ruthenicum \N \N \N \N \N 57178 T.filiforme Tetramolopium Tetramolopium filiforme \N \N \N \N \N 57179 Z.gaimardioides Zameioscirpus Zameioscirpus gaimardioides \N \N \N \N \N 57180 \N varietas Maxillaria madida var. monophylla \N \N \N \N \N 57181 M.moricandioides Moricandia Moricandia moricandioides \N \N \N \N \N 57182 R.anguifera Rinorea Rinorea anguifera \N \N \N \N \N 57183 E.subgibbosa Eriosyce Eriosyce subgibbosa cacto rosado,quisquito \N \N \N \N 57184 G.syzygiifolia Garcinia Garcinia syzygiifolia \N \N \N \N \N 57185 T.singularis Tillandsia Tillandsia singularis \N \N \N \N \N 57186 L.pilosa Liatris Liatris pilosa \N \N \N \N \N 57187 P.geminatus Piaranthus Piaranthus geminatus \N \N \N \N \N 57188 \N genus Lophophora \N \N \N \N \N 57189 E.kopetdaghi Euphorbia Euphorbia kopetdaghi \N \N \N \N \N 57190 O.hastilabium Oncidium Oncidium hastilabium \N \N \N \N \N 57191 R.chingii Rubus Rubus chingii \N \N \N \N \N 57192 D.rhytidosperma Delissea Delissea rhytidosperma \N \N \N \N \N 57193 C.omeiensis Corylopsis Corylopsis omeiensis \N \N \N \N \N 57194 S.linifolia Schoenocrambe Schoenocrambe linifolia \N \N \N \N \N 57195 \N genus Ptychosema \N \N \N \N \N 57196 A.elgonensis Alchemilla Alchemilla elgonensis \N \N \N \N \N 57197 C.velutinus Ceanothus Ceanothus velutinus \N \N \N \N \N 57198 S.ciliata Strobilanthes Strobilanthes ciliata \N \N \N \N \N 57199 M.emarginata Mandevilla Mandevilla emarginata \N \N \N \N \N 57200 \N subspecies Viola purpurea subsp. purpurea \N \N \N \N \N 57201 G.polymorpha Gochnatia Gochnatia polymorpha \N \N \N \N \N 57202 T.2008/541 Taraxacum Taraxacum sp. 2008/541 \N \N \N \N \N 57203 S.canense Solanum Solanum canense \N \N \N \N \N 57204 P.lassa Physalis Physalis lassa \N \N \N \N \N 57205 E.obtusiflora Echinochloa Echinochloa obtusiflora \N \N \N \N \N 57206 P.437 Paepalanthus Paepalanthus aff. bahiensis Andrade 437 \N \N \N \N \N 57207 \N genus Lipschitziella \N \N \N \N \N 57208 G.sylvestre Gymnema Gymnema sylvestre \N \N \N \N \N 57209 B.sapida Blighia Blighia sapida \N \N \N \N \N 57210 \N tribe Bertiereae \N \N \N \N \N 57211 \N genus Pelecyphora \N \N \N \N \N 57212 V.tucanorum Vochysia Vochysia tucanorum \N \N \N \N \N 57213 I.acanthifolius Iocenes Iocenes acanthifolius \N \N \N \N \N 57214 V.virginicum Veronicastrum Veronicastrum virginicum \N \N \N \N \N 57215 P.obtusangulum Platylobium Platylobium obtusangulum \N \N \N \N \N 57216 C.callialatum Cynanchum Cynanchum callialatum \N \N \N \N \N 57217 H.1188 Hedyosmum Hedyosmum sp. Stevenson 1188 \N \N \N \N \N 57218 \N genus Colombobalanus \N \N \N \N \N 57219 S.gilimalensis Stemonoporus Stemonoporus gilimalensis \N \N \N \N \N 57220 \N subspecies Rhipsalis floccosa subsp. oreophila \N \N \N \N \N 57221 H.flavescens Holcoglossum Holcoglossum flavescens \N \N \N \N \N 57222 P.spinescens Phemeranthus Phemeranthus spinescens \N \N \N \N \N 57223 C.okennonii Crataegus Crataegus okennonii \N \N \N \N \N 57224 \N subspecies Vigna membranacea subsp. macrodon \N \N \N \N \N 57225 P.leucocephalus Paepalanthus Paepalanthus leucocephalus \N \N \N \N \N 57226 C.sattayasaii Curcuma Curcuma sattayasaii \N \N \N \N \N 57227 S.tomentosa Stylosanthes Stylosanthes tomentosa \N \N \N \N \N 57228 \N genus Appendicula \N \N \N \N \N 57229 I.laxeracemosa Indigofera Indigofera laxeracemosa \N \N \N \N \N 57230 T.spinosa Tara Tara spinosa spiny holdback \N \N \N \N 57231 D.capensis Dicoma Dicoma capensis \N \N \N \N \N 57232 F.spaethiana Fraxinus Fraxinus spaethiana shioji \N \N \N \N 57233 V.australasica Vittadinia Vittadinia australasica \N \N \N \N \N 57234 S.ohioensis Solidago Solidago ohioensis Ohio goldenrod \N \N \N \N 57235 P.ciliata Passiflora Passiflora ciliata \N \N \N \N \N 57236 \N varietas Solanum grayi var. grandiflorum \N \N \N \N \N 57237 P.botryoides Poa Poa botryoides \N \N \N \N \N 57238 P.blanda Peperomia Peperomia blanda \N \N \N \N \N 57239 S.apiana Salvia Salvia apiana \N \N \N \N \N 57240 A.cordifolia Aptenia Aptenia cordifolia \N \N \N \N \N 57241 L.rhizomaticum Ligusticum Ligusticum rhizomaticum \N \N \N \N \N 57242 C.torreyi Collinsia Collinsia torreyi \N \N \N \N \N 57243 P.heterophylla Parsonsia Parsonsia heterophylla \N \N \N \N \N 57244 \N genus Cirsium \N \N \N \N \N 57245 S.spinosa Strychnos Strychnos spinosa \N \N \N \N \N 57246 G.microphylla Glandularia Glandularia microphylla \N \N \N \N \N 57247 T.rechingeri Tragopogon Tragopogon rechingeri \N \N \N \N \N 57248 P.gracilis Pheidochloa Pheidochloa gracilis \N \N \N \N \N 57249 O.megalophylla Olearia Olearia megalophylla \N \N \N \N \N 57250 E.thinophila Euphorbia Euphorbia thinophila \N \N \N \N \N 57251 Y.henryi Yinshania Yinshania henryi \N \N \N \N \N 57252 N.ch0718 Neoregelia Neoregelia sp. ch0718 \N \N \N \N \N 57253 P.pseudocerasus Prunus Prunus pseudocerasus Chinese sour cherry,karao-mizukura,shina oto \N \N \N \N 57254 C.incurvus Corybas Corybas incurvus \N \N \N \N \N 57255 G.oldemanii Geonoma Geonoma oldemanii \N \N \N \N \N 57256 \N genus Teline \N \N \N \N \N 57257 Z.album Zygophyllum Zygophyllum album \N \N \N \N \N 57258 A.curvipes Astragalus Astragalus curvipes \N \N \N \N \N 57259 E.officinalis Euphrasia Euphrasia officinalis \N \N \N \N \N 57260 A.exappendiculatum Arisaema Arisaema exappendiculatum \N \N \N \N \N 57261 \N genus Prionosciadium \N \N \N \N \N 57263 \N forma Solanum bukasovii f. multidissectum \N \N \N \N \N 57264 S.jotanii Sasa Sasa jotanii \N \N \N \N \N 57265 \N tribe Pertyeae \N \N \N \N \N 57266 \N varietas Piper submultinerve var. nandanicum \N \N \N \N \N 57267 C.suberecta Carex Carex suberecta \N \N \N \N \N 57268 A.spinibractea Atriplex Atriplex spinibractea \N \N \N \N \N 57269 \N genus Anisophyllea \N \N \N \N \N 57270 \N subfamily Nicotianoideae \N \N \N \N \N 57271 \N subspecies Lens culinaris subsp. odemensis \N \N \N \N \N 57272 P.amieuana Planchonella Planchonella amieuana \N \N \N \N \N 57273 S.venulosa Schefflera Schefflera venulosa \N \N \N \N \N 57274 \N subspecies Bidens campylotheca subsp. pentamera \N \N \N \N \N 57275 L.cunninghamii Leptomeria Leptomeria cunninghamii \N \N \N \N \N 57276 S.aphyodendron Solanum Solanum aphyodendron \N \N \N \N \N 57277 M.pedunculatum Myriophyllum Myriophyllum pedunculatum \N \N \N \N \N 57278 B.exilis Brachyscome Brachyscome exilis \N \N \N \N \N 57279 C.myricifolius Croton Croton myricifolius \N \N \N \N \N 57280 R.polyrhizos Ranunculus Ranunculus polyrhizos \N \N \N \N \N 57281 L.semperflorens Lupinus Lupinus semperflorens \N \N \N \N \N 57282 T.bellirica Terminalia Terminalia bellirica beach-almond,belleric,bohera \N \N \N \N 57283 H.excelsa Heberdenia Heberdenia excelsa \N \N \N \N \N 57284 C.florida Clematis Clematis florida \N \N \N \N \N 57285 \N genus Crocus \N \N \N \N \N 57286 P.indicum Pentanema Pentanema indicum \N \N \N \N \N 57287 A.foeniculaceum Argyranthemum Argyranthemum foeniculaceum \N \N \N \N \N 57288 \N genus Dyschoriste \N \N \N \N \N 57289 O.parvifolia Otoba Otoba parvifolia \N \N \N \N \N 57290 \N subspecies Glehnia littoralis subsp. leiocarpa \N \N \N \N \N 57291 \N genus Vochysia \N \N \N \N \N 57292 E.gaillardotii Echinops Echinops gaillardotii \N \N \N \N \N 57293 F.tettensis Ficus Ficus tettensis \N \N \N \N \N 57294 \N genus Logania \N \N \N \N \N 57295 B.rupestre Blastocaulon Blastocaulon rupestre \N \N \N \N \N 57296 A.siccaneus Astragalus Astragalus siccaneus \N \N \N \N \N 57297 \N genus Outreya \N \N \N \N \N 57298 L.cordifolium Leucospermum Leucospermum cordifolium \N \N \N \N \N 57299 B.deflexa Bostrychanthera Bostrychanthera deflexa \N \N \N \N \N 57300 B.20 Begonia Begonia sp. Forrest 20 \N \N \N \N \N 57301 P.foliosa Pilea Pilea foliosa \N \N \N \N \N 57302 O.s.n. Ophiorrhiza Ophiorrhiza sp. Firmmel s.n. \N \N \N \N \N 57303 U.cyphandrum Urophyllum Urophyllum cyphandrum \N \N \N \N \N 57304 R.1004 Rhipsalis Rhipsalis cf. lindbergiana Uebelmann 1004 \N \N \N \N \N 57305 S.calcarata Sclerolaena Sclerolaena calcarata \N \N \N \N \N 57306 \N subspecies Phaseolus polystachios subsp. sinuatus \N \N \N \N \N 57307 C.kalahariensis Cucumis Cucumis kalahariensis \N \N \N \N \N 57308 \N varietas Lindera pulcherrima var. hemsleyana \N \N \N \N \N 57309 D.hexagynus Drepananthus Drepananthus hexagynus \N \N \N \N \N 57310 A.juzepczukii Alisma Alisma juzepczukii \N \N \N \N \N 57311 D.hemimelanoglossum Dendrobium Dendrobium hemimelanoglossum \N \N \N \N \N 57312 \N varietas Corylus heterophylla var. sutchuenensis \N \N \N \N \N 57313 S.burchellii Sium Sium burchellii \N \N \N \N \N 57314 P.kappleri Psychotria Psychotria kappleri \N \N \N \N \N 57315 A.andrachne Arbutus Arbutus andrachne \N \N \N \N \N 57316 A.boia Alpinia Alpinia boia \N \N \N \N \N 57317 C.odorus Cyrtanthus Cyrtanthus odorus \N \N \N \N \N 57318 \N varietas Cucurbita pepo var. ovifera acorn squash,ornamental gourd,pattypan squash,summer crookneck squash \N \N \N \N 57319 A.tetramerum Acer Acer tetramerum \N \N \N \N \N 57320 F.hyssopifolia Felicia Felicia hyssopifolia \N \N \N \N \N 57321 M.disperma Maytenus Maytenus disperma \N \N \N \N \N 57322 S.cyaneus Streptocarpus Streptocarpus cyaneus \N \N \N \N \N 57323 T.erythrocarpum Taraxacum Taraxacum erythrocarpum \N \N \N \N \N 57324 P.ussuriensis Populus Populus ussuriensis \N \N \N \N \N 57325 \N tribe Cichorieae \N \N \N \N \N 57326 C.nymanii Cladopus Cladopus nymanii \N \N \N \N \N 57327 P.tomentiglandulosa Populus Populus tomentiglandulosa \N \N \N \N \N 57328 \N subspecies Leontice leontopetalum subsp. ewersmannii \N \N \N \N \N 57329 O.arbuscula Oxalis Oxalis arbuscula \N \N \N \N \N 57330 \N genus Yushania \N \N \N \N \N 57331 A.fastigiatus Andropogon Andropogon fastigiatus \N \N \N \N \N 57332 B.pusilla Brachyscome Brachyscome pusilla \N \N \N \N \N 57333 F.halleri Festuca Festuca halleri \N \N \N \N \N 57334 F.hiberniflorum Farfugium Farfugium hiberniflorum \N \N \N \N \N 57335 D.alisma Damasonium Damasonium alisma \N \N \N \N \N 57336 P.grandidentata Populus Populus sieboldii x Populus grandidentata \N \N \N \N \N 57337 T.lineare Talinum Talinum lineare \N \N \N \N \N 57338 P.beachiae Pepinia Pepinia beachiae \N \N \N \N \N 57339 B.hertlingiana Browningia Browningia hertlingiana \N \N \N \N \N 57340 D.dendo Diospyros Diospyros dendo \N \N \N \N \N 57341 C.leptantha Cuscuta Cuscuta leptantha \N \N \N \N \N 57342 B.jaeschkeana Berberis Berberis jaeschkeana \N \N \N \N \N 57343 A.continentalis Aralia Aralia continentalis \N \N \N \N \N 57344 \N tribe Chasmanthieae \N \N \N \N \N 57345 E.purpusorum Echeveria Echeveria purpusorum \N \N \N \N \N 57346 P.elisabethae Peristylus Peristylus elisabethae \N \N \N \N \N 57347 A.oscensis Arenaria Arenaria oscensis \N \N \N \N \N 57348 P.regnellii Paspalum Paspalum regnellii \N \N \N \N \N 57349 C.ornata Clavija Clavija ornata \N \N \N \N \N 57350 L.volkensii Leucas Leucas volkensii \N \N \N \N \N 57351 \N genus Gymnadenia \N \N \N \N \N 57352 G.pusillus Gonocarpus Gonocarpus pusillus \N \N \N \N \N 57353 T.viridiflora Tillandsia Tillandsia viridiflora \N \N \N \N \N 57354 \N genus Neriacanthus \N \N \N \N \N 57355 O.flagellata Oxalis Oxalis flagellata \N \N \N \N \N 57356 A.leptocoma Aspalathus Aspalathus leptocoma \N \N \N \N \N 57357 C.californicus Croton Croton californicus \N \N \N \N \N 57358 \N subfamily Arundinoideae \N \N \N \N \N 57359 D.capensis Drimia Drimia capensis \N \N \N \N \N 67948 \N genus Villanova \N \N \N \N \N 57360 V.elliottii Vaccinium Vaccinium elliottii \N \N \N \N \N 57361 G.confusa Gagea Gagea confusa \N \N \N \N \N 57362 C.pallens Chimonocalamus Chimonocalamus pallens \N \N \N \N \N 57363 P.baumanniana Pouchetia Pouchetia baumanniana \N \N \N \N \N 57364 M.canadense Maianthemum Maianthemum canadense \N \N \N \N \N 57365 D.grandiflorum Diplodium Diplodium grandiflorum \N \N \N \N \N 57366 B.amplissima Bidens Bidens amplissima \N \N \N \N \N 57367 \N varietas Luzula hawaiiensis var. hawaiiensis \N \N \N \N \N 57368 S.longistipitatus Scindapsus Scindapsus longistipitatus \N \N \N \N \N 57369 B.caucana Bomarea Bomarea caucana \N \N \N \N \N 57370 C.volubilis Convolvulus Convolvulus volubilis \N \N \N \N \N 57371 C.brevipes Coffea Coffea brevipes \N \N \N \N \N 57372 D.inexpectatus Dinteranthus Dinteranthus inexpectatus \N \N \N \N \N 57373 \N genus Brickellia \N \N \N \N \N 57374 \N genus Gyminda \N \N \N \N \N 57375 H.6921 Heliconia Heliconia sp. Hahn 6921 \N \N \N \N \N 57376 \N genus Tammsia \N \N \N \N \N 57377 F.dissosperma Flindersia Flindersia dissosperma \N \N \N \N \N 57378 C.paradoxa Carex Carex paradoxa \N \N \N \N \N 57379 C.paradoxa Colletia Colletia paradoxa \N \N \N \N \N 57380 S.senegalensis Schoenoplectiella Schoenoplectiella senegalensis \N \N \N \N \N 57381 Z.tanyostigma Zygogynum Zygogynum tanyostigma \N \N \N \N \N 57382 S.bourgaeana Saxifraga Saxifraga bourgaeana \N \N \N \N \N 57383 G.nocturna Griffinia Griffinia nocturna \N \N \N \N \N 57384 G.aphyllus Gymnosiphon Gymnosiphon aphyllus \N \N \N \N \N 57385 C.ferganensis Chesneya Chesneya ferganensis \N \N \N \N \N 57386 L.echinata Lambertia Lambertia echinata \N \N \N \N \N 57387 \N subspecies Mammillaria thornberi subsp. yaquensis \N \N \N \N \N 57388 P.peltatum Piper Piper peltatum \N \N \N \N \N 57389 A.cynometroides Aphanocalyx Aphanocalyx cynometroides \N \N \N \N \N 57390 \N genus Discocnide \N \N \N \N \N 57391 P.medinillifolium Piper Piper medinillifolium \N \N \N \N \N 57392 C.turkestanicus Carthamus Carthamus turkestanicus \N \N \N \N \N 57393 B.cylindrica Bruguiera Bruguiera cylindrica \N \N \N \N \N 57394 C.caespitosa Catananche Catananche caespitosa \N \N \N \N \N 57395 \N genus Neea \N \N \N \N \N 57396 \N varietas Geum calthifolium var. nipponicum \N \N \N \N \N 57397 T.nervosa Turnera Turnera nervosa \N \N \N \N \N 57398 A.suaveolens Allium Allium suaveolens \N \N \N \N \N 57399 H.caucasium Hylotelephium Hylotelephium caucasium \N \N \N \N \N 57400 G.multifolia Globba Globba multifolia \N \N \N \N \N 57401 C.aureum Chaerophyllum Chaerophyllum aureum \N \N \N \N \N 57402 B.parishii Bahiopsis Bahiopsis parishii \N \N \N \N \N 57403 \N subspecies Brownleea galpinii subsp. major \N \N \N \N \N 57404 T.cordatum Tripterospermum Tripterospermum cordatum \N \N \N \N \N 57405 I.gracilior Inga Inga gracilior \N \N \N \N \N 57406 D.zangbeiensis Draba Draba zangbeiensis \N \N \N \N \N 57407 G.onychocalyx Gesneria Gesneria onychocalyx \N \N \N \N \N 57408 P.bolivianus Phylloscirpus Phylloscirpus bolivianus \N \N \N \N \N 57409 M.anceps Maxillaria Maxillaria anceps \N \N \N \N \N 57410 N.camtschatica Neolindleya Neolindleya camtschatica \N \N \N \N \N 57411 G.crinita Guazuma Guazuma crinita \N \N \N \N \N 57412 M.cuneifolia Meliosma Meliosma cuneifolia \N \N \N \N \N 57413 N.balouchestanica Nepeta Nepeta balouchestanica \N \N \N \N \N 57414 M.violacea Manihot Manihot violacea \N \N \N \N \N 57415 A.imberbis Agrostis Agrostis imberbis \N \N \N \N \N 57416 D.nyasae Dalbergiella Dalbergiella nyasae \N \N \N \N \N 57417 O.1997' Oxyanthus Oxyanthus sp. 'Andreasen 1997' \N \N \N \N \N 57418 E.11024 Encyclia Encyclia sp. Brieger 11024 \N \N \N \N \N 57419 P.socotrana Poskea Poskea socotrana \N \N \N \N \N 57420 S.lendyana Stenotyla Stenotyla lendyana \N \N \N \N \N 57421 B.dilatata Brachystele Brachystele dilatata \N \N \N \N \N 57422 E.macrophyllus Echinodorus Echinodorus macrophyllus \N \N \N \N \N 57423 C.macrocarpus Calochortus Calochortus macrocarpus sagebrush mariposa lily \N \N \N \N 57424 S.arenosus Sauropus Sauropus arenosus \N \N \N \N \N 57425 C.pulchra Crepis Crepis pulchra \N \N \N \N \N 57426 \N tribe Aptosimeae \N \N \N \N \N 57427 P.obovatifolia Persea Persea obovatifolia \N \N \N \N \N 57428 A.speciosum Asarum Asarum speciosum \N \N \N \N \N 57429 A.pubescens Aechmea Aechmea pubescens \N \N \N \N \N 57430 \N subspecies Vicia villosa subsp. varia \N \N \N \N \N 57431 T.oerstedii Trichocentrum Trichocentrum oerstedii \N \N \N \N \N 57432 L.tomentosa Litsea Litsea tomentosa \N \N \N \N \N 57433 \N varietas Draba hispanica var. brevistyla \N \N \N \N \N 57434 P.pusilla Phoenix Phoenix pusilla \N \N \N \N \N 57435 T.xishuangbannaense Tetrastigma Tetrastigma xishuangbannaense \N \N \N \N \N 57436 Z.majdae Zhumeria Zhumeria majdae \N \N \N \N \N 57437 D.argenteum Dasyphyllum Dasyphyllum argenteum \N \N \N \N \N 57438 T.TL260-2 unclassified Taraxacum Taraxacum (sect. Naevosa) sp. TL260-2 \N \N \N \N \N 57439 \N subspecies Proboscidea parviflora subsp. parviflora \N \N \N \N \N 57440 T.sicula Tinguarra Tinguarra sicula \N \N \N \N \N 57441 D.campanulata Dichaea Dichaea campanulata \N \N \N \N \N 57442 \N genus Dialypetalanthus \N \N \N \N \N 57443 A.laeta Acacia Acacia laeta \N \N \N \N \N 57444 \N subspecies Eucalyptus rudis subsp. rudis \N \N \N \N \N 57445 B.CS-2009 Bauhinia Bauhinia sp. CS-2009 \N \N \N \N \N 57446 R.floccosa Rhipsalis Rhipsalis floccosa \N \N \N \N \N 57447 A.chinensis Aucuba Aucuba chinensis \N \N \N \N \N 57448 C.laevis Chysis Chysis laevis \N \N \N \N \N 57449 C.lanosiflora Cryptandra Cryptandra lanosiflora \N \N \N \N \N 57450 A.brachystachya Acacia Acacia brachystachya \N \N \N \N \N 57451 V.siamensis Vanilla Vanilla siamensis \N \N \N \N \N 57452 I.munzii Iris Iris munzii \N \N \N \N \N 57453 \N genus Nannorrhops \N \N \N \N \N 57454 P.P127 Physalis Physalis sp. P127 \N \N \N \N \N 57455 E.grandiflora Eperua Eperua grandiflora \N \N \N \N \N 57456 F.pallescens Fedia Fedia pallescens \N \N \N \N \N 57457 C.decumanum Canarium Canarium decumanum \N \N \N \N \N 57458 H.macphersonii Hemigenia Hemigenia macphersonii \N \N \N \N \N 57459 A.prinoides Anaxagorea Anaxagorea prinoides \N \N \N \N \N 57460 A.roseanum Acharagma Acharagma roseanum \N \N \N \N \N 57461 C.omiana Carex Carex omiana \N \N \N \N \N 57462 V.flava Viguiera Viguiera flava \N \N \N \N \N 57463 \N genus Hexadesmia \N \N \N \N \N 57464 G.barbiei Guzmania Guzmania barbiei \N \N \N \N \N 57465 B.obovoidea Begonia Begonia obovoidea \N \N \N \N \N 57466 \N genus Nesaea \N \N \N \N \N 57467 S.28393 Senecio Senecio aff. arenarius Merxmuller & Giess 28393 \N \N \N \N \N 57468 M.pauciflora Meryta Meryta pauciflora \N \N \N \N \N 57469 M.stenophyllum Macrotyloma Macrotyloma stenophyllum \N \N \N \N \N 57470 C.ovalis Cliffortia Cliffortia ovalis \N \N \N \N \N 57471 S.corrugata Salvia Salvia corrugata \N \N \N \N \N 57472 M.concinna Miconia Miconia concinna \N \N \N \N \N 57473 C.squamata Cuscuta Cuscuta squamata \N \N \N \N \N 57474 T.tumens Trifolium Trifolium tumens \N \N \N \N \N 57475 U.kimberleyensis Utricularia Utricularia kimberleyensis \N \N \N \N \N 57476 D.integrifolius Dontostemon Dontostemon integrifolius \N \N \N \N \N 57477 T.erubescens Trifolium Trifolium erubescens \N \N \N \N \N 57478 F.mervynii Ferula Ferula mervynii \N \N \N \N \N 57479 H.globifera Hyalochlamys Hyalochlamys globifera \N \N \N \N \N 57480 W.physodes Wilhelmsia Wilhelmsia physodes \N \N \N \N \N 57481 H.autumnale Helenium Helenium autumnale sneezeweed \N \N \N \N 57482 H.sprucei Hedyosmum Hedyosmum sprucei \N \N \N \N \N 57483 D.minima Dioscorea Dioscorea minima \N \N \N \N \N 57484 C.ozarkensis Castanea Castanea ozarkensis Ozark chinkapin \N \N \N \N 57485 C.vulcani Carex Carex vulcani \N \N \N \N \N 57486 \N varietas Saintpaulia orbicularis var. purpurea \N \N \N \N \N 57487 W.655 Weinmannia Weinmannia sp. Bradford 655 \N \N \N \N \N 57488 O.carduchorum Onopordum Onopordum carduchorum \N \N \N \N \N 57489 \N varietas Dendrobium speciosum var. blackdownense \N \N \N \N \N 57490 P.verrucosum Polycnemum Polycnemum verrucosum \N \N \N \N \N 57491 L.monopetala Litsea Litsea monopetala \N \N \N \N \N 57492 B.angustata Bursera Bursera angustata \N \N \N \N \N 57493 H.falconeri Himalayacalamus Himalayacalamus falconeri \N \N \N \N \N 57494 \N genus Exochorda pearlbush \N \N \N \N 57495 M.ternifolia Manostachya Manostachya ternifolia \N \N \N \N \N 57496 H.bowkeriana Hypertelis Hypertelis bowkeriana \N \N \N \N \N 57497 A.moschata Arracacia Arracacia moschata \N \N \N \N \N 57498 \N genus Aneulophus \N \N \N \N \N 57499 \N genus Vigethia \N \N \N \N \N 57500 \N genus Cynanchum \N \N \N \N \N 57501 L.speciosa Laelia Laelia speciosa \N \N \N \N \N 57502 R.trigonus Ranunculus Ranunculus trigonus \N \N \N \N \N 57503 D.ericoides Dodonaea Dodonaea ericoides \N \N \N \N \N 57504 C.manan Calamus Calamus manan \N \N \N \N \N 57505 D.HNPV03Du Dubautia Dubautia sp. HNPV03Du \N \N \N \N \N 57506 \N genus Coilochilus \N \N \N \N \N 57507 \N subspecies Primula cusickiana subsp. domensis \N \N \N \N \N 57508 R.humifusa Resnova Resnova humifusa \N \N \N \N \N 57509 A.montana Amphitecna Amphitecna montana \N \N \N \N \N 57510 F.floridana Froelichia Froelichia floridana \N \N \N \N \N 57511 T.kwangsiensis Tutcheria Tutcheria kwangsiensis \N \N \N \N \N 57512 E.fruticosum Exacum Exacum fruticosum \N \N \N \N \N 57513 I.feuillei Inga Inga feuillei ice-cream bean,pacay \N \N \N \N 57514 R.cincinnata Renealmia Renealmia cincinnata \N \N \N \N \N 57515 L.gandogeri Leucadendron Leucadendron gandogeri \N \N \N \N \N 57516 \N genus Chionopappus \N \N \N \N \N 57517 T.baccarinii Trifolium Trifolium baccarinii \N \N \N \N \N 57518 \N genus Breonadia \N \N \N \N \N 57519 P.borjensis Psychotria Psychotria borjensis \N \N \N \N \N 57520 S.bryoniifolius Schizopepon Schizopepon bryoniifolius \N \N \N \N \N 72181 \N family Peraceae \N \N \N \N \N 57521 S.pomaderroides Stenanthemum Stenanthemum pomaderroides \N \N \N \N \N 57522 E.harrisii Erithalis Erithalis harrisii \N \N \N \N \N 57523 \N genus Thyrsanthemum \N \N \N \N \N 57524 Z.bodinieri Zehneria Zehneria bodinieri \N \N \N \N \N 57525 \N genus Cymaria \N \N \N \N \N 57526 G.rogersii Gladiolus Gladiolus rogersii \N \N \N \N \N 57527 D.farsetioides Draba Draba farsetioides \N \N \N \N \N 57528 N.rajah Nepenthes Nepenthes rajah \N \N \N \N \N 57529 A.sellowiana Acca Acca sellowiana guayaba chilena,pineapple-guava \N \N \N \N 57530 \N genus Loxocalyx \N \N \N \N \N 57531 G.gracilipes Guatteria Guatteria gracilipes \N \N \N \N \N 57532 \N genus Cosmostigma \N \N \N \N \N 57533 V.lactea Viola Viola lactea pale dog violet \N \N \N \N 57534 M.major Monolopia Monolopia major \N \N \N \N \N 57535 Z.trichantha Zeltnera Zeltnera trichantha \N \N \N \N \N 57536 D.smithiorum Daviesia Daviesia smithiorum \N \N \N \N \N 57537 E.crassipetala Eugenia Eugenia crassipetala \N \N \N \N \N 57538 E.anachoreta Euphorbia Euphorbia anachoreta \N \N \N \N \N 57539 M.9335 Mabea Mabea sp. Miller & Hauk 9335 \N \N \N \N \N 57540 C.pittieri Calliandra Calliandra pittieri \N \N \N \N \N 57541 R.schomburgkii Roucheria Roucheria schomburgkii \N \N \N \N \N 57542 L.trilocularis Lepiniopsis Lepiniopsis trilocularis \N \N \N \N \N 57543 B.papillosa Brachyscome Brachyscome papillosa Brachycome papillosa \N \N \N \N 57544 E.saltuense Eupatorium Eupatorium saltuense \N \N \N \N \N 57545 F.cyathistipula Ficus Ficus cyathistipula \N \N \N \N \N 57546 \N genus Chimarrhis \N \N \N \N \N 57547 C.9476 Clematis Clematis sp. Wen 9476 \N \N \N \N \N 57548 F.rupicola Festuca Festuca rupicola \N \N \N \N \N 57549 T.sample environmental samples Taxonomy:205882 Triticeae environmental sample \N \N \N \N \N 57550 B.pendulocarpa Boechera Boechera pendulocarpa \N \N \N \N \N 57551 \N varietas Trifolium kingii var. productum \N \N \N \N \N 57552 S.enervia Styphelia Styphelia enervia \N \N \N \N \N 57553 S.japonica Sciaphila Sciaphila japonica \N \N \N \N \N 57554 P.thurberi Potentilla Potentilla thurberi \N \N \N \N \N 57555 D.africanum Diplacrum Diplacrum africanum \N \N \N \N \N 57556 M.divaricata Maxillaria Maxillaria divaricata \N \N \N \N \N 57557 M.plebeja Maxillaria Maxillaria plebeja \N \N \N \N \N 57558 I.meruensis Isolepis Isolepis meruensis \N \N \N \N \N 57559 \N subspecies Echinops spinosissimus subsp. bithynicus \N \N \N \N \N 57560 M.tenella Mollugo Mollugo tenella \N \N \N \N \N 57561 H.longifolius Helianthus Helianthus longifolius \N \N \N \N \N 57562 \N forma Miscanthus sinensis f. glaber \N \N \N \N \N 57563 R.brenesii Randia Randia brenesii \N \N \N \N \N 57564 C.cylindrocarpa Crotalaria Crotalaria cylindrocarpa \N \N \N \N \N 57565 \N genus Cuttsia \N \N \N \N \N 57566 M.clavija Myrcia Myrcia clavija \N \N \N \N \N 57567 B.annobonensis Begonia Begonia annobonensis \N \N \N \N \N 57568 D.lasiophylla Draba Draba lasiophylla \N \N \N \N \N 57569 G.transvaalica Galpinia Galpinia transvaalica \N \N \N \N \N 57570 C.3663 Clusia Clusia sp. JA 3663 \N \N \N \N \N 57571 P.tehuelches Pterygiosperma Pterygiosperma tehuelches \N \N \N \N \N 57572 A.longiaristata Aulonemia Aulonemia longiaristata \N \N \N \N \N 57573 \N varietas Gaultheria depressa var. depressa \N \N \N \N \N 57574 E.rossii Eucalyptus Eucalyptus rossii \N \N \N \N \N 57575 \N genus Labisia \N \N \N \N \N 57576 \N subspecies Atriplex lentiformis subsp. lentiformis \N \N \N \N \N 57577 R.palustris Rorippa Rorippa palustris bog yellowcress \N \N \N \N 57578 \N subspecies Anthemis cretica subsp. gerardiana \N \N \N \N \N 57579 D.scabrilingue Dendrobium Dendrobium scabrilingue \N \N \N \N \N 57580 S.2003/1 Salicornia Salicornia aff. perennans Kadereit 2003/1 \N \N \N \N \N 57581 \N varietas Aristida purpurascens var. virgata \N \N \N \N \N 57582 \N family Hydrophyllaceae waterleaf family \N \N \N \N 57583 \N genus Nymphoides \N \N \N \N \N 57584 P.serpyllifolia Plecostachys Plecostachys serpyllifolia \N \N \N \N \N 57585 S.MM3754 Schoenoxiphium Schoenoxiphium sp. MM3754 \N \N \N \N \N 57586 P.pulcher Potamogeton Potamogeton pulcher \N \N \N \N \N 57587 C.'Brazil' Cinnamodendron Cinnamodendron sp. 3 'Brazil' \N \N \N \N \N 57588 M.reflexa Micranthes Micranthes reflexa \N \N \N \N \N 57589 V.jacquemontii Vitis Vitis jacquemontii \N \N \N \N \N 57590 \N varietas Lupinus excubitus var. hallii \N \N \N \N \N 57591 \N genus Obolaria \N \N \N \N \N 57592 S.cazorlensis Stipa Stipa cazorlensis \N \N \N \N \N 57593 E.transbaicalensis Elymus Elymus transbaicalensis \N \N \N \N \N 57594 \N genus Sarcocapnos \N \N \N \N \N 57595 R.clivorum Rhynchosia Rhynchosia clivorum \N \N \N \N \N 57596 M.cladotricha Memora Memora cladotricha \N \N \N \N \N 57597 A.25 Astrotrichilia Astrotrichilia sp. Richard 25 \N \N \N \N \N 57598 V.willkommii Viola Viola willkommii \N \N \N \N \N 57599 S.inermis Spermolepis Spermolepis inermis \N \N \N \N \N 57600 \N varietas Lilium davidii var. willmottiae \N \N \N \N \N 57601 A.buchananii Atriplex Atriplex buchananii \N \N \N \N \N 57602 M.bracteata Murdannia Murdannia bracteata \N \N \N \N \N 57603 M.kansuensis Malus Malus kansuensis \N \N \N \N \N 57604 A.rupestristepposum Allium Allium rupestristepposum \N \N \N \N \N 57605 D.hamiltonii Decalepis Decalepis hamiltonii \N \N \N \N \N 57606 S.kunstleri Scaphochlamys Scaphochlamys kunstleri \N \N \N \N \N 57607 \N tribe Episceae \N \N \N \N \N 57608 \N varietas Rudbeckia laciniata var. laciniata \N \N \N \N \N 57609 L.minutiflora Licania Licania minutiflora \N \N \N \N \N 57610 \N subspecies Crocus kotschyanus subsp. hakkariensis \N \N \N \N \N 57611 M.grallata Macaranga Macaranga grallata \N \N \N \N \N 57612 M.monspeliaca Medicago Medicago monspeliaca \N \N \N \N \N 57613 A.clavatus Anacyclus Anacyclus clavatus \N \N \N \N \N 57614 D.yina Downingia Downingia yina \N \N \N \N \N 57615 S.porrigens Schizanthus Schizanthus porrigens \N \N \N \N \N 57616 O.laciniata Oxalis Oxalis laciniata \N \N \N \N \N 57617 K.citrina Kniphofia Kniphofia citrina \N \N \N \N \N 57618 R.raveniana Rudgea Rudgea raveniana \N \N \N \N \N 57619 \N subspecies Allocasuarina lehmanniana subsp. ecarinata \N \N \N \N \N 57620 A.aquaticus Asteriscus Asteriscus aquaticus \N \N \N \N \N 57621 A.floccosus Astragalus Astragalus floccosus \N \N \N \N \N 57622 G.nanum Geranium Geranium nanum \N \N \N \N \N 57623 A.mcvaughii Ateleia Ateleia mcvaughii \N \N \N \N \N 57624 \N subtribe Carpoxylinae \N \N \N \N \N 57625 S.dentata Salvia Salvia dentata \N \N \N \N \N 57626 S.serpyllifolia Saxifraga Saxifraga serpyllifolia \N \N \N \N \N 57627 C.cyaneus Ceanothus Ceanothus cyaneus \N \N \N \N \N 57628 \N genus Kitchingia \N \N \N \N \N 57629 N.gigantea Neonauclea Neonauclea gigantea \N \N \N \N \N 57630 M.persicum Myopordon Myopordon persicum \N \N \N \N \N 57631 P.fulgens Polylychnis Polylychnis fulgens \N \N \N \N \N 57632 \N genus Thryallis \N \N \N \N \N 57633 A.natalia Aphandra Aphandra natalia \N \N \N \N \N 57634 V.sitchensis Valeriana Valeriana sitchensis Pacific valerian,Sitka valerian \N \N \N \N 57635 C.pilosula Codonopsis Codonopsis pilosula \N \N \N \N \N 57636 A.chia Anthemis Anthemis chia \N \N \N \N \N 57637 M.densa Mimosa Mimosa densa \N \N \N \N \N 57638 S.latifolius Senecio Senecio latifolius \N \N \N \N \N 57639 H.prenanthoides Hieracium Hieracium prenanthoides \N \N \N \N \N 57640 E.ferrea Erica Erica ferrea \N \N \N \N \N 57641 G.pentagynum Gynostemma Gynostemma pentagynum \N \N \N \N \N 57642 A.grandis Aiphanes Aiphanes grandis \N \N \N \N \N 57643 \N genus Cyphomeris \N \N \N \N \N 57644 S.sabiceoides Sommera Sommera sabiceoides \N \N \N \N \N 57645 L.nutans Leucopogon Leucopogon nutans \N \N \N \N \N 57646 D.involucratum Dracophyllum Dracophyllum involucratum \N \N \N \N \N 57647 \N genus Jacquinia \N \N \N \N \N 57648 G.nigroramosum Galium Galium nigroramosum \N \N \N \N \N 57649 F.indica Flagellaria Flagellaria indica \N \N \N \N \N 57650 M.bibracteatum Melampodium Melampodium bibracteatum \N \N \N \N \N 57651 P.vitiensis Plerandra Plerandra vitiensis \N \N \N \N \N 57652 C.dinteri Chenoleoides Chenoleoides dinteri \N \N \N \N \N 57653 H.radicata Hypochaeris Hypochaeris radicata flatweed,hairy cat's-ear \N \N \N \N 57654 \N genus Anthochortus \N \N \N \N \N 57655 G.decorticans Geoffroea Geoffroea decorticans \N \N \N \N \N 57656 P.jejunum Platymiscium Platymiscium jejunum \N \N \N \N \N 57657 R.oaxacana Ruellia Ruellia oaxacana \N \N \N \N \N 57658 T.CCWD-2000 Trimenia Trimenia sp. CCWD-2000 \N \N \N \N \N 57659 \N tribe Podalyrieae \N \N \N \N \N 57660 A.cymbiformis Aspalathus Aspalathus cymbiformis \N \N \N \N \N 57661 M.hunzikeriana Manihot Manihot hunzikeriana \N \N \N \N \N 57662 P.pashia Pyrus Pyrus pashia \N \N \N \N \N 57663 K.japonica Kadsura Kadsura japonica \N \N \N \N \N 57664 V.longifolia Veronica Veronica longifolia \N \N \N \N \N 57665 A.stachyosporus Aponogeton Aponogeton stachyosporus \N \N \N \N \N 57666 \N varietas Solanum citrullifolium var. citrullifolium \N \N \N \N \N 57667 C.brevicaudata Craibia Craibia brevicaudata \N \N \N \N \N 57668 S.tetrandra Sibbaldia Sibbaldia tetrandra \N \N \N \N \N 57669 E.occulta Erica Erica occulta \N \N \N \N \N 57670 P.venulosa Polygala Polygala venulosa \N \N \N \N \N 57671 L.hutchisonii Lysipomia Lysipomia hutchisonii \N \N \N \N \N 57672 L.chrysoneurus Lasianthus Lasianthus chrysoneurus \N \N \N \N \N 57673 C.seemannii Cupania Cupania seemannii \N \N \N \N \N 57674 L.JTM-2009a Linguella Linguella sp. JTM-2009a \N \N \N \N \N 57675 \N genus Nectouxia \N \N \N \N \N 57676 G.sample environmental samples Taxonomy:198032 Gossypium environmental sample \N \N \N \N \N 57677 P.juliflora Prosopis Prosopis juliflora algorrobo,ironwood \N \N \N \N 57678 P.macrocephalum Perymenium Perymenium macrocephalum \N \N \N \N \N 57679 E.taurica Euphrasia Euphrasia taurica \N \N \N \N \N 57680 S.rusbyi Salvia Salvia rusbyi \N \N \N \N \N 57681 \N tribe Andropogoneae \N \N \N \N \N 57682 O.fleischmannii Ophrys Ophrys fleischmannii \N \N \N \N \N 57683 G.paivae Genista Genista paivae \N \N \N \N \N 57684 S.442 Symplocos Symplocos aff. munda 442 \N \N \N \N \N 57685 \N genus Neogyna \N \N \N \N \N 57686 S.fruticulosus Senecio Senecio fruticulosus \N \N \N \N \N 57687 \N genus Bonafousia \N \N \N \N \N 57688 S.coryne Stetsonia Stetsonia coryne \N \N \N \N \N 57689 C.lobatus Cyananthus Cyananthus lobatus \N \N \N \N \N 57690 L.1163 Lysipomia Lysipomia sp. nov. 1163 \N \N \N \N \N 57691 L.rubiginosa Lepisanthes Lepisanthes rubiginosa \N \N \N \N \N 57692 \N genus Amblyopyrum \N \N \N \N \N 57693 I.pendula Indigofera Indigofera pendula \N \N \N \N \N 57694 P.auriculata Primula Primula auriculata \N \N \N \N \N 57695 \N subspecies Colchicum bulbocodium subsp. versicolor \N \N \N \N \N 57696 M.grayi Morinda Morinda grayi \N \N \N \N \N 57697 M.polymorpha Medicago Medicago polymorpha \N \N \N \N \N 57698 J.multiflorum Jasminum Jasminum multiflorum star jasmine \N \N \N \N 57699 T.hystrix Tabernaemontana Tabernaemontana hystrix \N \N \N \N \N 57700 A.olgana Acacia Acacia olgana \N \N \N \N \N 57701 P.digitatus Phyllobolus Phyllobolus digitatus \N \N \N \N \N 57702 S.simplicissimum Solanum Solanum simplicissimum \N \N \N \N \N 57703 E.barbinodis Ehrharta Ehrharta barbinodis \N \N \N \N \N 57704 \N genus Paranephelium \N \N \N \N \N 57705 S.punicea Swertia Swertia punicea \N \N \N \N \N 57706 \N subspecies Platymiscium pubescens subsp. pubescens \N \N \N \N \N 57707 E.dolichostachyus Enteropogon Enteropogon dolichostachyus \N \N \N \N \N 57708 M.reticulata Matelea Matelea reticulata \N \N \N \N \N 57709 \N genus Anangia \N \N \N \N \N 57710 S.cerradoensis Sida Sida cerradoensis \N \N \N \N \N 57711 \N subspecies Acer caesium subsp. caesium \N \N \N \N \N 57712 S.'Kachororoni' Saintpaulia Saintpaulia sp. 'Kachororoni' \N \N \N \N \N 57713 S.eriopodus Sinosenecio Sinosenecio eriopodus \N \N \N \N \N 57714 T.fluviatilis Tonina Tonina fluviatilis \N \N \N \N \N 57715 C.frutescens Chenopodium Chenopodium frutescens \N \N \N \N \N 72280 \N genus Tolpis \N \N \N \N \N 57716 M.lonchophylla Miconia Miconia lonchophylla \N \N \N \N \N 57717 C.fastigiata Cassiope Cassiope fastigiata \N \N \N \N \N 57718 E.lazicus Elymus Elymus lazicus \N \N \N \N \N 57719 \N varietas Jasione maritima var. maritima \N \N \N \N \N 57720 D.macranthum Dracophyllum Dracophyllum macranthum \N \N \N \N \N 57721 G.mendocina Grindelia Grindelia mendocina \N \N \N \N \N 57722 P.cuneifolia Podalyria Podalyria cuneifolia \N \N \N \N \N 57723 G.marantifolia Guaduella Guaduella marantifolia \N \N \N \N \N 57724 G.scorpius Genista Genista scorpius \N \N \N \N \N 57725 \N genus Holodiscus \N \N \N \N \N 57726 P.mauritianus Phragmites Phragmites mauritianus \N \N \N \N \N 57727 M.sagittifolia Muehlenbeckia Muehlenbeckia sagittifolia \N \N \N \N \N 57728 \N genus Arnicastrum \N \N \N \N \N 57729 M.salicoides Machilus Machilus salicoides \N \N \N \N \N 57730 C.amourensis Centaurea Centaurea amourensis \N \N \N \N \N 57731 \N no rank Saccharum hybrid cultivar R45 \N \N \N \N \N 57732 Y.harrimaniae Yucca Yucca harrimaniae Spanish bayonet \N \N \N \N 57733 G.gilbertae Gnidia Gnidia gilbertae \N \N \N \N \N 57734 A.lucanum Arum Arum lucanum \N \N \N \N \N 57735 C.lyriformis Chaetoseris Chaetoseris lyriformis \N \N \N \N \N 57736 R.macrosolen Ruellia Ruellia macrosolen \N \N \N \N \N 57737 C.cotinifolius Codonocarpus Codonocarpus cotinifolius \N \N \N \N \N 57738 S.gaudichaudiana Sambucus Sambucus gaudichaudiana \N \N \N \N \N 57739 \N genus Pseudomalmea \N \N \N \N \N 57740 P.mansoi Passiflora Passiflora mansoi \N \N \N \N \N 57741 A.brachystephana Asclepias Asclepias brachystephana \N \N \N \N \N 57742 R.193 Rhodospatha Rhodospatha sp. Barabe and Archambault 193 \N \N \N \N \N 57743 R.flagelliformis Ranunculus Ranunculus flagelliformis \N \N \N \N \N 57744 P.philippinense Paphiopedilum Paphiopedilum philippinense \N \N \N \N \N 57745 L.cardiophyllum Lepidium Lepidium cardiophyllum \N \N \N \N \N 57746 S.speciosa Spigelia Spigelia speciosa \N \N \N \N \N 57747 \N tribe Iberideae \N \N \N \N \N 57748 \N genus Syngonium \N \N \N \N \N 57749 L.nevadense Lomatium Lomatium nevadense \N \N \N \N \N 57750 A.tuerckheimii Aspidogyne Aspidogyne tuerckheimii \N \N \N \N \N 57751 A.lancilimbus Aeschynanthus Aeschynanthus lancilimbus \N \N \N \N \N 57752 E.acosta-solisianum Ecuadendron Ecuadendron acosta-solisianum \N \N \N \N \N 57753 L.longifolia Lophanthera Lophanthera longifolia \N \N \N \N \N 57754 P.aurea Pentaschistis Pentameris aurea \N \N \N \N \N 57755 S.maxwelliana Shorea Shorea maxwelliana \N \N \N \N \N 57756 S.anisacanthoides Sclerolaena Sclerolaena anisacanthoides \N \N \N \N \N 57757 C.occidentale Cirsium Cirsium occidentale cobwebby thistle \N \N \N \N 57758 O.macrosceles Oenothera Oenothera macrosceles \N \N \N \N \N 57759 \N varietas Lonicera caerulea var. edulis \N \N \N \N \N 57760 \N varietas Pediomelum megalanthum var. epipsilum \N \N \N \N \N 57761 S.psittacina Sarracenia Sarracenia psittacina parrot pitcherplant \N \N \N \N 57762 \N tribe Apocyneae \N \N \N \N \N 57763 C.multicostata Carex Carex multicostata \N \N \N \N \N 57764 K.lanceolata Krameria Krameria lanceolata \N \N \N \N \N 57765 F.chloroxantha Finschia Finschia chloroxantha \N \N \N \N \N 57766 C.ornatoides Centaurea Centaurea ornatoides \N \N \N \N \N 57767 \N genus Echinopepon \N \N \N \N \N 57768 T.elegans Talbotia Talbotia elegans \N \N \N \N \N 57769 P.riedelii Prestonia Prestonia riedelii \N \N \N \N \N 57770 C.brachylepis Carlina Carlina brachylepis \N \N \N \N \N 57771 \N genus Tripterygium \N \N \N \N \N 57772 V.polystachya Valeriana Valeriana polystachya \N \N \N \N \N 57773 E.marsupiale Epidendrum Epidendrum marsupiale \N \N \N \N \N 57774 R.lingua Ranunculus Ranunculus lingua \N \N \N \N \N 57775 S.bahamensis Savia Savia bahamensis \N \N \N \N \N 57776 \N genus Basselinia \N \N \N \N \N 57777 S.graveolens Symphyoloma Symphyoloma graveolens \N \N \N \N \N 57778 L.pusilla Lachenalia Lachenalia pusilla \N \N \N \N \N 57779 P.cuneata Plethiandra Plethiandra cuneata \N \N \N \N \N 57780 C.lindavianus Chlamydacanthus Chlamydacanthus lindavianus \N \N \N \N \N 57781 T.subdentata Tephroseris Tephroseris subdentata \N \N \N \N \N 57782 C.canariensis Cheirolophus Cheirolophus canariensis \N \N \N \N \N 57783 B.cucullata Barbosella Barbosella cucullata \N \N \N \N \N 57784 T.paniculatus Tylecodon Tylecodon paniculatus \N \N \N \N \N 57785 C.O-1398 Codonorchis Codonorchis sp. Chase O-1398 \N \N \N \N \N 57786 \N varietas Crotalaria pallida var. pallida \N \N \N \N \N 57787 B.buxifolia Berberis Berberis buxifolia Magellan barberry \N \N \N \N 57788 \N subspecies Campanula fenestrellata subsp. fenestrellata \N \N \N \N \N 57789 L.mespiloides Lindleya Lindleya mespiloides \N \N \N \N \N 57790 C.intermedia Coriaria Coriaria intermedia \N \N \N \N \N 57791 P.trichoglossa Pedicularis Pedicularis trichoglossa \N \N \N \N \N 57792 A.9985 Anadendrum Anadendrum sp. Chase 9985 \N \N \N \N \N 57793 M.rufescens Miconia Miconia rufescens \N \N \N \N \N 57794 \N genus Cunonia \N \N \N \N \N 57795 P.erioptera Polygala Polygala erioptera \N \N \N \N \N 57796 E.cyperifolia Encyclia Encyclia cyperifolia \N \N \N \N \N 57797 P.antankarana Paracorynanthe Paracorynanthe antankarana \N \N \N \N \N 57798 \N subspecies Odontites vernus subsp. serotinus \N \N \N \N \N 57799 A.tetrapterus Astragalus Astragalus tetrapterus \N \N \N \N \N 57800 S.lanatus Sorocephalus Sorocephalus lanatus \N \N \N \N \N 57801 C.texana Carlowrightia Carlowrightia texana \N \N \N \N \N 57802 U.flava Uvaria Uvaria flava \N \N \N \N \N 57803 L.capillipes Lysimachia Lysimachia capillipes \N \N \N \N \N 57804 F.macclureana Fargesia Fargesia macclureana \N \N \N \N \N 57805 D.verruculatum Disterigma Disterigma verruculatum \N \N \N \N \N 57806 G.repens Geophila Geophila repens \N \N \N \N \N 57807 \N genus Inti \N \N \N \N \N 57808 P.melanocarpus Psilanthus Psilanthus melanocarpus \N \N \N \N \N 57809 R.annae Rothmannia Rothmannia annae \N \N \N \N \N 57810 \N genus Aidia \N \N \N \N \N 57811 \N genus Philesia \N \N \N \N \N 57812 T.polyanthus Tynanthus Tynanthus polyanthus \N \N \N \N \N 57813 M.chapelieri Macphersonia Macphersonia chapelieri \N \N \N \N \N 57814 L.perenne Lolium Lolium multiflorum x Lolium perenne \N \N \N \N \N 57815 L.nuttallii Lomatium Lomatium nuttallii Nuttall's biscuitroot \N \N \N \N 57816 R.PGGS-2007 Rubus Rubus aff. adenotrichos PGGS-2007 \N \N \N \N \N 57817 B.affinis Besleria Besleria affinis \N \N \N \N \N 57818 E.selloi Euphorbia Euphorbia selloi \N \N \N \N \N 57819 H.paradoxa Hilliella Hilliella paradoxa \N \N \N \N \N 57820 P.coerulescens Phalaris Phalaris coerulescens \N \N \N \N \N 57821 L.fremontii Lasthenia Lasthenia fremontii \N \N \N \N \N 57822 H.elata Hypochaeris Hypochaeris elata \N \N \N \N \N 57823 P.perfoliatus Potamogeton Potamogeton wrightii x Potamogeton perfoliatus \N \N \N \N \N 57824 D.05-136 Disporopsis Disporopsis sp. Kim 05-136 \N \N \N \N \N 57825 \N subspecies Fragaria x ananassa subsp. ananassa \N \N \N \N \N 57826 \N varietas Capsicum annuum var. annuum chilli pepper,pimento,red pepper,sweet pepper \N \N \N \N 57827 A.madagascariensis Aponogeton Aponogeton madagascariensis laceleaf \N \N \N \N 57828 S.tiliifolia Salvia Salvia tiliifolia \N \N \N \N \N 57829 P.dipsacea Poa Poa dipsacea \N \N \N \N \N 57830 P.poeppigii Polyachyrus Polyachyrus poeppigii \N \N \N \N \N 57831 B.virginica Bartonia Bartonia virginica \N \N \N \N \N 57832 A.furcatispina Acacia Acacia furcatispina \N \N \N \N \N 57833 G.minutus Gymnosiphon Gymnosiphon minutus \N \N \N \N \N 57834 \N genus Adlumia \N \N \N \N \N 57835 T.villosula Thladiantha Thladiantha villosula \N \N \N \N \N 57836 S.rupicola Salacca Salacca rupicola \N \N \N \N \N 57837 G.'daluoensis' Gigantochloa Gigantochloa sp. 'daluoensis' \N \N \N \N \N 57838 S.campestris Sidalcea Sidalcea campestris \N \N \N \N \N 57839 S.intermedium Schoenocaulon Schoenocaulon intermedium \N \N \N \N \N 57840 W.angusta Watsonia Watsonia angusta \N \N \N \N \N 57841 A.scrobicularis Anthemis Anthemis scrobicularis \N \N \N \N \N 57842 P.fruticosus Penstemon Penstemon fruticosus \N \N \N \N \N 57843 C.diandra Carex Carex diandra \N \N \N \N \N 69783 \N genus Neonauclea \N \N \N \N \N 57844 \N varietas Lupinus breweri var. breweri \N \N \N \N \N 57845 S.scabrum Solanum Solanum scabrum \N \N \N \N \N 57846 R.pandanifolia Richea Richea pandanifolia \N \N \N \N \N 57847 A.capitatum Askidiosperma Askidiosperma capitatum \N \N \N \N \N 57848 O.caeruleus Otacanthus Otacanthus caeruleus \N \N \N \N \N 57849 S.fasciculatum Sisyrinchium Sisyrinchium fasciculatum \N \N \N \N \N 57850 H.saxatile Helichrysum Helichrysum saxatile \N \N \N \N \N 57851 C.uhligii Clinopodium Clinopodium uhligii \N \N \N \N \N 57852 D.breviaristatum Dasypyrum Dasypyrum breviaristatum \N \N \N \N \N 57853 P.linearis Pseudopanax Pseudopanax linearis \N \N \N \N \N 57854 M.rossii Minuartia Minuartia rossii \N \N \N \N \N 57855 I.mariae Inula Inula mariae \N \N \N \N \N 57856 \N subspecies Delarbrea paradoxa subsp. depauperata \N \N \N \N \N 57857 M.longistyla Macrosphyra Macrosphyra longistyla \N \N \N \N \N 57858 O.amentacea Ochanostachys Ochanostachys amentacea \N \N \N \N \N 57859 L.anceps Lobelia Lobelia anceps \N \N \N \N \N 57860 O.arborescens Oxylobium Oxylobium arborescens \N \N \N \N \N 57861 A.fedtschenkoi Andrachne Andrachne fedtschenkoi \N \N \N \N \N 57862 \N varietas Brassica oleracea var. italica asparagus broccoli,broccoli,sprouting broccoli \N \N \N \N 57863 R.hypocarpium Relbunium Relbunium hypocarpium \N \N \N \N \N 57864 N.sinistra Navarretia Navarretia sinistra \N \N \N \N \N 57865 \N varietas Croton morifolius var. brandegeanus \N \N \N \N \N 57866 C.ecklonii Carex Carex ecklonii \N \N \N \N \N 57867 C.heterophyllum Calycogonium Calycogonium heterophyllum \N \N \N \N \N 57868 X.kaessneri Xysmalobium Xysmalobium kaessneri \N \N \N \N \N 57869 T.aurantiacum Talinum Talinum aurantiacum \N \N \N \N \N 57870 O.sessilifolius Ochrothallus Ochrothallus sessilifolius \N \N \N \N \N 57871 C.53 Coffea Coffea sp. IRD-Montpelier OE 53 \N \N \N \N \N 57872 M.ficiformis Maytenus Maytenus ficiformis \N \N \N \N \N 57873 P.californica Perideridia Perideridia californica \N \N \N \N \N 57874 A.'dentata' Amelanchier Amelanchier bartramiana x Amelanchier sp. 'dentata' \N \N \N \N \N 57875 B.aculeata Bauhinia Bauhinia aculeata \N \N \N \N \N 57876 B.microphylla Bursera Bursera microphylla \N \N \N \N \N 57877 D.asperrima Dichaetanthera Dichaetanthera asperrima \N \N \N \N \N 57878 W.neocumingii Weingartia Weingartia neocumingii \N \N \N \N \N 57879 R.steinmannii Rebutia Rebutia steinmannii \N \N \N \N \N 57880 P.lanceolatum Porophyllum Porophyllum lanceolatum \N \N \N \N \N 57881 \N genus Triteleiopsis \N \N \N \N \N 57882 \N genus Leucocrinum \N \N \N \N \N 57883 G.ulei Glischrothamnus Glischrothamnus ulei \N \N \N \N \N 57884 A.nana Askellia Askellia nana \N \N \N \N \N 57885 C.inaguensis Coccothrinax Coccothrinax inaguensis \N \N \N \N \N 57886 \N varietas Prunus davidiana var. davidiana \N \N \N \N \N 57887 \N genus Brownanthus \N \N \N \N \N 57888 B.alba Bryonia Bryonia alba \N \N \N \N \N 57889 K.fasciculata Klaprothia Klaprothia fasciculata \N \N \N \N \N 57890 \N varietas Euphorbia rossiana var. nov. Steinmann 1199 \N \N \N \N \N 57891 M.soulangeana Magnolia Magnolia x soulangeana Chinese magnolia,saucer magnolia \N \N \N \N 57892 \N varietas Tylophora flexuosa var. perrottetiana \N \N \N \N \N 57893 C.parqui Cestrum Cestrum aurantiacum x Cestrum parqui \N \N \N \N \N 57894 H.niger Helleborus Helleborus niger Christmas-rose \N \N \N \N 57895 N.irrorata Neomoorea Neomoorea irrorata \N \N \N \N \N 57896 L.andina Lysimachia Lysimachia andina \N \N \N \N \N 57897 L.trimestris Lavatera Lavatera trimestris \N \N \N \N \N 57898 C.ciliatum Capsicum Capsicum ciliatum \N \N \N \N \N 57899 A.exsertus Acianthus Acianthus exsertus \N \N \N \N \N 57900 L.intricata Loasa Loasa intricata \N \N \N \N \N 57901 S.styphelus Salvia Salvia styphelus \N \N \N \N \N 57902 \N genus Withania \N \N \N \N \N 57903 A.drummondii Acacia Acacia drummondii \N \N \N \N \N 73352 \N genus Sphenosciadium \N \N \N \N \N 57904 C.pyriformis Cariniana Cariniana pyriformis \N \N \N \N \N 57905 S.japonica Serissa Serissa japonica \N \N \N \N \N 57906 E.sphalera Episcia Episcia sphalera \N \N \N \N \N 57907 P.heptaphyllum Protium Protium heptaphyllum \N \N \N \N \N 57908 \N varietas Pityopsis aspera var. adenolepis \N \N \N \N \N 57909 \N genus Villaria \N \N \N \N \N 57910 M.ctenodes Mimosa Mimosa ctenodes \N \N \N \N \N 57911 S.przewalskii Salvia Salvia przewalskii \N \N \N \N \N 57912 S.heterophylla Solena Solena heterophylla \N \N \N \N \N 57913 V.misera Villadia Villadia misera \N \N \N \N \N 57914 O.horridum Oncosperma Oncosperma horridum \N \N \N \N \N 57915 B.perfoliata Blackstonia Blackstonia perfoliata \N \N \N \N \N 57916 B.bracteosa Bathysa Bathysa bracteosa \N \N \N \N \N 57917 G.fastigiata Grindelia Grindelia fastigiata \N \N \N \N \N 57918 A.JID-2002 unclassified Cyperaceae aff. Cladium sp. JID-2002 \N \N \N \N \N 57919 A.6710 Allium Allium sp. GAT 6710 \N \N \N \N \N 57920 \N genus Malabaila \N \N \N \N \N 57921 \N subspecies Nasa triphylla subsp. colonchensis \N \N \N \N \N 57922 A.reticulatus Alectryon Alectryon reticulatus \N \N \N \N \N 57923 \N genus Castilla \N \N \N \N \N 57924 G.kautskyi Gomesa Gomesa kautskyi \N \N \N \N \N 57925 P.bourgeoisii Phyllanthus Phyllanthus bourgeoisii \N \N \N \N \N 57926 A.straussii Astragalus Astragalus straussii \N \N \N \N \N 57927 A.eriantha Avena Avena eriantha \N \N \N \N \N 57928 \N genus Olgaea \N \N \N \N \N 57929 D.chryseopsis Diuris Diuris chryseopsis \N \N \N \N \N 57930 P.522 Paepalanthus Paepalanthus cf. acantholimon Andrade 522 \N \N \N \N \N 57931 E.36534 Euonymus Euonymus aff. carnosus Chase 36534 \N \N \N \N \N 57932 N.gummiferum Notobubon Notobubon gummiferum \N \N \N \N \N 57933 S.nux-blanda Strychnos Strychnos nux-blanda \N \N \N \N \N 57934 L.bracteata Liparis Liparis bracteata \N \N \N \N \N 57935 R.nana Rauvolfia Rauvolfia nana \N \N \N \N \N 57936 \N no rank New Zealand clade \N \N \N \N \N 57937 \N genus Sideroxylon \N \N \N \N \N 57938 C.stenolepis Centaurea Centaurea stenolepis \N \N \N \N \N 57939 \N genus Evacidium \N \N \N \N \N 70170 A.rugosa Alcea Alcea rugosa \N \N \N \N \N 57940 T.laevigatum Taraxacum Taraxacum laevigatum \N \N \N \N \N 57941 \N genus Radamaea \N \N \N \N \N 57942 \N tribe Peltandreae \N \N \N \N \N 57943 C.gracilescens Carex Carex gracilescens \N \N \N \N \N 57944 G.1152 Gerbera Gerbera sp. 1152 \N \N \N \N \N 57945 \N subspecies Dianthus caespitosus subsp. pectinatus \N \N \N \N \N 57946 \N genus Simaba \N \N \N \N \N 57947 A.crassifolia Anemone Anemone crassifolia \N \N \N \N \N 57948 S.confusum Solanum Solanum confusum \N \N \N \N \N 57949 \N subspecies Stephanomeria virgata subsp. pleurocarpa \N \N \N \N \N 57950 G.boryi Gentiana Gentiana boryi \N \N \N \N \N 57951 M.HS81 Momordica Momordica sp. HS81 \N \N \N \N \N 57952 T.disticha Tillandsia Tillandsia disticha \N \N \N \N \N 57953 C.virginiana Clematis Clematis virginiana devil's darning needle \N \N \N \N 57954 A.pallescens Acrotome Acrotome pallescens \N \N \N \N \N 57955 H.cistifolium Hypericum Hypericum cistifolium \N \N \N \N \N 57956 P.stellatus Pogostemon Pogostemon stellatus \N \N \N \N \N 57957 H.parksiana Haworthia Haworthia parksiana \N \N \N \N \N 57958 \N genus Helleriella \N \N \N \N \N 57959 G.uncinulatum Galium Galium uncinulatum \N \N \N \N \N 57960 I.biflora Impatiens Impatiens biflora \N \N \N \N \N 57961 V.parvula Viola Viola parvula \N \N \N \N \N 57962 \N varietas Dendranthema indicum var. aromaticum \N \N \N \N \N 57963 D.sessilis Duguetia Duguetia sessilis \N \N \N \N \N 57964 \N genus Argantoniella \N \N \N \N \N 57965 S.occidentalis Stevia Stevia occidentalis \N \N \N \N \N 57966 \N genus Tourneuxia \N \N \N \N \N 57967 V.palmeri Viguiera Viguiera palmeri \N \N \N \N \N 57968 O.majorana Origanum Origanum majorana sweet marjoram \N \N \N \N 57969 C.lanceolata Claytonia Claytonia lanceolata \N \N \N \N \N 57970 S.aconitifolia Syneilesis Syneilesis aconitifolia \N \N \N \N \N 57971 A.MG-2009e Allium Allium sp. MG-2009e \N \N \N \N \N 57972 \N genus Dichanthelium rosette grass \N \N \N \N 57973 C.takhtajanii Cousinia Cousinia takhtajanii \N \N \N \N \N 57974 P.bracteata Peperomia Peperomia bracteata \N \N \N \N \N 57975 S.cordifolia Simira Simira cordifolia \N \N \N \N \N 57976 S.satyrioides Schizodium Schizodium satyrioides \N \N \N \N \N 57977 L.canadensis Lactuca Lactuca canadensis Canada wild lettuce \N \N \N \N 57978 S.trichocarpa Spiraea Spiraea trichocarpa \N \N \N \N \N 57979 \N genus Pellionia \N \N \N \N \N 57980 H.cagayanensis Hoya Hoya cagayanensis \N \N \N \N \N 57981 E.angusta Euphorbia Euphorbia angusta \N \N \N \N \N 57982 S.chippendalei Solanum Solanum chippendalei \N \N \N \N \N 57983 P.calophylla Polyscias Polyscias calophylla \N \N \N \N \N 57984 D.cotinifolia Dayaoshania Dayaoshania cotinifolia \N \N \N \N \N 57985 N.dilatata Nemcia Nemcia dilatata \N \N \N \N \N 57986 C.buxifolia Coffea Coffea buxifolia \N \N \N \N \N 57987 B.concolor Brachyloma Brachyloma concolor \N \N \N \N \N 57988 X.simplicissima Xanthorhiza Xanthorhiza simplicissima \N \N \N \N \N 57989 H.pusilla Heliophila Heliophila pusilla \N \N \N \N \N 57990 C.majus Conopodium Conopodium majus \N \N \N \N \N 57991 I.floridanum Illicium Illicium floridanum Florida anisetree,purple-anise \N \N \N \N 57992 C.ramosissima Cylindropuntia Cylindropuntia ramosissima \N \N \N \N \N 57993 A.decipiens Antiaropsis Antiaropsis decipiens \N \N \N \N \N 57994 \N genus Idesia \N \N \N \N \N 57995 L.spinescens Lepidium Lepidium spinescens \N \N \N \N \N 57996 O.grandiflora Orlaya Orlaya grandiflora \N \N \N \N \N 57997 \N genus Oncosiphon \N \N \N \N \N 57998 C.merxmuelleri Crepis Crepis merxmuelleri \N \N \N \N \N 57999 A.breviradiata Anthemis Anthemis breviradiata \N \N \N \N \N 58000 M.pubipetala Miconia Miconia pubipetala \N \N \N \N \N 58001 P.jalcaensis Peperomia Peperomia jalcaensis \N \N \N \N \N 58002 C.(Anglem) Craspedia Craspedia sp. (Anglem) \N \N \N \N \N 58003 S.caudata Semiliquidambar Semiliquidambar caudata \N \N \N \N \N 58004 T.94061 Typha Typha sp. Qiu 94061 \N \N \N \N \N 58005 C.corymbosus Carduus Carduus corymbosus \N \N \N \N \N 58006 G.monspessulana Genista Genista monspessulana Canary broom,Cape broom,French broom \N \N \N \N 58007 S.brachycarpum Solanum Solanum schenckii x Solanum brachycarpum \N \N \N \N \N 58008 H.ciliatum Heliotropium Heliotropium ciliatum \N \N \N \N \N 58009 P.spatella Polystachya Polystachya spatella \N \N \N \N \N 58010 A.affinis Anchusa Anchusa affinis \N \N \N \N \N 58011 A.nanchuanensis Alpinia Alpinia nanchuanensis \N \N \N \N \N 58012 S.delavayi Saussurea Saussurea delavayi \N \N \N \N \N 58013 P.falcata Pterostylis Pterostylis falcata \N \N \N \N \N 58014 A.schweinfurthii Acacia Acacia schweinfurthii \N \N \N \N \N 58015 A.grandifolia Axinaea Axinaea grandifolia \N \N \N \N \N 58016 C.platycarpa Cladrastis Cladrastis platycarpa Japanese yellow-wood \N \N \N \N 58017 M.malabarica Myristica Myristica malabarica \N \N \N \N \N 58018 D.parryi Delphinium Delphinium parryi \N \N \N \N \N 58019 \N varietas Adenia hastata var. glandulifera \N \N \N \N \N 58020 \N no rank unclassified Bambuseae \N \N \N \N \N 58021 P.trichostachya Pimelea Pimelea trichostachya \N \N \N \N \N 58022 S.triodon Senecio Senecio triodon \N \N \N \N \N 58023 O.griffithii Oxalis Oxalis griffithii \N \N \N \N \N 58024 C.pungens Cliffortia Cliffortia pungens \N \N \N \N \N 58025 H.cornuta Heliophila Heliophila cornuta \N \N \N \N \N 58026 E.pandanifolium Eryngium Eryngium pandanifolium \N \N \N \N \N 58027 I.platypetala Impatiens Impatiens platypetala \N \N \N \N \N 58028 D.stenopetalus Dianthus Dianthus stenopetalus \N \N \N \N \N 58029 Z.schneideriana Zelkova Zelkova schneideriana \N \N \N \N \N 58030 A.alpina Aquilegia Aquilegia alpina \N \N \N \N \N 58031 N.nakaianum Neisosperma Neisosperma nakaianum \N \N \N \N \N 58032 \N genus Cytisopsis \N \N \N \N \N 58033 \N genus Malleola \N \N \N \N \N 58034 A.salviifolium Alangium Alangium salviifolium \N \N \N \N \N 58035 S.wakasana Strobilanthes Strobilanthes wakasana \N \N \N \N \N 58036 G.9231 Guatteria Guatteria cf. meliodora Maas et al. 9231 \N \N \N \N \N 58037 D.brachybotrya Dioscorea Dioscorea brachybotrya \N \N \N \N \N 58038 P.bastianii Phalaenopsis Phalaenopsis bastianii \N \N \N \N \N 58039 M.yunnanensis Myristica Myristica yunnanensis \N \N \N \N \N 58040 P.bisulcatum Panicum Panicum bisulcatum Japanese panicgrass,black seed panic \N \N \N \N 58041 V.populifolia Vernonia Vernonia populifolia \N \N \N \N \N 58042 T.exuviata Tenicroa Tenicroa exuviata \N \N \N \N \N 58043 H.abscissum Hieracium Hieracium abscissum \N \N \N \N \N 58044 S.epipactis Sanicula Sanicula epipactis \N \N \N \N \N 58045 C.759 Carpha Carpha sp. Forest 759 \N \N \N \N \N 58046 C.lunata Crotalaria Crotalaria lunata \N \N \N \N \N 58047 M.platyglossa Masdevallia Masdevallia platyglossa \N \N \N \N \N 58048 C.multiflorum Clinopodium Clinopodium multiflorum \N \N \N \N \N 58049 P.quadrangulata Pityrodia Pityrodia quadrangulata \N \N \N \N \N 58050 P.obovata Peripleura Peripleura obovata \N \N \N \N \N 58051 L.chekiangensis Lysimachia Lysimachia chekiangensis \N \N \N \N \N 58052 T.pubescens Toxicodendron Toxicodendron pubescens eastern poison oak \N \N \N \N 58053 H.chlorantha Haworthia Haworthia chlorantha \N \N \N \N \N 58054 D.macroprophyllata Dussia Dussia macroprophyllata \N \N \N \N \N 58055 D.adenophora Descurainia Descurainia adenophora \N \N \N \N \N 58056 P.squamifolia Polygala Polygala squamifolia \N \N \N \N \N 58057 J.s.n. Jumellea Jumellea sp. Schoenbrunn s.n. \N \N \N \N \N 58058 C.wakatipu Carex Carex wakatipu \N \N \N \N \N 58059 T.perrieri Takhtajania Takhtajania perrieri \N \N \N \N \N 58060 P.mollis Phyllostegia Phyllostegia mollis \N \N \N \N \N 58061 A.rigida Anthemis Anthemis rigida \N \N \N \N \N 58062 I.trachyphylla Indigofera Indigofera trachyphylla \N \N \N \N \N 58063 A.bubanii Armeria Armeria bubanii \N \N \N \N \N 58064 S.2036' Spigelia Spigelia sp. 'Rova 2036' \N \N \N \N \N 58065 P.tonduzii Phoradendron Phoradendron cf. tonduzii \N \N \N \N \N 58066 H.894 Hydriastele Hydriastele sp. Zona 894 \N \N \N \N \N 58067 K.preclara Kerianthera Kerianthera preclara \N \N \N \N \N 58068 D.richardiana Dichrostachys Dichrostachys richardiana \N \N \N \N \N 58069 P.lancilimba Prunus Prunus lancilimba \N \N \N \N \N 58070 C.brevicuspis Cota Cota brevicuspis \N \N \N \N \N 58071 M.squarrosa Macrostylis Macrostylis squarrosa \N \N \N \N \N 58072 H.ericoides Hypericum Hypericum ericoides \N \N \N \N \N 58073 P.capensis Polpoda Polpoda capensis \N \N \N \N \N 58074 \N genus Apodostigma \N \N \N \N \N 58075 \N genus Phthirusa \N \N \N \N \N 58076 E.geayi Eusiphon Eusiphon geayi \N \N \N \N \N 58077 S.georgianus Scirpus Scirpus georgianus \N \N \N \N \N 58078 A.saponaria Albizia Albizia saponaria \N \N \N \N \N 58079 E.perlignea Euphorbia Euphorbia perlignea \N \N \N \N \N 58080 E.sakarahaensis Euphorbia Euphorbia sakarahaensis \N \N \N \N \N 58081 \N genus Rhodothamnus \N \N \N \N \N 58082 L.lactescens Lophanthera Lophanthera lactescens \N \N \N \N \N 58083 P.ottonis Parodia Parodia ottonis \N \N \N \N \N 58084 C.lutea Calathea Calathea lutea \N \N \N \N \N 58085 C.niigatensis Cardamine Cardamine niigatensis \N \N \N \N \N 58086 P.umbrosa Pycnostachys Pycnostachys umbrosa \N \N \N \N \N 58087 E.echinata Erycina Erycina echinata \N \N \N \N \N 58088 D.dichroa Diospyros Diospyros dichroa \N \N \N \N \N 58089 C.cirrhosum Ctenium Ctenium cirrhosum \N \N \N \N \N 58090 L.fasciculatum Lepidium Lepidium fasciculatum \N \N \N \N \N 58091 N.8591 Nolana Nolana sp. Dillon 8591 \N \N \N \N \N 58092 \N subspecies Tropaeolum leptophyllum subsp. leptophyllum \N \N \N \N \N 58093 A.montana Arnica Arnica montana \N \N \N \N \N 58094 C.ulei Chelyocarpus Chelyocarpus ulei \N \N \N \N \N 58095 G.lhassica Gentiana Gentiana lhassica \N \N \N \N \N 58096 D.regium Dendrobium Dendrobium regium \N \N \N \N \N 74031 \N genus Eremomastax \N \N \N \N \N 58097 \N varietas Penstemon laetus var. sagittatus \N \N \N \N \N 58098 C.petriei Coprosma Coprosma petriei \N \N \N \N \N 58099 A.rothschildianus Ancistrochilus Ancistrochilus rothschildianus \N \N \N \N \N 58100 H.JK-2010 Hypericum Hypericum sp. JK-2010 \N \N \N \N \N 58101 O.rigida Oreomyrrhis Oreomyrrhis rigida \N \N \N \N \N 58102 \N genus Phyllobolus \N \N \N \N \N 58103 C.discolor Cirsium Cirsium discolor field thistle \N \N \N \N 58104 C.MG387 Chrysochlamys Chrysochlamys sp. MG387 \N \N \N \N \N 58105 B.cantagallense Bulbophyllum Bulbophyllum cantagallense \N \N \N \N \N 58106 H.schiedeana Halenia Halenia schiedeana \N \N \N \N \N 58107 B.glutinosa Bryantiella Bryantiella glutinosa \N \N \N \N \N 58108 A.scribneriana Aristida Aristida scribneriana \N \N \N \N \N 58109 \N genus Hoverdenia \N \N \N \N \N 58110 O.eriocarpa Othonna Othonna eriocarpa \N \N \N \N \N 58111 P.vestita Pultenaea Pultenaea vestita \N \N \N \N \N 58112 C.racemosa Cyclea Cyclea racemosa \N \N \N \N \N 58113 E.nutans Erica Erica nutans \N \N \N \N \N 58114 A.ovalifolia Asclepias Asclepias ovalifolia \N \N \N \N \N 58115 W.androsacea Wahlenbergia Wahlenbergia androsacea \N \N \N \N \N 58116 E.sanguinea Echinacea Echinacea sanguinea \N \N \N \N \N 58117 D.yucundaa Dichromanthus Dichromanthus yucundaa \N \N \N \N \N 58118 \N subspecies Veronica missurica subsp. missurica \N \N \N \N \N 58119 P.hostifolia Plantago Plantago hostifolia \N \N \N \N \N 58120 P.platypetalum Pterygodium Pterygodium platypetalum \N \N \N \N \N 58121 T.hispidulum Thesium Thesium hispidulum \N \N \N \N \N 58122 E.bengalensis Eriobotrya Eriobotrya bengalensis \N \N \N \N \N 58123 N.chonotica Nicoraepoa Nicoraepoa chonotica \N \N \N \N \N 58124 \N varietas Mimosa platycarpa var. platycarpa \N \N \N \N \N 58125 P.142N Piper Piper sp. 142N \N \N \N \N \N 58126 B.officinalis Betonica Betonica officinalis \N \N \N \N \N 58127 A.spicata Abatia Abatia spicata \N \N \N \N \N 58128 \N family Campynemataceae \N \N \N \N \N 58129 C.orientale Corispermum Corispermum orientale \N \N \N \N \N 58130 \N genus Phytocrene \N \N \N \N \N 58131 S.barbellata Sideritis Sideritis barbellata \N \N \N \N \N 58132 R.gracilipes Ranunculus Ranunculus gracilipes \N \N \N \N \N 58133 \N subspecies Pectinaria articulata subsp. articulata \N \N \N \N \N 58134 A.leubnitziae Arthraerua Arthraerua leubnitziae \N \N \N \N \N 58135 \N genus Lebetanthus \N \N \N \N \N 58136 \N genus Arctagrostis \N \N \N \N \N 58137 \N genus Pastinacopsis \N \N \N \N \N 58138 S.kilimandscharica Swertia Swertia kilimandscharica \N \N \N \N \N 58139 A.weschniakowii Allium Allium weschniakowii \N \N \N \N \N 58140 E.subteres Exacum Exacum subteres \N \N \N \N \N 58141 \N varietas Pericalymma ellipticum var. ellipticum \N \N \N \N \N 58142 A.pendens Aloe Aloe pendens \N \N \N \N \N 58143 D.memecyloides Diplycosia Diplycosia memecyloides \N \N \N \N \N 58144 B.peruviana Bathysa Bathysa peruviana \N \N \N \N \N 58145 N.minima Nymphoides Nymphoides minima \N \N \N \N \N 58146 K.ferreum Krugiodendron Krugiodendron ferreum \N \N \N \N \N 58147 H.chinensis Helwingia Helwingia chinensis \N \N \N \N \N 58148 H.longifolia Heliophila Heliophila longifolia false blue flax \N \N \N \N 58149 Z.SH-2010 Zanthoxylum Zanthoxylum sp. SH-2010 \N \N \N \N \N 58150 C.flavimaculata Chirita Chirita flavimaculata \N \N \N \N \N 58151 L.chocoensis Lockhartia Lockhartia chocoensis \N \N \N \N \N 58152 \N genus Neobracea \N \N \N \N \N 58153 G.158 Guatteria Guatteria sp. Pirie et al. 158 \N \N \N \N \N 58154 P.mauritanica Plantago Plantago mauritanica \N \N \N \N \N 58155 N.vorwerkii Neowerdermannia Neowerdermannia vorwerkii \N \N \N \N \N 58156 A.parramattensis Acacia Acacia parramattensis \N \N \N \N \N 58157 C.bongardiana Caragana Caragana bongardiana \N \N \N \N \N 58158 P.xanadu Philodendron Philodendron xanadu \N \N \N \N \N 58159 S.glomerata Sida Sida glomerata \N \N \N \N \N 58160 R.acaule Rhaponticum Rhaponticum acaule \N \N \N \N \N 58161 L.natans Luronium Luronium natans \N \N \N \N \N 58162 P.angrenica Parrya Parrya angrenica \N \N \N \N \N 58163 C.gracile Cyrtochilum Cyrtochilum gracile \N \N \N \N \N 58164 P.frigida Primula Primula frigida \N \N \N \N \N 58165 \N genus Piletophyllum \N \N \N \N \N 58166 C.quinquenervia Cleome Cleome quinquenervia \N \N \N \N \N 58167 G.villosus Gasteranthus Gasteranthus villosus \N \N \N \N \N 58168 B.lactescens Brosimum Brosimum lactescens \N \N \N \N \N 58169 D.paleata Dubautia Dubautia paleata \N \N \N \N \N 58170 O.glandulosum Otholobium Otholobium glandulosum \N \N \N \N \N 58171 C.jaffrei Codia Codia jaffrei \N \N \N \N \N 58172 A.tabrisiana Alcea Alcea tabrisiana \N \N \N \N \N 58173 \N genus Burdachia \N \N \N \N \N 58174 O.pallida Oenothera Oenothera pallida \N \N \N \N \N 58175 P.huillensis Phacelurus Phacelurus huillensis \N \N \N \N \N 58176 P.JDMVSP9 Peltophorum Peltophorum sp. JDMVSP9 \N \N \N \N \N 58177 \N genus Breweria \N \N \N \N \N 58178 O.annae Oxalis Oxalis annae \N \N \N \N \N 58179 A.bidentata Achyranthes Achyranthes bidentata \N \N \N \N \N 58180 P.reticulatum Pentabrachion Pentabrachion reticulatum \N \N \N \N \N 58181 \N tribe Hureae \N \N \N \N \N 58182 \N subspecies Ficus lingua subsp. lingua \N \N \N \N \N 58183 \N genus Physeterostemon \N \N \N \N \N 58184 N.lineata Nectandra Nectandra lineata \N \N \N \N \N 58185 G.maluensis Garcinia Garcinia maluensis \N \N \N \N \N 58186 \N genus Abarema \N \N \N \N \N 58187 A.longiflora Acleisanthes Acleisanthes longiflora \N \N \N \N \N 58188 \N genus Stevia \N \N \N \N \N 58189 T.macdougalii Tumamoca Tumamoca macdougalii \N \N \N \N \N 58190 B.decipiens Biermannia Biermannia decipiens \N \N \N \N \N 58191 C.tomentosa Calceolaria Calceolaria tomentosa \N \N \N \N \N 58192 C.apetalum Ceratopetalum Ceratopetalum apetalum coachwood,satinwood,tarwood \N \N \N \N 58193 M.fuscomontana Moraea Moraea fuscomontana \N \N \N \N \N 58194 E.inopinata Euphrasia Euphrasia inopinata \N \N \N \N \N 75579 \N genus Microgilia \N \N \N \N \N 58195 I.verum Illicium Illicium verum Chinese star-anise \N \N \N \N 58196 \N genus Hemiphragma \N \N \N \N \N 58197 \N tribe Coreopsideae \N \N \N \N \N 58198 \N subspecies Gymnocalycium horstii subsp. horstii \N \N \N \N \N 58199 P.indica Pluchea Pluchea indica Indian camphorweed \N \N \N \N 58200 T.300 unclassified Taraxacum Taraxacum (sect. Celtica) sp. 300 \N \N \N \N \N 58201 H.longipedunculata Holocheila Holocheila longipedunculata \N \N \N \N \N 58202 P.nodosa Polyscias Polyscias nodosa \N \N \N \N \N 58203 D.ukingensis Disa Disa ukingensis \N \N \N \N \N 58204 C.92-99 Catalpa Catalpa sp. Olmstead 92-99 \N \N \N \N \N 58205 \N varietas Eleocharis pellucida var. japonica \N \N \N \N \N 58206 G.SH-2010 Geophila Geophila sp. SH-2010 \N \N \N \N \N 58207 O.maracasense Orthophytum Orthophytum maracasense \N \N \N \N \N 58208 A.xanthochroa Artemisia Artemisia xanthochroa \N \N \N \N \N 58209 C.komarovii Cousinia Cousinia komarovii \N \N \N \N \N 58210 G.ceresianus Gladiolus Gladiolus ceresianus \N \N \N \N \N 58211 L.rheedei Liparis Liparis rheedei \N \N \N \N \N 58212 S.davidsonii Salvia Salvia davidsonii Davidson's sage \N \N \N \N 58213 D.esculenta Dioscorea Dioscorea esculenta Asiatic yam,gan shu,lesser yam \N \N \N \N 58214 \N varietas Ipomoea batatas var. apiculata \N \N \N \N \N 58215 \N subspecies Magnolia officinalis subsp. biloba \N \N \N \N \N 58216 \N genus Engomegoma \N \N \N \N \N 58217 S.oroboides Swainsona Swainsona oroboides \N \N \N \N \N 58218 S.marginatum Sideroxylon Sideroxylon marginatum \N \N \N \N \N 58219 M.brevipetiolata Macaranga Macaranga brevipetiolata \N \N \N \N \N 58220 P.whippleanus Penstemon Penstemon whippleanus \N \N \N \N \N 58221 T.pilulare Trifolium Trifolium pilulare \N \N \N \N \N 58222 A.emaculata Alpinia Alpinia emaculata \N \N \N \N \N 58223 P.P146 Physalis Physalis sp. P146 \N \N \N \N \N 58224 D.scabra Draba Draba scabra \N \N \N \N \N 58225 L.petersonii Leptospermum Leptospermum petersonii \N \N \N \N \N 58226 A.prostrata Axyris Axyris prostrata \N \N \N \N \N 58227 A.sumawongii Amorphophallus Amorphophallus sumawongii \N \N \N \N \N 58228 A.heterophylla Alocasia Alocasia heterophylla \N \N \N \N \N 58229 P.copal Protium Protium copal \N \N \N \N \N 71133 \N genus Achnatherum \N \N \N \N \N 58230 C.origanoides Cunila Cunila origanoides American dittany,frost mint,stone mint \N \N \N \N 58231 \N genus Horminum \N \N \N \N \N 58232 S.vermitoxicus Synandrospadix Synandrospadix vermitoxicus \N \N \N \N \N 58233 \N genus Ramirezella \N \N \N \N \N 58234 C.rigida Cliffortia Cliffortia rigida \N \N \N \N \N 58235 C.isauricum Cicer Cicer isauricum \N \N \N \N \N 58236 \N genus Asteriscium \N \N \N \N \N 58237 P.aeruginosa Pimelea Pimelea aeruginosa \N \N \N \N \N 58238 S.calcaria Sinningia Sinningia calcaria \N \N \N \N \N 58239 A.holocarpa Atriplex Atriplex holocarpa \N \N \N \N \N 58240 D.rugosifolia Dicrastylis Dicrastylis rugosifolia \N \N \N \N \N 58241 N.247 Nylandtia Nylandtia sp. Forest and Manning 247 \N \N \N \N \N 58242 \N genus Cadia \N \N \N \N \N 58243 M.margaretae Moraea Moraea margaretae \N \N \N \N \N 58244 \N subspecies Musa acuminata subsp. siamea \N \N \N \N \N 58245 H.benthamiana Hevea Hevea benthamiana \N \N \N \N \N 58246 L.cattaniae Lilium Lilium cattaniae \N \N \N \N \N 58247 C.sarmentosa Coriaria Coriaria sarmentosa \N \N \N \N \N 58248 P.pulchra Pholidostachys Pholidostachys pulchra \N \N \N \N \N 58249 D.versipellis Dysosma Dysosma versipellis \N \N \N \N \N 58250 M.flabellifolia Myrothamnus Myrothamnus flabellifolia \N \N \N \N \N 58251 V.hederacea Viola Viola hederacea Australian violet \N \N \N \N 58252 E.chazaliei Echiochilon Echiochilon chazaliei \N \N \N \N \N 58253 R.parvifolia Rhodopentas Rhodopentas parvifolia \N \N \N \N \N 58254 A.afzeliana Atroxima Atroxima afzeliana \N \N \N \N \N 58255 \N varietas Heterostemon mimosoides var. pacimoniensis \N \N \N \N \N 58256 G.pubescens Galenia Galenia pubescens \N \N \N \N \N 58257 \N subfamily Azorelloideae \N \N \N \N \N 58258 F.argentina Festuca Festuca argentina \N \N \N \N \N 58259 L.brachyantha Lotononis Lotononis brachyantha \N \N \N \N \N 58260 P.alpina Phlomis Phlomis alpina \N \N \N \N \N 58261 L.taitensis Lepinia Lepinia taitensis \N \N \N \N \N 58262 H.incana Henckelia Henckelia incana \N \N \N \N \N 58263 L.ferganense Lepidium Lepidium ferganense \N \N \N \N \N 58264 \N forma Lepismium houlletianum f. houlletianum \N \N \N \N \N 58265 C.heteroloba Cousinia Cousinia heteroloba \N \N \N \N \N 58266 \N genus Spermolepis \N \N \N \N \N 58267 H.rigens Heracleum Heracleum rigens \N \N \N \N \N 58268 P.tenuicaulis Phytelephas Phytelephas tenuicaulis \N \N \N \N \N 58269 Z.pterocarpum Zygophyllum Zygophyllum pterocarpum \N \N \N \N \N 58270 S.trifurcatus Senecio Senecio trifurcatus \N \N \N \N \N 58271 \N genus Lotononis \N \N \N \N \N 58272 D.corymbosa Draba Draba corymbosa \N \N \N \N \N 58273 \N varietas Banksia sphaerocarpa var. caesia \N \N \N \N \N 58274 S.zenkeri Scorodophloeus Scorodophloeus zenkeri divida \N \N \N \N 58275 P.spicatus Paranomus Paranomus spicatus \N \N \N \N \N 58276 O.chimanimani Olea Olea chimanimani \N \N \N \N \N 58277 C.dentata Cyamopsis Cyamopsis dentata \N \N \N \N \N 58278 S.dressleri Stelis Stelis dressleri \N \N \N \N \N 58279 S.khuzistanica Satureja Satureja khuzistanica \N \N \N \N \N 58280 J.multiflora Jurinea Jurinea multiflora \N \N \N \N \N 58281 O.hyssopifolia Onoseris Onoseris hyssopifolia \N \N \N \N \N 58282 S.chloroclada Senna Senna chloroclada \N \N \N \N \N 58283 I.hawkesii Ismene Ismene hawkesii \N \N \N \N \N 58284 P.micranthum Piptatherum Piptatherum micranthum \N \N \N \N \N 58285 U.aurea Utricularia Utricularia aurea \N \N \N \N \N 58286 K.algida Klasea Klasea algida \N \N \N \N \N 58287 I.dimorphophylla Ilex Ilex dimorphophylla \N \N \N \N \N 58288 L.serra Lockhartia Lockhartia serra \N \N \N \N \N 58289 P.killipii Palicourea Palicourea killipii \N \N \N \N \N 58290 M.klugii Maxillaria Maxillaria klugii \N \N \N \N \N 58292 K.australis Kingia Kingia australis \N \N \N \N \N 58293 A.procera Albizia Albizia procera forest siris,rain siris,women's tongues \N \N \N \N 58294 P.lanata Pericallis Pericallis lanata \N \N \N \N \N 58295 V.splendens Viguiera Viguiera splendens \N \N \N \N \N 58296 A.tianmuensis Angelica Angelica tianmuensis \N \N \N \N \N 58297 \N genus Hornungia \N \N \N \N \N 58298 Z.anomala Zehneria Zehneria anomala \N \N \N \N \N 58299 F.tenacissima Forsskaolea Forsskaolea tenacissima \N \N \N \N \N 58300 A.imbricata Arctostaphylos Arctostaphylos imbricata \N \N \N \N \N 58301 J.benghalensis Juncus Juncus benghalensis \N \N \N \N \N 58302 T.filifolius Tragopogon Tragopogon filifolius \N \N \N \N \N 58303 \N genus Chthonocephalus \N \N \N \N \N 58304 V.longebracteatum Veratrum Veratrum longebracteatum \N \N \N \N \N 58305 O.humilis Oreoxis Oreoxis humilis \N \N \N \N \N 58306 A.compactum Amomum Amomum compactum Siam cardamom \N \N \N \N 58307 S.isoetiformis Sagittaria Sagittaria isoetiformis \N \N \N \N \N 58308 \N genus Deinacanthon \N \N \N \N \N 58309 E.tiarata Eleocharis Eleocharis tiarata \N \N \N \N \N 58310 S.faberi Sarocalamus Sarocalamus faberi \N \N \N \N \N 58311 T.capensis Tecomaria Tecomaria capensis Cape honeysuckle \N \N \N \N 58312 \N genus Rhytidosporum \N \N \N \N \N 58313 M.sample environmental samples Taxonomy:1008286 Mimulus environmental sample \N \N \N \N \N 58314 C.abrupta Chazaliella Chazaliella abrupta \N \N \N \N \N 58315 \N subspecies Cucurbita pepo subsp. ovifera x subsp. fraterna \N \N \N \N \N 58316 P.33 Piper Piper sp. RA 33 \N \N \N \N \N 58317 M.lazaridis Micraira Micraira lazaridis \N \N \N \N \N 58318 T.andorriense Taraxacum Taraxacum andorriense \N \N \N \N \N 58319 T.farfara Tussilago Tussilago farfara coltsfoot,mat'-i-machekha \N \N \N \N 58320 E.tristis Erica Erica tristis \N \N \N \N \N 58321 M.laurina Malosma Malosma laurina \N \N \N \N \N 58322 M.difficilis Mansoa Mansoa difficilis \N \N \N \N \N 58323 E.australis Erica Erica australis \N \N \N \N \N 58324 P.lunatus Phaseolus Phaseolus lunatus lima bean \N \N \N \N 58325 E.laciniata Encelia Encelia laciniata \N \N \N \N \N 58326 C.tomentosum Cerastium Cerastium tomentosum \N \N \N \N \N 58327 F.speciosa Fridericia Fridericia speciosa \N \N \N \N \N 58328 M.schlechteriana Maxillaria Maxillaria schlechteriana \N \N \N \N \N 58329 E.golondrina Euphorbia Euphorbia golondrina \N \N \N \N \N 58330 E.acuta Erica Erica acuta \N \N \N \N \N 58331 P.rhodantha Pimpinella Pimpinella rhodantha \N \N \N \N \N 58332 H.nutans Harmonia Harmonia nutans nodding Madia \N \N \N \N 58333 S.fistulosus Senecio Senecio fistulosus \N \N \N \N \N 58334 D.gredinii Draba Draba gredinii \N \N \N \N \N 58335 N.psammophila Nectandra Nectandra psammophila \N \N \N \N \N 58336 \N varietas Ficus gasparriniana var. viridescens \N \N \N \N \N 58337 W.moultonianum Whiteodendron Whiteodendron moultonianum \N \N \N \N \N 58338 \N genus Amberboa \N \N \N \N \N 58339 G.parviflora Gaura Gaura parviflora \N \N \N \N \N 58340 P.pachyphylla Silvaea Philippiamra pachyphylla \N \N \N \N \N 58341 P.2061 Pilidiostigma Pilidiostigma sp. Hill 2061 \N \N \N \N \N 58342 \N subspecies Genista sylvestris subsp. innocua \N \N \N \N \N 58343 \N no rank environmental samples Taxonomy:1008284 \N \N \N \N \N 58344 A.kauense Argyroxiphium Argyroxiphium kauense \N \N \N \N \N 58345 \N varietas Cornus oblonga var. glabrescens \N \N \N \N \N 58346 A.mariae Anaphalioides Anaphalioides mariae \N \N \N \N \N 58347 D.stylaris Draba Draba stylaris \N \N \N \N \N 58348 L.EBK-2007c Lobelia Lobelia sp. EBK-2007c \N \N \N \N \N 58349 \N genus Garuga \N \N \N \N \N 58350 S.costaricensis Stenanona Stenanona costaricensis \N \N \N \N \N 58351 C.rostratus Chilocarpus Chilocarpus rostratus \N \N \N \N \N 58352 C.lyratifolia Chaptalia Chaptalia lyratifolia \N \N \N \N \N 58353 T.brachytaenium Trigonosciadium Trigonosciadium brachytaenium \N \N \N \N \N 58354 \N genus Syneilesis \N \N \N \N \N 58355 \N subspecies Salvia dorrii subsp. dorrii \N \N \N \N \N 58356 \N varietas Hedera nepalensis var. nepalensis \N \N \N \N \N 58357 B.benthamiana Banksia Banksia benthamiana \N \N \N \N \N 58358 \N varietas Pseudobaeckea cordata var. monostyla \N \N \N \N \N 58359 C.'Montezuma' Cuscuta Cuscuta sp. 'Montezuma' \N \N \N \N \N 58360 S.clementii Stackhousia Stackhousia clementii \N \N \N \N \N 58361 C.acanthoides Carduus Carduus acanthoides \N \N \N \N \N 58362 \N genus Loranthus \N \N \N \N \N 58363 T.capitatum Thesium Thesium capitatum \N \N \N \N \N 58364 \N genus Astranthium \N \N \N \N \N 58365 D.idahoensis Douglasia Douglasia idahoensis \N \N \N \N \N 58366 H.simillimum Helichrysum Helichrysum simillimum \N \N \N \N \N 58367 T.confertifolia Tetratheca Tetratheca confertifolia \N \N \N \N \N 58368 \N genus Bdallophytum \N \N \N \N \N 58369 G.SB-2009 Genlisea Genlisea aff. violacea SB-2009 \N \N \N \N \N 58370 P.sinensis Poliothyrsis Poliothyrsis sinensis \N \N \N \N \N 58371 M.macrostachyum Megaphrynium Megaphrynium macrostachyum \N \N \N \N \N 58372 G.procera Gahnia Gahnia procera \N \N \N \N \N 58373 C.macrocarpa Coprosma Coprosma macrocarpa \N \N \N \N \N 58374 C.gigantea Carex Carex gigantea \N \N \N \N \N 58375 C.latifolia Cardamine Cardamine latifolia \N \N \N \N \N 58376 \N subspecies Gladiolus permeabilis subsp. permeabilis \N \N \N \N \N 58377 \N genus Eusideroxylon \N \N \N \N \N 58378 P.glauca Parnassia Parnassia glauca \N \N \N \N \N 58379 \N genus Vahlodea \N \N \N \N \N 58380 C.tenuipes Combretum Combretum tenuipes \N \N \N \N \N 58381 B.pulvinatum Brachanthemum Brachanthemum pulvinatum \N \N \N \N \N 58382 D.zeylanicus Dipterocarpus Dipterocarpus zeylanicus \N \N \N \N \N 58383 A.chiquitana Arachis Arachis chiquitana \N \N \N \N \N 58384 \N varietas Gastrorchis humblotii var. schlecteri \N \N \N \N \N 58385 A.striatum Androcymbium Androcymbium striatum \N \N \N \N \N 58386 A.asciocalyx Astragalus Astragalus asciocalyx \N \N \N \N \N 58387 E.cactus Euphorbia Euphorbia cactus \N \N \N \N \N 58388 C.deflexa Carex Carex deflexa northern sedge \N \N \N \N 58389 S.adenopus Symplocos Symplocos adenopus \N \N \N \N \N 58390 A.taronense Aconitum Aconitum taronense \N \N \N \N \N 58391 K.minus Kingidium Kingidium minus \N \N \N \N \N 58392 T.plumosus Trachypogon Trachypogon plumosus \N \N \N \N \N 58393 P.gongrijpii Pouteria Pouteria gongrijpii \N \N \N \N \N 58394 S.niceensis Silene Silene niceensis \N \N \N \N \N 58395 A.hirsutum Alangium Alangium hirsutum \N \N \N \N \N 58396 D.mollis Dahlia Dahlia mollis \N \N \N \N \N 58397 \N genus Faucherea \N \N \N \N \N 58398 \N genus Chorilaena \N \N \N \N \N 58399 \N varietas Salvia lutescens var. crenata \N \N \N \N \N 58400 \N genus Gunnera \N \N \N \N \N 58401 C.floriferum Chamelaucium Chamelaucium floriferum \N \N \N \N \N 58402 C.eriophylla Cousinia Cousinia eriophylla \N \N \N \N \N 58403 \N subspecies Krigia biflora subsp. parryi \N \N \N \N \N 58404 P.homomalla Poa Poa homomalla \N \N \N \N \N 58405 \N family Rubiaceae madder family \N \N \N \N 58406 C.tenuiflora Chomelia Chomelia tenuiflora \N \N \N \N \N 58407 S.subvelutinus Syncolostemon Syncolostemon subvelutinus \N \N \N \N \N 58408 \N genus Senyumia \N \N \N \N \N 58409 C.spruceana Calceolaria Calceolaria spruceana \N \N \N \N \N 58410 T.paradoxus Tragopogon Tragopogon paradoxus \N \N \N \N \N 58411 V.simpsonii Vitis Vitis simpsonii \N \N \N \N \N 58412 \N varietas Luzula picta var. picta \N \N \N \N \N 58413 M.romeroana Malpighia Malpighia romeroana \N \N \N \N \N 58414 S.tomentosa Spiraea Spiraea tomentosa hardhack,meadowsweet,steeplebush \N \N \N \N 58415 \N genus Pachites \N \N \N \N \N 58416 S.brittonianus Symbolanthus Symbolanthus brittonianus \N \N \N \N \N 58417 N.corticola Nematanthus Nematanthus corticola \N \N \N \N \N 58418 P.obliqua Pseuduvaria Pseuduvaria obliqua \N \N \N \N \N 58419 \N subspecies Ptelea trifoliata subsp. polyadenia \N \N \N \N \N 58420 M.angolensis Monodora Monodora angolensis \N \N \N \N \N 58421 G.mucidum Gymnocalycium Gymnocalycium mucidum \N \N \N \N \N 58422 C.rosmarinoides Croton Croton rosmarinoides \N \N \N \N \N 58423 R.conzattii Ruellia Ruellia conzattii \N \N \N \N \N 58424 D.tuberosum Delphinium Delphinium tuberosum \N \N \N \N \N 58425 S.tenella Strumaria Strumaria tenella \N \N \N \N \N 58426 \N genus Afrotrewia \N \N \N \N \N 58427 C.tenuisiliqua Capparis Capparis tenuisiliqua \N \N \N \N \N 58428 S.afghanica Saxifraga Saxifraga afghanica \N \N \N \N \N 58429 N.capillaceum Nanobubon Nanobubon capillaceum \N \N \N \N \N 58430 T.4251Hnew unclassified Taraxacum Taraxacum (sect. Arctica) sp. 4251Hnew \N \N \N \N \N 58431 E.macowanii Erica Erica macowanii \N \N \N \N \N 58432 D.macrossanii Dodonaea Dodonaea macrossanii \N \N \N \N \N 58433 \N tribe Hillieae \N \N \N \N \N 58434 L.mendocinensis Lithodraba Lithodraba mendocinensis \N \N \N \N \N 58435 P.sikkimensis Phyllanthus Phyllanthus sikkimensis \N \N \N \N \N 58436 \N genus Saba \N \N \N \N \N 58437 B.ariensis Bursera Bursera ariensis \N \N \N \N \N 58438 B.coriacea Buchholzia Buchholzia coriacea \N \N \N \N \N 58439 \N genus Rottboellia \N \N \N \N \N 58440 G.thunbergii Gentiana Gentiana thunbergii \N \N \N \N \N 58441 P.sericea Pouteria Pouteria sericea \N \N \N \N \N 58442 B.insignis Baikiaea Baikiaea insignis \N \N \N \N \N 58443 C.harbisonii Crataegus Crataegus harbisonii \N \N \N \N \N 58444 F.guatemalensis Furcraea Furcraea guatemalensis \N \N \N \N \N 58445 P.polyantha Pseudoscolopia Pseudoscolopia polyantha \N \N \N \N \N 58446 S.arisanensis Smilax Smilax arisanensis \N \N \N \N \N 58447 S.tacanensis Symplocos Symplocos tacanensis \N \N \N \N \N 58448 I.macrophylla Ilex Ilex macrophylla \N \N \N \N \N 58449 E.altum Erysimum Erysimum altum \N \N \N \N \N 58450 P.14857 Persea Persea sp. van der Werff & al. 14857 \N \N \N \N \N 58451 F.domingensis Fuertesia Fuertesia domingensis \N \N \N \N \N 58452 V.leucocarpa Valeriana Valeriana leucocarpa \N \N \N \N \N 58453 A.firma Alnus Alnus firma \N \N \N \N \N 58454 \N genus Litrisa \N \N \N \N \N 58455 S.170506/04 Salicornia Salicornia sp. Steffen & Koecke 170506/04 \N \N \N \N \N 58456 B.mollis Blumea Blumea mollis \N \N \N \N \N 58457 S.athamantoides Stenocoelium Stenocoelium athamantoides \N \N \N \N \N 58458 H.palcensis Hesperomeles Hesperomeles palcensis \N \N \N \N \N 58459 M.cubensis Miconia Miconia cubensis \N \N \N \N \N 58460 S.asteropilodes Solanum Solanum asteropilodes \N \N \N \N \N 58461 R.peepla Rhaphidophora Rhaphidophora peepla \N \N \N \N \N 58462 P.cochinchinensis Phyllanthus Phyllanthus cochinchinensis \N \N \N \N \N 58463 C.kerrii Croton Croton kerrii \N \N \N \N \N 58464 P.effusa Protea Protea effusa \N \N \N \N \N 58465 \N varietas Phragmipedium boissierianum var. czerwiakowianum \N \N \N \N \N 58466 P.sarcophylla Plantago Plantago sarcophylla \N \N \N \N \N 58467 S.rigida Scorzonera Scorzonera rigida \N \N \N \N \N 58468 H.buckleyi Hypericum Hypericum buckleyi \N \N \N \N \N 58469 \N genus Ondetia \N \N \N \N \N 58470 T.palmata Trevesia Trevesia palmata \N \N \N \N \N 58471 \N genus Afzelia \N \N \N \N \N 58472 U.triloba Utricularia Utricularia triloba \N \N \N \N \N 58473 T.CH_M59Adcum Triticum Triticum sp. CH_M59Adcum \N \N \N \N \N 58474 M.fallax Myrcia Myrcia fallax \N \N \N \N \N 58475 U.macrorhiza Utricularia Utricularia macrorhiza common bladderwort \N \N \N \N 58476 H.trifoliata Hoffmannseggia Hoffmannseggia trifoliata \N \N \N \N \N 58477 S.lemmonii Stevia Stevia lemmonii \N \N \N \N \N 58478 \N varietas Oxalis minuta var. callosa \N \N \N \N \N 58479 P.purpureonervosa Peperomia Peperomia purpureonervosa \N \N \N \N \N 58480 \N subspecies Secale strictum subsp. kuprijanovii \N \N \N \N \N 58481 P.indica Persea Persea indica \N \N \N \N \N 58482 M.longipedicellata Machilus Machilus longipedicellata \N \N \N \N \N 58483 \N varietas Orobanche cernua var. cernua \N \N \N \N \N 58484 B.plumosa Bistorta Bistorta plumosa \N \N \N \N \N 58485 C.purpurea Calamagrostis Calamagrostis purpurea \N \N \N \N \N 58487 C.mazoensis Cineraria Cineraria mazoensis \N \N \N \N \N 58488 E.radula Eurybia Eurybia radula \N \N \N \N \N 58489 B.tinctoria Berberis Berberis tinctoria \N \N \N \N \N 58490 \N varietas Lewisia cantelovii var. cantelovii \N \N \N \N \N 58491 Z.clavatum Zygophyllum Zygophyllum clavatum \N \N \N \N \N 58492 G.scabra Guizotia Guizotia scabra \N \N \N \N \N 58493 \N varietas Phacelia crenulata var. crenulata \N \N \N \N \N 58494 A.ferox Aconitum Aconitum ferox \N \N \N \N \N 58495 \N family Penthoraceae \N \N \N \N \N 58496 \N varietas Craspedia uniflora var. subhispida \N \N \N \N \N 58497 G.alboareolatum Gymnocalycium Gymnocalycium alboareolatum \N \N \N \N \N 58498 \N subspecies Navarretia intertexta subsp. propinqua \N \N \N \N \N 58499 A.acantherioceras Astragalus Astragalus acantherioceras \N \N \N \N \N 58500 S.duclouxii Stauntonia Stauntonia duclouxii \N \N \N \N \N 58501 S.woollsii Sloanea Sloanea woollsii \N \N \N \N \N 58502 O.ramulosa Olearia Olearia ramulosa \N \N \N \N \N 58503 D.reflexum Diplodium Diplodium reflexum \N \N \N \N \N 58504 C.macroptera Cousinia Cousinia macroptera \N \N \N \N \N 58505 \N subspecies Arctostaphylos glandulosa subsp. glandulosa \N \N \N \N \N 58506 P.laurentii Polystachya Polystachya laurentii \N \N \N \N \N 58507 E.vaginatum Eriophorum Eriophorum vaginatum \N \N \N \N \N 58508 \N genus Platycodon \N \N \N \N \N 58509 \N genus Pleiomeris \N \N \N \N \N 58510 S.laetevirens Senecio Senecio laetevirens \N \N \N \N \N 58511 C.squamata Coronanthera Coronanthera squamata \N \N \N \N \N 58512 S.cavalerieana Stauntonia Stauntonia cavalerieana \N \N \N \N \N 58513 R.cordata Royena Royena cordata \N \N \N \N \N 58514 M.horichii Maxillaria Maxillaria horichii \N \N \N \N \N 58515 O.thomsonii Oenanthe Oenanthe thomsonii \N \N \N \N \N 58516 E.mamillata Eleocharis Eleocharis mamillata \N \N \N \N \N 58517 S.tripartitum Solanum Solanum tripartitum \N \N \N \N \N 58518 A.fargesii Aralia Aralia fargesii \N \N \N \N \N 58519 T.accedens Telosma Telosma accedens \N \N \N \N \N 58520 B.plumieri Bromelia Bromelia plumieri karatas \N \N \N \N 58521 B.dewildei Begonia Begonia dewildei \N \N \N \N \N 58522 M.tarahumara Muhlenbergia Muhlenbergia tarahumara \N \N \N \N \N 58523 S.tianschanica Sorbus Sorbus tianschanica \N \N \N \N \N 58524 \N subspecies Trifolium subterraneum subsp. brachycalycinum \N \N \N \N \N 58525 \N genus Ammochloa \N \N \N \N \N 58526 U.capilliflora Utricularia Utricularia capilliflora \N \N \N \N \N 58527 I.paraensis Inga Inga paraensis \N \N \N \N \N 58528 \N subspecies Rosa elliptica subsp. inodora \N \N \N \N \N 58529 P.longepedunculata Perebea Perebea longepedunculata \N \N \N \N \N 58530 I.songarica Iris Iris songarica \N \N \N \N \N 58531 C.limbata Chaetanthera Chaetanthera limbata \N \N \N \N \N 58532 P.s.n. Polystachya Polystachya sp. Szlachetko s.n. \N \N \N \N \N 58533 L.racemosa Lumnitzera Lumnitzera racemosa \N \N \N \N \N 58534 C.arundinaceum Chlorophytum Chlorophytum arundinaceum \N \N \N \N \N 58535 I.Kenyan Ipomoea Ipomoea sp. Kenyan \N \N \N \N \N 58536 \N genus Chamaesium \N \N \N \N \N 58537 \N genus Kochia \N \N \N \N \N 58538 M.filipes Marantochloa Marantochloa filipes \N \N \N \N \N 58539 \N tribe Gaertnereae \N \N \N \N \N 58540 M.exarrhena Myosotis Myosotis exarrhena \N \N \N \N \N 58541 E.inornatus Erigeron Erigeron inornatus \N \N \N \N \N 58542 S.2050 Sandoricum Sandoricum cf. koetjape Muellner 2050 \N \N \N \N \N 58543 N.australe Notothlaspi Notothlaspi australe \N \N \N \N \N 58544 \N subspecies Phalaenopsis amabilis subsp. moluccana \N \N \N \N \N 58545 L.oreopolus Lisianthius Lisianthius oreopolus \N \N \N \N \N 58546 O.sinensis Oenanthe Oenanthe sinensis \N \N \N \N \N 58547 F.ghesquiereana Fenerivia Fenerivia ghesquiereana \N \N \N \N \N 58548 G.soja Glycine Glycine soja wild soybean \N \N \N \N 58549 K.breviflora Keckiella Keckiella breviflora bush beardtongue \N \N \N \N 58550 S.regalis Saxofridericia Saxofridericia regalis \N \N \N \N \N 58551 G.obvallata Geophila Geophila obvallata \N \N \N \N \N 58552 G.patagonica Grindelia Grindelia patagonica \N \N \N \N \N 58553 V.cereicola Vriesea Vriesea cereicola \N \N \N \N \N 58554 S.baldwinii Saccharum Saccharum baldwinii narrow plumegrass \N \N \N \N 58555 \N genus Librevillea \N \N \N \N \N 58556 E.MG-2007 Eltroplectris Eltroplectris sp. MG-2007 \N \N \N \N \N 58557 \N genus Rhabdothamnopsis \N \N \N \N \N 58558 C.7b Clivia Clivia sp. RHA+CA 7b \N \N \N \N \N 58559 S.caespitosus Samolus Samolus caespitosus \N \N \N \N \N 58560 S.amentiflora Sampantaea Sampantaea amentiflora \N \N \N \N \N 58561 H.angustifolium Hedyosmum Hedyosmum angustifolium \N \N \N \N \N 58562 M.gracile Melampodium Melampodium gracile \N \N \N \N \N 58563 F.falcata Fritillaria Fritillaria falcata talus fritillary \N \N \N \N 58564 E.micrantha Eschweilera Eschweilera micrantha \N \N \N \N \N 58565 P.brachypodon Piper Piper brachypodon \N \N \N \N \N 58566 E.impressicosta Endiandra Endiandra impressicosta \N \N \N \N \N 58567 \N subspecies Passiflora lobbii subsp. obtusiloba \N \N \N \N \N 58568 M.astrotricha Maireana Maireana astrotricha \N \N \N \N \N 58569 S.ovalifolia Smilax Smilax ovalifolia \N \N \N \N \N 58570 \N genus Caribea \N \N \N \N \N 58571 L.coadunata Leandra Leandra coadunata \N \N \N \N \N 58572 I.mauritanica Indigofera Indigofera mauritanica \N \N \N \N \N 58573 \N genus Virola \N \N \N \N \N 58574 C.hexandra Coutarea Coutarea hexandra \N \N \N \N \N 58575 \N genus Marrubium horehounds \N \N \N \N 58576 R.dissimilis Rhipsalis Rhipsalis dissimilis \N \N \N \N \N 58577 E.acuminatissima Eurya Eurya acuminatissima \N \N \N \N \N 58578 M.pteridifolia Mimosa Mimosa pteridifolia \N \N \N \N \N 58579 S.stenodonta Swainsona Swainsona stenodonta \N \N \N \N \N 58580 \N genus Agrostemma \N \N \N \N \N 58581 C.longifolium Colchicum Colchicum longifolium \N \N \N \N \N 58582 C.bursifolia Crepis Crepis bursifolia \N \N \N \N \N 58583 \N subspecies Pimelea axiflora subsp. axiflora \N \N \N \N \N 58584 I.alternifolia Iresine Iresine alternifolia \N \N \N \N \N 58585 A.corrudifolia Amphiglossa Amphiglossa corrudifolia \N \N \N \N \N 58586 \N varietas Hesperis laciniata var. spectabilis \N \N \N \N \N 58587 B.erectus Bromus Bromus erectus erect brome,meadow brome,upright brome \N \N \N \N 58588 H.nuttallii Helianthus Helianthus nuttallii \N \N \N \N \N 58589 B.rotundifolia Bellis Bellis rotundifolia \N \N \N \N \N 58590 \N tribe Gentianeae \N \N \N \N \N 58591 B.MAG-2009 Bunchosia Bunchosia sp. MAG-2009 \N \N \N \N \N 58592 G.wardii Gaultheria Gaultheria wardii \N \N \N \N \N 58593 B.stenophylla Bletia Bletia stenophylla \N \N \N \N \N 58594 S.restioidea Setaria Setaria restioidea \N \N \N \N \N 58595 R.capitata Roscoea Roscoea capitata \N \N \N \N \N 58596 V.rosaliana Valeriana Valeriana rosaliana \N \N \N \N \N 58597 D.pancheri Diospyros Diospyros pancheri \N \N \N \N \N 58598 B.papyracea Babiana Babiana papyracea \N \N \N \N \N 58599 P.baldshuanica Primula Primula baldshuanica \N \N \N \N \N 58600 B.yuccoides Beschorneria Beschorneria yuccoides \N \N \N \N \N 58601 S.melanospermum Solanum Solanum melanospermum \N \N \N \N \N 58602 B.andersonii Beckwithia Beckwithia andersonii \N \N \N \N \N 58603 \N varietas Halimolobos perplexus var. lemhiensis \N \N \N \N \N 58604 D.XMW-2002-18 Dendrobium Dendrobium sp. XMW-2002-18 \N \N \N \N \N 58605 S.johnsonii Schistocarpaea Schistocarpaea johnsonii \N \N \N \N \N 58606 I.hololeuca Indigofera Indigofera hololeuca \N \N \N \N \N 58607 S.brunonis Sonerila Sonerila brunonis \N \N \N \N \N 58608 S.pumila Saussurea Saussurea pumila \N \N \N \N \N 58609 S.fruticosa Silene Silene fruticosa \N \N \N \N \N 58610 M.afzelii Mussaenda Mussaenda afzelii \N \N \N \N \N 58611 M.cinchonifolia Macrocarpaea Macrocarpaea cinchonifolia \N \N \N \N \N 58612 \N genus Aztecaster \N \N \N \N \N 58613 P.ramosa Polygala Polygala ramosa \N \N \N \N \N 58614 I.heudelotii Indigofera Indigofera heudelotii \N \N \N \N \N 58615 S.hookeri Schiedea Schiedea hookeri \N \N \N \N \N 58616 T.sibiricum Trisetum Trisetum sibiricum \N \N \N \N \N 58617 T.CH_E19Amono Triticum Triticum sp. CH_E19Amono \N \N \N \N \N 58618 H.mutilum Hypericum Hypericum mutilum \N \N \N \N \N 58619 F.RL-2008 Fernandezia Fernandezia sp. RL-2008 \N \N \N \N \N 58620 W.hirsuta Wettinia Wettinia hirsuta \N \N \N \N \N 58621 C.annua Craniolaria Craniolaria annua \N \N \N \N \N 58622 M.gigantea Mammillaria Mammillaria gigantea \N \N \N \N \N 58623 U.17549 Uapaca Uapaca sp. McPherson 17549 \N \N \N \N \N 58624 C.caeruleus Calochilus Calochilus caeruleus \N \N \N \N \N 58625 T.fournieri Torenia Torenia fournieri bluewings,wishbone-flower \N \N \N \N 58626 \N subspecies Euphorbia stygiana subsp. santamariae \N \N \N \N \N 58627 F.minima Felicia Felicia minima \N \N \N \N \N 58628 T.wightianus Toxocarpus Toxocarpus wightianus \N \N \N \N \N 58629 P.szyszylowiczii Pseudonoseris Pseudonoseris szyszylowiczii \N \N \N \N \N 58630 C.cnidiifolium Cnidium Cnidium cnidiifolium \N \N \N \N \N 58631 \N varietas Viburnum opulus var. americanum American cranberrybush \N \N \N \N 58632 K.suaedifolia Kippistia Kippistia suaedifolia \N \N \N \N \N 58633 P.longipedicellatum Panicum Panicum longipedicellatum \N \N \N \N \N 58634 \N varietas Rosa woodsii var. ultramontana \N \N \N \N \N 58635 S.parvula Scleria Scleria parvula \N \N \N \N \N 58636 P.mexicanum Prosopidastrum Prosopidastrum mexicanum \N \N \N \N \N 58637 \N genus Gunnarella \N \N \N \N \N 58638 A.turgidum x Aegilotriticum Aegilops tauschii x Triticum turgidum synthetic wheat \N \N \N \N 58639 Z.japonica Zostera Zostera japonica \N \N \N \N \N 58640 E.corsicum Erodium Erodium corsicum \N \N \N \N \N 58641 P.discolor Pachycormus Pachycormus discolor \N \N \N \N \N 58642 P.altissima Pouteria Pouteria altissima \N \N \N \N \N 58643 \N subspecies Calceolaria engleriana subsp. engleriana \N \N \N \N \N 58644 \N genus Bambusa x Dendrocalamus \N \N \N \N \N 58645 S.pinnatifolius Senecio Senecio pinnatifolius \N \N \N \N \N 58646 G.sericea Glionnetia Glionnetia sericea \N \N \N \N \N 58647 C.lanatus Carthamus Carthamus lanatus \N \N \N \N \N 58648 \N genus Brimeura \N \N \N \N \N 58649 D.panamensis Dipteryx Dipteryx panamensis \N \N \N \N \N 58650 H.thianschanicum Helichrysum Helichrysum thianschanicum \N \N \N \N \N 58651 \N genus Phoenix \N \N \N \N \N 58652 J.compressus Juncus Juncus compressus roundleaf rush \N \N \N \N 58653 P.longifolium Polypleurum Polypleurum longifolium \N \N \N \N \N 58654 O.eriolepis Oxalis Oxalis eriolepis \N \N \N \N \N 58655 \N genus Pachyctenium \N \N \N \N \N 58656 \N genus Galatella \N \N \N \N \N 58657 O.gorodkovii Oxytropis Oxytropis gorodkovii \N \N \N \N \N 58658 S.villifer Sinosenecio Sinosenecio villifer \N \N \N \N \N 58659 \N subtribe Salaccinae \N \N \N \N \N 58660 L.minimum Lycium Lycium minimum \N \N \N \N \N 58661 S.viminalis Salix Salix viminalis basket willow,common osier,osier \N \N \N \N 58662 \N tribe Steganotaenieae \N \N \N \N \N 58663 R.crenulata Rhamnus Rhamnus crenulata \N \N \N \N \N 58664 \N genus Fernandoa \N \N \N \N \N 58665 S.venturii Solanum Solanum venturii \N \N \N \N \N 58666 \N genus Bisgoeppertia \N \N \N \N \N 58667 L.nodosum Lophopyrum Lophopyrum nodosum \N \N \N \N \N 58668 L.hastilis Lomandra Lomandra hastilis \N \N \N \N \N 58669 \N genus Aethionema \N \N \N \N \N 58670 S.culcitioides Senecio Senecio culcitioides \N \N \N \N \N 58671 \N genus Trichotosia \N \N \N \N \N 58672 \N genus Croizatia \N \N \N \N \N 58673 G.orchidiflorus Gladiolus Gladiolus orchidiflorus \N \N \N \N \N 58674 S.ferruginea Syncarpha Syncarpha ferruginea \N \N \N \N \N 58675 S.verna Saniella Saniella verna \N \N \N \N \N 58676 S.schlechtendalianum Solanum Solanum schlechtendalianum \N \N \N \N \N 58677 \N varietas Carex muehlenbergii var. enervis \N \N \N \N \N 58678 \N family Actinidiaceae Chinese gooseberry family \N \N \N \N 58679 F.flavovirens Ferocactus Ferocactus flavovirens \N \N \N \N \N 58680 S.buxifolia Secamone Secamone buxifolia \N \N \N \N \N 58681 \N genus Actinobole \N \N \N \N \N 58682 M.argentea Miconia Miconia argentea \N \N \N \N \N 58683 R.sardous Ranunculus Ranunculus sardous \N \N \N \N \N 58684 O.rugosa Oxera Oxera rugosa \N \N \N \N \N 58685 A.utriculata Alyssoides Alyssoides utriculata \N \N \N \N \N 58686 \N subspecies Scorzoneroides montana subsp. melanotricha \N \N \N \N \N 58687 C.costaricensis Clidemia Clidemia costaricensis \N \N \N \N \N 58688 F.asperula Ficus Ficus asperula \N \N \N \N \N 58689 H.beguinii Hydriastele Hydriastele beguinii \N \N \N \N \N 58690 C.cornifolia Cissus Cissus cornifolia \N \N \N \N \N 58691 D.cylindrica Disa Disa cylindrica \N \N \N \N \N 58692 \N genus Calyptochloa \N \N \N \N \N 58693 S.attenuata Strobilanthes Strobilanthes attenuata \N \N \N \N \N 58694 C.rostrata Cissus Cissus rostrata \N \N \N \N \N 58695 O.divaricata Oenanthe Oenanthe divaricata \N \N \N \N \N 58696 O.alta Oryza Oryza alta \N \N \N \N \N 58697 \N genus Calathea \N \N \N \N \N 58698 \N genus Campynema \N \N \N \N \N 58699 H.glauca Haworthia Haworthia glauca \N \N \N \N \N 58700 P.imbricata Phacelia Phacelia imbricata \N \N \N \N \N 58701 P.petiolatum Ptychopetalum Ptychopetalum petiolatum \N \N \N \N \N 58702 N.segetalis Nigella Nigella segetalis \N \N \N \N \N 58703 S.wisetonensis Schizanthus Schizanthus x wisetonensis \N \N \N \N \N 58704 M.8265 Microlicia Microlicia sp. Almeda et al. 8265 \N \N \N \N \N 58705 P.kikwitensis Psychotria Psychotria kikwitensis \N \N \N \N \N 58706 D.loddigesii Dendrobium Dendrobium loddigesii \N \N \N \N \N 58707 \N genus Moldenhawera \N \N \N \N \N 58708 \N varietas Alpinia blepharocalyx var. blepharocalyx \N \N \N \N \N 58709 I.cuneifolia Isotropis Isotropis cuneifolia \N \N \N \N \N 58710 P.griseum Pelargonium Pelargonium griseum \N \N \N \N \N 58711 C.orbelica Centaurea Centaurea orbelica \N \N \N \N \N 58712 A.pseudoverticillatum Afrocanthium Afrocanthium pseudoverticillatum \N \N \N \N \N 58713 H.spinosa Hydrolea Hydrolea spinosa \N \N \N \N \N 58714 C.lebeckioides Crotalaria Crotalaria lebeckioides \N \N \N \N \N 58715 G.herthae Glossoloma Glossoloma herthae \N \N \N \N \N 58716 R.18854 Rhaptonema Rhaptonema sp. GM 18854 \N \N \N \N \N 58717 M.sinclairii Machaerina Machaerina sinclairii \N \N \N \N \N 72889 \N genus Metrodorea \N \N \N \N \N 58718 M.squamosus Microdracoides Microdracoides squamosus \N \N \N \N \N 58719 P.pumila Physalis Physalis pumila dwarf groundcherry \N \N \N \N 58720 T.saprophytica Thaia Thaia saprophytica \N \N \N \N \N 58721 A.sp. Alsobia Alsobia sp. \N \N \N \N \N 58722 \N varietas Lessingia micradenia var. micradenia \N \N \N \N \N 58723 C.paradisi Citrus Citrus maxima x Citrus paradisi \N \N \N \N \N 58724 M.duthiei Machilus Machilus duthiei \N \N \N \N \N 58725 C.senegalensis Cyamopsis Cyamopsis senegalensis \N \N \N \N \N 58726 C.3657 Clusia Clusia sp. JA 3657 \N \N \N \N \N 58727 E.brachyphylla Eragrostiella Eragrostiella brachyphylla \N \N \N \N \N 58728 M.canthoides Morinda Morinda canthoides \N \N \N \N \N 58729 \N genus Bloomeria \N \N \N \N \N 58730 A.vidalii Azorina Azorina vidalii \N \N \N \N \N 58731 \N varietas Monstera adansonii var. klotzschiana \N \N \N \N \N 58732 \N subspecies Argyranthemum pinnatifidum subsp. pinnatifidum \N \N \N \N \N 58733 A.humblotii Ampelosycios Ampelosycios humblotii \N \N \N \N \N 58734 D.cordigera Declieuxia Declieuxia cordigera \N \N \N \N \N 58735 \N genus Rotheca \N \N \N \N \N 58736 \N subspecies Genista carpetana subsp. nociva \N \N \N \N \N 58737 S.curvicuspe Solanum Solanum curvicuspe \N \N \N \N \N 58738 A.oligoclonos Asparagus Asparagus oligoclonos \N \N \N \N \N 58739 C.xalapensis Conostegia Conostegia xalapensis \N \N \N \N \N 58740 M.lancifolia Meconopsis Meconopsis lancifolia \N \N \N \N \N 58741 H.eriantha Hebanthe Hebanthe eriantha \N \N \N \N \N 58742 \N genus Ercilla \N \N \N \N \N 58743 P.mapourioides Psychotria Psychotria mapourioides \N \N \N \N \N 58744 T.glabra Tournefortia Tournefortia glabra \N \N \N \N \N 58745 L.3643 Licuala Licuala sp. Henderson et al. 3643 \N \N \N \N \N 58746 P.betsileensis Pimpinella Pimpinella betsileensis \N \N \N \N \N 58747 C.grandiflorum Cardiospermum Cardiospermum grandiflorum balloonvine,heartseed \N \N \N \N 58748 \N subspecies Ipomopsis congesta subsp. frutescens \N \N \N \N \N 58749 C.mongolica Cymbaria Cymbaria mongolica \N \N \N \N \N 58750 \N genus Podolepis \N \N \N \N \N 58751 \N genus Hispidella \N \N \N \N \N 58752 E.amboinensis Eurycles Eurycles amboinensis \N \N \N \N \N 58753 \N subspecies Festuca pulchella subsp. pulchella \N \N \N \N \N 58754 B.sciadophila Brachyglottis Brachyglottis sciadophila \N \N \N \N \N 58755 V.parviflora Hebe Veronica parviflora \N \N \N \N \N 58756 M.capitulata Molineria Molineria capitulata \N \N \N \N \N 58757 S.involucratus Stahlianthus Stahlianthus involucratus \N \N \N \N \N 58758 E.hispida Encelia Encelia hispida \N \N \N \N \N 58759 C.troodi Carex Carex troodi \N \N \N \N \N 58760 I.leersioides Isachne Isachne leersioides \N \N \N \N \N 58761 A.trinervis Ainsliaea Ainsliaea trinervis \N \N \N \N \N 58762 G.glaucum Gymnocalycium Gymnocalycium glaucum \N \N \N \N \N 58763 L.aboriginus Lotus Lotus aboriginus \N \N \N \N \N 58764 F.DH-2011 Forsythia Forsythia sp. DH-2011 \N \N \N \N \N 58765 C.bodinieri Cinnamomum Cinnamomum bodinieri \N \N \N \N \N 58766 \N genus Zenkerella \N \N \N \N \N 58767 E.divaricatus Eleutherococcus Eleutherococcus divaricatus \N \N \N \N \N 58768 A.pusilla Ardisia Ardisia pusilla \N \N \N \N \N 58769 D.undulata Disporopsis Disporopsis undulata \N \N \N \N \N 58770 P.andongensis Pristimera Pristimera andongensis \N \N \N \N \N 58771 C.trothae Cissus Cissus trothae \N \N \N \N \N 58772 \N no rank unclassified Oncidiinae \N \N \N \N \N 58773 \N subspecies Viola epipsila subsp. repens \N \N \N \N \N 58774 \N genus Limoniastrum \N \N \N \N \N 58775 P.alchemilloides Pelargonium Pelargonium alchemilloides \N \N \N \N \N 58776 G.repens Goodyera Goodyera repens \N \N \N \N \N 58777 O.gracilis Oxalis Oxalis gracilis \N \N \N \N \N 58778 T.eximius Tonestus Tonestus eximius \N \N \N \N \N 76839 \N genus Haplostachys \N \N \N \N \N 58779 A.intermedia Amelanchier Amelanchier intermedia \N \N \N \N \N 58780 \N genus Thevenotia \N \N \N \N \N 58781 L.pilosa Luzula Luzula pilosa \N \N \N \N \N 58782 \N genus Sacciolepis \N \N \N \N \N 58783 C.serpentinicola Centaurium Centaurium serpentinicola \N \N \N \N \N 58784 J.BAC-2010 unclassified Juncaceae Juncaceae sp. A3 BAC-2010 \N \N \N \N \N 58785 B.monandra Bauhinia Bauhinia monandra \N \N \N \N \N 58786 G.brasiliensis Gustavia Gustavia brasiliensis \N \N \N \N \N 58787 L.hyssopifolia Lythrum Lythrum hyssopifolia \N \N \N \N \N 58788 T.quinquangulus Tapinanthus Tapinanthus quinquangulus \N \N \N \N \N 58789 R.formosanum Rhododendron Rhododendron formosanum \N \N \N \N \N 58790 \N subspecies Carex magellanica subsp. irrigua \N \N \N \N \N 58791 B.plantagineum Bupleurum Bupleurum plantagineum \N \N \N \N \N 58792 D.pulchra Disa Disa pulchra \N \N \N \N \N 58793 K.98-6289 Kaempferia Kaempferia sp. Kress 98-6289 \N \N \N \N \N 58794 A.tatsienense Aconitum Aconitum tatsienense \N \N \N \N \N 58795 L.dasytricha Leandra Leandra dasytricha \N \N \N \N \N 58796 \N forma Hamamelis japonica f. obtusata \N \N \N \N \N 58797 S.11935 Schefflera Schefflera cf. lasiogyne Neill 11935 \N \N \N \N \N 58798 H.bilobata Hypseocharis Hypseocharis bilobata \N \N \N \N \N 58799 O.wyattianum Oncidium Oncidium wyattianum \N \N \N \N \N 58800 A.alexandrae Archontophoenix Archontophoenix alexandrae \N \N \N \N \N 58801 \N varietas Rosa roxburghii var. roxburghii \N \N \N \N \N 58802 C.pseudibericum Cyclamen Cyclamen pseudibericum \N \N \N \N \N 58803 \N varietas Centaurium pulchellum var. altaicum \N \N \N \N \N 58804 C.roxburghii Croton Croton roxburghii \N \N \N \N \N 58805 I.amara Ilex Ilex amara \N \N \N \N \N 58806 M.SB-2011 Molinaea Molinaea sp. 1 SB-2011 \N \N \N \N \N 58807 C.mauritiana Coffea Coffea mauritiana \N \N \N \N \N 58808 V.tiliifolia Vitis Vitis tiliifolia \N \N \N \N \N 58809 G.reflexa Globba Globba reflexa \N \N \N \N \N 58810 S.5234 Schefflera Schefflera aff. dentata Lowry 5234 \N \N \N \N \N 58811 G.KJW-2003a Globba Globba sp. KJW-2003a \N \N \N \N \N 58812 B.mirifica Besleria Besleria mirifica \N \N \N \N \N 58813 S.napaulensis Saurauia Saurauia napaulensis \N \N \N \N \N 58815 L.emarginata Leptoplax Leptoplax emarginata \N \N \N \N \N 58816 \N genus Polianthes \N \N \N \N \N 58817 T.IR701Hnew unclassified Taraxacum Taraxacum (sect. Dioszegia) sp. IR701Hnew \N \N \N \N \N 58818 L.pterantha Lysimachia Lysimachia pterantha \N \N \N \N \N 58819 P.unispicatum Paspalum Paspalum unispicatum \N \N \N \N \N 58820 B.yunnanense Bupleurum Bupleurum yunnanense \N \N \N \N \N 58821 C.wheeleri Chaetadelpha Chaetadelpha wheeleri \N \N \N \N \N 58822 \N genus Chamarea \N \N \N \N \N 58823 L.etrusca Lonicera Lonicera etrusca \N \N \N \N \N 58824 A.tecta Arundinaria Arundinaria tecta \N \N \N \N \N 58825 \N varietas Abronia villosa var. aurita \N \N \N \N \N 58826 S.spergulina Schiedea Schiedea spergulina \N \N \N \N \N 58827 B.roxburghii Begonia Begonia roxburghii \N \N \N \N \N 58828 C.phellocapsa Camellia Camellia phellocapsa \N \N \N \N \N 58829 E.hendersonii Erythronium Erythronium hendersonii \N \N \N \N \N 58830 S.pseudocola Strephonema Strephonema pseudocola \N \N \N \N \N 58831 R.yiwuanus Rubus Rubus yiwuanus \N \N \N \N \N 58832 \N genus Tylopsacas \N \N \N \N \N 58833 T.longicarpa Tambourissa Tambourissa longicarpa \N \N \N \N \N 58834 W.vescoi Weinmannia Weinmannia vescoi \N \N \N \N \N 58835 T.sharonensis x Aegilotriticum Triticum turgidum subsp. durum x Aegilops sharonensis \N \N \N \N \N 58836 \N genus Mischogyne \N \N \N \N \N 58837 \N varietas Campanula parryi var. parryi \N \N \N \N \N 58838 D.fordii Dioscorea Dioscorea fordii \N \N \N \N \N 58839 \N subspecies Brassica villosa subsp. bivoniana \N \N \N \N \N 58840 G.pannonica Gentiana Gentiana pannonica \N \N \N \N \N 58841 \N varietas Carex flava var. alpina \N \N \N \N \N 58842 \N genus Taccarum \N \N \N \N \N 58843 S.spicata Streptochaeta Streptochaeta spicata \N \N \N \N \N 58844 M.caduca Mimosa Mimosa caduca \N \N \N \N \N 58845 E.perplexa Edmundoa Edmundoa perplexa \N \N \N \N \N 58846 E.gracilistylus Eleutherococcus Eleutherococcus gracilistylus \N \N \N \N \N 58847 S.andongensis Sericanthe Sericanthe andongensis \N \N \N \N \N 58848 H.albobrunneum Helichrysum Helichrysum albobrunneum \N \N \N \N \N 58849 M.brevistylis Metrosideros Metrosideros brevistylis \N \N \N \N \N 58850 C.cretica Carex Carex cretica \N \N \N \N \N 58851 R.muscicola Rangaeris Rangaeris muscicola \N \N \N \N \N 58852 \N genus Sparattosperma \N \N \N \N \N 58853 S.vacciniflora Schoepfia Schoepfia vacciniflora \N \N \N \N \N 58854 W.aurantiaca Wamalchitamia Wamalchitamia aurantiaca \N \N \N \N \N 58855 O.pubescens Opuntia Opuntia pubescens \N \N \N \N \N 58856 E.drepanophylla Esterhuysenia Esterhuysenia drepanophylla \N \N \N \N \N 58857 M.rufipes Machilus Machilus rufipes \N \N \N \N \N 58858 A.ovata Arachnothryx Arachnothryx ovata \N \N \N \N \N 58859 A.distichantha Aechmea Aechmea distichantha \N \N \N \N \N 58860 L.subsessilis Lonicera Lonicera subsessilis \N \N \N \N \N 58861 F.affinis Fritillaria Fritillaria affinis \N \N \N \N \N 58862 S.DOB-2010 Stackhousia Stackhousia sp. 2 DOB-2010 \N \N \N \N \N 58863 C.samburuensis Coccinia Coccinia samburuensis \N \N \N \N \N 58864 S.shirense Satyrium Satyrium shirense \N \N \N \N \N 58865 C.cabezudoi Campanula Campanula cabezudoi \N \N \N \N \N 58866 C.ogilviensis Claytonia Claytonia ogilviensis \N \N \N \N \N 58867 C.smithianus Croton Croton smithianus \N \N \N \N \N 58868 A.reptans Ajuga Ajuga reptans bugle \N \N \N \N 58869 H.miranda Hoffmannseggia Hoffmannseggia miranda \N \N \N \N \N 58870 S.parviflorus Syncolostemon Syncolostemon parviflorus \N \N \N \N \N 58871 S.calceolaris Stenia Stenia calceolaris \N \N \N \N \N 58872 P.jaceoides Podolepis Podolepis jaceoides \N \N \N \N \N 58873 D.butyracea Diploknema Diploknema butyracea Indian-buttertree,phulwara \N \N \N \N 58874 \N genus Simicratea \N \N \N \N \N 58875 \N genus Klaineanthus \N \N \N \N \N 58876 D.conspicillata Diuris Diuris conspicillata \N \N \N \N \N 58877 T.napaulense Tetrastigma Tetrastigma napaulense \N \N \N \N \N 58878 C.westonii Calochortus Calochortus westonii Shirley Meadows mariposa lily \N \N \N \N 58879 \N tribe Andromedeae \N \N \N \N \N 58880 K.hissarica Kafirnigania Kafirnigania hissarica \N \N \N \N \N 58881 B.briziformis Bromus Bromus briziformis rattlesnake brome,rattlesnake chess \N \N \N \N 58882 S.3732 Selago Selago sp. Bremer 3732 \N \N \N \N \N 58883 C.capitatus Coridothymus Coridothymus capitatus Persian hyssop,Spanish oregano,conehead thyme \N \N \N \N 58884 S.canescens Swainsona Swainsona canescens \N \N \N \N \N 58885 P.calderiana Primula Primula calderiana \N \N \N \N \N 58886 M.cochinchinensis Mangifera Mangifera cochinchinensis \N \N \N \N \N 58887 D.salaccense Dendrobium Dendrobium salaccense \N \N \N \N \N 58888 \N no rank unclassified Stanhopeinae \N \N \N \N \N 58889 \N genus Drosophyllum \N \N \N \N \N 58890 D.setigera Digitaria Digitaria setigera \N \N \N \N \N 58891 \N family Martyniaceae \N \N \N \N \N 58892 N.persica Nonea Nonea persica \N \N \N \N \N 58893 C.pygmaea Cousinia Cousinia pygmaea \N \N \N \N \N 58894 I.isabelliana Isoplexis Isoplexis isabelliana \N \N \N \N \N 58895 B.amoenum Bulbophyllum Bulbophyllum amoenum \N \N \N \N \N 58896 P.valida Platysace Platysace valida \N \N \N \N \N 58897 G.breedlovei Gonolobus Gonolobus breedlovei \N \N \N \N \N 58898 C.spadiciformis Chirita Chirita spadiciformis \N \N \N \N \N 58899 A.matsumurae Alnus Alnus matsumurae \N \N \N \N \N 58900 Z.microcephala Zyrphelis Zyrphelis microcephala \N \N \N \N \N 58901 P.setacea Polygala Polygala setacea \N \N \N \N \N 58902 P.wendlandii Philodendron Philodendron wendlandii \N \N \N \N \N 58903 M.glomerata Machaerina Machaerina glomerata \N \N \N \N \N 58904 \N varietas Brassica nigra var. abyssinica \N \N \N \N \N 58905 H.glandulosa Hirtella Hirtella glandulosa \N \N \N \N \N 58906 O.hygrophila Ophrys Ophrys hygrophila \N \N \N \N \N 58907 \N genus Podophorus \N \N \N \N \N 58908 H.africana Heliophila Heliophila africana \N \N \N \N \N 58909 Q.gilva Quercus Quercus gilva \N \N \N \N \N 58910 B.siamensis Blachia Blachia siamensis \N \N \N \N \N 58911 C.glabra Cruciata Cruciata glabra \N \N \N \N \N 58912 \N genus Polyporandra \N \N \N \N \N 58913 M.pentaphylla Manihot Manihot pentaphylla \N \N \N \N \N 58914 \N genus Berlandiera \N \N \N \N \N 58915 S.myriadenia Stevia Stevia myriadenia \N \N \N \N \N 58916 P.lignosus Phaseolus Phaseolus lignosus \N \N \N \N \N 58917 L.americanus Lycopus Lycopus americanus American bugleweed \N \N \N \N 58918 A.hispida Aspalathus Aspalathus hispida \N \N \N \N \N 58919 \N subspecies Gymnocalycium fischeri subsp. suyuquense \N \N \N \N \N 58920 M.decapetala Mentzelia Mentzelia decapetala \N \N \N \N \N 58921 S.glabrata Schefflera Schefflera glabrata \N \N \N \N \N 58922 F.jamesii Frankenia Frankenia jamesii \N \N \N \N \N 58923 C.auriculatus Coelophragmus Coelophragmus auriculatus \N \N \N \N \N 58924 A.MD012401 Anaphalis Anaphalis sp. MD012401 \N \N \N \N \N 58925 \N subspecies Satyrium hallackii subsp. hallackii \N \N \N \N \N 58926 S.torresii Stachys Stachys torresii \N \N \N \N \N 58927 B.pendula Botryarrhena Botryarrhena pendula \N \N \N \N \N 58928 T.saxatilis Taplinia Taplinia saxatilis \N \N \N \N \N 58929 N.jepsonii Navarretia Navarretia jepsonii \N \N \N \N \N 58930 \N genus Jansonia \N \N \N \N \N 58931 C.uncifera Cleome Cleome uncifera \N \N \N \N \N 58932 C.verrucosa Cliffortia Cliffortia verrucosa \N \N \N \N \N 58933 \N genus Rosmarinus \N \N \N \N \N 58934 \N forma Platycodon grandiflorus f. albiflorus \N \N \N \N \N 58935 L.australasica Laccospadix Laccospadix australasica \N \N \N \N \N 58936 E.pringlei Echeveria Echeveria pringlei \N \N \N \N \N 58937 F.maximoviczii Fritillaria Fritillaria maximoviczii \N \N \N \N \N 58938 A.spiroligulatum Aframomum Aframomum spiroligulatum \N \N \N \N \N 58939 \N genus Rendlia \N \N \N \N \N 58940 V.eremaea Vittadinia Vittadinia eremaea \N \N \N \N \N 58941 M.pachyphylla Macaranga Macaranga pachyphylla \N \N \N \N \N 58942 A.chinense Achnatherum Achnatherum chinense \N \N \N \N \N 58943 C.kingii Cordylanthus Cordylanthus kingii \N \N \N \N \N 58944 D.s.n. Dracontium Dracontium sp. Mason s.n. \N \N \N \N \N 58945 P.rotundifolia Pontederia Pontederia rotundifolia \N \N \N \N \N 58946 P.resupinata Pedicularis Pedicularis resupinata \N \N \N \N \N 58947 P.chinensis Pholidota Pholidota chinensis \N \N \N \N \N 58948 O.GMS-2004 Orobanche Orobanche sp. GMS-2004 \N \N \N \N \N 58949 R.humile Ranalisma Ranalisma humile \N \N \N \N \N 58950 \N genus Aphanostephus \N \N \N \N \N 58951 O.mutelii Orobanche Orobanche mutelii \N \N \N \N \N 58952 \N genus Benincasa \N \N \N \N \N 58953 D.calantha Dombeya Dombeya calantha \N \N \N \N \N 58954 B.brunonis Brachyglottis Brachyglottis brunonis \N \N \N \N \N 58955 C.foliolosa Calliandra Calliandra foliolosa \N \N \N \N \N 58956 G.graniticum Gastrolobium Gastrolobium graniticum \N \N \N \N \N 58957 M.doiana Mitella Mitella doiana \N \N \N \N \N 58958 S.uliginosa Solidago Solidago uliginosa \N \N \N \N \N 58959 S.mucronata Syncarpha Syncarpha mucronata \N \N \N \N \N 58960 G.pedunculosa Gesneria Gesneria pedunculosa \N \N \N \N \N 58961 Y.brevipaniculata Yushania Yushania brevipaniculata \N \N \N \N \N 58962 D.stenobotrys Draba Draba stenobotrys \N \N \N \N \N 58963 M.huitzilopochtli Mammillaria Mammillaria huitzilopochtli \N \N \N \N \N 58964 P.huashanica Psathyrostachys Psathyrostachys huashanica \N \N \N \N \N 58965 \N varietas Lonicera caerulea var. dependens \N \N \N \N \N 58966 B.roxburghiana Beilschmiedia Beilschmiedia roxburghiana \N \N \N \N \N 58967 E.173 Ephedranthus Ephedranthus sp. Chatrou et al. 173 \N \N \N \N \N 58968 B.kalmii Bromus Bromus kalmii \N \N \N \N \N 58969 S.krylovii Saussurea Saussurea krylovii \N \N \N \N \N 58970 L.flavescens Lycoris Lycoris flavescens \N \N \N \N \N 58971 C.heterophyllus Cistus Cistus albidus x Cistus heterophyllus \N \N \N \N \N 58972 \N genus Dasylepis \N \N \N \N \N 58973 C.tenella Calceolaria Calceolaria tenella \N \N \N \N \N 58974 L.rivularis Lupinus Lupinus rivularis \N \N \N \N \N 58975 C.grandis Chichicaste Chichicaste grandis \N \N \N \N \N 58976 P.pamiroalaicum Piptatherum Piptatherum pamiroalaicum \N \N \N \N \N 58977 P.ecuadorensis Phragmotheca Phragmotheca ecuadorensis \N \N \N \N \N 58978 \N forma Salvia castanea f. pubescens \N \N \N \N \N 58979 A.heterophylla Acacia Acacia heterophylla \N \N \N \N \N 58980 \N subspecies Aloe dichotoma subsp. pillansii \N \N \N \N \N 58981 P.densum Paspalum Paspalum densum \N \N \N \N \N 58982 A.ternarius Andropogon Andropogon ternarius \N \N \N \N \N 58983 C.tyrridion Campylocentrum Campylocentrum tyrridion \N \N \N \N \N 58984 P.xishuangbannaensis Passiflora Passiflora xishuangbannaensis \N \N \N \N \N 58985 \N genus Dischidia \N \N \N \N \N 58986 F.burragei Fouquieria Fouquieria burragei \N \N \N \N \N 58987 E.quadrialata Euphorbia Euphorbia quadrialata \N \N \N \N \N 58988 E.carniolica Euphorbia Euphorbia carniolica \N \N \N \N \N 58989 P.vitacea Parthenocissus Parthenocissus vitacea \N \N \N \N \N 58990 \N genus Festuca \N \N \N \N \N 58991 P.pusilla Polymeria Polymeria pusilla \N \N \N \N \N 58992 O.onoseroides Onoseris Onoseris onoseroides \N \N \N \N \N 58993 A.caespitosa Aliciella Aliciella caespitosa \N \N \N \N \N 58994 P.vulgaris Pinguicula Pinguicula vulgaris common butterwort \N \N \N \N 58995 L.gerberiformis Linzia Linzia gerberiformis \N \N \N \N \N 58996 D.spicigera Dampiera Dampiera spicigera \N \N \N \N \N 58997 C.amazonica Cayaponia Cayaponia amazonica \N \N \N \N \N 58998 P.spinosum Phaeoptilum Phaeoptilum spinosum \N \N \N \N \N 58999 C.uraku Camellia Camellia uraku \N \N \N \N \N 59000 D.reticulatus Desmanthus Desmanthus reticulatus \N \N \N \N \N 59001 S.opdalensis Saxifraga Saxifraga opdalensis \N \N \N \N \N 59002 \N genus Periarrabidaea \N \N \N \N \N 59003 \N tribe Siraitieae \N \N \N \N \N 59004 C.sericea Clidemia Clidemia sericea \N \N \N \N \N 59005 F.karakalensis Ferula Ferula karakalensis \N \N \N \N \N 59006 G.macropoda Geophila Geophila macropoda \N \N \N \N \N 59007 B.acetabulosa Ballota Ballota acetabulosa \N \N \N \N \N 74245 \N genus Cuatresia \N \N \N \N \N 59008 A.DAP-2004 Arachis Arachis aff. cardenasii DAP-2004 \N \N \N \N \N 59009 D.didactyla Digitaria Digitaria didactyla \N \N \N \N \N 59010 C.swaniana Coelogyne Coelogyne swaniana \N \N \N \N \N 59011 E.namibensis Euphorbia Euphorbia namibensis \N \N \N \N \N 59012 L.fasciculatum Lachnospermum Lachnospermum fasciculatum \N \N \N \N \N 59013 P.rigidum Pittosporum Pittosporum rigidum \N \N \N \N \N 59014 C.fuscus Cyperus Cyperus fuscus \N \N \N \N \N 59015 I.macrosiphon Iris Iris macrosiphon \N \N \N \N \N 59016 D.cyanocarpa Drymophila Drymophila cyanocarpa \N \N \N \N \N 59017 \N genus Topobea \N \N \N \N \N 59018 \N subspecies Rondeletia pachyphylla subsp. myrtilloides \N \N \N \N \N 59019 H.bolanderi Hieracium Hieracium bolanderi \N \N \N \N \N 59020 Z.baueriana Zehneria Zehneria baueriana \N \N \N \N \N 59021 B.ebenus Brya Brya ebenus \N \N \N \N \N 59022 P.commersonii Pyrostria Pyrostria commersonii \N \N \N \N \N 59023 J.cajacayensis Jaltomata Jaltomata cajacayensis \N \N \N \N \N 59024 \N subspecies Hippophae rhamnoides subsp. fluviatilis \N \N \N \N \N 59025 N.bornmuelleri Nepeta Nepeta bornmuelleri \N \N \N \N \N 59026 S.wittei Streptocarpus Streptocarpus wittei \N \N \N \N \N 59027 R.elliptica Rimacola Rimacola elliptica \N \N \N \N \N 59028 H.peninsularis Hoffmannseggia Hoffmannseggia peninsularis \N \N \N \N \N 59029 \N genus Scirpodendron \N \N \N \N \N 59030 S.klotzschiana Sebastiania Sebastiania klotzschiana \N \N \N \N \N 59031 S.pygmaea Silene Silene pygmaea \N \N \N \N \N 59032 \N subspecies Adenia wightiana subsp. wightiana \N \N \N \N \N 59033 C.magellanica Chloraea Chloraea magellanica \N \N \N \N \N 59034 H.tomentosum Homalium Homalium tomentosum \N \N \N \N \N 59035 E.biflora Eragrostis Eragrostis biflora \N \N \N \N \N 59036 A.apetala Archakebia Archakebia apetala \N \N \N \N \N 59037 \N genus Eryngium eryngos \N \N \N \N 59038 C.hypocistis Cytinus Cytinus hypocistis \N \N \N \N \N 59039 E.sample environmental samples Taxonomy:1096682 Ebenaceae environmental sample \N \N \N \N \N 59040 \N varietas Pimelea imbricata var. imbricata \N \N \N \N \N 59041 A.tsaii Aconitum Aconitum tsaii \N \N \N \N \N 59042 C.angustata Carex Carex angustata \N \N \N \N \N 59043 J.mollis Jurinea Jurinea mollis \N \N \N \N \N 59044 \N genus Capelio \N \N \N \N \N 59045 P.elongata Peperomia Peperomia elongata \N \N \N \N \N 59046 P.horridum Peponidium Peponidium horridum \N \N \N \N \N 59047 Z.glaberrimus Zigadenus Zigadenus glaberrimus \N \N \N \N \N 59048 M.northingtonii Melampodium Melampodium northingtonii \N \N \N \N \N 59049 L.lucidus Lycopus Lycopus lucidus di gua er miao,shiny bugleweed,shiro-ne \N \N \N \N 59050 C.schoenoides Crypsis Crypsis schoenoides \N \N \N \N \N 59051 \N varietas Protea angolensis var. angolensis \N \N \N \N \N 59052 P.kovachii Phragmipedium Phragmipedium kovachii \N \N \N \N \N 59053 M.discoidea Microcephala Microcephala discoidea \N \N \N \N \N 59054 A.serpyllifolia Archeria Archeria serpyllifolia \N \N \N \N \N 59055 R.rudis Rubus Rubus rudis \N \N \N \N \N 59056 \N subspecies Leptospermum madidum subsp. sativum \N \N \N \N \N 59057 C.thunbergii Cenchrus Cenchrus thunbergii \N \N \N \N \N 59058 H.arbutifolia Heteromeles Heteromeles arbutifolia toyon \N \N \N \N 59059 \N subspecies Hordeum marinum subsp. gussoneanum \N \N \N \N \N 59060 T.tabrisianum Tanacetum Tanacetum tabrisianum \N \N \N \N \N 59061 \N genus Cysticapnos \N \N \N \N \N 59062 \N genus Limnosciadium \N \N \N \N \N 59063 R.schlechteriana Rafnia Rafnia schlechteriana \N \N \N \N \N 59064 A.patersonii Arachnorchis Arachnorchis patersonii \N \N \N \N \N 59065 D.paludosum Dipodium Dipodium paludosum \N \N \N \N \N 59066 M.puberula Microdesmis Microdesmis puberula \N \N \N \N \N 59067 P.suzanensis Prosthechea Prosthechea suzanensis \N \N \N \N \N 77326 \N genus Decumaria \N \N \N \N \N 59068 T.polygamus Timonius Timonius polygamus \N \N \N \N \N 59069 S.ceylanica Sabicea Sabicea ceylanica \N \N \N \N \N 59070 C.aquatica Chikusichloa Chikusichloa aquatica \N \N \N \N \N 59071 \N genus Rodgersia \N \N \N \N \N 59072 D.tangkulaense Delphinium Delphinium tangkulaense \N \N \N \N \N 59073 C.subtropicum Cypripedium Cypripedium subtropicum \N \N \N \N \N 59074 C.caeruleum Calopogonium Calopogonium caeruleum \N \N \N \N \N 59075 M.KPR-2011 Myriophyllum Myriophyllum sp. KPR-2011 \N \N \N \N \N 59076 T.lanceolatum Tripterospermum Tripterospermum lanceolatum \N \N \N \N \N 59077 A.coronopifolium Argyranthemum Argyranthemum coronopifolium \N \N \N \N \N 59078 A.ridleythai Alocasia Alocasia sp. ridleythai \N \N \N \N \N 59079 P.pulchellus Paepalanthus Paepalanthus pulchellus \N \N \N \N \N 59080 A.trifida Ambrosia Ambrosia trifida giant ragweed \N \N \N \N 59081 P.utilis Pandanus Pandanus utilis \N \N \N \N \N 59082 L.canariense Lolium Lolium canariense \N \N \N \N \N 59083 \N genus Agapanthus \N \N \N \N \N 59084 B.intermedia Boykinia Boykinia intermedia \N \N \N \N \N 59085 R.pentaptera Rhipsalis Rhipsalis pentaptera \N \N \N \N \N 59086 C.fragrantulus Croton Croton fragrantulus \N \N \N \N \N 59087 \N genus Fernseea \N \N \N \N \N 59088 \N forma Hydrangea serrata f. fertilis \N \N \N \N \N 59089 S.crotonoides Solanum Solanum crotonoides \N \N \N \N \N 59090 C.colligata Crassula Crassula colligata \N \N \N \N \N 59091 G.krebsiana Glekia Glekia krebsiana \N \N \N \N \N 59092 A.orientalis Alnus Alnus orientalis \N \N \N \N \N 59093 \N genus Atractantha \N \N \N \N \N 59094 \N family Trigoniaceae \N \N \N \N \N 59095 D.manausense Dicypellium Dicypellium manausense \N \N \N \N \N 59096 G.polyanthos Genista Genista polyanthos \N \N \N \N \N 59097 C.cockayneana Carex Carex cockayneana \N \N \N \N \N 59098 E.89 Eriotheca Eriotheca sp. Duarte 89 \N \N \N \N \N 59099 \N genus Spragueanella \N \N \N \N \N 59100 \N genus Tonella \N \N \N \N \N 59101 C.humilis Cephalaria Cephalaria humilis \N \N \N \N \N 59102 I.dugesii Ilex Ilex dugesii \N \N \N \N \N 59103 A.gypsophila Aristida Aristida gypsophila \N \N \N \N \N 59104 S.brevicaulis Sophronitis Sophronitis brevicaulis \N \N \N \N \N 59106 Q.monimotricha Quercus Quercus monimotricha \N \N \N \N \N 59107 R.rotundus Rhodocodon Rhodocodon rotundus \N \N \N \N \N 59108 C.breweri Cardamine Cardamine breweri Brewer's bittercress \N \N \N \N 59109 A.gracile Argostemma Argostemma gracile \N \N \N \N \N 59110 O.salzmannii Oldenlandia Oldenlandia salzmannii \N \N \N \N \N 59111 R.tamnoides Romanoa Romanoa tamnoides \N \N \N \N \N 59112 G.lucidum Geranium Geranium lucidum \N \N \N \N \N 59113 B.forficata Bauhinia Bauhinia forficata \N \N \N \N \N 59114 \N subspecies Cyrtandra kealiae subsp. urceolata \N \N \N \N \N 59115 H.gibberosa Henriettea Henriettea gibberosa \N \N \N \N \N 59116 K.cheb Korthalsia Korthalsia cheb \N \N \N \N \N 59117 O.5003ra Osmorhiza Osmorhiza sp. 5003ra \N \N \N \N \N 59118 \N subspecies Pimelea flava subsp. flava \N \N \N \N \N 59119 A.maxwellii Amorphophallus Amorphophallus maxwellii \N \N \N \N \N 59120 F.olgae Ferula Ferula olgae \N \N \N \N \N 59121 M.3189 Maxillaria Maxillaria aff. aggregata Whitten 3189 \N \N \N \N \N 59122 J.cayensis Jacquemontia Jacquemontia cayensis \N \N \N \N \N 59123 W.ramosa Wahlenbergia Wahlenbergia ramosa \N \N \N \N \N 59124 A.thunbergii Astilbe Astilbe thunbergii \N \N \N \N \N 59125 P.mendocina Physalis Physalis mendocina \N \N \N \N \N 59126 \N genus Molineriella \N \N \N \N \N 59127 H.punaluuensis Hibiscus Hibiscus punaluuensis \N \N \N \N \N 59128 E.cereris Erica Erica cereris \N \N \N \N \N 59129 S.acuminatus Stemonoporus Stemonoporus acuminatus \N \N \N \N \N 59130 G.myriophylla Gagnebina Gagnebina myriophylla \N \N \N \N \N 59131 K.51 Kiggelaria Kiggelaria sp. Alford 51 \N \N \N \N \N 59132 S.hallii Schlechteranthus Schlechteranthus hallii \N \N \N \N \N 59133 S.pulcherrimum Stryphnodendron Stryphnodendron pulcherrimum \N \N \N \N \N 59134 \N subspecies Phoradendron juniperinum subsp. libocedri \N \N \N \N \N 59135 C.aromaticum Ctenium Ctenium aromaticum \N \N \N \N \N 59136 G.squarrosa Gnidia Gnidia squarrosa \N \N \N \N \N 59137 \N subspecies Reseda muricata subsp. patzakiana \N \N \N \N \N 59138 L.infaustum Lycium Lycium infaustum \N \N \N \N \N 59139 G.reductum Gymnocalycium Gymnocalycium reductum \N \N \N \N \N 59140 K.laxa Kobresia Kobresia laxa \N \N \N \N \N 59141 B.gerardii Bupleurum Bupleurum gerardii \N \N \N \N \N 59142 P.desertorum Potentilla Potentilla desertorum \N \N \N \N \N 59143 P.batesii Pseudosabicea Pseudosabicea batesii \N \N \N \N \N 59144 C.akebioides Clematis Clematis akebioides \N \N \N \N \N 59145 A.serrata Aristotelia Aristotelia serrata \N \N \N \N \N 59146 S.Sspluis69 Sobralia Sobralia sp. Sspluis69 \N \N \N \N \N 59147 G.lichtensteinii Gazania Gazania lichtensteinii \N \N \N \N \N 59148 \N subspecies Daviesia incrassata subsp. incrassata \N \N \N \N \N 59149 B.cerosissima Bambusa Bambusa cerosissima \N \N \N \N \N 59150 \N genus Triptilion \N \N \N \N \N 59151 C.simpliciuscula Coelachne Coelachne simpliciuscula \N \N \N \N \N 59152 \N genus Metanarthecium \N \N \N \N \N 59153 S.jeanneneyi Saribus Saribus jeanneneyi \N \N \N \N \N 59154 P.stenosepala Palicourea Palicourea stenosepala \N \N \N \N \N 59155 S.SYW-2010a Schismatoglottis Schismatoglottis sp. SYW-2010a \N \N \N \N \N 59156 A.kempff-mercadoi Arachis Arachis kempff-mercadoi \N \N \N \N \N 59157 N.pinnigera Nassauvia Nassauvia pinnigera \N \N \N \N \N 59158 J.pentanthos Jacquemontia Jacquemontia pentanthos \N \N \N \N \N 59159 H.villosa Heterotaxis Heterotaxis villosa \N \N \N \N \N 59160 \N varietas Eleocharis tenuis var. pseudoptera \N \N \N \N \N 59161 A.ocanensis Ada Ada ocanensis \N \N \N \N \N 59162 M.1133 Massonia Massonia sp. Wetschnig 1133 \N \N \N \N \N 59163 \N varietas Leptospermum scoparium var. scoparium \N \N \N \N \N 59164 C.formosa Carex Carex formosa \N \N \N \N \N 59165 S.1351 Symplocos Symplocos sp. Chung and Anderberg 1351 \N \N \N \N \N 59166 M.lutea Malephora Malephora lutea \N \N \N \N \N 59167 E.bethencourtii Echium Echium bethencourtii \N \N \N \N \N 59168 P.stonei Paphiopedilum Paphiopedilum philippinense x Paphiopedilum stonei \N \N \N \N \N 59169 R.propinquus Ranunculus Ranunculus propinquus \N \N \N \N \N 59170 \N genus Oreophyton \N \N \N \N \N 59171 P.tridentata Potentilla Potentilla tridentata \N \N \N \N \N 59172 \N genus Janusia \N \N \N \N \N 59173 C.ambiguum Chenopodium Chenopodium ambiguum \N \N \N \N \N 59174 \N genus Cordylocarpus \N \N \N \N \N 59175 O.puncticulosa Odontadenia Odontadenia puncticulosa \N \N \N \N \N 59176 B.LBF-2005 Barteria Barteria sp. LBF-2005 \N \N \N \N \N 59177 O.sparrei Ossaea Ossaea sparrei \N \N \N \N \N 59178 A.jacutica Artemisia Artemisia jacutica \N \N \N \N \N 59179 G.affinis Gonzalagunia Gonzalagunia affinis \N \N \N \N \N 59180 L.cordata Listera Listera cordata \N \N \N \N \N 59181 T.minor Terniopsis Terniopsis minor \N \N \N \N \N 59182 \N varietas Fallopia japonica var. compacta \N \N \N \N \N 59183 D.oreophila Disa Disa oreophila \N \N \N \N \N 59184 R.yunnanensis Racemobambos Racemobambos yunnanensis \N \N \N \N \N 59185 A.crenata Aloysia Aloysia crenata \N \N \N \N \N 59186 A.caffra Acacia Acacia caffra \N \N \N \N \N 59187 C.manzinellensis Coccoloba Coccoloba manzinellensis \N \N \N \N \N 59188 A.bellum Androcymbium Androcymbium bellum \N \N \N \N \N 59189 O.cassinioides Ozothamnus Ozothamnus cassinioides \N \N \N \N \N 59190 T.beguinii Turbinicarpus Turbinicarpus beguinii \N \N \N \N \N 59191 E.diffusum Epidendrum Epidendrum diffusum \N \N \N \N \N 59192 \N genus Demosthenesia \N \N \N \N \N 59193 A.editorum Achnatherum Achnatherum editorum \N \N \N \N \N 59194 P.2313 Pachyphyllum Pachyphyllum sp. Whitten 2313 \N \N \N \N \N 59195 P.manicata Passiflora Passiflora manicata \N \N \N \N \N 59196 M.porosa Myrsine Myrsine porosa \N \N \N \N \N 59197 R.globosa Raspalia Raspalia globosa \N \N \N \N \N 59198 \N genus Sacleuxia \N \N \N \N \N 59199 H.sphenandra Hibbertia Hibbertia sphenandra \N \N \N \N \N 59200 I.frutescens Indigofera Indigofera frutescens \N \N \N \N \N 59201 H.macrantha Hemigenia Hemigenia macrantha \N \N \N \N \N 74726 G.rossii Geum Geum rossii \N \N \N \N \N 59202 Z.A Zannichellia Zannichellia sp. haplotype A \N \N \N \N \N 59203 C.candolleana Cousinia Cousinia candolleana \N \N \N \N \N 59204 M.argillosa Mentzelia Mentzelia argillosa \N \N \N \N \N 59205 S.lloydii Stenocactus Stenocactus lloydii \N \N \N \N \N 59206 C.sphaeroidalis Chaetanthera Chaetanthera sphaeroidalis \N \N \N \N \N 59207 C.tabascensis Croton Croton tabascensis \N \N \N \N \N 59208 B.FS1232 Bulbophyllum Bulbophyllum sp. FS1232 \N \N \N \N \N 59209 C.apurensis Conyza Conyza apurensis \N \N \N \N \N 59210 W.1787 Wurmbea Wurmbea sp. van Leuwen 1787 \N \N \N \N \N 59211 C.61ku231 Cucumis Cucumis sp. 61ku231 \N \N \N \N \N 59212 \N genus Echinophora \N \N \N \N \N 59213 \N subspecies Arceuthobium globosum subsp. grandicaule \N \N \N \N \N 59214 L.schiedeana Laennecia Laennecia schiedeana \N \N \N \N \N 59215 W.trichosperma Weinmannia Weinmannia trichosperma \N \N \N \N \N 59216 S.reniforme Sedum Sedum reniforme \N \N \N \N \N 59217 O.venamensis Orthaea Orthaea venamensis \N \N \N \N \N 59218 P.sodiroi Peperomia Peperomia sodiroi \N \N \N \N \N 59219 F.SH-2010 Flagellaria Flagellaria sp. SH-2010 \N \N \N \N \N 59220 R.parviuscula Rosa Rosa parviuscula \N \N \N \N \N 59221 A.secundiramea Anthemis Anthemis secundiramea \N \N \N \N \N 59222 A.italicum Arum Arum italicum \N \N \N \N \N 59223 H.spicatum Haemodorum Haemodorum spicatum \N \N \N \N \N 59224 \N genus Galopina \N \N \N \N \N 59225 E.zoexylocarya Eidothea Eidothea zoexylocarya \N \N \N \N \N 59226 O.66 Oryzopsis Oryzopsis sp. Hodkinson 66 \N \N \N \N \N 59227 O.enneandra Orophea Orophea enneandra \N \N \N \N \N 59228 P.ellipticum Paspalum Paspalum ellipticum \N \N \N \N \N 59229 \N family Sarcobataceae \N \N \N \N \N 59230 \N genus Metalasia \N \N \N \N \N 59231 H.barbata Hypochaeris Hypochaeris barbata \N \N \N \N \N 59232 S.bidentata Strumaria Strumaria bidentata \N \N \N \N \N 59233 K.leachiana Kalmiopsis Kalmiopsis leachiana \N \N \N \N \N 59234 \N genus Dayaoshania \N \N \N \N \N 59235 E.kotschyi Echiochilon Echiochilon kotschyi \N \N \N \N \N 59236 A.oxyloba Achillea Achillea oxyloba \N \N \N \N \N 59237 I.digitata Indigofera Indigofera digitata \N \N \N \N \N 59238 P.kawasimae Primula Primula kawasimae \N \N \N \N \N 59239 E.salisburgensis Euphrasia Euphrasia salisburgensis \N \N \N \N \N 59240 A.cryptantha Arnhemia Arnhemia cryptantha \N \N \N \N \N 59241 G.panthaica Gentiana Gentiana panthaica \N \N \N \N \N 59242 D.dixanthum Dendrobium Dendrobium dixanthum \N \N \N \N \N 59243 F.crispatifolium Fagopyrum Fagopyrum crispatifolium \N \N \N \N \N 59244 L.uda Lachnagrostis Lachnagrostis uda \N \N \N \N \N 59245 T.neriifolia Thevetia Thevetia neriifolia \N \N \N \N \N 59246 V.ensiformis Vriesea Vriesea ensiformis \N \N \N \N \N 59247 T.meifolius Thecocarpus Thecocarpus meifolius \N \N \N \N \N 59248 P.putlaensis Peperomia Peperomia putlaensis \N \N \N \N \N 59249 C.sanguinea Crataegus Crataegus sanguinea \N \N \N \N \N 59250 A.xerophyllum Astroloma Astroloma xerophyllum \N \N \N \N \N 59251 \N genus Astroloma \N \N \N \N \N 59252 T.cristatum Tetraglochin Tetraglochin cristatum \N \N \N \N \N 59253 M.3160 Maxillaria Maxillaria cf. nubigena Whitten 3160 \N \N \N \N \N 59254 D.oleaster Denhamia Denhamia oleaster \N \N \N \N \N 59255 P.s.n. Piper Piper cf. obliquum Dominguez s.n. \N \N \N \N \N 59256 P.viridistigma Piptospatha Piptospatha viridistigma \N \N \N \N \N 59257 P.pallida Pholidota Pholidota pallida \N \N \N \N \N 59258 C.triverticillata Codia Codia triverticillata \N \N \N \N \N 59259 \N genus Cyclocarya \N \N \N \N \N 59260 C.cribrosa Callitriche Callitriche cribrosa \N \N \N \N \N 59261 S.lucorum Synotis Synotis lucorum \N \N \N \N \N 59262 S.candicans Salvia Salvia candicans \N \N \N \N \N 59263 D.oblongifolia Deinbollia Deinbollia oblongifolia \N \N \N \N \N 59264 P.phyllanthoides Polycardia Polycardia phyllanthoides \N \N \N \N \N 59265 G.amplexifolia Gochnatia Gochnatia amplexifolia \N \N \N \N \N 59266 \N genus Helanthium \N \N \N \N \N 59267 M.curtifolia Muhlenbergia Muhlenbergia curtifolia \N \N \N \N \N 59268 \N subspecies Galium andrewsii subsp. andrewsii \N \N \N \N \N 59269 I.cappadocica Isatis Isatis cappadocica \N \N \N \N \N 59270 A.pyrenaicum Allium Allium pyrenaicum \N \N \N \N \N 59271 B.boehmii Brachystegia Brachystegia boehmii \N \N \N \N \N 59272 A.linifolium Alyssum Alyssum linifolium \N \N \N \N \N 59273 L.furcatistellata Lycianthes Lycianthes furcatistellata \N \N \N \N \N 59274 H.speciosum Hypocalymma Hypocalymma speciosum \N \N \N \N \N 59275 A.tabuliforme Aeonium Aeonium tabuliforme \N \N \N \N \N 59276 C.densiflora Cistanthe Cistanthe densiflora \N \N \N \N \N 59277 M.cestrifolia Monnina Monnina cestrifolia \N \N \N \N \N 59278 S.recurva Swartzia Swartzia recurva \N \N \N \N \N 59279 T.digitatum Typhonium Typhonium digitatum \N \N \N \N \N 59280 A.nigricans Aquilegia Aquilegia nigricans \N \N \N \N \N 59281 \N no rank unclassified Coffea \N \N \N \N \N 59282 W.dolichantha Wikstroemia Wikstroemia dolichantha \N \N \N \N \N 59283 S.oxyphylla Schefflera Schefflera oxyphylla \N \N \N \N \N 59284 V.chunganensis Vitis Vitis chunganensis \N \N \N \N \N 59285 P.ruderale Porophyllum Porophyllum ruderale \N \N \N \N \N 59286 H.graveolens Helichrysum Helichrysum graveolens \N \N \N \N \N 59287 A.maritimus Asparagus Asparagus maritimus \N \N \N \N \N 59288 A.chinensis Altingia Altingia chinensis \N \N \N \N \N 59289 L.phyllanthoides Leptopus Leptopus phyllanthoides \N \N \N \N \N 59290 P.farinosa Primula Primula farinosa birds-eye primrose \N \N \N \N 59291 M.sichuanensis Menstruocalamus Menstruocalamus sichuanensis \N \N \N \N \N 59292 S.triqueter Schoenoplectus Schoenoplectus triqueter \N \N \N \N \N 59293 S.propinqua Schisandra Schisandra propinqua \N \N \N \N \N 59294 C.pisoniiflorum Combretum Combretum pisoniiflorum \N \N \N \N \N 59295 \N genus Greenmaniella \N \N \N \N \N 59296 S.mertensiana Saxifraga Saxifraga mertensiana \N \N \N \N \N 59297 \N tribe Erythrospermeae \N \N \N \N \N 59298 S.tomentosa Sophora Sophora tomentosa \N \N \N \N \N 59299 C.douglasii Chaenactis Chaenactis douglasii \N \N \N \N \N 59300 S.makakana Stelechantha Stelechantha makakana \N \N \N \N \N 59301 F.extremiorientalis Festuca Festuca extremiorientalis \N \N \N \N \N 59302 K.JT-2010 Kaempferia Kaempferia sp. nov. 1 JT-2010 \N \N \N \N \N 59303 A.sample environmental samples Taxonomy:404793 Apiaceae environmental sample \N \N \N \N \N 59304 \N varietas Acer cappadocicum var. brevialatum \N \N \N \N \N 59305 B.SFB-2011 Berberidopsis Berberidopsis sp. SFB-2011 \N \N \N \N \N 59306 D.carpetanum Doronicum Doronicum carpetanum \N \N \N \N \N 59307 P.curvifolia Pentaschistis Pentameris curvifolia \N \N \N \N \N 59308 G.quadrifida Gunniopsis Gunniopsis quadrifida \N \N \N \N \N 59309 G.major Glossodia Glossodia major \N \N \N \N \N 59310 \N genus Needhamiella \N \N \N \N \N 59311 L.leucantha Lycaste Lycaste leucantha \N \N \N \N \N 59312 M.pottebergensis Muraltia Muraltia pottebergensis \N \N \N \N \N 59313 H.solaniflora Hoya Hoya solaniflora \N \N \N \N \N 59314 E.polyacantha Euphorbia Euphorbia polyacantha \N \N \N \N \N 59315 C.chouxii Cynanchum Cynanchum chouxii \N \N \N \N \N 59316 \N genus Micranthemum \N \N \N \N \N 59317 C.temple Citrus Citrus reticulata x Citrus temple \N \N \N \N \N 59318 \N genus Cyphocardamum \N \N \N \N \N 59319 H.rydbergii Horkelia Horkelia rydbergii \N \N \N \N \N 59320 L.tominensis Lupinus Lupinus tominensis \N \N \N \N \N 59321 S.cristata Siparuna Siparuna cristata \N \N \N \N \N 59322 M.salicifolia Maesa Maesa salicifolia \N \N \N \N \N 59323 C.afoliata Clematis Clematis afoliata \N \N \N \N \N 59324 T.erythrocarpum Toechima Toechima erythrocarpum \N \N \N \N \N 59325 P.longiflora Pedicularis Pedicularis longiflora \N \N \N \N \N 59326 \N genus Theropogon \N \N \N \N \N 59327 E.paralias Euphorbia Euphorbia paralias \N \N \N \N \N 59328 \N subspecies Pimelea latifolia subsp. elliptifolia \N \N \N \N \N 59329 \N genus Cyrtopodium \N \N \N \N \N 59330 \N genus Adenochlaena \N \N \N \N \N 59331 \N varietas Cymopterus panamintensis var. panamintensis \N \N \N \N \N 59332 C.alba Cornus Cornus alba \N \N \N \N \N 59333 \N subspecies Sisyrinchium macrocarpum subsp. macrocarpum \N \N \N \N \N 59334 C.zeyheriana Cephalaria Cephalaria zeyheriana \N \N \N \N \N 59335 W.31094 Wachendorfia Wachendorfia aff. multiflora 31094 \N \N \N \N \N 59336 C.glauca Cyrtostachys Cyrtostachys glauca \N \N \N \N \N 59337 P.trichophylla Poa Poa trichophylla \N \N \N \N \N 59338 L.argentea Lomelosia Lomelosia argentea \N \N \N \N \N 59339 K.grandiglumis Kengyilia Kengyilia grandiglumis \N \N \N \N \N 59340 H.17136 Hoya Hoya cf. incrassata Chase 17136 \N \N \N \N \N 59341 \N genus Feldstonia \N \N \N \N \N 59342 \N genus Moorochloa \N \N \N \N \N 59343 A.filifolius Arthropogon Arthropogon filifolius \N \N \N \N \N 59344 K.cauliflora Klarobelia Klarobelia cauliflora \N \N \N \N \N 59345 P.indira Pultenaea Pultenaea indira \N \N \N \N \N 59346 E.saxatile Epidendrum Epidendrum saxatile \N \N \N \N \N 59347 P.brunhesii Pancheria Pancheria brunhesii \N \N \N \N \N 59348 \N genus Napoleona \N \N \N \N \N 59349 B.mundii Brachysiphon Brachysiphon mundii \N \N \N \N \N 59350 D.houtteana Dracula Dracula houtteana \N \N \N \N \N 59351 E.mutata Eleocharis Eleocharis mutata \N \N \N \N \N 59352 \N genus Hulsea \N \N \N \N \N 59353 R.fuscosetulosa Rytigynia Rytigynia fuscosetulosa \N \N \N \N \N 59354 A.crassum Acer Acer crassum \N \N \N \N \N 59355 S.angustissimum Sisyrinchium Sisyrinchium angustissimum \N \N \N \N \N 59356 B.gastoniana Bactris Bactris gastoniana \N \N \N \N \N 59357 L.siceraria Lagenaria Lagenaria siceraria bottle gourd,calabash,white-flowered gourd \N \N \N \N 59358 \N subfamily Caesalpinioideae \N \N \N \N \N 59359 C.procumbens Cologania Cologania procumbens \N \N \N \N \N 59360 C.laxiflora Calandrinia Calandrinia laxiflora \N \N \N \N \N 59361 E.angustifolia Echinacea Echinacea angustifolia Kansas snakeroot,black sampson \N \N \N \N 59362 H.stellatum Hymenidium Hymenidium stellatum \N \N \N \N \N 59363 P.circinata Petrophile Petrophile circinata \N \N \N \N \N 59364 R.ampliatum Rossioglossum Rossioglossum ampliatum \N \N \N \N \N 59365 A.goldieana Aristolochia Aristolochia goldieana \N \N \N \N \N 59366 C.paucifolius Calycopeplus Calycopeplus paucifolius \N \N \N \N \N 59367 C.PS-2010 Cymbidium Cymbidium sp. PS-2010 \N \N \N \N \N 59368 E.magdalenae Euphorbia Euphorbia magdalenae \N \N \N \N \N 59369 S.mollis Symphoricarpos Symphoricarpos mollis trailing snowberry,tripvine \N \N \N \N 59370 O.cynarocephalum Onopordum Onopordum cynarocephalum \N \N \N \N \N 59371 N.macrosperma Nonea Nonea macrosperma \N \N \N \N \N 59372 G.ugamica Gagea Gagea ugamica \N \N \N \N \N 59373 \N genus Brahea \N \N \N \N \N 59374 \N varietas Achillea millefolium var. millefolium \N \N \N \N \N 59375 \N genus Heliomeris \N \N \N \N \N 59376 I.scapigera Idahoa Idahoa scapigera \N \N \N \N \N 59377 C.figarei Cucumis Cucumis figarei \N \N \N \N \N 59378 \N varietas Kunzea ericoides var. microflora \N \N \N \N \N 59379 C.volkensii Cornus Cornus volkensii \N \N \N \N \N 59380 \N genus Warrea \N \N \N \N \N 59381 P.mollis Piscidia Piscidia mollis \N \N \N \N \N 59382 V.kelungensis Vitis Vitis kelungensis \N \N \N \N \N 59383 \N varietas Senna dariensis var. hypoglauca \N \N \N \N \N 59384 P.tetraphylla Pilea Pilea tetraphylla \N \N \N \N \N 59385 G.eglandulosum Grimmeodendron Grimmeodendron eglandulosum \N \N \N \N \N 59386 \N genus Eumorphia \N \N \N \N \N 59387 O.floribunda Oxytropis Oxytropis floribunda \N \N \N \N \N 59388 E.nuratavicus Echinops Echinops nuratavicus \N \N \N \N \N 59389 L.SH-2010 Laurus Laurus sp. SH-2010 \N \N \N \N \N 59390 P.pycnoloba Primula Primula pycnoloba \N \N \N \N \N 59391 H.schottii Holandrea Holandrea schottii \N \N \N \N \N 59392 E.remyi Euphorbia Euphorbia remyi \N \N \N \N \N 59393 M.tsiramiramy Micronychia Micronychia tsiramiramy \N \N \N \N \N 59394 L.gibba Lemna Lemna gibba swollen duckweed \N \N \N \N 59395 A.inermis Aloe Aloe inermis \N \N \N \N \N 59396 M.acuminata Malaxis Malaxis acuminata \N \N \N \N \N 59397 E.nupeensis Eleocharis Eleocharis nupeensis \N \N \N \N \N 59398 \N subspecies Heteropappus hispidus subsp. leptocladus \N \N \N \N \N 59399 D.scalariformis Diospyros Diospyros scalariformis \N \N \N \N \N 59400 C.hypoglauca Corylopsis Corylopsis hypoglauca \N \N \N \N \N 59401 P.castellanosii Prosopis Prosopis castellanosii \N \N \N \N \N 59402 C.tenuifolia Coccoloba Coccoloba tenuifolia \N \N \N \N \N 59403 \N genus Chamaebatia \N \N \N \N \N 59404 M.caxamarcensis Muhlenbergia Muhlenbergia caxamarcensis \N \N \N \N \N 59405 L.helianthifolia Lagascea Lagascea helianthifolia \N \N \N \N \N 59406 S.2a Salicornia Salicornia aff. perennans Wucherer 2a \N \N \N \N \N 59407 C.americanus Cenchrus Cenchrus americanus bulrush millet,cattail millet,pearl millet \N \N \N \N 59408 O.stolonifera Ocellochloa Ocellochloa stolonifera \N \N \N \N \N 59409 A.carolinensis Alpinia Alpinia carolinensis \N \N \N \N \N 59410 D.insignis Dipterocarpus Dipterocarpus insignis \N \N \N \N \N 59411 B.5916 Besleria Besleria sp. J.L. Clark 5916 \N \N \N \N \N 59412 S.sosnowskyi Scorzonera Scorzonera sosnowskyi \N \N \N \N \N 59413 P.insectifera Pelatantheria Pelatantheria insectifera \N \N \N \N \N 59414 F.lycioides Fuchsia Fuchsia lycioides \N \N \N \N \N 59415 C.pluriflora Carex Carex pluriflora \N \N \N \N \N 59416 W.frutescens Wisteria Wisteria frutescens \N \N \N \N \N 59417 S.regelii Sympegma Sympegma regelii \N \N \N \N \N 59418 L.burkei Lasthenia Lasthenia burkei \N \N \N \N \N 59419 H.acerba Hovenia Hovenia acerba \N \N \N \N \N 59420 L.NSW415501 Lissanthe Lissanthe sp. NSW415501 \N \N \N \N \N 59421 R.calandrinioides Ranunculus Ranunculus calandrinioides \N \N \N \N \N 59422 \N genus Calepina \N \N \N \N \N 59423 J.cinerea Juglans Juglans cinerea \N \N \N \N \N 59424 S.dale Strychnos Strychnos dale \N \N \N \N \N 59425 N.coriacea Nemcia Nemcia coriacea \N \N \N \N \N 59426 C.devonianum Cymbidium Cymbidium devonianum \N \N \N \N \N 59427 L.imbricata Lavoisiera Lavoisiera imbricata \N \N \N \N \N 59428 Q.2006207 Quercus Quercus sp. Denk & Grimm 2006207 \N \N \N \N \N 59429 L.hirta Lachemilla Lachemilla hirta \N \N \N \N \N 59430 P.notatum Panicum Panicum notatum \N \N \N \N \N 59431 H.macbridei Hippeastrum Hippeastrum macbridei \N \N \N \N \N 59432 R.djilgense Richteria Richteria djilgense \N \N \N \N \N 59433 C.floribunda Calycopteris Calycopteris floribunda \N \N \N \N \N 59434 A.moschatum Allium Allium moschatum \N \N \N \N \N 59435 S.glauca Sambucus Sambucus glauca \N \N \N \N \N 59436 I.prolifera Isolepis Isolepis prolifera \N \N \N \N \N 59437 S.venosa Selago Selago venosa \N \N \N \N \N 59438 C.paniculatum Combretum Combretum paniculatum \N \N \N \N \N 59439 A.fruticosum Anarrhinum Anarrhinum fruticosum \N \N \N \N \N 59440 G.triphylla Glycyrrhiza Glycyrrhiza triphylla \N \N \N \N \N 59441 \N subfamily Eschscholzioideae \N \N \N \N \N 59442 \N no rank Saccharum hybrid cultivar CoLk 8102 \N \N \N \N \N 59443 O.thoroldii Orinus Orinus thoroldii \N \N \N \N \N 59444 D.PT-2007 Dracula Dracula sp. PT-2007 \N \N \N \N \N 59445 S.mertensii Stephostachys Stephostachys mertensii \N \N \N \N \N 59446 \N genus Pterocarya \N \N \N \N \N 59447 O.blandum Oncidium Oncidium blandum \N \N \N \N \N 59448 K.tentaculata Kailarsenia Kailarsenia tentaculata \N \N \N \N \N 59449 M.T1578 Mammillaria Mammillaria aff. sheldonii T1578 \N \N \N \N \N 59450 A.letestuanum Aframomum Aframomum letestuanum \N \N \N \N \N 59451 M.cunninghamii Mentha Mentha cunninghamii \N \N \N \N \N 59452 \N subspecies Festuca pallens subsp. pallens \N \N \N \N \N 59453 \N genus Sericodes \N \N \N \N \N 59454 \N genus Wikstroemia \N \N \N \N \N 59455 H.myosotifolium Heliotropium Heliotropium myosotifolium \N \N \N \N \N 59456 L.costalis Litsea Litsea costalis \N \N \N \N \N 59457 A.truncata Ateleia Ateleia truncata \N \N \N \N \N 59458 M.oxylobioides Mirbelia Mirbelia oxylobioides \N \N \N \N \N 59459 \N subspecies Anthyllis vulneraria subsp. maura \N \N \N \N \N 59460 P.curtispicum Piper Piper curtispicum \N \N \N \N \N 59461 L.daphnoides Lysimachia Lysimachia daphnoides \N \N \N \N \N 59462 \N genus Globimetula \N \N \N \N \N 59463 V.bromoides Vulpia Vulpia bromoides squirreltail fescue \N \N \N \N 59464 D.cretacea Diplotaxis Diplotaxis cretacea \N \N \N \N \N 59465 R.ischnopoda Ruellia Ruellia ischnopoda \N \N \N \N \N 59466 \N varietas Urceodiscus belensis var. belensis \N \N \N \N \N 59467 A.holostylis Aristolochia Aristolochia holostylis \N \N \N \N \N 59468 L.columbiana Lewisia Lewisia columbiana \N \N \N \N \N 59469 B.hamiltoniana Basiphyllaea Basiphyllaea hamiltoniana \N \N \N \N \N 59470 \N genus Vanilla \N \N \N \N \N 59471 I.macrantha Ichtyoselmis Ichtyoselmis macrantha \N \N \N \N \N 59472 \N genus Laureliopsis \N \N \N \N \N 59473 G.marifolia Glechon Glechon marifolia \N \N \N \N \N 59474 \N subspecies Navarretia leucocephala subsp. plieantha \N \N \N \N \N 59475 E.linifolius Euryops Euryops linifolius \N \N \N \N \N 59476 O.coccinea Ourisia Ourisia coccinea \N \N \N \N \N 59477 D.bulligera Diplolepis Diplolepis bulligera \N \N \N \N \N 59478 A.mauritiana Arnottia Arnottia mauritiana \N \N \N \N \N 59479 A.YN2 Anoectochilus Anoectochilus sp. YN2 \N \N \N \N \N 59480 S.micradenia Stevia Stevia micradenia \N \N \N \N \N 59481 D.carinatum Dichocarpum Dichocarpum carinatum \N \N \N \N \N 59482 C.fuscus Calochortus Calochortus fuscus \N \N \N \N \N 59483 A.sagraei Angadenia Angadenia sagraei \N \N \N \N \N 59484 S.secundifolia Sagittaria Sagittaria secundifolia \N \N \N \N \N 59485 A.maruyamae Asarum Asarum maruyamae \N \N \N \N \N 59486 C.91331 Cyrtochilum Cyrtochilum sp. Whitten 91331 \N \N \N \N \N 59487 C.hildebrandtioides Cladostigma Cladostigma hildebrandtioides \N \N \N \N \N 59488 H.sanguinea Hyobanche Hyobanche sanguinea \N \N \N \N \N 59489 \N genus Metteniusa \N \N \N \N \N 59490 L.sokotrana Lindenbergia Lindenbergia sokotrana \N \N \N \N \N 59491 S.silvaticus Streptocarpus Streptocarpus silvaticus \N \N \N \N \N 59492 C.baileyi Carex Carex baileyi \N \N \N \N \N 59493 P.arctoeuropaea Pedicularis Pedicularis arctoeuropaea \N \N \N \N \N 59494 O.minutissima Ononis Ononis minutissima \N \N \N \N \N 59495 A.foliolosus Adenocarpus Adenocarpus foliolosus \N \N \N \N \N 59496 \N genus Aubletiana \N \N \N \N \N 59497 \N genus Belemia \N \N \N \N \N 59498 P.austrosinensis Plagiostachys Plagiostachys austrosinensis \N \N \N \N \N 59499 C.calophylla Cuphea Cuphea calophylla \N \N \N \N \N 59500 C.cinerea Callerya Callerya cinerea \N \N \N \N \N 59501 P.albiflora Pleione Pleione albiflora \N \N \N \N \N 59502 \N genus Agathisanthemum \N \N \N \N \N 59503 A.czelghauricum Allium Allium czelghauricum \N \N \N \N \N 59504 \N genus Heinsia \N \N \N \N \N 59505 G.lanceolata Grindelia Grindelia lanceolata \N \N \N \N \N 59506 A.cartilaginomarginata Angelica Angelica cartilaginomarginata \N \N \N \N \N 59507 S.qinghaiensis Saussurea Saussurea qinghaiensis \N \N \N \N \N 59508 R.obovata Randia Randia obovata \N \N \N \N \N 59509 E.melinonii Endlicheria Endlicheria melinonii \N \N \N \N \N 59510 C.madagascariensis Chapeliera Chapeliera madagascariensis \N \N \N \N \N 59511 S.formosanus Styrax Styrax formosanus \N \N \N \N \N 59512 A.beesianum Allium Allium beesianum \N \N \N \N \N 59513 S.endresii Stelis Stelis endresii \N \N \N \N \N 59514 S.porteri Symphyotrichum Symphyotrichum porteri \N \N \N \N \N 59515 G.piloselloides Gerbera Gerbera piloselloides \N \N \N \N \N 59516 P.armata Poulsenia Poulsenia armata \N \N \N \N \N 59517 E.arenacea Eucalyptus Eucalyptus arenacea \N \N \N \N \N 59518 S.darpirensis Salix Salix darpirensis \N \N \N \N \N 59519 H.vaniotii Hypericum Hypericum vaniotii \N \N \N \N \N 59520 G.pendula Goldbachia Goldbachia pendula \N \N \N \N \N 59521 E.eurycephalum Eryngium Eryngium eurycephalum \N \N \N \N \N 59522 \N genus Azorella \N \N \N \N \N 59523 L.appressus Leucopogon Leucopogon appressus \N \N \N \N \N 59524 G.MHL-2012 Gentiana Gentiana sp. MHL-2012 \N \N \N \N \N 59525 R.lycioides Royena Royena lycioides \N \N \N \N \N 59526 A.bicolor Adesmia Adesmia bicolor \N \N \N \N \N 59527 \N genus Brenierea \N \N \N \N \N 59528 B.ewartiana Bothriochloa Bothriochloa ewartiana \N \N \N \N \N 59529 A.rhodocentra Anthemis Anthemis rhodocentra \N \N \N \N \N 59530 H.korrorensis Hedyotis Hedyotis korrorensis \N \N \N \N \N 59531 M.boninensis Morus Morus boninensis \N \N \N \N \N 59532 E.cicutarium Erodium Erodium cicutarium heron's-bill,red-stem filaree \N \N \N \N 59533 N.cambodiana Neolitsea Neolitsea cambodiana \N \N \N \N \N 59534 H.garrettii Hypericum Hypericum garrettii \N \N \N \N \N 59535 F.subuliflora Festuca Festuca subuliflora \N \N \N \N \N 59536 T.lichtensteinii Trigonocapnos Trigonocapnos lichtensteinii \N \N \N \N \N 59537 M.plumosa Miconia Miconia plumosa \N \N \N \N \N 59538 S.magnonoda Sasa Sasa magnonoda \N \N \N \N \N 59539 M.dahuricum Maianthemum Maianthemum dahuricum \N \N \N \N \N 59540 L.salviifolia Lippia Lippia salviifolia \N \N \N \N \N 59541 O.santolinae Orobanche Orobanche santolinae \N \N \N \N \N 59542 C.lavandulifolium Chrysanthemum Chrysanthemum lavandulifolium \N \N \N \N \N 59543 G.lanigera Gaultheria Gaultheria lanigera \N \N \N \N \N 59544 C.hitchcockiana Carex Carex hitchcockiana \N \N \N \N \N 59545 R.utilis Rhamnus Rhamnus utilis \N \N \N \N \N 59546 C.3701 Clusia Clusia sp. JA 3701 \N \N \N \N \N 59547 C.crassifolia Clematis Clematis crassifolia \N \N \N \N \N 59548 \N genus Discocarpus \N \N \N \N \N 59549 C.pinae Centaurea Centaurea pinae \N \N \N \N \N 59550 C.avellana Corylus Corylus avellana European hazelnut \N \N \N \N 59551 \N subspecies Kniphofia ensifolia subsp. ensifolia \N \N \N \N \N 59552 \N genus Philactis \N \N \N \N \N 59553 P.verticillata Primula Primula verticillata \N \N \N \N \N 59554 E.glisicii Edraianthus Edraianthus glisicii \N \N \N \N \N 59555 \N subspecies Cistus ladanifer subsp. sulcatus \N \N \N \N \N 59556 C.muscosa Cranichis Cranichis muscosa \N \N \N \N \N 59557 C.axillare Cinnamodendron Cinnamodendron axillare \N \N \N \N \N 59558 \N genus Littledalea \N \N \N \N \N 59559 P.spicata Pimelea Pimelea spicata \N \N \N \N \N 59560 K.pulchella Kunzea Kunzea pulchella \N \N \N \N \N 59561 C.schindleri Cornus Cornus schindleri \N \N \N \N \N 59562 L.6496 Lytocaryum Lytocaryum sp. Lorenzi 6496 \N \N \N \N \N 59563 C.zedoaroides Curcuma Curcuma zedoaroides \N \N \N \N \N 59564 S.sample environmental samples Taxonomy:945784 Saxifraga environmental sample \N \N \N \N \N 59565 Q.rugosa Quercus Quercus rugosa \N \N \N \N \N 59566 S.linearis Silene Silene linearis \N \N \N \N \N 59567 E.penduliflora Emmenanthe Emmenanthe penduliflora \N \N \N \N \N 59568 C.englerii Combretum Combretum englerii \N \N \N \N \N 59569 C.brachypterum Cardenasiodendron Cardenasiodendron brachypterum \N \N \N \N \N 59570 \N varietas Acacia pyrifolia var. morrisonii \N \N \N \N \N 59571 \N genus Cabomba \N \N \N \N \N 59572 \N genus Geomitra \N \N \N \N \N 59573 \N subspecies Cucumis rumphianus subsp. tomentosus \N \N \N \N \N 59574 P.sejuncta Poa Poa sejuncta \N \N \N \N \N 59575 C.sanguineus Calothamnus Calothamnus sanguineus \N \N \N \N \N 59576 D.oxylobum Dendrochilum Dendrochilum oxylobum \N \N \N \N \N 59577 M.effusum Milium Milium effusum \N \N \N \N \N 59578 A.gigantea Aralia Aralia gigantea \N \N \N \N \N 59579 P.multiflora Phinaea Phinaea multiflora \N \N \N \N \N 59580 H.pubicalyx Hoya Hoya pubicalyx \N \N \N \N \N 59581 D.goaense Dipcadi Dipcadi goaense \N \N \N \N \N 59582 \N genus Jaimehintonia \N \N \N \N \N 59583 W.periplocifolia Wissadula Wissadula periplocifolia \N \N \N \N \N 59584 \N genus Rohrbachia \N \N \N \N \N 59585 B.gracillima Boerhavia Boerhavia gracillima \N \N \N \N \N 59586 A.rupestris Anthyllis Anthyllis rupestris \N \N \N \N \N 59587 L.blumeanus Lithocarpus Lithocarpus blumeanus \N \N \N \N \N 59588 M.tayloriorum Mammillaria Mammillaria tayloriorum \N \N \N \N \N 59589 P.costivenia Psychotria Psychotria costivenia \N \N \N \N \N 59590 \N subspecies Paeonia decomposita subsp. decomposita \N \N \N \N \N 59591 S.umbellatum Schistostephium Schistostephium umbellatum \N \N \N \N \N 59592 R.reptabundus Ranunculus Ranunculus reptabundus \N \N \N \N \N 59593 D.platycrater Dracula Dracula platycrater \N \N \N \N \N 59594 \N genus Aponogeton \N \N \N \N \N 59595 P.volubilis Parakeelya Parakeelya volubilis \N \N \N \N \N 59596 C.hemsleyi Cornus Cornus hemsleyi \N \N \N \N \N 59597 \N genus Tenicroa \N \N \N \N \N 59598 P.kunstleri Pomatocalpa Pomatocalpa kunstleri \N \N \N \N \N 59599 D.pterosperma Draba Draba pterosperma wingedseed draba \N \N \N \N 59600 G.acrocaroli Gastrolobium Gastrolobium acrocaroli \N \N \N \N \N 59601 R.novus Ranunculus Ranunculus novus \N \N \N \N \N 59602 A.fruticulosa Archanthemis Archanthemis fruticulosa \N \N \N \N \N 59603 C.thorncroftii Cyrtanthus Cyrtanthus thorncroftii \N \N \N \N \N 59604 O.NR-2009 Othocallis Othocallis sp. NR-2009 \N \N \N \N \N 59605 C.purpurea Commelina Commelina purpurea \N \N \N \N \N 59606 C.arabica Caralluma Caralluma arabica \N \N \N \N \N 59607 R.laouense Rhodanthemum Rhodanthemum laouense \N \N \N \N \N 59608 K.ramosissima Kohautia Kohautia ramosissima \N \N \N \N \N 59609 S.multinervia Silene Silene multinervia \N \N \N \N \N 59610 \N genus Prockia \N \N \N \N \N 59611 A.4 Alchemilla Alchemilla sp. Hiiesalu 4 \N \N \N \N \N 59612 C.watsoniana Corymbia Corymbia watsoniana \N \N \N \N \N 59613 R.liliiflorum Rhododendron Rhododendron liliiflorum \N \N \N \N \N 59614 T.disseminatum Taraxacum Taraxacum disseminatum \N \N \N \N \N 59615 L.brevipes Lycium Lycium brevipes box thorn \N \N \N \N 59616 C.edulis Cyrtocarpa Cyrtocarpa edulis \N \N \N \N \N 59617 A.lobelioides Asyneuma Asyneuma lobelioides \N \N \N \N \N 59618 \N varietas Cicuta maculata var. victorinii \N \N \N \N \N 59619 N.616 Nematostylis Nematostylis sp. Razafimandimbison & Ravelonarivo 616 \N \N \N \N \N 59620 L.alpestris Laplacea Laplacea alpestris \N \N \N \N \N 59621 T.nuttallii Tiquilia Tiquilia nuttallii \N \N \N \N \N 59622 \N subspecies Medicago sativa subsp. x gaetula \N \N \N \N \N 59623 A.vaginalis Alysicarpus Alysicarpus vaginalis \N \N \N \N \N 59624 M.virgata Meiogyne Meiogyne virgata \N \N \N \N \N 59625 \N subspecies Catapodium rigidum subsp. rigidum \N \N \N \N \N 59626 T.margaritarium Taraxacum Taraxacum margaritarium \N \N \N \N \N 59627 S.sericea Salix Salix sericea silky willow \N \N \N \N 59628 \N genus Pseudagrostistachys \N \N \N \N \N 59629 C.7704 Carex Carex cf. flava Marin et al. 7704 \N \N \N \N \N 59630 H.patens Hamelia Hamelia patens \N \N \N \N \N 59631 \N family Octoknemaceae \N \N \N \N \N 59632 A.monantha Azorella Azorella monantha \N \N \N \N \N 59633 O.7763 Orobanche Orobanche cf. raddeana HST 7763 \N \N \N \N \N 59634 E.ensifer Euchiton Euchiton ensifer \N \N \N \N \N 59635 P.tenax Phormium Phormium tenax \N \N \N \N \N 59636 C.yunnanensis Corylus Corylus yunnanensis \N \N \N \N \N 59637 P.schweinfurthii Pennisetum Pennisetum schweinfurthii \N \N \N \N \N 59638 A.neglectus Asparagus Asparagus neglectus \N \N \N \N \N 59639 \N genus Craterostigma \N \N \N \N \N 59640 \N tribe Knoxieae \N \N \N \N \N 59641 \N genus Pabstiella \N \N \N \N \N 59642 D.300-18 Dionysia Dionysia sp. Zschummel 300-18 \N \N \N \N \N 59643 S.asterantha Strychnos Strychnos asterantha \N \N \N \N \N 59644 C.onopordioides Cousinia Cousinia onopordioides \N \N \N \N \N 59645 \N subspecies Quercus robur subsp. imeretina \N \N \N \N \N 59646 R.mauiensis Remya Remya mauiensis \N \N \N \N \N 59647 H.glumaceum Helichrysum Helichrysum glumaceum \N \N \N \N \N 59648 P.primuliflora Pinguicula Pinguicula primuliflora southern butterwort \N \N \N \N 59649 L.papillosum Lithospermum Lithospermum papillosum \N \N \N \N \N 59650 R.tapetiforme Rhododendron Rhododendron tapetiforme \N \N \N \N \N 59651 T.hamiltoniana Tectona Tectona hamiltoniana \N \N \N \N \N 59652 \N varietas Bupleurum petiolulatum var. tenerum \N \N \N \N \N 59653 D.langeanus Dianthus Dianthus langeanus \N \N \N \N \N 59654 N.frutescens Nierembergia Nierembergia frutescens \N \N \N \N \N 59655 \N varietas Tofieldia yoshiiana var. yoshiiana \N \N \N \N \N 59656 S.frutescens Sinapidendron Sinapidendron frutescens \N \N \N \N \N 59657 S.JTM-2009c Speculantha Speculantha sp. JTM-2009c \N \N \N \N \N 59658 T.ambiguum Trifolium Trifolium ambiguum \N \N \N \N \N 59659 T.eizii Tillandsia Tillandsia eizii \N \N \N \N \N 59660 U.neglecta Utsetela Utsetela neglecta \N \N \N \N \N 59661 \N genus Corallorhiza \N \N \N \N \N 59662 S.campicola Strychnos Strychnos campicola \N \N \N \N \N 59663 R.officinalis Rosmarinus Rosmarinus officinalis rosemary \N \N \N \N 59664 \N genus Hachettea \N \N \N \N \N 59665 S.nervulosa Sonerila Sonerila nervulosa \N \N \N \N \N 59666 D.pinnata Descurainia Descurainia pinnata \N \N \N \N \N 59667 S.hederacea Saxifraga Saxifraga hederacea \N \N \N \N \N 59668 T.macranthum Thlaspi Thlaspi macranthum \N \N \N \N \N 59669 L.duciformis Ligularia Ligularia paradoxa x Ligularia duciformis \N \N \N \N \N 59670 T.lanceolata Tetrazygia Tetrazygia lanceolata \N \N \N \N \N 59671 T.elatum Talipariti Talipariti elatum \N \N \N \N \N 59672 V.testacea Vanda Vanda testacea \N \N \N \N \N 59673 D.pickeringii Draba Draba pickeringii \N \N \N \N \N 59674 C.giganteum Chenopodium Chenopodium giganteum \N \N \N \N \N 59675 C.floridana Chapmannia Chapmannia floridana \N \N \N \N \N 59676 H.capixaba Heteropterys Heteropterys capixaba \N \N \N \N \N 59677 L.rhynchopetalum Lobelia Lobelia rhynchopetalum \N \N \N \N \N 59678 P.collina Psychotria Psychotria collina \N \N \N \N \N 59679 B.longispiculata Bambusa Bambusa longispiculata \N \N \N \N \N 59680 T.officinale Taraxacum Taraxacum officinale dandelion \N \N \N \N 59681 P.aculeata Pisonia Pisonia aculeata \N \N \N \N \N 59682 M.pahangensis Magnolia Magnolia pahangensis \N \N \N \N \N 59683 I.purpureobractea Iris Iris purpureobractea \N \N \N \N \N 59684 N.lenta Nasa Nasa lenta \N \N \N \N \N 59685 P.friesii Potamogeton Potamogeton friesii \N \N \N \N \N 59687 S.DZL-2011 Smilax Smilax sp. DZL-2011 \N \N \N \N \N 59688 M.forsteronioides Malanea Malanea forsteronioides \N \N \N \N \N 59689 L.gracilis Lebeckia Lebeckia gracilis \N \N \N \N \N 59690 H.coccineus Hibiscus Hibiscus coccineus scarlet rosemallow \N \N \N \N 59691 A.rigida Arracacia Arracacia rigida \N \N \N \N \N 59692 \N genus Arachnitis \N \N \N \N \N 59693 S.decurrens Strobilanthes Strobilanthes decurrens \N \N \N \N \N 59694 \N subspecies Melilotus officinalis subsp. suaveolens \N \N \N \N \N 59695 E.madagascariensis Ephippiandra Ephippiandra madagascariensis \N \N \N \N \N 59696 O.biflorum Olsynium Olsynium biflorum \N \N \N \N \N 59697 \N subspecies Veronica bombycina subsp. bolkardaghensis \N \N \N \N \N 59698 L.elegans Liatris Liatris elegans \N \N \N \N \N 59699 A.5726 Androsace Androsace cf. lactiflora Staud 5726 \N \N \N \N \N 59700 C.bigelovii Coreopsis Coreopsis bigelovii \N \N \N \N \N 59701 T.muirii Thamnochortus Thamnochortus muirii \N \N \N \N \N 59702 \N family Rousseaceae \N \N \N \N \N 59703 P.modesta Palaua Palaua modesta \N \N \N \N \N 59704 A.wallichianum Achyrospermum Achyrospermum wallichianum \N \N \N \N \N 59705 T.secunda Tillandsia Tillandsia secunda \N \N \N \N \N 59706 \N genus Typhonodorum \N \N \N \N \N 59707 A.platyceras Argemone Argemone platyceras \N \N \N \N \N 59708 P.SH-2010 Pandiaka Pandiaka sp. SH-2010 \N \N \N \N \N 59709 P.fossicola Pouteria Pouteria fossicola \N \N \N \N \N 59710 H.GDA-2008 Hydnophytum Hydnophytum cf. moseleyanum GDA-2008 \N \N \N \N \N 59711 E.jonasiana Erica Erica jonasiana \N \N \N \N \N 59712 \N genus Rhodogeron \N \N \N \N \N 59713 L.iridollae Lilium Lilium iridollae \N \N \N \N \N 59714 P.harringtonii Penstemon Penstemon harringtonii \N \N \N \N \N 59715 A.macropelmatus Astragalus Astragalus macropelmatus \N \N \N \N \N 59716 N.sample environmental samples Taxonomy:531415 Nothofagus environmental sample \N \N \N \N \N 59717 A.denticulosa Acacia Acacia denticulosa \N \N \N \N \N 59718 A.diogoi Arachis Arachis diogoi \N \N \N \N \N 59719 \N genus Casimiroa \N \N \N \N \N 59720 S.cordifolius Senecio Senecio cordifolius \N \N \N \N \N 59721 M.flagellaris Myrcia Myrcia flagellaris \N \N \N \N \N 59722 T.millefolium Tanacetum Tanacetum millefolium \N \N \N \N \N 59723 S.uniplumis Stipagrostis Stipagrostis uniplumis \N \N \N \N \N 59724 L.gracilipes Lonicera Lonicera gracilipes \N \N \N \N \N 59725 I.1 Impatiens Impatiens sp. Ranaivojaona and Tsaratanana 1 \N \N \N \N \N 59726 M.viscidula Miconia Miconia viscidula \N \N \N \N \N 59727 Y.qiaojiaensis Yushania Yushania qiaojiaensis \N \N \N \N \N 59728 J.toninii Junellia Junellia toninii \N \N \N \N \N 59729 \N genus Alexa \N \N \N \N \N 59730 A.tibourbou Apeiba Apeiba tibourbou \N \N \N \N \N 59731 S.speciosa Sinningia Sinningia speciosa Brazilian gloxinia,florist's gloxinia \N \N \N \N 59732 L.acapulcense Lysiloma Lysiloma acapulcense \N \N \N \N \N 59733 A.clavifolia Astartea Astartea clavifolia \N \N \N \N \N 59734 F.emoryi Ferocactus Ferocactus emoryi \N \N \N \N \N 59735 L.jepsonii Leptosiphon Leptosiphon jepsonii \N \N \N \N \N 59736 R.stellata Rosa Rosa stellata desert rose \N \N \N \N 59737 L.sericea Leucosidea Leucosidea sericea \N \N \N \N \N 59738 O.longifolia Olgaea Olgaea longifolia \N \N \N \N \N 59739 Z.alleniana Zygostates Zygostates alleniana \N \N \N \N \N 59740 D.reflexa Dioclea Dioclea reflexa \N \N \N \N \N 59741 T.pubescens Thesium Thesium pubescens \N \N \N \N \N 59742 P.fragrans Pentanopsis Pentanopsis fragrans \N \N \N \N \N 59743 \N genus Lepironia \N \N \N \N \N 59744 P.retiglume Paspalidium Paspalidium retiglume \N \N \N \N \N 59745 C.balansae Cytisus Cytisus balansae \N \N \N \N \N 59746 F.badrakema Ferula Ferula badrakema \N \N \N \N \N 59747 T.laurifolia Thomandersia Thomandersia laurifolia \N \N \N \N \N 59749 M.crocea Maxillaria Maxillaria crocea \N \N \N \N \N 59750 \N varietas Ceanothus jepsonii var. albiflorus \N \N \N \N \N 59751 \N genus Diogenesia \N \N \N \N \N 59752 C.brandisiana Cananga Cananga brandisiana \N \N \N \N \N 59753 K.neriifolia Kleinia Kleinia neriifolia \N \N \N \N \N 59754 A.teretifolium Apatophyllum Apatophyllum teretifolium \N \N \N \N \N 59755 A.woodruffii Astragalus Astragalus woodruffii \N \N \N \N \N 59756 R.odorata Reseda Reseda odorata \N \N \N \N \N 59757 C.02-281 Costus Costus sp. Specht 02-281 \N \N \N \N \N 59758 A.1241I Allium Allium sp. GAT 1241I \N \N \N \N \N 59759 C.occidentalis Cuscuta Cuscuta occidentalis \N \N \N \N \N 59760 A.tenellus Acianthus Acianthus tenellus \N \N \N \N \N 59761 P.cinereum Psidium Psidium cinereum \N \N \N \N \N 59762 G.G2138 Glycine Glycine sp. G2138 \N \N \N \N \N 59763 \N genus Kabuyea \N \N \N \N \N 59764 D.globiflora Dicrastylis Dicrastylis globiflora \N \N \N \N \N 59765 B.auriculata Buddleja Buddleja auriculata \N \N \N \N \N 59766 \N genus Porroglossum \N \N \N \N \N 59767 O.wiedemannii Oldenlandia Oldenlandia wiedemannii \N \N \N \N \N 59768 V.nepalensis Vigna Vigna nepalensis \N \N \N \N \N 59769 P.holosericea Protea Protea holosericea \N \N \N \N \N 59770 B.major Barneoudia Barneoudia major \N \N \N \N \N 59771 S.terniflora Schnabelia Schnabelia terniflora \N \N \N \N \N 59772 E.aculeata Eremogone Eremogone aculeata \N \N \N \N \N 59773 \N genus Munroa \N \N \N \N \N 59774 E.emirnensis Euphorbia Euphorbia emirnensis \N \N \N \N \N 59775 S.caducum Sedum Sedum caducum \N \N \N \N \N 59776 A.marginatum Argyrolobium Argyrolobium marginatum \N \N \N \N \N 59777 A.japonica Actaea Actaea japonica \N \N \N \N \N 59778 A.bellii Alrawia Alrawia bellii \N \N \N \N \N 59779 D.trinervia Drosera Drosera trinervia \N \N \N \N \N 59780 E.lacera Euphorbia Euphorbia lacera \N \N \N \N \N 59781 D.inaequifolia Dodonaea Dodonaea inaequifolia \N \N \N \N \N 59782 P.nepalensis Potentilla Potentilla nepalensis \N \N \N \N \N 59783 \N genus Lepidolopha \N \N \N \N \N 59784 R.baenitzianum Rhododendron Rhododendron baenitzianum \N \N \N \N \N 59785 C.pluriplicata Calathea Calathea pluriplicata \N \N \N \N \N 59786 \N genus Cnidiocarpa \N \N \N \N \N 59787 T.versicolor Tachigali Tachigali versicolor \N \N \N \N \N 59788 O.baeticum Ornithogalum Ornithogalum baeticum \N \N \N \N \N 59789 T.cylleneum Taraxacum Taraxacum cylleneum \N \N \N \N \N 59790 P.debbertiana Pinguicula Pinguicula debbertiana \N \N \N \N \N 59791 E.glaucina Eucalyptus Eucalyptus glaucina \N \N \N \N \N 59792 C.macrocarpum Calophyllum Calophyllum macrocarpum \N \N \N \N \N 59793 T.articulatus Tephrocactus Tephrocactus articulatus \N \N \N \N \N 59794 S.caesium Solanum Solanum caesium \N \N \N \N \N 59795 P.scopulorum Pedicularis Pedicularis scopulorum \N \N \N \N \N 59796 C.murale Chenopodium Chenopodium murale green fat hen,nettle-leaf goosefoot \N \N \N \N 59797 F.GW1126 Ficus Ficus cf. sterrocarpa GW1126 \N \N \N \N \N 59798 G.maxima Glyceria Glyceria maxima \N \N \N \N \N 59799 A.cratericola Allium Allium cratericola \N \N \N \N \N 59800 G.gamocarpus Gamanthus Gamanthus gamocarpus \N \N \N \N \N 59801 S.saman Samanea Samanea saman cow-tamarind,monkeypod,rain-tree,raintree \N \N \N \N 59802 P.lanigera Pritchardia Pritchardia lanigera \N \N \N \N \N 59803 \N genus Aripuana \N \N \N \N \N 59804 H.1115 Heterospathe Heterospathe sp. Baker 1115 \N \N \N \N \N 59805 P.cupiformis Passiflora Passiflora cupiformis \N \N \N \N \N 59806 L.cordatus Leucopogon Leucopogon cordatus \N \N \N \N \N 59807 I.kaushue Ilex Ilex kaushue \N \N \N \N \N 59808 O.candica Ophrys Ophrys candica \N \N \N \N \N 59809 G.cachemirica Gentiana Gentiana cachemirica \N \N \N \N \N 59810 M.2485 Maxillaria Maxillaria cf. silvana Whitten 2485 \N \N \N \N \N 59811 A.pusillus Amblyopappus Amblyopappus pusillus \N \N \N \N \N 59812 S.deserticola Salsola Salsola deserticola \N \N \N \N \N 59813 C.albiporcata Cissus Cissus albiporcata \N \N \N \N \N 59814 O.deltoides Oenothera Oenothera deltoides birdcage evening-primrose,devil's lantern,lion-in-a-cage \N \N \N \N 59815 M.spicatus Mazus Mazus spicatus \N \N \N \N \N 59816 P.pedicularidifolia Perezia Perezia pedicularidifolia \N \N \N \N \N 59817 \N subspecies Anacyclus monanthos subsp. cyrtolepidioides \N \N \N \N \N 59818 C.minor Chlorophytum Chlorophytum minor \N \N \N \N \N 59819 R.tolantonguensis Rzedowskia Rzedowskia tolantonguensis \N \N \N \N \N 59820 A.lepidophyllus Afrostyrax Afrostyrax lepidophyllus \N \N \N \N \N 59821 E.lateralis Erica Erica lateralis \N \N \N \N \N 59822 B.schiedeana Berberis Berberis schiedeana \N \N \N \N \N 59823 S.trifurcillata Spiloxene Spiloxene trifurcillata \N \N \N \N \N 59824 P.terebinthina Pteryxia Pteryxia terebinthina turpentine wavewing \N \N \N \N 59825 E.lucida Euphorbia Euphorbia lucida \N \N \N \N \N 59826 C.sempervivum Cochlearia Cochlearia sempervivum \N \N \N \N \N 59827 I.serra Isodon Isodon serra \N \N \N \N \N 59828 D.cuspidata Dorstenia Dorstenia cuspidata \N \N \N \N \N 59829 C.stramineus Cenchrus Cenchrus stramineus \N \N \N \N \N 59830 E.wettsteinii Euphrasia Euphrasia wettsteinii \N \N \N \N \N 59831 C.brachiata Calceolaria Calceolaria brachiata \N \N \N \N \N 59832 A.palmatum Acer Acer palmatum Japanese maple \N \N \N \N 59833 C.pubescens Cassytha Cassytha pubescens \N \N \N \N \N 59834 \N genus Tristania \N \N \N \N \N 59835 I.I-133 Iris Iris aff. decora Chase I-133 \N \N \N \N \N 59836 V.domingensis Viola Viola domingensis \N \N \N \N \N 59837 \N family Icacinaceae \N \N \N \N \N 59838 P.albicans Polygala Polygala albicans \N \N \N \N \N 59839 C.2131 Cuscuta Cuscuta cf. cozumeliensis Fernandez & Acosta 2131 \N \N \N \N \N 59840 P.cyathophylloides Pedicularis Pedicularis cyathophylloides \N \N \N \N \N 59841 S.LJK-2009 Saxicolella Saxicolella sp. LJK-2009 \N \N \N \N \N 59842 P.pittieri Piper Piper pittieri \N \N \N \N \N 59843 C.columna-trajani Cephalocereus Cephalocereus columna-trajani \N \N \N \N \N 59844 M.lindleyi Mentzelia Mentzelia lindleyi \N \N \N \N \N 59846 A.filifolius Aletes Aletes filifolius \N \N \N \N \N 59847 B.pertusa Bothriochloa Bothriochloa pertusa \N \N \N \N \N 59848 C.wendelboi Colchicum Colchicum wendelboi \N \N \N \N \N 59849 S.chrysanthus Sarcochilus Sarcochilus chrysanthus \N \N \N \N \N 59850 O.drummondii Oenothera Oenothera drummondii \N \N \N \N \N 59851 \N genus Lannea \N \N \N \N \N 59852 L.repens Lespedeza Lespedeza repens \N \N \N \N \N 59853 S.parviflora Setaria Setaria parviflora knotroot foxtail \N \N \N \N 59854 \N varietas Pityopsis graminifolia var. graminifolia \N \N \N \N \N 59855 B.boliviensis Barbaceniopsis Barbaceniopsis boliviensis \N \N \N \N \N 59856 G.carinata Gnidia Gnidia carinata \N \N \N \N \N 59857 \N genus Oxandra \N \N \N \N \N 59858 C.gypsophiloides Claytonia Claytonia gypsophiloides \N \N \N \N \N 59859 M.glandibracteolata Macaranga Macaranga glandibracteolata \N \N \N \N \N 59860 \N subspecies Crocus olivieri subsp. balansae \N \N \N \N \N 59861 R.boliviana Recordia Recordia boliviana \N \N \N \N \N 59862 D.sample environmental samples Taxonomy:404789 Daviesia environmental sample \N \N \N \N \N 59863 C.lundelliana Cucurbita Cucurbita lundelliana \N \N \N \N \N 59864 C.skutchii Cobaea Cobaea skutchii \N \N \N \N \N 59865 \N varietas Allium hookeri var. muliense \N \N \N \N \N 59866 \N genus Paracostus \N \N \N \N \N 59867 C.monilirachis Coelogyne Coelogyne monilirachis \N \N \N \N \N 59868 A.bottae Aristolochia Aristolochia bottae \N \N \N \N \N 59869 A.elongata Alchemilla Alchemilla elongata \N \N \N \N \N 59870 D.erucoides Diplotaxis Diplotaxis erucoides \N \N \N \N \N 59871 \N varietas Parnassia yunanensis var. longistipitata \N \N \N \N \N 59872 M.nana Morella Morella nana \N \N \N \N \N 59873 D.quercifolia Datura Datura quercifolia \N \N \N \N \N 59874 B.floridana Buchnera Buchnera floridana \N \N \N \N \N 59875 \N genus Harmandia \N \N \N \N \N 59876 T.marginata Taxandria Taxandria marginata \N \N \N \N \N 59877 P.moniliforme Pelargonium Pelargonium moniliforme \N \N \N \N \N 59878 \N genus Leiospora \N \N \N \N \N 59879 F.karelinii Fritillaria Fritillaria karelinii \N \N \N \N \N 59880 E.reenensis Erica Erica reenensis \N \N \N \N \N 59881 P.lachnoglossa Pedicularis Pedicularis lachnoglossa \N \N \N \N \N 59882 \N subspecies Sarracenia alabamensis subsp. wherryi \N \N \N \N \N 59883 P.glaber Penstemon Penstemon glaber \N \N \N \N \N 59884 M.sylvatica Muhlenbergia Muhlenbergia sylvatica \N \N \N \N \N 59885 E.clementei Euphorbia Euphorbia clementei \N \N \N \N \N 59886 E.sanguisorba Eryngium Eryngium sanguisorba \N \N \N \N \N 59887 O.echinops Oncidium Oncidium echinops \N \N \N \N \N 59888 \N genus Cansjera \N \N \N \N \N 59889 A.mendocinoensis Arctostaphylos Arctostaphylos mendocinoensis \N \N \N \N \N 59890 S.platense Sisyrinchium Sisyrinchium platense \N \N \N \N \N 59891 S.elongatus Sporobolus Sporobolus elongatus \N \N \N \N \N 59892 S.crassicaulis Scrophularia Scrophularia crassicaulis \N \N \N \N \N 59893 V.cupressoides Hebe Veronica cupressoides \N \N \N \N \N 59894 O.tigrinum Oncidium Oncidium tigrinum \N \N \N \N \N 59895 P.leptantha Portea Portea leptantha \N \N \N \N \N 59896 M.loxensis Mimosa Mimosa loxensis \N \N \N \N \N 59897 A.pangiensis Arabis Arabis pangiensis \N \N \N \N \N 59898 D.crassifolium Disphyma Disphyma crassifolium \N \N \N \N \N 59899 E.appendiculatum Exacum Exacum appendiculatum \N \N \N \N \N 59900 T.streptophylla Tillandsia Tillandsia streptophylla \N \N \N \N \N 59901 N.spicifera Nothocissus Nothocissus spicifera \N \N \N \N \N 59902 \N varietas Aristida adscensionis var. coerulescens \N \N \N \N \N 59903 D.costaricensis Dichaea Dichaea costaricensis \N \N \N \N \N 59904 K.candida Kaempferia Kaempferia candida \N \N \N \N \N 59905 I.koeie Isatis Isatis koeie \N \N \N \N \N 59906 \N genus Coleocarya \N \N \N \N \N 59907 T.haydenii Trifolium Trifolium haydenii \N \N \N \N \N 59908 \N genus Placospermum \N \N \N \N \N 59909 G.clavigera Geomitra Geomitra clavigera \N \N \N \N \N 59910 G.elegans Goniothalamus Goniothalamus elegans \N \N \N \N \N 59911 C.volkensii Callopsis Callopsis volkensii \N \N \N \N \N 59912 A.glabra Actinodaphne Actinodaphne glabra \N \N \N \N \N 59913 T.peruviana Tovarochloa Tovarochloa peruviana \N \N \N \N \N 59914 T.cochinchinensis Triadica Triadica cochinchinensis \N \N \N \N \N 59915 \N tribe Posoquerieae \N \N \N \N \N 59916 C.myrtifolia Coffea Coffea myrtifolia \N \N \N \N \N 59917 E.callitrix Eriophorum Eriophorum callitrix \N \N \N \N \N 59918 S.subreniformis Salix Salix subreniformis \N \N \N \N \N 59919 M.pallidum Marsypopetalum Marsypopetalum pallidum \N \N \N \N \N 59920 E.commutata Elaeagnus Elaeagnus commutata silverberry \N \N \N \N 59921 K.parvifolia Kunzea Kunzea parvifolia \N \N \N \N \N 59922 C.rubescens Curcuma Curcuma rubescens \N \N \N \N \N 59923 S.officinarum Saccharum officinarum complex Saccharum officinarum noble cane,sugarcane \N \N \N \N 59924 \N genus Kallstroemia \N \N \N \N \N 59925 \N genus Alkanna \N \N \N \N \N 59926 R.lawsonioides Rhynchocalyx Rhynchocalyx lawsonioides \N \N \N \N \N 59927 N.peruviana Nolana Nolana peruviana \N \N \N \N \N 59928 P.sanguinolenta Passiflora Passiflora sanguinolenta \N \N \N \N \N 59929 C.tetragona Calytrix Calytrix tetragona \N \N \N \N \N 59930 P.dilatatum Piper Piper dilatatum \N \N \N \N \N 59931 C.enderbyensis Crataegus Crataegus enderbyensis \N \N \N \N \N 59932 H.acutangula Hedyotis Hedyotis acutangula \N \N \N \N \N 59933 O.05020 Opuntia Opuntia sp. Qiu 05020 \N \N \N \N \N 59934 \N genus Chiranthodendron \N \N \N \N \N 59935 C.amara Cryptandra Cryptandra amara \N \N \N \N \N 59936 L.fenestralis Lobelia Lobelia fenestralis \N \N \N \N \N 59937 B.herbacea Begonia Begonia herbacea \N \N \N \N \N 59938 P.246 Phyllanthus Phyllanthus cf. fuscoluridus Hoffmann et al. 246 \N \N \N \N \N 59939 A.vanjaarsveldii Androcymbium Androcymbium vanjaarsveldii \N \N \N \N \N 59940 C.discolor Cleisostoma Cleisostoma discolor \N \N \N \N \N 59941 C.crista-galli Castilleja Castilleja crista-galli \N \N \N \N \N 59942 E.oleracea Euterpe Euterpe oleracea \N \N \N \N \N 59943 M.atacamensis Maihueniopsis Maihueniopsis atacamensis \N \N \N \N \N 59944 L.dejecta Lycianthes Lycianthes dejecta \N \N \N \N \N 59945 C.SRR-2011 Coryanthes Coryanthes sp. SRR-2011 \N \N \N \N \N 59946 I.plebeia Ipomoea Ipomoea plebeia campainha,corda-de-viola \N \N \N \N 59947 S.rotundifolia Silene Silene rotundifolia \N \N \N \N \N 59948 C.grandiflorum Clinopodium Clinopodium grandiflorum \N \N \N \N \N 59949 M.ternifolia Macadamia Macadamia ternifolia \N \N \N \N \N 59950 A.myriophylla Atriplex Atriplex myriophylla \N \N \N \N \N 59951 \N family Cistaceae rock-rose family \N \N \N \N 59952 S.barclayana Senna Senna barclayana \N \N \N \N \N 59953 E.saligna Eucalyptus Eucalyptus saligna \N \N \N \N \N 59954 \N varietas Stewartia pseudocamellia var. koreana \N \N \N \N \N 59955 L.trinervium Lithospermum Lithospermum trinervium \N \N \N \N \N 59956 R.trichoglossa Restrepia Restrepia trichoglossa \N \N \N \N \N 59957 \N genus Castilleja Indian paintbrush,owl's-clover \N \N \N \N 59958 C.rubens Crassocephalum Crassocephalum rubens \N \N \N \N \N 59959 A.insignis Anthochortus Anthochortus insignis \N \N \N \N \N 59960 R.schottii Rhaphidophora Rhaphidophora schottii \N \N \N \N \N 59961 S.richteri Salsola Salsola richteri \N \N \N \N \N 59962 C.inclusum Cestrum Cestrum inclusum \N \N \N \N \N 59963 G.capitatum Gastrolobium Gastrolobium capitatum \N \N \N \N \N 59964 N.fusca Nepenthes Nepenthes fusca \N \N \N \N \N 59965 R.quinquefolium Rhododendron Rhododendron quinquefolium \N \N \N \N \N 59966 \N subspecies Ribes oxyacanthoides subsp. irriguum Idaho gooseberry \N \N \N \N 59967 Z.nummularia Ziziphus Ziziphus nummularia \N \N \N \N \N 59968 P.macrocephalum Phrynium Phrynium macrocephalum \N \N \N \N \N 59969 A.pechuelii Adenia Adenia pechuelii \N \N \N \N \N 59970 \N family Penaeaceae \N \N \N \N \N 59971 M.petrophila Mammillaria Mammillaria petrophila \N \N \N \N \N 59972 P.anceps Psychotria Psychotria anceps \N \N \N \N \N 59973 N.3640 Nemesia Nemesia sp. Steiner 3640 \N \N \N \N \N 59974 \N genus Notocactus \N \N \N \N \N 75310 \N genus Lactuca \N \N \N \N \N 59975 D.americana Diarrhena Diarrhena americana \N \N \N \N \N 59976 O.5515 Ormosia Ormosia sp. Chase 5515 \N \N \N \N \N 59977 \N genus Spathiostemon \N \N \N \N \N 59978 \N family Vahliaceae \N \N \N \N \N 59979 \N subspecies Musa acuminata subsp. microcarpa \N \N \N \N \N 59980 A.baselloides Anredera Anredera baselloides \N \N \N \N \N 59981 L.aromatica Lycaste Lycaste aromatica \N \N \N \N \N 59982 B.longifolia Brachystegia Brachystegia longifolia \N \N \N \N \N 59983 G.gaudichaudii Gaudichaudia Gaudichaudia gaudichaudii \N \N \N \N \N 59984 L.phoenicea Lavatera Lavatera phoenicea \N \N \N \N \N 59985 E.komarovianum Epilobium Epilobium komarovianum \N \N \N \N \N 59986 S.hyssopifolia Selago Selago hyssopifolia \N \N \N \N \N 59987 A.ohloneana Arctostaphylos Arctostaphylos ohloneana \N \N \N \N \N 59988 \N genus Toddalia \N \N \N \N \N 59989 G.cuneifolia Gaertnera Gaertnera cuneifolia \N \N \N \N \N 59990 P.steetzii Pericallis Pericallis steetzii \N \N \N \N \N 59991 \N genus Orochaenactis \N \N \N \N \N 59992 \N varietas Polemonium caeruleum var. yezoense \N \N \N \N \N 59993 R.juengeri Rhipsalis Rhipsalis juengeri \N \N \N \N \N 59994 I.smeathmannii Isonema Isonema smeathmannii \N \N \N \N \N 59995 S.clandestinus Sporobolus Sporobolus clandestinus \N \N \N \N \N 59996 P.canadensis Populus Populus x canadensis Canadian poplar,Carolina poplar \N \N \N \N 59997 \N family Garryaceae \N \N \N \N \N 59998 G.sylvaticum Gnaphalium Gnaphalium sylvaticum \N \N \N \N \N 59999 Q.afares Quercus Quercus afares \N \N \N \N \N 60000 P.perpusilla Pratia Pratia angulata x Pratia perpusilla \N \N \N \N \N 60001 A.grandis Astilbe Astilbe grandis Korean astilbe \N \N \N \N 60002 N.racemosa Nepeta Nepeta racemosa \N \N \N \N \N 60003 B.vestita Bomarea Bomarea vestita \N \N \N \N \N 60004 B.orbiculata Berteroa Berteroa orbiculata \N \N \N \N \N 60005 \N subspecies Helictotrichon gervaisii subsp. arundanum \N \N \N \N \N 60006 \N varietas Cymopterus acaulis var. acaulis \N \N \N \N \N 60007 \N genus Heterocodon \N \N \N \N \N 60008 A.tamaran Artocarpus Artocarpus tamaran terap \N \N \N \N 60009 P.macrotrichum Piper Piper macrotrichum \N \N \N \N \N 60010 P.hallii Panicum Panicum hallii \N \N \N \N \N 60011 \N genus Andryala \N \N \N \N \N 60012 C.mildbraedii Copaifera Copaifera mildbraedii \N \N \N \N \N 60013 M.capitata Myosotis Myosotis capitata \N \N \N \N \N 60014 S.'gordonii' Schefflera Schefflera sp. ined. 'gordonii' \N \N \N \N \N 60015 \N genus Tripsacum \N \N \N \N \N 60016 L.claudiensis Lasjia Lasjia claudiensis \N \N \N \N \N 60017 C.pamiricum Corispermum Corispermum pamiricum \N \N \N \N \N 60018 M.poeppigii Maihuenia Maihuenia poeppigii \N \N \N \N \N 60019 I.cheesemanii Imperata Imperata cheesemanii \N \N \N \N \N 60020 N.villosa Nepenthes Nepenthes villosa \N \N \N \N \N 60021 G.rosei Guardiola Guardiola rosei \N \N \N \N \N 60022 \N varietas Carex muehlenbergii var. xalapensis \N \N \N \N \N 60023 \N subspecies Senecio glaucus subsp. coronopifolius \N \N \N \N \N 60024 E.laciniata Eremostachys Eremostachys laciniata \N \N \N \N \N 60025 S.propinquum Sorghum Sorghum propinquum \N \N \N \N \N 60026 P.nigrescens Paepalanthus Paepalanthus nigrescens \N \N \N \N \N 60027 B.schlechtendalii Bursera Bursera schlechtendalii \N \N \N \N \N 60028 E.exaltatum Eustoma Eustoma exaltatum \N \N \N \N \N 60029 E.madida Erica Erica madida \N \N \N \N \N 60030 P.tulae Passiflora Passiflora tulae \N \N \N \N \N 60031 I.sculponeatus Isodon Isodon sculponeatus \N \N \N \N \N 60032 D.viridicans Diospyros Diospyros viridicans \N \N \N \N \N 60033 H.intermedius Himalayacalamus Himalayacalamus intermedius \N \N \N \N \N 60034 M.annua Munnozia Munnozia annua \N \N \N \N \N 60035 P.borucana Psychotria Psychotria borucana \N \N \N \N \N 60036 P.pulchella Physostegia Physostegia pulchella \N \N \N \N \N 60037 \N genus Schenckia \N \N \N \N \N 60038 C.peruviana Clethra Clethra peruviana \N \N \N \N \N 60039 C.huberi Ceropegia Ceropegia huberi \N \N \N \N \N 60040 A.phanerophlebia Aechmea Aechmea phanerophlebia \N \N \N \N \N 60041 A.remotiflora Adenophora Adenophora remotiflora \N \N \N \N \N 60042 E.longituberculosa Euphorbia Euphorbia longituberculosa \N \N \N \N \N 60043 D.cretaceus Dianthus Dianthus cretaceus \N \N \N \N \N 60044 P.humbertii Peponidium Peponidium humbertii \N \N \N \N \N 60045 N.contortuplicata Neotorularia Neotorularia contortuplicata \N \N \N \N \N 60046 \N genus Stevensia \N \N \N \N \N 60047 B.1 Begonia Begonia sp. Sumbawa 1 \N \N \N \N \N 60048 \N family Tovariaceae \N \N \N \N \N 60049 P.wilsonii Populus Populus wilsonii \N \N \N \N \N 60050 S.filiformis Sebaea Sebaea filiformis \N \N \N \N \N 60051 \N genus Amorpha \N \N \N \N \N 60052 E.penduliflora Erica Erica penduliflora \N \N \N \N \N 60053 T.hallii Tylecodon Tylecodon hallii \N \N \N \N \N 60054 B.ferruginea Boeica Boeica ferruginea \N \N \N \N \N 60055 P.5565 Piper Piper sp. Harder 5565 \N \N \N \N \N 60056 C.aloifolium Cymbidium Cymbidium aloifolium \N \N \N \N \N 60057 \N forma Cryptocentrum standleyi f. longiscapum \N \N \N \N \N 60058 B.palmipes Brassaiopsis Brassaiopsis palmipes \N \N \N \N \N 60059 I.longiloba Ixora Ixora longiloba \N \N \N \N \N 60060 C.hanaju Citrus Citrus hanaju \N \N \N \N \N 60061 P.hemsleyanus Paliurus Paliurus hemsleyanus \N \N \N \N \N 60062 C.orinocense Caryodendron Caryodendron orinocense \N \N \N \N \N 60063 E.alnifolium Erodium Erodium alnifolium \N \N \N \N \N 60064 C.taliensis Corydalis Corydalis taliensis \N \N \N \N \N 60065 \N genus Calyptronoma \N \N \N \N \N 60066 H.parishii Hygrochilus Hygrochilus parishii \N \N \N \N \N 60067 M.triflora Microtropis Microtropis triflora \N \N \N \N \N 60068 C.guatemalensis Cupania Cupania guatemalensis \N \N \N \N \N 60069 T.marshalliana Thunia Thunia marshalliana \N \N \N \N \N 60070 E.chlorandrum Epimedium Epimedium chlorandrum \N \N \N \N \N 60071 S.cloiselii Secamone Secamone cloiselii \N \N \N \N \N 60072 \N subtribe Pappophorinae \N \N \N \N \N 60073 \N tribe Tabermontantaneae \N \N \N \N \N 60074 D.micrantha Dichelachne Dichelachne micrantha \N \N \N \N \N 60075 P.takeoi Phaius Phaius takeoi \N \N \N \N \N 60076 C.gadorensis Centaurea Centaurea gadorensis \N \N \N \N \N 60077 P.06 Piper Piper sp. RA 06 \N \N \N \N \N 60078 G.potaninii Galitzkya Galitzkya potaninii \N \N \N \N \N 60079 \N varietas Cuphea avigera var. pulcherrima \N \N \N \N \N 60080 T.bissectus Thoracocarpus Thoracocarpus bissectus \N \N \N \N \N 60081 A.axillare Achyrospermum Achyrospermum axillare \N \N \N \N \N 60082 C.madida Christensonella Christensonella madida \N \N \N \N \N 60083 M.coriacea Myrsine Myrsine coriacea \N \N \N \N \N 60084 A.australe Acrophyllum Acrophyllum australe \N \N \N \N \N 60085 S.subandina Schradera Schradera subandina \N \N \N \N \N 60086 \N genus Cautleya \N \N \N \N \N 60087 A.galpinii Acacia Acacia galpinii \N \N \N \N \N 60088 B.arguta Berenice Berenice arguta \N \N \N \N \N 60089 \N genus Neobassia \N \N \N \N \N 60090 F.cultivar Fuchsia Fuchsia hybrid cultivar \N \N \N \N \N 60091 L.thuringiaca Lavatera Lavatera thuringiaca \N \N \N \N \N 60092 H.coccineum Hedychium Hedychium coccineum \N \N \N \N \N 60093 P.sicaria Pleurothallis Pleurothallis sicaria \N \N \N \N \N 60094 P.calcariformis Piper Piper calcariformis \N \N \N \N \N 60095 H.crumiana Halenia Halenia crumiana \N \N \N \N \N 60096 \N subspecies Hordeum pubiflorum subsp. halophilum \N \N \N \N \N 60097 \N genus Haegiela \N \N \N \N \N 60098 O.nitida Ocotea Ocotea nitida \N \N \N \N \N 60099 T.UW Tragopogon Tragopogon sp. UW \N \N \N \N \N 60100 E.sieboldianus Eleutherococcus Eleutherococcus sieboldianus \N \N \N \N \N 60101 H.tanypodus Hymenochilus Hymenochilus tanypodus \N \N \N \N \N 60102 \N family Degeneriaceae \N \N \N \N \N 60103 \N genus Calyptridium \N \N \N \N \N 60104 \N genus Nephelium \N \N \N \N \N 60105 B.crebrifolia Beccariella Beccariella crebrifolia \N \N \N \N \N 60106 C.spiralis Carpolyza Carpolyza spiralis \N \N \N \N \N 60107 S.aquatica Saxifraga Saxifraga aquatica \N \N \N \N \N 60108 A.pilosa Alibertia Alibertia pilosa \N \N \N \N \N 60109 L.breedlovei Lundellianthus Lundellianthus breedlovei \N \N \N \N \N 60110 C.mohavense Cirsium Cirsium mohavense Mojave thistle \N \N \N \N 60111 L.crenata Loeseneriella Loeseneriella crenata \N \N \N \N \N 60112 \N genus Maidenia \N \N \N \N \N 60113 M.corchorifolia Melochia Melochia corchorifolia \N \N \N \N \N 60114 S.croatii Solanum Solanum croatii \N \N \N \N \N 60115 C.viminea Calopsis Calopsis viminea \N \N \N \N \N 60116 M.steyermarkii Malaxis Malaxis steyermarkii \N \N \N \N \N 60117 A.pajaroensis Arctostaphylos Arctostaphylos pajaroensis \N \N \N \N \N 60118 C.khorassanica Cleome Cleome khorassanica \N \N \N \N \N 60119 S.manaense Solanum Solanum manaense \N \N \N \N \N 60120 M.rubiginosa Machaerina Machaerina rubiginosa \N \N \N \N \N 60121 \N genus Batemania \N \N \N \N \N 60122 B.racemosa Bambekea Bambekea racemosa \N \N \N \N \N 60123 S.serpyllifolia Salix Salix serpyllifolia \N \N \N \N \N 60124 M.berteroniana Megalachne Megalachne berteroniana \N \N \N \N \N 60125 A.guangxiense Allostigma Allostigma guangxiense \N \N \N \N \N 60126 B.aspera Bryonia Bryonia aspera \N \N \N \N \N 60127 \N varietas Samolus ebracteatus var. alyssoides \N \N \N \N \N 60128 H.benghalensis Hiptage Hiptage benghalensis \N \N \N \N \N 60129 A.scopatum Astrocaryum Astrocaryum scopatum \N \N \N \N \N 60130 G.revoluta Grindelia Grindelia revoluta \N \N \N \N \N 60131 \N genus Polyspora \N \N \N \N \N 60132 A.fibrosa Allocasuarina Allocasuarina fibrosa \N \N \N \N \N 60133 P.decipiens Phylloxylon Phylloxylon decipiens \N \N \N \N \N 60134 \N subspecies Thymelaea tartonraira subsp. valentina \N \N \N \N \N 60135 F.jubata Festuca Festuca jubata \N \N \N \N \N 60136 E.porosa Eucalyptus Eucalyptus porosa \N \N \N \N \N 60137 \N genus Bryodes \N \N \N \N \N 60138 P.shirensis Paralepistemon Paralepistemon shirensis \N \N \N \N \N 60139 S.antirrhina Silene Silene antirrhina \N \N \N \N \N 60140 \N genus Ambilobea \N \N \N \N \N 60141 N.nigelliformis Navarretia Navarretia nigelliformis \N \N \N \N \N 60142 O.parviflora Otiophora Otiophora parviflora \N \N \N \N \N 60143 A.deceptrix Annona Annona deceptrix \N \N \N \N \N 60144 N.lecomtei Neocinnamomum Neocinnamomum lecomtei \N \N \N \N \N 60145 \N varietas Potentilla fragarioides var. major \N \N \N \N \N 60146 \N genus Joinvillea \N \N \N \N \N 60147 L.horrida Lantana Lantana horrida \N \N \N \N \N 60148 E.6486 Elaeagia Elaeagia sp. Delprete 6486 \N \N \N \N \N 60149 H.orbicularis Hoita Hoita orbicularis \N \N \N \N \N 60150 A.aphylla Austrostipa Austrostipa aphylla \N \N \N \N \N 60151 B.japonica Bauhinia Bauhinia japonica \N \N \N \N \N 60152 E.lithospermoides Echiochilon Echiochilon lithospermoides \N \N \N \N \N 60153 C.korolkowii Cousinia Cousinia korolkowii \N \N \N \N \N 60154 S.inaequiradians Solanum Solanum inaequiradians \N \N \N \N \N 60155 S.leptocladum Santalum Santalum lanceolatum x Santalum leptocladum \N \N \N \N \N 60156 L.L24 Liparis Liparis sp. L24 \N \N \N \N \N 60157 M.douglasii Microseris Microseris douglasii \N \N \N \N \N 60158 \N subspecies Digitalis laevigata subsp. graeca \N \N \N \N \N 60159 P.vogeliana Psychotria Psychotria vogeliana \N \N \N \N \N 60160 C.brownii Cenchrus Cenchrus brownii \N \N \N \N \N 60161 S.smithii Selysia Selysia smithii \N \N \N \N \N 60162 \N genus Quararibea \N \N \N \N \N 60163 O.cappadocica Omphalodes Omphalodes cappadocica \N \N \N \N \N 60164 C.arizonica Carlowrightia Carlowrightia arizonica \N \N \N \N \N 60165 E.amazonica Exostyles Exostyles amazonica \N \N \N \N \N 60166 P.echinula Pultenaea Pultenaea echinula \N \N \N \N \N 60167 S.parvula Scutellaria Scutellaria parvula \N \N \N \N \N 60168 A.triangularis Aristolochia Aristolochia triangularis \N \N \N \N \N 60169 L.cordatum Lepidium Lepidium cordatum \N \N \N \N \N 60170 H.SH-2010 Hedythyrsus Hedythyrsus sp. SH-2010 \N \N \N \N \N 60171 B.siqueiraei Bauhinia Bauhinia siqueiraei \N \N \N \N \N 60172 C.scabra Colona Colona scabra \N \N \N \N \N 60174 B.guianensis Bagassa Bagassa guianensis \N \N \N \N \N 60175 I.goldmanii Inga Inga goldmanii \N \N \N \N \N 60176 I.hirsutissimus Indocalamus Indocalamus hirsutissimus \N \N \N \N \N 60177 S.viscidula Silene Silene viscidula \N \N \N \N \N 60178 R.indica Reinwardtia Reinwardtia indica \N \N \N \N \N 60179 D.lastelliana Dypsis Dypsis lastelliana \N \N \N \N \N 60180 C.rolfeanum Cleisostoma Cleisostoma rolfeanum \N \N \N \N \N 60181 S.ghiesbreghtii Schoenocaulon Schoenocaulon ghiesbreghtii \N \N \N \N \N 60182 F.potaninii Ferula Ferula potaninii \N \N \N \N \N 60183 O.purpurata Oxalis Oxalis purpurata \N \N \N \N \N 60184 D.daphnoides Daviesia Daviesia daphnoides \N \N \N \N \N 60185 S.maritimum Sesuvium Sesuvium maritimum \N \N \N \N \N 60186 \N genus Borneosicyos \N \N \N \N \N 60187 D.lemmonii Draba Draba lemmonii \N \N \N \N \N 60188 \N genus Notelaea \N \N \N \N \N 60189 J.104 Joycea Joycea sp. Humphreys 104 \N \N \N \N \N 60190 A.mixta Arrhenechthites Arrhenechthites mixta \N \N \N \N \N 60191 H.rhyticarpa Harpullia Harpullia rhyticarpa \N \N \N \N \N 60192 D.clementina Deinandra Deinandra clementina \N \N \N \N \N 60193 M.sosias Myrcia Myrcia sosias \N \N \N \N \N 60194 I.chungtienensis Impatiens Impatiens chungtienensis \N \N \N \N \N 60195 C.monotropa Carex Carex monotropa \N \N \N \N \N 60196 C.californicum Cladium Cladium californicum \N \N \N \N \N 60197 C.suaveolens Cuscuta Cuscuta suaveolens \N \N \N \N \N 60198 C.araguaiensis Cattleya Cattleya araguaiensis \N \N \N \N \N 60199 A.glabra Apeiba Apeiba glabra \N \N \N \N \N 60200 \N genus Plutarchia \N \N \N \N \N 60201 E.aesculina Erythrophysa Erythrophysa aesculina \N \N \N \N \N 60202 C.torreyanus Croton Croton torreyanus \N \N \N \N \N 60203 F.elastica Ficus Ficus elastica India rubber fig,rubberplant \N \N \N \N 60204 \N varietas Haworthia reinwardtii var. reinwardtii \N \N \N \N \N 60205 \N genus Sarcostigma \N \N \N \N \N 60206 M.oregana Micranthes Micranthes oregana \N \N \N \N \N 60207 \N no rank Astragalus lentiginosus var. australis \N \N \N \N \N 60208 C.uleanum Clytostoma Clytostoma uleanum \N \N \N \N \N 60209 R.laevigata Rosa Rosa laevigata Cherokee rose \N \N \N \N 60210 R.stricta Rainiera Rainiera stricta \N \N \N \N \N 60211 M.linearis Montia Montia linearis \N \N \N \N \N 60212 E.aspera Eragrostis Eragrostis aspera \N \N \N \N \N 60213 S.sullivantii Sullivantia Sullivantia sullivantii \N \N \N \N \N 60214 A.madioides Anisocarpus Anisocarpus madioides \N \N \N \N \N 60215 L.dendroideus Lotus Lotus dendroideus \N \N \N \N \N 60216 E.farctus Elymus Elymus farctus \N \N \N \N \N 60217 \N genus Ormosciadium \N \N \N \N \N 60218 \N subfamily Lamioideae \N \N \N \N \N 60219 S.tenuifolia Schizonepeta Schizonepeta tenuifolia \N \N \N \N \N 60220 A.pinguiculum Amitostigma Amitostigma pinguiculum \N \N \N \N \N 60221 C.davisii Cymopterus Cymopterus davisii \N \N \N \N \N 60222 P.parva Plagiostachys Plagiostachys parva \N \N \N \N \N 60223 D.morbifera Dendropanax Dendropanax morbifera \N \N \N \N \N 60224 X.sp. Xanthorrhoea Xanthorrhoea sp. blackboy tree,grass tree \N \N \N \N 60225 S.lucida Salix Salix lucida shining willow \N \N \N \N 60226 B.cavallyensis Begonia Begonia cavallyensis \N \N \N \N \N 60227 \N genus Arthrostylidium \N \N \N \N \N 60228 C.parvisecta Chamaedorea Chamaedorea parvisecta \N \N \N \N \N 60229 O.decipiens Ochrocarpos Ochrocarpos decipiens \N \N \N \N \N 60230 S.modestus Streptocarpus Streptocarpus modestus \N \N \N \N \N 60231 C.petrophiloides Coreopsis Coreopsis petrophiloides \N \N \N \N \N 60232 B.indica Balanophora Balanophora indica \N \N \N \N \N 60233 S.thompsonii Stenandrium Stenandrium thompsonii \N \N \N \N \N 60234 S.plicata Setaria Setaria plicata \N \N \N \N \N 60235 C.erecta Cryptostylis Cryptostylis erecta \N \N \N \N \N 60236 C.articulata Clusia Clusia articulata \N \N \N \N \N 60237 \N genus Campylanthus \N \N \N \N \N 60238 E.ciliare Epidendrum Epidendrum ciliare \N \N \N \N \N 60239 C.siccata Carex Carex siccata \N \N \N \N \N 60240 O.ficalhoana Ophrys Ophrys ficalhoana \N \N \N \N \N 60241 \N genus Toussaintia \N \N \N \N \N 60242 G.pudica Guatteria Guatteria pudica \N \N \N \N \N 60243 A.longifolia Asclepias Asclepias longifolia \N \N \N \N \N 60244 \N subspecies Centaurea sagredoi subsp. tenuiloba \N \N \N \N \N 60245 S.palmatilobus Sinosenecio Sinosenecio palmatilobus \N \N \N \N \N 60246 \N varietas Simsia annectens var. grayi \N \N \N \N \N 60247 E.kandaharensis Echinops Echinops kandaharensis \N \N \N \N \N 60248 \N forma Geranium nepalense f. pallidum \N \N \N \N \N 60249 C.incanus Ceanothus Ceanothus incanus \N \N \N \N \N 60250 A.fimbriata Aristolochia Aristolochia fimbriata \N \N \N \N \N 60251 H.colemanii Hexalectris Hexalectris colemanii \N \N \N \N \N 60252 C.stenoptila Carex Carex stenoptila \N \N \N \N \N 60253 H.monogynum Hypericum Hypericum monogynum \N \N \N \N \N 60254 B.huillensis Brachylaena Brachylaena huillensis \N \N \N \N \N 60255 O.attica Ophrys Ophrys attica \N \N \N \N \N 60256 A.richardsonii Anemone Anemone richardsonii \N \N \N \N \N 60257 L.wallichiana Ligusticopsis Ligusticopsis wallichiana \N \N \N \N \N 60258 E.acuminata Eurya Eurya acuminata \N \N \N \N \N 60259 T.1999 Tylecodon Tylecodon sp. Mort 1999 \N \N \N \N \N 60260 H.populifolium Helichrysum Helichrysum populifolium \N \N \N \N \N 60261 T.camschatcense Trillium Trillium camschatcense \N \N \N \N \N 60262 P.SH-2010 Piptocarpha Piptocarpha sp. SH-2010 \N \N \N \N \N 60263 L.fruticosa Lindera Lindera fruticosa \N \N \N \N \N 60264 P.stenophylla Potentilla Potentilla stenophylla \N \N \N \N \N 60265 C.perraudieriana Carex Carex perraudieriana \N \N \N \N \N 60266 P.auriculatum Paraholcoglossum Paraholcoglossum auriculatum \N \N \N \N \N 60267 D.oliviformis Drymophloeus Drymophloeus oliviformis \N \N \N \N \N 60268 M.cordata Maytenus Maytenus cordata \N \N \N \N \N 60269 \N genus Oraniopsis \N \N \N \N \N 60270 O.pycnostachya Orobanche Orobanche pycnostachya \N \N \N \N \N 60271 H.tetrapetalum Hypericum Hypericum tetrapetalum \N \N \N \N \N 60272 M.dryandroides Mimosa Mimosa dryandroides \N \N \N \N \N 60273 C.geraniifolia Cineraria Cineraria geraniifolia \N \N \N \N \N 60274 \N subspecies Sagittaria montevidensis subsp. calycina \N \N \N \N \N 60275 P.coloratum Panicum Panicum coloratum klinegrass \N \N \N \N 60276 Z.subtrijugum Zygophyllum Zygophyllum subtrijugum \N \N \N \N \N 60277 S.loczyi Souroubea Souroubea loczyi \N \N \N \N \N 60278 G.trinervis Guindilia Guindilia trinervis \N \N \N \N \N 60279 S.445 Symplocos Symplocos aff. caerulescens 445 \N \N \N \N \N 60280 V.parvifolia Vigna Vigna parvifolia \N \N \N \N \N 60281 B.polypodantha Bonatea Bonatea polypodantha \N \N \N \N \N 60282 B.schlimii Blakea Blakea schlimii \N \N \N \N \N 60283 M.krukovii Mandevilla Mandevilla krukovii \N \N \N \N \N 60284 N.squamea Nematolepis Nematolepis squamea \N \N \N \N \N 60285 E.massonii Erica Erica massonii \N \N \N \N \N 60286 B.secunda Babiana Babiana secunda \N \N \N \N \N 60287 S.integerrimus Senecio Senecio integerrimus lambs-tongue ragwort,lambstongue ragwort \N \N \N \N 60288 \N subspecies Sphaerocoma hookeri subsp. intermedia \N \N \N \N \N 60289 P.viridifolium Phagnalon Phagnalon viridifolium \N \N \N \N \N 60290 G.monvillei Gymnocalycium Gymnocalycium monvillei \N \N \N \N \N 60291 \N varietas Pomaria rubicunda var. rubicunda \N \N \N \N \N 60292 \N subspecies Aspalathus laricifolia subsp. laricifolia \N \N \N \N \N 60293 A.yesoensis Actaea Actaea yesoensis \N \N \N \N \N 60294 D.lusitanus Dianthus Dianthus lusitanus \N \N \N \N \N 60295 W.DS-2011 Withania Withania somnifera x Withania sp. DS-2011 \N \N \N \N \N 60296 N.carnea Nasa Nasa carnea \N \N \N \N \N 60297 \N genus Joannesia \N \N \N \N \N 60298 M.adamantina Mimosa Mimosa adamantina \N \N \N \N \N 60299 \N subspecies Oenanthe linearis subsp. linearis \N \N \N \N \N 60300 \N genus Riedeliella \N \N \N \N \N 60301 A.longerhizomatosum Asarum Asarum longerhizomatosum \N \N \N \N \N 60302 \N subspecies Conostylis aculeata subsp. bromelioides \N \N \N \N \N 60303 I.icosandra Ixonanthes Ixonanthes icosandra \N \N \N \N \N 60304 O.buchtienoides Oncidium Oncidium buchtienoides \N \N \N \N \N 60305 \N genus Hyparrhenia \N \N \N \N \N 60306 L.hirsuta Lasiospora Lasiospora hirsuta \N \N \N \N \N 60307 S.longiligulata Sasa Sasa longiligulata \N \N \N \N \N 60308 L.albiflora Lonicera Lonicera albiflora \N \N \N \N \N 60309 R.acanthophora Rochefortia Rochefortia acanthophora \N \N \N \N \N 60310 H.bursiferum Heliotropium Heliotropium bursiferum \N \N \N \N \N 60311 G.divaricata Gymnosporia Gymnosporia divaricata \N \N \N \N \N 60312 A.brandegei Arracacia Arracacia brandegei \N \N \N \N \N 60313 \N varietas Cypripedium macranthos var. rebunense \N \N \N \N \N 60314 \N genus Gloriosa climbing lilies \N \N \N \N 60315 S.myanmarensis Smithatris Smithatris myanmarensis \N \N \N \N \N 60316 C.pendula Cuitlauzina Cuitlauzina pendula \N \N \N \N \N 60317 \N subspecies Carex nigra subsp. nigra \N \N \N \N \N 60318 \N subspecies Heliosperma veselskyi subsp. glutinosum \N \N \N \N \N 60319 E.tenuifolia Eragrostis Eragrostis tenuifolia \N \N \N \N \N 60320 \N varietas Musineon divaricatum var. divaricatum \N \N \N \N \N 60321 D.alliaceum Dysoxylum Dysoxylum alliaceum \N \N \N \N \N 60322 M.jostii Maxillaria Maxillaria jostii \N \N \N \N \N 60323 F.hatschbachii Fuchsia Fuchsia hatschbachii \N \N \N \N \N 60324 O.odorata Oenothera Oenothera odorata \N \N \N \N \N 60325 T.elegans Thelepogon Thelepogon elegans \N \N \N \N \N 60326 T.mongolica Tetraena Tetraena mongolica \N \N \N \N \N 60327 C.lamiifolia Calceolaria Calceolaria lamiifolia \N \N \N \N \N 60328 A.reticulata Asimina Asimina reticulata \N \N \N \N \N 60329 P.angustifolia Populus Populus fremontii x Populus angustifolia \N \N \N \N \N 60330 T.coloradoensis Triodanis Triodanis coloradoensis \N \N \N \N \N 60331 H.puerense Hedychium Hedychium puerense \N \N \N \N \N 60332 I.santapaui Ischaemum Ischaemum santapaui \N \N \N \N \N 60333 \N subspecies Genista sylvestris subsp. dalmatica \N \N \N \N \N 60334 G.angustifolia Galeopsis Galeopsis angustifolia \N \N \N \N \N 60335 L.lumbricoides Lepismium Lepismium lumbricoides \N \N \N \N \N 60336 E.tarae Edraianthus Edraianthus tarae \N \N \N \N \N 60337 F.townsendianus Ferocactus Ferocactus townsendianus \N \N \N \N \N 60338 \N genus Calycophyllum \N \N \N \N \N 60339 S.fragilis Sonchus Sonchus fragilis \N \N \N \N \N 60340 \N varietas Astragalus pastorius var. linearibracteatus \N \N \N \N \N 60341 M.crenulata Marina Marina crenulata \N \N \N \N \N 60342 \N genus Epigeneium \N \N \N \N \N 60343 O.anatolicum Onopordum Onopordum anatolicum \N \N \N \N \N 60344 \N varietas Oxalis ptychoclada var. trichocarpa \N \N \N \N \N 60345 S.eurycarpum Sparganium Sparganium eurycarpum \N \N \N \N \N 60346 C.grandis Coccinia Coccinia grandis \N \N \N \N \N 60347 T.acanthocoma Trithrinax Trithrinax acanthocoma \N \N \N \N \N 60348 E.ampliphylla Euphorbia Euphorbia ampliphylla \N \N \N \N \N 60349 M.salicifolia Maytenus Maytenus salicifolia \N \N \N \N \N 60350 S.scalarinervis Stemonoporus Stemonoporus scalarinervis \N \N \N \N \N 60351 C.curaica Carex Carex curaica \N \N \N \N \N 60352 A.pavia Aesculus Aesculus flava x Aesculus pavia \N \N \N \N \N 60353 D.kingii Deschampsia Deschampsia kingii \N \N \N \N \N 60354 P.syriaca Petroedmondia Petroedmondia syriaca \N \N \N \N \N 60355 J.jamaicensis Jacquemontia Jacquemontia jamaicensis \N \N \N \N \N 60356 C.trichodes Centropogon Centropogon trichodes \N \N \N \N \N 60357 B.annulata Begonia Begonia annulata \N \N \N \N \N 60358 P.californicus Pityopus Pityopus californicus \N \N \N \N \N 60359 P.articulata Pholidota Pholidota articulata \N \N \N \N \N 60360 C.hypoleucus Croton Croton hypoleucus \N \N \N \N \N 60361 \N subspecies Corymbia deserticola subsp. deserticola \N \N \N \N \N 60362 S.hidakamontana Salix Salix hidakamontana \N \N \N \N \N 60363 L.kelloggii Lewisia Lewisia kelloggii \N \N \N \N \N 60364 C.tritomantha Cyanea Cyanea tritomantha \N \N \N \N \N 75699 \N genus Oenanthe \N \N \N \N \N 60365 R.pauciflorum Rhododendron Rhododendron pauciflorum \N \N \N \N \N 60366 B.gracilipes Bupleurum Bupleurum gracilipes \N \N \N \N \N 60367 A.melanocarpa Aronia Aronia melanocarpa \N \N \N \N \N 60368 \N genus Oryza \N \N \N \N \N 60369 M.uniflorus Monocostus Monocostus uniflorus \N \N \N \N \N 60370 P.faulknerae Psydrax Psydrax faulknerae \N \N \N \N \N 60371 V.cuneata Vitellariopsis Vitellariopsis cuneata \N \N \N \N \N 60372 E.vulcanorum Echium Echium vulcanorum \N \N \N \N \N 60373 A.lindleyana Ardisia Ardisia lindleyana \N \N \N \N \N 60374 O.wightianum Oxypetalum Oxypetalum wightianum \N \N \N \N \N 60375 S.swinhoei Sabia Sabia swinhoei \N \N \N \N \N 60376 N.glutinosa Nicotiana Nicotiana glutinosa \N \N \N \N \N 60377 \N genus Doricera \N \N \N \N \N 60378 P.fonteboanum Piper Piper fonteboanum \N \N \N \N \N 60379 P.97-6036 Polygala Polygala sp. Kress 97-6036 \N \N \N \N \N 60380 T.68 Tricalysia Tricalysia sp. OKTAN 68 \N \N \N \N \N 60381 R.cordata Rogiera Rogiera cordata \N \N \N \N \N 60382 S.373 Schismatoclada Schismatoclada sp. Razafimandimbison & Ravelonarivo 373 \N \N \N \N \N 60383 \N subtribe Rhapidineae \N \N \N \N \N 60384 \N subspecies Erodium foetidum subsp. cheilanthifolium \N \N \N \N \N 60385 C.fantzianus Croton Croton fantzianus \N \N \N \N \N 60386 C.wilsonii Costus Costus wilsonii \N \N \N \N \N 60387 A.goetzei Adenia Adenia goetzei \N \N \N \N \N 60388 C.1560 Cyrtochilum Cyrtochilum cf. cimiciferum Whitten 1560 \N \N \N \N \N 60389 B.lomatogona Beta Beta lomatogona \N \N \N \N \N 60390 \N subspecies Thymelaea pubescens subsp. pubescens \N \N \N \N \N 60391 \N genus Isachne \N \N \N \N \N 60392 \N subspecies Navarretia leucocephala subsp. bakeri \N \N \N \N \N 60393 \N genus Uraria \N \N \N \N \N 60394 P.sericifolium Pelargonium Pelargonium sericifolium \N \N \N \N \N 60395 \N genus Oreoporanthera \N \N \N \N \N 60396 P.axillaris Petunia Petunia axillaris large white petunia,white moon petunia \N \N \N \N 60397 \N subspecies Colchicum chalcedonicum subsp. chalcedonicum \N \N \N \N \N 60398 S.cipoensis Syngonanthus Syngonanthus cipoensis \N \N \N \N \N 60399 G.canescens Glycine Glycine canescens \N \N \N \N \N 60400 \N varietas Boechera pendulina var. russeola \N \N \N \N \N 60401 A.villosum Aichryson Aichryson villosum \N \N \N \N \N 60402 C.sapiifolius Croton Croton sapiifolius \N \N \N \N \N 60403 S.alfaroi Stemmadenia Stemmadenia alfaroi \N \N \N \N \N 60404 G.littoralis Griselinia Griselinia littoralis \N \N \N \N \N 60405 B.OR3482003 Bulbophyllum Bulbophyllum sp. OR3482003 \N \N \N \N \N 60406 D.cucullata Disperis Disperis cucullata \N \N \N \N \N 60407 P.hordeiformis Perotis Perotis hordeiformis \N \N \N \N \N 60408 \N varietas Cotyledon orbiculata var. orbiculata \N \N \N \N \N 60409 P.sibiricus Potamogeton Potamogeton sibiricus \N \N \N \N \N 60410 S.smithiana Shorea Shorea smithiana \N \N \N \N \N 60411 \N subspecies Pisum sativum subsp. asiaticum \N \N \N \N \N 60412 C.yarey Copernicia Copernicia yarey \N \N \N \N \N 60413 \N subspecies Cuphea calophylla subsp. mesostemon \N \N \N \N \N 60414 P.adamantinum Philodendron Philodendron adamantinum \N \N \N \N \N 60415 M.aphylla Microcoelia Microcoelia aphylla \N \N \N \N \N 60416 Z.gracilis Zaluzianskya Zaluzianskya gracilis \N \N \N \N \N 60417 C.solaris Copiapoa Copiapoa solaris \N \N \N \N \N 60418 H.tatarinowii Hylotelephium Hylotelephium tatarinowii \N \N \N \N \N 60419 P.heucherifolium Presliophytum Presliophytum heucherifolium \N \N \N \N \N 60420 E.acuta Eleocharis Eleocharis acuta \N \N \N \N \N 60421 Z.SRR-2011 unclassified Zygopetalinae Zygopetalinae sp. 11 SRR-2011 \N \N \N \N \N 60422 O.ikonyokpe Ocotea Ocotea ikonyokpe \N \N \N \N \N 60423 S.seemannii Stevia Stevia seemannii \N \N \N \N \N 60424 L.pseudoviscosa Linaria Linaria pseudoviscosa \N \N \N \N \N 60425 K.muelleri Kunzea Kunzea muelleri \N \N \N \N \N 60426 \N varietas Rhododendron neriiflorum var. appropinquans \N \N \N \N \N 60427 B.julianae Berberis Berberis julianae \N \N \N \N \N 60428 \N genus Portea \N \N \N \N \N 60429 B.fasciculatus Bromus Bromus fasciculatus \N \N \N \N \N 60430 M.teneriffae Micromeria Micromeria teneriffae \N \N \N \N \N 60431 H.fastigiata Hypolaena Hypolaena fastigiata \N \N \N \N \N 60432 \N genus Erythrina \N \N \N \N \N 60433 R.serpens Ranunculus Ranunculus serpens \N \N \N \N \N 60434 L.pilosa Leptodermis Leptodermis pilosa \N \N \N \N \N 60435 S.fragarioides Saxifragopsis Saxifragopsis fragarioides \N \N \N \N \N 60436 T.wasshausenii Tetramerium Tetramerium wasshausenii \N \N \N \N \N 60437 C.fuscescens Coelogyne Coelogyne fuscescens \N \N \N \N \N 60438 B.axillaris Blumea Blumea axillaris \N \N \N \N \N 60439 P.rugosa Paris Paris rugosa \N \N \N \N \N 60440 H.costata Hydriastele Hydriastele costata \N \N \N \N \N 60441 A.hispidum Acanthospermum Acanthospermum hispidum \N \N \N \N \N 60442 M.zpl Mentha Mentha sp. MIB zpl \N \N \N \N \N 60443 L.hirsuta Lactuca Lactuca hirsuta \N \N \N \N \N 60444 G.1799-6 Gymnocalycium Gymnocalycium sp. HA 1799-6 \N \N \N \N \N 60445 C.perpendicularis Cliffortia Cliffortia perpendicularis \N \N \N \N \N 60446 R.nobilis Rhodocolea Rhodocolea nobilis \N \N \N \N \N 60447 \N varietas Cuscuta foetida var. pycnantha \N \N \N \N \N 60448 M.pentlandiana Mandevilla Mandevilla pentlandiana \N \N \N \N \N 60449 B.cylindrica Begonia Begonia cylindrica \N \N \N \N \N 60450 P.purpurea Phlomis Phlomis purpurea \N \N \N \N \N 60451 T.patellitecta Trianthema Trianthema patellitecta \N \N \N \N \N 60452 D.podocarpus Didymocarpus Didymocarpus podocarpus \N \N \N \N \N 60453 A.elegans Alpinia Alpinia elegans \N \N \N \N \N 60454 I.elegantissima Iris Iris elegantissima \N \N \N \N \N 60455 O.powellii Oncidium Oncidium powellii \N \N \N \N \N 60456 B.dhofarensis Blepharis Blepharis dhofarensis \N \N \N \N \N 60457 C.submutica Chloris Chloris submutica \N \N \N \N \N 60458 F.pygmaea Fryxellia Fryxellia pygmaea \N \N \N \N \N 60459 \N genus Solenopsis \N \N \N \N \N 60460 H.conspicua Hibbertia Hibbertia conspicua \N \N \N \N \N 60461 C.axillaris Croton Croton axillaris \N \N \N \N \N 60462 I.jaegeri Ivesia Ivesia jaegeri \N \N \N \N \N 60463 P.galeottii Phoradendron Phoradendron galeottii \N \N \N \N \N 60464 T.arachnites Thrixspermum Thrixspermum arachnites \N \N \N \N \N 60465 G.fastigiata Gentianella Gentianella fastigiata \N \N \N \N \N 60466 \N subspecies Carlina libanotica subsp. microcephala \N \N \N \N \N 60467 S.sisymbrioides Smelowskia Smelowskia sisymbrioides \N \N \N \N \N 60468 E.valida Erica Erica valida \N \N \N \N \N 60469 E.arcuatus Enarthrocarpus Enarthrocarpus arcuatus \N \N \N \N \N 60470 C.thyrsiflorus Ceanothus Ceanothus thyrsiflorus \N \N \N \N \N 60471 D.cuzcoensis Draba Draba cuzcoensis \N \N \N \N \N 60472 G.cordata Gerbera Gerbera cordata \N \N \N \N \N 60473 L.magnifica Leucaena Leucaena magnifica palo de guaje,vainillo \N \N \N \N 60474 P.s.n. Prescottia Prescottia sp. Hajeckt s.n. \N \N \N \N \N 60475 \N subtribe Miliinae \N \N \N \N \N 60476 D.oxyglossa Disperis Disperis oxyglossa \N \N \N \N \N 60477 \N subspecies Vicia sativa subsp. macrocarpa \N \N \N \N \N 60478 O.ariasii Oncidium Oncidium ariasii \N \N \N \N \N 60479 P.epiphyllanthus Phyllanthus Phyllanthus epiphyllanthus \N \N \N \N \N 60480 P.stipulacea Piptadenia Piptadenia stipulacea \N \N \N \N \N 60481 M.bartlettii Metrosideros Metrosideros bartlettii \N \N \N \N \N 60482 M.pteroclada Miconia Miconia pteroclada \N \N \N \N \N 60483 F.dugandii Ficus Ficus dugandii \N \N \N \N \N 60484 G.columnae Gentianella Gentianella columnae \N \N \N \N \N 60485 S.autapormorpha Strobilanthes Strobilanthes autapormorpha \N \N \N \N \N 60486 M.stolzii Microcoelia Microcoelia stolzii \N \N \N \N \N 60487 A.genesiana Armeria Armeria genesiana \N \N \N \N \N 60488 C.hibiscifolius Croton Croton hibiscifolius \N \N \N \N \N 60489 G.knuthii Geranium Geranium knuthii \N \N \N \N \N 60490 O.prognatha Orbea Orbea prognatha \N \N \N \N \N 60491 S.tenuis Swertia Swertia tenuis \N \N \N \N \N 60492 P.capensis Pleurostylia Pleurostylia capensis \N \N \N \N \N 60493 P.purpureobracteata Polystachya Polystachya purpureobracteata \N \N \N \N \N 60494 G.globulosa Garcinia Garcinia globulosa \N \N \N \N \N 60495 \N genus Anagyris \N \N \N \N \N 60496 \N subspecies Polemonium pulcherrimum subsp. lindleyi \N \N \N \N \N 60497 C.latifolia Cinna Cinna latifolia \N \N \N \N \N 60498 C.fruticosa Coursetia Coursetia fruticosa \N \N \N \N \N 60499 P.rusbyi Piper Piper rusbyi \N \N \N \N \N 60500 S.pulcherrima Solms-laubachia Solms-laubachia pulcherrima \N \N \N \N \N 60501 S.rhynchanthum Satyrium Satyrium rhynchanthum \N \N \N \N \N 60502 A.platyphylla Astilbe Astilbe platyphylla \N \N \N \N \N 60503 B.affinis Bambusa Bambusa affinis \N \N \N \N \N 60504 \N genus Cyathopsis \N \N \N \N \N 60505 \N genus Diplodium \N \N \N \N \N 60506 X.purpusii Xylothamia Xylothamia purpusii \N \N \N \N \N 60507 E.muricatus Echinodorus Echinodorus muricatus \N \N \N \N \N 60508 D.tutcheri Distyliopsis Distyliopsis tutcheri \N \N \N \N \N 60509 T.angustifolium Trifolium Trifolium angustifolium \N \N \N \N \N 60510 L.digynum Lachnocaulon Lachnocaulon digynum \N \N \N \N \N 60511 T.tuerckheimii Tolumnia Tolumnia tuerckheimii \N \N \N \N \N 60512 A.jepsonii Allium Allium jepsonii \N \N \N \N \N 60513 R.hongkongense Rhododendron Rhododendron hongkongense \N \N \N \N \N 60514 \N subspecies Juncus prismatocarpus subsp. leschenaultii \N \N \N \N \N 60515 \N genus Kydia \N \N \N \N \N 60516 \N varietas Viola verecunda var. semilunaris \N \N \N \N \N 60517 D.trichanthera Dyschoriste Dyschoriste trichanthera \N \N \N \N \N 60518 A.medium Amydrium Amydrium medium \N \N \N \N \N 60519 S.rhamnoides Sauropus Sauropus rhamnoides \N \N \N \N \N 60520 T.spinosum Trigonella Trigonella spinosum \N \N \N \N \N 60521 P.trifoliatus Pentapanax Pentapanax trifoliatus \N \N \N \N \N 60522 C.striata Ceropegia Ceropegia striata \N \N \N \N \N 60523 A.johnstonii Alchemilla Alchemilla johnstonii \N \N \N \N \N 60524 P.polydenius Psorothamnus Psorothamnus polydenius \N \N \N \N \N 60525 \N genus Ostodes \N \N \N \N \N 60526 S.gerrardii Seemannaralia Seemannaralia gerrardii \N \N \N \N \N 60527 S.glomeratus Senecio Senecio glomeratus \N \N \N \N \N 60528 \N varietas Mimosa hirsutissima var. barbigera \N \N \N \N \N 60529 C.pumilum Calligonum Calligonum pumilum \N \N \N \N \N 60530 C.setifolia Cliffortia Cliffortia setifolia \N \N \N \N \N 60531 \N tribe Heteromorpheae \N \N \N \N \N 60532 A.foetidum Anemopaegma Anemopaegma foetidum \N \N \N \N \N 60533 M.hebecarpa Manglietia Manglietia hebecarpa \N \N \N \N \N 60534 S.africana Spirostachys Spirostachys africana \N \N \N \N \N 60535 B.kingii Blepharidachne Blepharidachne kingii \N \N \N \N \N 60536 \N varietas Calycanthus floridus var. glaucus \N \N \N \N \N 60537 O.flavum Ormocarpum Ormocarpum flavum \N \N \N \N \N 60538 P.cornigera Pedicularis Pedicularis cornigera \N \N \N \N \N 60539 A.favargeri Arenaria Arenaria favargeri \N \N \N \N \N 60540 N.21 Niemeyera Niemeyera aff. antiloga Bartish and Ford 21 \N \N \N \N \N 60541 A.sicaria Acianthera Acianthera sicaria \N \N \N \N \N 60542 M.mauritiana Macaranga Macaranga mauritiana \N \N \N \N \N 60543 \N genus Conostomium \N \N \N \N \N 60544 H.hoffmannii Hylaeanthe Hylaeanthe hoffmannii \N \N \N \N \N 60545 \N genus Otochilus \N \N \N \N \N 60546 \N subspecies Crepis bakeri subsp. bakeri \N \N \N \N \N 60547 S.petersiana Senna Senna petersiana \N \N \N \N \N 60548 \N genus Talinella \N \N \N \N \N 60549 C.erioclona Callicarpa Callicarpa erioclona \N \N \N \N \N 60550 A.pusilla Allocasuarina Allocasuarina pusilla \N \N \N \N \N 60551 C.montbretii Cicer Cicer montbretii \N \N \N \N \N 60552 T.nitens Trema Trema nitens \N \N \N \N \N 60553 S.amoebiflorus Sauropus Sauropus amoebiflorus \N \N \N \N \N 60554 \N genus Sarcoglyphis \N \N \N \N \N 60555 C.lancifolium Chlorophytum Chlorophytum lancifolium \N \N \N \N \N 60556 A.disperma Acanthopsis Acanthopsis disperma \N \N \N \N \N 60557 L.breweri Lupinus Lupinus breweri \N \N \N \N \N 60558 D.mollis Dalea Dalea mollis \N \N \N \N \N 60560 \N subspecies Oenothera pallida subsp. runcinata \N \N \N \N \N 60561 C.integrifolia Croatiella Croatiella integrifolia \N \N \N \N \N 60562 S.stenoptera Shorea Shorea stenoptera \N \N \N \N \N 60563 P.compacta Platystele Platystele compacta \N \N \N \N \N 60564 S.campestris Stylosanthes Stylosanthes campestris \N \N \N \N \N 60565 D.fletcheriana Duranta Duranta fletcheriana \N \N \N \N \N 60566 C.rugosa Coccoloba Coccoloba rugosa \N \N \N \N \N 60567 I.sylvicola Impatiens Impatiens sylvicola \N \N \N \N \N 60568 E.hirtella Euphorbia Euphorbia hirtella \N \N \N \N \N 60569 D.aurantiocaulis Dysosma Dysosma aurantiocaulis \N \N \N \N \N 60570 A.tuberosa Arachis Arachis tuberosa \N \N \N \N \N 60571 G.tetrasticha Gentiana Gentiana tetrasticha \N \N \N \N \N 60572 \N subtribe Chloraeinae \N \N \N \N \N 60573 N.paniculata Neslia Neslia paniculata ball mustard \N \N \N \N 60574 \N varietas Spiraea alba var. latifolia \N \N \N \N \N 60575 A.heterodoxus Astragalus Astragalus heterodoxus \N \N \N \N \N 60576 \N genus Macrosphyra \N \N \N \N \N 60577 D.griffithii Durio Durio griffithii \N \N \N \N \N 60578 L.organensis Lobelia Lobelia organensis \N \N \N \N \N 60579 A.wanyu Acacia Acacia wanyu \N \N \N \N \N 60580 R.hoffmeisterianus Rubus Rubus hoffmeisterianus \N \N \N \N \N 60581 A.hirta Armeria Armeria hirta \N \N \N \N \N 60582 T.fragilis Tuctoria Tuctoria fragilis \N \N \N \N \N 60583 L.NSW714449 Lepidobolus Lepidobolus sp. NSW714449 \N \N \N \N \N 60584 \N genus Dedeckera \N \N \N \N \N 60585 P.holstii Polystachya Polystachya holstii \N \N \N \N \N 60586 O.ovalifolia Ottelia Ottelia ovalifolia \N \N \N \N \N 60587 A.bilirana Agalmyla Agalmyla bilirana \N \N \N \N \N 60588 P.felicis Polyscias Polyscias felicis \N \N \N \N \N 60589 A.filicaulis Annesorhiza Annesorhiza filicaulis \N \N \N \N \N 60590 \N genus Melianthus \N \N \N \N \N 60591 E.dregei Erianthemum Erianthemum dregei \N \N \N \N \N 60592 M.micromeria Minaria Minaria micromeria \N \N \N \N \N 60593 I.2980 Ixora Ixora sp. Malcomber et al. 2980 \N \N \N \N \N 60594 \N genus Barbaceniopsis \N \N \N \N \N 60595 W.austroqueenslandica Wilkiea Wilkiea austroqueenslandica \N \N \N \N \N 60596 S.peruviana Swartzia Swartzia peruviana \N \N \N \N \N 60597 A.subflava Arabis Arabis subflava \N \N \N \N \N 60598 M.nidifica Masdevallia Masdevallia nidifica \N \N \N \N \N 60599 \N genus Lundia \N \N \N \N \N 60600 \N varietas Hedysarum alpinum var. americanum liquorice-root \N \N \N \N 60601 G.cordifolia Gunnera Gunnera cordifolia \N \N \N \N \N 60602 P.imbaburensis Pappobolus Pappobolus imbaburensis \N \N \N \N \N 60603 \N varietas Dicerandra linearifolia var. robustior \N \N \N \N \N 60604 P.rhoeas Papaver Papaver rhoeas Flanders poppy,field poppy \N \N \N \N 60605 B.sceptrum Banksia Banksia sceptrum \N \N \N \N \N 60606 M.weberi Mitrephora Mitrephora weberi \N \N \N \N \N 60607 F.trigonata Ficus Ficus trigonata \N \N \N \N \N 60608 S.confertiflora Salvia Salvia confertiflora \N \N \N \N \N 60609 S.indicus Sporobolus Sporobolus indicus smut grass \N \N \N \N 60610 \N genus Parthenocissus \N \N \N \N \N 60611 \N genus Heteropogon \N \N \N \N \N 60612 S.cataphractum Solanum Solanum cataphractum \N \N \N \N \N 60613 E.marojejyense Exacum Exacum marojejyense \N \N \N \N \N 60614 T.conothelos Thelocactus Thelocactus conothelos \N \N \N \N \N 60615 A.sikkimense Allium Allium sikkimense \N \N \N \N \N 60616 Z.austrosinense Zanthoxylum Zanthoxylum austrosinense \N \N \N \N \N 60617 M.mossamedensis Monsonia Monsonia mossamedensis \N \N \N \N \N 60618 P.colensoi Phyllachne Phyllachne colensoi \N \N \N \N \N 60619 A.1081 Adenia Adenia sp. Barthelat 1081 \N \N \N \N \N 60620 C.dubia Cousinia Cousinia dubia \N \N \N \N \N 60621 C.utleyana Clidemia Clidemia utleyana \N \N \N \N \N 60622 A.salzmannii Argantoniella Argantoniella salzmannii \N \N \N \N \N 60623 D.bivalvata Disa Disa bivalvata \N \N \N \N \N 60624 A.leucophylla Arachnothryx Arachnothryx leucophylla \N \N \N \N \N 60625 S.longipes Sisyrinchium Sisyrinchium longipes \N \N \N \N \N 60626 \N varietas Salix exigua var. hindsiana \N \N \N \N \N 60627 B.vestitum Bulbophyllum Bulbophyllum vestitum \N \N \N \N \N 60628 \N genus Clusia \N \N \N \N \N 60629 L.96072 Lilium Lilium sp. Qiu 96072 \N \N \N \N \N 60630 O.tibeticum Omphalogramma Omphalogramma tibeticum \N \N \N \N \N 60631 L.liukiuensis Lysimachia Lysimachia liukiuensis \N \N \N \N \N 60632 H.ellipticifolium Hapaline Hapaline ellipticifolium \N \N \N \N \N 60633 S.nodosa Scrophularia Scrophularia nodosa figwort \N \N \N \N 60634 A.marginatus Astephanus Astephanus marginatus \N \N \N \N \N 60635 P.henryanum Paphiopedilum Paphiopedilum henryanum \N \N \N \N \N 60636 P.pauciflora Picris Picris pauciflora \N \N \N \N \N 60637 S.natalensis Stylochaeton Stylochaeton natalensis \N \N \N \N \N 60638 X.africana Xylia Xylia africana \N \N \N \N \N 60639 \N genus Mercurialis \N \N \N \N \N 60640 \N genus Ianhedgea \N \N \N \N \N 60641 C.dasyandra Cischweinfia Cischweinfia dasyandra \N \N \N \N \N 60642 H.brachyphyllum Hypericum Hypericum brachyphyllum \N \N \N \N \N 60643 C.versicolor Crocus Crocus versicolor \N \N \N \N \N 60644 C.scutellata Campanula Campanula scutellata \N \N \N \N \N 60645 C.coenobialis Caulokaempferia Caulokaempferia coenobialis \N \N \N \N \N 60646 A.andersonii Alseodaphne Alseodaphne andersonii \N \N \N \N \N 60647 C.talyschensis Cota Cota talyschensis \N \N \N \N \N 60648 T.annua Tornabenea Tornabenea annua \N \N \N \N \N 60649 S.lutea Sanchezia Sanchezia lutea \N \N \N \N \N 60650 H.trigonus Hylocereus Hylocereus trigonus strawberry-pear \N \N \N \N 60651 P.cordatilimbum Piper Piper cordatilimbum \N \N \N \N \N 60652 I.pumila Irlbachia Irlbachia pumila \N \N \N \N \N 60653 L.delavayi Ligusticum Ligusticum delavayi \N \N \N \N \N 60654 \N subspecies Leucadendron elimense subsp. vyeboomense \N \N \N \N \N 60655 S.wilmottiana Sorbus Sorbus wilmottiana \N \N \N \N \N 60656 S.setosa Smilax Smilax setosa \N \N \N \N \N 60657 A.oxycedri Arceuthobium Arceuthobium oxycedri \N \N \N \N \N 60658 A.spirale Allium Allium spirale \N \N \N \N \N 60659 D.madagascariensis Drypetes Drypetes madagascariensis \N \N \N \N \N 60660 G.rosmarinifolia Glandora Glandora rosmarinifolia \N \N \N \N \N 60661 O.6629 Orobanche Orobanche cf. aegyptiaca HST 6629 \N \N \N \N \N 60662 B.paxii Berberis Berberis paxii \N \N \N \N \N 60663 A.flagellifolius Araeococcus Araeococcus flagellifolius \N \N \N \N \N 60664 \N subspecies Lysimachia remyi subsp. kipahuluensis \N \N \N \N \N 60665 D.nudiflora Daviesia Daviesia nudiflora \N \N \N \N \N 60666 S.veitchii Sasa Sasa veitchii \N \N \N \N \N 60667 \N genus Phrynium \N \N \N \N \N 60668 B.citrifolia Buxus Buxus citrifolia \N \N \N \N \N 60669 E.25593 Eschweilera Eschweilera sp. Mori et al. 25593 \N \N \N \N \N 60670 O.mesaritica Ophrys Ophrys mesaritica \N \N \N \N \N 60671 \N genus Xylococcus \N \N \N \N \N 60672 \N genus Epischoenus \N \N \N \N \N 60673 B.purpurata Bletia Bletia purpurata \N \N \N \N \N 60674 T.setosa Triplaris Triplaris setosa \N \N \N \N \N 60675 G.9000 Guatteria Guatteria cf. lasiocalyx Maas et al. 9000 \N \N \N \N \N 60676 S.golickeana Schrenkia Schrenkia golickeana \N \N \N \N \N 60677 \N genus Bakoa \N \N \N \N \N 60678 G.noxium Galium Galium noxium \N \N \N \N \N 60679 S.versadense Sedum Sedum versadense \N \N \N \N \N 60680 \N genus Cordobia \N \N \N \N \N 60681 \N genus Straussiella \N \N \N \N \N 60682 P.volchovense Polygonum Polygonum volchovense \N \N \N \N \N 60683 \N genus Neonelsonia \N \N \N \N \N 60684 C.glabriflora Crypteronia Crypteronia glabriflora \N \N \N \N \N 60685 S.herzogii Schefflera Schefflera herzogii \N \N \N \N \N 60686 \N genus Broussonetia \N \N \N \N \N 60687 S.aurita Salvia Salvia aurita \N \N \N \N \N 60688 E.fasciculata Euphorbia Euphorbia fasciculata \N \N \N \N \N 60689 P.petersonii Panicum Panicum petersonii \N \N \N \N \N 60690 A.multifida Azorella Azorella multifida \N \N \N \N \N 60691 P.major Pappostipa Pappostipa major \N \N \N \N \N 60692 C.purpurascens Cyclamen Cyclamen persicum x Cyclamen purpurascens \N \N \N \N \N 60693 \N genus Barbrodria \N \N \N \N \N 60694 O.caespitosa Onosma Onosma caespitosa \N \N \N \N \N 60695 C.atropurpurea Callerya Callerya atropurpurea \N \N \N \N \N 60696 P.geminiflora Plectocomiopsis Plectocomiopsis geminiflora \N \N \N \N \N 60697 A.kimberleyanus Alectryon Alectryon kimberleyanus \N \N \N \N \N 60698 \N varietas Caragana korshinskii var. intermedia \N \N \N \N \N 60699 K.petiolaris Kielmeyera Kielmeyera petiolaris \N \N \N \N \N 60700 C.mecistandrum Chaunostoma Chaunostoma mecistandrum \N \N \N \N \N 60701 P.americanus Plectocephalus Plectocephalus americanus \N \N \N \N \N 60702 C.daphnoides Cubanola Cubanola daphnoides \N \N \N \N \N 60703 \N genus Fegimanra \N \N \N \N \N 60704 O.meyeriana Oryza Oryza meyeriana \N \N \N \N \N 60705 E.albensis Epipactis Epipactis albensis \N \N \N \N \N 60706 M.implicata Muhlenbergia Muhlenbergia implicata \N \N \N \N \N 60707 E.bungei Euphorbia Euphorbia bungei \N \N \N \N \N 60708 \N subspecies Tillandsia tortilis subsp. tortilis \N \N \N \N \N 60709 S.sympodialis Stylosanthes Stylosanthes sympodialis \N \N \N \N \N 60710 A.trigonus Ariocarpus Ariocarpus trigonus \N \N \N \N \N 60711 A.obtusata Acmadenia Acmadenia obtusata \N \N \N \N \N 60712 H.tysonii Hemigenia Hemigenia tysonii \N \N \N \N \N 60713 M.parviflora Matthiola Matthiola parviflora \N \N \N \N \N 60714 H.reverchonii Hormathophylla Hormathophylla reverchonii \N \N \N \N \N 60715 S.henryana Steudnera Steudnera henryana \N \N \N \N \N 60716 \N tribe Polymnieae \N \N \N \N \N 60717 U.jubata Urochloa Urochloa jubata \N \N \N \N \N 60718 C.axillaris Choerospondias Choerospondias axillaris \N \N \N \N \N 60719 \N subspecies Tina striata subsp. striata \N \N \N \N \N 60720 C.trigynum Colchicum Colchicum trigynum \N \N \N \N \N 60721 S.finlayanum Stigmaphyllon Stigmaphyllon finlayanum \N \N \N \N \N 60722 M.pentandra Mitella Mitella pentandra \N \N \N \N \N 60723 \N subspecies Cucurbita pepo subsp. fraterna \N \N \N \N \N 60724 H.fragrans Heteropanax Heteropanax fragrans \N \N \N \N \N 60725 \N subspecies Echinopsis chiloensis subsp. litoralis \N \N \N \N \N 60726 C.junonianus Cheirolophus Cheirolophus junonianus \N \N \N \N \N 60727 T.SH-2010 Trichosanthes Trichosanthes sp. SH-2010 \N \N \N \N \N 60728 S.arbusculiformis Salsola Salsola arbusculiformis \N \N \N \N \N 60729 O.mikanioides Oblivia Oblivia mikanioides \N \N \N \N \N 60730 M.pinnata Munronia Munronia pinnata \N \N \N \N \N 60731 G.carlomunozii Griselinia Griselinia carlomunozii \N \N \N \N \N 60732 C.microphylla Clematis Clematis microphylla \N \N \N \N \N 60733 A.dielsii Angelica Angelica dielsii \N \N \N \N \N 60734 A.macrostachya Acacia Acacia macrostachya \N \N \N \N \N 60735 P.diclina Pseudomalmea Pseudomalmea diclina \N \N \N \N \N 60736 \N subspecies Argemone squarrosa subsp. glabrata \N \N \N \N \N 60737 C.dasyphylla Caragana Caragana dasyphylla \N \N \N \N \N 60738 Z.gaetulum Zygophyllum Zygophyllum gaetulum \N \N \N \N \N 60739 B.steyermarkii Bonnetia Bonnetia steyermarkii \N \N \N \N \N 60740 S.glauca Sideritis Sideritis glauca \N \N \N \N \N 60741 M.fragrans Matthiola Matthiola fragrans \N \N \N \N \N 60742 S.oligandra Sida Sida oligandra \N \N \N \N \N 60743 P.clavata Pentaschistis Pentameris clavata \N \N \N \N \N 60744 R.apiculata Rupicola Rupicola apiculata \N \N \N \N \N 60745 G.peruviana Glandularia Glandularia peruviana \N \N \N \N \N 60746 \N genus Hemilophia \N \N \N \N \N 60747 \N varietas Actinidia hemsleyana var. hemsleyana \N \N \N \N \N 60748 T.petaloideum Thalictrum Thalictrum petaloideum \N \N \N \N \N 60749 C.lotoides Crotalaria Crotalaria lotoides \N \N \N \N \N 60750 \N genus Leptolaena \N \N \N \N \N 60751 E.cooperi Euphorbia Euphorbia cooperi \N \N \N \N \N 60752 R.biauriculata Rauvolfia Rauvolfia biauriculata \N \N \N \N \N 60753 C.jaennensis Centaurea Centaurea jaennensis \N \N \N \N \N 60754 B.oxychilum Bulbophyllum Bulbophyllum oxychilum \N \N \N \N \N 60755 P.scaberula Poa Poa scaberula \N \N \N \N \N 60756 B.pubescens Brownanthus Brownanthus pubescens \N \N \N \N \N 60757 \N subspecies Aspalathus teres subsp. teres \N \N \N \N \N 60758 C.rupestris Calceolaria Calceolaria rupestris \N \N \N \N \N 60759 \N varietas Prunus persica var. persica \N \N \N \N \N 60760 F.amboinensis Flindersia Flindersia amboinensis \N \N \N \N \N 60761 D.rupestre Diplostephium Diplostephium rupestre \N \N \N \N \N 60762 \N subspecies Capeochloa cincta subsp. cincta \N \N \N \N \N 60763 S.coccinea Sophronitis Sophronitis coccinea \N \N \N \N \N 60764 \N genus Abelia \N \N \N \N \N 60765 H.spergulacea Hypertelis Hypertelis spergulacea \N \N \N \N \N 60766 P.rosulatifolia Psychotria Psychotria rosulatifolia \N \N \N \N \N 60767 \N genus Lycomormium \N \N \N \N \N 60768 \N genus Sylvichadsia \N \N \N \N \N 60769 S.anthelmia Spigelia Spigelia anthelmia pink root of Demerara \N \N \N \N 60770 \N subspecies Jasminum grandiflorum subsp. floribundum \N \N \N \N \N 60771 \N subspecies Anchusa undulata subsp. hybrida \N \N \N \N \N 60772 P.gramineus Potamogeton Potamogeton gramineus grass-leaf pondweed \N \N \N \N 60773 C.mirabilis Calathea Calathea mirabilis \N \N \N \N \N 60774 C.sympetala Caryota Caryota sympetala \N \N \N \N \N 60775 A.macedonica Anthemis Anthemis macedonica \N \N \N \N \N 60776 N.tagetina Navarretia Navarretia tagetina \N \N \N \N \N 60777 H.papilio Hippeastrum Hippeastrum papilio \N \N \N \N \N 60778 M.dasyantha Malabaila Malabaila dasyantha \N \N \N \N \N 60779 \N genus Schoenus \N \N \N \N \N 60780 A.bonatianum Arisaema Arisaema bonatianum \N \N \N \N \N 60781 B.rufa Bauhinia Bauhinia rufa \N \N \N \N \N 60782 \N genus Eustigma \N \N \N \N \N 60783 A.galeata Aristolochia Aristolochia galeata \N \N \N \N \N 60784 P.298N Peperomia Peperomia sp. 298N \N \N \N \N \N 60785 C.africana Cordyla Cordyla africana \N \N \N \N \N 60786 C.petrophila Coreopsis Coreopsis petrophila \N \N \N \N \N 60787 E.grande Elatostema Elatostema grande \N \N \N \N \N 60788 C.rosthornianus Celastrus Celastrus rosthornianus \N \N \N \N \N 60789 M.bahamensis Mimosa Mimosa bahamensis \N \N \N \N \N 60790 P.amplifolius Potamogeton Potamogeton amplifolius \N \N \N \N \N 60791 A.deanei Acacia Acacia deanei \N \N \N \N \N 60792 A.borealis Alopecurus Alopecurus borealis \N \N \N \N \N 60793 I.setiflora Indigofera Indigofera setiflora \N \N \N \N \N 60794 L.0301 Lonicera Lonicera sp. Bergthorsson 0301 \N \N \N \N \N 60795 B.566 Begonia Begonia sp. Pendry 566 \N \N \N \N \N 60796 P.bambusoides Phyllostachys Phyllostachys edulis x Phyllostachys bambusoides \N \N \N \N \N 60797 P.obovoidea Pouteria Pouteria obovoidea \N \N \N \N \N 60798 \N forma Salix caprea f. pendula \N \N \N \N \N 60799 E.minus Empodisma Empodisma minus \N \N \N \N \N 60800 C.ramosissimum Cyrtochilum Cyrtochilum ramosissimum \N \N \N \N \N 60801 \N genus Smyrnium \N \N \N \N \N 60802 \N genus Vanhouttea \N \N \N \N \N 60803 I.senegalensis Icacina Icacina senegalensis \N \N \N \N \N 60804 \N genus Rafflesia \N \N \N \N \N 60805 D.venosa Dichrostachys Dichrostachys venosa \N \N \N \N \N 60806 S.glutinosa Staavia Staavia glutinosa \N \N \N \N \N 60807 A.taquetii Adenophora Adenophora taquetii \N \N \N \N \N 60808 S.aemula Scaevola Scaevola aemula \N \N \N \N \N 60809 P.decora Pimelea Pimelea decora \N \N \N \N \N 60810 \N subspecies Salix pulchra subsp. parallelinervis \N \N \N \N \N 60811 B.edule Brachystelma Brachystelma edule \N \N \N \N \N 60812 S.confusa Sarcococca Sarcococca confusa \N \N \N \N \N 60813 A.montanus Acanthus Acanthus montanus \N \N \N \N \N 60814 \N varietas Swartzia apetala var. subcordata \N \N \N \N \N 60815 C.micrantha Centemopsis Centemopsis micrantha \N \N \N \N \N 60816 L.edwardii Lolium Lolium edwardii \N \N \N \N \N 60817 H.pusillum Heliosperma Heliosperma pusillum \N \N \N \N \N 60818 \N genus Rughidia \N \N \N \N \N 60819 A.triandra Areca Areca triandra \N \N \N \N \N 60820 C.ovata Camissonia Camissonia ovata golden-eggs \N \N \N \N 60821 O.zpl(2) Origanum Origanum sp. MIB zpl(2) \N \N \N \N \N 60822 L.palestina Lomelosia Lomelosia palestina \N \N \N \N \N 60823 S.rubella Shorea Shorea rubella \N \N \N \N \N 60824 P.breviglumis Poa Poa breviglumis \N \N \N \N \N 60825 \N varietas Croton alabamensis var. texensis \N \N \N \N \N 60826 \N varietas Crotalaria obtecta var. obtecta \N \N \N \N \N 60827 E.sulcata Eugenia Eugenia sulcata \N \N \N \N \N 60828 J.sinuosa Jaltomata Jaltomata sinuosa \N \N \N \N \N 60829 M.floriana Mollugo Mollugo floriana \N \N \N \N \N 60830 O.brenesii Ossaea Ossaea brenesii \N \N \N \N \N 60831 C.undulata Charybdis Charybdis undulata \N \N \N \N \N 60832 C.dioica Carex Carex dioica \N \N \N \N \N 60833 G.duriaei Galactites Galactites duriaei \N \N \N \N \N 60834 K.rechingeri Kalanchoe Kalanchoe rechingeri \N \N \N \N \N 60835 M.flavida Muhlenbergia Muhlenbergia flavida \N \N \N \N \N 60836 L.aspera Liatris Liatris aspera \N \N \N \N \N 60837 O.violaceus Orychophragmus Orychophragmus violaceus \N \N \N \N \N 60838 D.crenatiloba Drymonia Drymonia crenatiloba \N \N \N \N \N 60839 H.mexicana Henricksonia Henricksonia mexicana \N \N \N \N \N 60840 A.camporum Amorimia Amorimia camporum \N \N \N \N \N 60841 \N genus Adelobotrys \N \N \N \N \N 60842 O.longissima Oxalis Oxalis longissima \N \N \N \N \N 60843 E.zwartbergensis Erica Erica zwartbergensis \N \N \N \N \N 60844 D.splendens Deppea Deppea splendens \N \N \N \N \N 60845 G.angulosa Gentiana Gentiana angulosa \N \N \N \N \N 60846 I.viscida Impatiens Impatiens viscida \N \N \N \N \N 60847 G.sulphurea Galeopsis Galeopsis sulphurea \N \N \N \N \N 60848 H.actites Hakea Hakea actites \N \N \N \N \N 60849 R.vickeryae Rytidosperma Rytidosperma vickeryae \N \N \N \N \N 60850 E.barrelieri Eragrostis Eragrostis barrelieri Mediterranean lovegrass \N \N \N \N 60851 E.glyptosperma Euphorbia Euphorbia glyptosperma \N \N \N \N \N 60852 I.saintronanensis Ipomoea Ipomoea saintronanensis \N \N \N \N \N 76761 \N genus Priva \N \N \N \N \N 60853 G.terminalis Gouldia Gouldia terminalis \N \N \N \N \N 60854 \N varietas Metrosideros polymorpha var. incana \N \N \N \N \N 60855 G.nummularioides Gaultheria Gaultheria nummularioides \N \N \N \N \N 60856 L.hodgsonii Ligularia Ligularia hodgsonii \N \N \N \N \N 60857 \N subspecies Carex echinochloe subsp. nyasensis \N \N \N \N \N 60858 \N genus Careya \N \N \N \N \N 60859 V.thapsus Verbascum Verbascum thapsus Aaron's-rod,common mullein,flannel plant,velvet plant \N \N \N \N 60860 \N subspecies Viola alba subsp. cretica \N \N \N \N \N 60861 H.grandiflorus Hibiscus Hibiscus grandiflorus \N \N \N \N \N 60862 C.royenii Codon Codon royenii \N \N \N \N \N 60863 C.pseudolimon Citrus Citrus pseudolimon \N \N \N \N \N 60864 A.rubrolineatum Aeonium Aeonium rubrolineatum \N \N \N \N \N 60865 E.anthyllis Erinacea Erinacea anthyllis \N \N \N \N \N 60866 M.royoc Morinda Morinda royoc \N \N \N \N \N 60867 S.reinwardtii Silene Silene reinwardtii \N \N \N \N \N 60868 S.euryoides Symplocos Symplocos euryoides \N \N \N \N \N 60869 E.croizatii Euphorbia Euphorbia croizatii \N \N \N \N \N 60870 P.terminalis Pachysandra Pachysandra terminalis \N \N \N \N \N 60871 E.microcarpa Elattostachys Elattostachys microcarpa \N \N \N \N \N 60872 \N genus Chascanum \N \N \N \N \N 60873 F.CEH-2010 Fimbristylis Fimbristylis cf. pauciflora CEH-2010 \N \N \N \N \N 60874 A.nainii Adenocarpus Adenocarpus nainii \N \N \N \N \N 60875 C.'Ngongo3' Coffea Coffea sp. 'Ngongo3' \N \N \N \N \N 60876 S.roseum Syncalathium Syncalathium roseum \N \N \N \N \N 60877 D.micrantha Duroia Duroia micrantha \N \N \N \N \N 60878 K.caspia Karelinia Karelinia caspia \N \N \N \N \N 60879 M.butugi Manilkara Manilkara butugi \N \N \N \N \N 60880 A.cordifolia Adenia Adenia cordifolia \N \N \N \N \N 60881 \N genus Steveniella \N \N \N \N \N 60882 K.ayapanoides Koanophyllon Koanophyllon ayapanoides \N \N \N \N \N 60883 \N subspecies Leonardoxa africana subsp. gracilicaulis \N \N \N \N \N 60884 D.vientianense Diplobryum Diplobryum vientianense \N \N \N \N \N 60885 B.flava Brongniartia Brongniartia flava \N \N \N \N \N 60886 H.triflora Hydrocera Hydrocera triflora \N \N \N \N \N 60887 \N no rank Heliantheae alliance \N \N \N \N \N 60888 G.inaequilatera Grewia Grewia inaequilatera \N \N \N \N \N 60889 R.macraei Rubus Rubus macraei \N \N \N \N \N 60890 S.noronhae Schima Schima noronhae \N \N \N \N \N 60891 M.orbignyana Mutisia Mutisia orbignyana \N \N \N \N \N 60892 \N genus Crenosciadium \N \N \N \N \N 60893 \N genus Homolepis \N \N \N \N \N 60894 O.longiflora Oenothera Oenothera longiflora \N \N \N \N \N 60895 T.grandis Tupistra Tupistra grandis \N \N \N \N \N 60896 G.suborbicularis Gaultheria Gaultheria suborbicularis \N \N \N \N \N 60897 \N genus Elymus x Leymus \N \N \N \N \N 60898 \N genus Tristicha \N \N \N \N \N 60899 I.verna Iris Iris verna \N \N \N \N \N 60900 C.leptophylla Centaurea Centaurea leptophylla \N \N \N \N \N 60901 L.subulata Lotononis Lotononis subulata \N \N \N \N \N 60902 S.macrocarpum Schoenocaulon Schoenocaulon macrocarpum \N \N \N \N \N 60903 C.australis Caladenia Caladenia australis \N \N \N \N \N 60904 A.5060 Allium Allium sp. GAT 5060 \N \N \N \N \N 60905 M.MAG-2009 unclassified Myrtaceae Myrtaceae sp. MAG-2009 \N \N \N \N \N 60906 C.gaudichaudii Chloraea Chloraea gaudichaudii \N \N \N \N \N 60907 \N varietas Aerides falcata var. houlletiana \N \N \N \N \N 60908 \N genus Platycarphella \N \N \N \N \N 60909 C.IT-2010c Cucumis Cucumis sp. IT-2010c \N \N \N \N \N 60910 C.macrophylla Cornus Cornus macrophylla \N \N \N \N \N 60911 C.subargentea Choricarpia Choricarpia subargentea giant ironwood \N \N \N \N 60912 \N genus Brayopsis \N \N \N \N \N 60913 C.integerrimus Cotoneaster Cotoneaster integerrimus \N \N \N \N \N 60914 \N genus Diastella \N \N \N \N \N 60915 R.lanatum Rhododendron Rhododendron lanatum \N \N \N \N \N 60916 \N genus Filarum \N \N \N \N \N 60917 A.crithmifolia Achillea Achillea crithmifolia \N \N \N \N \N 60918 N.assoanus Narcissus Narcissus assoanus \N \N \N \N \N 60919 O.arabicum Ornithogalum Ornithogalum arabicum Arabian starflower \N \N \N \N 60920 \N genus Caperonia \N \N \N \N \N 60921 I.rectangula Impatiens Impatiens rectangula \N \N \N \N \N 60922 D.nivea Disa Disa nivea \N \N \N \N \N 60923 P.mandrarensis Paederia Paederia mandrarensis \N \N \N \N \N 60924 A.spathulata Agonis Agonis spathulata \N \N \N \N \N 60925 S.marginatum Solanum Solanum marginatum \N \N \N \N \N 60926 L.marlothii Lachnaea Lachnaea marlothii \N \N \N \N \N 60927 C.africana Cleome Cleome africana \N \N \N \N \N 60928 B.henrici Bulbophyllum Bulbophyllum henrici \N \N \N \N \N 60929 \N genus Sphaeromeria \N \N \N \N \N 60930 E.curtisii Elatostema Elatostema curtisii \N \N \N \N \N 60931 \N genus Maytenus \N \N \N \N \N 60932 \N genus Poranthera \N \N \N \N \N 60933 M.trifida Malope Malope trifida \N \N \N \N \N 60934 P.pulchellus Phaius Phaius pulchellus \N \N \N \N \N 60935 R.longepetiolata Ruellia Ruellia longepetiolata \N \N \N \N \N 60936 T.subvelutina Trichosanthes Trichosanthes subvelutina \N \N \N \N \N 60937 M.martinezii Maxillaria Maxillaria martinezii \N \N \N \N \N 60938 H.reflexum Hypericum Hypericum reflexum \N \N \N \N \N 60939 \N genus Latouchea \N \N \N \N \N 60940 M.paucifolia Mimosa Mimosa paucifolia \N \N \N \N \N 60941 \N genus Relbunium \N \N \N \N \N 60942 S.clavata Solenangis Solenangis clavata \N \N \N \N \N 60943 P.brutia Plantago Plantago brutia \N \N \N \N \N 60944 \N varietas Eleocharis congesta var. congesta \N \N \N \N \N 60945 B.simplex Brassaiopsis Brassaiopsis simplex \N \N \N \N \N 60946 R.habrotrichum Rhododendron Rhododendron habrotrichum \N \N \N \N \N 60947 K.eludens Kulinia Kulinia eludens \N \N \N \N \N 60948 S.takesimense Sedum Sedum takesimense \N \N \N \N \N 60949 M.alpina Moraea Moraea alpina \N \N \N \N \N 60950 S.angulatus Sicyos Sicyos angulatus \N \N \N \N \N 60951 V.gaumeri Vitex Vitex gaumeri \N \N \N \N \N 76762 \N genus Hottonia \N \N \N \N \N 60952 \N subspecies Delphinium emarginatum subsp. nevadense \N \N \N \N \N 60953 C.warscewiczii Cattleya Cattleya warscewiczii \N \N \N \N \N 60954 M.obovata Macaranga Macaranga obovata \N \N \N \N \N 60955 \N genus Traversia \N \N \N \N \N 60956 L.rugosus Lonchocarpus Lonchocarpus rugosus black cabbage-bark,chaperno,chapulaltapa \N \N \N \N 60957 B.pilosiuscula Boehmeria Boehmeria pilosiuscula \N \N \N \N \N 60958 B.praemorsa Banksia Banksia praemorsa \N \N \N \N \N 60959 \N genus Fourraea \N \N \N \N \N 60960 S.coriaceifolia Swartzia Swartzia coriaceifolia \N \N \N \N \N 60961 A.splendens Argyreia Argyreia splendens \N \N \N \N \N 60962 P.1978-80061 Psilanthus Psilanthus aff. ebracteolatus BR 1978-80061 \N \N \N \N \N 60963 S.densiflorum Spiraeanthemum Spiraeanthemum densiflorum \N \N \N \N \N 60964 S.dombeyana Simsia Simsia dombeyana \N \N \N \N \N 60965 \N subspecies Crocus serotinus subsp. salzmannii \N \N \N \N \N 60966 M.sargentiana Magnolia Magnolia sargentiana \N \N \N \N \N 60967 \N varietas Mentzelia humilis var. humilis \N \N \N \N \N 60968 U.bahiense Urbanodendron Urbanodendron bahiense \N \N \N \N \N 60969 D.attenuata Dudleya Dudleya attenuata \N \N \N \N \N 60970 \N genus Ambrosina \N \N \N \N \N 60971 P.microcephalum Pseudognaphalium Pseudognaphalium microcephalum \N \N \N \N \N 60972 \N family Olacaceae \N \N \N \N \N 60973 \N varietas Nicotiana quadrivalvis var. bigelovii Bigelov's tobacco \N \N \N \N 60974 H.flavescens Hedychium Hedychium flavescens \N \N \N \N \N 60975 B.fruticosa Berkheya Berkheya fruticosa \N \N \N \N \N 60976 D.cholaensis Draba Draba cholaensis \N \N \N \N \N 60977 A.gayanus Andropogon Andropogon gayanus \N \N \N \N \N 60978 R.micrantha Ramirezella Ramirezella micrantha \N \N \N \N \N 60979 H.pentaphlebia Hoya Hoya pentaphlebia \N \N \N \N \N 60980 \N tribe Catalpeae \N \N \N \N \N 60981 L.purpurascens Leandra Leandra purpurascens \N \N \N \N \N 60982 E.vernicosa Eucalyptus Eucalyptus vernicosa \N \N \N \N \N 60983 M.8001 Mimulus Mimulus sp. Barker 8001 \N \N \N \N \N 60984 S.hookeriana Salix Salix hookeriana \N \N \N \N \N 60985 F.lucida Feroniella Feroniella lucida \N \N \N \N \N 60986 \N varietas Cotyledon orbiculata var. spuria \N \N \N \N \N 60987 S.longistylis Styphelia Styphelia longistylis \N \N \N \N \N 60988 F.guilinensis Fraxinus Fraxinus guilinensis \N \N \N \N \N 60989 R.longipedicellata Rytigynia Rytigynia longipedicellata \N \N \N \N \N 60990 \N genus Apera \N \N \N \N \N 60991 C.2003_46 Crataegus Crataegus cf. flava 2003_46 \N \N \N \N \N 60992 L.pusilla Loeflingia Loeflingia pusilla \N \N \N \N \N 60993 A.micranthus Aeschynanthus Aeschynanthus micranthus \N \N \N \N \N 60994 C.megalobotrys Croton Croton megalobotrys \N \N \N \N \N 60995 P.microcephala Podolepis Podolepis microcephala \N \N \N \N \N 60996 \N forma Prunus cerasifera f. atropurpurea \N \N \N \N \N 60997 \N varietas Dendrobium speciosum var. grandiflorum \N \N \N \N \N 60998 C.w10768 Chascolytrum Chascolytrum sp. w10768 \N \N \N \N \N 60999 P.nivea Potentilla Potentilla nivea \N \N \N \N \N 61000 \N genus Urelytrum \N \N \N \N \N 61001 P.carinocostata Pycnandra Pycnandra carinocostata \N \N \N \N \N 61002 M.argentea Muhlenbergia Muhlenbergia argentea \N \N \N \N \N 61003 \N subspecies Reseda lanceolata subsp. constricta \N \N \N \N \N 61004 P.glandulifera Phacelia Phacelia glandulifera sticky phacelia \N \N \N \N 61005 T.lankesteri Trigonidium Trigonidium lankesteri \N \N \N \N \N 61006 C.pseudoheterophylla Crataegus Crataegus pseudoheterophylla \N \N \N \N \N 61007 S.gretherae Sabal Sabal gretherae \N \N \N \N \N 61008 \N varietas Mimosa rufescens var. rufescens \N \N \N \N \N 61009 L.virginica Leersia Leersia virginica Virginian cutgrass \N \N \N \N 61010 D.australis Dahlia Dahlia australis \N \N \N \N \N 61011 D.recurvatum Delphinium Delphinium recurvatum valley larkspur \N \N \N \N 61012 \N subspecies Protium divaricatum subsp. fumarium \N \N \N \N \N 61013 C.angustifolius Chloranthus Chloranthus angustifolius \N \N \N \N \N 61014 M.3413 Meineckia Meineckia sp. Labat 3413 \N \N \N \N \N 61015 S.triangularis Senecio Senecio triangularis \N \N \N \N \N 61016 D.amoena Dimorphanthera Dimorphanthera amoena \N \N \N \N \N 61017 A.somniculosum Amomum Amomum somniculosum \N \N \N \N \N 61018 D.1127 Dichaea Dichaea sp. Cameron 1127 \N \N \N \N \N 61019 V.coriacea Vitis Vitis coriacea \N \N \N \N \N 61020 A.nothoxys Astragalus Astragalus nothoxys \N \N \N \N \N 61021 S.japonensis Sanguisorba Sanguisorba japonensis \N \N \N \N \N 61022 I.hostmanni Iryanthera Iryanthera hostmanni \N \N \N \N \N 61023 A.spicata Adenopodia Adenopodia spicata \N \N \N \N \N 61024 Z.parishii Zingiber Zingiber parishii \N \N \N \N \N 61025 C.aragonensis Cochlearia Cochlearia aragonensis \N \N \N \N \N 61026 E.nealleyi Erioneuron Erioneuron nealleyi \N \N \N \N \N 61027 D.scabrida Dolomiaea Dolomiaea scabrida \N \N \N \N \N 61028 B.armeniaca Boesenbergia Boesenbergia armeniaca \N \N \N \N \N 61029 S.hobdyi Scaevola Scaevola hobdyi \N \N \N \N \N 61030 M.aphanes Masdevallia Masdevallia aphanes \N \N \N \N \N 61031 D.gredensis Dianthus Dianthus gredensis \N \N \N \N \N 61032 L.maxima Lysimachia Lysimachia maxima \N \N \N \N \N 61033 N.lowii Nepenthes Nepenthes lowii \N \N \N \N \N 61034 R.orientale Ribes Ribes orientale \N \N \N \N \N 61035 A.quercifolia Phaeostigma Ajania quercifolia \N \N \N \N \N 61036 Z.anchonioides Zerdana Zerdana anchonioides \N \N \N \N \N 61037 L.obtusifolium Ligustrum Ligustrum obtusifolium \N \N \N \N \N 61038 I.chartacea Inga Inga chartacea \N \N \N \N \N 61039 P.micrantha Pimelea Pimelea micrantha \N \N \N \N \N 61040 \N genus Octolepis \N \N \N \N \N 61041 D.flavescens Diuris Diuris flavescens \N \N \N \N \N 61042 \N subspecies Felicia fruticosa subsp. fruticosa \N \N \N \N \N 61043 B.semibifida Bauhinia Bauhinia semibifida \N \N \N \N \N 61044 M.bilocularis Mitrantia Mitrantia bilocularis \N \N \N \N \N 61045 R.1171 Renealmia Renealmia aff. cabrae Poulsen 1171 \N \N \N \N \N 61046 \N genus Graptopetalum leatherpetal \N \N \N \N 61047 \N varietas Trema cannabina var. dielsiana \N \N \N \N \N 61048 S.amblyosaccos Satyrium Satyrium amblyosaccos \N \N \N \N \N 61049 G.3534 Gomesa Gomesa sp. Whitten 3534 \N \N \N \N \N 61050 B.malwanense Brachystelma Brachystelma malwanense \N \N \N \N \N 61051 E.gibbosa Erica Erica gibbosa \N \N \N \N \N 61052 S.mollipila Sisymbriopsis Sisymbriopsis mollipila \N \N \N \N \N 61053 I.mandshurica Iris Iris mandshurica \N \N \N \N \N 61054 A.dracontium Arisaema Arisaema dracontium dragon-root,green-dragon \N \N \N \N 61055 S.linearifolia Saussurea Saussurea linearifolia \N \N \N \N \N 61056 \N genus Poeciloneuron \N \N \N \N \N 61057 A.triternata Anemone Anemone triternata \N \N \N \N \N 61058 T.angustipetalum Trillium Trillium angustipetalum \N \N \N \N \N 61059 \N genus Orthilia \N \N \N \N \N 61060 T.paludosa Tradescantia Tradescantia paludosa confederate spiderwort \N \N \N \N 61061 C.6567 Croton Croton sp. Diaz Camilo 6567 \N \N \N \N \N 61062 P.pilosum Paspalum Paspalum pilosum \N \N \N \N \N 61063 \N genus Alpinia \N \N \N \N \N 61064 W.schweinfurthii Wiesneria Wiesneria schweinfurthii \N \N \N \N \N 61065 R.drummondiana Ruellia Ruellia drummondiana \N \N \N \N \N 61066 C.gilgiana Ceropegia Ceropegia gilgiana \N \N \N \N \N 61067 B.verna Barbarea Barbarea verna early winter cress \N \N \N \N 61068 P.purpuratum Paphiopedilum Paphiopedilum purpuratum \N \N \N \N \N 61069 \N genus Pancovia \N \N \N \N \N 61070 D.basuticus Dianthus Dianthus basuticus \N \N \N \N \N 61071 C.drummondii Conostylis Conostylis drummondii \N \N \N \N \N 61072 N.solata Nasa Nasa solata \N \N \N \N \N 61073 A.capixabae Aechmea Aechmea capixabae \N \N \N \N \N 61074 E.pubescens Epimedium Epimedium pubescens \N \N \N \N \N 61075 L.parva Liparia Liparia parva \N \N \N \N \N 61076 B.sphaerocarpa Banksia Banksia sphaerocarpa \N \N \N \N \N 61077 \N genus Thibaudia \N \N \N \N \N 61078 S.breviloba Stapeliopsis Stapeliopsis breviloba \N \N \N \N \N 61079 \N genus Clowesia \N \N \N \N \N 61080 \N genus Berendtia \N \N \N \N \N 61081 N.parvifolia Neblinantha Neblinantha parvifolia \N \N \N \N \N 61082 P.dyricola Ptilostemon Ptilostemon dyricola \N \N \N \N \N 61083 R.foetida Ruellia Ruellia foetida \N \N \N \N \N 61084 M.rufa Myrceugenia Myrceugenia rufa \N \N \N \N \N 61085 A.faberi Alangium Alangium faberi \N \N \N \N \N 61086 B.136.601 Briza Briza aff. juergensii ICN 136.601 \N \N \N \N \N 61087 \N genus Zoegea \N \N \N \N \N 61088 A.cooperi Arachnothryx Arachnothryx cooperi \N \N \N \N \N 61089 L.rufa Lagenaria Lagenaria rufa \N \N \N \N \N 61090 O.ciliata Oreomyrrhis Oreomyrrhis ciliata \N \N \N \N \N 61091 O.tornensis Onosma Onosma tornensis \N \N \N \N \N 61092 C.affinis Castilleja Castilleja affinis \N \N \N \N \N 61093 T.sanguinea Thecanthes Thecanthes sanguinea \N \N \N \N \N 61094 P.stipulare Piper Piper stipulare \N \N \N \N \N 61095 C.virginicus Chionanthus Chionanthus virginicus \N \N \N \N \N 61096 \N genus Gomphichis \N \N \N \N \N 61097 P.acanthoclada Polygala Polygala acanthoclada \N \N \N \N \N 61098 C.olopetala Consolida Consolida olopetala \N \N \N \N \N 61099 V.hypochlora Viguiera Viguiera hypochlora \N \N \N \N \N 61100 L.hirsuta Lopezia Lopezia hirsuta \N \N \N \N \N 61101 S.383 Sagittaria Sagittaria sp. Mathews 383 \N \N \N \N \N 61102 D.rourkei Dorotheanthus Dorotheanthus rourkei \N \N \N \N \N 61103 S.nicaraguensis Senna Senna nicaraguensis \N \N \N \N \N 61104 T.inconspicua Tabernaemontana Tabernaemontana inconspicua \N \N \N \N \N 61105 L.heteromorpha Licania Licania heteromorpha \N \N \N \N \N 61106 A.arctocalyx Aeschynanthus Aeschynanthus arctocalyx \N \N \N \N \N 61107 G.lagodechiana Gentiana Gentiana lagodechiana \N \N \N \N \N 61108 M.nutans Microseris Microseris nutans \N \N \N \N \N 61109 \N genus Pleomele \N \N \N \N \N 61110 P.japonicum Pittosporum Pittosporum japonicum \N \N \N \N \N 61113 C.candida Corymbia Corymbia candida \N \N \N \N \N 61114 A.magna Arachis Arachis magna \N \N \N \N \N 61115 C.hispida Crusea Crusea hispida \N \N \N \N \N 61116 L.pedicellata Lachnaea Lachnaea pedicellata \N \N \N \N \N 61117 \N subspecies Wurmbea latifolia subsp. latifolia \N \N \N \N \N 61118 C.2579 Cleistes Cleistes sp. Jardim 2579 \N \N \N \N \N 61119 L.subandinus Lathyrus Lathyrus subandinus \N \N \N \N \N 61120 H.ovalis Halophila Halophila ovalis \N \N \N \N \N 61121 M.macrophylla Meriania Meriania macrophylla \N \N \N \N \N 61122 \N genus Chaerophyllum \N \N \N \N \N 61123 R.ciliosa Ruellia Ruellia ciliosa \N \N \N \N \N 61124 \N subspecies Stylosanthes guianensis subsp. dissitiflora \N \N \N \N \N 61125 \N genus Walwhalleya \N \N \N \N \N 61126 P.saxifraga Potentilla Potentilla saxifraga \N \N \N \N \N 61127 R.einsteinii Rebutia Rebutia einsteinii \N \N \N \N \N 61128 \N varietas Corallorhiza striata var. involuta \N \N \N \N \N 61129 T.tomentosa Terminalia Terminalia tomentosa \N \N \N \N \N 61130 L.marginale Linum Linum marginale \N \N \N \N \N 61131 S.arboreum Solanum Solanum arboreum \N \N \N \N \N 61132 \N genus Megastylis \N \N \N \N \N 61133 N.glomeratum Neisosperma Neisosperma glomeratum \N \N \N \N \N 61134 C.angustifolius Chelonanthus Chelonanthus angustifolius \N \N \N \N \N 61135 P.mauritanica Pulicaria Pulicaria mauritanica \N \N \N \N \N 61136 P.graveolens Phyllanthus Phyllanthus graveolens \N \N \N \N \N 61137 M.heterophylla Maxillaria Maxillaria heterophylla \N \N \N \N \N 61138 D.potaninii Delphinium Delphinium potaninii \N \N \N \N \N 61139 \N genus Jeffersonia \N \N \N \N \N 61140 P.atriola Pterostylis Pterostylis atriola \N \N \N \N \N 61141 C.subjectifolia Chamaedorea Chamaedorea subjectifolia \N \N \N \N \N 61142 U.paulineae Utricularia Utricularia paulineae \N \N \N \N \N 61143 D.reptans Diclis Diclis reptans \N \N \N \N \N 61144 S.marginata Swertia Swertia marginata \N \N \N \N \N 61145 M.inaudita Maxillaria Maxillaria inaudita \N \N \N \N \N 77152 \N genus Curcumorpha \N \N \N \N \N 61146 P.1389 Pauridiantha Pauridiantha sp. Cable et al. 1389 \N \N \N \N \N 61147 G.sapindoides Glycosmis Glycosmis sapindoides \N \N \N \N \N 61148 B.oleoides Barbeya Barbeya oleoides \N \N \N \N \N 61149 S.alpestris Schizanthus Schizanthus alpestris \N \N \N \N \N 61150 A.Mad031 Adenia Adenia sp. Hearn Mad031 \N \N \N \N \N 61151 P.marmorata Peperomia Peperomia marmorata \N \N \N \N \N 61152 \N genus Matucana \N \N \N \N \N 61153 \N family Cynomoriaceae \N \N \N \N \N 61154 \N genus Haematodendron \N \N \N \N \N 61155 \N genus Gyrostipula \N \N \N \N \N 61156 \N tribe Bahieae \N \N \N \N \N 61157 T.vaginatus Tragopogon Tragopogon vaginatus \N \N \N \N \N 61158 D.rhamnoides Dovyalis Dovyalis rhamnoides \N \N \N \N \N 61159 R.elliptica Rennellia Rennellia elliptica \N \N \N \N \N 61160 \N varietas Lupinus polyphyllus var. humicola \N \N \N \N \N 61161 P.pubinerve Phrynium Phrynium pubinerve \N \N \N \N \N 61162 H.vitiensis Hoya Hoya vitiensis \N \N \N \N \N 61163 \N no rank Cattleya bicolor 'Brasilia' \N \N \N \N \N 61164 S.terniflora Sloanea Sloanea terniflora \N \N \N \N \N 61165 M.iquitoensis Martinella Martinella iquitoensis \N \N \N \N \N 61166 \N subspecies Erica esteriana subsp. swartbergensis \N \N \N \N \N 61167 O.xylopioides Oxandra Oxandra xylopioides \N \N \N \N \N 61168 R.495 Rustia Rustia cf. occidentalis Tuberquia et al. 495 \N \N \N \N \N 61169 S.rotundifolia Stenogyne Stenogyne rotundifolia \N \N \N \N \N 61170 L.longiflora Lindelofia Lindelofia longiflora \N \N \N \N \N 61171 C.picta Columnea Columnea picta \N \N \N \N \N 61172 N.crenata Nymphoides Nymphoides crenata \N \N \N \N \N 61173 D.caffra Dovyalis Dovyalis caffra \N \N \N \N \N 61174 I.erythrogramma Indigofera Indigofera erythrogramma \N \N \N \N \N 61175 C.'Naranjal' Cratylia Cratylia sp. 'Naranjal' \N \N \N \N \N 61176 P.novogranatense Piper Piper novogranatense \N \N \N \N \N 61177 A.1133 Arthrostylidium Arthrostylidium sp. Stapleton 1133 \N \N \N \N \N 61178 \N subspecies Aspalathus perfoliata subsp. perfoliata \N \N \N \N \N 61179 \N genus Saraca \N \N \N \N \N 61180 A.1156 Ammannia Ammannia sp. Graham 1156 \N \N \N \N \N 61181 I.longipetala Ismene Ismene longipetala \N \N \N \N \N 61182 C.tymphaeum Cirsium Cirsium tymphaeum \N \N \N \N \N 61183 E.romeu-cardosoi Eschweilera Eschweilera romeu-cardosoi \N \N \N \N \N 61184 T.tenuis Tarasa Tarasa tenuis \N \N \N \N \N 61185 P.vulgaris Passerina Passerina vulgaris \N \N \N \N \N 61186 E.incanus Echiostachys Echiostachys incanus \N \N \N \N \N 61187 \N genus Ceratolacis \N \N \N \N \N 61188 E.CDB-2011a unclassified Celastraceae Euonymeae sp. CDB-2011a \N \N \N \N \N 61189 C.submultiflorus Cotoneaster Cotoneaster submultiflorus \N \N \N \N \N 61190 F.nutans Fimbristylis Fimbristylis nutans \N \N \N \N \N 61191 I.pachycarpa Isatis Isatis pachycarpa \N \N \N \N \N 61192 T.nudiflora Tetrameles Tetrameles nudiflora \N \N \N \N \N 61193 F.heterophylla Felicia Felicia heterophylla \N \N \N \N \N 61194 O.pes-caprae Oxalis Oxalis pes-caprae \N \N \N \N \N 61195 \N genus Miscanthidium \N \N \N \N \N 61196 G.mckelveyae Gaura Gaura mckelveyae \N \N \N \N \N 61197 T.massoniana Thamnea Thamnea massoniana \N \N \N \N \N 61198 A.odontocalyx Appunia Appunia odontocalyx \N \N \N \N \N 61199 V.vinifera Vitis Vitis labrusca x Vitis vinifera Labruscan grape \N \N \N \N 61200 \N genus Kunzea \N \N \N \N \N 61201 A.rubella Adina Adina rubella \N \N \N \N \N 61202 R.501 Renealmia Renealmia cf. macrocolea Roger 501 \N \N \N \N \N 61203 E.caricoides Elleanthus Elleanthus caricoides \N \N \N \N \N 61204 D.pulchellum Discolobium Discolobium pulchellum \N \N \N \N \N 61205 H.verrucifera Halimione Halimione verrucifera \N \N \N \N \N 61206 \N subspecies Solanum stenotomum subsp. goniocalyx \N \N \N \N \N 61207 O.paniculatum Oligostachyum Oligostachyum paniculatum \N \N \N \N \N 61208 \N genus Rhodoleia \N \N \N \N \N 61209 C.peucophila Carex Carex peucophila \N \N \N \N \N 61210 A.eschscholtziana Arabis Arabis eschscholtziana \N \N \N \N \N 61211 M.triunca Mezilaurus Mezilaurus triunca \N \N \N \N \N 61212 A.pavonina Anemone Anemone pavonina \N \N \N \N \N 61213 R.edgerleyi Raukaua Raukaua edgerleyi \N \N \N \N \N 61214 H.dives Habenaria Habenaria dives \N \N \N \N \N 61215 D.bulleyanum Delphinium Delphinium bulleyanum \N \N \N \N \N 61216 H.formosum Hypericum Hypericum formosum \N \N \N \N \N 61217 O.angustissima Ononis Ononis angustissima \N \N \N \N \N 61218 C.bracteatus Costus Costus bracteatus \N \N \N \N \N 61219 U.lindleyi Uropappus Uropappus lindleyi \N \N \N \N \N 61220 C.bradei Cardamine Cardamine bradei \N \N \N \N \N 61221 T.jinggangshanica Trichosanthes Trichosanthes jinggangshanica \N \N \N \N \N 61222 S.bruynsii Scopelogena Scopelogena bruynsii \N \N \N \N \N 61223 E.lasiocarpa Euphorbia Euphorbia lasiocarpa \N \N \N \N \N 61224 \N subspecies Savignya parviflora subsp. parviflora \N \N \N \N \N 61225 P.orba Poa Poa orba \N \N \N \N \N 61226 \N subspecies Abrus pulchellus subsp. tenuiflorus \N \N \N \N \N 61227 B.macrophylla Bunchosia Bunchosia macrophylla \N \N \N \N \N 61228 \N genus Chrysothemis \N \N \N \N \N 61229 \N genus Comastoma \N \N \N \N \N 61230 D.parvifolium Dialyceras Dialyceras parvifolium \N \N \N \N \N 61231 \N genus Caucaea \N \N \N \N \N 61232 \N varietas Kunzea ericoides var. linearis \N \N \N \N \N 61233 \N varietas Astragalus allochrous var. allochrous \N \N \N \N \N 61234 \N genus Cusickiella \N \N \N \N \N 61235 M.elliptica Mercurialis Mercurialis elliptica \N \N \N \N \N 61236 P.aguilarii Psychotria Psychotria aguilarii \N \N \N \N \N 61237 \N subspecies Sarcocapnos crassifolia subsp. crassifolia \N \N \N \N \N 61238 B.corylifolia Betula Betula corylifolia \N \N \N \N \N 61239 \N varietas Euphorbia milii var. splendens crown-of-thorns \N \N \N \N 61240 S.betulifolia Spiraea Spiraea betulifolia \N \N \N \N \N 61241 N.viridula Nassella Nassella viridula \N \N \N \N \N 61242 \N varietas Lilium speciosum var. clivorum \N \N \N \N \N 61243 L.villosa Lachnaea Lachnaea villosa \N \N \N \N \N 61244 S.porcatum Stryphnodendron Stryphnodendron porcatum \N \N \N \N \N 61245 E.oblongata Euphorbia Euphorbia oblongata \N \N \N \N \N 61246 C.SH-2010 Clematis Clematis sp. SH-2010 \N \N \N \N \N 61247 S.laxus Senecio Senecio laxus \N \N \N \N \N 61248 C.hedysaroides Catenulina Catenulina hedysaroides \N \N \N \N \N 61249 H.laevigata Hypochaeris Hypochaeris laevigata \N \N \N \N \N 61250 G.multiceps Gaillardia Gaillardia multiceps \N \N \N \N \N 61251 A.dasyphylla Aralia Aralia dasyphylla \N \N \N \N \N 61252 H.venosa Haworthia Haworthia venosa \N \N \N \N \N 61253 C.scandens Chusquea Chusquea scandens \N \N \N \N \N 61254 L.bourgeaui Liabum Liabum bourgeaui \N \N \N \N \N 61255 P.davidsoniae Photinia Photinia davidsoniae \N \N \N \N \N 61256 C.bergamia Citrus Citrus bergamia bergamot orange \N \N \N \N 61257 S.fendleri Strychnos Strychnos fendleri \N \N \N \N \N 61258 P.caffrum Pterygodium Pterygodium caffrum \N \N \N \N \N 61259 A.americana Apios Apios americana American potatobean \N \N \N \N 61260 E.moscaliana Epacris Epacris moscaliana \N \N \N \N \N 61261 S.vestita Syncarpha Syncarpha vestita \N \N \N \N \N 61262 A.venosa Arnica Arnica venosa \N \N \N \N \N 61263 H.ragonesei Halosicyos Halosicyos ragonesei \N \N \N \N \N 61264 X.laxifolia Xyris Xyris laxifolia \N \N \N \N \N 61265 B.wilkommiana Bufonia Bufonia wilkommiana \N \N \N \N \N 61266 A.reflexa Appendicula Appendicula reflexa \N \N \N \N \N 61267 M.triphylla Melicope Melicope triphylla \N \N \N \N \N 61268 C.tianschanica Calophaca Calophaca tianschanica \N \N \N \N \N 61269 \N tribe Ruellieae \N \N \N \N \N 61270 O.pectinata Olgaea Olgaea pectinata \N \N \N \N \N 61271 E.polifolia Erica Erica polifolia \N \N \N \N \N 61272 D.spatulata Drosera Drosera spatulata \N \N \N \N \N 61273 D.asperulum Drosanthemum Drosanthemum asperulum \N \N \N \N \N 61274 \N genus Schwenckia \N \N \N \N \N 61275 \N genus Molinia \N \N \N \N \N 61276 S.siliquosus Siamanthus Siamanthus siliquosus \N \N \N \N \N 61277 M.mattogrossense Myriophyllum Myriophyllum mattogrossense \N \N \N \N \N 61278 S.josefii Schismatoglottis Schismatoglottis josefii \N \N \N \N \N 61279 R.pseudoparrya Rhammatophyllum Rhammatophyllum pseudoparrya \N \N \N \N \N 61280 D.sinuolata Dodonaea Dodonaea sinuolata \N \N \N \N \N 61281 P.cubataonum Piper Piper cubataonum \N \N \N \N \N 61282 H.aegyptiacum Heliotropium Heliotropium aegyptiacum \N \N \N \N \N 61283 E.polyantha Euphorbia Euphorbia polyantha \N \N \N \N \N 61284 C.macrocephala Cousinia Cousinia macrocephala \N \N \N \N \N 61285 S.absconditum Solanum Solanum absconditum \N \N \N \N \N 61286 A.tanguticum Allium Allium tanguticum \N \N \N \N \N 61287 A.kokanica Arabis Arabis kokanica \N \N \N \N \N 61288 \N varietas Dioscorea collettii var. hypoglauca \N \N \N \N \N 61289 \N subspecies Scorzoneroides muelleri subsp. austromaroccana \N \N \N \N \N 61290 H.heterosciadium Hymenidium Hymenidium heterosciadium \N \N \N \N \N 61291 V.adunca Viola Viola adunca \N \N \N \N \N 61292 P.alternifolium Ploiarium Ploiarium alternifolium \N \N \N \N \N 61293 C.magdalenae Cremastosperma Cremastosperma magdalenae \N \N \N \N \N 61294 S.tosaense Sedum Sedum tosaense \N \N \N \N \N 61295 R.japonicum Rumex Rumex japonicum \N \N \N \N \N 61296 E.contiguum Eriogonum Eriogonum contiguum \N \N \N \N \N 61297 \N varietas Melocalamus compactiflorus var. fimbriatus \N \N \N \N \N 61298 \N subspecies Vigna membranacea subsp. hapalantha \N \N \N \N \N 61299 \N varietas Melampodium cinereum var. cinereum \N \N \N \N \N 61300 P.minor Platanthera Platanthera minor \N \N \N \N \N 61301 E.polychroma Euphorbia Euphorbia polychroma \N \N \N \N \N 61302 \N genus Syntrichopappus \N \N \N \N \N 61303 P.aristata Pearsonia Pearsonia aristata \N \N \N \N \N 61304 M.medicaginoides Medicago Medicago medicaginoides \N \N \N \N \N 61305 \N family Moringaceae horseradish tree family \N \N \N \N 61306 C.arenbergiana Chamaedorea Chamaedorea arenbergiana \N \N \N \N \N 61307 P.ramosissima Psathyrotes Psathyrotes ramosissima \N \N \N \N \N 61308 A.purpurea Acidosasa Acidosasa purpurea \N \N \N \N \N 61309 \N genus Lomatogonium \N \N \N \N \N 61310 D.SH-2010 Diploglottis Diploglottis sp. SH-2010 \N \N \N \N \N 61311 C.lineariloba Castilleja Castilleja lineariloba \N \N \N \N \N 61312 A.gobica Artemisia Artemisia gobica \N \N \N \N \N 61313 C.tetrandra Cordia Cordia tetrandra \N \N \N \N \N 61314 \N genus Ceraria \N \N \N \N \N 61315 \N genus Acidosasa \N \N \N \N \N 61316 R.maculiferum Rhododendron Rhododendron maculiferum \N \N \N \N \N 61317 \N genus Rhodocoma \N \N \N \N \N 61318 S.ridleyi Soejatmia Soejatmia ridleyi \N \N \N \N \N 61319 P.tanfiljewii Poa Poa tanfiljewii \N \N \N \N \N 61320 H.anomalus Helianthus Helianthus anomalus \N \N \N \N \N 61321 \N subspecies Cyclamen graecum subsp. anatolicum \N \N \N \N \N 61322 A.dimorphum Amomum Amomum dimorphum \N \N \N \N \N 61323 E.japonica Euscaphis Euscaphis japonica \N \N \N \N \N 61324 \N subspecies Echinopsis ancistrophora subsp. arachnacantha \N \N \N \N \N 61325 B.bifoliata Blumea Blumea bifoliata \N \N \N \N \N 61326 T.cultivar Tulipa Tulipa hybrid cultivar \N \N \N \N \N 61327 P.squarrosa Pogonarthria Pogonarthria squarrosa \N \N \N \N \N 61328 \N genus Piliostigma \N \N \N \N \N 61329 \N genus Ackama \N \N \N \N \N 61330 S.galeopsis Strobilanthes Strobilanthes galeopsis \N \N \N \N \N 61331 M.lancifolia Muraltia Muraltia lancifolia \N \N \N \N \N 61332 G.sechellarum Gastonia Gastonia sechellarum \N \N \N \N \N 61333 \N no rank environmental samples Taxonomy:1008277 \N \N \N \N \N 61334 M.robusta Metrosideros Metrosideros robusta \N \N \N \N \N 61335 M.digitata Mastersiella Mastersiella digitata \N \N \N \N \N 61336 A.vulpina Aspalathus Aspalathus vulpina \N \N \N \N \N 61337 O.mazanderanica Onobrychis Onobrychis mazanderanica \N \N \N \N \N 61338 \N subspecies Triticum turgidum subsp. turgidum \N \N \N \N \N 61339 A.pinnatifida Aciphylla Aciphylla pinnatifida \N \N \N \N \N 61340 D.articulata Daviesia Daviesia articulata \N \N \N \N \N 61341 E.polystachya Entada Entada polystachya \N \N \N \N \N 61342 O.congestiflora Ossaea Ossaea congestiflora \N \N \N \N \N 61343 P.frondosa Primula Primula frondosa \N \N \N \N \N 61344 H.trichophylla Handelia Handelia trichophylla \N \N \N \N \N 61345 M.androsaceus Mimulus Mimulus androsaceus \N \N \N \N \N 61346 M.veitchiorum Meliosma Meliosma veitchiorum \N \N \N \N \N 61347 E.grandiflora Eschweilera Eschweilera grandiflora \N \N \N \N \N 61348 N.africanus Neuracanthus Neuracanthus africanus \N \N \N \N \N 61349 R.montana Rosa Rosa montana \N \N \N \N \N 61350 F.raddeana Fritillaria Fritillaria raddeana \N \N \N \N \N 61351 R.thompsonii Romanzoffia Romanzoffia thompsonii \N \N \N \N \N 61352 G.dicocca Gonzalagunia Gonzalagunia dicocca \N \N \N \N \N 61353 P.torquata Prosopis Prosopis torquata \N \N \N \N \N 61354 B.conjuncta Bidens Bidens populifolia x Bidens conjuncta \N \N \N \N \N 61355 \N tribe Phyllodoceae \N \N \N \N \N 61356 G.codonantha Gaultheria Gaultheria codonantha \N \N \N \N \N 61357 C.echinatus Cynosurus Cynosurus echinatus bristly dogstail grass \N \N \N \N 61358 \N genus Schizopetalon \N \N \N \N \N 61359 O.cinerea Oxalis Oxalis cinerea \N \N \N \N \N 61360 P.stricta Pleurostachys Pleurostachys stricta \N \N \N \N \N 61361 E.platyphyllos Euphorbia Euphorbia platyphyllos \N \N \N \N \N 61362 A.alnifolia Amelanchier Amelanchier alnifolia \N \N \N \N \N 61363 H.grandiflora Holboellia Holboellia grandiflora \N \N \N \N \N 61364 A.dracunculus Artemisia Artemisia dracunculus French tarragon,tarragon \N \N \N \N 61365 H.longiflora Hemarthria Hemarthria longiflora \N \N \N \N \N 61366 \N genus Lychnophora \N \N \N \N \N 61367 X.callistemon Xeronema Xeronema callistemon \N \N \N \N \N 61368 \N subspecies Secale strictum subsp. anatolicum \N \N \N \N \N 61369 A.hassleri Aegiphila Aegiphila hassleri \N \N \N \N \N 61370 \N no rank Rubiaceae incertae sedis \N \N \N \N \N 61371 P.tasmanicum Plumatichilos Plumatochilus tasmanicum \N \N \N \N \N 61372 P.baueri Pouteria Pouteria baueri \N \N \N \N \N 61373 L.stenoglossa Ligularia Ligularia stenoglossa \N \N \N \N \N 61374 D.aequatoriensis Digitaria Digitaria aequatoriensis \N \N \N \N \N 61375 G.pendula Globba Globba pendula \N \N \N \N \N 61376 P.68PV01 Pseudopanax Pseudopanax sp. Vargas 68PV01 \N \N \N \N \N 61377 C.quadrifida Coprosma Coprosma quadrifida \N \N \N \N \N 61378 C.foliosa Calathea Calathea foliosa \N \N \N \N \N 61379 P.scopa Parodia Parodia scopa \N \N \N \N \N 61380 \N genus Garidella \N \N \N \N \N 61381 G.cinereum Geranium Geranium cinereum \N \N \N \N \N 61382 M.glazioviana Marlierea Marlierea glazioviana \N \N \N \N \N 61383 C.laevigata Corynocarpus Corynocarpus laevigata karaka \N \N \N \N 61384 \N genus Hayataella \N \N \N \N \N 61385 \N varietas Kengyilia batalinii var. nana \N \N \N \N \N 61386 S.glaucescens Syagrus Syagrus glaucescens \N \N \N \N \N 61387 \N genus Platostoma \N \N \N \N \N 61388 A.cubana Albizia Albizia cubana \N \N \N \N \N 61389 R.subsessile Rhododendron Rhododendron subsessile \N \N \N \N \N 61390 S.valdensis Saxifraga Saxifraga valdensis \N \N \N \N \N 61391 A.castaneofulva Aoranthe Aoranthe castaneofulva \N \N \N \N \N 61392 S.cauliflora Stelechantha Stelechantha cauliflora \N \N \N \N \N 61393 B.linifolia Baeckea Baeckea linifolia \N \N \N \N \N 61394 I.niamniamensis Impatiens Impatiens niamniamensis \N \N \N \N \N 61395 \N genus Chasmanthera \N \N \N \N \N 61396 P.saxifraga Parrya Parrya saxifraga \N \N \N \N \N 61397 P.vahliana Potentilla Potentilla vahliana \N \N \N \N \N 61398 M.alabamensis Matelea Matelea alabamensis \N \N \N \N \N 61399 T.lateritium Taraxacum Taraxacum lateritium \N \N \N \N \N 61400 P.gracilicaulis Pentanopsis Pentanopsis gracilicaulis \N \N \N \N \N 61401 T.rhizomatica Tamamschjanella Tamamschjanella rhizomatica \N \N \N \N \N 61402 L.troyanus Lisianthius Lisianthius troyanus \N \N \N \N \N 61403 O.GMS-2008 Orobanche Orobanche sp. 1 GMS-2008 \N \N \N \N \N 61404 O.cornuta Onobrychis Onobrychis cornuta \N \N \N \N \N 61405 M.2500 Maxillaria Maxillaria aff. arbuscula Whitten 2500 \N \N \N \N \N 61406 S.spartioides Siphocodon Siphocodon spartioides \N \N \N \N \N 61407 P.procumbens Pasaccardoa Pasaccardoa procumbens \N \N \N \N \N 61408 C.cymbifolia Cliffortia Cliffortia cymbifolia \N \N \N \N \N 61409 V.nigrum Vincetoxicum Vincetoxicum nigrum \N \N \N \N \N 61410 M.barbata Mammillaria Mammillaria barbata \N \N \N \N \N 61411 \N genus Harperia \N \N \N \N \N 61412 \N varietas Solanum heterodoxum var. novomexicanum \N \N \N \N \N 61413 S.exsudans Silene Silene exsudans \N \N \N \N \N 61414 \N varietas Ranunculus silerifolius var. dolicathus \N \N \N \N \N 61415 M.inaequiloba Myrcia Myrcia inaequiloba \N \N \N \N \N 61416 C.sparsiflora Collinsia Collinsia sparsiflora \N \N \N \N \N 61417 \N genus Myrmecophila \N \N \N \N \N 61418 R.glandulosum Ribes Ribes glandulosum fetid currant,skunk currant \N \N \N \N 61419 R.243 Randia Randia sp. Persson and Gustafsson 243 \N \N \N \N \N 61420 T.cupressoides Thesium Thesium cupressoides \N \N \N \N \N 61421 E.oryzicola Echinochloa Echinochloa oryzicola late barnyard grass \N \N \N \N 61422 C.grayi Cyrtandra Cyrtandra grayi \N \N \N \N \N 61423 \N subspecies Draba matthioloides subsp. saundersii \N \N \N \N \N 61424 D.tamariscina Dielsiodoxa Dielsiodoxa tamariscina \N \N \N \N \N 61425 D.moniliforme Dendrobium Dendrobium moniliforme \N \N \N \N \N 61426 D.cephalotes Disa Disa cephalotes \N \N \N \N \N 61427 P.17902 Planchonella Planchonella sp. Takeuchi & al 17902 \N \N \N \N \N 61428 C.comans Carex Carex comans \N \N \N \N \N 61429 L.lijiangense Lomatogonium Lomatogonium lijiangense \N \N \N \N \N 61430 P.serpentilingua Paraphalaenopsis Paraphalaenopsis serpentilingua \N \N \N \N \N 61431 A.searsii Aegilops Aegilops searsii \N \N \N \N \N 61432 \N genus Allium \N \N \N \N \N 61433 C.cancellatus Crocus Crocus cancellatus \N \N \N \N \N 61434 C.densiflora Cardamine Cardamine densiflora \N \N \N \N \N 61435 C.rubra Clidemia Clidemia rubra \N \N \N \N \N 61436 Z.rivularis Ziziphus Ziziphus rivularis \N \N \N \N \N 61439 M.elengi Mimusops Mimusops elengi \N \N \N \N \N 61440 \N genus Kingiodendron \N \N \N \N \N 61441 T.pallidum Tripterospermum Tripterospermum pallidum \N \N \N \N \N 61442 A.longicauda Arachnorchis Arachnorchis longicauda \N \N \N \N \N 61443 S.atrovirens Sporobolus Sporobolus atrovirens \N \N \N \N \N 61444 O.acuminata Ottelia Ottelia acuminata \N \N \N \N \N 61445 C.ceresana Cliffortia Cliffortia ceresana \N \N \N \N \N 61446 G.suecicum Galium Galium suecicum \N \N \N \N \N 61447 A.graminifolia Alpinia Alpinia graminifolia \N \N \N \N \N 61448 V.1973 Vernonia Vernonia sp. Koekemoer 1973 \N \N \N \N \N 61449 G.yunnanensis Glycyrrhiza Glycyrrhiza yunnanensis yun nan gan cao \N \N \N \N 61450 B.hintonii Bursera Bursera hintonii \N \N \N \N \N 61451 H.chloroleucum Hymenidium Hymenidium chloroleucum \N \N \N \N \N 61452 T.macrum Tetramolopium Tetramolopium macrum \N \N \N \N \N 61453 S.squamiformis Streptanthus Streptanthus squamiformis \N \N \N \N \N 61454 \N genus Mauranthemum \N \N \N \N \N 61455 C.fesselii Ceratocentron Ceratocentron fesselii \N \N \N \N \N 61456 G.punctata Garcinia Garcinia punctata \N \N \N \N \N 61457 \N genus Coelocaryon \N \N \N \N \N 61458 D.oppositifolia Diosma Diosma oppositifolia \N \N \N \N \N 61459 P.mollis Pulmonaria Pulmonaria mollis \N \N \N \N \N 61460 \N genus Scoliaxon \N \N \N \N \N 61461 B.JT-2006-3 Boesenbergia Boesenbergia sp. JT-2006-3 \N \N \N \N \N 61462 E.albanensis Eugenia Eugenia albanensis \N \N \N \N \N 61463 C.darwasica Corydalis Corydalis darwasica \N \N \N \N \N 61464 P.cdK169 Prunus Prunus sp. cdK169 \N \N \N \N \N 61465 A.tonkinensis Alpinia Alpinia tonkinensis \N \N \N \N \N 61466 X.cultivar x Zelenkocidium x Zelenkocidium hybrid cultivar \N \N \N \N \N 61467 C.coccinea Cyrtandra Cyrtandra coccinea \N \N \N \N \N 61468 S.frutescens Sutherlandia Sutherlandia frutescens \N \N \N \N \N 61469 E.albens Erica Erica albens \N \N \N \N \N 61470 \N subspecies Myosotis decumbens subsp. decumbens \N \N \N \N \N 61471 S.scabriuscula Senna Senna scabriuscula \N \N \N \N \N 61472 A.silvana Aspasia Aspasia silvana \N \N \N \N \N 61473 P.reticulata Pycnostachys Pycnostachys reticulata \N \N \N \N \N 61474 \N genus Leandriella \N \N \N \N \N 61475 A.villosa Arachis Arachis villosa \N \N \N \N \N 61476 S.strigosa Saxifraga Saxifraga strigosa \N \N \N \N \N 61477 L.nitidum Leucadendron Leucadendron nitidum \N \N \N \N \N 61478 \N varietas Lupinus excubitus var. johnstonii \N \N \N \N \N 61479 C.veitchiana Calathea Calathea veitchiana \N \N \N \N \N 61480 C.pubescens Coulterophytum Coulterophytum pubescens \N \N \N \N \N 61481 P.pingbienense Piper Piper pingbienense \N \N \N \N \N 61482 E.adenoptera Euphorbia Euphorbia adenoptera \N \N \N \N \N 61483 E.erythropoda Eleocharis Eleocharis erythropoda \N \N \N \N \N 61484 \N genus Aerangis \N \N \N \N \N 61485 O.dillenii Opuntia Opuntia dillenii Eltham indian-fig,dildo,sweet prickly-pear \N \N \N \N 61486 \N genus Robinsonecio \N \N \N \N \N 61487 E.vagus Erigeron Erigeron vagus \N \N \N \N \N 61488 \N genus Calycopeplus \N \N \N \N \N 61489 M.cornuta Microcoelia Microcoelia cornuta \N \N \N \N \N 61490 C.angulata Carphalea Carphalea angulata \N \N \N \N \N 61491 S.reitzii Sinningia Sinningia reitzii \N \N \N \N \N 61492 \N subspecies Luzula forsteri subsp. rhizomata \N \N \N \N \N 61493 D.bengalensis Dischidia Dischidia bengalensis \N \N \N \N \N 61494 A.columbiana Arachnothryx Arachnothryx columbiana \N \N \N \N \N 61495 A.foeniculum Agastache Agastache foeniculum anise hyssop,anise-mint,blue giant hyssop \N \N \N \N 61496 L.spissifolium Leucadendron Leucadendron spissifolium \N \N \N \N \N 61497 S.alandiae Solanum Solanum alandiae \N \N \N \N \N 61498 L.squalidum Lycomormium Lycomormium squalidum \N \N \N \N \N 61499 A.perfoliata Arctotis Arctotis perfoliata \N \N \N \N \N 61500 C.collina Campanula Campanula collina \N \N \N \N \N 61501 \N varietas Mitella stylosa var. makinoi \N \N \N \N \N 61502 O.filisepala Omiltemia Omiltemia filisepala \N \N \N \N \N 61503 S.vittata Silene Silene vittata \N \N \N \N \N 61504 \N subspecies Oenothera deltoides subsp. deltoides \N \N \N \N \N 61505 P.dasyantha Pedicularis Pedicularis dasyantha \N \N \N \N \N 61506 \N varietas Iris tigridia var. tigridia \N \N \N \N \N 61507 A.eryngioides Azilia Azilia eryngioides \N \N \N \N \N 61508 R.hirsutiflora Rytigynia Rytigynia hirsutiflora \N \N \N \N \N 61509 R.caffra Rauvolfia Rauvolfia caffra \N \N \N \N \N 61510 O.portoilicitana Orobanche Orobanche portoilicitana \N \N \N \N \N 61511 V.limonifolia Vitex Vitex limonifolia \N \N \N \N \N 61512 \N subspecies Quercus mongolica subsp. crispula \N \N \N \N \N 61513 B.lupinoides Brongniartia Brongniartia lupinoides \N \N \N \N \N 61514 I.thamnoidea Impatiens Impatiens thamnoidea \N \N \N \N \N 61515 L.contorta Laubertia Laubertia contorta \N \N \N \N \N 61516 D.uniflora Drimia Drimia uniflora \N \N \N \N \N 61517 U.glabra Ulmus Ulmus glabra \N \N \N \N \N 61518 \N varietas Carex muehlenbergii var. muehlenbergii \N \N \N \N \N 61519 C.austrosatsumensis Cladopus Cladopus austrosatsumensis \N \N \N \N \N 61520 G.kieslingii Gymnocalycium Gymnocalycium kieslingii \N \N \N \N \N 61521 V.densifolia Hebe Veronica densifolia \N \N \N \N \N 61522 C.jalapensis Cuscuta Cuscuta jalapensis \N \N \N \N \N 61523 N.O-668 Nephelaphyllum Nephelaphyllum sp. Chase O-668 \N \N \N \N \N 61524 \N subspecies Collinsia verna subsp. parryi \N \N \N \N \N 61525 F.calyptrata Ficus Ficus calyptrata \N \N \N \N \N 61526 S.palaestina Salvia Salvia palaestina \N \N \N \N \N 61527 P.14591 Phryma Phryma sp. Chase & Fay 14591 \N \N \N \N \N 61528 L.origanoides Lippia Lippia origanoides \N \N \N \N \N 61529 P.glumacea Pleurothallis Pleurothallis glumacea \N \N \N \N \N 61530 A.repens Alexfloydia Alexfloydia repens \N \N \N \N \N 61531 P.porteri Ptilagrostis Ptilagrostis porteri \N \N \N \N \N 61532 M.germanica Mespilus Mespilus germanica medlar \N \N \N \N 61533 L.cordifolius Leucopogon Leucopogon cordifolius \N \N \N \N \N 61534 \N genus Ricinodendron \N \N \N \N \N 61535 G.majorica Genista Genista majorica \N \N \N \N \N 61536 A.praecox Arachis Arachis praecox \N \N \N \N \N 61537 \N subspecies Eschscholzia californica subsp. californica \N \N \N \N \N 61538 R.nivalis Romulea Romulea nivalis \N \N \N \N \N 61539 F.retusa Fraxinus Fraxinus retusa \N \N \N \N \N 61540 M.rubra Macrocarpaea Macrocarpaea rubra \N \N \N \N \N 61541 \N genus Pityphyllum \N \N \N \N \N 61542 S.tauricola Senecio Senecio tauricola \N \N \N \N \N 61543 S.actinotus Senecio Senecio actinotus \N \N \N \N \N 61544 C.scabrida Corymbia Corymbia scabrida \N \N \N \N \N 61545 T.connata Trichocoryne Trichocoryne connata \N \N \N \N \N 61546 H.henryi Hemiboea Hemiboea henryi \N \N \N \N \N 61547 \N genus Tasmannia \N \N \N \N \N 61548 L.nubica Leucas Leucas nubica \N \N \N \N \N 61549 V.obtusata Vexatorella Vexatorella obtusata \N \N \N \N \N 61550 T.694 Trattinnickia Trattinnickia cf. burserifolia Hoffman et al. 694 \N \N \N \N \N 61551 H.angustifolia Harpullia Harpullia angustifolia \N \N \N \N \N 61552 C.DE-2008 Chiloglottis Chiloglottis aff. jeanesii DE-2008 \N \N \N \N \N 61553 \N subspecies Veronica lycopodioides subsp. lycopodioides \N \N \N \N \N 61554 F.aeruginescens Feretia Feretia aeruginescens \N \N \N \N \N 61555 \N genus Microchilus \N \N \N \N \N 61556 V.vinifera Vitis Vitis ficifolia var. ganebu x Vitis vinifera \N \N \N \N \N 61557 H.digitatus Homalocarpus Homalocarpus digitatus \N \N \N \N \N 61558 E.staeri Eucalyptus Eucalyptus staeri \N \N \N \N \N 61559 L.psilophyta Larnax Larnax psilophyta \N \N \N \N \N 61560 A.orienticapense Androcymbium Androcymbium orienticapense \N \N \N \N \N 61561 B.stellaris Brodiaea Brodiaea stellaris \N \N \N \N \N 61562 P.abylensis Ptilostemon Ptilostemon abylensis \N \N \N \N \N 61563 O.litorea Orobanche Orobanche litorea \N \N \N \N \N 61564 C.madagascariense Canarium Canarium madagascariense \N \N \N \N \N 61565 I.hochstetteri Indigofera Indigofera hochstetteri \N \N \N \N \N 61566 M.angustifolius Melicytus Melicytus angustifolius \N \N \N \N \N 61567 S.neglecta Serapias Serapias neglecta \N \N \N \N \N 61568 M.dregeanus Melianthus Melianthus dregeanus \N \N \N \N \N 61569 \N genus Neolloydia \N \N \N \N \N 61570 C.elegans Ceropegia Ceropegia elegans \N \N \N \N \N 61571 L.winitii Lysiphyllum Lysiphyllum winitii \N \N \N \N \N 61572 E.pteroneura Euphorbia Euphorbia pteroneura \N \N \N \N \N 61573 P.punctata Passiflora Passiflora punctata \N \N \N \N \N 61574 M.inundatum Machaerium Machaerium inundatum \N \N \N \N \N 61575 B.latilobum Bunium Bunium latilobum \N \N \N \N \N 61576 N.pumila Nenga Nenga pumila \N \N \N \N \N 61577 \N tribe Myoporeae \N \N \N \N \N 61578 B.s.n. Butia Butia aff. yatay Zardini s.n. \N \N \N \N \N 61579 \N genus Labordia \N \N \N \N \N 61580 P.lamelligera Phalaenopsis Phalaenopsis lamelligera \N \N \N \N \N 61581 M.rubra Moquiniella Moquiniella rubra \N \N \N \N \N 61582 P.bolleanum Phoradendron Phoradendron bolleanum \N \N \N \N \N 61583 C.finazzeri Centaurea Centaurea finazzeri \N \N \N \N \N 61584 N.microptera Nissolia Nissolia microptera \N \N \N \N \N 61585 N.tomentella Nolana Nolana tomentella \N \N \N \N \N 61586 P.carnea Pentas Pentas carnea \N \N \N \N \N 61587 A.negishii Arisaema Arisaema negishii \N \N \N \N \N 61588 P.pearsonii Podalyria Podalyria pearsonii \N \N \N \N \N 61589 \N order Malvales \N \N \N \N \N 61590 F.dichoclada Festuca Festuca dichoclada \N \N \N \N \N 61591 D.eretmopetalus Dianthus Dianthus eretmopetalus \N \N \N \N \N 61592 B.amboensis Bolusia Bolusia amboensis \N \N \N \N \N 61593 \N genus Pauridiantha \N \N \N \N \N 61594 C.kamtschaticum Cirsium Cirsium kamtschaticum \N \N \N \N \N 61595 C.eurycarpus Calochortus Calochortus eurycarpus \N \N \N \N \N 61596 E.kingaensis Erica Erica kingaensis \N \N \N \N \N 61597 G.ornativa Geigeria Geigeria ornativa \N \N \N \N \N 61598 C.decalvatus Croton Croton decalvatus \N \N \N \N \N 61601 G.virginiana Gratiola Gratiola virginiana \N \N \N \N \N 61602 D.darlingiana Darlingia Darlingia darlingiana \N \N \N \N \N 61603 C.pubescens Centrosema Centrosema pubescens \N \N \N \N \N 61604 D.patagonicum Delpinophytum Delpinophytum patagonicum \N \N \N \N \N 61605 A.O-9060 Acriopsis Acriopsis sp. Chase O-9060 \N \N \N \N \N 61606 I.phymatodea Indigofera Indigofera phymatodea \N \N \N \N \N 61607 \N genus Vavaea \N \N \N \N \N 61608 \N genus Lecanophora \N \N \N \N \N 61609 O.michauxii Onobrychis Onobrychis michauxii \N \N \N \N \N 61610 D.dumontii Disterigma Disterigma dumontii \N \N \N \N \N 61611 B.dulcis Brahea Brahea dulcis \N \N \N \N \N 61612 C.sphaerocarpum Cestrum Cestrum sphaerocarpum \N \N \N \N \N 61613 G.eriostemon Geranium Geranium eriostemon \N \N \N \N \N 61614 S.Cy002 Solanum Solanum sp. Cy002 \N \N \N \N \N 61615 N.interrata Nolina Nolina interrata \N \N \N \N \N 61616 D.eupatorioides Duhaldea Duhaldea eupatorioides \N \N \N \N \N 61617 \N genus Hymenolepis \N \N \N \N \N 61618 \N genus Reimarochloa \N \N \N \N \N 61619 C.rigidifolium Croptilon Croptilon rigidifolium \N \N \N \N \N 61620 L.greenmanii Lomatium Lomatium greenmanii Greenman's biscuitroot \N \N \N \N 61621 C.vegetus Cyperus Cyperus vegetus \N \N \N \N \N 61622 D.humboldtianum Dimerostemma Dimerostemma humboldtianum \N \N \N \N \N 61623 W.837 Weinmannia Weinmannia sp. Bradford 837 \N \N \N \N \N 61624 M.melissifolia Melochia Melochia melissifolia \N \N \N \N \N 61625 S.tontomussirensis Salix Salix tontomussirensis \N \N \N \N \N 61626 P.greuteri Ptilostemon Ptilostemon greuteri \N \N \N \N \N 61627 G.schleicheri Gentiana Gentiana schleicheri \N \N \N \N \N 61628 B.africanus Brachystephanus Brachystephanus africanus \N \N \N \N \N 61629 L.hypericifolium Linum Linum hypericifolium \N \N \N \N \N 61630 \N genus Gymnanthera \N \N \N \N \N 61631 \N forma Salvia miltiorrhiza f. alba \N \N \N \N \N 61632 U.sankowskyi Uvaria Uvaria sankowskyi \N \N \N \N \N 61633 \N varietas Psorothamnus polydenius var. polydenius \N \N \N \N \N 61634 H.levicaule Hieracium Hieracium levicaule \N \N \N \N \N 61635 A.materculae Allium Allium materculae \N \N \N \N \N 61636 L.longipedunculata Lindera Lindera longipedunculata \N \N \N \N \N 61637 I.rusbyi Inga Inga rusbyi \N \N \N \N \N 61638 P.angustifolia Posidonia Posidonia angustifolia \N \N \N \N \N 61639 A.robustus Astragalus Astragalus robustus \N \N \N \N \N 61640 C.pringlei Cynoglossum Cynoglossum pringlei \N \N \N \N \N 61641 S.picta Stenotyla Stenotyla picta \N \N \N \N \N 61642 L.scabrida Lantana Lantana scabrida \N \N \N \N \N 61643 \N subspecies Primula cusickiana subsp. nevadensis \N \N \N \N \N 61644 L.fiskei Lycomormium Lycomormium fiskei \N \N \N \N \N 61645 M.rettigiana Mammillaria Mammillaria rettigiana \N \N \N \N \N 61646 G.tenuifolius Goniothalamus Goniothalamus tenuifolius \N \N \N \N \N 61647 \N varietas Gyrocheilos chorisepalus var. synsepalus \N \N \N \N \N 61648 V.acrobracteatum Vaccinium Vaccinium acrobracteatum \N \N \N \N \N 61649 \N genus Adenolinum \N \N \N \N \N 61650 D.austrinus Desmocladus Desmocladus austrinus \N \N \N \N \N 61651 \N genus Flourensia \N \N \N \N \N 61652 D.annae Dysoxylum Dysoxylum annae \N \N \N \N \N 61653 C.compressa Ctenanthe Ctenanthe compressa \N \N \N \N \N 61654 C.EM-2009a Carex Carex sp. EM-2009a \N \N \N \N \N 61655 T.2531 Telipogon Telipogon sp. Whitten 2531 \N \N \N \N \N 61656 C.sulphurea Chelonistele Chelonistele sulphurea \N \N \N \N \N 61657 D.rupicola Dodonaea Dodonaea rupicola \N \N \N \N \N 61658 K.siamensis Kerriochloa Kerriochloa siamensis \N \N \N \N \N 61659 S.barbigera Serruria Serruria barbigera \N \N \N \N \N 61660 T.aurea Trichocline Trichocline aurea \N \N \N \N \N 61661 S.maritima Spartina Spartina maritima \N \N \N \N \N 61662 E.argentatus Erigeron Erigeron argentatus \N \N \N \N \N 61663 T.bethanniana Tapirira Tapirira bethanniana \N \N \N \N \N 61664 H.serotinum Helichrysum Helichrysum serotinum \N \N \N \N \N 61665 A.laevis Amelanchier Amelanchier laevis \N \N \N \N \N 61666 G.corrudifolium Galium Galium corrudifolium \N \N \N \N \N 61667 S.phaeoclados Symplocos Symplocos phaeoclados \N \N \N \N \N 61668 M.flammea Macranthera Macranthera flammea \N \N \N \N \N 61669 A.hispidula Arctotis Arctotis hispidula \N \N \N \N \N 61670 R.argutum Rhodosciadium Rhodosciadium argutum \N \N \N \N \N 61671 P.deflexa Primula Primula deflexa \N \N \N \N \N 61672 C.meadii Carex Carex meadii \N \N \N \N \N 61673 H.japonica Heterosmilax Heterosmilax japonica \N \N \N \N \N 61674 E.othonnoides Euryops Euryops othonnoides \N \N \N \N \N 61675 P.rubra Phyllachne Phyllachne rubra \N \N \N \N \N 61676 S.magnifica Semecarpus Semecarpus magnifica \N \N \N \N \N 61677 S.chenopodinum Solanum Solanum chenopodinum \N \N \N \N \N 61678 G.pycnocarpum Glochidion Glochidion pycnocarpum \N \N \N \N \N 61679 A.pauperiflorus Astragalus Astragalus pauperiflorus \N \N \N \N \N 61680 P.graminifolia Pityopsis Pityopsis graminifolia \N \N \N \N \N 61681 C.thurberi Cylindropuntia Cylindropuntia thurberi \N \N \N \N \N 61682 C.cyprius Crocus Crocus cyprius \N \N \N \N \N 61683 \N subspecies Leptosiphon pygmaeus subsp. continentalis \N \N \N \N \N 61684 W.virescens Wajira Wajira virescens \N \N \N \N \N 61685 S.ripicola Syzygium Syzygium ripicola \N \N \N \N \N 61686 M.nuda Mitella Mitella nuda \N \N \N \N \N 61687 B.ayacuchensis Bromus Bromus ayacuchensis \N \N \N \N \N 61688 S.sylvestre Secale Secale sylvestre \N \N \N \N \N 61689 \N genus Sebaea \N \N \N \N \N 61690 P.saxicola Petunia Petunia saxicola \N \N \N \N \N 61691 A.patellifera Arrabidaea Arrabidaea patellifera \N \N \N \N \N 61692 T.Ford-4782 Typhonium Typhonium aff. brownii Ford-4782 \N \N \N \N \N 61693 R.tephrodes Rubus Rubus tephrodes \N \N \N \N \N 61694 B.tritonioides Babiana Babiana tritonioides \N \N \N \N \N 61695 B.echinosperma Blyxa Blyxa echinosperma \N \N \N \N \N 61696 D.00VR01/05 Draba Draba sp. 00VR01/05 \N \N \N \N \N 61697 A.fremontii Amphipappus Amphipappus fremontii chaffbush \N \N \N \N 61698 R.praetervisum Rhododendron Rhododendron praetervisum \N \N \N \N \N 61699 A.funifera Attalea Attalea funifera \N \N \N \N \N 61700 S.purpureum Syzygium Syzygium purpureum \N \N \N \N \N 61701 V.austriaca Veronica Veronica austriaca \N \N \N \N \N 61702 S.hirsuta Saxifraga Saxifraga hirsuta \N \N \N \N \N 61703 \N genus Oubanguia \N \N \N \N \N 61704 O.ecuadorensis Ornithocephalus Ornithocephalus ecuadorensis \N \N \N \N \N 61705 L.caespitosus Linanthus Linanthus caespitosus mat prickly phlox \N \N \N \N 61706 \N genus Polysphaeria \N \N \N \N \N 61707 E.pallens Eleocharis Eleocharis pallens \N \N \N \N \N 61708 A.lucentica Artemisia Artemisia lucentica \N \N \N \N \N 61709 E.retzioides Endonema Endonema retzioides \N \N \N \N \N 61710 R.lundii Ruprechtia Ruprechtia lundii \N \N \N \N \N 61711 C.90.203 Calceolaria Calceolaria sp. dePamphilis 90.203 \N \N \N \N \N 61712 P.prenantha Primula Primula prenantha \N \N \N \N \N 61713 \N subspecies Felicia hyssopifolia subsp. hyssopifolia \N \N \N \N \N 61714 A.cognata Acacia Acacia cognata \N \N \N \N \N 61715 C.similis Corynocarpus Corynocarpus similis \N \N \N \N \N 61716 H.otophorus Heterostemon Heterostemon otophorus \N \N \N \N \N 61717 C.basiantha Carex Carex basiantha \N \N \N \N \N 61718 \N subtribe Muhlenbergiinae \N \N \N \N \N 61719 B.variifolia Billardiera Billardiera variifolia \N \N \N \N \N 61720 A.lignescens Angelica Angelica lignescens \N \N \N \N \N 61721 H.salicifolia Heimia Heimia salicifolia \N \N \N \N \N 61722 \N varietas Anthriscus cerefolium var. trichocarpa \N \N \N \N \N 61723 L.parryae Linanthus Linanthus parryae sandblossoms \N \N \N \N 61724 T.spadiceum Trifolium Trifolium spadiceum \N \N \N \N \N 61725 U.leichhardtii Uvaria Uvaria leichhardtii \N \N \N \N \N 61726 C.chuniana Cercis Cercis chuniana \N \N \N \N \N 61727 S.medley-woodii Senecio Senecio medley-woodii \N \N \N \N \N 61728 P.hookeriana Pavetta Pavetta hookeriana \N \N \N \N \N 79006 \N family Paulowniaceae \N \N \N \N \N 61729 C.siamensis Clematis Clematis siamensis \N \N \N \N \N 61730 H.alberti-regelii Haplophyllum Haplophyllum alberti-regelii \N \N \N \N \N 61731 \N subspecies Asclepias cryptoceras subsp. cryptoceras \N \N \N \N \N 61732 \N subspecies Archanthemis marschalliana subsp. pectinata \N \N \N \N \N 61733 B.media Bikinia Bikinia media \N \N \N \N \N 61734 V.thomsonii Hebe Veronica thomsonii \N \N \N \N \N 61735 H.sprucei Hemipogon Hemipogon sprucei \N \N \N \N \N 61736 P.pulcherrima Phalaenopsis Phalaenopsis pulcherrima \N \N \N \N \N 61737 Z.teretifolium Zygophyllum Zygophyllum teretifolium \N \N \N \N \N 61738 \N genus Laretia \N \N \N \N \N 61739 V.cockayneana Hebe Veronica cockayneana \N \N \N \N \N 61740 H.linearilobum Hymenidium Hymenidium linearilobum \N \N \N \N \N 61741 S.reticulata Silene Silene reticulata \N \N \N \N \N 61742 B.daphnoides Brachyloma Brachyloma daphnoides \N \N \N \N \N 61743 P.polygaloides Polygonum Polygonum polygaloides \N \N \N \N \N 61744 S.peltigera Stipecoma Stipecoma peltigera \N \N \N \N \N 61745 M.gracilis Mimulus Mimulus gracilis \N \N \N \N \N 61746 R.minuscula Rebutia Rebutia minuscula \N \N \N \N \N 61747 \N genus Halostachys \N \N \N \N \N 61748 \N genus Cynarospermum \N \N \N \N \N 61749 R.coriaria Rhus Rhus coriaria Sicilian sumac,tanner's sumac \N \N \N \N 61750 E.majellense Erysimum Erysimum majellense \N \N \N \N \N 61751 \N subspecies Calystegia sepium subsp. limnophila \N \N \N \N \N 61752 O.aspera Opercularia Opercularia aspera \N \N \N \N \N 61753 D.maxima Dieterlea Dieterlea maxima \N \N \N \N \N 61754 A.mossambicensis Amorphophallus Amorphophallus mossambicensis \N \N \N \N \N 61755 P.dayanum Paphiopedilum Paphiopedilum dayanum \N \N \N \N \N 61756 M.vexillaria Miltoniopsis Miltoniopsis vexillaria \N \N \N \N \N 61757 M.polycaulis Muhlenbergia Muhlenbergia polycaulis \N \N \N \N \N 61758 P.subcordata Pseuduvaria Pseuduvaria subcordata \N \N \N \N \N 61759 S.tianschanica Seselopsis Seselopsis tianschanica \N \N \N \N \N 61760 M.citriodora Monarda Monarda citriodora \N \N \N \N \N 61761 \N subspecies Begonia grandis subsp. grandis \N \N \N \N \N 61762 P.pinnatifida Primula Primula pinnatifida \N \N \N \N \N 61763 M.colossus Masdevallia Masdevallia colossus \N \N \N \N \N 61764 S.lucani Solanum Solanum lucani \N \N \N \N \N 61765 G.'Itacambira' Genlisea Genlisea sp. 'Itacambira' \N \N \N \N \N 61766 R.cappadocicus Ranunculus Ranunculus cappadocicus \N \N \N \N \N 61767 V.mucronulifera Viola Viola mucronulifera \N \N \N \N \N 61768 G.ligustica Gentiana Gentiana ligustica \N \N \N \N \N 61769 A.kishidae Arisaema Arisaema kishidae \N \N \N \N \N 61770 P.basicladum Paspalidium Paspalidium basicladum \N \N \N \N \N 61771 L.bancanus Lithocarpus Lithocarpus bancanus \N \N \N \N \N 61772 G.fimbriata Galeottia Galeottia fimbriata \N \N \N \N \N 61773 H.parvifolia Heritiera Heritiera parvifolia \N \N \N \N \N 61774 \N genus Hesperoyucca \N \N \N \N \N 61775 T.hyacinthina Triteleia Triteleia hyacinthina white brodiaea \N \N \N \N 61776 C.scoparia Campanula Campanula scoparia \N \N \N \N \N 61777 H.arenaria Heliophila Heliophila arenaria \N \N \N \N \N 61778 M.oculata Malaxis Malaxis oculata \N \N \N \N \N 61779 \N subspecies Eudema nubigena subsp. nubigena \N \N \N \N \N 61780 B.SH-2010 Barleria Barleria sp. SH-2010 \N \N \N \N \N 61781 T.sinensis Toona Toona sinensis \N \N \N \N \N 61782 S.seaforthianum Solanum Solanum seaforthianum Brazilian nightshade \N \N \N \N 61783 R.multifida Rhapis Rhapis multifida \N \N \N \N \N 61784 K.ambigua Kunzea Kunzea ambigua tickbush \N \N \N \N 61785 D.scapigeroides Dahlia Dahlia scapigeroides \N \N \N \N \N 61786 C.parvilimba Camellia Camellia parvilimba \N \N \N \N \N 61787 T.JS-2010 Triniochloa Triniochloa sp. JS-2010 \N \N \N \N \N 61788 L.erectinervia Litsea Litsea erectinervia \N \N \N \N \N 61789 H.02/245 Hieracium Hieracium cf. fuscescens Schuhwerk 02/245 \N \N \N \N \N 61790 \N genus Pseudosenefeldera \N \N \N \N \N 61791 M.dissimilis Mascagnia Mascagnia dissimilis \N \N \N \N \N 61792 M.floribunda Maackia Maackia floribunda \N \N \N \N \N 61793 \N subspecies Navarretia leucocephala subsp. leucocephala \N \N \N \N \N 61794 H.requienii Helictotrichon Helictotrichon requienii \N \N \N \N \N 61795 S.darrisii Smilax Smilax darrisii \N \N \N \N \N 61796 A.gracilipes Altingia Altingia gracilipes \N \N \N \N \N 61797 V.stewartii Veronica Veronica stewartii \N \N \N \N \N 61798 \N subspecies Eriosyce subgibbosa subsp. clavata \N \N \N \N \N 61799 A.DAP-2004-2 Arachis Arachis sp. DAP-2004-2 \N \N \N \N \N 61800 L.tibetica Lancea Lancea tibetica \N \N \N \N \N 61801 E.stolonifera Euphorbia Euphorbia stolonifera \N \N \N \N \N 61802 P.trichocarpa Populus Populus trichocarpa black cottonwood,western balsam poplar \N \N \N \N 61803 P.haselbergii Parodia Parodia haselbergii \N \N \N \N \N 61804 T.masaiense Trifolium Trifolium masaiense \N \N \N \N \N 61805 G.diegensis Gilia Gilia diegensis \N \N \N \N \N 61806 I.taronensis Impatiens Impatiens taronensis \N \N \N \N \N 61807 \N genus Oreonana \N \N \N \N \N 61808 \N subspecies Horkelia fusca subsp. pseudocapitata littlehead horkelia \N \N \N \N 61809 O.bryolophotum Oncidium Oncidium bryolophotum \N \N \N \N \N 61810 \N genus Polytoca \N \N \N \N \N 61811 \N genus Podococcus \N \N \N \N \N 61812 S.allophyllum Solanum Solanum allophyllum \N \N \N \N \N 61813 C.trichophyllus Catharanthus Catharanthus trichophyllus \N \N \N \N \N 61814 \N genus Leibnitzia \N \N \N \N \N 61815 F.nipponica Fragaria Fragaria nipponica \N \N \N \N \N 61816 R.longifolium Rytidosperma Rytidosperma longifolium \N \N \N \N \N 61817 M.alternifolia Medinilla Medinilla alternifolia \N \N \N \N \N 61818 C.2458 Cischweinfia Cischweinfia sp. Whitten 2458 \N \N \N \N \N 61819 A.teretifolia Acmadenia Acmadenia teretifolia \N \N \N \N \N 61820 L.brownii Leucophyta Leucophyta brownii \N \N \N \N \N 61821 \N genus Nestotus \N \N \N \N \N 61822 D.curtophyllum Drosanthemum Drosanthemum curtophyllum \N \N \N \N \N 61823 \N varietas Cucurbita pepo var. melopepo zucchini \N \N \N \N 61824 D.erinaceus Dianthus Dianthus erinaceus \N \N \N \N \N 61825 T.glomeratum Trifolium Trifolium glomeratum \N \N \N \N \N 61826 G.parishii Galium Galium parishii \N \N \N \N \N 61827 V.hirtella Valeriana Valeriana hirtella \N \N \N \N \N 61828 \N varietas Miscanthus sacchariflorus var. sacchariflorus \N \N \N \N \N 61829 G.elatus Gonocarpus Gonocarpus elatus \N \N \N \N \N 61830 F.pertusa Ficus Ficus pertusa \N \N \N \N \N 61831 \N varietas Genista spartioides var. pomariensis \N \N \N \N \N 61832 S.erysimoides Sisymbrium Sisymbrium erysimoides \N \N \N \N \N 61833 Y.basihirsuta Yushania Yushania basihirsuta \N \N \N \N \N 61834 G.fischeri Gymnocalycium Gymnocalycium fischeri \N \N \N \N \N 61835 P.arborescens Piper Piper arborescens \N \N \N \N \N 61836 C.panamintensis Cymopterus Cymopterus panamintensis \N \N \N \N \N 61837 B.edulis Brachystelma Brachystelma edulis \N \N \N \N \N 61838 \N subspecies Pimelea simplex subsp. simplex \N \N \N \N \N 61839 A.trifoliatum Ammi Ammi trifoliatum \N \N \N \N \N 61840 S.florida Seidlitzia Seidlitzia florida \N \N \N \N \N 61841 N.palmeri Nolina Nolina palmeri \N \N \N \N \N 61842 \N genus Blighia \N \N \N \N \N 61843 T.oxyodontus Thymus Thymus oxyodontus \N \N \N \N \N 61844 H.hazlettii Haptanthus Haptanthus hazlettii \N \N \N \N \N 61845 \N varietas Persea americana var. americana \N \N \N \N \N 61846 L.dilatata Linguella Linguella dilatata \N \N \N \N \N 61847 P.maritima Prunus Prunus maritima beach plum \N \N \N \N 61848 S.tinctoria Simira Simira tinctoria \N \N \N \N \N 61849 H.maroccana Hedera Hedera maroccana \N \N \N \N \N 61850 \N subspecies Felicia tenella subsp. cotuloides \N \N \N \N \N 61851 M.garrettii Magnolia Magnolia garrettii \N \N \N \N \N 61852 \N genus Schotia \N \N \N \N \N 61853 \N genus Tonina \N \N \N \N \N 61854 S.jacobsenii Senecio Senecio jacobsenii \N \N \N \N \N 61855 A.vernicosa Amsinckia Amsinckia vernicosa \N \N \N \N \N 61856 P.novaezelandiae Pachycladon Pachycladon novaezelandiae \N \N \N \N \N 61857 \N genus Chlorospatha \N \N \N \N \N 61858 \N subspecies Nephrophyllidium crista-galli subsp. crista-galli \N \N \N \N \N 61859 P.rockii Paeonia Paeonia rockii \N \N \N \N \N 61860 S.polystachyum Stryphnodendron Stryphnodendron polystachyum \N \N \N \N \N 61861 \N genus Vateriopsis \N \N \N \N \N 61862 A.rupincola Adenophora Adenophora rupincola \N \N \N \N \N 61863 S.brackenridgei Syzygium Syzygium brackenridgei \N \N \N \N \N 61864 L.salicina Lorandersonia Lorandersonia salicina willow glowweed \N \N \N \N 61865 P.CAM43 Pentaphragma Pentaphragma sp. CAM43 \N \N \N \N \N 61866 P.gigantifolium Piper Piper gigantifolium \N \N \N \N \N 61867 L.oligocephala Leucas Leucas oligocephala \N \N \N \N \N 61868 M.davyi Merxmuellera Merxmuellera davyi \N \N \N \N \N 61869 R.infanticida Rhizanthes Rhizanthes infanticida \N \N \N \N \N 61870 A.aureum Arceuthobium Arceuthobium aureum \N \N \N \N \N 61871 E.greggii Eugenia Eugenia greggii \N \N \N \N \N 61872 C.hesteri Coryphantha Coryphantha hesteri \N \N \N \N \N 61873 M.rigida Maytenus Maytenus rigida \N \N \N \N \N 61874 B.heracleifolia Begonia Begonia heracleifolia \N \N \N \N \N 61875 A.6671 Ataenidia Ataenidia sp. Harris 6671 \N \N \N \N \N 61876 S.stenophylla Salvia Salvia stenophylla \N \N \N \N \N 61877 P.basiradicans Peperomia Peperomia basiradicans \N \N \N \N \N 61878 P.putus Penstemon Penstemon putus Black River beardtongue \N \N \N \N 61879 S.angustifolia Sanvitalia Sanvitalia angustifolia \N \N \N \N \N 61880 P.bojerianus Petalodiscus Petalodiscus bojerianus \N \N \N \N \N 61881 \N genus Coreocarpus \N \N \N \N \N 61882 T.palustris Triglochin Triglochin palustris \N \N \N \N \N 61883 \N subspecies Salix repens subsp. arenaria \N \N \N \N \N 61884 \N genus Periballia \N \N \N \N \N 61885 M.radiata Medicago Medicago radiata \N \N \N \N \N 61886 S.triplinervia Sycopsis Sycopsis triplinervia \N \N \N \N \N 61887 T.K3671 unclassified Taraxacum Taraxacum (sect. Leucantha) sp. K3671 \N \N \N \N \N 61888 P.schaffneri Ponthieva Ponthieva schaffneri \N \N \N \N \N 61889 \N genus Lepidaria \N \N \N \N \N 61890 S.hirtellum Solanum Solanum hirtellum \N \N \N \N \N 61891 A.bellidioides Anaphalioides Anaphalioides bellidioides \N \N \N \N \N 61892 M.verticillata Mollugo Mollugo verticillata green carpetweed \N \N \N \N 61893 O.multistellare Oncidium Oncidium multistellare \N \N \N \N \N 61894 A.radiata Atractantha Atractantha radiata \N \N \N \N \N 61895 P.reptans Polemonium Polemonium reptans \N \N \N \N \N 61896 \N varietas Photinia serratifolia var. daphniphylloides \N \N \N \N \N 61897 A.balearica Arenaria Arenaria balearica \N \N \N \N \N 61898 N.sauricum Neuroloma Neuroloma sauricum \N \N \N \N \N 61899 P.ilicifolia Prunus Prunus ilicifolia evergreen cherry,holly-leaved cherry \N \N \N \N 61900 C.segetum Chrysanthemum Chrysanthemum segetum corn marigold \N \N \N \N 61901 G.pellegriniana Guibourtia Guibourtia pellegriniana \N \N \N \N \N 61902 P.pschavicum Peucedanum Peucedanum pschavicum \N \N \N \N \N 61903 R.slateri Rhizanthella Rhizanthella slateri \N \N \N \N \N 61904 M.albescens Megaloprotachne Megaloprotachne albescens \N \N \N \N \N 61905 C.armstrongii Celmisia Celmisia armstrongii \N \N \N \N \N 61906 G.dichroa Graphistylis Graphistylis dichroa \N \N \N \N \N 61907 T.atropurpurea Tephroseris Tephroseris atropurpurea \N \N \N \N \N 61908 E.nasturtiifolium Eryngium Eryngium nasturtiifolium \N \N \N \N \N 61909 O.odoratum Oncidium Oncidium odoratum \N \N \N \N \N 61910 J.patagonica Jarava Jarava patagonica \N \N \N \N \N 61911 Z.Z25 Zehneria Zehneria cf. emirnensis Z25 \N \N \N \N \N 61912 Q.JAG350 Quercus Quercus cf. velutina JAG350 \N \N \N \N \N 61913 S.invisa Silene Silene invisa \N \N \N \N \N 61914 E.racemosa Eragrostis Eragrostis racemosa \N \N \N \N \N 61915 \N genus Sinocarum \N \N \N \N \N 61916 G.viaria Govenia Govenia viaria \N \N \N \N \N 61917 A.ovata Adenia Adenia ovata \N \N \N \N \N 61918 D.lanuginosum Dichanthelium Dichanthelium lanuginosum \N \N \N \N \N 80456 \N genus Eleutherine \N \N \N \N \N 61919 K.JT-2010c Kaempferia Kaempferia sp. JT-2010c \N \N \N \N \N 61920 B.recta Baltimora Baltimora recta \N \N \N \N \N 61921 A.occidentale Anthoxanthum Anthoxanthum occidentale \N \N \N \N \N 61922 T.panamensis Telipogon Telipogon panamensis \N \N \N \N \N 61923 R.hotaoense Rheum Rheum hotaoense \N \N \N \N \N 61924 S.amaniensis Senecio Senecio amaniensis \N \N \N \N \N 61925 \N genus Sorocephalus \N \N \N \N \N 61926 G.polyandra Geonoma Geonoma polyandra \N \N \N \N \N 61927 P.aurea Pimpinella Pimpinella aurea \N \N \N \N \N 61928 P.cremnus Plectranthus Plectranthus cremnus \N \N \N \N \N 61929 \N genus Rubus bramble \N \N \N \N 61930 L.conjugens Lasthenia Lasthenia conjugens \N \N \N \N \N 61931 B.SS191 unclassified Bambuseae Bambuseae sp. SS191 \N \N \N \N \N 61932 Z.serpentinum Zootrophion Zootrophion serpentinum \N \N \N \N \N 61933 \N genus Beccariella \N \N \N \N \N 61934 \N varietas Abelia serrata var. tomentosa \N \N \N \N \N 61935 L.davurica Lespedeza Lespedeza davurica \N \N \N \N \N 61936 T.gracilis Thamnochortus Thamnochortus gracilis \N \N \N \N \N 61937 \N genus Pera \N \N \N \N \N 61938 F.colensoi Fuchsia Fuchsia colensoi \N \N \N \N \N 61939 R.kurrangii Ryparosa Ryparosa kurrangii \N \N \N \N \N 61940 R.glaucescens Rudbeckia Rudbeckia glaucescens \N \N \N \N \N 61941 S.jamaicense Solanum Solanum jamaicense \N \N \N \N \N 61942 \N genus Carludovica \N \N \N \N \N 61943 C.foliaceus Cyperus Cyperus foliaceus \N \N \N \N \N 61944 \N subspecies Klasea boetica subsp. alcalae \N \N \N \N \N 61945 S.caricifolium Schoenocaulon Schoenocaulon caricifolium \N \N \N \N \N 61946 S.pallens Satyrium Satyrium pallens \N \N \N \N \N 61947 H.setiger Haplopappus Haplopappus setiger \N \N \N \N \N 61948 D.deltoidea Dioscorea Dioscorea deltoidea \N \N \N \N \N 61949 T.intermedia Tillandsia Tillandsia intermedia \N \N \N \N \N 61950 D.lapponica Draba Draba lapponica \N \N \N \N \N 61951 \N genus Hennecartia \N \N \N \N \N 61952 P.piluliferum Piper Piper piluliferum \N \N \N \N \N 61953 G.GH06-111 Glycosmis Glycosmis sp. RJB GH06-111 \N \N \N \N \N 61954 A.grossus Actinoscirpus Actinoscirpus grossus \N \N \N \N \N 61955 \N no rank Saccharum hybrid cultivar CP88-1762 \N \N \N \N \N 61956 R.nepalica Rhodiola Rhodiola nepalica \N \N \N \N \N 61957 V.tenuifolia Vicia Vicia tenuifolia \N \N \N \N \N 61958 R.jussieuoides Ruellia Ruellia jussieuoides \N \N \N \N \N 61959 \N genus Pallenis \N \N \N \N \N 61960 P.megalantha Perezia Perezia megalantha \N \N \N \N \N 61961 P.asosa Pseudopeponidium Pseudopeponidium asosa \N \N \N \N \N 61962 P.sublignosum Pelargonium Pelargonium sublignosum \N \N \N \N \N 61963 A.lowii Alocasia Alocasia lowii \N \N \N \N \N 61964 F.porphyrea Fargesia Fargesia porphyrea \N \N \N \N \N 61965 D.arachidna Dioscorea Dioscorea arachidna \N \N \N \N \N 61966 B.marovoense Bulbophyllum Bulbophyllum marovoense \N \N \N \N \N 61967 \N genus Cullumia \N \N \N \N \N 61968 S.guatemalensis Swartzia Swartzia guatemalensis \N \N \N \N \N 61969 T.japonica Triantha Triantha japonica \N \N \N \N \N 61970 S.aculeata Seguieria Seguieria aculeata \N \N \N \N \N 61971 H.stocksii Habenaria Habenaria stocksii \N \N \N \N \N 61972 O.argillicola Oenothera Oenothera argillicola Appalachian evening primrose \N \N \N \N 61973 G.nodosum Geranium Geranium nodosum \N \N \N \N \N 61974 A.longiplumulosus Aponogeton Aponogeton longiplumulosus \N \N \N \N \N 61975 A.HH Anoectochilus Anoectochilus sp. HH \N \N \N \N \N 61976 A.paitensis Archirhodomyrtus Archirhodomyrtus paitensis \N \N \N \N \N 61977 M.wilsonii Magnolia Magnolia wilsonii \N \N \N \N \N 61978 E.parvulum Eutrema Eutrema parvulum \N \N \N \N \N 61979 I.hollandica Iris Iris x hollandica Dutch iris \N \N \N \N 61980 C.ianeirensis Cariniana Cariniana ianeirensis \N \N \N \N \N 61981 H.irasuense Hieracium Hieracium irasuense \N \N \N \N \N 61982 B.frenningae Bursera Bursera frenningae \N \N \N \N \N 61983 P.decursinervis Persea Persea decursinervis \N \N \N \N \N 61984 Q.Sicily Quercus Quercus sp. Sicily \N \N \N \N \N 61985 O.brandisii Orophea Orophea brandisii \N \N \N \N \N 61986 R.sorbifolius Rubus Rubus sorbifolius \N \N \N \N \N 61987 P.mengesii Phemeranthus Phemeranthus mengesii \N \N \N \N \N 61988 R.humilis Rivina Rivina humilis \N \N \N \N \N 61989 P.kermesina Portea Portea kermesina \N \N \N \N \N 61990 \N subspecies Aframomum subsericeum subsp. glaucophyllum \N \N \N \N \N 61991 P.P083 Physalis Physalis sp. P083 \N \N \N \N \N 61992 R.paniculata Ruellia Ruellia paniculata \N \N \N \N \N 61993 B.japonicus Bromus Bromus japonicus Japanese brome,Japanese chess \N \N \N \N 61994 \N subspecies Schefflera chimantensis subsp. rugosifolia \N \N \N \N \N 61995 \N tribe Cassieae \N \N \N \N \N 61996 \N genus Prolongoa \N \N \N \N \N 61997 \N genus Macrosiphonia \N \N \N \N \N 61998 A.tricaudata Aristolochia Aristolochia tricaudata \N \N \N \N \N 61999 \N genus Tristachya \N \N \N \N \N 62000 C.generalis Canna Canna x generalis \N \N \N \N \N 62001 S.tepicense Sideroxylon Sideroxylon tepicense \N \N \N \N \N 62002 F.filifolia Felicia Felicia filifolia \N \N \N \N \N 62003 \N subspecies Syzygium forte subsp. forte \N \N \N \N \N 62004 O.junceum Osteospermum Osteospermum junceum \N \N \N \N \N 62005 \N varietas Lupinus breweri var. bryoides matted lupine \N \N \N \N 62006 \N varietas Pimelea curviflora var. curviflora \N \N \N \N \N 62007 C.rubriacuta Columnea Columnea rubriacuta \N \N \N \N \N 62008 V.chinensis Vernonia Vernonia chinensis \N \N \N \N \N 62009 \N genus Wendlandiella \N \N \N \N \N 62010 P.capensis Phygelius Phygelius capensis \N \N \N \N \N 62011 G.elata Gastrodia Gastrodia elata \N \N \N \N \N 62012 A.pusilla Alseuosmia Alseuosmia pusilla \N \N \N \N \N 62013 C.tuberosus Cephalorrhynchus Cephalorrhynchus tuberosus \N \N \N \N \N 62014 R.viburnifolium Ribes Ribes viburnifolium \N \N \N \N \N 62015 P.quadrifolia Paris Paris quadrifolia \N \N \N \N \N 62016 G.undulatus Gladiolus Gladiolus undulatus \N \N \N \N \N 81522 \N genus Achlys \N \N \N \N \N 62017 V.decumbens Viola Viola decumbens \N \N \N \N \N 62018 A.manshurica Artemisia Artemisia manshurica \N \N \N \N \N 62019 B.schimperi Bidens Bidens schimperi \N \N \N \N \N 62020 P.strobiliformis Pelecyphora Pelecyphora strobiliformis \N \N \N \N \N 62021 E.EHR-2010 Eleocharis Eleocharis aff. pallens EHR-2010 \N \N \N \N \N 62022 \N genus Lisianthius \N \N \N \N \N 62023 S.villosa Syringa Syringa villosa Japanese lilac \N \N \N \N 62024 \N genus Ficaria \N \N \N \N \N 62025 S.triandra Seidelia Seidelia triandra \N \N \N \N \N 62026 C.bonanzensis Carex Carex bonanzensis \N \N \N \N \N 62027 P.trichocarpa Populus Populus maximowiczii x Populus trichocarpa \N \N \N \N \N 62028 P.bracteolata Polygala Polygala bracteolata \N \N \N \N \N 62029 \N genus Platanthera \N \N \N \N \N 62030 S.oregana Sullivantia Sullivantia oregana \N \N \N \N \N 62031 R.mombasiana Rauvolfia Rauvolfia mombasiana \N \N \N \N \N 62032 C.calophylla Corymbia Corymbia calophylla \N \N \N \N \N 62033 L.barahonense Liabum Liabum barahonense \N \N \N \N \N 62034 L.anopheles Liparis Liparis anopheles \N \N \N \N \N 62035 S.arcuata Stelechantha Stelechantha arcuata \N \N \N \N \N 62036 M.hookeri Maytenus Maytenus hookeri \N \N \N \N \N 62037 P.indecorum Paspalum Paspalum indecorum \N \N \N \N \N 62038 A.lapiazicola Adenia Adenia lapiazicola \N \N \N \N \N 62039 \N genus Neobalanocarpus \N \N \N \N \N 62040 \N genus Alectryon \N \N \N \N \N 62041 I.verbascifolia Inula Inula verbascifolia \N \N \N \N \N 62042 O.dichotoma Oxalis Oxalis dichotoma \N \N \N \N \N 62043 N.Hills' Notothlaspi Notothlaspi sp. 'Red Hills' \N \N \N \N \N 62044 A.obispoensis Arctostaphylos Arctostaphylos obispoensis \N \N \N \N \N 62045 A.concolor Actinostemon Actinostemon concolor \N \N \N \N \N 62046 R.amblycarpa Reseda Reseda amblycarpa \N \N \N \N \N 62047 P.decipiens Piaranthus Piaranthus decipiens \N \N \N \N \N 62048 L.disperma Lemna Lemna disperma \N \N \N \N \N 62049 S.microphylla Schefflera Schefflera microphylla \N \N \N \N \N 62050 \N genus Tetracarpaea \N \N \N \N \N 62051 L.physospermifolium Ligusticum Ligusticum physospermifolium \N \N \N \N \N 62052 A.asteriscophora Asterolasia Asterolasia asteriscophora \N \N \N \N \N 62053 C.lessonii Codonorchis Codonorchis lessonii \N \N \N \N \N 62054 H.caucasicum Hieracium Hieracium caucasicum \N \N \N \N \N 62055 \N varietas Mimosa hypoglauca var. hypoglauca \N \N \N \N \N 62056 P.peltatum Psacalium Psacalium peltatum \N \N \N \N \N 62057 C.pansa Carex Carex pansa \N \N \N \N \N 62058 P.lanceolata Podalyria Podalyria lanceolata \N \N \N \N \N 62059 P.leptothyrsa Psychotria Psychotria leptothyrsa \N \N \N \N \N 62060 P.sessilifolia Pearsonia Pearsonia sessilifolia \N \N \N \N \N 62061 L.lineare Lythrum Lythrum lineare \N \N \N \N \N 62062 A.denudatum Allium Allium denudatum \N \N \N \N \N 62063 T.volubilis Tournefortia Tournefortia volubilis \N \N \N \N \N 62064 A.miaotaiense Acer Acer miaotaiense \N \N \N \N \N 62065 E.grandiflora Escobedia Escobedia grandiflora \N \N \N \N \N 62066 \N varietas Gymnocalycium zegarrae var. riograndense \N \N \N \N \N 62067 \N genus Elasis \N \N \N \N \N 62068 C.macrantha Carapa Carapa macrantha \N \N \N \N \N 62069 \N genus Curtisia \N \N \N \N \N 62070 \N subspecies Zea mays subsp. huehuetenangensis San Antonio Huista teosinte,teosinte \N \N \N \N 62071 B.candollei Bupleurum Bupleurum candollei \N \N \N \N \N 62072 B.hieraciifolia Blumea Blumea hieraciifolia \N \N \N \N \N 62073 \N subspecies Centaurea micrantha subsp. herminii \N \N \N \N \N 62074 A.hooshidaryae Allium Allium hooshidaryae \N \N \N \N \N 62075 S.longigemmis Spiraea Spiraea longigemmis \N \N \N \N \N 62076 C.andrographioides Canscora Canscora andrographioides \N \N \N \N \N 62077 L.pulchra Leopoldinia Leopoldinia pulchra \N \N \N \N \N 62078 \N subspecies Vitis vinifera subsp. silvestris \N \N \N \N \N 62079 T.carinata Thelasis Thelasis carinata \N \N \N \N \N 62080 K.2446 Kohleria Kohleria sp. Clark 2446 \N \N \N \N \N 62081 H.rutea Hypochaeris Hypochaeris rutea \N \N \N \N \N 62082 \N subspecies Crepis neglecta subsp. corymbosa \N \N \N \N \N 62083 A.paniculata Ayenia Ayenia paniculata \N \N \N \N \N 62084 G.excellens Guatteria Guatteria excellens \N \N \N \N \N 62085 S.rhamnifolia Salix Salix rhamnifolia \N \N \N \N \N 62086 A.tilesii Artemisia Artemisia tilesii Aleutian mugwort \N \N \N \N 62087 C.oreastrum Chrysanthemum Chrysanthemum oreastrum \N \N \N \N \N 62088 C.sample environmental samples Taxonomy:1096678 Clusiaceae environmental sample \N \N \N \N \N 62089 C.americana Cuscuta Cuscuta americana \N \N \N \N \N 62090 \N tribe Poeae \N \N \N \N \N 62091 \N varietas Carex deweyana var. deweyana \N \N \N \N \N 62092 D.ferruginea Digitalis Digitalis ferruginea rusty foxglove \N \N \N \N 62093 L.formosensis Lepidagathis Lepidagathis formosensis \N \N \N \N \N 62094 V.mollis Vicia Vicia mollis \N \N \N \N \N 62095 S.sanguineum Schizostachyum Schizostachyum sanguineum \N \N \N \N \N 62096 H.sikkimense Hedysarum Hedysarum sikkimense \N \N \N \N \N 62097 L.wardii Lilium Lilium wardii \N \N \N \N \N 62098 A.elatior Anabasis Anabasis elatior \N \N \N \N \N 62099 H.cubensis Huertea Huertea cubensis \N \N \N \N \N 62100 A.elongata Acaena Acaena elongata \N \N \N \N \N 62101 R.acuminata Rupichloa Rupichloa acuminata \N \N \N \N \N 62102 C.pterosperma Camissonia Camissonia pterosperma \N \N \N \N \N 62103 H.wilderae Horkelia Horkelia wilderae \N \N \N \N \N 62104 P.grandifolius Phialanthus Phialanthus grandifolius \N \N \N \N \N 62105 D.radfordiana Dicerandra Dicerandra radfordiana \N \N \N \N \N 62106 S.reticulata Salix Salix reticulata \N \N \N \N \N 62107 A.yemensis Anthemis Anthemis yemensis \N \N \N \N \N 62108 S.61 Salicornia Salicornia cf. europaea Keremma 61 \N \N \N \N \N 62109 \N genus Uvariodendron \N \N \N \N \N 62110 F.taurica Fagus Fagus x taurica \N \N \N \N \N 62111 C.javanica Cnesmone Cnesmone javanica \N \N \N \N \N 62112 A.florulentum Angraecum Angraecum florulentum \N \N \N \N \N 62113 C.valerioi Cosmibuena Cosmibuena valerioi \N \N \N \N \N 62116 T.brasiliensis Trithrinax Trithrinax brasiliensis \N \N \N \N \N 62117 O.brachypoda Osmorhiza Osmorhiza brachypoda \N \N \N \N \N 62118 G.concolor Graphorkis Graphorkis concolor \N \N \N \N \N 62119 G.orientalis Grindelia Grindelia orientalis \N \N \N \N \N 62120 V.woosanensis Viola Viola woosanensis \N \N \N \N \N 62121 C.stenandrus Chordifex Chordifex stenandrus \N \N \N \N \N 62122 L.parksii Lithospermum Lithospermum parksii \N \N \N \N \N 62123 G.marginalis Galactia Galactia marginalis \N \N \N \N \N 62124 L.grandis Leucas Leucas grandis \N \N \N \N \N 62125 \N genus Madia tarweeds \N \N \N \N 62126 M.ovata Metrosideros Metrosideros ovata \N \N \N \N \N 62127 E.langleyensis Escallonia Escallonia x langleyensis \N \N \N \N \N 62128 \N varietas Cynara cardunculus var. sylvestris wild cardoon \N \N \N \N 62129 H.bordenii Hoya Hoya bordenii \N \N \N \N \N 62130 S.altissima Sobralia Sobralia altissima \N \N \N \N \N 62131 \N varietas Heracleum moellendorffii var. moellendorffii \N \N \N \N \N 62132 M.galantha Maxillaria Maxillaria galantha \N \N \N \N \N 62133 T.284 Tradescantia Tradescantia sp. Burns 284 \N \N \N \N \N 62134 S.henryi Schisandra Schisandra henryi \N \N \N \N \N 62135 D.athoa Draba Draba athoa \N \N \N \N \N 62136 I.aculeolata Ilex Ilex aculeolata \N \N \N \N \N 62137 M.pastinacifolia Malabaila Malabaila pastinacifolia \N \N \N \N \N 62138 \N genus Guizotia \N \N \N \N \N 62139 S.alpina Stachys Stachys alpina \N \N \N \N \N 62140 B.teimosense Bulbophyllum Bulbophyllum teimosense \N \N \N \N \N 62141 C.michauxiana Carex Carex michauxiana \N \N \N \N \N 62142 P.securidaca Polygala Polygala securidaca \N \N \N \N \N 62143 A.liljestrandii Aconitum Aconitum liljestrandii \N \N \N \N \N 62144 \N genus Ebenus \N \N \N \N \N 62145 M.laetum Myoporum Myoporum laetum \N \N \N \N \N 62146 M.caudigera Miconia Miconia caudigera \N \N \N \N \N 62147 O.652 Oldenlandia Oldenlandia sp. De Block et al. 652 \N \N \N \N \N 62148 E.humboldtii Eriocaulon Eriocaulon humboldtii \N \N \N \N \N 62149 \N family Flagellariaceae \N \N \N \N \N 62150 \N subspecies Musa acuminata subsp. zebrina blood banana \N \N \N \N 62151 \N genus Oftia \N \N \N \N \N 62152 P.hatschbachii Peritassa Peritassa hatschbachii \N \N \N \N \N 62153 M.PC-2007 Microstegium Microstegium sp. PC-2007 \N \N \N \N \N 62154 H.auriculata Himalaiella Himalaiella auriculata \N \N \N \N \N 62155 \N subspecies Crotalaria laburnifolia subsp. australis \N \N \N \N \N 62156 \N no rank Sinodielsia clade \N \N \N \N \N 62157 \N genus Vriesea \N \N \N \N \N 62158 C.petrophila Campanula Campanula petrophila \N \N \N \N \N 62159 O.dressleri Ornithocephalus Ornithocephalus dressleri \N \N \N \N \N 62160 G.andrewsii Gentiana Gentiana andrewsii bottle gentian \N \N \N \N 62161 S.ciliata Spiculaea Spiculaea ciliata \N \N \N \N \N 62162 N.elegans Nolana Nolana elegans \N \N \N \N \N 62163 H.sativus Halogeton Halogeton sativus \N \N \N \N \N 62164 A.brachystephana Anthemis Anthemis brachystephana \N \N \N \N \N 62165 E.europaeus Euonymus Euonymus europaeus \N \N \N \N \N 62166 \N genus Kentiopsis \N \N \N \N \N 62167 S.aspera Stachys Stachys aspera \N \N \N \N \N 62168 S.lindenianum Stigmaphyllon Stigmaphyllon lindenianum \N \N \N \N \N 62169 P.rapaceum Pelargonium Pelargonium rapaceum \N \N \N \N \N 62170 C.paraensis Cyrillopsis Cyrillopsis paraensis \N \N \N \N \N 62171 M.tenellum Micropyrum Micropyrum tenellum \N \N \N \N \N 62172 G.panamensis Gymnosiphon Gymnosiphon panamensis \N \N \N \N \N 62173 A.grandiflora Agoseris Agoseris grandiflora \N \N \N \N \N 62174 E.phyllanthus Epiphyllum Epiphyllum phyllanthus \N \N \N \N \N 62175 M.leptostachys Mosdenia Mosdenia leptostachys \N \N \N \N \N 62176 M.albescens Memecylon Memecylon albescens \N \N \N \N \N 62177 P.longifolium Piper Piper longifolium \N \N \N \N \N 62178 I.davidii Impatiens Impatiens davidii \N \N \N \N \N 62179 F.cilinodis Fallopia Fallopia cilinodis \N \N \N \N \N 62180 G.zaizou Gymnostemon Gymnostemon zaizou \N \N \N \N \N 62181 G.tashiroi Galactia Galactia tashiroi \N \N \N \N \N 62182 A.cinerea Asclepias Asclepias cinerea \N \N \N \N \N 62183 E.orbiculata Euphorbia Euphorbia orbiculata \N \N \N \N \N 62184 \N varietas Forsythia viridissima var. koreana \N \N \N \N \N 62185 B.clandestinum Bulbophyllum Bulbophyllum clandestinum \N \N \N \N \N 62186 B.FS933 Bulbophyllum Bulbophyllum aff. baronii FS933 \N \N \N \N \N 62187 \N genus Pterocelastrus \N \N \N \N \N 62188 M.leiocarpa Mercurialis Mercurialis leiocarpa \N \N \N \N \N 62189 P.venenata Pervillaea Pervillaea venenata \N \N \N \N \N 62190 H.pulchella Hyalea Hyalea pulchella \N \N \N \N \N 62191 \N genus Siderasis \N \N \N \N \N 62192 I.humilis Iris Iris humilis \N \N \N \N \N 62193 A.nutans Allium Allium nutans \N \N \N \N \N 62194 P.sulphurea Preussiodora Preussiodora sulphurea \N \N \N \N \N 62195 D.diadelpha Decaryochloa Decaryochloa diadelpha \N \N \N \N \N 62196 C.candida Cuitlauzina Cuitlauzina candida \N \N \N \N \N 62197 \N subspecies Mimulus guttatus subsp. micranthus \N \N \N \N \N 62198 A.glauca Atriplex Atriplex glauca \N \N \N \N \N 62199 O.amazonica Orleanesia Orleanesia amazonica \N \N \N \N \N 62200 A.monadelphum Allium Allium monadelphum \N \N \N \N \N 62201 D.bemarivensis Dioscorea Dioscorea bemarivensis \N \N \N \N \N 62202 S.martyi Silene Silene martyi \N \N \N \N \N 62203 S.corroanus Samaipaticereus Samaipaticereus corroanus \N \N \N \N \N 62204 B.tepuiensis Bonnetia Bonnetia tepuiensis \N \N \N \N \N 62205 A.fimbriata Amicia Amicia fimbriata \N \N \N \N \N 62206 A.hortensis Atriplex Atriplex hortensis \N \N \N \N \N 62207 E.filago Erica Erica filago \N \N \N \N \N 62208 \N genus Blakea \N \N \N \N \N 62209 C.tenuiflorum Chloroleucon Chloroleucon tenuiflorum \N \N \N \N \N 62210 \N genus Ixophorus \N \N \N \N \N 62211 E.leucanthera Erica Erica leucanthera \N \N \N \N \N 62212 A.undulatifolium Arisaema Arisaema undulatifolium \N \N \N \N \N 62213 C.vicaria Cousinia Cousinia vicaria \N \N \N \N \N 62214 \N subspecies Holboellia angustifolia subsp. angustifolia \N \N \N \N \N 62215 P.pulcher Purdieanthus Purdieanthus pulcher \N \N \N \N \N 62216 \N varietas Opuntia echios var. echios \N \N \N \N \N 62217 T.proustii Tolpis Tolpis proustii \N \N \N \N \N 62218 S.rothii Solanum Solanum rothii \N \N \N \N \N 62219 A.roxburghiana Alfaropsis Alfaropsis roxburghiana huang qi,yellow basket-willow \N \N \N \N 62220 P.ferruginea Persicaria Persicaria ferruginea \N \N \N \N \N 62221 \N genus Plukenetia \N \N \N \N \N 62222 P.moquetteanum Paphiopedilum Paphiopedilum moquetteanum \N \N \N \N \N 62223 \N varietas Cleome foliosa var. lutea \N \N \N \N \N 62224 L.99/01 Luxemburgia Luxemburgia sp. Feres et al. 99/01 \N \N \N \N \N 62225 A.NPT-2011 Apinagia Apinagia sp. NPT-2011 \N \N \N \N \N 62226 M.coriacea Meryta Meryta coriacea \N \N \N \N \N 62227 \N no rank Saccharum hybrid cultivar MS6847 \N \N \N \N \N 62228 A.cucullata Aechmea Aechmea cucullata \N \N \N \N \N 62229 L.GAHR-17 Ledermanniella Ledermanniella cf. pusilla GAHR-17 \N \N \N \N \N 62230 Z.99-6555 Zingiber Zingiber sp. Kress 99-6555 \N \N \N \N \N 62231 I.tenuissima Isolepis Isolepis tenuissima \N \N \N \N \N 62232 C.zygophylla Corymbia Corymbia zygophylla \N \N \N \N \N 62233 C.brachyceras Cribbia Cribbia brachyceras \N \N \N \N \N 62234 D.venustula Deschampsia Deschampsia venustula \N \N \N \N \N 62235 S.leucopogon Stelis Stelis leucopogon \N \N \N \N \N 62236 P.helmsii Poa Poa helmsii \N \N \N \N \N 62237 A.talimansurensis Astragalus Astragalus talimansurensis \N \N \N \N \N 62238 C.mucronatum Chondropetalum Chondropetalum mucronatum \N \N \N \N \N 62239 P.thurstonii Pritchardia Pritchardia thurstonii \N \N \N \N \N 62240 \N genus Exostema \N \N \N \N \N 62241 B.filipes Byttneria Byttneria filipes \N \N \N \N \N 62242 L.nervosa Lachenalia Lachenalia nervosa \N \N \N \N \N 62243 S.zhidoensis Saxifraga Saxifraga zhidoensis \N \N \N \N \N 62244 H.pedunculata Hemigenia Hemigenia pedunculata \N \N \N \N \N 62245 A.phylicoides Amphithalea Amphithalea phylicoides \N \N \N \N \N 62246 S.repandum Solanum Solanum repandum \N \N \N \N \N 62247 F.sedifolia Forstera Forstera sedifolia \N \N \N \N \N 62248 A.elephantinum Angraecum Angraecum elephantinum \N \N \N \N \N 62249 S.procumbens Salicornia Salicornia procumbens \N \N \N \N \N 62250 P.canescens Podalyria Podalyria canescens \N \N \N \N \N 62251 V.parviflora Voyriella Voyriella parviflora \N \N \N \N \N 62252 \N varietas Drosera montana var. tomentosa \N \N \N \N \N 62253 B.punctatus Bystropogon Bystropogon punctatus \N \N \N \N \N 62254 \N subspecies Aloe striata subsp. karasbergensis \N \N \N \N \N 62255 \N genus Mouriri \N \N \N \N \N 62256 P.parryi Phacelia Phacelia parryi \N \N \N \N \N 62257 \N genus Psilanthus \N \N \N \N \N 62258 A.bracteata Acanthochlamys Acanthochlamys bracteata \N \N \N \N \N 62259 D.oligosanthes Dichanthelium Dichanthelium oligosanthes \N \N \N \N \N 62260 A.squarrosa Aphelandra Aphelandra squarrosa saffron spike,zebraplant \N \N \N \N 62261 \N no rank Saccharum hybrid cultivar Co 86011 \N \N \N \N \N 62262 P.pratense Phleum Phleum pratense timothy,timothy grass \N \N \N \N 62263 L.setiger Leucopogon Leucopogon setiger \N \N \N \N \N 62264 R.sapida Rhopalostylis Rhopalostylis sapida \N \N \N \N \N 62265 A.s.n. Artemisia Artemisia sp. Petrovsky s.n. \N \N \N \N \N 62266 C.spathulata Cyrtandra Cyrtandra spathulata \N \N \N \N \N 62267 C.kousa Cornus Cornus kousa kousa dogwood \N \N \N \N 62268 M.pageae Muraltia Muraltia pageae \N \N \N \N \N 62269 \N genus Lyonothamnus \N \N \N \N \N 62270 M.dicoelocarpum Melampodium Melampodium dicoelocarpum \N \N \N \N \N 62271 P.oleaefolia Podalyria Podalyria oleaefolia \N \N \N \N \N 62272 N.robusta Nicoraepoa Nicoraepoa robusta \N \N \N \N \N 62273 D.sarvestanica Dionysia Dionysia sarvestanica \N \N \N \N \N 62274 \N genus Hintonella \N \N \N \N \N 62275 A.nebula Alocasia Alocasia nebula \N \N \N \N \N 62276 \N genus Euryops \N \N \N \N \N 62277 A.geoffreyi Austrostipa Austrostipa geoffreyi \N \N \N \N \N 62278 S.steyermarkii Simsia Simsia steyermarkii \N \N \N \N \N 62279 P.sarawschanica Pseudoclausia Pseudoclausia sarawschanica \N \N \N \N \N 62280 \N genus Spathicarpa \N \N \N \N \N 62281 E.lishihchenii Epimedium Epimedium lishihchenii \N \N \N \N \N 62282 P.ciliatus Plectranthus Plectranthus ciliatus \N \N \N \N \N 62283 \N genus Cuminia \N \N \N \N \N 62284 \N genus Thymopsis \N \N \N \N \N 62285 K.amabilis Kolkwitzia Kolkwitzia amabilis \N \N \N \N \N 62286 I.costata Ipomoea Ipomoea costata \N \N \N \N \N 62287 \N genus Opsicarpium \N \N \N \N \N 62288 E.ciliatum Eryngium Eryngium ciliatum \N \N \N \N \N 62289 \N genus Agelanthus \N \N \N \N \N 62290 E.simii Eugenia Eugenia simii \N \N \N \N \N 62291 A.carmichaelii Aconitum Aconitum carmichaelii \N \N \N \N \N 62292 H.comptoniana Hardenbergia Hardenbergia comptoniana \N \N \N \N \N 62293 C.udensis Clintonia Clintonia udensis \N \N \N \N \N 62294 V.salicifolia Viguiera Viguiera salicifolia \N \N \N \N \N 62295 A.pubescens Acanthus Acanthus pubescens \N \N \N \N \N 62296 F.silaifolia Ferulago Ferulago silaifolia \N \N \N \N \N 62297 \N subspecies Grevillea dryandroides subsp. hirsuta \N \N \N \N \N 62298 \N varietas Coptis japonica var. dissecta \N \N \N \N \N 62299 \N varietas Paris delavayi var. delavayi \N \N \N \N \N 62300 D.atlanticum Doronicum Doronicum atlanticum \N \N \N \N \N 62301 \N genus Donatia \N \N \N \N \N 62302 \N genus Saccellium \N \N \N \N \N 62303 \N subspecies Calceolaria comosa subsp. comosa \N \N \N \N \N 62304 S.oiapocensis Strychnos Strychnos oiapocensis \N \N \N \N \N 62305 L.schoelleri Lotus Lotus schoelleri \N \N \N \N \N 62306 \N genus Ridleyella \N \N \N \N \N 62307 \N order Zingiberales \N \N \N \N \N 62308 P.junatovii Ptilagrostis Ptilagrostis junatovii \N \N \N \N \N 62309 H.alpina Hornungia Hornungia alpina \N \N \N \N \N 62310 S.moricolor Stryphnodendron Stryphnodendron moricolor \N \N \N \N \N 62311 E.alaica Euphorbia Euphorbia alaica \N \N \N \N \N 62312 P.feliciana Pitcairnia Pitcairnia feliciana \N \N \N \N \N 62313 A.phaeolepis Artemisia Artemisia phaeolepis \N \N \N \N \N 62314 M.minutifolia Mimosa Mimosa minutifolia \N \N \N \N \N 62315 P.quercetorum Packera Packera quercetorum \N \N \N \N \N 62316 M.simplex Murdannia Murdannia simplex \N \N \N \N \N 62317 L.wooroonooran Leptospermum Leptospermum wooroonooran \N \N \N \N \N 62318 M.deserticola Malesherbia Malesherbia deserticola \N \N \N \N \N 62319 P.lactea Pomaria Pomaria lactea \N \N \N \N \N 62320 \N genus Femeniasia \N \N \N \N \N 62321 T.479 unclassified Taraxacum Taraxacum sp. 479 \N \N \N \N \N 62322 G.riojense Gymnocalycium Gymnocalycium riojense \N \N \N \N \N 62323 S.cylindriceps Streptoglossa Streptoglossa cylindriceps \N \N \N \N \N 62324 \N genus Cytisophyllum \N \N \N \N \N 62325 O.ballotae Orobanche Orobanche ballotae \N \N \N \N \N 62326 C.rupestrium Chamaecrista Chamaecrista rupestrium \N \N \N \N \N 62327 C.pectinatus Cyperus Cyperus pectinatus \N \N \N \N \N 62328 P.leucocephalus Pilosocereus Pilosocereus leucocephalus \N \N \N \N \N 62329 C.media Ceropegia Ceropegia media \N \N \N \N \N 62330 M.paniculatum Myriopteron Myriopteron paniculatum \N \N \N \N \N 62331 M.boninensis Metrosideros Metrosideros boninensis \N \N \N \N \N 62332 A.austriacus Astragalus Astragalus austriacus \N \N \N \N \N 62333 B.longicuspis Bauhinia Bauhinia longicuspis \N \N \N \N \N 62334 \N genus Curcuma \N \N \N \N \N 62335 \N genus Cynorhiza \N \N \N \N \N 62336 A.novaezelandiae Acaena Acaena novaezelandiae biddy-biddy \N \N \N \N 62337 D.longisiliqua Draba Draba longisiliqua \N \N \N \N \N 62338 P.argentea Plantago Plantago argentea \N \N \N \N \N 62339 M.crispum Monadenium Monadenium crispum \N \N \N \N \N 62340 A.moschatellina Adoxa Adoxa moschatellina moschatel,muskroot,townhall clock \N \N \N \N 62341 G.grande Graptopetalum Graptopetalum grande \N \N \N \N \N 62342 \N varietas Racinaea multiflora var. tomensis \N \N \N \N \N 62343 P.pinnata Petromarula Petromarula pinnata \N \N \N \N \N 62344 \N genus Perralderia \N \N \N \N \N 62345 \N genus Stemonocoleus \N \N \N \N \N 62346 E.grandis Echinocereus Echinocereus grandis \N \N \N \N \N 62347 \N no rank unclassified Tropidieae \N \N \N \N \N 62348 P.floribunda Physaria Physaria floribunda \N \N \N \N \N 62349 O.magellanica Oxalis Oxalis magellanica \N \N \N \N \N 62350 P.voense Platycelyphium Platycelyphium voense \N \N \N \N \N 62351 M.physophora Microcoelia Microcoelia physophora \N \N \N \N \N 62352 M.pithecolobioides Mimosa Mimosa pithecolobioides \N \N \N \N \N 62353 P.philippinensis Pseuduvaria Pseuduvaria philippinensis \N \N \N \N \N 62354 \N varietas Arachis glabrata var. glabrata \N \N \N \N \N 62355 G.libanotica Gagea Gagea libanotica \N \N \N \N \N 62356 C.yezoense Chrysanthemum Chrysanthemum yezoense \N \N \N \N \N 62357 T.complanata Terminalia Terminalia complanata \N \N \N \N \N 62358 A.stachyodes Alpinia Alpinia stachyodes \N \N \N \N \N 62359 \N genus Cyrillopsis \N \N \N \N \N 62360 M.depressa Massonia Massonia depressa \N \N \N \N \N 62361 G.xanthocarpa Gahnia Gahnia xanthocarpa \N \N \N \N \N 62362 \N genus Siemensia \N \N \N \N \N 62363 T.belmirensis Tripodanthus Tripodanthus belmirensis \N \N \N \N \N 62364 G.divaricatus Gymnosiphon Gymnosiphon divaricatus \N \N \N \N \N 62365 W.coraeensis Weigela Weigela coraeensis \N \N \N \N \N 62366 \N genus Gentianella \N \N \N \N \N 62367 \N genus Borassus \N \N \N \N \N 62368 S.palmifolia Setaria Setaria palmifolia \N \N \N \N \N 62369 L.CVM-2007-3 Leandra Leandra sp. CVM-2007-3 \N \N \N \N \N 62370 C.creticum Crocodylium Crocodylium creticum \N \N \N \N \N 62371 C.paschei Colchicum Colchicum paschei \N \N \N \N \N 62372 E.turgida Erica Erica turgida \N \N \N \N \N 62373 D.hatschbachii Deguelia Deguelia hatschbachii \N \N \N \N \N 62374 B.anomala Bouchetia Bouchetia anomala \N \N \N \N \N 62375 D.ecuadorensis Drymonia Drymonia ecuadorensis \N \N \N \N \N 62376 E.abdelkuri Euphorbia Euphorbia abdelkuri \N \N \N \N \N 62377 E.hebecarpa Euphorbia Euphorbia hebecarpa \N \N \N \N \N 62378 S.yunnanensis Sinocrassula Sinocrassula yunnanensis \N \N \N \N \N 62379 E.macrocarpa Ezoloba Ezoloba macrocarpa \N \N \N \N \N 62380 \N genus Actinodaphne \N \N \N \N \N 62381 \N subspecies Artemisia tilesii subsp. hultenii \N \N \N \N \N 62382 C.bulbosa Calypso Calypso bulbosa \N \N \N \N \N 62383 T.lancifolium Trillium Trillium lancifolium \N \N \N \N \N 62384 D.reticulata Drypetes Drypetes reticulata \N \N \N \N \N 62385 \N subspecies Trifolium longipes subsp. elmeri \N \N \N \N \N 62386 G.9419 Guatteria Guatteria cf. amplifolia Maas et al. 9419 \N \N \N \N \N 62387 T.tinctoria Thymelaea Thymelaea tinctoria \N \N \N \N \N 62388 M.squamosa Myricaria Myricaria squamosa \N \N \N \N \N 62389 T.427 Triainolepis Triainolepis sp. Razafimandimbison 427 \N \N \N \N \N 62390 M.montana Morierina Morierina montana \N \N \N \N \N 62391 B.richardsonii Boykinia Boykinia richardsonii \N \N \N \N \N 62392 E.longearistatus Elymus Elymus longearistatus \N \N \N \N \N 62393 A.indica Acriopsis Acriopsis indica \N \N \N \N \N 62394 L.NSW212078 Lepyrodia Lepyrodia sp. NSW212078 \N \N \N \N \N 62395 P.lanuginosa Polylepis Polylepis lanuginosa \N \N \N \N \N 62396 C.9061 Cyclopia Cyclopia sp. Crisp 9061 \N \N \N \N \N 62397 T.53 Tamarix Tamarix cf. canariensis 53 \N \N \N \N \N 62398 D.SH-2010 Diplectria Diplectria sp. SH-2010 \N \N \N \N \N 62399 \N subspecies Babiana sambucina subsp. sambucina \N \N \N \N \N 62400 G.citrifolia Glycosmis Glycosmis citrifolia \N \N \N \N \N 62401 \N genus Guiera \N \N \N \N \N 62402 \N subspecies Vigna membranacea subsp. caesia \N \N \N \N \N 62403 A.cretica Alyssoides Alyssoides cretica \N \N \N \N \N 62404 B.sambiranense Bulbophyllum Bulbophyllum sambiranense \N \N \N \N \N 62405 E.bupleuroides Eryngium Eryngium bupleuroides \N \N \N \N \N 62406 R.laxiflorum Ribes Ribes laxiflorum spreading currant,trailing black currant \N \N \N \N 62407 M.oldfieldii Myriocephalus Myriocephalus oldfieldii \N \N \N \N \N 62408 L.cordata Licuala Licuala cordata \N \N \N \N \N 62409 T.turialbae Trichopilia Trichopilia turialbae \N \N \N \N \N 62410 S.cantabrica Scorzoneroides Scorzoneroides cantabrica \N \N \N \N \N 62411 H.fimbriatus Himalayacalamus Himalayacalamus fimbriatus \N \N \N \N \N 62412 I.zollingeriana Indigofera Indigofera zollingeriana \N \N \N \N \N 62413 \N genus Hydrastis \N \N \N \N \N 62414 P.elegans Potalia Potalia elegans \N \N \N \N \N 62415 \N subspecies Inga vera subsp. affinis \N \N \N \N \N 62416 H.diversifolia Hemigraphis Hemigraphis diversifolia \N \N \N \N \N 62417 R.basilobatus Ranunculus Ranunculus basilobatus \N \N \N \N \N 62418 \N genus Hansenia \N \N \N \N \N 62419 P.uliginosa Phyllachne Phyllachne uliginosa \N \N \N \N \N 62420 S.arborescens Sommera Sommera arborescens \N \N \N \N \N 62421 A.grandis Alyxia Alyxia grandis \N \N \N \N \N 62422 L.princei Lupinus Lupinus princei \N \N \N \N \N 62423 G.cauliflora Grias Grias cauliflora anchovy-pear \N \N \N \N 62424 \N genus Mesechites \N \N \N \N \N 62425 C.falcata Cyclopia Cyclopia falcata \N \N \N \N \N 62426 \N genus Bursera \N \N \N \N \N 62427 E.quadrinervis Eulalia Eulalia quadrinervis \N \N \N \N \N 62428 E.subinerme Eryngium Eryngium subinerme \N \N \N \N \N 62429 C.anceps Coleataenia Coleataenia anceps \N \N \N \N \N 62430 \N varietas Malacothrix saxatilis var. arachnoidea \N \N \N \N \N 62431 C.venustulus Calochortus Calochortus venustulus \N \N \N \N \N 62432 N.alabamensis Neviusia Neviusia alabamensis \N \N \N \N \N 62433 P.sandersonii Pomaria Pomaria sandersonii \N \N \N \N \N 62434 A.alpina Achillea Achillea alpina \N \N \N \N \N 62435 N.krisgreeniae Nidularium Nidularium krisgreeniae \N \N \N \N \N 62436 C.insignis Clusia Clusia insignis \N \N \N \N \N 62437 R.album Rhododendron Rhododendron album \N \N \N \N \N 62438 C.incana Craspedia Craspedia incana \N \N \N \N \N 62439 E.japonicum Erythronium Erythronium japonicum \N \N \N \N \N 62440 \N varietas Symphyotrichum pilosum var. pilosum \N \N \N \N \N 62441 X.tridentata Xanthosia Xanthosia tridentata \N \N \N \N \N 62442 M.1301 Mandevilla Mandevilla sp. Simoes 1301 \N \N \N \N \N 62443 P.phuwuaense Polypleurum Polypleurum phuwuaense \N \N \N \N \N 62444 T.argentea Tournefortia Tournefortia argentea \N \N \N \N \N 62445 L.traubii Lycoris Lycoris traubii \N \N \N \N \N 62446 V.eriocarpa Valerianella Valerianella eriocarpa \N \N \N \N \N 62447 I.graminifolia Ischnolepis Ischnolepis graminifolia \N \N \N \N \N 62448 C.amabilis Castanopsis Castanopsis amabilis \N \N \N \N \N 62449 C.odorata Cuscuta Cuscuta odorata \N \N \N \N \N 62450 D.ridleyi Diospyros Diospyros ridleyi \N \N \N \N \N 62451 \N varietas Caralluma adscendens var. adscendens \N \N \N \N \N 62452 T.octandrum Trichostigma Trichostigma octandrum \N \N \N \N \N 62453 C.glabra Catesbaea Catesbaea glabra \N \N \N \N \N 62454 E.corallodendron Erythrina Erythrina corallodendron coral tree \N \N \N \N 62455 L.sophiifolia Laennecia Laennecia sophiifolia \N \N \N \N \N 62456 C.philippi Chamaecrista Chamaecrista philippi \N \N \N \N \N 62457 \N subspecies Hemizonia congesta subsp. luzulifolia \N \N \N \N \N 62458 R.crocea Rhamnus Rhamnus crocea spiny redberry \N \N \N \N 62459 \N genus Endiandra \N \N \N \N \N 62460 P.squarrosum Pachyphyllum Pachyphyllum squarrosum \N \N \N \N \N 62461 I.angulosa Indigofera Indigofera angulosa \N \N \N \N \N 62462 E.bloomeri Ericameria Ericameria bloomeri rabbitbush \N \N \N \N 62463 \N subspecies Ophionella arcuata subsp. mirkinii \N \N \N \N \N 62464 M.pinetorum Macrocarpaea Macrocarpaea pinetorum \N \N \N \N \N 62465 \N varietas Eleutherococcus divaricatus var. divaricatus \N \N \N \N \N 62466 D.copelandii Dendrocalamus Dendrocalamus copelandii \N \N \N \N \N 62467 T.elongata Tricholepis Tricholepis elongata \N \N \N \N \N 62468 \N varietas Festuca nevadensis var. gaetula \N \N \N \N \N 62469 N.ravida Nannoglottis Nannoglottis ravida \N \N \N \N \N 62470 S.gayanus Senecio Senecio gayanus \N \N \N \N \N 62471 R.nanum Rhaponticum Rhaponticum nanum \N \N \N \N \N 62472 C.3518 Caiophora Caiophora sp. Hufford 3518 \N \N \N \N \N 62473 R.kuepferi Ranunculus Ranunculus kuepferi \N \N \N \N \N 62474 D.K20616 Diospyros Diospyros sp. K20616 \N \N \N \N \N 62475 L.decipiens Lagascea Lagascea decipiens \N \N \N \N \N 62476 A.uniflorum Argyrolobium Argyrolobium uniflorum \N \N \N \N \N 62477 C.dubius Costus Costus dubius \N \N \N \N \N 62478 C.pulchella Chrysothemis Chrysothemis pulchella \N \N \N \N \N 62479 G.saxifragifolia Graellsia Graellsia saxifragifolia \N \N \N \N \N 62480 P.algida Phippsia Phippsia algida \N \N \N \N \N 62481 R.crispata Rhipsalis Rhipsalis crispata \N \N \N \N \N 62482 Z.hirtzii Zootrophion Zootrophion hirtzii \N \N \N \N \N 62483 P.854 Polypogon Polypogon sp. Forest 854 \N \N \N \N \N 62484 \N genus Phoebanthus \N \N \N \N \N 62485 H.3245 Hydrolea Hydrolea sp. Chase 3245 \N \N \N \N \N 62486 \N genus Paramiflos \N \N \N \N \N 62487 A.tataricum Acer Acer tataricum Tatarian maple \N \N \N \N 62488 \N genus Haemodorum \N \N \N \N \N 62489 P.acantholimon Paepalanthus Paepalanthus acantholimon \N \N \N \N \N 62490 V.americana Vallisneria Vallisneria americana eel-grass,tape-grass \N \N \N \N 62491 P.eximium Polemonium Polemonium eximium skypilot \N \N \N \N 62492 \N subspecies Sagittaria graminea subsp. chapmanii \N \N \N \N \N 62493 T.alinae Tetramolopium Tetramolopium alinae \N \N \N \N \N 62494 E.arborescens Ericameria Ericameria arborescens goldenfleece \N \N \N \N 62495 T.fasciculata Tillandsia Tillandsia fasciculata cardinal airplant \N \N \N \N 62496 \N no rank Cattleya bicolor 'Formiga' \N \N \N \N \N 62497 S.flava Sarracenia Sarracenia flava yellow pitcherplant \N \N \N \N 62498 H.1130 Heterospathe Heterospathe sp. Baker 1130 \N \N \N \N \N 62499 F.albida Foveolina Foveolina albida \N \N \N \N \N 62500 \N varietas Exochorda giraldii var. wilsonii \N \N \N \N \N 62501 A.jaxartica Anabasis Anabasis jaxartica \N \N \N \N \N 62502 O.12 Osmanthus Osmanthus sp. Reeves 12 \N \N \N \N \N 81718 \N genus Dolichothrix \N \N \N \N \N 62503 E.pseudoesula Euphorbia Euphorbia pseudoesula \N \N \N \N \N 62504 T.lamprophyllum Taraxacum Taraxacum lamprophyllum \N \N \N \N \N 62505 V.affinis Viola Viola affinis \N \N \N \N \N 62506 S.corydalifolia Sinadoxa Sinadoxa corydalifolia \N \N \N \N \N 62507 A.grenieri Alchemilla Alchemilla grenieri \N \N \N \N \N 62508 E.woodfordioides Englerina Englerina woodfordioides \N \N \N \N \N 62509 \N subspecies Carex scirpoidea subsp. scirpoidea \N \N \N \N \N 62510 R.viridis Rauvolfia Rauvolfia viridis \N \N \N \N \N 62511 R.adamsii Rhododendron Rhododendron adamsii \N \N \N \N \N 62512 E.marshallii Erysimum Erysimum x marshallii \N \N \N \N \N 62513 \N genus Corynostylis \N \N \N \N \N 62514 P.philadelphica Physalis Physalis philadelphica Mexican groundcherry \N \N \N \N 62515 E.cernuum Eriogonum Eriogonum cernuum \N \N \N \N \N 62516 A.castello-paivae Aeonium Aeonium castello-paivae \N \N \N \N \N 62517 R.thyrsiflorus Rumex Rumex thyrsiflorus \N \N \N \N \N 62518 C.guatemalensis Coursetia Coursetia guatemalensis \N \N \N \N \N 62519 C.malzacianum Centaurium Centaurium malzacianum \N \N \N \N \N 62520 L.henryi Lonicera Lonicera henryi \N \N \N \N \N 62521 M.albovaginatum Mulinum Mulinum albovaginatum \N \N \N \N \N 62522 L.tetragonum Limonium Limonium tetragonum \N \N \N \N \N 62523 P.emarginella Peperomia Peperomia emarginella \N \N \N \N \N 62524 \N varietas Lycoris longituba var. flava \N \N \N \N \N 62525 C.bulbispina Corynopuntia Corynopuntia bulbispina \N \N \N \N \N 62526 B.picta Begonia Begonia picta \N \N \N \N \N 62527 O.cyri Onobrychis Onobrychis cyri \N \N \N \N \N 62528 P.oliveri Pterostylis Pterostylis oliveri \N \N \N \N \N 62529 P.obtusifolia Protea Protea obtusifolia \N \N \N \N \N 62530 R.citrina Razisea Razisea citrina \N \N \N \N \N 62531 R.baurii Rhodohypoxis Rhodohypoxis baurii \N \N \N \N \N 62532 E.brassii Eleocharis Eleocharis brassii \N \N \N \N \N 62533 \N genus Megastachya \N \N \N \N \N 62534 P.stonei Pterisanthes Pterisanthes stonei \N \N \N \N \N 62535 \N subspecies Asclepias incarnata subsp. incarnata \N \N \N \N \N 62536 S.rotundifolium Sideroxylon Sideroxylon rotundifolium \N \N \N \N \N 62537 D.fragrans Dalechampia Dalechampia fragrans \N \N \N \N \N 62538 T.6273Hnew unclassified Taraxacum Taraxacum (sect. Piesis) sp. 6273Hnew \N \N \N \N \N 62539 A.flexuosa Anisotome Anisotome flexuosa \N \N \N \N \N 62540 C.redolens Croton Croton redolens \N \N \N \N \N 62541 S.cuatrecasasii Silene Silene cuatrecasasii \N \N \N \N \N 62542 A.senegalensis Annona Annona senegalensis wild custard-apple \N \N \N \N 62543 P.longicaulis Pedicularis Pedicularis longicaulis \N \N \N \N \N 62544 P.xestophyllum Paranephelium Paranephelium xestophyllum \N \N \N \N \N 62545 C.persica Consolida Consolida persica \N \N \N \N \N 62546 S.freycinetianum Santalum Santalum freycinetianum Lanai sandalwood \N \N \N \N 62547 B.latissimum Bupleurum Bupleurum latissimum \N \N \N \N \N 62548 C.contractus Cyrtanthus Cyrtanthus contractus \N \N \N \N \N 62549 G.achilleifolia Gilia Gilia achilleifolia \N \N \N \N \N 62550 T.latifolia Turgenia Turgenia latifolia \N \N \N \N \N 62551 D.balansae Diospyros Diospyros balansae \N \N \N \N \N 62552 P.wolfii Poa Poa wolfii \N \N \N \N \N 62553 P.chapaensis Primula Primula chapaensis \N \N \N \N \N 62554 \N tribe Capsiceae \N \N \N \N \N 62555 P.serrulatus Penstemon Penstemon serrulatus \N \N \N \N \N 62556 M.dilatatum Maianthemum Maianthemum dilatatum deerberry \N \N \N \N 62557 \N genus Psilocaulon \N \N \N \N \N 62558 S.oreophila Sarracenia Sarracenia oreophila green pitcherplant \N \N \N \N 62559 P.sikkimensis Primula Primula sikkimensis \N \N \N \N \N 62560 S.macranthum Siphocranion Siphocranion macranthum \N \N \N \N \N 62561 \N genus Glyceria \N \N \N \N \N 62562 C.glaucophyllum Carlephyton Carlephyton glaucophyllum \N \N \N \N \N 62563 C.serratus Carpodetus Carpodetus serratus \N \N \N \N \N 62564 L.uniflorum Leucadendron Leucadendron uniflorum \N \N \N \N \N 62565 G.barbata Gentianopsis Gentianopsis barbata \N \N \N \N \N 62566 D.viridissima Dalechampia Dalechampia viridissima \N \N \N \N \N 62567 C.DK-2009 Carapa Carapa sp. 5 DK-2009 \N \N \N \N \N 62568 P.soleirolii Parietaria Parietaria soleirolii \N \N \N \N \N 62569 A.elephantina Ampelocissus Ampelocissus elephantina \N \N \N \N \N 62570 C.micrantha Cryptantha Cryptantha micrantha \N \N \N \N \N 62571 K.pelagia Kunzea Kunzea pelagia \N \N \N \N \N 62572 M.nyctaginea Mirabilis Mirabilis nyctaginea \N \N \N \N \N 62573 M.aegyptia Malva Malva aegyptia \N \N \N \N \N 62574 H.sessiliflora Hypochaeris Hypochaeris sessiliflora achicoria,chikku chikku \N \N \N \N 62575 A.williamsonii Amphithalea Amphithalea williamsonii \N \N \N \N \N 62576 O.ovalifolia Oxysepala Oxysepala ovalifolia \N \N \N \N \N 62577 S.latifolia Schweinfurthia Schweinfurthia latifolia \N \N \N \N \N 62578 M.pseudolavatera Malva Malva pseudolavatera \N \N \N \N \N 62579 P.2722 Psychotria Psychotria sp. Bremer 2722 \N \N \N \N \N 62580 C.harazensis Cousinia Cousinia harazensis \N \N \N \N \N 62581 \N genus Pleurothallopsis \N \N \N \N \N 62582 M.lonchophyllus Myoxanthus Myoxanthus lonchophyllus \N \N \N \N \N 62583 P.dickinsii Potentilla Potentilla dickinsii \N \N \N \N \N 62584 C.serotinus Crocus Crocus serotinus \N \N \N \N \N 62585 \N genus Magnolia \N \N \N \N \N 62586 A.recurva Atriplex Atriplex recurva \N \N \N \N \N 62587 C.procerum Cycnogeton Cycnogeton procerum \N \N \N \N \N 62588 C.tubulosum Cycnium Cycnium tubulosum \N \N \N \N \N 62589 C.rohlfsianum Cyclamen Cyclamen rohlfsianum \N \N \N \N \N 62590 \N genus Sixalix \N \N \N \N \N 62591 S.JK-2009 Sebaea Sebaea sp. 5 JK-2009 \N \N \N \N \N 62592 U.dioica Urtica Urtica dioica great nettle,stinging nettle \N \N \N \N 62593 P.hirsutum Platysepalum Platysepalum hirsutum \N \N \N \N \N 62594 T.bi10 unclassified Taraxacum Taraxacum (sect. Hamata) sp. bi10 \N \N \N \N \N 62595 \N subspecies Rafnia capensis subsp. ovata \N \N \N \N \N 62596 P.frutetorum Pelargonium Pelargonium frutetorum \N \N \N \N \N 82303 \N genus Boenninghausenia \N \N \N \N \N 62597 M.aurivillus Mimosa Mimosa aurivillus \N \N \N \N \N 62598 L.pedemontana Luzula Luzula pedemontana \N \N \N \N \N 62599 P.glacialis Pentameris sect. Pentameris Pentameris glacialis \N \N \N \N \N 62600 M.veitchii Magnolia Magnolia x veitchii \N \N \N \N \N 62601 \N family Casuarinaceae \N \N \N \N \N 62602 B.fortunei Berberis Berberis fortunei \N \N \N \N \N 62603 N.tuberosa Nepeta Nepeta tuberosa \N \N \N \N \N 62604 \N genus Colubrina \N \N \N \N \N 62605 P.compressa Phacellaria Phacellaria compressa \N \N \N \N \N 62606 O.mitchellii Oligochaetochilus Oligochaetochilus mitchellii \N \N \N \N \N 62607 L.inermis Lambertia Lambertia inermis \N \N \N \N \N 62608 N.onoana Nolana Nolana onoana \N \N \N \N \N 62609 S.nepalense Satyrium Satyrium nepalense \N \N \N \N \N 62610 P.guianensis Poraqueiba Poraqueiba guianensis \N \N \N \N \N 62611 S.filipetala Silene Silene filipetala \N \N \N \N \N 62612 L.celata Luzula Luzula celata \N \N \N \N \N 62613 A.procumbens Aciphylla Aciphylla procumbens \N \N \N \N \N 62614 R.pedunculosa Ruellia Ruellia pedunculosa \N \N \N \N \N 62615 W.5534 Wilkiea Wilkiea sp. Ford 5534 \N \N \N \N \N 62616 N.longifolia Nepenthes Nepenthes longifolia \N \N \N \N \N 62617 M.crumenarioides Mimosa Mimosa crumenarioides \N \N \N \N \N 62618 A.nummularia Atriplex Atriplex nummularia \N \N \N \N \N 62619 Z.violacea Zaluzianskya Zaluzianskya violacea \N \N \N \N \N 62620 E.webbii Echium Echium webbii \N \N \N \N \N 62621 C.pochutlensis Chamaedorea Chamaedorea pochutlensis \N \N \N \N \N 62622 \N subspecies Arceuthobium vaginatum subsp. vaginatum \N \N \N \N \N 62623 L.europaeus Lycopus Lycopus europaeus \N \N \N \N \N 62624 M.hartwegii Myrica Myrica hartwegii Sierra bayberry \N \N \N \N 62625 A.guiengola Agave Agave guiengola \N \N \N \N \N 62626 T.sichouense Tetrastigma Tetrastigma sichouense \N \N \N \N \N 62627 V.monantha Vicia Vicia monantha bard vetch \N \N \N \N 62628 B.setifera Berkheya Berkheya setifera \N \N \N \N \N 62629 V.453 Virectaria Virectaria sp. Adams 453 \N \N \N \N \N 62630 S.flosculosa Sigesbeckia Sigesbeckia flosculosa \N \N \N \N \N 62631 P.pedatum Philodendron Philodendron pedatum \N \N \N \N \N 62632 E.weissiae Eurya Eurya weissiae \N \N \N \N \N 62633 D.montanum Delphinium Delphinium montanum \N \N \N \N \N 62634 P.cerrateae Peperomia Peperomia cerrateae \N \N \N \N \N 62635 T.fimbriolata Tetraria Tetraria fimbriolata \N \N \N \N \N 62636 L.aletes Lepidium Lepidium aletes \N \N \N \N \N 62637 C.amplexicaulis Camellia Camellia amplexicaulis \N \N \N \N \N 62638 L.laxiflorus Lathyrus Lathyrus laxiflorus \N \N \N \N \N 62639 J.scirpoides Juncus Juncus scirpoides \N \N \N \N \N 62640 P.smithiorum Pitcairnia Pitcairnia smithiorum \N \N \N \N \N 62641 A.ramosum Anthericum Anthericum ramosum \N \N \N \N \N 62642 S.cordata Salix Salix cordata \N \N \N \N \N 62643 \N varietas Glochidion sessiliflorum var. pedicellatum \N \N \N \N \N 62644 P.littorale Pelargonium Pelargonium littorale \N \N \N \N \N 62645 \N genus Thevetia \N \N \N \N \N 62646 M.alba Michelia Michelia alba \N \N \N \N \N 62647 C.pentandrus Chisocheton Chisocheton pentandrus \N \N \N \N \N 62648 \N subspecies Trymalium floribundum subsp. trifidum \N \N \N \N \N 62649 M.rupicola Maxburretia Maxburretia rupicola \N \N \N \N \N 62650 G.parviflorum Gastrolobium Gastrolobium parviflorum \N \N \N \N \N 62651 P.1009 Peponidium Peponidium sp. 1 Eriksson et al. 1009 \N \N \N \N \N 62652 G.polycarpa Guatteria Guatteria polycarpa \N \N \N \N \N 62653 T.rutifolium Thalictrum Thalictrum rutifolium \N \N \N \N \N 62654 A.multicaulis Asclepias Asclepias multicaulis \N \N \N \N \N 62655 E.hirsuta Euchlora Euchlora hirsuta \N \N \N \N \N 62656 P.floridus Penstemon Penstemon floridus \N \N \N \N \N 62657 S.woodii Stenoglottis Stenoglottis woodii \N \N \N \N \N 62658 \N varietas Sinocrassula paoshingensis var. spinulosa \N \N \N \N \N 62659 L.stipitata Lagenophora Lagenophora stipitata \N \N \N \N \N 62660 \N genus Satyria \N \N \N \N \N 62661 M.ovoidea Manglietia Manglietia ovoidea \N \N \N \N \N 62662 M.bracteata Mucuna Mucuna bracteata \N \N \N \N \N 62663 \N genus Artemisia \N \N \N \N \N 62664 H.monorchis Herminium Herminium monorchis \N \N \N \N \N 62665 P.sarcostemma Petalostelma Petalostelma sarcostemma \N \N \N \N \N 62666 O.difformis Ornithochilus Ornithochilus difformis \N \N \N \N \N 62667 A.laterale Achyrospermum Achyrospermum laterale \N \N \N \N \N 62668 F.cylindraceus Ferocactus Ferocactus cylindraceus \N \N \N \N \N 62669 R.letouzeyi Rauvolfia Rauvolfia letouzeyi \N \N \N \N \N 62670 R.canescens Rhodomyrtus Rhodomyrtus canescens \N \N \N \N \N 62671 C.parksii Croton Croton parksii \N \N \N \N \N 62672 A.cernua Arnica Arnica cernua serpentine arnica \N \N \N \N 62673 P.pullenii Paraserianthes Paraserianthes pullenii \N \N \N \N \N 62674 A.schiedeana Archibaccharis Archibaccharis schiedeana \N \N \N \N \N 62675 B.brasiliensis Brunfelsia Brunfelsia brasiliensis \N \N \N \N \N 62676 E.stenoclada Euphorbia Euphorbia stenoclada \N \N \N \N \N 62677 \N subspecies Darwiniothamnus lancifolius subsp. glabriusculus \N \N \N \N \N 62678 P.oleosus Pleioblastus Pleioblastus oleosus \N \N \N \N \N 62679 N.reinwardtiana Nepenthes Nepenthes reinwardtiana \N \N \N \N \N 62680 C.thaisiana Cordia Cordia thaisiana \N \N \N \N \N 62681 C.javanica Codonopsis Codonopsis javanica \N \N \N \N \N 62682 S.chamaemespilus Sorbus Sorbus chamaemespilus \N \N \N \N \N 62683 S.calocephalus Senecio Senecio calocephalus \N \N \N \N \N 62684 A.sancta Anacamptis Anacamptis sancta \N \N \N \N \N 62685 M.clinopodia Monarda Monarda clinopodia \N \N \N \N \N 62686 S.guangxiensis Sasa Sasa guangxiensis \N \N \N \N \N 62687 \N genus Aloe \N \N \N \N \N 62688 C.favargeri Centaurium Centaurium favargeri \N \N \N \N \N 62689 E.vandermerwei Eucomis Eucomis vandermerwei \N \N \N \N \N 62690 \N subspecies Cornus florida subsp. urbiniana \N \N \N \N \N 62691 H.africana Hydnora Hydnora africana \N \N \N \N \N 62692 \N genus Agrocharis \N \N \N \N \N 62693 S.Sspluis50 Sobralia Sobralia sp. Sspluis50 \N \N \N \N \N 62694 F.mandschurica Forsythia Forsythia mandschurica \N \N \N \N \N 62695 X.maidenii Xylosma Xylosma maidenii \N \N \N \N \N 62696 H.126 Hypoxis Hypoxis sp. Leyens & Lobin 126 \N \N \N \N \N 62697 Z.acuminata Zimmermannia Zimmermannia acuminata \N \N \N \N \N 62698 \N genus Hannafordia \N \N \N \N \N 62699 P.TA1367 Physalis Physalis sp. TA1367 \N \N \N \N \N 62700 R.albescens Rumex Rumex albescens \N \N \N \N \N 62701 A.hongkongense Asarum Asarum hongkongense \N \N \N \N \N 62702 \N genus Piqueria \N \N \N \N \N 62703 C.orientalis Callichilia Callichilia orientalis \N \N \N \N \N 62704 V.rigida Valeriana Valeriana rigida \N \N \N \N \N 62705 L.lasiocarpum Lepidium Lepidium lasiocarpum \N \N \N \N \N 62706 \N varietas Oxygonum dregeanum var. linearifolium \N \N \N \N \N 62707 G.stowardii Gastrolobium Gastrolobium stowardii \N \N \N \N \N 62708 H.stevensii Hydropectis Hydropectis stevensii \N \N \N \N \N 62709 S.muliensis Saussurea Saussurea muliensis \N \N \N \N \N 62710 D.draboides Draba Draba draboides \N \N \N \N \N 62711 O.venezuelensis Oreobolus Oreobolus venezuelensis \N \N \N \N \N 62712 L.andersonii Lycium Lycium andersonii water jacket \N \N \N \N 62713 H.hiernianus Hibiscus Hibiscus hiernianus \N \N \N \N \N 62714 A.286 Aspalathus Aspalathus sp. D. Edwards 286 \N \N \N \N \N 62715 B.amethystina Brimeura Brimeura amethystina \N \N \N \N \N 62716 S.candida Sternbergia Sternbergia candida \N \N \N \N \N 62717 \N genus Monandriella \N \N \N \N \N 62718 L.aculeata Leea Leea aculeata \N \N \N \N \N 62719 G.rufomarginatus Gladiolus Gladiolus rufomarginatus \N \N \N \N \N 62720 P.guajava Psidium Psidium guajava guava \N \N \N \N 62721 A.lessingii Arnica Arnica lessingii \N \N \N \N \N 62722 V.gaultheriifolium Vaccinium Vaccinium gaultheriifolium \N \N \N \N \N 62723 T.coriacea Tricalysia Tricalysia coriacea \N \N \N \N \N 62724 C.propinqua Coprosma Coprosma propinqua \N \N \N \N \N 62725 G.dumetorum Gnidia Gnidia dumetorum \N \N \N \N \N 62726 C.harperi Cuscuta Cuscuta harperi \N \N \N \N \N 62727 A.longistigmata Apetahia Apetahia longistigmata \N \N \N \N \N 62728 E.tristis Eugeissona Eugeissona tristis \N \N \N \N \N 62729 H.yunnanensis Heterosmilax Heterosmilax yunnanensis \N \N \N \N \N 62730 \N genus Antidesma \N \N \N \N \N 62731 C.9956 Condylocarpon Condylocarpon sp. Thomas 9956 \N \N \N \N \N 62732 S.barbata Sinningia Sinningia barbata \N \N \N \N \N 62733 M.claoxyloides Mallotus Mallotus claoxyloides \N \N \N \N \N 62734 R.austrinum Rhododendron Rhododendron austrinum \N \N \N \N \N 62735 M.exigua Manulea Manulea exigua \N \N \N \N \N 62736 B.VFI-2011 Borago Borago sp. VFI-2011 \N \N \N \N \N 62737 \N genus Ascochilus \N \N \N \N \N 62738 F.tibeticum Fagopyrum Fagopyrum tibeticum \N \N \N \N \N 62739 R.willmottiae Rosa Rosa willmottiae \N \N \N \N \N 62740 C.chlorantha Chiloglottis Chiloglottis chlorantha \N \N \N \N \N 62741 \N genus Piptanthus \N \N \N \N \N 62742 T.laciniata Tolpis Tolpis laciniata \N \N \N \N \N 62743 S.strempelioides Strempeliopsis Strempeliopsis strempelioides \N \N \N \N \N 62744 N.1 Neonauclea Neonauclea sp. 1 \N \N \N \N \N 62745 E.oxyphyllus Euonymus Euonymus oxyphyllus \N \N \N \N \N 62746 A.dolichophyllus Astragalus Astragalus dolichophyllus \N \N \N \N \N 62747 \N genus Trigynaea \N \N \N \N \N 62748 P.exsertus Pogonopus Pogonopus exsertus \N \N \N \N \N 62749 F.capillatum Fagopyrum Fagopyrum capillatum \N \N \N \N \N 62750 U.blanchetii Utricularia Utricularia blanchetii \N \N \N \N \N 62751 I.aperta Ivesia Ivesia aperta \N \N \N \N \N 62752 C.spicata Campanula Campanula spicata \N \N \N \N \N 62753 \N family Petiveriaceae \N \N \N \N \N 62754 \N subspecies Alnus alnobetula subsp. suaveolens \N \N \N \N \N 62755 T.crinifolia Tetraria Tetraria crinifolia \N \N \N \N \N 62756 E.xylophylloides Euphorbia Euphorbia xylophylloides \N \N \N \N \N 62757 A.caudata Aechmea Aechmea caudata \N \N \N \N \N 62758 L.hybridum Lolium Lolium x hybridum \N \N \N \N \N 62759 \N varietas Fraxinus lanuginosa var. serrata \N \N \N \N \N 62760 C.CSB-2007 Chlorophytum Chlorophytum sp. CSB-2007 \N \N \N \N \N 62761 G.areysianum Gossypium Gossypium areysianum \N \N \N \N \N 62762 L.chamissonis Lupinus Lupinus chamissonis \N \N \N \N \N 62763 P.pulvinata Polycarpaea Polycarpaea pulvinata \N \N \N \N \N 62764 \N subspecies Acer mono subsp. okamotoanum \N \N \N \N \N 62765 M.salicifolia Magnolia Magnolia salicifolia \N \N \N \N \N 62766 S.acerifolium Solanum Solanum acerifolium \N \N \N \N \N 62767 \N genus Oxera \N \N \N \N \N 62768 H.helianthoides Heliopsis Heliopsis helianthoides \N \N \N \N \N 62769 C.leucantha Cousinia Cousinia leucantha \N \N \N \N \N 62770 S.quadriloculatum Solanum Solanum quadriloculatum \N \N \N \N \N 62771 \N tribe Cratoxyleae \N \N \N \N \N 62772 S.endophloium Syzygium Syzygium endophloium \N \N \N \N \N 62773 N.cadamba Neolamarckia Neolamarckia cadamba \N \N \N \N \N 62774 T.hahniana Tridimeris Tridimeris hahniana \N \N \N \N \N 62775 R.perrieri Rhus Rhus perrieri \N \N \N \N \N 62776 O.adenotricha Ononis Ononis adenotricha \N \N \N \N \N 62777 \N genus Micranthes \N \N \N \N \N 62778 \N genus Erythrodes \N \N \N \N \N 62779 L.2010 Lupinus Lupinus aff. ramosissimus Hughes 2010 \N \N \N \N \N 62780 Y.elata Yucca Yucca elata soap tree,soaptree yucca \N \N \N \N 62781 P.multibracteatum Pelargonium Pelargonium multibracteatum \N \N \N \N \N 62782 H.filipes Holozonia Holozonia filipes \N \N \N \N \N 62783 C.perfoliata Crassula Crassula perfoliata \N \N \N \N \N 62784 C.jessoppiae Crocus Crocus x jessoppiae \N \N \N \N \N 62785 P.oblonga Phytocrene Phytocrene oblonga \N \N \N \N \N 62786 C.varroniifolia Cordia Cordia varroniifolia \N \N \N \N \N 62787 A.spinulifera Androsace Androsace spinulifera \N \N \N \N \N 62788 C.japonicum Cirsium Cirsium japonicum \N \N \N \N \N 62789 \N tribe Pyroleae \N \N \N \N \N 62790 C.scopulorum Calamagrostis Calamagrostis scopulorum \N \N \N \N \N 82304 \N genus Calypso \N \N \N \N \N 62791 A.vvedenskyanum Allium Allium vvedenskyanum \N \N \N \N \N 62792 C.sodiroanus Centropogon Centropogon sodiroanus \N \N \N \N \N 62793 \N genus Hoya \N \N \N \N \N 62794 P.veneta Pentaschistis Pentameris veneta \N \N \N \N \N 62795 R.cynaroides Rhaponticum Rhaponticum cynaroides \N \N \N \N \N 62796 P.leptophylla Psychotria Psychotria leptophylla \N \N \N \N \N 62797 \N family Potamogetonaceae horned pondweed family,pondweed family \N \N \N \N 62798 I.cornuta Ilex Ilex cornuta Chinese holly \N \N \N \N 62799 D.inoxia Datura Datura inoxia downy thornapple,sacred datura \N \N \N \N 62800 \N genus Brachysiphon \N \N \N \N \N 62801 T.GMP-2003 Trevesia Trevesia cf. valida GMP-2003 \N \N \N \N \N 62802 \N varietas Ajania shiwogiku var. kinokuniensis \N \N \N \N \N 62803 \N family Ctenolophonaceae \N \N \N \N \N 62804 \N subspecies Colchicum chalcedonicum subsp. punctatum \N \N \N \N \N 62805 A.gmelinii Artemisia Artemisia gmelinii \N \N \N \N \N 62806 N.sativa Nyssa Nyssa sativa \N \N \N \N \N 62807 H.variabilis Heliophila Heliophila variabilis \N \N \N \N \N 62808 M.moggii Moraea Moraea moggii \N \N \N \N \N 62809 \N genus Gonatopus \N \N \N \N \N 62810 M.australasica Montia Montia australasica \N \N \N \N \N 62811 I.thomensis Impatiens Impatiens thomensis \N \N \N \N \N 62812 \N genus Commelina \N \N \N \N \N 62813 F.regia Fuchsia Fuchsia regia \N \N \N \N \N 62814 \N genus Strelitzia \N \N \N \N \N 62815 \N genus Dimorphanthera \N \N \N \N \N 62816 I.jucunda Indigofera Indigofera jucunda \N \N \N \N \N 62817 \N genus Brachiaria \N \N \N \N \N 62818 U.adspersa Urochloa Urochloa adspersa \N \N \N \N \N 62819 U.rotundifolia Uebelinia Uebelinia rotundifolia \N \N \N \N \N 62820 R.koreana Rosa Rosa koreana \N \N \N \N \N 62821 P.canariensis Pulicaria Pulicaria canariensis \N \N \N \N \N 62822 D.L20070187 Dehaasia Dehaasia sp. L20070187 \N \N \N \N \N 62823 A.salina Angasomyrtus Angasomyrtus salina \N \N \N \N \N 62824 \N genus Hesperolaburnum \N \N \N \N \N 62825 P.ramosus Penstemon Penstemon ramosus \N \N \N \N \N 62826 C.deceptor Crassula Crassula deceptor \N \N \N \N \N 62827 \N genus Calathodes \N \N \N \N \N 62828 \N genus Dimerandra \N \N \N \N \N 62829 C.lacustris Carex Carex lacustris \N \N \N \N \N 62830 S.cavaleriei Salvia Salvia cavaleriei \N \N \N \N \N 62831 C.jacquinioides Casasia Casasia jacquinioides \N \N \N \N \N 62832 \N subspecies Astragalus vesicarius subsp. carniolicus \N \N \N \N \N 62833 P.prolifera Pleurothallis Pleurothallis prolifera \N \N \N \N \N 62834 P.poloninensis Primula Primula poloninensis \N \N \N \N \N 62835 M.erythrophylla Mussaenda Mussaenda erythrophylla \N \N \N \N \N 62836 \N subspecies Leucojum vernum subsp. carpaticum \N \N \N \N \N 62837 D.magnifica Diuris Diuris magnifica pansy orchid \N \N \N \N 62838 C.sinaica Crataegus Crataegus sinaica \N \N \N \N \N 62839 A.261 Adenia Adenia sp. Tokuoka 261 \N \N \N \N \N 62840 S.australis Sambucus Sambucus australis \N \N \N \N \N 62841 R.ovata Rhus Rhus ovata sugar sumac \N \N \N \N 62842 P.silvicultrix Pterostylis Pterostylis silvicultrix \N \N \N \N \N 62843 \N genus Stirlingia \N \N \N \N \N 62844 S.gracilis Suaeda Suaeda gracilis \N \N \N \N \N 62845 U.europaeus Ulex Ulex europaeus furze,gorse \N \N \N \N 62846 A.debile Asarum Asarum debile \N \N \N \N \N 62847 \N genus Neesia \N \N \N \N \N 62848 G.s.n. Guadua Guadua sp. Hodkinson s.n. \N \N \N \N \N 62849 G.moroccana Glandora Glandora moroccana \N \N \N \N \N 62850 \N genus Edithcolea \N \N \N \N \N 62851 S.leblondii Swartzia Swartzia leblondii \N \N \N \N \N 62852 D.cuspidata Downingia Downingia cuspidata \N \N \N \N \N 62853 G.mogokensis Globba Globba mogokensis \N \N \N \N \N 62854 B.kockiana Bauhinia Bauhinia kockiana \N \N \N \N \N 62855 C.abyssinicum Crinum Crinum abyssinicum \N \N \N \N \N 62856 A.calyptratum Amomum Amomum calyptratum \N \N \N \N \N 62857 S.phaseoloides Solanum Solanum phaseoloides \N \N \N \N \N 62858 A.ronganensis Ancylostemon Ancylostemon ronganensis \N \N \N \N \N 62859 P.haynesii Potamogeton Potamogeton x haynesii \N \N \N \N \N 62860 I.lecardii Ixora Ixora lecardii \N \N \N \N \N 62861 \N subspecies Anthemis arvensis subsp. incrassata \N \N \N \N \N 62862 P.turbinata Pyrenaria Pyrenaria turbinata \N \N \N \N \N 62863 A.calamifolia Acacia Acacia calamifolia \N \N \N \N \N 62864 P.aristata Protea Protea aristata \N \N \N \N \N 62865 C.subsetacea Cliffortia Cliffortia subsetacea \N \N \N \N \N 62866 B.poimorpha Briza Briza poimorpha \N \N \N \N \N 62867 \N varietas Brassica oleracea var. capitata cabbage \N \N \N \N 62868 U.pierrei Uvaria Uvaria pierrei \N \N \N \N \N 62869 B.guianense Brosimum Brosimum guianense bastard breadnut,coquillo,letterwood,muirapimina,snakewood,tibikishi \N \N \N \N 62870 S.buchananii Satyrium Satyrium buchananii \N \N \N \N \N 62871 C.rufibarba Calathea Calathea rufibarba \N \N \N \N \N 62872 A.fluitans Amphibromus Amphibromus fluitans \N \N \N \N \N 62873 G.caribaea Guatteria Guatteria caribaea \N \N \N \N \N 62874 C.pittieri Clerodendrum Clerodendrum pittieri \N \N \N \N \N 62875 E.macropus Epilobium Epilobium macropus \N \N \N \N \N 62876 D.alstoniana Diogenesia Diogenesia alstoniana \N \N \N \N \N 62877 I.TP-2009 Inga Inga sp. 59 TP-2009 \N \N \N \N \N 62878 A.filicaulis Anthemis Anthemis filicaulis \N \N \N \N \N 62879 P.carderi Prestoea Prestoea carderi \N \N \N \N \N 62880 T.SW-2011 Thottea Thottea sp. SW-2011 \N \N \N \N \N 62881 \N genus Blepharidachne \N \N \N \N \N 62882 H.commutata Hibbertia Hibbertia commutata \N \N \N \N \N 62883 T.polystachyum Trifolium Trifolium polystachyum \N \N \N \N \N 62884 L.humboldtii Lilium Lilium humboldtii \N \N \N \N \N 62885 D.XMW-2002-2 Dendrobium Dendrobium sp. XMW-2002-2 \N \N \N \N \N 62886 P.luetzelburgii Passiflora Passiflora luetzelburgii \N \N \N \N \N 62887 C.angustifolia Cologania Cologania angustifolia \N \N \N \N \N 62888 \N varietas Spartina alterniflora var. glabra \N \N \N \N \N 83082 \N genus Holozonia \N \N \N \N \N 62889 E.ankazobensis Euphorbia Euphorbia ankazobensis \N \N \N \N \N 62890 H.minor Hornstedtia Hornstedtia minor \N \N \N \N \N 62891 \N genus Holographis \N \N \N \N \N 62892 C.spinescens Cytisus Cytisus spinescens \N \N \N \N \N 62893 \N genus Viola \N \N \N \N \N 62894 \N family Thurniaceae \N \N \N \N \N 62895 \N genus Sarcomelicope \N \N \N \N \N 62896 A.idiomorpha Acacia Acacia idiomorpha \N \N \N \N \N 62897 S.athoa Sideritis Sideritis athoa \N \N \N \N \N 62898 \N genus Paramelhania \N \N \N \N \N 62899 C.pigra Carex Carex pigra \N \N \N \N \N 62900 \N genus Duranta \N \N \N \N \N 62901 S.bailloniana Plerandra Schefflera bailloniana \N \N \N \N \N 62902 C.feinbruniae Colchicum Colchicum feinbruniae \N \N \N \N \N 62903 G.pulchellum Gossypium Gossypium pulchellum \N \N \N \N \N 62904 C.calceolus Cypripedium Cypripedium cf. calceolus \N \N \N \N \N 62905 B.excavata Basella Basella excavata \N \N \N \N \N 62906 O.magnidens Oreocharis Oreocharis magnidens \N \N \N \N \N 62907 R.aconitifolius Ranunculus Ranunculus aconitifolius \N \N \N \N \N 62908 D.peculiaris Dendrocalamus Dendrocalamus peculiaris \N \N \N \N \N 62909 H.cordata Haploclathra Haploclathra cordata \N \N \N \N \N 62910 D.TNS:Pradeep90005 Dalzellia Dalzellia sp. TNS:Pradeep90005 \N \N \N \N \N 62911 D.setosa Draba Draba setosa \N \N \N \N \N 62912 P.AK286773 Poa Poa aff. cita AK286773 \N \N \N \N \N 62913 O.floribunda Ophiocolea Ophiocolea floribunda \N \N \N \N \N 62914 V.elegans Verhuellia Verhuellia elegans \N \N \N \N \N 62915 \N no rank unclassified Meliaceae \N \N \N \N \N 62916 C.vitalba Clematis Clematis vitalba \N \N \N \N \N 62917 J.decipiens Juncus Juncus decipiens \N \N \N \N \N 62918 A.pyrenaica Aquilegia Aquilegia pyrenaica \N \N \N \N \N 62919 \N genus Oreanthes \N \N \N \N \N 62920 Q.pteridophylla Quiina Quiina pteridophylla \N \N \N \N \N 62921 S.pimpinellifolium Lycopersicon Solanum lycopersicum x Solanum pimpinellifolium \N \N \N \N \N 62922 P.vaginata Polystachya Polystachya vaginata \N \N \N \N \N 62923 S.majus Stylidium Stylidium majus \N \N \N \N \N 62924 \N genus Halacsya \N \N \N \N \N 62925 H.quasipinifolium Holcoglossum Holcoglossum quasipinifolium \N \N \N \N \N 62926 H.kingii Hamadryas Hamadryas kingii \N \N \N \N \N 62927 B.wrightii Beschorneria Beschorneria wrightii \N \N \N \N \N 62928 \N subspecies Aichryson pachycaulon subsp. praetermissum \N \N \N \N \N 62929 \N genus Conothamnus \N \N \N \N \N 62930 C.planipetiolata Coursetia Coursetia planipetiolata \N \N \N \N \N 62931 S.pomifera Salvia Salvia pomifera \N \N \N \N \N 62932 A.abrotanifolia Anthemis Anthemis abrotanifolia \N \N \N \N \N 62933 S.hookeri Symplocos Symplocos hookeri \N \N \N \N \N 62934 \N genus Osmoxylon \N \N \N \N \N 62935 P.anonifolium Piper Piper anonifolium \N \N \N \N \N 62936 L.krameri Liparis Liparis krameri \N \N \N \N \N 62937 M.ignea Masdevallia Masdevallia ignea \N \N \N \N \N 62938 L.villosa Lagerstroemia Lagerstroemia villosa \N \N \N \N \N 62939 \N genus Callisthene \N \N \N \N \N 62940 O.versicolor Otachyrium Otachyrium versicolor \N \N \N \N \N 62941 F.laurifolium Franciscodendron Franciscodendron laurifolium \N \N \N \N \N 62942 C.yecorensis Croton Croton yecorensis \N \N \N \N \N 62943 M.carsei Microlaena Microlaena carsei \N \N \N \N \N 62944 C.zeyheri Combretum Combretum zeyheri \N \N \N \N \N 62945 P.flabellata Poa Poa flabellata \N \N \N \N \N 62946 R.deliciosus Rubus Rubus deliciosus Rocky Mountain raspberry \N \N \N \N 62947 \N genus Habranthus \N \N \N \N \N 62948 N.ekmannii Neobracea Neobracea ekmannii \N \N \N \N \N 62949 C.malortieanus Costus Costus malortieanus \N \N \N \N \N 62950 \N genus Pentagonia \N \N \N \N \N 62951 R.quercifolia Ridleyandra Ridleyandra quercifolia \N \N \N \N \N 62952 O.picturatissimum Oncidium Oncidium picturatissimum \N \N \N \N \N 62953 T.23 Tricalysia Tricalysia sp. Mvungi 23 \N \N \N \N \N 62954 T.bipunctata Trichoglottis Trichoglottis bipunctata \N \N \N \N \N 62955 A.altissimum Allium Allium altissimum \N \N \N \N \N 62956 P.caricinum Phragmipedium Phragmipedium caricinum \N \N \N \N \N 62957 \N tribe Perityleae \N \N \N \N \N 62958 \N subspecies Stauracanthus genistoides subsp. genistoides \N \N \N \N \N 62959 D.lactucoides Dicranostigma Dicranostigma lactucoides \N \N \N \N \N 62960 \N genus Saruma \N \N \N \N \N 62961 V.palandensis Vasconcellea Vasconcellea palandensis \N \N \N \N \N 62962 S.brokawii Styloceras Styloceras brokawii \N \N \N \N \N 62963 \N genus Sinosassafras \N \N \N \N \N 62964 P.carlinoides Platycarphella Platycarphella carlinoides \N \N \N \N \N 62965 D.dolichocentroides Delphinium Delphinium dolichocentroides \N \N \N \N \N 62966 C.mannii Culcasia Culcasia mannii \N \N \N \N \N 62967 N.722-03 Nymphaea Nymphaea sp. 722-03 \N \N \N \N \N 62968 T.globosa Traunsteinera Traunsteinera globosa \N \N \N \N \N 62969 I.kolpakowskiana Iris Iris kolpakowskiana \N \N \N \N \N 62970 M.denhamii Meryta Meryta denhamii \N \N \N \N \N 62971 C.flava Crataegus Crataegus flava summer hawthorn,yellow haw \N \N \N \N 62972 D.cistiflora Drosera Drosera cistiflora \N \N \N \N \N 62973 F.lyrata Ficus Ficus lyrata banjo fig,fiddle-leaf fig \N \N \N \N 62974 S.crassiramea Senna Senna crassiramea \N \N \N \N \N 62975 D.viridiflora Digitalis Digitalis viridiflora \N \N \N \N \N 62976 N.frondosa Nematolepis Nematolepis frondosa \N \N \N \N \N 62977 I.hirta Inula Inula hirta \N \N \N \N \N 62978 S.guianense Sterigmapetalum Sterigmapetalum guianense \N \N \N \N \N 62979 V.Toulouse' Viola Viola sp. 'Parme de Toulouse' \N \N \N \N \N 62980 R.decursiva Rhaphidophora Rhaphidophora decursiva \N \N \N \N \N 62981 O.amethystea Orobanche Orobanche amethystea \N \N \N \N \N 62982 P.coronata Pedicularis Pedicularis coronata \N \N \N \N \N 62983 C.brunellifolia Calceolaria Calceolaria brunellifolia \N \N \N \N \N 62984 M.torresiae Mimosa Mimosa torresiae \N \N \N \N \N 62985 A.zygomeris Amicia Amicia zygomeris \N \N \N \N \N 62986 S.ciliolatum Symphyotrichum Symphyotrichum ciliolatum fringed blue aster \N \N \N \N 62987 A.helianthoides Apatesia Apatesia helianthoides \N \N \N \N \N 62988 C.omeiensis Camellia Camellia omeiensis \N \N \N \N \N 62989 S.cantoniensis Spiraea Spiraea cantoniensis \N \N \N \N \N 62990 D.involucrata Draba Draba involucrata \N \N \N \N \N 62991 N.macrophylla Neocarya Neocarya macrophylla \N \N \N \N \N 62992 H.macronectar Habenaria Habenaria macronectar \N \N \N \N \N 62993 I.santolinoides Ivesia Ivesia santolinoides \N \N \N \N \N 62994 R.sublanceolatum Rheum Rheum sublanceolatum \N \N \N \N \N 62995 \N genus Harungana \N \N \N \N \N 62996 \N genus Pterocactus \N \N \N \N \N 62997 G.pallidiflora Glycyrrhiza Glycyrrhiza pallidiflora \N \N \N \N \N 62998 A.erecta Adenophora Adenophora erecta \N \N \N \N \N 62999 M.serra Metagentiana Metagentiana serra \N \N \N \N \N 63000 \N genus Haplolobus \N \N \N \N \N 63001 L.spectabilis Lamprocapnos Lamprocapnos spectabilis bleeding heart \N \N \N \N 63002 P.crassifolium Platyspermation Platyspermation crassifolium \N \N \N \N \N 63003 C.fauriei Chrysosplenium Chrysosplenium fauriei \N \N \N \N \N 63004 V.negundo Vitex Vitex negundo Chinese chastetree,huang ping \N \N \N \N 63005 V.nana Vallisneria Vallisneria nana \N \N \N \N \N 63006 P.tuerckheimii Panicum Panicum tuerckheimii \N \N \N \N \N 63007 S.pinnatifida Synthyris Synthyris pinnatifida \N \N \N \N \N 63008 R.guerrerensis Randia Randia guerrerensis \N \N \N \N \N 63009 M.microcephalum Melampodium Melampodium microcephalum \N \N \N \N \N 63010 A.setifera Anabasis Anabasis setifera \N \N \N \N \N 63011 B.frutescens Bocconia Bocconia frutescens \N \N \N \N \N 63012 C.religiosa Crateva Crateva religiosa barna,bidasi,sacred garlic-pear \N \N \N \N 63013 S.pilosa Stelis Stelis pilosa \N \N \N \N \N 63014 \N genus Malacothamnus \N \N \N \N \N 63015 Z.minima Zephyranthes Zephyranthes minima \N \N \N \N \N 63016 H.speciosa Hancornia Hancornia speciosa \N \N \N \N \N 63017 M.monticola Mussaenda Mussaenda monticola \N \N \N \N \N 63018 M.aciantha Maxillaria Maxillaria aciantha \N \N \N \N \N 63019 I.verruculosa Indigofera Indigofera verruculosa \N \N \N \N \N 63020 S.batrachopus Streptanthus Streptanthus batrachopus Tamalpais jewelflower \N \N \N \N 63021 S.SH-2010 Sonchus Sonchus sp. SH-2010 \N \N \N \N \N 63022 C.sciadophylloides Chengiopanax Chengiopanax sciadophylloides \N \N \N \N \N 63023 M.inodora Morella Morella inodora \N \N \N \N \N 63024 T.remota Tillandsia Tillandsia remota \N \N \N \N \N 63025 P.canadensis Populus Populus deltoides x Populus x canadensis \N \N \N \N \N 63026 D.sundingii Diplotaxis Diplotaxis sundingii \N \N \N \N \N 63027 \N genus Alyogyne \N \N \N \N \N 63028 E.thrincioides Erigeron Erigeron thrincioides \N \N \N \N \N 63029 Z.munroanus Zeugites Zeugites munroanus \N \N \N \N \N 63030 L.perfoliata Lysimachia Lysimachia perfoliata \N \N \N \N \N 63031 B.glomerata Bergia Bergia glomerata \N \N \N \N \N 63032 R.drummondii Rhagodia Rhagodia drummondii \N \N \N \N \N 63033 S.5050 Salicornia Salicornia sp. Walter & Mucina 5050 \N \N \N \N \N 63034 R.lucida Royena Royena lucida \N \N \N \N \N 63035 H.elliptica Hovea Hovea elliptica \N \N \N \N \N 63036 K.platycarpa Knoxia Knoxia platycarpa \N \N \N \N \N 63037 J.hochreutineri Julbernardia Julbernardia hochreutineri \N \N \N \N \N 63038 \N genus Taverniera \N \N \N \N \N 63039 \N genus Barnebydendron \N \N \N \N \N 63040 A.lanceolata Azara Azara lanceolata \N \N \N \N \N 63041 P.chacaoensis Prosthechea Prosthechea chacaoensis \N \N \N \N \N 63042 C.vulvaria Chenopodium Chenopodium vulvaria \N \N \N \N \N 63043 C.moenchioides Chaetanthera Chaetanthera moenchioides \N \N \N \N \N 63044 M.odoratissima Monardella Monardella odoratissima \N \N \N \N \N 63045 B.seminarioi Bauhinia Bauhinia seminarioi \N \N \N \N \N 63046 H.perfoliata Halopeplis Halopeplis perfoliata \N \N \N \N \N 63047 S.trinervis Schiedea Schiedea trinervis \N \N \N \N \N 63048 L.lucidus Lithocarpus Lithocarpus lucidus \N \N \N \N \N 63049 R.arvensis Ranunculus Ranunculus arvensis \N \N \N \N \N 77327 \N genus Excentradenia \N \N \N \N \N 63050 C.ramosa Coutoubea Coutoubea ramosa \N \N \N \N \N 63051 S.murgetana Sideritis Sideritis murgetana \N \N \N \N \N 63052 T.tarda Tulipa Tulipa tarda \N \N \N \N \N 63053 W.triandra Wiesneria Wiesneria triandra \N \N \N \N \N 63054 P.elegans Passiflora Passiflora actinia x Passiflora elegans \N \N \N \N \N 63055 S.strictum Sceletium Sceletium strictum \N \N \N \N \N 63056 Z.sp. Ziziphus Ziziphus sp. \N \N \N \N \N 63057 F.dentatoalata Fallopia Fallopia dentatoalata \N \N \N \N \N 63058 \N genus Prasium \N \N \N \N \N 63059 D.sulcatum Dendrobium Dendrobium sulcatum \N \N \N \N \N 63060 M.latidens Mimulus Mimulus latidens \N \N \N \N \N 63061 C.olivaceus Croton Croton olivaceus \N \N \N \N \N 63062 N.polyactinum Notobubon Notobubon polyactinum \N \N \N \N \N 63063 B.deflexa Brassica Brassica deflexa \N \N \N \N \N 63064 R.ellenbeckii Reseda Reseda ellenbeckii \N \N \N \N \N 63065 P.borbonense Piper Piper borbonense \N \N \N \N \N 63066 \N genus Boea \N \N \N \N \N 63067 C.verbenacea Ceratopyxis Ceratopyxis verbenacea \N \N \N \N \N 63068 C.tournefortii Celtis Celtis tournefortii \N \N \N \N \N 63069 D.MAG-2009 Dacryodes Dacryodes sp. MAG-2009 \N \N \N \N \N 63070 C.calcitrapa Calycera Calycera calcitrapa \N \N \N \N \N 63071 R.plebeius Ranunculus Ranunculus plebeius \N \N \N \N \N 63072 A.excelsa Altingia Altingia excelsa \N \N \N \N \N 63073 R.heliolepis Rhododendron Rhododendron heliolepis \N \N \N \N \N 63074 E.eamesii Empetrum Empetrum eamesii rockberry \N \N \N \N 63075 \N genus Melanolepis \N \N \N \N \N 63076 M.invisa Mimosa Mimosa invisa \N \N \N \N \N 63077 \N subspecies Clermontia clermontioides subsp. clermontioides \N \N \N \N \N 63078 P.rude Panicum Panicum rude \N \N \N \N \N 63079 P.3544 Phrynium Phrynium sp. Suksathan 3544 \N \N \N \N \N 63080 D.fuscescens Dimeria Dimeria fuscescens \N \N \N \N \N 63081 O.alba Osyris Osyris alba \N \N \N \N \N 63082 C.lavandulifolius Calylophus Calylophus lavandulifolius \N \N \N \N \N 63083 \N genus Corbassona \N \N \N \N \N 63084 C.afrospina Cleome Cleome afrospina \N \N \N \N \N 63085 E.fusiforme Eriogonum Eriogonum fusiforme \N \N \N \N \N 63086 S.velaticaulis Stelis Stelis velaticaulis \N \N \N \N \N 63087 Z.exaltata Zeltnera Zeltnera exaltata \N \N \N \N \N 63088 A.bilocularis Atalantia Atalantia bilocularis \N \N \N \N \N 63089 P.arenaria Pseudoclappia Pseudoclappia arenaria \N \N \N \N \N 63090 L.LM201001/5 Ledebouria Ledebouria sp. Mucina LM201001/5 \N \N \N \N \N 63091 \N varietas Eriogonum thompsoniae var. matthewsiae \N \N \N \N \N 63092 G.globularifolia Grindelia Grindelia globularifolia \N \N \N \N \N 63093 A.umbellatus Adenocarpus Adenocarpus umbellatus \N \N \N \N \N 63094 \N genus Lithocarpus \N \N \N \N \N 63095 L.hermannii Lonchocarpus Lonchocarpus hermannii \N \N \N \N \N 63096 D.chinantlensis Desmoncus Desmoncus chinantlensis \N \N \N \N \N 63097 C.sventenii Crambe Crambe sventenii \N \N \N \N \N 63098 A.caprinus Astragalus Astragalus caprinus \N \N \N \N \N 63099 \N genus Chorisochora \N \N \N \N \N 63100 D.incana Descurainia Descurainia incana \N \N \N \N \N 63101 M.similis Mimosa Mimosa similis \N \N \N \N \N 63102 N.pedicellata Nesaea Nesaea pedicellata \N \N \N \N \N 63103 K.hexapetala Kayea Kayea hexapetala \N \N \N \N \N 63104 M.arachnoidea Muraltia Muraltia arachnoidea \N \N \N \N \N 63105 G.verna Gentiana Gentiana verna \N \N \N \N \N 63106 D.kirkii Drimiopsis Drimiopsis kirkii \N \N \N \N \N 63107 \N subspecies Hopea jucunda subsp. modesta \N \N \N \N \N 63108 \N subspecies Turnera sidoides subsp. integrifolia \N \N \N \N \N 63109 M.omeiensis Mazus Mazus omeiensis \N \N \N \N \N 63110 B.albomaculata Boesenbergia Boesenbergia albomaculata \N \N \N \N \N 63111 C.cordifolia Cayratia Cayratia cordifolia \N \N \N \N \N 63112 A.santolina Artemisia Artemisia santolina \N \N \N \N \N 63113 \N genus Lycium \N \N \N \N \N 63114 T.imperialis Tillandsia Tillandsia imperialis \N \N \N \N \N 63115 S.2164 Symbolanthus Symbolanthus cf. tricolor Sobel and Strudwick 2164 \N \N \N \N \N 63116 L.4172 Lotononis Lotononis cf. curtii Van Wyk et al. 4172 \N \N \N \N \N 63117 C.specifica Carex Carex specifica \N \N \N \N \N 63118 M.parviflora Montiopsis Montiopsis parviflora \N \N \N \N \N 63119 V.colebrookeanum Viburnum Viburnum colebrookeanum \N \N \N \N \N 63120 \N genus Olyra \N \N \N \N \N 63121 C.umbellifera Cyrtandra Cyrtandra umbellifera \N \N \N \N \N 63122 E.dianthifolia Erica Erica dianthifolia \N \N \N \N \N 63123 E.japonicus Euonymus Euonymus japonicus Japanese spindletree,masaki \N \N \N \N 63124 L.bicolor Lomatium Lomatium bicolor \N \N \N \N \N 63125 A.mexicana Abelia Abelia mexicana \N \N \N \N \N 63126 R.moricandioides Rytidocarpus Rytidocarpus moricandioides \N \N \N \N \N 63127 M.muricata Metalasia Metalasia muricata \N \N \N \N \N 63128 A.australis Acalypha Acalypha australis \N \N \N \N \N 63129 R.congolana Renealmia Renealmia congolana \N \N \N \N \N 63130 C.valdiviana Calceolaria Calceolaria valdiviana \N \N \N \N \N 63131 \N no rank Saccharum hybrid cultivar TCP02-4589 \N \N \N \N \N 63132 \N subspecies Hieracium cymosum subsp. cymosum \N \N \N \N \N 63133 B.lanuginosa Berzelia Berzelia lanuginosa \N \N \N \N \N 63134 M.urens Malpighia Malpighia urens \N \N \N \N \N 63135 S.EBC58 Syzygium Syzygium sp. EBC58 \N \N \N \N \N 63136 \N genus Sohnsia \N \N \N \N \N 63137 L.202 Lycium Lycium sp. 202 \N \N \N \N \N 63138 B.pulvinellata Batopedina Batopedina pulvinellata \N \N \N \N \N 63139 S.schenckii Solanum Solanum schenckii \N \N \N \N \N 63140 \N genus Siphonostegia \N \N \N \N \N 63141 L.flavoculatus Lupinus Lupinus flavoculatus \N \N \N \N \N 63142 W.colorata Warreopsis Warreopsis colorata \N \N \N \N \N 63143 D.glauca Diplotaxis Diplotaxis glauca \N \N \N \N \N 63144 B.B-2500 Byttneria Byttneria sp. B Tsugaru et al. B-2500 \N \N \N \N \N 63145 M.chelidonifolia Meconopsis Meconopsis chelidonifolia \N \N \N \N \N 63146 \N subspecies Magnolia pacifica subsp. pugana \N \N \N \N \N 63147 B.neglecta Baccharis Baccharis neglecta \N \N \N \N \N 63148 \N varietas Paphiopedilum primulinum var. purpurascens \N \N \N \N \N 63149 H.equiseta Hierochloe Hierochloe equiseta \N \N \N \N \N 63150 F.fastigiata Frasera Frasera fastigiata \N \N \N \N \N 63151 D.decumbens Danthonia Danthonia decumbens \N \N \N \N \N 63152 \N varietas Dracaena reflexa var. parvifolia \N \N \N \N \N 63153 H.bracteosa Hedyotis Hedyotis bracteosa \N \N \N \N \N 63154 D.communis Dioscorea Dioscorea communis black bindweed,lady's-seal,norca \N \N \N \N 63155 M.bryani Milla Milla bryani \N \N \N \N \N 63156 A.pallida Alcea Alcea pallida \N \N \N \N \N 63157 M.officinalis Morinda Morinda officinalis ba ji \N \N \N \N 63158 A.pauana Armeria Armeria pauana \N \N \N \N \N 63159 Q.quatrefagesii Quintinia Quintinia quatrefagesii \N \N \N \N \N 63160 C.cusickii Carex Carex cusickii \N \N \N \N \N 63161 O.brownii Operculina Operculina brownii \N \N \N \N \N 63162 S.biloba Scaphochlamys Scaphochlamys biloba \N \N \N \N \N 63163 H.villosum Hedychium Hedychium villosum \N \N \N \N \N 63164 H.stocksii Haloxylon Haloxylon stocksii \N \N \N \N \N 63165 C.longifolia Carpotroche Carpotroche longifolia \N \N \N \N \N 63166 \N varietas Trachelospermum jasminoides var. pubescens \N \N \N \N \N 63167 F.schottiana Flindersia Flindersia schottiana \N \N \N \N \N 63168 P.lindenii Phragmipedium Phragmipedium lindenii \N \N \N \N \N 63169 \N genus Calliandropsis \N \N \N \N \N 63170 A.microlepis Anthemis Anthemis microlepis \N \N \N \N \N 63171 O.japonicus Ophiopogon Ophiopogon japonicus \N \N \N \N \N 63172 B.oligantha Byttneria Byttneria oligantha \N \N \N \N \N 63173 A.corsicum Anarrhinum Anarrhinum corsicum \N \N \N \N \N 63174 \N varietas Actinidia glaucophylla var. rotunda \N \N \N \N \N 63175 P.sumatrana Parinari Parinari sumatrana \N \N \N \N \N 63176 C.rogersii Cyphia Cyphia rogersii \N \N \N \N \N 63177 C.bixoides Croton Croton bixoides \N \N \N \N \N 63178 D.salteri Disa Disa salteri \N \N \N \N \N 63179 N.clevelandii Nicotiana Nicotiana clevelandii \N \N \N \N \N 84635 \N genus Rohdea \N \N \N \N \N 63180 A.triphylla Adenophora Adenophora triphylla nan sha shen \N \N \N \N 63181 A.campylanthus Astragalus Astragalus campylanthus \N \N \N \N \N 63182 M.canarensis Maxillaria Maxillaria canarensis \N \N \N \N \N 63183 \N subspecies Argyranthemum pinnatifidum subsp. montanum \N \N \N \N \N 63184 Z.orbiculatum Zygophyllum Zygophyllum orbiculatum \N \N \N \N \N 63185 \N varietas Castanopsis cuspidata var. cuspidata \N \N \N \N \N 63186 G.thymoides Glechon Glechon thymoides \N \N \N \N \N 63187 E.engelmannii Echinocereus Echinocereus engelmannii \N \N \N \N \N 63188 W.mangrovensis Warneckea Warneckea mangrovensis \N \N \N \N \N 63189 C.densa Caragana Caragana densa \N \N \N \N \N 63190 O.chingii Ophiopogon Ophiopogon chingii \N \N \N \N \N 63191 S.serrulata Symplocos Symplocos serrulata \N \N \N \N \N 63192 \N genus Gilliesia \N \N \N \N \N 63193 G.pohliana Geonoma Geonoma pohliana \N \N \N \N \N 63194 U.simmonsii Utricularia Utricularia simmonsii \N \N \N \N \N 63195 V.erythrocarpum Vaccinium Vaccinium erythrocarpum mountain cranberry \N \N \N \N 63196 \N subspecies Euphorbia balsamifera subsp. balsamifera \N \N \N \N \N 63197 S.krylovii Salix Salix krylovii \N \N \N \N \N 63198 K.caudata Koeleria Koeleria caudata \N \N \N \N \N 63199 T.l123 unclassified Taraxacum Taraxacum (sect. Palustria) sp. l123 \N \N \N \N \N 63200 \N subspecies Cleretum papulosum subsp. papulosum \N \N \N \N \N 63201 S.chrysanthemifolius Senecio Senecio chrysanthemifolius \N \N \N \N \N 63202 S.retroversus Sauropus Sauropus retroversus \N \N \N \N \N 63203 P.nigra Prunus Prunus nigra Canada plum \N \N \N \N 63204 L.reticulata Lonicera Lonicera reticulata grape-honeysuckle \N \N \N \N 63205 \N varietas Carex lenticularis var. limnophila \N \N \N \N \N 63206 \N subspecies Grevillea montis-cole subsp. brevistyla \N \N \N \N \N 63207 C.CAM038 Campanula Campanula aff. bononiensis CAM038 \N \N \N \N \N 63208 N.latisquama Nannoglottis Nannoglottis latisquama \N \N \N \N \N 63209 \N genus Silphium \N \N \N \N \N 63210 \N genus Arctostaphylos \N \N \N \N \N 63211 C.japonica Camellia Camellia japonica common camellia \N \N \N \N 63212 M.sipolisii Merianthera Merianthera sipolisii \N \N \N \N \N 63213 S.amplexicaulis Shorea Shorea amplexicaulis \N \N \N \N \N 63214 S.petersianus Strophanthus Strophanthus petersianus \N \N \N \N \N 63215 G.pilosa Gnidia Gnidia pilosa \N \N \N \N \N 63216 L.oxytrichum Lepidium Lepidium oxytrichum \N \N \N \N \N 63217 B.longiseta Bactris Bactris longiseta \N \N \N \N \N 63218 A.samuelssonii Anthemis Anthemis samuelssonii \N \N \N \N \N 63219 \N genus Didymostigma \N \N \N \N \N 63220 C.folliculata Carex Carex folliculata northern long sedge \N \N \N \N 63221 \N genus Holboellia \N \N \N \N \N 63222 G.borisi Geum Geum borisi \N \N \N \N \N 63223 G.multiflora Guzmania Guzmania multiflora \N \N \N \N \N 63224 H.benthamii Hymenidium Hymenidium benthamii \N \N \N \N \N 63225 F.japonica Fagus Fagus japonica \N \N \N \N \N 63226 \N genus Tavaresia \N \N \N \N \N 63227 A.bracteata Atraphaxis Atraphaxis bracteata \N \N \N \N \N 63228 B.muelleroides Brachyscome Brachyscome muelleroides \N \N \N \N \N 63229 A.tridentata Aphelandra Aphelandra tridentata \N \N \N \N \N 63230 L.gracilis Lachnaea Lachnaea gracilis \N \N \N \N \N 63231 C.rakotozafyi Cedrelopsis Cedrelopsis rakotozafyi \N \N \N \N \N 63232 B.cirrhosum Bulbophyllum Bulbophyllum cirrhosum \N \N \N \N \N 63233 T.funifera Tiliacora Tiliacora funifera \N \N \N \N \N 63234 G.endressii Geranium Geranium endressii \N \N \N \N \N 63235 T.furusei Tofieldia Tofieldia furusei \N \N \N \N \N 63236 V.maviensis Viola Viola maviensis \N \N \N \N \N 63237 A.modesta Arabis Arabis modesta \N \N \N \N \N 63238 A.CD-2009 Atractylodes Atractylodes sp. CD-2009 \N \N \N \N \N 63239 B.cunninghamii Babingtonia Babingtonia cunninghamii \N \N \N \N \N 63240 \N genus Anisopogon \N \N \N \N \N 63241 A.fax Alpinia Alpinia fax \N \N \N \N \N 63242 I.cymosa Ilex Ilex cymosa \N \N \N \N \N 63243 \N family Vitaceae grape family \N \N \N \N 63244 P.burle-marxii Pitcairnia Pitcairnia burle-marxii \N \N \N \N \N 63245 \N varietas Schoenus apogon var. apogon \N \N \N \N \N 63246 E.gayanus Elymus Elymus gayanus \N \N \N \N \N 63247 P.dallii Pittosporum Pittosporum dallii \N \N \N \N \N 63248 \N genus Acleisanthes \N \N \N \N \N 63249 M.parviflorum Metastelma Metastelma aff. parviflorum \N \N \N \N \N 63250 C.ritchii Colchicum Colchicum ritchii \N \N \N \N \N 63251 M.flocculosa Mimosa Mimosa flocculosa \N \N \N \N \N 63252 \N genus Saurauia \N \N \N \N \N 63253 S.maderensis Sambucus Sambucus maderensis \N \N \N \N \N 63254 P.hancei Piper Piper hancei \N \N \N \N \N 63255 P.arboreum Piper Piper arboreum \N \N \N \N \N 63256 R.rufosepalus Ranunculus Ranunculus rufosepalus \N \N \N \N \N 63257 A.pilbarensis Austrobryonia Austrobryonia pilbarensis \N \N \N \N \N 63258 D.elegans Doliocarpus Doliocarpus elegans \N \N \N \N \N 63259 P.carnulosa Pilea Pilea carnulosa \N \N \N \N \N 63260 R.cuspidata Rollinia Rollinia cuspidata \N \N \N \N \N 63261 P.panurensis Parkia Parkia panurensis \N \N \N \N \N 63262 M.pentatropis Maireana Maireana pentatropis \N \N \N \N \N 63263 B.congolensis Berlinia Berlinia congolensis \N \N \N \N \N 63264 \N genus Asterolasia \N \N \N \N \N 63265 V.pentagona Vitis Vitis pentagona \N \N \N \N \N 63266 U.puberula Uvularia Uvularia puberula \N \N \N \N \N 63267 \N genus Tzeltalia \N \N \N \N \N 63268 S.THH-2011 Selenicereus Selenicereus sp. THH-2011 \N \N \N \N \N 63269 T.costaricensis Thibaudia Thibaudia costaricensis \N \N \N \N \N 63270 N.homilantha Neolitsea Neolitsea homilantha \N \N \N \N \N 63271 O.maximowiczii Ostericum Ostericum maximowiczii \N \N \N \N \N 63272 P.kwangsiensis Pyrenaria Pyrenaria kwangsiensis \N \N \N \N \N 63273 T.youngii Trisetum Trisetum youngii \N \N \N \N \N 63274 H.heuschkeliana Hoya Hoya heuschkeliana \N \N \N \N \N 63275 G.humilis Gesneria Gesneria humilis \N \N \N \N \N 63276 B.DJM-2005 Bougainvillea Bougainvillea sp. DJM-2005 \N \N \N \N \N 63277 P.dictyoneura Paraboea Paraboea dictyoneura \N \N \N \N \N 63278 C.semipapposum Chrysocephalum Chrysocephalum semipapposum \N \N \N \N \N 63279 F.comata Flickingeria Flickingeria comata \N \N \N \N \N 63280 M.tigrina Maxillaria Maxillaria tigrina \N \N \N \N \N 63281 G.jurineifolia Gazania Gazania jurineifolia \N \N \N \N \N 63282 S.australis Senecio Senecio australis \N \N \N \N \N 63283 \N genus Anacaona \N \N \N \N \N 63284 Z.marina Zostera Zostera marina \N \N \N \N \N 63285 R.hookeriana Remusatia Remusatia hookeriana \N \N \N \N \N 63286 M.919 Marasmodes Marasmodes sp. Forest 919 \N \N \N \N \N 63287 R.pedatifidus Ranunculus Ranunculus pedatifidus \N \N \N \N \N 63288 \N varietas Ficus hirta var. brevipila \N \N \N \N \N 63289 C.yezoense Cirsium Cirsium yezoense \N \N \N \N \N 63290 G.ecklonii Gladiolus Gladiolus ecklonii \N \N \N \N \N 63291 R.discifolia Ruellia Ruellia discifolia \N \N \N \N \N 63292 V.macdougalii Verbena Verbena macdougalii New Mexico vervain \N \N \N \N 63293 R.tomentosa Rosa Rosa tomentosa \N \N \N \N \N 63294 H.nipponica Halophila Halophila nipponica \N \N \N \N \N 63295 K.ochreata Kailarsenia Kailarsenia ochreata \N \N \N \N \N 63296 M.citrina Moraea Moraea citrina \N \N \N \N \N 63297 J.dudleyi Juncus Juncus dudleyi \N \N \N \N \N 63298 V.lilacina Vanda Vanda lilacina \N \N \N \N \N 63299 D.glacialis Dianthus Dianthus glacialis \N \N \N \N \N 63300 L.laricina Lysipomia Lysipomia laricina \N \N \N \N \N 63301 L.volkensii Linum Linum volkensii \N \N \N \N \N 63302 M.quelchii Maxillaria Maxillaria quelchii \N \N \N \N \N 63303 S.elaeocarpa Strychnos Strychnos elaeocarpa \N \N \N \N \N 63304 L.tenue Linum Linum tenue \N \N \N \N \N 63305 A.integrifolia Ailanthus Ailanthus integrifolia \N \N \N \N \N 63306 T.curculigoides Tropidia Tropidia curculigoides \N \N \N \N \N 63307 G.parviflora Glycosmis Glycosmis parviflora \N \N \N \N \N 63308 C.2444 Conyza Conyza sp. Styles 2444 \N \N \N \N \N 63309 C.laceratoglandulosus Croton Croton laceratoglandulosus \N \N \N \N \N 63310 Z.carpinifolia Zelkova Zelkova carpinifolia \N \N \N \N \N 63311 P.reticulata Porpax Porpax reticulata \N \N \N \N \N 63312 \N subspecies Potamogeton perfoliatus subsp. perfoliatus \N \N \N \N \N 63313 C.latidenticulata Condylostylis Condylostylis latidenticulata \N \N \N \N \N 63314 R.dodii Restio Restio dodii \N \N \N \N \N 63315 B.purpurea Berkheya Berkheya purpurea \N \N \N \N \N 63316 A.fulvipes Ainsliaea Ainsliaea fulvipes \N \N \N \N \N 63317 P.lediniana Pseudophoenix Pseudophoenix lediniana \N \N \N \N \N 63318 B.henryi Begonia Begonia henryi \N \N \N \N \N 63319 C.peruvianum Ceratostema Ceratostema peruvianum \N \N \N \N \N 63320 M.nanus Mimulus Mimulus nanus \N \N \N \N \N 63321 C.paniculatus Cryptopus Cryptopus paniculatus \N \N \N \N \N 63322 H.corymbosa Hydrochorea Hydrochorea corymbosa \N \N \N \N \N 63323 P.virgata Pilea Pilea virgata \N \N \N \N \N 63324 L.petiolata Leptostylis Leptostylis petiolata \N \N \N \N \N 63325 H.vestita Hibbertia Hibbertia vestita \N \N \N \N \N 63326 D.bicolor Diandrolyra Diandrolyra bicolor \N \N \N \N \N 63327 E.fruticosa Eremocharis Eremocharis fruticosa \N \N \N \N \N 63328 \N genus Pomatocalpa \N \N \N \N \N 63329 S.ferganica Salsola Salsola ferganica \N \N \N \N \N 63330 V.turrilliana Veronica Veronica turrilliana \N \N \N \N \N 63331 \N genus Stomatochaeta \N \N \N \N \N 63332 L.tsangchanensis Ligularia Ligularia tsangchanensis \N \N \N \N \N 63333 P.ramiflorum Pittosporum Pittosporum ramiflorum \N \N \N \N \N 63334 C.stevenii Carex Carex stevenii \N \N \N \N \N 63335 \N varietas Boerhavia coulteri var. palmeri \N \N \N \N \N 63336 A.macracantha Agave Agave macracantha \N \N \N \N \N 63337 C.caudata Caesalpinia Caesalpinia caudata \N \N \N \N \N 63338 C.macrophyllum Colchicum Colchicum macrophyllum \N \N \N \N \N 63339 C.alba Chiococca Chiococca alba \N \N \N \N \N 63340 P.weyrichii Polygonum Polygonum weyrichii \N \N \N \N \N 63341 A.montana Aciphylla Aciphylla montana \N \N \N \N \N 63342 W.auriculata Weinmannia Weinmannia auriculata \N \N \N \N \N 63343 S.mutata Saxifraga Saxifraga mutata \N \N \N \N \N 63344 H.polymorpha Hydrostachys Hydrostachys polymorpha \N \N \N \N \N 63345 L.florida Lippia Lippia florida \N \N \N \N \N 63346 I.koleostachys Ischaemum Ischaemum koleostachys \N \N \N \N \N 63347 S.inermis Saxofridericia Saxofridericia inermis \N \N \N \N \N 63348 C.odorata Cliffortia Cliffortia odorata \N \N \N \N \N 63349 U.baccifera Urera Urera baccifera \N \N \N \N \N 63350 \N genus Hymenolobium \N \N \N \N \N 63351 \N genus Pachycladon \N \N \N \N \N 63352 \N genus Sophronitis \N \N \N \N \N 63353 C.bipinnata Cardamine Cardamine bipinnata \N \N \N \N \N 63354 C.balansae Cyclophyllum Cyclophyllum balansae \N \N \N \N \N 63355 V.shuttleworthii Vitis Vitis shuttleworthii calloose grape \N \N \N \N 63356 \N genus Maranthes \N \N \N \N \N 63357 D.brevifolia Drosera Drosera brevifolia \N \N \N \N \N 63358 T.secunda Thecostele Thecostele secunda \N \N \N \N \N 63359 D.lanceolata Draba Draba lanceolata \N \N \N \N \N 63360 M.tenue Marathrum Marathrum tenue \N \N \N \N \N 63361 \N genus Hortia \N \N \N \N \N 63362 C.eragrostis Cyperus Cyperus eragrostis \N \N \N \N \N 63363 C.paulistana Christensonella Christensonella paulistana \N \N \N \N \N 63364 C.balsensis Calochortus Calochortus balsensis \N \N \N \N \N 63365 S.acroscopicum Solanum Solanum acroscopicum \N \N \N \N \N 63366 S.papangae Streptocarpus Streptocarpus papangae \N \N \N \N \N 63367 M.argentina Munroa Munroa argentina \N \N \N \N \N 63368 A.philippinensis Aeschynanthus Aeschynanthus philippinensis \N \N \N \N \N 63369 A.hispida Amischotolype Amischotolype hispida \N \N \N \N \N 63370 W.disticha Wallichia Wallichia disticha \N \N \N \N \N 63371 \N genus Droceloncia \N \N \N \N \N 63372 S.orientalis Sigesbeckia Sigesbeckia orientalis common St. Paul's wort \N \N \N \N 63373 C.wrightii Collinsia Collinsia wrightii \N \N \N \N \N 63374 \N genus Anisoptera \N \N \N \N \N 63375 C.goudotii Croton Croton goudotii \N \N \N \N \N 63376 B.pachyloma Bidens Bidens pachyloma \N \N \N \N \N 63377 E.plumigera Erica Erica plumigera \N \N \N \N \N 63378 \N genus Serenoa \N \N \N \N \N 63379 \N genus Schizostigma \N \N \N \N \N 63380 G.caniflora Gnidia Gnidia caniflora \N \N \N \N \N 63381 P.proctorii Portlandia Portlandia proctorii \N \N \N \N \N 63382 \N genus Peucephyllum \N \N \N \N \N 63383 E.contracta Eleocharis Eleocharis contracta \N \N \N \N \N 63384 \N genus Microcoelia \N \N \N \N \N 63385 T.1395 Tetrapterocarpon Tetrapterocarpon sp. Bruneau & Ranaivojaona 1395 \N \N \N \N \N 63386 E.crus-galli Echinochloa Echinochloa crus-galli barnyard grass,cockspur grass \N \N \N \N 63387 P.tunstallii Pterostylis Pterostylis tunstallii \N \N \N \N \N 63388 R.setigera Rosa Rosa setigera \N \N \N \N \N 63389 T.salicifolia Tetrapterys Tetrapterys salicifolia \N \N \N \N \N 63390 S.laetus Schizanthus Schizanthus laetus \N \N \N \N \N 63391 O.petiolaris Ossaea Ossaea petiolaris \N \N \N \N \N 63392 \N subspecies Dorotheanthus bellidiformis subsp. bellidiformis \N \N \N \N \N 63393 M.tenuifolia Monodora Monodora tenuifolia \N \N \N \N \N 63394 L.virella Lecanorchis Lecanorchis virella \N \N \N \N \N 63395 C.trinervis Centemopsis Centemopsis trinervis \N \N \N \N \N 63396 P.intermedius Pleioblastus Pleioblastus intermedius \N \N \N \N \N 63397 H.pojoritense Hieracium Hieracium pojoritense \N \N \N \N \N 63398 P.JP-2011 Potentilla Potentilla aff. verna JP-2011 \N \N \N \N \N 63399 C.sclerophylla Cousinia Cousinia sclerophylla \N \N \N \N \N 63400 \N genus Perityle \N \N \N \N \N 63401 P.sudetica Pedicularis Pedicularis sudetica \N \N \N \N \N 63402 A.glaucoptera Acacia Acacia glaucoptera \N \N \N \N \N 63403 A.clypeolata Alocasia Alocasia clypeolata \N \N \N \N \N 63404 P.kermesina Polystachya Polystachya kermesina \N \N \N \N \N 63405 G.rzedowskii Galium Galium rzedowskii \N \N \N \N \N 63406 A.fluminensis Aeschynomene Aeschynomene fluminensis \N \N \N \N \N 63407 P.pepei Polylepis Polylepis pepei \N \N \N \N \N 63408 A.rosea Anatherostipa Anatherostipa rosea \N \N \N \N \N 63409 O.parishii Orthosiphon Orthosiphon parishii \N \N \N \N \N 63410 C.genipifolia Coleostachys Coleostachys genipifolia \N \N \N \N \N 63411 P.vestita Peperomia Peperomia vestita \N \N \N \N \N 63412 \N genus Asteropsis \N \N \N \N \N 63413 \N genus Enemion \N \N \N \N \N 63414 S.cordata Salacia Salacia cordata \N \N \N \N \N 63415 O.takhtajanii Onobrychis Onobrychis takhtajanii \N \N \N \N \N 63416 B.suffruticosa Bergia Bergia suffruticosa \N \N \N \N \N 63417 G.macroclada Globba Globba macroclada \N \N \N \N \N 63418 N.profundiserrata Nasa Nasa profundiserrata \N \N \N \N \N 63419 \N subspecies Vicia villosa subsp. microphylla \N \N \N \N \N 63420 P.papuana Pterostylis Pterostylis papuana \N \N \N \N \N 63421 L.laniflora Lachnaea Lachnaea laniflora \N \N \N \N \N 63422 H.salicornioides Hatiora Hatiora salicornioides bottle cactus,drunkard's dream \N \N \N \N 63423 T.acicularis Telipogon Telipogon acicularis \N \N \N \N \N 63424 \N varietas Pteryxia terebinthina var. foeniculacea \N \N \N \N \N 63425 M.sharpii Magnolia Magnolia sharpii \N \N \N \N \N 63426 \N subspecies Galium hypotrichium subsp. inyoense \N \N \N \N \N 63427 P.karooicum Pelargonium Pelargonium karooicum \N \N \N \N \N 63428 \N genus Capuronianthus \N \N \N \N \N 63429 \N genus Maltebrunia \N \N \N \N \N 63430 T.bipinnatum Tanacetum Tanacetum bipinnatum \N \N \N \N \N 63431 C.hakkodensis Carex Carex hakkodensis \N \N \N \N \N 63432 H.dipterygia Hemsleya Hemsleya dipterygia \N \N \N \N \N 63433 L.minus Leucophyllum Leucophyllum minus \N \N \N \N \N 63434 A.turneri Arida Arida turneri \N \N \N \N \N 63435 \N genus Cumulopuntia \N \N \N \N \N 63436 P.P129 Physalis Physalis sp. P129 \N \N \N \N \N 63437 \N subspecies Artemisia borealis subsp. borealis \N \N \N \N \N 63438 B.shockleyi Boechera Boechera shockleyi \N \N \N \N \N 77424 \N genus Feeria \N \N \N \N \N 63439 E.fastigiata Erica Erica fastigiata \N \N \N \N \N 63440 P.14637 Polygala Polygala cf. barbeyana Abbott 14637 \N \N \N \N \N 63441 \N genus Callichilia \N \N \N \N \N 63442 \N genus Didymocarpus \N \N \N \N \N 63443 \N varietas Claytonia sibirica var. sibirica \N \N \N \N \N 63444 D.galeottiana Dioscorea Dioscorea galeottiana \N \N \N \N \N 63445 B.discigera Breynia Breynia discigera \N \N \N \N \N 63446 M.exudans Melolobium Melolobium exudans \N \N \N \N \N 63447 F.sintenisii Ficus Ficus sintenisii \N \N \N \N \N 63448 B.roseana Bursera Bursera roseana \N \N \N \N \N 63449 M.parvifolia Meineckia Meineckia parvifolia \N \N \N \N \N 63450 S.selaginoides Stonesiella Stonesiella selaginoides \N \N \N \N \N 63451 S.persica Salvadora Salvadora persica \N \N \N \N \N 63452 D.h405 Drimia Drimia sp. h405 \N \N \N \N \N 63453 J.heuffelii Jovibarba Jovibarba heuffelii \N \N \N \N \N 63454 R.leucodermis Rubus Rubus leucodermis \N \N \N \N \N 63455 M.insignis Mozaffariania Mozaffariania insignis \N \N \N \N \N 63456 G.hachijoensis Goodyera Goodyera hachijoensis \N \N \N \N \N 63457 C.massonianus Cheirolophus Cheirolophus massonianus \N \N \N \N \N 63458 C.153 Cerdia Cerdia sp. Escamilla et al. 153 \N \N \N \N \N 63459 P.cotinifolia Planchonella Planchonella cotinifolia \N \N \N \N \N 63460 R.patientia Rumex Rumex patientia \N \N \N \N \N 63461 F.brevilobis Fuchsia Fuchsia brevilobis \N \N \N \N \N 63462 M.brevipes Mimulus Mimulus brevipes \N \N \N \N \N 63463 H.JANB-2011 Habenaria Habenaria sp. 3 JANB-2011 \N \N \N \N \N 63464 M.ciliicalyx Menziesia Menziesia ciliicalyx \N \N \N \N \N 63465 S.exsertus Streptocarpus Streptocarpus exsertus \N \N \N \N \N 63466 P.brachiata Petrosimonia Petrosimonia brachiata \N \N \N \N \N 63467 S.atropurpurea Solaria Solaria atropurpurea \N \N \N \N \N 63468 \N subspecies Lysimachia remyi subsp. caliginis \N \N \N \N \N 63469 R.sengorensis Rubus Rubus sengorensis \N \N \N \N \N 63470 B.laxiflora Bursera Bursera laxiflora \N \N \N \N \N 63471 S.aliena Stipa Stipa aliena \N \N \N \N \N 63472 T.magnus Thymus Thymus magnus \N \N \N \N \N 63473 G.manshurica Gentiana Gentiana manshurica \N \N \N \N \N 63474 H.smilacina Hiraea Hiraea smilacina \N \N \N \N \N 63475 N.graveolens Nierembergia Nierembergia graveolens \N \N \N \N \N 63476 D.candolleanum Dasyphyllum Dasyphyllum candolleanum \N \N \N \N \N 63477 A.welwitschii Armeria Armeria welwitschii \N \N \N \N \N 63478 \N genus Mastersiella \N \N \N \N \N 63479 T.ruthenicus Tragopogon Tragopogon ruthenicus \N \N \N \N \N 63480 G.eupatorioides Galianthe Galianthe eupatorioides \N \N \N \N \N 63481 O.rigens Orobanche Orobanche rigens \N \N \N \N \N 63482 E.apricus Elymus Elymus apricus \N \N \N \N \N 63483 E.major Echinodorus Echinodorus major \N \N \N \N \N 63484 D.brevifolia Diuris Diuris brevifolia \N \N \N \N \N 63485 R.AV-2008 Rhodiola Rhodiola sp. AV-2008 \N \N \N \N \N 63486 C.distinctus Cyperus Cyperus distinctus \N \N \N \N \N 63487 P.parnassica Paeonia Paeonia parnassica \N \N \N \N \N 63488 C.finlaysoniana Curculigo Curculigo finlaysoniana \N \N \N \N \N 63489 P.quadriporata Povedadaphne Povedadaphne quadriporata \N \N \N \N \N 63490 \N subspecies Drosera occidentalis subsp. microscapa \N \N \N \N \N 63491 U.anonoides Uvaria Uvaria anonoides \N \N \N \N \N 63492 B.elatior Briza Briza elatior \N \N \N \N \N 63493 M.falcifolia Monstera Monstera falcifolia \N \N \N \N \N 63494 H.linifolium Haplophyllum Haplophyllum linifolium \N \N \N \N \N 63495 P.mendoncianus Paepalanthus Paepalanthus mendoncianus \N \N \N \N \N 63496 \N no rank unclassified Solanum \N \N \N \N \N 63497 \N varietas Saxifraga fortunei var. alpina \N \N \N \N \N 63498 S.cyclostegia Salvia Salvia cyclostegia \N \N \N \N \N 63499 A.artemisiifolium Aconitum Aconitum artemisiifolium \N \N \N \N \N 63500 A.zanonii Argyrolobium Argyrolobium zanonii \N \N \N \N \N 63501 C.gigantea Celtica Celtica gigantea \N \N \N \N \N 63502 E.ramipressa Euphorbia Euphorbia ramipressa \N \N \N \N \N 63503 L.grisebachii Loxopterygium Loxopterygium grisebachii \N \N \N \N \N 63504 S.bicorne Solanum Solanum bicorne \N \N \N \N \N 63505 H.anacampseros Hylotelephium Hylotelephium anacampseros love-restorer \N \N \N \N 63506 P.borbonia Persea Persea borbonia red bay \N \N \N \N 63507 P.305 Phyla Phyla sp. Sosa 305 \N \N \N \N \N 63508 C.gaudichaudii Commersonia Commersonia gaudichaudii \N \N \N \N \N 63509 P.pictigluma Pentaschistis Pentameris pictigluma \N \N \N \N \N 63510 F.koreana Fallopia Fallopia koreana \N \N \N \N \N 63511 C.bachmannii Cyathocoma Cyathocoma bachmannii \N \N \N \N \N 63512 F.microdictya Ficus Ficus microdictya \N \N \N \N \N 63513 C.tunicatum Colchicum Colchicum tunicatum \N \N \N \N \N 63514 B.pulchra Boechera Boechera pulchra \N \N \N \N \N 63515 H.verticillata Heppiella Heppiella verticillata \N \N \N \N \N 63516 A.grandis Aglaia Aglaia grandis \N \N \N \N \N 63517 A.humbertii Alantsilodendron Alantsilodendron humbertii \N \N \N \N \N 63518 C.cephalanthum Clerodendrum Clerodendrum cephalanthum \N \N \N \N \N 63519 R.griersonianum Rhododendron Rhododendron griersonianum \N \N \N \N \N 63520 G.texana Gutierrezia Gutierrezia texana \N \N \N \N \N 63521 P.tectoneura Palicourea Palicourea tectoneura \N \N \N \N \N 63522 P.saccatus Pseudocalyx Pseudocalyx saccatus \N \N \N \N \N 63523 A.celsii Agave Agave celsii \N \N \N \N \N 63524 S.wardii Stanhopea Stanhopea wardii \N \N \N \N \N 63525 S.atherstonei Selago Selago atherstonei \N \N \N \N \N 63526 \N genus Carapa \N \N \N \N \N 63527 A.tomentosa Ateleia Ateleia tomentosa \N \N \N \N \N 63528 \N genus Geohintonia \N \N \N \N \N 63529 C.fimbriata Clethra Clethra fimbriata \N \N \N \N \N 63530 T.amazonicus Trymatococcus Trymatococcus amazonicus \N \N \N \N \N 63531 C.tenera Cardamine Cardamine tenera \N \N \N \N \N 63532 P.spinosa Pycnocycla Pycnocycla spinosa \N \N \N \N \N 63533 G.glandulifera Glycyrrhiza Glycyrrhiza glandulifera \N \N \N \N \N 63534 D.scorpioides Drosera Drosera scorpioides \N \N \N \N \N 78402 \N genus Neisosperma \N \N \N \N \N 63535 S.albiflorus Syncolostemon Syncolostemon albiflorus \N \N \N \N \N 63536 S.gnaphalodes Saussurea Saussurea gnaphalodes \N \N \N \N \N 63537 S.costaricensis Specklinia Specklinia costaricensis \N \N \N \N \N 63538 D.concolor Drakaea Drakaea concolor \N \N \N \N \N 63539 I.shibataeoides Indosasa Indosasa shibataeoides \N \N \N \N \N 63540 \N genus Dicella \N \N \N \N \N 63541 O.vulgare Origanum Origanum vulgare oregano \N \N \N \N 63542 P.cumingiana Polyscias Polyscias cumingiana \N \N \N \N \N 63543 P.rutifolium Pycnocomon Pycnocomon rutifolium \N \N \N \N \N 63544 \N genus Oplismenopsis \N \N \N \N \N 63545 B.markgrafii Barbacenia Barbacenia markgrafii \N \N \N \N \N 63546 T.stolzii Trifolium Trifolium stolzii \N \N \N \N \N 63547 S.quadrangularis Sauropus Sauropus quadrangularis \N \N \N \N \N 63548 S.rubriflora Schisandra Schisandra rubriflora \N \N \N \N \N 63549 C.argyrophylla Castanopsis Castanopsis argyrophylla \N \N \N \N \N 63550 \N subspecies Pimelea brevifolia subsp. modesta \N \N \N \N \N 63551 E.lancifolium Eriogonum Eriogonum lancifolium \N \N \N \N \N 63552 P.maackianus Potamogeton Potamogeton maackianus \N \N \N \N \N 63553 L.tarapacensis Lupinus Lupinus tarapacensis \N \N \N \N \N 63554 C.KT-0001 Cleisostoma Cleisostoma aff. gjellerupii KT-0001 \N \N \N \N \N 63555 S.ciliata Silene Silene ciliata \N \N \N \N \N 63556 P.versicolor Penstemon Penstemon versicolor \N \N \N \N \N 63557 P.cognata Pseudoroegneria Pseudoroegneria cognata \N \N \N \N \N 63558 L.AB1 Lithocarpus Lithocarpus sp. AB1 \N \N \N \N \N 63559 P.campanulatus Penstemon Penstemon campanulatus \N \N \N \N \N 63560 T.JJNK-2011 Tambourissa Tambourissa cf. peltata JJNK-2011 \N \N \N \N \N 63561 I.adenophylla Inga Inga adenophylla \N \N \N \N \N 63562 \N subspecies Cyclamen coum subsp. caucasicum \N \N \N \N \N 63563 B.henryi Buxus Buxus henryi \N \N \N \N \N 63564 C.3831 Clusia Clusia sp. JA 3831 \N \N \N \N \N 63565 \N genus Acis \N \N \N \N \N 63566 R.lobbii Rhaphidophora Rhaphidophora lobbii \N \N \N \N \N 63567 P.medicum Peucedanum Peucedanum medicum \N \N \N \N \N 63568 R.95024 Ranunculus Ranunculus sp. Qiu 95024 \N \N \N \N \N 63569 M.sargentii Malus Malus sargentii \N \N \N \N \N 63570 R.malayanum Rhododendron Rhododendron malayanum \N \N \N \N \N 63571 S.exigua Stephanomeria Stephanomeria exigua \N \N \N \N \N 63572 J.carniolica Jacobaea Jacobaea carniolica \N \N \N \N \N 63573 C.bungei Crepis Crepis bungei \N \N \N \N \N 63574 P.kuebiniensis Planchonella Planchonella kuebiniensis \N \N \N \N \N 63575 D.schliebenii Diplocyclos Diplocyclos schliebenii \N \N \N \N \N 63576 C.hawkinsiana Campanula Campanula hawkinsiana \N \N \N \N \N 63577 D.karatana Dioscorea Dioscorea karatana \N \N \N \N \N 63578 S.calceoliformis Suaeda Suaeda calceoliformis \N \N \N \N \N 63579 \N subspecies Magnolia macrophylla subsp. macrophylla \N \N \N \N \N 63580 A.percarneum Aeonium Aeonium percarneum \N \N \N \N \N 63581 M.acuminata Machaonia Machaonia acuminata \N \N \N \N \N 63582 A.inyoensis Astragalus Astragalus inyoensis \N \N \N \N \N 63583 S.18390 Sacoglottis Sacoglottis sp. Hammel 18390 \N \N \N \N \N 63584 L.phelpsiae Leandra Leandra phelpsiae \N \N \N \N \N 63585 A.staudtii Acridocarpus Acridocarpus staudtii \N \N \N \N \N 63586 C.pittieri Conostegia Conostegia pittieri \N \N \N \N \N 63587 R.sanguinea Ruellia Ruellia sanguinea \N \N \N \N \N 63588 C.macdonaldii Coelogyne Coelogyne macdonaldii \N \N \N \N \N 63589 \N varietas Ficus sarmentosa var. thunbergii \N \N \N \N \N 63590 N.bicolor Narcissus Narcissus bicolor \N \N \N \N \N 63591 H.mascarenensis Hernandia Hernandia mascarenensis \N \N \N \N \N 63592 B.texana Boechera Boechera texana \N \N \N \N \N 63593 H.JANB-2011 Habenaria Habenaria cf. uliginosa JANB-2011 \N \N \N \N \N 63594 \N varietas Allium thunbergii var. teretifolium \N \N \N \N \N 63595 B.brideliifolia Bridelia Bridelia brideliifolia \N \N \N \N \N 63596 E.Esp22 Elleanthus Elleanthus sp. Esp22 \N \N \N \N \N 63597 M.denudata Momordica Momordica denudata \N \N \N \N \N 63598 \N genus Callirhoe \N \N \N \N \N 63599 A.leucocalyx Allagoptera Allagoptera leucocalyx \N \N \N \N \N 63600 D.myrtinervius Dianthus Dianthus myrtinervius \N \N \N \N \N 63601 C.crassa Corynaea Corynaea crassa \N \N \N \N \N 63602 \N genus Goodyera \N \N \N \N \N 63603 \N genus Bicuiba \N \N \N \N \N 63604 E.micromeris Epithelantha Epithelantha micromeris \N \N \N \N \N 63605 E.incantatum Eryngium Eryngium incantatum \N \N \N \N \N 63606 M.whitneyi Mimulus Mimulus whitneyi \N \N \N \N \N 63607 P.oligospermus Phaseolus Phaseolus oligospermus \N \N \N \N \N 63608 C.austroalpina Carex Carex austroalpina \N \N \N \N \N 63609 D.paludosa Disperis Disperis paludosa \N \N \N \N \N 63610 M.lyalliana Mimulopsis Mimulopsis lyalliana \N \N \N \N \N 63611 G.papilio Gladiolus Gladiolus papilio \N \N \N \N \N 63612 M.myrsinoides Maesa Maesa myrsinoides \N \N \N \N \N 63613 P.cordata Pseudobaeckea Pseudobaeckea cordata \N \N \N \N \N 63614 T.caput-medusae Tillandsia Tillandsia caput-medusae \N \N \N \N \N 63615 I.lyallii Indigofera Indigofera lyallii \N \N \N \N \N 63616 S.pentadactylis Saxifraga Saxifraga pentadactylis \N \N \N \N \N 63617 H.megacephala Hippolytia Hippolytia megacephala \N \N \N \N \N 63618 \N subspecies Dorstenia cayapia subsp. paraguensis \N \N \N \N \N 63619 L.leptoloba Lotononis Lotononis leptoloba \N \N \N \N \N 63620 D.antaly Dioscorea Dioscorea antaly \N \N \N \N \N 63621 O.splendida Ophrys Ophrys splendida \N \N \N \N \N 63622 S.lobelii Staehelina Staehelina lobelii \N \N \N \N \N 63623 P.macrophylla Parmentiera Parmentiera macrophylla \N \N \N \N \N 63624 \N genus Berlinia \N \N \N \N \N 63625 N.euphorbioides Neobuxbaumia Neobuxbaumia euphorbioides \N \N \N \N \N 63626 G.glauca Grabowskia Grabowskia glauca \N \N \N \N \N 63627 A.anisitsiana Attalea Attalea anisitsiana \N \N \N \N \N 63628 \N genus Oserya \N \N \N \N \N 63629 \N subspecies Setaria viridis subsp. viridis \N \N \N \N \N 63630 T.palustris Tephroseris Tephroseris palustris \N \N \N \N \N 63631 B.paludicola Bonellia Bonellia paludicola \N \N \N \N \N 63632 B.laevipes Bromus Bromus laevipes Chinook brome \N \N \N \N 63633 P.acarna Picnomon Picnomon acarna \N \N \N \N \N 63634 P.aubletiana Psychotria Psychotria aubletiana \N \N \N \N \N 63635 T.operculata Tarasa Tarasa operculata \N \N \N \N \N 63636 H.martiusii Henriettea Henriettea martiusii \N \N \N \N \N 63637 N.andropogonifolius Neomicrocalamus Neomicrocalamus andropogonifolius \N \N \N \N \N 63638 P.lanceolata Platysace Platysace lanceolata \N \N \N \N \N 63639 \N genus Solenophora \N \N \N \N \N 63640 \N genus Dialyceras \N \N \N \N \N 63641 \N subfamily Apocynoideae \N \N \N \N \N 63642 G.helenae Gagea Gagea helenae \N \N \N \N \N 63643 P.maxonii Piper Piper maxonii \N \N \N \N \N 63644 \N varietas Cenchrus compressus var. compressus \N \N \N \N \N 63645 S.daucoides Stefanoffia Stefanoffia daucoides \N \N \N \N \N 63646 C.conchifolius Corallodiscus Corallodiscus conchifolius \N \N \N \N \N 63647 H.obscura Heliomeris Heliomeris obscura \N \N \N \N \N 63648 S.trinervis Stenocarpus Stenocarpus trinervis \N \N \N \N \N 63649 A.9313 Androcymbium Androcymbium sp. Goldblatt 9313 \N \N \N \N \N 63650 Z.rosea Zephyranthes Zephyranthes rosea \N \N \N \N \N 63651 E.reniformis Euphorbia Euphorbia reniformis \N \N \N \N \N 63652 Z.C Zannichellia Zannichellia sp. haplotype C \N \N \N \N \N 63653 \N genus Chasmanthium \N \N \N \N \N 63654 S.orssichiana Schlumbergera Schlumbergera orssichiana \N \N \N \N \N 63655 C.japonicum Cypripedium Cypripedium japonicum \N \N \N \N \N 63656 P.bicolor Pourouma Pourouma bicolor \N \N \N \N \N 63657 C.stenophylla Cleome Cleome stenophylla \N \N \N \N \N 63658 S.stenopetala Syagrus Syagrus stenopetala \N \N \N \N \N 63659 L.rubescens Laelia Laelia rubescens \N \N \N \N \N 63660 C.punctulata Coelogyne Coelogyne punctulata \N \N \N \N \N 63661 U.guineensis Usteria Usteria guineensis \N \N \N \N \N 63662 C.inversa Carex Carex inversa \N \N \N \N \N 63663 D.amblyophylla Dodonaea Dodonaea amblyophylla \N \N \N \N \N 63664 E.calanthum Epidendrum Epidendrum calanthum \N \N \N \N \N 63665 M.arborea Medicago Medicago arborea \N \N \N \N \N 63666 \N varietas Rhododendron phaeochrysum var. phaeochrysum \N \N \N \N \N 63667 B.acanthocarpa Bactris Bactris acanthocarpa \N \N \N \N \N 63668 R.triflorum Rhododendron Rhododendron triflorum \N \N \N \N \N 63669 I.brevipes Inga Inga brevipes \N \N \N \N \N 63670 \N subspecies Chrysanthemoides monilifera subsp. monilifera \N \N \N \N \N 63671 P.P116 Physalis Physalis sp. P116 \N \N \N \N \N 63672 L.pungens Lotononis Lotononis pungens \N \N \N \N \N 63673 \N subspecies Carex flacca subsp. erythrostachys \N \N \N \N \N 63674 L.greggii Leucaena Leucaena greggii \N \N \N \N \N 63675 P.hollianus Pachycereus Pachycereus hollianus \N \N \N \N \N 63676 M.palenquiana Matisia Matisia palenquiana \N \N \N \N \N 63677 T.pringlei Tinantia Tinantia pringlei \N \N \N \N \N 63678 B.khandalensis Bidaria Bidaria khandalensis \N \N \N \N \N 63679 C.segetum Cephanonoplos Cephalonoplos segetum \N \N \N \N \N 63680 R.ruizii Ruilopezia Ruilopezia ruizii \N \N \N \N \N 63681 \N genus Stadmannia \N \N \N \N \N 63682 \N subspecies Eleocharis acutangula subsp. breviseta \N \N \N \N \N 63683 C.tenella Chorispora Chorispora tenella \N \N \N \N \N 63684 A.doidgeana Aplanodes Aplanodes doidgeana \N \N \N \N \N 63685 D.obtusum Diplodium Diplodium obtusum \N \N \N \N \N 63686 E.echinatus Echinops Echinops echinatus \N \N \N \N \N 63687 B.orientalis Brunnera Brunnera orientalis \N \N \N \N \N 63688 F.quadriflora Festuca Festuca quadriflora \N \N \N \N \N 63689 \N subspecies Centaurea triumfettii subsp. dominii \N \N \N \N \N 63690 A.morijensis Aloe Aloe morijensis \N \N \N \N \N 63691 \N subspecies Nicotiana occidentalis subsp. hesperis \N \N \N \N \N 63692 A.sp. Avena Avena sp. oat \N \N \N \N 63693 S.monophylla Spiloxene Spiloxene monophylla \N \N \N \N \N 63694 B.purpurascens Bergenia Bergenia purpurascens \N \N \N \N \N 63695 \N genus x Doritaenopsis \N \N \N \N \N 63696 \N varietas Ficus gasparriniana var. laceratifolia \N \N \N \N \N 63697 \N genus Golaea \N \N \N \N \N 63698 S.corymbosa Senna Senna corymbosa \N \N \N \N \N 63699 A.floribunda Angophora Angophora floribunda \N \N \N \N \N 63700 G.angustifolium Galium Galium angustifolium \N \N \N \N \N 63701 \N genus Merrilliopanax \N \N \N \N \N 63702 \N genus Tintinnabularia \N \N \N \N \N 63703 T.gigantea Trichanthera Trichanthera gigantea \N \N \N \N \N 63704 R.parvifolius Rubus Rubus parvifolius mao mei,trailing raspberry \N \N \N \N 63705 D.diversifolia Drypetes Drypetes diversifolia \N \N \N \N \N 63706 V.volkensii Vangueria Vangueria volkensii \N \N \N \N \N 63707 C.4542 Chlorophytum Chlorophytum sp. Nordal & Bjora 4542 \N \N \N \N \N 63708 P.vulgaris Phaseolus Phaseolus vulgaris French bean,kidney bean,string bean \N \N \N \N 63709 M.cuspidata Muhlenbergia Muhlenbergia cuspidata \N \N \N \N \N 63710 C.glabratum Calycogonium Calycogonium glabratum \N \N \N \N \N 63711 P.koreana Populus Populus koreana \N \N \N \N \N 63712 D.farafanganica Dombeya Dombeya farafanganica \N \N \N \N \N 63713 M.cordata Metrosideros Metrosideros cordata \N \N \N \N \N 63714 \N varietas Elymus tsukushiensis var. transiens \N \N \N \N \N 63715 H.lanata Haplocarpha Haplocarpha lanata \N \N \N \N \N 63716 I.tsoii Ilex Ilex tsoii \N \N \N \N \N 63717 \N genus Ochrocarpos \N \N \N \N \N 63718 S.simplicifolia Sargentodoxa Sargentodoxa simplicifolia \N \N \N \N \N 63719 M.grandifolia Monsonia Monsonia grandifolia \N \N \N \N \N 63720 \N genus Loeflingia \N \N \N \N \N 63721 \N genus Piper \N \N \N \N \N 63722 P.pereskiifolia Peperomia Peperomia pereskiifolia \N \N \N \N \N 63723 S.cuneata Simaba Simaba cuneata \N \N \N \N \N 63724 C.campestris Cuscuta Cuscuta campestris field dodder \N \N \N \N 63725 \N family Rosaceae rose family \N \N \N \N 63726 A.sordidiflorum Allium Allium sordidiflorum \N \N \N \N \N 63727 E.sharpei Echidnopsis Echidnopsis sharpei \N \N \N \N \N 63728 S.jamesonii Streptosolen Streptosolen jamesonii firebush,marmalade-bush \N \N \N \N 63729 \N genus Bembicia \N \N \N \N \N 63730 C.KMK-2009 Costus Costus aff. nitidus KMK-2009 \N \N \N \N \N 63731 L.congestiflora Lysimachia Lysimachia congestiflora \N \N \N \N \N 63732 E.arborescens Entelea Entelea arborescens \N \N \N \N \N 63733 K.vestita Kunzea Kunzea vestita \N \N \N \N \N 63734 D.spicata Distichlis Distichlis spicata saltgrass \N \N \N \N 63735 K.royleana Kobresia Kobresia royleana \N \N \N \N \N 63736 P.szetschuanica Pedicularis Pedicularis szetschuanica \N \N \N \N \N 63737 G.chiquitanum Gymnocalycium Gymnocalycium chiquitanum \N \N \N \N \N 63738 C.pulchra Crotalaria Crotalaria pulchra \N \N \N \N \N 63739 D.fedtschenkoana Didymophysa Didymophysa fedtschenkoana \N \N \N \N \N 63740 P.rosei Peniocereus Peniocereus rosei \N \N \N \N \N 63741 B.campylotheca Bidens Bidens campylotheca \N \N \N \N \N 63742 \N genus Filicium \N \N \N \N \N 63743 O.officinalis Oryza Oryza officinalis \N \N \N \N \N 63744 F.platanifolia Firmiana Firmiana platanifolia Chinese parasol-tree,aogiri \N \N \N \N 63745 C.scassellatii Crotalaria Crotalaria scassellatii \N \N \N \N \N 63746 B.cathartica Bridelia Bridelia cathartica \N \N \N \N \N 63747 \N subspecies Penaea cneorum subsp. cneorum \N \N \N \N \N 63748 E.laeta Eudianthe Eudianthe laeta \N \N \N \N \N 63749 \N genus Parvatia \N \N \N \N \N 63750 \N varietas Phyllostachys sulphurea var. viridis \N \N \N \N \N 63751 J.multiclavia Jonesiopsis Jonesiopsis multiclavia \N \N \N \N \N 63752 V.cinerea Vitis Vitis cinerea downy grape \N \N \N \N 63753 E.farinosa Encelia Encelia farinosa \N \N \N \N \N 63754 C.126 Cliffortia Cliffortia cf. pterocarpa Whitehouse 126 \N \N \N \N \N 63755 \N genus Melosperma \N \N \N \N \N 63756 C.sphaerica Cumulopuntia Cumulopuntia sphaerica \N \N \N \N \N 63757 M.echinacea Montanoa Montanoa echinacea \N \N \N \N \N 63758 N.stewartiana Nepeta Nepeta stewartiana \N \N \N \N \N 63759 A.ellenbeckii Adenia Adenia ellenbeckii \N \N \N \N \N 63760 B.littoralis Banksia Banksia littoralis \N \N \N \N \N 63761 A.fusca Aspalathus Aspalathus fusca \N \N \N \N \N 63762 N.EMK-2003 Nymphaea Nymphaea sp. EMK-2003 \N \N \N \N \N 63763 S.rivularis Saxifraga Saxifraga rivularis \N \N \N \N \N 63764 \N genus Dialypetalum \N \N \N \N \N 63765 E.carnea Erica Erica carnea \N \N \N \N \N 63766 P.lanceolata Pyrrocoma Pyrrocoma lanceolata \N \N \N \N \N 63767 L.sessiliflora Limnophila Limnophila sessiliflora Asian marshweed,ambulia,shi long wei \N \N \N \N 63768 M.grandiflora Myrmecophila Myrmecophila grandiflora \N \N \N \N \N 63769 C.plagiotoma Castilleja Castilleja plagiotoma \N \N \N \N \N 63770 L.caespitosa Liparis Liparis caespitosa \N \N \N \N \N 63771 M.elix Macrocarpaea Macrocarpaea elix \N \N \N \N \N 63772 G.acaulis Gentiana Gentiana acaulis \N \N \N \N \N 63773 A.fruticosum Anginon Anginon fruticosum \N \N \N \N \N 63774 V.koreanum Viburnum Viburnum koreanum \N \N \N \N \N 63775 L.oxycarpa Lloydia Lloydia oxycarpa \N \N \N \N \N 63776 L.decora Livistona Livistona decora \N \N \N \N \N 63777 T.joelii Turnera Turnera joelii \N \N \N \N \N 63778 A.amboensis Albuca Albuca amboensis \N \N \N \N \N 63779 C.saharae Centaurea Centaurea saharae \N \N \N \N \N 63780 C.viridula Carex Carex viridula \N \N \N \N \N 63781 P.longicaudatum Piper Piper longicaudatum \N \N \N \N \N 63782 S.suberosa Scorzonera Scorzonera suberosa \N \N \N \N \N 63783 E.leucophylla Euphorbia Euphorbia leucophylla \N \N \N \N \N 63784 D.polyzyga Dodonaea Dodonaea polyzyga \N \N \N \N \N 63785 \N genus Caryocar \N \N \N \N \N 63786 I.medeoloides Isotria Isotria medeoloides \N \N \N \N \N 63787 C.platycarpa Cardiopteris Cardiopteris platycarpa \N \N \N \N \N 63788 P.filamentosa Prismatomeris Prismatomeris filamentosa \N \N \N \N \N 63789 P.intermedia Plantago Plantago intermedia \N \N \N \N \N 63790 \N genus Diervilla \N \N \N \N \N 63791 H.protera Hymenaea Hymenaea protera \N \N \N \N \N 63792 V.lanata Vitis Vitis lanata \N \N \N \N \N 63793 C.aetolica Centaurea Centaurea aetolica \N \N \N \N \N 63794 C.madagascariensis Carphalea Carphalea madagascariensis \N \N \N \N \N 63795 L.stebbinsii Lewisia Lewisia stebbinsii \N \N \N \N \N 63796 B.sylvestris Bellis Bellis sylvestris \N \N \N \N \N 63797 M.striatella Masdevallia Masdevallia striatella \N \N \N \N \N 63798 \N varietas Tridens muticus var. muticus \N \N \N \N \N 63799 C.cylindrostachya Chloraea Chloraea cylindrostachya \N \N \N \N \N 63800 P.chlorothyrsa Paronychia Paronychia chlorothyrsa \N \N \N \N \N 63801 M.incrassata Myosotis Myosotis incrassata \N \N \N \N \N 63802 M.tonkinensis Musa Musa tonkinensis \N \N \N \N \N 63803 A.japonicum Asyneuma Asyneuma japonicum \N \N \N \N \N 63804 B.gloriosa Bakeridesia Bakeridesia gloriosa \N \N \N \N \N 63805 M.aurantiacus Mimulus Mimulus aurantiacus \N \N \N \N \N 63806 C.bangweolense Chrysophyllum Chrysophyllum bangweolense \N \N \N \N \N 63807 C.quadrangularis Cicendia Cicendia quadrangularis \N \N \N \N \N 63808 E.SM01-41 Euptelea Euptelea sp. Mathews SM01-41 \N \N \N \N \N 63809 S.levinei Syzygium Syzygium levinei \N \N \N \N \N 63810 C.glauca Chrysochlamys Chrysochlamys glauca \N \N \N \N \N 63811 P.peperomioides Pleurothallis Pleurothallis peperomioides \N \N \N \N \N 63812 L.sayanuka Leersia Leersia sayanuka \N \N \N \N \N 63813 F.aubertii Fallopia Fallopia aubertii \N \N \N \N \N 63814 S.liebmannianum Sedum Sedum liebmannianum \N \N \N \N \N 63815 P.whiteana Pultenaea Pultenaea whiteana \N \N \N \N \N 63816 S.smithii Senecio Senecio smithii \N \N \N \N \N 63817 \N genus Roycea \N \N \N \N \N 63818 G.striatum Gorgonidium Gorgonidium striatum \N \N \N \N \N 63819 M.primuloides Mimulus Mimulus primuloides \N \N \N \N \N 63820 R.acuminatum Rheum Rheum acuminatum \N \N \N \N \N 63821 C.SAT-2011b Ceropegia Ceropegia sp. SAT-2011b \N \N \N \N \N 63822 \N genus Emmotum \N \N \N \N \N 63823 H.murorum Hieracium Hieracium murorum \N \N \N \N \N 63824 C.lophophora Columnea Columnea lophophora \N \N \N \N \N 63825 C.mucunoides Calopogonium Calopogonium mucunoides calopo \N \N \N \N 63826 A.petiolata Alliaria Alliaria petiolata garlic mustard \N \N \N \N 63827 J.yungayensis Jaltomata Jaltomata yungayensis \N \N \N \N \N 63828 A.meonanthum Antirrhinum Antirrhinum meonanthum \N \N \N \N \N 63829 H.pulchra Huynhia Huynhia pulchra \N \N \N \N \N 63830 A.2509 Astragalus Astragalus sp. Sanderson 2509 \N \N \N \N \N 63831 C.inexpectata Centaurea Centaurea inexpectata \N \N \N \N \N 63832 D.macroptera Dicella Dicella macroptera \N \N \N \N \N 63833 S.pygmaea Salvia Salvia pygmaea \N \N \N \N \N 63834 O.aciphylla Ocotea Ocotea aciphylla \N \N \N \N \N 63835 P.pyrenaica Petrocallis Petrocallis pyrenaica \N \N \N \N \N 63836 C.bredemeyeri Croton Croton bredemeyeri \N \N \N \N \N 63837 \N forma Eleutherococcus divaricatus f. distigmatis \N \N \N \N \N 63838 C.quadriloculare Clerodendrum Clerodendrum quadriloculare \N \N \N \N \N 63839 \N genus Cyphia \N \N \N \N \N 63840 \N genus Ichnanthus \N \N \N \N \N 63841 F.broadwayi Ficus Ficus broadwayi \N \N \N \N \N 63842 C.major Cerinthe Cerinthe major \N \N \N \N \N 63843 A.ovalis Actephila Actephila ovalis \N \N \N \N \N 63844 A.cypricum Alyssum Alyssum cypricum \N \N \N \N \N 63845 E.SL-2011 Echinodorus Echinodorus sp. 4 SL-2011 \N \N \N \N \N 63846 V.stenoptera Valeriana Valeriana stenoptera \N \N \N \N \N 63847 N.truncata Nicotiana Nicotiana truncata \N \N \N \N \N 63848 C.kansuensis Crataegus Crataegus kansuensis \N \N \N \N \N 63849 \N varietas Amsinckia spectabilis var. spectabilis \N \N \N \N \N 63850 A.cocculus Anamirta Anamirta cocculus \N \N \N \N \N 63851 R.superba Rojasianthe Rojasianthe superba \N \N \N \N \N 63852 M.campanulata Miliusa Miliusa campanulata \N \N \N \N \N 63853 \N subspecies Pimpinella tragium subsp. lithophila \N \N \N \N \N 63854 L.pycnostachya Liatris Liatris pycnostachya \N \N \N \N \N 63855 \N subspecies Poa pratensis subsp. pratensis \N \N \N \N \N 63856 S.argentea Schima Schima argentea \N \N \N \N \N 63857 \N genus Notoleptopus \N \N \N \N \N 63858 O.odorifera Ocotea Ocotea odorifera \N \N \N \N \N 63859 \N varietas Arracacia tolucensis var. multifida \N \N \N \N \N 63860 P.molinerii Poa Poa molinerii \N \N \N \N \N 63861 M.cana Meeboldina Meeboldina cana \N \N \N \N \N 63862 C.nudus Calochortus Calochortus nudus \N \N \N \N \N 63863 S.gonosperma Silene Silene gonosperma \N \N \N \N \N 63864 P.dzumacensis Polyscias Polyscias dzumacensis \N \N \N \N \N 63865 M.fallax Michelia Michelia fallax \N \N \N \N \N 63866 O.truncatula Oxalis Oxalis truncatula \N \N \N \N \N 63867 I.goshiensis Ilex Ilex goshiensis \N \N \N \N \N 63868 S.wilsonii Syzygium Syzygium wilsonii \N \N \N \N \N 63869 A.decipiens Allophylus Allophylus decipiens \N \N \N \N \N 63870 H.capitata Hermas Hermas capitata \N \N \N \N \N 63871 \N varietas Triticum dicoccoides var. namuricum \N \N \N \N \N 63872 M.bicolor Macroclinium Macroclinium bicolor \N \N \N \N \N 63873 R.humeana Roscoea Roscoea cautleyoides x Roscoea humeana \N \N \N \N \N 63874 A.quinaria Avonia Avonia quinaria \N \N \N \N \N 63875 T.DJW-2004 Tripogandra Tripogandra sp. DJW-2004 \N \N \N \N \N 63876 \N genus Burbidgea \N \N \N \N \N 63877 M.urticifolia Meehania Meehania urticifolia \N \N \N \N \N 63878 \N genus Bauhinia \N \N \N \N \N 63879 L.nepalensis Leibnitzia Leibnitzia nepalensis \N \N \N \N \N 63880 P.stylosum Polypleurum Polypleurum stylosum \N \N \N \N \N 63881 \N tribe Chaetocarpeae \N \N \N \N \N 63882 A.34311 Aspidopterys Aspidopterys sp. Larsen & Larsen 34311 \N \N \N \N \N 63883 T.krapovickasii Turnera Turnera subulata x Turnera krapovickasii \N \N \N \N \N 63884 \N genus Kulinia \N \N \N \N \N 63885 O.incisa Ononis Ononis incisa \N \N \N \N \N 63886 P.prattii Primula Primula prattii \N \N \N \N \N 63887 C.ducu Clusia Clusia ducu \N \N \N \N \N 63888 K.TT16671 Kaempferia Kaempferia sp. 4 TT16671 \N \N \N \N \N 63889 C.stylidioides Conostylis Conostylis stylidioides \N \N \N \N \N 63890 \N genus Glochidion \N \N \N \N \N 63891 \N genus Meyerophytum \N \N \N \N \N 63892 N.exigua Nicotiana Nicotiana exigua \N \N \N \N \N 63893 S.purpurata Sophronitis Sophronitis purpurata \N \N \N \N \N 63894 \N subspecies Arabis nova subsp. iberica \N \N \N \N \N 63895 L.garberi Liatris Liatris garberi \N \N \N \N \N 63896 \N genus Gonystylus \N \N \N \N \N 63897 E.parviflora Eschweilera Eschweilera parviflora \N \N \N \N \N 63898 M.pilosum Mastixiodendron Mastixiodendron pilosum \N \N \N \N \N 63899 P.homei Podonephelium Podonephelium homei \N \N \N \N \N 63900 T.leptophylla Torilis Torilis leptophylla \N \N \N \N \N 63901 F.densistipulata Ficus Ficus densistipulata \N \N \N \N \N 63902 C.vacillans Carex Carex vacillans \N \N \N \N \N 63903 G.acutigluma Garnotia Garnotia acutigluma \N \N \N \N \N 63904 R.persica Rosa Rosa persica \N \N \N \N \N 63905 P.bicornis Persicaria Persicaria bicornis \N \N \N \N \N 63906 I.biglandulosa Indigofera Indigofera biglandulosa \N \N \N \N \N 63907 N.hirsutus Nematanthus Nematanthus hirsutus \N \N \N \N \N 63908 \N genus Pandorea \N \N \N \N \N 63909 D.inermis Dipsacus Dipsacus inermis \N \N \N \N \N 63910 C.goebelianus Coleocephalocereus Coleocephalocereus goebelianus \N \N \N \N \N 63911 S.linearis Suaeda Suaeda linearis \N \N \N \N \N 63912 B.johnstonii Begonia Begonia johnstonii \N \N \N \N \N 63913 R.amplexicaulis Rafnia Rafnia amplexicaulis \N \N \N \N \N 63914 E.SMAma006 Endlicheria Endlicheria sp. 1 SMAma006 \N \N \N \N \N 63915 C.lineariloba Cotula Cotula lineariloba \N \N \N \N \N 63916 R.spectabilis Rubus Rubus spectabilis \N \N \N \N \N 63917 N.coursii Neotina Neotina coursii \N \N \N \N \N 63918 S.bhutkesh Saussurea Saussurea bhutkesh \N \N \N \N \N 63919 L.discolor Lithospermum Lithospermum discolor \N \N \N \N \N 63920 V.orientalis Viola Viola orientalis \N \N \N \N \N 63921 \N subspecies Rondeletia alaternoides subsp. alaternoides \N \N \N \N \N 63922 H.diptera Hoya Hoya diptera \N \N \N \N \N 63923 P.siifolia Pimpinella Pimpinella siifolia \N \N \N \N \N 63925 R.costaricensis Romanschulzia Romanschulzia costaricensis \N \N \N \N \N 63926 D.sutchuenense Dichocarpum Dichocarpum sutchuenense \N \N \N \N \N 63927 E.mendezii Euphorbia Euphorbia mendezii \N \N \N \N \N 63928 P.kurdica Potentilla Potentilla kurdica \N \N \N \N \N 63929 V.florifera Valerianella Valerianella florifera \N \N \N \N \N 63930 \N varietas Prunus incisa var. bukosanensis bukou mamezakura \N \N \N \N 63931 P.prismatocarpa Prosthechea Prosthechea prismatocarpa \N \N \N \N \N 63932 W.caudata Wolffiella Wolffiella caudata \N \N \N \N \N 63933 P.rivinifolia Polygala Polygala rivinifolia \N \N \N \N \N 63934 B.FS870 Bulbophyllum Bulbophyllum sp. FS870 \N \N \N \N \N 63935 \N genus Achetaria \N \N \N \N \N 63936 C.villosissimus Costus Costus villosissimus \N \N \N \N \N 63937 B.paniculata Blumea Blumea paniculata \N \N \N \N \N 63938 V.ludoviciana Vicia Vicia ludoviciana \N \N \N \N \N 63939 H.1301 Hydnocarpus Hydnocarpus sp. Chase 1301 \N \N \N \N \N 63940 N.cavaleriei Nothaphoebe Nothaphoebe cavaleriei \N \N \N \N \N 63941 P.acutiflorum Polemonium Polemonium acutiflorum \N \N \N \N \N 63942 T.japonicus Trollius Trollius japonicus \N \N \N \N \N 63943 T.martianus Trachycarpus Trachycarpus martianus \N \N \N \N \N 63944 \N varietas Phlox pilosa var. longipilosa \N \N \N \N \N 63945 C.01-109 Cistanthe Cistanthe sp. Hershkovitz 01-109 \N \N \N \N \N 63946 S.saxatilis Sanicula Sanicula saxatilis devil's blacksnakeroot \N \N \N \N 63947 P.cristae Potentilla Potentilla cristae \N \N \N \N \N 63948 S.P817 Sisyrinchium Sisyrinchium aff. langloisii P817 \N \N \N \N \N 63949 N.caudatum Neocinnamomum Neocinnamomum caudatum \N \N \N \N \N 63950 C.curvula Carex Carex curvula \N \N \N \N \N 63951 O.argentea Oreomyrrhis Oreomyrrhis argentea \N \N \N \N \N 63952 Z.SRR-2011 unclassified Zygopetalinae Zygopetalinae sp. 9 SRR-2011 \N \N \N \N \N 63953 \N subspecies Chamelaucium floriferum subsp. diffusum \N \N \N \N \N 63954 M.jonesii Mentzelia Mentzelia jonesii \N \N \N \N \N 63955 T.tartonraira Thymelaea Thymelaea tartonraira \N \N \N \N \N 63957 L.tenuis Lotus Lotus tenuis slender trefoil \N \N \N \N 63958 K.japonica Korthalsella Korthalsella japonica \N \N \N \N \N 63959 A.koelzii Alcea Alcea koelzii \N \N \N \N \N 63960 A.alpestre Alyssum Alyssum alpestre \N \N \N \N \N 63961 \N genus Recordoxylon \N \N \N \N \N 63962 G.volkensii Gardenia Gardenia volkensii \N \N \N \N \N 63963 O.ternata Oxypolis Oxypolis ternata \N \N \N \N \N 63964 M.elvirae Miconia Miconia elvirae \N \N \N \N \N 63965 E.goyazense Eryngium Eryngium goyazense \N \N \N \N \N 63966 D.hildebrandtii Dalechampia Dalechampia hildebrandtii \N \N \N \N \N 63967 S.tonckat Stromanthe Stromanthe tonckat \N \N \N \N \N 63968 \N subspecies Genista triacanthos subsp. triacanthos \N \N \N \N \N 63969 C.faucicola Caralluma Caralluma faucicola \N \N \N \N \N 63970 E.longissima Echeveria Echeveria longissima \N \N \N \N \N 63971 \N genus Dolichorrhiza \N \N \N \N \N 63972 M.franciscensis Myrceugenia Myrceugenia franciscensis \N \N \N \N \N 63973 S.euphorioides Stereospermum Stereospermum euphorioides \N \N \N \N \N 63974 C.glabrata Calpurnia Calpurnia glabrata \N \N \N \N \N 63975 S.pumila Solms-laubachia Solms-laubachia pumila \N \N \N \N \N 63976 C.reflexa Cuscuta Cuscuta reflexa giant dodder,southern Asian dodder \N \N \N \N 63977 T.weberbaueri Trichoneura Trichoneura weberbaueri \N \N \N \N \N 63978 A.ranunculoides Anemone Anemone ranunculoides \N \N \N \N \N 63979 P.flagelliformis Pararuellia Pararuellia flagelliformis \N \N \N \N \N 63980 C.lehmannii Columnea Columnea lehmannii \N \N \N \N \N 63981 S.nuda Silene Silene nuda \N \N \N \N \N 63982 \N genus Ponapea \N \N \N \N \N 63983 O.dillenii Oxalis Oxalis dillenii \N \N \N \N \N 63984 \N subspecies Hevea brasiliensis subsp. brasiliensis \N \N \N \N \N 63985 P.macrocarpus Petersianthus Petersianthus macrocarpus \N \N \N \N \N 63986 \N varietas Angraecum eburneum var. longicalcar \N \N \N \N \N 63987 E.cattimandoo Euphorbia Euphorbia cattimandoo \N \N \N \N \N 63988 P.phyllanthoidea Pyrostria Pyrostria phyllanthoidea \N \N \N \N \N 63989 S.coronata Syagrus Syagrus coronata \N \N \N \N \N 63990 G.balearica Genista Genista balearica \N \N \N \N \N 63991 O.filifolium Olsynium Olsynium filifolium \N \N \N \N \N 63992 A.sagittarioides Asarum Asarum sagittarioides \N \N \N \N \N 63993 T.idukkiana Thottea Thottea idukkiana \N \N \N \N \N 63994 T.ascendens Trichocentrum Trichocentrum ascendens \N \N \N \N \N 63995 S.glandulosum Synoum Synoum glandulosum \N \N \N \N \N 63996 A.surinamensis Amphirrhox Amphirrhox surinamensis \N \N \N \N \N 63997 \N genus Elburzia \N \N \N \N \N 63998 \N subspecies Narcissus pseudonarcissus subsp. munozii-garmendiae \N \N \N \N \N 63999 M.aucheri Myopordon Myopordon aucheri \N \N \N \N \N 64000 C.incisum Cicer Cicer incisum \N \N \N \N \N 64001 \N genus Diplazoptilon \N \N \N \N \N 64002 A.hemipogon Austrostipa Austrostipa hemipogon \N \N \N \N \N 64003 C.pulcher Croton Croton pulcher \N \N \N \N \N 64004 S.rubescens Speculantha Speculantha rubescens \N \N \N \N \N 64005 L.kulczinskii Leontodon Leontodon kulczinskii \N \N \N \N \N 64006 \N genus Asperuginoides \N \N \N \N \N 64007 C.papaya Carica Carica papaya mamon,papaya \N \N \N \N 64008 R.virgata Reseda Reseda virgata \N \N \N \N \N 64009 \N subspecies Banksia integrifolia subsp. monticola \N \N \N \N \N 64010 P.B21834 Persea Persea sp. B21834 \N \N \N \N \N 64011 \N varietas Lantana depressa var. depressa \N \N \N \N \N 64012 M.sclerocarpa Metrosideros Metrosideros sclerocarpa \N \N \N \N \N 64013 G.griseus Gladiolus Gladiolus griseus \N \N \N \N \N 64014 S.variegatum Stenomesson Stenomesson variegatum \N \N \N \N \N 64015 A.argentea Aglaia Aglaia argentea \N \N \N \N \N 64016 \N genus Pseudowintera \N \N \N \N \N 64017 \N varietas Oxalis laxa var. hispidissima \N \N \N \N \N 64018 C.urens Cuphea Cuphea urens \N \N \N \N \N 64019 M.trifida Malva Malva trifida \N \N \N \N \N 64020 S.pobeguinii Sarcocephalus Sarcocephalus pobeguinii \N \N \N \N \N 64021 T.725 Taraxacum Taraxacum sp. Sojak 725 \N \N \N \N \N 64022 \N genus Gymnoschoenus \N \N \N \N \N 64023 V.somchetica Viola Viola somchetica \N \N \N \N \N 64024 C.filifolia Carex Carex filifolia \N \N \N \N \N 64025 \N genus Anemocarpa \N \N \N \N \N 64026 \N genus Halerpestes \N \N \N \N \N 64027 D.carinatus Durio Durio carinatus \N \N \N \N \N 64028 P.hookeri Poa Poa hookeri \N \N \N \N \N 64029 P.veronicoides Pentanisia Pentanisia veronicoides \N \N \N \N \N 64030 L.rigidum Lepidium Lepidium rigidum \N \N \N \N \N 64031 G.chiricahensis Glandularia Glandularia chiricahensis \N \N \N \N \N 64032 \N subspecies Argocoffeopsis rupestris subsp. thonneri \N \N \N \N \N 64033 S.teretifolia Scholtzia Scholtzia teretifolia \N \N \N \N \N 64034 O.lambertii Oxytropis Oxytropis lambertii \N \N \N \N \N 64035 P.radens Pelargonium Pelargonium radens \N \N \N \N \N 64036 D.myoporoides Duboisia Duboisia myoporoides \N \N \N \N \N 64037 C.paniculata Canna Canna paniculata \N \N \N \N \N 64038 H.oldfieldii Hakea Hakea oldfieldii \N \N \N \N \N 64039 M.annua Manulea Manulea annua \N \N \N \N \N 64040 L.domingensis Lisianthius Lisianthius domingensis \N \N \N \N \N 64041 S.1016 Saussurea Saussurea cf. tatsienensis Liu 1016 \N \N \N \N \N 64042 H.peralbus Hibiscus Hibiscus peralbus \N \N \N \N \N 64043 P.queenslandicum Panicum Panicum queenslandicum \N \N \N \N \N 64044 P.tuberosus Paepalanthus Paepalanthus tuberosus \N \N \N \N \N 64045 C.graecum Colchicum Colchicum graecum \N \N \N \N \N 64046 C.phuyensis Craibella Craibella phuyensis \N \N \N \N \N 64047 R.densa Ruellia Ruellia densa \N \N \N \N \N 64048 H.spinosissimum Hedysarum Hedysarum spinosissimum \N \N \N \N \N 64049 C.atrostellatus Croton Croton atrostellatus \N \N \N \N \N 64050 P.alatum Pterygodium Pterygodium alatum \N \N \N \N \N 64051 S.macrocarpa Stuckenia Stuckenia macrocarpa \N \N \N \N \N 64052 \N subspecies Eriosyce subgibbosa subsp. wagenknechtii \N \N \N \N \N 64053 C.quezalteca Chamaedorea Chamaedorea quezalteca \N \N \N \N \N 88013 \N subfamily Helicteroideae \N \N \N \N \N 64054 O.ochradeni Ochradenus Ochradenus ochradeni \N \N \N \N \N 64055 \N genus Nepenthes \N \N \N \N \N 64056 O.bertolonii Ophrys Ophrys bertolonii \N \N \N \N \N 64057 D.nigrescens Dalbergia Dalbergia nigrescens \N \N \N \N \N 64058 B.saundersioides Bonatea Bonatea saundersioides \N \N \N \N \N 64059 \N genus Acamptopappus goldenhead \N \N \N \N 64060 A.perryi Aloe Aloe perryi \N \N \N \N \N 64061 \N genus Wunderlichia \N \N \N \N \N 64062 O.linearis Oenanthe Oenanthe linearis \N \N \N \N \N 64063 S.jaliscense Schoenocaulon Schoenocaulon jaliscense \N \N \N \N \N 64064 B.laevigata Banksia Banksia laevigata \N \N \N \N \N 64065 C.longipes Chelonopsis Chelonopsis longipes \N \N \N \N \N 64066 \N subspecies Laserpitium eliasii subsp. ordunae \N \N \N \N \N 64067 \N subspecies Primula amethystina subsp. brevifolia \N \N \N \N \N 64068 B.francoisii Bulbophyllum Bulbophyllum francoisii \N \N \N \N \N 64069 H.1261 Homonoia Homonoia sp. Chase 1261 \N \N \N \N \N 64070 E.stamfordianum Epidendrum Epidendrum stamfordianum \N \N \N \N \N 64071 B.atlantica Bellis Bellis atlantica \N \N \N \N \N 64072 I.nigritana Indigofera Indigofera nigritana \N \N \N \N \N 64073 A.umbrinella Antennaria Antennaria umbrinella \N \N \N \N \N 64074 P.pilosa Portulaca Portulaca pilosa \N \N \N \N \N 64075 T.waimeae Tetraplasandra Tetraplasandra waimeae \N \N \N \N \N 64076 \N genus Haussknechtia \N \N \N \N \N 64077 S.tendo Schoenus Schoenus tendo \N \N \N \N \N 64078 G.boavista Galactia Galactia boavista \N \N \N \N \N 64079 P.racemosa Petrea Petrea racemosa \N \N \N \N \N 64080 D.1993 Decumaria Decumaria sp. Chase et al. 1993 \N \N \N \N \N 64081 S.conzattii Schoenocaulon Schoenocaulon conzattii \N \N \N \N \N 64082 E.maingayi Etlingera Etlingera maingayi \N \N \N \N \N 64083 C.repanda Coronilla Coronilla repanda \N \N \N \N \N 64084 S.achilleifolius Senecio Senecio achilleifolius \N \N \N \N \N 64085 \N varietas Mimosa acantholoba var. acantholoba \N \N \N \N \N 64086 \N varietas Leucas abyssinica var. sidamoensis \N \N \N \N \N 64087 C.paniculata Cussonia Cussonia paniculata \N \N \N \N \N 64088 C.rujanensis Crocus Crocus rujanensis \N \N \N \N \N 64089 C.warmingii Croton Croton warmingii \N \N \N \N \N 64090 V.lanceolata Viola Viola lanceolata \N \N \N \N \N 64091 C.pubescens Cadia Cadia pubescens \N \N \N \N \N 64092 A.rigida Acrotriche Acrotriche rigida \N \N \N \N \N 64093 M.eriacantha Mammillaria Mammillaria eriacantha \N \N \N \N \N 64094 R.inconspicuum Rhododendron Rhododendron inconspicuum \N \N \N \N \N 64095 M.polyadenos Mallotus Mallotus polyadenos \N \N \N \N \N 64096 C.646 Cyrtandra Cyrtandra cf. richii Clark 646 \N \N \N \N \N 64097 M.pinatubensis Mussaenda Mussaenda pinatubensis \N \N \N \N \N 64098 A.nuda Apostasia Apostasia nuda \N \N \N \N \N 64099 \N genus Cojoba \N \N \N \N \N 64100 L.erectifolia Lorenzochloa Lorenzochloa erectifolia \N \N \N \N \N 64101 E.gracile Eriophorum Eriophorum gracile \N \N \N \N \N 64102 S.microphylla Smilax Smilax microphylla \N \N \N \N \N 64103 A.apaensis Angelica Angelica apaensis \N \N \N \N \N 64104 H.chionosphaerum Helichrysum Helichrysum chionosphaerum \N \N \N \N \N 64105 T.arvensis Torilis Torilis arvensis \N \N \N \N \N 64106 C.fabri Castanopsis Castanopsis fabri \N \N \N \N \N 64107 A.splendens Anthyllis Anthyllis splendens \N \N \N \N \N 64108 E.tenuis Erica Erica tenuis \N \N \N \N \N 64109 C.aptera Cousinia Cousinia aptera \N \N \N \N \N 64110 M.exotica Murraya Murraya exotica \N \N \N \N \N 64111 \N forma Malus baccata f. minor \N \N \N \N \N 64112 P.pilosa Panderia Panderia pilosa \N \N \N \N \N 64113 A.hygrometrica Aristida Aristida hygrometrica \N \N \N \N \N 64114 V.lanaiensis Viola Viola lanaiensis \N \N \N \N \N 64115 \N genus Martretia \N \N \N \N \N 64116 \N genus Huberodendron \N \N \N \N \N 64117 P.scapiflorum Pegaeophyton Pegaeophyton scapiflorum \N \N \N \N \N 64118 \N genus Cremnophyton \N \N \N \N \N 64119 \N subspecies Lepidium draba subsp. draba \N \N \N \N \N 64120 C.aquatilis Carex Carex aquatilis \N \N \N \N \N 64121 \N subspecies Cistus chinamadensis subsp. gomerae \N \N \N \N \N 64122 C.grandiflora Cistanthe Cistanthe grandiflora \N \N \N \N \N 64123 T.ornithopodioides Trifolium Trifolium ornithopodioides \N \N \N \N \N 64124 R.hispida Robinia Robinia hispida bristly locust,moss locust \N \N \N \N 64125 C.chrysocarpa Crataegus Crataegus chrysocarpa fireberry hawthorn \N \N \N \N 64126 \N tribe Forsythieae \N \N \N \N \N 64127 P.oklahomensis Penstemon Penstemon oklahomensis \N \N \N \N \N 64128 H.agrestis Helianthus Helianthus agrestis \N \N \N \N \N 64129 L.montanum Lepidium Lepidium montanum \N \N \N \N \N 64130 \N genus Ypsilopus \N \N \N \N \N 64131 P.morifolia Passiflora Passiflora morifolia \N \N \N \N \N 64132 O.dasycephala Onobrychis Onobrychis dasycephala \N \N \N \N \N 64133 C.sinuatum Chrysanthemum Chrysanthemum sinuatum \N \N \N \N \N 64134 D.catenatum Dendrobium Dendrobium catenatum \N \N \N \N \N 64135 \N genus Duidaea \N \N \N \N \N 64136 B.macrophylla Bouea Bouea macrophylla \N \N \N \N \N 64137 \N genus Comesperma \N \N \N \N \N 64138 O.linearis Ondetia Ondetia linearis \N \N \N \N \N 64139 T.anomala Tragiella Tragiella anomala \N \N \N \N \N 64140 P.brachyceras Psychotria Psychotria brachyceras \N \N \N \N \N 64141 G.cultivar Gerbera Gerbera hybrid cultivar \N \N \N \N \N 64142 M.leptocarpum Mostacillastrum Mostacillastrum leptocarpum \N \N \N \N \N 64143 A.rubriflora Astroloba Astroloba rubriflora \N \N \N \N \N 64144 \N genus Dimorphocarpa \N \N \N \N \N 64145 D.legionensis Dianthus Dianthus legionensis \N \N \N \N \N 64146 C.echinodes Carex Carex echinodes \N \N \N \N \N 64147 O.brachybotrya Ocotea Ocotea brachybotrya \N \N \N \N \N 64148 P.simulans Pleiospilos Pleiospilos simulans \N \N \N \N \N 64149 T.chachapoyensis Tetrasida Tetrasida chachapoyensis \N \N \N \N \N 64150 S.subumbellatum Solanum Solanum subumbellatum \N \N \N \N \N 64151 G.ovatifolia Gaultheria Gaultheria ovatifolia \N \N \N \N \N 64152 M.caput-medusae Myriophyllum Myriophyllum caput-medusae \N \N \N \N \N 64153 C.hindsii Citrus Citrus hindsii Hong Kong kumquat \N \N \N \N 64154 T.occidentalis Triantha Triantha occidentalis \N \N \N \N \N 64155 A.psammophilum Androcymbium Androcymbium psammophilum \N \N \N \N \N 64156 \N varietas Mimosa foliolosa var. pubescens \N \N \N \N \N 64157 C.lanata Cliffortia Cliffortia lanata \N \N \N \N \N 64158 A.9129 Asystasia Asystasia sp. Daniel 9129 \N \N \N \N \N 64159 L.oresbia Lonicera Lonicera oresbia \N \N \N \N \N 64160 \N family Malpighiaceae Barbados cherry family \N \N \N \N 64161 O.paucartambensis Oxalis Oxalis paucartambensis \N \N \N \N \N 64162 C.8342 Comparettia Comparettia sp. Hirtz 8342 \N \N \N \N \N 64163 \N no rank Saccharum hybrid cultivar CP65-357 \N \N \N \N \N 64164 E.glaberrimus Echinops Echinops glaberrimus \N \N \N \N \N 64165 B.aubertii Blyxa Blyxa aubertii \N \N \N \N \N 64166 C.pulchella Cardamine Cardamine pulchella \N \N \N \N \N 64167 H.muticus Hymenochilus Hymenochilus muticus \N \N \N \N \N 64168 \N genus Stilpnolepis \N \N \N \N \N 64169 \N genus Eriophorum \N \N \N \N \N 64170 S.glomerulata Suregada Suregada glomerulata \N \N \N \N \N 64171 B.JT-2006-2 Boesenbergia Boesenbergia sp. JT-2006-2 \N \N \N \N \N 64172 R.crystallina Reichardia Reichardia crystallina \N \N \N \N \N 64173 M.pterocarpa Monnina Monnina pterocarpa \N \N \N \N \N 64174 D.discoidea Draba Draba discoidea \N \N \N \N \N 64175 A.cambagei Almaleea Almaleea cambagei \N \N \N \N \N 64176 O.sulfureus Oncocalyx Oncocalyx sulfureus \N \N \N \N \N 64177 T.pringlei Tagetes Tagetes pringlei \N \N \N \N \N 64178 P.atlantica Pistacia Pistacia atlantica \N \N \N \N \N 64179 A.minor Alchemilla Alchemilla minor \N \N \N \N \N 64180 \N tribe Bryonieae \N \N \N \N \N 64181 E.melastoma Erica Erica melastoma \N \N \N \N \N 64182 S.densiserratus Senecio Senecio densiserratus \N \N \N \N \N 64183 A.stenanthina Adenophora Adenophora stenanthina \N \N \N \N \N 64184 P.hildebrandtii Perotis Perotis hildebrandtii \N \N \N \N \N 64185 \N varietas Ranunculus aquatilis var. capillaceus \N \N \N \N \N 64186 \N genus Calycocarpum \N \N \N \N \N 64187 \N varietas Setaria viridis var. minor \N \N \N \N \N 64188 R.battenbergiana Renealmia Renealmia battenbergiana \N \N \N \N \N 64189 T.garcia-mendozae Thompsonella Thompsonella garcia-mendozae \N \N \N \N \N 64190 S.texana Spigelia Spigelia texana \N \N \N \N \N 64191 K.albonervosus Kudoacanthus Kudoacanthus albonervosus \N \N \N \N \N 64192 \N genus Atroxima \N \N \N \N \N 64193 H.coatesii Hibiscus Hibiscus coatesii \N \N \N \N \N 64194 B.peninsularis Brongniartia Brongniartia peninsularis \N \N \N \N \N 64195 S.gilliesii Sclerophylax Sclerophylax gilliesii \N \N \N \N \N 64196 S.radians Styrax Styrax radians \N \N \N \N \N 64197 \N varietas Hedychium coccineum var. carneum \N \N \N \N \N 64198 C.acuminatum Crepidium Crepidium acuminatum \N \N \N \N \N 64199 C.nobilis Clivia Clivia nobilis \N \N \N \N \N 64200 A.isakulii Allium Allium isakulii \N \N \N \N \N 64201 A.californica Aesculus Aesculus californica California buckeye \N \N \N \N 64202 A.cordata Alnus Alnus cordata \N \N \N \N \N 64203 C.pusilla Chaetanthera Chaetanthera pusilla \N \N \N \N \N 64204 I.longifolium Isodendrion Isodendrion longifolium \N \N \N \N \N 64205 P.AR-2009 Polystachya Polystachya cf. nyanzensis AR-2009 \N \N \N \N \N 64206 \N varietas Erigeron morrisonensis var. fukuyamae \N \N \N \N \N 64207 B.bogneri Begonia Begonia bogneri \N \N \N \N \N 64208 C.siegizmundii Campanula Campanula siegizmundii \N \N \N \N \N 64209 \N genus Piscidia \N \N \N \N \N 64210 \N genus Hemipilia \N \N \N \N \N 64211 \N genus Enteropogon \N \N \N \N \N 64212 B.190 Begonia Begonia sp. Forrest 190 \N \N \N \N \N 64213 R.porrectidens Rosa Rosa porrectidens \N \N \N \N \N 64214 E.dallachyana Euphorbia Euphorbia dallachyana \N \N \N \N \N 64215 C.salvatrix Coffea Coffea salvatrix \N \N \N \N \N 79375 A.grayi Allium Allium grayi \N \N \N \N \N 64216 N.clarazii Nassella Nassella clarazii \N \N \N \N \N 64217 C.808 Chaetacanthus Chaetacanthus sp. Forest 808 \N \N \N \N \N 64218 O.knuthiana Oxalis Oxalis knuthiana \N \N \N \N \N 64219 \N order Austrobaileyales \N \N \N \N \N 64220 J.leivae Jaltomata Jaltomata leivae \N \N \N \N \N 64221 \N tribe Tourrettieae \N \N \N \N \N 64222 P.128 Phyllanthus Phyllanthus sp. Yao 128 \N \N \N \N \N 64223 E.scheuchzeri Eriophorum Eriophorum scheuchzeri \N \N \N \N \N 64224 P.dasyphyllum Pelargonium Pelargonium dasyphyllum \N \N \N \N \N 64225 I.kotschyana Isatis Isatis kotschyana \N \N \N \N \N 64226 A.bulbilliferum Aconitum Aconitum bulbilliferum \N \N \N \N \N 64227 B.formosa Banksia Banksia formosa \N \N \N \N \N 64228 A.inodora Alstroemeria Alstroemeria inodora \N \N \N \N \N 64229 L.mascaensis Lotus Lotus mascaensis \N \N \N \N \N 64230 C.sieboldii Calanthe Calanthe sieboldii \N \N \N \N \N 64231 C.vexans Carex Carex vexans \N \N \N \N \N 64232 \N subfamily Sterculioideae \N \N \N \N \N 64233 D.littoralis Daucus Daucus littoralis \N \N \N \N \N 64234 M.uncinata Melaleuca Melaleuca uncinata \N \N \N \N \N 64235 P.punctata Psychotria Psychotria punctata \N \N \N \N \N 64236 C.podlechii Clausia Clausia podlechii \N \N \N \N \N 64237 M.coccinea Mirabilis Mirabilis coccinea \N \N \N \N \N 64238 T.gussonei Thymelaea Thymelaea gussonei \N \N \N \N \N 64239 \N genus Mystacidium \N \N \N \N \N 64240 C.1678 Crepidospermum Crepidospermum sp. DR 1678 \N \N \N \N \N 64241 E.variegata Erythrina Erythrina variegata Indian coral tree,ci tong,dabdab \N \N \N \N 64242 A.faurei Adenocarpus Adenocarpus faurei \N \N \N \N \N 64243 D.hebecarpa Dovyalis Dovyalis hebecarpa \N \N \N \N \N 64244 B.reticulata Bahiopsis Bahiopsis reticulata \N \N \N \N \N 64245 \N genus Solms-laubachia \N \N \N \N \N 64246 Z.pancheri Zygogynum Zygogynum pancheri \N \N \N \N \N 64247 A.rhiniochloa Aristida Aristida rhiniochloa \N \N \N \N \N 64248 S.pinnulatus Senecio Senecio pinnulatus \N \N \N \N \N 64249 A.CJ-2009 Allium Allium sp. CJ-2009 \N \N \N \N \N 64250 L.glaucescens Leonurus Leonurus glaucescens \N \N \N \N \N 64251 C.natalensis Cussonia Cussonia natalensis \N \N \N \N \N 64252 P.viridiflora Piptadenia Piptadenia viridiflora \N \N \N \N \N 64253 M.brasiliense Machaerium Machaerium brasiliense \N \N \N \N \N 64254 M.angulatum Misodendrum Misodendrum angulatum \N \N \N \N \N 64255 T.elizabethae Tillandsia Tillandsia elizabethae \N \N \N \N \N 64256 L.remota Lysimachia Lysimachia remota \N \N \N \N \N 64257 C.rubens Crassocephalum Crassocephalum crepidioides x Crassocephalum rubens \N \N \N \N \N 64258 T.teaboanum Trichocentrum Trichocentrum x teaboanum \N \N \N \N \N 64259 C.membranacea Cuscuta Cuscuta membranacea \N \N \N \N \N 64260 \N genus Androcymbium \N \N \N \N \N 64261 S.hirticapsa Streptocarpus Streptocarpus hirticapsa \N \N \N \N \N 64262 C.osbeckiifolius Cistus Cistus osbeckiifolius \N \N \N \N \N 64263 \N genus Munroidendron \N \N \N \N \N 64264 D.insulsus Didymocarpus Didymocarpus insulsus \N \N \N \N \N 64265 \N genus Parrotiopsis \N \N \N \N \N 64266 P.chathamica Poa Poa chathamica \N \N \N \N \N 64267 P.warszewiczianum Phragmipedium Phragmipedium warszewiczianum \N \N \N \N \N 64268 A.nashii Asimina Asimina x nashii \N \N \N \N \N 64269 C.camptocarpa Consolida Consolida camptocarpa \N \N \N \N \N 64270 M.megalocarpa Megacarpaea Megacarpaea megalocarpa \N \N \N \N \N 64271 \N genus Paradisea \N \N \N \N \N 64272 G.portentosa Gongora Gongora portentosa \N \N \N \N \N 64273 C.bengalense Canarium Canarium bengalense East Indian copal \N \N \N \N 64274 \N genus Lonas \N \N \N \N \N 64275 C.demissa Carex Carex demissa \N \N \N \N \N 64276 P.6280 Primula Primula sp. Chambers 6280 \N \N \N \N \N 64277 S.spirale Solanum Solanum spirale \N \N \N \N \N 64278 M.polybotrya Melicope Melicope polybotrya \N \N \N \N \N 64279 C.rigida Chorizanthe Chorizanthe rigida \N \N \N \N \N 64280 C.seifrizii Chamaedorea Chamaedorea seifrizii bamboo palm,reed palm \N \N \N \N 64281 \N genus Wamalchitamia \N \N \N \N \N 64282 \N genus Monvillea \N \N \N \N \N 64283 A.africanum Achyrospermum Achyrospermum africanum \N \N \N \N \N 64284 C.austriaca Cota Cota austriaca \N \N \N \N \N 64285 A.globosum Agathisanthemum Agathisanthemum globosum \N \N \N \N \N 64286 \N genus Viscainoa \N \N \N \N \N 64287 E.distans Eremopyrum Eremopyrum distans \N \N \N \N \N 64288 H.pengxianensis Hemsleya Hemsleya pengxianensis \N \N \N \N \N 64289 S.nemorum Stellaria Stellaria nemorum wood stitchwort \N \N \N \N 64290 P.globosus Penstemon Penstemon globosus \N \N \N \N \N 64291 G.palustre Galium Galium palustre \N \N \N \N \N 64292 \N genus Cliococca \N \N \N \N \N 64293 A.cymbalariifolius Acianthus Acianthus cymbalariifolius \N \N \N \N \N 64294 P.flagellaris Polyalthia Polyalthia flagellaris \N \N \N \N \N 64295 R.gaudanense Rhammatophyllum Rhammatophyllum gaudanense \N \N \N \N \N 64296 C.caput-medusae Convolvulus Convolvulus caput-medusae \N \N \N \N \N 64297 H.congesta Hemizonia Hemizonia congesta hayfield tarweed \N \N \N \N 64298 T.pygmaeus Triptilodiscus Triptilodiscus pygmaeus \N \N \N \N \N 64299 \N varietas Henriquezia nitida var. macrophylla \N \N \N \N \N 64300 P.cardiantha Pleurothallis Pleurothallis cardiantha \N \N \N \N \N 64301 M.torreyi Malacothrix Malacothrix torreyi \N \N \N \N \N 64302 R.steveni Ranunculus Ranunculus steveni \N \N \N \N \N 64303 \N varietas Asarum caudigerum var. cardiophyllum \N \N \N \N \N 64304 \N subspecies Veronica spicata subsp. fischeri \N \N \N \N \N 64305 P.longiflora Pimelea Pimelea longiflora \N \N \N \N \N 64306 B.asiatica Buddleja Buddleja asiatica \N \N \N \N \N 64307 G.madagascariensis Gentianothamnus Gentianothamnus madagascariensis \N \N \N \N \N 64308 H.BS13076 Havetiopsis Havetiopsis sp. BS13076 \N \N \N \N \N 64309 C.pallida Clusia Clusia pallida \N \N \N \N \N 64310 C.megalophyllum Cestrum Cestrum megalophyllum \N \N \N \N \N 64311 \N genus Deuterocohnia \N \N \N \N \N 64312 A.macleanii Allium Allium macleanii \N \N \N \N \N 64313 L.secunda Leandra Leandra secunda \N \N \N \N \N 64314 L.muraria Lindenbergia Lindenbergia muraria \N \N \N \N \N 64315 N.stephanii Neochevalierodendron Neochevalierodendron stephanii \N \N \N \N \N 64316 P.rheophytopsis Planchonella Planchonella rheophytopsis \N \N \N \N \N 64317 P.clivorum Psychotria Psychotria clivorum \N \N \N \N \N 64318 E.conyzoides Ethulia Ethulia conyzoides \N \N \N \N \N 64319 \N genus Galeandra \N \N \N \N \N 64320 \N genus Licania \N \N \N \N \N 64321 \N genus Paranephelius \N \N \N \N \N 64322 D.juruana Dalechampia Dalechampia juruana \N \N \N \N \N 64323 E.valerianifolia Euphorbia Euphorbia valerianifolia \N \N \N \N \N 64324 \N genus Fridericia \N \N \N \N \N 64325 C.seleriana Cordia Cordia seleriana \N \N \N \N \N 64326 C.trochlearis Callitriche Callitriche trochlearis \N \N \N \N \N 64327 C.campanulata Carvalhoa Carvalhoa campanulata \N \N \N \N \N 64328 C.s.n. Cyrtanthus Cyrtanthus sp. Tait s.n. \N \N \N \N \N 64329 C.paucisquama Cotylanthera Cotylanthera paucisquama \N \N \N \N \N 64330 R.meyeri Ribes Ribes meyeri \N \N \N \N \N 64331 T.palustris Tabebuia Tabebuia palustris \N \N \N \N \N 64332 P.oleracea Portulaca Portulaca oleracea \N \N \N \N \N 64333 L.subcongesta Luzula Luzula subcongesta \N \N \N \N \N 64334 R.uroskinneri Rhynchostele Rhynchostele uroskinneri \N \N \N \N \N 64335 O.orientale Osmoxylon Osmoxylon orientale \N \N \N \N \N 64336 \N varietas Stanleya pinnata var. integrifolia \N \N \N \N \N 64337 C.heterophylla Clidemia Clidemia heterophylla \N \N \N \N \N 64338 O.JZ-2007 Oxalis Oxalis sp. JZ-2007 \N \N \N \N \N 64339 L.chanar Lycium Lycium chanar \N \N \N \N \N 64340 M.capitata Montiopsis Montiopsis capitata \N \N \N \N \N 64341 P.yunnanense Pleurospermum Pleurospermum yunnanense \N \N \N \N \N 64342 T.oshanahanii Tanacetum Tanacetum oshanahanii \N \N \N \N \N 64343 O.reuteri Ononis Ononis reuteri \N \N \N \N \N 64344 \N genus Corokia \N \N \N \N \N 64345 E.daucoides Erodium Erodium daucoides \N \N \N \N \N 64346 A.zaianica Anthemis Anthemis zaianica \N \N \N \N \N 64347 C.parapotamia Casuarina Casuarina parapotamia \N \N \N \N \N 64348 C.salicifolia Carlina Carlina salicifolia \N \N \N \N \N 64349 C.cylindracea Cousinia Cousinia cylindracea \N \N \N \N \N 64350 O.boothianum Oncidium Oncidium boothianum \N \N \N \N \N 64351 V.hui Vitis Vitis hui \N \N \N \N \N 64352 I.gleichenioides Indigofera Indigofera gleichenioides \N \N \N \N \N 64353 I.marmorata Indigofera Indigofera marmorata \N \N \N \N \N 64354 S.urophylla Symphonia Symphonia urophylla \N \N \N \N \N 64355 P.coloratum Platostoma Platostoma coloratum \N \N \N \N \N 64356 O.prolifera Oenanthe Oenanthe prolifera \N \N \N \N \N 64357 G.albens Gladiolus Gladiolus albens \N \N \N \N \N 64358 M.polyantha Mimosa Mimosa polyantha \N \N \N \N \N 64359 C.surinamensis Cyperus Cyperus surinamensis \N \N \N \N \N 64360 \N genus Allmaniopsis \N \N \N \N \N 64361 \N varietas Penstemon procerus var. procerus \N \N \N \N \N 64362 E.campestre Eryngium Eryngium campestre \N \N \N \N \N 64363 L.alaicus Leymus Leymus alaicus \N \N \N \N \N 64364 R.FJM-2009 Rubovietnamia Rubovietnamia sp. FJM-2009 \N \N \N \N \N 64365 P.miyabeana Primula Primula miyabeana \N \N \N \N \N 64366 \N varietas Cuscuta pacifica var. pacifica \N \N \N \N \N 64367 H.halimifolium Halimium Halimium halimifolium \N \N \N \N \N 64368 P.ovata Pachygone Pachygone ovata \N \N \N \N \N 64369 \N subspecies Carissa bispinosa subsp. bispinosa \N \N \N \N \N 64370 P.nana Protea Protea nana \N \N \N \N \N 64371 S.gracilis Setaria Setaria gracilis \N \N \N \N \N 64372 B.senegalensis Berhautia Berhautia senegalensis \N \N \N \N \N 64373 C.pungens Crossandra Crossandra pungens \N \N \N \N \N 64374 E.juniperina Erica Erica juniperina \N \N \N \N \N 64375 S.SYW-2010c Schismatoglottis Schismatoglottis sp. SYW-2010c \N \N \N \N \N 64376 C.trapeziformis Chiloglottis Chiloglottis trapeziformis \N \N \N \N \N 64377 M.TBG132709 Malaxis Malaxis sp. TBG132709 \N \N \N \N \N 64378 \N genus Harrisonia \N \N \N \N \N 64379 S.triacanthus Sclerochiton Sclerochiton triacanthus \N \N \N \N \N 64380 A.pinea Aspalathus Aspalathus pinea \N \N \N \N \N 64381 P.trichocalyx Pleuranthodium Pleuranthodium trichocalyx \N \N \N \N \N 64382 P.daliensis Paris Paris daliensis \N \N \N \N \N 64383 \N genus Pharus \N \N \N \N \N 64384 I.longiflora Ipomopsis Ipomopsis longiflora \N \N \N \N \N 64385 \N genus Bucida \N \N \N \N \N 64386 P.bruggemannii Puccinellia Puccinellia bruggemannii \N \N \N \N \N 64387 R.spanotrichum Rhododendron Rhododendron spanotrichum \N \N \N \N \N 64388 F.samarkandica Ferula Ferula samarkandica \N \N \N \N \N 64389 A.kuramense Allium Allium kuramense \N \N \N \N \N 64390 H.montis-wilhelminae Habenaria Habenaria montis-wilhelminae \N \N \N \N \N 64391 \N subspecies Ononis angustissima subsp. angustissima \N \N \N \N \N 64392 A.laxiflora Acanthopale Acanthopale laxiflora \N \N \N \N \N 64393 \N subspecies Gymnocalycium parvulum subsp. huettneri \N \N \N \N \N 64394 R.rhodolirion Rhodophiala Rhodophiala rhodolirion \N \N \N \N \N 64395 P.robusta Prestonia Prestonia robusta \N \N \N \N \N 64396 \N genus Parantennaria \N \N \N \N \N 64397 \N genus Ayenia \N \N \N \N \N 64398 E.scopulinus Erigeron Erigeron scopulinus \N \N \N \N \N 64399 E.litticola Euchiton Euchiton litticola \N \N \N \N \N 64400 A.hexamera Anagallis Anagallis hexamera \N \N \N \N \N 64401 E.allanii Einadia Einadia allanii \N \N \N \N \N 64402 P.curviflorus Plicosepalus Plicosepalus curviflorus \N \N \N \N \N 64403 C.barrosii Carex Carex barrosii \N \N \N \N \N 64404 M.mapiriensis Maxillaria Maxillaria mapiriensis \N \N \N \N \N 64405 K.lanata Krascheninnikovia Krascheninnikovia lanata \N \N \N \N \N 64406 C.minimus Centunculus Centunculus minimus \N \N \N \N \N 64407 E.nigrum Empetrum Empetrum nigrum black crowberry,crakeberry,curlew-berry \N \N \N \N 64408 \N genus Epithema \N \N \N \N \N 64409 \N varietas Haworthia coarctata var. coarctata \N \N \N \N \N 64410 \N subspecies Artemisia tridentata subsp. tridentata \N \N \N \N \N 64412 C.macrobothrys Croton Croton macrobothrys \N \N \N \N \N 64413 \N genus Orbignya \N \N \N \N \N 64414 P.pugnicaudex Peperomia Peperomia pugnicaudex \N \N \N \N \N 64415 Q.Rijeka Quercus Quercus sp. Rijeka \N \N \N \N \N 64416 V.albiflora Villarsia Villarsia albiflora \N \N \N \N \N 64417 C.spicata Calycadenia Calycadenia spicata spicate calycadenia \N \N \N \N 64418 I.guianensis Ilex Ilex guianensis \N \N \N \N \N 64419 D.amplexicaulis Dithyrostegia Dithyrostegia amplexicaulis \N \N \N \N \N 64420 P.angustifolia Pentas Pentas angustifolia \N \N \N \N \N 64421 C.fuegianum Chiliophyllum Chiliotrichum fuegianum \N \N \N \N \N 64422 F.forficuliflora Faurea Faurea forficuliflora \N \N \N \N \N 64423 R.buchananii Raoulia Raoulia buchananii \N \N \N \N \N 64424 R.discolor Rhipogonum Rhipogonum discolor \N \N \N \N \N 64425 P.lecomtei Pichonia Pichonia lecomtei \N \N \N \N \N 64426 C.bulbostylis Carex Carex bulbostylis \N \N \N \N \N 64427 A.volckmannii Adesmia Adesmia volckmannii \N \N \N \N \N 64428 S.KDS/10/97 Spathelia Spathelia sp. KDS/10/97 \N \N \N \N \N 64429 R.EAT-2007 Ruellia Ruellia sp. EAT-2007 \N \N \N \N \N 64430 \N varietas Prosopis glandulosa var. torreyana western honey mesquite \N \N \N \N 64431 P.canariensis Phoenix Phoenix canariensis Canary date palm \N \N \N \N 64432 W.borealis Wolffia Wolffia borealis \N \N \N \N \N 64433 C.grammata Chiloglottis Chiloglottis grammata \N \N \N \N \N 64434 P.bryoides Paepalanthus Paepalanthus bryoides \N \N \N \N \N 64435 S.parvibractea Selago Selago parvibractea \N \N \N \N \N 64436 \N genus Microloma \N \N \N \N \N 64437 U.asplundii Utricularia Utricularia asplundii \N \N \N \N \N 64438 A.urmiensis Astragalus Astragalus urmiensis \N \N \N \N \N 64439 B.candolleana Banksia Banksia candolleana \N \N \N \N \N 64440 \N genus Collaea \N \N \N \N \N 64441 \N genus Cerbera \N \N \N \N \N 64442 S.brachycarpa Sesbania Sesbania brachycarpa \N \N \N \N \N 64443 C.planiceps Catasetum Catasetum planiceps \N \N \N \N \N 64444 T.leucostaphylum Tetrastigma Tetrastigma leucostaphylum \N \N \N \N \N 64445 \N varietas Bupleurum marginatum var. stenophyllum \N \N \N \N \N 64446 H.phylicoides Heliotropium Heliotropium phylicoides \N \N \N \N \N 64447 P.phillyreifolia Pieris Pieris phillyreifolia vine-wicky \N \N \N \N 64448 E.serrata Euphorbia Euphorbia serrata saw-tooth spurge \N \N \N \N 64449 Z.fagara Zanthoxylum Zanthoxylum fagara \N \N \N \N \N 64450 S.welwitschii Simicratea Simicratea welwitschii \N \N \N \N \N 64451 P.latifolia Protorhus Protorhus latifolia \N \N \N \N \N 64452 \N genus Picralima \N \N \N \N \N 64453 N.villosa Nolana Nolana villosa \N \N \N \N \N 64454 \N genus Sventenia \N \N \N \N \N 64455 S.juncea Sowerbaea Sowerbaea juncea \N \N \N \N \N 64456 T.gaudichaudianum Tetrastigma Tetrastigma gaudichaudianum \N \N \N \N \N 64457 C.albomarginata Callitriche Callitriche albomarginata \N \N \N \N \N 64458 \N genus Thamnocharis \N \N \N \N \N 64459 C.zimmermannii Cyphostemma Cyphostemma zimmermannii \N \N \N \N \N 64460 A.alvordensis Astragalus Astragalus alvordensis \N \N \N \N \N 64461 A.schugnanica Atriplex Atriplex schugnanica \N \N \N \N \N 64462 \N subspecies Edraianthus wettsteinii subsp. lovcenicus \N \N \N \N \N 64463 P.tamayoi Peperomia Peperomia tamayoi \N \N \N \N \N 64464 B.tripetalum Bulbophyllum Bulbophyllum tripetalum \N \N \N \N \N 64465 T.saraburiense Typhonium Typhonium saraburiense \N \N \N \N \N 64466 \N genus Plagiocarpus \N \N \N \N \N 64467 \N genus Tigridia \N \N \N \N \N 64468 A.squarrosa Astrebla Astrebla squarrosa \N \N \N \N \N 64469 P.tauri Pseudoroegneria Pseudoroegneria tauri \N \N \N \N \N 64470 D.dissecta Donnellsmithia Donnellsmithia dissecta \N \N \N \N \N 64471 M.polygaloides Microdon Microdon polygaloides \N \N \N \N \N 64472 I.coccinea Ixora Ixora coccinea flame-of-the-woods,jungle geranium,jungle-flame \N \N \N \N 64473 C.ZJL-2009 Cymbidium Cymbidium sp. ZJL-2009 \N \N \N \N \N 64474 \N subspecies Bidens micrantha subsp. micrantha \N \N \N \N \N 64475 G.hallii Grindelia Grindelia hallii \N \N \N \N \N 64476 \N varietas Dracaena reflexa var. subelliptica \N \N \N \N \N 64477 N.trilobum Nematoceras Nematoceras trilobum \N \N \N \N \N 64478 E.sutchuenense Epimedium Epimedium sutchuenense \N \N \N \N \N 64479 S.otites Senecio Senecio otites \N \N \N \N \N 64480 T.stipitatum Trichocentrum Trichocentrum stipitatum \N \N \N \N \N 64481 A.valentinus Anacyclus Anacyclus valentinus \N \N \N \N \N 64482 E.lagunillarum Euphorbia Euphorbia lagunillarum \N \N \N \N \N 64483 S.douglasii Sinningia Sinningia douglasii \N \N \N \N \N 64484 R.vesicarius Rumex Rumex vesicarius ambari,bladder dock,rosy dock \N \N \N \N 64485 \N genus Baikiaea \N \N \N \N \N 64486 C.YJB-2002 Camellia Camellia sp. YJB-2002 \N \N \N \N \N 64487 B.salsilla Bomarea Bomarea salsilla \N \N \N \N \N 64488 M.arcuata Mussaenda Mussaenda arcuata \N \N \N \N \N 64489 B.virens Blumea Blumea virens \N \N \N \N \N 64490 B.laxa Bothriocline Bothriocline laxa \N \N \N \N \N 64491 N.nadeaudi Nesoluma Nesoluma nadeaudi \N \N \N \N \N 64492 C.maccannii Ceropegia Ceropegia maccannii \N \N \N \N \N 64493 \N genus Petroselinum \N \N \N \N \N 64494 W.farinosa Wooleya Wooleya farinosa \N \N \N \N \N 64495 \N genus Carphochaete \N \N \N \N \N 64496 D.aureola Draba Draba aureola \N \N \N \N \N 64497 C.pseudocuraica Carex Carex pseudocuraica \N \N \N \N \N 64498 B.hirtella Bomarea Bomarea hirtella \N \N \N \N \N 64499 \N subspecies Thymelaea tartonraira subsp. angustifolia \N \N \N \N \N 64500 A.caragana Achnatherum Achnatherum caragana \N \N \N \N \N 64501 H.grandiflorum Hydnophytum Hydnophytum grandiflorum \N \N \N \N \N 64502 \N varietas Ceanothus impressus var. impressus \N \N \N \N \N 64503 M.s.n. Maranta Maranta sp. Sytsma s.n. \N \N \N \N \N 64504 M.mediterraneum Martiodendron Martiodendron mediterraneum \N \N \N \N \N 64505 \N tribe Orobancheae \N \N \N \N \N 64506 R.uhligii Rytigynia Rytigynia uhligii \N \N \N \N \N 64507 R.pseudolowii Ranunculus Ranunculus pseudolowii \N \N \N \N \N 64508 L.conicum Leucadendron Leucadendron conicum \N \N \N \N \N 64509 S.officinalis Styrax Styrax officinalis storax \N \N \N \N 64510 C.parviflorum Cypripedium Cypripedium parviflorum \N \N \N \N \N 64511 I.maingayi Ilex Ilex maingayi \N \N \N \N \N 64512 E.paniculatus Echinopepon Echinopepon paniculatus \N \N \N \N \N 64513 M.dauricum Menispermum Menispermum dauricum \N \N \N \N \N 64514 \N tribe Sibthorpieae \N \N \N \N \N 64515 \N subspecies Allium cupuliferum subsp. cupuliferum \N \N \N \N \N 64516 L.arabicus Lotus Lotus arabicus \N \N \N \N \N 64517 C.hookerianum Cymbidium Cymbidium hookerianum \N \N \N \N \N 64518 \N subspecies Pereskia horrida subsp. horrida \N \N \N \N \N 64519 N.californicum Narthecium Narthecium californicum \N \N \N \N \N 64520 T.MP-2011 Tenicroa Tenicroa sp. 2 MP-2011 \N \N \N \N \N 64521 S.cocci' Stackhousia Stackhousia sp. 'colliculate cocci' \N \N \N \N \N 64522 J.umbellata Jaltomata Jaltomata umbellata \N \N \N \N \N 64523 G.caucasea Gentianella Gentianella caucasea \N \N \N \N \N 64524 \N genus Hieronymiella \N \N \N \N \N 64525 \N genus Tilesia \N \N \N \N \N 64526 C.123 Clusia Clusia sp. HG 123 \N \N \N \N \N 64527 S.salicifolia Silene Silene salicifolia \N \N \N \N \N 64528 D.dolichotrichum Doronicum Doronicum dolichotrichum \N \N \N \N \N 64529 P.longituba Pentanisia Pentanisia longituba \N \N \N \N \N 64530 A.zebrina Aloe Aloe zebrina \N \N \N \N \N 64531 P.JN-2011 Peperomia Peperomia aff. pinoi JN-2011 \N \N \N \N \N 64532 L.87056 Lycomormium Lycomormium sp. FLAS 87056 \N \N \N \N \N 64533 O.virginianum Onosmodium Onosmodium virginianum \N \N \N \N \N 64534 D.elvallensis Dresslerella Dresslerella elvallensis \N \N \N \N \N 64535 B.fistulosa Benincasa Benincasa fistulosa round melon,squash melon,tinda \N \N \N \N 64536 \N subspecies Argyroxiphium sandwicense subsp. sandwicense \N \N \N \N \N 64537 S.coniflora Silene Silene coniflora \N \N \N \N \N 64538 H.heterogynum Hieracium Hieracium heterogynum \N \N \N \N \N 64539 D.bambusoides Dendrocalamus Dendrocalamus bambusoides \N \N \N \N \N 64540 B.americanum Bdallophytum Bdallophytum americanum \N \N \N \N \N 64541 P.sagittifolium Philodendron Philodendron sagittifolium \N \N \N \N \N 64542 V.arguteserrata Veronica Veronica arguteserrata \N \N \N \N \N 64543 P.luehmannii Pultenaea Pultenaea luehmannii \N \N \N \N \N 64544 \N genus Amblyocarpum \N \N \N \N \N 64545 N.leipoldtii Nemesia Nemesia leipoldtii \N \N \N \N \N 64546 E.nana Eriochloa Eriochloa nana \N \N \N \N \N 64547 O.algeriense Onopordum Onopordum algeriense \N \N \N \N \N 64548 T.villosa Thapsia Thapsia villosa \N \N \N \N \N 64549 A.variabilis Amorphophallus Amorphophallus variabilis \N \N \N \N \N 64550 H.lehmannianum Heracleum Heracleum lehmannianum \N \N \N \N \N 64551 S.bouchei Sobralia Sobralia bouchei \N \N \N \N \N 64552 P.angustata Puccinellia Puccinellia angustata \N \N \N \N \N 64553 M.pusilla Malva Malva pusilla \N \N \N \N \N 64554 P.tibeticum Piptatherum Piptatherum tibeticum \N \N \N \N \N 64555 \N species group Dracomontanum \N \N \N \N \N 64556 M.convolvulacea Mandevilla Mandevilla convolvulacea \N \N \N \N \N 64557 A.lambii Amorphophallus Amorphophallus lambii \N \N \N \N \N 64558 \N subspecies Rhododendron tomentosum subsp. tomentosum \N \N \N \N \N 64559 P.7312 Parthenocissus Parthenocissus cf. vitacea 7312 \N \N \N \N \N 64560 E.myriantha Elaeagia Elaeagia myriantha \N \N \N \N \N 64561 \N genus Bayabusua \N \N \N \N \N 64562 S.palmata Syneilesis Syneilesis palmata \N \N \N \N \N 64563 \N genus Crambe \N \N \N \N \N 64564 S.spinescens Salsola Salsola spinescens \N \N \N \N \N 64565 \N genus Cyrtocarpa \N \N \N \N \N 64566 C.ornatus Calamus Calamus ornatus \N \N \N \N \N 64567 M.herbertii Meliosma Meliosma herbertii \N \N \N \N \N 64568 \N genus Gambelia \N \N \N \N \N 64569 S.tequilense Solanum Solanum tequilense \N \N \N \N \N 64570 \N genus Schmidtia \N \N \N \N \N 64571 M.reticulata Moraea Moraea reticulata \N \N \N \N \N 64572 \N varietas Ceanothus crassifolius var. planus \N \N \N \N \N 64573 \N genus Gaylussacia \N \N \N \N \N 64574 I.sutherlandioides Indigofera Indigofera sutherlandioides \N \N \N \N \N 64575 D.norica Draba Draba norica \N \N \N \N \N 64576 O.caprina Oxalis Oxalis caprina \N \N \N \N \N 64577 B.grandiflora Babiana Babiana grandiflora \N \N \N \N \N 64578 L.vesicarium Lepidium Lepidium vesicarium \N \N \N \N \N 64579 H.adpressum Hypericum Hypericum adpressum \N \N \N \N \N 64580 C.obtusa Calceolaria Calceolaria obtusa \N \N \N \N \N 64581 A.leptopus Asclepias Asclepias leptopus \N \N \N \N \N 64582 T.cenchriformis Tetrapogon Tetrapogon cenchriformis \N \N \N \N \N 64583 A.auriculata Arabis Arabis auriculata \N \N \N \N \N 64584 D.pumilus Desmanthus Desmanthus pumilus \N \N \N \N \N 64585 B.vieillardii Beccariella Beccariella vieillardii \N \N \N \N \N 64586 S.polita Swartzia Swartzia polita \N \N \N \N \N 64587 A.poecilolepis Anthemis Anthemis poecilolepis \N \N \N \N \N 64588 R.tsangii Rubus Rubus tsangii \N \N \N \N \N 64589 W.macrophylla Wilkiea Wilkiea macrophylla Hedycarya macrophylla,Kibara macrophylla,Mollinedia macrophylla \N \N \N \N 64590 P.aubrevillei Polyscias Polyscias aubrevillei \N \N \N \N \N 64591 T.labasii Trachystoma Trachystoma labasii \N \N \N \N \N 64592 D.felicis Djinga Djinga felicis \N \N \N \N \N 64593 S.glauca Suaeda Suaeda glauca \N \N \N \N \N 64594 L.sibirica Lactuca Lactuca sibirica \N \N \N \N \N 64595 \N subspecies Pulsatilla vulgaris subsp. grandis \N \N \N \N \N 64596 P.utahensis Penstemon Penstemon utahensis \N \N \N \N \N 64597 R.chamaecistus Rhodothamnus Rhodothamnus chamaecistus \N \N \N \N \N 64598 C.assamica Crotalaria Crotalaria assamica \N \N \N \N \N 64599 S.chilense Lycopersicon Solanum chilense \N \N \N \N \N 64600 \N genus Aporusa \N \N \N \N \N 64601 P.14 Polyalthia Polyalthia cf. longifolia Mols 14 \N \N \N \N \N 64602 D.minutiflora Dioscorea Dioscorea minutiflora \N \N \N \N \N 64603 C.brevisepalus Colobanthus Colobanthus brevisepalus \N \N \N \N \N 64604 A.valida Arachis Arachis valida \N \N \N \N \N 64605 P.semicordata Parthenocissus Parthenocissus semicordata \N \N \N \N \N 64606 A.talassicun Allium Allium talassicun \N \N \N \N \N 64607 A.undulata Atriplex Atriplex undulata \N \N \N \N \N 64608 A.formosanum Arisaema Arisaema formosanum \N \N \N \N \N 64609 P.sample environmental samples Taxonomy:404793 Pittosporum environmental sample \N \N \N \N \N 64610 S.campanulatum Syzygium Syzygium campanulatum \N \N \N \N \N 64611 B.FS1946 Bulbophyllum Bulbophyllum sp. FS1946 \N \N \N \N \N 64612 O.minus Omphalogramma Omphalogramma minus \N \N \N \N \N 64613 P.chartacea Potameia Potameia chartacea \N \N \N \N \N 64614 C.omeiensis Coptis Coptis omeiensis \N \N \N \N \N 64615 A.preissii Acanthocarpus Acanthocarpus preissii \N \N \N \N \N 64616 F.axillaris Faroa Faroa axillaris \N \N \N \N \N 64617 A.paratsaoko Amomum Amomum paratsaoko \N \N \N \N \N 64618 S.holwayi Simsia Simsia holwayi \N \N \N \N \N 64619 \N subspecies Wurmbea spicata subsp. spicata \N \N \N \N \N 64620 \N subspecies Sambucus racemosa subsp. kamtschatica \N \N \N \N \N 64621 \N varietas Neolitsea aurata var. aurata \N \N \N \N \N 64622 G.mostii Gymnocalycium Gymnocalycium mostii \N \N \N \N \N 64623 I.sessiliflora Indigofera Indigofera sessiliflora \N \N \N \N \N 64624 S.crispa Saussurea Saussurea crispa \N \N \N \N \N 64625 \N genus Perrottetia \N \N \N \N \N 64626 \N varietas Primula pauciflora var. macrocarpa \N \N \N \N \N 64627 C.eitenorum Chamaecrista Chamaecrista eitenorum \N \N \N \N \N 64628 S.austin-smithii Symplocos Symplocos austin-smithii \N \N \N \N \N 64629 \N genus Chondroscaphe \N \N \N \N \N 64630 P.macrocarpa Plantago Plantago macrocarpa seashore plantain \N \N \N \N 64631 G.trojanus Galanthus Galanthus trojanus \N \N \N \N \N 64632 \N genus Mondia \N \N \N \N \N 64633 V.densiflora Valeriana Valeriana densiflora \N \N \N \N \N 64634 \N genus Ocotea \N \N \N \N \N 64635 Y.australis Yucca Yucca australis \N \N \N \N \N 64636 T.acutangula Tristiropsis Tristiropsis acutangula \N \N \N \N \N 64637 C.violaceum Cestrum Cestrum violaceum \N \N \N \N \N 64638 P.lignocarpa Pseuduvaria Pseuduvaria lignocarpa \N \N \N \N \N 64639 \N genus Isonema \N \N \N \N \N 64640 C.tagananensis Cheirolophus Cheirolophus tagananensis \N \N \N \N \N 64641 O.coccineum Oxypetalum Oxypetalum coccineum \N \N \N \N \N 64642 F.chinensis Fraxinus Fraxinus chinensis \N \N \N \N \N 64643 M.nuttallii Minuartia Minuartia nuttallii \N \N \N \N \N 64644 \N genus Hydnophytum \N \N \N \N \N 64645 C.dasycarpa Carex Carex dasycarpa \N \N \N \N \N 64646 S.mahagoni Swietenia Swietenia mahagoni \N \N \N \N \N 64647 R.megacarpa Ruppia Ruppia megacarpa \N \N \N \N \N 64648 S.1025 Suaeda Suaeda sp. Schuetze 1025 \N \N \N \N \N 64649 \N subspecies Helictotrichon setaceum subsp. setaceum \N \N \N \N \N 64650 S.orientalis Serapias Serapias orientalis \N \N \N \N \N 64651 L.compacta Leipoldtia Leipoldtia compacta \N \N \N \N \N 64652 R.cretica Ricotia Ricotia cretica \N \N \N \N \N 64653 D.viscidula Dionysia Dionysia viscidula \N \N \N \N \N 64654 A.ANDSP57 Andropogon Andropogon sp. ANDSP57 \N \N \N \N \N 64655 F.platypoda Ficus Ficus platypoda \N \N \N \N \N 64656 E.calcarata Eltroplectris Eltroplectris calcarata \N \N \N \N \N 64657 A.flavovirens Astragalus Astragalus flavovirens \N \N \N \N \N 64658 L.hechiensis Lagarosolen Lagarosolen hechiensis \N \N \N \N \N 64659 P.ascendens Pseudoselago Pseudoselago ascendens \N \N \N \N \N 64660 M.attenuata Manihot Manihot attenuata \N \N \N \N \N 64661 T.guthriei Theilera Theilera guthriei \N \N \N \N \N 64662 D.japonica Dioscorea Dioscorea japonica Japanese yam,yama-no-imo \N \N \N \N 64663 P.leptostachyus Phaseolus Phaseolus leptostachyus \N \N \N \N \N 64664 \N genus Quercus \N \N \N \N \N 64665 \N genus Vestia \N \N \N \N \N 64666 H.5815 Hollrungia Hollrungia sp. Gray 5815 \N \N \N \N \N 64667 A.ruckeri Anguloa Anguloa x ruckeri \N \N \N \N \N 64668 \N genus Lopholaena \N \N \N \N \N 64669 H.rotundifolia Hydrocotyle Hydrocotyle rotundifolia \N \N \N \N \N 64670 P.P097 Physalis Physalis sp. P097 \N \N \N \N \N 64671 C.ventricosum Ceroxylon Ceroxylon ventricosum \N \N \N \N \N 64672 A.bracteatus Ananas Ananas bracteatus red pineapple,wild pineapple \N \N \N \N 64673 H.uniflora Halerpestes Halerpestes uniflora \N \N \N \N \N 64674 T.turfosa Tetrarrhena Tetrarrhena turfosa \N \N \N \N \N 64675 M.floridana Mentzelia Mentzelia floridana \N \N \N \N \N 64676 I.marginata Ipomoea Ipomoea marginata \N \N \N \N \N 64677 T.violiflora Tecophilaea Tecophilaea violiflora \N \N \N \N \N 64678 F.guyanensis Forsteronia Forsteronia guyanensis \N \N \N \N \N 64679 G.mahranus Gymnocarpos Gymnocarpos mahranus \N \N \N \N \N 64680 I.heterantha Indigofera Indigofera heterantha \N \N \N \N \N 64681 O.alpina Ourisia Ourisia alpina \N \N \N \N \N 64682 E.tetraquetra Euphrasia Euphrasia tetraquetra maritime eyebright \N \N \N \N 64683 P.sublyrata Perezia Perezia sublyrata \N \N \N \N \N 64684 T.micranthum Trichostema Trichostema micranthum smallflower bluecurls \N \N \N \N 64685 C.hermonis Cousinia Cousinia hermonis \N \N \N \N \N 64686 N.arcuata Nassella Nassella arcuata \N \N \N \N \N 64687 P.gemmifera Primula Primula gemmifera \N \N \N \N \N 64688 L.oppositifolia Lacunaria Lacunaria oppositifolia \N \N \N \N \N 64689 B.heterophylla Billardiera Billardiera heterophylla \N \N \N \N \N 64690 B.perrieri Bussea Bussea perrieri \N \N \N \N \N 64691 H.macrophylla Hillia Hillia macrophylla \N \N \N \N \N 64692 \N subspecies Delphinium hesperium subsp. pallescens \N \N \N \N \N 64693 T.CH_E108Smono Triticum Triticum sp. CH_E108Smono \N \N \N \N \N 64694 J.boissieri Jacobaea Jacobaea boissieri \N \N \N \N \N 64695 E.ecbatanus Echinops Echinops ecbatanus \N \N \N \N \N 64696 N.texanus Nuttallanthus Nuttallanthus texanus Texas toadflax \N \N \N \N 64697 C.cultivar Cymbidium Cymbidium hybrid cultivar \N \N \N \N \N 64698 T.bessarabicum Taraxacum Taraxacum bessarabicum \N \N \N \N \N 64699 T.repens Trifolium Trifolium repens creeping white clover,white clover \N \N \N \N 64700 M.brevifilis Mitostemma Mitostemma brevifilis \N \N \N \N \N 64701 S.herbacea Salix Salix herbacea dwarf willow \N \N \N \N 64702 A.oophorus Astragalus Astragalus oophorus \N \N \N \N \N 64703 \N genus Buckleya \N \N \N \N \N 64704 G.elegans Gomphrena Gomphrena elegans \N \N \N \N \N 64705 A.brasiliensis Axonopus Axonopus brasiliensis \N \N \N \N \N 64706 A.hebeclada Acacia Acacia hebeclada \N \N \N \N \N 64707 \N subspecies Colchicum vernum subsp. vernum \N \N \N \N \N 64708 \N varietas Hydrophyllum capitatum var. capitatum \N \N \N \N \N 64709 C.268 Cremastosperma Cremastosperma sp. Chatrou 268 \N \N \N \N \N 64710 \N genus Magadania \N \N \N \N \N 64711 P.violascens Paphiopedilum Paphiopedilum violascens \N \N \N \N \N 64712 A.pamirica Atriplex Atriplex pamirica \N \N \N \N \N 64713 C.taiwaniana Clematis Clematis taiwaniana \N \N \N \N \N 64714 L.laureolum Leucadendron Leucadendron laureolum \N \N \N \N \N 64715 M.brittenniae Moraea Moraea brittenniae \N \N \N \N \N 64716 B.inophylla Baloghia Baloghia inophylla \N \N \N \N \N 64717 B.perii Bulbophyllum Bulbophyllum perii \N \N \N \N \N 64718 H.ewersii Hylotelephium Hylotelephium ewersii \N \N \N \N \N 64719 P.kikuyuensis Polyscias Polyscias kikuyuensis \N \N \N \N \N 64720 S.volkensii Satyrium Satyrium volkensii \N \N \N \N \N 64721 B.fallax Bunium Bunium fallax \N \N \N \N \N 64722 D.brevifolium Dissanthelium Dissanthelium brevifolium \N \N \N \N \N 64723 M.laricina Myrcia Myrcia laricina \N \N \N \N \N 64724 L.littorea Lumnitzera Lumnitzera littorea \N \N \N \N \N 64725 D.polyantha Drimia Drimia polyantha \N \N \N \N \N 64726 T.hondoensis Trollius Trollius hondoensis \N \N \N \N \N 64727 M.nigra Morus Morus nigra \N \N \N \N \N 64728 I.subabortiva Impatiens Impatiens subabortiva \N \N \N \N \N 64729 S.pugiunculiferum Solanum Solanum pugiunculiferum \N \N \N \N \N 64730 P.imminuta Phyllostegia Phyllostegia imminuta \N \N \N \N \N 64731 D.grandibractea Diplatia Diplatia grandibractea \N \N \N \N \N 64732 \N no rank Heldreichia bupleurifolia ssp. KM-2009a \N \N \N \N \N 64733 P.plebeium Polygonum Polygonum plebeium \N \N \N \N \N 64734 C.dracomontana Cliffortia Cliffortia dracomontana \N \N \N \N \N 64735 \N genus Rossioglossum \N \N \N \N \N 64736 P.aristatum Pelargonium Pelargonium aristatum \N \N \N \N \N 64737 \N genus Cephalocereus \N \N \N \N \N 64738 S.vitiensis Schefflera Schefflera vitiensis \N \N \N \N \N 64739 C.sanctae-clarae Chenopodium Chenopodium sanctae-clarae \N \N \N \N \N 64740 L.2241 Lupinus Lupinus sp. CEH 2241 \N \N \N \N \N 64741 P.tashiroi Pinanga Pinanga tashiroi \N \N \N \N \N 64742 F.summilusitana Festuca Festuca summilusitana \N \N \N \N \N 64743 R.acaulis Ranunculus Ranunculus acaulis \N \N \N \N \N 64744 A.macedonica Athamanta Athamanta macedonica \N \N \N \N \N 64745 C.turkmena Cleome Cleome turkmena \N \N \N \N \N 64746 G.nutans Gentiana Gentiana nutans \N \N \N \N \N 64747 C.occidentalis Calyptronoma Calyptronoma occidentalis \N \N \N \N \N 64748 B.sp. Brassica Brassica sp. \N \N \N \N \N 64749 D.argentina Descurainia Descurainia argentina \N \N \N \N \N 64750 D.pentandra Dapania Dapania pentandra \N \N \N \N \N 64751 C.multiflora Cleobulia Cleobulia multiflora \N \N \N \N \N 64752 C.schimpffii Columnea Columnea schimpffii \N \N \N \N \N 64753 A.canariense Aeonium Aeonium canariense \N \N \N \N \N 64754 R.chalepensis Ruta Ruta chalepensis \N \N \N \N \N 64755 \N genus Elytropappus \N \N \N \N \N 64756 O.fimbriata Orchidantha Orchidantha fimbriata \N \N \N \N \N 64757 \N subspecies Conostylis aculeata subsp. breviflora \N \N \N \N \N 64758 A.chrysochlorus Astragalus Astragalus chrysochlorus \N \N \N \N \N 64759 \N genus Adiscanthus \N \N \N \N \N 64760 \N subspecies Maireana tomentosa subsp. tomentosa \N \N \N \N \N 64761 \N subspecies Astrantia major subsp. major \N \N \N \N \N 64762 \N genus Hydrophilus \N \N \N \N \N 64763 O.basalticus Oligochaetochilus Oligochaetochilus basalticus \N \N \N \N \N 64764 A.smeathmannii Acridocarpus Acridocarpus smeathmannii \N \N \N \N \N 64765 C.rubrum Chenopodium Chenopodium rubrum pigweed,red goosefoot \N \N \N \N 64766 V.metiti Veitchia Veitchia metiti \N \N \N \N \N 64767 C.enysii Carex Carex enysii \N \N \N \N \N 64768 O.minarum Ocotea Ocotea minarum \N \N \N \N \N 64769 \N genus Lathyrus \N \N \N \N \N 64770 P.drakensbergensis Passerina Passerina drakensbergensis \N \N \N \N \N 64771 A.elegans Austromatthaea Austromatthaea elegans \N \N \N \N \N 64772 O.macrocarpa Oxalis Oxalis macrocarpa \N \N \N \N \N 64773 \N genus Ischnolepis \N \N \N \N \N 64774 G.laeta Globba Globba laeta \N \N \N \N \N 64775 T.stans Tecoma Tecoma stans \N \N \N \N \N 64776 S.macrophylla Stemmadenia Stemmadenia macrophylla \N \N \N \N \N 64777 C.orangeanum Cynanchum Cynanchum orangeanum \N \N \N \N \N 64778 B.sandersonii Basananthe Basananthe sandersonii \N \N \N \N \N 64779 S.1039 Schismatoclada Schismatoclada sp. Davis 1039 \N \N \N \N \N 64780 S.hastatus Senecio Senecio hastatus \N \N \N \N \N 64781 P.SH-2010 Peperomia Peperomia sp. SH-2010 \N \N \N \N \N 64782 I.guineensis Ixora Ixora guineensis \N \N \N \N \N 64783 P.lewisii Philadelphus Philadelphus lewisii \N \N \N \N \N 64784 \N subspecies Cordylanthus rigidus subsp. rigidus \N \N \N \N \N 64785 A.LHY-2011 Amaranthus Amaranthus sp. LHY-2011 \N \N \N \N \N 64786 P.chlorantha Platanthera Platanthera chlorantha \N \N \N \N \N 64787 S.samaniana Sasa Sasa samaniana \N \N \N \N \N 64788 A.codonocarpa Atriplex Atriplex codonocarpa \N \N \N \N \N 64789 P.dunniana Pedicularis Pedicularis dunniana \N \N \N \N \N 64790 M.polzii Matucana Matucana polzii \N \N \N \N \N 64791 K.manika Knoxia Knoxia manika \N \N \N \N \N 64792 \N subspecies Torilis arvensis subsp. arvensis \N \N \N \N \N 64793 F.sieberiana Fimbristylis Fimbristylis sieberiana \N \N \N \N \N 64794 P.batanensis Pinanga Pinanga batanensis \N \N \N \N \N 64795 S.rehmannii Sebaea Sebaea rehmannii \N \N \N \N \N 64796 M.hystricosa Mimosa Mimosa hystricosa \N \N \N \N \N 64797 B.loricata Buddleja Buddleja loricata \N \N \N \N \N 64798 D.coccinea Drymonia Drymonia coccinea \N \N \N \N \N 64799 O.aurata Osbeckia Osbeckia aurata \N \N \N \N \N 64800 \N varietas Pinguicula jackii var. parviflora \N \N \N \N \N 64801 \N genus Chrysopsis \N \N \N \N \N 64802 F.aegaea Filago Filago aegaea \N \N \N \N \N 64803 \N subspecies Ranunculus hyperboreus subsp. trictenatus \N \N \N \N \N 64804 L.mlanjeanus Lotus Lotus mlanjeanus \N \N \N \N \N 64805 H.oligocephalum Helichrysum Helichrysum oligocephalum \N \N \N \N \N 64806 \N varietas Santalum insulare var. raiateense \N \N \N \N \N 64807 \N genus Hymenonema \N \N \N \N \N 64808 \N genus Ferula \N \N \N \N \N 64809 G.hybridus Geropogon Geropogon hybridus \N \N \N \N \N 64810 A.serrata Adenopeltis Adenopeltis serrata \N \N \N \N \N 64811 \N genus Tatianyx \N \N \N \N \N 64812 A.texana Allolepis Allolepis texana \N \N \N \N \N 64813 A.8801 Aponogeton Aponogeton sp. Jacobs 8801 \N \N \N \N \N 64814 C.spathicalyx Calycosiphonia Calycosiphonia spathicalyx \N \N \N \N \N 64815 C.aidae Calamus Calamus aidae \N \N \N \N \N 64816 P.peruviana Physalis Physalis peruviana Cape-gooseberry,goldenberry,gooseberry-tomato \N \N \N \N 64817 B.christianeae Brachystelma Brachystelma christianeae \N \N \N \N \N 64818 \N genus Haplocoelum \N \N \N \N \N 64819 T.morrisii Thrinax Thrinax morrisii Key thatch palm,brittle-thatch \N \N \N \N 64820 F.parryi Frasera Frasera parryi \N \N \N \N \N 64821 T.sagittatum Thelypodium Thelypodium sagittatum \N \N \N \N \N 64822 \N subspecies Polyachyrus poeppigii subsp. poeppigii \N \N \N \N \N 64823 R.pedemontanus Rubus Rubus pedemontanus \N \N \N \N \N 64824 \N subspecies Primula obconica subsp. werringtonensis \N \N \N \N \N 64825 T.xochipalensis Thompsonella Thompsonella xochipalensis \N \N \N \N \N 64826 A.stomarrhena Astroloma Astroloma stomarrhena \N \N \N \N \N 64827 \N varietas Acorus calamus var. angustatus \N \N \N \N \N 64828 P.antidotale Panicum Panicum antidotale \N \N \N \N \N 64829 P.alba Plumeria Plumeria alba \N \N \N \N \N 64830 \N varietas Penstemon virgatus var. asa-grayii \N \N \N \N \N 64831 B.prionotes Banksia Banksia prionotes \N \N \N \N \N 64832 \N varietas Psorothamnus arborescens var. minutifolius Mojave indigobush \N \N \N \N 64833 V.reuterana Veronica Veronica reuterana \N \N \N \N \N 64834 B.graminea Boopis Boopis graminea \N \N \N \N \N 64835 B.cabrerae Berberis Berberis cabrerae \N \N \N \N \N 64836 M.citrifolia Myrcia Myrcia citrifolia \N \N \N \N \N 64837 V.japonica Vitis Vitis japonica \N \N \N \N \N 64838 S.julianae Syringa Syringa julianae \N \N \N \N \N 64839 C.rudis Coddia Coddia rudis \N \N \N \N \N 64840 P.pauciflora Pagamea Pagamea pauciflora \N \N \N \N \N 64841 O.trinasutum Oncidium Oncidium trinasutum \N \N \N \N \N 64842 L.acuminata Loasa Loasa acuminata \N \N \N \N \N 64843 M.2443 Maxillaria Maxillaria cf. wercklei Whitten 2443 \N \N \N \N \N 64844 D.odorata Duguetia Duguetia odorata \N \N \N \N \N 64845 D.thinicola Dicerandra Dicerandra thinicola \N \N \N \N \N 64846 C.MG353 Clusia Clusia sp. MG353 \N \N \N \N \N 64847 R.crinigerum Rhododendron Rhododendron crinigerum \N \N \N \N \N 64848 F.CEH-2010 Fimbristylis Fimbristylis sp. CEH-2010 \N \N \N \N \N 64849 \N genus Rhus \N \N \N \N \N 64850 S.ochranthum Solanum Solanum ochranthum \N \N \N \N \N 64851 \N subspecies Rhipsalis baccifera subsp. shaferi \N \N \N \N \N 64852 \N subspecies Hordeum marinum subsp. marinum \N \N \N \N \N 64853 L.multiflora Luzula Luzula multiflora \N \N \N \N \N 64854 D.balansae Delphinium Delphinium balansae \N \N \N \N \N 64855 E.subfoliata Eleocharis Eleocharis subfoliata \N \N \N \N \N 64856 A.acutiflorum Allium Allium acutiflorum \N \N \N \N \N 64857 \N subspecies Taeniatherum caput-medusae subsp. caput-medusae \N \N \N \N \N 64858 W.annua Willkommia Willkommia annua \N \N \N \N \N 64859 H.DR3_7FR4 Hedycarya Hedycarya aff. arborea DR3_7FR4 \N \N \N \N \N 64860 W.coccinea Wrightia Wrightia coccinea \N \N \N \N \N 64861 B.crenata Bartsia Bartsia crenata \N \N \N \N \N 64862 \N genus Narduroides \N \N \N \N \N 64863 P.wallichii Polypleurum Polypleurum wallichii \N \N \N \N \N 64864 T.macrocalyx Thibaudia Thibaudia macrocalyx \N \N \N \N \N 64865 C.darialica Campanula Campanula darialica \N \N \N \N \N 64866 F.aestivalis Fimbristylis Fimbristylis aestivalis \N \N \N \N \N 64867 \N genus Raphiostylis \N \N \N \N \N 64868 N.sedifolia Nolana Nolana sedifolia \N \N \N \N \N 64869 A.nayaritensis Achimenes Achimenes nayaritensis \N \N \N \N \N 64870 G.lobata Gurania Gurania lobata \N \N \N \N \N 64871 S.grandis Selenia Selenia grandis \N \N \N \N \N 64872 C.japonica Citrus Citrus japonica marumi kumquat,meiwa kumquat \N \N \N \N 64873 P.spartioides Prunus Prunus spartioides \N \N \N \N \N 64874 C.cerastoides Cerastium Cerastium cerastoides \N \N \N \N \N 64875 M.diffusum Melampodium Melampodium diffusum \N \N \N \N \N 64876 C.trinitensis Clidemia Clidemia trinitensis \N \N \N \N \N 64877 \N genus Duthiea \N \N \N \N \N 64878 P.charlesworthii Paphiopedilum Paphiopedilum charlesworthii \N \N \N \N \N 64879 S.s.n. Stirlingia Stirlingia sp. Stace s.n. \N \N \N \N \N 64880 D.stimulans Dendrocnide Dendrocnide stimulans \N \N \N \N \N 64881 C.ogoouense Chrysophyllum Chrysophyllum ogoouense \N \N \N \N \N 64882 G.paraguayensis Gouinia Gouinia paraguayensis \N \N \N \N \N 64883 C.cyrtanthiflora Clivia Clivia x cyrtanthiflora \N \N \N \N \N 64884 D.cultivar x Doritaenopsis Doritis pulcherrima x Phalaenopsis hybrid cultivar \N \N \N \N \N 64885 O.lateriflora Oxalis Oxalis lateriflora \N \N \N \N \N 64886 H.centrodes Hemimeris Hemimeris centrodes \N \N \N \N \N 64887 E.ocymoidea Euphorbia Euphorbia ocymoidea \N \N \N \N \N 64888 C.SS-2008 Cuscuta Cuscuta sp. SS-2008 \N \N \N \N \N 64889 C.chrysanthus Crocus Crocus chrysanthus \N \N \N \N \N 64890 C.pseudomagnifica Chamaepentas Chamaepentas pseudomagnifica \N \N \N \N \N 64891 A.monticola Alocasia Alocasia monticola \N \N \N \N \N 64892 C.heterophyllus Cistus Cistus heterophyllus \N \N \N \N \N 64893 M.lazulina Merwilla Merwilla lazulina \N \N \N \N \N 64894 C.albicans Cyphanthera Cyphanthera albicans \N \N \N \N \N 64895 \N subspecies Erophaca baetica subsp. baetica \N \N \N \N \N 64896 \N genus Cordyla \N \N \N \N \N 64897 P.pseudisachne Panicum Panicum pseudisachne \N \N \N \N \N 64898 E.utahensis Erigeron Erigeron utahensis \N \N \N \N \N 64899 A.023632 Argostemma Argostemma sp. 023632 \N \N \N \N \N 64900 P.subtilis Polygala Polygala subtilis \N \N \N \N \N 64901 H.ternum Hypericum Hypericum ternum \N \N \N \N \N 64902 M.maingayi Macropanax Macropanax maingayi \N \N \N \N \N 64903 D.foliacea Drymonia Drymonia foliacea \N \N \N \N \N 64904 C.torticarpa Cleome Cleome torticarpa \N \N \N \N \N 64905 \N genus Crepidiastrum \N \N \N \N \N 64906 C.sartorii Chamaedorea Chamaedorea sartorii \N \N \N \N \N 64907 \N genus Tilingia \N \N \N \N \N 64908 \N family Neuradaceae \N \N \N \N \N 64909 E.senticosus Eleutherococcus Eleutherococcus senticosus \N \N \N \N \N 64910 B.venezuelana Bifrenaria Bifrenaria venezuelana \N \N \N \N \N 64911 C.JJD-2003 Cologania Cologania sp. JJD-2003 \N \N \N \N \N 64912 G.madagascariensis Gnidia Gnidia madagascariensis \N \N \N \N \N 64913 P.sisaketense Polypleurum Polypleurum sisaketense \N \N \N \N \N 64914 N.langsdorffii Nicotiana Nicotiana langsdorffii fumo-bravo \N \N \N \N 64915 C.mongolicum Calligonum Calligonum mongolicum \N \N \N \N \N 64916 M.vegeta Moraea Moraea vegeta \N \N \N \N \N 64917 P.scabra Protea Protea scabra \N \N \N \N \N 64918 R.alnifolia Rhamnus Rhamnus alnifolia \N \N \N \N \N 64919 M.rivae Moringa Moringa rivae \N \N \N \N \N 64920 H.LW-2011 Hoya Hoya sp. 2 LW-2011 \N \N \N \N \N 64921 L.oligophylla Lobelia Lobelia oligophylla \N \N \N \N \N 64922 C.abbreviata Cassiope Cassiope abbreviata \N \N \N \N \N 64923 I.rubescens Isodon Isodon rubescens \N \N \N \N \N 64924 S.dimartinoi Scilla Scilla dimartinoi \N \N \N \N \N 64925 S.gracilis Scaevola Scaevola gracilis \N \N \N \N \N 64926 D.acerosum Dracophyllum Dracophyllum acerosum \N \N \N \N \N 64930 C.fowerakeri Coprosma Coprosma fowerakeri \N \N \N \N \N 64931 O.acuminata Otatea Otatea acuminata \N \N \N \N \N 64932 E.s.n. Elleanthus Elleanthus cf. graminifolius Szlachetko s.n. \N \N \N \N \N 64933 S.lanceolata Scrophularia Scrophularia lanceolata \N \N \N \N \N 64934 S.angulatus Senecio Senecio angulatus \N \N \N \N \N 64935 L.solenifera Leandra Leandra solenifera \N \N \N \N \N 64936 \N genus Comospermum \N \N \N \N \N 64937 P.curassavica Physalis Physalis curassavica \N \N \N \N \N 64938 O.JTO-2010b unclassified Orchidaceae Orchidaceae sp. JTO-2010b \N \N \N \N \N 64939 A.admirabilis Achimenes Achimenes admirabilis \N \N \N \N \N 64940 M.pauciflora Muraltia Muraltia pauciflora \N \N \N \N \N 64941 \N genus Bryanthus \N \N \N \N \N 64942 \N genus Paraskevia \N \N \N \N \N 64943 M.magisteriana Minaria Minaria magisteriana \N \N \N \N \N 64944 C.septemcostata Coelogyne Coelogyne septemcostata \N \N \N \N \N 64945 D.vernicosa Dickasonia Dickasonia vernicosa \N \N \N \N \N 64946 C.huicholiana Carlowrightia Carlowrightia huicholiana \N \N \N \N \N 64947 \N genus Belencita \N \N \N \N \N 64948 N.macfarlanei Nepenthes Nepenthes macfarlanei \N \N \N \N \N 64949 M.flexuosa Malcolmia Malcolmia flexuosa \N \N \N \N \N 64950 P.lentiscus Pistacia Pistacia lentiscus mastic \N \N \N \N 64951 A.bravoanus Ariocarpus Ariocarpus bravoanus \N \N \N \N \N 64952 A.olaboensis Adenia Adenia olaboensis \N \N \N \N \N 64953 H.scottiana Hornstedtia Hornstedtia scottiana \N \N \N \N \N 64954 C.robustum Commidendrum Commidendrum robustum \N \N \N \N \N 64955 P.laevis Pseudolmedia Pseudolmedia laevis \N \N \N \N \N 64956 C.sieboldii Cinnamomum Cinnamomum sieboldii \N \N \N \N \N 64957 P.angustifolius Phyllanthus Phyllanthus angustifolius \N \N \N \N \N 64958 C.wenshanensis Cissus Cissus wenshanensis \N \N \N \N \N 64959 O.camelopardalis Oxalis Oxalis camelopardalis \N \N \N \N \N 64960 B.macrophylla Bistorta Bistorta macrophylla \N \N \N \N \N 64961 G.rhodantherum Gymnocalycium Gymnocalycium rhodantherum \N \N \N \N \N 64962 E.panamense Erythroxylum Erythroxylum panamense \N \N \N \N \N 64963 \N genus Bouvardia \N \N \N \N \N 64964 S.sachalinensis Salix Salix sachalinensis \N \N \N \N \N 64965 P.kiushianum Polemonium Polemonium kiushianum \N \N \N \N \N 64966 F.villosa Fatoua Fatoua villosa \N \N \N \N \N 64967 \N varietas Lupinus albus var. albus \N \N \N \N \N 64968 L.matthewsii Loeseliastrum Loeseliastrum matthewsii \N \N \N \N \N 64969 E.rubella Euphorbia Euphorbia rubella \N \N \N \N \N 64970 P.nudigemma Persea Persea nudigemma \N \N \N \N \N 64971 C.densifolia Caraipa Caraipa densifolia \N \N \N \N \N 64972 \N subspecies Ixeridium dentatum subsp. dentatum \N \N \N \N \N 64973 S.pectinata Spartina Spartina pectinata prairie cordgrass \N \N \N \N 64974 A.boeticus Astragalus Astragalus boeticus \N \N \N \N \N 64975 M.cumingii Montiopsis Montiopsis cumingii \N \N \N \N \N 64976 C.hircinum Chenopodium Chenopodium hircinum \N \N \N \N \N 64977 E.andreae Euryblema Euryblema andreae \N \N \N \N \N 64978 P.dulcis Phyla Phyla dulcis \N \N \N \N \N 64979 C.gronovii Cuscuta Cuscuta gronovii swamp dodder \N \N \N \N 64980 E.s.n. Elymus Elymus sp. Kellogg s.n. \N \N \N \N \N 64981 T.revoluta Tromotriche Tromotriche revoluta \N \N \N \N \N 64982 R.advena Rhodophiala Rhodophiala advena \N \N \N \N \N 64983 C.30571 Capparis Capparis sp. 1 Iltis & Ruiz 30571 \N \N \N \N \N 64984 G.lojaconoi Gagea Gagea lojaconoi \N \N \N \N \N 64985 S.muricata Senegalia Senegalia muricata \N \N \N \N \N 64986 S.johnsonii Syzygium Syzygium johnsonii \N \N \N \N \N 64987 M.zublerae Mammillaria Mammillaria zublerae \N \N \N \N \N 64988 S.parksii Spiranthes Spiranthes parksii \N \N \N \N \N 64989 C.sicula Cachrys Cachrys sicula \N \N \N \N \N 64990 P.iocastum Pelargonium Pelargonium iocastum \N \N \N \N \N 64991 E.mexicanum Exostema Exostema mexicanum \N \N \N \N \N 64992 \N genus Arundoclaytonia \N \N \N \N \N 64993 C.hispanicus Carduncellus Carduncellus hispanicus \N \N \N \N \N 64994 G.hirsutula Grindelia Grindelia hirsutula \N \N \N \N \N 64995 H.maxima Hepatica Hepatica maxima \N \N \N \N \N 64996 E.bombensis Euphorbia Euphorbia bombensis \N \N \N \N \N 64997 E.patrisii Eugenia Eugenia patrisii \N \N \N \N \N 64998 H.abbreviatum Heliotropium Heliotropium abbreviatum \N \N \N \N \N 64999 P.paysoniorum Penstemon Penstemon paysoniorum \N \N \N \N \N 65000 L.oleraceum Lepidium Lepidium oleraceum \N \N \N \N \N 65001 S.longipes Sida Sida longipes \N \N \N \N \N 65002 \N genus Pogonophora \N \N \N \N \N 65003 M.calcicola Macaranga Macaranga calcicola \N \N \N \N \N 65004 I.napoensis Impatiens Impatiens napoensis \N \N \N \N \N 65005 S.kerneri Salsola Salsola kerneri \N \N \N \N \N 65006 C.ballyana Ceropegia Ceropegia ballyana \N \N \N \N \N 65007 A.biebersteinii Achillea Achillea biebersteinii \N \N \N \N \N 65008 S.9.1 Saxifraga Saxifraga sp. 9.1 \N \N \N \N \N 65009 C.lycurus Carex Carex leptosaccus x Carex lycurus \N \N \N \N \N 65010 \N genus Boerhavia \N \N \N \N \N 65011 C.corymbosus Charianthus Charianthus corymbosus \N \N \N \N \N 65012 F.SH-2010 Freycinetia Freycinetia sp. SH-2010 \N \N \N \N \N 65013 I.major Isochilus Isochilus major \N \N \N \N \N 65014 C.(Garibaldi) Craspedia Craspedia sp. (Garibaldi) \N \N \N \N \N 65015 C.coccineum Capsicum Capsicum coccineum \N \N \N \N \N 65016 \N subspecies Homalomena erythropus subsp. allenii \N \N \N \N \N 65017 D.0872 Diastema Diastema sp. MP 0872 \N \N \N \N \N 65018 \N genus Clethra \N \N \N \N \N 65019 G.valsecchiae Genista Genista valsecchiae \N \N \N \N \N 65020 P.trifida Pelucha Pelucha trifida \N \N \N \N \N 65021 W.alberti Wikstroemia Wikstroemia alberti \N \N \N \N \N 65022 D.abruptum Diplodium Diplodium abruptum \N \N \N \N \N 65023 P.yunnanensis Primula Primula yunnanensis \N \N \N \N \N 65024 \N genus Liatris \N \N \N \N \N 65025 P.agrestinum Polygonum Polygonum agrestinum \N \N \N \N \N 65026 A.argyrophyllus Adenocarpus Adenocarpus argyrophyllus \N \N \N \N \N 65027 C.waldeniae Camellia Camellia waldeniae \N \N \N \N \N 65028 F.pedatifolia Fevillea Fevillea pedatifolia \N \N \N \N \N 65029 I.tristis Indigofera Indigofera tristis \N \N \N \N \N 65030 P.clandestina Patosia Patosia clandestina \N \N \N \N \N 65031 O.balansae Oxypetalum Oxypetalum balansae \N \N \N \N \N 65032 \N genus Doellia \N \N \N \N \N 65033 M.corallina Microcoelia Microcoelia corallina \N \N \N \N \N 65034 C.compressa Cyrtandra Cyrtandra compressa \N \N \N \N \N 65035 \N genus Oteiza \N \N \N \N \N 65036 \N genus Duvaliandra \N \N \N \N \N 65037 S.Island' Strobilanthes Strobilanthes sp. 'Hongkong Island' \N \N \N \N \N 65038 A.spectabilis Aglaia Aglaia spectabilis \N \N \N \N \N 65039 C.pardinum Cyrtochilum Cyrtochilum pardinum \N \N \N \N \N 65040 H.domingense Hedyosmum Hedyosmum domingense \N \N \N \N \N 65041 A.aquatica Alpinia Alpinia aquatica \N \N \N \N \N 65042 A.quinquefolia Anemone Anemone quinquefolia \N \N \N \N \N 65043 S.viscosa Stylosanthes Stylosanthes viscosa \N \N \N \N \N 65044 B.bulbocastanum Bunium Bunium bulbocastanum black zira,earthnut \N \N \N \N 65045 R.schimperii Robeschia Robeschia schimperii \N \N \N \N \N 65046 \N genus Braemia \N \N \N \N \N 65047 M.ampliatus Mimulus Mimulus ampliatus \N \N \N \N \N 65048 A.americana Anaphyllopsis Anaphyllopsis americana \N \N \N \N \N 65049 B.malabaricum Bombax Bombax malabaricum \N \N \N \N \N 65050 S.tuberosum Solanum Solanum tuberosum potato,potatoes \N \N \N \N 65051 P.japonicus Phragmites Phragmites japonicus \N \N \N \N \N 65052 A.versicolor Astragalus Astragalus versicolor \N \N \N \N \N 65053 A.argyrophyllus Adenocarpus Adenocarpus hispanicus x Adenocarpus argyrophyllus \N \N \N \N \N 65054 C.stenocarpa Caiophora Caiophora stenocarpa \N \N \N \N \N 65055 C.praeandinum Camptosema Camptosema praeandinum \N \N \N \N \N 65056 S.39-01 Sphedamnocarpus Sphedamnocarpus sp. Davis 39-01 \N \N \N \N \N 65057 C.DJW-2004 Cyanotis Cyanotis sp. DJW-2004 \N \N \N \N \N 65058 D.lindleyi Dendrobium Dendrobium lindleyi \N \N \N \N \N 65059 S.chrysophylla Sophora Sophora chrysophylla mamane \N \N \N \N 65060 M.crithmifolius Malacocarpus Malacocarpus crithmifolius \N \N \N \N \N 65061 M.sousae Mimosa Mimosa sousae \N \N \N \N \N 65062 S.heinianum Solanum Solanum heinianum \N \N \N \N \N 65063 D.verticillatum Dactylopetalum Dactylopetalum verticillatum \N \N \N \N \N 65064 C.riparia Cuatresia Cuatresia riparia \N \N \N \N \N 65065 C.chlorostachys Crucianella Crucianella chlorostachys \N \N \N \N \N 65066 S.durissima Securinega Securinega durissima \N \N \N \N \N 65067 T.densiflorus Timonius Timonius densiflorus \N \N \N \N \N 65068 C.longifolium Calophyllum Calophyllum longifolium \N \N \N \N \N 65069 A.buchetii Arophyton Arophyton buchetii \N \N \N \N \N 65070 N.riograndensis Nierembergia Nierembergia riograndensis \N \N \N \N \N 65071 S.montana Scaevola Scaevola montana \N \N \N \N \N 65072 B.onobromoides Berkheya Berkheya onobromoides \N \N \N \N \N 65073 C.GF-2011 Chusquea Chusquea aff. serrulata GF-2011 \N \N \N \N \N 65074 L.rubinervis Lysimachia Lysimachia rubinervis \N \N \N \N \N 65075 \N genus Microepidendrum \N \N \N \N \N 65076 A.desmantha Aristida Aristida desmantha \N \N \N \N \N 65077 H.austrocaledonica Hachettea Hachettea austrocaledonica \N \N \N \N \N 65078 U.holosericea Urochloa Urochloa holosericea \N \N \N \N \N 65079 \N subspecies Gazania krebsiana subsp. serrulata \N \N \N \N \N 65080 B.elegans Brodiaea Brodiaea elegans \N \N \N \N \N 65081 R.pseudomillefoliatus Ranunculus Ranunculus pseudomillefoliatus \N \N \N \N \N 65082 F.racemosa Fagraea Fagraea racemosa \N \N \N \N \N 65083 C.microcarpa Chimarrhis Chimarrhis microcarpa \N \N \N \N \N 65084 R.hyugaense Rhododendron Rhododendron hyugaense \N \N \N \N \N 65085 \N subspecies Kohautia caespitosa subsp. amaniensis \N \N \N \N \N 65086 W.virgata Wahlenbergia Wahlenbergia virgata \N \N \N \N \N 65087 G.oblonga Greenea Greenea oblonga \N \N \N \N \N 65088 \N subtribe Microseridinae \N \N \N \N \N 65089 S.umbrosa Scrophularia Scrophularia umbrosa \N \N \N \N \N 65090 B.sericeum Brachysema Brachysema sericeum \N \N \N \N \N 65091 N.officinale Nasturtium Nasturtium officinale watercress \N \N \N \N 65092 G.comosa Gaillardia Gaillardia comosa \N \N \N \N \N 65093 D.cayenensis Dioscorea Dioscorea cayenensis Lagos yam,twelve-months yam,yellow Guinea yam,yellow yam \N \N \N \N 65094 E.freitagii Echinops Echinops freitagii \N \N \N \N \N 65095 P.obtusifolia Premna Premna obtusifolia \N \N \N \N \N 65096 R.lanutoensis Reynoldsia Reynoldsia lanutoensis \N \N \N \N \N 65097 C.gilmanii Cymopterus Cymopterus gilmanii \N \N \N \N \N 65098 A.subspicata Aristida Aristida subspicata \N \N \N \N \N 65099 C.foliacea Commelina Commelina foliacea \N \N \N \N \N 65100 N.subuligera Navarretia Navarretia subuligera \N \N \N \N \N 65101 R.leptorrhynchus Ranunculus Ranunculus leptorrhynchus \N \N \N \N \N 65102 \N varietas Drepanostachyum falcatum var. sengteeanum \N \N \N \N \N 65103 A.alpina Alchemilla Alchemilla alpina \N \N \N \N \N 65104 P.saccardians Pellacalyx Pellacalyx saccardians \N \N \N \N \N 65105 \N genus Ptilimnium \N \N \N \N \N 65106 C.flabellifolium Clinopodium Clinopodium flabellifolium \N \N \N \N \N 65107 R.hultenii Rumex Rumex hultenii \N \N \N \N \N 65108 B.balansana Begonia Begonia balansana \N \N \N \N \N 65109 I.nyassica Indigofera Indigofera nyassica \N \N \N \N \N 65110 D.populnea Dombeya Dombeya populnea \N \N \N \N \N 65111 M.imbricatum Melastoma Melastoma imbricatum \N \N \N \N \N 65112 C.hyalina Carex Carex hyalina \N \N \N \N \N 65113 L.lanszwertii Lathyrus Lathyrus lanszwertii \N \N \N \N \N 65114 P.biternatum Psammogeton Psammogeton biternatum \N \N \N \N \N 65115 B.fourcadei Babiana Babiana fourcadei \N \N \N \N \N 65116 S.chiquidenum Solanum Solanum chiquidenum \N \N \N \N \N 65117 F.tolucensis Festuca Festuca tolucensis \N \N \N \N \N 65118 A.rockii Aconitum Aconitum rockii \N \N \N \N \N 65119 C.globosa Carex Carex globosa \N \N \N \N \N 65120 E.SH-2010 Elingamita Elingamita sp. SH-2010 \N \N \N \N \N 65121 C.581 Cyrtandra Cyrtandra sp. Clark 581 \N \N \N \N \N 65122 \N genus Purdieanthus \N \N \N \N \N 65123 R.cumberlandense Rhododendron Rhododendron cumberlandense \N \N \N \N \N 65124 M.scabrella Mimosa Mimosa scabrella \N \N \N \N \N 65125 V.caudatifolium Vaccinium Vaccinium caudatifolium \N \N \N \N \N 65126 H.spicata Hugonia Hugonia spicata \N \N \N \N \N 65127 K.gracilipes Kitchingia Kitchingia gracilipes \N \N \N \N \N 65128 \N varietas Camellia parvimuricata var. hupehensis \N \N \N \N \N 65129 P.peregrina Pimpinella Pimpinella peregrina \N \N \N \N \N 65130 \N genus Ruizia \N \N \N \N \N 65131 \N varietas Coreocarpus parthenioides var. heterocarpa \N \N \N \N \N 65132 \N subspecies Calceolaria penlandii subsp. penlandii \N \N \N \N \N 65133 L.affine Laserpitium Laserpitium affine \N \N \N \N \N 65134 A.koraiensis Aster Aster koraiensis \N \N \N \N \N 65135 \N subspecies Crocus biflorus subsp. leucostylosus \N \N \N \N \N 65136 S.griffithii Sonneratia Sonneratia griffithii \N \N \N \N \N 65137 R.adoneus Ranunculus Ranunculus adoneus alpine buttercup \N \N \N \N 65138 \N genus Crateva \N \N \N \N \N 65139 A.conchiferum Angraecum Angraecum conchiferum \N \N \N \N \N 65140 G.villosa Grewia Grewia villosa \N \N \N \N \N 65141 R.meliphagidum Rhododendron Rhododendron meliphagidum \N \N \N \N \N 65142 E.juniperinum Empleuridium Empleuridium juniperinum \N \N \N \N \N 65143 C.pentagona Cuscuta Cuscuta pentagona \N \N \N \N \N 65144 \N subspecies Daucus carota subsp. maritimus \N \N \N \N \N 65145 L.bolusii Leucospermum Leucospermum bolusii \N \N \N \N \N 65146 S.tenuifolius Sorocephalus Sorocephalus tenuifolius \N \N \N \N \N 65147 C.dugesii Cedrela Cedrela dugesii \N \N \N \N \N 65148 P.peteri Psychotria Psychotria peteri \N \N \N \N \N 65149 C.hintoniorum Cologania Cologania hintoniorum \N \N \N \N \N 65150 A.rusbyi Atriplex Atriplex rusbyi \N \N \N \N \N 65151 \N genus Elizabetha \N \N \N \N \N 65152 E.pallidum Exacum Exacum pallidum \N \N \N \N \N 65153 T.alba Tabernaemontana Tabernaemontana alba \N \N \N \N \N 65154 H.NPB-2006 Helicia Helicia sp. NPB-2006 \N \N \N \N \N 65155 C.cumingii Coelogyne Coelogyne cumingii \N \N \N \N \N 65156 P.obtusifolia Pseudopentameris Pseudopentameris obtusifolia \N \N \N \N \N 65157 P.lanuginosa Prosartes Prosartes lanuginosa \N \N \N \N \N 65158 \N subspecies Ononis natrix subsp. arganietorum \N \N \N \N \N 65159 D.brymerianum Dendrobium Dendrobium brymerianum \N \N \N \N \N 65160 H.vittata Haworthia Haworthia vittata \N \N \N \N \N 65161 C.boulosii Crocus Crocus boulosii \N \N \N \N \N 65162 S.lasiocarpum Solanum Solanum lasiocarpum Indian nightshade,ma uek,mao qie \N \N \N \N 65163 S.catilliflorum Solanum Solanum catilliflorum \N \N \N \N \N 65164 R.abietina Rosa Rosa abietina \N \N \N \N \N 65165 \N genus Burroughsia \N \N \N \N \N 65166 H.sanguinolenta Helcia Helcia sanguinolenta \N \N \N \N \N 65167 C.duriuscula Carex Carex duriuscula \N \N \N \N \N 65168 \N genus Plectaneia \N \N \N \N \N 65169 \N varietas Arum dioscoridis var. dioscoridis \N \N \N \N \N 65170 \N genus Lysiphyllum \N \N \N \N \N 65171 T.s.n. Trichopilia Trichopilia sp. Luis Mendoza s.n. \N \N \N \N \N 65172 P.dennisii Physokentia Physokentia dennisii \N \N \N \N \N 65173 S.basendopogon Solanum Solanum basendopogon \N \N \N \N \N 65174 E.nervulosum Erodium Erodium nervulosum \N \N \N \N \N 65175 \N genus Uvariopsis \N \N \N \N \N 65176 C.inerme Canthium Canthium inerme \N \N \N \N \N 65177 S.4350 Symbolanthus Symbolanthus sp. Grant 4350 \N \N \N \N \N 65178 C.similis Celmisia Celmisia similis \N \N \N \N \N 65179 P.kamtschaticus Phedimus Phedimus kamtschaticus \N \N \N \N \N 65180 S.biternata Saxifraga Saxifraga biternata \N \N \N \N \N 65181 C.saxicola Caulokaempferia Caulokaempferia saxicola \N \N \N \N \N 65182 \N subspecies Ficaria verna subsp. bulbilifera \N \N \N \N \N 65183 G.graeca Gagea Gagea graeca \N \N \N \N \N 65184 \N subspecies Carex atlantica subsp. capillacea \N \N \N \N \N 65185 \N subspecies Collomia debilis subsp. debilis \N \N \N \N \N 65186 S.cinereum Sideroxylon Sideroxylon cinereum \N \N \N \N \N 65187 C.chigo-montero Campsiandra Campsiandra chigo-montero \N \N \N \N \N 65188 M.morindoides Morinda Morinda morindoides \N \N \N \N \N 65189 S.porsildii Smelowskia Smelowskia porsildii \N \N \N \N \N 65190 C.SH-2010 Cecropia Cecropia sp. SH-2010 \N \N \N \N \N 65191 \N varietas Ficus hirta var. roxburghii \N \N \N \N \N 65192 N.acuminata Neonelsonia Neonelsonia acuminata \N \N \N \N \N 65193 M.moctezumum Melampodium Melampodium moctezumum \N \N \N \N \N 65194 M.arbutifolia Monticalia Monticalia arbutifolia \N \N \N \N \N 65195 C.submutica Cousinia Cousinia submutica \N \N \N \N \N 65196 \N genus Gossypium \N \N \N \N \N 65197 \N varietas Convolvulus supinus var. melliflorus \N \N \N \N \N 65198 S.Ar108 Schismatoglottis Schismatoglottis sp. Ar108 \N \N \N \N \N 65199 C.guyanense Condylocarpon Condylocarpon guyanense \N \N \N \N \N 65200 B.prionitis Barleria Barleria prionitis \N \N \N \N \N 65201 \N genus Koenigia \N \N \N \N \N 65202 A.madreporica Azorella Azorella madreporica \N \N \N \N \N 65203 \N subspecies Centaurea boissieri subsp. transmalvana \N \N \N \N \N 65204 P.bartlettii Panicum Panicum bartlettii \N \N \N \N \N 65205 E.juglans Euphorbia Euphorbia juglans \N \N \N \N \N 65206 C.schultzii Camptostemon Camptostemon schultzii \N \N \N \N \N 65207 N.macrostemon Nothoscordum Nothoscordum macrostemon \N \N \N \N \N 65208 \N genus Paracolpodium \N \N \N \N \N 65209 \N varietas Boehmeria zollingeriana var. blinii \N \N \N \N \N 65210 P.tomentella Pentaschistis Pentameris tomentella \N \N \N \N \N 65211 \N genus Evandra \N \N \N \N \N 65212 \N varietas Spiraea japonica var. ovalifolia \N \N \N \N \N 65213 \N varietas Chiritopsis glandulosa var. yangshuoensis \N \N \N \N \N 65214 N.rupicola Nolana Nolana rupicola \N \N \N \N \N 65215 D.bullatum Dracocephalum Dracocephalum bullatum \N \N \N \N \N 65216 S.compressus Streptocarpus Streptocarpus compressus \N \N \N \N \N 65217 \N subspecies Glandora prostrata subsp. prostrata \N \N \N \N \N 65218 \N varietas Panicum coloratum var. coloratum \N \N \N \N \N 65219 D.densifolia Draba Draba densifolia denseleaf draba \N \N \N \N 65220 C.stans Clematis Clematis stans \N \N \N \N \N 65221 C.comboynensis Callistemon Callistemon comboynensis \N \N \N \N \N 65222 A.vittata Alpinia Alpinia vittata variegate-ginger \N \N \N \N 65223 P.rhinanthoides Pedicularis Pedicularis rhinanthoides \N \N \N \N \N 65224 K.ivorensis Khaya Khaya ivorensis African mahogany \N \N \N \N 65225 E.cuneata Ericameria Ericameria cuneata cliff goldenbush \N \N \N \N 65226 \N genus Stichoneuron \N \N \N \N \N 65227 T.triptera Tristira Tristira triptera \N \N \N \N \N 65228 L.setulosa Lindernia Lindernia setulosa \N \N \N \N \N 65229 \N genus Chiococca \N \N \N \N \N 65230 M.virgula Mimosa Mimosa virgula \N \N \N \N \N 65231 A.sinopurpurescens Acer Acer sinopurpurescens \N \N \N \N \N 65232 C.spicigerum Capillipedium Capillipedium spicigerum \N \N \N \N \N 65233 V.amazonica Victoria Victoria amazonica Amazon water-lily,Victoria-lily,royal water-lily \N \N \N \N 65234 A.dielsiana Allocasuarina Allocasuarina dielsiana \N \N \N \N \N 65235 E.setchuenensis Eleutherococcus Eleutherococcus setchuenensis \N \N \N \N \N 65236 A.chaetopoda Albuca Albuca chaetopoda \N \N \N \N \N 65237 C.quadrifidus Calothamnus Calothamnus quadrifidus \N \N \N \N \N 65238 A.subumbellata Amylotheca Amylotheca subumbellata \N \N \N \N \N 65239 C.hirsutum Chaerophyllum Chaerophyllum hirsutum \N \N \N \N \N 65240 S.ritteriana Synthyris Synthyris ritteriana \N \N \N \N \N 65241 S.elliptica Shorea Shorea elliptica \N \N \N \N \N 65242 B.succulenta Bourreria Bourreria succulenta \N \N \N \N \N 65243 A.MWC-2003 Asplundia Asplundia sp. MWC-2003 \N \N \N \N \N 65244 S.decorum Solanum Solanum decorum \N \N \N \N \N 65245 V.incisa Vicia Vicia incisa \N \N \N \N \N 65246 \N subspecies Navarretia intertexta subsp. intertexta \N \N \N \N \N 65247 L.filiformis Linanthus Linanthus filiformis yellow gilia \N \N \N \N 65248 C.neapolitanum Colchicum Colchicum neapolitanum \N \N \N \N \N 65249 A.oscensis Alchemilla Alchemilla oscensis \N \N \N \N \N 65250 N.tabacum Nicotiana Nicotiana suaveolens x Nicotiana tabacum \N \N \N \N \N 65251 S.nocteolens Silene Silene nocteolens \N \N \N \N \N 65252 C.flagelliformis Cupaniopsis Cupaniopsis flagelliformis \N \N \N \N \N 65253 A.teretifolia Achillea Achillea teretifolia \N \N \N \N \N 65254 \N genus Chordifex \N \N \N \N \N 65255 S.brevicalyx Siphocampylus Siphocampylus brevicalyx \N \N \N \N \N 65256 C.meirax Cyrtochilum Cyrtochilum meirax \N \N \N \N \N 65257 X.lagoinhae Xyris Xyris lagoinhae \N \N \N \N \N 65258 \N subspecies Navarretia hamata subsp. leptantha \N \N \N \N \N 65259 A.cinnamomoides Anisophyllea Anisophyllea cinnamomoides \N \N \N \N \N 65260 B.GW2395 Barringtonia Barringtonia sp. GW2395 \N \N \N \N \N 65261 P.mammulosa Parodia Parodia mammulosa \N \N \N \N \N 65262 \N genus Kermadecia \N \N \N \N \N 65263 J.supina Jasione Jasione supina \N \N \N \N \N 65264 G.salicifolia Gyrinops Gyrinops salicifolia \N \N \N \N \N 65265 S.papillosum Sisyrinchium Sisyrinchium papillosum \N \N \N \N \N 65266 D.paleacea Drosera Drosera paleacea \N \N \N \N \N 65267 G.permeabilis Gladiolus Gladiolus permeabilis \N \N \N \N \N 65268 C.pogonantha Cyrtandra Cyrtandra pogonantha \N \N \N \N \N 65269 D.guianensis Dioclea Dioclea guianensis \N \N \N \N \N 65270 \N genus Cyclea \N \N \N \N \N 65271 P.scabra Picris Picris scabra \N \N \N \N \N 65272 H.caffrum Harpephyllum Harpephyllum caffrum \N \N \N \N \N 65273 G.punctata Globularia Globularia punctata \N \N \N \N \N 65274 S.purpurascens Seemannia Seemannia purpurascens \N \N \N \N \N 65275 \N genus Dufrenoya \N \N \N \N \N 65276 \N varietas Artemisia indica var. orientalis \N \N \N \N \N 65277 \N genus Cypripedium \N \N \N \N \N 65278 M.griffithii Mangifera Mangifera griffithii \N \N \N \N \N 65279 A.perfoliata Aspalathus Aspalathus perfoliata \N \N \N \N \N 65280 D.fladnizensis Draba Draba fladnizensis Austrian draba \N \N \N \N 65281 S.bicolor Schisandra Schisandra bicolor \N \N \N \N \N 65282 F.diversivittata Ferula Ferula diversivittata \N \N \N \N \N 65283 C.canariensis Carlina Carlina canariensis \N \N \N \N \N 65284 \N subspecies Secale cereale subsp. afghanicum \N \N \N \N \N 65285 S.angustifolium Sparganium Sparganium angustifolium \N \N \N \N \N 65286 I.ethiopica Impatiens Impatiens ethiopica \N \N \N \N \N 65287 \N genus Cyclocarpa \N \N \N \N \N 65288 E.eugenea Erica Erica eugenea \N \N \N \N \N 65289 \N genus Kendrickia \N \N \N \N \N 65290 \N family Biebersteiniaceae \N \N \N \N \N 65291 V.helenae Viola Viola helenae \N \N \N \N \N 65292 G.cupanii Genista Genista cupanii \N \N \N \N \N 65293 S.axillaris Salvia Salvia axillaris \N \N \N \N \N 65294 T.stenophylla Turnera Turnera stenophylla \N \N \N \N \N 65295 K.ramosissima Krameria Krameria ramosissima \N \N \N \N \N 65296 A.crassipetala Anaxagorea Anaxagorea crassipetala \N \N \N \N \N 65297 K.galpinii Kleinia Kleinia galpinii \N \N \N \N \N 65298 P.kilimandjarica Polygala Polygala kilimandjarica \N \N \N \N \N 65299 C.barbigera Crepis Crepis barbigera \N \N \N \N \N 65300 B.palmeri Barkeria Barkeria palmeri \N \N \N \N \N 65301 \N genus Rhytachne \N \N \N \N \N 65302 M.revealii Montanoa Montanoa revealii \N \N \N \N \N 65303 \N genus Pseudostellaria \N \N \N \N \N 65304 N.244459 Nemesia Nemesia aff. denticulata AK 244459 \N \N \N \N \N 65305 T.incarnatum Trifolium Trifolium incarnatum \N \N \N \N \N 65306 \N genus Jacobsenia \N \N \N \N \N 65307 B.horrida Berberis Berberis horrida \N \N \N \N \N 65308 R.affinis Ruellia Ruellia affinis \N \N \N \N \N 65309 \N varietas Carex tenera var. tenera \N \N \N \N \N 65310 O.pubescens Ononis Ononis pubescens \N \N \N \N \N 65311 \N genus Echinomastus \N \N \N \N \N 65312 I.brasiliensis Isochilus Isochilus brasiliensis \N \N \N \N \N 65313 E.taltalensis Eriosyce Eriosyce taltalensis \N \N \N \N \N 65314 S.1592 Symbolanthus Symbolanthus sp. Acevedo 1592 \N \N \N \N \N 65315 A.haouarytheum Argyranthemum Argyranthemum haouarytheum \N \N \N \N \N 65316 \N subspecies Erica globiceps subsp. consors \N \N \N \N \N 65317 \N genus Hemichaena \N \N \N \N \N 65318 A.rosea Acis Acis rosea \N \N \N \N \N 65319 C.rupestris Centaurea Centaurea rupestris \N \N \N \N \N 65320 S.dictyophylla Stevia Stevia dictyophylla \N \N \N \N \N 65321 \N genus Socotrella \N \N \N \N \N 65322 O.siamensis Orchidantha Orchidantha siamensis \N \N \N \N \N 65323 D.schimperiana Dioscorea Dioscorea schimperiana \N \N \N \N \N 65324 T.thaiensis Thomsonia Thomsonia thaiensis \N \N \N \N \N 65325 L.melastomoides Leandra Leandra melastomoides \N \N \N \N \N 65326 \N family Butomaceae flowering rush family \N \N \N \N 65327 G.septemfida Gentiana Gentiana septemfida \N \N \N \N \N 65328 K.(e) Kunzea Kunzea aff. ericoides (e) \N \N \N \N \N 65329 M.aspera Mendoncia Mendoncia aspera \N \N \N \N \N 65330 G.lindheimeri Garrya Garrya lindheimeri \N \N \N \N \N 65331 \N subspecies Brunfelsia brasiliensis subsp. macrocalyx \N \N \N \N \N 65332 A.eriostomus Astragalus Astragalus eriostomus \N \N \N \N \N 65333 P.prehensilis Prosphytochloa Prosphytochloa prehensilis \N \N \N \N \N 65334 \N tribe Luculieae \N \N \N \N \N 65335 A.lotoides Adesmia Adesmia lotoides \N \N \N \N \N 65336 \N subspecies Phaseolus maculatus subsp. ritensis \N \N \N \N \N 65337 \N genus Haastia \N \N \N \N \N 65338 H.alpina Homogyne Homogyne alpina \N \N \N \N \N 65339 C.lichiangensis Cyananthus Cyananthus lichiangensis \N \N \N \N \N 65340 N.glochidiatum Neosciadium Neosciadium glochidiatum \N \N \N \N \N 65341 S.schafta Silene Silene schafta \N \N \N \N \N 65342 T.fusca Tiquilia Tiquilia fusca \N \N \N \N \N 65343 C.tridentata Chlamydophora Chlamydophora tridentata \N \N \N \N \N 65344 \N varietas Allium thunbergii var. deltoides \N \N \N \N \N 65345 \N genus Hybanthus \N \N \N \N \N 65346 S.20248 Stachys Stachys cf. chamissonis Brooks 20248 \N \N \N \N \N 65347 S.caucasica Stipa Stipa caucasica \N \N \N \N \N 65348 L.laxus Linanthus Linanthus laxus \N \N \N \N \N 65349 X.parviflorum Xysmalobium Xysmalobium parviflorum \N \N \N \N \N 65350 S.graeca Saxifraga Saxifraga graeca \N \N \N \N \N 65351 G.nuttallii Gayophytum Gayophytum nuttallii \N \N \N \N \N 65352 C.hookeriana Cuphea Cuphea hookeriana \N \N \N \N \N 65353 H.huzhihaoi Hymenidium Hymenidium huzhihaoi \N \N \N \N \N 65354 P.s.n. Primula Primula sp. Davlianidze & Bokezia s.n. \N \N \N \N \N 65355 E.sempervirens Epimedium Epimedium sempervirens \N \N \N \N \N 65356 S.candelabra Symplocos Symplocos candelabra \N \N \N \N \N 65357 A.kohrudicus Astragalus Astragalus kohrudicus \N \N \N \N \N 65358 N.glauca Nothofagus Nothofagus glauca \N \N \N \N \N 65359 B.hexaptera Burmannia Burmannia hexaptera \N \N \N \N \N 65360 A.europaea Actaea Actaea europaea \N \N \N \N \N 65361 O.juncifolium Ornithogalum Ornithogalum juncifolium \N \N \N \N \N 65362 E.drakensbergensis Erica Erica drakensbergensis \N \N \N \N \N 65363 \N order Brassicales \N \N \N \N \N 65364 \N genus Genipa \N \N \N \N \N 65365 C.luerae Comparettia Comparettia luerae \N \N \N \N \N 65366 S.grandiflora Stylosanthes guianensis species complex Stylosanthes grandiflora \N \N \N \N \N 65367 S.alba Sonneratia Sonneratia griffithii x Sonneratia alba \N \N \N \N \N 65368 B.antennifera Bonatea Bonatea antennifera \N \N \N \N \N 65369 A.masonii Asclepias Asclepias masonii \N \N \N \N \N 65370 \N genus Cicerbita \N \N \N \N \N 65371 \N genus Carapichea \N \N \N \N \N 65372 S.amygdaloides Salix Salix amygdaloides peachleaf willow \N \N \N \N 65373 B.tribenensis Begonia Begonia tribenensis \N \N \N \N \N 65374 H.myrtifolia Henoonia Henoonia myrtifolia \N \N \N \N \N 65375 L.villipes Lindera Lindera villipes \N \N \N \N \N 65376 H.seychellensis Hederorkis Hederorkis seychellensis \N \N \N \N \N 65377 \N genus Parapholis \N \N \N \N \N 65378 B.rigidula Brachyscome Brachyscome rigidula \N \N \N \N \N 65379 F.palmeri Fagonia Fagonia palmeri \N \N \N \N \N 65380 D.atrorubens Disa Disa atrorubens \N \N \N \N \N 65382 B.patula Bletia Bletia patula \N \N \N \N \N 65383 P.pauciciliatum Paspalum Paspalum pauciciliatum \N \N \N \N \N 65384 E.subtilis Euphorbia Euphorbia subtilis \N \N \N \N \N 65385 C.retusa Castela Castela retusa \N \N \N \N \N 65386 S.myrtacea Symplocos Symplocos myrtacea \N \N \N \N \N 65387 P.fulvilabia Polystachya Polystachya fulvilabia \N \N \N \N \N 65388 S.gunnii Spyridium Spyridium gunnii \N \N \N \N \N 65389 \N genus Mkilua \N \N \N \N \N 65390 R.caudata Rosa Rosa caudata \N \N \N \N \N 65391 A.tatianae Angelica Angelica tatianae \N \N \N \N \N 65392 \N genus Berendtiella \N \N \N \N \N 65393 C.aquatilis Cypella Cypella aquatilis \N \N \N \N \N 65394 N.knightiana Nicotiana Nicotiana knightiana \N \N \N \N \N 65395 S.grandifolia Salacia Salacia grandifolia \N \N \N \N \N 65396 M.gabunica Macaranga Macaranga gabunica \N \N \N \N \N 65397 F.QC-2002 Freesia Freesia sp. QC-2002 \N \N \N \N \N 65398 P.submultinerve Piper Piper submultinerve \N \N \N \N \N 65399 M.doliata Medicago Medicago doliata \N \N \N \N \N 65400 D.magaliesbergensis Dicliptera Dicliptera magaliesbergensis \N \N \N \N \N 65401 P.media Poa Poa media \N \N \N \N \N 65402 \N varietas Wedelia prostrata var. robusta \N \N \N \N \N 65403 O.recurva Oenothera Oenothera recurva \N \N \N \N \N 65404 C.macrantha Cordia Cordia macrantha \N \N \N \N \N 65405 \N tribe Spermacoceae \N \N \N \N \N 65406 C.trichocarpa Carex Carex trichocarpa \N \N \N \N \N 65407 C.ovalis Cordia Cordia ovalis \N \N \N \N \N 65408 M.macrorhiza Minuria Minuria macrorhiza \N \N \N \N \N 65409 \N genus Neblinantha \N \N \N \N \N 65410 F.reuteri Fritillaria Fritillaria reuteri \N \N \N \N \N 65411 E.elata Eucalyptus Eucalyptus elata \N \N \N \N \N 65412 S.rosulata Swertia Swertia rosulata \N \N \N \N \N 65413 \N subspecies Circaea alpina subsp. caulescens \N \N \N \N \N 65414 B.occultum Bulbophyllum Bulbophyllum occultum \N \N \N \N \N 65415 \N genus Morierina \N \N \N \N \N 65416 I.angolensis Isoberlinia Isoberlinia angolensis \N \N \N \N \N 65417 \N genus Lyperanthus \N \N \N \N \N 65418 \N subspecies Crocus serotinus subsp. clusii \N \N \N \N \N 65419 \N genus Soejatmia \N \N \N \N \N 65420 C.17270 Cardiopteris Cardiopteris sp. van der Werff et al. 17270 \N \N \N \N \N 65421 F.acerosa Fagonia Fagonia acerosa \N \N \N \N \N 65422 F.mandshurica Fragaria Fragaria mandshurica \N \N \N \N \N 65423 \N genus Tetraneuris \N \N \N \N \N 65424 L.mildbraedii Leucomphalos Leucomphalos mildbraedii \N \N \N \N \N 65425 H.staudtii Heckeldora Heckeldora staudtii \N \N \N \N \N 65426 \N genus Fulcaldea \N \N \N \N \N 65427 P.coriacea Passiflora Passiflora coriacea bat-leaf passionflower,murcielago \N \N \N \N 65428 C.decumbens Campanula Campanula decumbens \N \N \N \N \N 65429 P.quadrijuga Polylepis Polylepis quadrijuga \N \N \N \N \N 65430 M.schizolaena Meryta Meryta schizolaena \N \N \N \N \N 65431 L.spruceana Lundia Lundia spruceana \N \N \N \N \N 65432 H.depressifolia Habenaria Habenaria depressifolia \N \N \N \N \N 65433 \N genus Jubaea \N \N \N \N \N 65434 S.grandiglumis Stipagrostis Stipagrostis grandiglumis \N \N \N \N \N 65435 M.wollastonii Musschia Musschia wollastonii \N \N \N \N \N 65436 P.labrosus Penstemon Penstemon labrosus \N \N \N \N \N 65437 S.radlkoferi Spondias Spondias radlkoferi \N \N \N \N \N 65438 \N subspecies Rhipsalis pacheco-leonis subsp. catenulata \N \N \N \N \N 65439 I.taraxacifolius Iranecio Iranecio taraxacifolius \N \N \N \N \N 65440 G.glacialis Gagea Gagea glacialis \N \N \N \N \N 65441 \N genus Spiraeanthus \N \N \N \N \N 65442 P.tenuiflorus Phyllobolus Phyllobolus tenuiflorus \N \N \N \N \N 65443 P.grandiflora Phyllostegia Phyllostegia grandiflora \N \N \N \N \N 65444 G.aurantiaca Glandularia Glandularia aurantiaca \N \N \N \N \N 65445 K.coddiana Kniphofia Kniphofia coddiana \N \N \N \N \N 65446 Q.ambrozyana Quercus Quercus x ambrozyana \N \N \N \N \N 65447 A.rufescens Abuta Abuta rufescens \N \N \N \N \N 65448 L.speciosa Lysipomia Lysipomia speciosa \N \N \N \N \N 65449 L.hillebrandii Lysimachia Lysimachia hillebrandii \N \N \N \N \N 65450 A.kankauensis Aristolochia Aristolochia kankauensis \N \N \N \N \N 65451 C.officinalis Calendula Calendula officinalis common marigold,pot marigold \N \N \N \N 65452 F.heteropleura Ficus Ficus heteropleura wei ye rong \N \N \N \N 65453 H.duthiei Hystrix Hystrix duthiei \N \N \N \N \N 65454 C.CAM094 Campanula Campanula sp. CAM094 \N \N \N \N \N 65455 T.marginatum Thelesperma Thelesperma marginatum \N \N \N \N \N 65456 E.monteiroi Euphorbia Euphorbia monteiroi \N \N \N \N \N 65457 \N genus Elegia \N \N \N \N \N 65458 \N genus Chamerion \N \N \N \N \N 65459 \N genus Tournefortia \N \N \N \N \N 65460 D.neglecta Duguetia Duguetia neglecta \N \N \N \N \N 65461 R.christinae Rebutia Rebutia christinae \N \N \N \N \N 65462 D.gibsonii Dendrobium Dendrobium gibsonii \N \N \N \N \N 65463 T.TL141-1 unclassified Taraxacum Taraxacum (sect. Naevosa) sp. TL141-1 \N \N \N \N \N 65464 S.douglasii Silene Silene douglasii \N \N \N \N \N 65465 M.lirana Malesherbia Malesherbia lirana \N \N \N \N \N 65466 P.pumilus Phyllobolus Phyllobolus pumilus \N \N \N \N \N 65467 S.auriculata Swartzia Swartzia auriculata \N \N \N \N \N 65468 P.reticulatus Pachyanthus Pachyanthus reticulatus \N \N \N \N \N 65469 H.stelleriana Harrimanella Harrimanella stelleriana \N \N \N \N \N 65470 \N genus Browningia \N \N \N \N \N 65471 \N no rank environmental samples Taxonomy:198032 \N \N \N \N \N 65472 C.caracasanus Croton Croton caracasanus \N \N \N \N \N 65473 \N subspecies Gentiana lutea subsp. lutea \N \N \N \N \N 65474 C.trigonocarpus Croton Croton trigonocarpus \N \N \N \N \N 65475 C.oliveriana Consolida Consolida oliveriana \N \N \N \N \N 65476 C.perrieri Coffea Coffea perrieri \N \N \N \N \N 65477 C.acuminata Clethra Clethra acuminata \N \N \N \N \N 65478 S.lanuginosus Stenotus Stenotus lanuginosus \N \N \N \N \N 65479 C.spinescens Crenidium Crenidium spinescens \N \N \N \N \N 65480 \N varietas Stewartia sinensis var. brevicalyx \N \N \N \N \N 65481 P.trifidum Pelargonium Pelargonium trifidum \N \N \N \N \N 65482 T.18 Trisetum Trisetum sp. Hodkinson 18 \N \N \N \N \N 65483 \N genus Ceratostylis \N \N \N \N \N 65484 R.hippophaeoides Rhododendron Rhododendron hippophaeoides \N \N \N \N \N 65485 \N genus Decalepis \N \N \N \N \N 65486 H.amplexicaulis Hymenachne Hymenachne amplexicaulis \N \N \N \N \N 65487 C.suavissimum Cymbidium Cymbidium suavissimum \N \N \N \N \N 65488 A.vogelii Aeschynomene Aeschynomene vogelii \N \N \N \N \N 65489 \N subspecies Centaurea aeolica subsp. aeolica \N \N \N \N \N 65490 O.cardenasiana Oxalis Oxalis cardenasiana \N \N \N \N \N 65491 G.proliferum Galium Galium proliferum \N \N \N \N \N 65492 \N subspecies Lepidium hirtum subsp. calycotrichum \N \N \N \N \N 65493 \N genus Trichosalpinx \N \N \N \N \N 65494 R.curvisiliqua Rorippa Rorippa curvisiliqua \N \N \N \N \N 65495 Q.Bue080_171 Quercus Quercus cf. petraea Bue080_171 \N \N \N \N \N 65496 C.victoriana Cuscuta Cuscuta victoriana \N \N \N \N \N 65497 C.cyanea Calectasia Calectasia cyanea \N \N \N \N \N 65498 \N genus Oreocharis \N \N \N \N \N 65499 \N genus Engelhardia \N \N \N \N \N 65500 V.angustipinnata Vicia Vicia angustipinnata \N \N \N \N \N 65501 S.andryalifolia Silene Silene andryalifolia \N \N \N \N \N 65502 C.formicifera Chiloglottis Chiloglottis formicifera \N \N \N \N \N 65503 B.vaginata Brongniartikentia Brongniartikentia vaginata \N \N \N \N \N 65504 H.villosa Halimocnemis Halimocnemis villosa \N \N \N \N \N 65505 \N tribe Alysseae \N \N \N \N \N 65506 C.26 Casearia Casearia sp. Alford 26 \N \N \N \N \N 65507 H.panamensis Homalomena Homalomena panamensis \N \N \N \N \N 65508 S.austrocaledonicum Syzygium Syzygium austrocaledonicum \N \N \N \N \N 65509 M.picta Minuartia Minuartia picta \N \N \N \N \N 65510 A.punctata Alsobia Alsobia punctata \N \N \N \N \N 65511 O.gracilis Ophrys Ophrys gracilis \N \N \N \N \N 65512 \N no rank Cattleya granulosa 'Bahia' \N \N \N \N \N 65513 S.brevicaule Solanum Solanum brevicaule \N \N \N \N \N 65514 T.16 Tristellateia Tristellateia sp. Bourgeois 16 \N \N \N \N \N 65515 E.nakaii Euphorbia Euphorbia nakaii \N \N \N \N \N 65516 E.ramulosa Englerina Englerina ramulosa \N \N \N \N \N 65517 A.meli Amomyrtus Amomyrtus meli \N \N \N \N \N 65518 A.glabrum Archidendron Archidendron glabrum \N \N \N \N \N 65519 C.strigosa Cleome Cleome strigosa \N \N \N \N \N 65520 I.minima Isatis Isatis minima \N \N \N \N \N 65521 L.mouretii Limonium Limonium mouretii \N \N \N \N \N 65522 E.kennedyae Eragrostis Eragrostis kennedyae \N \N \N \N \N 65523 A.corrugatifolia Aragoa Aragoa corrugatifolia \N \N \N \N \N 65524 C.marginata Caladenia Caladenia marginata \N \N \N \N \N 65525 L.distichus Lotus Lotus distichus \N \N \N \N \N 65526 I.helenae Ischnosiphon Ischnosiphon helenae \N \N \N \N \N 65527 P.grandis Pinanga Pinanga grandis \N \N \N \N \N 65528 M.coulteriana Morina Morina coulteriana \N \N \N \N \N 65529 E.schomburgkiana Eperua Eperua schomburgkiana \N \N \N \N \N 65530 \N genus Hebestigma \N \N \N \N \N 65531 H.hakonense Hypericum Hypericum hakonense \N \N \N \N \N 65532 E.godfreyanum Eupatorium Eupatorium godfreyanum Godfrey's thoroughwort \N \N \N \N 65533 H.trachyloma Heracleum Heracleum trachyloma \N \N \N \N \N 65534 M.kiusiana Mitella Mitella kiusiana \N \N \N \N \N 65535 \N genus Stachyurus \N \N \N \N \N 65536 \N genus Hoffmannseggella \N \N \N \N \N 65537 J.simplicifolium Jasminum Jasminum simplicifolium \N \N \N \N \N 65538 M.laosensis Mytilaria Mytilaria laosensis \N \N \N \N \N 65539 P.ancistrifolia Potentilla Potentilla ancistrifolia \N \N \N \N \N 65540 M.lisianthiflora Mascarenhasia Mascarenhasia lisianthiflora \N \N \N \N \N 65541 \N genus Porcelia \N \N \N \N \N 65542 T.simplicifolium Trachydium Trachydium simplicifolium \N \N \N \N \N 65543 L.macrostachya Laportea Laportea macrostachya \N \N \N \N \N 65544 E.stricklandii Eucrosia Eucrosia stricklandii \N \N \N \N \N 65545 E.unioloides Eragrostis Eragrostis unioloides Chinese lovegrass \N \N \N \N 65546 C.suecicum Chenopodium Chenopodium suecicum \N \N \N \N \N 65547 \N genus Lyallia \N \N \N \N \N 65548 H.achyrophorus Hypochaeris Hypochaeris achyrophorus \N \N \N \N \N 65549 I.aspera Indigofera Indigofera aspera \N \N \N \N \N 65550 C.schochii Craspedolobium Craspedolobium schochii \N \N \N \N \N 65551 C.crassifolia Calandrinia Calandrinia crassifolia \N \N \N \N \N 65552 \N genus Trailliaedoxa \N \N \N \N \N 65553 K.allenii Kohleria Kohleria allenii \N \N \N \N \N 65554 B.12916 Brazzeia Brazzeia sp. Breteler 12916 \N \N \N \N \N 65555 C.aboriginum Cymopterus Cymopterus aboriginum \N \N \N \N \N 65556 R.canadense Rhododendron Rhododendron canadense \N \N \N \N \N 65557 S.443 Symplocos Symplocos sp. 443 \N \N \N \N \N 65558 \N varietas Astragalus allochrous var. playanus \N \N \N \N \N 65559 P.rubropilosa Protea Protea rubropilosa \N \N \N \N \N 65560 D.spectabilis Demosthenesia Demosthenesia spectabilis \N \N \N \N \N 65561 E.sebaceum Erodium Erodium sebaceum \N \N \N \N \N 65562 S.pulchella Stelis Stelis pulchella \N \N \N \N \N 65563 S.nitidum Solanum Solanum nitidum \N \N \N \N \N 65564 F.altior Fargesia Fargesia altior \N \N \N \N \N 65565 C.salsoloides Cistanthe Cistanthe salsoloides \N \N \N \N \N 65566 B.corynophylla Baeckea Baeckea corynophylla \N \N \N \N \N 65567 C.luteola Cattleya Cattleya luteola \N \N \N \N \N 65568 Z.scabra Zehneria Zehneria scabra \N \N \N \N \N 65569 L.fletcheri Leucopogon Leucopogon fletcheri \N \N \N \N \N 65570 Q.Bue080_227 Quercus Quercus cf. petraea Bue080_227 \N \N \N \N \N 65571 L.jefensis Lisianthius Lisianthius jefensis \N \N \N \N \N 65572 P.cinereus Phyllanthus Phyllanthus cinereus \N \N \N \N \N 65573 R.fallacinum Rhododendron Rhododendron fallacinum \N \N \N \N \N 65574 \N genus Linaria toadflaxes \N \N \N \N 65575 \N varietas Hilliella sinuata var. qianwuensis \N \N \N \N \N 65576 C.astragalina Chesneya Chesneya astragalina \N \N \N \N \N 65577 D.humboldtii Disterigma Disterigma humboldtii \N \N \N \N \N 65578 E.ovinum Eryngium Eryngium ovinum \N \N \N \N \N 65579 A.occidentalis Avena Avena occidentalis \N \N \N \N \N 65580 \N subtribe Carduinae \N \N \N \N \N 65581 L.nestleri Laserpitium Laserpitium nestleri \N \N \N \N \N 65582 E.suffulta Euphorbia Euphorbia suffulta \N \N \N \N \N 65583 O.GMS-2008 Orobanche Orobanche sp. 2 GMS-2008 \N \N \N \N \N 65584 S.1129 Suaeda Suaeda sp. Schuetze 1129 \N \N \N \N \N 65585 I.microglossa Iris Iris microglossa \N \N \N \N \N 65586 S.whiteana Sorbus Sorbus whiteana \N \N \N \N \N 65587 S.astrantiifolia Sanicula Sanicula astrantiifolia \N \N \N \N \N 65588 \N genus Urophyllum \N \N \N \N \N 65589 C.evertii Cymopterus Cymopterus evertii \N \N \N \N \N 65590 C.subcapitatum Cladoceras Cladoceras subcapitatum \N \N \N \N \N 65591 A.matudae Aechmea Aechmea matudae \N \N \N \N \N 65592 P.cornigera Polystachya Polystachya cornigera \N \N \N \N \N 65593 B.media Bouteloua Bouteloua media \N \N \N \N \N 65594 C.Rh-84 Ceriops Ceriops sp. KDAIS Rh-84 \N \N \N \N \N 65595 \N genus Damasonium \N \N \N \N \N 65596 H.glutinosum Heliotropium Heliotropium glutinosum \N \N \N \N \N 65597 R.striata Restrepiopsis Restrepiopsis striata \N \N \N \N \N 65598 S.bronchialis Saxifraga Saxifraga bronchialis \N \N \N \N \N 65599 A.linearis Anticharis Anticharis linearis \N \N \N \N \N 65600 S.canigueralii Sulcorebutia Sulcorebutia canigueralii \N \N \N \N \N 65601 \N varietas Centaurea reuteriana var. phrygia \N \N \N \N \N 65602 T.glutinosa Triantha Triantha glutinosa sticky tofieldia \N \N \N \N 65603 S.sophiifolia Smelowskia Smelowskia sophiifolia \N \N \N \N \N 65604 L.senegalensis Lepisanthes Lepisanthes senegalensis \N \N \N \N \N 65605 S.ciliata Struthiola Struthiola ciliata \N \N \N \N \N 65606 B.peyrotii Bulbophyllum Bulbophyllum peyrotii \N \N \N \N \N 65607 P.tricholobus Petasites Petasites tricholobus \N \N \N \N \N 65608 \N subspecies Dodonaea viscosa subsp. angustifolia \N \N \N \N \N 65609 S.dinklagei Strychnos Strychnos dinklagei \N \N \N \N \N 65610 C.nevadensis Crataegus Crataegus nevadensis \N \N \N \N \N 65611 A.vulneraria Anthyllis Anthyllis vulneraria kidney-vetch \N \N \N \N 65612 U.macrocarpa Ulmus Ulmus macrocarpa \N \N \N \N \N 65613 \N genus Baeriopsis \N \N \N \N \N 65614 T.bulbosa Tillandsia Tillandsia bulbosa \N \N \N \N \N 65615 O.purpurascens Oxalis Oxalis purpurascens \N \N \N \N \N 65616 \N subspecies Cremaspora triflora subsp. confluens \N \N \N \N \N 65617 \N genus Sobolewskia \N \N \N \N \N 65618 C.inflatus Caulanthus Caulanthus inflatus desert candle \N \N \N \N 65619 C.timida Carex Carex timida \N \N \N \N \N 65620 A.costata Anisoptera Anisoptera costata \N \N \N \N \N 65621 A.tyrrhena Aristolochia Aristolochia tyrrhena \N \N \N \N \N 65622 T.krascheninnikovii Tragopogon Tragopogon krascheninnikovii \N \N \N \N \N 65623 E.depauperata Euphorbia Euphorbia depauperata \N \N \N \N \N 65624 P.carthamoides Perezia Perezia carthamoides \N \N \N \N \N 65625 R.decorum Rhododendron Rhododendron decorum \N \N \N \N \N 65626 O.corymbosa Orobanche Orobanche corymbosa \N \N \N \N \N 65627 \N genus Pulmonaria \N \N \N \N \N 65628 \N genus Lorenzochloa \N \N \N \N \N 65629 S.000977 Sapium Sapium sp. BCI 000977 \N \N \N \N \N 65630 \N genus Hyperacanthus \N \N \N \N \N 65631 C.chlorantha Cryptothladia Cryptothladia chlorantha \N \N \N \N \N 65632 E.formosa Erica Erica formosa \N \N \N \N \N 65633 R.orbiculare Rhododendron Rhododendron orbiculare \N \N \N \N \N 65634 \N genus Dilophia \N \N \N \N \N 65635 M.americana Morisonia Morisonia americana \N \N \N \N \N 65636 M.helianthemifolia Micromeria Micromeria helianthemifolia \N \N \N \N \N 65637 D.taurinum Dendrobium Dendrobium taurinum \N \N \N \N \N 65638 S.velutina Syringa Syringa velutina \N \N \N \N \N 65639 M.tenuifolia Mascagnia Mascagnia tenuifolia \N \N \N \N \N 65640 P.aquaticum Panicum Panicum aquaticum \N \N \N \N \N 65641 P.rodrigoi Porroglossum Porroglossum rodrigoi \N \N \N \N \N 65642 \N subspecies Clermontia clermontioides subsp. rockiana \N \N \N \N \N 65643 Z.djamuensis Ziziphus Ziziphus djamuensis \N \N \N \N \N 65644 H.conferta Hydrocotyle Hydrocotyle conferta \N \N \N \N \N 65645 A.major Arachis Arachis major \N \N \N \N \N 65646 \N varietas Potentilla argentea var. pseudocalabra \N \N \N \N \N 65647 H.voronovii Hesperis Hesperis voronovii \N \N \N \N \N 65648 C.salomoniense Coelospermum Coelospermum salomoniense \N \N \N \N \N 65649 E.pilularioides Eryngium Eryngium pilularioides \N \N \N \N \N 65650 L.sample environmental samples Taxonomy:531413 Ligustrum environmental sample \N \N \N \N \N 65651 L.glandulosa Lagophylla Lagophylla glandulosa \N \N \N \N \N 65652 \N genus Phaedranassa \N \N \N \N \N 65653 T.nocturnum Tanaecium Tanaecium nocturnum \N \N \N \N \N 65654 G.pyrenaicum Galium Galium pyrenaicum \N \N \N \N \N 65655 C.dallimorei Cytisus Cytisus x dallimorei \N \N \N \N \N 65656 A.incanum Abutilon Abutilon incanum \N \N \N \N \N 65657 C.aphylla Cadaba Cadaba aphylla \N \N \N \N \N 65658 S.maritimus Sonchus Sonchus maritimus \N \N \N \N \N 65659 G.schomburgkiana Garcinia Garcinia schomburgkiana \N \N \N \N \N 65660 P.garrettiana Pyrenaria Pyrenaria garrettiana \N \N \N \N \N 65661 F.macroscypha Fagraea Fagraea macroscypha \N \N \N \N \N 65662 G.covasii Grindelia Grindelia covasii \N \N \N \N \N 65663 G.toledoi Graphistylis Graphistylis toledoi \N \N \N \N \N 65664 \N subspecies Arachis hypogaea subsp. fastigiata \N \N \N \N \N 65665 \N varietas Dendrobium speciosum var. curvicaule \N \N \N \N \N 65666 G.lasianthus Gordonia Gordonia lasianthus loblolly bay \N \N \N \N 65667 O.bravoana Opuntia Opuntia bravoana \N \N \N \N \N 65668 P.quadrangularis Psammotropha Psammotropha quadrangularis \N \N \N \N \N 65669 R.geoides Rubus Rubus geoides \N \N \N \N \N 65670 P.pentamera Polyscias Polyscias pentamera \N \N \N \N \N 65671 P.eetveldeana Pentaclethra Pentaclethra eetveldeana \N \N \N \N \N 65672 J.amplifolius Juncus Juncus amplifolius \N \N \N \N \N 65673 C.(Otago) Craspedia Craspedia sp. (Otago) \N \N \N \N \N 65674 \N genus Hoplophyllum \N \N \N \N \N 80536 \N genus Pritchardia \N \N \N \N \N 65675 W.6205 Wisteria Wisteria sp. Lavin 6205 \N \N \N \N \N 65676 H.canterburyana Hedyscepe Hedyscepe canterburyana \N \N \N \N \N 65677 A.cuprea Arctotis Arctotis cuprea \N \N \N \N \N 65678 E.microphylla Eutaxia Eutaxia microphylla \N \N \N \N \N 65679 H.forsteriana Howea Howea forsteriana \N \N \N \N \N 65680 C.elatinoides Campanula Campanula elatinoides \N \N \N \N \N 65681 C.pascuus Cynodon Cynodon pascuus \N \N \N \N \N 65682 \N genus Frolovia \N \N \N \N \N 65683 H.bicornuta Hemiboea Hemiboea bicornuta \N \N \N \N \N 65684 E.saxicastelli Eurybia Eurybia saxicastelli Rockcastle aster \N \N \N \N 65685 \N genus Diporidium \N \N \N \N \N 65686 \N genus Siphocampylus \N \N \N \N \N 65687 E.madrense Eryngium Eryngium madrense \N \N \N \N \N 65688 L.hoerleinianus Lampranthus Lampranthus hoerleinianus \N \N \N \N \N 65689 S.lunglingensis Smilax Smilax lunglingensis \N \N \N \N \N 65690 S.brachiata Salicornia Salicornia brachiata \N \N \N \N \N 65691 B.distegia Bambusa Bambusa distegia \N \N \N \N \N 65692 B.distachya Billbergia Billbergia distachya \N \N \N \N \N 65693 A.collina Arabis Arabis collina \N \N \N \N \N 65694 S.chingtungensis Stephania Stephania chingtungensis \N \N \N \N \N 65695 C.richardii Coffea Coffea richardii \N \N \N \N \N 65696 L.ludovicianus Lupinus Lupinus ludovicianus \N \N \N \N \N 65697 C.trinervis Coelogyne Coelogyne trinervis \N \N \N \N \N 65698 H.diffusus Halimolobos Halimolobos diffusus \N \N \N \N \N 65699 C.pulchellum Centaurium Centaurium pulchellum \N \N \N \N \N 65700 S.citrullifolium Solanum Solanum citrullifolium watermelon nightshade \N \N \N \N 65701 S.canina Scrophularia Scrophularia canina \N \N \N \N \N 65702 R.macvaughiae Rhodosciadium Rhodosciadium macvaughiae \N \N \N \N \N 65703 G.rivale Geum Geum rivale \N \N \N \N \N 65704 C.cordifolia Cardamine Cardamine cordifolia \N \N \N \N \N 65705 C.secundiflora Campanula Campanula secundiflora \N \N \N \N \N 65706 R.ewaldiana Rhipsalis Rhipsalis ewaldiana \N \N \N \N \N 65707 X.vincentii Xylosma Xylosma vincentii \N \N \N \N \N 65708 \N subspecies Colchicum szovitsii subsp. brachyphyllum \N \N \N \N \N 65709 C.patens Cullen Cullen patens \N \N \N \N \N 65710 S.leptophyes Solanum Solanum leptophyes \N \N \N \N \N 65711 P.gaumeri Pachycereus Pachycereus gaumeri \N \N \N \N \N 65712 B.chungii Bambusa Bambusa chungii \N \N \N \N \N 65713 \N genus Citropsis \N \N \N \N \N 65714 \N genus Schizobasis \N \N \N \N \N 65715 A.verbasciformis Aspalathus Aspalathus verbasciformis \N \N \N \N \N 65716 L.tinifolia Labordia Labordia tinifolia \N \N \N \N \N 65717 M.vitiflora Melicope Melicope vitiflora \N \N \N \N \N 65718 L.H641 Ledebouria Ledebouria sp. MP H641 \N \N \N \N \N 65719 \N subspecies Arisaema undulatifolium subsp. uwajimense \N \N \N \N \N 65720 A.otayensis Arctostaphylos Arctostaphylos otayensis \N \N \N \N \N 65721 S.vomeracea Serapias Serapias vomeracea \N \N \N \N \N 65722 L.imzica Linaria Linaria imzica \N \N \N \N \N 65723 F.nilgerrensis Fragaria Fragaria nilgerrensis \N \N \N \N \N 65724 E.similis Eucalyptus Eucalyptus similis Queensland yellowjacket,inland yellowjacket \N \N \N \N 65725 C.lavandulacea Chirita Chirita lavandulacea \N \N \N \N \N 65726 D.glabra Dioscorea Dioscorea glabra \N \N \N \N \N 65727 \N subspecies Linum macraei subsp. macraei \N \N \N \N \N 65728 C.macrocarpa Cheilotheca Cheilotheca macrocarpa \N \N \N \N \N 65729 U.texana Urochloa Urochloa texana \N \N \N \N \N 65730 C.epithymum Cuscuta Cuscuta epithymum clover dodder \N \N \N \N 65731 P.lamprophyllus Phyllanthus Phyllanthus lamprophyllus \N \N \N \N \N 65732 W.marginata Wahlenbergia Wahlenbergia marginata \N \N \N \N \N 65733 A.618 Alberta Alberta sp. Razafimandimbison & Ravelonarivo 618 \N \N \N \N \N 65734 L.perigrinans Libertia Libertia perigrinans \N \N \N \N \N 65735 \N genus Geschollia \N \N \N \N \N 65736 A.vernalis Adonis Adonis vernalis oxeye,oxeye daisy,spring adonis,spring pheasant's eye \N \N \N \N 65737 O.oligomerum Ochrosperma Ochrosperma oligomerum \N \N \N \N \N 65738 Z.gramineum Zingiber Zingiber gramineum \N \N \N \N \N 65739 M.spathulata Moraea Moraea spathulata \N \N \N \N \N 65740 P.quisqueyana Pereskia Pereskia quisqueyana \N \N \N \N \N 65741 A.lancerottense Aeonium Aeonium lancerottense \N \N \N \N \N 65742 L.nossibeensis Ledebouria Ledebouria nossibeensis \N \N \N \N \N 65743 C.sipapoana Clusia Clusia sipapoana \N \N \N \N \N 65744 C.brotheri Cortusa Cortusa brotheri \N \N \N \N \N 65745 D.cocuyana Draba Draba cocuyana \N \N \N \N \N 65746 A.affinis Ardisia Ardisia affinis \N \N \N \N \N 65747 W.monoptera Wiborgia Wiborgia monoptera \N \N \N \N \N 65748 I.palmeri Iresine Iresine palmeri \N \N \N \N \N 65749 A.3186 Alphonsea Alphonsea sp. Kessler 3186 \N \N \N \N \N 65750 T.nobile Taraxacum Taraxacum nobile \N \N \N \N \N 65751 E.ipecacuanhae Euphorbia Euphorbia ipecacuanhae \N \N \N \N \N 65752 T.bourgaei Tillandsia Tillandsia bourgaei \N \N \N \N \N 65753 C.rupicola Ceropegia Ceropegia rupicola \N \N \N \N \N 65754 A.chrysella Acacia Acacia chrysella \N \N \N \N \N 65755 M.hymenonervia Miconia Miconia hymenonervia \N \N \N \N \N 65756 C.gordjaginii Crambe Crambe gordjaginii \N \N \N \N \N 65757 S.aprica Silene Silene aprica \N \N \N \N \N 65758 I.coerulea Indigofera Indigofera coerulea \N \N \N \N \N 65759 D.jonesii Dendrobium Dendrobium jonesii \N \N \N \N \N 65760 S.virgatus Sisyranthus Sisyranthus virgatus \N \N \N \N \N 65761 \N varietas Boechera fernaldiana var. vivariensis \N \N \N \N \N 65762 C.canteriata Conostylis Conostylis canteriata \N \N \N \N \N 65763 S.lukwangulensis Schefflera Schefflera lukwangulensis \N \N \N \N \N 65764 S.pacifica Spathoglottis Spathoglottis pacifica \N \N \N \N \N 65765 L.rechingeri Laser Laser rechingeri \N \N \N \N \N 65766 C.tommasiniana Campanula Campanula tommasiniana \N \N \N \N \N 65767 B.oxysperma Begonia Begonia oxysperma \N \N \N \N \N 65768 \N genus Schwalbea \N \N \N \N \N 65769 N.sphaerocarpa Nitraria Nitraria sphaerocarpa \N \N \N \N \N 65770 \N varietas Triteleia hendersonii var. leachiae \N \N \N \N \N 65771 B.artrutxium Bellium Bellium artrutxium \N \N \N \N \N 65772 E.camaldulensis Eucalyptus Eucalyptus camaldulensis Murray red gum \N \N \N \N 65773 D.pachyloma Daviesia Daviesia pachyloma \N \N \N \N \N 65774 D.schoeninum Dendrobium Dendrobium schoeninum \N \N \N \N \N 65775 P.subciliatum Paspalum Paspalum subciliatum \N \N \N \N \N 65776 \N genus Acmispon \N \N \N \N \N 65777 M.dummeri Marasmodes Marasmodes dummeri \N \N \N \N \N 65778 C.erythrorrhiza Carex Carex erythrorrhiza \N \N \N \N \N 65779 P.grandipes Philodendron Philodendron grandipes \N \N \N \N \N 65780 L.benzoin Lindera Lindera benzoin Benjamin-bush,spicebush \N \N \N \N 65781 \N genus Calyptrochilum \N \N \N \N \N 65782 E.reticulatum Elatostema Elatostema reticulatum \N \N \N \N \N 65783 \N varietas Draba spectabilis var. spectabilis \N \N \N \N \N 65784 \N genus Antillanthus \N \N \N \N \N 65785 H.microphylla Hibbertia Hibbertia microphylla \N \N \N \N \N 65786 M.JJS-2011 Mentzelia Mentzelia sp. JJS-2011 \N \N \N \N \N 65787 C.heracleifolia Clematis Clematis heracleifolia \N \N \N \N \N 65788 C.populifolius Croton Croton populifolius \N \N \N \N \N 65789 G.poeppigiana Geonoma Geonoma poeppigiana \N \N \N \N \N 65790 \N genus Baphia \N \N \N \N \N 65791 C.trachelium Campanula Campanula trachelium nettle-leaf bellflower,throatwort \N \N \N \N 65792 D.damavandica Diplotaenia Diplotaenia damavandica \N \N \N \N \N 65793 H.macrostachya Hoita Hoita macrostachya \N \N \N \N \N 65794 O.165 Octolepis Octolepis sp. Rogers et al. 165 \N \N \N \N \N 65795 \N varietas Ficus triradiata var. sessilicarpa \N \N \N \N \N 65796 M.giganteus Miscanthus Miscanthus x giganteus \N \N \N \N \N 65797 C.glehnii Centaurea Centaurea glehnii \N \N \N \N \N 65798 P.prolifera Primula Primula prolifera \N \N \N \N \N 65799 A.mogollonensis Anticlea Anticlea mogollonensis \N \N \N \N \N 65800 A.decussatum Anthodon Anthodon decussatum \N \N \N \N \N 65801 G.norvegicum Gnaphalium Gnaphalium norvegicum \N \N \N \N \N 65802 A.brachypodum Aconitum Aconitum brachypodum \N \N \N \N \N 65804 C.8738 Cissus Cissus sp. Wen 8738 \N \N \N \N \N 65805 \N genus Tephrocactus \N \N \N \N \N 65806 C.splendens Clerodendrum Clerodendrum splendens \N \N \N \N \N 65807 S.gaertneri Schlumbergera Schlumbergera gaertneri Easter cactus \N \N \N \N 65808 M.campestris Melothria Melothria campestris \N \N \N \N \N 65809 \N subfamily Codonorchidoideae \N \N \N \N \N 65810 L.rafnioides Liparia Liparia rafnioides \N \N \N \N \N 65811 T.villosa Thermopsis Thermopsis villosa \N \N \N \N \N 65812 \N genus Schizoptera \N \N \N \N \N 65813 P.lilliputana Peperomia Peperomia lilliputana \N \N \N \N \N 65814 C.leptocephala Cousinia Cousinia leptocephala \N \N \N \N \N 65815 D.trifoliata Derris Derris trifoliata hora papua,tuba \N \N \N \N 65816 P.sechellarum Protarum Protarum sechellarum \N \N \N \N \N 65817 G.143 Guatteria Guatteria sp. Pirie et al. 143 \N \N \N \N \N 65818 F.doichangensis Formanodendron Formanodendron doichangensis \N \N \N \N \N 65819 \N subtribe Maxillariinae \N \N \N \N \N 65820 T.556 unclassified Taraxacum Taraxacum (sect. Macrodonta) sp. 556 \N \N \N \N \N 65821 V.abbreviata Vicia Vicia abbreviata \N \N \N \N \N 65822 B.foliosissima Banksia Banksia foliosissima \N \N \N \N \N 65823 H.tenuifolium Heliotropium Heliotropium tenuifolium \N \N \N \N \N 65824 \N genus Necramium \N \N \N \N \N 65825 D.aureum Dorema Dorema aureum \N \N \N \N \N 65826 P.lokohensis Phyllanthus Phyllanthus lokohensis \N \N \N \N \N 65827 P.volubilis Pterygocalyx Pterygocalyx volubilis \N \N \N \N \N 65828 C.spathulata Columnea Columnea spathulata \N \N \N \N \N 65829 C.falcatum Cynanchum Cynanchum falcatum \N \N \N \N \N 65830 H.orientale Helichrysum Helichrysum orientale \N \N \N \N \N 65831 R.ovata Rafnia Rafnia ovata \N \N \N \N \N 65832 C.bequaertii Callichilia Callichilia bequaertii \N \N \N \N \N 65833 T.cymosa Tabernaemontana Tabernaemontana cymosa \N \N \N \N \N 65834 D.gmelini Draba Draba gmelini \N \N \N \N \N 65835 C.japonica Cuscuta Cuscuta japonica Japanese dodder,tu si \N \N \N \N 65836 S.verticillata Schiedea Schiedea verticillata \N \N \N \N \N 65837 A.carvalhoi Achyrospermum Achyrospermum carvalhoi \N \N \N \N \N 65838 A.guianensis Acioa Acioa guianensis \N \N \N \N \N 65839 A.moldavicum Aconitum Aconitum moldavicum \N \N \N \N \N 65840 P.lagenaria Pleione Pleione x lagenaria \N \N \N \N \N 65841 H.petiolaris Hydrangea Hydrangea petiolaris climbing hydrangea \N \N \N \N 65842 \N genus Heptaptera \N \N \N \N \N 65843 V.marina Vigna Vigna marina batatarana,dune-bean \N \N \N \N 65844 S.surculosum Sedum Sedum surculosum \N \N \N \N \N 65845 \N genus Odontonema \N \N \N \N \N 65846 \N subtribe Coeliinae \N \N \N \N \N 65847 T.ekmanii Taraxacum Taraxacum ekmanii \N \N \N \N \N 65848 V.nannei Viola Viola nannei \N \N \N \N \N 65849 L.stellarioides Lysimachia Lysimachia stellarioides \N \N \N \N \N 65850 C.pulchella Cliffortia Cliffortia pulchella \N \N \N \N \N 65851 B.virgilioides Bowdichia Bowdichia virgilioides \N \N \N \N \N 65852 T.bicaudata Tridactyle Tridactyle bicaudata \N \N \N \N \N 65853 \N genus Cyrtorchis \N \N \N \N \N 65854 \N varietas Ipomoea orizabensis var. collina \N \N \N \N \N 65855 P.2326 Philadelphus Philadelphus sp. Oxelman 2326 \N \N \N \N \N 65856 \N genus Itzaea \N \N \N \N \N 65857 P.flava Phlyctidocarpa Phlyctidocarpa flava \N \N \N \N \N 65858 A.montbretiana Arabis Arabis montbretiana \N \N \N \N \N 65859 C.engelmannii Crataegus Crataegus engelmannii \N \N \N \N \N 65860 A.anatuyana Apodanthera Apodanthera anatuyana \N \N \N \N \N 65861 \N subspecies Pentameris longiglumis subsp. gymnocolea \N \N \N \N \N 65862 \N genus Thylacospermum \N \N \N \N \N 65863 S.parviflora Savignya Savignya parviflora \N \N \N \N \N 65864 S.philippiana Sphaeralcea Sphaeralcea philippiana \N \N \N \N \N 65865 C.heterophylla Collomia Collomia heterophylla variable leaf mountaintrumpet \N \N \N \N 65866 A.coriacea Aglaia Aglaia coriacea \N \N \N \N \N 65867 S.PF-2010 Schefflera Schefflera sp. B PF-2010 \N \N \N \N \N 65868 S.rectilineum Sisyrinchium Sisyrinchium rectilineum \N \N \N \N \N 65869 H.pterita Hedyotis Hedyotis pterita \N \N \N \N \N 65870 C.metallina Cleistes Cleistes metallina \N \N \N \N \N 65871 S.transvaalensis Searsia Searsia transvaalensis \N \N \N \N \N 65872 \N subspecies Potamogeton lucens subsp. lucens \N \N \N \N \N 65873 N.diversifolia Nissolia Nissolia diversifolia \N \N \N \N \N 65874 F.crassifolia Faramea Faramea crassifolia \N \N \N \N \N 65875 C.raveyi Consolida Consolida raveyi \N \N \N \N \N 65876 S.paniculatum Semialarium Semialarium paniculatum \N \N \N \N \N 65877 A.aureum Alyssum Alyssum aureum \N \N \N \N \N 65878 A.distichum Abeliophyllum Abeliophyllum distichum \N \N \N \N \N 65879 S.farinosa Sixalix Sixalix farinosa \N \N \N \N \N 65880 M.kraussiana Morella Morella kraussiana \N \N \N \N \N 65881 \N varietas Androsace alaschanica var. zadoensis \N \N \N \N \N 65882 \N genus Kirilowia \N \N \N \N \N 65883 \N genus Delissea \N \N \N \N \N 65884 P.serpens Psychotria Psychotria serpens \N \N \N \N \N 65885 T.tanneri Tridactyle Tridactyle tanneri \N \N \N \N \N 65886 \N subspecies Viscum album subsp. album \N \N \N \N \N 65887 P.2618 Pycnandra Pycnandra sp. Munzinger 2618 \N \N \N \N \N 65888 \N subspecies Streptanthus glandulosus subsp. albidus Metcalf canyon jewelflower \N \N \N \N 65889 A.gerardii Alopecurus Alopecurus gerardii \N \N \N \N \N 65890 \N varietas Chrysanthemum indicum var. albescens \N \N \N \N \N 65891 P.pterosperma Parapiptadenia Parapiptadenia pterosperma \N \N \N \N \N 65892 P.lanceolatum Pseudodracontium Pseudodracontium lanceolatum \N \N \N \N \N 65893 T.hybridum Trifolium Trifolium hybridum \N \N \N \N \N 65894 \N genus Phryma \N \N \N \N \N 65895 U.pumila Ulmus Ulmus pumila Siberian elm,dwarf elm,littleleaf elm \N \N \N \N 65896 F.tomentosa Froelichia Froelichia tomentosa \N \N \N \N \N 65897 C.interrupta Carex Carex interrupta \N \N \N \N \N 65898 L.fraseri Lomatia Lomatia fraseri \N \N \N \N \N 65899 E.disjuncta Enriquebeltrania Enriquebeltrania disjuncta \N \N \N \N \N 65900 C.gemmata Cryptandra Cryptandra gemmata \N \N \N \N \N 65901 K.ranunculina Krapfia Krapfia ranunculina \N \N \N \N \N 65902 V.triptera Vallisneria Vallisneria triptera \N \N \N \N \N 65903 P.papuanum Paphiopedilum Paphiopedilum papuanum \N \N \N \N \N 65904 A.pumila Aegialophila Aegialophila pumila \N \N \N \N \N 65905 \N genus Biscutella \N \N \N \N \N 65906 M.capitulatus Mimetes Mimetes capitulatus \N \N \N \N \N 65907 C.macranthos Cypripedium Cypripedium macranthos \N \N \N \N \N 65908 E.purpuratus Erigeron Erigeron purpuratus \N \N \N \N \N 65909 \N genus Boophone \N \N \N \N \N 65910 M.forbesii Micromeria Micromeria forbesii \N \N \N \N \N 65911 C.296285 Carthamus Carthamus sp. PI 296285 \N \N \N \N \N 65912 C.cordifolia Cardioteucris Cardioteucris cordifolia \N \N \N \N \N 65913 C.nictitans Chamaecrista Chamaecrista nictitans sensitive partridge-pea,sensitive-pea \N \N \N \N 65914 \N genus Nogalia \N \N \N \N \N 65915 G.concinna Geonoma Geonoma concinna \N \N \N \N \N 65916 \N varietas Dimorphorchis rossii var. graciliscapa \N \N \N \N \N 65917 \N tribe Eleocharideae \N \N \N \N \N 65918 T.parviflora Thrinax Thrinax parviflora palmetto thatch,thatch-pole palm \N \N \N \N 65919 B.abietina Bashania Bashania abietina \N \N \N \N \N 65920 \N subspecies Turnera sidoides subsp. sidoides \N \N \N \N \N 65921 P.hispida Persicaria Persicaria hispida \N \N \N \N \N 65922 E.tetragonum Epilobium Epilobium tetragonum \N \N \N \N \N 65923 M.saxatilis Malacothrix Malacothrix saxatilis \N \N \N \N \N 65924 T.texana Tauschia Tauschia texana \N \N \N \N \N 65925 E.epicyparissias Euphorbia Euphorbia epicyparissias \N \N \N \N \N 65926 P.senensis Premna Premna senensis \N \N \N \N \N 65927 \N genus Leptotes \N \N \N \N \N 65928 C.sandersonii Ceropegia Ceropegia sandersonii \N \N \N \N \N 65929 P.reniforme Pelargonium Pelargonium reniforme \N \N \N \N \N 65930 \N genus Crangonorchis \N \N \N \N \N 65931 A.butyracea Attalea Attalea butyracea \N \N \N \N \N 65932 T.alonsoi Turbinicarpus Turbinicarpus alonsoi \N \N \N \N \N 65933 \N genus Moacroton \N \N \N \N \N 65934 A.11515 Adenogramma Adenogramma sp. Goldblatt 11515 \N \N \N \N \N 65935 G.caeruleus Gladiolus Gladiolus caeruleus \N \N \N \N \N 65936 L.horichii Lepanthes Lepanthes horichii \N \N \N \N \N 65937 \N genus Cotoneaster \N \N \N \N \N 65938 M.cerifera Moratia Moratia cerifera \N \N \N \N \N 65939 L.canescens Lantana Lantana canescens \N \N \N \N \N 65940 \N tribe Euchresteae \N \N \N \N \N 65941 O.ventosa Olinia Olinia ventosa \N \N \N \N \N 65942 \N varietas Drosera binata var. dichotoma \N \N \N \N \N 65943 M.edule Memecylon Memecylon edule anjani \N \N \N \N 65944 V.multinervis Vigna Vigna multinervis \N \N \N \N \N 65945 L.narynensis Ligularia Ligularia narynensis \N \N \N \N \N 65946 F.cordata Ficus Ficus cordata \N \N \N \N \N 65947 P.cattleyanum Psidium Psidium cattleyanum \N \N \N \N \N 65948 A.elegans Aristolochia Aristolochia elegans calico-flower \N \N \N \N 65949 T.thorsborneorum Tetrastigma Tetrastigma thorsborneorum \N \N \N \N \N 65950 P.praelongus Potamogeton Potamogeton natans x Potamogeton praelongus \N \N \N \N \N 65951 D.bellidiformis Dorotheanthus Dorotheanthus bellidiformis \N \N \N \N \N 65952 G.rubrum Glochidion Glochidion rubrum \N \N \N \N \N 65953 A.ellenbeckii Alchemilla Alchemilla ellenbeckii \N \N \N \N \N 65954 A.pachyphylla Adenia Adenia pachyphylla \N \N \N \N \N 65955 \N genus Crossopteryx \N \N \N \N \N 65956 P.viduata Pleurothallis Pleurothallis viduata \N \N \N \N \N 65957 A.bipindensis Afzelia Afzelia bipindensis \N \N \N \N \N 65958 P.intermedia Phalaenopsis Phalaenopsis x intermedia \N \N \N \N \N 65959 S.collinum Spiraeanthemum Spiraeanthemum collinum \N \N \N \N \N 65960 F.leptopodum Fagopyrum Fagopyrum leptopodum \N \N \N \N \N 65961 S.bulbosum Sorghum Sorghum bulbosum \N \N \N \N \N 65962 \N genus Oncostylus \N \N \N \N \N 65963 O.assimilis Oldenlandia Oldenlandia assimilis \N \N \N \N \N 80729 \N genus Maxillaria \N \N \N \N \N 65964 \N subspecies Betula nana subsp. exilis Arctic dwarf birch \N \N \N \N 65965 \N subspecies Acer saccharum subsp. floridanum \N \N \N \N \N 65966 G.ancestralis Gagea Gagea ancestralis \N \N \N \N \N 65967 M.barbatus Mallotus Mallotus barbatus \N \N \N \N \N 65968 P.sieboldii Primula Primula sieboldii \N \N \N \N \N 65969 V.adscendens Valeriana Valeriana adscendens \N \N \N \N \N 65970 J.narynensis Jurinea Jurinea narynensis \N \N \N \N \N 65971 R.barba-johannis Roldana Roldana barba-johannis \N \N \N \N \N 65972 I.versicolor Iris Iris versicolor \N \N \N \N \N 65973 H.italicum Helichrysum Helichrysum italicum \N \N \N \N \N 65974 M.scopa Marina Marina scopa \N \N \N \N \N 65975 M.stricta Myosotis Myosotis stricta \N \N \N \N \N 65976 M.sinskiae Medicago Medicago sinskiae \N \N \N \N \N 65977 C.thouvenotii Cryptocarya Cryptocarya thouvenotii \N \N \N \N \N 65978 S.oleosum Syzygium Syzygium oleosum \N \N \N \N \N 65979 \N varietas Poa alpina var. alpina \N \N \N \N \N 65980 M.microphyllum Megistostegium Megistostegium microphyllum \N \N \N \N \N 65981 R.gorgonias Roridula Roridula gorgonias \N \N \N \N \N 65982 S.macranthera Senna Senna macranthera \N \N \N \N \N 65983 \N genus Ortachne \N \N \N \N \N 65984 N.sample environmental samples Taxonomy:493874 Nassella environmental sample \N \N \N \N \N 65985 S.jarae Senecio Senecio jarae \N \N \N \N \N 65986 B.weyeriana Buddleja Buddleja x weyeriana \N \N \N \N \N 65987 A.elata Asclepias Asclepias elata \N \N \N \N \N 65988 A.robustum Allium Allium robustum \N \N \N \N \N 65989 P.lappulacea Priva Priva lappulacea \N \N \N \N \N 65990 \N family Ecdeiocoleaceae \N \N \N \N \N 65991 \N genus Diplosoma \N \N \N \N \N 65992 A.brachyscapum Allium Allium brachyscapum \N \N \N \N \N 65993 \N varietas Manglietia fordiana var. fordiana \N \N \N \N \N 65994 G.pugionacanthum Gymnocalycium Gymnocalycium pugionacanthum \N \N \N \N \N 65995 P.schumanniana Puelia Puelia schumanniana \N \N \N \N \N 65996 C.cataractarum Chamaedorea Chamaedorea cataractarum \N \N \N \N \N 65997 H.balansae Habenaria Habenaria balansae \N \N \N \N \N 65998 R.apurensis Ruprechtia Ruprechtia apurensis \N \N \N \N \N 65999 M.gondoloides Macrocarpaea Macrocarpaea gondoloides \N \N \N \N \N 66000 N.zeylanica Naravelia Naravelia zeylanica \N \N \N \N \N 66001 M.ulei Mimosa Mimosa ulei \N \N \N \N \N 66002 C.picta Carex Carex picta \N \N \N \N \N 66003 O.nernstii Olearia Olearia nernstii \N \N \N \N \N 66004 D.stricta Descurainia Descurainia stricta \N \N \N \N \N 66005 C.polyphyllum Coilonox Coilonox polyphyllum \N \N \N \N \N 66006 \N genus Triopterys \N \N \N \N \N 66007 M.longicorne Melampodium Melampodium longicorne \N \N \N \N \N 66008 P.chathamicus Pseudopanax Pseudopanax chathamicus \N \N \N \N \N 66009 F.gracilis Fosterella Fosterella gracilis \N \N \N \N \N 66010 M.gibbosa Melaleuca Melaleuca gibbosa \N \N \N \N \N 66011 \N genus Rorippa yellowcress \N \N \N \N 66012 \N subspecies Ononis reclinata subsp. reclinata \N \N \N \N \N 66013 S.obtusifolium Santalum Santalum obtusifolium \N \N \N \N \N 66014 P.diguana Psychotria Psychotria diguana \N \N \N \N \N 66015 P.dulcis Prunus Prunus dulcis almond,sweet almond \N \N \N \N 66016 S.hexaphylla Stauntonia Stauntonia hexaphylla \N \N \N \N \N 66017 \N genus Dinosperma \N \N \N \N \N 66018 F.oligantha Ficinia Ficinia oligantha \N \N \N \N \N 66019 \N varietas Thysanocarpus laciniatus var. laciniatus \N \N \N \N \N 66020 C.rehmannii Coccinia Coccinia rehmannii \N \N \N \N \N 66021 \N genus Macrococculus \N \N \N \N \N 66022 M.willdenowii Miconia Miconia willdenowii \N \N \N \N \N 66023 C.erubescens Chrysanthemum Chrysanthemum erubescens \N \N \N \N \N 66024 P.leucadendron Pladaroxylon Pladaroxylon leucadendron \N \N \N \N \N 66025 L.MAG-2009 Lacunaria Lacunaria cf. crenata MAG-2009 \N \N \N \N \N 66026 O.mellii Oldenlandia Oldenlandia mellii \N \N \N \N \N 66027 T.cauliflorum Tetrastigma Tetrastigma cauliflorum \N \N \N \N \N 66028 C.whiteana Corokia Corokia whiteana \N \N \N \N \N 66029 M.discolor Mallotus Mallotus discolor \N \N \N \N \N 66030 M.suksdorfii Mimulus Mimulus suksdorfii \N \N \N \N \N 66031 O.sericea Onosma Onosma sericea \N \N \N \N \N 66032 \N genus Anechites \N \N \N \N \N 66033 A.muirii Amphithalea Amphithalea muirii \N \N \N \N \N 66034 L.schomburgkii Limnosipanea Limnosipanea schomburgkii \N \N \N \N \N 66035 C.dentata Cupania Cupania dentata \N \N \N \N \N 66036 \N genus Bystropogon \N \N \N \N \N 66037 L.californicum Lithospermum Lithospermum californicum \N \N \N \N \N 66038 C.zuluensis Carex Carex zuluensis \N \N \N \N \N 66039 I.hederifolia Ipomoea Ipomoea hederifolia scarletcreeper,star ipomoea,trompillo \N \N \N \N 66040 \N genus Illicium \N \N \N \N \N 66041 D.corsica Drymocallis Drymocallis corsica \N \N \N \N \N 66042 T.emarginatum Tropaeolum Tropaeolum emarginatum \N \N \N \N \N 66043 S.pyriformis Smelowskia Smelowskia pyriformis \N \N \N \N \N 66044 G.10629 Gyrinops Gyrinops cf. caudata Polak 10629 \N \N \N \N \N 66045 \N genus Pantacantha \N \N \N \N \N 66046 \N no rank Saccharum hybrid cultivar Co 94008 \N \N \N \N \N 66047 F.macrocarpum Fagopyrum Fagopyrum macrocarpum \N \N \N \N \N 66048 \N genus Anthaenantiopsis \N \N \N \N \N 66049 E.palmeri Echinocereus Echinocereus palmeri \N \N \N \N \N 66050 M.capitatum Melastomastrum Melastomastrum capitatum \N \N \N \N \N 66051 \N varietas Nierembergia linariifolia var. pinifolioides \N \N \N \N \N 66052 C.coelestis Commelina Commelina coelestis \N \N \N \N \N 66053 P.argyrocoleon Polygonum Polygonum argyrocoleon \N \N \N \N \N 66054 D.aristata Dysphania Dysphania aristata \N \N \N \N \N 66055 T.'Durango' Tiquilia Tiquilia sp. 'Durango' \N \N \N \N \N 66056 C.moyobambae Calceolaria Calceolaria moyobambae \N \N \N \N \N 66057 C.kataf Commiphora Commiphora kataf bisabol myrrh \N \N \N \N 66058 R.crithmifolius Ranunculus Ranunculus crithmifolius \N \N \N \N \N 66059 \N subspecies Arenaria armerina subsp. caesia \N \N \N \N \N 66060 B.skinneri Barkeria Barkeria skinneri \N \N \N \N \N 66061 C.hunanica Camellia Camellia hunanica \N \N \N \N \N 66062 M.2132 Matayba Matayba sp. Chase 2132 \N \N \N \N \N 66063 C.sample environmental samples Taxonomy:1096675 Clidemia environmental sample \N \N \N \N \N 66064 C.dioscoridis Cynoglossum Cynoglossum dioscoridis \N \N \N \N \N 66065 A.nuttallianus Astragalus Astragalus nuttallianus \N \N \N \N \N 66066 O.steyermarkii Ophellantha Ophellantha steyermarkii \N \N \N \N \N 66067 M.cultivar Mussaenda Mussaenda hybrid cultivar \N \N \N \N \N 66068 \N genus Campecarpus \N \N \N \N \N 66069 C.ormostachya Carex Carex ormostachya \N \N \N \N \N 66070 B.fenicis Begonia Begonia fenicis \N \N \N \N \N 66071 \N subspecies Tropaeolum ciliatum subsp. ciliatum \N \N \N \N \N 66072 L.caldwellii Lycoris Lycoris caldwellii \N \N \N \N \N 66073 P.callosum Philodendron Philodendron callosum \N \N \N \N \N 66074 M.angustisepala Momordica Momordica angustisepala \N \N \N \N \N 66075 S.juglandifolium Lycopersicon Solanum juglandifolium \N \N \N \N \N 66076 H.punctatum Hypericum Hypericum punctatum \N \N \N \N \N 66077 T.maculata Tricyrtis Tricyrtis maculata \N \N \N \N \N 66078 V.quinquangularis Vitis Vitis quinquangularis \N \N \N \N \N 66079 G.glauca Gentiana Gentiana glauca \N \N \N \N \N 66080 P.paradoxa Pseudoraphis Pseudoraphis paradoxa \N \N \N \N \N 66081 H.leucosantha Habenaria Habenaria leucosantha \N \N \N \N \N 66082 \N subspecies Erica leucotrachela subsp. monicae \N \N \N \N \N 66083 R.armoracioides Rorippa Rorippa armoracioides \N \N \N \N \N 66084 C.rosea Cleome Cleome rosea \N \N \N \N \N 66085 C.aphylla Carex Carex aphylla \N \N \N \N \N 66086 \N genus Anastatica \N \N \N \N \N 66087 S.roborowskyi Stipa Stipa roborowskyi \N \N \N \N \N 66088 H.gouanii Hieracium Hieracium gouanii \N \N \N \N \N 66089 G.crassifolium Gastrolobium Gastrolobium crassifolium \N \N \N \N \N 66090 O.mildbraedii Oenanthe Oenanthe mildbraedii \N \N \N \N \N 66091 S.longespicata Strobilanthes Strobilanthes longespicata \N \N \N \N \N 66092 H.triangularis Hylocereus Hylocereus triangularis \N \N \N \N \N 66093 \N genus Pinacopodium \N \N \N \N \N 66095 P.nigricans Pyrorchis Pyrorchis nigricans \N \N \N \N \N 66096 L.sinense Ligusticum Ligusticum sinense Sichuan lovage,chuang-xiong,gaoben \N \N \N \N 66097 C.costatifrons Calyptrogyne Calyptrogyne costatifrons \N \N \N \N \N 66098 C.borneensis Coelostegia Coelostegia borneensis \N \N \N \N \N 66099 P.allenii Pleurothallis Pleurothallis allenii \N \N \N \N \N 66100 \N subspecies Chisocheton pentandrus subsp. pentandrus \N \N \N \N \N 66101 S.mexicanum Sechium Sechium mexicanum \N \N \N \N \N 66102 C.quinqueloba Coccinia Coccinia quinqueloba \N \N \N \N \N 66103 \N varietas Geranium eriostemon var. megalanthum \N \N \N \N \N 66104 S.densiflora Spartina Spartina densiflora \N \N \N \N \N 66105 Z.ellipticum Zingiber Zingiber ellipticum \N \N \N \N \N 66106 S.heldreichii Spergularia Spergularia heldreichii \N \N \N \N \N 66107 C.urceolata Clidemia Clidemia urceolata \N \N \N \N \N 66108 C.venusta Condylostylis Condylostylis venusta \N \N \N \N \N 66109 D.ramosissima Draba Draba ramosissima \N \N \N \N \N 66110 S.hungarica Soldanella Soldanella hungarica \N \N \N \N \N 66111 C.bastardianum Cheirodendron Cheirodendron bastardianum \N \N \N \N \N 66112 \N genus Stenosemis \N \N \N \N \N 66113 A.sambiranensis Amyrea Amyrea sambiranensis \N \N \N \N \N 66114 D.hyacinthoides Dipcadi Dipcadi hyacinthoides \N \N \N \N \N 66115 T.hirsutissima Tournefortia Tournefortia hirsutissima \N \N \N \N \N 66116 C.paralicola Clusia Clusia paralicola \N \N \N \N \N 66117 R.kochii Ranunculus Ranunculus kochii \N \N \N \N \N 66118 H.muluense Hedychium Hedychium muluense \N \N \N \N \N 66119 U.stipitata Unonopsis Unonopsis stipitata \N \N \N \N \N 66120 T.brachyphylla Tetraria Tetraria brachyphylla \N \N \N \N \N 66121 M.jamesonii Mandevilla Mandevilla jamesonii \N \N \N \N \N 66122 L.polyantha Lilaeopsis Lilaeopsis polyantha \N \N \N \N \N 66123 \N genus Ximenia \N \N \N \N \N 66124 C.s.n. Cischweinfia Cischweinfia sp. Luis Mendoza s.n. \N \N \N \N \N 66125 \N genus Asyneuma \N \N \N \N \N 66126 A.herzogii Angelphytum Angelphytum herzogii \N \N \N \N \N 66127 P.clutei Penstemon Penstemon clutei \N \N \N \N \N 66128 R.laevigata Randia Randia laevigata \N \N \N \N \N 66129 A.mollissima Aristolochia Aristolochia mollissima xun gu feng \N \N \N \N 66130 \N varietas Triticum aestivum var. vavilovii \N \N \N \N \N 66131 T.mongolorum Tragus Tragus mongolorum \N \N \N \N \N 66132 B.FS737 Bulbophyllum Bulbophyllum aff. labatii FS737 \N \N \N \N \N 66133 S.rigida Sagittaria Sagittaria rigida \N \N \N \N \N 66134 D.weberbaueri Dasyphyllum Dasyphyllum weberbaueri \N \N \N \N \N 66135 H.linearis Hoya Hoya linearis \N \N \N \N \N 66136 \N genus Behria \N \N \N \N \N 66137 P.albiflorus Phaseolus Phaseolus albiflorus \N \N \N \N \N 66138 P.semidentata Pilea Pilea semidentata \N \N \N \N \N 66139 P.rubra Pulsatilla Pulsatilla rubra \N \N \N \N \N 66140 T.gabonense Tetrorchidium Tetrorchidium gabonense \N \N \N \N \N 66141 \N genus Rauhia \N \N \N \N \N 66142 O.minima Oligochaeta Oligochaeta minima \N \N \N \N \N 66143 \N genus Psammogeton \N \N \N \N \N 66144 \N genus Gloeospermum \N \N \N \N \N 66145 E.russakiana Erica Erica russakiana \N \N \N \N \N 66146 C.oligococca Caldesia Caldesia oligococca \N \N \N \N \N 66147 \N genus Isotria \N \N \N \N \N 66148 L.lorentzianum Lepismium Lepismium lorentzianum \N \N \N \N \N 66149 A.rigida Alibertia Alibertia rigida \N \N \N \N \N 66150 D.hookerianum Drepanostachyum Drepanostachyum hookerianum \N \N \N \N \N 66151 P.hystrix Pelargonium Pelargonium hystrix \N \N \N \N \N 66152 M.galpinii Metarungia Metarungia galpinii \N \N \N \N \N 66153 R.moulmainense Rhododendron Rhododendron moulmainense \N \N \N \N \N 66154 C.incana Caryopteris Caryopteris incana \N \N \N \N \N 66155 P.gallicum Peucedanum Peucedanum gallicum \N \N \N \N \N 66156 Q.grandiflora Qualea Qualea grandiflora \N \N \N \N \N 66157 A.theiformis Aphloia Aphloia theiformis \N \N \N \N \N 66158 E.bulbispina Euphorbia Euphorbia bulbispina \N \N \N \N \N 66159 O.2797 Oncidium Oncidium sp. Whitten 2797 \N \N \N \N \N 66160 R.oxyacanthoides Ribes Ribes oxyacanthoides Canadian gooseberry \N \N \N \N 66161 L.synanthera Lycianthes Lycianthes synanthera \N \N \N \N \N 66162 O.goeppingeri Oreobolus Oreobolus goeppingeri \N \N \N \N \N 66163 \N genus Philcoxia \N \N \N \N \N 66164 P.fremontii Penstemon Penstemon fremontii \N \N \N \N \N 66165 \N genus Oxycaryum \N \N \N \N \N 66166 T.aphyllum Taeniophyllum Taeniophyllum aphyllum \N \N \N \N \N 66167 P.vestitum Pentanema Pentanema vestitum \N \N \N \N \N 66168 A.turcomanicum Acer Acer turcomanicum \N \N \N \N \N 66169 \N genus Lithospermum \N \N \N \N \N 66170 D.purpurea Digitalis Digitalis purpurea common foxglove \N \N \N \N 66171 L.ramosissimum Lepidium Lepidium ramosissimum \N \N \N \N \N 66172 L.X171-17 Lantana Lantana sp. X171-17 \N \N \N \N \N 66173 S.Ssp13 Sobralia Sobralia sp. Ssp13 \N \N \N \N \N 66174 \N genus Aristolochia \N \N \N \N \N 66175 C.senegalensis Crotalaria Crotalaria senegalensis \N \N \N \N \N 66176 \N genus Diplotaenia \N \N \N \N \N 66177 F.amelloides Felicia Felicia amelloides \N \N \N \N \N 66178 C.corrugata Cryptocarya Cryptocarya corrugata acidwood,bulls breath,corduroy laurel \N \N \N \N 66179 \N genus Cassiope \N \N \N \N \N 66180 \N genus Oedibasis \N \N \N \N \N 66181 B.ciliatus Bromus Bromus ciliatus fringed brome \N \N \N \N 66182 P.procera Pterostylis Pterostylis procera \N \N \N \N \N 66183 \N genus Sympetalandra \N \N \N \N \N 66184 D.FS1637 Diospyros Diospyros sp. FS1637 \N \N \N \N \N 66185 B.setifolia Begonia Begonia setifolia \N \N \N \N \N 66186 \N subtribe Cotteinae \N \N \N \N \N 66187 \N genus Oryctes \N \N \N \N \N 66188 A.crustacea Arctostaphylos Arctostaphylos crustacea \N \N \N \N \N 66189 \N forma Macaranga depressa f. strigosa \N \N \N \N \N 66190 E.altaica Eremopoa Eremopoa altaica \N \N \N \N \N 66191 P.sericea Pluchea Pluchea sericea \N \N \N \N \N 66192 S.asymmetriphyllum Solanum Solanum asymmetriphyllum \N \N \N \N \N 66193 R.glabriusculus Ranunculus Ranunculus glabriusculus \N \N \N \N \N 66194 V.spiralis Veitchia Veitchia spiralis \N \N \N \N \N 66195 A.altacruzensis Alternanthera Alternanthera altacruzensis \N \N \N \N \N 66196 H.tommasinii Heliosperma Heliosperma tommasinii \N \N \N \N \N 66197 A.canaliculatus Amorphophallus Amorphophallus canaliculatus \N \N \N \N \N 66198 \N varietas Lecanorchis japonica var. hokurikuensis \N \N \N \N \N 66199 \N family Elaeocarpaceae \N \N \N \N \N 66200 \N genus Cleistanthus \N \N \N \N \N 66201 A.capensis Aspalathus Aspalathus capensis \N \N \N \N \N 66202 A.serpyllaceum Arcytophyllum Arcytophyllum serpyllaceum \N \N \N \N \N 66203 S.koelzii Stipa Stipa koelzii \N \N \N \N \N 66204 \N genus Chalarothyrsus \N \N \N \N \N 66205 A.viscosissimus Allagopappus Allagopappus viscosissimus \N \N \N \N \N 66206 S.narcissoides Stemmatium Stemmatium narcissoides \N \N \N \N \N 66207 R.rarum Rhododendron Rhododendron rarum \N \N \N \N \N 66208 H.530 Hermannia Hermannia sp. Forest 530 \N \N \N \N \N 66209 \N varietas Reseda amblycarpa var. somala \N \N \N \N \N 66210 \N genus Centipeda \N \N \N \N \N 66211 R.glutinosa Rehmannia Rehmannia glutinosa Chinese foxglove \N \N \N \N 66212 \N genus Modiola \N \N \N \N \N 66213 M.velloziana Mimosa Mimosa velloziana \N \N \N \N \N 66214 R.3056 Rutidea Rutidea sp. Davis 3056 \N \N \N \N \N 66215 S.cuneata Sagittaria Sagittaria cuneata \N \N \N \N \N 66216 B.daweishanensis Begonia Begonia daweishanensis \N \N \N \N \N 66217 \N genus Scyphanthus \N \N \N \N \N 66218 H.kamtschaticum Hypericum Hypericum kamtschaticum \N \N \N \N \N 66219 C.theodori-friesii Cliffortia Cliffortia odorata x Cliffortia theodori-friesii \N \N \N \N \N 66220 M.ringens Mormolyca Mormolyca ringens \N \N \N \N \N 66221 A.biserrata Angelica Angelica biserrata \N \N \N \N \N 66222 P.acanthophyllus Paepalanthus Paepalanthus acanthophyllus \N \N \N \N \N 66223 \N genus Begonia \N \N \N \N \N 66224 G.hirculus Gentianella Gentianella hirculus \N \N \N \N \N 66225 S.revoluta Sutera Sutera revoluta \N \N \N \N \N 66226 B.erecta Bouchetia Bouchetia erecta \N \N \N \N \N 66227 M.lampolobum Melolobium Melolobium lampolobum \N \N \N \N \N 66228 E.caffra Erythrina Erythrina caffra lucky beantree \N \N \N \N 66229 M.rhamnoides Muraltia Muraltia rhamnoides \N \N \N \N \N 66230 V.ternatum Viburnum Viburnum ternatum \N \N \N \N \N 66231 E.umbellata Emmeorhiza Emmeorhiza umbellata \N \N \N \N \N 66232 C.foetida Cuscuta Cuscuta foetida \N \N \N \N \N 66233 \N genus Agave \N \N \N \N \N 66234 C.divaricata Consolida Consolida divaricata \N \N \N \N \N 66235 B.multiflora Burchardia Burchardia multiflora \N \N \N \N \N 66236 A.euryspermus Aponogeton Aponogeton euryspermus \N \N \N \N \N 66237 L.leontopodinum Leontopodium Leontopodium leontopodinum \N \N \N \N \N 66238 H.alpinum Hedysarum Hedysarum alpinum \N \N \N \N \N 66239 N.geminata Nymphoides Nymphoides geminata \N \N \N \N \N 66240 \N genus Thereianthus \N \N \N \N \N 66241 S.dendro-chahorra Sideritis Sideritis dendro-chahorra \N \N \N \N \N 66242 S.thymoides Staelia Staelia thymoides \N \N \N \N \N 66243 S.richetia Shorea Shorea richetia \N \N \N \N \N 66244 A.fournieri Asclepias Asclepias fournieri \N \N \N \N \N 66245 M.sphacelata Mammillaria Mammillaria sphacelata \N \N \N \N \N 66246 \N subspecies Daucus carota subsp. halophilus \N \N \N \N \N 66247 P.miombicola Psychotria Psychotria miombicola \N \N \N \N \N 66248 A.decipiens Acianthera Acianthera decipiens \N \N \N \N \N 66249 \N varietas Pediomelum hypogaeum var. hypogaeum \N \N \N \N \N 66250 M.caespitosa Myosotis Myosotis caespitosa \N \N \N \N \N 66251 T.caespitosum Thylacospermum Thylacospermum caespitosum \N \N \N \N \N 66252 \N genus Renvoizea \N \N \N \N \N 66253 E.nudiflora Erica Erica nudiflora \N \N \N \N \N 66254 E.azorica Euphorbia Euphorbia azorica \N \N \N \N \N 66255 G.hirta Gonostegia Gonostegia hirta \N \N \N \N \N 66256 C.hoffmannii Croton Croton hoffmannii \N \N \N \N \N 66257 D.parnassica Draba Draba parnassica \N \N \N \N \N 66258 \N tribe Leonureae \N \N \N \N \N 66259 C.prostrata Cyathula Cyathula prostrata \N \N \N \N \N 66260 C.muticum Coccoceras Coccoceras muticum \N \N \N \N \N 66261 \N varietas Digitalis subalpina var. subalpina \N \N \N \N \N 66262 M.punctata Macaranga Macaranga punctata \N \N \N \N \N 66263 \N genus Darlingtonia \N \N \N \N \N 66264 E.amoena Espadaea Espadaea amoena \N \N \N \N \N 66265 H.stenophylla Heteromorpha Heteromorpha stenophylla \N \N \N \N \N 66266 F.gracilis Ferocactus Ferocactus gracilis \N \N \N \N \N 66267 C.1 Charybdis Charybdis sp. 1 \N \N \N \N \N 66268 P.rubicunda Pouteria Pouteria rubicunda \N \N \N \N \N 66269 I.hymenospatha Iris Iris hymenospatha \N \N \N \N \N 66270 C.3069 Coffea Coffea sp. Davis 3069 \N \N \N \N \N 66271 C.serbica Cardamine Cardamine serbica \N \N \N \N \N 66272 P.sp. Phalaenopsis Phalaenopsis sp. \N \N \N \N \N 66273 C.peregrina Comptonia Comptonia peregrina \N \N \N \N \N 66274 H.azorica Hedera Hedera azorica \N \N \N \N \N 66275 G.concolor Glochidion Glochidion concolor \N \N \N \N \N 66276 A.rivularis Astilbe Astilbe rivularis \N \N \N \N \N 66277 G.lateralis Gasteranthus Gasteranthus lateralis \N \N \N \N \N 66278 R.divaricatus Rubus Rubus divaricatus \N \N \N \N \N 66279 L.jaime-hintonianus Lupinus Lupinus jaime-hintonianus \N \N \N \N \N 66280 S.iberica Stipa Stipa iberica \N \N \N \N \N 66281 P.dahlstedtii Peperomia Peperomia dahlstedtii \N \N \N \N \N 66282 P.densus Peristylus Peristylus densus \N \N \N \N \N 66283 P.SXL-2010a Phyllanthus Phyllanthus sp. SXL-2010a \N \N \N \N \N 66284 \N family Verbenaceae verbena family \N \N \N \N 66285 \N genus Chengiopanax \N \N \N \N \N 66286 \N genus Sesamothamnus \N \N \N \N \N 66287 B.SS-2008 Brachystelma Brachystelma sp. SS-2008 \N \N \N \N \N 66288 T.gladiata Trigonella Trigonella gladiata \N \N \N \N \N 66289 S.fimbriatus Sporobolus Sporobolus fimbriatus \N \N \N \N \N 66290 P.greenwelliae Psychotria Psychotria greenwelliae \N \N \N \N \N 66291 A.glauca Ardisia Ardisia glauca \N \N \N \N \N 66292 T.pallens Tricalysia Tricalysia pallens \N \N \N \N \N 66293 A.aptera Ainsliaea Ainsliaea aptera \N \N \N \N \N 66294 S.pseudotites Silene Silene pseudotites \N \N \N \N \N 66295 T.jordanis Tamarix Tamarix jordanis \N \N \N \N \N 66296 M.palustris Matelea Matelea palustris \N \N \N \N \N 66297 A.maccraei Acrothamnus Acrothamnus maccraei \N \N \N \N \N 66298 O.hirsuta Opercularia Opercularia hirsuta \N \N \N \N \N 66299 H.orientale Hypericum Hypericum orientale \N \N \N \N \N 66300 S.uliginosa Saussurea Saussurea uliginosa \N \N \N \N \N 66301 R.camtschaticum Rhododendron Rhododendron camtschaticum \N \N \N \N \N 66302 H.palauensis Hydriastele Hydriastele palauensis \N \N \N \N \N 66303 P.LMP-2002-2 Plagiostachys Plagiostachys sp. LMP-2002-2 \N \N \N \N \N 66304 E.gracilipes Epilobium Epilobium gracilipes \N \N \N \N \N 66305 \N tribe Anthocercideae \N \N \N \N \N 66306 E.precatoria Euterpe Euterpe precatoria \N \N \N \N \N 66307 M.viscosa Macrocarpaea Macrocarpaea viscosa \N \N \N \N \N 66308 H.steyermarkii Heteropterys Heteropterys steyermarkii \N \N \N \N \N 66309 A.mangium Acacia Acacia auriculiformis x Acacia mangium \N \N \N \N \N 66310 \N genus Ptilothrix \N \N \N \N \N 66311 H.shenzhenensis Hedyotis Hedyotis shenzhenensis \N \N \N \N \N 66312 \N genus x Festulolium \N \N \N \N \N 66313 L.pavonii Ladenbergia Ladenbergia pavonii \N \N \N \N \N 66314 A.glauca Argemone Argemone glauca \N \N \N \N \N 66315 R.gracilis Rhodocoma Rhodocoma gracilis \N \N \N \N \N 66316 R.effusa Rhodomyrtus Rhodomyrtus effusa \N \N \N \N \N 66317 \N subspecies Androsace septentrionalis subsp. subulifera \N \N \N \N \N 66318 N.polychroma Nonea Nonea polychroma \N \N \N \N \N 66319 A.GG01298 Acer Acer cf. opalus Grimm GG01298 \N \N \N \N \N 66320 F.luciarum Festuca Festuca luciarum \N \N \N \N \N 66321 \N no rank Australasian lineages \N \N \N \N \N 66322 S.serpens Solanum Solanum serpens \N \N \N \N \N 66323 \N genus Scopellaria \N \N \N \N \N 66324 O.spinosa Oncoba Oncoba spinosa \N \N \N \N \N 66325 S.reptans Salix Salix reptans \N \N \N \N \N 66326 \N genus Hesperothamnus \N \N \N \N \N 66327 P.malacoides Primula Primula malacoides baby primrose,fairy primrose \N \N \N \N 66328 M.dalessandroi Maxillaria Maxillaria dalessandroi \N \N \N \N \N 66329 T.ichangense Thalictrum Thalictrum ichangense \N \N \N \N \N 66330 E.photiniifolius Elaeocarpus Elaeocarpus photiniifolius \N \N \N \N \N 66331 C.ambiguus Calochortus Calochortus ambiguus \N \N \N \N \N 66332 B.amurensis Berberis Berberis amurensis \N \N \N \N \N 66333 \N genus Mesona \N \N \N \N \N 66334 \N genus Streptanthus \N \N \N \N \N 66335 S.unguiculata Saxifraga Saxifraga unguiculata \N \N \N \N \N 66336 C.cernua Coccineorchis Coccineorchis cernua \N \N \N \N \N 66337 P.articulatum Psilocaulon Psilocaulon articulatum \N \N \N \N \N 66338 E.cante Echeveria Echeveria cante \N \N \N \N \N 66339 V.corriganii Hebe Veronica corriganii \N \N \N \N \N 66340 G.variegata Guzmania Guzmania variegata \N \N \N \N \N 66341 I.rugosa Ilex Ilex rugosa tsuru holly \N \N \N \N 66342 L.perpusilla Lemna Lemna perpusilla \N \N \N \N \N 66343 \N genus Erythrostemon \N \N \N \N \N 66344 A.longipedicellata Alcea Alcea longipedicellata \N \N \N \N \N 66345 B.myrtoides Bobea Bobea myrtoides \N \N \N \N \N 66346 M.kermadecensis Metrosideros Metrosideros kermadecensis \N \N \N \N \N 66347 S.micrantha Strobilanthes Strobilanthes micrantha \N \N \N \N \N 66348 B.ornata Bossiaea Bossiaea ornata \N \N \N \N \N 66349 V.B Viola Viola sp. nov. B \N \N \N \N \N 66350 \N genus Dieteria \N \N \N \N \N 66351 P.axiflora Pimelea Pimelea axiflora \N \N \N \N \N 66352 J.nodosus Juncus Juncus nodosus \N \N \N \N \N 66353 L.scoparius Lotus Lotus scoparius \N \N \N \N \N 66354 R.foraminifera Rhaphidophora Rhaphidophora foraminifera \N \N \N \N \N 66355 \N subspecies Olea europaea subsp. europaea \N \N \N \N \N 66356 C.BAW-2002 Corchorus Corchorus sp. BAW-2002 \N \N \N \N \N 66357 P.gairdneri Perideridia Perideridia gairdneri \N \N \N \N \N 66358 \N genus Leptaulus \N \N \N \N \N 66359 A.reticulatum Anomospermum Anomospermum reticulatum \N \N \N \N \N 66360 G.euphlebia Greeniopsis Greeniopsis euphlebia \N \N \N \N \N 66361 D.longipes Drosanthemum Drosanthemum longipes \N \N \N \N \N 66362 D.carthagenensis Dalea Dalea carthagenensis \N \N \N \N \N 66363 H.non-scripta Hyacinthoides Hyacinthoides non-scripta English bluebell \N \N \N \N 66364 B.andicola Bidens Bidens andicola \N \N \N \N \N 66365 P.hesperia Poa Poa hesperia \N \N \N \N \N 66366 Y.aloifolia Yucca Yucca aloifolia dagger plant \N \N \N \N 66367 \N varietas Vigna oblongifolia var. oblongifolia \N \N \N \N \N 66368 A.calycina Amsinckia Amsinckia calycina \N \N \N \N \N 66369 M.maudiae Michelia Michelia maudiae \N \N \N \N \N 66370 A.grosii Antirrhinum Antirrhinum grosii \N \N \N \N \N 66371 R.fockeanus Rubus Rubus fockeanus \N \N \N \N \N 66372 P.hypospodius Phyllanthus Phyllanthus hypospodius \N \N \N \N \N 66373 M.RJM-2009 Matthiola Matthiola sp. 1 RJM-2009 \N \N \N \N \N 66374 \N genus Gossypioides \N \N \N \N \N 66375 D.klossii Deschampsia Deschampsia klossii \N \N \N \N \N 66376 D.ZFS-2005-2 Diuris Diuris aff. chryseopsis ZFS-2005-2 \N \N \N \N \N 66377 B.gracilis Bisgoeppertia Bisgoeppertia gracilis \N \N \N \N \N 66378 \N genus Pervillaea \N \N \N \N \N 66379 \N genus Asplundia \N \N \N \N \N 66380 R.inodora Reseda Reseda inodora \N \N \N \N \N 66381 P.decurrens Protea Protea decurrens \N \N \N \N \N 66382 A.argillosa Artemisia Artemisia argillosa \N \N \N \N \N 66383 C.eubracteata Columnea Columnea eubracteata \N \N \N \N \N 66384 D.K20613 Diospyros Diospyros sp. K20613 \N \N \N \N \N 66385 S.nervosus Schizocarphus Schizocarphus nervosus \N \N \N \N \N 66386 N.dentata Nassauvia Nassauvia dentata \N \N \N \N \N 66387 C.achtarovii Centaurea Centaurea achtarovii \N \N \N \N \N 66388 \N genus Skytanthus \N \N \N \N \N 66389 A.monophylla Atalantia Atalantia monophylla \N \N \N \N \N 66390 D.anticarius Dianthus Dianthus anticarius \N \N \N \N \N 66391 L.carinatus Leochilus Leochilus carinatus \N \N \N \N \N 66392 G.hyalinus Gladiolus Gladiolus hyalinus \N \N \N \N \N 66393 W.coagulans Withania Withania coagulans Indian rennet,panirband,vegetable rennet \N \N \N \N 66394 L.sphaerocarpa Ludwigia Ludwigia sphaerocarpa \N \N \N \N \N 66395 R.arborea Rinorea Rinorea arborea \N \N \N \N \N 66396 E.alatum Eriogonum Eriogonum alatum \N \N \N \N \N 66397 R.tachiroei Rupiphila Rupiphila tachiroei \N \N \N \N \N 66398 \N genus Charpentiera \N \N \N \N \N 66399 L.cuneata Lagenophora Lagenophora cuneata \N \N \N \N \N 66400 \N genus Woodfordia \N \N \N \N \N 66401 \N varietas Sarcocornia fruticosa var. deflexa \N \N \N \N \N 66402 A.angustifolia Asclepias Asclepias angustifolia \N \N \N \N \N 66403 A.sublessingiana Artemisia Artemisia sublessingiana \N \N \N \N \N 66404 L.minoricensis Lysimachia Lysimachia minoricensis \N \N \N \N \N 66405 G.SH-2010 Galearis Galearis sp. SH-2010 \N \N \N \N \N 66406 A.aucheri Alcea Alcea aucheri \N \N \N \N \N 66407 G.villosum Gompholobium Gompholobium villosum \N \N \N \N \N 66408 F.yoponensis Ficus Ficus yoponensis \N \N \N \N \N 66409 G.hainanensis Gmelina Gmelina hainanensis \N \N \N \N \N 66410 \N genus Sorbaria \N \N \N \N \N 66411 A.roxburghii Arisaema Arisaema roxburghii \N \N \N \N \N 66412 S.costaricana Symplocos Symplocos costaricana \N \N \N \N \N 66413 Z.spectabile Zingiber Zingiber spectabile \N \N \N \N \N 66414 \N genus Breynia \N \N \N \N \N 66415 M.brevipes Mammea Mammea brevipes \N \N \N \N \N 66416 O.msoo Oxystigma Oxystigma msoo \N \N \N \N \N 66417 R.flanaganii Raphionacme Raphionacme flanaganii \N \N \N \N \N 66418 O.stellulata Onosma Onosma stellulata \N \N \N \N \N 66419 S.alatipes Stevia Stevia alatipes \N \N \N \N \N 66420 O.tabaconasensis Oxalis Oxalis tabaconasensis \N \N \N \N \N 66421 \N subspecies Liparia splendens subsp. splendens \N \N \N \N \N 66422 A.cernuum Allium Allium cernuum \N \N \N \N \N 66423 R.grandiflora Rauvolfia Rauvolfia grandiflora \N \N \N \N \N 66424 C.tintinnabula Cyrtandra Cyrtandra tintinnabula \N \N \N \N \N 66425 \N genus Caylusea \N \N \N \N \N 66426 \N varietas Salvia omerocalyx var. prostrata \N \N \N \N \N 66427 M.cisplatensis Myrcianthes Myrcianthes cisplatensis \N \N \N \N \N 66428 \N genus Horaninovia \N \N \N \N \N 66429 M.uncinatus Myoxanthus Myoxanthus uncinatus \N \N \N \N \N 66430 A.braun-blanquetii Antirrhinum Antirrhinum braun-blanquetii \N \N \N \N \N 66431 \N genus Trigonotis \N \N \N \N \N 66432 P.ocimoides Platostoma Platostoma ocimoides \N \N \N \N \N 66433 \N genus Bobea \N \N \N \N \N 66434 A.schidigera Agave Agave schidigera \N \N \N \N \N 66435 P.pancheri Polyscias Polyscias pancheri \N \N \N \N \N 66436 O.imitans Oncidium Oncidium imitans \N \N \N \N \N 66437 C.pearnii Commersonia Commersonia pearnii \N \N \N \N \N 66438 \N genus Espeletiopsis \N \N \N \N \N 66439 P.texana Polytaenia Polytaenia texana \N \N \N \N \N 66440 \N subspecies Conostylis aculeata subsp. cygnorum \N \N \N \N \N 66441 \N genus Prionanthium \N \N \N \N \N 66442 G.dependens Gonzalagunia Gonzalagunia dependens \N \N \N \N \N 66443 \N subspecies Carpinus caroliniana subsp. virginiana \N \N \N \N \N 66444 G.lactovirens Glycine Glycine lactovirens \N \N \N \N \N 66445 L.petelotii Lysimachia Lysimachia petelotii \N \N \N \N \N 66446 \N subspecies Suaeda maritima subsp. maritima \N \N \N \N \N 66447 S.concolor Symphyotrichum Symphyotrichum concolor eastern silvery aster \N \N \N \N 66448 S.molweniensis Streptocarpus Streptocarpus molweniensis \N \N \N \N \N 66449 T.s2.4216 unclassified Taraxacum Taraxacum (sect. Piesis) sp. s2.4216 \N \N \N \N \N 66450 H.132/83 Hydnophytum Hydnophytum sp. C.H. Lambrick 132/83 \N \N \N \N \N 66451 P.parviflora Polysphaeria Polysphaeria parviflora \N \N \N \N \N 66452 \N genus Omoea \N \N \N \N \N 66453 P.carneum Polemonium Polemonium carneum \N \N \N \N \N 66454 A.lanceolata Arctotis Arctotis lanceolata \N \N \N \N \N 66455 B.scapigera Brachyscome Brachyscome scapigera \N \N \N \N \N 66456 H.clinophila Heliconia Heliconia clinophila \N \N \N \N \N 66457 G.mespilifolium Gymnanthemum Gymnanthemum mespilifolium \N \N \N \N \N 66458 P.gracilis Pseudoselago Pseudoselago gracilis \N \N \N \N \N 66459 R.sessilifolia Reseda Reseda sessilifolia \N \N \N \N \N 66460 C.geoides Coluria Coluria geoides \N \N \N \N \N 66461 R.kerrii Rafflesia Rafflesia kerrii \N \N \N \N \N 66462 H.subulata Heliophila Heliophila subulata \N \N \N \N \N 66463 I.barbatus Indocalamus Indocalamus barbatus \N \N \N \N \N 66464 S.nana Silene Silene nana \N \N \N \N \N 66465 P.saturata Primula Primula saturata \N \N \N \N \N 66466 C.nutans Cerastium Cerastium nutans \N \N \N \N \N 66467 M.grandiflora Mechowia Mechowia grandiflora \N \N \N \N \N 66468 C.capitata Carex Carex capitata \N \N \N \N \N 66469 P.stenantha Pereskia Pereskia stenantha \N \N \N \N \N 66470 S.decipiens Streptocarpus Streptocarpus decipiens \N \N \N \N \N 66471 C.DK-2009 Carapa Carapa sp. 20 DK-2009 \N \N \N \N \N 66472 A.woodii Asclepias Asclepias woodii \N \N \N \N \N 66473 P.orbicularis Primula Primula orbicularis \N \N \N \N \N 66474 \N genus Hylandia \N \N \N \N \N 66475 A.satureioides Achyrocline Achyrocline satureioides macela \N \N \N \N 66476 F.muralis Fumaria Fumaria muralis \N \N \N \N \N 66477 M.sempervivi Mammillaria Mammillaria sempervivi \N \N \N \N \N 66478 E.microtheca Eucalyptus Eucalyptus microtheca \N \N \N \N \N 66479 F.venusta Felicia Felicia venusta \N \N \N \N \N 66480 P.tricornuta Pennellia Pennellia tricornuta Rincon Mountain rockcress \N \N \N \N 66481 D.elata Delonix Delonix elata \N \N \N \N \N 66482 D.paullinioides Disynstemon Disynstemon paullinioides \N \N \N \N \N 66483 H.maximum Hedychium Hedychium maximum \N \N \N \N \N 66484 S.crithmoides Senecio Senecio crithmoides \N \N \N \N \N 66485 A.30.06.1980 Arabis Arabis cf. stenocarpa Ladero et al. 30.06.1980 \N \N \N \N \N 66486 T.diversifolia Tithonia Tithonia diversifolia \N \N \N \N \N 66487 A.crassifolia Aerides Aerides crassifolia \N \N \N \N \N 66488 A.ulvaceus Aponogeton Aponogeton ulvaceus \N \N \N \N \N 66489 L.concinna Legrandia Legrandia concinna \N \N \N \N \N 66490 \N varietas Chamaecrista desvauxii var. mollissima \N \N \N \N \N 66491 C.fortunei Chloranthus Chloranthus fortunei \N \N \N \N \N 66492 M.tomentosum Mesembryanthemum Mesembryanthemum tomentosum \N \N \N \N \N 66493 P.capillaris Podolepis Podolepis capillaris \N \N \N \N \N 66494 C.chilensis Carpobrotus Carpobrotus chilensis sea-fig \N \N \N \N 66495 C.piluliferus Croton Croton piluliferus \N \N \N \N \N 66496 W.tenella Wahlenbergia Wahlenbergia tenella \N \N \N \N \N 66497 G.elata Guatteria Guatteria elata \N \N \N \N \N 66498 P.purpurascens Petiniotia Petiniotia purpurascens \N \N \N \N \N 66499 U.hirsuta Uncaria Uncaria hirsuta \N \N \N \N \N 66500 E.verruculosa Euphorbia Euphorbia verruculosa \N \N \N \N \N 66501 \N tribe Westringieae \N \N \N \N \N 66502 P.segetum Persicaria Persicaria segetum \N \N \N \N \N 66503 A.comosa Alluaudia Alluaudia comosa \N \N \N \N \N 66504 A.abyssinica Antopetitia Antopetitia abyssinica \N \N \N \N \N 66505 V.s.n. Vallisneria Vallisneria sp. Wilstermann s.n. \N \N \N \N \N 66506 P.longifolia Pinguicula Pinguicula longifolia \N \N \N \N \N 66507 M.parviflorum Muscari Muscari parviflorum \N \N \N \N \N 66508 R.thomsonii Rubus Rubus thomsonii \N \N \N \N \N 66509 L.lysimachioides Lycianthes Lycianthes lysimachioides \N \N \N \N \N 66510 T.biseriata Tristachya Tristachya biseriata \N \N \N \N \N 66511 \N genus Nemastylis \N \N \N \N \N 66512 \N genus Haplosphaera \N \N \N \N \N 66513 A.lobata Arachnorchis Arachnorchis lobata \N \N \N \N \N 66514 C.pelistericus Crocus Crocus pelistericus \N \N \N \N \N 66515 S.88147 Salicornia Salicornia aff. depressa Ford 88147 \N \N \N \N \N 66516 N.leptalea Navarretia Navarretia leptalea \N \N \N \N \N 66517 H.rosa-sinensis Hibiscus Hibiscus rosa-sinensis rose-of-China,shoebackplant \N \N \N \N 66518 \N subspecies Lavatera triloba subsp. triloba \N \N \N \N \N 66519 \N genus Eremochloa \N \N \N \N \N 66520 B.rupicola Bursera Bursera rupicola \N \N \N \N \N 66521 B.haastii Brachyglottis Brachyglottis haastii \N \N \N \N \N 66522 T.punctatus Thamnochortus Thamnochortus punctatus \N \N \N \N \N 66523 E.ciliaris Elymus Elymus ciliaris \N \N \N \N \N 66524 C.aucheri Cochlearia Cochlearia aucheri \N \N \N \N \N 66525 A.purpuratum Afrolimon Afrolimon purpuratum \N \N \N \N \N 66526 V.philippiana Valeriana Valeriana philippiana \N \N \N \N \N 66527 O.vokelanti Oncidium Oncidium vokelanti \N \N \N \N \N 66528 \N tribe Cryptangieae \N \N \N \N \N 66529 C.pusillum Cerastium Cerastium pusillum \N \N \N \N \N 66530 E.tapos Elateriospermum Elateriospermum tapos \N \N \N \N \N 66531 \N genus Tetrapterocarpon \N \N \N \N \N 66532 S.saxatilis Senecio Senecio saxatilis \N \N \N \N \N 66533 C.jacobinea Chamaecrista Chamaecrista jacobinea \N \N \N \N \N 66534 P.pseudocarolinensis Persea Persea pseudocarolinensis \N \N \N \N \N 66535 \N genus Nestronia \N \N \N \N \N 66536 C.Fiji Coriaria Coriaria sp. Fiji \N \N \N \N \N 66537 C.castlegarensis Crataegus Crataegus castlegarensis \N \N \N \N \N 66538 \N genus Ascolepis \N \N \N \N \N 66539 A.bullatus Acropogon Acropogon bullatus \N \N \N \N \N 66540 \N genus Talipariti \N \N \N \N \N 66541 A.pedicellata Aechmea Aechmea pedicellata \N \N \N \N \N 66542 A.NSW415757 Astroloma Astroloma sp. NSW415757 \N \N \N \N \N 66543 S.umbrosa Schefflera Schefflera umbrosa \N \N \N \N \N 66544 R.parviflorum Rhynchotechum Rhynchotechum parviflorum \N \N \N \N \N 66545 A.villosa Aeschynomene Aeschynomene villosa \N \N \N \N \N 66546 L.platycarpa Lotononis Lotononis platycarpa \N \N \N \N \N 66547 \N genus Chalema \N \N \N \N \N 66548 C.supina Carex Carex supina \N \N \N \N \N 66549 N.albomarginata Nepenthes Nepenthes albomarginata \N \N \N \N \N 66550 S.ternata Saprosma Saprosma ternata \N \N \N \N \N 66551 D.lacteum Dendrochilum Dendrochilum lacteum \N \N \N \N \N 66552 G.ligulata Gigantochloa Gigantochloa ligulata \N \N \N \N \N 66553 M.bellioides Monoptilon Monoptilon bellioides \N \N \N \N \N 66554 G.andrewsii Galium Galium andrewsii \N \N \N \N \N 66555 A.megacarpa Alkanna Alkanna megacarpa \N \N \N \N \N 66556 A.cordata Aralia Aralia cordata \N \N \N \N \N 66557 C.humilis Carex Carex humilis \N \N \N \N \N 66558 \N genus Crypsis \N \N \N \N \N 66559 \N genus Pelliciera \N \N \N \N \N 66560 A.himalaicum Asarum Asarum himalaicum \N \N \N \N \N 66561 P.coronopus Plantago Plantago coronopus \N \N \N \N \N 66562 H.arnhemensis Hibiscus Hibiscus arnhemensis \N \N \N \N \N 66563 H.LW-2011 Hoya Hoya sp. LW-2011 \N \N \N \N \N 66564 A.aphylla Anabasis Anabasis aphylla \N \N \N \N \N 66565 T.beuthii Tropaeolum Tropaeolum beuthii \N \N \N \N \N 66566 I.kinabaluensis Ilex Ilex kinabaluensis \N \N \N \N \N 66567 P.floridanus Potamogeton Potamogeton floridanus \N \N \N \N \N 66568 \N genus Ixora \N \N \N \N \N 66569 F.villosa Ficus Ficus villosa \N \N \N \N \N 66570 P.thurberi Penstemon Penstemon thurberi \N \N \N \N \N 66571 \N genus Orites \N \N \N \N \N 66572 \N subspecies Centropogon granulosus subsp. nutans \N \N \N \N \N 66573 L.fasciculata Leptoderris Leptoderris fasciculata \N \N \N \N \N 66574 \N genus Prionostemma \N \N \N \N \N 66575 T.sericea Temnopteryx Temnopteryx sericea \N \N \N \N \N 66576 \N genus Dyscritothamnus \N \N \N \N \N 66577 O.subsessile Orthion Orthion subsessile \N \N \N \N \N 66578 E.audax Euchiton Euchiton audax \N \N \N \N \N 66579 \N genus Mycelis \N \N \N \N \N 66580 D.furcatus Dianthus Dianthus furcatus \N \N \N \N \N 66581 \N genus Pisum \N \N \N \N \N 66582 P.chaiana Pinanga Pinanga chaiana \N \N \N \N \N 66583 \N genus Levisticum \N \N \N \N \N 66584 M.puberula Melicope Melicope puberula \N \N \N \N \N 66585 C.crotonoides Capparis Capparis crotonoides \N \N \N \N \N 66586 E.gnaphalocarpa Eurya Eurya gnaphalocarpa \N \N \N \N \N 66587 \N genus Xylocalyx \N \N \N \N \N 66591 A.cappadocicum Acer Acer cappadocicum \N \N \N \N \N 66592 L.laxiflora Lobelia Lobelia laxiflora \N \N \N \N \N 66593 R.laxa Rosa Rosa laxa \N \N \N \N \N 66594 A.clemensii Anthorrhiza Anthorrhiza clemensii \N \N \N \N \N 66595 \N genus Garnotia \N \N \N \N \N 66596 H.watsonii Hoffmannseggia Hoffmannseggia watsonii \N \N \N \N \N 66597 S.fibrosus Synechanthus Synechanthus fibrosus \N \N \N \N \N 66598 S.hookeriana Soroseris Soroseris hookeriana \N \N \N \N \N 66599 U.blumeanum Urophyllum Urophyllum blumeanum \N \N \N \N \N 66600 L.traversii Luzula Luzula traversii \N \N \N \N \N 66601 C.vesicaria Crepis Crepis vesicaria \N \N \N \N \N 66602 R.rhomboidea Rhoicissus Rhoicissus rhomboidea \N \N \N \N \N 66603 P.viperinus Peniocereus Peniocereus viperinus \N \N \N \N \N 66604 P.minor Pachira Pachira minor \N \N \N \N \N 66605 L.aurea Lamarckia Lamarckia aurea \N \N \N \N \N 66606 T.s6294 unclassified Taraxacum Taraxacum (sect. Erythrocarpa) sp. s6294 \N \N \N \N \N 66607 A.glaucocaesia Acacia Acacia glaucocaesia \N \N \N \N \N 66608 M.elaeagnoides Matayba Matayba elaeagnoides \N \N \N \N \N 66609 G.'chelelu' Guizotia Guizotia sp. 'chelelu' \N \N \N \N \N 66610 \N genus Pilea \N \N \N \N \N 66611 \N tribe Homalieae \N \N \N \N \N 66612 V.lindleyi Verticordia Verticordia lindleyi \N \N \N \N \N 66613 P.lucida Parastrephia Parastrephia lucida \N \N \N \N \N 66614 V.chungii Vitis Vitis chungii \N \N \N \N \N 66615 O.passionis Ophrys Ophrys passionis \N \N \N \N \N 66616 A.pansa Aristida Aristida pansa \N \N \N \N \N 66617 T.stolonifera Tephroseris Tephroseris stolonifera \N \N \N \N \N 66618 S.gentryi Stylogyne Stylogyne gentryi \N \N \N \N \N 66619 P.taochius Psephellus Psephellus taochius \N \N \N \N \N 66620 F.californica Festuca Festuca californica California fescue \N \N \N \N 66621 G.liliputana Gasteria Gasteria liliputana \N \N \N \N \N 66622 L.cuneifolia Leucas Leucas cuneifolia \N \N \N \N \N 66623 G.longipes Gomesa Gomesa longipes \N \N \N \N \N 66624 O.2365 Oncidium Oncidium sp. Dalstroem 2365 \N \N \N \N \N 66625 V.plantaginea Valeriana Valeriana plantaginea \N \N \N \N \N 66626 A.pedatifida Artemisia Artemisia pedatifida \N \N \N \N \N 66627 E.humeana Erythrina Erythrina humeana \N \N \N \N \N 66628 \N genus Rhododon \N \N \N \N \N 66629 D.pauciflora Dactylaena Dactylaena pauciflora \N \N \N \N \N 66630 C.sonchifolium Crepidiastrum Crepidiastrum sonchifolium \N \N \N \N \N 66631 S.engleri Swertia Swertia engleri \N \N \N \N \N 66632 G.forrestii Gaultheria Gaultheria forrestii \N \N \N \N \N 66633 R.cedilloi Ruellia Ruellia cedilloi \N \N \N \N \N 66634 C.MAG-2009 unclassified Celastraceae Celastraceae sp. MAG-2009 \N \N \N \N \N 66635 T.platyphyllos Tilia Tilia platyphyllos broad-leaved lime \N \N \N \N 66636 G.10016 Gonatopus Gonatopus sp. Brummitt 10016 \N \N \N \N \N 66637 \N forma Rhipsalis teres f. costaricensis \N \N \N \N \N 66638 \N varietas Saussurea nikoensis var. sessiliflora \N \N \N \N \N 66639 S.quevae Sedum Sedum quevae \N \N \N \N \N 66640 A.satsumense Asarum Asarum satsumense \N \N \N \N \N 66641 C.lucidum Coelopleurum Coelopleurum lucidum \N \N \N \N \N 66642 P.laxiflorens Psydrax Psydrax laxiflorens \N \N \N \N \N 66643 S.sessilis Strobilanthes Strobilanthes sessilis \N \N \N \N \N 66644 M.friwaldskyanum Marrubium Marrubium friwaldskyanum \N \N \N \N \N 66645 M.tenuibulba Maxillaria Maxillaria tenuibulba \N \N \N \N \N 66646 A.pungens Armeria Armeria pungens \N \N \N \N \N 66647 V.constricta Vachellia Vachellia constricta \N \N \N \N \N 66648 G.setosa Gnidia Gnidia setosa \N \N \N \N \N 66649 C.dichotomum Capnophyllum Capnophyllum dichotomum \N \N \N \N \N 66650 A.erinaceum Acanthocardamum Acanthocardamum erinaceum \N \N \N \N \N 66651 \N genus Agrostistachys \N \N \N \N \N 66652 M.balladoniense Myriophyllum Myriophyllum balladoniense \N \N \N \N \N 66656 \N varietas Adenia hastata var. hastata \N \N \N \N \N 66657 P.P135 Physalis Physalis sp. P135 \N \N \N \N \N 66658 M.thomasiae Moraea Moraea thomasiae \N \N \N \N \N 66659 \N genus Sempervivum \N \N \N \N \N 66660 B.bohniana Bauhinia Bauhinia bohniana \N \N \N \N \N 66661 G.hirsutus Gladiolus Gladiolus hirsutus \N \N \N \N \N 66662 \N genus Diaspis \N \N \N \N \N 66663 C.multicaulis Carex Carex multicaulis \N \N \N \N \N 66664 B.baxteri Banksia Banksia baxteri \N \N \N \N \N 66665 P.annamense Platostoma Platostoma annamense \N \N \N \N \N 66666 S.ecklonii Schoenoxiphium Schoenoxiphium ecklonii \N \N \N \N \N 66667 H.T7 Holothrix Holothrix sp. T7 \N \N \N \N \N 66668 C.brachystachya Chamaecrista Chamaecrista brachystachya \N \N \N \N \N 66669 C.phaeotricha Calceolaria Calceolaria phaeotricha \N \N \N \N \N 66670 \N genus Coespeletia \N \N \N \N \N 66671 \N subspecies Nicoraepoa subenervis subsp. subenervis \N \N \N \N \N 66672 L.spiculata Lymania Lymania spiculata \N \N \N \N \N 66673 H.pseudolittoralis Hoya Hoya pseudolittoralis \N \N \N \N \N 66674 \N varietas Chrysanthemoides monilifera var.nov. NPB-2009b \N \N \N \N \N 66675 C.laotica Caryodaphnopsis Caryodaphnopsis laotica \N \N \N \N \N 66676 H.ericoides Hinterhubera Hinterhubera ericoides \N \N \N \N \N 66677 E.00-6720 Elettariopsis Elettariopsis sp. Kress 00-6720 \N \N \N \N \N 66678 P.reticulatus Phyllanthus Phyllanthus reticulatus \N \N \N \N \N 66679 B.laevifolia Banisteriopsis Banisteriopsis laevifolia \N \N \N \N \N 66680 I.pygmaea Ivesia Ivesia pygmaea \N \N \N \N \N 66681 \N subspecies Armeria maritima subsp. californica \N \N \N \N \N 66682 \N genus Synstemon \N \N \N \N \N 66683 C.ericetorum Carex Carex ericetorum \N \N \N \N \N 66684 N.media Neonauclea Neonauclea media \N \N \N \N \N 66685 C.macrorrhizum Chlorophytum Chlorophytum macrorrhizum \N \N \N \N \N 66686 E.empetrifolius Euryops Euryops empetrifolius \N \N \N \N \N 66687 M.gracilis Microsteris Microsteris gracilis \N \N \N \N \N 66688 \N genus Polyctenium \N \N \N \N \N 66689 E.ochroleucus Erigeron Erigeron ochroleucus \N \N \N \N \N 66690 W.mexicana Willardia Willardia mexicana \N \N \N \N \N 66691 S.cardinalis Sinningia Sinningia cardinalis \N \N \N \N \N 66692 A.archboldiana Aglaia Aglaia archboldiana \N \N \N \N \N 66693 F.rothmaleri Festuca Festuca rothmaleri \N \N \N \N \N 66694 S.caudatum Stichoneuron Stichoneuron caudatum \N \N \N \N \N 66695 A.momiyamae Artemisia Artemisia momiyamae \N \N \N \N \N 66696 D.guianensis Discophora Discophora guianensis \N \N \N \N \N 66697 B.silvaticus Basistemon Basistemon silvaticus \N \N \N \N \N 66698 A.violifolia Adenocline Adenocline violifolia \N \N \N \N \N 66699 \N no rank Anthemideae incertae sedis \N \N \N \N \N 66700 C.falcatus Cyrtanthus Cyrtanthus falcatus \N \N \N \N \N 66701 \N subspecies Arceuthobium aureum subsp. petersonii \N \N \N \N \N 66702 F.gypsacea Ferula Ferula gypsacea \N \N \N \N \N 66703 E.smithii Eryngium Eryngium smithii \N \N \N \N \N 66704 H.glaucum Hieracium Hieracium glaucum \N \N \N \N \N 66705 C.platystoma Cyathodes Cyathodes platystoma \N \N \N \N \N 66706 L.adenothrix Leandra Leandra adenothrix \N \N \N \N \N 66707 R.australe Rhaponticum Rhaponticum australe \N \N \N \N \N 66708 C.mappia Cyphostemma Cyphostemma mappia \N \N \N \N \N 66709 P.tabacum Primulina Primulina tabacum \N \N \N \N \N 66710 C.tenuifolia Curtia Curtia tenuifolia \N \N \N \N \N 66711 V.texana Valerianella Valerianella texana \N \N \N \N \N 66712 V.macrantha Hebe Veronica macrantha \N \N \N \N \N 66713 R.polypus Renealmia Renealmia polypus \N \N \N \N \N 66714 E.dura Ehrharta Ehrharta dura \N \N \N \N \N 66715 M.pilosa Manihot Manihot pilosa \N \N \N \N \N 66716 T.ledebouri Trollius Trollius ledebouri \N \N \N \N \N 66717 K.pulchra Kaempferia Kaempferia pulchra \N \N \N \N \N 66718 \N genus Delavaya \N \N \N \N \N 66719 G.arkansana Glyceria Glyceria arkansana \N \N \N \N \N 66720 P.quadrangularis Passiflora Passiflora quadrangularis giant granadilla,granadilla \N \N \N \N 66721 M.braybonae Mystacidium Mystacidium braybonae \N \N \N \N \N 66722 T.calva Tithonia Tithonia calva \N \N \N \N \N 66723 P.lanuginosa Psathyrostachys Psathyrostachys lanuginosa \N \N \N \N \N 66724 A.salicifolia Ateleia Ateleia salicifolia \N \N \N \N \N 66725 M.xavantinae Mimosa Mimosa xavantinae \N \N \N \N \N 66726 R.maderensis Rumex Rumex maderensis \N \N \N \N \N 66727 K.cordifolia Keckiella Keckiella cordifolia heartleaf keckiella \N \N \N \N 66728 \N subspecies Ligustrum robustum subsp. chinense \N \N \N \N \N 66729 H.pulchella Haworthia Haworthia pulchella \N \N \N \N \N 66730 S.jaubertii Sophora Sophora jaubertii \N \N \N \N \N 66731 A.capensis Athrixia Athrixia capensis \N \N \N \N \N 66732 M.pseudokobu Machilus Machilus pseudokobu \N \N \N \N \N 66733 \N genus Dirhamphis \N \N \N \N \N 66734 O.osmitoides Osmitopsis Osmitopsis osmitoides \N \N \N \N \N 66735 R.bremekampiana Rudgea Rudgea bremekampiana \N \N \N \N \N 66736 K.pauciflora Kniphofia Kniphofia pauciflora \N \N \N \N \N 66737 C.tumida Citrus Citrus tumida \N \N \N \N \N 66738 P.ouranogyne Pentanisia Pentanisia ouranogyne \N \N \N \N \N 66739 G.hamiltonii Gunnera Gunnera hamiltonii \N \N \N \N \N 66740 P.organensis Peplonia Peplonia organensis \N \N \N \N \N 66741 P.microcarpus Phyllanthus Phyllanthus microcarpus \N \N \N \N \N 66742 C.apennina Cardamine Cardamine amporitana x Cardamine apennina \N \N \N \N \N 66743 \N genus Picnomon \N \N \N \N \N 66744 \N genus Canavalia \N \N \N \N \N 66745 K.ochreata Kotschya Kotschya ochreata \N \N \N \N \N 66746 R.lorentensis Rudgea Rudgea lorentensis \N \N \N \N \N 66747 I.discolor Ilex Ilex discolor \N \N \N \N \N 66748 D.arctica Draba Draba arctica \N \N \N \N \N 66749 E.flavus Exodeconus Exodeconus flavus \N \N \N \N \N 66750 \N family Marcgraviaceae shingle plant family \N \N \N \N 66751 K.lyratifolia Klasea Klasea lyratifolia \N \N \N \N \N 66752 C.matthiolifolia Centaurea Centaurea matthiolifolia \N \N \N \N \N 66753 S.rigescens Solanum Solanum rigescens \N \N \N \N \N 66754 E.bigelovii Echinopepon Echinopepon bigelovii \N \N \N \N \N 66755 A.aspalathoides Aspalathus Aspalathus aspalathoides \N \N \N \N \N 66756 C.setiflorum Canthium Canthium setiflorum \N \N \N \N \N 66757 C.crassifolia Calycera Calycera crassifolia \N \N \N \N \N 66758 C.cephalariifolia Centaurea Centaurea cephalariifolia \N \N \N \N \N 66759 B.goodii Banksia Banksia goodii \N \N \N \N \N 66760 S.sarcocolla Saltera Saltera sarcocolla \N \N \N \N \N 66761 E.141 Elatostema rostratum group Elatostema cf. rostratum Hadiah 141 \N \N \N \N \N 66762 C.brachycalyx Cuscuta Cuscuta brachycalyx \N \N \N \N \N 66763 S.taccada Scaevola Scaevola taccada beach naupaka,half-flower \N \N \N \N 66764 P.velutina Prosopis Prosopis velutina velvet mesquite \N \N \N \N 66765 \N genus Dapania \N \N \N \N \N 66766 F.purpusii Fraxinus Fraxinus purpusii \N \N \N \N \N 66767 Z.97751 Zeltnera Zeltnera sp. 97751 \N \N \N \N \N 66768 C.graminoides Cyrtochilum Cyrtochilum graminoides \N \N \N \N \N 66769 P.zimapanensis Phaseolus Phaseolus zimapanensis \N \N \N \N \N 66770 S.VLA Silene Silene sp. Yakubov VLA \N \N \N \N \N 66771 V.pseudoreticulata Vitis Vitis pseudoreticulata \N \N \N \N \N 66772 A.kotschoubeyanus Ariocarpus Ariocarpus kotschoubeyanus \N \N \N \N \N 66773 B.barbata Besleria Besleria barbata \N \N \N \N \N 66774 \N varietas Cymbidium cyperifolium var. szechuanicum \N \N \N \N \N 66775 B.118 Begonia Begonia sp. Forrest 118 \N \N \N \N \N 66776 L.JTM-2009b Linguella Linguella sp. JTM-2009b \N \N \N \N \N 66777 C.oklahomensis Calopogon Calopogon oklahomensis \N \N \N \N \N 66778 \N genus Philenoptera \N \N \N \N \N 66779 B.SvA-2008 Boechera Boechera cf. holboellii SvA-2008 \N \N \N \N \N 66780 K.marginata Klasea Klasea marginata \N \N \N \N \N 66781 S.livida Scaphyglottis Scaphyglottis livida \N \N \N \N \N 66782 C.trachyphyllus Cenchrus Cenchrus trachyphyllus \N \N \N \N \N 66783 P.huancabambae Pityphyllum Pityphyllum huancabambae \N \N \N \N \N 66784 A.sensitiva Aeschynomene Aeschynomene sensitiva \N \N \N \N \N 66785 T.gracilis Trigonella Trigonella gracilis \N \N \N \N \N 66786 C.medicinalis Columnea Columnea medicinalis \N \N \N \N \N 66787 P.primulina Primula Primula primulina \N \N \N \N \N 66788 A.burttii Apochiton Apochiton burttii \N \N \N \N \N 66789 P.macrocarpa Pachira Pachira macrocarpa \N \N \N \N \N 66790 S.circinatus Solenanthus Solenanthus circinatus \N \N \N \N \N 66791 M.vetula Mammillaria Mammillaria vetula \N \N \N \N \N 66792 A.angusta Alloteropsis Alloteropsis angusta \N \N \N \N \N 66793 S.oxyriifolius Senecio Senecio oxyriifolius \N \N \N \N \N 66794 \N genus Zygostates \N \N \N \N \N 66795 \N genus Sphinctospermum \N \N \N \N \N 66796 \N varietas Campanula ptarmicifolia var. ptarmicifolia \N \N \N \N \N 66797 D.serrulata Drymonia Drymonia serrulata \N \N \N \N \N 66798 \N genus Xerolekia \N \N \N \N \N 66799 J.rufa Jacaranda Jacaranda rufa \N \N \N \N \N 66800 L.volkensii Lepidotrichilia Lepidotrichilia volkensii \N \N \N \N \N 66801 S.vidalii Sandoricum Sandoricum vidalii \N \N \N \N \N 66802 S.hedraiophyllum Syzygium Syzygium hedraiophyllum \N \N \N \N \N 66803 C.paitana Cuscuta Cuscuta paitana \N \N \N \N \N 66804 \N genus Sarcodraba \N \N \N \N \N 66805 A.campestris Artemisia Artemisia campestris \N \N \N \N \N 66806 O.cephalotes Ononis Ononis cephalotes \N \N \N \N \N 66807 \N genus Gossypianthus \N \N \N \N \N 66808 \N varietas Potentilla subviscosa var. subviscosa \N \N \N \N \N 66809 D.multinerve Dendrophorbium Dendrophorbium multinerve \N \N \N \N \N 66810 R.mucronatum Rhododendron Rhododendron mucronatum \N \N \N \N \N 66811 \N genus Bosea \N \N \N \N \N 66812 E.nanus Echinops Echinops nanus \N \N \N \N \N 66813 D.nitida Davilla Davilla nitida \N \N \N \N \N 66814 P.gormanii Penstemon Penstemon gormanii \N \N \N \N \N 66815 P.94110 Polygonum Polygonum sp. Qiu 94110 \N \N \N \N \N 66816 A.canariensis Artemisia Artemisia canariensis \N \N \N \N \N 66817 M.flava Monopyle Monopyle flava \N \N \N \N \N 66818 M.desvauxiana Maxillaria Maxillaria desvauxiana \N \N \N \N \N 66819 E.inflexa Echinolaena Echinolaena inflexa \N \N \N \N \N 66820 B.bracteata Baptisia Baptisia bracteata \N \N \N \N \N 66821 B.polyacantha Brassaiopsis Brassaiopsis polyacantha \N \N \N \N \N 66822 \N subspecies Jasione crispa subsp. mariana \N \N \N \N \N 66823 \N genus Cnidoscolus \N \N \N \N \N 66824 H.correia-arauji Hohenbergia Hohenbergia correia-arauji \N \N \N \N \N 66825 T.thurberi Tithonia Tithonia thurberi \N \N \N \N \N 66826 E.obtusitrigona Eleocharis Eleocharis obtusitrigona \N \N \N \N \N 66827 S.dichotomus Schumannianthus Schumannianthus dichotomus \N \N \N \N \N 66828 P.microphylla Pimelea Pimelea microphylla \N \N \N \N \N 66829 S.sigmoidea Scaphyglottis Scaphyglottis sigmoidea \N \N \N \N \N 66830 E.sagotiana Eschweilera Eschweilera sagotiana \N \N \N \N \N 66831 F.spathulata Fibigia Fibigia spathulata \N \N \N \N \N 66832 D.erosum Dendrobium Dendrobium erosum \N \N \N \N \N 66833 \N genus Celosia \N \N \N \N \N 66834 L.chrysanthemoides Layia Layia chrysanthemoides \N \N \N \N \N 66835 E.paludicola Eupatorium Eupatorium paludicola \N \N \N \N \N 66836 \N genus Catophractes \N \N \N \N \N 66837 C.cymbaria Chorizandra Chorizandra cymbaria \N \N \N \N \N 66838 P.tsekouensis Pedicularis Pedicularis tsekouensis \N \N \N \N \N 66839 P.scolopendrifolia Pelatantheria Pelatantheria scolopendrifolia \N \N \N \N \N 66840 T.excelsa Thrinax Thrinax excelsa \N \N \N \N \N 66841 A.trifurcata Azorella Azorella trifurcata \N \N \N \N \N 66842 S.hasslerianum Sisyrinchium Sisyrinchium hasslerianum \N \N \N \N \N 66843 M.keithii Mitrephora Mitrephora keithii \N \N \N \N \N 66844 C.maritima Carex Carex maritima \N \N \N \N \N 66845 \N varietas Corchorus aestuans var. brevicaulis \N \N \N \N \N 66846 \N genus Engelmannia \N \N \N \N \N 66847 O.europaea Olea Olea europaea common olive \N \N \N \N 66848 P.hookeri Prosartes Prosartes hookeri \N \N \N \N \N 66849 L.condylobulbon Liparis Liparis condylobulbon \N \N \N \N \N 66850 P.MAC-2002 Pterostylis Pterostylis aff. sanguinea MAC-2002 \N \N \N \N \N 66851 M.minor Maxillaria Maxillaria minor \N \N \N \N \N 66852 H.managettae Hieracium Hieracium managettae \N \N \N \N \N 66853 \N family Saururaceae lizard's-tail family \N \N \N \N 66854 E.pectinata Euphrasia Euphrasia pectinata \N \N \N \N \N 66855 B.coelestis Burmannia Burmannia coelestis \N \N \N \N \N 66856 K.foliosa Kniphofia Kniphofia foliosa \N \N \N \N \N 66857 E.avita Eurybia Eurybia avita \N \N \N \N \N 66858 A.hookeri Allium Allium hookeri \N \N \N \N \N 66859 \N genus Piptadeniastrum \N \N \N \N \N 66860 M.erubescens Metalasia Metalasia erubescens \N \N \N \N \N 66861 T.schiedeana Tetrapterys Tetrapterys schiedeana \N \N \N \N \N 66862 C.aconitiflorus Corybas Corybas aconitiflorus \N \N \N \N \N 66863 M.hottentoticus Mimetes Mimetes hottentoticus \N \N \N \N \N 66864 \N genus Acmadenia \N \N \N \N \N 66865 G.venezolana Gitara Gitara venezolana \N \N \N \N \N 66866 N.tucumana Nassella Nassella tucumana \N \N \N \N \N 66867 M.decolorans Marmoritis Marmoritis decolorans \N \N \N \N \N 66868 F.penduliflora Fosterella Fosterella penduliflora \N \N \N \N \N 66869 \N genus Macrocnemum \N \N \N \N \N 66870 N.1332 Nasa Nasa cf. magnifica 1332 \N \N \N \N \N 66871 N.excelsior Nicotiana Nicotiana excelsior \N \N \N \N \N 66872 M.angustifolia Metrosideros Metrosideros angustifolia \N \N \N \N \N 66873 W.fusca Wiborgia Wiborgia fusca \N \N \N \N \N 66874 E.platyacanthus Echinocactus Echinocactus platyacanthus \N \N \N \N \N 66875 \N genus Codia \N \N \N \N \N 66876 M.intervallaris Mossia Mossia intervallaris \N \N \N \N \N 66877 R.dissectus Ranunculus Ranunculus dissectus \N \N \N \N \N 66878 R.setaceum Rytidosperma Rytidosperma setaceum \N \N \N \N \N 66879 A.angustatum Arisaema Arisaema angustatum \N \N \N \N \N 66880 D.unguis-cati Dolichandra Dolichandra unguis-cati \N \N \N \N \N 66881 A.attenuatus Ancistrocladus Ancistrocladus attenuatus \N \N \N \N \N 66882 V.carpesioides Venegasia Venegasia carpesioides \N \N \N \N \N 66883 T.spicatus Tripogon Tripogon spicatus \N \N \N \N \N 66884 \N genus Jamesbrittenia \N \N \N \N \N 66885 \N subspecies Crepis neglecta subsp. neglecta \N \N \N \N \N 66886 H.ozothamnoides Haeckeria Haeckeria ozothamnoides \N \N \N \N \N 66887 A.asperula Andrachne Andrachne asperula \N \N \N \N \N 66888 \N subspecies Alectryon excelsus subsp. excelsus \N \N \N \N \N 66889 B.fruticosa Betula Betula fruticosa \N \N \N \N \N 66890 S.crenata Symplocos Symplocos crenata \N \N \N \N \N 66891 \N genus Menodora \N \N \N \N \N 66892 R.longifolia Randia Randia longifolia \N \N \N \N \N 66893 O.yuennanensis Olea Olea yuennanensis \N \N \N \N \N 66894 C.balansae Cedrela Cedrela balansae \N \N \N \N \N 66895 L.implexa Lonicera Lonicera implexa \N \N \N \N \N 66896 G.196 Guatteria Guatteria sp. Chatrou et al. 196 \N \N \N \N \N 66897 V.bahiana Vanilla Vanilla bahiana \N \N \N \N \N 66898 F.salina Frankenia Frankenia salina \N \N \N \N \N 66899 S.stramoniifolium Solanum Solanum stramoniifolium \N \N \N \N \N 66900 O.baladica Oxera Oxera baladica \N \N \N \N \N 66901 F.robusta Fuirena Fuirena robusta \N \N \N \N \N 66902 C.guyanense Chalepophyllum Chalepophyllum guyanense \N \N \N \N \N 66903 \N subspecies Androsace cylindrica subsp. hirtella \N \N \N \N \N 66904 B.latisquamea Brachyscome Brachyscome latisquamea \N \N \N \N \N 66905 E.brunellii Euphorbia Euphorbia brunellii \N \N \N \N \N 66906 A.decipiens Androcymbium Androcymbium decipiens \N \N \N \N \N 66907 P.verticillata Pedicularis Pedicularis verticillata \N \N \N \N \N 66908 S.olbia Serapias Serapias olbia \N \N \N \N \N 66909 H.purpurascens Helleborus Helleborus purpurascens \N \N \N \N \N 66910 \N genus Zamioculcas \N \N \N \N \N 66911 O.indicum Oroxylum Oroxylum indicum broken bones plant,kampong,midnight horror,tree of Damocles \N \N \N \N 66912 \N genus Thecostele \N \N \N \N \N 66913 T.CH_E16Amono Triticum Triticum sp. CH_E16Amono \N \N \N \N \N 66914 D.pinnatifidus Dontostemon Dontostemon pinnatifidus \N \N \N \N \N 66915 M.nana Mammillaria Mammillaria nana \N \N \N \N \N 66916 \N genus Tritoniopsis \N \N \N \N \N 66917 U.huntii Utricularia Utricularia huntii \N \N \N \N \N 66918 F.bohemica Fallopia Fallopia x bohemica \N \N \N \N \N 66919 A.barbiger Adenanthos Adenanthos barbiger \N \N \N \N \N 66920 C.mirzoevae Colchicum Colchicum mirzoevae \N \N \N \N \N 66921 A.granulata Aspalathus Aspalathus granulata \N \N \N \N \N 66922 C.lycopodioides Chaetanthera Chaetanthera lycopodioides \N \N \N \N \N 66923 M.cerasiflora Miconia Miconia cerasiflora \N \N \N \N \N 66924 N.alternifolia Nemcia Nemcia alternifolia \N \N \N \N \N 66925 F.macrostigma Fuchsia Fuchsia macrostigma \N \N \N \N \N 66926 M.HS538 Momordica Momordica sp. HS538 \N \N \N \N \N 66927 P.P090 Physalis Physalis sp. P090 \N \N \N \N \N 66928 A.emarginata Arenaria Arenaria emarginata \N \N \N \N \N 66929 A.cicer Astragalus Astragalus cicer \N \N \N \N \N 66930 \N genus Tinospora \N \N \N \N \N 66931 A.virga Antirrhinum Antirrhinum virga \N \N \N \N \N 66932 R.rosea Rhodiola Rhodiola rosea \N \N \N \N \N 66933 A.ficoidea Alternanthera Alternanthera ficoidea sanguinarea \N \N \N \N 66934 E.filiculmis Eleocharis Eleocharis filiculmis \N \N \N \N \N 66935 C.chaetocephala Cousinia Cousinia chaetocephala \N \N \N \N \N 66936 I.cecili Impatiens Impatiens cecili \N \N \N \N \N 66937 D.wealei Disperis Disperis wealei \N \N \N \N \N 66938 A.emericii Aerides Aerides emericii \N \N \N \N \N 66939 E.bifida Echeveria Echeveria bifida \N \N \N \N \N 66940 C.candidus Crocus Crocus candidus \N \N \N \N \N 66941 \N subspecies Avicennia marina subsp. australasica \N \N \N \N \N 66942 C.madrensis Coursetia Coursetia madrensis \N \N \N \N \N 66943 P.turczaninovii Pulsatilla Pulsatilla turczaninovii \N \N \N \N \N 66944 S.virginianum Solanum Solanum virginianum yellow-fruit nightshade \N \N \N \N 66945 S.ephemera Stevia Stevia ephemera \N \N \N \N \N 66946 A.decandrum Acer Acer decandrum \N \N \N \N \N 66947 S.schinzii Stapelia Stapelia schinzii \N \N \N \N \N 66948 \N tribe Cestreae \N \N \N \N \N 66949 O.virgatum Orbexilum Orbexilum virgatum \N \N \N \N \N 66950 \N genus Madagasikaria \N \N \N \N \N 66951 G.soboliferum Geranium Geranium soboliferum \N \N \N \N \N 66952 E.exserta Epacris Epacris exserta \N \N \N \N \N 66953 T.panamensis Turnera Turnera panamensis \N \N \N \N \N 66954 T.caerulescens Tetrapollinia Tetrapollinia caerulescens \N \N \N \N \N 66955 A.ghiesbreghtii Agave Agave ghiesbreghtii \N \N \N \N \N 66956 \N genus Synotis \N \N \N \N \N 66957 C.grandiflora Clermontia Clermontia grandiflora \N \N \N \N \N 66958 \N genus Carpacoce \N \N \N \N \N 66959 M.christinae Myrmecophila Myrmecophila christinae \N \N \N \N \N 66960 \N genus Christianella \N \N \N \N \N 66961 P.fistulosa Primula Primula fistulosa \N \N \N \N \N 66962 M.markgrafii Moehringia Moehringia markgrafii \N \N \N \N \N 66963 \N family Cymodoceaceae \N \N \N \N \N 66964 S.argentinensis Suaeda Suaeda argentinensis \N \N \N \N \N 66965 S.mapiriense Solanum Solanum mapiriense \N \N \N \N \N 66966 S.hartii Saxifraga Saxifraga hartii \N \N \N \N \N 66967 A.trapnellii Aphanocalyx Aphanocalyx trapnellii \N \N \N \N \N 66968 L.7 Leymus Leymus sp. Hodkinson 7 \N \N \N \N \N 66969 I.graminifolia Isoetopsis Isoetopsis graminifolia \N \N \N \N \N 66970 T.s4 unclassified Taraxacum Taraxacum (sect. Macrodonta) sp. s4 \N \N \N \N \N 66971 U.lobata Urena Urena lobata caesarweed \N \N \N \N 66972 N.pampicola Notiosciadium Notiosciadium pampicola \N \N \N \N \N 66973 P.confertiflorus Phemeranthus Phemeranthus confertiflorus \N \N \N \N \N 66974 A.purpurea Aristida Aristida purpurea \N \N \N \N \N 66975 N.maxima Nepenthes Nepenthes maxima \N \N \N \N \N 66976 C.fimbriata Campylandra Campylandra fimbriata \N \N \N \N \N 66977 J.truxillana Jaltomata Jaltomata truxillana \N \N \N \N \N 66978 \N genus Iriartella \N \N \N \N \N 66979 C.kua Commiphora Commiphora kua \N \N \N \N \N 66980 C.AK-2011 Genista cf. Genista monspessulana x Genista stenopetala AK-2011 \N \N \N \N \N 66981 T.maculatum Trichocentrum Trichocentrum maculatum \N \N \N \N \N 66982 V.parviflora Valeriana Valeriana parviflora \N \N \N \N \N 66983 A.calycina Appunia Appunia calycina \N \N \N \N \N 66984 P.elongatum Polypleurum Polypleurum elongatum \N \N \N \N \N 66985 T.elliptica Trigonella Trigonella elliptica \N \N \N \N \N 66986 S.toxifera Sciadotenia Sciadotenia toxifera \N \N \N \N \N 66987 T.rodwayi Thismia Thismia rodwayi \N \N \N \N \N 66988 G.pullenii Glycine Glycine pullenii \N \N \N \N \N 66989 \N family Sladeniaceae \N \N \N \N \N 66990 S.compositum Silphium Silphium compositum \N \N \N \N \N 66991 S.longirostris Streptanthella Streptanthella longirostris \N \N \N \N \N 66992 \N varietas Tofieldia yoshiiana var. kanwonensis \N \N \N \N \N 66993 \N subspecies Pentameris aurea subsp. aurea \N \N \N \N \N 66994 \N varietas Platymiscium pinnatum var. diadelphum \N \N \N \N \N 66995 \N genus Glaziophyton \N \N \N \N \N 66996 S.patenticuspis Sclerolaena Sclerolaena patenticuspis \N \N \N \N \N 66997 E.parviflorum Echium Echium parviflorum \N \N \N \N \N 66998 S.cyclophylla Salsola Salsola cyclophylla \N \N \N \N \N 66999 V.tuberosa Valeriana Valeriana tuberosa \N \N \N \N \N 67000 S.tolmatchevii Silene Silene tolmatchevii \N \N \N \N \N 67001 \N genus Lysiloma \N \N \N \N \N 67002 B.ctenophyla Bidens Bidens menziesii subsp. filiformis x Bidens micrantha subsp. ctenophyla \N \N \N \N \N 67003 P.6034 Plagioscyphus Plagioscyphus aff. louvelii Lowry 6034 \N \N \N \N \N 67004 B.fucsioides Belemia Belemia fucsioides \N \N \N \N \N 67005 S.salinaria Suaeda Suaeda salinaria \N \N \N \N \N 67006 A.multiflora Ajuga Ajuga multiflora \N \N \N \N \N 67007 \N subtribe Archontophoenicinae \N \N \N \N \N 67008 \N varietas Scorzonera cana var. alpina \N \N \N \N \N 67009 C.corymbosa Centaurea Centaurea corymbosa \N \N \N \N \N 67010 M.sancti-philippi Miconia Miconia sancti-philippi \N \N \N \N \N 67011 S.tupaeformis Siphocampylus Siphocampylus tupaeformis \N \N \N \N \N 67012 L.acuminatissima Leea Leea acuminatissima \N \N \N \N \N 67013 D.oligomera Diploknema Diploknema oligomera \N \N \N \N \N 67014 P.frutescens Pterocephalus Pterocephalus frutescens \N \N \N \N \N 67015 C.eriantha Cuminia Cuminia eriantha \N \N \N \N \N 67016 P.albicaulis Psychotria Psychotria albicaulis \N \N \N \N \N 67017 P.chichipe Polaskia Polaskia chichipe \N \N \N \N \N 67018 B.radiata Babiana Babiana radiata \N \N \N \N \N 67019 P.aureata Primula Primula aureata \N \N \N \N \N 67020 B.glaucocarpa Berberis Berberis glaucocarpa \N \N \N \N \N 67021 \N varietas Planchonella cotinifolia var. pubescens \N \N \N \N \N 67022 K.brachanthemoides Kaschgaria Kaschgaria brachanthemoides \N \N \N \N \N 67023 P.P109 Physalis Physalis sp. P109 \N \N \N \N \N 67024 \N genus Depanthus \N \N \N \N \N 67025 T.bahamensis Tetranthus Tetranthus bahamensis \N \N \N \N \N 67026 P.illepida Polygala Polygala illepida \N \N \N \N \N 67027 \N genus Tacazzea \N \N \N \N \N 67028 I.sessiliflora Isidrogalvia Isidrogalvia sessiliflora \N \N \N \N \N 67029 O.obryzatum Oncidium Oncidium obryzatum \N \N \N \N \N 67030 P.lapathifolium Piper Piper lapathifolium \N \N \N \N \N 67031 P.ayopayana Parodia Parodia ayopayana \N \N \N \N \N 67032 N.ovatifolia Neolitsea Neolitsea ovatifolia \N \N \N \N \N 67033 M.divaricatum Melampodium Melampodium divaricatum \N \N \N \N \N 67034 P.intermedia Parolinia Parolinia intermedia \N \N \N \N \N 67035 T.alliacea Tulbaghia Tulbaghia alliacea \N \N \N \N \N 67036 E.tessmannii Endlicheria Endlicheria tessmannii \N \N \N \N \N 67037 \N subspecies Iris virginica var. shrevei \N \N \N \N \N 67038 L.leontopodium Leucogenes Leucogenes leontopodium \N \N \N \N \N 67039 K.capillifolia Kobresia Kobresia capillifolia \N \N \N \N \N 67040 S.otites Silene Silene otites Spanish catchfly \N \N \N \N 67041 S.pachypus Schismocarpus Schismocarpus pachypus \N \N \N \N \N 67042 \N genus Eriocoelum \N \N \N \N \N 67043 S.riparia Smilax Smilax riparia \N \N \N \N \N 67044 \N tribe Caladieae \N \N \N \N \N 67045 \N genus Maoutia \N \N \N \N \N 67046 P.polyphylla Paris Paris polyphylla \N \N \N \N \N 67047 C.baltzellii Carex Carex baltzellii \N \N \N \N \N 67048 O.bodinieri Ophiopogon Ophiopogon bodinieri \N \N \N \N \N 67049 O.8599 Oreopanax Oreopanax sp. Wen 8599 \N \N \N \N \N 67050 C.caesia Curcuma Curcuma caesia black zedoary \N \N \N \N 67051 \N varietas Guilleminea densa var. aggregata \N \N \N \N \N 67052 S.axillaris Stevenia Stevenia axillaris \N \N \N \N \N 67053 \N subspecies Stylapterus ericoides subsp. pallidus \N \N \N \N \N 67054 \N varietas Adriana tomentosa var. tomentosa \N \N \N \N \N 67055 P.sericostachya Pimelea Pimelea sericostachya \N \N \N \N \N 67056 C.crassiphylla Camellia Camellia crassiphylla \N \N \N \N \N 67057 C.catati Chassalia Chassalia catati \N \N \N \N \N 67058 O.aspera Ormocarpopsis Ormocarpopsis aspera \N \N \N \N \N 67059 O.liebmannii Oreopanax Oreopanax liebmannii \N \N \N \N \N 67060 T.porphyrocephalus Tragopogon Tragopogon porphyrocephalus \N \N \N \N \N 67061 L.globularis Lysipomia Lysipomia globularis \N \N \N \N \N 67062 S.microchina Smilax Smilax microchina \N \N \N \N \N 67063 L.molle Leucochrysum Leucochrysum molle \N \N \N \N \N 67064 S.sp. Saccharum Saccharum sp. \N \N \N \N \N 67065 L.antirrhinoides Lyperia Lyperia antirrhinoides \N \N \N \N \N 67066 S.andohahelensis Streptocarpus Streptocarpus andohahelensis \N \N \N \N \N 67067 I.canariensis Ilex Ilex canariensis acebino \N \N \N \N 67068 P.somaliense Pentarrhinum Pentarrhinum somaliense \N \N \N \N \N 67069 L.cleistocarpus Lithocarpus Lithocarpus cleistocarpus \N \N \N \N \N 67070 \N genus Cladocolea \N \N \N \N \N 67071 A.isatidea Atriplex Atriplex isatidea \N \N \N \N \N 67072 P.citrifolia Passiflora Passiflora citrifolia \N \N \N \N \N 67073 H.montana Hemimeris Hemimeris montana \N \N \N \N \N 67074 G.peruviana Grias Grias peruviana \N \N \N \N \N 67075 \N genus Micromelum \N \N \N \N \N 67076 L.portoricensis Laplacea Laplacea portoricensis \N \N \N \N \N 67077 R.spiciforme Rheum Rheum spiciforme \N \N \N \N \N 67078 A.strigosus Amellus Amellus strigosus \N \N \N \N \N 67079 C.polystachyus Cleistanthus Cleistanthus polystachyus \N \N \N \N \N 67080 C.lagoensis Croton Croton lagoensis \N \N \N \N \N 67081 C.serratifolia Clematis Clematis serratifolia \N \N \N \N \N 67082 P.sarapiquensis Psychotria Psychotria sarapiquensis \N \N \N \N \N 67083 \N subspecies Dissocarpus paradoxus subsp. paradoxus \N \N \N \N \N 67084 D.aconitiflora Duvernoia Duvernoia aconitiflora \N \N \N \N \N 67085 B.lacera Blumea Blumea lacera \N \N \N \N \N 67086 \N genus Gynotroches \N \N \N \N \N 67087 \N genus Metadina \N \N \N \N \N 67088 C.paradoxum Clinopodium Clinopodium paradoxum \N \N \N \N \N 67089 M.repens Melinis Melinis repens \N \N \N \N \N 67090 M.odorata Mangifera Mangifera odorata bembem,kweni \N \N \N \N 67091 B.TJSW-2011 unclassified Boraginaceae Boraginaceae sp. TJSW-2011 \N \N \N \N \N 67092 S.yakla Saussurea Saussurea yakla \N \N \N \N \N 67093 \N genus Lereschia \N \N \N \N \N 67094 E.glandulipila Erica Erica glandulipila \N \N \N \N \N 67095 P.bambusoides Phyllostachys Phyllostachys kwangsiensis x Phyllostachys bambusoides \N \N \N \N \N 67096 H.pilosissima Heuchera Heuchera pilosissima seaside alumroot \N \N \N \N 67097 G.racemosa Gnidia Gnidia racemosa \N \N \N \N \N 67098 A.nitidum Aglaonema Aglaonema nitidum \N \N \N \N \N 67099 V.hirsuta Vellozia Vellozia hirsuta \N \N \N \N \N 67100 E.nodosa Elaeosticta Elaeosticta nodosa \N \N \N \N \N 67101 I.atropurpurea Indigofera Indigofera atropurpurea \N \N \N \N \N 67102 \N genus Lewisiopsis \N \N \N \N \N 67103 T.subflabellata Tacca Tacca subflabellata \N \N \N \N \N 67104 L.muscoides Lithophila Lithophila muscoides \N \N \N \N \N 67105 C.attenuata Curcuma Curcuma attenuata \N \N \N \N \N 67106 T.funale Thesium Thesium funale \N \N \N \N \N 67107 C.parviflora Cylicomorpha Cylicomorpha parviflora \N \N \N \N \N 67108 D.montanum Dipcadi Dipcadi montanum \N \N \N \N \N 67109 L.fordii Lespedeza Lespedeza fordii \N \N \N \N \N 67110 \N subspecies Grevillea angustiloba subsp. angustiloba \N \N \N \N \N 67111 P.dunlopii Pluchea Pluchea dunlopii \N \N \N \N \N 67112 \N genus Colobocarpos \N \N \N \N \N 67113 C.comosa Calceolaria Calceolaria comosa \N \N \N \N \N 67114 C.tubulosa Cistanche Cistanche tubulosa \N \N \N \N \N 67115 P.kurtzii Poa Poa kurtzii \N \N \N \N \N 67116 C.ramosus Cenchrus Cenchrus ramosus \N \N \N \N \N 67117 A.campylotrichus Astragalus Astragalus campylotrichus \N \N \N \N \N 67118 H.persicum Heracleum Heracleum persicum \N \N \N \N \N 67119 P.lifuana Planchonella Planchonella lifuana \N \N \N \N \N 67120 S.orientalis Scutellaria Scutellaria orientalis \N \N \N \N \N 67121 P.leiocarpus Piptanthus Piptanthus leiocarpus \N \N \N \N \N 67122 P.pulcherrima Pueraria Pueraria pulcherrima \N \N \N \N \N 67123 C.pamii Cyclopogon Cyclopogon pamii \N \N \N \N \N 67124 \N genus Heterostemma \N \N \N \N \N 67125 L.hirsuta Loxonia Loxonia hirsuta \N \N \N \N \N 67126 I.campanulata Impatiens Impatiens campanulata \N \N \N \N \N 67127 \N varietas Isolepis fluitans var. lenticularis \N \N \N \N \N 67128 \N varietas Vitis ficifolia var. ganebu \N \N \N \N \N 67129 M.coangustata Meeboldina Meeboldina coangustata \N \N \N \N \N 67130 S.striata Symplocos Symplocos striata \N \N \N \N \N 67131 \N tribe Millettieae \N \N \N \N \N 67132 P.effusa Potentilla Potentilla effusa \N \N \N \N \N 67133 \N subspecies Hyptis leptostachys subsp. caatingae \N \N \N \N \N 67134 \N varietas Guzmania monostachia var. monostachia \N \N \N \N \N 67135 B.scaber Blepharipappus Blepharipappus scaber \N \N \N \N \N 67136 R.fulvum Rhododendron Rhododendron fulvum \N \N \N \N \N 67137 A.nuda Avena Avena nuda small naked oat \N \N \N \N 67138 C.arborea Coprosma Coprosma arborea \N \N \N \N \N 67139 P.auritum Panicum Panicum auritum \N \N \N \N \N 67140 Z.applanatum Zygophyllum Zygophyllum applanatum \N \N \N \N \N 67141 T.trichocalyx Trifolium Trifolium trichocalyx \N \N \N \N \N 67142 R.macounii Ranunculus Ranunculus macounii \N \N \N \N \N 67143 E.hierrense Echium Echium hierrense \N \N \N \N \N 67144 H.pontica Hyalopoa Hyalopoa pontica \N \N \N \N \N 67145 \N subspecies Eucalyptus ligulata subsp. ligulata \N \N \N \N \N 67146 B.polymorpha Bambusa Bambusa polymorpha \N \N \N \N \N 67147 R.senegalensis Rytigynia Rytigynia senegalensis \N \N \N \N \N 67148 \N genus Bellardia \N \N \N \N \N 67149 \N varietas Satyrium longicauda var. longicauda \N \N \N \N \N 67150 S.oblongata Setaria Setaria oblongata \N \N \N \N \N 67151 \N genus Laestadia \N \N \N \N \N 67152 F.habrophylla Ficus Ficus habrophylla \N \N \N \N \N 67153 \N genus Annesorhiza \N \N \N \N \N 67154 G.altaica Gagea Gagea altaica \N \N \N \N \N 67155 O.breviflora Ourisia Ourisia breviflora \N \N \N \N \N 67156 C.villosa Clematis Clematis villosa \N \N \N \N \N 67157 E.natalitia Eugenia Eugenia natalitia common forest myrtle \N \N \N \N 67158 T.scabra Turnera Turnera scabra \N \N \N \N \N 67159 S.keiskei Silene Silene keiskei \N \N \N \N \N 67160 F.parietalis Ficus Ficus parietalis \N \N \N \N \N 67161 C.lehmanniana Cuscuta Cuscuta lehmanniana \N \N \N \N \N 67162 C.disperma Carex Carex disperma \N \N \N \N \N 67163 P.johniana Pilea Pilea johniana \N \N \N \N \N 67164 C.metuliferus Cucumis Cucumis metuliferus \N \N \N \N \N 67165 M.plurispicatum Monotagma Monotagma plurispicatum \N \N \N \N \N 67166 D.incrassata Daviesia Daviesia incrassata \N \N \N \N \N 67167 \N genus Guringalia \N \N \N \N \N 67168 C.persicifolia Campanula Campanula persicifolia peach-bells,willow bell,willowbell \N \N \N \N 67169 C.maculata Corallorhiza Corallorhiza maculata \N \N \N \N \N 67170 C.alpina Cryptandra Cryptandra alpina \N \N \N \N \N 67171 R.fusca Rhynchospora Rhynchospora fusca \N \N \N \N \N 67172 R.jaliscana Ruellia Ruellia jaliscana \N \N \N \N \N 67173 \N genus Rhodanthe \N \N \N \N \N 67174 C.auriculata Cousinia Cousinia auriculata \N \N \N \N \N 67175 \N subspecies Fragaria chiloensis subsp. chiloensis \N \N \N \N \N 67176 M.melaleuca Mammillaria Mammillaria melaleuca \N \N \N \N \N 67177 \N genus Retama \N \N \N \N \N 67178 A.greatheadii Aloe Aloe greatheadii \N \N \N \N \N 67179 R.petiolaris Ruellia Ruellia petiolaris \N \N \N \N \N 67180 P.sp. Pachyphytum Pachyphytum sp. \N \N \N \N \N 67181 O.burkei Oxalis Oxalis burkei \N \N \N \N \N 67182 A.cordatum Aparisthmium Aparisthmium cordatum \N \N \N \N \N 67183 C.1843 Cyrtandra Cyrtandra sp. Plunkett 1843 \N \N \N \N \N 67184 P.microphylla Pentanisia Pentanisia microphylla \N \N \N \N \N 67185 \N varietas Panax japonicus var. angustifolius \N \N \N \N \N 67186 G.bekensis Gymnosiphon Gymnosiphon bekensis \N \N \N \N \N 67187 J.multivenia Jessea Jessea multivenia \N \N \N \N \N 67188 C.croatii Cordia Cordia croatii \N \N \N \N \N 67189 I.nemorosa Irlbachia Irlbachia nemorosa \N \N \N \N \N 67190 E.komarovii Elymus Elymus komarovii \N \N \N \N \N 67191 S.prunelloides Salvia Salvia prunelloides \N \N \N \N \N 67192 M.tenuifolia Muhlenbergia Muhlenbergia tenuifolia \N \N \N \N \N 67193 C.caespitosa Campanula Campanula caespitosa \N \N \N \N \N 67194 B.wangii Begonia Begonia wangii \N \N \N \N \N 67195 G.parryi Gentiana Gentiana parryi \N \N \N \N \N 67196 C.delavayi Cladrastis Cladrastis delavayi Chinese yellowwood \N \N \N \N 67197 P.prostrata Pernettya Pernettya prostrata arayan,cacalote \N \N \N \N 67198 H.patagonicum Heliotropium Heliotropium patagonicum \N \N \N \N \N 67199 \N no rank Poeae incertae sedis \N \N \N \N \N 67200 C.pauciflora Corylopsis Corylopsis pauciflora buttercup winter-hazel,hyuga-mizuki \N \N \N \N 67201 S.tuberculata Stylosanthes Stylosanthes tuberculata \N \N \N \N \N 67202 P.entradense Piper Piper entradense \N \N \N \N \N 67203 A.DJH-2006 Adenia Adenia aff. antongilliana DJH-2006 \N \N \N \N \N 67204 H.herminiae Hatiora Hatiora herminiae \N \N \N \N \N 67205 T.broadwayi Tococa Tococa broadwayi \N \N \N \N \N 67206 \N genus Sheilanthera \N \N \N \N \N 67207 H.bakeri Hemigraphis Hemigraphis bakeri \N \N \N \N \N 67208 L.longifolius Lisianthius Lisianthius longifolius \N \N \N \N \N 67209 E.cynarocephalus Elleanthus Elleanthus cynarocephalus \N \N \N \N \N 67210 L.coniferum Leucadendron Leucadendron coniferum \N \N \N \N \N 67211 \N subspecies Vigna unguiculata subsp. stenophylla \N \N \N \N \N 67212 B.pyramidalis Billbergia Billbergia pyramidalis foolproof plant \N \N \N \N 67213 R.pachyrhizum Rhammatophyllum Rhammatophyllum pachyrhizum \N \N \N \N \N 67214 \N genus Calla \N \N \N \N \N 67215 R.indutum Rytidosperma Rytidosperma indutum \N \N \N \N \N 67216 \N genus Rhanterium \N \N \N \N \N 67217 L.bolanderi Lilium Lilium bolanderi \N \N \N \N \N 67218 L.cuneifolia Larrea Larrea cuneifolia \N \N \N \N \N 67219 T.papyraceus Thamnochortus Thamnochortus papyraceus \N \N \N \N \N 67220 C.urelytra Chusquea Chusquea urelytra \N \N \N \N \N 67221 P.grammopetala Potentilla Potentilla grammopetala \N \N \N \N \N 67222 S.platystoma Salvia Salvia platystoma \N \N \N \N \N 67223 \N genus Matsumurella \N \N \N \N \N 67224 \N subspecies Triticum timopheevii subsp. timopheevii \N \N \N \N \N 67225 C.radiatum Cynanchum Cynanchum radiatum \N \N \N \N \N 67226 S.floridana Salix Salix floridana \N \N \N \N \N 67227 C.jacquelinae Clinopodium Clinopodium jacquelinae \N \N \N \N \N 67228 T.sylvestris Tolumnia Tolumnia sylvestris \N \N \N \N \N 67229 M.guadalupensis Maxillaria Maxillaria guadalupensis \N \N \N \N \N 67230 D.barbatum Desmodium Desmodium barbatum \N \N \N \N \N 67231 B.rigidum Bupleurum Bupleurum rigidum \N \N \N \N \N 67232 \N subspecies Biarum tenuifolium subsp. idomenaeum \N \N \N \N \N 67233 A.sinaloensis Aphanosperma Aphanosperma sinaloensis \N \N \N \N \N 67234 B.FS709 Bulbophyllum Bulbophyllum sp. FS709 \N \N \N \N \N 67235 S.littorea Silene Silene littorea \N \N \N \N \N 67236 \N tribe Loteae \N \N \N \N \N 67237 J.juniperina Junellia Junellia juniperina \N \N \N \N \N 80730 \N genus Phyllospadix \N \N \N \N \N 67238 \N subspecies Hieracium cymosum subsp. cymigerum \N \N \N \N \N 67239 \N subspecies Senecio flavus subsp. flavus \N \N \N \N \N 67240 Q.falcata Quercus Quercus falcata southern red oak \N \N \N \N 67241 R.villosa Raspalia Raspalia villosa \N \N \N \N \N 67242 C.pygmaea Caragana Caragana pygmaea \N \N \N \N \N 67243 C.enervis Carex Carex enervis \N \N \N \N \N 67244 L.edulis Lithocarpus Lithocarpus edulis \N \N \N \N \N 67245 J.stenolobum Jasminum Jasminum stenolobum \N \N \N \N \N 67246 E.stenostoma Eucalyptus Eucalyptus stenostoma \N \N \N \N \N 67247 C.macrochaeta Carex Carex macrochaeta \N \N \N \N \N 67248 C.mollis Cephalocroton Cephalocroton mollis \N \N \N \N \N 67249 M.rigida Muhlenbergia Muhlenbergia rigida \N \N \N \N \N 67250 M.londesboroughianum Mesoglossum Mesoglossum londesboroughianum \N \N \N \N \N 67251 O.digyna Oxyria Oxyria digyna \N \N \N \N \N 67252 C.strumosa Camptorrhiza Camptorrhiza strumosa \N \N \N \N \N 67253 P.citriodora Perilla Perilla citriodora \N \N \N \N \N 67254 E.cooperi Erica Erica cooperi \N \N \N \N \N 67255 B.hanningtoniana Basananthe Basananthe hanningtoniana \N \N \N \N \N 67256 P.argentea Phacelia Phacelia argentea \N \N \N \N \N 67257 M.orthacantha Mimosa Mimosa orthacantha \N \N \N \N \N 67258 I.maximowicziana Ilex Ilex maximowicziana \N \N \N \N \N 67259 E.princeps Elizabetha Elizabetha princeps \N \N \N \N \N 67260 D.corallina Daenikera Daenikera corallina \N \N \N \N \N 67261 \N varietas Guatteria hilariana var. verruculosa \N \N \N \N \N 67262 E.nudicaulis Eucalyptus Eucalyptus nudicaulis \N \N \N \N \N 67263 C.poiflorum Coelachyrum Coelachyrum poiflorum \N \N \N \N \N 67264 C.assyricus Convolvulus Convolvulus assyricus \N \N \N \N \N 67265 G.hexandrus Gonocarpus Gonocarpus hexandrus \N \N \N \N \N 67266 D.fuscopicta Disporopsis Disporopsis fuscopicta \N \N \N \N \N 67267 E.exleeana Erica Erica exleeana \N \N \N \N \N 67268 A.pterosperma Arabis Arabis pterosperma \N \N \N \N \N 67269 A.vanuense Airosperma Airosperma vanuense \N \N \N \N \N 67270 A.marginatum Amphineurion Amphineurion marginatum \N \N \N \N \N 67271 \N genus Tamania \N \N \N \N \N 67272 I.proantha Iris Iris proantha \N \N \N \N \N 67273 S.amazonum Sparattanthelium Sparattanthelium amazonum \N \N \N \N \N 67274 C.catenaria Corymbia Corymbia catenaria \N \N \N \N \N 67275 H.mollevillquense Hippeastrum Hippeastrum mollevillquense \N \N \N \N \N 67276 F.montana Ficus Ficus montana oak-leaf fig \N \N \N \N 67277 V.rubescens Vismia Vismia rubescens \N \N \N \N \N 67278 O.longituba Oenothera Oenothera longituba \N \N \N \N \N 67279 C.humilis Cynara Cynara humilis \N \N \N \N \N 67280 V.maximowiczii Veratrum Veratrum maximowiczii \N \N \N \N \N 67281 C.palustris Chironia Chironia palustris \N \N \N \N \N 67282 \N genus Dimetra \N \N \N \N \N 67283 C.dinklagei Calpocalyx Calpocalyx dinklagei \N \N \N \N \N 67284 C.picta Cistanthe Cistanthe picta \N \N \N \N \N 67285 S.sciadostylis Solanum Solanum sciadostylis \N \N \N \N \N 67286 V.coniifolia Vicatia Vicatia coniifolia \N \N \N \N \N 67287 P.galioides Polygala Polygala galioides \N \N \N \N \N 67288 T.daniellii Tetradium Tetradium daniellii \N \N \N \N \N 67289 P.columbinum Pelargonium Pelargonium columbinum \N \N \N \N \N 67290 P.bolusii Phaneroglossa Phaneroglossa bolusii \N \N \N \N \N 67291 \N subspecies Taeniatherum caput-medusae subsp. crinitum \N \N \N \N \N 67292 B.lineolata Babiana Babiana lineolata \N \N \N \N \N 67293 M.gale Myrica Myrica gale bog-myrtle,meadow-fern,sweet gale \N \N \N \N 67294 B.contracta Bambusa Bambusa contracta \N \N \N \N \N 67295 M.laxiflora Marila Marila laxiflora \N \N \N \N \N 67296 G.lotifolia Goodia Goodia lotifolia \N \N \N \N \N 67297 S.falconeri Silene Silene falconeri \N \N \N \N \N 67298 O.robustum Oxylobium Oxylobium robustum \N \N \N \N \N 67299 D.decipiens Dypsis Dypsis decipiens \N \N \N \N \N 67300 P.calycinum Phagnalon Phagnalon calycinum \N \N \N \N \N 67301 M.bilocularis Maytenus Maytenus bilocularis \N \N \N \N \N 67302 C.calycina Carrierea Carrierea calycina \N \N \N \N \N 67303 \N genus Trochetia \N \N \N \N \N 67304 S.pamirica Semenovia Semenovia pamirica \N \N \N \N \N 67305 E.johnsonii Elaeocarpus Elaeocarpus johnsonii \N \N \N \N \N 67306 \N genus Pseudoclausia \N \N \N \N \N 67307 D.JLP-2008 Dicoma Dicoma sp. JLP-2008 \N \N \N \N \N 67308 P.trinitatis Platymiscium Platymiscium trinitatis \N \N \N \N \N 67309 B.macounii Boechera Boechera macounii \N \N \N \N \N 67310 \N genus Abrotanella \N \N \N \N \N 67311 L.anceps Laelia Laelia anceps \N \N \N \N \N 67312 E.361 Etlingera Etlingera aff. pyramidosphaera Mood 361 \N \N \N \N \N 67313 B.laciniata Bahiopsis Bahiopsis laciniata \N \N \N \N \N 67314 C.supinus Convolvulus Convolvulus supinus \N \N \N \N \N 67315 S.testudo Selenicereus Selenicereus testudo \N \N \N \N \N 67316 F.tetraquetra Fadogia Fadogia tetraquetra \N \N \N \N \N 67317 C.pauciflora Conostylis Conostylis pauciflora \N \N \N \N \N 67318 \N genus Calanthe \N \N \N \N \N 67319 \N genus Arthrostylis \N \N \N \N \N 67320 C.pallida Coccoloba Coccoloba pallida \N \N \N \N \N 67321 S.nodiflora Synedrella Synedrella nodiflora \N \N \N \N \N 67322 A.wawreana Adenophora Adenophora wawreana \N \N \N \N \N 67323 \N genus Rhynchotropis \N \N \N \N \N 67324 C.aestivalis Crataegus Crataegus aestivalis \N \N \N \N \N 67325 M.atropurpurea Marantochloa Marantochloa atropurpurea \N \N \N \N \N 67326 M.patens Maxillaria Maxillaria patens \N \N \N \N \N 67327 S.ML-2010 Stewartia Stewartia sp. ML-2010 \N \N \N \N \N 67328 E.nizvanus Echinops Echinops nizvanus \N \N \N \N \N 67329 C.pitcheri Cirsium Cirsium pitcheri sand dune thistle \N \N \N \N 67330 C.minkwitziae Cousinia Cousinia minkwitziae \N \N \N \N \N 67331 P.Pi-B Piper Piper sp. Pi-B \N \N \N \N \N 67332 P.resediflora Peperomia Peperomia resediflora \N \N \N \N \N 67333 V.girdiana Vitis Vitis girdiana \N \N \N \N \N 67334 S.laevigata Sibiraea Sibiraea laevigata \N \N \N \N \N 81993 A.nigrum Arum Arum nigrum \N \N \N \N \N 67335 M.spinosa Mutisia Mutisia spinosa \N \N \N \N \N 67336 C.microphylla Chamaedorea Chamaedorea microphylla \N \N \N \N \N 67337 D.iberica Dactylorhiza Dactylorhiza iberica \N \N \N \N \N 67338 S.latifolia Sessilanthera Sessilanthera latifolia \N \N \N \N \N 67339 V.bakeri Viola Viola bakeri \N \N \N \N \N 67340 P.ellipticum Pseudobombax Pseudobombax ellipticum shaving-brush tree \N \N \N \N 67341 L.menziesii Leptoceras Leptoceras menziesii \N \N \N \N \N 67342 N.novogranatensis Nymphaea Nymphaea novogranatensis \N \N \N \N \N 67343 A.bolanderi Agnorhiza Agnorhiza bolanderi \N \N \N \N \N 67344 A.glabra Agalmyla Agalmyla glabra \N \N \N \N \N 67345 P.asperuloides Polygala Polygala asperuloides \N \N \N \N \N 67346 P.celebica Pycnarrhena Pycnarrhena celebica \N \N \N \N \N 67347 \N genus Tithonia \N \N \N \N \N 67348 \N genus Emmenopterys \N \N \N \N \N 67349 C.2727 Cyrtochilum Cyrtochilum sp. Whitten 2727 \N \N \N \N \N 67350 O.japonica Ophiorrhiza Ophiorrhiza japonica \N \N \N \N \N 67351 C.krugii Coccoloba Coccoloba krugii \N \N \N \N \N 67352 \N genus Eucnide \N \N \N \N \N 67353 T.micranthus Tripterocalyx Tripterocalyx micranthus \N \N \N \N \N 67354 E.horsfieldii Euchresta Euchresta horsfieldii \N \N \N \N \N 67355 A.frutescens Ampelocissus Ampelocissus frutescens \N \N \N \N \N 67356 P.oxyrhyncha Pedicularis Pedicularis oxyrhyncha \N \N \N \N \N 67357 \N varietas Oxalis sellowiana var. alba \N \N \N \N \N 67358 C.cimiciferum Cyrtochilum Cyrtochilum cimiciferum \N \N \N \N \N 67359 E.canariense Erucastrum Erucastrum canariense \N \N \N \N \N 67360 A.paniculata Apoplanesia Apoplanesia paniculata \N \N \N \N \N 67361 P.olgae Pseudoclausia Pseudoclausia olgae \N \N \N \N \N 67362 T.rhombifolia Thermopsis Thermopsis rhombifolia \N \N \N \N \N 67363 O.affinis Oldenlandia Oldenlandia affinis \N \N \N \N \N 67364 C.eriantha Callerya Callerya eriantha \N \N \N \N \N 67365 A.pachypus Astragalus Astragalus pachypus \N \N \N \N \N 67366 L.succulentus Lupinus Lupinus succulentus \N \N \N \N \N 67367 T.bequaertii Tricalysia Tricalysia bequaertii \N \N \N \N \N 67368 T.schischkinii Thermopsis Thermopsis schischkinii \N \N \N \N \N 67369 C.flava Caralluma Caralluma flava \N \N \N \N \N 67370 F.lepicarpa Ficus Ficus lepicarpa \N \N \N \N \N 67371 P.mexicanus Philadelphus Philadelphus mexicanus \N \N \N \N \N 67372 O.transcaucasica Orobanche Orobanche transcaucasica \N \N \N \N \N 67373 L.pendens Lysimachia Lysimachia pendens \N \N \N \N \N 67374 P.humilis Pleione Pleione humilis \N \N \N \N \N 67375 R.turneri Ranunculus Ranunculus turneri \N \N \N \N \N 67376 P.bella Pseudoselago Pseudoselago bella \N \N \N \N \N 67377 M.lepidota Maxillaria Maxillaria lepidota \N \N \N \N \N 67378 G.catamarcense Gymnocalycium Gymnocalycium catamarcense \N \N \N \N \N 67379 P.diversifolia Potentilla Potentilla diversifolia \N \N \N \N \N 67380 D.arayalpathra Decalepis Decalepis arayalpathra \N \N \N \N \N 67381 K.prostrata Kennedia Kennedia prostrata running-postman,scarlet coral-pea \N \N \N \N 67382 M.rupestris Mandirola Mandirola rupestris \N \N \N \N \N 67383 \N tribe Chrysitricheae \N \N \N \N \N 67384 D.jaegeri Draba Draba jaegeri Jaeger's draba \N \N \N \N 67385 A.gigas Aconitum Aconitum gigas \N \N \N \N \N 67386 \N subspecies Hieracium iseranum subsp. iseranum \N \N \N \N \N 67387 E.petricola Erica Erica petricola \N \N \N \N \N 67388 \N varietas Sambucus racemosa var. melanocarpa \N \N \N \N \N 67389 T.shinnersii Thelypodiopsis Thelypodiopsis shinnersii \N \N \N \N \N 67390 \N genus Spergularia \N \N \N \N \N 67391 P.glabriphyllum Pelargonium Pelargonium glabriphyllum \N \N \N \N \N 67392 \N varietas Mirabilis sanguinea var. breviflora \N \N \N \N \N 67393 N.pulchella Nierembergia Nierembergia pulchella \N \N \N \N \N 67394 S.dichotoma Silene Silene dichotoma \N \N \N \N \N 67395 S.prionitis Salvia Salvia prionitis \N \N \N \N \N 67396 \N subspecies Carthamus lanatus subsp. montanus \N \N \N \N \N 67397 \N subspecies Euryops tenuissimus subsp. tenuissimus \N \N \N \N \N 67398 O.nobile Oncidium Oncidium nobile \N \N \N \N \N 67399 \N varietas Draba lonchocarpa var. exigua \N \N \N \N \N 67400 \N genus Paliurus \N \N \N \N \N 67401 P.bracteata Primula Primula bracteata \N \N \N \N \N 67402 C.kanran Cymbidium Cymbidium kanran \N \N \N \N \N 67403 V.humblotii Vanilla Vanilla humblotii \N \N \N \N \N 67404 T.capillaris Taeckholmia Taeckholmia capillaris \N \N \N \N \N 67405 \N varietas Bystropogon origanifolius var. origanifolius \N \N \N \N \N 67406 F.nevskii Ferula Ferula nevskii \N \N \N \N \N 67407 M.americana Mammea Mammea americana mamey,mammee-apple \N \N \N \N 67408 S.asiatica Striga Striga asiatica witchweed \N \N \N \N 67409 S.puberum Stigmaphyllon Stigmaphyllon puberum \N \N \N \N \N 67410 T.K153 unclassified Taraxacum Taraxacum sp. K153 \N \N \N \N \N 67411 \N genus Microtoena \N \N \N \N \N 67412 \N genus Tinantia \N \N \N \N \N 67413 S.firmum Symphyotrichum Symphyotrichum firmum \N \N \N \N \N 67414 V.tahitensis Vanilla Vanilla planifolia x Vanilla tahitensis \N \N \N \N \N 67415 G.tomentosa Guatteria Guatteria tomentosa \N \N \N \N \N 67416 D.abyssinica Dorycnopsis Dorycnopsis abyssinica \N \N \N \N \N 67417 G.roei Glischrocaryon Glischrocaryon roei \N \N \N \N \N 67418 W.arrhiza Wolffia Wolffia arrhiza \N \N \N \N \N 67419 A.smolikanum Alyssum Alyssum smolikanum \N \N \N \N \N 67420 \N genus Satureja \N \N \N \N \N 67421 H.revolutum Hypericum Hypericum revolutum \N \N \N \N \N 67422 M.coriacea Masdevallia Masdevallia coriacea \N \N \N \N \N 67423 P.sargentii Pseudophoenix Pseudophoenix sargentii Sargent's cherry palm,buccaneer palm \N \N \N \N 67424 D.rufescens Discocleidion Discocleidion rufescens \N \N \N \N \N 67425 \N tribe Gratioleae \N \N \N \N \N 67426 H.pratensis Hemarthria Hemarthria pratensis \N \N \N \N \N 67427 L.saribus Livistona Livistona saribus \N \N \N \N \N 67428 M.(GB) Macaranga Macaranga sp. B (GB) \N \N \N \N \N 67429 G.foliosum Gymnophyton Gymnophyton foliosum \N \N \N \N \N 67430 P.undulata Prunus Prunus undulata \N \N \N \N \N 67431 A.fernaldii Amelanchier Amelanchier fernaldii \N \N \N \N \N 67432 B.diversifolia Bursera Bursera diversifolia \N \N \N \N \N 67433 I.longisepala Iliamna Iliamna longisepala \N \N \N \N \N 67434 C.grisebachianus Croton Croton grisebachianus \N \N \N \N \N 67435 P.GSH-2007 Prunus Prunus sp. GSH-2007 \N \N \N \N \N 67436 A.welwitschii Acacia Acacia welwitschii \N \N \N \N \N 67437 C.dioscurii Calophyllum Calophyllum dioscurii \N \N \N \N \N 67438 S.ninae Saussurea Saussurea ninae \N \N \N \N \N 67439 I.pseudocaucasica Iris Iris pseudocaucasica \N \N \N \N \N 67440 C.macrocalyx Cyrtandra Cyrtandra macrocalyx \N \N \N \N \N 67441 \N order Caryophyllales \N \N \N \N \N 67442 P.curtirachis Piper Piper curtirachis \N \N \N \N \N 67443 \N tribe Pistieae \N \N \N \N \N 67444 N.JS-2005 Napoleona Napoleona sp. JS-2005 \N \N \N \N \N 67445 P.cossonii Pyrus Pyrus cossonii Algerian pear \N \N \N \N 67446 B.subacaulis Berlandiera Berlandiera subacaulis \N \N \N \N \N 67447 \N genus Raphanus \N \N \N \N \N 67448 L.macrocarpum Lomatium Lomatium macrocarpum \N \N \N \N \N 67449 M.officinalis Melissa Melissa officinalis common balm,sweet balm \N \N \N \N 67450 S.darwinioides Siegfriedia Siegfriedia darwinioides \N \N \N \N \N 67451 \N subspecies Ligustrum obtusifolium subsp. suave \N \N \N \N \N 67452 C.gracillima Cliffortia Cliffortia gracillima \N \N \N \N \N 67453 \N genus Hesperantha \N \N \N \N \N 67454 \N genus Sigmoidotropis \N \N \N \N \N 67455 S.laeteviridis Symplocos Symplocos laeteviridis \N \N \N \N \N 67456 I.latipes Inga Inga latipes \N \N \N \N \N 67457 P.omeiensis Panax Panax omeiensis \N \N \N \N \N 67458 L.loranthifolium Leucadendron Leucadendron loranthifolium \N \N \N \N \N 67459 G.villosa Galeandra Galeandra villosa \N \N \N \N \N 67460 E.heterophyllum Eutrema Eutrema heterophyllum \N \N \N \N \N 67461 D.grandiflorum Dracocephalum Dracocephalum grandiflorum \N \N \N \N \N 67462 C.linifolium Clerodendrum Clerodendrum linifolium \N \N \N \N \N 67463 A.kalkora Albizia Albizia kalkora \N \N \N \N \N 67464 C.NC052 Casearia Casearia sp. Tokuoka NC052 \N \N \N \N \N 67465 C.rotundata Carex Carex rotundata \N \N \N \N \N 67466 G.levis Gigantochloa Gigantochloa levis \N \N \N \N \N 67467 R.multinervium Rhododendron Rhododendron multinervium \N \N \N \N \N 67468 \N genus Neillia \N \N \N \N \N 67469 C.33860' Chassalia Chassalia aff. ophioxyloides 'Larsen & Larsen 33860' \N \N \N \N \N 67470 L.klaineana Lecomtedoxa Lecomtedoxa klaineana \N \N \N \N \N 67471 E.inundata Etlingera Etlingera inundata \N \N \N \N \N 67472 F.luntii Fagonia Fagonia luntii \N \N \N \N \N 67473 \N varietas Tillandsia stricta var. stricta \N \N \N \N \N 67474 \N subspecies Arabidopsis arenosa subsp. arenosa \N \N \N \N \N 67475 H.gracilis Hoya Hoya gracilis \N \N \N \N \N 67476 H.humboldtiana Henckelia Henckelia humboldtiana \N \N \N \N \N 67477 S.JKP4OCT96 Schoepfia Schoepfia sp. JKP4OCT96 \N \N \N \N \N 67478 \N genus Stenoptera \N \N \N \N \N 67479 S.commixta Stevia Stevia commixta \N \N \N \N \N 67480 \N genus Gypothamnium \N \N \N \N \N 67481 S.acutatum Stenostomum Stenostomum acutatum \N \N \N \N \N 67482 G.venustus Gladiolus Gladiolus venustus \N \N \N \N \N 67483 E.ciliatum Epilobium Epilobium ciliatum \N \N \N \N \N 67484 L.crassiflorus Leucopogon Leucopogon crassiflorus \N \N \N \N \N 67485 L.exstipulata Lotononis Lotononis exstipulata \N \N \N \N \N 67486 E.sibiricus Elymus Elymus sibiricus \N \N \N \N \N 67487 P.foetida Paederia Paederia foetida \N \N \N \N \N 67488 D.angusta Dyschoriste Dyschoriste angusta \N \N \N \N \N 67489 A.brevispica Acacia Acacia brevispica \N \N \N \N \N 67490 T.macropteron Triaspis Triaspis macropteron \N \N \N \N \N 67491 \N subspecies Chionochloa rigida subsp. amara \N \N \N \N \N 67492 P.steyermarkii Persea Persea steyermarkii \N \N \N \N \N 67493 T.guianensis Tassadia Tassadia guianensis \N \N \N \N \N 67494 \N subspecies Pelargonium antidysentericum subsp. antidysentericum \N \N \N \N \N 67495 T.decumbens Trichogyne Trichogyne decumbens \N \N \N \N \N 67496 P.salicifolia Pinanga Pinanga salicifolia \N \N \N \N \N 67497 \N genus Lippia \N \N \N \N \N 67498 B.nigra Betula Betula nigra black birch,river birch \N \N \N \N 67499 P.wrightii Penstemon Penstemon wrightii \N \N \N \N \N 67500 U.riparia Uncinia Uncinia riparia \N \N \N \N \N 67501 P.incana Peperomia Peperomia incana \N \N \N \N \N 67502 M.lautereriana Mischarytera Mischarytera lautereriana \N \N \N \N \N 67503 K.linearifolia Kalanchoe Kalanchoe linearifolia \N \N \N \N \N 67504 C.colorata Curcuma Curcuma colorata \N \N \N \N \N 67505 P.pubescens Phylica Phylica pubescens \N \N \N \N \N 67506 \N genus Dracunculus \N \N \N \N \N 67507 F.schtschurowskiana Ferula Ferula schtschurowskiana \N \N \N \N \N 67508 C.vvedenskyi Cousinia Cousinia vvedenskyi \N \N \N \N \N 67509 M.fraileana Mammillaria Mammillaria fraileana \N \N \N \N \N 67510 A.serpylloides Arenaria Arenaria serpylloides \N \N \N \N \N 67511 D.nematophylla Daviesia Daviesia nematophylla \N \N \N \N \N 67512 S.breedlovei Symplocos Symplocos breedlovei \N \N \N \N \N 67513 G.migiurtina Golaea Golaea migiurtina \N \N \N \N \N 67514 P.spathulatus Paranomus Paranomus spathulatus \N \N \N \N \N 67515 B.holm-nielsenii Burmeistera Burmeistera holm-nielsenii \N \N \N \N \N 67516 H.subtriplinervium Heterocentron Heterocentron subtriplinervium \N \N \N \N \N 67517 A.volkensii Adenia Adenia volkensii \N \N \N \N \N 67518 L.subspicata Ligularia Ligularia subspicata \N \N \N \N \N 67519 T.4218 unclassified Taraxacum Taraxacum (sect. Suavia) sp. 4218 \N \N \N \N \N 67520 A.anguicida Aristolochia Aristolochia anguicida \N \N \N \N \N 67521 P.lividum Paspalum Paspalum lividum longtom \N \N \N \N 67522 P.argenteostriatus Pleioblastus Pleioblastus argenteostriatus \N \N \N \N \N 67523 A.amnicola Atriplex Atriplex amnicola \N \N \N \N \N 67524 V.nigricans Vicia Vicia nigricans \N \N \N \N \N 67525 A.damascena Avena Avena damascena \N \N \N \N \N 67526 D.styracifolium Desmodium Desmodium styracifolium \N \N \N \N \N 67528 E.papposa Eragrostis Eragrostis papposa \N \N \N \N \N 67529 H.pauciflorus Hippobromus Hippobromus pauciflorus \N \N \N \N \N 67530 B.gracilis Boehmeria Boehmeria gracilis \N \N \N \N \N 67531 O.quadripartita Osyris Osyris quadripartita \N \N \N \N \N 67532 G.02-588 Globba Globba aff. winitii 02-588 \N \N \N \N \N 67533 C.natans Crinum Crinum natans \N \N \N \N \N 67534 C.sheldonii Carex Carex sheldonii \N \N \N \N \N 67535 S.preussii Strophanthus Strophanthus preussii \N \N \N \N \N 67536 G.coriacea Gynochthodes Gynochthodes coriacea \N \N \N \N \N 67537 \N genus Remya \N \N \N \N \N 67538 \N genus Hammatolobium \N \N \N \N \N 67539 S.sumuntia Symplocos Symplocos sumuntia \N \N \N \N \N 67540 P.sericea Pimelea Pimelea sericea \N \N \N \N \N 67541 S.arundinaceum Saccharum Saccharum arundinaceum \N \N \N \N \N 67542 A.sinensis Aquilaria Aquilaria sinensis \N \N \N \N \N 67543 \N genus Cipadessa \N \N \N \N \N 67544 \N subspecies Biscutella laevigata subsp. varia \N \N \N \N \N 67545 A.curticoma Austrostipa Austrostipa curticoma \N \N \N \N \N 67546 P.1117 Pyrostria Pyrostria sp. 5 De Block et al. 1117 \N \N \N \N \N 67547 H.allioides Helichrysum Helichrysum allioides \N \N \N \N \N 67548 M.commune Mostacillastrum Mostacillastrum commune \N \N \N \N \N 67549 A.nivicola Austrostipa Austrostipa nivicola \N \N \N \N \N 67550 C.utilis Chimonobambusa Chimonobambusa utilis \N \N \N \N \N 67551 \N subspecies Puccinellia tenella subsp. langeana \N \N \N \N \N 67552 C.cimiciodora Ceropegia Ceropegia cimiciodora \N \N \N \N \N 67553 S.burundianus Streptocarpus Streptocarpus burundianus \N \N \N \N \N 67554 L.strigocamara Lantana Lantana strigocamara \N \N \N \N \N 67555 D.acuminatum Dasymachalon Dasymachalon acuminatum \N \N \N \N \N 67556 P.sprengerana Picris Picris sprengerana \N \N \N \N \N 67557 A.recurvata Aristida Aristida recurvata \N \N \N \N \N 67558 S.procumbens Sanvitalia Sanvitalia procumbens \N \N \N \N \N 67559 G.supinum Gnaphalium Gnaphalium supinum \N \N \N \N \N 67560 M.foleyi Moricandia Moricandia foleyi \N \N \N \N \N 67561 \N genus Anthogonium \N \N \N \N \N 67562 F.valesiaca Festuca Festuca valesiaca \N \N \N \N \N 67563 P.blakelyi Pultenaea Pultenaea blakelyi \N \N \N \N \N 67564 B.paniculata Beaupreopsis Beaupreopsis paniculata \N \N \N \N \N 67565 P.ranunculophyllum Pelargonium Pelargonium ranunculophyllum \N \N \N \N \N 67566 \N subspecies Euphorbia nevadensis subsp. bolosii \N \N \N \N \N 67567 M.celebica Morinda Morinda celebica \N \N \N \N \N 67568 C.squamiflora Cephalaria Cephalaria squamiflora \N \N \N \N \N 67569 C.mollis Commiphora Commiphora mollis \N \N \N \N \N 67570 S.papaverifolium Solanum Solanum papaverifolium \N \N \N \N \N 67571 \N subspecies Crepis occidentalis subsp. pumila \N \N \N \N \N 67572 P.foetida Passiflora Passiflora foetida \N \N \N \N \N 67573 K.tomentosa Krameria Krameria tomentosa \N \N \N \N \N 67574 E.radians Echidnopsis Echidnopsis radians \N \N \N \N \N 67575 R.rhodopus Rhododendron Rhododendron rhodopus \N \N \N \N \N 67576 E.hylandii Euodia Euodia hylandii \N \N \N \N \N 67577 H.acuminata Heisteria Heisteria acuminata \N \N \N \N \N 67578 B.masoniana Begonia Begonia masoniana \N \N \N \N \N 67579 A.walkeri Ainsliaea Ainsliaea walkeri \N \N \N \N \N 67580 M.complexa Muehlenbeckia Muehlenbeckia complexa \N \N \N \N \N 67581 \N genus Andeimalva \N \N \N \N \N 67582 R.CSU020 Rumex Rumex sp. CSU020 \N \N \N \N \N 67583 L.araucana Lucilia Lucilia araucana \N \N \N \N \N 67584 M.arborescens Mentzelia Mentzelia arborescens \N \N \N \N \N 67585 \N subspecies Lobularia canariensis subsp. fruticosa \N \N \N \N \N 67586 D.spirocentrum Delphinium Delphinium spirocentrum \N \N \N \N \N 67587 P.thurberi Pilostyles Pilostyles thurberi \N \N \N \N \N 67588 P.faberi Parnassia Parnassia faberi \N \N \N \N \N 67589 B.lutea Berberis Berberis lutea \N \N \N \N \N 67590 S.oligocephala Salmea Salmea oligocephala \N \N \N \N \N 67591 A.kelloggii Antirrhinum Antirrhinum kelloggii \N \N \N \N \N 67592 M.acerosa Muraltia Muraltia acerosa \N \N \N \N \N 67593 S.ruschiana Syagrus Syagrus ruschiana \N \N \N \N \N 67594 G.sp. Geranium Geranium sp. \N \N \N \N \N 67595 \N subspecies Paphiopedilum micranthum subsp. eburneum \N \N \N \N \N 67596 C.fissilis Cedrela Cedrela fissilis \N \N \N \N \N 67597 L.calthifolia Ligularia Ligularia calthifolia \N \N \N \N \N 67598 S.rubens Salix Salix x rubens hybrid crack willow \N \N \N \N 67599 T.pignantii Trifolium Trifolium pignantii \N \N \N \N \N 67600 \N genus Jaracatia \N \N \N \N \N 67601 \N varietas Cicuta maculata var. maculata \N \N \N \N \N 67602 B.bainesii Babiana Babiana bainesii \N \N \N \N \N 67603 G.microphyllum Galium Galium microphyllum \N \N \N \N \N 67604 \N varietas Prunus americana var. americana \N \N \N \N \N 67605 P.confertum Pharnaceum Pharnaceum confertum \N \N \N \N \N 67606 L.baehniana Laxoplumeria Laxoplumeria baehniana \N \N \N \N \N 67607 B.bidentata Berberis Berberis bidentata \N \N \N \N \N 67608 S.tseasnum Strychnos Strychnos tseasnum \N \N \N \N \N 67609 S.triflora Stevia Stevia triflora \N \N \N \N \N 67610 \N genus Peumus \N \N \N \N \N 67611 T.boxiana Tamonea Tamonea boxiana \N \N \N \N \N 67612 H.brevisubulatum Hordeum Hordeum brevisubulatum \N \N \N \N \N 67613 C.longipes Cineraria Cineraria longipes \N \N \N \N \N 67614 C.'Pinaleno' Carex Carex cf. microptera 'Pinaleno' \N \N \N \N \N 67615 \N genus Hilaria \N \N \N \N \N 67616 C.9513 Clematis Clematis cf. insidiosa Wen 9513 \N \N \N \N \N 67617 C.macrophylla Cunonia Cunonia macrophylla \N \N \N \N \N 67618 M.angustatus Mimulus Mimulus angustatus \N \N \N \N \N 67619 R.lichiangensis Rosa Rosa lichiangensis \N \N \N \N \N 67620 T.calcaricum Trifolium Trifolium calcaricum \N \N \N \N \N 67621 A.insigne Askidiosperma Askidiosperma insigne \N \N \N \N \N 67622 L.vulgare Ligustrum Ligustrum vulgare common privet,prim \N \N \N \N 67623 N.driesslei Nasa Nasa driesslei \N \N \N \N \N 67624 P.schultzeana Prestoea Prestoea schultzeana \N \N \N \N \N 67625 S.hookeri Strobilanthes Strobilanthes hookeri \N \N \N \N \N 67626 \N genus Hylodesmum \N \N \N \N \N 67627 T.togoensis Thunbergia Thunbergia togoensis \N \N \N \N \N 67628 \N genus Psilocarphus \N \N \N \N \N 67629 P.P147 Physalis Physalis sp. P147 \N \N \N \N \N 67630 \N genus Deutzianthus \N \N \N \N \N 67631 \N varietas Froelichia interrupta var. colimensis \N \N \N \N \N 67632 S.dariensis Senna Senna dariensis \N \N \N \N \N 67633 A.200412 Angelica Angelica sp. NHW 200412 \N \N \N \N \N 67634 A.trichopoda Amborella Amborella trichopoda \N \N \N \N \N 67635 D.falcorostrum Dendrobium Dendrobium falcorostrum \N \N \N \N \N 67636 \N genus Colocasia \N \N \N \N \N 67637 \N subspecies Felicia fruticosa subsp. brevipedunculata \N \N \N \N \N 67638 C.songorica Cleistogenes Cleistogenes songorica \N \N \N \N \N 67639 P.baurii Pilea Pilea baurii \N \N \N \N \N 67640 M.longiflora Macrosiphonia Macrosiphonia longiflora \N \N \N \N \N 67641 M.SGR-2009 Morinda Morinda sp. 7 SGR-2009 \N \N \N \N \N 67642 I.pseudotinctoria Indigofera Indigofera pseudotinctoria \N \N \N \N \N 67643 \N subspecies Faujasiopsis flexuosa subsp. boubonensis \N \N \N \N \N 67644 \N genus Pedalium \N \N \N \N \N 67645 \N genus Polygala \N \N \N \N \N 67646 P.pedunculata Pultenaea Pultenaea pedunculata \N \N \N \N \N 67647 L.pseudomeum Laserpitium Laserpitium pseudomeum \N \N \N \N \N 67648 I.fragilis Ilex Ilex fragilis \N \N \N \N \N 67649 P.integrifolia Petunia Petunia integrifolia violet-flowered petunia \N \N \N \N 67650 A.melliana Actinidia Actinidia melliana \N \N \N \N \N 67651 M.exotica Musa Musa exotica \N \N \N \N \N 67652 S.oregana Sidalcea Sidalcea oregana \N \N \N \N \N 67653 P.secundiflora Primula Primula secundiflora \N \N \N \N \N 67654 P.clamboides Phyllanthus Phyllanthus clamboides \N \N \N \N \N 67655 S.chinensis Sanicula Sanicula chinensis \N \N \N \N \N 67656 V.95018 Viola Viola sp. Qiu 95018 \N \N \N \N \N 67657 L.lessertiana Lactuca Lactuca lessertiana \N \N \N \N \N 67658 M.frigidus Mitracarpus Mitracarpus frigidus \N \N \N \N \N 67659 S.cubense Sideroxylon Sideroxylon cubense \N \N \N \N \N 67660 O.azureus Otacanthus Otacanthus azureus \N \N \N \N \N 67661 S.tiliifolia Stictocardia Stictocardia tiliifolia \N \N \N \N \N 67662 O.kokonorica Orinus Orinus kokonorica \N \N \N \N \N 67663 B.nodosa Brassavola Brassavola nodosa lady-of-the-night \N \N \N \N 67664 O.urceolata Orthosia Orthosia urceolata \N \N \N \N \N 67665 P.rigidissima Pentaschistis Pentameris rigidissima \N \N \N \N \N 67666 \N varietas Luculia pinceana var. pubescens \N \N \N \N \N 67667 C.argentea Commersonia Commersonia argentea \N \N \N \N \N 67668 S.schliebenii Streptocarpus Streptocarpus schliebenii \N \N \N \N \N 67669 P.laxiflorus Plectranthus Plectranthus laxiflorus \N \N \N \N \N 67670 H.gayana Hypochaeris Hypochaeris gayana \N \N \N \N \N 67671 A.spiciformis Artemisia Artemisia spiciformis \N \N \N \N \N 67672 \N subspecies Astrantia major subsp. involucrata \N \N \N \N \N 67673 H.serpens Hoya Hoya serpens \N \N \N \N \N 67674 P.ZJL-2009 Paphiopedilum Paphiopedilum sp. ZJL-2009 \N \N \N \N \N 67675 P.alboroseum Papaver Papaver alboroseum \N \N \N \N \N 67676 O.coreana Oreorchis Oreorchis coreana \N \N \N \N \N 67677 N.gracilipes Neogoezia Neogoezia gracilipes \N \N \N \N \N 67678 T.sprengelianum Tetrataenium Tetrataenium sprengelianum \N \N \N \N \N 67679 \N genus Blancoa \N \N \N \N \N 67680 I.indica Ipomoea Ipomoea indica blue dawnflower \N \N \N \N 67681 O.creticola Ophrys Ophrys creticola \N \N \N \N \N 67682 \N varietas Oxytropis borealis var. viscida \N \N \N \N \N 67683 C.pumila Chirita Chirita pumila \N \N \N \N \N 67684 C.SM-1999 Cabomba Cabomba sp. SM-1999 \N \N \N \N \N 67685 E.squarrosum Eriosema Eriosema squarrosum \N \N \N \N \N 67686 H.trilineatum Helichrysum Helichrysum trilineatum \N \N \N \N \N 67687 E.molucelloides Eremostachys Eremostachys molucelloides \N \N \N \N \N 67688 C.trifida Corallorhiza Corallorhiza trifida \N \N \N \N \N 67689 C.purdomii Caragana Caragana purdomii \N \N \N \N \N 67690 \N subspecies Giliastrum purpusii subsp. purpusii \N \N \N \N \N 67691 I.filifolia Iris Iris filifolia \N \N \N \N \N 67692 P.insigne Pleurothyrium Pleurothyrium insigne \N \N \N \N \N 67693 C.grioletii Carex Carex grioletii \N \N \N \N \N 67694 F.deltoidea Ficus Ficus deltoidea mistletoe fig \N \N \N \N 67695 B.silvestrii Boehmeria Boehmeria silvestrii \N \N \N \N \N 67696 X.mafaffa Xanthosoma Xanthosoma mafaffa \N \N \N \N \N 67697 P.salviifolia Pityrodia Pityrodia salviifolia \N \N \N \N \N 67698 O.aurarium Oncidium Oncidium aurarium \N \N \N \N \N 67699 L.pubiflora Lophostachys Lophostachys pubiflora \N \N \N \N \N 67700 B.benoistii Bupleurum Bupleurum benoistii \N \N \N \N \N 67701 B.incana Bursaria Bursaria incana \N \N \N \N \N 67702 P.schweinfurthii Phagnalon Phagnalon schweinfurthii \N \N \N \N \N 67703 P.paniculatum Polygonum Polygonum paniculatum \N \N \N \N \N 67704 E.scabriglumis Elymus Elymus scabriglumis \N \N \N \N \N 67705 G.exiguus Gladiolus Gladiolus exiguus \N \N \N \N \N 67706 C.lapponica Calamagrostis Calamagrostis lapponica \N \N \N \N \N 67707 C.angavokeliense Cynanchum Cynanchum angavokeliense \N \N \N \N \N 67708 P.repens Polycarpaea Polycarpaea repens \N \N \N \N \N 67709 C.LJM11630 Chirita Chirita sp. LJM11630 \N \N \N \N \N 67710 P.opacum Protium Protium opacum \N \N \N \N \N 67711 S.guaranitica Salvia Salvia guaranitica \N \N \N \N \N 67712 \N subspecies Descurainia obtusa subsp. obtusa \N \N \N \N \N 67713 L.aculeata Lacmellea Lacmellea aculeata \N \N \N \N \N 67714 E.setosa Echeveria Echeveria setosa \N \N \N \N \N 67715 S.rosea Sobralia Sobralia rosea \N \N \N \N \N 67716 S.tenuipes Solanum Solanum tenuipes \N \N \N \N \N 67717 \N genus Opercularia \N \N \N \N \N 67718 H.glabra Heteropterys Heteropterys glabra \N \N \N \N \N 67719 P.macropoda Pouteria Pouteria macropoda \N \N \N \N \N 67720 \N forma Eleocharis congesta f. dolichochaeta \N \N \N \N \N 67721 N.micrantha Nonea Nonea micrantha \N \N \N \N \N 67722 N.YCH-2007 Nelumbo Nelumbo sp. YCH-2007 \N \N \N \N \N 67723 X.HT109 x Tritordeum x Tritordeum sp. HT109 \N \N \N \N \N 67724 \N genus Stamnorchis \N \N \N \N \N 67725 A.odoratissima Aristolochia Aristolochia odoratissima \N \N \N \N \N 67726 M.lindsayi Mammillaria Mammillaria lindsayi \N \N \N \N \N 67727 \N subspecies Pyrus communis subsp. caucasica \N \N \N \N \N 67728 P.s.n. Pteroceras Pteroceras sp. Szlachetko s.n. \N \N \N \N \N 67729 S.gerrardii Salacia Salacia gerrardii \N \N \N \N \N 67730 C.nuttallii Cascadia Cascadia nuttallii \N \N \N \N \N 67731 C.floridus Convolvulus Convolvulus floridus \N \N \N \N \N 67732 P.buxifolium Plocosperma Plocosperma buxifolium \N \N \N \N \N 67733 C.klotzschiana Chamaedorea Chamaedorea klotzschiana \N \N \N \N \N 67734 C.exiguiflora Cuatresia Cuatresia exiguiflora \N \N \N \N \N 67735 \N genus Muricaria \N \N \N \N \N 67736 Q.996078 Quercus Quercus cf. castaneifolia Denk 996078 \N \N \N \N \N 67737 C.fastigiatus Chordifex Chordifex fastigiatus \N \N \N \N \N 67738 \N genus Pinzona \N \N \N \N \N 67739 E.chrysantha Euphrasia Euphrasia chrysantha \N \N \N \N \N 67740 \N genus Astrodaucus \N \N \N \N \N 67741 M.humblotii Mauloutchia Mauloutchia humblotii \N \N \N \N \N 67742 S.dichondrifolius Samolus Samolus dichondrifolius \N \N \N \N \N 67743 B.prorepens Barbosella Barbosella prorepens \N \N \N \N \N 67744 P.marojejiensis Phyllanthus Phyllanthus marojejiensis \N \N \N \N \N 67745 C.ovata Codonopsis Codonopsis ovata \N \N \N \N \N 67746 C.divaricata Cleistes Cleistes divaricata \N \N \N \N \N 67747 N.natalensis Notobuxus Notobuxus natalensis \N \N \N \N \N 67748 L.macbridei Lithospermum Lithospermum macbridei \N \N \N \N \N 67749 \N subtribe Daucinae \N \N \N \N \N 67750 R.neglecta Rytigynia Rytigynia neglecta \N \N \N \N \N 67751 C.horrida Crossandra Crossandra horrida \N \N \N \N \N 67752 O.herbacea Oldenlandia Oldenlandia herbacea \N \N \N \N \N 67753 S.austriaca Scorzonera Scorzonera austriaca \N \N \N \N \N 67754 B.melleri Byttneria Byttneria melleri \N \N \N \N \N 67755 R.palustris Rumex Rumex palustris \N \N \N \N \N 67756 Z.aquatica Zizania Zizania aquatica Canadian wild rice \N \N \N \N 67757 O.pallida Ottoschulzia Ottoschulzia pallida \N \N \N \N \N 67758 P.siderophila Pauridiantha Pauridiantha siderophila \N \N \N \N \N 67759 C.1997' Cypella Cypella sp. 'Lejeune 1997' \N \N \N \N \N 67760 F.orthophylla Festuca Festuca orthophylla \N \N \N \N \N 67761 S.crassipes Schefflera Schefflera crassipes \N \N \N \N \N 67762 \N varietas Epithema taiwanense var. fasciculatum \N \N \N \N \N 67763 S.dasyclados Salix Salix dasyclados \N \N \N \N \N 67764 K.hospita Kleinhovia Kleinhovia hospita \N \N \N \N \N 67765 M.nelsonii Mimulus Mimulus nelsonii \N \N \N \N \N 67766 \N varietas Lupinus latifolius var. parishii \N \N \N \N \N 67767 D.repens Draba Draba repens \N \N \N \N \N 67768 \N varietas Swainsona canescens var. horniana \N \N \N \N \N 67769 \N subspecies Conostylis aculeata subsp. preissii \N \N \N \N \N 67770 J.persoonii Jacobaea Jacobaea persoonii \N \N \N \N \N 67771 \N subspecies Pimpinella ledermannii subsp. engleriana \N \N \N \N \N 67772 P.rubella Potentilla Potentilla rubella \N \N \N \N \N 67773 D.prostratus Dipteracanthus Dipteracanthus prostratus \N \N \N \N \N 67774 S.frutescens Schaefferia Schaefferia frutescens \N \N \N \N \N 67775 L.divaricata Lotononis Lotononis divaricata \N \N \N \N \N 67776 S.kleinii Streptocaulon Streptocaulon kleinii \N \N \N \N \N 67777 S.ferrugineus Styrax Styrax ferrugineus \N \N \N \N \N 67778 T.6184 Tetrastigma Tetrastigma sp. Deng 6184 \N \N \N \N \N 67779 I.parviflora Ixora Ixora parviflora \N \N \N \N \N 67780 F.echinata Felicia Felicia echinata \N \N \N \N \N 67781 H.lylei Halosarcia Halosarcia lylei \N \N \N \N \N 67782 A.aubryanum Anthostema Anthostema aubryanum \N \N \N \N \N 67783 M.alipes Mirabilis Mirabilis alipes \N \N \N \N \N 67784 B.ventricosa Bambusa Bambusa ventricosa Buddha bamboo,tu tu chu \N \N \N \N 67785 S.ingrata Stylosanthes Stylosanthes ingrata \N \N \N \N \N 67786 S.indicum Sesamum Sesamum indicum beniseed,gingelly,hu ma,koba,sesame \N \N \N \N 67787 E.9/5/00 Erigeron Erigeron sp. Santiago & Guala 9/5/00 \N \N \N \N \N 67788 C.1608 Colletoecema Colletoecema sp. Dessein & Sonke 1608 \N \N \N \N \N 67789 P.aemula Prosthechea Prosthechea aemula \N \N \N \N \N 67790 I.semitrijuga Indigofera Indigofera semitrijuga \N \N \N \N \N 67791 \N genus Bothriochloa \N \N \N \N \N 67792 A.montserratii Alchemilla Alchemilla montserratii \N \N \N \N \N 67793 \N genus Bridgesia \N \N \N \N \N 67794 S.K-1994 Symbegonia Symbegonia sp. K-1994 \N \N \N \N \N 67795 C.cauliflorum Cremastosperma Cremastosperma cauliflorum \N \N \N \N \N 67796 P.maderensis Phalaris Phalaris maderensis \N \N \N \N \N 67797 E.tessmannii Eurypetalum Eurypetalum tessmannii \N \N \N \N \N 67798 B.FS1622 Bulbophyllum Bulbophyllum sp. FS1622 \N \N \N \N \N 67799 E.thodei Erica Erica thodei \N \N \N \N \N 67800 B.infundibula Bejaria Bejaria infundibula \N \N \N \N \N 67801 A.plagiopterus Acridocarpus Acridocarpus plagiopterus \N \N \N \N \N 67802 \N genus Pachycornia \N \N \N \N \N 67803 I.frutescens Ichnocarpus Ichnocarpus frutescens \N \N \N \N \N 67804 T.fruticosa Tetradenia Tetradenia fruticosa \N \N \N \N \N 67805 C.chilensis Chaetanthera Chaetanthera chilensis \N \N \N \N \N 67806 I.foliosa Ixora Ixora foliosa \N \N \N \N \N 67807 T.sagasteguianum Tetramerium Tetramerium sagasteguianum \N \N \N \N \N 67808 I.usambarensis Impatiens Impatiens usambarensis \N \N \N \N \N 67809 P.racemosa Pedicularis Pedicularis racemosa \N \N \N \N \N 67810 \N genus Woodiellantha \N \N \N \N \N 67811 A.nordhageniana Antennaria Antennaria nordhageniana \N \N \N \N \N 67812 A.calcicola Acacia Acacia calcicola \N \N \N \N \N 67813 E.resinifera Encelia Encelia resinifera \N \N \N \N \N 67814 A.parviflora Aesculus Aesculus parviflora bottlebrush buckeye \N \N \N \N 67815 T.macrantha Thottea Thottea macrantha \N \N \N \N \N 67816 \N varietas Cuphea splendida var. viridiflava \N \N \N \N \N 67817 P.neglecta Podolepis Podolepis neglecta \N \N \N \N \N 67818 H.sylvestris Homogyne Homogyne sylvestris \N \N \N \N \N 67819 L.barteri Lijndenia Lijndenia barteri \N \N \N \N \N 67820 F.binnendijkii Ficus Ficus binnendijkii \N \N \N \N \N 67821 E.taxifolia Erica Erica taxifolia \N \N \N \N \N 67822 M.mollis Miliusa Miliusa mollis \N \N \N \N \N 67823 K.herbacea Kaisupeea Kaisupeea herbacea \N \N \N \N \N 67824 C.dissectus Coreocarpus Coreocarpus dissectus \N \N \N \N \N 67825 \N genus Quillaja \N \N \N \N \N 67826 M.doltsopa Michelia Michelia doltsopa \N \N \N \N \N 67827 S.hirsuta Salvia Salvia hirsuta \N \N \N \N \N 67828 G.propinqua Gentianella Gentianella propinqua \N \N \N \N \N 67829 B.pacifica Balgoya Balgoya pacifica \N \N \N \N \N 67830 \N genus Otatea \N \N \N \N \N 67831 S.tridactyla Saussurea Saussurea tridactyla \N \N \N \N \N 67832 I.asprella Ilex Ilex asprella \N \N \N \N \N 67833 C.obtusiloba Cordylostigma Cordylostigma obtusiloba \N \N \N \N \N 67834 I.iteophylla Ixora Ixora iteophylla \N \N \N \N \N 67835 D.cuspidata Duhaldea Duhaldea cuspidata \N \N \N \N \N 67836 P.marsupiiferum Piper Piper marsupiiferum \N \N \N \N \N 67837 \N genus Dendriopoterium \N \N \N \N \N 67838 M.punctulata Monstera Monstera punctulata \N \N \N \N \N 67839 A.fragrans Astelia Astelia fragrans \N \N \N \N \N 67840 \N varietas Solidago canadensis var. scabra \N \N \N \N \N 67841 I.nitidum Iochroma Iochroma nitidum \N \N \N \N \N 67842 L.nitidum Lepidium Lepidium nitidum \N \N \N \N \N 67843 M.repens Momordica Momordica repens \N \N \N \N \N 67844 C.A14 Castanopsis Castanopsis sp. A14 \N \N \N \N \N 67845 U.minor Ulex Ulex minor dwarf furze,dwarf gorse \N \N \N \N 67846 T.664 Toona Toona sp. Chase 664 \N \N \N \N \N 67847 P.schlechteri Pleuranthodium Pleuranthodium schlechteri \N \N \N \N \N 67848 R.rhipsalisocia Rangaeris Rangaeris rhipsalisocia \N \N \N \N \N 67849 B.hispida Borreria Borreria hispida \N \N \N \N \N 67850 C.chichenensis Croton Croton chichenensis \N \N \N \N \N 67851 A.8343 Ampelocissus Ampelocissus sp. 8343 \N \N \N \N \N 67852 L.ruthiana Lilaeopsis Lilaeopsis ruthiana \N \N \N \N \N 67853 H.hirsutus Helianthus Helianthus hirsutus \N \N \N \N \N 67854 P.alpina Pterostylis Pterostylis alpina \N \N \N \N \N 67855 L.nelsonii Lithospermum Lithospermum nelsonii \N \N \N \N \N 67856 D.harmsii Delarbrea Delarbrea harmsii \N \N \N \N \N 67857 \N genus Symphysia \N \N \N \N \N 67858 J.ascendens Joinvillea Joinvillea ascendens \N \N \N \N \N 67859 C.montis-loa Clermontia Clermontia montis-loa \N \N \N \N \N 67860 P.longispicum Piper Piper longispicum \N \N \N \N \N 67861 \N genus Phlyctidocarpa \N \N \N \N \N 67862 M.onoei Melica Melica onoei \N \N \N \N \N 67863 \N varietas Olearia phlogopappa var. subrepanda \N \N \N \N \N 67864 E.calcarata Euphorbia Euphorbia calcarata \N \N \N \N \N 67865 L.sericea Litsea Litsea sericea \N \N \N \N \N 67866 B.aceroides Begonia Begonia aceroides \N \N \N \N \N 67867 E.multiflorus Eriochilus Eriochilus multiflorus \N \N \N \N \N 67868 S.splendens Suaeda Suaeda splendens \N \N \N \N \N 67869 \N varietas Ceanothus spinosus var. spinosus \N \N \N \N \N 67870 L.rassa Lithocarpus Lithocarpus rassa berangan babi \N \N \N \N 67871 C.grandiflorum Cinnamomum Cinnamomum grandiflorum \N \N \N \N \N 67872 A.rubrum Acer Acer rubrum red maple \N \N \N \N 67873 H.675MWC Holothrix Holothrix sp. 675MWC \N \N \N \N \N 67874 V.boninense Vaccinium Vaccinium boninense \N \N \N \N \N 67875 B.minor Briza Briza minor \N \N \N \N \N 67876 H.leptostachys Hyptis Hyptis leptostachys \N \N \N \N \N 67877 S.rubra Spergula Spergula rubra \N \N \N \N \N 67878 A.impressum Adenocalymma Adenocalymma impressum \N \N \N \N \N 67879 P.subtilis Paepalanthus Paepalanthus subtilis \N \N \N \N \N 67880 R.rubiginosum Rhododendron Rhododendron rubiginosum \N \N \N \N \N 67881 F.longifolia Festuca Festuca longifolia \N \N \N \N \N 67882 O.foucaudii Oenanthe Oenanthe foucaudii \N \N \N \N \N 67883 \N genus Pavonia \N \N \N \N \N 67884 S.paradoxa Salix Salix paradoxa \N \N \N \N \N 67885 \N no rank basal Magnoliophyta \N \N \N \N \N 67886 N.veitchii Nepenthes Nepenthes veitchii \N \N \N \N \N 67887 P.heucherifolia Primula Primula heucherifolia \N \N \N \N \N 67888 L.tenuissima Litwinowia Litwinowia tenuissima \N \N \N \N \N 67889 \N subspecies Allium caspium subsp. baissunense \N \N \N \N \N 67890 \N genus Ariopsis \N \N \N \N \N 67891 X.myrianthum Xylophragma Xylophragma myrianthum \N \N \N \N \N 67892 P.mexicana Persicaria Persicaria mexicana \N \N \N \N \N 67893 \N genus Oxystylis \N \N \N \N \N 67894 C.turgidus Cystacanthus Cystacanthus turgidus \N \N \N \N \N 67895 L.petrophilum Laserpitium Laserpitium petrophilum \N \N \N \N \N 67896 T.elongatus Tragopogon Tragopogon elongatus \N \N \N \N \N 67897 L.colensoi Luzula Luzula colensoi \N \N \N \N \N 67898 G.flagellaris Globba Globba flagellaris \N \N \N \N \N 67899 R.allegheniensis Rubus Rubus allegheniensis Allegheny blackberry,sow-teat blackberry \N \N \N \N 67900 S.calva Schefflera Schefflera calva \N \N \N \N \N 67901 H.magniscutata Habenaria Habenaria magniscutata \N \N \N \N \N 67902 T.dubium Tetrastigma Tetrastigma dubium \N \N \N \N \N 67903 L.myrtoides Lonchostoma Lonchostoma myrtoides \N \N \N \N \N 67904 S.stellatiflora Suaeda Suaeda stellatiflora \N \N \N \N \N 67905 B.volubilis Bowiea Bowiea volubilis \N \N \N \N \N 67906 A.uvifera Aspidocarya Aspidocarya uvifera \N \N \N \N \N 67907 \N genus Pycnocomon \N \N \N \N \N 67908 O.quadripunctata Orchis Orchis quadripunctata \N \N \N \N \N 67909 S.vulpiseta Setaria Setaria vulpiseta \N \N \N \N \N 67910 P.debilis Parietaria Parietaria debilis \N \N \N \N \N 67911 T.somnians Tillandsia Tillandsia somnians \N \N \N \N \N 67912 P.6846 Prunus Prunus sp. Wen 6846 \N \N \N \N \N 67913 C.heldreichii Colchicum Colchicum heldreichii \N \N \N \N \N 67914 \N genus Tetraplasandra \N \N \N \N \N 67915 E.franchetii Epimedium Epimedium franchetii \N \N \N \N \N 67916 E.aureum Erodium Erodium aureum \N \N \N \N \N 67917 \N subspecies Allium jesdianum subsp. angustitepalum \N \N \N \N \N 67918 A.excelsa Actephila Actephila excelsa \N \N \N \N \N 67919 C.triumfettii Centaurea Centaurea triumfettii \N \N \N \N \N 67920 D.wardianum Dendrobium Dendrobium wardianum \N \N \N \N \N 67921 Z.spina-christi Ziziphus Ziziphus spina-christi Christ's-thorn,kurna,nabbag,sidr \N \N \N \N 67922 H.kouytchense Hypericum Hypericum kouytchense \N \N \N \N \N 67923 C.1106 Cremocarpon Cremocarpon sp. Davis 1106 \N \N \N \N \N 67924 A.amplectens Aspazoma Aspazoma amplectens \N \N \N \N \N 67925 M.subtruncatum Mesembryanthemum Mesembryanthemum subtruncatum \N \N \N \N \N 67926 L.japonica Lysimachia Lysimachia japonica \N \N \N \N \N 67927 M.rubiifolia Mirbelia Mirbelia rubiifolia \N \N \N \N \N 67928 N.picilla Nicotiana Nicotiana picilla \N \N \N \N \N 67929 S.leiocladum Sorghum Sorghum leiocladum \N \N \N \N \N 67930 M.foliosa Mancoa Mancoa foliosa \N \N \N \N \N 67931 C.subulata Catopsis Catopsis subulata \N \N \N \N \N 67932 T.orbicularis Trichosalpinx Trichosalpinx orbicularis \N \N \N \N \N 67933 H.humilis Hoffmannseggia Hoffmannseggia humilis \N \N \N \N \N 67934 P.sagarikii Pecteilis Pecteilis sagarikii \N \N \N \N \N 67935 S.paradoxum Steriphoma Steriphoma paradoxum \N \N \N \N \N 67936 P.eremaea Parakeelya Parakeelya eremaea \N \N \N \N \N 67937 S.franchetii Senecio Senecio franchetii \N \N \N \N \N 67938 \N genus Eurycles \N \N \N \N \N 67939 M.exangulatus Mischocarpus Mischocarpus exangulatus \N \N \N \N \N 67940 S.purpurea Swainsona Swainsona purpurea \N \N \N \N \N 67941 \N varietas Craibiodendron scleranthum var. kwangtungense \N \N \N \N \N 67942 M.lunata Matthiola Matthiola lunata \N \N \N \N \N 67943 P.stolonifera Potentilla Potentilla stolonifera \N \N \N \N \N 67944 J.oppositifolia Jaltomata Jaltomata oppositifolia \N \N \N \N \N 67945 C.rumelica Camelina Camelina rumelica \N \N \N \N \N 67946 T.amazonia Terminalia Terminalia amazonia \N \N \N \N \N 67949 E.variabile Eupatorium Eupatorium variabile \N \N \N \N \N 67950 \N genus Magallana \N \N \N \N \N 67951 \N varietas Corallorhiza maculata var. occidentalis \N \N \N \N \N 67952 E.298 Erica Erica sp. Gehrke 298 \N \N \N \N \N 67953 \N genus Conioselinum \N \N \N \N \N 67954 A.lancea Atractylodes Atractylodes lancea \N \N \N \N \N 67955 E.adnata Erica Erica adnata \N \N \N \N \N 67956 V.fasciculiflora Villaria Villaria fasciculiflora \N \N \N \N \N 67957 A.columbianum Aconitum Aconitum columbianum nothern monkshood \N \N \N \N 67958 J.BAC-2010 unclassified Juncaceae Juncaceae sp. A2 BAC-2010 \N \N \N \N \N 67959 M.longifolia Myrmecodia Myrmecodia longifolia \N \N \N \N \N 67960 M.cauliflora Myrciaria Myrciaria cauliflora \N \N \N \N \N 67961 F.GUY-65 Ficus Ficus sp. GUY-65 \N \N \N \N \N 67962 K.leucocephala Kniphofia Kniphofia leucocephala \N \N \N \N \N 67963 O.purpurea Orobanche Orobanche purpurea \N \N \N \N \N 67964 B.romana Bellevalia Bellevalia romana \N \N \N \N \N 67965 D.barklyanus Distichostemon Distichostemon barklyanus \N \N \N \N \N 67966 C.gibberosa Crambe Crambe gibberosa \N \N \N \N \N 67967 E.klotzschii Euphorbia Euphorbia klotzschii \N \N \N \N \N 67968 V.8007 Vitis Vitis sp. 8007 \N \N \N \N \N 67969 M.menthaefolia Monarda Monarda menthaefolia \N \N \N \N \N 67970 D.bhutanica Draba Draba bhutanica \N \N \N \N \N 67971 O.denegrii Obregonia Obregonia denegrii \N \N \N \N \N 67972 \N varietas Arctotis aspera var. scabra \N \N \N \N \N 67973 S.adscendens Saxifraga Saxifraga adscendens \N \N \N \N \N 67974 C.natans Caltha Caltha natans \N \N \N \N \N 67975 S.dilatata Swertia Swertia dilatata \N \N \N \N \N 67976 S.lueddemannii Schomburgkia Schomburgkia lueddemannii \N \N \N \N \N 67977 G.dusenii Guatteria Guatteria dusenii \N \N \N \N \N 67978 T.galioides Thesium Thesium galioides \N \N \N \N \N 67979 A.glabra Alpinia Alpinia glabra \N \N \N \N \N 67980 \N genus Aplanodes \N \N \N \N \N 67981 C.laevifolium Clerodendrum Clerodendrum laevifolium \N \N \N \N \N 67982 H.brachycolumna Hagsatera Hagsatera brachycolumna \N \N \N \N \N 67983 S.nitens Stipa Stipa nitens \N \N \N \N \N 67984 M.smithiana Mentha Mentha x smithiana \N \N \N \N \N 67985 R.lapponicum Rhododendron Rhododendron lapponicum \N \N \N \N \N 67986 \N genus Heppiella \N \N \N \N \N 67987 S.barteri Strychnos Strychnos barteri \N \N \N \N \N 67988 \N subspecies Veronica panormitana subsp. baradostensis \N \N \N \N \N 67989 A.flavida Anotea Anotea flavida \N \N \N \N \N 67990 M.8485 Muraltia Muraltia aff. alopecuroides Goldblatt 8485 \N \N \N \N \N 67991 P.rubifolia Primula Primula rubifolia \N \N \N \N \N 67992 N.italica Nepeta Nepeta italica \N \N \N \N \N 67993 A.neriifolia Acacia Acacia neriifolia \N \N \N \N \N 67994 S.14500 Sindora Sindora sp. Leeuvenberg 14500 \N \N \N \N \N 67995 I.potaninii Iris Iris potaninii juan qiao yuan wei \N \N \N \N 67996 B.glomerulata Brassaiopsis Brassaiopsis glomerulata Brassaiopsis glomerulata (Blume) Regel \N \N \N \N 67997 V.ovato-oblonga Viola Viola ovato-oblonga \N \N \N \N \N 67998 H.subtomentellum Heracleum Heracleum subtomentellum \N \N \N \N \N 67999 \N subspecies Acacia nilotica subsp. nilotica \N \N \N \N \N 68000 N.rubra Nymphaea Nymphaea rubra \N \N \N \N \N 68001 B.bromoideus Bromus Bromus bromoideus \N \N \N \N \N 68002 \N subspecies Fragaria vesca subsp. vesca \N \N \N \N \N 68003 T.hookeri Trikeraia Trikeraia hookeri \N \N \N \N \N 68004 R.apiculata Rinorea Rinorea apiculata \N \N \N \N \N 68005 B.baviensis Begonia Begonia baviensis \N \N \N \N \N 68006 A.turbinata Argyroglottis Argyroglottis turbinata \N \N \N \N \N 68007 T.7465 Tetrastigma Tetrastigma sp. 7465 \N \N \N \N \N 68008 T.24980 Tradescantia Tradescantia aff. pallida Bradely 24980 \N \N \N \N \N 68009 M.myriocephala Mimosa Mimosa myriocephala \N \N \N \N \N 68010 \N genus Arrojadoa \N \N \N \N \N 68011 \N genus Nissolia \N \N \N \N \N 68012 R.angusta Rhodiola Rhodiola angusta \N \N \N \N \N 68013 S.pachystachya Salicornia Salicornia pachystachya \N \N \N \N \N 83352 \N genus Pleiocarpa \N \N \N \N \N 68014 A.champagneuxii Anacamptis Anacamptis champagneuxii \N \N \N \N \N 68015 S.hamatus Selenicereus Selenicereus hamatus \N \N \N \N \N 68016 B.titovii Brachanthemum Brachanthemum titovii \N \N \N \N \N 68017 \N subspecies Carex lepidocarpa subsp. jemtlandica \N \N \N \N \N 68018 S.tomentosa Stanleya Stanleya tomentosa \N \N \N \N \N 68019 A.tribuloides Acicarpha Acicarpha tribuloides \N \N \N \N \N 68020 P.congolense Pinacopodium Pinacopodium congolense \N \N \N \N \N 68021 S.micranthum Sisyrinchium Sisyrinchium micranthum \N \N \N \N \N 68022 \N subspecies Streptocarpus polyanthus subsp. comptonii \N \N \N \N \N 68023 \N genus Craniolaria \N \N \N \N \N 68024 S.undulata Scorzonera Scorzonera undulata \N \N \N \N \N 68025 J.lupulina Johnsonia Johnsonia lupulina \N \N \N \N \N 68026 H.veronicifolium Heliotropium Heliotropium veronicifolium \N \N \N \N \N 68027 T.acidophylla Tricalysia Tricalysia acidophylla \N \N \N \N \N 68028 \N subspecies Sideritis endressii subsp. emporitana \N \N \N \N \N 68029 P.stenopetala Purdiaea Purdiaea stenopetala \N \N \N \N \N 68030 I.4332 Ixocactus Ixocactus sp. Nickrent 4332 \N \N \N \N \N 68031 C.tasmanica Cuscuta Cuscuta tasmanica \N \N \N \N \N 68032 \N genus Breviea \N \N \N \N \N 68033 C.leptocaulis Cylindropuntia Cylindropuntia leptocaulis \N \N \N \N \N 68034 C.hydaspidis Clinopodium Clinopodium hydaspidis \N \N \N \N \N 68035 A.membranacea Achillea Achillea membranacea \N \N \N \N \N 68036 I.ancisa Ipomoea Ipomoea ancisa \N \N \N \N \N 68037 A.laciniatiformis Artemisia Artemisia laciniatiformis \N \N \N \N \N 68038 C.chromosa Castilleja Castilleja chromosa \N \N \N \N \N 68039 O.caerulea Oxytropis Oxytropis caerulea \N \N \N \N \N 68040 M.holostachya Marantochloa Marantochloa holostachya \N \N \N \N \N 68041 A.confusum Achnatherum Achnatherum confusum \N \N \N \N \N 68042 S.cichoriacea Scorzoneroides Scorzoneroides cichoriacea \N \N \N \N \N 68043 U.dunstaniae Utricularia Utricularia dunstaniae \N \N \N \N \N 68044 S.xanthotricha Sabicea Sabicea xanthotricha \N \N \N \N \N 68045 N.betuloides Nothofagus Nothofagus betuloides guindo-beech \N \N \N \N 68046 B.macrocarpa Brassica Brassica macrocarpa \N \N \N \N \N 68047 C.fulvida Cota Cota fulvida \N \N \N \N \N 68048 G.bibarbatus Gonolobus Gonolobus bibarbatus \N \N \N \N \N 68049 \N subspecies Leymus salinus subsp. mojavensis \N \N \N \N \N 68050 C.pendulum Cirsium Cirsium pendulum \N \N \N \N \N 68051 S.gigantifolia Sinningia Sinningia gigantifolia \N \N \N \N \N 68052 G.crenata Gymnosporia Gymnosporia crenata \N \N \N \N \N 68053 L.grandiceps Leucogenes Leucogenes grandiceps \N \N \N \N \N 68054 F.crassipes Ficus Ficus crassipes \N \N \N \N \N 68055 C.peruvianum Cryptocentrum Cryptocentrum peruvianum \N \N \N \N \N 68056 S.armstrongii Syzygium Syzygium armstrongii \N \N \N \N \N 68057 \N genus Peniocereus \N \N \N \N \N 68058 Z.SWC-2010 Zingiber Zingiber sp. SWC-2010 \N \N \N \N \N 68059 G.pycnosuzygium Glossoloma Glossoloma pycnosuzygium \N \N \N \N \N 68060 N.ulicina Nassauvia Nassauvia ulicina \N \N \N \N \N 68061 \N varietas Correa backhouseana var. backhouseana \N \N \N \N \N 68062 D.vinacea Dracula Dracula vinacea \N \N \N \N \N 68063 S.clarkiae Solanum Solanum clarkiae \N \N \N \N \N 68064 A.clavata Agrostis Agrostis clavata \N \N \N \N \N 68065 T.filifolia Tetradymia Tetradymia filifolia \N \N \N \N \N 68066 C.simsiana Cissus Cissus simsiana \N \N \N \N \N 68067 P.SH-2010 Phaleria Phaleria sp. SH-2010 \N \N \N \N \N 68068 \N subspecies Chionochloa crassiuscula subsp. torta \N \N \N \N \N 68069 R.ampelophyllus Ranunculus Ranunculus ampelophyllus \N \N \N \N \N 68070 T.976 Tetrastigma Tetrastigma sp. Deden 976 \N \N \N \N \N 68071 B.37 Breynia Breynia cf. cernua Baker et al. 37 \N \N \N \N \N 68072 L.africanum Lepidium Lepidium africanum \N \N \N \N \N 68073 \N genus Embelia \N \N \N \N \N 68074 L.acapulcensis Lycianthes Lycianthes acapulcensis \N \N \N \N \N 68075 C.kunkelii Centaurea Centaurea kunkelii \N \N \N \N \N 68076 C.carneus Chytranthus Chytranthus carneus \N \N \N \N \N 68077 E.perfoliatum Eupatorium Eupatorium perfoliatum common boneset \N \N \N \N 68078 \N genus Rhigiocarya \N \N \N \N \N 68079 L.nudicaulis Launaea Launaea nudicaulis \N \N \N \N \N 68080 S.micans Sericolea Sericolea micans \N \N \N \N \N 68081 E.polyacanthus Echinocereus Echinocereus polyacanthus \N \N \N \N \N 68082 G.brachycarpa Gaura Gaura brachycarpa \N \N \N \N \N 68083 E.azorica Erica Erica azorica \N \N \N \N \N 68084 \N subspecies Genista cinerea subsp. leptoclada \N \N \N \N \N 68085 C.jubata Caragana Caragana jubata camel's tail \N \N \N \N 68086 T.caucana Trophis Trophis caucana \N \N \N \N \N 68087 L.maculatus Lotus Lotus maculatus \N \N \N \N \N 68088 P.quinquelobatum Pelargonium Pelargonium quinquelobatum \N \N \N \N \N 68089 N.uliginosa Notopleura Notopleura uliginosa \N \N \N \N \N 68090 \N varietas Cucumis sativus var. hardwickii \N \N \N \N \N 68091 B.miersii Beilschmiedia Beilschmiedia miersii \N \N \N \N \N 68092 S.thuringiaca Sorbus Sorbus x thuringiaca \N \N \N \N \N 68093 C.tournefortii Cynara Cynara tournefortii \N \N \N \N \N 68094 S.grandifolium Stilpnophyllum Stilpnophyllum grandifolium \N \N \N \N \N 68095 V.biformis Vitis Vitis biformis \N \N \N \N \N 68096 \N genus Gillbeea \N \N \N \N \N 68097 T.tenella Tephrosia Tephrosia tenella \N \N \N \N \N 68098 A.smutsii Anisopappus Anisopappus smutsii \N \N \N \N \N 68099 C.raphanina Centaurea Centaurea raphanina \N \N \N \N \N 68100 N.subenervis Nicoraepoa Nicoraepoa subenervis \N \N \N \N \N 68101 I.stipulacea Inga Inga stipulacea \N \N \N \N \N 68102 F.pubescens Furcraea Furcraea pubescens \N \N \N \N \N 68103 I.nouragensis Inga Inga nouragensis \N \N \N \N \N 68104 F.mexicanum Fremontodendron Fremontodendron mexicanum Mexican flannelbush \N \N \N \N 68105 F.floribunda Fraxinus Fraxinus floribunda Himalayan manna ash,duo hua qin \N \N \N \N 68106 A.glaucus Artocarpus Artocarpus glaucus \N \N \N \N \N 68107 L.mattanensis Licuala Licuala mattanensis \N \N \N \N \N 68108 \N subspecies Crocus biflorus subsp. biflorus \N \N \N \N \N 68109 O.platycarpa Oedibasis Oedibasis platycarpa \N \N \N \N \N 68110 G.javanicum Gomphostemma Gomphostemma javanicum \N \N \N \N \N 68111 D.guianensis Diospyros Diospyros guianensis \N \N \N \N \N 68112 A.koso-poljanskii Androsace Androsace koso-poljanskii \N \N \N \N \N 68113 C.japonicum Cnidium Cnidium japonicum \N \N \N \N \N 68114 E.guianensis Euphronia Euphronia guianensis \N \N \N \N \N 68115 \N genus Tetraselago \N \N \N \N \N 68116 A.chaii Alocasia Alocasia chaii \N \N \N \N \N 68117 P.ecuadoriensis Pappobolus Pappobolus ecuadoriensis \N \N \N \N \N 68118 I.bashanensis Indocalamus Indocalamus bashanensis \N \N \N \N \N 68119 A.nilotica Aeschynomene Aeschynomene nilotica \N \N \N \N \N 68120 M.pingbianensis Mussaenda Mussaenda pingbianensis \N \N \N \N \N 68121 C.grandifolia Caryomene Caryomene grandifolia \N \N \N \N \N 68122 E.macrostachyus Enteropogon Enteropogon macrostachyus \N \N \N \N \N 68123 R.sempervirens Rosa Rosa sempervirens \N \N \N \N \N 68124 \N genus Pyrolirion \N \N \N \N \N 68125 S.keraudreniae Stapelianthus Stapelianthus keraudreniae \N \N \N \N \N 68126 C.chungkingensis Camellia Camellia chungkingensis \N \N \N \N \N 68127 C.latifolia Celtis Celtis latifolia \N \N \N \N \N 68128 C.warscewiczii Cryosophila Cryosophila warscewiczii \N \N \N \N \N 68129 C.angustifolius Cyrtanthus Cyrtanthus angustifolius \N \N \N \N \N 68130 R.sagittatus Rumex Rumex sagittatus \N \N \N \N \N 68131 N.hippomanica Nierembergia Nierembergia hippomanica \N \N \N \N \N 68132 H.sophoroides Hypocalyptus Hypocalyptus sophoroides \N \N \N \N \N 68133 D.senegalense Detarium Detarium senegalense \N \N \N \N \N 68134 O.macrocarpa Ourisia Ourisia macrocarpa \N \N \N \N \N 68135 S.grayi Solanum Solanum grayi \N \N \N \N \N 68136 R.marginata Rosa Rosa marginata \N \N \N \N \N 68137 X.eglandulosa Xerophyta Xerophyta eglandulosa \N \N \N \N \N 68138 V.mampodrensis Veronica Veronica mampodrensis \N \N \N \N \N 68139 H.dauricum Haplophyllum Haplophyllum dauricum \N \N \N \N \N 68140 C.leonia Calathea Calathea leonia \N \N \N \N \N 68141 D.italae Dracosciadium Dracosciadium italae \N \N \N \N \N 68142 S.perfoliata Smilax Smilax perfoliata \N \N \N \N \N 68143 T.arjuna Terminalia Terminalia arjuna \N \N \N \N \N 68144 S.fruticosa Suaeda Suaeda fruticosa \N \N \N \N \N 68145 Z.viridifolia Zehneria Zehneria viridifolia \N \N \N \N \N 68146 H.pavichii Hieracium Hieracium pavichii \N \N \N \N \N 68147 P.williamsoniana Pultenaea Pultenaea williamsoniana \N \N \N \N \N 68148 L.melleri Linzia Linzia melleri \N \N \N \N \N 68149 T.s5424 unclassified Taraxacum Taraxacum sp. s5424 \N \N \N \N \N 68150 U.faulknerae Uvaria Uvaria faulknerae \N \N \N \N \N 68151 \N genus Burasaia \N \N \N \N \N 68152 A.uniflora Ainsliaea Ainsliaea uniflora \N \N \N \N \N 68153 \N genus Urospatha \N \N \N \N \N 68154 D.uncinata Disa Disa uncinata \N \N \N \N \N 68155 L.mesostylum Linum Linum mesostylum \N \N \N \N \N 68156 G.minax Galeandra Galeandra minax \N \N \N \N \N 68157 P.argus Paphiopedilum Paphiopedilum argus \N \N \N \N \N 68158 \N genus Xanthophyllum \N \N \N \N \N 68159 S.cynica Salvia Salvia cynica \N \N \N \N \N 68160 A.coriacea Alchemilla Alchemilla coriacea \N \N \N \N \N 68161 C.ligusticifolia Clematis Clematis ligusticifolia \N \N \N \N \N 68162 S.reticulata Syringa Syringa reticulata Japanese tree lilac \N \N \N \N 68163 S.californica Salvia Salvia californica \N \N \N \N \N 68164 H.Foster81-88 Hydriastele Hydriastele sp. Foster81-88 \N \N \N \N \N 68165 \N varietas Santalum austrocaledonicum var. minutum \N \N \N \N \N 68166 M.ferruginea Macaranga Macaranga ferruginea \N \N \N \N \N 68167 S.subaequale Shaniodendron Shaniodendron subaequale \N \N \N \N \N 68168 S.indica Sacciolepis Sacciolepis indica \N \N \N \N \N 68169 L.elongata Loasa Loasa elongata \N \N \N \N \N 68170 C.41-1 Cornus Cornus cf. canadensis Xiang and Fan 41-1 \N \N \N \N \N 68171 P.lavallei Phellodendron Phellodendron lavallei \N \N \N \N \N 68172 C.texensis Clematis Clematis texensis crimson clematis,scarlet leather-leaf \N \N \N \N 68173 G.brachyphylla Gasteria Gasteria brachyphylla \N \N \N \N \N 68174 \N genus Kunkeliella \N \N \N \N \N 68175 A.acutiloba Angelica Angelica acutiloba dong-dang-gui,tang-kuei \N \N \N \N 68176 P.caesia Phalaris Phalaris caesia \N \N \N \N \N 68177 A.ventricosa Aegilops Aegilops ventricosa \N \N \N \N \N 68178 M.bifolium Maianthemum Maianthemum bifolium \N \N \N \N \N 68179 A.caudatus Amaranthus Amaranthus caudatus Inca-wheat,amaranth,jataco,love-lies-bleeding \N \N \N \N 68180 A.harpophylla Acacia Acacia harpophylla brigalow,brigalow spearwood,orkor \N \N \N \N 68181 T.cymbiglossum Trichocentrum Trichocentrum cymbiglossum \N \N \N \N \N 68182 C.nutans Connellia Connellia nutans \N \N \N \N \N 68183 G.tridens Genista Genista tridens \N \N \N \N \N 68184 O.tenuis Oxalis Oxalis tenuis \N \N \N \N \N 68185 R.gregarius Ranunculus Ranunculus gregarius \N \N \N \N \N 68186 D.sauteri Draba Draba sauteri \N \N \N \N \N 68187 O.stridii Onosma Onosma stridii \N \N \N \N \N 68188 L.angustifolia Lespedeza Lespedeza angustifolia \N \N \N \N \N 68189 P.rotundifolius Pterocarpus Pterocarpus rotundifolius \N \N \N \N \N 68190 T.pubescens Tetratheca Tetratheca pubescens \N \N \N \N \N 68191 \N genus Megadenia \N \N \N \N \N 68192 M.yanganensis Maxillaria Maxillaria yanganensis \N \N \N \N \N 68193 H.macra Hakonechloa Hakonechloa macra \N \N \N \N \N 68194 P.tonsum Paphiopedilum Paphiopedilum tonsum \N \N \N \N \N 68195 C.deserticola Cistanche Cistanche deserticola \N \N \N \N \N 68196 P.labordei Pedicularis Pedicularis labordei \N \N \N \N \N 68197 Z.cylindrifolium Zygophyllum Zygophyllum cylindrifolium \N \N \N \N \N 68198 S.sinuata Saussurea Saussurea sinuata \N \N \N \N \N 68199 H.spergulinum Hesperolinon Hesperolinon spergulinum \N \N \N \N \N 68200 C.longiflorus Crocus Crocus longiflorus \N \N \N \N \N 68201 \N subspecies Acer oliverianum subsp. oliverianum \N \N \N \N \N 68202 V.AB-2009 Vanilla Vanilla cf. polylepis AB-2009 \N \N \N \N \N 68203 P.sinolisteri Primula Primula sinolisteri \N \N \N \N \N 68204 S.43 Sida Sida sp. Balele 43 \N \N \N \N \N 68205 L.strictus Leucopogon Leucopogon strictus \N \N \N \N \N 68206 E.adiantoides Euphorbia Euphorbia adiantoides \N \N \N \N \N 68207 G.senegalensis Guiera Guiera senegalensis \N \N \N \N \N 68208 \N genus Cineraria \N \N \N \N \N 68209 K.polysperma Kadsura Kadsura polysperma \N \N \N \N \N 68210 I.sonorae Ibervillea Ibervillea sonorae \N \N \N \N \N 68211 \N varietas Impatiens hians var. hians \N \N \N \N \N 68212 E.intertextus Echinomastus Echinomastus intertextus \N \N \N \N \N 68213 \N genus Cortiella \N \N \N \N \N 68214 B.kotschyi Biarum Biarum kotschyi \N \N \N \N \N 68215 \N genus Plagianthus \N \N \N \N \N 68216 U.bovonei Urochloa Urochloa bovonei \N \N \N \N \N 68217 P.aromatica Pulicaria Pulicaria aromatica \N \N \N \N \N 68218 H.13813 Hiraea Hiraea sp. Anderson 13813 \N \N \N \N \N 68219 N.Z26 Neoachmandra Neoachmandra sp. Z26 \N \N \N \N \N 68220 P.longifolia Phlox Phlox longifolia \N \N \N \N \N 68221 S.yacuambensis Syngonanthus Syngonanthus yacuambensis \N \N \N \N \N 68222 E.90032 Epistephium Epistephium sp. 90032 \N \N \N \N \N 68223 R.pearcei Ruellia Ruellia pearcei \N \N \N \N \N 68224 A.cordifolia Actaea Actaea cordifolia \N \N \N \N \N 68225 O.truncata Odontocarya Odontocarya truncata \N \N \N \N \N 68226 L.marmorata Lithops Lithops marmorata \N \N \N \N \N 68227 C.gunnisonii Calochortus Calochortus gunnisonii \N \N \N \N \N 68228 A.rhigiophylla Acacia Acacia rhigiophylla \N \N \N \N \N 68229 \N genus Phyllosma \N \N \N \N \N 68230 S.indica Scutellaria Scutellaria indica \N \N \N \N \N 68231 N.krukovii Naucleopsis Naucleopsis krukovii \N \N \N \N \N 68232 H.5402 Heteromorpha Heteromorpha sp. Phillipson 5402 \N \N \N \N \N 68233 \N genus Rhynchanthera \N \N \N \N \N 68234 M.lorea Mapania Mapania lorea \N \N \N \N \N 68235 C.rotundifolia Cissus Cissus rotundifolia \N \N \N \N \N 68236 R.campos-portoana Rhipsalis Rhipsalis campos-portoana \N \N \N \N \N 68237 \N genus Vangueriopsis \N \N \N \N \N 68238 H.marginata Haworthia Haworthia marginata \N \N \N \N \N 68239 C.gracilis Cephalantheropsis Cephalantheropsis gracilis \N \N \N \N \N 68240 \N subtribe Stanhopeinae \N \N \N \N \N 68241 B.lanatipes Bromus Bromus lanatipes wooly brome \N \N \N \N 68242 P.gracilis Physaria Physaria gracilis \N \N \N \N \N 68243 S.pedicellata Schweinfurthia Schweinfurthia pedicellata \N \N \N \N \N 68244 \N genus Sclerotheca \N \N \N \N \N 68245 E.latissima Erythrina Erythrina latissima coral bean \N \N \N \N 68246 R.elliptica Rollinia Rollinia elliptica \N \N \N \N \N 68247 S.pleurocarpa Senna Senna pleurocarpa \N \N \N \N \N 68248 \N subspecies Delphinium hesperium subsp. cuyamacae \N \N \N \N \N 68249 J.perennis Jasione Jasione perennis \N \N \N \N \N 68250 A.piptostachya Achlaena Achlaena piptostachya \N \N \N \N \N 68251 M.sprengeri Magnolia Magnolia sprengeri \N \N \N \N \N 68252 E.ruforamula Endlicheria Endlicheria ruforamula \N \N \N \N \N 68253 S.arnicoides Senecio Senecio arnicoides \N \N \N \N \N 68254 A.tenuius Anginon Anginon tenuius \N \N \N \N \N 68255 C.alpinum Clinopodium Clinopodium alpinum \N \N \N \N \N 68256 A.angustiloba Anagallis Anagallis angustiloba \N \N \N \N \N 68257 H.racemosum Hieracium Hieracium racemosum \N \N \N \N \N 68258 B.hapala Burretiokentia Burretiokentia hapala \N \N \N \N \N 68259 M.pringleana Macrocarpaea Macrocarpaea pringleana \N \N \N \N \N 68260 \N genus Cinnamosma \N \N \N \N \N 68261 M.24306 Mimosa Mimosa aff. dalyi Wood 24306 \N \N \N \N \N 68262 P.daphnoides Plazia Plazia daphnoides \N \N \N \N \N 68263 C.speciosa Conostegia Conostegia speciosa \N \N \N \N \N 68264 C.pubicalyx Campanula Campanula pubicalyx \N \N \N \N \N 68265 C.endlichii Cyperus Cyperus endlichii \N \N \N \N \N 68266 L.eriosolen Lotus Lotus eriosolen \N \N \N \N \N 68267 P.thunbergii Paspalum Paspalum thunbergii \N \N \N \N \N 68268 J.subnodulosus Juncus Juncus subnodulosus \N \N \N \N \N 68269 P.wootonii Pomaria Pomaria wootonii \N \N \N \N \N 68270 L.ciliata Leucas Leucas ciliata \N \N \N \N \N 68271 P.minutiflorum Polianthion Polianthion minutiflorum \N \N \N \N \N 68272 C.axillaris Coursetia Coursetia axillaris \N \N \N \N \N 68273 E.trispicata Eulalia Eulalia trispicata \N \N \N \N \N 68274 C.revolutum Clinopodium Clinopodium revolutum \N \N \N \N \N 68275 C.montanum Comaclinium Comaclinium montanum \N \N \N \N \N 68276 B.pallens Baloskion Baloskion pallens \N \N \N \N \N 68277 B.mollis Breynia Breynia mollis \N \N \N \N \N 68278 I.granvillei Ichthyothere Ichthyothere granvillei \N \N \N \N \N 68279 P.teretiuscula Parastrephia Parastrephia teretiuscula \N \N \N \N \N 68280 I.viridisepala Ixyophora Ixyophora viridisepala \N \N \N \N \N 68281 R.hyperythrum Rhododendron Rhododendron hyperythrum \N \N \N \N \N 68282 K.albescens Kniphofia Kniphofia albescens \N \N \N \N \N 68283 C.collina Crataegus Crataegus collina \N \N \N \N \N 68284 \N subspecies Isotoma fluviatilis subsp. fluviatilis \N \N \N \N \N 68285 M.macrocarpa Muraltia Muraltia macrocarpa \N \N \N \N \N 68286 \N tribe Pleurospermeae \N \N \N \N \N 68287 F.tenuisecta Ferula Ferula tenuisecta \N \N \N \N \N 68288 T.microphyllum Tanacetum Tanacetum microphyllum \N \N \N \N \N 68289 C.purpureus Cymopterus Cymopterus purpureus \N \N \N \N \N 68290 A.atropurpurea Alocasia Alocasia atropurpurea \N \N \N \N \N 68291 A.sulphureum Allium Allium sulphureum \N \N \N \N \N 68292 C.lanceolata Cliffortia Cliffortia lanceolata \N \N \N \N \N 68293 C.alata Canscora Canscora alata \N \N \N \N \N 68294 D.nindii Dendrobium Dendrobium nindii \N \N \N \N \N 68295 A.magna Alberta Alberta magna \N \N \N \N \N 68296 E.nubigena Ewartia Ewartia nubigena \N \N \N \N \N 68297 \N family Gyrostemonaceae \N \N \N \N \N 68298 A.villosum Androcymbium Androcymbium villosum \N \N \N \N \N 68299 C.paui Centaurea Centaurea paui \N \N \N \N \N 68300 I.bulleyanus Isodon Isodon bulleyanus \N \N \N \N \N 68301 I.platycarpa Isolepis Isolepis platycarpa \N \N \N \N \N 68302 A.petiolata Adenophora Adenophora petiolata \N \N \N \N \N 68303 A.acutirostris Astragalus Astragalus acutirostris \N \N \N \N \N 68304 A.halleri Androsace Androsace halleri \N \N \N \N \N 68305 T.415 Tillandsia Tillandsia sp. Granados 415 \N \N \N \N \N 68306 M.hartwegiana Myrcia Myrcia hartwegiana \N \N \N \N \N 68307 R.azoricus Rumex Rumex azoricus \N \N \N \N \N 68308 S.stenotomum Solanum Solanum stenotomum \N \N \N \N \N 68309 \N varietas Cuscuta corymbosa var. grandiflora \N \N \N \N \N 68310 V.imbricata Villadia Villadia imbricata \N \N \N \N \N 68311 M.regia Milicia Milicia regia \N \N \N \N \N 68312 E.cymosa Ehretia Ehretia cymosa \N \N \N \N \N 68313 X.triantha Xylothamia Xylothamia triantha \N \N \N \N \N 68314 X.longepapposum Xeranthemum Xeranthemum longepapposum \N \N \N \N \N 68315 R.rugosum Rapistrum Rapistrum rugosum wild turnip \N \N \N \N 68316 P.triquetra Plectrophora Plectrophora triquetra \N \N \N \N \N 68317 \N genus Axinaea \N \N \N \N \N 68318 S.borysthenica Salicornia Salicornia borysthenica \N \N \N \N \N 68319 \N genus Lacunaria \N \N \N \N \N 68320 A.scherzerianum Anthurium Anthurium scherzerianum \N \N \N \N \N 68321 P.aculeatum Papaver Papaver aculeatum South African poppy \N \N \N \N 68322 G.trichophylla Gaultheria Gaultheria trichophylla \N \N \N \N \N 68323 \N genus Secamone \N \N \N \N \N 68324 P.andina Passiflora Passiflora andina \N \N \N \N \N 68325 D.ipomoeifolia Dalechampia Dalechampia ipomoeifolia \N \N \N \N \N 68326 H.paniculatum Haemodorum Haemodorum paniculatum \N \N \N \N \N 68327 B.stellaris Bassia Bassia stellaris \N \N \N \N \N 68328 P.oliganthum Phrynium Phrynium oliganthum \N \N \N \N \N 68329 D.bacigalupii Downingia Downingia bacigalupii \N \N \N \N \N 68330 A.sansibarensis Agelanthus Agelanthus sansibarensis \N \N \N \N \N 68331 A.halophila Anthemis Anthemis halophila \N \N \N \N \N 68332 T.americana Triplaris Triplaris americana \N \N \N \N \N 68333 A.fimbriata Altensteinia Altensteinia fimbriata \N \N \N \N \N 68334 \N genus Pyracantha \N \N \N \N \N 68335 S.maxima Solandra Solandra maxima \N \N \N \N \N 68336 A.stolonifera Artemisia Artemisia stolonifera \N \N \N \N \N 68337 \N genus Bougainvillea \N \N \N \N \N 68338 P.loki-schmidtii Pitcairnia Pitcairnia loki-schmidtii \N \N \N \N \N 68339 G.fendleri Galium Galium fendleri \N \N \N \N \N 68340 T.brachyceras Taraxacum Taraxacum brachyceras \N \N \N \N \N 68341 S.scandens Sarmienta Sarmienta scandens \N \N \N \N \N 68342 C.23 Cortusa Cortusa sp. Trift 23 \N \N \N \N \N 68343 \N genus Bouchea \N \N \N \N \N 68344 C.warscewiczii Chamaedorea Chamaedorea warscewiczii \N \N \N \N \N 68345 I.serotina Iris Iris serotina \N \N \N \N \N 68346 K.CG-2009 Kobresia Kobresia sp. CG-2009 \N \N \N \N \N 68347 \N subspecies Galium mexicanum subsp. asperrimum \N \N \N \N \N 68348 T.colliculosa Thompsonella Thompsonella colliculosa \N \N \N \N \N 68349 L.daphnoides Leptaulus Leptaulus daphnoides \N \N \N \N \N 68350 E.crassum Epilobium Epilobium crassum \N \N \N \N \N 68351 T.verticillatus Tristerix Tristerix verticillatus \N \N \N \N \N 68352 S.miyabei Spiraea Spiraea miyabei \N \N \N \N \N 68353 E.arborescens Erodium Erodium arborescens \N \N \N \N \N 68354 C.atribarba Crepis Crepis atribarba \N \N \N \N \N 68355 C.woodii Calpurnia Calpurnia sericea x Calpurnia woodii \N \N \N \N \N 68356 A.dimidiata Apodytes Apodytes dimidiata \N \N \N \N \N 68357 L.alata Laggera Laggera alata \N \N \N \N \N 68358 L.turbinata Lippia Lippia turbinata \N \N \N \N \N 68359 F.galbanifera Ferulago Ferulago galbanifera \N \N \N \N \N 68360 B.symsanguinea Begonia Begonia symsanguinea \N \N \N \N \N 68361 S.lancifolia Symplocos Symplocos lancifolia \N \N \N \N \N 68362 A.3418 Alloplectus Alloplectus sp. Smith 3418 \N \N \N \N \N 68363 G.insolens Gladiolus Gladiolus insolens \N \N \N \N \N 68364 P.orophila Psychotria Psychotria orophila \N \N \N \N \N 68365 N.cuatrecasasii Narcissus Narcissus cuatrecasasii \N \N \N \N \N 68366 S.coriaceus Senecio Senecio coriaceus \N \N \N \N \N 68367 T.pallida Trichilia Trichilia pallida \N \N \N \N \N 68368 C.caroliniana Carpinus Carpinus caroliniana American hornbeam,ironwood \N \N \N \N 68369 D.divaricata Diplectria Diplectria divaricata \N \N \N \N \N 68370 L.longipes Lysimachia Lysimachia longipes \N \N \N \N \N 68371 S.rigidulus Sauropus Sauropus rigidulus \N \N \N \N \N 68372 C.rileyi Columnea Columnea rileyi \N \N \N \N \N 68373 \N genus Bocageopsis \N \N \N \N \N 68374 \N genus Dacryodes \N \N \N \N \N 68375 L.micrantha Linaria Linaria micrantha \N \N \N \N \N 68376 C.tragacanthoides Caragana Caragana tragacanthoides \N \N \N \N \N 68377 M.barioensis Musa Musa barioensis \N \N \N \N \N 68378 \N genus Andrzeiowskia \N \N \N \N \N 68379 V.orchidea Veronica Veronica orchidea \N \N \N \N \N 68380 B.hilarionis Brassica Brassica hilarionis \N \N \N \N \N 68381 \N varietas Correa alba var. rotundifolia \N \N \N \N \N 68382 \N subspecies Festuca matthewsii subsp. aquilonia \N \N \N \N \N 68383 C.parva Carex Carex parva \N \N \N \N \N 68384 G.vernum Geum Geum vernum \N \N \N \N \N 68385 G.amazonicum Glycydendron Glycydendron amazonicum \N \N \N \N \N 68386 X.5 x Triticosecale x Triticosecale sp. Altayskaya 5 \N \N \N \N \N 68387 P.macrostegia Pimelea Pimelea macrostegia \N \N \N \N \N 68388 \N genus Neotysonia \N \N \N \N \N 68389 O.schomburgkii Orthomene Orthomene schomburgkii \N \N \N \N \N 68390 \N subspecies Fagopyrum tataricum subsp. potanini wild Tatary buckwheat \N \N \N \N 68391 C.setifolium Cuminum Cuminum setifolium \N \N \N \N \N 68392 D.pastinacifolia Demavendia Demavendia pastinacifolia \N \N \N \N \N 68393 C.lapponica Carex Carex lapponica \N \N \N \N \N 68394 U.nelumbifolia Utricularia Utricularia nelumbifolia \N \N \N \N \N 68395 S.stellata Silene Silene stellata widowsfrill \N \N \N \N 68396 C.autumnale Colchicum Colchicum autumnale autumn-crocus,meadow-saffron \N \N \N \N 68397 R.serpyllifolium Rhododendron Rhododendron serpyllifolium \N \N \N \N \N 83647 \N genus Aechmea \N \N \N \N \N 68398 T.macrantha Tricyrtis Tricyrtis macrantha \N \N \N \N \N 68399 M.ligustroides Miconia Miconia ligustroides \N \N \N \N \N 68400 K.flavescens Kunzea Kunzea flavescens \N \N \N \N \N 68401 \N subspecies Festuca paniculata subsp. paui \N \N \N \N \N 68402 E.valida Euphorbia Euphorbia valida \N \N \N \N \N 68403 S.rankanensis Strobilanthes Strobilanthes rankanensis \N \N \N \N \N 68404 H.howellii Horkelia Horkelia howellii \N \N \N \N \N 68405 T.pancheri Tieghemopanax Tieghemopanax pancheri \N \N \N \N \N 68406 L.porcatus Lithocarpus Lithocarpus porcatus \N \N \N \N \N 68407 P.consanguinea Pilea Pilea consanguinea \N \N \N \N \N 68408 C.podocarpa Crotalaria Crotalaria podocarpa \N \N \N \N \N 68409 C.variegata Ceropegia Ceropegia variegata \N \N \N \N \N 68410 S.millepunctata Strychnos Strychnos millepunctata \N \N \N \N \N 68411 D.94162 Daphniphyllum Daphniphyllum sp. Qiu 94162 \N \N \N \N \N 68412 C.grandifolia Cissampelos Cissampelos grandifolia \N \N \N \N \N 68413 \N genus Scholtzia \N \N \N \N \N 68414 T.beckwithii Trifolium Trifolium beckwithii \N \N \N \N \N 68415 \N genus Waitzia \N \N \N \N \N 68416 \N varietas Neillia thyrsiflora var. tunkinensis \N \N \N \N \N 68417 A.corrugatus Amorphophallus Amorphophallus corrugatus \N \N \N \N \N 68418 \N subspecies Argemone pleiacantha subsp. ambigua \N \N \N \N \N 68419 P.persica Parrotia Parrotia persica \N \N \N \N \N 68420 U.kingii Uncinia Uncinia kingii \N \N \N \N \N 68421 C.burchellii Croton Croton burchellii \N \N \N \N \N 68422 P.humilis Penstemon Penstemon humilis \N \N \N \N \N 68423 E.spectabilis Eragrostis Eragrostis spectabilis purple lovegrass \N \N \N \N 68424 E.tenuifolia Erica Erica tenuifolia \N \N \N \N \N 68425 C.cerebrina Castanopsis Castanopsis cerebrina \N \N \N \N \N 68426 A.subarctica Artemisia Artemisia subarctica \N \N \N \N \N 68427 W.mendocina Werdermannia Werdermannia mendocina \N \N \N \N \N 68428 A.bulbosa Arethusa Arethusa bulbosa \N \N \N \N \N 68429 C.monophylla Cliffortia Cliffortia monophylla \N \N \N \N \N 68430 S.arvensis Spergula Spergula arvensis corn spurrey \N \N \N \N 68431 E.grata Erica Erica grata \N \N \N \N \N 68432 C.selaginoides Cliococca Cliococca selaginoides \N \N \N \N \N 68433 C.ferox Corylus Corylus ferox \N \N \N \N \N 68434 \N genus Radinosiphon \N \N \N \N \N 68435 N.albida Notylia Notylia albida \N \N \N \N \N 68436 \N family Pedaliaceae sesame family \N \N \N \N 68437 P.setulosa Passiflora Passiflora setulosa \N \N \N \N \N 68438 C.leucorrhiza Curcuma Curcuma leucorrhiza \N \N \N \N \N 68439 C.osaensis Clusia Clusia osaensis \N \N \N \N \N 68440 L.martiniana Licaria Licaria martiniana \N \N \N \N \N 68441 A.virescens Achillea Achillea virescens \N \N \N \N \N 68442 T.7443 Tetrastigma Tetrastigma cf. delavayi 7443 \N \N \N \N \N 68443 T.ekmaniana Thrinax Thrinax ekmaniana \N \N \N \N \N 68444 H.martii Hydrocleys Hydrocleys martii \N \N \N \N \N 68445 \N genus Beaumontia \N \N \N \N \N 68446 B.insignis Blumenbachia Blumenbachia insignis \N \N \N \N \N 68447 B.smithii Bupleurum Bupleurum smithii \N \N \N \N \N 68448 P.iresinoides Pfaffia Pfaffia iresinoides \N \N \N \N \N 68449 G.blepharophylla Guatteriopsis Guatteriopsis blepharophylla \N \N \N \N \N 68450 B.multiplex Bambusa Bambusa multiplex hedge bamboo \N \N \N \N 68451 \N genus Strotheria \N \N \N \N \N 68452 R.brevifolius Ranunculus Ranunculus brevifolius \N \N \N \N \N 68453 \N genus Coleus \N \N \N \N \N 68454 A.cristata Aeschynomene Aeschynomene cristata \N \N \N \N \N 68455 R.kongboense Rhododendron Rhododendron kongboense \N \N \N \N \N 68456 C.crispus Carduus Carduus crispus \N \N \N \N \N 68457 F.bennettiana Flindersia Flindersia bennettiana \N \N \N \N \N 68458 A.scleroclada Aconitella Aconitella scleroclada \N \N \N \N \N 68459 P.ferox Pseudopanax Pseudopanax ferox \N \N \N \N \N 68460 C.album Chenopodium Chenopodium album lamb's-quarters,pigweed,white goosefoot \N \N \N \N 68461 G.brandegeei Grayia Grayia brandegeei \N \N \N \N \N 68462 P.pubescens Persicaria Persicaria pubescens \N \N \N \N \N 68463 P.multijuga Pomaria Pomaria multijuga \N \N \N \N \N 68464 M.stipulosa Microcharis Microcharis stipulosa \N \N \N \N \N 68465 \N genus Phacelophrynium \N \N \N \N \N 68466 E.eburneum Eryngium Eryngium eburneum \N \N \N \N \N 68467 T.heckmanniana Tephrosia Tephrosia heckmanniana \N \N \N \N \N 68468 C.rhexiifolia Castilleja Castilleja rhexiifolia \N \N \N \N \N 68469 H.linariifolium Heliotropium Heliotropium linariifolium \N \N \N \N \N 68470 \N subspecies Stauntonia obovatifoliola subsp. urophylla \N \N \N \N \N 68471 E.hyemalis Eranthis Eranthis hyemalis \N \N \N \N \N 68472 C.candidissimum Calycophyllum Calycophyllum candidissimum degame \N \N \N \N 68473 G.mortonius Gladiolus Gladiolus mortonius \N \N \N \N \N 68474 \N no rank environmental samples Taxonomy:1096688 \N \N \N \N \N 68475 M.exasperatus Myoxanthus Myoxanthus exasperatus \N \N \N \N \N 68476 B.cabindensis Beirnaertia Beirnaertia cabindensis \N \N \N \N \N 68477 \N subspecies Galium angustifolium subsp. gabrielense \N \N \N \N \N 68478 S.emarcidum Sceletium Sceletium emarcidum \N \N \N \N \N 68479 \N subspecies Adenophora stricta subsp. confusa \N \N \N \N \N 68480 L.parviflora Liparis Liparis parviflora \N \N \N \N \N 68481 F.jangomas Flacourtia Flacourtia jangomas runeala-plum \N \N \N \N 68482 A.majus Allium Allium majus \N \N \N \N \N 68483 A.elegans Ainsliaea Ainsliaea elegans \N \N \N \N \N 68484 C.MG-2010 Clusia Clusia sp. MG-2010 \N \N \N \N \N 68485 M.6265 Maxillaria Maxillaria cf. grandiflora Atwood & Whitten 6265 \N \N \N \N \N 68486 T.pauciflorum Trifolium Trifolium pauciflorum \N \N \N \N \N 68487 D.dyeri Delosperma Delosperma dyeri \N \N \N \N \N 68488 T.complanatum Taeniophyllum Taeniophyllum complanatum \N \N \N \N \N 68489 S.circaeifolium Solanum Solanum circaeifolium \N \N \N \N \N 68490 P.hawaiensis Plantago Plantago hawaiensis Hawai'i plantain,laukahi kuahiwi \N \N \N \N 68491 H.greenwayi Hibiscus Hibiscus greenwayi \N \N \N \N \N 83745 \N genus Trematolobelia \N \N \N \N \N 68492 P.meionectes Poa Poa meionectes \N \N \N \N \N 68493 C.crassicaulis Caulanthus Caulanthus crassicaulis \N \N \N \N \N 68494 P.lucida Parashorea Parashorea lucida \N \N \N \N \N 68495 E.strictus Elymus Elymus strictus \N \N \N \N \N 68496 A.sinensis Angelica Angelica sinensis Chinese angelica,dong gui,dong quai \N \N \N \N 68497 O.angustifolia Ossaea Ossaea angustifolia \N \N \N \N \N 68498 S.cirrhata Stanhopea Stanhopea cirrhata \N \N \N \N \N 68499 Z.clinopodioides Ziziphora Ziziphora clinopodioides \N \N \N \N \N 68500 C.laevigata Carex Carex laevigata \N \N \N \N \N 68501 O.virginea Oxalis Oxalis virginea \N \N \N \N \N 68502 \N genus Hellmuthia \N \N \N \N \N 68503 \N subspecies Sagittaria montevidensis subsp. spongiosa \N \N \N \N \N 68504 E.lugens Eragrostis Eragrostis lugens mourning lovegrass \N \N \N \N 68505 O.kauaiensis Ochrosia Ochrosia kauaiensis \N \N \N \N \N 68506 S.stipoideum Sorghum Sorghum stipoideum \N \N \N \N \N 68507 \N genus Constancea \N \N \N \N \N 68508 \N varietas Brassica juncea var. tumida zha cai \N \N \N \N 68509 M.operculata Metrosideros Metrosideros operculata \N \N \N \N \N 68510 O.myriantha Orophea Orophea myriantha \N \N \N \N \N 68511 T.ponmudiana Thottea Thottea ponmudiana \N \N \N \N \N 68512 M.citrolens Melaleuca Melaleuca citrolens \N \N \N \N \N 68513 \N subspecies Sarracenia purpurea subsp. purpurea \N \N \N \N \N 68514 S.fasciculata Saugetia Saugetia fasciculata \N \N \N \N \N 68515 C.tonduzii Croton Croton tonduzii \N \N \N \N \N 68516 \N genus Eschweilera \N \N \N \N \N 68517 B.tengchiana Begonia Begonia tengchiana \N \N \N \N \N 68518 S.jorullensis Stevia Stevia jorullensis \N \N \N \N \N 68519 L.sprengeri Lycoris Lycoris sprengeri \N \N \N \N \N 68520 \N genus Fadenia \N \N \N \N \N 68521 R.corsica Ruta Ruta corsica \N \N \N \N \N 68522 \N genus Pentacyphus \N \N \N \N \N 68523 S.balangeran Shorea Shorea balangeran \N \N \N \N \N 68524 E.alternifolius Elaeocarpus Elaeocarpus alternifolius \N \N \N \N \N 68525 G.chubutense Gymnocalycium Gymnocalycium chubutense \N \N \N \N \N 68526 C.affinis Calystegia Calystegia affinis \N \N \N \N \N 68527 M.albicans Mammillaria Mammillaria albicans \N \N \N \N \N 68528 M.gagei Mansonia Mansonia gagei \N \N \N \N \N 68529 C.mollis Circaea Circaea mollis \N \N \N \N \N 68530 R.dauricum Rhododendron Rhododendron dauricum \N \N \N \N \N 68531 \N subspecies Ligusticum scoticum subsp. hultenii \N \N \N \N \N 68532 E.pubigerum Epimedium Epimedium pubigerum \N \N \N \N \N 68533 A.oleraceum Allium Allium oleraceum \N \N \N \N \N 68534 \N genus Polianthion \N \N \N \N \N 68535 M.brevidentata Malaxis Malaxis brevidentata \N \N \N \N \N 68536 \N genus Marcelliopsis \N \N \N \N \N 68537 Z.flavum Zanthoxylum Zanthoxylum flavum \N \N \N \N \N 68538 H.songaricum Helianthemum Helianthemum songaricum \N \N \N \N \N 68539 R.angustipetala Reissantia Reissantia angustipetala \N \N \N \N \N 68540 D.pubescens Deccania Deccania pubescens \N \N \N \N \N 68541 B.ventriosum Bulbophyllum Bulbophyllum ventriosum \N \N \N \N \N 68542 \N genus Alstroemeria \N \N \N \N \N 68543 A.cucullata Alocasia Alocasia cucullata Chinese taro \N \N \N \N 68544 A.aschersonii Amphilophium Amphilophium aschersonii \N \N \N \N \N 68545 C.acarnanica Campanula Campanula acarnanica \N \N \N \N \N 68546 C.chihuahuensis Carex Carex chihuahuensis \N \N \N \N \N 68547 I.filicaulis Indigofera Indigofera filicaulis \N \N \N \N \N 68548 L.microcephala Lorandersonia Lorandersonia microcephala \N \N \N \N \N 68549 V.sample environmental samples Taxonomy:1096671 Vouacapoua environmental sample \N \N \N \N \N 68550 P.formosa Ponthieva Ponthieva formosa \N \N \N \N \N 68551 A.sullivantii Asclepias Asclepias sullivantii \N \N \N \N \N 68552 S.oraria Swartzia Swartzia oraria \N \N \N \N \N 68553 B.asiatica Berberis Berberis asiatica \N \N \N \N \N 68554 \N genus Tofieldia \N \N \N \N \N 68555 N.nummularia Neomortonia Neomortonia nummularia \N \N \N \N \N 68556 P.amarella Polygala Polygala amarella \N \N \N \N \N 68557 \N genus Lecaniodiscus \N \N \N \N \N 68558 A.latiloba Achillea Achillea latiloba \N \N \N \N \N 68559 \N genus Alluaudia \N \N \N \N \N 68560 G.comorensis Gyrostipula Gyrostipula comorensis \N \N \N \N \N 68561 H.rostellatus Hibiscus Hibiscus rostellatus \N \N \N \N \N 68562 A.peruviana Atriplex Atriplex peruviana \N \N \N \N \N 68563 R.algida Rhodiola Rhodiola algida \N \N \N \N \N 68564 A.latifolius Anisopappus Anisopappus latifolius \N \N \N \N \N 68565 P.coccinea Passiflora Passiflora coccinea \N \N \N \N \N 68566 A.gibbosa Austrostipa Austrostipa gibbosa \N \N \N \N \N 68567 S.glandulosus Streptanthus Streptanthus glandulosus jewelflower \N \N \N \N 68568 \N genus Nesphostylis \N \N \N \N \N 68569 G.sphaerocephalus Gymnoschoenus Gymnoschoenus sphaerocephalus \N \N \N \N \N 68570 T.dahuricus Thymus Thymus dahuricus \N \N \N \N \N 68571 C.thymoides Cuphea Cuphea thymoides \N \N \N \N \N 68572 S.sericea Sersalisia Sersalisia sericea \N \N \N \N \N 68573 S.atropurpureum Solanum Solanum atropurpureum \N \N \N \N \N 68574 P.bruceae Potentilla Potentilla bruceae \N \N \N \N \N 68575 E.pellita Eucalyptus Eucalyptus pellita \N \N \N \N \N 68576 H.oelandicum Helianthemum Helianthemum oelandicum \N \N \N \N \N 68577 H.minutiflorus Halimolobos Halimolobos minutiflorus \N \N \N \N \N 68578 P.sheareri Phoebe Phoebe sheareri \N \N \N \N \N 68579 H.metallica Heliconia Heliconia metallica \N \N \N \N \N 68580 G.psychotrioides Gaertnera Gaertnera psychotrioides \N \N \N \N \N 68581 C.valdivianum Campsidium Campsidium valdivianum \N \N \N \N \N 68582 G.racemigerus Gyrostemon Gyrostemon racemigerus \N \N \N \N \N 68583 A.asclepiadoides Astragalus Astragalus asclepiadoides \N \N \N \N \N 68584 \N genus Chorispora \N \N \N \N \N 68585 S.khasiana Schima Schima khasiana \N \N \N \N \N 68586 T.sieberi Tambourissa Tambourissa sieberi \N \N \N \N \N 68587 R.fulgida Ruellia Ruellia fulgida \N \N \N \N \N 68588 \N genus Villarsia \N \N \N \N \N 84234 \N genus Coddia \N \N \N \N \N 68589 M.1616 Miconia Miconia aff. villonacensis Penneys 1616 \N \N \N \N \N 68590 A.vulgaris Aquilegia Aquilegia vulgaris \N \N \N \N \N 68591 I.anomala Ilex Ilex anomala \N \N \N \N \N 68592 P.lacticolor Protea Protea lacticolor \N \N \N \N \N 68593 J.repandidentata Jaltomata Jaltomata repandidentata \N \N \N \N \N 68594 C.MB0602 Canna Canna sp. MB0602 \N \N \N \N \N 68595 P.nipensis Pictetia Pictetia nipensis \N \N \N \N \N 68596 E.rubrum Empetrum Empetrum rubrum \N \N \N \N \N 68597 S.praecox Seseli Seseli praecox \N \N \N \N \N 68598 D.spinosa Didelta Didelta spinosa \N \N \N \N \N 68599 S.petitiana Snowdenia Snowdenia petitiana \N \N \N \N \N 68600 H.8621 Heliotropium Heliotropium sp. Weigend et al. 8621 \N \N \N \N \N 68601 B.basaltica Brachyscome Brachyscome basaltica \N \N \N \N \N 68602 S.sedoides Silene Silene sedoides \N \N \N \N \N 68603 C.lavandulifolia Calceolaria Calceolaria lavandulifolia \N \N \N \N \N 68604 S.lavandulifolia Salvia Salvia lavandulifolia \N \N \N \N \N 68605 M.calycosa Marina Marina calycosa \N \N \N \N \N 68606 H.vegrandis Hedyotis Hedyotis vegrandis \N \N \N \N \N 68607 \N subspecies Gayophytum diffusum subsp. parviflorum \N \N \N \N \N 68608 A.denticulata Alternanthera Alternanthera denticulata \N \N \N \N \N 68609 R.montigenum Ribes Ribes montigenum \N \N \N \N \N 68610 A.europaeum Androcymbium Androcymbium europaeum \N \N \N \N \N 68611 C.sclerophylla Cryptocarya Cryptocarya sclerophylla \N \N \N \N \N 68612 M.virescens Muhlenbergia Muhlenbergia virescens \N \N \N \N \N 68613 \N subspecies Pinguicula macroceras subsp. nortensis \N \N \N \N \N 68614 \N genus Conchopetalum \N \N \N \N \N 68615 G.batemanii Galeandra Galeandra batemanii \N \N \N \N \N 68616 \N genus Triainolepis \N \N \N \N \N 68617 P.stricta Pterostylis Pterostylis stricta \N \N \N \N \N 68618 N.cephalantha Newcastelia Newcastelia cephalantha \N \N \N \N \N 68619 \N subspecies Penstemon crandallii subsp. glabrescens \N \N \N \N \N 68620 C.colorata Calathea Calathea colorata \N \N \N \N \N 68621 \N subspecies Ipomopsis aggregata subsp. candida \N \N \N \N \N 68622 G.aparine Galium Galium aparine \N \N \N \N \N 68623 S.aequoreum Suregada Suregada aequoreum \N \N \N \N \N 68624 A.greuterocymbium Androcymbium Androcymbium greuterocymbium \N \N \N \N \N 68625 C.debilissimus Cyperus Cyperus debilissimus \N \N \N \N \N 68626 M.aureocephala Merxmuellera Merxmuellera aureocephala \N \N \N \N \N 68627 R.viviparus Rhoogeton Rhoogeton viviparus \N \N \N \N \N 68628 C.capitulata Cavendishia Cavendishia capitulata \N \N \N \N \N 68629 H.eriopoda Hookerochloa Hookerochloa eriopoda \N \N \N \N \N 68630 B.lutea Bivonaea Bivonaea lutea \N \N \N \N \N 68631 L.verticillata Litsea Litsea verticillata \N \N \N \N \N 68632 X.venusta Xylorhiza Xylorhiza venusta \N \N \N \N \N 68633 A.lawrenciae Aerides Aerides lawrenciae \N \N \N \N \N 68634 P.geminiflora Polianthes Polianthes geminiflora \N \N \N \N \N 68635 E.malum Echidnopsis Echidnopsis malum \N \N \N \N \N 68636 S.sophrona Salvia Salvia sophrona \N \N \N \N \N 68637 S.macrostachya Setaria Setaria macrostachya \N \N \N \N \N 68638 \N genus Stimpsonia \N \N \N \N \N 68639 E.curtisii Eucalyptus Eucalyptus curtisii \N \N \N \N \N 68640 M.lanceolata Meryta Meryta lanceolata \N \N \N \N \N 68641 P.sulcatum Peucedanum Peucedanum sulcatum \N \N \N \N \N 68642 \N genus Knautia \N \N \N \N \N 68643 D.oxylobum Dolicholobium Dolicholobium oxylobum \N \N \N \N \N 68644 T.apiculata Tacazzea Tacazzea apiculata \N \N \N \N \N 68645 \N subspecies Oxalis acetosella subsp. japonica \N \N \N \N \N 68646 L.pelecaniceps Luerella Luerella pelecaniceps \N \N \N \N \N 68647 D.epithemoides Didymocarpus Didymocarpus epithemoides \N \N \N \N \N 68648 P.ciliata Populus Populus ciliata yuan mao yang \N \N \N \N 68649 H.ulei Hawkesiophyton Hawkesiophyton ulei \N \N \N \N \N 68650 B.densus Bromus Bromus densus \N \N \N \N \N 68651 \N subspecies Microcnemum coralloides subsp. coralloides \N \N \N \N \N 68652 P.micrantha Psychotria Psychotria micrantha \N \N \N \N \N 68653 H.pedunculata Hibbertia Hibbertia pedunculata \N \N \N \N \N 68654 C.halophila Chondropyxis Chondropyxis halophila \N \N \N \N \N 68655 \N genus Ipomopsis \N \N \N \N \N 68656 C.296283 Carthamus Carthamus sp. PI 296283 \N \N \N \N \N 68657 G.uniflora Gentiana Gentiana uniflora \N \N \N \N \N 68658 C.capitellata Compsoneura Compsoneura capitellata \N \N \N \N \N 68659 P.2 Primula Primula sp. Oyumaa no. 2 \N \N \N \N \N 68660 B.FS1926 Bulbophyllum Bulbophyllum sp. FS1926 \N \N \N \N \N 68661 M.aggregata Maxillaria Maxillaria aggregata \N \N \N \N \N 68662 O.squammulosa Oxytropis Oxytropis squammulosa \N \N \N \N \N 68663 P.insulare Polypleurum Polypleurum insulare \N \N \N \N \N 68664 R.limnophila Rennera Rennera limnophila \N \N \N \N \N 68665 I.cernua Isolepis Isolepis cernua \N \N \N \N \N 68666 B.tubiformis Babiana Babiana tubiformis \N \N \N \N \N 68667 B.ovallei Bomarea Bomarea ovallei \N \N \N \N \N 68668 P.templemannii Pillansia Pillansia templemannii \N \N \N \N \N 68669 M.honesta Mimosa Mimosa honesta \N \N \N \N \N 68670 \N genus Mionandra \N \N \N \N \N 68671 L.barbata Lappula Lappula barbata \N \N \N \N \N 68672 P.suffruticosa Paronychia Paronychia suffruticosa \N \N \N \N \N 68673 P.allantophylla Passiflora Passiflora allantophylla \N \N \N \N \N 68674 C.polycarpa Corymbia Corymbia polycarpa \N \N \N \N \N 68675 P.mima Puya Puya mima \N \N \N \N \N 68676 M.villosus Mitracarpus Mitracarpus villosus \N \N \N \N \N 68677 S.subconica Silene Silene subconica \N \N \N \N \N 68678 \N subtribe Brownleeinae \N \N \N \N \N 68679 \N genus Megalachne \N \N \N \N \N 68680 P.clavata Pimelea Pimelea clavata \N \N \N \N \N 68681 E.tetraquetra Eleocharis Eleocharis tetraquetra \N \N \N \N \N 68682 C.depressinervosum Calophyllum Calophyllum depressinervosum \N \N \N \N \N 68683 M.cisparanensis Mimosa Mimosa cisparanensis \N \N \N \N \N 68684 B.clarkei Bayabusua Bayabusua clarkei \N \N \N \N \N 68685 G.sarmentosa Gagea Gagea sarmentosa \N \N \N \N \N 68686 P.heterostachyum Panicum Panicum heterostachyum \N \N \N \N \N 68687 \N subspecies Crambe hispanica subsp. abyssinica Abyssinian crambe,Abyssinian kale \N \N \N \N 68688 \N tribe Browallieae \N \N \N \N \N 68689 \N genus Astripomoea \N \N \N \N \N 68690 C.ventosa Carex Carex ventosa \N \N \N \N \N 68691 P.petiolaris Pulicaria Pulicaria petiolaris \N \N \N \N \N 68692 M.785 Melicope Melicope sp. Munzinger & McPherson 785 \N \N \N \N \N 68693 E.asperiflora Elegia Elegia asperiflora \N \N \N \N \N 68694 C.glandulosa Commiphora Commiphora glandulosa \N \N \N \N \N 68695 B.hispida Buchnera Buchnera hispida \N \N \N \N \N 68696 L.timoriana Litsea Litsea timoriana \N \N \N \N \N 68697 T.venustus Telipogon Telipogon venustus \N \N \N \N \N 68698 \N subspecies Oenothera californica subsp. avita \N \N \N \N \N 68699 E.avenaceum Erioneuron Erioneuron avenaceum \N \N \N \N \N 68700 S.engelmanniana Sagittaria Sagittaria engelmanniana \N \N \N \N \N 68701 A.wightii Anaphyllum Anaphyllum wightii \N \N \N \N \N 68702 \N genus Laeliopsis \N \N \N \N \N 68703 \N genus Pleiacanthus \N \N \N \N \N 68704 \N genus Wielandia \N \N \N \N \N 68705 P.dulce Pithecellobium Pithecellobium dulce \N \N \N \N \N 68706 P.laxiflora Pultenaea Pultenaea laxiflora \N \N \N \N \N 68707 V.lutescens Viburnum Viburnum lutescens \N \N \N \N \N 68708 P.purpurea Physaria Physaria purpurea \N \N \N \N \N 68709 F.szowitsiana Ferula Ferula szowitsiana \N \N \N \N \N 68710 C.meyeri Citrus Citrus meyeri Meyer lemon \N \N \N \N 68711 K.paniculatus Kingianthus Kingianthus paniculatus \N \N \N \N \N 68712 R.komarovii Ribes Ribes komarovii \N \N \N \N \N 68713 C.0302 Corylus Corylus sp. Bergthorsson 0302 \N \N \N \N \N 68714 E.papuanus Euroschinus Euroschinus papuanus \N \N \N \N \N 68715 C.mosaicus Costus Costus mosaicus \N \N \N \N \N 68716 \N subspecies Gyrocarpus americanus subsp. glaber \N \N \N \N \N 68717 R.madagascariensis Ravenala Ravenala madagascariensis \N \N \N \N \N 68718 H.latifolia Hilleria Hilleria latifolia \N \N \N \N \N 68719 A.turkestanicum Alyssum Alyssum turkestanicum \N \N \N \N \N 68720 \N genus Platycelyphium \N \N \N \N \N 68721 L.minima Logfia Logfia minima \N \N \N \N \N 68722 C.gymnocarpa Cuscuta Cuscuta gymnocarpa \N \N \N \N \N 68723 U.calycifida Utricularia Utricularia calycifida \N \N \N \N \N 68724 M.pumilus Mazus Mazus pumilus tokiwahaze,tong quan cao \N \N \N \N 68725 E.koehneanum Eryngium Eryngium koehneanum \N \N \N \N \N 68726 B.pilostylis Banksia Banksia pilostylis \N \N \N \N \N 68727 P.266 Phyllanthus Phyllanthus cf. mantsakariva Hoffmann et al. 266 \N \N \N \N \N 68728 Z.morrisclintii Zephyranthes Zephyranthes morrisclintii \N \N \N \N \N 68729 T.involuta Thuarea Thuarea involuta \N \N \N \N \N 68730 L.henricii Lilium Lilium henricii \N \N \N \N \N 68731 R.bifrons Rubus Rubus bifrons \N \N \N \N \N 68732 E.mikanioides Ekmaniopappus Ekmaniopappus mikanioides \N \N \N \N \N 68733 I.varians Isolepis Isolepis varians \N \N \N \N \N 68734 A.magniclavata Arachnorchis Arachnorchis magniclavata \N \N \N \N \N 68735 G.amplifolia Guatteria Guatteria amplifolia \N \N \N \N \N 68736 P.organensis Passiflora Passiflora organensis \N \N \N \N \N 68737 M.baccata Manihot Manihot baccata \N \N \N \N \N 68738 O.loricata Orobanche Orobanche loricata \N \N \N \N \N 68739 L.paludosa Licuala Licuala paludosa \N \N \N \N \N 68740 R.borinquena Roystonea Roystonea borinquena \N \N \N \N \N 68741 P.451 Pyrostria Pyrostria sp. Razafimandimbison 451 \N \N \N \N \N 68742 S.caprifolioides Symphyllophyton Symphyllophyton caprifolioides \N \N \N \N \N 68743 P.oreophilum Pittosporum Pittosporum oreophilum \N \N \N \N \N 68744 T.1027 Trachyandra Trachyandra sp. Chase 1027 \N \N \N \N \N 68745 \N genus Mellissia \N \N \N \N \N 68746 C.paphlagonica Centaurea Centaurea paphlagonica \N \N \N \N \N 68747 \N genus Allenrolfea \N \N \N \N \N 68748 S.matudae Symplocos Symplocos matudae \N \N \N \N \N 68749 \N varietas Diospyros ferrea var. buxifolia \N \N \N \N \N 68750 \N genus Turbina \N \N \N \N \N 68751 E.bettiana Emarhendia Emarhendia bettiana \N \N \N \N \N 68752 M.encyclioides Maxillaria Maxillaria encyclioides \N \N \N \N \N 68753 M.gw2143 Macaranga Macaranga sp. 2 gw2143 \N \N \N \N \N 68754 S.mutica Satureja Satureja mutica \N \N \N \N \N 68755 S.guineense Stenandrium Stenandrium guineense \N \N \N \N \N 68756 A.rodriguesii Astrocaryum Astrocaryum rodriguesii \N \N \N \N \N 68757 \N genus Frangula \N \N \N \N \N 68758 B.burchellii Brachystelma Brachystelma burchellii \N \N \N \N \N 68759 B.angreni Bunium Bunium angreni \N \N \N \N \N 68760 P.multiflora Phitopis Phitopis multiflora \N \N \N \N \N 68761 H.gibsonii Haloragodendron Haloragodendron gibsonii \N \N \N \N \N 68762 N.schefferiana Neoalsomitra Neoalsomitra schefferiana \N \N \N \N \N 68763 B.trispina Blepharis Blepharis trispina \N \N \N \N \N 68764 C.merritt-fernaldii Carex Carex merritt-fernaldii \N \N \N \N \N 68765 E.cocoense Epidendrum Epidendrum cocoense \N \N \N \N \N 68766 H.coriacea Hyphaene Hyphaene coriacea \N \N \N \N \N 68767 C.cardiochila Caladenia Caladenia cardiochila \N \N \N \N \N 68768 S.elegans Syngonanthus Syngonanthus elegans \N \N \N \N \N 68769 \N genus Macgregoria \N \N \N \N \N 68770 O.echinulosa Oldenlandia Oldenlandia echinulosa \N \N \N \N \N 68771 T.4579 Trevesia Trevesia sp. Vinh 4579 \N \N \N \N \N 68772 P.T1589 Pilosocereus Pilosocereus aff. alensis T1589 \N \N \N \N \N 68773 A.orientalis Adoxa Adoxa orientalis \N \N \N \N \N 68774 \N subspecies Pimelea linifolia subsp. caesia \N \N \N \N \N 68775 \N subspecies Lilaeopsis attenuata subsp. attenuata \N \N \N \N \N 68776 I.helenium Inula Inula helenium elecampane,tu mu xiang,velvet-dock \N \N \N \N 68777 A.heterophyllus Artocarpus Artocarpus heterophyllus jackfruit \N \N \N \N 68778 E.1343 Eremitis Eremitis sp. Clark & Zhang 1343 \N \N \N \N \N 68779 O.souliei Omphalogramma Omphalogramma souliei \N \N \N \N \N 68780 \N genus Sartwellia \N \N \N \N \N 68781 \N genus Diplocentrum \N \N \N \N \N 68782 D.punctulata Diplycosia Diplycosia punctulata \N \N \N \N \N 68783 \N genus Tripogandra \N \N \N \N \N 68784 S.rockii Saussurea Saussurea rockii \N \N \N \N \N 68785 O.litseiflorus Ochrothallus Ochrothallus litseiflorus \N \N \N \N \N 68786 B.ferruginea Bridelia Bridelia ferruginea \N \N \N \N \N 68787 L.bosciifolium Lycium Lycium bosciifolium \N \N \N \N \N 68788 B.vaginoides Billburttia Billburttia vaginoides \N \N \N \N \N 68789 \N genus Epifagus \N \N \N \N \N 68790 A.WSP-2005 Acronychia Acronychia sp. WSP-2005 \N \N \N \N \N 68791 N.glaucescens Niphogeton Niphogeton glaucescens \N \N \N \N \N 68792 \N varietas Eupatorium album var. subvenosum \N \N \N \N \N 68793 E.christii Euphrasia Euphrasia christii \N \N \N \N \N 68794 M.nudum Microstegium Microstegium nudum \N \N \N \N \N 68795 A.curranii Aechmea Aechmea curranii \N \N \N \N \N 68796 E.denticulata Euphorbia Euphorbia denticulata \N \N \N \N \N 68797 P.pachystylus Phyllanthus Phyllanthus pachystylus \N \N \N \N \N 68798 L.candidum Leucophyllum Leucophyllum candidum \N \N \N \N \N 68799 M.chromocarpus Mallotus Mallotus chromocarpus \N \N \N \N \N 68800 Z.hispanica Ziziphora Ziziphora hispanica \N \N \N \N \N 68801 N.rostrata Nolana Nolana rostrata \N \N \N \N \N 68802 H.galioides Hypericum Hypericum galioides \N \N \N \N \N 68803 N.tocopillensis Nolana Nolana tocopillensis \N \N \N \N \N 68804 E.koreanum Epimedium Epimedium koreanum \N \N \N \N \N 68805 L.formosissimus Lotus Lotus formosissimus \N \N \N \N \N 68806 A.humilis Anigozanthos Anigozanthos humilis \N \N \N \N \N 68807 \N subspecies Filago lutescens subsp. lutescens \N \N \N \N \N 68808 \N genus Alchorneopsis \N \N \N \N \N 68809 \N genus Pedilanthus \N \N \N \N \N 68810 P.tolimanensis Persea Persea tolimanensis \N \N \N \N \N 68811 \N genus Blysmus \N \N \N \N \N 68812 C.congestus Corytoplectus Corytoplectus congestus \N \N \N \N \N 68813 A.phillipsonii Abrahamia Abrahamia phillipsonii \N \N \N \N \N 68814 \N varietas Dombeya acutangula var. acutangula \N \N \N \N \N 68815 P.sphenandrum Pachynema Pachynema sphenandrum \N \N \N \N \N 68816 C.wilsonii Crataegus Crataegus wilsonii \N \N \N \N \N 68817 F.triradiata Ficus Ficus triradiata \N \N \N \N \N 68818 E.weberbaueri Eryngium Eryngium weberbaueri \N \N \N \N \N 68819 G.radicans Gomesa Gomesa radicans \N \N \N \N \N 68820 M.calantha Momordica Momordica calantha \N \N \N \N \N 68821 E.chamissonis Erica Erica chamissonis \N \N \N \N \N 68822 R.pinetorum Rosa Rosa pinetorum \N \N \N \N \N 68823 \N forma Fragaria vesca f. alba \N \N \N \N \N 68824 S.venosa Stephania Stephania venosa \N \N \N \N \N 68825 \N genus Claoxylon \N \N \N \N \N 68826 A.strictum Arceuthobium Arceuthobium strictum \N \N \N \N \N 68827 P.darwiniana Psychotria Psychotria darwiniana \N \N \N \N \N 68828 M.chrysantha Manulea Manulea chrysantha \N \N \N \N \N 68829 V.flexuosa Virola Virola flexuosa \N \N \N \N \N 68830 A.paniculata Ardisia Ardisia paniculata \N \N \N \N \N 68831 B.tomentosa Bahiopsis Bahiopsis tomentosa \N \N \N \N \N 68832 P.neodendroides Paragynoxys Paragynoxys neodendroides \N \N \N \N \N 68833 N.fissa Nepeta Nepeta fissa \N \N \N \N \N 68834 \N subspecies Phlox carolina subsp. turritella \N \N \N \N \N 68835 \N genus Klotzschia \N \N \N \N \N 68836 S.stolonifera Stevia Stevia stolonifera \N \N \N \N \N 68837 \N genus Embergeria \N \N \N \N \N 68838 B.biflora Begonia Begonia biflora \N \N \N \N \N 68839 P.bromoides Poecilostachys Poecilostachys bromoides \N \N \N \N \N 68840 R.hawaiensis Ranunculus Ranunculus hawaiensis \N \N \N \N \N 68841 P.aureiflora Pereskia Pereskia aureiflora \N \N \N \N \N 68842 U.h357 Urginavia Urginavia sp. h357 \N \N \N \N \N 68843 S.wrightii Spathelia Spathelia wrightii \N \N \N \N \N 68844 P.chinensis Pistacia Pistacia chinensis Chinese pistachio \N \N \N \N 68845 H.ngounyensis Hymenostegia Hymenostegia ngounyensis \N \N \N \N \N 68846 O.ceanothifolia Ocotea Ocotea ceanothifolia \N \N \N \N \N 68847 D.variostriata Dendrocalamopsis Dendrocalamopsis variostriata \N \N \N \N \N 68848 S.schanginiana Saussurea Saussurea schanginiana \N \N \N \N \N 68849 D.sherffii Dahlia Dahlia sherffii \N \N \N \N \N 68850 P.aquaticus Pogostemon Pogostemon aquaticus \N \N \N \N \N 68851 \N genus Pichonia \N \N \N \N \N 68852 T.cuspidata Tiquilia Tiquilia cuspidata \N \N \N \N \N 68853 C.lucida Capparis Capparis lucida \N \N \N \N \N 68854 \N genus Sphenopholis \N \N \N \N \N 68855 \N forma Vanda coerulea f. luwangalba \N \N \N \N \N 68856 P.mollis Phaseolus Phaseolus mollis \N \N \N \N \N 68857 K.manginii Kalanchoe Kalanchoe manginii \N \N \N \N \N 68858 R.fragrans Rhopalobrachium Rhopalobrachium fragrans \N \N \N \N \N 68859 \N subspecies Corynocarpus rupestris subsp. arborescens \N \N \N \N \N 68860 W.praecox Wajira Wajira praecox \N \N \N \N \N 68861 L.leptophyllus Lotus Lotus leptophyllus \N \N \N \N \N 68862 G.boliviana Gochnatia Gochnatia boliviana \N \N \N \N \N 68863 S.micranthus Stemonocoleus Stemonocoleus micranthus \N \N \N \N \N 68864 I.regelii Iljinia Iljinia regelii \N \N \N \N \N 68865 T.mirabilis Tragopogon Tragopogon x mirabilis Ontario goatsbeard \N \N \N \N 68866 J.leptostachya Jarava Jarava leptostachya \N \N \N \N \N 68867 C.juncea Coronilla Coronilla juncea \N \N \N \N \N 68868 P.velutina Pagamea Pagamea velutina \N \N \N \N \N 68869 \N genus Acanthus \N \N \N \N \N 68870 S.brachycalyx Solandra Solandra brachycalyx \N \N \N \N \N 68871 O.amazonicum Onychopetalum Onychopetalum amazonicum \N \N \N \N \N 68872 E.leucantha Echinopsis Echinopsis leucantha \N \N \N \N \N 68873 P.nudibaccatum Piper Piper nudibaccatum \N \N \N \N \N 68874 P.leptum Pelargonium Pelargonium leptum \N \N \N \N \N 68875 D.ruyschiana Dracocephalum Dracocephalum ruyschiana \N \N \N \N \N 68876 B.barrelieri Brassica Brassica barrelieri \N \N \N \N \N 68877 O.garganica Ophrys Ophrys garganica \N \N \N \N \N 68878 A.spinosus Artabotrys Artabotrys spinosus \N \N \N \N \N 68879 M.karwinskii Montanoa Montanoa karwinskii \N \N \N \N \N 84429 \N genus Amphitecna \N \N \N \N \N 68880 D.glaucescens Descurainia Descurainia glaucescens \N \N \N \N \N 68881 C.involucrata Carlina Carlina involucrata \N \N \N \N \N 68882 O.pulchella Onobrychis Onobrychis pulchella \N \N \N \N \N 68883 R.xanthostephanum Rhododendron Rhododendron xanthostephanum \N \N \N \N \N 68884 P.foliosus Potamogeton Potamogeton octandrus x Potamogeton foliosus \N \N \N \N \N 68885 B.loranthoides Begonia Begonia loranthoides \N \N \N \N \N 68886 P.enneandra Pleiocarpidia Pleiocarpidia enneandra \N \N \N \N \N 68887 Y.valida Yucca Yucca valida \N \N \N \N \N 68888 \N varietas Caltha palustris var. membranacea \N \N \N \N \N 68889 D.hackettiana Dodonaea Dodonaea hackettiana \N \N \N \N \N 68890 R.tricolor Rubus Rubus tricolor \N \N \N \N \N 68891 G.chapieleri Garcinia Garcinia chapieleri \N \N \N \N \N 68892 A.intricata Aspalathus Aspalathus intricata \N \N \N \N \N 68893 H.glandulosum Hypericum Hypericum glandulosum \N \N \N \N \N 68894 G.sessiliflorum Geranium Geranium sessiliflorum \N \N \N \N \N 68895 E.clandestina Euphorbia Euphorbia clandestina \N \N \N \N \N 68896 S.rapax Scaphosepalum Scaphosepalum rapax \N \N \N \N \N 68897 A.kenyensis Aristida Aristida kenyensis \N \N \N \N \N 68898 C.gryllus Chrysopogon Chrysopogon gryllus \N \N \N \N \N 68899 \N varietas Chrysosplenium pilosum var. fulvum \N \N \N \N \N 68900 F.ardisioides Ficus Ficus ardisioides \N \N \N \N \N 68901 \N subspecies Euphorbia deltoidea subsp. pinetorum \N \N \N \N \N 68902 S.BM160 Senna Senna sp. BM160 \N \N \N \N \N 68903 M.gracilis Mazus Mazus gracilis \N \N \N \N \N 68904 P.fremontii Populus Populus fremontii \N \N \N \N \N 68905 A.JM05 Aristolochia Aristolochia sp. JM05 \N \N \N \N \N 68906 A.tomentosa Asclepias Asclepias tomentosa \N \N \N \N \N 68907 E.cassythoides Erythrorchis Erythrorchis cassythoides \N \N \N \N \N 68908 \N no rank Apium graveolens Secalinum Group Chinese celery,leaf celery \N \N \N \N 68909 A.likoko Ancistrocladus Ancistrocladus likoko \N \N \N \N \N 68910 R.trianthus Rubus Rubus trianthus \N \N \N \N \N 68911 B.orthoceras Barbarea Barbarea orthoceras \N \N \N \N \N 68912 I.angustifolia Iresine Iresine angustifolia \N \N \N \N \N 68913 L.saxicola Leucocroton Leucocroton saxicola \N \N \N \N \N 68914 P.dilatata Platanthera Platanthera dilatata \N \N \N \N \N 68915 P.autumnalis Poa Poa autumnalis \N \N \N \N \N 68916 T.infaustum Theriophonum Theriophonum infaustum \N \N \N \N \N 68917 \N genus Buergersiochloa \N \N \N \N \N 68918 \N varietas Nierembergia pulchella var. macrocalyx \N \N \N \N \N 68919 D.sallei Dendrophylax Dendrophylax sallei \N \N \N \N \N 68920 A.alboviolaceum Anisosepalum Anisosepalum alboviolaceum \N \N \N \N \N 68921 \N genus Euodia \N \N \N \N \N 68922 H.afghanicum Heracleum Heracleum afghanicum \N \N \N \N \N 68923 T.timopheevi Triticum Triticum aestivum x Triticum timopheevi common wheat x Sanduri wheat \N \N \N \N 68924 D.pygmaea Drosera Drosera pygmaea \N \N \N \N \N 68925 E.subacaule Exacum Exacum subacaule \N \N \N \N \N 68926 P.deustum Panicum Panicum deustum \N \N \N \N \N 68927 L.echinophorus Lithocarpus Lithocarpus echinophorus \N \N \N \N \N 68928 T.alexanderi Tephrocactus Tephrocactus alexanderi \N \N \N \N \N 68929 \N genus Cyathocoma \N \N \N \N \N 68930 L.carnosa Layia Layia carnosa \N \N \N \N \N 68931 A.elata Arracacia Arracacia elata \N \N \N \N \N 68932 H.dissectifolium Heracleum Heracleum dissectifolium \N \N \N \N \N 68933 S.ostenianum Sisyrinchium Sisyrinchium ostenianum \N \N \N \N \N 68934 \N varietas Bupleurum hamiltonii var. humile \N \N \N \N \N 68935 G.penduliflorum Glossoloma Glossoloma penduliflorum \N \N \N \N \N 68936 S.triquetra Serjania Serjania triquetra \N \N \N \N \N 68937 T.cuneifolia Taverniera Taverniera cuneifolia \N \N \N \N \N 68938 C.SL-16 unclassified Citrus cybrid citrus SL-16 \N \N \N \N \N 68939 \N genus Cadetia \N \N \N \N \N 68940 P.spicata Phylica Phylica spicata \N \N \N \N \N 68941 P.distichum Podostemum Podostemum distichum \N \N \N \N \N 68942 L.pentaphylla Lotononis Lotononis pentaphylla \N \N \N \N \N 68943 \N subspecies Arachnothryx leucophylla subsp. virgata \N \N \N \N \N 68944 \N genus Ceiba \N \N \N \N \N 68945 E.spiralis Euphorbia Euphorbia spiralis \N \N \N \N \N 68946 D.SH-2010 Dianella Dianella sp. SH-2010 \N \N \N \N \N 68947 S.puniceus Scadoxus Scadoxus puniceus \N \N \N \N \N 68948 S.gracilis Sansevieria Sansevieria gracilis \N \N \N \N \N 68949 M.1344 Melicope Melicope sp. Chase 1344 \N \N \N \N \N 68950 C.costei Camellia Camellia costei \N \N \N \N \N 68951 M.javanica Morella Morella javanica \N \N \N \N \N 68952 W.brasiliensis Wolffia Wolffia brasiliensis \N \N \N \N \N 68953 A.17084 Alseodaphne Alseodaphne sp. van der Werff & al. 17084 \N \N \N \N \N 68954 L.crassifolius Leucopogon Leucopogon crassifolius \N \N \N \N \N 68955 S.erecta Saussurea Saussurea erecta \N \N \N \N \N 68956 S.splendens Strychnos Strychnos splendens \N \N \N \N \N 68957 A.tortiramula Allocasuarina Allocasuarina tortiramula \N \N \N \N \N 68958 P.stolonifera Phlox Phlox stolonifera \N \N \N \N \N 68959 S.komarovii Salsola Salsola komarovii \N \N \N \N \N 68960 O.oreocharis Oxalis Oxalis oreocharis \N \N \N \N \N 68961 B.chemapodicta Bursera Bursera chemapodicta \N \N \N \N \N 68962 \N genus Perotis \N \N \N \N \N 68963 \N subspecies Leptecophylla juniperina subsp. juniperina \N \N \N \N \N 68964 M.parviflora Malva Malva parviflora \N \N \N \N \N 68965 A.triflorus Astephanus Astephanus triflorus \N \N \N \N \N 68966 H.europaeum Heliotropium Heliotropium europaeum \N \N \N \N \N 68967 P.laueana Pinguicula Pinguicula laueana \N \N \N \N \N 68968 \N subspecies Aphanocalyx microphyllus subsp. microphyllus \N \N \N \N \N 68969 C.congesta Commelina Commelina congesta \N \N \N \N \N 68970 P.benedicta Pinguicula Pinguicula benedicta \N \N \N \N \N 68971 \N genus Petiveria \N \N \N \N \N 68972 \N genus Malcolmia \N \N \N \N \N 68973 \N genus Ophiochloa \N \N \N \N \N 68974 P.mariae Phalaenopsis Phalaenopsis mariae \N \N \N \N \N 68975 G.matthewsii Galium Galium matthewsii \N \N \N \N \N 68976 \N genus Papuodendron \N \N \N \N \N 68978 O.thysanocarpha Orochaenactis Orochaenactis thysanocarpha \N \N \N \N \N 68979 C.lotoides Cytisus Cytisus lotoides \N \N \N \N \N 68980 G.horichiana Gongora Gongora horichiana \N \N \N \N \N 68981 S.6691 Symbolanthus Symbolanthus sp. Dorr 6691 \N \N \N \N \N 68982 C.tragacanthifolia Carlina Carlina tragacanthifolia \N \N \N \N \N 68983 G.tataricum Goniolimon Goniolimon tataricum statice \N \N \N \N 68984 C.saxatilis Chiliadenus Chiliadenus saxatilis \N \N \N \N \N 68985 S.immersa Stelis Stelis immersa \N \N \N \N \N 68986 \N genus Thespesia \N \N \N \N \N 68987 H.odorata Hoya Hoya odorata \N \N \N \N \N 68988 O.ariadnae Ophrys Ophrys ariadnae \N \N \N \N \N 68989 O.mapora Oenocarpus Oenocarpus mapora \N \N \N \N \N 68990 V.parviflora Vagaria Vagaria parviflora \N \N \N \N \N 68991 G.fruticosa Gesneria Gesneria fruticosa \N \N \N \N \N 68992 E.pedilanthoides Euphorbia Euphorbia pedilanthoides \N \N \N \N \N 68993 O.tubifera Oenothera Oenothera tubifera \N \N \N \N \N 68994 A.burlewii Allium Allium burlewii \N \N \N \N \N 68995 I.cissoidea Ilex Ilex cissoidea \N \N \N \N \N 68996 P.clelandii Poa Poa clelandii \N \N \N \N \N 68997 P.pulchella Pinanga Pinanga pulchella \N \N \N \N \N 68998 T.piperiformis Thottea Thottea piperiformis \N \N \N \N \N 68999 C.ochraceus Ceanothus Ceanothus ochraceus \N \N \N \N \N 69000 N.flabellata Nototriche Nototriche flabellata \N \N \N \N \N 69001 P.afra Plantago Plantago afra African plantain,black psyllium \N \N \N \N 69002 L.coulteri Lyrocarpa Lyrocarpa coulteri \N \N \N \N \N 69003 E.canum Epilobium Epilobium canum \N \N \N \N \N 69004 F.abelii Ficus Ficus abelii \N \N \N \N \N 69005 F.squamosa Faujasia Faujasia squamosa \N \N \N \N \N 69006 P.leptophyllus Ptilostemon Ptilostemon leptophyllus \N \N \N \N \N 69007 T.foetidissima Tagetes Tagetes foetidissima \N \N \N \N \N 69008 P.advena Primula Primula advena \N \N \N \N \N 69009 \N forma Eleutherococcus divaricatus f. tristigmatis \N \N \N \N \N 69010 A.desertorum Agropyron Agropyron cristatum x Agropyron desertorum \N \N \N \N \N 69011 \N subspecies Zea mays subsp. parviglumis Balsas teosinte,teosinte \N \N \N \N 69012 \N subspecies Draba pulvinata subsp. pulvinata \N \N \N \N \N 69013 R.IS-2011 Rosa Rosa sp. IS-2011 \N \N \N \N \N 69014 S.kalmiifolius Salpinctes Salpinctes kalmiifolius \N \N \N \N \N 69015 T.ebenus Trochetiopsis Trochetiopsis ebenus \N \N \N \N \N 69016 M.4301 Molinaea Molinaea sp. Antilahimena 4301 \N \N \N \N \N 69017 P.elaeagrifolia Pyrus Pyrus elaeagrifolia \N \N \N \N \N 69018 M.pineolens Micromeria Micromeria pineolens \N \N \N \N \N 69019 E.12565 Edmondia Edmondia sp. Goldblatt 12565 \N \N \N \N \N 69020 P.haufensis Polycarpaea Polycarpaea haufensis \N \N \N \N \N 69021 T.decumbens Trillium Trillium decumbens \N \N \N \N \N 69022 L.gasparricensis Lepturus Lepturus gasparricensis \N \N \N \N \N 69023 B.saigonensis Bauhinia Bauhinia saigonensis \N \N \N \N \N 69024 L.rosea Leucheria Leucheria rosea \N \N \N \N \N 69025 \N genus Helmontia \N \N \N \N \N 69026 I.japonica Iris Iris japonica \N \N \N \N \N 69027 A.azurea Anchusa Anchusa azurea \N \N \N \N \N 69028 S.siamea Senna Senna siamea \N \N \N \N \N 69029 \N genus Centrapalus \N \N \N \N \N 69030 \N genus Stephanandra \N \N \N \N \N 69031 A.sericicarpus Artocarpus Artocarpus sericicarpus \N \N \N \N \N 69032 A.incurvifolia Aspalathus Aspalathus incurvifolia \N \N \N \N \N 69033 A.tortuosum Arisaema Arisaema tortuosum \N \N \N \N \N 69034 \N genus Rinorea \N \N \N \N \N 69035 N.loxensis Nasa Nasa loxensis \N \N \N \N \N 69036 L.smithii Lymania Lymania smithii \N \N \N \N \N 69037 S.sparsipilum Solanum Solanum leptophyes x Solanum sparsipilum \N \N \N \N \N 69038 \N subspecies Carex elata subsp. elata \N \N \N \N \N 69039 E.marchesettii Euphrasia Euphrasia marchesettii \N \N \N \N \N 69040 D.ammoniacum Dorema Dorema ammoniacum \N \N \N \N \N 69041 \N genus Cnidium \N \N \N \N \N 69042 C.reflexa Chiloglottis Chiloglottis reflexa \N \N \N \N \N 69043 F.oreodryadum Ficus Ficus oreodryadum \N \N \N \N \N 69044 G.priorii Gladiolus Gladiolus priorii \N \N \N \N \N 69045 I.maitlandii Isolona Isolona maitlandii \N \N \N \N \N 69046 C.lanata Chaetanthera Chaetanthera lanata \N \N \N \N \N 69047 S.JY-2008-2 Solms-laubachia Solms-laubachia sp. JY-2008-2 \N \N \N \N \N 69048 C.longitubum Conostomium Conostomium longitubum \N \N \N \N \N 69049 S.hasslerii Sida Sida hasslerii \N \N \N \N \N 69050 \N genus Sphenopus \N \N \N \N \N 69051 F.cuzcoensis Festuca Festuca cuzcoensis \N \N \N \N \N 69052 C.elegans Chaerophyllum Chaerophyllum elegans \N \N \N \N \N 69053 T.boutoniana Trochetia Trochetia boutoniana \N \N \N \N \N 69054 Z.humile Zanthoxylum Zanthoxylum humile \N \N \N \N \N 69055 E.primulifolia Euphorbia Euphorbia primulifolia \N \N \N \N \N 69056 T.acuminata Trichoscypha Trichoscypha acuminata \N \N \N \N \N 69057 C.altigena Cardamine Cardamine altigena \N \N \N \N \N 69058 \N genus Hasseltia \N \N \N \N \N 69059 \N genus Microdon \N \N \N \N \N 69060 \N varietas Coursetia caribaea var. trifoliolata \N \N \N \N \N 69061 V.coignetiae Vitis Vitis coignetiae \N \N \N \N \N 69062 P.pulchrum Piper Piper pulchrum \N \N \N \N \N 69063 L.filipes Leptostylis Leptostylis filipes \N \N \N \N \N 69064 A.aristiglumis Austrostipa Austrostipa aristiglumis \N \N \N \N \N 69065 P.pecten-aboriginum Pachycereus Pachycereus pecten-aboriginum \N \N \N \N \N 69066 C.setifolius Chrysopogon Chrysopogon setifolius \N \N \N \N \N 69067 R.maculatum Rytidosperma Rytidosperma maculatum \N \N \N \N \N 69068 J.BAC-2010 unclassified Juncaceae Juncaceae sp. A1 BAC-2010 \N \N \N \N \N 69069 E.tenuifolia Eschweilera Eschweilera tenuifolia \N \N \N \N \N 69070 N.lactea Neotinea Neotinea lactea \N \N \N \N \N 69071 S.mexicanum Sedum Sedum mexicanum \N \N \N \N \N 69072 B.epiphytum Bulbophyllum Bulbophyllum epiphytum \N \N \N \N \N 69073 E.umbellatum Eriogonum Eriogonum umbellatum \N \N \N \N \N 69074 R.saxicola Rudolfiella Rudolfiella saxicola \N \N \N \N \N 85105 R.rubra Rustia Rustia rubra \N \N \N \N \N 69075 R.humbertii Rhynchophora Rhynchophora humbertii \N \N \N \N \N 69076 E.nodiflorus Eleutherococcus Eleutherococcus nodiflorus \N \N \N \N \N 69077 G.glaber Gasteranthus Gasteranthus glaber \N \N \N \N \N 69078 J.osense Japonolirion Japonolirion osense \N \N \N \N \N 69079 C.barbatus Calochortus Calochortus barbatus \N \N \N \N \N 69080 O.93 Ophrys Ophrys cf. fusca 93 \N \N \N \N \N 69081 \N genus Catacolea \N \N \N \N \N 69082 \N subspecies Gazania linearis subsp. ovalis \N \N \N \N \N 69083 B.pauciflora Bonellia Bonellia pauciflora \N \N \N \N \N 69084 V.bracteata Valeriana Valeriana bracteata \N \N \N \N \N 69085 \N subspecies Cardamine amara subsp. balcanica \N \N \N \N \N 69086 E.jamesii Eriogonum Eriogonum jamesii \N \N \N \N \N 69087 H.orientale Hedyosmum Hedyosmum orientale \N \N \N \N \N 69088 \N varietas Metrosideros polymorpha var. macrophylla \N \N \N \N \N 69089 S.1309 Symplocos Symplocos sp. Kelly et al. 1309 \N \N \N \N \N 69090 A.azoricum Arceuthobium Arceuthobium azoricum \N \N \N \N \N 69091 P.intonsa Protea Protea intonsa \N \N \N \N \N 69092 E.gabrielii Echinodorus Echinodorus gabrielii \N \N \N \N \N 69093 C.piquetiana Camellia Camellia piquetiana \N \N \N \N \N 69094 \N genus Bentleya \N \N \N \N \N 69095 S.setosa Simsia Simsia setosa \N \N \N \N \N 69096 E.atropurpureum Empetrum Empetrum atropurpureum purple crowberry \N \N \N \N 69097 I.nezahatiae Iris Iris nezahatiae \N \N \N \N \N 69098 V.perfoliata Labiatoides Veronica perfoliata \N \N \N \N \N 69099 \N genus Funastrum \N \N \N \N \N 69100 \N genus Sphaerocoryne \N \N \N \N \N 69101 N.722-02 Nymphaea Nymphaea sp. 722-02 \N \N \N \N \N 69102 D.longiflorus Drepananthus Drepananthus longiflorus \N \N \N \N \N 69103 H.serpyllum Hygrophila Hygrophila serpyllum \N \N \N \N \N 69104 B.integerrima Begonia Begonia integerrima \N \N \N \N \N 69105 A.atrata Artemisia Artemisia atrata \N \N \N \N \N 69106 A.aphylla Arthrostylis Arthrostylis aphylla \N \N \N \N \N 69107 N.tarapacana Nolana Nolana tarapacana \N \N \N \N \N 69108 S.kanaii Saussurea Saussurea kanaii \N \N \N \N \N 69109 S.tschiliensis Scabiosa Scabiosa tschiliensis \N \N \N \N \N 69110 C.strigillosa Clematis Clematis strigillosa \N \N \N \N \N 69111 \N genus Crinitaria \N \N \N \N \N 69112 C.mexicana Clethra Clethra mexicana \N \N \N \N \N 69113 M.SH-2010 Michelia Michelia sp. SH-2010 \N \N \N \N \N 69114 \N genus Marcetia \N \N \N \N \N 69115 E.gittinsii Eucalyptus Eucalyptus gittinsii \N \N \N \N \N 69116 A.cerebroides Andrachne Andrachne cerebroides \N \N \N \N \N 69117 C.achyranthoides Cyathula Cyathula achyranthoides \N \N \N \N \N 69118 H.mieheanum Hymenidium Hymenidium mieheanum \N \N \N \N \N 69119 S.2543 Salvia Salvia sp. JBW 2543 \N \N \N \N \N 69120 \N genus Cyathostegia \N \N \N \N \N 69121 C.vidalii Campanula Campanula vidalii \N \N \N \N \N 69122 H.domingensis Hyperbaena Hyperbaena domingensis \N \N \N \N \N 69123 B.brachycarpa Bauhinia Bauhinia brachycarpa \N \N \N \N \N 69124 A.schizostephana Anthemis Anthemis schizostephana \N \N \N \N \N 69125 M.16932 Mysanthus Mysanthus sp. Abbott 16932 \N \N \N \N \N 69126 A.brachiata Aegiphila Aegiphila brachiata \N \N \N \N \N 69127 S.bifida Stenogyne Stenogyne bifida \N \N \N \N \N 69128 S.pyrolifolia Salix Salix pyrolifolia \N \N \N \N \N 69129 G.atroviolacea Gigantochloa Gigantochloa atroviolacea \N \N \N \N \N 69130 A.ulodjensis Astragalus Astragalus ulodjensis \N \N \N \N \N 69131 P.6979 Pleiochiton Pleiochiton sp. Amorim 6979 \N \N \N \N \N 69132 P.diandrum Pterocephalidium Pterocephalidium diandrum \N \N \N \N \N 69133 P.bifidus Paepalanthus Paepalanthus bifidus \N \N \N \N \N 69134 S.soczavana Silene Silene soczavana \N \N \N \N \N 69135 \N subspecies Musa peekelii subsp. peekelii \N \N \N \N \N 69136 \N genus Rhynchosida \N \N \N \N \N 69137 B.serrata Boswellia Boswellia serrata \N \N \N \N \N 69138 S.glauca Salix Salix glauca \N \N \N \N \N 69139 I.candolleana Indigofera Indigofera candolleana \N \N \N \N \N 69140 C.rosmarinifolium Calycogonium Calycogonium rosmarinifolium \N \N \N \N \N 69141 B.nilagiriana Boucerosia Boucerosia nilagiriana \N \N \N \N \N 69142 A.furcata Amsinckia Amsinckia furcata \N \N \N \N \N 69143 L.longifolia Lomandra Lomandra longifolia \N \N \N \N \N 69144 \N subtribe Warioniinae \N \N \N \N \N 69145 P.oederi Pedicularis Pedicularis oederi \N \N \N \N \N 69146 R.fischeri Rothmannia Rothmannia fischeri \N \N \N \N \N 69147 P.P123 Physalis Physalis sp. P123 \N \N \N \N \N 69148 P.patulinervis Penianthus Penianthus patulinervis \N \N \N \N \N 69149 P.amoenum Piper Piper amoenum \N \N \N \N \N 69150 \N genus Balaka \N \N \N \N \N 69151 C.terniflora Clematis Clematis terniflora sennin-so,sweet autumn clematis \N \N \N \N 69152 P.taliensis Parasenecio Parasenecio taliensis \N \N \N \N \N 69153 O.papuana Omphalea Omphalea papuana \N \N \N \N \N 69154 S.acostae Scaphyglottis Scaphyglottis acostae \N \N \N \N \N 69155 R.stricta Rhazya Rhazya stricta \N \N \N \N \N 69156 C.fangiana Carpinus Carpinus fangiana \N \N \N \N \N 69157 \N varietas Lilium concolor var. pulchellum \N \N \N \N \N 69158 S.thianschanicus Senecio Senecio thianschanicus \N \N \N \N \N 69159 D.hispidus Dontostemon Dontostemon hispidus \N \N \N \N \N 69160 O.multicaulis Oenothera Oenothera multicaulis \N \N \N \N \N 69161 R.dispar Restio Restio dispar \N \N \N \N \N 69162 H.rigidiuscula Heliophila Heliophila rigidiuscula \N \N \N \N \N 69163 P.grantii Porphyrostemma Porphyrostemma grantii \N \N \N \N \N 69164 H.16804 Hugonia Hugonia aff. planchonii McPherson 16804 \N \N \N \N \N 69165 \N varietas Actinidia melanandra var. melanandra \N \N \N \N \N 69166 P.brighamii Pleurothallis Pleurothallis brighamii \N \N \N \N \N 69167 S.arenaria Schoepfia Schoepfia arenaria \N \N \N \N \N 69168 B.audax Banksia Banksia audax \N \N \N \N \N 69169 B.voulily Byttneria Byttneria voulily \N \N \N \N \N 69170 R.zollingeri Rhododendron Rhododendron zollingeri \N \N \N \N \N 69171 A.membranacea Apeiba Apeiba membranacea \N \N \N \N \N 69172 A.sample environmental samples Taxonomy:417453 Asterales environmental sample \N \N \N \N \N 69173 C.halliana Carex Carex halliana \N \N \N \N \N 69174 \N genus Wilbrandia \N \N \N \N \N 69175 C.insularis Croton Croton insularis \N \N \N \N \N 69176 M.arvense Melampyrum Melampyrum arvense \N \N \N \N \N 69177 T.O-489 Thelymitra Thelymitra sp. Chase O-489 \N \N \N \N \N 69178 C.calycina Cistanthe Cistanthe calycina \N \N \N \N \N 69179 A.zollingeriana Aristolochia Aristolochia zollingeriana \N \N \N \N \N 69180 M.foeniculaceum Marathrum Marathrum foeniculaceum \N \N \N \N \N 69181 E.canadensis Elymus Elymus canadensis Canada wild rye \N \N \N \N 69182 M.cinnamomifolia Miconia Miconia cinnamomifolia \N \N \N \N \N 69183 P.oakesianus Potamogeton Potamogeton oakesianus \N \N \N \N \N 69184 \N genus Gnidia \N \N \N \N \N 69185 M.congdonii Monolopia Monolopia congdonii \N \N \N \N \N 69186 H.decaryi Hymenodictyon Hymenodictyon decaryi \N \N \N \N \N 69187 R.spissa Ruellia Ruellia spissa \N \N \N \N \N 69188 L.angulata Leea Leea angulata \N \N \N \N \N 69189 G.benthamianum Glochidion Glochidion benthamianum \N \N \N \N \N 69190 P.latifolius Pharus Pharus latifolius \N \N \N \N \N 69191 N.farreri Nomocharis Nomocharis farreri \N \N \N \N \N 69192 V.hookeriana Viola Viola hookeriana \N \N \N \N \N 69193 Q.pannosa Quercus Quercus pannosa \N \N \N \N \N 69194 C.deplanchei Corbassona Corbassona deplanchei \N \N \N \N \N 69195 C.arietinum Cleisostoma Cleisostoma arietinum \N \N \N \N \N 69196 S.fasciflora Serruria Serruria fasciflora \N \N \N \N \N 69197 G.s.n. Gnidia Gnidia cf. anomala Johns s.n. \N \N \N \N \N 69198 P.yunnanense Pyrgophyllum Pyrgophyllum yunnanense \N \N \N \N \N 69199 B.aurea Barberetta Barberetta aurea \N \N \N \N \N 69200 K.D40 Kaempferia Kaempferia sp. D40 \N \N \N \N \N 69201 S.ancistroides Sanguisorba Sanguisorba ancistroides \N \N \N \N \N 69202 E.foetida Eugenia Eugenia foetida Spanish stopper,white wattling \N \N \N \N 69203 C.disperma Cuphea Cuphea disperma \N \N \N \N \N 69204 \N varietas Paspalum mandiocanum var. subaequiglume \N \N \N \N \N 69205 G.ovata Gardneria Gardneria ovata \N \N \N \N \N 69206 E.martirensis Ericameria Ericameria martirensis \N \N \N \N \N 69207 D.anthoceros Disperis Disperis anthoceros \N \N \N \N \N 69208 D.mildbraediana Dicranostyles Dicranostyles mildbraediana \N \N \N \N \N 69209 B.grandis Baeckea Baeckea grandis \N \N \N \N \N 69210 C.gallabatense Chlorophytum Chlorophytum gallabatense \N \N \N \N \N 69211 P.stolonifer Phedimus Phedimus stolonifer \N \N \N \N \N 69212 R.4190 Randia Randia sp. Jansen-Jacobs et al. 4190 \N \N \N \N \N 69213 O.marmoratus Ophiopogon Ophiopogon marmoratus \N \N \N \N \N 69214 E.platycephala Euphorbia Euphorbia platycephala \N \N \N \N \N 69215 B.monosperma Butea Butea monosperma Bengal kino,dhak,flame-of-the-forest,palas \N \N \N \N 69216 C.lanceolata Camellia Camellia lanceolata \N \N \N \N \N 69217 C.EFA-2002 Citrus Citrus sp. EFA-2002 \N \N \N \N \N 69218 A.proliferus Aponogeton Aponogeton proliferus \N \N \N \N \N 69219 P.mucronata Pictetia Pictetia mucronata \N \N \N \N \N 69220 G.ambiguum Galium Galium ambiguum \N \N \N \N \N 69221 \N tribe Craterispermeae \N \N \N \N \N 69222 C.rugosiceps Cuscuta Cuscuta rugosiceps \N \N \N \N \N 69223 \N subspecies Cephalaria squamiflora subsp. mediterranea \N \N \N \N \N 69224 G.ocellatum Geranium Geranium ocellatum \N \N \N \N \N 69225 P.jesoana Primula Primula jesoana \N \N \N \N \N 69226 A.albus Asphodelus Asphodelus albus \N \N \N \N \N 69227 C.cryptoneura Camellia Camellia cryptoneura \N \N \N \N \N 69228 F.vitifolia Fioria Fioria vitifolia \N \N \N \N \N 69229 H.cana Hazardia Hazardia cana \N \N \N \N \N 69230 \N genus Picconia \N \N \N \N \N 69231 C.cretica Crepis Crepis cretica \N \N \N \N \N 69232 \N genus Lecokia \N \N \N \N \N 69233 T.ficus Tambourissa Tambourissa ficus \N \N \N \N \N 69234 L.ciliolata Lycianthes Lycianthes ciliolata \N \N \N \N \N 69235 G.unguicularis Garidella Garidella unguicularis \N \N \N \N \N 69236 S.spegazzinii Solanum Solanum spegazzinii \N \N \N \N \N 69237 A.pseudorhacodes Astragalus Astragalus pseudorhacodes \N \N \N \N \N 69238 D.prozorovskii Draba Draba prozorovskii \N \N \N \N \N 69239 R.126 Rytidosperma Rytidosperma cf. corinum Humphreys 126 \N \N \N \N \N 69240 M.minima Medicago Medicago minima \N \N \N \N \N 69241 \N genus Gibbaeum \N \N \N \N \N 69242 S.festucacea Scolochloa Scolochloa festucacea \N \N \N \N \N 69243 \N subspecies Conostylis crassinerva subsp. absens \N \N \N \N \N 69244 \N genus Linanthus \N \N \N \N \N 69245 T.foliosum Thesium Thesium foliosum \N \N \N \N \N 69246 R.purpurea Roscoea Roscoea purpurea \N \N \N \N \N 69247 D.nobile Dendrobium Dendrobium nobile \N \N \N \N \N 69248 \N genus Tetrapterys \N \N \N \N \N 69249 A.vulnerans Aspalathus Aspalathus vulnerans \N \N \N \N \N 69250 \N genus Hyalochaete \N \N \N \N \N 69251 C.polyandra Clymenia Clymenia polyandra \N \N \N \N \N 69252 H.humile Hieracium Hieracium humile \N \N \N \N \N 69253 C.pulvinata Centaurea Centaurea pulvinata \N \N \N \N \N 69254 A.scott-thomsonii Aciphylla Aciphylla scott-thomsonii \N \N \N \N \N 69255 G.henricksonii Gaillardia Gaillardia henricksonii \N \N \N \N \N 69256 A.melanoxylon Acacia Acacia melanoxylon \N \N \N \N \N 69257 \N genus Acidocroton \N \N \N \N \N 69258 C.ramosissima Coleogyne Coleogyne ramosissima \N \N \N \N \N 69259 E.kerbyi Elettariopsis Elettariopsis kerbyi \N \N \N \N \N 69260 \N subspecies Meineckia phyllanthoides subsp. capillariformis \N \N \N \N \N 69261 H.doelli Hoffmannseggia Hoffmannseggia doelli \N \N \N \N \N 69262 R.puhuongensis Rhapis Rhapis puhuongensis \N \N \N \N \N 69263 G.macdougallii Graptopetalum Graptopetalum macdougallii \N \N \N \N \N 69264 E.innovans Erica Erica innovans \N \N \N \N \N 69265 E.simulans Echeveria Echeveria simulans \N \N \N \N \N 69266 S.insignis Stapelianthus Stapelianthus insignis \N \N \N \N \N 69267 C.pendula Chorigyne Chorigyne pendula \N \N \N \N \N 69268 R.merum Rytidosperma Rytidosperma merum \N \N \N \N \N 69269 R.ciliatus Rhododon Rhododon ciliatus \N \N \N \N \N 69270 C.rigidum Catapodium Catapodium rigidum fern grass \N \N \N \N 69271 P.barteri Podococcus Podococcus barteri \N \N \N \N \N 69272 R.gambelii Rorippa Rorippa gambelii \N \N \N \N \N 69273 \N subspecies Polygala cornuta subsp. fishiae \N \N \N \N \N 69274 P.arillata Polygala Polygala arillata \N \N \N \N \N 69275 V.linearis Viguiera Viguiera linearis \N \N \N \N \N 69276 E.nubigena Eudema Eudema nubigena \N \N \N \N \N 69277 \N genus Arabis rockcress \N \N \N \N 69278 \N varietas Clinopodium abyssinicum var. condensatum \N \N \N \N \N 69279 P.angustifolia Pulmonaria Pulmonaria angustifolia \N \N \N \N \N 69280 L.perenne Lomatogonium Lomatogonium perenne \N \N \N \N \N 69281 R.pyrethroides Richteria Richteria pyrethroides \N \N \N \N \N 69282 \N genus Prosartes \N \N \N \N \N 69283 M.orcuttii Mammillaria Mammillaria orcuttii \N \N \N \N \N 69284 M.zeyheri Macledium Macledium zeyheri \N \N \N \N \N 69285 P.viscida Phacelia Phacelia viscida \N \N \N \N \N 69286 S.ampla Sterculia Sterculia ampla \N \N \N \N \N 69287 H.mutica Haworthia Haworthia mutica \N \N \N \N \N 69288 M.ambigua Mercurialis Mercurialis ambigua \N \N \N \N \N 69289 F.eastwoodiae Fritillaria Fritillaria eastwoodiae \N \N \N \N \N 69290 L.pallescens Lathyrus Lathyrus pallescens \N \N \N \N \N 69291 C.erectus Chloranthus Chloranthus erectus keras tulang,yu zi lan \N \N \N \N 69292 D.decurvum Diplodium Diplodium decurvum \N \N \N \N \N 69293 H.scopulicola Helianthemum Helianthemum scopulicola \N \N \N \N \N 69294 S.maximowicziana Salvia Salvia maximowicziana \N \N \N \N \N 69295 \N genus Diploclisia \N \N \N \N \N 69296 \N genus Elacholoma \N \N \N \N \N 69297 \N genus Massularia \N \N \N \N \N 69298 A.roseum Allium Allium roseum \N \N \N \N \N 69299 F.tannoensis Ficus Ficus tannoensis \N \N \N \N \N 69300 \N subspecies Sagittaria montevidensis subsp. montevidensis \N \N \N \N \N 69301 A.verticillatum Anginon Anginon verticillatum \N \N \N \N \N 69302 G.Phuye Goniothalamus Goniothalamus sp. Phuye \N \N \N \N \N 69303 S.ptarmicoides Solidago Solidago ptarmicoides white upland aster \N \N \N \N 69304 G.flanaganii Glumicalyx Glumicalyx flanaganii \N \N \N \N \N 69305 M.cyclolopha Muraltia Muraltia cyclolopha \N \N \N \N \N 69306 C.maritima Coreopsis Coreopsis maritima \N \N \N \N \N 69307 \N varietas Tridens flavus var. flavus \N \N \N \N \N 69308 S.elliptica Siphonandra Siphonandra elliptica \N \N \N \N \N 69309 F.ifflaiana Flindersia Flindersia ifflaiana \N \N \N \N \N 69310 U.tenuicaulis Utricularia Utricularia tenuicaulis \N \N \N \N \N 69311 \N genus Eokochia \N \N \N \N \N 69312 C.deserticola Corymbia Corymbia deserticola \N \N \N \N \N 69313 C.SH-2010 Capsella Capsella sp. SH-2010 \N \N \N \N \N 69314 \N tribe Wrightieae \N \N \N \N \N 69315 R.maius Rhododendron Rhododendron maius \N \N \N \N \N 69316 \N genus Glochidotheca \N \N \N \N \N 69317 \N subspecies Pseudoroegneria tauri subsp. libanotica \N \N \N \N \N 69318 M.subumbellata Meriania Meriania subumbellata \N \N \N \N \N 69319 V.dioica Valeriana Valeriana dioica \N \N \N \N \N 69320 S.neglectum Satyrium Satyrium neglectum \N \N \N \N \N 69321 A.triseminata Arachis Arachis triseminata \N \N \N \N \N 69322 D.saffordii Dalea Dalea saffordii \N \N \N \N \N 69323 A.pinifolium Alyssum Alyssum pinifolium \N \N \N \N \N 69324 P.repens Paepalanthus Paepalanthus repens \N \N \N \N \N 69325 \N genus Tribulopis \N \N \N \N \N 69326 A.3525 Astelia Astelia sp. Grimes 3525 \N \N \N \N \N 69327 B.trigyna Beta Beta trigyna \N \N \N \N \N 69328 B.brevifolia Baeckea Baeckea brevifolia \N \N \N \N \N 69329 C.arborea Carmichaelia Carmichaelia arborea \N \N \N \N \N 69330 D.petiolaris Dodonaea Dodonaea petiolaris \N \N \N \N \N 69331 A.gramineum Androcymbium Androcymbium gramineum \N \N \N \N \N 69332 D.subglandulifera Dodonaea Dodonaea subglandulifera \N \N \N \N \N 69333 P.biflorum Polygonatum Polygonatum biflorum small Solomon's seal \N \N \N \N 69334 N.zhejiangensis Nothodoritis Nothodoritis zhejiangensis \N \N \N \N \N 69335 B.ovata Brunnichia Brunnichia ovata \N \N \N \N \N 69336 \N genus Inversodicraea \N \N \N \N \N 69337 D.lacaitae Draba Draba lacaitae \N \N \N \N \N 69338 L.holosteoides Lepyrodiclis Lepyrodiclis holosteoides \N \N \N \N \N 69339 L.debilis Lasthenia Lasthenia debilis \N \N \N \N \N 69340 D.vaccinioides Dolianthus Dolianthus vaccinioides \N \N \N \N \N 69341 \N genus Kunhardtia \N \N \N \N \N 69342 \N no rank Penaea cneorum subsp. cf. lanceolata Schoenenberger 520 \N \N \N \N \N 69343 \N genus Petromarula \N \N \N \N \N 69344 S.kathalekanensis Semecarpus Semecarpus kathalekanensis \N \N \N \N \N 69345 S.brevipes Sauropus Sauropus brevipes \N \N \N \N \N 69346 B.SH-2010 Bulbophyllum Bulbophyllum sp. SH-2010 \N \N \N \N \N 69347 R.krylovii Ranunculus Ranunculus krylovii \N \N \N \N \N 69348 S.bicallosum Satyrium Satyrium bicallosum \N \N \N \N \N 69349 R.bartlettii Rhipidocladum Rhipidocladum bartlettii \N \N \N \N \N 69350 \N tribe Sclerieae \N \N \N \N \N 69351 \N genus Rhodosciadium \N \N \N \N \N 69352 W.akaroa Wahlenbergia Wahlenbergia akaroa \N \N \N \N \N 69353 \N subspecies Rhipsalis floccosa subsp. tucumanensis \N \N \N \N \N 69354 B.cassidea Bonatea Bonatea cassidea \N \N \N \N \N 69355 O.cressa Ophrys Ophrys cressa \N \N \N \N \N 69356 S.kegelii Spheneria Spheneria kegelii \N \N \N \N \N 69357 \N subspecies Cytisus striatus subsp. striatus \N \N \N \N \N 69358 L.esquirolii Leptopus Leptopus esquirolii \N \N \N \N \N 69359 G.ephemerus Gonocarpus Gonocarpus ephemerus \N \N \N \N \N 69360 P.delopyrum Polygonum Polygonum delopyrum \N \N \N \N \N 69361 \N genus Rhynchopsidium \N \N \N \N \N 69362 \N genus Mairetis \N \N \N \N \N 69363 Q.chilense Quinchamalium Quinchamalium chilense \N \N \N \N \N 69364 I.pardanthopsis Iris Iris pardanthopsis \N \N \N \N \N 69365 B.fimbriata Bipinnula Bipinnula fimbriata \N \N \N \N \N 69366 H.amoenus Hyperacanthus Hyperacanthus amoenus \N \N \N \N \N 69367 G.obtecta Grevillea Grevillea obtecta \N \N \N \N \N 69368 W.melindensis Warneckea Warneckea melindensis \N \N \N \N \N 69369 D.haslamii Dendrochilum Dendrochilum haslamii \N \N \N \N \N 69370 C.villosa Canavalia Canavalia villosa \N \N \N \N \N 69371 S.obtusata Sphenopholis Sphenopholis obtusata \N \N \N \N \N 69372 F.usambarensis Ficus Ficus usambarensis \N \N \N \N \N 69373 C.glabra Cercis Cercis glabra \N \N \N \N \N 69374 P.balonensis Parakeelya Parakeelya balonensis \N \N \N \N \N 69375 A.duthiei Achnatherum Achnatherum duthiei \N \N \N \N \N 69376 \N genus Szovitsia \N \N \N \N \N 69377 C.littoralis Coffea Coffea littoralis \N \N \N \N \N 69378 \N subspecies Grevillea ilicifolia subsp. ilicifolia \N \N \N \N \N 69379 L.cordata Lundia Lundia cordata \N \N \N \N \N 69380 K.hostifolia Kabuyea Kabuyea hostifolia \N \N \N \N \N 69381 O.4502 Octamyrtus Octamyrtus sp. Takeuchi 4502 \N \N \N \N \N 69382 V.acinifolia Veronica Veronica acinifolia \N \N \N \N \N 69383 E.paniculatum Epidendrum Epidendrum paniculatum \N \N \N \N \N 69384 R.inflata Ruellia Ruellia inflata \N \N \N \N \N 69385 P.scorzonerifolia Protea Protea scorzonerifolia \N \N \N \N \N 69386 J.pappigera Junellia Junellia pappigera \N \N \N \N \N 69387 \N genus Berzelia \N \N \N \N \N 69388 \N subspecies Buglossoides arvensis subsp. sibthorpiana \N \N \N \N \N 69389 A.pumila Anagallis Anagallis pumila \N \N \N \N \N 69390 C.polystachios Cenchrus Cenchrus polystachios \N \N \N \N \N 69391 P.geniculata Pseudoroegneria Pseudoroegneria geniculata \N \N \N \N \N 69392 A.nudicaulis Aechmea Aechmea nudicaulis \N \N \N \N \N 69393 N.occidentalis Nitrophila Nitrophila occidentalis \N \N \N \N \N 69394 A.debilis Appunia Appunia debilis \N \N \N \N \N 69395 \N genus Pachycentria \N \N \N \N \N 69396 G.rotundisepalus Goniothalamus Goniothalamus rotundisepalus \N \N \N \N \N 69397 \N genus Lunasia \N \N \N \N \N 69398 M.filipes Meineckia Meineckia filipes \N \N \N \N \N 69399 \N genus Dolichodelphys \N \N \N \N \N 69400 C.oxylepis Carex Carex oxylepis \N \N \N \N \N 69401 E.guineensis Eulophia Eulophia guineensis \N \N \N \N \N 69402 B.pseudoschlichtianus Brownanthus Brownanthus pseudoschlichtianus \N \N \N \N \N 69403 D.cooperi Delosperma Delosperma cooperi \N \N \N \N \N 69404 G.pseudopetiolata Gerritea Gerritea pseudopetiolata \N \N \N \N \N 69405 \N genus Pseudoturritis \N \N \N \N \N 69406 M.cordifolius Merrilliopanax Merrilliopanax cordifolius \N \N \N \N \N 69407 \N genus Coulterella \N \N \N \N \N 69408 C.lithospermifolium Cerastium Cerastium lithospermifolium \N \N \N \N \N 69409 E.formosanum Eupatorium Eupatorium formosanum \N \N \N \N \N 69410 \N varietas Phelipanche purpurea var. purpurea \N \N \N \N \N 69411 M.cyclotega Masdevallia Masdevallia cyclotega \N \N \N \N \N 69412 \N family Acoraceae sweet flag family \N \N \N \N 69413 \N genus Stylomecon \N \N \N \N \N 69414 C.chimonanthum Colchicum Colchicum chimonanthum \N \N \N \N \N 69415 I.guangdongensis Indocalamus Indocalamus guangdongensis \N \N \N \N \N 69416 P.cordatus Paepalanthus Paepalanthus cordatus \N \N \N \N \N 69417 L.ceracifolia Lankesterella Lankesterella ceracifolia \N \N \N \N \N 69418 \N genus Phacelia \N \N \N \N \N 69419 C.cochinchinensis Curcuma Curcuma cochinchinensis \N \N \N \N \N 69420 A.euboeum Alyssum Alyssum euboeum \N \N \N \N \N 69421 \N genus Monodia \N \N \N \N \N 69422 Z.avicennae Zanthoxylum Zanthoxylum avicennae \N \N \N \N \N 69423 \N genus Monimopetalum \N \N \N \N \N 69424 \N genus Disterigma \N \N \N \N \N 69425 P.virginica Plantago Plantago virginica \N \N \N \N \N 69426 P.clemensiae Pseuduvaria Pseuduvaria clemensiae \N \N \N \N \N 69427 \N genus Cremersia \N \N \N \N \N 69428 D.lignosus Dipogon Dipogon lignosus \N \N \N \N \N 69429 S.parviflorum Satyrium Satyrium parviflorum \N \N \N \N \N 69430 C.leporinella Carex Carex leporinella \N \N \N \N \N 69431 P.saxifraga Petrorhagia Petrorhagia saxifraga \N \N \N \N \N 69432 S.muricata Stackhousia Stackhousia muricata \N \N \N \N \N 69433 \N genus Tambourissa \N \N \N \N \N 69434 B.aculeata Brachyscome Brachyscome aculeata \N \N \N \N \N 69435 D.alatipes Dioscorea Dioscorea alatipes \N \N \N \N \N 69436 U.nigropedata Urochloa Urochloa nigropedata \N \N \N \N \N 69437 M.laevigata Matayba Matayba laevigata \N \N \N \N \N 69438 \N genus Chuquiraga \N \N \N \N \N 69439 G.intermedia Gunniopsis Gunniopsis intermedia \N \N \N \N \N 69440 A.gynacanthum Astrocaryum Astrocaryum gynacanthum \N \N \N \N \N 69441 A.scobinifolia Aloe Aloe scobinifolia \N \N \N \N \N 69442 B.bredemeyerana Bomarea Bomarea bredemeyerana \N \N \N \N \N 69443 \N varietas Luzula comosa var. comosa \N \N \N \N \N 69444 S.eichlamii Stenocereus Stenocereus eichlamii \N \N \N \N \N 69445 \N genus Stenostachys \N \N \N \N \N 69446 X.resinosa Xanthorrhoea Xanthorrhoea resinosa \N \N \N \N \N 69447 C.angustifolia Capitanopsis Capitanopsis angustifolia \N \N \N \N \N 69448 C.pomelianus Carduncellus Carduncellus pomelianus \N \N \N \N \N 69449 \N varietas Miscanthus sacchariflorus var. gracilis \N \N \N \N \N 69450 S.calcicola Stylosanthes Stylosanthes calcicola \N \N \N \N \N 69451 G.jefensis Guatteria Guatteria jefensis \N \N \N \N \N 69452 U.leucophlaeum Urophyllum Urophyllum leucophlaeum \N \N \N \N \N 69453 N.lehmannianus Neriacanthus Neriacanthus lehmannianus \N \N \N \N \N 69454 D.microphyllum Desmodium Desmodium microphyllum \N \N \N \N \N 69455 A.globosa Adenia Adenia globosa \N \N \N \N \N 69456 B.petrophila Brachyscome Brachyscome petrophila \N \N \N \N \N 69457 A.acrociliata Austrostipa Austrostipa acrociliata \N \N \N \N \N 69458 B.albiflora Brunia Brunia albiflora \N \N \N \N \N 69459 P.P082 Physalis Physalis sp. P082 \N \N \N \N \N 69460 P.carduncelloides Perezia Perezia carduncelloides \N \N \N \N \N 69461 B.recondita Bognera Bognera recondita \N \N \N \N \N 69462 S.tambolokoko Sideroxylon Sideroxylon tambolokoko \N \N \N \N \N 69463 S.SRR-2011 Sievekingia Sievekingia sp. SRR-2011 \N \N \N \N \N 69464 M.venulosa Micropholis Micropholis venulosa \N \N \N \N \N 69465 H.kilimanjari Helichrysum Helichrysum kilimanjari \N \N \N \N \N 69466 C.lampsanoides Crepis Crepis lampsanoides \N \N \N \N \N 69467 C.reticulatum Calycogonium Calycogonium reticulatum \N \N \N \N \N 69468 T.falcatus Telipogon Telipogon falcatus \N \N \N \N \N 69469 D.carmelitarum Dianthus Dianthus carmelitarum \N \N \N \N \N 69470 P.formosum Platylobium Platylobium formosum \N \N \N \N \N 69471 C.laxum Chlorophytum Chlorophytum laxum \N \N \N \N \N 69472 A.reptans Artemisia Artemisia reptans \N \N \N \N \N 69473 V.cornuta Viola Viola cornuta bedding pansy \N \N \N \N 69474 P.trachycarpa Prosartes Prosartes trachycarpa \N \N \N \N \N 69475 T.testudinum Thalassia Thalassia testudinum \N \N \N \N \N 69476 B.prostratum Blastocaulon Blastocaulon prostratum \N \N \N \N \N 69477 A.pusillus Amorphophallus Amorphophallus pusillus \N \N \N \N \N 69478 \N genus Lasiacis \N \N \N \N \N 69479 H.acuta Hoya Hoya acuta \N \N \N \N \N 69480 C.myriolepis Cousinia Cousinia myriolepis \N \N \N \N \N 69481 P.coalita Prestonia Prestonia coalita \N \N \N \N \N 69482 P.platantha Portlandia Portlandia platantha \N \N \N \N \N 69483 P.fuscus Polyachyrus Polyachyrus fuscus \N \N \N \N \N 69484 C.sinica Caragana Caragana sinica \N \N \N \N \N 69485 S.teres Soroseris Soroseris teres \N \N \N \N \N 69486 P.adductum Paphiopedilum Paphiopedilum adductum \N \N \N \N \N 69487 \N tribe Cardamineae \N \N \N \N \N 69488 \N subspecies Heliosperma veselskyi subsp. widderi \N \N \N \N \N 69489 \N genus Agalinis \N \N \N \N \N 69490 G.luteola Gilmania Gilmania luteola \N \N \N \N \N 69491 I.poilanei Impatiens Impatiens poilanei \N \N \N \N \N 69492 R.pachysanthum Rhododendron Rhododendron pachysanthum \N \N \N \N \N 69493 N.major Nassella Nassella major \N \N \N \N \N 69494 C.corymbosa Calceolaria Calceolaria corymbosa \N \N \N \N \N 69495 L.juncifolia Lachenalia Lachenalia juncifolia \N \N \N \N \N 69496 B.urticifolia Byttneria Byttneria urticifolia \N \N \N \N \N 69497 S.stahelii Sipanea Sipanea stahelii \N \N \N \N \N 69498 C.SH-2010 Chromolaena Chromolaena sp. SH-2010 \N \N \N \N \N 69499 S.pilosum Symphyotrichum Symphyotrichum pilosum Michaelmas daisy,nailrod,steelweed,white oldfield aster \N \N \N \N 69500 L.multicaulis Lagarinthus Lagarinthus multicaulis \N \N \N \N \N 69501 C.IT-2010e Cucumis Cucumis sp. IT-2010e \N \N \N \N \N 69502 C.lassa Crataegus Crataegus lassa \N \N \N \N \N 69503 Z.collina Zieria Zieria collina \N \N \N \N \N 69504 \N genus Spenceria \N \N \N \N \N 69505 P.alvarezianum Protium Protium alvarezianum \N \N \N \N \N 69506 S.platysepala Saxifraga Saxifraga platysepala \N \N \N \N \N 69507 A.'serotina' Amelanchier Amelanchier sp. 'serotina' \N \N \N \N \N 69508 C.JS-2005 Capurodendron Capurodendron sp. JS-2005 \N \N \N \N \N 69509 C.lanigerum Calophyllum Calophyllum lanigerum \N \N \N \N \N 69510 I.langbianensis Impatiens Impatiens langbianensis \N \N \N \N \N 69511 E.rauhianum Eryngium Eryngium rauhianum \N \N \N \N \N 69512 M.hieraciifolia Micranthes Micranthes hieraciifolia \N \N \N \N \N 69513 F.unibracteata Fritillaria Fritillaria unibracteata \N \N \N \N \N 69514 \N genus Schizodium \N \N \N \N \N 69515 S.matthioloides Sterigmostemum Sterigmostemum matthioloides \N \N \N \N \N 69516 A.longifolia Arnica Arnica gracilis x Arnica longifolia \N \N \N \N \N 69517 U.laciniata Utricularia Utricularia laciniata \N \N \N \N \N 69518 M.prostrata Muricaria Muricaria prostrata \N \N \N \N \N 69519 P.grandiflora Psychotria Psychotria grandiflora \N \N \N \N \N 69520 E.senilis Eriosyce Eriosyce senilis \N \N \N \N \N 69521 D.polyneura Dendrotrophe Dendrotrophe polyneura \N \N \N \N \N 69522 N.swainei Nephthytis Nephthytis swainei \N \N \N \N \N 69523 S.crassiuscula Swertia Swertia crassiuscula \N \N \N \N \N 69524 K.cylindrica Korthalsella Korthalsella cylindrica \N \N \N \N \N 69525 \N genus Alamania \N \N \N \N \N 69526 \N genus Limnophila \N \N \N \N \N 69527 L.decumbens Lycium Lycium decumbens \N \N \N \N \N 69528 M.parviflora Morettia Morettia parviflora \N \N \N \N \N 69529 B.hainla Brassaiopsis Brassaiopsis hainla \N \N \N \N \N 69530 F.insularis Flickingeria Flickingeria insularis \N \N \N \N \N 69531 H.culicina Habenaria Habenaria culicina \N \N \N \N \N 69532 G.winitii Globba Globba winitii \N \N \N \N \N 69533 P.wildpretii Pelletiera Pelletiera wildpretii \N \N \N \N \N 69534 E.margalidiana Euphorbia Euphorbia margalidiana \N \N \N \N \N 69535 H.92-3505 Helmholtzia Helmholtzia sp. Kress 92-3505 \N \N \N \N \N 69536 O.inodora Oxera Oxera inodora \N \N \N \N \N 69537 S.croceocarpa Sorbus Sorbus croceocarpa \N \N \N \N \N 69538 M.arborea Malva Malva arborea \N \N \N \N \N 69539 C.globosus Cymopterus Cymopterus globosus \N \N \N \N \N 69540 S.6928/3 Salicornia Salicornia sp. Mucina 6928/3 \N \N \N \N \N 69541 L.donnell-smithii Louteridium Louteridium donnell-smithii \N \N \N \N \N 69542 \N subspecies Leucaena collinsii subsp. collinsii \N \N \N \N \N 69543 C.martinicensis Cordia Cordia martinicensis \N \N \N \N \N 69544 F.dammaropsis Ficus Ficus dammaropsis \N \N \N \N \N 69545 T.tymphaeum Thlaspi Thlaspi tymphaeum \N \N \N \N \N 69546 E.montanum Eryngium Eryngium montanum \N \N \N \N \N 69547 C.japonica Chionographis Chionographis japonica \N \N \N \N \N 69548 E.argophylla Enceliopsis Enceliopsis argophylla \N \N \N \N \N 69549 F.triphylla Fadogia Fadogia triphylla \N \N \N \N \N 69550 P.3009 Pauridiantha Pauridiantha sp. 2 van Valkenburg 3009 \N \N \N \N \N 69551 P.gibbosum Piper Piper gibbosum \N \N \N \N \N 69552 O.diospyrifolia Ocotea Ocotea diospyrifolia \N \N \N \N \N 69553 T.kungmingense Typhonium Typhonium kungmingense \N \N \N \N \N 69554 R.aberdaricus Ranunculus Ranunculus aberdaricus \N \N \N \N \N 69555 C.albicans Carex Carex albicans stellate sedge \N \N \N \N 69556 R.rosifolius Rubus Rubus rosifolius Mauritius raspberry \N \N \N \N 69557 Z.ekmanii Zanthoxylum Zanthoxylum ekmanii \N \N \N \N \N 69558 P.falcata Pityopsis Pityopsis falcata \N \N \N \N \N 69559 A.susiana Anthemis Anthemis susiana \N \N \N \N \N 69560 C.02-338 Costus Costus aff. lucanusianus Specht 02-338 \N \N \N \N \N 69561 \N forma Allium sativum f. pekinense \N \N \N \N \N 69562 T.sonchoides Taraxacum Taraxacum sonchoides \N \N \N \N \N 69563 I.1314 Ixora Ixora sp. Martin 1314 \N \N \N \N \N 69564 \N genus Eremurus \N \N \N \N \N 69565 R.tuberosus Ranunculus Ranunculus tuberosus \N \N \N \N \N 69566 L.aequinoctialis Lemna Lemna aequinoctialis \N \N \N \N \N 69567 F.saligna Faurea Faurea saligna \N \N \N \N \N 69568 \N genus Ovidia \N \N \N \N \N 69569 L.2003 Lactuca Lactuca sp. Mavrodiev s.n. 2003 \N \N \N \N \N 69570 L.linearis Ludwigia Ludwigia linearis \N \N \N \N \N 69571 I.magnifica Inula Inula magnifica \N \N \N \N \N 69572 A.silvatica Anaxagorea Anaxagorea silvatica \N \N \N \N \N 69573 B.asymmetrica Bidens Bidens asymmetrica \N \N \N \N \N 69574 A.haussknechtii Anabasis Anabasis haussknechtii \N \N \N \N \N 69575 A.hookeri Aconitum Aconitum hookeri \N \N \N \N \N 69576 L.chinensis Lipocarpha Lipocarpha chinensis \N \N \N \N \N 69577 C.sempervirens Carex Carex sempervirens \N \N \N \N \N 69578 A.clarkei Aneilema Aneilema clarkei \N \N \N \N \N 69579 T.andersonii Trifolium Trifolium andersonii \N \N \N \N \N 69580 \N genus Doniophyton \N \N \N \N \N 69581 S.macrocarpa Schefflera Schefflera macrocarpa \N \N \N \N \N 69582 H.1004 Hanguana Hanguana sp. Pedersen 1004 \N \N \N \N \N 69583 C.salonitana Centaurea Centaurea salonitana \N \N \N \N \N 69584 C.pendulum Conostephium Conostephium pendulum \N \N \N \N \N 69585 C.cognata Carex Carex cognata \N \N \N \N \N 69586 S.SH-2010 Symplocos Symplocos sp. SH-2010 \N \N \N \N \N 69587 B.carminea Babiana Babiana carminea \N \N \N \N \N 69588 P.taolagnarensis Paederia Paederia taolagnarensis \N \N \N \N \N 69589 L.tubuliflorum Lithospermum Lithospermum tubuliflorum \N \N \N \N \N 69590 R.salicifolia Rhexia Rhexia salicifolia \N \N \N \N \N 69591 D.bella Dracula Dracula bella \N \N \N \N \N 69592 H.repanda Hemigraphis Hemigraphis repanda \N \N \N \N \N 69593 N.lobata Neurolaena Neurolaena lobata \N \N \N \N \N 69594 L.buxifolia Leptodermis Leptodermis buxifolia \N \N \N \N \N 69595 P.microphyllus Phrodus Phrodus microphyllus \N \N \N \N \N 69596 D.clandestinum Dichanthelium Dichanthelium clandestinum deertongue \N \N \N \N 69597 H.pruinosum Helictotrichon Helictotrichon pruinosum \N \N \N \N \N 69598 P.stipulosa Pilea Pilea stipulosa \N \N \N \N \N 69599 B.elderiana Banksia Banksia elderiana \N \N \N \N \N 69600 A.elegans Adenia Adenia elegans \N \N \N \N \N 69601 B.575 Besleria Besleria sp. Amaya & Smith 575 \N \N \N \N \N 69602 C.comorense Cynanchum Cynanchum comorense \N \N \N \N \N 69603 H.leontodontoides Hypochaeris Hypochaeris leontodontoides \N \N \N \N \N 69604 D.luzonica Diplycosia Diplycosia luzonica \N \N \N \N \N 69605 P.perlasense Piper Piper perlasense \N \N \N \N \N 69606 A.lappaceum Amomum Amomum lappaceum \N \N \N \N \N 69607 E.thunbergii Erica Erica thunbergii \N \N \N \N \N 69608 S.discifera Strumaria Strumaria discifera \N \N \N \N \N 69609 B.malayana Brassaiopsis Brassaiopsis malayana \N \N \N \N \N 69610 S.rudepannum Solanum Solanum rudepannum \N \N \N \N \N 69611 C.oligophlebia Camellia Camellia oligophlebia \N \N \N \N \N 69612 G.haynaldii Gentiana Gentiana haynaldii \N \N \N \N \N 69613 \N varietas Toxicoscordion venenosum var. gramineum \N \N \N \N \N 69614 C.orbicularis Carex Carex orbicularis \N \N \N \N \N 69615 \N genus Zilla \N \N \N \N \N 69616 E.punicifolia Eugenia Eugenia punicifolia \N \N \N \N \N 69617 P.nubigena Persea Persea nubigena \N \N \N \N \N 69618 P.schiedeanum Piper Piper schiedeanum \N \N \N \N \N 69619 \N varietas Aristida adscensionis var. interrupta \N \N \N \N \N 69620 C.masonii Croton Croton masonii \N \N \N \N \N 69621 A.kudoi Agrostis Agrostis kudoi \N \N \N \N \N 69622 L.trifurcum Lepidium Lepidium trifurcum \N \N \N \N \N 69623 C.digitata Carex Carex digitata \N \N \N \N \N 69624 A.drummondii Anemone Anemone drummondii \N \N \N \N \N 69625 I.rupicola Ilex Ilex rupicola \N \N \N \N \N 69626 M.tricuspidata Moraea Moraea tricuspidata \N \N \N \N \N 69627 S.scleranthoides Suessenguthiella Suessenguthiella scleranthoides \N \N \N \N \N 69628 D.lenticulatum Dracontomelon Dracontomelon lenticulatum \N \N \N \N \N 69629 \N genus Medusagyne \N \N \N \N \N 69630 C.occultum Chlorophytum Chlorophytum occultum \N \N \N \N \N 69631 P.nana Portea Portea nana \N \N \N \N \N 69632 \N family Talinaceae \N \N \N \N \N 69633 M.balsamina Momordica Momordica balsamina balsam apple \N \N \N \N 69634 \N genus Pediocactus \N \N \N \N \N 69635 \N varietas Rosa roxburghii var. hirtula \N \N \N \N \N 69636 P.pterocladum Piper Piper pterocladum \N \N \N \N \N 69637 A.gusanlung Arcangelisia Arcangelisia gusanlung \N \N \N \N \N 69638 R.gelidus Ranunculus Ranunculus gelidus \N \N \N \N \N 69639 P.ferreyrae Puya Puya ferreyrae \N \N \N \N \N 69640 G.borneensis Gaultheria Gaultheria borneensis \N \N \N \N \N 69641 G.BG-2009b Gundelia Gundelia sp. BG-2009b \N \N \N \N \N 69642 \N family Corynocarpaceae \N \N \N \N \N 69643 M.fremontii Mimulus Mimulus fremontii \N \N \N \N \N 69644 H.syriacum Helianthemum Helianthemum syriacum \N \N \N \N \N 69645 R.pinnatus Ranunculus Ranunculus pinnatus \N \N \N \N \N 69646 A.takaoi Asarum Asarum takaoi \N \N \N \N \N 69647 A.didymocarpus Astragalus Astragalus didymocarpus \N \N \N \N \N 69648 T.trifoliolatum Tetrastigma Tetrastigma trifoliolatum \N \N \N \N \N 69649 A.hamatus Ancistrocladus Ancistrocladus hamatus \N \N \N \N \N 69650 \N subspecies Antirrhinum majus subsp. litigiosum \N \N \N \N \N 69651 C.norvegica Carex Carex norvegica \N \N \N \N \N 69652 \N genus Rhabdothamnus \N \N \N \N \N 69653 H.perennis Hemizonia Hemizonia perennis perennial spikeweed \N \N \N \N 69654 D.spicata Danthonia Danthonia spicata poverty oat grass \N \N \N \N 69655 M.scarlatiflora Malesherbia Malesherbia scarlatiflora \N \N \N \N \N 69656 S.berlandieri Senegalia Senegalia berlandieri \N \N \N \N \N 69657 D.donianum Dasyphyllum Dasyphyllum donianum \N \N \N \N \N 69658 S.maritima Sabal Sabal maritima \N \N \N \N \N 69659 B.reflexa Balanophora Balanophora reflexa \N \N \N \N \N 69660 P.illyricum Pancratium Pancratium illyricum \N \N \N \N \N 69661 P.nubicola Parnassia Parnassia nubicola \N \N \N \N \N 69662 D.aloifolium Dendrobium Dendrobium aloifolium \N \N \N \N \N 69663 \N varietas Erigeron thunbergii var. heterotrichus \N \N \N \N \N 69664 \N genus Thesidium \N \N \N \N \N 69665 M.latibracteata Morinda Morinda latibracteata \N \N \N \N \N 69666 V.moyanoi Valeriana Valeriana moyanoi \N \N \N \N \N 69667 I.fischeri Impatiens Impatiens fischeri \N \N \N \N \N 69668 U.tschimganica Ulugbekia Ulugbekia tschimganica \N \N \N \N \N 69669 P.schweinfurthii Psychotria Psychotria schweinfurthii \N \N \N \N \N 69670 T.nigrisilvae Tristemonanthus Tristemonanthus nigrisilvae \N \N \N \N \N 69671 L.daviesioides Leptosema Leptosema daviesioides \N \N \N \N \N 69672 \N genus Neohouzeaua \N \N \N \N \N 69673 C.incanus Cistus Cistus incanus \N \N \N \N \N 69674 R.paludosus Restio Restio paludosus \N \N \N \N \N 69675 T.ampliplacenta Tacca Tacca ampliplacenta \N \N \N \N \N 69676 C.entrerianus Cyperus Cyperus entrerianus \N \N \N \N \N 69677 A.alpinum Anaphalioides Anaphalioides alpinum \N \N \N \N \N 69678 P.lutescens Pedicularis Pedicularis lutescens \N \N \N \N \N 69679 P.albolineata Phinaea Phinaea albolineata \N \N \N \N \N 69680 \N genus Anamirta \N \N \N \N \N 69681 P.elongata Pectis Pectis elongata \N \N \N \N \N 69682 S.teucriiflora Spartothamnella Spartothamnella teucriiflora \N \N \N \N \N 69683 \N varietas Malaxis monophyllos var. brachypoda \N \N \N \N \N 69684 M.champaca Michelia Michelia alba x Michelia champaca \N \N \N \N \N 69685 A.atraphaxiforme Atraphaxis Atraphaxis atraphaxiforme \N \N \N \N \N 69686 R.madagascariensis Rulingia Rulingia madagascariensis \N \N \N \N \N 69687 R.histrionica Renantherella Renantherella histrionica \N \N \N \N \N 69688 E.serrata Erica Erica serrata \N \N \N \N \N 69689 M.huegelii Muhlenbergia Muhlenbergia huegelii \N \N \N \N \N 69690 K.oligocephala Klasea Klasea oligocephala \N \N \N \N \N 69691 C.procera Cyrtandra Cyrtandra procera \N \N \N \N \N 69692 \N genus Kania \N \N \N \N \N 69693 C.8134 Comparettia Comparettia sp. Hirtz 8134 \N \N \N \N \N 69694 S.patula Syringa Syringa patula \N \N \N \N \N 69695 B.conchifolia Begonia Begonia conchifolia \N \N \N \N \N 69696 C.moluccana Cardiopteris Cardiopteris moluccana \N \N \N \N \N 69697 M.viminalis Mirbelia Mirbelia viminalis \N \N \N \N \N 69698 \N genus Lymania \N \N \N \N \N 69699 N.ulvacea Nuphar Nuphar ulvacea \N \N \N \N \N 69700 S.boeckmannii Selenicereus Selenicereus boeckmannii \N \N \N \N \N 69701 \N genus Hainardia \N \N \N \N \N 69702 S.langsdorfii Seguieria Seguieria langsdorfii \N \N \N \N \N 69703 M.theresae Mammillaria Mammillaria theresae \N \N \N \N \N 69704 P.densiflora Persicaria Persicaria densiflora \N \N \N \N \N 69705 T.uncatum Thalictrum Thalictrum uncatum \N \N \N \N \N 69706 P.jepsonii Potentilla Potentilla jepsonii \N \N \N \N \N 69707 \N genus Neoscortechinia \N \N \N \N \N 69708 E.vigursii Euphrasia Euphrasia vigursii \N \N \N \N \N 69709 \N genus Usteria \N \N \N \N \N 69710 \N subspecies Polylepis besseri subsp. besseri \N \N \N \N \N 69711 \N forma Gymnocalycium kieslingii f. kieslingii \N \N \N \N \N 69712 P.regius Plagianthus Plagianthus regius \N \N \N \N \N 69713 S.dregeana Staavia Staavia dregeana \N \N \N \N \N 69714 I.casei Ixora Ixora casei \N \N \N \N \N 69715 E.nutans Enceliopsis Enceliopsis nutans \N \N \N \N \N 69716 P.albertii Palisota Palisota albertii \N \N \N \N \N 69717 \N subtribe Airinae \N \N \N \N \N 69718 G.verticillata Gethyllis Gethyllis verticillata \N \N \N \N \N 69719 S.sodiroana Streptochaeta Streptochaeta sodiroana \N \N \N \N \N 69720 M.chapelieri Mauloutchia Mauloutchia chapelieri \N \N \N \N \N 69721 L.yungensis Lemna Lemna yungensis \N \N \N \N \N 69722 A.nycteris Alocasia Alocasia nycteris \N \N \N \N \N 69723 \N genus Cephalorrhynchus \N \N \N \N \N 69724 L.torreyi Lycium Lycium torreyi Torrey wolfberry \N \N \N \N 69725 E.aguilellae Erodium Erodium aguilellae \N \N \N \N \N 69726 P.andicola Potentilla Potentilla andicola \N \N \N \N \N 69727 O.paniculata Ostodes Ostodes paniculata \N \N \N \N \N 69728 \N varietas Symplocos cochinchinensis var. glaberrima \N \N \N \N \N 69729 O.schwerinae Osteomeles Osteomeles schwerinae \N \N \N \N \N 69730 V.flaccidissima Valeriana Valeriana flaccidissima \N \N \N \N \N 69731 T.249 Telipogon Telipogon sp. Maduro 249 \N \N \N \N \N 69732 T.mesopotamica Thymelaea Thymelaea mesopotamica \N \N \N \N \N 69733 T.pingpienensis Tutcheria Tutcheria pingpienensis \N \N \N \N \N 69734 P.brasiliensis Philyra Philyra brasiliensis \N \N \N \N \N 69735 M.cupulatum Melampodium Melampodium cupulatum \N \N \N \N \N 69736 U.crassifolia Ulmus Ulmus crassifolia cedar elm \N \N \N \N 69737 C.trichocarpa Caesalpinia Caesalpinia trichocarpa \N \N \N \N \N 69738 S.fallax Sparganium Sparganium fallax \N \N \N \N \N 69739 \N genus Loeseliastrum \N \N \N \N \N 69740 \N varietas Vigna oblongifolia var. parviflora \N \N \N \N \N 69741 L.mauritiana Lilaeopsis Lilaeopsis mauritiana \N \N \N \N \N 69742 \N subspecies Pentameris pallida form C \N \N \N \N \N 69743 \N genus Pseuduvaria \N \N \N \N \N 69744 B.araucana Buddleja Buddleja araucana \N \N \N \N \N 69745 \N no rank Saccharum hybrid cultivar ROC16 \N \N \N \N \N 69746 Z.benthamiana Zaluzianskya Zaluzianskya benthamiana \N \N \N \N \N 69747 A.maowenense Allium Allium maowenense \N \N \N \N \N 69748 B.5 Bauhinia Bauhinia aff. didyma Wang 5 \N \N \N \N \N 69749 \N varietas Jasione montana var. latifolia \N \N \N \N \N 69750 O.arachnitiformis Ophrys Ophrys x arachnitiformis \N \N \N \N \N 69751 H.K19 Helleborus Helleborus sp. McLewin K19 \N \N \N \N \N 69752 \N subspecies Armeria filicaulis subsp. nevadensis \N \N \N \N \N 69753 A.sesquiflorus Astragalus Astragalus sesquiflorus \N \N \N \N \N 69754 L.cabalionii Licuala Licuala cabalionii \N \N \N \N \N 69755 \N subspecies Acer saccharum subsp. nigrum black maple \N \N \N \N 69756 C.scandens Chaetocalyx Chaetocalyx scandens \N \N \N \N \N 69757 T.heterophylla Tabernaemontana Tabernaemontana heterophylla \N \N \N \N \N 69758 C.atropurpureus Cotoneaster Cotoneaster atropurpureus \N \N \N \N \N 69759 \N forma Rosa xanthina f. normalis \N \N \N \N \N 69760 T.succulenta Tolpis Tolpis succulenta \N \N \N \N \N 69761 S.acuta Shorea Shorea acuta \N \N \N \N \N 69762 C.repens Curio Curio repens \N \N \N \N \N 69763 F.mellea Fritillaria Fritillaria mellea \N \N \N \N \N 69764 \N genus Melanosciadium \N \N \N \N \N 69765 H.diversifolia Hoya Hoya diversifolia \N \N \N \N \N 69766 M.linearifolia Maxillaria Maxillaria linearifolia \N \N \N \N \N 69767 A.microcarpum Arceuthobium Arceuthobium microcarpum \N \N \N \N \N 69768 C.nutans Calorezia Calorezia nutans \N \N \N \N \N 69769 C.1867 Conostegia Conostegia cf. centronioides Penneys 1867 \N \N \N \N \N 69770 \N varietas Zanthoxylum austrosinense var. stenophyllum \N \N \N \N \N 69771 A.nevadense Achnatherum Achnatherum nevadense \N \N \N \N \N 69772 P.soongii Primula Primula soongii \N \N \N \N \N 69773 \N tribe Areceae \N \N \N \N \N 69774 T.spathacea Tradescantia Tradescantia spathacea \N \N \N \N \N 69775 O.crassipes Oxalis Oxalis crassipes \N \N \N \N \N 69776 O.viciifolia Onobrychis Onobrychis viciifolia common sainfoin \N \N \N \N 69777 S.ngouniensis Strychnos Strychnos ngouniensis \N \N \N \N \N 69778 P.hangianum Paphiopedilum Paphiopedilum hangianum \N \N \N \N \N 69779 P.pringlei Perideridia Perideridia pringlei adobe yampah \N \N \N \N 69780 V.unguiculata Vigna Vigna unguiculata cowpea \N \N \N \N 69781 N.lotus Nymphaea Nymphaea lotus \N \N \N \N \N 69782 S.tarnii Solanum Solanum tarnii \N \N \N \N \N 69784 \N varietas Silene nutans var. brachypoda \N \N \N \N \N 69785 O.mariannensis Ochrosia Ochrosia mariannensis \N \N \N \N \N 69786 C.68 Coffea Coffea sp. IRD-Montpelier OI 68 \N \N \N \N \N 69787 A.pectinata Astrebla Astrebla pectinata \N \N \N \N \N 69788 S.septulatum Sisymbrium Sisymbrium septulatum \N \N \N \N \N 69789 A.panjutinii Aconogonon Aconogonon panjutinii \N \N \N \N \N 69790 S.palitans Solanum Solanum palitans \N \N \N \N \N 69791 \N genus Brackenridgea \N \N \N \N \N 69792 R.pauciflorum Rytidosperma Rytidosperma pauciflorum \N \N \N \N \N 69793 \N genus Chaetymenia \N \N \N \N \N 69794 H.wenchuanense Heracleum Heracleum wenchuanense \N \N \N \N \N 69795 A.costaricensis Acostaea Acostaea costaricensis \N \N \N \N \N 69796 N.CAMPO Nothoscordum Nothoscordum sp. CAMPO \N \N \N \N \N 69797 C.tomentosum Clinopodium Clinopodium tomentosum \N \N \N \N \N 69798 S.heterophylla Scolopia Scolopia heterophylla \N \N \N \N \N 69799 C.decorticans Caragana Caragana decorticans \N \N \N \N \N 69800 A.intermedium Anginon Anginon intermedium \N \N \N \N \N 69801 L.oblongifolia Lonicera Lonicera oblongifolia \N \N \N \N \N 69802 P.azureus Penstemon Penstemon azureus \N \N \N \N \N 69803 P.labukensis Paraphalaenopsis Paraphalaenopsis labukensis \N \N \N \N \N 69804 T.cacticola Tillandsia Tillandsia cacticola \N \N \N \N \N 69805 S.7198 Solanum Solanum sp. Agra 7198 \N \N \N \N \N 69806 P.subincisa Polyscias Polyscias subincisa \N \N \N \N \N 69807 V.scrupea Hebe Veronica scrupea \N \N \N \N \N 69808 G.praetexta Gomesa Gomesa praetexta \N \N \N \N \N 69809 L.berthelotii Lotus Lotus berthelotii coral gem,parrot-beak \N \N \N \N 69810 C.atrofusca Carex Carex atrofusca \N \N \N \N \N 69811 \N genus Lycaste \N \N \N \N \N 69812 \N genus Domingoa \N \N \N \N \N 69813 S.lanata Sopubia Sopubia lanata \N \N \N \N \N 69814 \N varietas Ranunculus nipponicus var. nipponicus \N \N \N \N \N 69815 C.evansii Ceropegia Ceropegia evansii \N \N \N \N \N 69816 \N tribe Acharieae \N \N \N \N \N 69817 G.canadensis Glandularia Glandularia canadensis \N \N \N \N \N 69818 R.senaria Ruschia Ruschia senaria \N \N \N \N \N 69819 G.macdonaldii Glomera Glomera macdonaldii \N \N \N \N \N 69820 T.russell-smithii Typhonium Typhonium russell-smithii \N \N \N \N \N 69821 H.J.R.B.Tosh-2008 Hyperacanthus Hyperacanthus sp. J.R.B.Tosh-2008 \N \N \N \N \N 69822 E.secundum Epidendrum Epidendrum secundum \N \N \N \N \N 69823 E.spicatum Epidendrum Epidendrum spicatum \N \N \N \N \N 69824 C.albus Chelonanthus Chelonanthus albus \N \N \N \N \N 69825 P.rupicola Pedicularis Pedicularis rupicola \N \N \N \N \N 69826 F.105 Fargesia Fargesia sp. Asmussen 105 \N \N \N \N \N 69827 D.200110120 Dioscorea Dioscorea sp. Newman 200110120 \N \N \N \N \N 69828 \N subspecies Poa acicularifolia subsp. acicularifolia \N \N \N \N \N 69829 T.jasminoides Trachelospermum Trachelospermum jasminoides \N \N \N \N \N 69830 A.subsimplex Agave Agave subsimplex \N \N \N \N \N 69831 S.WP2C0350 unclassified Sapindaceae Sapindaceae sp. WP2C0350 \N \N \N \N \N 69832 C.panchganiensis Ceropegia Ceropegia panchganiensis \N \N \N \N \N 69833 S.orinocensis Schiekia Schiekia orinocensis \N \N \N \N \N 69834 S.rubicunda Strobilanthes Strobilanthes rubicunda \N \N \N \N \N 69835 V.caudatum Viburnum Viburnum caudatum \N \N \N \N \N 69836 M.spinulosa Miconia Miconia spinulosa \N \N \N \N \N 69837 A.integra Anisothrix Anisothrix integra \N \N \N \N \N 69838 C.kusaimontana Cyrtandra Cyrtandra kusaimontana \N \N \N \N \N 69839 H.didymantha Hernandia Hernandia didymantha \N \N \N \N \N 69840 \N genus Genoplesium \N \N \N \N \N 69841 M.loganiacea Microcorys Microcorys loganiacea \N \N \N \N \N 69842 P.clausula Paphinia Paphinia clausula \N \N \N \N \N 69843 M.sellowiana Mayaca Mayaca sellowiana \N \N \N \N \N 69844 E.pinifolia Ericameria Ericameria pinifolia pinebush \N \N \N \N 69845 T.pumilea Turnera Turnera pumilea \N \N \N \N \N 69846 L.lucidum Lomatium Lomatium lucidum shiny biscuitroot \N \N \N \N 69847 H.omeiensis Hemsleya Hemsleya omeiensis \N \N \N \N \N 69848 L.melissifolia Lindera Lindera melissifolia \N \N \N \N \N 69849 A.viscosus Adenocarpus Adenocarpus viscosus \N \N \N \N \N 69850 C.schippii Chamaedorea Chamaedorea schippii \N \N \N \N \N 69851 M.spinosa Moricandia Moricandia spinosa \N \N \N \N \N 69852 H.spruceana Henriettea Henriettea spruceana \N \N \N \N \N 69853 C.aculeolata Crambe Crambe aculeolata \N \N \N \N \N 69854 O.catharinensis Ocotea Ocotea catharinensis \N \N \N \N \N 69855 B.hamelinii Bulbophyllum Bulbophyllum hamelinii \N \N \N \N \N 69856 \N varietas Panicum hirticaule var. hirticaule \N \N \N \N \N 69857 R.arboreum Rhododendron Rhododendron arboreum \N \N \N \N \N 69858 C.laeve Cynanchum Cynanchum laeve blue vine,climbing-milkweed,honeyvine,honeyvine milkweed,smooth swallow-wort \N \N \N \N 69859 T.mysorensis Thunbergia Thunbergia mysorensis \N \N \N \N \N 69860 T.segetum Tragopogon Tragopogon segetum \N \N \N \N \N 69861 M.benguetensis Mussaenda Mussaenda benguetensis \N \N \N \N \N 69862 \N genus Guatteriopsis \N \N \N \N \N 69863 P.refractus Pleuropogon Pleuropogon refractus \N \N \N \N \N 69864 P.sabulosa Proboscidea Proboscidea sabulosa \N \N \N \N \N 69865 A.chaborasicus Astragalus Astragalus chaborasicus \N \N \N \N \N 69866 A.hymenelytra Atriplex Atriplex hymenelytra \N \N \N \N \N 69867 \N no rank Rosodae \N \N \N \N \N 69868 M.gracilis Mycetia Mycetia gracilis \N \N \N \N \N 69869 M.dicerastes Mimosa Mimosa dicerastes \N \N \N \N \N 69870 J.keyensis Jacquinia Jacquinia keyensis joewood \N \N \N \N 69871 A.antillarum Agave Agave antillarum \N \N \N \N \N 69872 S.warszewiczii Satyria Satyria warszewiczii colmillo \N \N \N \N 69873 I.leuconeura Isatis Isatis leuconeura \N \N \N \N \N 69874 \N varietas Panicum amarum var. amarulum coastal panic grass \N \N \N \N 69875 S.decumbens Spiraea Spiraea decumbens \N \N \N \N \N 69876 M.cryptanthum Mesembryanthemum Mesembryanthemum cryptanthum \N \N \N \N \N 69877 P.brachyanthoides Psychotria Psychotria brachyanthoides \N \N \N \N \N 69878 M.chorassanica Matthiola Matthiola chorassanica \N \N \N \N \N 69879 \N genus Lachnanthes \N \N \N \N \N 69880 A.anomala Angelica Angelica anomala \N \N \N \N \N 69881 G.s.n. Gerbera Gerbera sp. Funk s.n. \N \N \N \N \N 69882 \N genus Melothrianthus \N \N \N \N \N 69883 P.longestylosum Piper Piper longestylosum \N \N \N \N \N 69884 P.casticum Phyllanthus Phyllanthus casticum \N \N \N \N \N 69885 \N genus Bognera \N \N \N \N \N 69886 \N subspecies Arctostaphylos stanfordiana subsp. decumbens \N \N \N \N \N 69887 \N subspecies Pausinystalia lane-poolei subsp. ituriense \N \N \N \N \N 69888 P.fuquaiana Paradrymonia Paradrymonia fuquaiana \N \N \N \N \N 69889 \N genus Oberonia \N \N \N \N \N 69890 S.espinosae Senecio Senecio espinosae \N \N \N \N \N 69891 V.stenophylla Valeriana Valeriana stenophylla \N \N \N \N \N 69892 I.speculatrix Iris Iris speculatrix \N \N \N \N \N 69893 P.oleifolia Phylica Phylica oleifolia \N \N \N \N \N 69894 T.yunnanense Tetrastigma Tetrastigma yunnanense \N \N \N \N \N 69895 R.variabilis Ranunculus Ranunculus variabilis \N \N \N \N \N 69896 P.haenkeana Persea Persea haenkeana \N \N \N \N \N 69897 S.myrtillus Smilax Smilax myrtillus \N \N \N \N \N 69898 R.xanthophthalma Restrepia Restrepia xanthophthalma \N \N \N \N \N 69899 E.pusillum Eriogonum Eriogonum pusillum \N \N \N \N \N 69900 F.microcarya Fimbristylis Fimbristylis microcarya \N \N \N \N \N 69901 H.L141-12 Heterotheca Heterotheca cf. subaxillaris L141-12 \N \N \N \N \N 69902 S.11-13-97' Sarcolaena Sarcolaena sp. 'M.F.F. 11-13-97' \N \N \N \N \N 69903 J.australis Juania Juania australis \N \N \N \N \N 69904 E.zoutpansbergensis Euphorbia Euphorbia zoutpansbergensis \N \N \N \N \N 69905 \N genus Leptoboea \N \N \N \N \N 69906 \N subspecies Carlina frigida subsp. frigida \N \N \N \N \N 69907 S.brevifolium Schizachyrium Schizachyrium brevifolium \N \N \N \N \N 69908 C.laxa Camelina Camelina laxa \N \N \N \N \N 69909 U.ectomycorrhiza environmental samples Taxonomy:198032 uncultured Tilia from ectomycorrhiza \N \N \N \N \N 69910 H.noeanum Helichrysum Helichrysum noeanum \N \N \N \N \N 69911 A.microglossus Amellus Amellus microglossus \N \N \N \N \N 69912 P.eatonii Penstemon Penstemon eatonii \N \N \N \N \N 69913 \N genus Ptyssiglottis \N \N \N \N \N 69914 T.petrosa Thrasya Thrasya petrosa \N \N \N \N \N 69915 H.terminalis Hedyotis Hedyotis terminalis \N \N \N \N \N 69916 T.lanatum Trichostema Trichostema lanatum wooly bluecurls \N \N \N \N 69917 A.594809 Apodasmia Apodasmia aff. similis CHR 594809 \N \N \N \N \N 69918 P.ctenoglossum Pelatantheria Pelatantheria ctenoglossum \N \N \N \N \N 69919 P.pachyphylla Plantago Plantago pachyphylla Maui plantain \N \N \N \N 69920 I.annithomae Inversodicraea Inversodicraea annithomae \N \N \N \N \N 69921 T.flavum Thalictrum Thalictrum flavum yellow meadow-rue \N \N \N \N 69922 C.lorentzii Cnicothamnus Cnicothamnus lorentzii \N \N \N \N \N 69923 P.spurius Pachycarpus Pachycarpus spurius \N \N \N \N \N 69924 R.scapigerus Ranunculus Ranunculus scapigerus \N \N \N \N \N 69925 \N genus Gunnessia \N \N \N \N \N 69926 G.4904 Guettarda Guettarda sp. Pirani & Bremer 4904 \N \N \N \N \N 69927 M.aphylla Maireana Maireana aphylla \N \N \N \N \N 69928 I.gatesii Iris Iris gatesii \N \N \N \N \N 69929 A.kulat Alocasia Alocasia sp. kulat \N \N \N \N \N 69930 T.gracile Trillium Trillium gracile \N \N \N \N \N 69931 B.scapigera Begonia Begonia scapigera \N \N \N \N \N 69932 R.conglomeratus Rumex Rumex conglomeratus green dock,sharp dock \N \N \N \N 69933 J.repens Jovellana Jovellana repens \N \N \N \N \N 69934 M.nemorosa Macrolenes Macrolenes nemorosa \N \N \N \N \N 69935 I.rotundifolius Ischnosiphon Ischnosiphon rotundifolius \N \N \N \N \N 69936 M.trifolia Momordica Momordica trifolia \N \N \N \N \N 69937 P.lanuginosum Philydrum Philydrum lanuginosum \N \N \N \N \N 69938 A.muelleriana Agrostis Agrostis muelleriana \N \N \N \N \N 69939 \N genus Aspalathus \N \N \N \N \N 69940 K.pygmaea Kobresia Kobresia pygmaea \N \N \N \N \N 69941 \N genus Dysopsis \N \N \N \N \N 69942 E.brandegeei Echinocereus Echinocereus brandegeei \N \N \N \N \N 69943 V.laurentii Vigna Vigna laurentii \N \N \N \N \N 69944 E.scaber Eccremocarpus Eccremocarpus scaber \N \N \N \N \N 69945 I.DN89 Ixora Ixora sp. Nissen 89BIO01344 DN89 \N \N \N \N \N 69946 \N genus Aframomum \N \N \N \N \N 69947 M.sclerocarpa Multidentia Multidentia sclerocarpa \N \N \N \N \N 69948 A.confertiflora Arctostaphylos Arctostaphylos confertiflora \N \N \N \N \N 69949 A.finlaysoniana Aralia Aralia finlaysoniana \N \N \N \N \N 69950 A.propinquum Anthurium Anthurium propinquum \N \N \N \N \N 69951 \N genus Pineda \N \N \N \N \N 69952 P.eriopoda Pterisanthes Pterisanthes eriopoda \N \N \N \N \N 69953 \N genus Apatzingania \N \N \N \N \N 69954 B.leandriana Blotia Blotia leandriana \N \N \N \N \N 69955 L.coronopifolium Lepidium Lepidium coronopifolium \N \N \N \N \N 69956 S.PF-2010 Schefflera Schefflera sp. D PF-2010 \N \N \N \N \N 69957 \N genus Hybosema \N \N \N \N \N 69958 M.dumulosa Matthiola Matthiola dumulosa \N \N \N \N \N 69959 R.insignis Ruellia Ruellia insignis \N \N \N \N \N 69960 D.juncea Donnellsmithia Donnellsmithia juncea \N \N \N \N \N 69961 M.calycinum Melolobium Melolobium calycinum \N \N \N \N \N 69962 \N genus Diploknema \N \N \N \N \N 69963 F.crassinervia Ficus Ficus crassinervia \N \N \N \N \N 69964 O.mertensiana Oxytropis Oxytropis mertensiana \N \N \N \N \N 69965 E.TH43 Euphorbia Euphorbia aff. tetraptera TH43 \N \N \N \N \N 69966 E.aristata Erica Erica aristata \N \N \N \N \N 69967 B.lamarckiana Briza Briza lamarckiana \N \N \N \N \N 69968 G.aculeata Guadua Guadua aculeata \N \N \N \N \N 69969 C.matthewsii Cyathostegia Cyathostegia matthewsii \N \N \N \N \N 69970 \N subspecies Acacia mellifera subsp. detinens \N \N \N \N \N 69971 \N genus Aremonia \N \N \N \N \N 69972 \N genus Edgaria \N \N \N \N \N 69973 \N genus Helminthotheca \N \N \N \N \N 69974 P.jeholensis Phlomis Phlomis jeholensis \N \N \N \N \N 69975 \N no rank environmental samples Taxonomy:404787 \N \N \N \N \N 69976 S.recurva Stamnorchis Stamnorchis recurva \N \N \N \N \N 69977 D.podocarpum Desmodium Desmodium podocarpum \N \N \N \N \N 69978 \N varietas Lonicera tatarica var. micrantha \N \N \N \N \N 69979 O.leleui Oncidium Oncidium leleui \N \N \N \N \N 69980 S.unifolia Syringodea Syringodea unifolia \N \N \N \N \N 69981 C.cristata Crantzia Crantzia cristata \N \N \N \N \N 69982 S.rupicola Sorbus Sorbus rupicola \N \N \N \N \N 69983 V.carlesii Viburnum Viburnum carlesii \N \N \N \N \N 69984 P.parvula Ponthieva Ponthieva parvula \N \N \N \N \N 69985 \N genus Dictyosperma \N \N \N \N \N 69986 \N tribe Spathicarpeae \N \N \N \N \N 69987 B.cucullata Begonia Begonia cucullata \N \N \N \N \N 69988 P.virginea Polystachya Polystachya virginea \N \N \N \N \N 69989 H.serpyllifolia Houstonia Houstonia serpyllifolia thymeleaf bluet \N \N \N \N 69990 P.monocephalus Pachyanthus Pachyanthus monocephalus \N \N \N \N \N 69991 L.canadensis Lonicera Lonicera canadensis American fly-honeysuckle \N \N \N \N 69992 M.verticillata Malva Malva verticillata \N \N \N \N \N 69993 E.tripsacoides Elionurus Elionurus tripsacoides \N \N \N \N \N 69994 S.pumilum Satyrium Satyrium pumilum \N \N \N \N \N 69995 K.fallax Kaempferia Kaempferia fallax \N \N \N \N \N 69996 \N varietas Musa beccarii var. hottana \N \N \N \N \N 69997 L.javanica Leea Leea javanica \N \N \N \N \N 69998 \N genus Collomia mountaintrumpets \N \N \N \N 69999 D.beveridgei Dicrastylis Dicrastylis beveridgei \N \N \N \N \N 70000 L.2111 Lycianthes Lycianthes sp. Wen et al. 2111 \N \N \N \N \N 70001 \N varietas Aconitum episcopale var. villosulipes \N \N \N \N \N 70002 C.tuguriorum Calystegia Calystegia tuguriorum \N \N \N \N \N 70003 O.chankaensis Oxytropis Oxytropis chankaensis \N \N \N \N \N 70004 H.acuminata Heliophila Heliophila acuminata \N \N \N \N \N 70005 E.anagallidifolium Epilobium Epilobium anagallidifolium \N \N \N \N \N 70006 D.hexandrum Discoclaoxylon Discoclaoxylon hexandrum \N \N \N \N \N 70007 B.mexicana Beilschmiedia Beilschmiedia mexicana \N \N \N \N \N 70008 P.wettsteinii Paspalum Paspalum wettsteinii \N \N \N \N \N 70009 C.ovatum Chorisepalum Chorisepalum ovatum \N \N \N \N \N 70010 E.guatemalensis Euphorbia Euphorbia guatemalensis \N \N \N \N \N 70011 C.maiz-tablasensis Coryphantha Coryphantha maiz-tablasensis \N \N \N \N \N 70012 \N genus Bolandia \N \N \N \N \N 70013 J.olanchana Juglans Juglans olanchana \N \N \N \N \N 70014 H.oblongifolia Hymenaea Hymenaea oblongifolia \N \N \N \N \N 70015 H.pubidactyla Habenaria Habenaria pubidactyla \N \N \N \N \N 70016 P.thiensis Planchonella Planchonella thiensis \N \N \N \N \N 70017 P.1992 Pileostegia Pileostegia sp. Qiu 1992 \N \N \N \N \N 70018 \N genus Hibanobambusa \N \N \N \N \N 70019 N.barbata Nemesia Nemesia barbata \N \N \N \N \N 70020 \N genus Hyaenanche \N \N \N \N \N 70021 H.bifidum Hieracium Hieracium bifidum \N \N \N \N \N 70022 E.eatonii Erigeron Erigeron eatonii \N \N \N \N \N 70023 H.hirta Hyparrhenia Hyparrhenia hirta \N \N \N \N \N 70024 T.PI220590 Taeniatherum Taeniatherum sp. PI220590 \N \N \N \N \N 70025 L.echinata Leandra Leandra echinata \N \N \N \N \N 70026 C.expansum Catasetum Catasetum expansum \N \N \N \N \N 70027 A.latifolia Actephila Actephila latifolia \N \N \N \N \N 70028 H.humile Hedysarum Hedysarum humile \N \N \N \N \N 70029 C.humbertii Clerodendrum Clerodendrum aff. humbertii \N \N \N \N \N 70030 P.schinzii Panicum Panicum schinzii \N \N \N \N \N 70031 E.bellidiastroides Erigeron Erigeron bellidiastroides \N \N \N \N \N 70032 B.marcowiczii Briza Briza marcowiczii \N \N \N \N \N 70033 \N genus Penaea \N \N \N \N \N 70034 D.ochrostachya Disa Disa ochrostachya \N \N \N \N \N 70035 C.chinense Cladium Cladium chinense \N \N \N \N \N 70036 N.hsiangkweiensis Neolitsea Neolitsea hsiangkweiensis \N \N \N \N \N 70037 P.schoseri Paphiopedilum Paphiopedilum schoseri \N \N \N \N \N 70038 S.tetraptera Swertia Swertia tetraptera \N \N \N \N \N 70039 C.9148 Cremastosperma Cremastosperma sp. Maas 9148 \N \N \N \N \N 70040 M.spigeliiflora Mandevilla Mandevilla spigeliiflora \N \N \N \N \N 70041 P.diffusa Peripleura Peripleura diffusa \N \N \N \N \N 70042 D.speciosum Dendrobium Dendrobium speciosum \N \N \N \N \N 70043 S.okadae Solanum Solanum okadae \N \N \N \N \N 70044 D.binectariferum Dysoxylum Dysoxylum binectariferum \N \N \N \N \N 70045 T.CH_E28Amono Triticum Triticum sp. CH_E28Amono \N \N \N \N \N 70046 P.regalis Polyscias Polyscias regalis \N \N \N \N \N 70047 N.poissoniana Nasa Nasa poissoniana \N \N \N \N \N 70048 E.potentilloides Euphorbia Euphorbia potentilloides \N \N \N \N \N 70049 O.pycnophylla Oxalis Oxalis pycnophylla \N \N \N \N \N 70050 R.diffusa Reseda Reseda diffusa \N \N \N \N \N 70051 \N genus Echinops \N \N \N \N \N 70052 P.orbiculatum Paspalum Paspalum orbiculatum \N \N \N \N \N 70053 D.trilocularis Doricera Doricera trilocularis \N \N \N \N \N 70054 P.parvifolia Pinguicula Pinguicula parvifolia \N \N \N \N \N 70055 C.boldinghii Cuscuta Cuscuta boldinghii \N \N \N \N \N 70056 M.caricifragrans Magnolia Magnolia caricifragrans \N \N \N \N \N 70057 \N genus Zhukowskia \N \N \N \N \N 70058 P.balbisii Primula Primula balbisii \N \N \N \N \N 70059 A.wallichii Aganosma Aganosma wallichii \N \N \N \N \N 70060 \N genus Semialarium \N \N \N \N \N 70061 M.ericoides Muraltia Muraltia ericoides \N \N \N \N \N 70062 I.orientalis Iris Iris orientalis \N \N \N \N \N 70063 \N subspecies Genista mugronensis subsp. rigidissima \N \N \N \N \N 70064 F.urophyllum Fagopyrum Fagopyrum urophyllum \N \N \N \N \N 70065 D.diaphana Deiregyne Deiregyne diaphana \N \N \N \N \N 70066 B.retusa Bridelia Bridelia retusa \N \N \N \N \N 70067 C.exilifolia Cliffortia Cliffortia exilifolia \N \N \N \N \N 70068 M.crystallinum Mesembryanthemum Mesembryanthemum crystallinum common iceplant \N \N \N \N 70069 V.nuttallii Viola Viola nuttallii \N \N \N \N \N 70070 \N varietas Miscanthus sinensis var. keumunensis \N \N \N \N \N 70071 C.orientalis Clematis Clematis orientalis Chinese clematis \N \N \N \N 70072 E.ophitidis Ericameria Ericameria ophitidis serpentine goldenbush \N \N \N \N 70073 C.pubescens Chiococca Chiococca pubescens \N \N \N \N \N 70074 \N no rank unclassified Zygopetalinae \N \N \N \N \N 70075 D.bojerii Dionycha Dionycha bojerii \N \N \N \N \N 70076 C.textilis Cyperus Cyperus textilis \N \N \N \N \N 70077 P.134 Parinari Parinari sp. Morton 134 \N \N \N \N \N 70078 A.vetteri Alchemilla Alchemilla vetteri \N \N \N \N \N 70079 P.fusiformis Polystachya Polystachya fusiformis \N \N \N \N \N 70080 R.carringtoniae Rhododendron Rhododendron carringtoniae \N \N \N \N \N 70081 P.americana Pyrola Pyrola americana \N \N \N \N \N 70082 \N subtribe Elaeidinae \N \N \N \N \N 70083 \N genus Grias \N \N \N \N \N 70084 C.nankingense Chrysanthemum Chrysanthemum nankingense \N \N \N \N \N 70085 G.JFS-2004 Gesneria Gesneria sp. JFS-2004 \N \N \N \N \N 70086 H.crithmifolia Heliophila Heliophila crithmifolia \N \N \N \N \N 70087 F.C97107 Fagopyrum Fagopyrum sp. C97107 \N \N \N \N \N 70088 \N genus Elaeocarpus \N \N \N \N \N 70089 T.swobodae Turbinicarpus Turbinicarpus swobodae \N \N \N \N \N 70090 W.kraussii Wurmbea Wurmbea kraussii \N \N \N \N \N 70091 \N subtribe Polystachyinae \N \N \N \N \N 70092 C.caryophylloides Couepia Couepia caryophylloides \N \N \N \N \N 70093 P.tepperi Potamogeton Potamogeton tepperi \N \N \N \N \N 70094 \N subspecies Zieria arborescens subsp. arborescens \N \N \N \N \N 70095 C.farinosus Convolvulus Convolvulus farinosus \N \N \N \N \N 70096 \N varietas Anemone drummondii var. lithophila \N \N \N \N \N 70097 M.whitei Mondia Mondia whitei \N \N \N \N \N 70098 M.myrtoides Myrceugenia Myrceugenia myrtoides \N \N \N \N \N 70099 P.viburnoides Pyrostria Pyrostria viburnoides \N \N \N \N \N 70100 S.sulcicalyx Senecio Senecio sulcicalyx \N \N \N \N \N 70101 E.elata Euphorbia Euphorbia elata \N \N \N \N \N 70102 \N genus Grossera \N \N \N \N \N 70103 C.splendens Calochortus Calochortus splendens \N \N \N \N \N 70104 \N genus Eremosis \N \N \N \N \N 70105 C.natalensis Cephalanthus Cephalanthus natalensis \N \N \N \N \N 70106 S.nodulosa Silene Silene nodulosa \N \N \N \N \N 70107 P.mikea Pachypodium Pachypodium mikea \N \N \N \N \N 70108 M.lineata Miliusa Miliusa lineata \N \N \N \N \N 70109 P.punctata Protea Protea punctata \N \N \N \N \N 70110 H.glaberrima Helmholtzia Helmholtzia glaberrima \N \N \N \N \N 70111 L.trinervium Leptospermum Leptospermum trinervium \N \N \N \N \N 70112 O.variegata Orbea Orbea variegata \N \N \N \N \N 70113 U.4242 Uncaria Uncaria sp. Harder et al. 4242 \N \N \N \N \N 70114 P.wrightii Puccinellia Puccinellia wrightii \N \N \N \N \N 70115 E.kingiana Endiandra Endiandra kingiana \N \N \N \N \N 70116 F.pygmaea Ficus Ficus pygmaea \N \N \N \N \N 70117 H.longistylum Heliotropium Heliotropium longistylum \N \N \N \N \N 70118 A.muscosa Agrostis Agrostis muscosa \N \N \N \N \N 70119 R.tubiflora Ruellia Ruellia tubiflora \N \N \N \N \N 70120 S.australiana Steganthera Steganthera australiana \N \N \N \N \N 70121 P.1997' Palicourea Palicourea sp. 'Bremer 1997' \N \N \N \N \N 70122 \N genus Tetramicra \N \N \N \N \N 70123 R.robusta Ruschia Ruschia robusta \N \N \N \N \N 70124 B.gunckelii Bromus Bromus gunckelii \N \N \N \N \N 70125 R.deceptor Rhizanthes Rhizanthes deceptor \N \N \N \N \N 70126 S.dielsii Sabia Sabia dielsii \N \N \N \N \N 70127 X.decaryi Xerosicyos Xerosicyos decaryi \N \N \N \N \N 70128 C.nigra Centaurea Centaurea nigra \N \N \N \N \N 70129 T.aeranthos Tillandsia Tillandsia aeranthos \N \N \N \N \N 70130 R.glaciale Ribes Ribes glaciale \N \N \N \N \N 70131 P.arida Palafoxia Palafoxia arida \N \N \N \N \N 70132 S.microsperma Suaeda Suaeda microsperma \N \N \N \N \N 70133 A.dichotoma Aloe Aloe dichotoma \N \N \N \N \N 70134 P.osterhoutii Penstemon Penstemon osterhoutii \N \N \N \N \N 70135 P.nuttallii Ptilimnium Ptilimnium nuttallii \N \N \N \N \N 70136 \N varietas Kalanchoe blossfeldiana var. coccinea \N \N \N \N \N 70137 E.papuanum Epipremnum Epipremnum papuanum \N \N \N \N \N 70138 \N varietas Tillandsia macbrideana var. macbrideana \N \N \N \N \N 70139 C.appendiculatopsis Cynanchum Cynanchum appendiculatopsis \N \N \N \N \N 70140 \N subspecies Acer tataricum subsp. ginnala Amur maple \N \N \N \N 70143 L.carua Ladenbergia Ladenbergia carua \N \N \N \N \N 70144 U.antennifera Utricularia Utricularia antennifera \N \N \N \N \N 70145 A.cincinnatus Adenocarpus Adenocarpus cincinnatus \N \N \N \N \N 70146 C.ulotropis Chorizema Chorizema ulotropis \N \N \N \N \N 70147 B.blepharistes Bulbophyllum Bulbophyllum blepharistes \N \N \N \N \N 70148 \N varietas Correa glabra var. leucoclada \N \N \N \N \N 70149 P.lanceolatus Penstemon Penstemon lanceolatus \N \N \N \N \N 70150 G.collina Galenia Galenia collina \N \N \N \N \N 70151 F.stenanthera Fritillaria Fritillaria stenanthera \N \N \N \N \N 70152 R.sulphureus Ranunculus Ranunculus sulphureus \N \N \N \N \N 70153 K.cirrhosa Kickxia Kickxia cirrhosa \N \N \N \N \N 70154 \N genus Dodecadenia \N \N \N \N \N 70155 C.melchiorii Clusia Clusia melchiorii \N \N \N \N \N 70156 \N subspecies Milium effusum subsp. effusum \N \N \N \N \N 70157 C.vaginiflora Crypsis Crypsis vaginiflora \N \N \N \N \N 70158 Z.mays Zea Zea mays maize \N \N \N \N 70159 O.mungos Ophiorrhiza Ophiorrhiza mungos \N \N \N \N \N 70160 L.grandiflora Larnax Larnax grandiflora \N \N \N \N \N 70161 T.solomonensis Tapeinochilos Tapeinochilos solomonensis \N \N \N \N \N 70162 A.melilotoides Astragalus Astragalus melilotoides \N \N \N \N \N 70163 E.saxatilis Euphorbia Euphorbia saxatilis \N \N \N \N \N 70164 L.klattiana Lysimachia Lysimachia klattiana \N \N \N \N \N 70165 P.deidamioides Passiflora Passiflora deidamioides \N \N \N \N \N 70166 \N genus Luetkea \N \N \N \N \N 70167 R.occidentale Rhododendron Rhododendron occidentale \N \N \N \N \N 70168 K.novoguineense Kingiodendron Kingiodendron novoguineense \N \N \N \N \N 70169 F.3729 Fosterella Fosterella sp. FAN RV 3729 \N \N \N \N \N 70171 \N varietas Viola blanda var. palustriformis \N \N \N \N \N 70172 A.sagittarius Amorphophallus Amorphophallus sagittarius \N \N \N \N \N 70173 B.palauensis Bikkia Bikkia palauensis \N \N \N \N \N 70174 F.aurantiacafolia Ficus Ficus aurantiacafolia \N \N \N \N \N 70175 H.elongata Heliophila Heliophila elongata \N \N \N \N \N 70176 \N genus Acanthostelma \N \N \N \N \N 70177 G.lacaitae Gagea Gagea lacaitae \N \N \N \N \N 70178 M.eichleri Millotia Millotia eichleri \N \N \N \N \N 70179 T.mauryana Tillandsia Tillandsia mauryana \N \N \N \N \N 70180 V.tripteris Valeriana Valeriana tripteris \N \N \N \N \N 70181 C.anthropophagorum Cyrtandra Cyrtandra anthropophagorum \N \N \N \N \N 70182 H.albiflora Herrania Herrania albiflora \N \N \N \N \N 70183 D.5713 Drymonia Drymonia sp. Clark 5713 \N \N \N \N \N 70184 J.didymum Jasminum Jasminum didymum \N \N \N \N \N 70185 E.parvifolia Entada Entada parvifolia \N \N \N \N \N 70186 C.insomniifolia Coursetia Coursetia insomniifolia \N \N \N \N \N 70187 H.ilicifolia Hyperbaena Hyperbaena ilicifolia \N \N \N \N \N 70188 N.9 Neonauclea Neonauclea sp. 9 \N \N \N \N \N 70189 C.magnifructus Cyathocalyx Cyathocalyx magnifructus \N \N \N \N \N 70190 T.strictum Trifolium Trifolium strictum \N \N \N \N \N 70191 L.cupressiforme Lepidophyllum Lepidophyllum cupressiforme \N \N \N \N \N 70192 M.melchior Macropiper Macropiper melchior \N \N \N \N \N 70193 C.aurantiifolia Citrus Citrus aurantiifolia lime \N \N \N \N 70194 T.elegans Tabernaemontana Tabernaemontana elegans \N \N \N \N \N 70195 \N subspecies Papaver alpinum subsp. kerneri \N \N \N \N \N 70196 G.KJW-2003b Globba Globba sp. KJW-2003b \N \N \N \N \N 70197 P.globiceps Psychotria Psychotria globiceps \N \N \N \N \N 70198 \N varietas Chorizanthe cuspidata var. cuspidata \N \N \N \N \N 70199 \N varietas Bystropogon origanifolius var. ferrensis \N \N \N \N \N 70200 B.1021 Burmannia Burmannia sp. Dessein 1021 \N \N \N \N \N 70201 \N subspecies Pereskia grandifolia subsp. violacea \N \N \N \N \N 70202 A.linearifolia Abrotanella Abrotanella linearifolia \N \N \N \N \N 70203 J.tamnifolia Jacquemontia Jacquemontia tamnifolia \N \N \N \N \N 70204 \N subspecies Centaurea maculosa subsp. maculosa \N \N \N \N \N 70205 \N family Meliaceae mahogany family \N \N \N \N 70206 D.gilgiana Drypetes Drypetes gilgiana \N \N \N \N \N 70207 P.anetoclada Psychotria Psychotria anetoclada \N \N \N \N \N 70208 \N subspecies Teucrium flavum subsp. glaucum \N \N \N \N \N 70209 \N family Hydrocharitaceae tape-grass family \N \N \N \N 70210 \N varietas Deschampsia cespitosa var. alpina \N \N \N \N \N 70211 P.xanthina Promenaea Promenaea xanthina \N \N \N \N \N 70212 D.rossii Dimorphorchis Dimorphorchis rossii \N \N \N \N \N 70213 \N subspecies Leptochloa fusca subsp. uninervia \N \N \N \N \N 70214 E.Creek' Eleocharis Eleocharis sp. 'Nourlangie Creek' \N \N \N \N \N 70215 B.aggregatum Bulbophyllum Bulbophyllum aggregatum \N \N \N \N \N 70216 \N subspecies Picris hieracioides subsp. morrisonensis \N \N \N \N \N 70217 \N genus Moneses \N \N \N \N \N 70218 C.cylindrica Chusquea Chusquea cylindrica \N \N \N \N \N 70219 D.gabonensis Diceratostele Diceratostele gabonensis \N \N \N \N \N 70220 T.granatensis Thymelaea Thymelaea granatensis \N \N \N \N \N 70221 P.andina Peperomia Peperomia andina \N \N \N \N \N 70222 P.12386 Polycarena Polycarena sp. Goldblatt 12386 \N \N \N \N \N 70223 M.celastroides Muellerina Muellerina celastroides \N \N \N \N \N 70224 C.lyonii Calycocarpum Calycocarpum lyonii \N \N \N \N \N 70225 S.thodeana Sebaea Sebaea thodeana \N \N \N \N \N 70226 P.mlokosewitschii Paeonia Paeonia mlokosewitschii \N \N \N \N \N 70227 P.subnuda Plantago Plantago subnuda \N \N \N \N \N 70228 A.geniculata Aegilops Aegilops geniculata \N \N \N \N \N 70229 P.chiriquensis Podandrogyne Podandrogyne chiriquensis \N \N \N \N \N 70230 H.lyrata Hemisteptia Hemisteptia lyrata \N \N \N \N \N 70231 O.oblongifolia Ophrestia Ophrestia oblongifolia \N \N \N \N \N 70232 M.microphylla Michelsonia Michelsonia microphylla \N \N \N \N \N 70233 B.rubrocyanea Babiana Babiana rubrocyanea \N \N \N \N \N 70234 \N family Sarcolaenaceae \N \N \N \N \N 70235 \N genus Chaptalia \N \N \N \N \N 70236 A.incurva Acacia Acacia incurva \N \N \N \N \N 70237 A.fraxinifolium Astronium Astronium fraxinifolium \N \N \N \N \N 70238 M.ecklonii Miscanthus Miscanthus ecklonii \N \N \N \N \N 70239 B.flabilis Bowlesia Bowlesia flabilis \N \N \N \N \N 70240 \N family Juglandaceae walnut family \N \N \N \N 70241 \N genus Lorostemon \N \N \N \N \N 70242 A.adamsii Artemisia Artemisia adamsii \N \N \N \N \N 70243 C.sarmatica Campanula Campanula sarmatica \N \N \N \N \N 70244 \N genus Sehima \N \N \N \N \N 70245 A.muticum Arcytophyllum Arcytophyllum muticum \N \N \N \N \N 70246 S.EHR-2007 Salsola Salsola sp. EHR-2007 \N \N \N \N \N 70247 \N subspecies Crocus biflorus subsp. punctatus \N \N \N \N \N 70248 \N varietas Weigela florida var. venusta \N \N \N \N \N 70249 \N genus Petrea bluebird vines,purple wreaths,sandpaper vines \N \N \N \N 70250 F.audruana Fadogia Fadogia audruana \N \N \N \N \N 70251 D.gillettii Dioscorea Dioscorea gillettii \N \N \N \N \N 70252 U.setulosa Urochondra Urochondra setulosa \N \N \N \N \N 70253 C.delileana Crithopsis Crithopsis delileana \N \N \N \N \N 70254 \N genus Allowissadula \N \N \N \N \N 70255 \N genus Gloxinella \N \N \N \N \N 70256 I.hirtzii Ida Ida hirtzii \N \N \N \N \N 70257 N.boholensis Neoachmandra Neoachmandra boholensis \N \N \N \N \N 70258 A.liukiuensis Aristolochia Aristolochia liukiuensis \N \N \N \N \N 70259 P.latipetalus Phyllobolus Phyllobolus latipetalus \N \N \N \N \N 70260 D.sanguinolenta Diplycosia Diplycosia sanguinolenta \N \N \N \N \N 70261 A.crenata Aspalathus Aspalathus crenata \N \N \N \N \N 70262 M.papuana Macaranga Macaranga papuana \N \N \N \N \N 70263 M.hookeri Menonvillea Menonvillea hookeri \N \N \N \N \N 70264 A.hypnosa Alocasia Alocasia hypnosa \N \N \N \N \N 70265 A.pumila Alpinia Alpinia pumila \N \N \N \N \N 70266 A.africana Aloe Aloe africana \N \N \N \N \N 70267 M.ciliata Miconia Miconia ciliata \N \N \N \N \N 70268 M.hirsuta Mandevilla Mandevilla hirsuta \N \N \N \N \N 70269 L.anagyroides Laburnum Laburnum anagyroides common laburnum,golden chain \N \N \N \N 70270 H.pubescens Heteromorpha Heteromorpha pubescens \N \N \N \N \N 70271 H.pierrei Hopea Hopea pierrei \N \N \N \N \N 70272 P.oleoides Psychotria Psychotria oleoides \N \N \N \N \N 70273 C.nivibractea Castilleja Castilleja nivibractea \N \N \N \N \N 70274 A.muricata Anthemis Anthemis muricata \N \N \N \N \N 70275 \N genus Hyoscyamus \N \N \N \N \N 70276 L.quihoui Ligustrum Ligustrum quihoui \N \N \N \N \N 70277 \N varietas Miconia ceramicarpa var. ceramicarpa \N \N \N \N \N 70278 C.spicata Cussonia Cussonia spicata \N \N \N \N \N 70279 D.pimpinellifolia Dorobaea Dorobaea pimpinellifolia \N \N \N \N \N 70280 T.JS6003/1 unclassified Taraxacum Taraxacum (sect. Cucullata) sp. JS6003/1 \N \N \N \N \N 70281 T.occidentale Thalictrum Thalictrum occidentale western meadow-rue \N \N \N \N 70282 C.uvifera Coccoloba Coccoloba uvifera kino,platter-leaf,shore grape \N \N \N \N 70283 B.rapa Brassica Brassica napus x Brassica rapa \N \N \N \N \N 70284 B.lucida Byrsonima Byrsonima lucida clam-cherry,locustberry \N \N \N \N 70285 F.yuvinkae Fosterella Fosterella yuvinkae \N \N \N \N \N 70286 S.reginae Sophronitis Sophronitis reginae \N \N \N \N \N 70287 A.diabolense Allium Allium diabolense \N \N \N \N \N 70288 O.rusbyi Oxalis Oxalis rusbyi \N \N \N \N \N 70289 A.athrixioides Asteridea Asteridea athrixioides \N \N \N \N \N 70290 F.cundinamarcae Festuca Festuca cundinamarcae \N \N \N \N \N 70291 C.mollifolia Chirita Chirita mollifolia \N \N \N \N \N 70292 T.687 Tachigali Tachigali sp. Klitgaard 687 \N \N \N \N \N 70293 \N subspecies Narcissus rupicola subsp. marvieri \N \N \N \N \N 70294 C.minor Craspedia Craspedia minor \N \N \N \N \N 70295 T.angulatum Trifolium Trifolium angulatum \N \N \N \N \N 70296 F.pimenteliana Flindersia Flindersia pimenteliana \N \N \N \N \N 70297 S.peckii Strychnos Strychnos peckii \N \N \N \N \N 70298 C.oppositifolia Calycadenia Calycadenia oppositifolia Butte County calycadenia \N \N \N \N 70299 C.maximowiczii Chrysanthemum Chrysanthemum maximowiczii \N \N \N \N \N 70300 H.fuscescens Hieracium Hieracium fuscescens \N \N \N \N \N 70301 H.minima Hemizonella Hemizonella minima \N \N \N \N \N 70302 C.126 Clusia Clusia sp. HG 126 \N \N \N \N \N 70303 S.vernalis Senecio Senecio vernalis \N \N \N \N \N 70304 O.thriptiensis Ophrys Ophrys thriptiensis \N \N \N \N \N 70305 P.thysanochila Pseudocranichis Pseudocranichis thysanochila \N \N \N \N \N 70306 M.sanctae-fidei Masdevallia Masdevallia sanctae-fidei \N \N \N \N \N 70307 D.sissoo Dalbergia Dalbergia sissoo \N \N \N \N \N 70308 P.480 Peponidium Peponidium aff. madagascariense Razafimandimbison 480 \N \N \N \N \N 70309 P.cornutum Pugionium Pugionium cornutum \N \N \N \N \N 70310 T.mongoliforme Taraxacum Taraxacum mongoliforme \N \N \N \N \N 70311 T.smithii Tropaeolum Tropaeolum smithii \N \N \N \N \N 70312 \N genus Actinocheita \N \N \N \N \N 70313 M.affinis Mimosa Mimosa affinis \N \N \N \N \N 70314 D.falconeri Drosera Drosera falconeri \N \N \N \N \N 70315 T.robustum Thalictrum Thalictrum robustum \N \N \N \N \N 70316 L.CSL-2007a Liparis Liparis sp. CSL-2007a \N \N \N \N \N 70317 B.virgata Bourreria Bourreria virgata \N \N \N \N \N 70318 S.incompletum Solanum Solanum incompletum \N \N \N \N \N 70319 \N family Goupiaceae \N \N \N \N \N 70320 C.allamanii Cleome Cleome allamanii \N \N \N \N \N 70321 H.RM1324 Hirpicium Hirpicium sp. RM1324 \N \N \N \N \N 70322 S.humilis Stylosanthes Stylosanthes humilis Townsville stylo,alfafinha do nordeste,alfalfa estilosante \N \N \N \N 70323 P.acinosa Phytolacca Phytolacca acinosa Indian pokeweed,food pokeberry,food pokeweed,shang lu \N \N \N \N 70324 P.batteniana Polycarena Polycarena batteniana \N \N \N \N \N 70325 B.torta Babiana Babiana torta \N \N \N \N \N 70326 G.rohrii Ginoria Ginoria rohrii \N \N \N \N \N 70327 P.radiatum Pelargonium Pelargonium radiatum \N \N \N \N \N 70328 O.7615 Orobanche Orobanche cf. rosmarina HST 7615 \N \N \N \N \N 70329 E.palmeri Exhalimolobos Exhalimolobos palmeri \N \N \N \N \N 70330 H.paucidentatus Haplopappus Haplopappus paucidentatus \N \N \N \N \N 70331 S.nachtigalii Selago Selago nachtigalii \N \N \N \N \N 70332 T.diffusiflorum Thalictrum Thalictrum diffusiflorum \N \N \N \N \N 70333 E.07.12.2001 Eryngium Eryngium cf. pinnatifidum Lambracht sn 07.12.2001 \N \N \N \N \N 70334 P.pekinensis Philadelphus Philadelphus pekinensis \N \N \N \N \N 70335 U.sinensis Uncaria Uncaria sinensis \N \N \N \N \N 70336 \N subspecies Argyroxiphium sandwicense subsp. macrocephalum \N \N \N \N \N 70337 E.compressa Eleocharis Eleocharis compressa \N \N \N \N \N 70338 G.rizehensis Galanthus Galanthus rizehensis \N \N \N \N \N 70339 T.lindenii Trichocentrum Trichocentrum lindenii \N \N \N \N \N 70340 E.humilis Erigeron Erigeron humilis \N \N \N \N \N 70341 \N varietas Senna birostris var. hookeriana \N \N \N \N \N 70342 P.ceratophyllum Podostemum Podostemum ceratophyllum \N \N \N \N \N 70343 B.ulbrichiana Brongniartia Brongniartia ulbrichiana \N \N \N \N \N 70344 A.cachensis Aschersoniodoxa Aschersoniodoxa cachensis \N \N \N \N \N 70345 P.andersonii Puccinellia Puccinellia andersonii \N \N \N \N \N 70346 I.zeyheri Indigofera Indigofera zeyheri \N \N \N \N \N 70347 \N genus Phalaenopsis moth orchids \N \N \N \N 70348 \N subspecies Solanum circinatum subsp. ramosum \N \N \N \N \N 70349 N.NPT-2010 Najas Najas sp. NPT-2010 \N \N \N \N \N 70350 C.lutchuensis Camellia Camellia lutchuensis \N \N \N \N \N 70351 H.macrantha Hoodia Hoodia macrantha \N \N \N \N \N 70352 O.lichenoides Oxalis Oxalis lichenoides \N \N \N \N \N 70353 S.natalensis Searsia Searsia natalensis \N \N \N \N \N 70354 P.multiradiatum Pelargonium Pelargonium multiradiatum \N \N \N \N \N 70355 P.fiorii Pinguicula Pinguicula fiorii \N \N \N \N \N 70356 T.1997' Tigridia Tigridia sp. 'Lejeune 1997' \N \N \N \N \N 70357 \N genus Tsiorchis \N \N \N \N \N 70358 W.villosa Wisteria Wisteria villosa \N \N \N \N \N 70359 M.lenae Macrocarpaea Macrocarpaea lenae \N \N \N \N \N 70360 \N varietas Mimosa pigra var. berlandieri \N \N \N \N \N 70361 \N genus Adolphia \N \N \N \N \N 70362 C.tananicus Cheirolophus Cheirolophus tananicus \N \N \N \N \N 70363 G.decipiens Gingidia Gingidia decipiens \N \N \N \N \N 70364 C.microcarpa Cleome Cleome microcarpa \N \N \N \N \N 70365 R.oaxacana Rhynchospora Rhynchospora oaxacana \N \N \N \N \N 70366 M.gonggrijpii Mora Mora gonggrijpii morabukea \N \N \N \N 70367 C.verticillatus Chrysopogon Chrysopogon verticillatus \N \N \N \N \N 70368 S.gloedeniana Sophronitis Sophronitis gloedeniana \N \N \N \N \N 70369 D.remota Disa Disa remota \N \N \N \N \N 70370 \N genus Fagopyrum \N \N \N \N \N 70371 T.montana Thermopsis Thermopsis montana \N \N \N \N \N 70372 G.glaziovii Gomesa Gomesa glaziovii \N \N \N \N \N 70373 B.hemsleyana Begonia Begonia hemsleyana \N \N \N \N \N 70374 A.pubescens Austrostipa Austrostipa pubescens \N \N \N \N \N 70375 I.confertiflora Inula Inula confertiflora \N \N \N \N \N 70376 F.sample environmental samples Taxonomy:404789 Fabales environmental sample \N \N \N \N \N 70377 O.yunnanensis Osmanthus Osmanthus yunnanensis \N \N \N \N \N 70378 \N forma Nymphaea lotus f. thermalis \N \N \N \N \N 70379 H.latiflora Hintonia Hintonia latiflora \N \N \N \N \N 70380 I.wightii Indigofera Indigofera wightii \N \N \N \N \N 70381 P.melanochthoda Pleurothallis Pleurothallis melanochthoda \N \N \N \N \N 70382 L.danguyana Lijndenia Lijndenia danguyana \N \N \N \N \N 70383 C.crenatiflora Calceolaria Calceolaria crenatiflora \N \N \N \N \N 70384 I.utahensis Ivesia Ivesia utahensis \N \N \N \N \N 70385 P.javanicum Protium Protium javanicum \N \N \N \N \N 70386 P.manniana Pilea Pilea manniana \N \N \N \N \N 70387 S.poetica Stipa Stipa poetica \N \N \N \N \N 70388 C.dodecandra Cliffortia Cliffortia dodecandra \N \N \N \N \N 70389 \N tribe Mussaendeae \N \N \N \N \N 70390 C.curatorum Carex Carex curatorum \N \N \N \N \N 70391 E.trachycaulus Elymus Elymus trachycaulus \N \N \N \N \N 70392 \N family Aponogetonaceae Cape-pondweed family \N \N \N \N 70393 \N subspecies Manihot esculenta subsp. peruviana \N \N \N \N \N 70394 C.longifolia Cassinia Cassinia longifolia \N \N \N \N \N 70395 \N genus Manulea \N \N \N \N \N 70396 C.holstii Combretum Combretum holstii \N \N \N \N \N 70397 F.kanehirae Freycinetia Freycinetia kanehirae \N \N \N \N \N 70398 T.gaoligongense Typhonium Typhonium gaoligongense \N \N \N \N \N 70399 G.leucantha Globba Globba leucantha \N \N \N \N \N 70400 O.arabicus Ochradenus Ochradenus arabicus \N \N \N \N \N 70401 C.xiashiensis Camellia Camellia xiashiensis \N \N \N \N \N 70402 L.eriocephalum Lamium Lamium eriocephalum \N \N \N \N \N 70403 F.subverticillata Festuca Festuca subverticillata \N \N \N \N \N 70404 P.vernicosum Phoradendron Phoradendron vernicosum \N \N \N \N \N 70405 C.barnebiana Carlina Carlina barnebiana \N \N \N \N \N 70406 P.gunnii Phyllanthus Phyllanthus gunnii \N \N \N \N \N 70407 \N subspecies Arum rupicola subsp. rupicola \N \N \N \N \N 70408 E.hallii Eucalyptus Eucalyptus hallii \N \N \N \N \N 70409 C.qaisarensis Cousinia Cousinia qaisarensis \N \N \N \N \N 70410 \N genus Boronia \N \N \N \N \N 70411 H.mexicana Hanburia Hanburia mexicana \N \N \N \N \N 70412 P.banksii Pterostylis Pterostylis banksii \N \N \N \N \N 70413 A.lycopodioides Arenaria Arenaria lycopodioides \N \N \N \N \N 70414 M.alamosae Muhlenbergia Muhlenbergia alamosae \N \N \N \N \N 70415 N.arguta Najas Najas arguta \N \N \N \N \N 70416 \N genus Abutilon \N \N \N \N \N 70417 O.centradenia Oerstedella Oerstedella centradenia \N \N \N \N \N 70418 \N genus Vilobia \N \N \N \N \N 70419 \N genus Syrenia \N \N \N \N \N 70420 P.paniculatus Pogostemon Pogostemon paniculatus \N \N \N \N \N 70421 S.consimilis Sporobolus Sporobolus consimilis \N \N \N \N \N 70422 C.limon Citrus Citrus limon lemon \N \N \N \N 70423 \N subspecies Triticum aestivum subsp. tibeticum Tibetan wheat \N \N \N \N 70424 C.spicata Carex Carex spicata \N \N \N \N \N 70425 \N genus Monocladus \N \N \N \N \N 70426 C.marianensis Carex Carex marianensis \N \N \N \N \N 70427 L.hatschbachiana Luxemburgia Luxemburgia hatschbachiana \N \N \N \N \N 70428 T.trinerve Tripterospermum Tripterospermum trinerve \N \N \N \N \N 70429 \N genus Spiraeanthemum \N \N \N \N \N 70430 A.MPM3 Alocasia Alocasia sp. MPM3 \N \N \N \N \N 70431 E.EHR-2010 Eleocharis Eleocharis aff. crinalis EHR-2010 \N \N \N \N \N 70432 L.strigosa Lissanthe Lissanthe strigosa \N \N \N \N \N 70433 G.millefoliata Gilia Gilia millefoliata \N \N \N \N \N 70434 C.brysonii Carex Carex brysonii \N \N \N \N \N 70435 C.ligulatum Crinum Crinum ligulatum \N \N \N \N \N 70436 E.jahandiezianum Erodium Erodium jahandiezianum \N \N \N \N \N 70437 \N genus Pseudohydrosme \N \N \N \N \N 70438 \N genus Hancornia \N \N \N \N \N 70439 C.balearicum Cyclamen Cyclamen balearicum \N \N \N \N \N 70440 N.gracilis Nymphaea Nymphaea gracilis \N \N \N \N \N 70441 B.petiolaris Banksia Banksia petiolaris \N \N \N \N \N 70442 O.salviae Orobanche Orobanche salviae \N \N \N \N \N 70443 \N subspecies Genista cinerea subsp. murcica \N \N \N \N \N 70444 S.tinctoria Symplocos Symplocos tinctoria \N \N \N \N \N 70445 L.cuneifolia Ligaria Ligaria cuneifolia \N \N \N \N \N 70446 A.arnottii Angelphytum Angelphytum arnottii \N \N \N \N \N 70447 J.curtissii Jacquemontia Jacquemontia curtissii \N \N \N \N \N 70448 \N genus Acanthocarpus \N \N \N \N \N 70449 I.bloudowii Iris Iris bloudowii \N \N \N \N \N 70450 D.pungens Dianthus Dianthus pungens \N \N \N \N \N 70451 Q.infectoria Quercus Quercus infectoria \N \N \N \N \N 70452 \N varietas Erigeron thunbergii var. angustifolius \N \N \N \N \N 70453 \N subspecies Poa pratensis subsp. irrigata \N \N \N \N \N 70454 L.canariensis Luzula Luzula canariensis \N \N \N \N \N 70455 \N varietas Corispermum puberulum var. ellipsocarpum \N \N \N \N \N 70456 E.chloroloma Erica Erica chloroloma \N \N \N \N \N 70457 L.ulophylla Luzula Luzula ulophylla \N \N \N \N \N 70458 H.westringioides Hemigenia Hemigenia westringioides \N \N \N \N \N 70459 S.sphenophyllus Sauropus Sauropus sphenophyllus \N \N \N \N \N 70460 M.Island' Monotoca Monotoca sp. 'Fraser Island' \N \N \N \N \N 70461 C.4_29 Crataegus Crataegus sp. 4_29 \N \N \N \N \N 70462 E.coarctata Eccremis Eccremis coarctata \N \N \N \N \N 70463 \N family Burseraceae frankincense family \N \N \N \N 70464 M.scabrosa Melica Melica scabrosa \N \N \N \N \N 70465 D.ladina Draba Draba ladina \N \N \N \N \N 70466 C.infundibuliformis Crossandra Crossandra infundibuliformis \N \N \N \N \N 70467 \N genus Ricinocarpos \N \N \N \N \N 70468 S.virginalis Sobralia Sobralia virginalis \N \N \N \N \N 70469 P.bylesianus Pygmaeocereus Pygmaeocereus bylesianus \N \N \N \N \N 70470 S.crassipes Stellaria Stellaria crassipes \N \N \N \N \N 70471 \N varietas Isodon shikokianus var. occidentalis \N \N \N \N \N 70472 B.hildebrandtii Boswellia Boswellia hildebrandtii \N \N \N \N \N 70473 D.moorei Drymophila Drymophila moorei \N \N \N \N \N 70474 M.laniceps Mimosa Mimosa laniceps \N \N \N \N \N 70475 S.dissecta Synthyris Synthyris dissecta \N \N \N \N \N 70476 M.angusta Moraea Moraea angusta \N \N \N \N \N 70477 T.rigida Triopterys Triopterys rigida \N \N \N \N \N 70478 O.monanthos Oldenlandia Oldenlandia monanthos \N \N \N \N \N 70479 \N tribe Monotropeae \N \N \N \N \N 70480 C.barrelieri Centaurium Centaurium barrelieri \N \N \N \N \N 70481 P.divaricata Phlox Phlox divaricata \N \N \N \N \N 70482 \N genus Calycobolus \N \N \N \N \N 70483 \N genus Tapeinochilus \N \N \N \N \N 70484 C.arachnites Cryptostylis Cryptostylis arachnites \N \N \N \N \N 70485 \N subspecies Miscanthus sinensis subsp. condensatus \N \N \N \N \N 70486 \N genus Stenodon \N \N \N \N \N 70487 P.guanajuatensis Portulaca Portulaca guanajuatensis \N \N \N \N \N 70488 D.rigidifolia Droceloncia Droceloncia rigidifolia \N \N \N \N \N 70489 \N genus Dicypellium \N \N \N \N \N 70490 E.decorsei Euphorbia Euphorbia decorsei \N \N \N \N \N 70491 \N tribe Gynerieae \N \N \N \N \N 70492 D.stuposum Dendrobium Dendrobium stuposum \N \N \N \N \N 70493 A.diapensioides Azorella Azorella diapensioides cuncuma \N \N \N \N 70494 \N subspecies Ranunculus kuepferi subsp. orientalis \N \N \N \N \N 70495 S.microphylla Swainsona Swainsona microphylla \N \N \N \N \N 70496 P.recurva Psychotria Psychotria recurva \N \N \N \N \N 70497 M.lindheimeri Monarda Monarda lindheimeri \N \N \N \N \N 70498 G.stellatus Gladiolus Gladiolus stellatus \N \N \N \N \N 70499 E.sellowianum Eriocaulon Eriocaulon sellowianum \N \N \N \N \N 70500 L.pallida Leptonychia Leptonychia pallida \N \N \N \N \N 70501 N.intermedia Nepenthes Nepenthes x intermedia \N \N \N \N \N 70502 P.pedunculata Paradrymonia Paradrymonia pedunculata \N \N \N \N \N 70503 C.confusus Corchorus Corchorus confusus \N \N \N \N \N 70504 \N subspecies Puccinellia tenella subsp. tenella \N \N \N \N \N 70505 P.divaricata Polycarpaea Polycarpaea divaricata \N \N \N \N \N 70506 R.micrantha Rhipsalis Rhipsalis micrantha \N \N \N \N \N 70507 M.prasina Miconia Miconia prasina \N \N \N \N \N 70508 B.H600 Bowiea Bowiea sp. MP H600 \N \N \N \N \N 70509 M.affine Melastoma Melastoma affine \N \N \N \N \N 70510 \N genus Brunonia \N \N \N \N \N 70511 P.unifoliatus Phyllanthus Phyllanthus unifoliatus \N \N \N \N \N 70512 T.viride Trisetum Trisetum viride \N \N \N \N \N 70513 E.laevis Ehretia Ehretia laevis \N \N \N \N \N 70514 R.stenophylla Richterago Richterago stenophylla \N \N \N \N \N 70515 \N genus Acroceras \N \N \N \N \N 70516 O.adenodes Oxalis Oxalis adenodes \N \N \N \N \N 70517 B.FS833 Bulbophyllum Bulbophyllum sp. FS833 \N \N \N \N \N 70518 P.gloriosum Philodendron Philodendron gloriosum \N \N \N \N \N 70519 C.yunnanense Cypripedium Cypripedium yunnanense \N \N \N \N \N 70520 R.blechioides Ruellia Ruellia blechioides \N \N \N \N \N 70521 A.eludens Aristida Aristida eludens \N \N \N \N \N 70522 B.steyermarkii Brocchinia Brocchinia steyermarkii \N \N \N \N \N 70523 P.tosaensis Primula Primula tosaensis \N \N \N \N \N 70524 O.longifolia Ocotea Ocotea longifolia \N \N \N \N \N 70525 T.calyptratus Tupidanthus Tupidanthus calyptratus \N \N \N \N \N 70526 \N genus Pseudognaphalium \N \N \N \N \N 70527 I.purga Ipomoea Ipomoea purga jalap \N \N \N \N 70528 L.pachyphylloides Leucocroton Leucocroton pachyphylloides \N \N \N \N \N 70529 P.'Waipara' Pimelea Pimelea sp. 'Waipara' \N \N \N \N \N 70530 G.alatus Gladiolus Gladiolus alatus \N \N \N \N \N 70531 P.sibirica Petrosimonia Petrosimonia sibirica \N \N \N \N \N 70532 A.pindobassu Attalea Attalea pindobassu \N \N \N \N \N 70533 V.doniana Vitex Vitex doniana \N \N \N \N \N 70534 S.cunninghamii Solanum Solanum cunninghamii \N \N \N \N \N 70535 \N subspecies Centipeda minima subsp. minima \N \N \N \N \N 70536 H.floribunda Hortonia Hortonia floribunda \N \N \N \N \N 70537 P.edentula Pavetta Pavetta edentula \N \N \N \N \N 70538 G.camellioides Glyptocarpa Glyptocarpa camellioides \N \N \N \N \N 70539 F.apodanthera Feretia Feretia apodanthera \N \N \N \N \N 70540 V.iglesiasii Vataireopsis Vataireopsis iglesiasii \N \N \N \N \N 70541 E.cylindrica Eleocharis Eleocharis cylindrica \N \N \N \N \N 70542 S.polygamum Solanum Solanum polygamum \N \N \N \N \N 70543 B.bui-montana Begonia Begonia bui-montana \N \N \N \N \N 70544 C.nudiramea Chusquea Chusquea nudiramea \N \N \N \N \N 70545 B.diadema Begonia Begonia diadema \N \N \N \N \N 70546 M.nipensis Matelea Matelea nipensis \N \N \N \N \N 70547 P.orientalis Persicaria Persicaria orientalis \N \N \N \N \N 70548 G.uralensis Glycyrrhiza Glycyrrhiza uralensis Chinese licorice,gan zao \N \N \N \N 70549 C.ichneumonea Chamaeangis Chamaeangis ichneumonea \N \N \N \N \N 70550 C.nudiflorus Crocus Crocus nudiflorus \N \N \N \N \N 70551 T.brenesii Topobea Topobea brenesii \N \N \N \N \N 70552 B.drummondii Blennospora Blennospora drummondii \N \N \N \N \N 70553 P.grandiflora Paysonia Paysonia grandiflora \N \N \N \N \N 70554 C.2604 Carpacoce Carpacoce sp. Williams 2604 \N \N \N \N \N 70555 O.nematocaulis Oldenlandia Oldenlandia nematocaulis \N \N \N \N \N 70556 \N genus Cyrtostachys \N \N \N \N \N 70557 I.natalensis Indigofera Indigofera natalensis \N \N \N \N \N 70558 S.nuttalliana Sophora Sophora nuttalliana \N \N \N \N \N 70559 R.cincta Rondeletia Rondeletia cincta \N \N \N \N \N 70560 P.linggensis Pouteria Pouteria linggensis \N \N \N \N \N 70561 L.aggregatum Lacistema Lacistema aggregatum \N \N \N \N \N 70562 P.bicolor Piper Piper bicolor \N \N \N \N \N 70563 B.tricuspis Banksia Banksia tricuspis \N \N \N \N \N 70564 P.odontophylla Passiflora Passiflora odontophylla \N \N \N \N \N 70565 C.pulchra Cuphea Cuphea pulchra \N \N \N \N \N 70566 L.orchioides Lachenalia Lachenalia orchioides \N \N \N \N \N 70567 D.montana Downingia Downingia montana \N \N \N \N \N 70568 B.sample environmental samples Taxonomy:493874 Bromus environmental sample \N \N \N \N \N 70569 T.pusilla Takhtajaniantha Takhtajaniantha pusilla \N \N \N \N \N 70570 M.brongniartii Melaleuca Melaleuca brongniartii \N \N \N \N \N 70571 G.somalense Gossypium Gossypium somalense \N \N \N \N \N 70572 P.eminens Podachaenium Podachaenium eminens \N \N \N \N \N 70573 E.todtiana Eucalyptus Eucalyptus todtiana coastal blackbutt,prickly bark \N \N \N \N 70574 C.pachycladon Cynanchum Cynanchum pachycladon \N \N \N \N \N 70575 V.nivea Labiatoides Veronica nivea \N \N \N \N \N 70576 S.fasciatus Streptocarpus Streptocarpus fasciatus \N \N \N \N \N 70577 P.viridiflorum Pittosporum Pittosporum viridiflorum \N \N \N \N \N 70578 \N forma Rhipsalis clavata f. delicatula \N \N \N \N \N 70579 L.candida Lysimachia Lysimachia candida \N \N \N \N \N 70580 P.glutinosa Physalis Physalis glutinosa \N \N \N \N \N 70581 T.stamineum Trillium Trillium stamineum \N \N \N \N \N 70582 C.pedleyi Commersonia Commersonia pedleyi \N \N \N \N \N 70583 M.minima Microlicia Microlicia minima \N \N \N \N \N 70584 \N genus Stephanotis \N \N \N \N \N 70585 H.canadensis Heuchera Heuchera canadensis \N \N \N \N \N 70586 P.enervis Protea Protea enervis \N \N \N \N \N 70587 \N genus Capsella \N \N \N \N \N 70588 A.montis-usti Acacia Acacia montis-usti \N \N \N \N \N 70589 P.cipoensis Pseudolaelia Pseudolaelia cipoensis \N \N \N \N \N 70590 V.nervosum Viburnum Viburnum nervosum \N \N \N \N \N 70591 \N varietas Carex tribuloides var. sangamonensis \N \N \N \N \N 70592 B.muelleriana Buxus Buxus muelleriana \N \N \N \N \N 70593 \N genus Arillastrum \N \N \N \N \N 70594 P.albertinus Penstemon Penstemon albertinus \N \N \N \N \N 70595 X.retinervis Xerophyta Xerophyta retinervis \N \N \N \N \N 70596 \N genus Eucephalus \N \N \N \N \N 70597 C.sessilifolium Cytisophyllum Cytisophyllum sessilifolium \N \N \N \N \N 70598 C.usitana Coelogyne Coelogyne usitana \N \N \N \N \N 70599 C.parvifolia Calceolaria Calceolaria parvifolia \N \N \N \N \N 70600 S.fruticosa Salvia Salvia fruticosa \N \N \N \N \N 70601 F.indica Fagonia Fagonia indica \N \N \N \N \N 70602 S.quelpaertensis Sasa Sasa quelpaertensis \N \N \N \N \N 70603 D.gracillima Draba Draba gracillima \N \N \N \N \N 70604 I.collina Ilex Ilex collina \N \N \N \N \N 70605 V.vernicosa Vachellia Vachellia vernicosa \N \N \N \N \N 70606 L.trichorrhiza Luisia Luisia trichorrhiza \N \N \N \N \N 70607 \N genus Tabernanthe \N \N \N \N \N 70608 A.ophiocarpus Astragalus Astragalus ophiocarpus \N \N \N \N \N 70609 S.godleyi Sophora Sophora godleyi \N \N \N \N \N 70610 F.hispanica Filago Filago hispanica \N \N \N \N \N 70611 \N genus Johrenia \N \N \N \N \N 70612 \N no rank Fraxinus pennsylvanica 'Aucubifolia' \N \N \N \N \N 70613 P.sepium Periploca Periploca sepium \N \N \N \N \N 70614 P.alba Parrya Parrya alba \N \N \N \N \N 70615 D.compactum Danthoniastrum Danthoniastrum compactum \N \N \N \N \N 70616 S.caerulea Sutera Sutera caerulea \N \N \N \N \N 70617 P.dolomiticum Pelargonium Pelargonium dolomiticum \N \N \N \N \N 70618 O.ozanonis Orobanche Orobanche ozanonis \N \N \N \N \N 70619 A.knowltonia Anemone Anemone knowltonia \N \N \N \N \N 70620 \N varietas Hymenopappus filifolius var. filifolius \N \N \N \N \N 70621 C.crassicaule Crinum Crinum crassicaule \N \N \N \N \N 70622 \N subspecies Curculigo pilosa subsp. major \N \N \N \N \N 70623 E.chacoensis Echinochloa Echinochloa chacoensis \N \N \N \N \N 70624 L.australis Leptopus Leptopus australis \N \N \N \N \N 70625 G.speciosa Gambelia Gambelia speciosa \N \N \N \N \N 70626 E.flavescens Eleocharis Eleocharis flavescens \N \N \N \N \N 70627 H.wallisii Huntleya Huntleya wallisii \N \N \N \N \N 70628 \N genus Pseuderanthemum \N \N \N \N \N 70629 C.longzhouica Castanopsis Castanopsis longzhouica \N \N \N \N \N 70630 A.hirta Arundinella Arundinella hirta \N \N \N \N \N 70631 B.aptera Begonia Begonia aptera \N \N \N \N \N 70632 S.umbrosa Saxifraga Saxifraga umbrosa \N \N \N \N \N 70633 \N subspecies Pulsatilla halleri subsp. styriaca \N \N \N \N \N 70634 C.abyssinica Ceropegia Ceropegia abyssinica \N \N \N \N \N 70635 M.glabra Magnolia Magnolia glabra \N \N \N \N \N 70636 P.polygonus Paepalanthus Paepalanthus polygonus \N \N \N \N \N 70637 \N genus Blepharoneuron \N \N \N \N \N 70638 A.irrorata Acacia Acacia irrorata blue-skin \N \N \N \N 70639 P.geyskesii Pitcairnia Pitcairnia geyskesii \N \N \N \N \N 70640 \N genus Blumeodendron \N \N \N \N \N 70641 S.cordatus Styrax Styrax cordatus \N \N \N \N \N 70642 M.bulbosa Melica Melica bulbosa \N \N \N \N \N 70643 A.fasciculata Adenia Adenia fasciculata \N \N \N \N \N 70644 L.tenax Leptocarpus Leptocarpus tenax \N \N \N \N \N 70645 L.fruticosum Lamprolobium Lamprolobium fruticosum \N \N \N \N \N 70646 A.5119 Asclepias Asclepias aff. pringlei Fishbein 5119 \N \N \N \N \N 70647 \N varietas Cirsium fontinale var. obispoense Chorro Creek bog thistle \N \N \N \N 70648 T.ballii Trachystoma Trachystoma ballii \N \N \N \N \N 70649 G.decurrens Gorceixia Gorceixia decurrens \N \N \N \N \N 70650 C.paniculata Caldcluvia Caldcluvia paniculata \N \N \N \N \N 70651 S.stamineus Solenanthus Solenanthus stamineus \N \N \N \N \N 70652 A.gracilis Aphelia Aphelia gracilis \N \N \N \N \N 70653 S.microphyllus Symphoricarpos Symphoricarpos microphyllus \N \N \N \N \N 70654 F.americana Fraxinus Fraxinus americana white ash \N \N \N \N 70655 P.glabrescens Pedicularis Pedicularis glabrescens \N \N \N \N \N 70656 C.brunneopilosum Cremanthodium Cremanthodium brunneopilosum \N \N \N \N \N 70657 C.papposa Centaurea Centaurea papposa \N \N \N \N \N 70658 G.platycarpum Grammosciadium Grammosciadium platycarpum \N \N \N \N \N 70659 O.pulvinifica Oreomyrrhis Oreomyrrhis pulvinifica \N \N \N \N \N 70660 P.dolichonema Pseuduvaria Pseuduvaria dolichonema \N \N \N \N \N 70661 D.doratostyla Drymonia Drymonia doratostyla \N \N \N \N \N 70662 A.leucosepalum Asarum Asarum leucosepalum \N \N \N \N \N 70663 E.laevigata Echinacea Echinacea laevigata \N \N \N \N \N 70664 H.tenuipes Hydrophyllum Hydrophyllum tenuipes \N \N \N \N \N 70665 \N genus Stockwellia \N \N \N \N \N 70666 \N family Euphroniaceae \N \N \N \N \N 70667 R.locellata Rhodomyrtus Rhodomyrtus locellata \N \N \N \N \N 70668 B.schiemanniana Brachychloa Brachychloa schiemanniana \N \N \N \N \N 70669 A.taurina Asperula Asperula taurina \N \N \N \N \N 70670 A.obovata Asclepias Asclepias obovata \N \N \N \N \N 70671 C.decurrens Cullumia Cullumia decurrens \N \N \N \N \N 70672 V.pustulata Vittadinia Vittadinia pustulata \N \N \N \N \N 70673 O.200422 Ostericum Ostericum sp. NHW 200422 \N \N \N \N \N 70674 O.velloziana Ocotea Ocotea velloziana \N \N \N \N \N 70675 P.kaoi Peliosanthes Peliosanthes kaoi \N \N \N \N \N 70676 P.nepalensis Piptanthus Piptanthus nepalensis \N \N \N \N \N 70677 I.decora Indigofera Indigofera decora \N \N \N \N \N 70678 I.mollis Indigofera Indigofera mollis \N \N \N \N \N 70679 M.transcaucasica Malvalthaea Malvalthaea transcaucasica \N \N \N \N \N 70680 D.michauxii Dionysia Dionysia michauxii \N \N \N \N \N 70681 I.lutescens Iris Iris lutescens \N \N \N \N \N 70682 C.intertexta Coprosma Coprosma intertexta \N \N \N \N \N 70683 Q.baronii Quercus Quercus baronii \N \N \N \N \N 70684 \N genus Rhodanthemum \N \N \N \N \N 70685 C.germainii Calceolaria Calceolaria germainii \N \N \N \N \N 70686 S.pearcei Stenomesson Stenomesson pearcei \N \N \N \N \N 70687 \N genus Eriospermum \N \N \N \N \N 70688 M.laevicaulis Mentzelia Mentzelia laevicaulis \N \N \N \N \N 70689 D.euxina Dactylorhiza Dactylorhiza euxina \N \N \N \N \N 70690 I.arizonica Ivesia Ivesia arizonica \N \N \N \N \N 70691 M.sedifolia Maireana Maireana sedifolia \N \N \N \N \N 70692 C.caesarea Cousinia Cousinia caesarea \N \N \N \N \N 70693 G.corymbosum Galium Galium corymbosum \N \N \N \N \N 70694 N.filicaulis Navarretia Navarretia filicaulis \N \N \N \N \N 70695 \N genus Stylosanthes \N \N \N \N \N 70696 C.surinamensis Calliandra Calliandra surinamensis \N \N \N \N \N 70697 A.pentadenia Acacia Acacia pentadenia \N \N \N \N \N 70698 C.laevigatus Cyperus Cyperus laevigatus \N \N \N \N \N 70699 E.sibiricum Endocellion Endocellion sibiricum \N \N \N \N \N 70700 L.masonii Lilaeopsis Lilaeopsis masonii \N \N \N \N \N 70701 B.semibarbata Bulbine Bulbine semibarbata \N \N \N \N \N 70702 H.elliptica Halleria Halleria elliptica \N \N \N \N \N 70703 A.aculeata Aspalathus Aspalathus aculeata \N \N \N \N \N 70704 B.gracilipes Boechera Boechera gracilipes \N \N \N \N \N 70705 C.cochleariifolia Campanula Campanula cochleariifolia fairies' thimbles \N \N \N \N 70706 G.americanus Gyrocarpus Gyrocarpus americanus \N \N \N \N \N 70707 A.guinetii Acacia Acacia guinetii \N \N \N \N \N 70708 P.lysimachioides Philibertia Philibertia lysimachioides \N \N \N \N \N 70709 M.pauciflora Mitella Mitella pauciflora \N \N \N \N \N 70710 C.laxus Chordifex Chordifex laxus \N \N \N \N \N 70711 M.chinensis Matsumurella Matsumurella chinensis \N \N \N \N \N 70712 M.bahiana Mcvaughia Mcvaughia bahiana \N \N \N \N \N 70713 A.nummularius Aeschynanthus Aeschynanthus nummularius \N \N \N \N \N 70714 B.daxinensis Begonia Begonia daxinensis \N \N \N \N \N 70715 \N genus Guibourtia \N \N \N \N \N 70716 D.lobata Disciphania Disciphania lobata \N \N \N \N \N 70717 \N genus Notanthera \N \N \N \N \N 70718 A.apterocarpa Alcea Alcea apterocarpa \N \N \N \N \N 70719 C.floccosum Cerastium Cerastium floccosum \N \N \N \N \N 70720 H.podocarpum Hylodesmum Hylodesmum podocarpum \N \N \N \N \N 70721 G.oreocharis Gladiolus Gladiolus oreocharis \N \N \N \N \N 70722 S.pseudochinensis Swertia Swertia pseudochinensis \N \N \N \N \N 70723 C.coxii Calochortus Calochortus coxii \N \N \N \N \N 70724 C.howellii Chorizanthe Chorizanthe howellii \N \N \N \N \N 70725 S.sibirica Sorbus Sorbus sibirica \N \N \N \N \N 70726 D.SD-2009 Diospyros Diospyros sp. SD-2009 \N \N \N \N \N 70727 L.australis Lepilaena Lepilaena australis \N \N \N \N \N 70728 B.ramosus Bromus Bromus ramosus \N \N \N \N \N 70729 \N genus Bikinia \N \N \N \N \N 70730 \N family Gunneraceae \N \N \N \N \N 70731 H.ellipticum Hypericum Hypericum ellipticum \N \N \N \N \N 70732 C.longifolia Cousinia Cousinia longifolia \N \N \N \N \N 70733 M.aspera Mentzelia Mentzelia aspera \N \N \N \N \N 70734 D.laxa Dubautia Dubautia laxa \N \N \N \N \N 70735 S.spathulata Scaphyglottis Scaphyglottis spathulata \N \N \N \N \N 70736 G.mugronensis Genista Genista mugronensis \N \N \N \N \N 70737 C.aphanantha Clidemia Clidemia aphanantha \N \N \N \N \N 70738 C.antonowii Cousinia Cousinia antonowii \N \N \N \N \N 70739 G.G1580 Glycine Glycine sp. G1580 \N \N \N \N \N 70740 \N subspecies Navarretia leucocephala subsp. minima \N \N \N \N \N 70741 H.jeongjocksanense Hypericum Hypericum jeongjocksanense \N \N \N \N \N 70742 H.flavum Hymenosporum Hymenosporum flavum \N \N \N \N \N 70743 T.bulbosa Triglochin Triglochin bulbosa \N \N \N \N \N 70744 S.amethystinum Symphyotrichum Symphyotrichum x amethystinum \N \N \N \N \N 70745 E.ephedroides Euphorbia Euphorbia ephedroides \N \N \N \N \N 70746 R.oxyspermus Ranunculus Ranunculus oxyspermus \N \N \N \N \N 70747 \N subspecies Microcnemum coralloides subsp. anatolicum \N \N \N \N \N 70748 D.tessmannii Dussia Dussia tessmannii \N \N \N \N \N 70749 I.crenata Ilex Ilex crenata Japanese holly,box-leaf holly \N \N \N \N 70750 L.lotonoides Lebeckia Lebeckia lotonoides \N \N \N \N \N 70751 O.glazioviana Oenothera Oenothera glazioviana \N \N \N \N \N 70752 C.capitata Cathariostachys Cathariostachys capitata \N \N \N \N \N 70753 S.latifolia Schotia Schotia latifolia \N \N \N \N \N 70754 C.edentula Cakile Cakile edentula American sea rocket,American sea-rocket \N \N \N \N 70755 E.thompsoniae Eriogonum Eriogonum thompsoniae \N \N \N \N \N 70756 M.muscosa Moehringia Moehringia muscosa \N \N \N \N \N 70757 G.capitata Germainia Germainia capitata \N \N \N \N \N 70758 D.TNS:Pradeep90002 Dalzellia Dalzellia sp. TNS:Pradeep90002 \N \N \N \N \N 70759 A.buxifolius Aeschynanthus Aeschynanthus buxifolius \N \N \N \N \N 70760 L.filifolium Leptaleum Leptaleum filifolium \N \N \N \N \N 70761 S.taygeteus Senecio Senecio taygeteus \N \N \N \N \N 70762 E.caucasicum Erythronium Erythronium caucasicum \N \N \N \N \N 70763 \N subspecies Calamagrostis anthoxanthoides subsp. laguroides \N \N \N \N \N 70764 G.parva Glycosmis Glycosmis parva \N \N \N \N \N 70765 \N genus Cymbosema \N \N \N \N \N 70766 L.serratum Lepidium Lepidium serratum \N \N \N \N \N 70767 P.parietaria Pilea Pilea parietaria \N \N \N \N \N 70768 \N family Coulaceae \N \N \N \N \N 70769 C.metallica Calathea Calathea metallica \N \N \N \N \N 70770 E.crepidifolium Erysimum Erysimum crepidifolium \N \N \N \N \N 70771 L.veitchiana Ligularia Ligularia veitchiana \N \N \N \N \N 70772 \N genus Cyclocodon \N \N \N \N \N 70773 T.buchwaldii Trachycalymma Trachycalymma buchwaldii \N \N \N \N \N 70774 M.elegans Moussonia Moussonia elegans \N \N \N \N \N 70775 P.rudgeanum Philodendron Philodendron rudgeanum \N \N \N \N \N 70776 A.setacea Achillea millefolium complex Achillea setacea \N \N \N \N \N 70777 L.leucanthum Lilium Lilium leucanthum \N \N \N \N \N 70778 \N genus Penthorum \N \N \N \N \N 70779 S.smithii Sarcoglottis Sarcoglottis smithii \N \N \N \N \N 70780 \N varietas Smilax corbularia var. woodii \N \N \N \N \N 70781 F.loretensis Ferdinandusa Ferdinandusa loretensis \N \N \N \N \N 70782 R.vialii Rhododendron Rhododendron vialii \N \N \N \N \N 70783 G.wengeri Globba Globba wengeri \N \N \N \N \N 70784 \N genus Trochetiopsis \N \N \N \N \N 70785 A.peltata Adenia Adenia peltata \N \N \N \N \N 70786 \N genus Carissa \N \N \N \N \N 70787 S.buchananii Stemodiopsis Stemodiopsis buchananii \N \N \N \N \N 70788 C.granulosa Cattleya Cattleya granulosa \N \N \N \N \N 70789 G.panamense Glossoloma Glossoloma panamense \N \N \N \N \N 70790 T.coerulea Tweedia Tweedia coerulea \N \N \N \N \N 70791 O.radians Odontanthera Odontanthera radians \N \N \N \N \N 70792 S.sinomontana Saxifraga Saxifraga sinomontana \N \N \N \N \N 70793 S.Ssp23 Sobralia Sobralia sp. Ssp23 \N \N \N \N \N 70794 G.lilliputiana Gentiana Gentiana lilliputiana \N \N \N \N \N 70795 P.1614 Pachyphyllum Pachyphyllum sp. Whitten 1614 \N \N \N \N \N 70796 H.biflora Hedyotis Hedyotis biflora \N \N \N \N \N 70797 X.buxifolia Xylosma Xylosma buxifolia \N \N \N \N \N 70798 A.repanda Adenia Adenia repanda \N \N \N \N \N 70799 S.reclinatum Sideroxylon Sideroxylon reclinatum \N \N \N \N \N 70800 C.stolonifera Commiphora Commiphora stolonifera \N \N \N \N \N 70801 P.diversifolia Pimpinella Pimpinella diversifolia \N \N \N \N \N 70802 C.IT-2010b Cucumis Cucumis sp. IT-2010b \N \N \N \N \N 70803 O.cathara Oxalis Oxalis cathara \N \N \N \N \N 70804 C.viscosa Cleome Cleome viscosa tickweed \N \N \N \N 70805 E.philippinensis Euphrasia Euphrasia philippinensis \N \N \N \N \N 70806 G.tenuis Geophila Geophila tenuis \N \N \N \N \N 70807 T.225721 Toddalia Toddalia sp. 225721 \N \N \N \N \N 70808 O.latifolia Oryza Oryza latifolia \N \N \N \N \N 70809 L.lanata Leucas Leucas lanata \N \N \N \N \N 70810 E.cloeziana Eucalyptus Eucalyptus cloeziana Queensland messmate,dead finish,gympie messmate \N \N \N \N 70811 A.biovulata Amphithalea Amphithalea biovulata \N \N \N \N \N 70812 A.parvifolia Atriplex Atriplex parvifolia \N \N \N \N \N 70813 R.lunaria Ricotia Ricotia lunaria \N \N \N \N \N 70814 \N subspecies Lamium album subsp. album \N \N \N \N \N 70815 C.hassei Carex Carex hassei \N \N \N \N \N 70816 C.BWvE-2008 Croton Croton aff. fruticulosus BWvE-2008 \N \N \N \N \N 70817 A.gracilenta Argemone Argemone gracilenta \N \N \N \N \N 70818 P.maculatus Phaseolus Phaseolus maculatus cocolmeca bean \N \N \N \N 70819 L.filifolia Lippia Lippia filifolia \N \N \N \N \N 70820 \N subspecies Primula vulgaris subsp. sibthorpii \N \N \N \N \N 70821 B.cult-MSU Bauhinia Bauhinia sp. cult-MSU \N \N \N \N \N 70822 M.mullerensis Myxochlamys Myxochlamys mullerensis \N \N \N \N \N 70823 G.xiphoidea Gagea Gagea xiphoidea \N \N \N \N \N 70824 I.jinpingensis Indocalamus Indocalamus jinpingensis \N \N \N \N \N 70825 T.subtilis Tabebuia Tabebuia subtilis \N \N \N \N \N 70826 L.aphaca Lathyrus Lathyrus aphaca yellow pea,yellow vetchling \N \N \N \N 70827 O.virens Ornithogalum Ornithogalum virens \N \N \N \N \N 70828 S.calostachyus Schoenus Schoenus calostachyus \N \N \N \N \N 70829 A.monoensis Astragalus Astragalus monoensis \N \N \N \N \N 70830 A.olchonensis Astragalus Astragalus olchonensis \N \N \N \N \N 70831 L.huasango Loxopterygium Loxopterygium huasango \N \N \N \N \N 70832 P.acuminatus Phyllanthus Phyllanthus acuminatus Jamaican gooseberry tree \N \N \N \N 70833 L.LM201001/9A Ledebouria Ledebouria sp. Mucina LM201001/9A \N \N \N \N \N 70834 R.traillianum Rhododendron Rhododendron traillianum \N \N \N \N \N 70835 P.barbatum Paphiopedilum Paphiopedilum barbatum \N \N \N \N \N 70836 A.sinclairiana Aphelandra Aphelandra sinclairiana \N \N \N \N \N 70837 E.viscosa Egletes Egletes viscosa \N \N \N \N \N 70838 C.4339 Cytinus Cytinus sp. 4339 \N \N \N \N \N 70839 R.apoanum Rhododendron Rhododendron apoanum \N \N \N \N \N 70840 \N genus Anetanthus \N \N \N \N \N 70841 H.pusilla Hydrocotyle Hydrocotyle pusilla \N \N \N \N \N 70842 P.thibetica Paris Paris thibetica \N \N \N \N \N 70843 M.parvifolia Montia Montia parvifolia \N \N \N \N \N 70844 A.actinotrichus Ampelocalamus Ampelocalamus actinotrichus \N \N \N \N \N 70845 M.andina Munroa Munroa andina \N \N \N \N \N 70846 S.uporo Solanum Solanum uporo \N \N \N \N \N 70847 F.caulescens Fosterella Fosterella caulescens \N \N \N \N \N 70848 C.anemophila Chamaedorea Chamaedorea anemophila \N \N \N \N \N 70849 \N varietas Chaetanthera acerosa var. acerosa \N \N \N \N \N 70850 G.aquatica Gleditsia Gleditsia aquatica swamp locust,water locust \N \N \N \N 70851 A.tenuifolium Angelphytum Angelphytum tenuifolium \N \N \N \N \N 70852 C.monocephalus Chordifex Chordifex monocephalus \N \N \N \N \N 70853 P.anachoretica Potentilla Potentilla anachoretica \N \N \N \N \N 70854 O.polyodon Ornithocephalus Ornithocephalus polyodon \N \N \N \N \N 70855 C.ramosus Cordylanthus Cordylanthus ramosus \N \N \N \N \N 70856 S.richardsonii Salix Salix richardsonii \N \N \N \N \N 70857 D.kamaonense Delphinium Delphinium kamaonense \N \N \N \N \N 70858 C.beltranii Centaurea Centaurea x beltranii \N \N \N \N \N 70859 \N subspecies Pachypodium rosulatum subsp. cactipes \N \N \N \N \N 70860 H.truncata Horkelia Horkelia truncata \N \N \N \N \N 70861 O.laxiflorum Onychosepalum Onychosepalum laxiflorum \N \N \N \N \N 70862 C.trinervis Conothamnus Conothamnus trinervis \N \N \N \N \N 70863 N.rubra Nemcia Nemcia rubra \N \N \N \N \N 70864 \N varietas Gamblea ciliata var. evodiifolia \N \N \N \N \N 70865 V.10-2006 Vitis Vitis sp. Troendle 10-2006 \N \N \N \N \N 70866 D.CANB656698 Diuris Diuris aff. punctata CANB656698 \N \N \N \N \N 70867 P.chionophila Parodiodoxa Parodiodoxa chionophila \N \N \N \N \N 70868 A.argentea Antennaria Antennaria argentea \N \N \N \N \N 70869 T.558 unclassified Taraxacum Taraxacum (sect. Crocea/Taraxacum) sp. 558 \N \N \N \N \N 70870 E.festucacea Eriachne Eriachne festucacea \N \N \N \N \N 70871 \N genus Blepharispermum \N \N \N \N \N 70872 A.scarlatinum Amomum Amomum scarlatinum \N \N \N \N \N 70873 B.heteropetala Blepharandra Blepharandra heteropetala \N \N \N \N \N 70874 C.pellita Calystegia Calystegia pellita \N \N \N \N \N 70875 M.karinensis Microcharis Microcharis karinensis \N \N \N \N \N 70876 B.occidentalis Bussea Bussea occidentalis \N \N \N \N \N 70877 O.adenophylla Oxalis Oxalis adenophylla \N \N \N \N \N 70878 T.subnudum Thelesperma Thelesperma subnudum \N \N \N \N \N 70879 X.semiplana Xanthorrhoea Xanthorrhoea semiplana \N \N \N \N \N 70880 G.batesiana Gasteria Gasteria batesiana \N \N \N \N \N 70881 H.foliosum Hypericum Hypericum foliosum \N \N \N \N \N 70882 \N genus Mimulus monkey flowers \N \N \N \N 70883 O.KMC-2005 Oberonia Oberonia sp. KMC-2005 \N \N \N \N \N 70884 \N varietas Osmanthus fragrans var. thunbergii \N \N \N \N \N 70885 T.aralioides Trochodendron Trochodendron aralioides \N \N \N \N \N 70886 C.oligantha Calanticaria Calanticaria oligantha \N \N \N \N \N 70887 C.heterochrous Cytisus Cytisus heterochrous \N \N \N \N \N 70888 S.multipetalum Syzygium Syzygium multipetalum \N \N \N \N \N 70889 C.lanatus Citrullus Citrullus lanatus wild melon \N \N \N \N 70890 H.nobilis Hepatica Hepatica nobilis \N \N \N \N \N 70891 E.brevilobus Euryops Euryops brevilobus \N \N \N \N \N 70892 A.bisulca Androsace Androsace bisulca \N \N \N \N \N 70893 \N subspecies Onobrychis alba subsp. laconica \N \N \N \N \N 70894 A.marschalliana Archanthemis Archanthemis marschalliana \N \N \N \N \N 70895 L.straminea Lycoris Lycoris straminea \N \N \N \N \N 70896 O.picensis Oenothera Oenothera picensis \N \N \N \N \N 70897 L.acidissima Limonia Limonia acidissima Indian wood-apple,elephant-apple \N \N \N \N 70898 C.tuberosa Claytonia Claytonia tuberosa \N \N \N \N \N 70899 S.microstyla Symplocos Symplocos microstyla \N \N \N \N \N 70900 A.nervosa Argyreia Argyreia nervosa \N \N \N \N \N 70901 C.thessala Campanula Campanula thessala \N \N \N \N \N 70902 S.foetida Sutera Sutera foetida \N \N \N \N \N 70903 L.peruviana Larnax Larnax peruviana \N \N \N \N \N 70904 R.monosperma Renealmia Renealmia monosperma \N \N \N \N \N 70905 P.saxicola Pleione Pleione saxicola \N \N \N \N \N 70906 C.halleriana Carex Carex halleriana \N \N \N \N \N 70907 O.micrantha Oligarrhena Oligarrhena micrantha \N \N \N \N \N 70908 T.simile Trillium Trillium simile \N \N \N \N \N 70909 G.rhonhofiana Guzmania Guzmania rhonhofiana \N \N \N \N \N 70910 S.lamprocarpum Solanum Solanum lamprocarpum \N \N \N \N \N 70911 D.exigua Dalea Dalea exigua \N \N \N \N \N 70912 H.cannabinus Hibiscus Hibiscus cannabinus Indian-hemp,bimli-jute,kenaf \N \N \N \N 70913 O.quadrisulca Ossaea Ossaea quadrisulca \N \N \N \N \N 70914 L.pallida Lachenalia Lachenalia pallida \N \N \N \N \N 70915 R.dryadum Randia Randia dryadum \N \N \N \N \N 70916 A.kweichowensis Actinodaphne Actinodaphne kweichowensis \N \N \N \N \N 70917 P.takedana Primula Primula takedana \N \N \N \N \N 70918 S.pflanzii Setaria Setaria pflanzii \N \N \N \N \N 70919 C.lawii Ceropegia Ceropegia lawii \N \N \N \N \N 70920 M.mossambica Momordica Momordica mossambica \N \N \N \N \N 70921 P.resupinata Pleurothallis Pleurothallis resupinata \N \N \N \N \N 70922 \N genus Aitchisonia \N \N \N \N \N 70923 \N subspecies Zilla spinosa subsp. spinosa \N \N \N \N \N 70924 D.amoenum Dendrobium Dendrobium amoenum \N \N \N \N \N 70925 C.pubescens Ceropegia Ceropegia pubescens \N \N \N \N \N 70926 G.lasiocalyx Gyrocheilos Gyrocheilos lasiocalyx \N \N \N \N \N 70927 \N varietas Rosa clinophylla var. clinophylla \N \N \N \N \N 70928 H.gymnocerinthe Hieracium Hieracium gymnocerinthe \N \N \N \N \N 70929 D.arborea Dichaetanthera Dichaetanthera arborea \N \N \N \N \N 70930 B.sylvaticum Brachypodium Brachypodium sylvaticum \N \N \N \N \N 70931 C.globosa Cordylogyne Cordylogyne globosa \N \N \N \N \N 70932 P.macrocarpus Pholidocarpus Pholidocarpus macrocarpus \N \N \N \N \N 70933 C.usambarica Crotonogynopsis Crotonogynopsis usambarica \N \N \N \N \N 70934 E.leucosiphon Erica Erica leucosiphon \N \N \N \N \N 70935 M.caffra Maerua Maerua caffra \N \N \N \N \N 70936 \N genus Xerochloa \N \N \N \N \N 70937 C.cretica Campanula Campanula cretica \N \N \N \N \N 70938 Z.tetragona Zapoteca Zapoteca tetragona \N \N \N \N \N 70939 C.muelleri Canarium Canarium muelleri \N \N \N \N \N 70940 \N no rank Saccharum hybrid cultivar Co 1148 \N \N \N \N \N 70941 B.martiniana Blumea Blumea martiniana \N \N \N \N \N 70942 G.arkansanum Galium Galium arkansanum \N \N \N \N \N 70943 B.latifolia Bulbine Bulbine latifolia \N \N \N \N \N 70944 \N genus Isoplexis \N \N \N \N \N 70945 V.tubata Detzneria Veronica tubata \N \N \N \N \N 70946 P.johimbe Pausinystalia Pausinystalia johimbe \N \N \N \N \N 70947 \N subspecies Anacamptis coriophora subsp. coriophora \N \N \N \N \N 70948 C.chionophila Cousinia Cousinia chionophila \N \N \N \N \N 70949 A.bidwilli Acacia Acacia bidwilli \N \N \N \N \N 70950 S.mascotensis Stevia Stevia mascotensis \N \N \N \N \N 70951 S.lacteus Schizanthus Schizanthus lacteus \N \N \N \N \N 70952 \N subspecies Gentiana verna subsp. oschtenica \N \N \N \N \N 70953 \N genus Geigeria \N \N \N \N \N 70954 V.leptospermoides Vaccinium Vaccinium leptospermoides \N \N \N \N \N 70955 S.paniculata Swertia Swertia paniculata \N \N \N \N \N 70956 A.franciscana Arctostaphylos Arctostaphylos franciscana \N \N \N \N \N 70957 S.substolonifera Salvia Salvia substolonifera \N \N \N \N \N 70958 C.pectinellum Cirsium Cirsium pectinellum \N \N \N \N \N 70959 \N genus Clinopodium \N \N \N \N \N 70960 S.malacostachyum Schizachyrium Schizachyrium malacostachyum \N \N \N \N \N 70961 \N genus Raillardella \N \N \N \N \N 70962 G.9534 Guatteria Guatteria cf. amplifolia Maas et al. 9534 \N \N \N \N \N 70963 \N genus Populus poplar,poplar trees,poplars \N \N \N \N 70964 E.maculatus Echinodorus Echinodorus maculatus \N \N \N \N \N 70965 E.craspedia Euphorbia Euphorbia craspedia \N \N \N \N \N 70966 \N genus Harbouria \N \N \N \N \N 70967 \N genus Miscanthus silver grass \N \N \N \N 70968 D.105834 Dracophilus Dracophilus sp. Juergens 105834 \N \N \N \N \N 70969 I.pernyi Ilex Ilex pernyi Perny's holly \N \N \N \N 70970 E.obesa Euphorbia Euphorbia obesa \N \N \N \N \N 70971 \N varietas Reldia minutiflora var. veraguensis \N \N \N \N \N 70972 L.2055 Leucaena Leucaena hybrid sp. Hughes 2055 \N \N \N \N \N 70973 \N varietas Draba corrugata var. corrugata \N \N \N \N \N 70974 O.unguiculata Onira Onira unguiculata \N \N \N \N \N 70975 A.goebeliana Aglaia Aglaia goebeliana \N \N \N \N \N 70976 V.bulbosa Valeriana Valeriana bulbosa \N \N \N \N \N 70977 \N genus Chrysanthellum \N \N \N \N \N 70978 T.lepiniana Trichosanthes Trichosanthes lepiniana \N \N \N \N \N 70979 L.compactum Ligustrum Ligustrum compactum \N \N \N \N \N 70980 E.trifidus Erigeron Erigeron trifidus Alberta fleabane \N \N \N \N 70981 C.squarrosa Carex Carex squarrosa \N \N \N \N \N 70982 L.hispidus Lagarosolen Lagarosolen hispidus \N \N \N \N \N 70983 \N genus Crossostephium \N \N \N \N \N 70984 C.brunnea Carex Carex brunnea \N \N \N \N \N 70985 L.squamigera Lycoris Lycoris squamigera magic lily,pink ladies \N \N \N \N 70986 E.hypnoides Euryops Euryops hypnoides \N \N \N \N \N 70987 P.sabaletasanum Piper Piper sabaletasanum \N \N \N \N \N 70988 F.sewerzowii Fritillaria Fritillaria sewerzowii \N \N \N \N \N 70989 \N genus Huertea \N \N \N \N \N 70990 M.adendrobium Maxillaria Maxillaria adendrobium \N \N \N \N \N 70991 P.pauta Polylepis Polylepis pauta \N \N \N \N \N 70992 S.szyszylowiczii Senecio Senecio szyszylowiczii \N \N \N \N \N 70993 S.asperrimum Silphium Silphium asperrimum \N \N \N \N \N 70994 A.orurensis Anatherostipa Anatherostipa orurensis \N \N \N \N \N 70995 P.leucocarpa Pravinaria Pravinaria leucocarpa \N \N \N \N \N 70996 M.Group Musa Musa textilis x Musa ABB Group \N \N \N \N \N 70997 P.2000 Pseudosedum Pseudosedum sp. Ogisu 2000 \N \N \N \N \N 70998 G.pusillus Geococcus Geococcus pusillus \N \N \N \N \N 70999 P.hispidula Pultenaea Pultenaea hispidula \N \N \N \N \N 71000 R.strobilophora Ramirezella Ramirezella strobilophora \N \N \N \N \N 71001 N.grandis Nothofagus Nothofagus grandis \N \N \N \N \N 71002 \N genus Bogoria \N \N \N \N \N 71003 G.AK-2011 Genista Genista cf. stenopetala AK-2011 \N \N \N \N \N 71004 H.latebrosa Hemigraphis Hemigraphis latebrosa \N \N \N \N \N 71005 \N genus Lawrencia \N \N \N \N \N 71006 \N genus Jaeschkea \N \N \N \N \N 71007 \N genus Umbellularia \N \N \N \N \N 71008 E.incerta Eugenia Eugenia incerta \N \N \N \N \N 86936 M.nana Maresia Maresia nana \N \N \N \N \N 71009 A.lineare Allium Allium lineare \N \N \N \N \N 71010 L.minor Lecythis Lecythis minor \N \N \N \N \N 71011 E.tenue Echium Echium tenue \N \N \N \N \N 71012 \N subspecies Aframomum subsericeum subsp. subsericeum \N \N \N \N \N 71013 F.cephalophora Fimbristylis Fimbristylis cephalophora \N \N \N \N \N 71014 S.leucantha Schefflera Schefflera leucantha \N \N \N \N \N 71015 C.carbonaria Calliandra Calliandra carbonaria \N \N \N \N \N 71016 S.purgans Saurauia Saurauia purgans \N \N \N \N \N 71017 M.14071 Machilus Machilus sp. van der Werff & al. 14071 \N \N \N \N \N 71018 N.alessandri Nothofagus Nothofagus alessandri \N \N \N \N \N 71019 C.apiculatus Calochortus Calochortus apiculatus \N \N \N \N \N 71020 C.griffithii Cercis Cercis griffithii \N \N \N \N \N 71021 S.acre Sisyrinchium Sisyrinchium acre \N \N \N \N \N 71022 G.erythrocarpa Glycyrrhiza Glycyrrhiza erythrocarpa \N \N \N \N \N 71023 A.hirta Aspalathus Aspalathus hirta \N \N \N \N \N 71024 T.luridum Taraxacum Taraxacum luridum \N \N \N \N \N 71025 O.reversoides Oncidium Oncidium reversoides \N \N \N \N \N 71026 C.americanum Crinum Crinum americanum \N \N \N \N \N 71027 R.cretinii Rhodiola Rhodiola cretinii \N \N \N \N \N 71028 \N genus Petroedmondia \N \N \N \N \N 71029 T.ovata Tylophora Tylophora ovata \N \N \N \N \N 71030 C.3778 Crassula Crassula aff. perforata Fishbein 3778 \N \N \N \N \N 71031 B.odorata Babiana Babiana odorata \N \N \N \N \N 71032 P.truncata Periarrabidaea Periarrabidaea truncata \N \N \N \N \N 71033 P.planifolia Pinguicula Pinguicula planifolia Chapman's butterwort \N \N \N \N 71034 C.petiolare Chenopodium Chenopodium petiolare \N \N \N \N \N 71035 L.brownii Lilium Lilium brownii Hong Kong lily,ye bai he \N \N \N \N 71036 \N genus Spirolobium \N \N \N \N \N 71037 S.rigidum Seseli Seseli rigidum \N \N \N \N \N 71038 P.petiolaris Planocarpa Planocarpa petiolaris \N \N \N \N \N 71039 A.lakoocha Artocarpus Artocarpus lakoocha monkeyfruit \N \N \N \N 71040 P.olyroides Panicum Panicum olyroides \N \N \N \N \N 71041 F.capuronii Fenerivia Fenerivia capuronii \N \N \N \N \N 71042 E.dubjanskyi Echinops Echinops dubjanskyi \N \N \N \N \N 71043 P.lanaiensis Pritchardia Pritchardia lanaiensis \N \N \N \N \N 71044 D.maingayi Dendropanax Dendropanax maingayi \N \N \N \N \N 71045 U.dichotoma Utricularia Utricularia dichotoma \N \N \N \N \N 71046 S.agrimonifolium Solanum Solanum agrimonifolium \N \N \N \N \N 71047 O.siamensis Ophiopogon Ophiopogon siamensis \N \N \N \N \N 71048 E.austinae Eburophyton Eburophyton austinae phantom orchid \N \N \N \N 71049 M.buxifolia Maytenus Maytenus buxifolia \N \N \N \N \N 71050 C.apicicephalium Cephalocereus Cephalocereus apicicephalium \N \N \N \N \N 71051 O.henryi Ormosia Ormosia henryi \N \N \N \N \N 71052 C.BG Cyclopogon Cyclopogon sp. 1 Hannover BG \N \N \N \N \N 71053 S.tuvinica Suaeda Suaeda tuvinica \N \N \N \N \N 71054 S.pinetorum Solanum Solanum pinetorum \N \N \N \N \N 71055 S.flaccidifolius Scirpus Scirpus flaccidifolius \N \N \N \N \N 71056 I.leucoloma Isolepis Isolepis leucoloma \N \N \N \N \N 71057 C.beldingii Clevelandia Clevelandia beldingii \N \N \N \N \N 71058 P.sessiliflora Pagamea Pagamea sessiliflora \N \N \N \N \N 71059 H.longicarpa Hemsleya Hemsleya longicarpa \N \N \N \N \N 71060 R.nakotiltum Rhododendron Rhododendron nakotiltum \N \N \N \N \N 71061 R.brandisii Roscoea Roscoea brandisii \N \N \N \N \N 71062 A.cornucopioides Aphanes Aphanes cornucopioides \N \N \N \N \N 71063 P.raimondii Persea Persea raimondii \N \N \N \N \N 71064 B.boissieuanum Bupleurum Bupleurum boissieuanum \N \N \N \N \N 71065 C.bulbocodium Colchicum Colchicum bulbocodium \N \N \N \N \N 71066 F.ramosissima Flaveria Flaveria ramosissima \N \N \N \N \N 71067 S.bauensis Schismatoglottis Schismatoglottis bauensis \N \N \N \N \N 71068 D.alpina Draba Draba alpina alpine draba \N \N \N \N 71069 D.oinochrophylla Drymonia Drymonia oinochrophylla \N \N \N \N \N 71070 \N tribe Greeneeae \N \N \N \N \N 71071 P.calva Phalacrachena Phalacrachena calva \N \N \N \N \N 71072 \N subspecies Prenia pallens subsp. namaquensis \N \N \N \N \N 71073 \N subspecies Silene laciniata subsp. californica Indian pink \N \N \N \N 71074 \N subtribe Tetraneurinae \N \N \N \N \N 71075 \N genus Imerinaea \N \N \N \N \N 71076 \N genus Faramea \N \N \N \N \N 71077 C.ptychocarpa Corymbia Corymbia ptychocarpa \N \N \N \N \N 71078 M.roseus Malleostemon Malleostemon roseus \N \N \N \N \N 71079 H.novae-zealandiae Hydrocotyle Hydrocotyle novae-zealandiae \N \N \N \N \N 71080 M.campanulata Maxillaria Maxillaria campanulata \N \N \N \N \N 71081 D.dunsdonii Disphyma Disphyma dunsdonii \N \N \N \N \N 71082 P.meiniana Paphia Paphia meiniana \N \N \N \N \N 71083 C.moschata Cucurbita Cucurbita moschata Canada pumpkin,ayote,crookneck pumpkin,crookneck winter squash,cushaw squash,lacayote \N \N \N \N 71084 E.mexicana Espejoa Espejoa mexicana \N \N \N \N \N 71085 \N genus Moultonianthus \N \N \N \N \N 71086 A.barbinervis Adelia Adelia barbinervis \N \N \N \N \N 71087 \N genus Apoballis \N \N \N \N \N 71088 R.decemcostata Randia Randia decemcostata \N \N \N \N \N 71089 B.gardneriana Banisteriopsis Banisteriopsis gardneriana \N \N \N \N \N 71090 C.striata Carex Carex striata \N \N \N \N \N 71091 G.tomentosum Gossypium Gossypium tomentosum \N \N \N \N \N 71092 R.obovata Ruprechtia Ruprechtia obovata \N \N \N \N \N 71093 P.novocaledonica Pichonia Pichonia novocaledonica \N \N \N \N \N 71094 C.oromediterraneus Cytisus Cytisus oromediterraneus \N \N \N \N \N 71095 P.AR-2009 Polystachya Polystachya cf. rosea AR-2009 \N \N \N \N \N 71096 I.swensoniana Iris Iris swensoniana \N \N \N \N \N 71097 S.diploscypha Sidalcea Sidalcea diploscypha \N \N \N \N \N 71098 D.fargesii Dichocarpum Dichocarpum fargesii \N \N \N \N \N 71099 R.sweginzowii Rosa Rosa sweginzowii \N \N \N \N \N 71100 \N varietas Santalum freycinetianum var. pyrularium \N \N \N \N \N 71101 \N varietas Allium flavum var. minus \N \N \N \N \N 71102 \N genus Manaosella \N \N \N \N \N 71103 H.AHK-2009 Hexalectris Hexalectris sp. AHK-2009 \N \N \N \N \N 71104 M.sessilifolius Mimulus Mimulus sessilifolius \N \N \N \N \N 71105 K.rhombopilosa Kalanchoe Kalanchoe rhombopilosa \N \N \N \N \N 71106 \N no rank unclassified Bignoniaceae \N \N \N \N \N 71107 A.odorata Aerides Aerides odorata \N \N \N \N \N 71108 \N genus Neosciadium \N \N \N \N \N 71109 R.hemsleyana Rosa Rosa hemsleyana \N \N \N \N \N 71110 A.repens Arachis Arachis repens \N \N \N \N \N 71111 T.indica Tamarindus Tamarindus indica tamarind \N \N \N \N 71112 T.paucilobum Taraxacum Taraxacum paucilobum \N \N \N \N \N 71113 C.avellanedae Chuquiraga Chuquiraga avellanedae \N \N \N \N \N 71114 E.supinum Erucastrum Erucastrum supinum \N \N \N \N \N 71115 P.bicornis Petrorchis Petrorchis bicornis \N \N \N \N \N 71116 M.leiocalyca Malus Malus leiocalyca \N \N \N \N \N 71117 P.jaffrei Polyscias Polyscias jaffrei \N \N \N \N \N 71118 M.domingensis Macrocarpaea Macrocarpaea domingensis \N \N \N \N \N 71119 C.depressa Cressa Cressa depressa \N \N \N \N \N 71120 \N subfamily Prostantheroideae \N \N \N \N \N 71121 P.regalis Paepalanthus Paepalanthus regalis \N \N \N \N \N 71122 T.serpyllum Thymus Thymus serpyllum creeping thyme,mother-of-thyme,serpolet,tomillo \N \N \N \N 71123 P.maximowiczii Populus Populus maximowiczii \N \N \N \N \N 71124 P.delavayi Pleione Pleione delavayi \N \N \N \N \N 71125 \N varietas Weigela japonica var. sinica \N \N \N \N \N 71126 A.tenerifae Argyranthemum Argyranthemum tenerifae \N \N \N \N \N 71127 A.longipetiolatum Aframomum Aframomum longipetiolatum \N \N \N \N \N 71128 \N no rank Tabebuia /Crescentieae clade unassigned \N \N \N \N \N 71129 \N genus Danae \N \N \N \N \N 71130 \N genus Versteegia \N \N \N \N \N 71131 \N tribe Amorpheae \N \N \N \N \N 71132 S.arctopoides Sanicula Sanicula arctopoides footsteps of spring \N \N \N \N 71134 C.odgersii Cyphanthera Cyphanthera odgersii \N \N \N \N \N 71135 R.rubus Rosa Rosa rubus \N \N \N \N \N 71136 S.aspera Selago Selago aspera \N \N \N \N \N 71137 \N order Magnoliales \N \N \N \N \N 71138 E.echinulata Euphorbia Euphorbia echinulata \N \N \N \N \N 71139 G.glutinosum Gymnosperma Gymnosperma glutinosum gumhead \N \N \N \N 71140 H.flabelliformis Halosarcia Halosarcia flabelliformis \N \N \N \N \N 71141 P.macrostachya Peperomia Peperomia macrostachya \N \N \N \N \N 71142 G.quehlianum Gymnocalycium Gymnocalycium quehlianum \N \N \N \N \N 71143 \N varietas Lyrocarpa coulteri var. coulteri \N \N \N \N \N 71144 \N family Aextoxicaceae \N \N \N \N \N 71145 O.tapona Opuntia Opuntia tapona \N \N \N \N \N 71146 P.decorifolia Psychotria Psychotria decorifolia \N \N \N \N \N 71147 A.compactum Atocion Atocion compactum \N \N \N \N \N 71148 S.kimurana Salix Salix kimurana \N \N \N \N \N 71149 T.concreta Thecanthes Thecanthes concreta \N \N \N \N \N 71150 T.pyroppapum Taraxacum Taraxacum pyroppapum \N \N \N \N \N 71151 S.speciosum Stenorrhynchos Stenorrhynchos speciosum \N \N \N \N \N 71152 S.lucida Searsia Searsia lucida \N \N \N \N \N 71153 A.recurvus Ancistrorhynchus Ancistrorhynchus recurvus \N \N \N \N \N 71154 \N subspecies Hemizonia congesta subsp. congesta \N \N \N \N \N 71155 A.maurorum Alhagi Alhagi maurorum \N \N \N \N \N 71156 X.cultivar x Beallara x Beallara hybrid cultivar \N \N \N \N \N 71157 C.microcarpa Carapa Carapa microcarpa \N \N \N \N \N 71158 G.alpina Grevillea Grevillea alpina \N \N \N \N \N 71159 C.estrellensis Cariniana Cariniana estrellensis \N \N \N \N \N 71160 A.campylopodum Arceuthobium Arceuthobium campylopodum \N \N \N \N \N 71161 \N varietas Haworthia mirabilis var. triebneriana \N \N \N \N \N 71162 M.calvescens Miconia Miconia calvescens \N \N \N \N \N 71163 B.chrysantha Brasiliorchis Brasiliorchis chrysantha \N \N \N \N \N 71164 T.abyssinicum Triodoglossum Triodoglossum abyssinicum \N \N \N \N \N 71165 \N genus Hydrochorea \N \N \N \N \N 71166 A.ananassoides Ananas Ananas ananassoides \N \N \N \N \N 71167 \N genus Aeollanthus \N \N \N \N \N 71168 G.boliviana Gomphrena Gomphrena boliviana \N \N \N \N \N 71169 \N subspecies Angraecum eburneum subsp. superbum \N \N \N \N \N 71170 P.dimorphophylla Pyrus Pyrus dimorphophylla \N \N \N \N \N 71171 \N genus Cymbocarpa \N \N \N \N \N 71172 S.36019 Sidalcea Sidalcea sp. Clifton 36019 \N \N \N \N \N 71173 P.interior Poa Poa interior \N \N \N \N \N 71174 P.ulugurica Phyllopentas Phyllopentas ulugurica \N \N \N \N \N 71175 D.hirsuta Dichroa Dichroa hirsuta \N \N \N \N \N 71176 C.liberica Coffea Coffea arabica x Coffea liberica \N \N \N \N \N 71177 G.platypetalum Geranium Geranium platypetalum \N \N \N \N \N 71178 G.luteoides Gagea Gagea luteoides \N \N \N \N \N 71179 \N varietas Lonicera caerulea var. altaica \N \N \N \N \N 71180 C.dasyantha Campanula Campanula dasyantha \N \N \N \N \N 71181 D.decaryi Dypsis Dypsis decaryi \N \N \N \N \N 71182 G.insana Gaultheria Gaultheria insana \N \N \N \N \N 71183 \N genus Disocactus \N \N \N \N \N 71184 P.macrosiphon Pedicularis Pedicularis macrosiphon \N \N \N \N \N 71185 U.oliveriana Utricularia Utricularia oliveriana \N \N \N \N \N 71186 S.paludosum Solanum Solanum paludosum \N \N \N \N \N 71187 T.scandens Tetracera Tetracera scandens \N \N \N \N \N 71188 A.magellanica Acaena Acaena magellanica \N \N \N \N \N 71189 \N varietas Ilex decidua var. curtissii \N \N \N \N \N 71190 R.cochinchinensis Rubus Rubus cochinchinensis \N \N \N \N \N 71191 R.macrolobum Rhytidocaulon Rhytidocaulon macrolobum \N \N \N \N \N 71192 A.oligophylla Angkalanthus Angkalanthus oligophylla \N \N \N \N \N 71193 \N genus Neoconopodium \N \N \N \N \N 71194 F.gasparriniana Ficus Ficus gasparriniana \N \N \N \N \N 71195 H.6674 Harpochloa Harpochloa sp. Smook 6674 \N \N \N \N \N 71196 C.MG384 Clusia Clusia sp. MG384 \N \N \N \N \N 71197 J.pallida Joycea Joycea pallida \N \N \N \N \N 71198 E.alata Eurya Eurya alata \N \N \N \N \N 71199 B.penicillata Banksia Banksia penicillata \N \N \N \N \N 71200 \N varietas Echinochloa crus-galli var. praticola \N \N \N \N \N 71201 P.acerifolia Platanus Platanus x acerifolia London plane tree \N \N \N \N 71202 J.brevipes Jacqueshuberia Jacqueshuberia brevipes \N \N \N \N \N 71203 L.inflata Leucas Leucas inflata \N \N \N \N \N 71204 A.lindneri Aristolochia Aristolochia lindneri \N \N \N \N \N 71205 H.retortum Helichrysum Helichrysum retortum \N \N \N \N \N 71206 C.mollissima Castanea Castanea mollissima Chinese chestnut \N \N \N \N 71207 P.brevipes Pachira Pachira brevipes \N \N \N \N \N 71208 C.reverchonii Cathissa Cathissa reverchonii \N \N \N \N \N 71209 H.psittacorum Heliconia Heliconia psittacorum \N \N \N \N \N 71210 S.fragilis Saxifraga Saxifraga fragilis \N \N \N \N \N 71211 B.hirsuta Bomarea Bomarea hirsuta \N \N \N \N \N 71212 \N genus Clitoria \N \N \N \N \N 71213 E.'Brazil' Eleocharis Eleocharis sp. 'Brazil' \N \N \N \N \N 71214 S.gracilior Salix Salix gracilior \N \N \N \N \N 71215 \N genus Melhania \N \N \N \N \N 71216 S.russelliana Schlumbergera Schlumbergera russelliana \N \N \N \N \N 71217 C.elliptica Cassipourea Cassipourea elliptica \N \N \N \N \N 71218 S.xiaozhongdianensis Saxifraga Saxifraga xiaozhongdianensis \N \N \N \N \N 71219 A.karibaensis Adenia Adenia karibaensis \N \N \N \N \N 71220 A.eriosolenus Anulocaulis Anulocaulis eriosolenus \N \N \N \N \N 71221 G.grandifolia Guarea Guarea grandifolia \N \N \N \N \N 71222 \N genus Lasiochlamys \N \N \N \N \N 71223 E.volubilis Ercilla Ercilla volubilis \N \N \N \N \N 71224 I.TP-2009 Inga Inga sp. 12 TP-2009 \N \N \N \N \N 71225 S.crinita Schulzia Schulzia crinita \N \N \N \N \N 71226 P.articulata Pectinaria Pectinaria articulata \N \N \N \N \N 71227 M.kermadecensis Myrsine Myrsine kermadecensis \N \N \N \N \N 71228 M.BG91-218 Melastoma Melastoma sp. BG91-218 \N \N \N \N \N 71229 C.carduifolia Caiophora Caiophora carduifolia \N \N \N \N \N 71230 \N subtribe Puccinelliinae \N \N \N \N \N 71231 R.cortusifolius Ranunculus Ranunculus cortusifolius \N \N \N \N \N 71232 T.dasyliriifolia Tillandsia Tillandsia dasyliriifolia \N \N \N \N \N 71233 \N genus Ceratolobus \N \N \N \N \N 71234 R.marcescens Ruilopezia Ruilopezia marcescens \N \N \N \N \N 71235 A.congolensis Ancistrocladus Ancistrocladus congolensis \N \N \N \N \N 71236 P.subhirtella Prunus Prunus subhirtella Higan cherry \N \N \N \N 71237 \N tribe Calycophylleae \N \N \N \N \N 71238 C.virginica Commelina Commelina virginica \N \N \N \N \N 71239 L.subbiflorus Lotus Lotus subbiflorus \N \N \N \N \N 71240 \N genus Gastrococos \N \N \N \N \N 71241 C.debilis Clidemia Clidemia debilis \N \N \N \N \N 71242 E.maritimum Erodium Erodium maritimum \N \N \N \N \N 71243 \N genus Ezoloba \N \N \N \N \N 71244 R.'breviseta' Rytidosperma Rytidosperma aff. setaceum 'breviseta' \N \N \N \N \N 71245 R.muricata Reseda Reseda muricata \N \N \N \N \N 71246 A.prattii Allium Allium prattii \N \N \N \N \N 71247 P.1703 Pachyphyllum Pachyphyllum sp. Whitten 1703 \N \N \N \N \N 71248 M.ardesiaca Moraea Moraea ardesiaca \N \N \N \N \N 71249 C.duartianum Cinnamomum Cinnamomum duartianum \N \N \N \N \N 71250 O.incarnata Oxalis Oxalis incarnata \N \N \N \N \N 71251 A.simplicifolia Astilbe Astilbe simplicifolia \N \N \N \N \N 71252 N.rosulatum Notothlaspi Notothlaspi rosulatum \N \N \N \N \N 71253 V.aspilioides Viguiera Viguiera aspilioides \N \N \N \N \N 71254 C.alpina Chamaemespilus Chamaemespilus alpina \N \N \N \N \N 71255 E.corazonensis Ericentrodea Ericentrodea corazonensis \N \N \N \N \N 71256 H.dennisii Hoya Hoya dennisii \N \N \N \N \N 71257 C.11912 Chlorospatha Chlorospatha sp. Chase 11912 \N \N \N \N \N 71258 \N genus Tetroncium \N \N \N \N \N 71259 M.pungens Muraltia Muraltia pungens \N \N \N \N \N 71260 C.tenella Cardamine Cardamine tenella \N \N \N \N \N 71261 C.longilobus Cymopterus Cymopterus longilobus \N \N \N \N \N 71262 L.alabamica Leavenworthia Leavenworthia alabamica \N \N \N \N \N 71263 C.sambavensis Coffea Coffea sambavensis \N \N \N \N \N 71264 C.difformis Cyperus Cyperus difformis \N \N \N \N \N 71265 C.africanus Cucumis Cucumis africanus \N \N \N \N \N 71266 N.clipeata Nepenthes Nepenthes clipeata \N \N \N \N \N 71267 T.6006 Tetrastigma Tetrastigma sp. 6006 \N \N \N \N \N 71268 S.bogneri Scirpodendron Scirpodendron bogneri \N \N \N \N \N 71269 W.stuhlmannii Whitfieldia Whitfieldia stuhlmannii \N \N \N \N \N 71270 E.eremophila Euphorbia Euphorbia eremophila \N \N \N \N \N 71271 N.northiana Neomarica Neomarica northiana \N \N \N \N \N 71272 \N genus Boeberastrum \N \N \N \N \N 71273 A.goochiae Aeonium Aeonium goochiae \N \N \N \N \N 71274 V.macrophyllum Vincetoxicum Vincetoxicum macrophyllum \N \N \N \N \N 71275 C.amblyolepis Cota Cota amblyolepis \N \N \N \N \N 71276 R.hispidus Rubus Rubus hispidus running blackberry,swamp blackberry,swamp dewberry \N \N \N \N 71277 L.listii Lotononis Lotononis listii \N \N \N \N \N 71278 C.penduliflora Cobaea Cobaea penduliflora \N \N \N \N \N 71279 N.gloeocephala Nepeta Nepeta gloeocephala \N \N \N \N \N 71280 \N subspecies Armeria sardoa subsp. sardoa \N \N \N \N \N 71281 C.anethoides Cymbocarpum Cymbocarpum anethoides \N \N \N \N \N 71282 G.ferrarii Gymnocalycium Gymnocalycium ferrarii \N \N \N \N \N 71283 \N genus Macroscepis \N \N \N \N \N 71284 \N genus Lagenocarpus \N \N \N \N \N 71285 \N genus Kalopanax \N \N \N \N \N 71286 D.syrticus Daucus Daucus syrticus \N \N \N \N \N 71287 D.sessilifolia Drosera Drosera sessilifolia \N \N \N \N \N 71288 P.areolatocostae Persea Persea areolatocostae \N \N \N \N \N 71289 J.aquatica Jacobaea Jacobaea aquatica water ragwort \N \N \N \N 71290 V.sericocarpa Vicia Vicia sericocarpa \N \N \N \N \N 71291 S.niveoaureus Senecio Senecio niveoaureus \N \N \N \N \N 71292 H.vernalis Hylomecon Hylomecon vernalis \N \N \N \N \N 71293 \N genus Rhynchoryza \N \N \N \N \N 71294 B.cinerascens Bronwenia Bronwenia cinerascens \N \N \N \N \N 71295 N.crassulifolia Nolana Nolana crassulifolia \N \N \N \N \N 71296 \N genus Chymsydia \N \N \N \N \N 71297 T.brevipes Trigonotis Trigonotis brevipes \N \N \N \N \N 71298 P.heterophylla Pamphalea Pamphalea heterophylla \N \N \N \N \N 71299 E.quinquenervium Exacum Exacum quinquenervium \N \N \N \N \N 71300 K.trianae Kohleria Kohleria trianae \N \N \N \N \N 71301 F.decurrens Ferula Ferula decurrens \N \N \N \N \N 71302 E.Esp12 Elleanthus Elleanthus sp. Esp12 \N \N \N \N \N 71303 \N genus Austrocactus \N \N \N \N \N 71304 A.hedraeantha Androsace Androsace hedraeantha \N \N \N \N \N 71305 \N genus Sicydium \N \N \N \N \N 71306 N.fendleri Noccaea Noccaea fendleri \N \N \N \N \N 71307 \N genus Centropappus \N \N \N \N \N 71308 S.viscida Stevia Stevia viscida \N \N \N \N \N 71309 L.quinatus Lotus Lotus quinatus \N \N \N \N \N 71310 C.mossiae Cattleya Cattleya mossiae \N \N \N \N \N 71311 C.lindheimerianus Croton Croton lindheimerianus \N \N \N \N \N 71312 L.gracieana Lecythis Lecythis gracieana \N \N \N \N \N 71313 D.kurilensis Draba Draba kurilensis \N \N \N \N \N 71314 L.bolanderi Leptosiphon Leptosiphon bolanderi \N \N \N \N \N 71315 D.muscoides Drapetes Drapetes muscoides \N \N \N \N \N 71316 M.worcesterensis Moraea Moraea worcesterensis \N \N \N \N \N 71317 P.mexicana Platanus Platanus mexicana \N \N \N \N \N 71318 E.pedunculare Epilobium Epilobium pedunculare \N \N \N \N \N 71319 C.holacantha Catesbaea Catesbaea holacantha \N \N \N \N \N 71320 \N varietas Penstemon davidsonii var. praeteritus \N \N \N \N \N 71321 E.latifolia Euphorbia Euphorbia latifolia \N \N \N \N \N 71322 M.brachycarpa Medicago Medicago brachycarpa \N \N \N \N \N 71323 \N subspecies Pectinaria longipes subsp. villetii \N \N \N \N \N 71324 D.ligulata Dolichopsis Dolichopsis ligulata \N \N \N \N \N 71325 M.insignis Melianthus Melianthus insignis \N \N \N \N \N 71326 S.chapelcoense Sisyrinchium Sisyrinchium chapelcoense \N \N \N \N \N 71327 M.sericantha Mimosa Mimosa sericantha \N \N \N \N \N 71328 C.albicans Cineraria Cineraria albicans \N \N \N \N \N 71329 S.cocculoides Strychnos Strychnos cocculoides \N \N \N \N \N 71330 P.AQ743890 Parakeelya Parakeelya sp. AQ743890 \N \N \N \N \N 71331 H.triflora Hillia Hillia triflora \N \N \N \N \N 71332 \N genus Herniaria \N \N \N \N \N 71333 G.foliosa Guatteria Guatteria foliosa \N \N \N \N \N 71334 T.ZDY-0019013 Tamarix Tamarix sp. ZDY-0019013 \N \N \N \N \N 71335 I.bucharica Iris Iris bucharica \N \N \N \N \N 71336 \N genus Centromadia \N \N \N \N \N 71337 E.arborea Erica Erica arborea brierroot,tree heath \N \N \N \N 71338 G.rubiginosa Glycine Glycine rubiginosa \N \N \N \N \N 71339 S.obovata Stewartia Stewartia obovata \N \N \N \N \N 71340 E.lacrimans Eucalyptus Eucalyptus lacrimans weeping snow gum \N \N \N \N 71341 S.microcarpus Scirpus Scirpus microcarpus \N \N \N \N \N 71342 C.pilosulum Cleisomeria Cleisomeria pilosulum \N \N \N \N \N 71343 D.glumaceum Dendrochilum Dendrochilum glumaceum \N \N \N \N \N 71344 \N genus Harrimanella \N \N \N \N \N 71345 B.elongata Brassica Brassica elongata \N \N \N \N \N 71346 A.borleae Acacia Acacia borleae \N \N \N \N \N 71347 D.hallackii Disa Disa hallackii \N \N \N \N \N 71348 O.funerea Ophrys Ophrys funerea \N \N \N \N \N 71349 A.vestita Asclepias Asclepias vestita \N \N \N \N \N 71350 L.nigropunctata Lysimachia Lysimachia nigropunctata \N \N \N \N \N 71351 C.pallasii Coptidium Coptidium pallasii \N \N \N \N \N 71352 P.margaritiferum Panicum Panicum margaritiferum \N \N \N \N \N 71353 D.bifalce Dendrobium Dendrobium bifalce \N \N \N \N \N 71354 C.henryana Camellia Camellia henryana \N \N \N \N \N 71355 \N varietas Croton lindheimerianus var. lindheimerianus \N \N \N \N \N 71356 A.campanulatus Agapanthus Agapanthus campanulatus \N \N \N \N \N 71357 P.fauriei Panicum Panicum fauriei \N \N \N \N \N 71358 \N genus Lindackeria \N \N \N \N \N 71359 C.thalictroides Caulophyllum Caulophyllum thalictroides blue cohosh,papooseroot \N \N \N \N 71360 I.punctata Inga Inga punctata \N \N \N \N \N 71361 \N genus Polyceratocarpus \N \N \N \N \N 71362 \N genus Columbiadoria \N \N \N \N \N 71363 U.uniflora Utricularia Utricularia uniflora \N \N \N \N \N 71364 C.paniculatum Clerodendrum Clerodendrum paniculatum \N \N \N \N \N 71365 C.dasycarpa Ctenanthe Ctenanthe dasycarpa \N \N \N \N \N 71366 \N genus Taraxis \N \N \N \N \N 71367 M.dioica Momordica Momordica dioica kaksa \N \N \N \N 71368 P.caryi Penstemon Penstemon caryi \N \N \N \N \N 71369 S.Esp6lita Sobralia Sobralia sp. Esp6lita \N \N \N \N \N 71370 B.acuminata Bauhinia Bauhinia acuminata dwarf white bauhinia \N \N \N \N 71371 P.neglecta Phacelia Phacelia neglecta alkali phacelia \N \N \N \N 71372 B.pumila Berlandiera Berlandiera pumila \N \N \N \N \N 71373 E.conspicua Eurybia Eurybia conspicua western showy aster \N \N \N \N 71374 P.spicatus Ptilotus Ptilotus spicatus \N \N \N \N \N 71375 C.cuspidata Cordylostigma Cordylostigma cuspidata \N \N \N \N \N 71376 F.iberica Festuca Festuca iberica \N \N \N \N \N 71377 S.cuspidata Stephanodaphne Stephanodaphne cuspidata \N \N \N \N \N 71378 V.hirsuta Vicia Vicia hirsuta \N \N \N \N \N 71379 H.serpyllifolia Halenia Halenia serpyllifolia \N \N \N \N \N 71380 A.feddeana Acacia Acacia feddeana \N \N \N \N \N 71381 S.aucheri Smyrniopsis Smyrniopsis aucheri \N \N \N \N \N 71382 M.candida Miltonia Miltonia candida \N \N \N \N \N 71383 \N genus Lophopterys \N \N \N \N \N 71384 C.gatchsaranica Cousinia Cousinia gatchsaranica \N \N \N \N \N 71385 \N subspecies Fragaria chiloensis subsp. sandwicensis \N \N \N \N \N 71386 A.rhodesiaca Anagallis Anagallis rhodesiaca \N \N \N \N \N 71387 G.s.n. Gomphichis Gomphichis sp. Szlachetko s.n. \N \N \N \N \N 71388 H.wallichii Heracleum Heracleum wallichii \N \N \N \N \N 71389 \N subspecies Arenaria tetraquetra subsp. murcica \N \N \N \N \N 71390 T.crispa Tephroseris Tephroseris crispa \N \N \N \N \N 71391 S.marchio Sisyrinchium Sisyrinchium marchio \N \N \N \N \N 71392 \N genus x Beallara \N \N \N \N \N 71393 H.hypericoides Hypericum Hypericum hypericoides \N \N \N \N \N 71394 B.scabrella Banksia Banksia scabrella \N \N \N \N \N 71395 A.wattii Arisaema Arisaema wattii \N \N \N \N \N 71396 E.aliceae Erigeron Erigeron aliceae \N \N \N \N \N 71397 G.perennis Gloxinia Gloxinia perennis \N \N \N \N \N 71398 G.boliviana Gunnera Gunnera boliviana \N \N \N \N \N 71399 L.ciliata Loeselia Loeselia ciliata \N \N \N \N \N 71400 B.dissecta Bouchea Bouchea dissecta \N \N \N \N \N 71401 M.resinosus Mallotus Mallotus resinosus \N \N \N \N \N 71402 P.jimenezii Psychotria Psychotria jimenezii \N \N \N \N \N 71403 \N genus Bruinsmia \N \N \N \N \N 71404 C.serrulata Conostylis Conostylis serrulata \N \N \N \N \N 71405 \N genus Chaetocarpus \N \N \N \N \N 71406 P.pseudoabbreviata Poa Poa pseudoabbreviata \N \N \N \N \N 71407 R.graminifolius Rumex Rumex graminifolius \N \N \N \N \N 71408 \N genus Haberlea \N \N \N \N \N 71409 E.glehnii Eupatorium Eupatorium glehnii \N \N \N \N \N 71410 \N family Elatinaceae \N \N \N \N \N 71411 T.eleusinoides Trichoneura Trichoneura eleusinoides \N \N \N \N \N 71412 A.lagopus Artemisia Artemisia lagopus \N \N \N \N \N 71413 S.punctata Saxifraga Saxifraga punctata \N \N \N \N \N 71414 C.auriculifolia Crepis Crepis auriculifolia \N \N \N \N \N 71415 \N genus Willkommia \N \N \N \N \N 71416 \N genus Medusanthera \N \N \N \N \N 71417 H.johannis Hydnora Hydnora johannis \N \N \N \N \N 71418 P.sample environmental samples Taxonomy:404789 Phaseoleae environmental sample \N \N \N \N \N 71419 H.1 Hydnophytum Hydnophytum sp. Danao 1 \N \N \N \N \N 71420 S.BG Sauroglossum Sauroglossum sp. Hannover BG \N \N \N \N \N 71421 \N genus Dienia \N \N \N \N \N 71422 P.sharpii Pinguicula Pinguicula sharpii \N \N \N \N \N 71423 S.cretica Scorzonera Scorzonera cretica \N \N \N \N \N 71424 P.bridelioides Pauridiantha Pauridiantha bridelioides \N \N \N \N \N 71425 O.salicifolia Olea Olea salicifolia \N \N \N \N \N 71426 P.involucrata Polhillia Polhillia involucrata \N \N \N \N \N 71427 \N genus Cannabis \N \N \N \N \N 71428 M.gw2122 Macaranga Macaranga sp. 1 gw2122 \N \N \N \N \N 71429 P.hyparctica Potentilla Potentilla hyparctica \N \N \N \N \N 71430 P.chaixii Poa Poa chaixii \N \N \N \N \N 71431 S.mauense Solanum Solanum mauense \N \N \N \N \N 71432 G.praticola Gaultheria Gaultheria praticola \N \N \N \N \N 71433 \N genus Cristaria \N \N \N \N \N 71434 G.formosana Gynura Gynura formosana \N \N \N \N \N 71435 J.hexandra Janusia Janusia hexandra \N \N \N \N \N 71436 T.thibetica Tofieldia Tofieldia thibetica \N \N \N \N \N 71437 T.pseudobaileyi Tillandsia Tillandsia pseudobaileyi \N \N \N \N \N 71438 B.alba Bougainvillea Bougainvillea alba \N \N \N \N \N 71439 P.deuteronana Primula Primula deuteronana \N \N \N \N \N 71440 O.capense Oropetium Oropetium capense \N \N \N \N \N 71441 A.davisianum Alyssum Alyssum davisianum \N \N \N \N \N 71442 \N genus Betula birch,birches \N \N \N \N 71443 L.matamorense Lithospermum Lithospermum matamorense \N \N \N \N \N 71444 S.parryoides Smelowskia Smelowskia parryoides \N \N \N \N \N 71445 T.garganica Thapsia Thapsia garganica \N \N \N \N \N 71446 C.japonica Cayratia Cayratia japonica yabu garashi \N \N \N \N 71447 O.fruticosa Otostegia Otostegia fruticosa \N \N \N \N \N 71448 C.racemiflora Cyrilla Cyrilla racemiflora \N \N \N \N \N 71449 D.SLS-2010 Diplolepis Diplolepis sp. SLS-2010 \N \N \N \N \N 71450 E.sinclairii Ewartiothamnus Ewartiothamnus sinclairii \N \N \N \N \N 71451 G.orbignyana Geonoma Geonoma orbignyana \N \N \N \N \N 71452 A.provincialis Arenaria Arenaria provincialis \N \N \N \N \N 71453 P.eriantha Plocama Plocama eriantha \N \N \N \N \N 71454 \N varietas Heracleum millefolium var. longilobum \N \N \N \N \N 71455 C.pinetorum Ceanothus Ceanothus pinetorum \N \N \N \N \N 71456 E.s.n. Epistephium Epistephium sp. Szlachetko s.n. \N \N \N \N \N 71457 U.macloviana Uncinia Uncinia macloviana \N \N \N \N \N 71458 C.speciosa Catalpa Catalpa speciosa catawba,cigartree,northern catalpa \N \N \N \N 71459 U.tadshicorum Ungernia Ungernia tadshicorum \N \N \N \N \N 71460 L.hirtella Leandra Leandra hirtella \N \N \N \N \N 71461 \N genus Bethencourtia \N \N \N \N \N 71462 G.33378 Greenea Greenea sp. Larsen 33378 \N \N \N \N \N 71463 E.yunnanensis Etlingera Etlingera yunnanensis \N \N \N \N \N 71464 S.occidentalis Silene Silene occidentalis \N \N \N \N \N 71465 \N varietas Schoenocaulon caricifolium var. caricifolium \N \N \N \N \N 71466 \N subspecies Cucurbita argyrosperma subsp. argyrosperma \N \N \N \N \N 71467 \N subspecies Chamerion latifolium subsp. latifolium \N \N \N \N \N 71468 O.orizabae Oreomyrrhis Oreomyrrhis orizabae \N \N \N \N \N 71469 C.jacksonii Chordifex Chordifex jacksonii \N \N \N \N \N 71470 N.polyacanthus Neuracanthus Neuracanthus polyacanthus \N \N \N \N \N 71471 K.salsoloides Kochia Kochia salsoloides \N \N \N \N \N 71472 \N genus Roystonea \N \N \N \N \N 71473 P.ternata Pedicularis Pedicularis ternata \N \N \N \N \N 71474 C.scoparia Carex Carex scoparia \N \N \N \N \N 71475 \N varietas Lachenalia aloides var. aurea \N \N \N \N \N 71476 \N subspecies Stephanomeria exigua subsp. carotifera \N \N \N \N \N 71477 H.littoralis Hymenocallis Hymenocallis littoralis \N \N \N \N \N 71478 G.nutans Gastrolobium Gastrolobium nutans \N \N \N \N \N 71479 B.rubra Berzelia Berzelia rubra \N \N \N \N \N 71480 \N genus Siphonodon \N \N \N \N \N 71481 \N genus Weingartia \N \N \N \N \N 71482 P.granvillei Psychotria Psychotria granvillei \N \N \N \N \N 71483 A.zeylanica Axinandra Axinandra zeylanica \N \N \N \N \N 71484 E.nemorosa Euphrasia Euphrasia nemorosa \N \N \N \N \N 71485 A.hispidus Arthraxon Arthraxon hispidus small carpet grass \N \N \N \N 71486 S.bojeri Sebaea Sebaea bojeri \N \N \N \N \N 71487 L.speciosum Lilium Lilium speciosum \N \N \N \N \N 71488 A.madagascariensis Adansonia Adansonia madagascariensis \N \N \N \N \N 71489 A.macbrideana Arnaldoa Arnaldoa macbrideana \N \N \N \N \N 71490 A.pleiosperma Agiortia Agiortia pleiosperma \N \N \N \N \N 71491 G.oppositiflorus Gladiolus Gladiolus oppositiflorus \N \N \N \N \N 71492 G.xanthophylla Gloxinia Gloxinia xanthophylla \N \N \N \N \N 71493 R.nobile Rheum Rheum nobile \N \N \N \N \N 71494 T.palmata Tacca Tacca palmata \N \N \N \N \N 71495 O.bracteosa Onosma Onosma bracteosa \N \N \N \N \N 71496 \N family Lactoridaceae \N \N \N \N \N 71497 \N genus Warmingia \N \N \N \N \N 71498 P.erecta Plantago Plantago erecta dotseed plantain \N \N \N \N 71499 C.macrophylla Chimonobambusa Chimonobambusa macrophylla \N \N \N \N \N 71500 A.littoralis Atriplex Atriplex littoralis \N \N \N \N \N 71501 C.7169 Chelyorchis Chelyorchis sp. Carnevali 7169 \N \N \N \N \N 71502 E.seoulensis Eleutherococcus Eleutherococcus seoulensis \N \N \N \N \N 71503 L.laricus Lotus Lotus laricus \N \N \N \N \N 71504 \N genus Petitia \N \N \N \N \N 71505 G.hamatum Gymnocalycium Gymnocalycium hamatum \N \N \N \N \N 71506 \N genus Tripladenia \N \N \N \N \N 71507 M.celebica Mitrephora Mitrephora celebica \N \N \N \N \N 71508 H.macfadyenii Henriettea Henriettea macfadyenii \N \N \N \N \N 71509 P.griffithii Prismatomeris Prismatomeris griffithii \N \N \N \N \N 71510 P.montereyana Packera Packera montereyana \N \N \N \N \N 71511 B.7116 Besleria Besleria sp. J.L. Clark 7116 \N \N \N \N \N 71512 K.grandifolia Kaempferia Kaempferia grandifolia \N \N \N \N \N 71513 C.hastifolium Cynanchum Cynanchum hastifolium \N \N \N \N \N 71514 \N subspecies Disa gladioliflora subsp. capricornis \N \N \N \N \N 71515 H.fasciata Haworthia Haworthia fasciata \N \N \N \N \N 71516 P.siamense Platostoma Platostoma siamense \N \N \N \N \N 71517 E.robecchii Euphorbia Euphorbia robecchii \N \N \N \N \N 71518 H.pimpinellifolia Hymenolaena Hymenolaena pimpinellifolia \N \N \N \N \N 71519 M.aestuans Monnina Monnina aestuans \N \N \N \N \N 71520 C.ernodeoides Coprosma Coprosma ernodeoides \N \N \N \N \N 71521 Z.caespitosa Zostera Zostera caespitosa \N \N \N \N \N 71522 R.equisetiformis Russelia Russelia equisetiformis \N \N \N \N \N 71523 D.longipetalum Diplodium Diplodium longipetalum \N \N \N \N \N 71524 P.argenteus Pipturus Pipturus argenteus \N \N \N \N \N 71525 S.subsessiliflora Stipa Stipa subsessiliflora \N \N \N \N \N 71526 B.14917 Bidens Bidens sp. Perlman 14917 \N \N \N \N \N 71527 \N genus Cannomois \N \N \N \N \N 71528 P.granuliferum Panicum Panicum granuliferum \N \N \N \N \N 71529 P.mongolica Potaninia Potaninia mongolica \N \N \N \N \N 71530 \N genus Pothos \N \N \N \N \N 71531 S.gummiferum Seseli Seseli gummiferum \N \N \N \N \N 71532 C.verrucosum Cynanchum Cynanchum verrucosum \N \N \N \N \N 71533 J.andersonii Jaltomata Jaltomata andersonii \N \N \N \N \N 71534 \N genus Elvasia \N \N \N \N \N 71535 T.ishiiana Tricyrtis Tricyrtis ishiiana \N \N \N \N \N 71536 E.nitida Eucalyptus Eucalyptus nitida \N \N \N \N \N 71537 \N genus Montinia \N \N \N \N \N 71538 \N varietas Triticum urartu var. urartu \N \N \N \N \N 71539 C.litoralis Caribea Caribea litoralis \N \N \N \N \N 71540 C.surinamensis Christianella Christianella surinamensis \N \N \N \N \N 71541 \N genus Allagoptera \N \N \N \N \N 71542 \N genus Vanwykia \N \N \N \N \N 71543 \N genus Guiraoa \N \N \N \N \N 71544 C.radicalis Chamaedorea Chamaedorea radicalis \N \N \N \N \N 71545 L.gibbosa Liparis Liparis gibbosa \N \N \N \N \N 71546 G.stenosepalus Gonolobus Gonolobus stenosepalus \N \N \N \N \N 71547 \N genus Spiculaea \N \N \N \N \N 71548 S.dentata Searsia Searsia dentata \N \N \N \N \N 71549 X.539802 x Citrofortunella x Citrofortunella sp. PI 539802 \N \N \N \N \N 71550 O.oenanthoides Ottoa Ottoa oenanthoides \N \N \N \N \N 71551 H.longiflora Hippobroma Hippobroma longiflora \N \N \N \N \N 71552 \N varietas Elymus virginicus var. virginicus \N \N \N \N \N 71553 \N genus Moliniopsis \N \N \N \N \N 71554 A.thyrsiflora Ampelocissus Ampelocissus thyrsiflora \N \N \N \N \N 71555 S.sellowianum Sisyrinchium Sisyrinchium sellowianum \N \N \N \N \N 71556 R.annae Rhododendron Rhododendron annae \N \N \N \N \N 71557 \N genus Loxothysanus \N \N \N \N \N 71558 E.trilobus Euryops Euryops trilobus \N \N \N \N \N 71559 F.glazioviana Fuchsia Fuchsia glazioviana \N \N \N \N \N 71560 B.koordersii Begonia Begonia koordersii \N \N \N \N \N 71561 C.foveolatus Chionanthus Chionanthus foveolatus \N \N \N \N \N 71562 P.bonariense Pachygenium Pachygenium bonariense \N \N \N \N \N 71563 F.ramosissima Filago Filago ramosissima \N \N \N \N \N 71564 \N genus Daviesia \N \N \N \N \N 71565 P.radiata Pultenaea Pultenaea radiata \N \N \N \N \N 71566 B.ochrochlamys Bulbophyllum Bulbophyllum ochrochlamys \N \N \N \N \N 71567 C.melanoloma Cota Cota melanoloma \N \N \N \N \N 71568 G.behrii Glischrocaryon Glischrocaryon behrii \N \N \N \N \N 71569 B.subscutata Begonia Begonia subscutata \N \N \N \N \N 71570 G.caledonicum Glochidion Glochidion caledonicum \N \N \N \N \N 71571 H.fumariifolia Hunnemannia Hunnemannia fumariifolia \N \N \N \N \N 71572 \N genus Mecomischus \N \N \N \N \N 71573 \N genus Espostoa \N \N \N \N \N 71574 U.rigida Utricularia Utricularia rigida \N \N \N \N \N 71575 \N genus Pterachaenia \N \N \N \N \N 71576 O.morelosensis Oxalis Oxalis morelosensis \N \N \N \N \N 71577 L.curtissii Ludwigia Ludwigia curtissii \N \N \N \N \N 71578 \N tribe Chorisporeae \N \N \N \N \N 71579 P.costaricensis Phaseolus Phaseolus costaricensis \N \N \N \N \N 71580 F.ingens Ficus Ficus ingens \N \N \N \N \N 71581 \N genus Cladoceras \N \N \N \N \N 71582 M.subdentata Macaranga Macaranga subdentata \N \N \N \N \N 71583 C.phaeotrichus Costus Costus phaeotrichus \N \N \N \N \N 71584 K.lutea Killickia Killickia lutea \N \N \N \N \N 71585 \N subspecies Dicentra formosa subsp. oregana \N \N \N \N \N 71586 V.burmensis Vitex Vitex burmensis \N \N \N \N \N 71587 F.auriculata Ficus Ficus auriculata \N \N \N \N \N 71588 D.africanus Dicraeanthus Dicraeanthus africanus \N \N \N \N \N 71589 M.camporum Mimosa Mimosa camporum \N \N \N \N \N 71590 B.SH-2010 Boehmeria Boehmeria sp. SH-2010 \N \N \N \N \N 71591 M.fauriei Microstegium Microstegium fauriei \N \N \N \N \N 71592 P.amara Polygala Polygala amara \N \N \N \N \N 71593 C.mollis Canavalia Canavalia mollis \N \N \N \N \N 71594 T.MVSP-2007 Tamijia Tamijia sp. MVSP-2007 \N \N \N \N \N 71595 K.gastonis-bonnieri Kalanchoe Kalanchoe gastonis-bonnieri \N \N \N \N \N 71596 V.occidentalis Verbesina Verbesina occidentalis \N \N \N \N \N 71597 P.cracens Pimelea Pimelea cracens \N \N \N \N \N 71598 R.spuria Rhaphidophora Rhaphidophora spuria \N \N \N \N \N 71599 C.nitida Coprosma Coprosma nitida \N \N \N \N \N 71600 N.euryceras Nemesia Nemesia euryceras \N \N \N \N \N 71601 V.aznavourii Veronica Veronica aznavourii \N \N \N \N \N 71602 E.pirottae Euphorbia Euphorbia pirottae \N \N \N \N \N 71603 E.australasius Eriostemon Eriostemon australasius \N \N \N \N \N 71604 \N genus Cullen \N \N \N \N \N 71605 B.rupicola Bulbophyllum Bulbophyllum rupicola \N \N \N \N \N 71606 M.olaensis Magadania Magadania olaensis \N \N \N \N \N 71607 \N genus Gynostemma \N \N \N \N \N 71608 C.defixum Crinum Crinum defixum \N \N \N \N \N 71609 G.striglianum Gymnocalycium Gymnocalycium striglianum \N \N \N \N \N 71610 N.acuminata Nicotiana Nicotiana acuminata acuminate tobacco \N \N \N \N 71611 S.maculatus Streptanthus Streptanthus maculatus \N \N \N \N \N 71612 T.arizonicum Trichostema Trichostema arizonicum Arizona bluecurls \N \N \N \N 71613 S.SH-2010 Salacia Salacia sp. SH-2010 \N \N \N \N \N 71614 B.2 Begonia Begonia sp. China 2 \N \N \N \N \N 71615 A.linguiloba Aspalathus Aspalathus linguiloba \N \N \N \N \N 71616 A.latifolia Asclepias Asclepias latifolia \N \N \N \N \N 71617 L.lanceolatus Lasianthus Lasianthus lanceolatus \N \N \N \N \N 71618 F.DW-2011 Fagopyrum Fagopyrum sp. DW-2011 \N \N \N \N \N 71619 A.comata Artemisia Artemisia comata \N \N \N \N \N 71620 G.bakeri Gnidia Gnidia bakeri \N \N \N \N \N 71621 S.cleistogamum Solanum Solanum cleistogamum \N \N \N \N \N 71622 S.australis Sicyos Sicyos australis \N \N \N \N \N 71623 G.cancellatus Gomphocarpus Gomphocarpus cancellatus \N \N \N \N \N 71624 M.longipes Maxillaria Maxillaria longipes \N \N \N \N \N 71625 G.stefaniae Gladiolus Gladiolus stefaniae \N \N \N \N \N 71626 \N tribe Acalypheae \N \N \N \N \N 71627 B.chlorostica Billbergia Billbergia chlorostica \N \N \N \N \N 71628 A.decipiens Allium Allium decipiens \N \N \N \N \N 71629 P.hispidus Pterostyrax Pterostyrax hispidus \N \N \N \N \N 71630 F.whitehillensis Felicia Felicia whitehillensis \N \N \N \N \N 71631 P.11511 Pharnaceum Pharnaceum sp. Goldblatt 11511 \N \N \N \N \N 71632 A.capitatum Arcytophyllum Arcytophyllum capitatum \N \N \N \N \N 71633 \N family Tropaeolaceae nasturtium family \N \N \N \N 71634 T.hirschii Thamnosma Thamnosma hirschii \N \N \N \N \N 71635 P.SK-2011 Polypleurum Polypleurum sp. SK-2011 \N \N \N \N \N 71636 A.macrophylla Alseuosmia Alseuosmia macrophylla \N \N \N \N \N 71637 B.sikkimensis Begonia Begonia sikkimensis \N \N \N \N \N 71638 R.angustiflora Ruellia Ruellia angustiflora \N \N \N \N \N 71639 O.pomaderroides Ocotea Ocotea pomaderroides \N \N \N \N \N 71640 S.daghestanica Salvia Salvia daghestanica \N \N \N \N \N 71641 P.gariepensis Phyllobolus Phyllobolus gariepensis \N \N \N \N \N 71642 D.brasiliensis Drimys Drimys brasiliensis \N \N \N \N \N 71643 C.radians Cousinia Cousinia radians \N \N \N \N \N 71644 B.reflexa Bouteloua Bouteloua reflexa \N \N \N \N \N 71645 Q.vulcanica Quercus Quercus vulcanica \N \N \N \N \N 71646 \N genus Mesadenus \N \N \N \N \N 71647 C.pedunculatum Calycophysum Calycophysum pedunculatum \N \N \N \N \N 71648 S.fluminea Stephanomeria Stephanomeria fluminea \N \N \N \N \N 71649 S.thymbra Satureja Satureja thymbra \N \N \N \N \N 71650 \N genus Laxoplumeria \N \N \N \N \N 71651 T.retinervium Tetrastigma Tetrastigma retinervium \N \N \N \N \N 71652 P.caerulea Pinguicula Pinguicula caerulea blueflower butterwort \N \N \N \N 71653 P.depressa Paronychia Paronychia depressa \N \N \N \N \N 71654 S.scardica Saxifraga Saxifraga scardica \N \N \N \N \N 71655 E.benguelensis Erica Erica benguelensis \N \N \N \N \N 71656 \N genus Podolotus \N \N \N \N \N 71657 P.olyriformis Puelia Puelia olyriformis \N \N \N \N \N 71658 S.gracilipes Stenanthemum Stenanthemum gracilipes \N \N \N \N \N 71659 G.sellowiana Guatteria Guatteria sellowiana \N \N \N \N \N 71660 B.tenuifolia Bridelia Bridelia tenuifolia \N \N \N \N \N 71661 O.araneola Ophrys Ophrys araneola \N \N \N \N \N 71662 P.rhodotricha Pedicularis Pedicularis rhodotricha \N \N \N \N \N 71663 \N genus Ampelocissus \N \N \N \N \N 71664 \N genus Coutarea \N \N \N \N \N 71665 T.smithiana Thermopsis Thermopsis smithiana \N \N \N \N \N 71666 A.tuberosa Asclepias Asclepias tuberosa \N \N \N \N \N 71667 S.AM-3778-16 Solanum Solanum sp. AM-3778-16 \N \N \N \N \N 71668 \N varietas Dendrobium speciosum var. carnarvonense \N \N \N \N \N 71669 S.xanthophylla Spathicalyx Spathicalyx xanthophylla \N \N \N \N \N 71670 O.atrispina Opuntia Opuntia atrispina \N \N \N \N \N 71671 P.empetrifolia Pultenaea Pultenaea empetrifolia \N \N \N \N \N 71672 \N genus Afrocanthium \N \N \N \N \N 71673 T.afghanicus Tragopogon Tragopogon afghanicus \N \N \N \N \N 71674 V.anagallis-aquatica Veronica Veronica anagallis-aquatica water speedwell \N \N \N \N 71675 G.baueri Galeandra Galeandra baueri \N \N \N \N \N 71676 P.praeruptorum Peucedanum Peucedanum praeruptorum bai hua qian hu \N \N \N \N 71677 R.ribisoideus Rubus Rubus ribisoideus \N \N \N \N \N 71678 H.schulli Hygrophila Hygrophila schulli \N \N \N \N \N 71679 S.modesta Symplocos Symplocos modesta \N \N \N \N \N 71680 S.exigua Salix Salix exigua coyote willow \N \N \N \N 71681 E.transvaalensis Euryops Euryops transvaalensis \N \N \N \N \N 71682 M.rupestris Macleania Macleania rupestris caraguito,joyapa,uva camarona \N \N \N \N 71683 L.formosanus Lithocarpus Lithocarpus formosanus \N \N \N \N \N 71684 P.lanceolata Physalis Physalis lanceolata \N \N \N \N \N 71685 W.dampieri Westringia Westringia dampieri \N \N \N \N \N 71686 S.humbertii Secamone Secamone humbertii \N \N \N \N \N 71687 S.flava Salvia Salvia flava \N \N \N \N \N 71688 E.rupestris Eucnide Eucnide rupestris \N \N \N \N \N 71689 A.medicaginea Amicia Amicia medicaginea \N \N \N \N \N 71690 P.acuminatifolium Polygonatum Polygonatum acuminatifolium \N \N \N \N \N 71691 P.aristidoides Pentaschistis Pentameris aristidoides \N \N \N \N \N 71692 R.jasminiflorum Rhododendron Rhododendron jasminiflorum \N \N \N \N \N 71693 \N subspecies Thrinax parviflora subsp. parviflora \N \N \N \N \N 71694 M.bonplandii Mimosa Mimosa bonplandii \N \N \N \N \N 71695 H.confinis Hemigraphis Hemigraphis confinis \N \N \N \N \N 71696 C.mangshanensis Citrus Citrus mangshanensis \N \N \N \N \N 71697 W.parvifolia Wahlenbergia Wahlenbergia parvifolia \N \N \N \N \N 71698 L.orthantha Lankesterella Lankesterella orthantha \N \N \N \N \N 71699 \N varietas Potentilla diversifolia var. glaucophylla \N \N \N \N \N 71700 \N subspecies Arctostaphylos manzanita subsp. roofii \N \N \N \N \N 71701 A.tortuosum Aichryson Aichryson tortuosum \N \N \N \N \N 71702 B.gracilis Brassaiopsis Brassaiopsis gracilis \N \N \N \N \N 71703 H.corbisieri Humularia Humularia corbisieri \N \N \N \N \N 71704 T.6281f unclassified Taraxacum Taraxacum (sect. Naevosa) sp. 6281f \N \N \N \N \N 71705 A.elegans Ampelocissus Ampelocissus elegans \N \N \N \N \N 71706 C.vestae Calochortus Calochortus vestae \N \N \N \N \N 71707 B.gracilis Brasiliorchis Brasiliorchis gracilis \N \N \N \N \N 71708 R.galactinum Rhododendron Rhododendron galactinum \N \N \N \N \N 71709 S.polyrhiza Spirodela Spirodela polyrhiza great duckweed \N \N \N \N 71710 D.pectinipila Draba Draba pectinipila \N \N \N \N \N 71711 T.407aa Tovomita Tovomita sp. HG 407aa \N \N \N \N \N 71712 O.italica Orchis Orchis italica \N \N \N \N \N 71713 D.muelleri Dissiliaria Dissiliaria muelleri \N \N \N \N \N 71714 P.subserratum Protium Protium subserratum \N \N \N \N \N 71715 A.alpestre Aegopodium Aegopodium alpestre \N \N \N \N \N 71716 B.amazonicus Batocarpus Batocarpus amazonicus \N \N \N \N \N 71717 M.thienii Masdevallia Masdevallia thienii \N \N \N \N \N 71718 T.occultum Taraxacum Taraxacum occultum \N \N \N \N \N 71719 C.robertianus Crocus Crocus robertianus \N \N \N \N \N 71720 N.mianum Neisosperma Neisosperma mianum \N \N \N \N \N 71721 I.tephrosioides Indigofera Indigofera tephrosioides \N \N \N \N \N 71722 M.aristata Moraea Moraea aristata \N \N \N \N \N 71723 G.afra Gethyllis Gethyllis afra \N \N \N \N \N 71724 P.verschuerenii Psychotria Psychotria verschuerenii \N \N \N \N \N 71725 C.prisca Coprosma Coprosma prisca \N \N \N \N \N 71726 P.henriquei Paepalanthus Paepalanthus henriquei \N \N \N \N \N 71727 A.lanceolatus Arthraxon Arthraxon lanceolatus \N \N \N \N \N 71728 R.grahamii Reissantia Reissantia grahamii \N \N \N \N \N 71729 \N genus Tulbaghia \N \N \N \N \N 71730 S.hintonii Symplocos Symplocos hintonii \N \N \N \N \N 71731 S.pygmaeum Symphyotrichum Symphyotrichum pygmaeum pygmy aster \N \N \N \N 71732 D.argunense Dracocephalum Dracocephalum argunense \N \N \N \N \N 71733 M.caudata Manihot Manihot caudata \N \N \N \N \N 71734 I.215 Ixora Ixora sp. Mouly & Innocente 215 \N \N \N \N \N 71735 R.arcticus Rumex Rumex arcticus \N \N \N \N \N 71736 L.hookeri Ligularia Ligularia hookeri \N \N \N \N \N 71737 C.mariae Clemensiella Clemensiella mariae \N \N \N \N \N 71738 D.ypsilostyla Djaloniella Djaloniella ypsilostyla \N \N \N \N \N 71739 S.ovalis Shorea Shorea ovalis \N \N \N \N \N 71740 C.mauritanica Consolida Consolida mauritanica \N \N \N \N \N 71741 C.fimbriata Corysanthes Corysanthes fimbriata \N \N \N \N \N 71742 C.397aa Clusia Clusia sp. HG 397aa \N \N \N \N \N 71743 \N varietas Cuscuta indecora var. attenuata \N \N \N \N \N 71744 O.biscutella Ophrys Ophrys biscutella \N \N \N \N \N 71745 \N genus Cyathocalyx \N \N \N \N \N 71746 Z.obliqua Zygostates Zygostates obliqua \N \N \N \N \N 71747 T.megalantha Tetrapterys Tetrapterys megalantha \N \N \N \N \N 71748 F.viridis Fragaria Fragaria viridis \N \N \N \N \N 71749 B.kuntzei Brownanthus Brownanthus kuntzei \N \N \N \N \N 71750 M.columbiana Mammillaria Mammillaria columbiana \N \N \N \N \N 71751 \N genus Mabrya \N \N \N \N \N 71752 P.pulchella Phinaea Phinaea pulchella \N \N \N \N \N 71753 F.ericoides Fumana Fumana ericoides \N \N \N \N \N 71754 G.decumbens Grindelia Grindelia decumbens \N \N \N \N \N 71755 F.homotropicum Fagopyrum Fagopyrum homotropicum \N \N \N \N \N 71756 F.sonchifolia Francoa Francoa sonchifolia \N \N \N \N \N 71757 \N genus Urospermum \N \N \N \N \N 71758 B.arenosus Brownanthus Brownanthus arenosus \N \N \N \N \N 71759 \N genus Donax \N \N \N \N \N 71760 P.smaragdyna Pterostylis Pterostylis smaragdyna \N \N \N \N \N 71761 A.velutinella Atriplex Atriplex velutinella \N \N \N \N \N 71762 \N genus Silvianthus \N \N \N \N \N 71763 \N genus Githopsis \N \N \N \N \N 71764 P.subaequalis Parrotia Parrotia subaequalis \N \N \N \N \N 71765 R.distichophylla Raddia Raddia distichophylla \N \N \N \N \N 71766 S.tigrense Schoenocaulon Schoenocaulon tigrense \N \N \N \N \N 71767 T.volubilis Teramnus Teramnus volubilis \N \N \N \N \N 71768 S.EP1881072 Solanum Solanum sp. EP1881072 \N \N \N \N \N 71769 M.glabrum Machaerium Machaerium glabrum \N \N \N \N \N 71770 \N genus Meriania \N \N \N \N \N 71771 \N genus Clianthus \N \N \N \N \N 71772 C.viridis Codonopsis Codonopsis viridis \N \N \N \N \N 71773 C.filaginifolia Corethrogyne Corethrogyne filaginifolia \N \N \N \N \N 71774 C.obtusiflora Cuscuta Cuscuta obtusiflora \N \N \N \N \N 71775 D.rostrata Dioclea Dioclea rostrata \N \N \N \N \N 71776 N.madagascariensis Nicodemia Nicodemia madagascariensis \N \N \N \N \N 71777 E.sonderiana Erica Erica sonderiana \N \N \N \N \N 71778 C.diffusa Centaurea Centaurea diffusa \N \N \N \N \N 71779 \N subspecies Phoradendron bolleanum subsp. densum \N \N \N \N \N 71780 C.WSP-2005 Citrus Citrus sp. WSP-2005 \N \N \N \N \N 71781 P.M061 Polyxena Polyxena sp. Saunders M061 \N \N \N \N \N 71782 S.membranacea Schiedea Schiedea membranacea \N \N \N \N \N 71783 G.arenaria Gaertnera Gaertnera arenaria \N \N \N \N \N 71784 E.coccifera Eucalyptus Eucalyptus coccifera \N \N \N \N \N 71785 S.abyssinica Swertia Swertia abyssinica \N \N \N \N \N 71786 \N genus Synapsis \N \N \N \N \N 71787 \N varietas Dodonaea lanceolata var. subsessilifolia \N \N \N \N \N 71788 \N subspecies Montanoa leucantha subsp. arborescens \N \N \N \N \N 71789 G.chlorantha Gagea Gagea chlorantha \N \N \N \N \N 71790 D.aurea Draba Draba aurea \N \N \N \N \N 87617 \N genus Salsola \N \N \N \N \N 71791 A.cephalotes Ancistrorhynchus Ancistrorhynchus cephalotes \N \N \N \N \N 71792 B.camptocarpoides Baroniella Baroniella camptocarpoides \N \N \N \N \N 71793 \N genus Odontites \N \N \N \N \N 71794 P.ramuensis Psychotria Psychotria ramuensis \N \N \N \N \N 71795 P.columella Peperomia Peperomia columella \N \N \N \N \N 71796 C.peckii Carex Carex peckii \N \N \N \N \N 71797 \N genus Nematanthus \N \N \N \N \N 71798 N.saxicola Navia Navia saxicola \N \N \N \N \N 71799 C.incanus Campylanthus Campylanthus incanus \N \N \N \N \N 71800 C.columnae Cynoglossum Cynoglossum columnae \N \N \N \N \N 71801 \N genus Calochortus \N \N \N \N \N 71802 O.viscida Orcuttia Orcuttia viscida \N \N \N \N \N 71803 P.pungens Perezia Perezia pungens \N \N \N \N \N 71804 S.mitsukurianus Scirpus Scirpus mitsukurianus \N \N \N \N \N 71805 P.floribundum Pleuranthodium Pleuranthodium floribundum \N \N \N \N \N 71806 S.clevelandii Salvia Salvia clevelandii \N \N \N \N \N 71807 \N genus Stauntonia \N \N \N \N \N 71808 P.integrifolia Pinellia Pinellia integrifolia \N \N \N \N \N 71809 \N varietas Lomatium dissectum var. multifidum \N \N \N \N \N 71810 A.eriocarpa Acacia Acacia eriocarpa \N \N \N \N \N 71811 S.commersonii Solanum Solanum commersonii Commerson's wild potato \N \N \N \N 71812 D.drakena Dorstenia Dorstenia drakena \N \N \N \N \N 71813 G.tristis Gahnia Gahnia tristis \N \N \N \N \N 71814 O.holttumii Orchidantha Orchidantha holttumii \N \N \N \N \N 71815 C.quadrangularis Chimonobambusa Chimonobambusa quadrangularis \N \N \N \N \N 71816 S.velarum Syzygium Syzygium velarum \N \N \N \N \N 71817 C.cordata Carpinus Carpinus cordata \N \N \N \N \N 71818 \N genus Dryadella \N \N \N \N \N 71819 C.zawadskii Chrysanthemum Chrysanthemum zawadskii \N \N \N \N \N 71820 G.triangulare Gastrolobium Gastrolobium triangulare \N \N \N \N \N 71821 S.crassicaule Satyrium Satyrium crassicaule \N \N \N \N \N 71822 L.cyanocarpa Lonicera Lonicera cyanocarpa \N \N \N \N \N 71823 A.appressa Aristida Aristida appressa \N \N \N \N \N 71824 \N genus Telekia \N \N \N \N \N 71825 R.impeditum Rhododendron Rhododendron impeditum \N \N \N \N \N 71826 L.ravenii Lomatium Lomatium ravenii \N \N \N \N \N 71827 \N subspecies Alloteropsis semialata subsp. eckloniana \N \N \N \N \N 71828 G.mannii Garcinia Garcinia mannii \N \N \N \N \N 71829 M.taylorii Meconopsis Meconopsis taylorii \N \N \N \N \N 71830 B.divaricata Besleria Besleria divaricata \N \N \N \N \N 71831 S.ramosissimum Spyridium Spyridium ramosissimum \N \N \N \N \N 71832 L.inaequalifolia Leandra Leandra inaequalifolia \N \N \N \N \N 71833 \N genus x Triticosecale triticale \N \N \N \N 71834 S.burchellii Sisymbrium Sisymbrium burchellii \N \N \N \N \N 71835 A.huber-morathii Alyssum Alyssum huber-morathii \N \N \N \N \N 71836 L.divaricata Lasiacis Lasiacis divaricata \N \N \N \N \N 71837 M.hondoense Maianthemum Maianthemum hondoense \N \N \N \N \N 71838 O.borealis Oxytropis Oxytropis borealis \N \N \N \N \N 71839 \N genus Habropetalum \N \N \N \N \N 71840 P.laevigatum Pelargonium Pelargonium laevigatum \N \N \N \N \N 71841 \N genus Leucogenes x Raoulia \N \N \N \N \N 71842 C.silicea Carex Carex silicea \N \N \N \N \N 71843 T.ustulata Tetraria Tetraria ustulata \N \N \N \N \N 71844 D.glomeratus Desmocladus Desmocladus glomeratus \N \N \N \N \N 71845 \N subspecies Oxytropis campestris subsp. campestris \N \N \N \N \N 71846 \N no rank environmental samples Taxonomy:531425 \N \N \N \N \N 71847 H.didymocarpum Hesperolinon Hesperolinon didymocarpum \N \N \N \N \N 71848 G.afghanica Gagea Gagea afghanica \N \N \N \N \N 71849 F.shweliensis Fosbergia Fosbergia shweliensis \N \N \N \N \N 71850 C.curdicus Carthamus Carthamus curdicus \N \N \N \N \N 71851 C.staadensis Cyrtanthus Cyrtanthus staadensis \N \N \N \N \N 71852 G.pyrenaica Galeopsis Galeopsis pyrenaica \N \N \N \N \N 71853 O.GMS-2008 Orobanche Orobanche cf. ramosa GMS-2008 \N \N \N \N \N 71854 \N subspecies Viola chamissoniana subsp. tracheliifolia \N \N \N \N \N 71855 \N genus Flindersia \N \N \N \N \N 71856 A.27108 Arachnothryx Arachnothryx sp. Harling 27108 \N \N \N \N \N 71857 S.androgyna Semele Semele androgyna \N \N \N \N \N 71858 C.concinna Calyptranthes Calyptranthes concinna \N \N \N \N \N 71859 S.pseudospicata Schefflera Schefflera pseudospicata \N \N \N \N \N 71860 S.albescens Stanleya Stanleya albescens \N \N \N \N \N 71861 S.pusilla Sieversia Sieversia pusilla \N \N \N \N \N 71862 M.pseudoradula Mimosa Mimosa pseudoradula \N \N \N \N \N 71863 C.tricoccum Chiropetalum Chiropetalum tricoccum \N \N \N \N \N 71864 L.aucheri Lepidium Lepidium aucheri \N \N \N \N \N 71865 B.populifolia Betula Betula populifolia fire birch,gray birch \N \N \N \N 71866 \N genus Neuburgia \N \N \N \N \N 71867 P.stenocarpa Pseudomussaenda Pseudomussaenda stenocarpa \N \N \N \N \N 71868 S.piptocoma Senecio Senecio piptocoma \N \N \N \N \N 71869 X.preissii Xanthorrhoea Xanthorrhoea preissii \N \N \N \N \N 71870 C.robusta Chorizanthe Chorizanthe robusta \N \N \N \N \N 71871 C.distans Crotalaria Crotalaria distans \N \N \N \N \N 71872 \N subspecies Arnica angustifolia subsp. tomentosa \N \N \N \N \N 71873 H.syncarpa Halosarcia Halosarcia syncarpa \N \N \N \N \N 71874 T.hypoglaucum Tripterygium Tripterygium hypoglaucum \N \N \N \N \N 71875 \N varietas Mimulus aurantiacus var. puniceus \N \N \N \N \N 71876 \N varietas Jatropha villosa var. ramnadensis \N \N \N \N \N 71877 P.athericum Psammopyrum Psammopyrum athericum \N \N \N \N \N 71878 B.canariensis Bystropogon Bystropogon canariensis \N \N \N \N \N 71879 \N genus Eliea \N \N \N \N \N 71880 E.rhizomatus Erigeron Erigeron rhizomatus \N \N \N \N \N 71881 C.quadrangula Caralluma Caralluma quadrangula \N \N \N \N \N 71882 H.paniculata Hydrangea Hydrangea paniculata \N \N \N \N \N 71883 M.dendrobioides Maxillaria Maxillaria dendrobioides \N \N \N \N \N 71884 H.pseudohenryi Hypericum Hypericum pseudohenryi \N \N \N \N \N 71885 R.kochii Rhododendron Rhododendron kochii \N \N \N \N \N 71886 \N genus Xerospermum \N \N \N \N \N 71887 \N genus Hackelia \N \N \N \N \N 71888 M.graniticola Moraea Moraea graniticola \N \N \N \N \N 71889 C.lichiangense Cypripedium Cypripedium lichiangense \N \N \N \N \N 71890 T.petraeum Tetrastigma Tetrastigma petraeum \N \N \N \N \N 71891 A.incanescens Artemisia Artemisia incanescens \N \N \N \N \N 71892 \N varietas Potentilla gracilis var. elmeri \N \N \N \N \N 71893 C.impressinervia Carex Carex impressinervia \N \N \N \N \N 71894 X.cultivar x Doritaenopsis x Doritaenopsis hybrid cultivar \N \N \N \N \N 71895 \N tribe Ampelozizipheae \N \N \N \N \N 71896 \N varietas Boechera sparsiflora var. subvillosa \N \N \N \N \N 71897 \N family Lythraceae loosestrife family \N \N \N \N 71898 Z.pisifera Zehneria Zehneria pisifera \N \N \N \N \N 71899 L.2216 Lomandra Lomandra sp. Chase 2216 \N \N \N \N \N 71900 S.calophylla Solmsia Solmsia calophylla \N \N \N \N \N 71901 N.scoparia Nierembergia Nierembergia scoparia tall cupflower \N \N \N \N 71902 C.SM-2010 Ceratophyllum Ceratophyllum sp. SM-2010 \N \N \N \N \N 71903 A.constablei Acacia Acacia constablei \N \N \N \N \N 71904 L.macrophylla Lycaste Lycaste macrophylla \N \N \N \N \N 71905 V.dentata Viguiera Viguiera dentata \N \N \N \N \N 71906 A.superpendens Aristida Aristida superpendens \N \N \N \N \N 71907 \N tribe Pelagodoxeae \N \N \N \N \N 71908 G.obovata Gaertnera Gaertnera obovata \N \N \N \N \N 71909 L.capensis Laurophyllus Laurophyllus capensis \N \N \N \N \N 71910 S.brasiliensis Sinningia Sinningia brasiliensis \N \N \N \N \N 71911 S.integrifolius Schizanthus Schizanthus integrifolius \N \N \N \N \N 71912 \N genus Aulosepalum \N \N \N \N \N 71913 G.bohemica Gentianella Gentianella amarella x Gentianella bohemica \N \N \N \N \N 71914 P.integrifolia Perezia Perezia integrifolia \N \N \N \N \N 71915 H.rutilum Hippeastrum Hippeastrum rutilum \N \N \N \N \N 71916 B.incisifolia Bridgesia Bridgesia incisifolia \N \N \N \N \N 71917 \N genus Acanthonema \N \N \N \N \N 71918 A.5886 Agathosma Agathosma sp. Chase 5886 \N \N \N \N \N 71919 S.albescens Sciaphila Sciaphila albescens \N \N \N \N \N 71920 I.ternifolia Ipomoea Ipomoea ternifolia \N \N \N \N \N 71921 E.tetraptera Euphorbia Euphorbia tetraptera \N \N \N \N \N 71922 R.adenosum Rhododendron Rhododendron adenosum \N \N \N \N \N 71923 S.fuscata Siderasis Siderasis fuscata \N \N \N \N \N 71924 \N varietas Pueraria montana var. thomsonii fen ke,mealy kudzu \N \N \N \N 71925 C.grandidieri Calopyxis Calopyxis grandidieri \N \N \N \N \N 71926 S.N489 Sapium Sapium sp. N489 \N \N \N \N \N 71927 D.277 Dombeya Dombeya sp. Rakotonirina 277 \N \N \N \N \N 71928 T.hemprichii Thalassia Thalassia hemprichii \N \N \N \N \N 71929 \N varietas Paris polyphylla var. pseudothibetica \N \N \N \N \N 71930 D.mandonii Demosthenesia Demosthenesia mandonii \N \N \N \N \N 71931 S.habracanthoides Strobilanthes Strobilanthes habracanthoides \N \N \N \N \N 71932 C.8340 Comparettia Comparettia sp. Hirtz 8340 \N \N \N \N \N 71933 R.arabiformis Romanschulzia Romanschulzia arabiformis \N \N \N \N \N 71934 \N subspecies Armeria filicaulis subsp. filicaulis \N \N \N \N \N 71935 \N genus Empleuridium \N \N \N \N \N 71936 \N genus Neo-uvaria \N \N \N \N \N 71937 \N genus Chonemorpha \N \N \N \N \N 71938 S.opacum Solanum Solanum opacum \N \N \N \N \N 71939 A.denudatus Asparagus Asparagus denudatus \N \N \N \N \N 71940 P.rotundifolia Pyrola Pyrola rotundifolia \N \N \N \N \N 71941 S.effusum Sisymbrium Sisymbrium effusum \N \N \N \N \N 71942 E.riebeckii Euphorbia Euphorbia riebeckii \N \N \N \N \N 71943 M.ciliatum Microstegium Microstegium ciliatum \N \N \N \N \N 71944 P.nutans Phyllanthus Phyllanthus nutans \N \N \N \N \N 71945 A.2 Aglaia Aglaia sp. Samuel 2 \N \N \N \N \N 71946 L.microcephalum Leucadendron Leucadendron microcephalum \N \N \N \N \N 71947 C.excisus Cionosicyos Cionosicyos excisus \N \N \N \N \N 71948 L.seemannii Lisianthius Lisianthius seemannii \N \N \N \N \N 71949 P.chinensis Parnassia Parnassia chinensis \N \N \N \N \N 71950 E.cheiranthoides Erysimum Erysimum cheiranthoides \N \N \N \N \N 71951 \N genus Mostuea \N \N \N \N \N 71952 C.melanopetala Commersonia Commersonia melanopetala \N \N \N \N \N 71953 S.MD-2010 Sobralia Sobralia cf. altissima MD-2010 \N \N \N \N \N 71954 \N genus Przewalskia \N \N \N \N \N 71955 E.fruticosa Euphorbia Euphorbia fruticosa \N \N \N \N \N 71956 C.acuminata Cathedra Cathedra acuminata \N \N \N \N \N 71957 \N subspecies Rhipsalis floccosa subsp. pulviningera \N \N \N \N \N 71958 E.brachycarpa Eleocharis Eleocharis brachycarpa \N \N \N \N \N 71959 N.atlanticus Narcissus Narcissus atlanticus \N \N \N \N \N 71960 C.bignonioides Catalpa Catalpa bignonioides catawba,southern catalpa \N \N \N \N 71961 \N genus Leucospermum \N \N \N \N \N 71962 C.mollis Cousinia Cousinia mollis \N \N \N \N \N 71963 H.coris Hypericum Hypericum coris \N \N \N \N \N 71964 P.laevinode Panicum Panicum laevinode \N \N \N \N \N 71965 S.patula Schefflera Schefflera patula \N \N \N \N \N 71966 E.80 Euphorbia Euphorbia sp. Haevermans 80 \N \N \N \N \N 71967 \N genus Ecdeiocolea \N \N \N \N \N 71968 R.7158 Renealmia Renealmia cf. africana Harris 7158 \N \N \N \N \N 71969 A.macrostachys Aubletiana Aubletiana macrostachys \N \N \N \N \N 71970 E.decolorans Eschweilera Eschweilera decolorans \N \N \N \N \N 71971 \N genus Cynosurus \N \N \N \N \N 71972 P.gigantea Phalaenopsis Phalaenopsis gigantea \N \N \N \N \N 71973 T.W2412 Telipogon Telipogon sp. Whitten W2412 \N \N \N \N \N 71974 P.alpestre Podolobium Podolobium alpestre \N \N \N \N \N 71975 G.tournefortii Genista Genista tournefortii \N \N \N \N \N 71976 S.septilobus Sinosenecio Sinosenecio septilobus \N \N \N \N \N 71977 F.humilis Ferulago Ferulago humilis \N \N \N \N \N 71978 H.mongholica Hansenia Hansenia mongholica \N \N \N \N \N 71979 S.triflorum Solanum Solanum triflorum \N \N \N \N \N 71980 P.stuartii Polycalymma Polycalymma stuartii \N \N \N \N \N 71981 P.crassifolia Pinguicula Pinguicula crassifolia \N \N \N \N \N 71982 P.4470-95a Polystachya Polystachya sp. NYBG 4470-95a \N \N \N \N \N 71983 \N subspecies Coffea canephora subsp. canephora \N \N \N \N \N 71984 C.gabunensis Citropsis Citropsis gabunensis \N \N \N \N \N 71985 T.quadrispinosa Trapa Trapa quadrispinosa \N \N \N \N \N 71986 S.modesta Scaphyglottis Scaphyglottis modesta \N \N \N \N \N 71987 \N genus Hyalosperma \N \N \N \N \N 71988 P.spathulata Plantago Plantago spathulata \N \N \N \N \N 71989 Z.fuscatum Zygophyllum Zygophyllum fuscatum \N \N \N \N \N 71990 \N genus Melancium \N \N \N \N \N 71991 M.nivea Monsonia Monsonia nivea \N \N \N \N \N 71992 P.ciliata Pimelea Pimelea ciliata \N \N \N \N \N 71993 G.vigilans Gladiolus Gladiolus vigilans \N \N \N \N \N 71994 M.glauca Muhlenbergia Muhlenbergia glauca \N \N \N \N \N 71995 \N genus Notiosciadium \N \N \N \N \N 71996 C.palangshanense Cypripedium Cypripedium palangshanense \N \N \N \N \N 71997 B.spathacea Babiana Babiana spathacea \N \N \N \N \N 71998 \N genus Hedeoma \N \N \N \N \N 71999 P.iberica Poa Poa iberica \N \N \N \N \N 72000 C.alata Crassula Crassula alata \N \N \N \N \N 72001 P.BL-2011b Psychotria Psychotria sp. BL-2011b \N \N \N \N \N 72002 L.genistoides Liparia Liparia genistoides \N \N \N \N \N 72003 P.pilosum Piptochaetium Piptochaetium pilosum \N \N \N \N \N 72004 G.albicans Glycine Glycine albicans \N \N \N \N \N 72005 \N genus Muellera \N \N \N \N \N 72006 R.glauca Ravenea Ravenea glauca \N \N \N \N \N 72007 N.stricta Nardus Nardus stricta \N \N \N \N \N 72008 P.thessala Petrorhagia Petrorhagia thessala \N \N \N \N \N 72009 C.vireta Chionochloa Chionochloa vireta \N \N \N \N \N 72010 E.schultzii Espeletia Espeletia schultzii \N \N \N \N \N 72011 I.marginata Isolepis Isolepis marginata \N \N \N \N \N 72012 S.sampaioana Simira Simira sampaioana \N \N \N \N \N 72013 R.celastroides Rytigynia Rytigynia celastroides \N \N \N \N \N 72014 C.ophthalmica Cayaponia Cayaponia ophthalmica \N \N \N \N \N 72015 S.meifolia Schtschurowskia Schtschurowskia meifolia \N \N \N \N \N 72016 H.grevei Hyperacanthus Hyperacanthus grevei \N \N \N \N \N 72017 A.crispulatum Asarum Asarum crispulatum \N \N \N \N \N 72018 S.colchiciflora Sternbergia Sternbergia colchiciflora \N \N \N \N \N 72019 S.angustifolium Solanum Solanum angustifolium \N \N \N \N \N 72020 C.CG-2009 Carex Carex sp. 3 CG-2009 \N \N \N \N \N 72021 C.crispiflora Ceiba Ceiba crispiflora \N \N \N \N \N 72022 \N genus Hexisea \N \N \N \N \N 72023 B.pleiosperma Bocageopsis Bocageopsis pleiosperma \N \N \N \N \N 72024 D.brachycentrum Delphinium Delphinium brachycentrum \N \N \N \N \N 72025 M.correifolia Myrceugenia Myrceugenia correifolia \N \N \N \N \N 72026 H.lissophloeus Hypericum Hypericum lissophloeus \N \N \N \N \N 72027 \N genus Drimiopsis \N \N \N \N \N 72028 R.ceriferum Ribes Ribes ceriferum \N \N \N \N \N 72029 G.microphylla Gleditsia Gleditsia microphylla \N \N \N \N \N 72030 A.spectabilis Amsinckia Amsinckia spectabilis wooly breeches \N \N \N \N 72031 P.serratifolia Premna Premna serratifolia \N \N \N \N \N 72032 T.begoniifolium Tremacron Tremacron begoniifolium \N \N \N \N \N 72033 S.grandiflora Sarcoglottis Sarcoglottis grandiflora \N \N \N \N \N 72034 L.annua Lunaria Lunaria annua honesty,moneyplant \N \N \N \N 72035 J.gallerandiana Jacobaea Jacobaea gallerandiana \N \N \N \N \N 72036 \N genus Distichia \N \N \N \N \N 72037 L.spartioides Lotus Lotus spartioides \N \N \N \N \N 72038 S.micrantha Schoenorchis Schoenorchis micrantha \N \N \N \N \N 72039 A.setosum Arcytophyllum Arcytophyllum setosum \N \N \N \N \N 72040 S.emodi Syringa Syringa emodi Himalayan lilic \N \N \N \N 72041 A.decurrens Arctotis Arctotis decurrens \N \N \N \N \N 72042 B.teres Bambusa Bambusa teres \N \N \N \N \N 72043 \N genus Scuticaria \N \N \N \N \N 72044 \N genus Halothamnus \N \N \N \N \N 72045 \N varietas Paris polyphylla var. chinensis \N \N \N \N \N 72046 H.mystacina Habenaria Habenaria mystacina \N \N \N \N \N 72047 \N subspecies Carduus nutans subsp. leiophyllus \N \N \N \N \N 72048 L.leschenaultiana Lobelia Lobelia leschenaultiana \N \N \N \N \N 72049 S.semiatrata Salvia Salvia semiatrata \N \N \N \N \N 72050 V.quinqueremis Viguiera Viguiera quinqueremis \N \N \N \N \N 72051 S.longiconicum Solanum Solanum longiconicum \N \N \N \N \N 72052 \N varietas Sinosenecio globiger var. adenophyllus \N \N \N \N \N 72053 L.mucronata Lebeckia Lebeckia mucronata \N \N \N \N \N 72054 \N genus Prestonia \N \N \N \N \N 72055 \N genus Loreya \N \N \N \N \N 72056 C.bonariensis Carex Carex bonariensis \N \N \N \N \N 72057 \N subspecies Medicago sativa subsp. glomerata \N \N \N \N \N 72058 \N genus Ewartia \N \N \N \N \N 72059 N.coronopifolia Nasturtiopsis Nasturtiopsis coronopifolia \N \N \N \N \N 72060 \N varietas Hymenaea stigonocarpa var. pubescens \N \N \N \N \N 72061 P.yunnanensis Pimpinella Pimpinella yunnanensis \N \N \N \N \N 72062 F.coerulescens Festuca Festuca coerulescens \N \N \N \N \N 72063 A.virgatus Asparagus Asparagus virgatus \N \N \N \N \N 72064 B.pubescens Brachycorythis Brachycorythis pubescens \N \N \N \N \N 72065 N.pedunculata Neomyrtus Neomyrtus pedunculata \N \N \N \N \N 72066 K.aphylla Karvandarina Karvandarina aphylla \N \N \N \N \N 72067 P.filicula Pomatosace Pomatosace filicula \N \N \N \N \N 72068 E.illinita Escallonia Escallonia illinita \N \N \N \N \N 72069 P.strobilifera Pultenaea Pultenaea strobilifera \N \N \N \N \N 72070 \N varietas Aechmea fulgens var. discolor \N \N \N \N \N 72071 A.littoralis Aristolochia Aristolochia littoralis \N \N \N \N \N 72072 P.scleranthus Paepalanthus Paepalanthus scleranthus \N \N \N \N \N 72073 A.costaricensis Aiouea Aiouea costaricensis \N \N \N \N \N 72074 \N varietas Satureja macrostema var. laevigata \N \N \N \N \N 72075 \N genus Cochemiea \N \N \N \N \N 72076 \N subspecies Anthemis cretica subsp. cretica \N \N \N \N \N 72077 C.amplexicaulis Chalarothyrsus Chalarothyrsus amplexicaulis \N \N \N \N \N 72078 P.nudipes Ptilochaeta Ptilochaeta nudipes \N \N \N \N \N 72079 G.pachypodium Gibbaeum Gibbaeum pachypodium \N \N \N \N \N 72080 \N genus Ulmus \N \N \N \N \N 72081 P.flaccida Primula Primula flaccida \N \N \N \N \N 88005 \N genus Astephanus \N \N \N \N \N 72082 C.noronhae Croton Croton noronhae \N \N \N \N \N 72083 D.95026 Dicentra Dicentra sp. Qiu 95026 \N \N \N \N \N 72084 \N genus Morinda \N \N \N \N \N 72085 S.drummondii Stachys Stachys drummondii \N \N \N \N \N 72086 \N genus Paneroa \N \N \N \N \N 72087 S.pappophoroides Schmidtia Schmidtia pappophoroides \N \N \N \N \N 72088 D.celata Disa Disa celata \N \N \N \N \N 72089 Q.nigra Quercus Quercus nigra water oak \N \N \N \N 72090 A.sessilis Alibertia Alibertia sessilis \N \N \N \N \N 72091 P.canariensis Pleiomeris Pleiomeris canariensis \N \N \N \N \N 72092 A.tongolense Aconitum Aconitum tongolense \N \N \N \N \N 72093 A.schmitzii Allium Allium schmitzii \N \N \N \N \N 72094 C.fadenii Coffea Coffea fadenii \N \N \N \N \N 72095 S.xanthopetala Swartzia Swartzia xanthopetala \N \N \N \N \N 72096 \N genus Siparuna \N \N \N \N \N 72097 C.uncifolia Carex Carex uncifolia \N \N \N \N \N 72098 L.villosus Lupinus Lupinus villosus \N \N \N \N \N 72099 \N varietas Hylotelephium sieboldii var. ettyuense \N \N \N \N \N 72100 C.rosea Cylindropuntia Cylindropuntia rosea \N \N \N \N \N 72101 C.oligocephala Carlina Carlina oligocephala \N \N \N \N \N 72102 S.bifucata Syringodea Syringodea bifucata \N \N \N \N \N 72103 D.setifolius Daucus Daucus setifolius \N \N \N \N \N 72104 H.hypogaea Hilgeria Hilgeria hypogaea \N \N \N \N \N 72105 O.javanica Oenanthe Oenanthe javanica \N \N \N \N \N 72106 R.fragrans Ribes Ribes fragrans \N \N \N \N \N 72107 A.crithmifolia Athanasia Athanasia crithmifolia \N \N \N \N \N 72108 O.bolusii Otholobium Otholobium bolusii \N \N \N \N \N 72109 S.ternatum Solanum Solanum ternatum \N \N \N \N \N 72110 C.costatifructa Coffea Coffea costatifructa \N \N \N \N \N 72111 \N genus Ammodaucus \N \N \N \N \N 72112 E.divaricatum Eryngium Eryngium divaricatum \N \N \N \N \N 72113 E.ribes Embelia Embelia ribes \N \N \N \N \N 72114 H.juncea Hypoxis Hypoxis juncea \N \N \N \N \N 72115 O.fruticosa Oenothera Oenothera fruticosa \N \N \N \N \N 72116 \N genus Xylobium \N \N \N \N \N 72117 \N subspecies Pelargonium anceps subsp. geniculatum \N \N \N \N \N 72118 V.paederotae Veronica Veronica paederotae \N \N \N \N \N 72119 R.mitriforme Rhododendron Rhododendron mitriforme \N \N \N \N \N 72120 E.melanthera Erica Erica melanthera \N \N \N \N \N 72121 M.subsessilis Macrocarpaea Macrocarpaea subsessilis \N \N \N \N \N 72122 T.galapagoa Tiquilia Tiquilia galapagoa \N \N \N \N \N 72123 S.nobilis Streptocarpus Streptocarpus nobilis \N \N \N \N \N 72124 Q.turbinella Quercus Quercus turbinella scrub live oak \N \N \N \N 72125 F.lushuiensis Fargesia Fargesia lushuiensis \N \N \N \N \N 72126 A.pumila Arabis Arabis pumila \N \N \N \N \N 72127 S.megatyla Sigmoidotropis Sigmoidotropis megatyla \N \N \N \N \N 72128 B.discolor Barnebya Barnebya discolor \N \N \N \N \N 72129 I.cathayensis Iris Iris cathayensis \N \N \N \N \N 72130 P.undulata Pulicaria Pulicaria undulata \N \N \N \N \N 72131 A.rigida Androsace Androsace rigida \N \N \N \N \N 72132 S.haematospermum Sapium Sapium haematospermum \N \N \N \N \N 72133 N.psammophila Nemesia Nemesia psammophila \N \N \N \N \N 72134 R.tempskyana Romulea Romulea tempskyana \N \N \N \N \N 72135 M.androcymbioides Merendera Merendera androcymbioides \N \N \N \N \N 72136 A.ravenii Arracacia Arracacia ravenii \N \N \N \N \N 72137 \N subspecies Dombeya acutangula subsp. rosea \N \N \N \N \N 72138 D.stipulare Dicraeopetalum Dicraeopetalum stipulare \N \N \N \N \N 72139 \N subspecies Thymelaea tinctoria subsp. nivalis \N \N \N \N \N 72140 A.racemosa Adenia Adenia racemosa \N \N \N \N \N 72141 L.linnaeoides Lobelia Lobelia linnaeoides \N \N \N \N \N 72142 G.patula Gentianella Gentianella patula \N \N \N \N \N 72143 L.umbellatum Lachnospermum Lachnospermum umbellatum \N \N \N \N \N 72144 \N genus Babingtonia \N \N \N \N \N 72145 A.acantholepis Alfredia Alfredia acantholepis \N \N \N \N \N 72146 \N genus Ciliosemina \N \N \N \N \N 72147 \N subfamily Hyacinthoideae \N \N \N \N \N 72148 C.acinaciformis Carpobrotus Carpobrotus acinaciformis \N \N \N \N \N 72149 O.lancilabius Otochilus Otochilus lancilabius \N \N \N \N \N 72150 C.schumannii Chisocheton Chisocheton schumannii \N \N \N \N \N 72151 C.paludosum Crinum Crinum paludosum \N \N \N \N \N 72152 \N genus Limnosipanea \N \N \N \N \N 72153 \N subspecies Carex echinata subsp. echinata \N \N \N \N \N 72154 E.rodwayi Eucalyptus Eucalyptus rodwayi \N \N \N \N \N 72155 C.davisii Carex Carex davisii \N \N \N \N \N 72156 C.breyeri Cleome Cleome breyeri \N \N \N \N \N 72157 C.cathayensis Chaenomeles Chaenomeles cathayensis Chinese flowering quince,mu gua hai tang \N \N \N \N 72158 E.1999-1710 Euchile Euchile sp. Kew 1999-1710 \N \N \N \N \N 72159 \N varietas Commelina africana var. villosior \N \N \N \N \N 72160 R.chrysanthemifolia Rhodiola Rhodiola chrysanthemifolia \N \N \N \N \N 72161 C.palustris Cardamine Cardamine palustris \N \N \N \N \N 72162 B.vulgaris Berberis Berberis vulgaris European barberry,common barberry \N \N \N \N 72163 C.officinalis Cochlearia Cochlearia officinalis scurvy-grass,spoonwort \N \N \N \N 72164 O.pubescens Orobanche Orobanche pubescens \N \N \N \N \N 72165 \N genus Babiana \N \N \N \N \N 72166 A.masafuerana Acaena Acaena masafuerana \N \N \N \N \N 72167 M.nudipes Miscanthus Miscanthus nudipes \N \N \N \N \N 72168 E.caucasicus Elymus Elymus caucasicus \N \N \N \N \N 72169 B.acetosella Begonia Begonia acetosella \N \N \N \N \N 72170 P.chapelieri Polyscias Polyscias chapelieri \N \N \N \N \N 72171 D.rimbachii Disterigma Disterigma rimbachii \N \N \N \N \N 72172 T.isopyroides Thalictrum Thalictrum isopyroides \N \N \N \N \N 72173 P.gallosum Protium Protium gallosum \N \N \N \N \N 72174 T.speciosum Tropaeolum Tropaeolum speciosum \N \N \N \N \N 72175 E.podophylla Erica Erica podophylla \N \N \N \N \N 72176 E.amidae Erica Erica amidae \N \N \N \N \N 72177 S.chrysotrichum Solanum Solanum chrysotrichum \N \N \N \N \N 72178 \N genus Sabicea \N \N \N \N \N 72179 F.circummediterranea Festuca Festuca circummediterranea \N \N \N \N \N 72182 R.milleri Rughidia Rughidia milleri \N \N \N \N \N 72183 P.villosum Phaeonychium Phaeonychium villosum \N \N \N \N \N 72184 D.delavayi Dioscorea Dioscorea delavayi \N \N \N \N \N 72185 A.preissii Anigozanthos Anigozanthos preissii \N \N \N \N \N 72186 D.triacantha Duranta Duranta triacantha \N \N \N \N \N 72187 A.membranaceum Allium Allium membranaceum \N \N \N \N \N 72188 R.falconeri Rhododendron Rhododendron falconeri \N \N \N \N \N 72189 \N genus Collabium \N \N \N \N \N 72190 \N genus Henriquezia \N \N \N \N \N 72191 M.vidalii Mussaenda Mussaenda vidalii \N \N \N \N \N 72192 \N genus Cryptostylis \N \N \N \N \N 72193 A.macrothyrsa Andira Andira macrothyrsa \N \N \N \N \N 72194 S.zhongdianensis Solms-laubachia Solms-laubachia zhongdianensis \N \N \N \N \N 72195 \N subspecies Crepis albida subsp. albida \N \N \N \N \N 72196 L.molle Lithospermum Lithospermum molle \N \N \N \N \N 72197 P.parishii Puccinellia Puccinellia parishii \N \N \N \N \N 72198 S.hispidus Streptanthus Streptanthus hispidus Mount Diablo jewelflower \N \N \N \N 72199 M.moaensis Morinda Morinda moaensis \N \N \N \N \N 72200 P.anisetum Pimpinella Pimpinella anisetum \N \N \N \N \N 72201 Z.buxijugum Zieria Zieria buxijugum \N \N \N \N \N 72202 \N subspecies Geranium cuneatum subsp. hololeucum \N \N \N \N \N 72203 D.oxleyanus Durio Durio oxleyanus \N \N \N \N \N 72204 C.laevis Costus Costus laevis \N \N \N \N \N 72205 C.shihchuanum Chrysanthemum Chrysanthemum shihchuanum \N \N \N \N \N 72206 I.amnicola Ipomoea Ipomoea amnicola \N \N \N \N \N 72207 \N tribe Eragrostideae \N \N \N \N \N 72208 R.jacquinii Reseda Reseda jacquinii \N \N \N \N \N 72209 H.maximum Heracleum Heracleum maximum \N \N \N \N \N 72210 \N genus Radyera \N \N \N \N \N 72211 P.mundii Protea Protea mundii \N \N \N \N \N 72212 C.brutia Callitriche Callitriche brutia \N \N \N \N \N 72213 P.costata Pultenaea Pultenaea costata \N \N \N \N \N 72214 \N genus Pehria \N \N \N \N \N 72215 P.minor Petrocosmea Petrocosmea minor \N \N \N \N \N 72216 E.allenii Epidryos Epidryos allenii \N \N \N \N \N 72217 G.erectiflorus Gladiolus Gladiolus erectiflorus \N \N \N \N \N 72218 P.JC-2009 Persea Persea sp. JC-2009 \N \N \N \N \N 72219 A.rossei Acacia Acacia rossei \N \N \N \N \N 72220 A.ruscifolius Astragalus Astragalus ruscifolius \N \N \N \N \N 72221 C.hirsutum Colchicum Colchicum hirsutum \N \N \N \N \N 72222 C.s.n. Cardiospermum Cardiospermum sp. Yuan s.n. \N \N \N \N \N 72223 P.peckii Penstemon Penstemon peckii \N \N \N \N \N 72224 B.brownlessiana Beccariella Beccariella brownlessiana \N \N \N \N \N 72225 T.corymbosus Tristerix Tristerix corymbosus \N \N \N \N \N 72226 C.parasitica Clidemia Clidemia parasitica \N \N \N \N \N 72227 S.ochracea Shorea Shorea ochracea \N \N \N \N \N 72228 C.meiocarpa Camellia Camellia meiocarpa \N \N \N \N \N 72229 S.poeppigiana Sida Sida poeppigiana \N \N \N \N \N 72230 J.gnaphalioides Jacobaea Jacobaea gnaphalioides \N \N \N \N \N 72231 P.leubnitziae Pechuel-loeschea Pechuel-loeschea leubnitziae \N \N \N \N \N 72232 \N genus Endressia \N \N \N \N \N 72233 \N tribe Phareae \N \N \N \N \N 72234 S.likiangensis Scutellaria Scutellaria likiangensis \N \N \N \N \N 72235 \N varietas Pelargonium myrrhifolium var. myrrhifolium \N \N \N \N \N 72236 C.diffusa Caralluma Caralluma diffusa \N \N \N \N \N 72237 P.tomentella Parashorea Parashorea tomentella \N \N \N \N \N 72238 C.araratica Catabrosella Catabrosella araratica \N \N \N \N \N 72239 A.gaudichaudii Aristolochia Aristolochia gaudichaudii \N \N \N \N \N 72240 \N genus Coeloneurum \N \N \N \N \N 72241 A.alba Alocasia Alocasia alba \N \N \N \N \N 72242 A.purpureospathum Arum Arum purpureospathum \N \N \N \N \N 72243 G.speciosa Gustavia Gustavia speciosa \N \N \N \N \N 72244 \N genus Gymnosteris \N \N \N \N \N 72245 S.guatemalensis Stelis Stelis guatemalensis \N \N \N \N \N 72246 \N subspecies Petunia integrifolia subsp. integrifolia \N \N \N \N \N 72247 S.pentelica Silene Silene pentelica \N \N \N \N \N 72248 T.calliceras Trigonella Trigonella calliceras \N \N \N \N \N 72249 E.maackii Euonymus Euonymus maackii winterberry euonymus \N \N \N \N 72250 S.siamensis Sindora Sindora siamensis \N \N \N \N \N 72251 E.gaillardotii Erodium Erodium gaillardotii \N \N \N \N \N 72252 R.repens Rubus Rubus repens dewdrop,robin-run-away \N \N \N \N 72253 D.confusum Dendrobium Dendrobium confusum \N \N \N \N \N 72254 D.cymosa Diphylleia Diphylleia cymosa umbrella leaf \N \N \N \N 72255 C.sample environmental samples Taxonomy:319697 cf. Tilia environomental sample \N \N \N \N \N 72256 N.rubrodisca Nuphar Nuphar rubrodisca \N \N \N \N \N 72257 \N genus Detarium \N \N \N \N \N 72258 P.tuberculosum Phebalium Phebalium tuberculosum \N \N \N \N \N 72259 C.pachyphylla Clethra Clethra pachyphylla \N \N \N \N \N 72260 P.pyraster Pyrus Pyrus pyraster wild pear \N \N \N \N 72261 G.Chongyen Goniothalamus Goniothalamus sp. Chongyen \N \N \N \N \N 72262 A.bockii Arisaema Arisaema bockii \N \N \N \N \N 72263 F.villosula Fosterella Fosterella villosula \N \N \N \N \N 72264 \N subspecies Carex lepidocarpa subsp. nevadensis \N \N \N \N \N 72265 B.aloexylon Bursera Bursera aloexylon \N \N \N \N \N 72266 P.crassus Plectranthus Plectranthus crassus \N \N \N \N \N 72267 P.spinosa Pradosia Pradosia spinosa \N \N \N \N \N 72268 \N genus Neololeba \N \N \N \N \N 72269 H.oblonga Hieronyma Hieronyma oblonga \N \N \N \N \N 72270 Z.panamense Zanthoxylum Zanthoxylum panamense \N \N \N \N \N 72271 E.semiserratum Eupatorium Eupatorium semiserratum smallflower thoroughwort \N \N \N \N 72272 \N genus Celsia \N \N \N \N \N 72273 O.phaidra Ophrys Ophrys phaidra \N \N \N \N \N 72274 \N varietas Pappostipa speciosa var. speciosa \N \N \N \N \N 72275 \N genus Zagrosia \N \N \N \N \N 72276 N.vestita Nemcia Nemcia vestita \N \N \N \N \N 72277 A.declinata Acacia Acacia declinata \N \N \N \N \N 72278 H.chiangmaiense Hydrobryum Hydrobryum chiangmaiense \N \N \N \N \N 72279 B.grossa Betula Betula grossa Japanese cherry birch \N \N \N \N 72281 L.longiflora Licuala Licuala longiflora \N \N \N \N \N 72282 T.carnosa Tidestromia Tidestromia carnosa \N \N \N \N \N 72283 A.villosa Adenandra Adenandra villosa \N \N \N \N \N 72284 N.khasiana Nepenthes Nepenthes khasiana \N \N \N \N \N 72285 M.gasseriana Mammillaria Mammillaria gasseriana \N \N \N \N \N 72286 O.pycnantha Opuntia Opuntia pycnantha \N \N \N \N \N 72287 M.micrantha Macrocarpaea Macrocarpaea micrantha \N \N \N \N \N 72288 \N genus Ageratina \N \N \N \N \N 72289 B.bellidioides Bellium Bellium bellidioides \N \N \N \N \N 72290 M.resupinata Malaxis Malaxis resupinata \N \N \N \N \N 72291 \N subspecies Echinocereus parkeri subsp. parkeri \N \N \N \N \N 72292 \N genus Mitreola \N \N \N \N \N 72293 P.campanulata Passiflora Passiflora campanulata \N \N \N \N \N 72294 C.fragrans Clerodendrum Clerodendrum fragrans \N \N \N \N \N 72295 H.microphylla Hoffmannseggia Hoffmannseggia microphylla \N \N \N \N \N 72296 W.183 Wendlandia Wendlandia sp. Reshinger 183 \N \N \N \N \N 72297 E.rigidula Erica Erica rigidula \N \N \N \N \N 72298 O.ciliata Oxytropis Oxytropis ciliata \N \N \N \N \N 72299 K.5500 Kayea Kayea sp. Wood & Teck 5500 \N \N \N \N \N 72300 P.alyssifolia Phlox Phlox alyssifolia \N \N \N \N \N 72301 F.petiolaris Ficus Ficus petiolaris \N \N \N \N \N 72302 A.fukudo Artemisia Artemisia fukudo \N \N \N \N \N 72303 A.standleyi Asclepias Asclepias standleyi \N \N \N \N \N 72304 \N genus Anguloa \N \N \N \N \N 72305 P.parviflora Psydrax Psydrax parviflora \N \N \N \N \N 72306 D.lewellinii Dicrastylis Dicrastylis lewellinii \N \N \N \N \N 72307 R.trivialis Rubus Rubus trivialis \N \N \N \N \N 72308 E.atrorubens Eupatorium Eupatorium atrorubens \N \N \N \N \N 72309 E.botryodes Eragrostis Eragrostis botryodes \N \N \N \N \N 72310 B.curtisii Boesenbergia Boesenbergia curtisii \N \N \N \N \N 72311 C.rupicola Cardamine Cardamine rupicola \N \N \N \N \N 72312 M.javorkaeana Miconia Miconia javorkaeana \N \N \N \N \N 72313 S.galloprovinciale Seseli Seseli galloprovinciale \N \N \N \N \N 72314 D.haemoglossum Dendrobium Dendrobium haemoglossum \N \N \N \N \N 72315 O.sitiaca Ophrys Ophrys sitiaca \N \N \N \N \N 72316 N.microcarpa Notelaea Notelaea microcarpa \N \N \N \N \N 72317 N.murrayana Neogardneria Neogardneria murrayana \N \N \N \N \N 72318 O.schumanniana Oerstedella Oerstedella schumanniana \N \N \N \N \N 72319 S.lotsyi Sideritis Sideritis lotsyi \N \N \N \N \N 72320 M.setarioides Muhlenbergia Muhlenbergia setarioides \N \N \N \N \N 72321 H.victoria Hakea Hakea victoria \N \N \N \N \N 72322 E.thomae Erica Erica thomae \N \N \N \N \N 72323 P.ericifolia Poranthera Poranthera ericifolia \N \N \N \N \N 72324 E.gunnianum Epilobium Epilobium gunnianum \N \N \N \N \N 72325 \N genus Odyendyea \N \N \N \N \N 72326 N.D2 Neonauclea Neonauclea sp. D2 \N \N \N \N \N 72327 \N varietas Ceanothus fendleri var. fendleri \N \N \N \N \N 72328 H.impar Heterostemon Heterostemon impar \N \N \N \N \N 72329 C.incarnata Crepis Crepis incarnata \N \N \N \N \N 72330 O.troodi Onosma Onosma troodi \N \N \N \N \N 72331 A.longituberosus Amorphophallus Amorphophallus longituberosus \N \N \N \N \N 72332 B.burretiana Balaka Balaka burretiana \N \N \N \N \N 72333 P.aspera Protea Protea aspera \N \N \N \N \N 72334 R.tinctorum Rubia Rubia tinctorum dyer's madder,madder \N \N \N \N 72335 C.tripugionacantha Coryphantha Coryphantha tripugionacantha \N \N \N \N \N 72336 A.misera Allocasuarina Allocasuarina misera \N \N \N \N \N 72337 P.lateriflora Polyalthia Polyalthia lateriflora \N \N \N \N \N 72338 L.excelsa Lyginia Lyginia excelsa \N \N \N \N \N 72339 E.anomala Erythrococca Erythrococca anomala \N \N \N \N \N 72340 P.lychnitis Phlomis Phlomis lychnitis lampwick-plant \N \N \N \N 72341 \N subspecies Acer saccharum subsp. skutchii \N \N \N \N \N 72342 N.benstonei Nepenthes Nepenthes benstonei \N \N \N \N \N 72343 \N genus Indoneesiella \N \N \N \N \N 72344 P.lolot Piper Piper lolot \N \N \N \N \N 72345 M.577 Miconia Miconia sp. Trusty 577 \N \N \N \N \N 72346 S.hydrangeoides Schizophragma Schizophragma hydrangeoides \N \N \N \N \N 72347 \N genus Garcia \N \N \N \N \N 72348 M.dura Millettia Millettia dura \N \N \N \N \N 72349 \N varietas Parashorea chinensis var. kwangsiensis \N \N \N \N \N 72350 C.teretifolia Cliffortia Cliffortia ruscifolia x Cliffortia teretifolia \N \N \N \N \N 72351 \N varietas Cliffortia juniperina var. juniperina \N \N \N \N \N 72352 A.capensis Agave Agave capensis \N \N \N \N \N 72353 C.obliquinervium Calophyllum Calophyllum obliquinervium \N \N \N \N \N 72354 \N subspecies Veronica barrelieri subsp. barrelieri \N \N \N \N \N 72355 \N genus Galagania \N \N \N \N \N 72356 C.hesperius Chiliadenus Chiliadenus hesperius \N \N \N \N \N 72357 M.bella Meconopsis Meconopsis bella \N \N \N \N \N 72358 C.tweediana Cissus Cissus tweediana \N \N \N \N \N 72359 \N genus Pappophorum \N \N \N \N \N 72360 R.cantleyi Rafflesia Rafflesia cantleyi \N \N \N \N \N 72361 \N subspecies Veronica missurica subsp. stellata \N \N \N \N \N 72362 \N genus Pinochia \N \N \N \N \N 72363 M.pygmaea Megadenia Megadenia pygmaea \N \N \N \N \N 72364 B.dolichomerithalla Bambusa Bambusa dolichomerithalla \N \N \N \N \N 72365 I.bakeri Iliamna Iliamna bakeri \N \N \N \N \N 72366 H.grandiflorus Helianthus Helianthus grandiflorus \N \N \N \N \N 72367 A.680 Amaracarpus Amaracarpus sp. Parvis 680 \N \N \N \N \N 72368 D.hispidulus Distichostemon Distichostemon hispidulus \N \N \N \N \N 72369 G.parvifolia Guatteria Guatteria parvifolia \N \N \N \N \N 72370 H.praestans Habenaria Habenaria praestans \N \N \N \N \N 72371 P.stellatum Pterolobium Pterolobium stellatum \N \N \N \N \N 72372 M.mimulifolium Melampodium Melampodium mimulifolium \N \N \N \N \N 72373 C.triquetra Carex Carex triquetra \N \N \N \N \N 72374 N.langsdorffii Nicotiana Nicotiana glauca x Nicotiana langsdorffii \N \N \N \N \N 72375 T.paniculata Trilisa Trilisa paniculata \N \N \N \N \N 72376 S.blackiana Sclerolaena Sclerolaena blackiana \N \N \N \N \N 88006 \N genus Olmediella \N \N \N \N \N 72377 T.portulacifolium Talinum Talinum portulacifolium \N \N \N \N \N 72378 S.nemophilum Solanum Solanum nemophilum \N \N \N \N \N 72379 P.altiplana Petunia Petunia altiplana \N \N \N \N \N 72380 S.gilletii Sabicea Sabicea gilletii \N \N \N \N \N 72381 V.amplificatum Viburnum Viburnum amplificatum \N \N \N \N \N 72382 B.exaltatum Bulbophyllum Bulbophyllum exaltatum \N \N \N \N \N 72383 M.tetraloba Malaxis Malaxis tetraloba \N \N \N \N \N 72384 H.salzmanniana Hypochaeris Hypochaeris salzmanniana \N \N \N \N \N 72385 \N varietas Phacelia lutea var. calva Owyhee phacelia \N \N \N \N 72386 A.campanuloides Asyneuma Asyneuma campanuloides \N \N \N \N \N 72387 R.constantinopolitanus Ranunculus Ranunculus constantinopolitanus \N \N \N \N \N 72388 G.chrysanthum Glossoloma Glossoloma chrysanthum \N \N \N \N \N 72389 J.sagastegui Jaltomata Jaltomata sagastegui \N \N \N \N \N 72390 F.glandifera Ficus Ficus glandifera \N \N \N \N \N 72391 S.brachyotus Sonchus Sonchus brachyotus \N \N \N \N \N 72392 G.vieillardii Gonatostylis Gonatostylis vieillardii \N \N \N \N \N 72393 \N genus Englerocharis \N \N \N \N \N 72394 S.elliottii Secamone Secamone elliottii \N \N \N \N \N 72395 F.robecchiana Farsetia Farsetia robecchiana \N \N \N \N \N 72396 P.americanum Polygonum Polygonum americanum \N \N \N \N \N 72397 H.tridactylites Habenaria Habenaria tridactylites \N \N \N \N \N 72398 \N varietas Erythronium grandiflorum var. chrysandrum \N \N \N \N \N 72399 \N genus Ceratocephala \N \N \N \N \N 72400 D.sinensis Dregea Dregea sinensis \N \N \N \N \N 72401 S.laetificata Stephania Stephania laetificata \N \N \N \N \N 72402 S.paralias Stigmaphyllon Stigmaphyllon paralias \N \N \N \N \N 72403 H.obconicum Helichrysum Helichrysum obconicum \N \N \N \N \N 72404 M.appendiculatum Melampodium Melampodium appendiculatum \N \N \N \N \N 72405 C.parviflora Calibrachoa Calibrachoa parviflora seaside petunia,wild petunia \N \N \N \N 72406 \N varietas Cucumis sativus var. sikkimensis \N \N \N \N \N 72407 \N genus Amphiscirpus \N \N \N \N \N 72408 S.australis Schenkia Schenkia australis \N \N \N \N \N 72409 D.chlorocrater Dolichodelphys Dolichodelphys chlorocrater \N \N \N \N \N 72410 \N genus Pterocyclus \N \N \N \N \N 72411 Z.filifolia Zephyranthes Zephyranthes filifolia \N \N \N \N \N 72412 L.BB1 Lithocarpus Lithocarpus sp. BB1 \N \N \N \N \N 72413 D.lancifolium Dendrobium Dendrobium lancifolium \N \N \N \N \N 72414 P.GW2658 Psychotria Psychotria sp. 1 GW2658 \N \N \N \N \N 72415 F.platyphylla Florestina Florestina platyphylla \N \N \N \N \N 72416 \N subspecies Malva cretica subsp. althaeoides \N \N \N \N \N 72417 \N genus Bertiera \N \N \N \N \N 72418 \N subspecies Hordeum patagonicum subsp. mustersii \N \N \N \N \N 72419 O.perpusilla Oserya Oserya perpusilla \N \N \N \N \N 72420 H.weixiense Holcoglossum Holcoglossum weixiense \N \N \N \N \N 72421 S.capensis Spiloxene Spiloxene capensis \N \N \N \N \N 72422 A.echinocaulis Aralia Aralia echinocaulis \N \N \N \N \N 72423 R.LMP-2002 Riedelia Riedelia sp. LMP-2002 \N \N \N \N \N 72424 S.SP179 Sisyrinchium Sisyrinchium aff. tinctorium SP179 \N \N \N \N \N 72425 \N varietas Aegilops speltoides var. ligustica \N \N \N \N \N 72426 D.magellanica Draba Draba magellanica \N \N \N \N \N 72427 \N genus Irvingbaileya \N \N \N \N \N 72428 A.gaditana Armeria Armeria gaditana \N \N \N \N \N 72429 H.blanchei Haplophyllum Haplophyllum blanchei \N \N \N \N \N 72430 D.perennis Dontostemon Dontostemon perennis \N \N \N \N \N 72431 M.affinis Mascagnia Mascagnia affinis \N \N \N \N \N 72432 M.SGR-2009 Morinda Morinda sp. 1 SGR-2009 \N \N \N \N \N 72433 A.graminea Alstroemeria Alstroemeria graminea \N \N \N \N \N 72434 E.albescens Erica Erica albescens \N \N \N \N \N 72435 T.trachycarpus Tragopogon Tragopogon trachycarpus \N \N \N \N \N 72436 A.cedilloi Acacia Acacia x cedilloi \N \N \N \N \N 72437 \N genus Duparquetia \N \N \N \N \N 72438 C.zebrina Columnea Columnea zebrina \N \N \N \N \N 72439 \N genus Tricostularia \N \N \N \N \N 72440 R.chilensis Ranunculus Ranunculus chilensis \N \N \N \N \N 72441 C.retrorsa Carex Carex retrorsa \N \N \N \N \N 72442 \N genus Kreysigia \N \N \N \N \N 72443 E.pseudojunceum Eryngium Eryngium pseudojunceum \N \N \N \N \N 72444 J.dissecta Jamesbrittenia Jamesbrittenia dissecta \N \N \N \N \N 72445 D.lobbii Delostoma Delostoma lobbii \N \N \N \N \N 72446 G.australis Glyceria Glyceria australis \N \N \N \N \N 72447 W.bifolia Whiteheadia Whiteheadia bifolia \N \N \N \N \N 72448 P.tetraphylla Poiretia Poiretia tetraphylla \N \N \N \N \N 72449 S.confusus Streptocarpus Streptocarpus confusus \N \N \N \N \N 72450 T.turbinatum Trigonidium Trigonidium turbinatum \N \N \N \N \N 72451 D.flexicaule Dendrobium Dendrobium flexicaule \N \N \N \N \N 72452 \N genus Monactis \N \N \N \N \N 72453 A.citrata Aerangis Aerangis citrata \N \N \N \N \N 72454 D.biflorus Dianthus Dianthus biflorus \N \N \N \N \N 72455 S.guianensis Strychnos Strychnos guianensis \N \N \N \N \N 72456 S.umbellatum Solanum Solanum umbellatum \N \N \N \N \N 72457 \N genus Solidago \N \N \N \N \N 72458 \N subspecies Genista cephalantha subsp. demnatensis \N \N \N \N \N 72459 T.466 unclassified Taraxacum Taraxacum (sect. Kashmirana) sp. 466 \N \N \N \N \N 72460 \N genus Calligonum \N \N \N \N \N 72461 S.sericeus Spinifex Spinifex sericeus \N \N \N \N \N 72462 A.elata Aralia Aralia elata \N \N \N \N \N 72463 P.pedata Psiguria Psiguria pedata \N \N \N \N \N 72464 P.coquimbense Polycarpon Polycarpon coquimbense \N \N \N \N \N 72465 L.parvifolium Lomatium Lomatium parvifolium coastal biscuitroot \N \N \N \N 72466 D.sibirica Draba Draba sibirica \N \N \N \N \N 72467 S.minor Strychnos Strychnos minor \N \N \N \N \N 72468 \N genus Melilotus \N \N \N \N \N 72469 C.microphyllum Combretum Combretum microphyllum flamecreeper \N \N \N \N 72470 D.repens Dentella Dentella repens \N \N \N \N \N 72471 V.obtusifolia Viguiera Viguiera obtusifolia \N \N \N \N \N 72472 C.pendulus Calolisianthus Calolisianthus pendulus \N \N \N \N \N 72473 \N tribe Pycnocomeae \N \N \N \N \N 72474 C.ornatum Chrysanthemum Chrysanthemum ornatum \N \N \N \N \N 72475 \N subspecies Silene caroliniana subsp. wherryi Wherry's catchfly \N \N \N \N 72476 C.mitriformis Cuscuta Cuscuta mitriformis \N \N \N \N \N 72477 S.portulacastrum Sesuvium Sesuvium portulacastrum sea-purslane \N \N \N \N 72478 M.cerifera Morella Morella cerifera candleberry,wax-myrtle \N \N \N \N 72479 L.strictum Lepidium Lepidium strictum \N \N \N \N \N 72480 A.simsii Aeonium Aeonium simsii \N \N \N \N \N 72481 H.antarcticum Hieracium Hieracium antarcticum \N \N \N \N \N 72482 C.louvelii Croton Croton louvelii \N \N \N \N \N 72483 H.digitata Heliophila Heliophila digitata \N \N \N \N \N 72484 \N genus Trichopus \N \N \N \N \N 72485 \N family Bignoniaceae trumpet creeper family \N \N \N \N 72486 \N subspecies Cynoglossum pustulatum subsp. pustulatum \N \N \N \N \N 72487 S.patagonicum Spegazziniophytum Spegazziniophytum patagonicum \N \N \N \N \N 72488 \N subspecies Coincya monensis subsp. monensis \N \N \N \N \N 72489 T.plantaginea Tacca Tacca plantaginea \N \N \N \N \N 72490 \N genus Lansium \N \N \N \N \N 72491 B.pygmaea Boechera Boechera pygmaea \N \N \N \N \N 72492 E.theriaca Euphorbia Euphorbia theriaca \N \N \N \N \N 72493 M.concolor Manilkara Manilkara concolor \N \N \N \N \N 72494 C.saharae Crotalaria Crotalaria saharae \N \N \N \N \N 72495 E.purpurata Epipactis Epipactis purpurata \N \N \N \N \N 72496 T.olympicus Tragopogon Tragopogon olympicus \N \N \N \N \N 72497 K.macrantha Koelpinia Koelpinia macrantha \N \N \N \N \N 72498 I.rubra Ipomopsis Ipomopsis rubra \N \N \N \N \N 72499 \N genus Haematoxylum \N \N \N \N \N 72500 D.ramosum Delphinium Delphinium ramosum \N \N \N \N \N 72501 T.hexandra Topobea Topobea hexandra \N \N \N \N \N 72502 E.Esp8 Elleanthus Elleanthus sp. Esp8 \N \N \N \N \N 72503 S.12385 Steirodiscus Steirodiscus sp. Goldblatt 12385 \N \N \N \N \N 72504 \N genus Uroskinnera \N \N \N \N \N 72505 P.venustoinsigne Paphiopedilum Paphiopedilum x venustoinsigne \N \N \N \N \N 72506 S.calileguae Solanum Solanum calileguae \N \N \N \N \N 72507 B.disticha Breynia Breynia disticha \N \N \N \N \N 72508 \N genus Eriolarynx \N \N \N \N \N 72509 C.labriculata Corythophora Corythophora labriculata \N \N \N \N \N 72510 E.pygmaeus Erigeron Erigeron pygmaeus \N \N \N \N \N 72511 R.treutleri Rubus Rubus treutleri \N \N \N \N \N 72512 I.amphorata Impatiens Impatiens amphorata \N \N \N \N \N 72513 P.ecuadorana Pescatoria Pescatoria ecuadorana \N \N \N \N \N 72514 E.cymbidioides Epigeneium Epigeneium cymbidioides \N \N \N \N \N 72515 A.cytisoides Anthyllis Anthyllis cytisoides \N \N \N \N \N 72516 \N genus Speranskia \N \N \N \N \N 72517 E.lupulina Euphorbia Euphorbia lupulina \N \N \N \N \N 72518 A.Emei' Acorus Acorus sp. 'Mt. Emei' \N \N \N \N \N 72519 P.2802 Palaua Palaua cf. dissecta Schneider et al. 2802 \N \N \N \N \N 72520 \N varietas Ainsliaea fragrans var. integrifolia \N \N \N \N \N 72521 A.omeiensis Angelica Angelica omeiensis \N \N \N \N \N 72522 \N genus Caladenia \N \N \N \N \N 72523 C.nutans Clinacanthus Clinacanthus nutans \N \N \N \N \N 72524 C.152 Cerdia Cerdia sp. Escamilla et al. 152 \N \N \N \N \N 72525 A.spathulifolius Aster Aster spathulifolius \N \N \N \N \N 72526 M.vilersii Mimosa Mimosa vilersii \N \N \N \N \N 72527 \N varietas Phaius pulchellus var. sandrangatensis \N \N \N \N \N 72528 A.dumosa Alluaudia Alluaudia dumosa \N \N \N \N \N 72529 E.serratifolia Exochorda Exochorda serratifolia \N \N \N \N \N 72530 S.globulifera Saxifraga Saxifraga globulifera \N \N \N \N \N 72531 \N forma Octolepis dioica f. oblanceolata \N \N \N \N \N 72532 H.sericea Heteropterys Heteropterys sericea \N \N \N \N \N 72533 O.concinnum Ornithogalum Ornithogalum concinnum \N \N \N \N \N 72534 \N genus Pittocaulon \N \N \N \N \N 72535 P.rugosa Pomaderris Pomaderris rugosa \N \N \N \N \N 72536 \N varietas Cuscuta japonica var. japonica \N \N \N \N \N 72537 \N genus Oroxylum \N \N \N \N \N 72538 A.geyeri Astragalus Astragalus geyeri \N \N \N \N \N 72539 I.subverticillata Ischyrolepis Ischyrolepis subverticillata \N \N \N \N \N 72540 P.JPM017 Peperomia Peperomia sp. JPM017 \N \N \N \N \N 72541 T.s.n. Telopea Telopea sp. Weston s.n. \N \N \N \N \N 72542 \N genus Gymnophyton \N \N \N \N \N 72543 I.fissicornis Impatiens Impatiens fissicornis \N \N \N \N \N 72544 \N genus Paxistima \N \N \N \N \N 72545 P.scoparia Prunus Prunus scoparia \N \N \N \N \N 72546 A.turgidum Archidendron Archidendron turgidum \N \N \N \N \N 72547 Y.emeryi Yushania Yushania emeryi \N \N \N \N \N 72548 B.VOV-2010 Brahea Brahea sp. VOV-2010 \N \N \N \N \N 72549 V.chaerophylloides Viola Viola chaerophylloides \N \N \N \N \N 72550 \N genus Blastus \N \N \N \N \N 72551 G.multiflorum Geranium Geranium multiflorum \N \N \N \N \N 72552 \N genus Oreocomopsis \N \N \N \N \N 72553 L.subglaucescens Lonchocarpus Lonchocarpus subglaucescens \N \N \N \N \N 72554 L.plicata Lotononis Lotononis plicata \N \N \N \N \N 72555 A.bicolor Annona Annona bicolor \N \N \N \N \N 72556 C.spinescens Cordia Cordia spinescens \N \N \N \N \N 72557 \N genus Mazaea \N \N \N \N \N 72558 C.schippii Celtis Celtis schippii \N \N \N \N \N 72559 \N subspecies Ipomopsis aggregata subsp. collina \N \N \N \N \N 72560 \N genus Eriochloa \N \N \N \N \N 72561 P.sonchifolia Paraixeris Paraixeris sonchifolia \N \N \N \N \N 72562 A.ringens Aerides Aerides ringens \N \N \N \N \N 72563 O.albini Oncidium Oncidium albini \N \N \N \N \N 72564 A.querioides Arenaria Arenaria querioides \N \N \N \N \N 72565 S.obovatum Stryphnodendron Stryphnodendron obovatum \N \N \N \N \N 72566 \N genus Monodora \N \N \N \N \N 72567 A.annulatus Anulocaulis Anulocaulis annulatus \N \N \N \N \N 72568 \N subspecies Ranunculus hyperboreus subsp. samojedorum \N \N \N \N \N 72569 L.papuana Leea Leea papuana \N \N \N \N \N 72570 A.agrimonioides Aremonia Aremonia agrimonioides \N \N \N \N \N 72571 M.impedita Meconopsis Meconopsis impedita \N \N \N \N \N 72572 R.padcayensis Rebutia Rebutia padcayensis \N \N \N \N \N 72573 D.conchitae Daucus Daucus conchitae \N \N \N \N \N 72574 T.kotschyi Tanacetum Tanacetum kotschyi \N \N \N \N \N 72575 A.minus Astrocaryum Astrocaryum minus \N \N \N \N \N 72576 M.schwarzii Mammillaria Mammillaria schwarzii \N \N \N \N \N 72577 C.gobica Caragana Caragana gobica \N \N \N \N \N 72578 S.trifidus Senecio Senecio trifidus \N \N \N \N \N 72579 A.procera Alluaudia Alluaudia procera \N \N \N \N \N 72580 \N genus Elaeis \N \N \N \N \N 72581 P.goesii Piper Piper goesii \N \N \N \N \N 72582 M.septentrionalis Miconia Miconia septentrionalis \N \N \N \N \N 72583 \N genus Ophrys \N \N \N \N \N 72584 E.parryi Eremalche Eremalche parryi \N \N \N \N \N 72585 C.barbaraeoides Cardamine Cardamine barbaraeoides \N \N \N \N \N 72586 C.delicata Camellia Camellia delicata \N \N \N \N \N 72587 C.confertum Canthium Canthium confertum \N \N \N \N \N 72588 I.pinnata Ipomopsis Ipomopsis pinnata \N \N \N \N \N 72589 C.heldreichii Carum Carum heldreichii \N \N \N \N \N 72590 B.library unclassified Paniceae Brachiaria mixed EST library \N \N \N \N \N 72591 A.gracililaxa Agrostis Agrostis gracililaxa \N \N \N \N \N 72592 A.pectinatus Astragalus Astragalus pectinatus \N \N \N \N \N 72593 P.pauciflora Pentas Pentas pauciflora \N \N \N \N \N 72594 D.brachypodium Duthiea Duthiea brachypodium \N \N \N \N \N 72595 L.halleuxii Lemurophoenix Lemurophoenix halleuxii \N \N \N \N \N 72596 O.disticha Oxalis Oxalis disticha \N \N \N \N \N 72597 I.micrococca Ilex Ilex micrococca \N \N \N \N \N 72598 \N subspecies Aucuba chinensis subsp. omeiensis \N \N \N \N \N 72599 C.retorta Cerinthe Cerinthe retorta \N \N \N \N \N 72600 S.SH-2010 Sarcomelicope Sarcomelicope sp. SH-2010 \N \N \N \N \N 72601 T.14a unclassified Taraxacum Taraxacum (sect. Leucantha) sp. 14a \N \N \N \N \N 72602 \N varietas Arisaema nikoense var. brevicollum \N \N \N \N \N 72603 I.spiciformis Isertia Isertia spiciformis \N \N \N \N \N 72604 P.nudata Polygala Polygala nudata \N \N \N \N \N 72605 \N genus Stoebe \N \N \N \N \N 72606 S.wakefieldii Solenangis Solenangis wakefieldii \N \N \N \N \N 72607 A.oliverianum Acer Acer oliverianum \N \N \N \N \N 72608 R.faucium Rhododendron Rhododendron faucium \N \N \N \N \N 72609 \N genus Neosparton \N \N \N \N \N 72610 H.swertioides Hedyotis Hedyotis swertioides \N \N \N \N \N 72611 W.bojeriana Weinmannia Weinmannia bojeriana \N \N \N \N \N 72612 \N varietas Macaranga lowii var. lowii \N \N \N \N \N 72613 C.2324 Cryptocentrum Cryptocentrum sp. Whitten 2324 \N \N \N \N \N 72614 M.rusbyana Mimosa Mimosa rusbyana \N \N \N \N \N 72615 T.hymenostephanus Tiarocarpus Tiarocarpus hymenostephanus \N \N \N \N \N 72616 R.phyllocephala Rayjacksonia Rayjacksonia phyllocephala \N \N \N \N \N 72617 P.130703-1 Primula Primula sp. Oyumaa 130703-1 \N \N \N \N \N 72618 \N genus Humbertioturraea \N \N \N \N \N 72619 X.wrightii Xylorhiza Xylorhiza wrightii \N \N \N \N \N 72620 \N subspecies Pseudoroegneria geniculata subsp. pruinifera \N \N \N \N \N 72621 P.stipuleanatus Panax Panax stipuleanatus \N \N \N \N \N 72622 N.wettsteinii Nepeta Nepeta wettsteinii \N \N \N \N \N 72623 I.amethystoides Isodon Isodon amethystoides \N \N \N \N \N 72624 W.sinora Wurmbea Wurmbea sinora \N \N \N \N \N 72625 A.wangii Aesculus Aesculus wangii \N \N \N \N \N 72626 P.thurberi Petalonyx Petalonyx thurberi \N \N \N \N \N 72627 \N genus Neolemonniera \N \N \N \N \N 72628 C.procumbens Cotoneaster Cotoneaster procumbens \N \N \N \N \N 72629 \N subspecies Gymnocalycium glaucum subsp. ferrarii \N \N \N \N \N 72630 C.californica Carpenteria Carpenteria californica \N \N \N \N \N 72631 G.ludens Giliastrum Giliastrum ludens \N \N \N \N \N 72632 C.cuneata Cliffortia Cliffortia cuneata \N \N \N \N \N 72633 H.edulis Hexachlamys Hexachlamys edulis \N \N \N \N \N 72634 S.fragoseum Schizeilema Schizeilema fragoseum \N \N \N \N \N 72635 O.storkii Oncidium Oncidium storkii \N \N \N \N \N 72636 C.oreosyce Cucumis Cucumis oreosyce \N \N \N \N \N 72637 C.abchasica Cardamine Cardamine abchasica \N \N \N \N \N 72638 C.compacta Cuscuta Cuscuta compacta \N \N \N \N \N 72639 A.paniculata Afraegle Afraegle paniculata \N \N \N \N \N 72640 \N genus Macropodanthus \N \N \N \N \N 72641 G.7471 Glossostigma Glossostigma sp. Barker 7471 \N \N \N \N \N 72642 \N genus Mespilus \N \N \N \N \N 72643 S.aucheri Sphaerocoma Sphaerocoma aucheri \N \N \N \N \N 72644 G.buxifolia Gynoxys Gynoxys buxifolia \N \N \N \N \N 72645 S.chingii Semiliquidambar Semiliquidambar chingii \N \N \N \N \N 72646 \N subspecies Tropaeolum hookerianum subsp. austropurpureum \N \N \N \N \N 72647 E.ombrophilum Eryngium Eryngium ombrophilum \N \N \N \N \N 72648 I.eberhardtii Impatiens Impatiens eberhardtii \N \N \N \N \N 72649 O.chilensis Osmorhiza Osmorhiza chilensis \N \N \N \N \N 72650 D.minutiflorum Dendrobium Dendrobium minutiflorum \N \N \N \N \N 72651 M.angulata Merope Merope angulata \N \N \N \N \N 72652 A.costaricensis Aegiphila Aegiphila costaricensis \N \N \N \N \N 72653 L.prominens Lenwebbia Lenwebbia prominens \N \N \N \N \N 72654 M.aethiopicum Melolobium Melolobium aethiopicum \N \N \N \N \N 72655 C.debilis Cucumis Cucumis debilis \N \N \N \N \N 72656 K.5724 Koelreuteria Koelreuteria sp. Harder 5724 \N \N \N \N \N 72657 P.maculatus Peniocereus Peniocereus maculatus \N \N \N \N \N 72658 V.pinnatifida Valeriana Valeriana pinnatifida \N \N \N \N \N 72659 E.JJNK-2011 Eugenia Eugenia cf. orbiculata JJNK-2011 \N \N \N \N \N 72660 C.fortunatum Clerodendrum Clerodendrum fortunatum \N \N \N \N \N 72661 C.microcephala Cunila Cunila microcephala \N \N \N \N \N 72662 C.doederleinii Cinnamomum Cinnamomum doederleinii \N \N \N \N \N 72663 F.heterophylla Ficus Ficus heterophylla \N \N \N \N \N 72664 C.latifolia Citrus Citrus latifolia Bearss lime,Persian lime \N \N \N \N 72665 C.12644 Conium Conium sp. Goldblatt 12644 \N \N \N \N \N 72666 R.nitida Rudbeckia Rudbeckia nitida \N \N \N \N \N 72667 E.paraensis Elizabetha Elizabetha paraensis \N \N \N \N \N 72668 A.glomerata Alvordia Alvordia glomerata \N \N \N \N \N 72669 N.mjoebergii Neofabricia Neofabricia mjoebergii \N \N \N \N \N 72670 T.brevilingua Tillandsia Tillandsia brevilingua \N \N \N \N \N 72671 L.dubium Leucadendron Leucadendron dubium \N \N \N \N \N 72672 B.variegatum Bulbophyllum Bulbophyllum variegatum \N \N \N \N \N 72673 P.perrieri Phylloxylon Phylloxylon perrieri \N \N \N \N \N 72674 P.molinae Psychotria Psychotria molinae \N \N \N \N \N 72675 P.iridifolia Poa Poa iridifolia \N \N \N \N \N 72676 L.griffithiana Leucothoe Leucothoe griffithiana \N \N \N \N \N 72677 V.arguta Viola Viola arguta \N \N \N \N \N 72678 H.edmundoi Hohenbergia Hohenbergia edmundoi \N \N \N \N \N 72679 V.maackii Veratrum Veratrum maackii \N \N \N \N \N 72680 \N varietas Carex conferta var. lycurus \N \N \N \N \N 72681 A.schmalhausenii Anthriscus Anthriscus schmalhausenii \N \N \N \N \N 72682 \N genus Hyptis \N \N \N \N \N 72683 B.EDNA09_02043 Begonia Begonia sp. EDNA09_02043 \N \N \N \N \N 72684 P.acreanum Platycarpum Platycarpum acreanum \N \N \N \N \N 72685 M.dodecandrum Melastoma Melastoma dodecandrum \N \N \N \N \N 72686 R.ovalifolium Ribes Ribes ovalifolium \N \N \N \N \N 72687 \N genus Utricularia bladderworts \N \N \N \N 72688 L.spontanea Leucaena Leucaena x spontanea \N \N \N \N \N 72689 C.gomerythus Cheirolophus Cheirolophus gomerythus \N \N \N \N \N 72690 L.amoenum Lilium Lilium amoenum \N \N \N \N \N 72691 M.velutina Musa Musa velutina fuzzy pink banana,self-peeling banana \N \N \N \N 72692 A.quitensis Amaranthus Amaranthus quitensis \N \N \N \N \N 72693 S.obtusa Swertia Swertia obtusa \N \N \N \N \N 72694 P.acuminatum Paspalum Paspalum acuminatum brook crowngrass \N \N \N \N 72695 C.batalinii Cousinia Cousinia batalinii \N \N \N \N \N 72696 M.schnellii Miconia Miconia schnellii \N \N \N \N \N 72697 P.P134 Physalis Physalis sp. P134 \N \N \N \N \N 72698 M.velutina Michelia Michelia velutina \N \N \N \N \N 72699 E.8826 Ephedranthus Ephedranthus sp. Maas et al. 8826 \N \N \N \N \N 72700 P.080206 Philodendron Philodendron sp. BotGardNb 080206 \N \N \N \N \N 72701 B.sanguinea Begonia Begonia metallica x Begonia sanguinea \N \N \N \N \N 72702 H.lazicum Hieracium Hieracium lazicum \N \N \N \N \N 72703 L.eriantha Lotononis Lotononis eriantha \N \N \N \N \N 72704 R.adenocalyx Ruellia Ruellia adenocalyx \N \N \N \N \N 72705 H.scordioides Haloragis Haloragis scordioides \N \N \N \N \N 72706 S.rebaudiana Stevia Stevia rebaudiana \N \N \N \N \N 72707 Z.serrata Zelkova Zelkova serrata \N \N \N \N \N 72708 D.fruticosus Desmanthus Desmanthus fruticosus \N \N \N \N \N 72709 A.coriacea Aerva Aerva coriacea \N \N \N \N \N 72710 E.discolor Eriotheca Eriotheca discolor \N \N \N \N \N 72711 \N family Zosteraceae \N \N \N \N \N 72712 M.glabratus Mimulus Mimulus glabratus \N \N \N \N \N 72713 \N genus Scyphellandra \N \N \N \N \N 72714 C.tetraphyllum Canthium Canthium tetraphyllum \N \N \N \N \N 72715 L.aggregata Lindera Lindera aggregata \N \N \N \N \N 72716 \N genus Coleostachys \N \N \N \N \N 72717 M.brachycarpum Microstigma Microstigma brachycarpum \N \N \N \N \N 72718 C.cleomoides Cleome Cleome cleomoides \N \N \N \N \N 72719 \N genus Manihot \N \N \N \N \N 72720 S.windhoekensis Senecio Senecio windhoekensis \N \N \N \N \N 72721 C.pretoriana Cuscuta Cuscuta pretoriana \N \N \N \N \N 72722 \N genus Stelligera \N \N \N \N \N 72723 C.castroviejoi Carex Carex castroviejoi \N \N \N \N \N 72724 \N tribe Gilliesieae \N \N \N \N \N 72725 C.dielsianus Cotoneaster Cotoneaster dielsianus \N \N \N \N \N 72726 M.flemingiana Manihot Manihot flemingiana \N \N \N \N \N 72727 R.vivipara Remusatia Remusatia vivipara \N \N \N \N \N 72728 M.caroliniana Modiola Modiola caroliniana Carolina bristlemallow \N \N \N \N 72729 M.coulteri Marsdenia Marsdenia coulteri \N \N \N \N \N 72730 C.bravensis Campanula Campanula bravensis \N \N \N \N \N 72731 P.montana Prepusa Prepusa montana \N \N \N \N \N 72732 W.dubia Wrightia Wrightia dubia \N \N \N \N \N 72733 C.tashkurghanica Cousinia Cousinia tashkurghanica \N \N \N \N \N 72734 P.confusa Pulicaria Pulicaria confusa \N \N \N \N \N 72735 E.szovitsii Euphorbia Euphorbia szovitsii \N \N \N \N \N 72736 A.edwardsiana Agalinis Agalinis edwardsiana \N \N \N \N \N 72737 B.leiophylla Bournea Bournea leiophylla \N \N \N \N \N 72738 B.sary Beilschmiedia Beilschmiedia sary \N \N \N \N \N 72739 \N genus Pseudima \N \N \N \N \N 72740 G.flexuosum Gymnophyton Gymnophyton flexuosum \N \N \N \N \N 72741 \N subspecies Anchonium elichrysifolium subsp. canescens \N \N \N \N \N 72742 Z.brachyacanthum Zanthoxylum Zanthoxylum brachyacanthum \N \N \N \N \N 72743 P.vulgaris Prunella Prunella vulgaris self-heal \N \N \N \N 72744 C.taiensis Cladopus Cladopus taiensis \N \N \N \N \N 72745 A.pinifolium Astroloma Astroloma pinifolium \N \N \N \N \N 72746 C.filiformis Ceropegia Ceropegia filiformis \N \N \N \N \N 72747 M.maculata Monophyllorchis Monophyllorchis maculata \N \N \N \N \N 72748 T.maximowiczii Trapa Trapa maximowiczii \N \N \N \N \N 72749 \N family Pittosporaceae \N \N \N \N \N 72750 S.aculeolata Stachys Stachys aculeolata \N \N \N \N \N 72751 D.arthropoda Daviesia Daviesia arthropoda \N \N \N \N \N 72752 J.BAC-2010 unclassified Juncaceae Juncaceae sp. A4 BAC-2010 \N \N \N \N \N 72753 S.wolfii Salix Salix wolfii \N \N \N \N \N 72754 C.vitifolium Cochlospermum Cochlospermum vitifolium \N \N \N \N \N 72755 S.retroflexum Solanum Solanum retroflexum sunberry \N \N \N \N 72756 \N genus Pithocarpa \N \N \N \N \N 72757 \N genus Stetsonia \N \N \N \N \N 72758 H.aculeolatum Hedysarum Hedysarum aculeolatum \N \N \N \N \N 72759 P.spoliatum Piper Piper spoliatum \N \N \N \N \N 72760 E.compacta Ericameria Ericameria compacta Charleston Mountain goldenbush \N \N \N \N 72761 O.insigne Oxypetalum Oxypetalum insigne \N \N \N \N \N 72762 T.cordifolia Tiarella Tiarella cordifolia \N \N \N \N \N 72763 N.plicata Nolana Nolana plicata \N \N \N \N \N 72764 L.kirkii Lepidium Lepidium kirkii \N \N \N \N \N 72765 \N genus Arundo \N \N \N \N \N 72766 E.decidua Euphorbia Euphorbia decidua \N \N \N \N \N 72767 \N subfamily Wunderlichioideae \N \N \N \N \N 72768 N.northiana Nepenthes Nepenthes northiana \N \N \N \N \N 72769 P.przewalskii Pedicularis Pedicularis przewalskii \N \N \N \N \N 72770 A.glabrum Amomum Amomum glabrum \N \N \N \N \N 72771 \N varietas Eriogonum leptocladon var. leptocladon \N \N \N \N \N 72772 C.pallidicosta Calathea Calathea pallidicosta \N \N \N \N \N 72773 C.grandiflora Casearia Casearia grandiflora \N \N \N \N \N 72774 S.flavescens Sophora Sophora flavescens \N \N \N \N \N 72775 S.littorale Sisyrinchium Sisyrinchium littorale \N \N \N \N \N 72776 B.orbiculata Boesenbergia Boesenbergia orbiculata \N \N \N \N \N 72777 M.ramonensis Maxillaria Maxillaria ramonensis \N \N \N \N \N 72778 I.barbatula Iris Iris barbatula \N \N \N \N \N 72779 T.nudiflora Thladiantha Thladiantha nudiflora \N \N \N \N \N 72780 K.nana Kedrostis Kedrostis nana \N \N \N \N \N 72781 P.floribundum Platymiscium Platymiscium floribundum \N \N \N \N \N 72782 C.nitidula Cuphea Cuphea nitidula \N \N \N \N \N 72783 X.asperifolia Xolocotzia Xolocotzia asperifolia \N \N \N \N \N 72784 C.pomeridianum Chlorogalum Chlorogalum pomeridianum \N \N \N \N \N 72785 B.schenckii Brownanthus Brownanthus schenckii \N \N \N \N \N 72786 C.eriophora Centaurea Centaurea eriophora \N \N \N \N \N 72787 L.salviifolia Lepechinia Lepechinia salviifolia \N \N \N \N \N 72788 R.coulteri Romneya Romneya coulteri \N \N \N \N \N 72789 P.gracile Platymiscium Platymiscium gracile \N \N \N \N \N 72790 C.purpurascens Calamagrostis Calamagrostis purpurascens \N \N \N \N \N 72791 E.cereiformis Echidnopsis Echidnopsis cereiformis \N \N \N \N \N 72792 \N varietas Ceanothus gloriosus var. gloriosus \N \N \N \N \N 72793 C.sandwichiana Capparis Capparis sandwichiana \N \N \N \N \N 72794 M.polymorpha Mitrasacme Mitrasacme polymorpha \N \N \N \N \N 72795 S.fidelensis Sophronitis Sophronitis fidelensis \N \N \N \N \N 72796 C.chuanyujin Curcuma Curcuma chuanyujin \N \N \N \N \N 72797 C.major Caleana Caleana major \N \N \N \N \N 72798 M.lebrunii Moehringia Moehringia lebrunii \N \N \N \N \N 72799 A.latisepala Acacia Acacia latisepala \N \N \N \N \N 72800 C.bicolor Caragana Caragana bicolor \N \N \N \N \N 72801 P.pectinata Pleurothallis Pleurothallis pectinata \N \N \N \N \N 72802 U.calamistrata Uvaria Uvaria calamistrata \N \N \N \N \N 72803 \N genus Crotalaria \N \N \N \N \N 72804 M.pusilla Micromonolepis Micromonolepis pusilla \N \N \N \N \N 72805 \N genus Syncarpha \N \N \N \N \N 72806 G.oxycarpa Gymnosporia Gymnosporia oxycarpa \N \N \N \N \N 72807 E.placentiflora Erica Erica placentiflora \N \N \N \N \N 72808 C.aculeatus Cucumis Cucumis aculeatus \N \N \N \N \N 72809 \N genus Vitex \N \N \N \N \N 72810 C.ashei Crataegus Crataegus ashei \N \N \N \N \N 72811 S.pfisteri Sophronitis Sophronitis pfisteri \N \N \N \N \N 72812 L.clementei Linaria Linaria clementei \N \N \N \N \N 72813 S.bungeana Stipa Stipa bungeana \N \N \N \N \N 72814 A.fagifolia Adinauclea Adinauclea fagifolia \N \N \N \N \N 72815 T.juergensii Thrasyopsis Thrasyopsis juergensii \N \N \N \N \N 72816 A.longicaudata Angelica Angelica longicaudata \N \N \N \N \N 72817 C.polygonorum Cuscuta Cuscuta polygonorum \N \N \N \N \N 72818 C.trifida Cardamine Cardamine trifida \N \N \N \N \N 72819 R.disperma Rochelia Rochelia disperma \N \N \N \N \N 72820 \N genus Werauhia \N \N \N \N \N 72821 E.spinibarbis Echinopsis Echinopsis spinibarbis \N \N \N \N \N 72822 D.multiflorum Dichelostemma Dichelostemma multiflorum wild hyacinth \N \N \N \N 72823 G.oxylobioides Gastrolobium Gastrolobium oxylobioides \N \N \N \N \N 72824 M.leptocarpa Mimosa Mimosa leptocarpa \N \N \N \N \N 72825 L.dichotoma Leandra Leandra dichotoma \N \N \N \N \N 72826 O.suffruticosum Oncosiphon Oncosiphon suffruticosum \N \N \N \N \N 72827 C.vestitus Ceanothus Ceanothus vestitus \N \N \N \N \N 72828 S.halimifolium Stegnosperma Stegnosperma halimifolium \N \N \N \N \N 72829 H.NT-2008 Halerpestes Halerpestes cf. ruthenica NT-2008 \N \N \N \N \N 72830 P.communis Pyrus Pyrus communis pear \N \N \N \N 72831 S.ramentifera Strychnos Strychnos ramentifera \N \N \N \N \N 72832 L.torulosa Leavenworthia Leavenworthia torulosa \N \N \N \N \N 72833 C.anderssonii Cordia Cordia anderssonii \N \N \N \N \N 72834 S.12 Silene Silene sp. Balele 12 \N \N \N \N \N 72835 A.micrantha Amphithalea Amphithalea micrantha \N \N \N \N \N 72836 P.tomentella Polylepis Polylepis tomentella \N \N \N \N \N 72837 M.lanceolata Mansoa Mansoa lanceolata \N \N \N \N \N 72838 K.cambagei Kunzea Kunzea cambagei \N \N \N \N \N 72839 N.ampullaria Nepenthes Nepenthes ampullaria \N \N \N \N \N 72840 H.marashicum Heracleum Heracleum marashicum \N \N \N \N \N 72841 M.rhamnifolius Mallotus Mallotus rhamnifolius \N \N \N \N \N 72842 B.lateriflora Boerhavia Boerhavia lateriflora \N \N \N \N \N 72843 A.machupicchensis Andeimalva Andeimalva machupicchensis \N \N \N \N \N 72844 \N genus Melissa \N \N \N \N \N 72845 D.205-82 Daphniphyllum Daphniphyllum sp. 205-82 \N \N \N \N \N 72846 \N genus Rhoicissus \N \N \N \N \N 72847 P.confervoides Potamogeton Potamogeton confervoides \N \N \N \N \N 72848 S.calvescens Styrax Styrax calvescens \N \N \N \N \N 72849 \N varietas Aristida longespica var. longespica \N \N \N \N \N 72850 \N genus Myrrhis \N \N \N \N \N 72851 P.spiritus-sancti Pseudoxandra Pseudoxandra spiritus-sancti \N \N \N \N \N 72852 \N genus Tetrapogon \N \N \N \N \N 72853 B.138 Begonia Begonia cf. brevirimosa Forrest 138 \N \N \N \N \N 72854 \N genus Pomax \N \N \N \N \N 72855 B.grandiflora Boeberoides Boeberoides grandiflora \N \N \N \N \N 72856 A.SH-2010 Alangium Alangium sp. SH-2010 \N \N \N \N \N 72857 \N genus Themeda \N \N \N \N \N 72858 \N genus Kosteletzkya \N \N \N \N \N 72859 Y.rupicola Yucca Yucca rupicola Texas yucca \N \N \N \N 72860 T.taiwanensis Thismia Thismia taiwanensis \N \N \N \N \N 72861 \N genus Lamarchea \N \N \N \N \N 72862 \N genus Adesmia \N \N \N \N \N 72863 \N genus Arjona \N \N \N \N \N 72864 P.sphaerocarpum Piper Piper sphaerocarpum \N \N \N \N \N 72865 A.incompta Aspalathus Aspalathus incompta \N \N \N \N \N 72866 B.spinosa Barnadesia Barnadesia spinosa \N \N \N \N \N 72867 O.variabilis Odontorrhynchus Odontorrhynchus variabilis \N \N \N \N \N 72868 S.heterochiton Sericocoma Sericocoma heterochiton \N \N \N \N \N 72869 D.capensis Didymodoxa Didymodoxa capensis \N \N \N \N \N 72870 H.LW-2011 Hoya Hoya sp. 3 LW-2011 \N \N \N \N \N 72871 S.biumbellata Smilax Smilax biumbellata \N \N \N \N \N 72872 \N genus Chelidonium \N \N \N \N \N 72873 A.hirta Asperula Asperula hirta \N \N \N \N \N 72874 J.nudiflorum Jasminum Jasminum nudiflorum winter jasmine \N \N \N \N 72875 Q.schiedeana Quetzalia Quetzalia schiedeana \N \N \N \N \N 72876 H.anthelminthicus Hydnocarpus Hydnocarpus anthelminthicus chaulmoogra-tree,tai fu shi \N \N \N \N 72877 \N subspecies Allium ochroleucum subsp. pseudosuaveolens \N \N \N \N \N 72878 S.chinghaiensis Salsola Salsola chinghaiensis \N \N \N \N \N 72879 C.khasiana Coffea Coffea khasiana \N \N \N \N \N 72880 \N genus Berchemia \N \N \N \N \N 72881 P.matthewsii Poa Poa matthewsii \N \N \N \N \N 72882 B.recurvata Brownleea Brownleea recurvata \N \N \N \N \N 72883 P.pirinica Poa Poa pirinica \N \N \N \N \N 72884 A.texana Asclepias Asclepias texana \N \N \N \N \N 72885 P.membranacea Planchonella Planchonella membranacea \N \N \N \N \N 72886 R.mauiensis Ranunculus Ranunculus mauiensis \N \N \N \N \N 72887 V.stamineum Veratrum Veratrum stamineum \N \N \N \N \N 72888 A.leucophylla Adenostyles Adenostyles leucophylla \N \N \N \N \N 72890 B.holtonis Begonia Begonia holtonis \N \N \N \N \N 72891 B.cardopatifolia Berkheya Berkheya cardopatifolia \N \N \N \N \N 72892 C.douglasii Clinopodium Clinopodium douglasii \N \N \N \N \N 72893 P.australis Plantago Plantago australis \N \N \N \N \N 72894 G.serrata Gomphrena Gomphrena serrata \N \N \N \N \N 72895 C.tumidissinoda Chimonobambusa Chimonobambusa tumidissinoda \N \N \N \N \N 72896 T.mandrarensis Triainolepis Triainolepis mandrarensis \N \N \N \N \N 72897 P.gneissicus Phyllanthus Phyllanthus gneissicus \N \N \N \N \N 72898 S.baccifera Silene Silene baccifera berry catchfly \N \N \N \N 72899 H.brasiliensis Holocheilus Holocheilus brasiliensis \N \N \N \N \N 72900 B.pentamera Brassiantha Brassiantha pentamera \N \N \N \N \N 72901 P.P131 Physalis Physalis sp. P131 \N \N \N \N \N 72902 P.pamattonis Pseuduvaria Pseuduvaria pamattonis \N \N \N \N \N 72903 A.stylosa Anchusa Anchusa stylosa \N \N \N \N \N 72904 \N tribe Lorantheae \N \N \N \N \N 72905 \N genus Lithophila \N \N \N \N \N 72906 D.humilis Diphysa Diphysa humilis \N \N \N \N \N 72907 \N subspecies Armeria arenaria subsp. peirescii \N \N \N \N \N 72908 D.ampla Dicranostyles Dicranostyles ampla \N \N \N \N \N 72909 \N genus Brachypeza \N \N \N \N \N 72910 P.T958 Paederia Paederia sp. Eriksson et al. T958 \N \N \N \N \N 72911 \N genus Linzia \N \N \N \N \N 72912 A.sandwithiana Abuta Abuta sandwithiana \N \N \N \N \N 72913 G.melicaria Glyceria Glyceria melicaria \N \N \N \N \N 72914 P.speciosa Podalyria Podalyria speciosa \N \N \N \N \N 72915 M.1994-0203a Maxillaria Maxillaria aff. uncata SEL 1994-0203a \N \N \N \N \N 72916 S.princeps Satyrium Satyrium princeps \N \N \N \N \N 72917 K.rubra Korthalsella Korthalsella rubra \N \N \N \N \N 72918 C.weddelliana Clusia Clusia weddelliana \N \N \N \N \N 72919 P.SH-2010 Piper Piper sp. SH-2010 \N \N \N \N \N 72920 D.triquetra Dillenia Dillenia triquetra \N \N \N \N \N 72921 D.O-122 Dressleria Dressleria sp. Chase O-122 \N \N \N \N \N 72922 Z.flavissima Zephyranthes Zephyranthes flavissima \N \N \N \N \N 72923 C.erythrophyllus Costus Costus erythrophyllus \N \N \N \N \N 72924 B.rotundifolia Barleria Barleria rotundifolia \N \N \N \N \N 72925 C.paucijuga Cardamine Cardamine paucijuga \N \N \N \N \N 72926 A.navasotensis Agalinis Agalinis navasotensis \N \N \N \N \N 72927 P.calliura Pseuduvaria Pseuduvaria calliura \N \N \N \N \N 72928 C.ochroxylum Centrolobium Centrolobium ochroxylum \N \N \N \N \N 72929 \N genus Ceballosia \N \N \N \N \N 72930 P.chamberlainianum Paphiopedilum Paphiopedilum chamberlainianum \N \N \N \N \N 72931 O.elatior Orobanche Orobanche elatior \N \N \N \N \N 72932 V.lucens Viola Viola lucens \N \N \N \N \N 72933 G.nodulosus Gonocarpus Gonocarpus nodulosus \N \N \N \N \N 72934 S.physalifolium Solanum Solanum physalifolium \N \N \N \N \N 72935 A.phlebophylla Acacia Acacia phlebophylla \N \N \N \N \N 72936 \N subtribe Andrographinae \N \N \N \N \N 72937 \N genus Nigella \N \N \N \N \N 72938 S.horridum Sideroxylon Sideroxylon horridum \N \N \N \N \N 72939 \N no rank Heldreichia bupleurifolia ssp. KM-2009c \N \N \N \N \N 72940 M.pteleifolia Melicope Melicope pteleifolia \N \N \N \N \N 72941 F.hypsophila Floscaldasia Floscaldasia hypsophila \N \N \N \N \N 72942 \N varietas Ophiopogon japonicus var. umbrosus \N \N \N \N \N 72943 S.longifolia Stenoglottis Stenoglottis longifolia \N \N \N \N \N 72944 A.falcata Aeschynomene Aeschynomene falcata \N \N \N \N \N 72945 S.cryptophylla Stoebe Stoebe cryptophylla \N \N \N \N \N 72946 H.elegans Hauya Hauya elegans \N \N \N \N \N 72947 A.cynanchifolia Aristolochia Aristolochia cynanchifolia \N \N \N \N \N 72948 \N varietas Orostachys aliciae var. aliciae \N \N \N \N \N 72949 E.alpinum Epimedium Epimedium alpinum \N \N \N \N \N 72950 P.floribunda Polygala Polygala floribunda \N \N \N \N \N 72951 T.xerophila Tasmannia Tasmannia xerophila \N \N \N \N \N 72952 V.schensianum Viburnum Viburnum schensianum \N \N \N \N \N 72953 C.yamutumene Calyptrocalyx Calyptrocalyx yamutumene \N \N \N \N \N 72954 A.lingulata Ayenia Ayenia lingulata \N \N \N \N \N 72955 A.villosa Aspalathus Aspalathus villosa \N \N \N \N \N 72956 A.modesta Acacia Acacia modesta \N \N \N \N \N 72957 C.sikokiana Cladrastis Cladrastis sikokiana \N \N \N \N \N 72958 W.adpressa Wahlenbergia Wahlenbergia adpressa \N \N \N \N \N 72959 Z.parrisiae Zieria Zieria parrisiae \N \N \N \N \N 72960 \N genus Borago \N \N \N \N \N 72961 D.ramosum Dracophyllum Dracophyllum ramosum \N \N \N \N \N 72962 C.pubescens Cinchona Cinchona pubescens quinine,red cinchona \N \N \N \N 72963 A.integrifolium Acanthoprasium Acanthoprasium integrifolium \N \N \N \N \N 72964 V.micrantha Hebe Veronica micrantha \N \N \N \N \N 72965 G.palmatum Geranium Geranium palmatum \N \N \N \N \N 72966 S.somalensis Securigera Securigera somalensis \N \N \N \N \N 72967 C.dasyanthum Cestrum Cestrum dasyanthum \N \N \N \N \N 72968 \N genus Antigonon \N \N \N \N \N 72969 A.canariensis Allagopappus Allagopappus canariensis \N \N \N \N \N 72970 S.macrocarpa Stylosanthes Stylosanthes macrocarpa \N \N \N \N \N 72971 L.morissonii Lepidium Lepidium morissonii \N \N \N \N \N 72972 T.valdesiana Tidestromia Tidestromia valdesiana \N \N \N \N \N 72973 P.megalopus Petalolophus Petalolophus megalopus \N \N \N \N \N 72974 A.margaritae Allium Allium margaritae \N \N \N \N \N 72975 L.cabulicus Lagochilus Lagochilus cabulicus \N \N \N \N \N 72976 H.lhasanum Hymenidium Hymenidium lhasanum \N \N \N \N \N 72977 \N genus Craspidospermum \N \N \N \N \N 72978 H.tetraploidum Hordeum Hordeum tetraploidum \N \N \N \N \N 72979 I.kingiana Ilex Ilex kingiana \N \N \N \N \N 72980 B.villosa Brassia Brassia villosa \N \N \N \N \N 72981 M.ecuadoriensis Macroptilium Macroptilium ecuadoriensis \N \N \N \N \N 72982 E.freudenbergeri Echinocereus Echinocereus freudenbergeri \N \N \N \N \N 72983 \N genus Citharexylum \N \N \N \N \N 72984 D.capillaris Drosera Drosera capillaris \N \N \N \N \N 72985 A.perakensis Alocasia Alocasia perakensis \N \N \N \N \N 72986 A.heptagona Alchemilla Alchemilla heptagona \N \N \N \N \N 72987 P.vanrensburgii Prenia Prenia vanrensburgii \N \N \N \N \N 72988 T.bilineatum Trifolium Trifolium bilineatum \N \N \N \N \N 72989 \N genus Eurya \N \N \N \N \N 72990 P.angustifolia Pandiaka Pandiaka angustifolia \N \N \N \N \N 72991 C.umbellata Crassula Crassula umbellata \N \N \N \N \N 72992 H.olgae Heracleum Heracleum olgae \N \N \N \N \N 72993 A.goodingii Allium Allium goodingii \N \N \N \N \N 72994 H.conzatii Halenia Halenia conzatii \N \N \N \N \N 72995 D.aegyptium Dactyloctenium Dactyloctenium aegyptium Egyptian grass \N \N \N \N 72996 \N forma Medicago truncatula f. tricycla \N \N \N \N \N 72997 \N subfamily Gochnatioideae \N \N \N \N \N 72998 E.nicholii Echinocereus Echinocereus nicholii \N \N \N \N \N 72999 L.densiflora Lundia Lundia densiflora \N \N \N \N \N 73000 C.peregrina Campanula Campanula peregrina \N \N \N \N \N 73001 G.rosea Gonzalagunia Gonzalagunia rosea \N \N \N \N \N 73002 C.argenteum Cerastium Cerastium argenteum \N \N \N \N \N 73003 \N varietas Lilium concolor var. partheneion \N \N \N \N \N 73004 C.lutea Cleome Cleome lutea \N \N \N \N \N 73005 \N genus Aulacospermum \N \N \N \N \N 73006 A.nipponica Agrimonia Agrimonia nipponica \N \N \N \N \N 73007 \N forma Miscanthus sacchariflorus f. purpurascens \N \N \N \N \N 73008 \N genus Praravinia \N \N \N \N \N 73009 C.officinalis Cornus Cornus officinalis Japanese cornel \N \N \N \N 73010 N.gigantophyllum Necramium Necramium gigantophyllum \N \N \N \N \N 73011 E.dives Eucalyptus Eucalyptus dives \N \N \N \N \N 73012 B.basispicata Boesenbergia Boesenbergia basispicata \N \N \N \N \N 73013 L.4-CEH Lupinus Lupinus sp. 4-CEH \N \N \N \N \N 73014 M.platycarpa Maireana Maireana platycarpa \N \N \N \N \N 73015 C.mutica Coreopsis Coreopsis mutica \N \N \N \N \N 73016 R.madagascariensis Rhodocodon Rhodocodon madagascariensis \N \N \N \N \N 73017 L.brevidentatus Lisianthius Lisianthius brevidentatus \N \N \N \N \N 73018 D.superbus Dianthus Dianthus superbus \N \N \N \N \N 73019 \N genus Plateilema \N \N \N \N \N 73020 R.marisculus Rhynchospora Rhynchospora marisculus \N \N \N \N \N 73021 \N genus Triteleia \N \N \N \N \N 73022 P.astonii Poa Poa astonii \N \N \N \N \N 73023 A.obtusiloba Amphithalea Amphithalea obtusiloba \N \N \N \N \N 73024 M.GC40B Micromeria Micromeria cf. tenuis Meimberg GC40B \N \N \N \N \N 73025 \N subspecies Hernandia moerenhoutiana subsp. samoensis \N \N \N \N \N 73026 V.lanceolata Vepris Vepris lanceolata \N \N \N \N \N 73027 E.emiliae Echinops Echinops emiliae \N \N \N \N \N 73028 A.napoensis Aechmea Aechmea napoensis \N \N \N \N \N 73029 C.cornuta Chiloglottis Chiloglottis cornuta \N \N \N \N \N 73030 K.parviflora Kniphofia Kniphofia parviflora \N \N \N \N \N 73031 H.macranthum Heliosperma Heliosperma macranthum \N \N \N \N \N 73032 A.roseola Acrorchis Acrorchis roseola \N \N \N \N \N 73033 D.laxa Deschampsia Deschampsia laxa \N \N \N \N \N 73034 M.anigosantha Momordica Momordica anigosantha \N \N \N \N \N 73035 P.grobyi Pleurothallis Pleurothallis grobyi \N \N \N \N \N 73036 V.pseudocompressa Vaughania Vaughania pseudocompressa \N \N \N \N \N 73037 I.eryaleia Impatiens Impatiens eryaleia \N \N \N \N \N 73038 \N forma Goodyera hachijoensis f. izuohsimensis \N \N \N \N \N 73039 E.ramosissima Euryomyrtus Euryomyrtus ramosissima \N \N \N \N \N 73040 T.decipiens Trischidium Trischidium decipiens \N \N \N \N \N 73041 S.tectifolius Sonchus Sonchus tectifolius \N \N \N \N \N 73042 \N genus Ditassa \N \N \N \N \N 73043 S.vernalis Spiranthes Spiranthes vernalis \N \N \N \N \N 73044 \N varietas Chisocheton divergens var. minor \N \N \N \N \N 73045 Q.laevis Quercus Quercus laevis \N \N \N \N \N 73046 M.macrophylla Malanea Malanea macrophylla \N \N \N \N \N 73047 Z.natalensis Zaluzianskya Zaluzianskya natalensis \N \N \N \N \N 73048 T.antongiliensis Tinopsis Tinopsis antongiliensis \N \N \N \N \N 73049 \N genus Marshallia \N \N \N \N \N 73050 A.similis Aciphylla Aciphylla similis \N \N \N \N \N 73051 O.lineare Ochrosperma Ochrosperma lineare \N \N \N \N \N 73052 M.alsinoides Mimulus Mimulus alsinoides \N \N \N \N \N 73053 C.arbutiflora Cryptandra Cryptandra arbutiflora \N \N \N \N \N 73054 L.longipenicillatus Lasiocephalus Lasiocephalus longipenicillatus \N \N \N \N \N 73055 M.uleanus Mysanthus Mysanthus uleanus \N \N \N \N \N 73056 P.2 Plagiostachys Plagiostachys sp. Julius et al. 2 \N \N \N \N \N 73057 \N genus Nothochelone \N \N \N \N \N 73058 \N genus Buchloe \N \N \N \N \N 73059 P.bojeriana Paederia Paederia bojeriana \N \N \N \N \N 73060 L.viridiflora Lachenalia Lachenalia viridiflora \N \N \N \N \N 73061 P.tahitiensis Psychotria Psychotria tahitiensis \N \N \N \N \N 73062 \N genus Schrenkia \N \N \N \N \N 73063 P.pseudospectabilis Penstemon Penstemon pseudospectabilis \N \N \N \N \N 73064 \N genus Holosteum \N \N \N \N \N 73065 N.aurata Neolitsea Neolitsea aurata \N \N \N \N \N 73066 \N genus Hydrotriche \N \N \N \N \N 73067 A.gracilis Adenia Adenia gracilis \N \N \N \N \N 73068 S.densirosulata Sinocrassula Sinocrassula densirosulata \N \N \N \N \N 73069 \N varietas Phacelia insularis var. insularis \N \N \N \N \N 73070 E.urophylla Eucalyptus Eucalyptus urophylla \N \N \N \N \N 73071 V.vitiensis Veitchia Veitchia vitiensis \N \N \N \N \N 73072 D.monophyllum Dendrobium Dendrobium monophyllum \N \N \N \N \N 73073 D.wangii Douglasdeweya Douglasdeweya wangii \N \N \N \N \N 73074 \N genus Chlamydacanthus \N \N \N \N \N 73075 K.synsepala Kalanchoe Kalanchoe synsepala \N \N \N \N \N 73076 I.lundii Ilex Ilex lundii \N \N \N \N \N 73077 \N genus Helixanthera \N \N \N \N \N 73078 T.coronopifolia Tolpis Tolpis coronopifolia \N \N \N \N \N 73079 K.palmata Kirengeshoma Kirengeshoma palmata yellow waxbells \N \N \N \N 73080 R.genistifolia Relhania Relhania genistifolia \N \N \N \N \N 73081 A.ciliaris Aspalathus Aspalathus ciliaris \N \N \N \N \N 73082 P.761 Platymiscium Platymiscium sp. Pennington 761 \N \N \N \N \N 73083 O.nahuelhuapiensis Oxalis Oxalis nahuelhuapiensis \N \N \N \N \N 73084 H.fangii Hemiboea Hemiboea fangii \N \N \N \N \N 73085 S.luteoalbum Solanum Solanum luteoalbum \N \N \N \N \N 73086 K.maculosa Kefersteinia Kefersteinia maculosa \N \N \N \N \N 73087 T.przewalskii Thymus Thymus przewalskii \N \N \N \N \N 73088 C.ownbeyi Calochortus Calochortus ownbeyi \N \N \N \N \N 73089 C.dimorpha Corymbia Corymbia dimorpha \N \N \N \N \N 73090 C.1163 Croton Croton cf. tessmannii Tipaz 1163 \N \N \N \N \N 73091 \N genus Tridens \N \N \N \N \N 73092 A.malvacea Astripomoea Astripomoea malvacea \N \N \N \N \N 73093 E.suaveolens Erythrophleum Erythrophleum suaveolens ordeal-tree,sasswood \N \N \N \N 73094 E.lanceolata Eleocharis Eleocharis lanceolata \N \N \N \N \N 73095 N.broussonetii Narcissus Narcissus broussonetii \N \N \N \N \N 73096 P.ilheotica Polygala Polygala ilheotica \N \N \N \N \N 73097 C.oxylepis Chusquea Chusquea oxylepis \N \N \N \N \N 73098 C.fasciculata Callisthene Callisthene fasciculata \N \N \N \N \N 73099 C.alata Cliffortia Cliffortia alata \N \N \N \N \N 73100 A.cuspidifolia Acacia Acacia cuspidifolia \N \N \N \N \N 73101 C.hookeri Cyananthus Cyananthus hookeri \N \N \N \N \N 73102 P.inopina Protea Protea inopina \N \N \N \N \N 73103 E.erythrophylla Eugenia Eugenia erythrophylla \N \N \N \N \N 73104 \N genus Dianthus \N \N \N \N \N 73105 R.madagascariensis Rorippa Rorippa madagascariensis \N \N \N \N \N 73106 \N genus Melanospermum \N \N \N \N \N 73107 C.emporiorum Croton Croton emporiorum \N \N \N \N \N 73108 \N genus Myrsiphyllum \N \N \N \N \N 73109 F.angustifolium Funastrum Funastrum angustifolium \N \N \N \N \N 73110 D.stenophylla Dodonaea Dodonaea stenophylla \N \N \N \N \N 73111 Z.pacifica Zoysia Zoysia japonica x Zoysia pacifica \N \N \N \N \N 73112 H.cauticola Hylotelephium Hylotelephium cauticola \N \N \N \N \N 73113 A.eubractea Alpinia Alpinia eubractea \N \N \N \N \N 73114 A.acicularis Aciachne Aciachne acicularis \N \N \N \N \N 73115 U.mosambicensis Urochloa Urochloa mosambicensis \N \N \N \N \N 73116 T.thesioides Thamnea Thamnea thesioides \N \N \N \N \N 73117 \N subspecies Primula veris subsp. macrocalyx \N \N \N \N \N 73118 B.nummifera Banisteriopsis Banisteriopsis nummifera \N \N \N \N \N 73119 S.madagascarianus Sieversandreas Sieversandreas madagascarianus \N \N \N \N \N 73120 \N genus Endostemon \N \N \N \N \N 73121 \N varietas Senna silvestris var. guaranitica \N \N \N \N \N 73122 N.229 Notylia Notylia sp. Maduro 229 \N \N \N \N \N 73123 A.argentii Aeschynanthus Aeschynanthus argentii \N \N \N \N \N 73124 \N varietas Solanum tenuipes var. tenuipes \N \N \N \N \N 73125 \N subspecies Taraxacum platycarpum subsp. maruyamanum \N \N \N \N \N 73126 P.tenuifolium Panicum Panicum tenuifolium \N \N \N \N \N 73127 \N subfamily Harrimanelloideae \N \N \N \N \N 73128 H.officinalis Hoodia Hoodia officinalis \N \N \N \N \N 73129 \N genus Picria \N \N \N \N \N 73130 H.strigosum Heliotropium Heliotropium strigosum \N \N \N \N \N 73131 C.williamsii Cymopterus Cymopterus williamsii \N \N \N \N \N 73132 \N varietas Digitaria californica var. californica \N \N \N \N \N 73133 E.glaucus Echinodorus Echinodorus glaucus \N \N \N \N \N 73134 P.longipes Pedicularis Pedicularis longipes \N \N \N \N \N 73135 P.wilcoxii Penstemon Penstemon wilcoxii \N \N \N \N \N 73136 C.ramosa Campanula Campanula ramosa \N \N \N \N \N 73137 E.absinthoides Erodium Erodium absinthoides \N \N \N \N \N 73138 \N subspecies Tozzia alpina subsp. carpathica \N \N \N \N \N 73139 S.falcata Spryginia Spryginia falcata \N \N \N \N \N 73140 G.rodriguesiana Gastonia Gastonia rodriguesiana \N \N \N \N \N 73141 P.imperiale Piper Piper imperiale \N \N \N \N \N 73142 R.arborescens Rhododendron Rhododendron arborescens \N \N \N \N \N 73143 G.sessilis Gynochthodes Gynochthodes sessilis \N \N \N \N \N 73144 P.montana Pickeringia Pickeringia montana Montana chaparral pea \N \N \N \N 73145 P.fusiformis Ptilotus Ptilotus fusiformis \N \N \N \N \N 73146 T.pfavii Trichocentrum Trichocentrum pfavii \N \N \N \N \N 73147 R.pubera Rhynchospora Rhynchospora pubera \N \N \N \N \N 73148 V.anremerica Vella Vella anremerica \N \N \N \N \N 73149 \N genus Chrysogonum \N \N \N \N \N 73150 O.vanguerioides Olinia Olinia vanguerioides \N \N \N \N \N 73151 D.rubricaulis Duhaldea Duhaldea rubricaulis \N \N \N \N \N 73152 M.peregrina Moringa Moringa peregrina \N \N \N \N \N 73153 I.purdyi Iris Iris purdyi \N \N \N \N \N 73154 P.brevicuspe Piper Piper brevicuspe \N \N \N \N \N 73155 \N varietas Racinaea spiculosa var. spiculosa \N \N \N \N \N 73156 G.amparoana Gongora Gongora amparoana \N \N \N \N \N 73157 \N genus Leptoceras \N \N \N \N \N 73158 C.multiflorus Calocephalus Calocephalus multiflorus \N \N \N \N \N 73159 U.subulifolia Urochloa Urochloa subulifolia \N \N \N \N \N 73160 R.obovata Rhodomyrtus Rhodomyrtus obovata \N \N \N \N \N 73161 A.chantinii Aechmea Aechmea chantinii \N \N \N \N \N 73162 C.megalobractea Costus Costus megalobractea \N \N \N \N \N 73163 E.elegans Erythronium Erythronium elegans Coast Range fawnlily \N \N \N \N 73164 A.chalcidicum Alyssum Alyssum chalcidicum \N \N \N \N \N 73165 \N subspecies Primula tanneri subsp. nepalensis \N \N \N \N \N 73166 C.gardnerianum Cenostigma Cenostigma gardnerianum \N \N \N \N \N 73167 S.africana Suregada Suregada africana \N \N \N \N \N 73168 M.eugeniopsoides Marlierea Marlierea eugeniopsoides \N \N \N \N \N 73169 P.africanum Psilotrichum Psilotrichum africanum \N \N \N \N \N 73170 A.jorgeana Asclepias Asclepias jorgeana \N \N \N \N \N 73171 S.subulatum Symphyotrichum Symphyotrichum subulatum \N \N \N \N \N 73172 \N genus Faguetia \N \N \N \N \N 73173 G.grande Galium Galium grande \N \N \N \N \N 73174 C.canadense Crocanthemum Crocanthemum canadense \N \N \N \N \N 73175 \N genus Lythrum \N \N \N \N \N 73176 \N subspecies Nematolepis squamea subsp. coriacea \N \N \N \N \N 73177 P.thompsoniae Peteria Peteria thompsoniae \N \N \N \N \N 73178 D.berteroana Deschampsia Deschampsia berteroana \N \N \N \N \N 73179 P.melliodora Polystachya Polystachya melliodora \N \N \N \N \N 73180 \N varietas Caralluma adscendens var. fimbriata \N \N \N \N \N 73181 P.ignota Physalis Physalis ignota \N \N \N \N \N 73182 G.bartramii Graptopetalum Graptopetalum bartramii \N \N \N \N \N 73183 B.nodosa Brachyscome Brachyscome nodosa \N \N \N \N \N 73184 M.platycarpa Medicago Medicago platycarpa \N \N \N \N \N 73185 M.morroensis Mimosa Mimosa morroensis \N \N \N \N \N 73186 H.suaveolens Hyptis Hyptis suaveolens \N \N \N \N \N 73187 A.hohenackeri Alcea Alcea hohenackeri \N \N \N \N \N 73188 P.mexicana Photinia Photinia mexicana \N \N \N \N \N 73189 H.sp. Hordeum Hordeum sp. \N \N \N \N \N 73190 E.poissonii Euphorbia Euphorbia poissonii \N \N \N \N \N 73191 T.nigrescens Trifolium Trifolium nigrescens \N \N \N \N \N 73192 P.obliqua Pityrocarpa Pityrocarpa obliqua \N \N \N \N \N 73193 A.heterophyllum Arisaema Arisaema heterophyllum \N \N \N \N \N 73194 C.gerascanthus Cordia Cordia gerascanthus baria,prince-wood \N \N \N \N 73195 \N tribe Tageteae \N \N \N \N \N 73196 P.obovatum Piper Piper obovatum \N \N \N \N \N 73197 \N genus Cleidion \N \N \N \N \N 73198 C.lapidosus Cymopterus Cymopterus lapidosus talus springparsley \N \N \N \N 73199 S.sigeyosii Stachyurus Stachyurus sigeyosii \N \N \N \N \N 73200 M.acerosa Minaria Minaria acerosa \N \N \N \N \N 73201 J.auriculata Jaltomata Jaltomata auriculata \N \N \N \N \N 73202 C.dendromerinx Corymbia Corymbia dendromerinx \N \N \N \N \N 73203 C.niveum Cyclotrichium Cyclotrichium niveum \N \N \N \N \N 73204 C.cyprium Cyclamen Cyclamen cyprium \N \N \N \N \N 73205 C.laureola Callilepis Callilepis laureola \N \N \N \N \N 73206 \N forma Aristida pansa f. pansa \N \N \N \N \N 73207 T.decandrum Thouinidium Thouinidium decandrum \N \N \N \N \N 73208 B.cultivar Brachiaria Brachiaria hybrid cultivar \N \N \N \N \N 73209 B.gonoclada Buxus Buxus gonoclada \N \N \N \N \N 73210 C.serpyllifolium Clinopodium Clinopodium serpyllifolium \N \N \N \N \N 73211 T.geminiflora Tillandsia Tillandsia geminiflora \N \N \N \N \N 73212 S.giganteum Solanum Solanum giganteum \N \N \N \N \N 73213 M.GP-2009 Myodocarpus Myodocarpus sp. GP-2009 \N \N \N \N \N 73214 L.glandulosa Lankesteria Lankesteria glandulosa \N \N \N \N \N 73215 B.cymosa Billardiera Billardiera cymosa \N \N \N \N \N 73216 A.reventus Astragalus Astragalus reventus \N \N \N \N \N 73217 M.camptosperma Mangifera Mangifera camptosperma \N \N \N \N \N 73218 A.drummondii Arachnorchis Arachnorchis drummondii \N \N \N \N \N 73219 \N genus Skapanthus \N \N \N \N \N 73220 C.virgulata Crotalaria Crotalaria virgulata \N \N \N \N \N 73221 A.gracilis Anetanthus Anetanthus gracilis \N \N \N \N \N 73222 P.clematidea Praxelis Praxelis clematidea \N \N \N \N \N 73223 D.falconeri Draba Draba falconeri \N \N \N \N \N 73224 D.triloba Disa Disa triloba \N \N \N \N \N 73225 E.frigida Erica Erica frigida \N \N \N \N \N 73226 \N subspecies Agapanthus praecox subsp. orientalis \N \N \N \N \N 73227 V.meridionale Vaccinium Vaccinium meridionale \N \N \N \N \N 73228 S.Madagascar Schefflera Schefflera sp. Madagascar \N \N \N \N \N 73229 M.oligocephala Metalasia Metalasia oligocephala \N \N \N \N \N 73230 S.amurensis Syringa Syringa amurensis \N \N \N \N \N 73231 L.spiculifolia Leucas Leucas spiculifolia \N \N \N \N \N 73232 \N genus Catadysia \N \N \N \N \N 73233 M.atropunctata Moraea Moraea atropunctata \N \N \N \N \N 73234 P.paucidentata Pimpinella Pimpinella paucidentata \N \N \N \N \N 73235 G.acuminata Gaultheria Gaultheria acuminata \N \N \N \N \N 73236 A.latifolia Alchornea Alchornea latifolia \N \N \N \N \N 73237 H.onegense Hieracium Hieracium onegense \N \N \N \N \N 73238 A.hierrense Androcymbium Androcymbium hierrense \N \N \N \N \N 73239 T.heterophylla Tylophora Tylophora heterophylla \N \N \N \N \N 73240 H.SK-2011b Hydrobryum Hydrobryum sp. SK-2011b \N \N \N \N \N 73241 A.microphylla Ayenia Ayenia microphylla \N \N \N \N \N 73242 P.sample environmental samples Taxonomy:205885 Poales environmental sample \N \N \N \N \N 73243 C.osae Costus Costus osae \N \N \N \N \N 73244 D.ferruginea Dombeya Dombeya ferruginea \N \N \N \N \N 73245 C.lansium Clausena Clausena lansium \N \N \N \N \N 73246 C.sessilifolia Caesalpinia Caesalpinia sessilifolia \N \N \N \N \N 73247 \N family Caryocaraceae \N \N \N \N \N 73248 G.jamesii Gentiana Gentiana jamesii \N \N \N \N \N 73249 E.brachycarpum Epilobium Epilobium brachycarpum \N \N \N \N \N 73250 \N genus Franklandia \N \N \N \N \N 73251 H.velutifolia Holographis Holographis velutifolia \N \N \N \N \N 73252 C.paludosa Cyrtandra Cyrtandra paludosa \N \N \N \N \N 73253 C.SH-2010 Casearia Casearia sp. SH-2010 \N \N \N \N \N 73254 F.nuratavica Ferula Ferula nuratavica \N \N \N \N \N 73255 M.acapulcensis Mimosa Mimosa acapulcensis \N \N \N \N \N 73256 D.trullifolium Diplodium Diplodium trullifolium \N \N \N \N \N 73257 B.oblongifolia Breynia Breynia oblongifolia \N \N \N \N \N 73258 M.levenensis Mimosa Mimosa levenensis \N \N \N \N \N 73259 \N genus Diplaspis \N \N \N \N \N 73260 P.texana Palafoxia Palafoxia texana \N \N \N \N \N 73261 C.ambigua Castilleja Castilleja ambigua \N \N \N \N \N 73262 \N subspecies Rhodiola purpureoviridis subsp. phariensis \N \N \N \N \N 73263 L.octovalvis Ludwigia Ludwigia octovalvis \N \N \N \N \N 73264 C.japonica Chimaphila Chimaphila japonica \N \N \N \N \N 73265 P.cernua Peristrophe Peristrophe cernua \N \N \N \N \N 73266 S.filiformis Stuckenia Stuckenia pectinata x Stuckenia filiformis \N \N \N \N \N 73267 B.pauciflora Brunfelsia Brunfelsia pauciflora \N \N \N \N \N 73268 A.flavescens Austrostipa Austrostipa flavescens \N \N \N \N \N 73269 S.microphylla Stenogyne Stenogyne microphylla \N \N \N \N \N 73270 N.insignis Nemophila Nemophila insignis \N \N \N \N \N 73271 S.luteus Solidago Solidago x luteus \N \N \N \N \N 73272 \N no rank unclassified Orchidaceae \N \N \N \N \N 73273 I.hexaloba Isolona Isolona hexaloba \N \N \N \N \N 73274 P.labillardieri Poa Poa labillardieri \N \N \N \N \N 73275 O.GMS-2005 Orobanche Orobanche cf. nana GMS-2005 \N \N \N \N \N 73276 P.nigrum Piper Piper nigrum \N \N \N \N \N 73277 P.sanctum Peridictyon Peridictyon sanctum \N \N \N \N \N 73278 T.trisecta Tarasa Tarasa trisecta \N \N \N \N \N 73279 O.pycnostachys Otiophora Otiophora pycnostachys \N \N \N \N \N 73280 \N varietas Triticum aestivum var. erythrospermum \N \N \N \N \N 73281 T.retusa Tabernaemontana Tabernaemontana retusa \N \N \N \N \N 73282 T.6276 unclassified Taraxacum Taraxacum (sect. Dioszegia) sp. 6276 \N \N \N \N \N 73283 S.pluviale Solanum Solanum pluviale \N \N \N \N \N 73284 G.lingulata Guzmania Guzmania lingulata \N \N \N \N \N 73285 P.costatum Piper Piper costatum \N \N \N \N \N 73286 P.dieterleae Parasicyos Parasicyos dieterleae \N \N \N \N \N 73287 \N genus Camptorrhiza \N \N \N \N \N 73288 \N genus Cecarria \N \N \N \N \N 73289 C.mysorensis Crotalaria Crotalaria mysorensis \N \N \N \N \N 73290 C.heterophylla Corylus Corylus heterophylla \N \N \N \N \N 73291 C.unshiu Citrus Citrus unshiu Satsuma orange,satsuma mandarin \N \N \N \N 73292 M.schottiana Mollinedia Mollinedia schottiana \N \N \N \N \N 73293 \N subtribe Arecinae \N \N \N \N \N 73294 B.griffithiana Berberis Berberis griffithiana \N \N \N \N \N 73295 L.cymosa Leonia Leonia cymosa \N \N \N \N \N 73296 \N genus Sphaeradenia \N \N \N \N \N 73297 F.lateriflora Ficus Ficus lateriflora \N \N \N \N \N 73298 E.lancifolius Elleanthus Elleanthus lancifolius \N \N \N \N \N 73299 L.jepsonii Lathyrus Lathyrus jepsonii tule pea \N \N \N \N 73300 D.pilosus Dipsacus Dipsacus pilosus \N \N \N \N \N 73301 S.capitata Stylosanthes Stylosanthes capitata \N \N \N \N \N 73302 P.coulteri Pectis Pectis coulteri \N \N \N \N \N 73303 B.stenophylla Bursera Bursera stenophylla \N \N \N \N \N 73304 G.sumatranum Gymnostoma Gymnostoma sumatranum \N \N \N \N \N 73305 B.madagascariensis Brochoneura Brochoneura madagascariensis \N \N \N \N \N 73306 \N genus Phaenosperma \N \N \N \N \N 73307 A.grampiana Allocasuarina Allocasuarina grampiana \N \N \N \N \N 73308 \N genus Elateriospermum \N \N \N \N \N 73309 O.shiuyingianum Oligostachyum Oligostachyum shiuyingianum \N \N \N \N \N 73310 H.8b Hakea Hakea sp. 2-Anderson 8b \N \N \N \N \N 73311 P.turneri Prionosciadium Prionosciadium turneri \N \N \N \N \N 73312 T.owyheense Trifolium Trifolium owyheense \N \N \N \N \N 73313 B.atrosanguinea Bulbostylis Bulbostylis atrosanguinea \N \N \N \N \N 73314 \N genus Bowringia \N \N \N \N \N 73315 T.himalayanum Triosteum Triosteum himalayanum \N \N \N \N \N 73316 \N genus Llagunoa \N \N \N \N \N 73317 A.xanthophloea Acacia Acacia xanthophloea \N \N \N \N \N 73318 G.barahonensis Gesneria Gesneria barahonensis \N \N \N \N \N 73319 \N subspecies Lepidium hirtum subsp. dhayense \N \N \N \N \N 73320 I.britannica Inula Inula britannica xuan fu hua \N \N \N \N 73321 A.elliptica Alphonsea Alphonsea elliptica \N \N \N \N \N 73322 M.6349 Macroclinium Macroclinium sp. Dressler 6349 \N \N \N \N \N 73323 \N genus Shangrilaia \N \N \N \N \N 73324 \N genus Salvadora \N \N \N \N \N 73325 S.stenophylla Silene Silene stenophylla \N \N \N \N \N 73326 \N genus Bunium \N \N \N \N \N 73327 E.tenuifolia Echinophora Echinophora tenuifolia \N \N \N \N \N 73328 Z.horsfieldii Ziziphus Ziziphus horsfieldii \N \N \N \N \N 73329 \N subspecies Coprosma macrocarpa subsp. minor \N \N \N \N \N 73330 T.TL153 unclassified Taraxacum Taraxacum (sect. Serotina) sp. TL153 \N \N \N \N \N 73331 R.thyrsostachya Ruellia Ruellia thyrsostachya \N \N \N \N \N 73332 P.sessilifolia Pinanga Pinanga sessilifolia \N \N \N \N \N 73333 \N genus Spartidium \N \N \N \N \N 73334 S.americana Schwalbea Schwalbea americana \N \N \N \N \N 73335 T.aphylla Tetratheca Tetratheca aphylla \N \N \N \N \N 73336 \N subspecies Centaurium majus subsp. rhodense \N \N \N \N \N 73337 L.leptostachya Lespedeza Lespedeza leptostachya \N \N \N \N \N 73338 H.soliceps Heliomeris Heliomeris soliceps \N \N \N \N \N 73339 \N genus Ophrypetalum \N \N \N \N \N 73340 P.cerasus Prunus Prunus cerasus pie cherry,sour cherry \N \N \N \N 73341 G.siamensis Globba Globba siamensis \N \N \N \N \N 73342 A.MG-2009d Allium Allium sp. MG-2009d \N \N \N \N \N 73343 N.balansae Nothofagus Nothofagus balansae \N \N \N \N \N 73344 T.577 unclassified Taraxacum Taraxacum (sect. Erythrosperma) sp. 577 \N \N \N \N \N 73345 C.arapahoensis Carex Carex arapahoensis \N \N \N \N \N 73346 \N subspecies Pimelea rosea subsp. annelsii \N \N \N \N \N 73347 B.alternifolia Buddleja Buddleja alternifolia \N \N \N \N \N 73348 P.connivens Pelargonium Pelargonium connivens \N \N \N \N \N 73349 G.crassicaulis Gentiana Gentiana crassicaulis \N \N \N \N \N 73350 A.macowanii Asparagus Asparagus macowanii \N \N \N \N \N 73351 V.pauciflora Valeriana Valeriana pauciflora \N \N \N \N \N 73353 T.jesdianus Tragopogon Tragopogon jesdianus \N \N \N \N \N 73354 A.samothracica Anchusa Anchusa samothracica \N \N \N \N \N 73355 \N genus Dissotis \N \N \N \N \N 73356 F.nodosa Ficinia Ficinia nodosa \N \N \N \N \N 73357 \N genus Daubenya \N \N \N \N \N 73358 E.willisii Eucalyptus Eucalyptus willisii \N \N \N \N \N 73359 C.imperati Crocus Crocus imperati \N \N \N \N \N 73360 S.ampla Sigmoidotropis Sigmoidotropis ampla \N \N \N \N \N 73361 \N genus Anthephora \N \N \N \N \N 73362 E.prostrata Euphorbia Euphorbia prostrata \N \N \N \N \N 73363 I.2490 Indigofera Indigofera sp. 2 Schrire 2490 \N \N \N \N \N 73364 C.polycephalum Clerodendrum Clerodendrum polycephalum \N \N \N \N \N 73365 \N genus Pentzia \N \N \N \N \N 73366 \N genus Homalocalyx \N \N \N \N \N 73367 T.matudae Tillandsia Tillandsia matudae \N \N \N \N \N 73368 \N genus Isolona \N \N \N \N \N 73369 \N subspecies Ilex fargesii subsp. melanotricha \N \N \N \N \N 73370 L.helleri Lithospermum Lithospermum helleri \N \N \N \N \N 73371 N.conica Neotinea Neotinea conica \N \N \N \N \N 73372 C.acuticalyx Camellia Camellia acuticalyx \N \N \N \N \N 73373 K.aphyllopoda Klasea Klasea aphyllopoda \N \N \N \N \N 73374 P.'Ecuagenera' Prescottia Prescottia sp. 3 'Ecuagenera' \N \N \N \N \N 73375 \N subspecies Pachypodium rosulatum subsp. bicolor \N \N \N \N \N 73376 E.tenuis Elymus Elymus tenuis \N \N \N \N \N 73377 C.oblongifolia Copaifera Copaifera oblongifolia \N \N \N \N \N 73378 A.linganense Acer Acer linganense \N \N \N \N \N 73379 \N genus Lysiana \N \N \N \N \N 73380 A.henssenianum Androcymbium Androcymbium henssenianum \N \N \N \N \N 73381 T.urens Tragia Tragia urens \N \N \N \N \N 73382 H.poggeana Hypselodelphys Hypselodelphys poggeana \N \N \N \N \N 73383 \N no rank Musa AB Group \N \N \N \N \N 73384 O.amblyodonta Oxalis Oxalis amblyodonta \N \N \N \N \N 73385 D.clematidifolia Dalechampia Dalechampia clematidifolia \N \N \N \N \N 73386 \N family Phytolaccaceae pokeweed family \N \N \N \N 73387 C.arcticum Cerastium Cerastium arcticum \N \N \N \N \N 73388 M.sample environmental samples Taxonomy:1008288 Monardella environmental sample \N \N \N \N \N 73389 A.androsacea Artemisia Artemisia androsacea \N \N \N \N \N 73390 E.patenti-pilosa Eragrostis Eragrostis patenti-pilosa \N \N \N \N \N 73391 T.naevosum Taraxacum Taraxacum naevosum \N \N \N \N \N 73392 \N varietas Banksia spinulosa var. neoanglica \N \N \N \N \N 73393 O.solanoides Oxypetalum Oxypetalum solanoides \N \N \N \N \N 73394 \N subspecies Scorzonera mollis subsp. mollis \N \N \N \N \N 73395 H.lawsonii Hieracium Hieracium lawsonii \N \N \N \N \N 73396 L.americanus Lebetanthus Lebetanthus americanus \N \N \N \N \N 73397 P.guianensis Perebea Perebea guianensis \N \N \N \N \N 73398 G.ucayaliana Guatteria Guatteria ucayaliana \N \N \N \N \N 73399 H.JANB-2011 Habenaria Habenaria sp. 13 JANB-2011 \N \N \N \N \N 73400 B.14996 Bidens Bidens sp. Perlman 14996 \N \N \N \N \N 73401 P.canescens Peronema Peronema canescens \N \N \N \N \N 73402 U.rupestris Uncinia Uncinia rupestris \N \N \N \N \N 73403 D.richardiana Disa Disa richardiana \N \N \N \N \N 73404 M.sample environmental samples Taxonomy:1096675 Melastomataceae environmental sample \N \N \N \N \N 73405 E.umtamvunensis Eugenia Eugenia umtamvunensis \N \N \N \N \N 73406 M.melinonis Miconia Miconia melinonis \N \N \N \N \N 73407 E.flexuosum Epidendrum Epidendrum flexuosum \N \N \N \N \N 73408 C.sinensis Curculigo Curculigo sinensis \N \N \N \N \N 73409 B.fucatus Brachysiphon Brachysiphon fucatus \N \N \N \N \N 73410 M.herrerae Mammillaria Mammillaria herrerae \N \N \N \N \N 73411 \N subspecies Helichrysum serotinum subsp. serotinum \N \N \N \N \N 73412 A.spicata Ainsliaea Ainsliaea spicata \N \N \N \N \N 73413 R.2196 Rulingia Rulingia sp. Chase 2196 \N \N \N \N \N 73414 V.cultivar Vanilla Vanilla hybrid cultivar \N \N \N \N \N 73415 \N genus Inezia \N \N \N \N \N 73416 S.fruticosa Saprosma Saprosma fruticosa \N \N \N \N \N 73417 \N genus Thysanotus \N \N \N \N \N 73418 S.boliviana Satyria Satyria boliviana \N \N \N \N \N 73419 \N genus Humbertia \N \N \N \N \N 73420 A.africanus Agapanthus Agapanthus africanus African lily,lily-of-the-Nile \N \N \N \N 73421 P.argentina Prosopis Prosopis argentina algarobilla \N \N \N \N 73422 C.gaudichaudiana Carex Carex gaudichaudiana \N \N \N \N \N 73423 C.garcia-barrigae Clidemia Clidemia garcia-barrigae \N \N \N \N \N 73424 M.diosmifolia Melaleuca Melaleuca diosmifolia \N \N \N \N \N 73425 S.banksii Staberoha Staberoha banksii \N \N \N \N \N 73426 A.excelsum Anacardium Anacardium excelsum caracoli,espave \N \N \N \N 73427 F.robusta Fargesia Fargesia robusta \N \N \N \N \N 73428 S.rostrata Stewartia Stewartia rostrata \N \N \N \N \N 73429 M.15 Mimosa Mimosa sp. Dahmer 15 \N \N \N \N \N 73430 M.pentapetalus Mischocarpus Mischocarpus pentapetalus \N \N \N \N \N 73431 R.laxiflorum Retiniphyllum Retiniphyllum laxiflorum \N \N \N \N \N 73432 \N tribe Cicereae \N \N \N \N \N 73433 R.hirsuta Raphionacme Raphionacme hirsuta \N \N \N \N \N 73434 A.forrestii Archiserratula Archiserratula forrestii \N \N \N \N \N 73435 M.chacoensis Maxillaria Maxillaria chacoensis \N \N \N \N \N 73436 \N genus Carum \N \N \N \N \N 73437 \N genus Lamarckia \N \N \N \N \N 73438 C.longipaniculatum Cinnamomum Cinnamomum longipaniculatum \N \N \N \N \N 73439 C.sinensis Chaenomeles Chaenomeles sinensis \N \N \N \N \N 73440 A.winklerianum Allium Allium winklerianum \N \N \N \N \N 73441 \N genus Elmerrillia \N \N \N \N \N 73442 \N subspecies Ophrys x arachnitiformis subsp. archipelagi \N \N \N \N \N 73443 P.bicolor Portulaca Portulaca bicolor \N \N \N \N \N 73444 A.bella Afzelia Afzelia bella \N \N \N \N \N 73445 P.steenbokensis Polymita Polymita steenbokensis \N \N \N \N \N 73446 P.triloba Prunus Prunus triloba yu ye mei \N \N \N \N 73447 I.victorialis Indocalamus Indocalamus victorialis \N \N \N \N \N 73448 L.69 Lunania Lunania sp. Alford 69 \N \N \N \N \N 73449 B.speciosissimum Buphthalmum Buphthalmum speciosissimum \N \N \N \N \N 73450 R.trichocladum Rhododendron Rhododendron trichocladum \N \N \N \N \N 73451 O.aphylla Olax Olax aphylla \N \N \N \N \N 73452 \N genus Krascheninnikovia \N \N \N \N \N 73453 F.urceolata Ferula Ferula urceolata \N \N \N \N \N 73454 C.tenebrosa Clidemia Clidemia tenebrosa \N \N \N \N \N 73455 M.54 Matthiola Matthiola sp. Monfils & Conner 54 \N \N \N \N \N 73456 M.namaquana Moraea Moraea namaquana \N \N \N \N \N 73457 P.dolabratum Pugionium Pugionium dolabratum \N \N \N \N \N 73458 S.leptoclada Salsola Salsola leptoclada \N \N \N \N \N 73459 \N genus Rupicapnos \N \N \N \N \N 73460 M.dinklagei Maschalocephalus Maschalocephalus dinklagei \N \N \N \N \N 73461 T.discolor Tetrapterys Tetrapterys discolor \N \N \N \N \N 73462 T.turkestanica Tulipa Tulipa turkestanica \N \N \N \N \N 73463 G.neopopovii Gagea Gagea neopopovii \N \N \N \N \N 73464 C.typica Cynorhiza Cynorhiza typica \N \N \N \N \N 73465 S.argenteum Stenanthemum Stenanthemum argenteum \N \N \N \N \N 73466 G.sessiliflora Globba Globba sessiliflora \N \N \N \N \N 73467 Q.pedunculiflora Quercus Quercus robur x Quercus robur subsp. pedunculiflora \N \N \N \N \N 73468 C.eucallus Cyrtanthus Cyrtanthus eucallus \N \N \N \N \N 73469 T.elliptica Tambourissa Tambourissa elliptica \N \N \N \N \N 73470 G.bodenbenderianum Gymnocalycium Gymnocalycium bodenbenderianum \N \N \N \N \N 73471 S.chloropetalum Sedum Sedum chloropetalum \N \N \N \N \N 73472 O.reinholdii Ophrys Ophrys reinholdii \N \N \N \N \N 73473 \N genus Conzattia \N \N \N \N \N 73474 A.angustifolia Acleisanthes Acleisanthes angustifolia \N \N \N \N \N 73475 \N subspecies Taeniatherum caput-medusae subsp. asperum \N \N \N \N \N 73476 R.hudsonianum Ribes Ribes hudsonianum Hudson Bay currant,northern black currant,western black currant \N \N \N \N 73477 T.integrifolia Tessaria Tessaria integrifolia \N \N \N \N \N 73478 T.crenatum Tetrastigma Tetrastigma crenatum \N \N \N \N \N 73479 L.christinae Lysimachia Lysimachia christinae guo lu huang \N \N \N \N 73480 C.gnaphalioides Chaetanthera Chaetanthera gnaphalioides \N \N \N \N \N 73481 C.flavida Crataegus Crataegus flavida \N \N \N \N \N 73482 E.diurna Encyclia Encyclia diurna \N \N \N \N \N 73483 O.ciliaris Oxalis Oxalis ciliaris \N \N \N \N \N 73484 C.aurantia Craspedia Craspedia aurantia \N \N \N \N \N 73485 M.269 Miliusa Miliusa sp. Middleton and Lamxay 269 \N \N \N \N \N 73486 M.antioquensis Mimosa Mimosa antioquensis \N \N \N \N \N 73487 R.chihsinianum Rhododendron Rhododendron chihsinianum \N \N \N \N \N 73488 D.BGB-2009 Dalechampia Dalechampia aff. ficifolia BGB-2009 \N \N \N \N \N 73489 \N genus Veronicastrum \N \N \N \N \N 73490 A.monticola Amesiella Amesiella monticola \N \N \N \N \N 73491 B.aristata Bashania Bashania aristata \N \N \N \N \N 73492 T.filifolia Tridactyle Tridactyle filifolia \N \N \N \N \N 73493 H.columbica Hinterhubera Hinterhubera columbica \N \N \N \N \N 73494 D.iranica Dionysia Dionysia iranica \N \N \N \N \N 73495 \N subspecies Cornus hongkongensis subsp. gigantea \N \N \N \N \N 73496 B.capuronii Bulbophyllum Bulbophyllum capuronii \N \N \N \N \N 73497 P.21874 Persea Persea sp. van der Werff 21874 \N \N \N \N \N 73498 O.klainei Ormocarpum Ormocarpum klainei \N \N \N \N \N 73499 \N varietas Potentilla subjuga var. subjuga \N \N \N \N \N 73500 S.platanifolius Styrax Styrax platanifolius \N \N \N \N \N 73501 \N varietas Brassica rapa var. parachinensis cai xin,choi sum,false pak-choi \N \N \N \N 73502 C.moritziana Coespeletia Coespeletia moritziana \N \N \N \N \N 73503 C.fergusoniae Cyrtanthus Cyrtanthus fergusoniae \N \N \N \N \N 73504 G.foliosa Gerrardina Gerrardina foliosa \N \N \N \N \N 73505 E.ophthalmica Euphorbia Euphorbia ophthalmica \N \N \N \N \N 73506 \N genus Lophostachys \N \N \N \N \N 73507 B.polyantha Brachystele Brachystele polyantha \N \N \N \N \N 73508 L.sagittatum Lepidium Lepidium sagittatum \N \N \N \N \N 73509 G.germanica Genista Genista germanica \N \N \N \N \N 73510 B.obovata Buforrestia Buforrestia obovata \N \N \N \N \N 73511 \N varietas Disanthus cercidifolius var. longipes \N \N \N \N \N 73512 W.gladioliflora Werauhia Werauhia gladioliflora \N \N \N \N \N 73513 \N family Rhizophoraceae red mangrove family \N \N \N \N 73514 D.tymphresteus Dianthus Dianthus tymphresteus \N \N \N \N \N 73515 O.vaginata Opercularia Opercularia vaginata \N \N \N \N \N 73516 A.lagopoides Astragalus Astragalus lagopoides \N \N \N \N \N 73517 \N subspecies Encelia frutescens subsp. glandulosa \N \N \N \N \N 73518 \N subspecies Impatiens mildbraedii subsp. telekii \N \N \N \N \N 73519 S.perennans Salicornia Salicornia perennans \N \N \N \N \N 73520 C.macranthus Cionosicyos Cionosicyos macranthus granadilla de monte \N \N \N \N 73521 C.ambovombensis Ceropegia Ceropegia ambovombensis \N \N \N \N \N 73522 C.flaccida Corydalis Corydalis flaccida \N \N \N \N \N 73523 S.schizantha Synthyris Synthyris schizantha \N \N \N \N \N 73524 D.theinlwinii Dichanthium Dichanthium theinlwinii \N \N \N \N \N 73525 S.nivalis Silene Silene nivalis \N \N \N \N \N 73526 A.abylaea Anthemis Anthemis abylaea \N \N \N \N \N 73527 \N genus Critesion \N \N \N \N \N 73528 P.melioides Pleonotoma Pleonotoma melioides \N \N \N \N \N 73529 S.glabra Smilax Smilax glabra \N \N \N \N \N 73530 \N family Phrymaceae \N \N \N \N \N 73531 B.prismatica Bouchea Bouchea prismatica \N \N \N \N \N 73532 \N genus Caltha \N \N \N \N \N 73533 D.roezlii Dracula Dracula roezlii \N \N \N \N \N 73534 \N genus Stanleya \N \N \N \N \N 73535 C.shevaroyensis Crotalaria Crotalaria shevaroyensis \N \N \N \N \N 73536 \N subspecies Carthamus lanatus subsp. lanatus \N \N \N \N \N 73537 L.stricklandiae Lobelia Lobelia stricklandiae \N \N \N \N \N 73538 R.berardioides Rhaponticum Rhaponticum berardioides \N \N \N \N \N 73539 A.stipitatum Allium Allium stipitatum \N \N \N \N \N 73540 D.renifolium Desmodium Desmodium renifolium \N \N \N \N \N 73541 C.crassiuscula Chionochloa Chionochloa crassiuscula \N \N \N \N \N 73542 L.tegeticulatus Lupinus Lupinus tegeticulatus \N \N \N \N \N 73543 \N genus Parolinia \N \N \N \N \N 73544 T.5752 Torminalis Torminalis sp. 5752 \N \N \N \N \N 73545 C.changduensis Caragana Caragana changduensis \N \N \N \N \N 73546 A.terraccianoi Agave Agave terraccianoi \N \N \N \N \N 73547 C.sclerophylla Castanopsis Castanopsis sclerophylla \N \N \N \N \N 73548 R.caudata Rinorea Rinorea caudata \N \N \N \N \N 73549 \N genus Cheiranthera \N \N \N \N \N 73550 P.scabra Pityrodia Pityrodia scabra \N \N \N \N \N 73551 B.barbata Bouteloua Bouteloua barbata \N \N \N \N \N 73552 R.pilosum Retiniphyllum Retiniphyllum pilosum \N \N \N \N \N 73553 C.rhodops Corymbia Corymbia rhodops \N \N \N \N \N 73554 P.leucoxylon Piptadenia Piptadenia leucoxylon \N \N \N \N \N 73555 S.nobilis Sabicea Sabicea nobilis \N \N \N \N \N 73556 R.cuneifolium Ribes Ribes cuneifolium \N \N \N \N \N 73557 S.dingqingensis Saxifraga Saxifraga dingqingensis \N \N \N \N \N 73558 E.praeclara Eschweilera Eschweilera praeclara \N \N \N \N \N 73559 M.rubellus Mimulus Mimulus rubellus \N \N \N \N \N 73560 \N genus Brintonia \N \N \N \N \N 73561 P.subandina Polygala Polygala subandina \N \N \N \N \N 73562 C.citrullifolia Cayaponia Cayaponia citrullifolia \N \N \N \N \N 73563 D.hilaris Drosera Drosera hilaris \N \N \N \N \N 73564 S.laurifolium Styloceras Styloceras laurifolium \N \N \N \N \N 73565 S.stenophylla Schaefferia Schaefferia stenophylla \N \N \N \N \N 73566 G.hirsuta Genista Genista hirsuta \N \N \N \N \N 73567 C.langsdorffii Copaifera Copaifera langsdorffii copaiba \N \N \N \N 73568 \N forma Macaranga depressa f. glabra \N \N \N \N \N 73569 E.horridum Eryngium Eryngium horridum \N \N \N \N \N 73570 A.eremophilus Astragalus Astragalus eremophilus \N \N \N \N \N 73571 M.pseudopruinosa Macaranga Macaranga pseudopruinosa \N \N \N \N \N 73572 M.moschata Myrothamnus Myrothamnus moschata \N \N \N \N \N 73573 L.mendocina Luzula Luzula mendocina \N \N \N \N \N 73574 \N genus Ottoschmidtia \N \N \N \N \N 73575 P.peucedanifolia Pimpinella Pimpinella peucedanifolia \N \N \N \N \N 73576 B.heineanus Borassus Borassus heineanus \N \N \N \N \N 73577 A.monanthum Allium Allium monanthum \N \N \N \N \N 73578 D.pernambucensis Dalechampia Dalechampia pernambucensis \N \N \N \N \N 73579 P.fergusoniae Pelargonium Pelargonium fergusoniae \N \N \N \N \N 73580 C.putida Cryptocarya Cryptocarya putida \N \N \N \N \N 73581 \N genus Heladena \N \N \N \N \N 73582 S.mochiquense Solanum Solanum mochiquense \N \N \N \N \N 73583 F.erecta Ficus Ficus erecta ai xiao tian xian guo \N \N \N \N 73584 \N genus Emelianthe \N \N \N \N \N 73585 S.plebeja Scoparia Scoparia plebeja \N \N \N \N \N 73586 F.assa-foetida Ferula Ferula assa-foetida asafoetida \N \N \N \N 73587 H.prostrata Hoffmannseggia Hoffmannseggia prostrata \N \N \N \N \N 73588 M.hutchisoniana Mammillaria Mammillaria hutchisoniana \N \N \N \N \N 73589 \N genus Tecomella \N \N \N \N \N 73590 S.luehmannii Syzygium Syzygium luehmannii \N \N \N \N \N 73591 H.rechingeri Heracleum Heracleum rechingeri \N \N \N \N \N 73592 S.newcombei Sinosenecio Sinosenecio newcombei \N \N \N \N \N 73593 \N tribe Abreae \N \N \N \N \N 73594 \N subspecies Ceanothus divergens subsp. occidentalis \N \N \N \N \N 73595 B.madagascariensis Baphia Baphia madagascariensis \N \N \N \N \N 73596 C.SH-2010 Conyza Conyza sp. SH-2010 \N \N \N \N \N 73597 T.subterraneus Turbinicarpus Turbinicarpus subterraneus \N \N \N \N \N 73598 \N varietas Smilax nervomarginata var. liukiuensis \N \N \N \N \N 73599 T.tichomirovii Typha Typha tichomirovii \N \N \N \N \N 73600 C.siliculifera Cleome Cleome siliculifera \N \N \N \N \N 73601 G.spicata Garcinia Garcinia spicata \N \N \N \N \N 73602 P.egedei Potentilla Potentilla egedei \N \N \N \N \N 73603 H.parvifolia Heuchera Heuchera parvifolia \N \N \N \N \N 73604 A.glutinosa Arctostaphylos Arctostaphylos glutinosa \N \N \N \N \N 73605 O.taiwaniana Oreomyrrhis Oreomyrrhis taiwaniana \N \N \N \N \N 73606 T.heterophylla Taeckholmia Taeckholmia heterophylla \N \N \N \N \N 73607 D.pycnosperma Draba Draba pycnosperma \N \N \N \N \N 73608 G.aphyonota Glycine Glycine aphyonota \N \N \N \N \N 73609 O.selloi Ocimum Ocimum selloi \N \N \N \N \N 73610 C.cephaloidea Carex Carex cephaloidea \N \N \N \N \N 73611 D.lutescens Draba Draba lutescens \N \N \N \N \N 73612 P.nivale Papaver Papaver nivale \N \N \N \N \N 73613 D.ionopus Dendrobium Dendrobium ionopus \N \N \N \N \N 73614 G.pseudonotabilis Gaultheria Gaultheria pseudonotabilis \N \N \N \N \N 73615 P.pilifera Porphyrostachys Porphyrostachys pilifera \N \N \N \N \N 73616 M.shevockii Mimulus Mimulus shevockii \N \N \N \N \N 73617 S.riedelii Swartzia Swartzia riedelii \N \N \N \N \N 73618 \N varietas Corispermum macrocarpum var. rubrum \N \N \N \N \N 73619 \N genus Airosperma \N \N \N \N \N 73620 S.macropetalum Sphaerocardamum Sphaerocardamum macropetalum \N \N \N \N \N 73621 \N subspecies Cordylanthus wrightii subsp. wrightii \N \N \N \N \N 73622 A.heterophylla Aldina Aldina heterophylla \N \N \N \N \N 73623 P.splendens Paradrymonia Paradrymonia splendens \N \N \N \N \N 73624 P.korinti Polyalthia Polyalthia korinti \N \N \N \N \N 73625 H.acuminatum Heterostemma Heterostemma acuminatum \N \N \N \N \N 73626 C.retusa Coryphantha Coryphantha retusa \N \N \N \N \N 73627 P.lutea Pachystachys Pachystachys lutea \N \N \N \N \N 73628 J.subalpina Jacobaea Jacobaea subalpina \N \N \N \N \N 73629 I.crithmoides Inula Inula crithmoides \N \N \N \N \N 73630 C.dolomitica Carex Carex dolomitica \N \N \N \N \N 73631 \N genus Hildegardia \N \N \N \N \N 73632 G.masafuerae Gunnera Gunnera masafuerae \N \N \N \N \N 73633 \N genus Lithosciadium \N \N \N \N \N 73634 \N genus Jefea \N \N \N \N \N 73635 B.umbraticola Banara Banara umbraticola \N \N \N \N \N 73636 D.veitchii Dysosma Dysosma veitchii \N \N \N \N \N 73637 \N subspecies Gymnocalycium gibbosum subsp. gibbosum \N \N \N \N \N 73638 \N genus Rhaphidophyton \N \N \N \N \N 73639 T.amplifolia Tambourissa Tambourissa amplifolia \N \N \N \N \N 73640 P.punctata Persicaria Persicaria punctata \N \N \N \N \N 73641 B.apertilobata Bauhinia Bauhinia apertilobata \N \N \N \N \N 73642 \N genus Microstegium \N \N \N \N \N 73643 A.geniculiflora Aptenia Aptenia geniculiflora \N \N \N \N \N 73644 M.myristica Monodora Monodora myristica \N \N \N \N \N 73645 A.gracillimum Adelostemma Adelostemma gracillimum \N \N \N \N \N 73646 L.CVM-2007-1 Leandra Leandra sp. CVM-2007-1 \N \N \N \N \N 73647 P.cusickii Poa Poa cusickii \N \N \N \N \N 73648 H.brownei Helichrysum Helichrysum brownei \N \N \N \N \N 73649 \N genus Astrantia \N \N \N \N \N 73650 \N subspecies Acer tataricum subsp. semenovii \N \N \N \N \N 73651 L.JTM-2009d Linguella Linguella sp. JTM-2009d \N \N \N \N \N 73652 \N genus Kitaibela \N \N \N \N \N 73653 H.inoploeum Haplocoelum Haplocoelum inoploeum \N \N \N \N \N 73654 O.ficus-indica Opuntia Opuntia ficus-indica Indian-fig \N \N \N \N 73655 S.alba Salix Salix alba white willow \N \N \N \N 73656 M.grandissimus Mischocarpus Mischocarpus grandissimus \N \N \N \N \N 73657 T.cochabambae Tropaeolum Tropaeolum cochabambae \N \N \N \N \N 73658 L.havardii Lupinus Lupinus havardii \N \N \N \N \N 73659 \N subspecies Erica glauca subsp. elegans \N \N \N \N \N 73660 A.mackeei Arthrophyllum Arthrophyllum mackeei \N \N \N \N \N 73661 S.candelabrum Schefflera Schefflera candelabrum \N \N \N \N \N 73662 \N genus Triosteum \N \N \N \N \N 73663 A.arborea Ampelopsis Ampelopsis arborea \N \N \N \N \N 73664 G.RC-2008 Gorteria Gorteria sp. RC-2008 \N \N \N \N \N 73665 \N subspecies Fragaria virginiana subsp. virginiana \N \N \N \N \N 73666 T.TK37-3 unclassified Taraxacum Taraxacum (sect. Naevosa) sp. TK37-3 \N \N \N \N \N 73667 B.carduoides Berkheya Berkheya carduoides \N \N \N \N \N 73668 C.8811 Cymbopetalum Cymbopetalum sp. Maas et al. 8811 \N \N \N \N \N 73669 O.celsianus Oreocereus Oreocereus celsianus \N \N \N \N \N 73670 G.capillifolia Gagea Gagea capillifolia \N \N \N \N \N 73671 G.pilosum Gossypium Gossypium pilosum \N \N \N \N \N 73672 P.ampliatum Peucedanum Peucedanum ampliatum \N \N \N \N \N 73673 M.longipes Miliusa Miliusa longipes \N \N \N \N \N 73674 Z.leptaurea Zoegea Zoegea leptaurea \N \N \N \N \N 73675 \N genus Morelia \N \N \N \N \N 73676 T.S5679 unclassified Taraxacum Taraxacum (sect. Obovata) sp. S5679 \N \N \N \N \N 73677 S.nitida Scaevola Scaevola nitida \N \N \N \N \N 73678 U.vittatus Urochilus Urochilus vittatus \N \N \N \N \N 73679 H.PBH-2008 Hypericum Hypericum aff. japonicum PBH-2008 \N \N \N \N \N 73680 T.ferox Tectiphiala Tectiphiala ferox \N \N \N \N \N 73681 C.messeri Cynanchum Cynanchum messeri \N \N \N \N \N 73682 P.oxanum Polygonum Polygonum oxanum \N \N \N \N \N 73683 S.wettsteinii Sisyrinchium Sisyrinchium wettsteinii \N \N \N \N \N 73684 S.canae Stelis Stelis canae \N \N \N \N \N 73685 A.gerrardii Ambavia Ambavia gerrardii \N \N \N \N \N 73686 \N genus Diplokeleba \N \N \N \N \N 73687 \N subspecies Daucus carota subsp. gummifer \N \N \N \N \N 73688 \N subspecies Ulex europaeus subsp. europaeus \N \N \N \N \N 73689 R.2-JFS-2004 Rhytidophyllum Rhytidophyllum sp. 2-JFS-2004 \N \N \N \N \N 73690 G.otophoroides Gentiana Gentiana otophoroides \N \N \N \N \N 73691 L.luteolus Lupinus Lupinus luteolus butter lupine \N \N \N \N 73692 C.indica Castanopsis Castanopsis indica \N \N \N \N \N 73693 M.asparagifolia Muraltia Muraltia asparagifolia \N \N \N \N \N 73694 O.bocconei Odontites Odontites bocconei \N \N \N \N \N 73695 S.tetraphylla Sophora Sophora tetraphylla \N \N \N \N \N 73696 E.ursinoides Euryops Euryops ursinoides \N \N \N \N \N 73697 S.forbesii Striga Striga forbesii \N \N \N \N \N 73698 H.reverchonii Hyacinthoides Hyacinthoides reverchonii \N \N \N \N \N 73699 \N subspecies Dubautia linearis subsp. linearis \N \N \N \N \N 73700 C.anjanerica Ceropegia Ceropegia anjanerica \N \N \N \N \N 73701 S.marmorea Sideritis Sideritis marmorea \N \N \N \N \N 73702 T.pondoensis Thunbergia Thunbergia pondoensis \N \N \N \N \N 73703 C.vulgaris Calluna Calluna vulgaris heather flower \N \N \N \N 73704 E.altaica Euphorbia Euphorbia altaica \N \N \N \N \N 73705 C.penlandii Calceolaria Calceolaria penlandii \N \N \N \N \N 73706 S.fulgens Siphocampylus Siphocampylus fulgens \N \N \N \N \N 73707 D.ovatus Dendrocalamus Dendrocalamus ovatus \N \N \N \N \N 73708 \N subfamily Cassiopoideae \N \N \N \N \N 73709 T.melochioides Turnera Turnera melochioides \N \N \N \N \N 73710 C.guthrieae Cyrtanthus Cyrtanthus guthrieae \N \N \N \N \N 73711 A.delicatulum Askidiosperma Askidiosperma delicatulum \N \N \N \N \N 73712 R.marschlinsii Ranunculus Ranunculus marschlinsii \N \N \N \N \N 73713 M.LP23 Micromeria Micromeria cf. herpyllomorpha Heubl LP23 \N \N \N \N \N 73714 \N genus Dichrostachys \N \N \N \N \N 73715 B.nevadensis Boechera Boechera nevadensis \N \N \N \N \N 73716 D.brasiliensis Diplotropis Diplotropis brasiliensis \N \N \N \N \N 73717 A.filaria Aquilaria Aquilaria filaria \N \N \N \N \N 73718 P.gracillima Pseudoroegneria Pseudoroegneria gracillima \N \N \N \N \N 73719 S.vieillardii Schefflera Schefflera vieillardii \N \N \N \N \N 73720 H.pubescens Helictotrichon Helictotrichon pubescens \N \N \N \N \N 73721 P.coeruleum Paramacrolobium Paramacrolobium coeruleum \N \N \N \N \N 73722 \N genus Adenogramma \N \N \N \N \N 73723 R.roraimae Rondonanthus Rondonanthus roraimae \N \N \N \N \N 73724 P.spectabilis Polygala Polygala spectabilis \N \N \N \N \N 73725 V.SH-2010 Ventilago Ventilago sp. SH-2010 \N \N \N \N \N 73726 D.carrii Dendrobium Dendrobium carrii \N \N \N \N \N 73727 P.velutinum Phoradendron Phoradendron velutinum \N \N \N \N \N 73728 T.lacerum Taraxacum Taraxacum lacerum \N \N \N \N \N 73729 \N genus Malvella \N \N \N \N \N 73730 M.macrocarpa Moraea Moraea macrocarpa \N \N \N \N \N 73731 A.shelkovnikovii Astragalus Astragalus shelkovnikovii \N \N \N \N \N 73732 A.hispida Aralia Aralia hispida \N \N \N \N \N 73733 H.jubatum Hordeum Hordeum jubatum foxtail barley \N \N \N \N 73734 C.1637 Chondrorhyncha Chondrorhyncha aff. hirtzii Whitten 1637 \N \N \N \N \N 73735 C.potosina Carex Carex potosina \N \N \N \N \N 73736 C.arboreus Carpodetus Carpodetus arboreus \N \N \N \N \N 73737 B.longifolius Bunochilus Bunochilus longifolius \N \N \N \N \N 73738 D.gerardii Dorycnopsis Dorycnopsis gerardii \N \N \N \N \N 73739 C.SH-2010 Curatella Curatella sp. SH-2010 \N \N \N \N \N 73740 \N genus Anisadenia \N \N \N \N \N 73741 L.spinosum Lepidium Lepidium spinosum \N \N \N \N \N 73742 F.cyathistipuloides Ficus Ficus cyathistipuloides \N \N \N \N \N 73743 \N genus Polymnia \N \N \N \N \N 73744 P.placidum Philodendron Philodendron placidum \N \N \N \N \N 73745 \N genus Zoutpansbergia \N \N \N \N \N 73746 P.moctezumae Pinguicula Pinguicula moctezumae \N \N \N \N \N 73747 E.tschimganica Elaeosticta Elaeosticta tschimganica \N \N \N \N \N 73748 \N genus Leucophrys \N \N \N \N \N 73749 M.MIC Macrocarpaea Macrocarpaea sp. MIC \N \N \N \N \N 73750 M.hirsuta Muraltia Muraltia hirsuta \N \N \N \N \N 73751 \N genus Armeria thrift \N \N \N \N 73752 R.sinanense Ribes Ribes sinanense \N \N \N \N \N 73753 R.ananuca Rhodophiala Rhodophiala ananuca \N \N \N \N \N 73754 \N subspecies Erica rosacea subsp. glabrata \N \N \N \N \N 73755 C.choisiana Cuscuta Cuscuta choisiana \N \N \N \N \N 73756 T.marinii Tarasa Tarasa marinii \N \N \N \N \N 73757 \N subspecies Hedysarum spinosissimum subsp. capitatum clustered sulla \N \N \N \N 73758 M.olgae Moluccella Moluccella olgae \N \N \N \N \N 73759 N.hedraeanthus Narcissus Narcissus hedraeanthus \N \N \N \N \N 73760 C.ecirrhosus Citrullus Citrullus ecirrhosus \N \N \N \N \N 73761 G.planifolia Gomesa Gomesa planifolia \N \N \N \N \N 73762 \N genus Mascagnia \N \N \N \N \N 73763 L.corneus Lithocarpus Lithocarpus corneus \N \N \N \N \N 73764 L.concinna Licuala Licuala concinna \N \N \N \N \N 73765 \N genus Zeuktophyllum \N \N \N \N \N 73766 S.americanus Schoenoplectus Schoenoplectus americanus American bulrush \N \N \N \N 73767 J.maheshwarii Jatropha Jatropha maheshwarii \N \N \N \N \N 73768 G.core-core Geranium Geranium core-core \N \N \N \N \N 73769 L.subsessilis Luzula Luzula subsessilis \N \N \N \N \N 73770 C.corymbosa Cardamine Cardamine corymbosa \N \N \N \N \N 73771 \N subspecies Allium caspium subsp. caspium \N \N \N \N \N 73772 M.bullata Miconia Miconia bullata \N \N \N \N \N 73773 A.rigonii Arachis Arachis rigonii \N \N \N \N \N 73774 R.muelleri Ranunculus Ranunculus muelleri \N \N \N \N \N 73775 \N forma Isoplexis canariensis f. trichomana \N \N \N \N \N 73776 Z.E Zannichellia Zannichellia sp. haplotype E \N \N \N \N \N 73777 C.cusickii Camassia Camassia cusickii \N \N \N \N \N 73778 S.uniflora Shortia Shortia uniflora \N \N \N \N \N 73779 E.griquense Erucastrum Erucastrum griquense \N \N \N \N \N 73780 \N subfamily Cyrtandroideae \N \N \N \N \N 73781 C.pestalozzae Crocus Crocus pestalozzae \N \N \N \N \N 73782 L.benoistii Lotus Lotus benoistii \N \N \N \N \N 73783 O.zapotecorum Olmeca Olmeca zapotecorum \N \N \N \N \N 73784 P.curatellifolia Parinari Parinari curatellifolia \N \N \N \N \N 73785 C.concordianum Coilonox Coilonox concordianum \N \N \N \N \N 73786 S.nipponicus Symplocarpus Symplocarpus nipponicus \N \N \N \N \N 73787 S.alata Senna Senna alata Christmas-candle,bajagua,candlebush,mocote \N \N \N \N 73788 C.pedunculata Carex Carex pedunculata \N \N \N \N \N 73789 B.hoehnei Bulbophyllum Bulbophyllum hoehnei \N \N \N \N \N 73790 S.jollyanum Sphenocentrum Sphenocentrum jollyanum \N \N \N \N \N 73791 M.zanzibarica Markhamia Markhamia zanzibarica \N \N \N \N \N 73792 R.glaucum Rhodosciadium Rhodosciadium glaucum \N \N \N \N \N 73793 M.simplex Moraea Moraea simplex \N \N \N \N \N 73794 M.latifolium Myriophyllum Myriophyllum latifolium \N \N \N \N \N 73795 E.chlorifolium Epilobium Epilobium chlorifolium \N \N \N \N \N 73796 A.hirta Arachnorchis Arachnorchis hirta \N \N \N \N \N 73797 B.filifolium Brachystelma Brachystelma filifolium \N \N \N \N \N 73798 \N subspecies Thymelaea tartonraira subsp. thomasii \N \N \N \N \N 73799 P.arboreus Pseudopanax Pseudopanax arboreus five-fingers,whauwhaupaku \N \N \N \N 73800 \N subspecies Anthyllis vulneraria subsp. lapponica \N \N \N \N \N 73801 A.filipes Arracacia Arracacia filipes \N \N \N \N \N 73802 C.hirsutum Craterostigma Craterostigma hirsutum \N \N \N \N \N 73803 C.klainei Crudia Crudia klainei \N \N \N \N \N 73804 P.appendiculatum Piper Piper appendiculatum \N \N \N \N \N 73805 S.palmensis Sonchus Sonchus palmensis \N \N \N \N \N 73806 A.calapparia Actinorhytis Actinorhytis calapparia \N \N \N \N \N 73807 P.pilifera Perezia Perezia pilifera \N \N \N \N \N 73808 \N genus Coleanthera \N \N \N \N \N 73809 \N varietas Pediomelum hypogaeum var. scaposum \N \N \N \N \N 73810 \N genus Pseudechinolaena \N \N \N \N \N 73811 T.grandifolia Trimeria Trimeria grandifolia \N \N \N \N \N 73812 \N genus Vasconcellea \N \N \N \N \N 73813 C.bardolphianum Cypripedium Cypripedium bardolphianum \N \N \N \N \N 73814 A.vulgaris Artemisia Artemisia vulgaris common wormwood,mugwort \N \N \N \N 73815 A.corymbosa Argemone Argemone corymbosa \N \N \N \N \N 73816 \N genus Heteropetalum \N \N \N \N \N 73817 R.howittiana Rapanea Rapanea howittiana \N \N \N \N \N 73818 \N genus Urvillea \N \N \N \N \N 73819 C.henryi Chloranthus Chloranthus henryi \N \N \N \N \N 73820 P.drummondii Philydrella Philydrella drummondii \N \N \N \N \N 73821 H.uncinella Hedyotis Hedyotis uncinella \N \N \N \N \N 73822 V.A Viola Viola sp. nov. A \N \N \N \N \N 73823 P.zhennan Phoebe Phoebe zhennan \N \N \N \N \N 73824 L.taynguyensis Licuala Licuala taynguyensis \N \N \N \N \N 73825 \N genus Neottianthe \N \N \N \N \N 73826 \N genus Couroupita \N \N \N \N \N 73827 G.peratosa Glycine Glycine peratosa \N \N \N \N \N 73828 C.diffusum Chiliotrichum Chiliotrichum diffusum \N \N \N \N \N 73829 S.lanuginosa Synthyris Synthyris lanuginosa \N \N \N \N \N 73830 T.TL264-1 unclassified Taraxacum Taraxacum (sect. Naevosa) sp. TL264-1 \N \N \N \N \N 73831 \N genus Canella \N \N \N \N \N 73832 P.panamensis Psychotria Psychotria panamensis \N \N \N \N \N 73833 A.parviflora Abatia Abatia parviflora \N \N \N \N \N 73834 V.simsioides Viguiera Viguiera simsioides \N \N \N \N \N 73835 P.procumbens Pachysandra Pachysandra procumbens \N \N \N \N \N 73836 P.hispida Pimelea Pimelea hispida \N \N \N \N \N 73837 A.pamirica Artemisia Artemisia pamirica \N \N \N \N \N 73838 G.G1545 Glycine Glycine sp. G1545 \N \N \N \N \N 73839 M.humilis Momordica Momordica humilis \N \N \N \N \N 73840 R.linearis Rapanea Rapanea linearis \N \N \N \N \N 73841 P.atropurpurea Phlomis Phlomis atropurpurea \N \N \N \N \N 73842 B.perdicioides Brachyglottis Brachyglottis perdicioides \N \N \N \N \N 73843 P.mussaendoides Phyllopentas Phyllopentas mussaendoides \N \N \N \N \N 73844 \N genus Acharagma \N \N \N \N \N 73845 \N tribe Vismieae \N \N \N \N \N 73846 O.hernandezii Oxalis Oxalis hernandezii \N \N \N \N \N 73847 M.oxyceras Matthiola Matthiola oxyceras \N \N \N \N \N 73848 \N varietas Mimosa quadrivalvis var. quadrivalvis \N \N \N \N \N 73849 B.paleapilifera Briza Briza paleapilifera \N \N \N \N \N 73850 T.trilobatum Typhonium Typhonium trilobatum \N \N \N \N \N 73851 L.pediformis Luzula Luzula pediformis \N \N \N \N \N 73852 C.ferrarii Cardamine Cardamine x ferrarii \N \N \N \N \N 73853 M.duckei Mucoa Mucoa duckei \N \N \N \N \N 73854 T.apiculata Tylophora Tylophora apiculata \N \N \N \N \N 73855 S.gueinzii Searsia Searsia gueinzii \N \N \N \N \N 73856 \N genus Erythronium \N \N \N \N \N 73857 P.brevilabris Pedicularis Pedicularis brevilabris \N \N \N \N \N 73858 \N subspecies Ficus cordata subsp. salicifolia \N \N \N \N \N 73859 P.coccineum Paphiopedilum Paphiopedilum coccineum \N \N \N \N \N 73860 F.berteroana Fagraea Fagraea berteroana \N \N \N \N \N 73861 C.isernii Columnea Columnea isernii \N \N \N \N \N 73862 A.telephioides Andrachne Andrachne telephioides \N \N \N \N \N 73863 C.SH-2010 Cassinopsis Cassinopsis sp. SH-2010 \N \N \N \N \N 73864 \N genus Macaranga \N \N \N \N \N 73865 S.amambayensis Sinningia Sinningia amambayensis \N \N \N \N \N 73866 \N family Alzateaceae \N \N \N \N \N 73867 G.reginae Gladiolus Gladiolus reginae \N \N \N \N \N 73868 T.3710 unclassified Taraxacum Taraxacum (sect. Dioszegia) sp. 3710 \N \N \N \N \N 73869 \N genus Papuechites \N \N \N \N \N 73870 C.poikilanthes Calceolaria Calceolaria poikilanthes \N \N \N \N \N 73871 C.acosmifolia Chamaecrista Chamaecrista acosmifolia \N \N \N \N \N 73872 C.benghalensis Commelina Commelina benghalensis \N \N \N \N \N 73873 V.mengziensis Vitis Vitis mengziensis \N \N \N \N \N 73874 \N genus Ixorhea \N \N \N \N \N 73875 \N varietas Draba oreades var. alpicola \N \N \N \N \N 73876 H.scoreri Hypericum Hypericum scoreri \N \N \N \N \N 73877 A.bilabiata Arrabidaea Arrabidaea bilabiata \N \N \N \N \N 73878 D.rubrostriata Distichochlamys Distichochlamys rubrostriata \N \N \N \N \N 73879 \N genus Meiocarpidium \N \N \N \N \N 73880 O.calcarea Olearia Olearia calcarea \N \N \N \N \N 73881 C.H5_12 Castilleja Castilleja sp. H5_12 \N \N \N \N \N 73882 R.rhaponticum Rheum Rheum rhaponticum \N \N \N \N \N 73883 M.magnifica Mammillaria Mammillaria magnifica \N \N \N \N \N 73884 O.cochleariformis Ornithocephalus Ornithocephalus cochleariformis \N \N \N \N \N 73885 P.stenostachya Psychotria Psychotria stenostachya \N \N \N \N \N 73886 S.cuneata Sibbaldia Sibbaldia cuneata \N \N \N \N \N 73887 H.americana Heuchera Heuchera americana \N \N \N \N \N 73888 M.oblongifolium Misodendrum Misodendrum oblongifolium \N \N \N \N \N 73889 \N genus Prochnyanthes \N \N \N \N \N 73890 T.JS6081 unclassified Taraxacum Taraxacum (sect. Mongolica) sp. JS6081 \N \N \N \N \N 73891 T.rigidifolium Taraxacum Taraxacum rigidifolium \N \N \N \N \N 73892 \N genus Echinolaena \N \N \N \N \N 73893 S.spartinae Spartina Spartina spartinae \N \N \N \N \N 73894 \N genus Maburea \N \N \N \N \N 73895 S.duboisii Scorzoneroides Scorzoneroides duboisii \N \N \N \N \N 73896 A.pedunculata Azorella Azorella pedunculata \N \N \N \N \N 73897 C.hutchinsonianus Croton Croton hutchinsonianus \N \N \N \N \N 73898 S.punctata Strobilanthes Strobilanthes punctata \N \N \N \N \N 73899 N.fuegiana Nassauvia Nassauvia fuegiana \N \N \N \N \N 73900 P.hebetifolium Piper Piper hebetifolium \N \N \N \N \N 73901 C.andina Coursetia Coursetia andina \N \N \N \N \N 73902 P.pitcairnensis Peperomia Peperomia pitcairnensis \N \N \N \N \N 73903 C.hyalinolepis Carex Carex hyalinolepis \N \N \N \N \N 73904 P.menglunense Pterospermum Pterospermum menglunense \N \N \N \N \N 73905 P.pachychila Polystachya Polystachya pachychila \N \N \N \N \N 73906 R.weddelliana Rauvolfia Rauvolfia weddelliana \N \N \N \N \N 73907 S.filodecaballoana Stevia Stevia filodecaballoana \N \N \N \N \N 73908 M.africana Mammea Mammea africana \N \N \N \N \N 73909 S.murrayanum Santalum Santalum murrayanum bitter quandong \N \N \N \N 73910 G.108479 Gagea Gagea cf. xiphoidea HAL 108479 \N \N \N \N \N 73911 F.nishimurae Ficus Ficus nishimurae \N \N \N \N \N 73912 C.stagnalis Callitriche Callitriche stagnalis \N \N \N \N \N 73913 L.brenanii Lijndenia Lijndenia brenanii \N \N \N \N \N 73914 B.JS-2010b Babiana Babiana sp. JS-2010b \N \N \N \N \N 73915 A.kurdica Alcea Alcea kurdica \N \N \N \N \N 73916 \N genus Blumenbachia \N \N \N \N \N 73917 L.geyeri Lithops Lithops geyeri \N \N \N \N \N 73918 R.latipalearis Ratibida Ratibida latipalearis \N \N \N \N \N 73919 P.capitellata Primula Primula capitellata \N \N \N \N \N 73920 P.709 Phyllarthron Phyllarthron sp. Zjhra 709 \N \N \N \N \N 73921 A.versicolor Allochrusa Allochrusa versicolor \N \N \N \N \N 73922 R.cordifolia Rubia Rubia cordifolia \N \N \N \N \N 73923 T.lauterbachianum Tetrastigma Tetrastigma lauterbachianum \N \N \N \N \N 73924 T.recurvifolia Tillandsia Tillandsia recurvifolia \N \N \N \N \N 73925 L.caespitosa Lysipomia Lysipomia caespitosa \N \N \N \N \N 73926 D.petiolaris Drosera Drosera petiolaris \N \N \N \N \N 73927 \N subspecies Arctostaphylos uva-ursi subsp. cratericola \N \N \N \N \N 73928 P.procumbens Patellifolia Patellifolia procumbens \N \N \N \N \N 73929 A.arbelensis Alcea Alcea arbelensis \N \N \N \N \N 73930 B.incrassatum Bunium Bunium incrassatum \N \N \N \N \N 73931 \N varietas Phellodendron amurense var. wilsonii \N \N \N \N \N 73932 P.s.n. Portulaca Portulaca sp. Taylor s.n. \N \N \N \N \N 73933 D.martianus Disocactus Disocactus martianus \N \N \N \N \N 73934 I.lacei Indigofera Indigofera lacei \N \N \N \N \N 73935 \N varietas Castilleja auriculata var. auriculata \N \N \N \N \N 73936 R.bictoniensis Rhynchostele Rhynchostele bictoniensis \N \N \N \N \N 73937 O.decaryi Operculicarya Operculicarya decaryi \N \N \N \N \N 73938 B.gastonii Buglossoides Buglossoides gastonii \N \N \N \N \N 73939 \N genus Limeum \N \N \N \N \N 73940 \N genus Poincianella \N \N \N \N \N 73941 \N no rank Artemisia vulgaris (type 2) \N \N \N \N \N 73942 \N genus Irlbachia \N \N \N \N \N 73943 C.scortechinii Calospatha Calospatha scortechinii \N \N \N \N \N 73944 F.goldmanii Ficus Ficus goldmanii \N \N \N \N \N 73945 A.99-6305 Amomum Amomum aff. coriandriodorum Kress 99-6305 \N \N \N \N \N 73946 \N genus Ocampoa \N \N \N \N \N 73947 U.pandensis Uvaria Uvaria pandensis \N \N \N \N \N 73948 M.pisiformis Monilaria Monilaria pisiformis \N \N \N \N \N 73949 R.orientalis Reseda Reseda orientalis \N \N \N \N \N 73950 \N genus Vismia \N \N \N \N \N 73951 \N genus Hesperomecon \N \N \N \N \N 73952 C.robusta Cyrtostylis Cyrtostylis robusta \N \N \N \N \N 73953 H.grandiflora Hebanthe Hebanthe grandiflora \N \N \N \N \N 73954 \N genus Mallotus \N \N \N \N \N 73955 C.nutans Chaptalia Chaptalia nutans \N \N \N \N \N 73956 P.mascula Paeonia Paeonia mascula \N \N \N \N \N 73957 P.fuscatus Petalochilus Petalochilus fuscatus \N \N \N \N \N 73958 \N varietas Photinia serratifolia var. lasiopetala \N \N \N \N \N 73959 S.almum Sorghum Sorghum x almum almum grass \N \N \N \N 73960 M.culicifera Malleola Malleola culicifera \N \N \N \N \N 73961 C.damasonium Cephalanthera Cephalanthera damasonium \N \N \N \N \N 73962 R.2371 Randia Randia sp. Rova and Sundbaum 2371 \N \N \N \N \N 73963 X.hypoleucum Xanthophyllum Xanthophyllum hypoleucum \N \N \N \N \N 73964 M.coniflora Mimosa Mimosa coniflora \N \N \N \N \N 73965 R.grandiflora Rulingia Rulingia grandiflora \N \N \N \N \N 73966 H.ritteriana Heterostachys Heterostachys ritteriana \N \N \N \N \N 73967 S.australis Symbolanthus Symbolanthus australis \N \N \N \N \N 73968 S.SH-2010 Stachytarpheta Stachytarpheta sp. SH-2010 \N \N \N \N \N 73969 P.davidiana Prunus Prunus davidiana David's peach \N \N \N \N 73970 T.stoloniferum Trifolium Trifolium stoloniferum \N \N \N \N \N 73971 \N genus Leucanthemum \N \N \N \N \N 73972 H.SK-2009c Hydrobryum Hydrobryum sp. SK-2009c \N \N \N \N \N 73973 \N genus Melanophylla \N \N \N \N \N 73974 A.japonica Achlys Achlys japonica \N \N \N \N \N 73975 P.hispidinervum Piper Piper hispidinervum \N \N \N \N \N 73976 H.syriacus Hibiscus Hibiscus syriacus Rose-of-Sharon \N \N \N \N 73977 \N genus Cephalosorus \N \N \N \N \N 73978 E.myrmecophorum Epidendrum Epidendrum myrmecophorum \N \N \N \N \N 73979 P.nana Pieris Pieris nana \N \N \N \N \N 73980 T.tortilis Trichopilia Trichopilia tortilis \N \N \N \N \N 73981 J.BAC-2010 unclassified Juncaceae Juncaceae sp. A8 BAC-2010 \N \N \N \N \N 73982 S.thruppii Solanum Solanum thruppii \N \N \N \N \N 73983 B.orellana Bixa Bixa orellana achiote,annatto,arnatto,lipstick tree,roucou,urucum \N \N \N \N 73984 \N genus Chunia \N \N \N \N \N 73985 T.jilesii Tropaeolum Tropaeolum jilesii \N \N \N \N \N 73986 C.mildbraedii Coccinia Coccinia mildbraedii \N \N \N \N \N 73987 \N subspecies Pulsatilla cernua x Pulsatilla dahurica \N \N \N \N \N 73988 E.regerminans Erica Erica regerminans \N \N \N \N \N 73989 L.lanigerum Leucadendron Leucadendron lanigerum \N \N \N \N \N 73990 C.nilotica Ceropegia Ceropegia nilotica \N \N \N \N \N 73991 S.vaginata Semenovia Semenovia vaginata \N \N \N \N \N 73992 O.gracilinervis Osmanthus Osmanthus gracilinervis \N \N \N \N \N 73993 B.odoratissimum Bulbophyllum Bulbophyllum odoratissimum \N \N \N \N \N 73994 M.flava Mangifera Mangifera flava \N \N \N \N \N 73995 S.pellucidus Sporobolus Sporobolus pellucidus \N \N \N \N \N 73996 R.latibracteata Ruellia Ruellia latibracteata \N \N \N \N \N 73997 B.malabarica Begonia Begonia malabarica \N \N \N \N \N 73998 A.potbergensis Aspalathus Aspalathus potbergensis \N \N \N \N \N 73999 \N subspecies Gilia capitata subsp. abrotanifolia \N \N \N \N \N 74000 S.laui Schiedea Schiedea laui \N \N \N \N \N 74001 A.correia-arauji Aechmea Aechmea correia-arauji \N \N \N \N \N 74002 P.melanantha Polystachya Polystachya melanantha \N \N \N \N \N 74003 C.glabrum Corymbium Corymbium glabrum \N \N \N \N \N 74004 A.membranifolia Adelia Adelia membranifolia \N \N \N \N \N 74005 L.foenum-graecum Lysimachia Lysimachia foenum-graecum \N \N \N \N \N 74006 C.cuneatus Ceanothus Ceanothus cuneatus \N \N \N \N \N 74007 C.scabrida Cassinia Cassinia scabrida \N \N \N \N \N 74008 G.Aunglaeonai Goniothalamus Goniothalamus sp. Aunglaeonai \N \N \N \N \N 74009 V.toronis Viburnum Viburnum toronis \N \N \N \N \N 74010 I.fastigiata Ixora Ixora fastigiata \N \N \N \N \N 74011 C.crassifolia Chirita Chirita crassifolia \N \N \N \N \N 74012 E.rigida Euphorbia Euphorbia rigida \N \N \N \N \N 74013 C.bodinieri Callicarpa Callicarpa bodinieri \N \N \N \N \N 74014 D.dichrosepala Drosera Drosera dichrosepala \N \N \N \N \N 74015 P.reticulata Pancheria Pancheria reticulata \N \N \N \N \N 74016 L.erythraeoides Limnosipanea Limnosipanea erythraeoides \N \N \N \N \N 74017 \N genus Audouinia \N \N \N \N \N 74018 P.tzvelevii Paracolpodium Paracolpodium tzvelevii \N \N \N \N \N 74019 O.dianica Ophrys Ophrys dianica \N \N \N \N \N 74020 \N genus Dieffenbachia \N \N \N \N \N 74021 \N subspecies Scorzonera purpurea subsp. purpurea \N \N \N \N \N 74022 \N genus Noahdendron \N \N \N \N \N 74023 \N genus Argyroxiphium \N \N \N \N \N 74024 S.candelabrum Salvia Salvia candelabrum \N \N \N \N \N 74025 W.ecklonii Wahlenbergia Wahlenbergia ecklonii \N \N \N \N \N 74026 P.kauaiensis Pteralyxia Pteralyxia kauaiensis \N \N \N \N \N 74027 T.pseudovirgatum Thesium Thesium pseudovirgatum \N \N \N \N \N 74028 A.SH-2010 Anisodontea Anisodontea sp. SH-2010 \N \N \N \N \N 74029 G.martirense Galium Galium martirense \N \N \N \N \N 74030 B.cobrensis Boechera Boechera cobrensis \N \N \N \N \N 74032 \N subspecies Phlomis crinita subsp. mauritanica \N \N \N \N \N 74033 \N genus Notochloe \N \N \N \N \N 74034 C.monophylla Cliftonia Cliftonia monophylla \N \N \N \N \N 74035 H.felinum Helichrysum Helichrysum felinum \N \N \N \N \N 74036 S.armena Sameraria Sameraria armena \N \N \N \N \N 74037 L.juncea Lespedeza Lespedeza juncea \N \N \N \N \N 74038 E.wiegandii Elymus Elymus wiegandii \N \N \N \N \N 74039 R.minutifolia Rosa Rosa minutifolia \N \N \N \N \N 74040 H.venosum Hieracium Hieracium venosum \N \N \N \N \N 74041 T.glomeruliflorum Thesium Thesium glomeruliflorum \N \N \N \N \N 74042 S.rohmooiana Stipa Stipa rohmooiana \N \N \N \N \N 74043 A.capensis Ascolepis Ascolepis capensis \N \N \N \N \N 74044 P.ellipticum Pericalymma Pericalymma ellipticum \N \N \N \N \N 74045 \N genus Cyclanthera \N \N \N \N \N 74046 M.grandidieri Mimosa Mimosa grandidieri \N \N \N \N \N 74047 A.perforata Aspalathus Aspalathus perforata \N \N \N \N \N 74048 H.gracillimum Hedychium Hedychium gracillimum \N \N \N \N \N 74049 H.3639 Habranthus Habranthus sp. Chase 3639 \N \N \N \N \N 74050 A.pungens Arctostaphylos Arctostaphylos pungens \N \N \N \N \N 74051 T.undulatus Tragopogon Tragopogon undulatus \N \N \N \N \N 74052 \N varietas Berchemiella wilsonii var. pubipetiolata \N \N \N \N \N 74053 T.triandra Themeda Themeda triandra kangaroo grass \N \N \N \N 74054 S.'Silk' Sorghum Sorghum sp. 'Silk' \N \N \N \N \N 74055 \N genus Cullenia \N \N \N \N \N 74056 \N subspecies Solanum endopogon subsp. guianensis \N \N \N \N \N 74057 B.japurensis Borismene Borismene japurensis \N \N \N \N \N 74058 \N subspecies Phlox nivalis subsp. texensis \N \N \N \N \N 74059 \N genus Diplopogon \N \N \N \N \N 74060 O.racemosa Oxytropis Oxytropis racemosa \N \N \N \N \N 74061 P.sphaerocephalus Polyachyrus Polyachyrus sphaerocephalus \N \N \N \N \N 74062 O.morisii Ophrys Ophrys morisii \N \N \N \N \N 74063 R.grantii Ruellia Ruellia grantii \N \N \N \N \N 74064 D.bolusiana Disa Disa bolusiana \N \N \N \N \N 74065 T.pulchrum Trichocentrum Trichocentrum pulchrum \N \N \N \N \N 74066 T.granatense Thlaspi Thlaspi granatense \N \N \N \N \N 74067 M.hexandra Mimosa Mimosa hexandra \N \N \N \N \N 74068 O.13096 Oubanguia Oubanguia sp. Breteler 13096 \N \N \N \N \N 74069 D.greveanum Diporidium Diporidium greveanum \N \N \N \N \N 74070 \N genus Mexipedium \N \N \N \N \N 74071 C.rotundifolia Campanula Campanula rotundifolia harebell,meadowbell \N \N \N \N 74072 T.s4797 unclassified Taraxacum Taraxacum (sect. Calanthodia) sp. s4797 \N \N \N \N \N 74073 P.gigantea Pecteilis Pecteilis gigantea \N \N \N \N \N 74074 A.macrantha Aspalathus Aspalathus macrantha \N \N \N \N \N 74075 \N subspecies Chrysanthemum zawadskii subsp. coreanum \N \N \N \N \N 74076 P.fissifolium Pelargonium Pelargonium fissifolium \N \N \N \N \N 74077 L.xalapensis Lobelia Lobelia xalapensis \N \N \N \N \N 74078 F.richardii Fraxinus Fraxinus richardii \N \N \N \N \N 74079 P.glanduliferum Paphiopedilum Paphiopedilum glanduliferum \N \N \N \N \N 74080 S.brachycarpus Suberanthus Suberanthus brachycarpus \N \N \N \N \N 74081 \N no rank South American lineages \N \N \N \N \N 74082 D.amaniensis Dombeya Dombeya amaniensis \N \N \N \N \N 74083 \N genus Euadenia \N \N \N \N \N 74084 F.glauca Festuca Festuca glauca \N \N \N \N \N 74085 R.goodenoughii Rhododendron Rhododendron goodenoughii \N \N \N \N \N 74086 G.molle Geranium Geranium molle dovefoot geranium \N \N \N \N 74087 C.montana Crassula Crassula montana \N \N \N \N \N 74088 R.879 Rhipsalis Rhipsalis sp. Braun 879 \N \N \N \N \N 74089 \N varietas Dolomiaea souliei var. mirabilis \N \N \N \N \N 74090 A.pterocarpa Ateleia Ateleia pterocarpa \N \N \N \N \N 74091 Z.oligophyllum Zingiber Zingiber oligophyllum \N \N \N \N \N 74092 L.1934 Lansium Lansium cf. membranaceum Pannell 1934 \N \N \N \N \N 74093 C.oyamae Caesalpinia Caesalpinia oyamae \N \N \N \N \N 74094 V.heterophylla Vigna Vigna heterophylla \N \N \N \N \N 74095 A.pensylvanicum Acer Acer pensylvanicum Pennsylvania maple,goosefoot,moosewood,snakebark maple,striped maple,whistlewood \N \N \N \N 74096 A.semecarpifolia Alseodaphne Alseodaphne semecarpifolia \N \N \N \N \N 74097 C.BWvE-2009 Croton Croton aff. tenuilobus BWvE-2009 \N \N \N \N \N 74098 \N genus Bufonia \N \N \N \N \N 74099 T.panduratum Trichocentrum Trichocentrum panduratum \N \N \N \N \N 74100 P.P078 Physalis Physalis sp. P078 \N \N \N \N \N 74101 L.hunzikeriana Larnax Larnax hunzikeriana \N \N \N \N \N 74102 C.macrotum Cyrtosperma Cyrtosperma macrotum \N \N \N \N \N 74103 B.montana Brassica Brassica montana \N \N \N \N \N 74104 R.paraensis Rauvolfia Rauvolfia paraensis \N \N \N \N \N 74105 C.trabutianus Convolvulus Convolvulus trabutianus \N \N \N \N \N 74106 P.inbaensis Potamogeton Potamogeton x inbaensis \N \N \N \N \N 74107 M.nuttallii Mimosa Mimosa nuttallii \N \N \N \N \N 74108 C.pumila Castilleja Castilleja pumila \N \N \N \N \N 74109 B.trichosperma Bidens Bidens trichosperma \N \N \N \N \N 74110 L.biplicatum Lepidium Lepidium biplicatum \N \N \N \N \N 74111 T.6328 Tetrastigma Tetrastigma sp. 6328 \N \N \N \N \N 74112 M.plumifera Miconia Miconia plumifera \N \N \N \N \N 74113 S.costaricensis Schwartzia Schwartzia costaricensis \N \N \N \N \N 74114 K.laurina Knema Knema laurina \N \N \N \N \N 74115 E.sojakii Euphorbia Euphorbia sojakii \N \N \N \N \N 74116 A.poarchon Abolboda Abolboda poarchon \N \N \N \N \N 74117 \N genus Pyrostegia \N \N \N \N \N 74118 \N varietas Trikeraia hookeri var. hookeri \N \N \N \N \N 74119 C.myxa Cordia Cordia myxa Assyrian plum,Assyrian-plum,Sudan teak,sapistan \N \N \N \N 74120 S.flexicaulis Strobilanthes Strobilanthes flexicaulis \N \N \N \N \N 74121 L.pumilum Lycium Lycium pumilum \N \N \N \N \N 74122 \N genus Dugandiodendron \N \N \N \N \N 74123 M.decumbens Myosotis Myosotis decumbens \N \N \N \N \N 74124 P.lanceolata Phyla Phyla lanceolata \N \N \N \N \N 74125 S.nishiokae Saussurea Saussurea nishiokae \N \N \N \N \N 74126 V.heilbornii Vasconcellea Vasconcellea x heilbornii babaco \N \N \N \N 74127 H.cyanescens Haniffia Haniffia cyanescens \N \N \N \N \N 74128 \N varietas Gouinia latifolia var. latifolia \N \N \N \N \N 74129 G.punctata Gentiana Gentiana punctata \N \N \N \N \N 74130 \N varietas Primula kisoana var. shikokiana \N \N \N \N \N 74131 V.O-170 Vanilla Vanilla cf. planifolia Chase O-170 \N \N \N \N \N 74132 S.subrosulatus Sinosenecio Sinosenecio subrosulatus \N \N \N \N \N 74133 \N genus Atocion \N \N \N \N \N 74134 A.glabriuscula Atriplex Atriplex glabriuscula \N \N \N \N \N 74135 J.sativa Jaborosa Jaborosa sativa \N \N \N \N \N 74136 \N genus Choritaenia \N \N \N \N \N 74137 \N varietas Ranunculus occidentalis var. hexasepalus \N \N \N \N \N 74138 C.fenerivense Chrysophyllum Chrysophyllum fenerivense \N \N \N \N \N 74139 A.macrosperma Actinidia Actinidia macrosperma \N \N \N \N \N 74140 P.angustifolia Physalis Physalis angustifolia coastal groundcherry \N \N \N \N 74141 C.eckloniana Commelina Commelina eckloniana \N \N \N \N \N 74142 E.salmeoides Erithalis Erithalis salmeoides \N \N \N \N \N 74143 A.wulfenianum Alyssum Alyssum wulfenianum \N \N \N \N \N 74144 R.gracilis Rhinacanthus Rhinacanthus gracilis \N \N \N \N \N 74145 G.camporum Grindelia Grindelia camporum Great Valley gumweed \N \N \N \N 74146 D.erubescens Disa Disa erubescens \N \N \N \N \N 74147 O.xalapensis Oreopanax Oreopanax xalapensis \N \N \N \N \N 74148 H.clarionoides Hypochaeris Hypochaeris clarionoides \N \N \N \N \N 74149 G.dichotomum Gloeospermum Gloeospermum dichotomum \N \N \N \N \N 74150 C.zebrina Calathea Calathea zebrina \N \N \N \N \N 74151 C.nitida Cortaderia Cortaderia nitida \N \N \N \N \N 74152 \N varietas Arabis arenicola var. pubescens \N \N \N \N \N 74153 L.multicaulis Leymus Leymus multicaulis \N \N \N \N \N 74154 R.CA017 Rhipsalis Rhipsalis cf. agudoensis CA017 \N \N \N \N \N 74155 A.ciliata Arenaria Arenaria ciliata \N \N \N \N \N 74156 F.recurva Fritillaria Fritillaria recurva scarlet fritillary \N \N \N \N 74157 C.umbrosa Carex Carex umbrosa \N \N \N \N \N 74158 P.rapensis Plantago Plantago rapensis \N \N \N \N \N 74159 P.brasiliensis Pseudoacanthocereus Pseudoacanthocereus brasiliensis \N \N \N \N \N 74160 C.kitaibeliana Carex Carex kitaibeliana \N \N \N \N \N 74161 \N genus Ouratea \N \N \N \N \N 74162 A.wellsii Arctostaphylos Arctostaphylos wellsii \N \N \N \N \N 74163 D.strictus Dendrocalamus Dendrocalamus strictus Calcutta bamboo,male bamboo \N \N \N \N 74164 O.2630 Oncidium Oncidium sp. Dalstroem 2630 \N \N \N \N \N 74165 C.versicolor Colpodium Colpodium versicolor \N \N \N \N \N 74166 S.goetzei Simirestis Simirestis goetzei \N \N \N \N \N 74167 \N subspecies Erica scoparia subsp. azorica \N \N \N \N \N 74168 M.bakerianum Memecylon Memecylon bakerianum \N \N \N \N \N 74169 U.molundense Uvariodendron Uvariodendron molundense \N \N \N \N \N 74170 S.hispidicalyx Swertia Swertia hispidicalyx \N \N \N \N \N 74171 \N genus Dilomilis \N \N \N \N \N 74172 S.rothmaleri Silene Silene rothmaleri \N \N \N \N \N 74173 T.tinifolia Tetrapterys Tetrapterys tinifolia \N \N \N \N \N 74174 P.colensoi Pseudopanax Pseudopanax colensoi \N \N \N \N \N 74175 \N genus Corethrogyne \N \N \N \N \N 74176 P.jacquemontianum Piper Piper jacquemontianum \N \N \N \N \N 74177 Z.apetala Ziziphus Ziziphus apetala \N \N \N \N \N 74178 J.macrantha Jateorhiza Jateorhiza macrantha \N \N \N \N \N 74179 B.pancheri Balanops Balanops pancheri \N \N \N \N \N 74180 S.ternifolium Sium Sium ternifolium \N \N \N \N \N 74181 E.chiroptera Erica Erica chiroptera \N \N \N \N \N 74182 S.corymbiferus Senecio Senecio corymbiferus \N \N \N \N \N 74183 P.grandiflora Prunella Prunella grandiflora \N \N \N \N \N 74184 \N genus Commidendrum \N \N \N \N \N 74185 P.pariense Pediomelum Pediomelum pariense \N \N \N \N \N 74186 A.stricta Aristida Aristida stricta \N \N \N \N \N 74187 \N subspecies Jacquemontia ovalifolia subsp. sandwicensis \N \N \N \N \N 74188 C.serratifolia Callicoma Callicoma serratifolia \N \N \N \N \N 74189 M.longifolia Mirbelia Mirbelia longifolia \N \N \N \N \N 74190 H.flavescens Haniffia Haniffia flavescens \N \N \N \N \N 74191 M.bracteata Myrcia Myrcia bracteata \N \N \N \N \N 74192 P.cannifolium Philodendron Philodendron cannifolium \N \N \N \N \N 74193 C.disticha Carex Carex disticha \N \N \N \N \N 74194 H.patagonicum Hieracium Hieracium patagonicum \N \N \N \N \N 74195 \N genus Virotia \N \N \N \N \N 74196 A.pavonina Adenanthera Adenanthera pavonina Barbados pride,Circassian bean,Condori wood,bead tree,red sandalwood tree,sandal bead tree \N \N \N \N 74197 M.undulatus Macropanax Macropanax undulatus \N \N \N \N \N 74198 C.pauciflorus Ceanothus Ceanothus pauciflorus \N \N \N \N \N 74199 I.schimperi Indigofera Indigofera schimperi \N \N \N \N \N 74200 \N genus Amphiphyllum \N \N \N \N \N 74201 \N genus Cryptolepis \N \N \N \N \N 74202 P.rivalis Potentilla Potentilla rivalis \N \N \N \N \N 74203 \N subspecies Chrysanthemum zawadskii subsp. naktongense \N \N \N \N \N 74204 H.saponarius Hibiscus Hibiscus saponarius \N \N \N \N \N 74205 E.heterostemon Elizaldia Elizaldia heterostemon \N \N \N \N \N 74206 \N genus Pleurophyllum \N \N \N \N \N 74207 S.zeylanica Shorea Shorea zeylanica \N \N \N \N \N 74208 P.hiemata Poa Poa hiemata \N \N \N \N \N 74209 M.spicata Micranthes Micranthes spicata \N \N \N \N \N 74210 Y.baishanzuensis Yushania Yushania baishanzuensis \N \N \N \N \N 74211 B.marmorii Butia Butia marmorii \N \N \N \N \N 74212 C.guatemalensis Coutaportla Coutaportla guatemalensis \N \N \N \N \N 74213 E.sessilifolia Euphorbia Euphorbia sessilifolia \N \N \N \N \N 74214 F.benguetensis Ficus Ficus benguetensis \N \N \N \N \N 74215 \N varietas Astragalus lentiginosus var. wilsonii \N \N \N \N \N 74216 \N genus Secamonopsis \N \N \N \N \N 74217 A.cylindraceum Arum Arum cylindraceum \N \N \N \N \N 74218 C.pauciflorum Cinnamomum Cinnamomum pauciflorum \N \N \N \N \N 74219 \N tribe Euterpeae \N \N \N \N \N 74220 \N subspecies Lasthenia californica subsp. macrantha \N \N \N \N \N 74221 H.6672 Haumania Haumania sp. Harris 6672 \N \N \N \N \N 74222 P.bracteosa Palisota Palisota bracteosa \N \N \N \N \N 74223 P.xanthopetala Polyalthia Polyalthia xanthopetala \N \N \N \N \N 74224 E.baldwinii Eryngium Eryngium baldwinii \N \N \N \N \N 74225 C.ebracteatum Chondropetalum Chondropetalum ebracteatum \N \N \N \N \N 74226 A.macrocalyx Areca Areca macrocalyx \N \N \N \N \N 74227 N.costaricensis Napeanthus Napeanthus costaricensis \N \N \N \N \N 74228 C.carduiformis Centaurea Centaurea carduiformis \N \N \N \N \N 74229 \N genus Orthoceras \N \N \N \N \N 74230 S.oaxacana Salvia Salvia oaxacana \N \N \N \N \N 74231 A.scabra Austrostipa Austrostipa scabra \N \N \N \N \N 74232 C.lindenii Caladium Caladium lindenii \N \N \N \N \N 74233 P.ornata Placea Placea ornata \N \N \N \N \N 74234 F.cylindrica Fockea Fockea cylindrica \N \N \N \N \N 74235 E.villosa Eriochloa Eriochloa villosa \N \N \N \N \N 74236 D.scopulorum Draba Draba scopulorum \N \N \N \N \N 74237 R.pachypodum Rhododendron Rhododendron pachypodum \N \N \N \N \N 74238 L.fumarioides Leptopyrum Leptopyrum fumarioides \N \N \N \N \N 74239 A.lichtensteiniana Adenogramma Adenogramma lichtensteiniana \N \N \N \N \N 74240 G.scabra Guillonea Guillonea scabra \N \N \N \N \N 74241 \N varietas Bunium bulbocastanum var. peucedanoides \N \N \N \N \N 74242 C.trichospermum Chaetosciadium Chaetosciadium trichospermum \N \N \N \N \N 74243 H.rhytiphylla Hemigraphis Hemigraphis rhytiphylla \N \N \N \N \N 74244 \N varietas Schoenocaulon megarrhizum var. deminutum \N \N \N \N \N 74246 \N subspecies Calystegia sepium subsp. roseata \N \N \N \N \N 74247 P.pedemontana Primula Primula pedemontana \N \N \N \N \N 74248 N.strictum Nanobubon Nanobubon strictum \N \N \N \N \N 74249 \N subspecies Arum rupicola subsp. virescens \N \N \N \N \N 74250 \N forma Rhipsalis teres f. heteroclada \N \N \N \N \N 74251 M.nummularia Myrsine Myrsine nummularia \N \N \N \N \N 74252 C.rauhianum Cynanchum Cynanchum rauhianum \N \N \N \N \N 74253 \N varietas Geranium koreanum var. hirsutum \N \N \N \N \N 74254 R.gymnocarpa Rosa Rosa gymnocarpa dwarf rose,wood rose \N \N \N \N 74255 O.'serinsim' Orchidantha Orchidantha sp. nov. 'serinsim' \N \N \N \N \N 74256 D.yunnanensis Delavaya Delavaya yunnanensis \N \N \N \N \N 74257 S.versicolor Simarouba Simarouba versicolor \N \N \N \N \N 74258 P.longivillosum Piper Piper longivillosum \N \N \N \N \N 74259 S.iridifolium Sisyrinchium Sisyrinchium iridifolium \N \N \N \N \N 74260 S.amabilis Saussurea Saussurea amabilis \N \N \N \N \N 74261 \N genus Grimmeodendron \N \N \N \N \N 74262 A.neurophyllus Astragalus Astragalus neurophyllus \N \N \N \N \N 74263 \N subspecies Cordylanthus tenuis subsp. tenuis \N \N \N \N \N 74264 B.trachycarpa Brachyscome Brachyscome trachycarpa \N \N \N \N \N 74265 A.tillandsioides Aechmea Aechmea tillandsioides \N \N \N \N \N 74266 L.divaricata Leandra Leandra divaricata \N \N \N \N \N 74267 P.augustum Piper Piper augustum \N \N \N \N \N 74268 G.buphthalmoides Grindelia Grindelia buphthalmoides \N \N \N \N \N 74269 A.greggii Amaranthus Amaranthus greggii \N \N \N \N \N 74270 \N subspecies Wahlenbergia pygmaea subsp. pygmaea \N \N \N \N \N 74271 A.lindleyi Aeonium Aeonium lindleyi \N \N \N \N \N 74272 M.aromatica Manglietia Manglietia aromatica \N \N \N \N \N 74273 \N subspecies Gymnocalycium damsii subsp. torulosum \N \N \N \N \N 74274 O.furfuracea Olearia Olearia furfuracea \N \N \N \N \N 74275 O.carpinifolia Ostrya Ostrya carpinifolia European hop-hornbeam \N \N \N \N 74276 I.littoralis Ixora Ixora littoralis \N \N \N \N \N 74277 \N subspecies Heracleum sphondylium subsp. orsinii \N \N \N \N \N 74278 C.jonesii Carex Carex jonesii \N \N \N \N \N 74279 P.silvestris Pseuduvaria Pseuduvaria silvestris \N \N \N \N \N 74280 \N genus Neoblakea \N \N \N \N \N 74281 P.sessilifolius Ptilotus Ptilotus sessilifolius \N \N \N \N \N 74282 L.rattanii Leptosiphon Leptosiphon rattanii \N \N \N \N \N 74283 L.appelianum Lepidium Lepidium appelianum hairy whitetop \N \N \N \N 74284 P.alpina Pilea Pilea alpina \N \N \N \N \N 74285 A.heptaphlebium Acer Acer heptaphlebium \N \N \N \N \N 74286 P.tuberosa Polianthes Polianthes tuberosa \N \N \N \N \N 74287 M.trifoliolata Momordica Momordica trifoliolata \N \N \N \N \N 74288 L.apiculata Luma Luma apiculata \N \N \N \N \N 74289 G.carterae Galium Galium carterae \N \N \N \N \N 74290 \N varietas Calochortus albus var. rubellus \N \N \N \N \N 74291 C.536 Cyrtandra Cyrtandra sp. D 536 \N \N \N \N \N 74292 C.latiuscula Calotis Calotis latiuscula \N \N \N \N \N 74293 F.tomentosa Fraxinus Fraxinus tomentosa \N \N \N \N \N 74294 \N tribe Marrubieae \N \N \N \N \N 74295 S.2676 Scaphyglottis Scaphyglottis sp. DB 2676 \N \N \N \N \N 74296 R.phyllocalyx Raphidiocystis Raphidiocystis phyllocalyx \N \N \N \N \N 74297 M.lichuanensis Machilus Machilus lichuanensis \N \N \N \N \N 74298 O.daucoides Orlaya Orlaya daucoides \N \N \N \N \N 74299 G.deversa Geonoma Geonoma deversa \N \N \N \N \N 74300 T.tenax Toechima Toechima tenax \N \N \N \N \N 74301 B.pseudodichotoma Brachiaria Brachiaria pseudodichotoma \N \N \N \N \N 74302 G.segetum Galeopsis Galeopsis segetum \N \N \N \N \N 74303 E.ebracteolata Euphorbia Euphorbia ebracteolata \N \N \N \N \N 74304 H.neglectus Helianthus Helianthus neglectus \N \N \N \N \N 74305 \N genus Plocoglottis \N \N \N \N \N 74306 V.hartwegii Viburnum Viburnum hartwegii \N \N \N \N \N 74307 \N tribe Cresseae \N \N \N \N \N 74308 P.JN-2011 Peperomia Peperomia aff. ovatopeltata JN-2011 \N \N \N \N \N 74309 E.unicornis Euphorbia Euphorbia unicornis \N \N \N \N \N 74310 R.leptocladus Rigiopappus Rigiopappus leptocladus \N \N \N \N \N 74311 C.lamontii Castanopsis Castanopsis lamontii \N \N \N \N \N 74312 G.oxycarpa Geonoma Geonoma oxycarpa \N \N \N \N \N 74313 A.omeiensis Actinodaphne Actinodaphne omeiensis \N \N \N \N \N 74314 C.amethystoglossa Cattleya Cattleya amethystoglossa \N \N \N \N \N 74315 D.noyesiae Disterigma Disterigma noyesiae \N \N \N \N \N 74316 S.levantina Serapias Serapias levantina \N \N \N \N \N 74317 A.erecta Achimenes Achimenes erecta \N \N \N \N \N 74318 \N subspecies Genista florida subsp. polygaliphylla \N \N \N \N \N 74319 \N subspecies Crepis occidentalis subsp. conjuncta \N \N \N \N \N 74320 A.pinardii Alkanna Alkanna pinardii \N \N \N \N \N 74321 A.subcapitatum Amomum Amomum subcapitatum \N \N \N \N \N 74322 \N varietas Melastoma candidum var. alessandrense \N \N \N \N \N 74323 V.bloodworthiana Vitis Vitis bloodworthiana \N \N \N \N \N 74324 A.pauciflorum Acer Acer pauciflorum \N \N \N \N \N 74325 \N genus Nastanthus \N \N \N \N \N 74326 \N family Drosophyllaceae \N \N \N \N \N 74327 B.sphaerantha Breonia Breonia sphaerantha \N \N \N \N \N 74328 P.leroyi Psilanthus Psilanthus leroyi \N \N \N \N \N 74329 C.formicifera Chiloglottis Chiloglottis aff. formicifera \N \N \N \N \N 74330 B.26 Begonia Begonia sp. Forrest 26 \N \N \N \N \N 74331 P.moniliformis Piptadenia Piptadenia moniliformis \N \N \N \N \N 74332 L.quangensis Leiothylax Leiothylax quangensis \N \N \N \N \N 74333 \N genus Athysanus \N \N \N \N \N 74334 \N varietas Reinhardtia gracilis var. rostrata \N \N \N \N \N 74335 T.jonesianum Trichocentrum Trichocentrum jonesianum \N \N \N \N \N 74336 E.fischeriana Euphorbia Euphorbia fischeriana \N \N \N \N \N 74337 P.darvazica Parrya Parrya darvazica \N \N \N \N \N 74338 C.kirghisorum Caragana Caragana kirghisorum \N \N \N \N \N 74339 \N genus Anthorrhiza \N \N \N \N \N 74340 \N genus Spirobassia \N \N \N \N \N 74341 S.mauritiiformis Sabal Sabal mauritiiformis \N \N \N \N \N 74342 S.bojeriana Savia Savia bojeriana \N \N \N \N \N 74343 M.tschudyoides Miconia Miconia tschudyoides \N \N \N \N \N 74344 P.alpina Poa Poa alpina \N \N \N \N \N 74345 K.centranthoides Kadua Kadua centranthoides \N \N \N \N \N 74346 A.fasciculatum Adenostoma Adenostoma fasciculatum chamise \N \N \N \N 74347 O.fendleri Oxypolis Oxypolis fendleri \N \N \N \N \N 74348 M.punctata Morella Morella punctata \N \N \N \N \N 74349 V.picta Verticordia Verticordia picta \N \N \N \N \N 74350 M.2027 Milla Milla sp. 2027 \N \N \N \N \N 74351 \N varietas Galium ambiguum var. siskiyouense \N \N \N \N \N 74352 \N subspecies Lachnagrostis littoralis subsp. salaria \N \N \N \N \N 74353 H.glomeratum Helichrysum Helichrysum glomeratum \N \N \N \N \N 74354 D.macrostachyum Delphinium Delphinium macrostachyum \N \N \N \N \N 74355 E.SH-2010 Eurya Eurya sp. SH-2010 \N \N \N \N \N 74356 T.albopurpureum Trifolium Trifolium albopurpureum \N \N \N \N \N 74357 V.corymbiflorum Viburnum Viburnum corymbiflorum \N \N \N \N \N 74358 C.orthacantha Cousinia Cousinia orthacantha \N \N \N \N \N 74359 S.macrophylla Synima Synima macrophylla \N \N \N \N \N 74360 R.anaticollis Ruellia Ruellia anaticollis \N \N \N \N \N 74361 P.eriocalyx Philenoptera Philenoptera eriocalyx \N \N \N \N \N 74362 \N genus Tuctoria \N \N \N \N \N 74363 C.alepideae Cousinia Cousinia alepideae \N \N \N \N \N 74364 \N genus Thiloa \N \N \N \N \N 74365 P.cernua Primula Primula cernua \N \N \N \N \N 74366 C.reduncus Cyperus Cyperus reduncus \N \N \N \N \N 74367 O.somalense Ormocarpum Ormocarpum somalense \N \N \N \N \N 74368 E.insignis Euphrasia Euphrasia insignis \N \N \N \N \N 74369 A.palustris Aristida Aristida palustris \N \N \N \N \N 74370 G.congestum Gastrolobium Gastrolobium congestum \N \N \N \N \N 74371 \N genus Calystegia \N \N \N \N \N 74372 K.hildebrandtii Kniphofia Kniphofia hildebrandtii \N \N \N \N \N 74373 P.palustris Persea Persea palustris swamp bay \N \N \N \N 74374 V.humerata Vittadinia Vittadinia humerata \N \N \N \N \N 74375 \N genus Eleutherococcus \N \N \N \N \N 74376 \N genus Myonima \N \N \N \N \N 74377 T.lemmoniae Triteleia Triteleia lemmoniae \N \N \N \N \N 74378 \N subspecies Hieracium umbellatum subsp. umbellatum \N \N \N \N \N 74379 G.elegans Gagea Gagea elegans \N \N \N \N \N 74380 R.coreanum Rheum Rheum coreanum \N \N \N \N \N 74381 P.albovillosum Paspalidium Paspalidium albovillosum \N \N \N \N \N 74382 G.colensoi Gaultheria Gaultheria colensoi \N \N \N \N \N 74383 P.plataniflora Pilea Pilea plataniflora \N \N \N \N \N 74384 C.trachycarpa Cleome Cleome trachycarpa \N \N \N \N \N 74385 O.auriculatoides Oncidium Oncidium auriculatoides \N \N \N \N \N 74386 M.cookei Meconopsis Meconopsis x cookei \N \N \N \N \N 74387 P.andalangiensis Phyllanthus Phyllanthus andalangiensis \N \N \N \N \N 74388 H.LR-2011b Hedychium Hedychium sp. LR-2011b \N \N \N \N \N 74389 I.gordonii Ivesia Ivesia gordonii \N \N \N \N \N 74390 L.stenocephala Ligularia Ligularia stenocephala \N \N \N \N \N 74391 \N varietas Myrceugenia pilotantha var. pilotantha \N \N \N \N \N 74392 \N genus Alexgeorgea \N \N \N \N \N 74393 N.palmeri Nicotiana Nicotiana palmeri \N \N \N \N \N 74394 P.P098 Physalis Physalis sp. P098 \N \N \N \N \N 74395 \N genus Allocasuarina \N \N \N \N \N 74396 \N genus Tripterococcus \N \N \N \N \N 74397 O.verbesinoides Oyedaea Oyedaea verbesinoides \N \N \N \N \N 74398 T.luzonense Tripterospermum Tripterospermum luzonense \N \N \N \N \N 74399 F.CEH-2010 Fuirena Fuirena sp. CEH-2010 \N \N \N \N \N 74400 A.morroensis Arctostaphylos Arctostaphylos morroensis \N \N \N \N \N 74401 \N subspecies Pimelea microcephala subsp. microcephala \N \N \N \N \N 74402 D.lutea Draba Draba lutea \N \N \N \N \N 74403 \N genus Austrochloris \N \N \N \N \N 74404 S.europaea Sanicula Sanicula europaea \N \N \N \N \N 74405 R.oleracea Roystonea Roystonea oleracea \N \N \N \N \N 74406 E.boophthona Euphorbia Euphorbia boophthona \N \N \N \N \N 74407 C.succirubrum Ceratopetalum Ceratopetalum succirubrum \N \N \N \N \N 74408 A.loroloba Acacia Acacia loroloba \N \N \N \N \N 74409 N.lophostachya Neobouteloua Neobouteloua lophostachya \N \N \N \N \N 74410 \N genus Loxostylis \N \N \N \N \N 74411 B.stokoei Brunia Brunia stokoei \N \N \N \N \N 74412 T.248 Telipogon Telipogon sp. Maduro 248 \N \N \N \N \N 74413 \N genus Teuscheria \N \N \N \N \N 74414 C.diospolitana Centaurea Centaurea diospolitana \N \N \N \N \N 74415 P.deyeuxioides Peyritschia Peyritschia deyeuxioides \N \N \N \N \N 74416 C.potierae Costus Costus potierae \N \N \N \N \N 74417 D.marginata Dracaena Dracaena marginata \N \N \N \N \N 74418 S.SP016 Sisyrinchium Sisyrinchium cf. nervosum SP016 \N \N \N \N \N 74419 A.plicata Arachnorchis Arachnorchis plicata \N \N \N \N \N 74420 P.glabrata Pera Pera glabrata \N \N \N \N \N 74421 S.lobata Sophronitis Sophronitis lobata \N \N \N \N \N 74422 \N varietas Senna hirsuta var. hirta \N \N \N \N \N 74423 \N subspecies Codonopsis javanica subsp. japonica \N \N \N \N \N 74424 \N subspecies Eriosyce odieri subsp. odieri \N \N \N \N \N 74425 H.crooksii Haplophyton Haplophyton crooksii \N \N \N \N \N 74426 S.2673) Swartzia Swartzia sp. F (Jardim 2673) \N \N \N \N \N 74427 G.aurea Genlisea Genlisea aurea \N \N \N \N \N 74428 A.repoeense Amomum Amomum repoeense \N \N \N \N \N 74429 M.longiflora Mandevilla Mandevilla longiflora \N \N \N \N \N 74430 C.laterifolium Cirsium Cirsium laterifolium \N \N \N \N \N 74431 E.pusilla Ehrharta Ehrharta pusilla \N \N \N \N \N 74432 A.hakeifolia Alyogyne Alyogyne hakeifolia \N \N \N \N \N 74433 M.umbellata Montiopsis Montiopsis umbellata \N \N \N \N \N 74434 S.hullettii Schefflera Schefflera hullettii \N \N \N \N \N 74435 C.mucronata Chamaecrista Chamaecrista mucronata \N \N \N \N \N 74436 S.fernandezii Silene Silene fernandezii \N \N \N \N \N 74437 C.viscosa Craspedia Craspedia viscosa \N \N \N \N \N 74438 \N genus Poitea \N \N \N \N \N 74439 O.nowackiana Orobanche Orobanche nowackiana \N \N \N \N \N 74440 C.10CB01 Carpinus Carpinus sp. 10CB01 \N \N \N \N \N 74441 A.magnificus Aeschynanthus Aeschynanthus magnificus \N \N \N \N \N 74442 C.woodii Ceropegia Ceropegia woodii chain of hearts,hearts entangled,hearts on a string,rosary vine,sweetheart vine \N \N \N \N 74443 M.tuberifera Matsumurella Matsumurella tuberifera \N \N \N \N \N 74444 \N subspecies Lamium galeobdolon subsp. argentatum \N \N \N \N \N 74445 R.temenium Rhododendron Rhododendron temenium \N \N \N \N \N 74446 V.angustifolia Virectaria Virectaria angustifolia \N \N \N \N \N 74447 C.monospermum Calyptridium Calyptridium monospermum \N \N \N \N \N 74448 M.chathamicus Melicytus Melicytus chathamicus \N \N \N \N \N 74449 D.W36 Diospyros Diospyros sp. W36 \N \N \N \N \N 74450 L.amplexicaulis Leandra Leandra amplexicaulis \N \N \N \N \N 74451 \N genus Sclerophylax \N \N \N \N \N 74452 B.ermanii Betula Betula ermanii Russian rock birch,dake-kamba,yue hua \N \N \N \N 74453 A.arcadiensis Asperula Asperula arcadiensis \N \N \N \N \N 74454 J.connatibracteata Junellia Junellia connatibracteata \N \N \N \N \N 74455 \N genus Sternbergia autumn daffodil \N \N \N \N 74456 H.SH-2010 Hypobathrum Hypobathrum sp. SH-2010 \N \N \N \N \N 74457 \N genus Blepharocalyx \N \N \N \N \N 74458 D.pardina Diuris Diuris pardina \N \N \N \N \N 74459 \N forma Phyllostachys aureosulcata f. pekinensis \N \N \N \N \N 74460 G.hansemannii Gardenia Gardenia hansemannii \N \N \N \N \N 74461 A.likiangensis Angelica Angelica likiangensis \N \N \N \N \N 74462 C.corniculata Cayratia Cayratia corniculata \N \N \N \N \N 74463 F.heteromeka Ficus Ficus heteromeka \N \N \N \N \N 74464 D.maingayi Diospyros Diospyros maingayi \N \N \N \N \N 74465 F.pratensis Festuca Festuca pratensis meadow ryegrass \N \N \N \N 74466 G.teretifolius Gladiolus Gladiolus teretifolius \N \N \N \N \N 74467 D.ovata Donnellsmithia Donnellsmithia ovata \N \N \N \N \N 74468 H.laeviusculum Haplophyllum Haplophyllum laeviusculum \N \N \N \N \N 74469 A.lonchocarpus Astragalus Astragalus lonchocarpus \N \N \N \N \N 74470 L.sinense Ligustrum Ligustrum sinense \N \N \N \N \N 74471 C.decumbens Chamaele Chamaele decumbens \N \N \N \N \N 74472 C.delphiniifolia Coreopsis Coreopsis delphiniifolia \N \N \N \N \N 74473 R.hypoglossum Ruscus Ruscus hypoglossum spineless butcher's-broom \N \N \N \N 74474 F.burnatii Festuca Festuca burnatii \N \N \N \N \N 74475 P.ornata Phanera Phanera ornata \N \N \N \N \N 74476 C.childii Collinsia Collinsia childii \N \N \N \N \N 74477 R.caucasicum Rhododendron Rhododendron caucasicum \N \N \N \N \N 74478 L.maroccana Lavandula Lavandula maroccana \N \N \N \N \N 74479 S.chilliasense Solanum Solanum chilliasense \N \N \N \N \N 74480 A.strobiliformis Alpinia Alpinia strobiliformis \N \N \N \N \N 74481 \N genus Polypogon \N \N \N \N \N 74482 C.2199 Corbassona Corbassona sp. Munzinger et al. 2199 \N \N \N \N \N 74483 L.2685 Leptonychia Leptonychia sp. Church et al. 2685 \N \N \N \N \N 74484 \N varietas Salix caprea var. caprea \N \N \N \N \N 74485 \N genus Kuhlmanniodendron \N \N \N \N \N 74486 O.acanthium Onopordum Onopordum acanthium \N \N \N \N \N 74487 I.scandens Ichthyothere Ichthyothere scandens \N \N \N \N \N 74488 P.cistoides Piriqueta Piriqueta cistoides \N \N \N \N \N 74489 V.tenuicornis Viola Viola tenuicornis \N \N \N \N \N 74490 P.biflora Passiflora Passiflora biflora \N \N \N \N \N 74491 C.kotschyana Centaurea Centaurea kotschyana \N \N \N \N \N 74492 P.millefolia Packera Packera millefolia \N \N \N \N \N 74493 G.pumila Gaultheria Gaultheria pumila \N \N \N \N \N 74494 \N subspecies Sisyrinchium bromelioides subsp. bromelioides \N \N \N \N \N 74495 B.hippocastanum Billia Billia hippocastanum \N \N \N \N \N 74496 A.chrysotrichum Aconitum Aconitum chrysotrichum \N \N \N \N \N 74497 C.cinnamomea Conostegia Conostegia cinnamomea \N \N \N \N \N 74498 L.pyrenaica Libanotis Libanotis pyrenaica \N \N \N \N \N 74499 S.densiflora Sclerolaena Sclerolaena densiflora \N \N \N \N \N 74500 C.menziesii Cyrtandra Cyrtandra menziesii ha'i wale \N \N \N \N 74501 A.connatus Alectryon Alectryon connatus \N \N \N \N \N 74502 \N varietas Lewisia columbiana var. wallowensis \N \N \N \N \N 74503 C.argentea Celosia Celosia argentea red-spinach,silver cockscomb \N \N \N \N 74504 B.adiamantinum Bulbophyllum Bulbophyllum adiamantinum \N \N \N \N \N 74505 G.anomalum Gossypium Gossypium anomalum \N \N \N \N \N 74506 R.grandis Rudolfiella Rudolfiella grandis \N \N \N \N \N 74507 S.grandigemma Schefflera Schefflera grandigemma \N \N \N \N \N 74508 O.heldreichii Ophrys Ophrys heldreichii \N \N \N \N \N 74509 P.fuscomaculata Physalis Physalis fuscomaculata \N \N \N \N \N 74510 O.scheeri Opuntia Opuntia scheeri \N \N \N \N \N 74511 P.mollis Prestonia Prestonia mollis \N \N \N \N \N 74512 D.litoralis Dendroseris Dendroseris litoralis \N \N \N \N \N 74513 A.kotschyana Aerangis Aerangis kotschyana \N \N \N \N \N 74514 C.NAB-2007 Citrus Citrus sp. NAB-2007 \N \N \N \N \N 74515 P.flaviflora Pachira Pachira flaviflora \N \N \N \N \N 74516 \N varietas Monotropastrum humile var. glaberrimum \N \N \N \N \N 74517 \N genus Lisaea \N \N \N \N \N 74518 \N genus Porpax \N \N \N \N \N 74519 \N genus Ottoschulzia \N \N \N \N \N 74520 A.dockrillii Arthrochilus Arthrochilus dockrillii \N \N \N \N \N 74521 P.petiolaris Pultenaea Pultenaea petiolaris \N \N \N \N \N 74522 B.jolonensis Brodiaea Brodiaea jolonensis \N \N \N \N \N 74523 V.rubra Veronica Veronica rubra \N \N \N \N \N 74524 I.dipyrena Ilex Ilex dipyrena Himalayan holly \N \N \N \N 74525 \N genus Lembotropis \N \N \N \N \N 74526 M.speciosa Maxillaria Maxillaria speciosa \N \N \N \N \N 74527 G.glomerata Gaultheria Gaultheria glomerata \N \N \N \N \N 74528 K.ericifolia Kunzea Kunzea ericifolia \N \N \N \N \N 74529 \N genus Scabiosa \N \N \N \N \N 74530 H.persicum Haloxylon Haloxylon persicum \N \N \N \N \N 74531 R.nudicaulis Rugelia Rugelia nudicaulis \N \N \N \N \N 74532 M.boliviana Mimosa Mimosa boliviana \N \N \N \N \N 74533 \N varietas Senecio lautus var. lautus \N \N \N \N \N 74534 S.sexangulare Sedum Sedum sexangulare \N \N \N \N \N 74535 R.neomexicana Rafinesquia Rafinesquia neomexicana desert chicory \N \N \N \N 74536 \N genus Manfreda \N \N \N \N \N 74537 \N varietas Urceodiscus belensis var. laxa \N \N \N \N \N 74538 S.acuminata Stylosanthes Stylosanthes acuminata \N \N \N \N \N 74539 G.brycei Geranium Geranium brycei \N \N \N \N \N 74540 C.tomentella Centaurea Centaurea tomentella \N \N \N \N \N 74541 \N varietas Mimosa antioquensis var. isthmensis \N \N \N \N \N 74542 T.floribunda Triphysaria Triphysaria floribunda \N \N \N \N \N 74543 C.491 Callitriche Callitriche sp. Albach 491 \N \N \N \N \N 74544 S.roxburghii Shorea Shorea roxburghii \N \N \N \N \N 74545 A.araxina Artemisia Artemisia araxina \N \N \N \N \N 74546 C.multiglandulosa Christianella Christianella multiglandulosa \N \N \N \N \N 74547 B.fagaroides Bursera Bursera fagaroides \N \N \N \N \N 74548 \N genus Wisteria \N \N \N \N \N 74549 V.poskeana Vernonia Vernonia poskeana \N \N \N \N \N 74550 M.comosum Muscari Muscari comosum \N \N \N \N \N 74551 H.parvifolia Heliopsis Heliopsis parvifolia \N \N \N \N \N 74552 A.pseudosieboldianum Acer Acer pseudosieboldianum \N \N \N \N \N 74553 G.globigera Gaertnera Gaertnera globigera \N \N \N \N \N 74554 M.violascens Musa Musa violascens \N \N \N \N \N 74555 B.saccharoides Bothriochloa Bothriochloa saccharoides \N \N \N \N \N 74556 S.rufobrunnea Stelis Stelis rufobrunnea \N \N \N \N \N 74557 P.ampijoroense Pseudopeponidium Pseudopeponidium ampijoroense \N \N \N \N \N 74558 C.transvaalensis Chorisochora Chorisochora transvaalensis \N \N \N \N \N 74559 I.cuneifolia Indigofera Indigofera cuneifolia \N \N \N \N \N 74560 M.334 Mussaenda Mussaenda sp. Razafimandimbison 334 \N \N \N \N \N 74561 V.diffusa Valiha Valiha diffusa \N \N \N \N \N 74562 C.heptadactylis Cucumis Cucumis heptadactylis \N \N \N \N \N 74563 \N tribe Paniceae \N \N \N \N \N 74564 P.zeylanicus Paracroton Paracroton zeylanicus \N \N \N \N \N 74565 T.roylei Trachydium Trachydium roylei \N \N \N \N \N 74566 P.dentatum Prionanthium Prionanthium dentatum \N \N \N \N \N 74567 E.mexicana Eragrostis Eragrostis mexicana \N \N \N \N \N 74568 R.acaulis Rubus Rubus acaulis \N \N \N \N \N 74569 D.albus Dictamnus Dictamnus albus \N \N \N \N \N 74570 E.oerstediana Eugenia Eugenia oerstediana \N \N \N \N \N 74571 P.947 Pyrostria Pyrostria sp. 3 Eriksson et al. 947 \N \N \N \N \N 74572 L.SMsn3 unclassified Lauraceae Lauraceae sp. 2 SMsn3 \N \N \N \N \N 74573 S.caulescens Sophronitis Sophronitis caulescens \N \N \N \N \N 74574 M.scabra Mentzelia Mentzelia scabra \N \N \N \N \N 74575 E.regelii Euphrasia Euphrasia regelii \N \N \N \N \N 74576 \N genus Podophyllum \N \N \N \N \N 74577 C.pinifolia Calceolaria Calceolaria pinifolia \N \N \N \N \N 74578 B.versicolor Brugmansia Brugmansia versicolor campana,peach angel's-trumpet \N \N \N \N 74579 P.5822 Polyscias Polyscias sp. 5822 \N \N \N \N \N 74580 N.arctica Noccaea Noccaea arctica \N \N \N \N \N 74581 A.gypsaceum Allium Allium gypsaceum \N \N \N \N \N 74582 S.kirilowiana Salix Salix kirilowiana \N \N \N \N \N 74583 C.daphnoides Cinnamomum Cinnamomum daphnoides \N \N \N \N \N 74584 S.subcapitata Scaevola Scaevola subcapitata \N \N \N \N \N 74585 S.powellii Sobralia Sobralia powellii \N \N \N \N \N 74586 B.calotheca Briza Briza calotheca \N \N \N \N \N 74587 C.weberbaueri Cedrela Cedrela weberbaueri \N \N \N \N \N 74588 J.consanguinea Jurinea Jurinea consanguinea \N \N \N \N \N 74589 K.reflexiflora Kosteletzkya Kosteletzkya reflexiflora \N \N \N \N \N 74590 \N genus Rumfordia \N \N \N \N \N 74591 B.spectabilis Bonamia Bonamia spectabilis \N \N \N \N \N 74592 G.gracile Geranium Geranium gracile \N \N \N \N \N 74593 E.capitata Echinaria Echinaria capitata \N \N \N \N \N 74594 C.subumbellata Cranichis Cranichis subumbellata \N \N \N \N \N 74595 P.latituba Pedicularis Pedicularis latituba \N \N \N \N \N 74596 P.niveum Phagnalon Phagnalon niveum \N \N \N \N \N 74597 G.DB1740 Gundelia Gundelia sp. DB1740 \N \N \N \N \N 74598 A.stanfordiana Arctostaphylos Arctostaphylos manzanita x Arctostaphylos stanfordiana \N \N \N \N \N 74599 B.aurantiaca Boesenbergia Boesenbergia aurantiaca \N \N \N \N \N 74600 I.keniaensis Isolepis Isolepis keniaensis \N \N \N \N \N 74601 S.confertiflora Sarcococca Sarcococca confertiflora \N \N \N \N \N 74602 M.warscewiczii Miltoniopsis Miltoniopsis warscewiczii \N \N \N \N \N 74603 B.hatacoa Begonia Begonia hatacoa \N \N \N \N \N 74604 R.coniferum Rhaponticum Rhaponticum coniferum \N \N \N \N \N 74605 L.leptospermoides Leucopogon Leucopogon leptospermoides \N \N \N \N \N 74606 C.manaia Crassula Crassula manaia \N \N \N \N \N 74607 D.popayanense Dasyphyllum Dasyphyllum popayanense \N \N \N \N \N 74608 \N varietas Juglans mandshurica var. sachalinensis \N \N \N \N \N 74609 A.tomentosa Amphithalea Amphithalea tomentosa \N \N \N \N \N 74610 S.adrianae Salpistele Salpistele adrianae \N \N \N \N \N 74611 \N genus Brongniartikentia \N \N \N \N \N 74612 \N genus Marojejya \N \N \N \N \N 74613 M.uniflora Muhlenbergia Muhlenbergia uniflora \N \N \N \N \N 74614 \N genus Peltoboykinia \N \N \N \N \N 74615 H.forbesii Hansenia Hansenia forbesii \N \N \N \N \N 74616 C.angustifolia Clematis Clematis angustifolia \N \N \N \N \N 74617 C.concolor Calochortus Calochortus concolor \N \N \N \N \N 74618 H.humile Heracleum Heracleum humile \N \N \N \N \N 74619 D.cumminsii Dioscoreophyllum Dioscoreophyllum cumminsii serendipity berry \N \N \N \N 74620 L.hawkesii Larnax Larnax hawkesii \N \N \N \N \N 74621 S.kamerunensis Schizoboea Schizoboea kamerunensis \N \N \N \N \N 74622 I.demissa Indigofera Indigofera demissa \N \N \N \N \N 74623 A.hygrophila Abildgaardia Abildgaardia hygrophila \N \N \N \N \N 74624 E.flagelliforme Eriospermum Eriospermum flagelliforme \N \N \N \N \N 74625 M.longifolia Microcorys Microcorys longifolia \N \N \N \N \N 74626 C.aciculare Chorizema Chorizema aciculare \N \N \N \N \N 74627 C.flexuosa Cynophalla Cynophalla flexuosa bottle codroot \N \N \N \N 74628 \N tribe Thlaspideae \N \N \N \N \N 74629 R.himantodes Rhododendron Rhododendron himantodes \N \N \N \N \N 74630 S.morganianum Sedum Sedum morganianum \N \N \N \N \N 74631 P.sample environmental samples Taxonomy:493874 Poaceae environmental sample \N \N \N \N \N 74632 S.angolensis Sphaeranthus Sphaeranthus angolensis \N \N \N \N \N 74633 S.urens Sida Sida urens \N \N \N \N \N 74634 \N varietas Gentiana triflora var. japonica \N \N \N \N \N 74635 A.tapete Androsace Androsace tapete \N \N \N \N \N 74636 \N genus Homalium \N \N \N \N \N 74637 D.davilae Davilanthus Davilanthus davilae \N \N \N \N \N 74638 S.longiflorus Senecio Senecio longiflorus \N \N \N \N \N 74639 \N varietas Aristida purpurea var. curvifolia \N \N \N \N \N 74640 G.decoratus Gladiolus Gladiolus decoratus \N \N \N \N \N 74641 S.revoluta Scyphochlamys Scyphochlamys revoluta \N \N \N \N \N 74642 \N subspecies Pultenaea calycina subsp. calycina \N \N \N \N \N 74643 L.mandoniana Lachemilla Lachemilla mandoniana \N \N \N \N \N 74644 \N genus Lawrencella \N \N \N \N \N 74645 P.grandiceps Protea Protea grandiceps \N \N \N \N \N 74646 C.ladanifer Cistus Cistus ladanifer \N \N \N \N \N 74647 A.kokutensis Arundinella Arundinella kokutensis \N \N \N \N \N 74648 A.darumbium Astragalus Astragalus darumbium \N \N \N \N \N 74649 C.occidentalis Carex Carex occidentalis \N \N \N \N \N 74650 P.s.n. Primula Primula sp. Kharkevich & Buch s.n. \N \N \N \N \N 74651 P.bicolor Phagnalon Phagnalon bicolor \N \N \N \N \N 74652 \N varietas Solanum citrullifolium var. knoblichii \N \N \N \N \N 74653 \N genus Cleisocentron \N \N \N \N \N 74654 \N varietas Cliffortia polygonifolia var. trifoliata \N \N \N \N \N 74655 R.viridis Ranunculus Ranunculus viridis \N \N \N \N \N 74656 C.valida Chorizanthe Chorizanthe valida \N \N \N \N \N 74657 A.cachemirica Aralia Aralia cachemirica \N \N \N \N \N 74658 M.ingens Musa Musa ingens \N \N \N \N \N 74659 L.karasmontana Lithops Lithops karasmontana \N \N \N \N \N 74660 M.pachystyla Macrocarpaea Macrocarpaea pachystyla \N \N \N \N \N 74661 S.calabrica Saponaria Saponaria calabrica \N \N \N \N \N 74662 L.moschatum Lamium Lamium moschatum \N \N \N \N \N 74663 A.lebeckioides Aspalathus Aspalathus lebeckioides \N \N \N \N \N 74664 I.potaninii Incarvillea Incarvillea potaninii \N \N \N \N \N 74665 A.obtusifolia Acacia Acacia obtusifolia \N \N \N \N \N 74666 B.rubioides Bauera Bauera rubioides \N \N \N \N \N 74667 H.argutum Hieracium Hieracium argutum \N \N \N \N \N 74668 C.mollissima Castanea Castanea dentata x Castanea mollissima \N \N \N \N \N 74669 W.cordata Warszewiczia Warszewiczia cordata \N \N \N \N \N 74670 B.ashbyi Banksia Banksia ashbyi \N \N \N \N \N 74671 B.pictus Bromus Bromus pictus \N \N \N \N \N 74672 A.prostrata Atriplex Atriplex prostrata halberd-leaf orache,hastate saltplant,spearscale,triangle orache \N \N \N \N 74673 S.sparteum Schoenoxiphium Schoenoxiphium sparteum \N \N \N \N \N 74674 C.australe Claoxylon Claoxylon australe \N \N \N \N \N 74675 \N genus Lachnocaulon bogbuttons,hatpins \N \N \N \N 74676 P.elatior Potentilla Potentilla elatior \N \N \N \N \N 74677 C.Rh-74 Ceriops Ceriops sp. KDAIS Rh-74 \N \N \N \N \N 74678 \N genus Trochiscanthes \N \N \N \N \N 74679 C.oklahomensis Carex Carex oklahomensis \N \N \N \N \N 74680 \N genus Mila \N \N \N \N \N 74681 H.integrifolia Hydrangea Hydrangea integrifolia \N \N \N \N \N 74682 F.pierotii Fimbristylis Fimbristylis pierotii \N \N \N \N \N 74683 H.662 Halocnemum Halocnemum sp. 2004-116-chen 662 \N \N \N \N \N 74684 \N subspecies Oxalis lucumayensis subsp. subiens \N \N \N \N \N 74685 C.ellipticum Camptosema Camptosema ellipticum \N \N \N \N \N 74686 D.pubescens Discaria Discaria pubescens \N \N \N \N \N 74687 C.uliginosum Centaurium Centaurium uliginosum \N \N \N \N \N 74688 T.oliganthum Trifolium Trifolium oliganthum \N \N \N \N \N 74689 G.hilendiae Galium Galium hilendiae \N \N \N \N \N 74690 F.chimborazensis Festuca Festuca chimborazensis \N \N \N \N \N 74691 T.kashmirianus Tragopogon Tragopogon kashmirianus \N \N \N \N \N 74692 M.adenocarpa Mimosa Mimosa adenocarpa \N \N \N \N \N 74693 I.incomtula Isolepis Isolepis incomtula \N \N \N \N \N 74694 \N subspecies Cyanotis repens subsp. robusta \N \N \N \N \N 74695 M.torrei Monadenium Monadenium torrei \N \N \N \N \N 74696 L.hidalgensis Lonchocarpus Lonchocarpus hidalgensis \N \N \N \N \N 74697 \N genus Piriadacus \N \N \N \N \N 74698 B.crassifolia Baeckea Baeckea crassifolia \N \N \N \N \N 74699 C.acidicola Carex Carex acidicola \N \N \N \N \N 74700 A.arifolium Asarum Asarum arifolium \N \N \N \N \N 74701 R.spiciferum Rhododendron Rhododendron spiciferum \N \N \N \N \N 74702 C.castaneus Calamus Calamus castaneus \N \N \N \N \N 74703 \N subspecies Quercus ithaburensis subsp. ithaburensis \N \N \N \N \N 74704 F.corallina Fridericia Fridericia corallina \N \N \N \N \N 74705 \N genus Dasiphora \N \N \N \N \N 74706 C.denticulata Cuscuta Cuscuta denticulata \N \N \N \N \N 74707 \N family Tofieldiaceae \N \N \N \N \N 74708 P.caledonicum Pelargonium Pelargonium caledonicum \N \N \N \N \N 74709 T.transcaucasicum Tripleurospermum Tripleurospermum transcaucasicum \N \N \N \N \N 74710 S.grisebachii Setaria Setaria grisebachii Grisebach's bristle grass \N \N \N \N 74711 \N genus Chlorochorion \N \N \N \N \N 74712 A.glochideus Astragalus Astragalus glochideus \N \N \N \N \N 74713 N.malaccensis Norrisia Norrisia malaccensis \N \N \N \N \N 74714 N.lanata Neuontobotrys Neuontobotrys lanata \N \N \N \N \N 74715 C.trifurcatum Cyrtochilum Cyrtochilum trifurcatum \N \N \N \N \N 74716 C.hearstiorum Ceanothus Ceanothus hearstiorum \N \N \N \N \N 74717 R.chilanshanense Rhododendron Rhododendron chilanshanense \N \N \N \N \N 74718 S.subspicatum Symphyotrichum Symphyotrichum subspicatum Douglas aster \N \N \N \N 74719 \N varietas Physalis alkekengi var. alkekengi \N \N \N \N \N 74720 M.tubercularis Maxillaria Maxillaria tubercularis \N \N \N \N \N 74721 C.yucatana Cuscuta Cuscuta yucatana \N \N \N \N \N 74722 A.craibianus Astragalus Astragalus craibianus \N \N \N \N \N 74723 G.trichostachyus Gonocarpus Gonocarpus trichostachyus \N \N \N \N \N 74724 R.serrata Rhodiola Rhodiola serrata \N \N \N \N \N 74725 P.maclovianum Phlebolobium Phlebolobium maclovianum \N \N \N \N \N 74727 M.strobelii Masdevallia Masdevallia strobelii \N \N \N \N \N 74728 D.sphenophylla Diplycosia Diplycosia sphenophylla \N \N \N \N \N 74729 I.boissieri Iris Iris boissieri \N \N \N \N \N 74730 A.barjoniifolia Asclepias Asclepias barjoniifolia \N \N \N \N \N 74731 B.hispidula Bulbostylis Bulbostylis hispidula \N \N \N \N \N 74732 E.NSW-94016 Eriochlamys Eriochlamys sp. Bayer NSW-94016 \N \N \N \N \N 74733 \N varietas Ocimum gratissimum var. gratissimum \N \N \N \N \N 74734 C.weirii Cyrtochilum Cyrtochilum weirii \N \N \N \N \N 74735 M.capillipes Muhlenbergia Muhlenbergia capillipes \N \N \N \N \N 74736 \N genus Chelyorchis \N \N \N \N \N 74737 L.plukenetiana Lebeckia Lebeckia plukenetiana \N \N \N \N \N 74738 G.polystachyum Gastrolobium Gastrolobium polystachyum \N \N \N \N \N 74739 M.ovalifolia Metabriggsia Metabriggsia ovalifolia \N \N \N \N \N 74740 G.floribundum Gastrolobium Gastrolobium floribundum \N \N \N \N \N 74741 A.medioxima Artemisia Artemisia medioxima \N \N \N \N \N 74742 M.IBo01 Musa Musa sp. IBo01 \N \N \N \N \N 74743 M.chaparensis Masdevallia Masdevallia chaparensis \N \N \N \N \N 74744 \N genus Nordenstamia \N \N \N \N \N 74745 \N varietas Cucumis anguria var. anguria \N \N \N \N \N 74746 I.killipii Ixora Ixora killipii \N \N \N \N \N 74747 R.cultivar Ribes Ribes hybrid cultivar \N \N \N \N \N 74748 T.subalpinus Tragopogon Tragopogon subalpinus \N \N \N \N \N 74749 C.barbata Cyclea Cyclea barbata \N \N \N \N \N 74750 \N genus Nothorites \N \N \N \N \N 74751 \N genus Papistylus \N \N \N \N \N 74752 G.rupincola Gesneria Gesneria rupincola \N \N \N \N \N 74753 S.nagensium Synotis Synotis nagensium \N \N \N \N \N 74754 S.cordatus Streptanthus Streptanthus cordatus \N \N \N \N \N 74755 I.arabica Isoleucas Isoleucas arabica \N \N \N \N \N 74756 V.diospyroides Vatica Vatica diospyroides \N \N \N \N \N 74757 \N varietas Ivesia arizonica var. saxosa \N \N \N \N \N 74758 G.angustifolia Gaura Gaura angustifolia \N \N \N \N \N 74759 Z.maculatum Zygophyllum Zygophyllum maculatum \N \N \N \N \N 74760 S.nemorense Solanum Solanum nemorense \N \N \N \N \N 74761 E.brevistylis Eucalyptus Eucalyptus brevistylis \N \N \N \N \N 74762 \N genus Trichocephalus \N \N \N \N \N 74763 B.racemosa Bejaria Bejaria racemosa flyweed,tarflower \N \N \N \N 74764 \N genus Vesselowskya \N \N \N \N \N 74765 S.eschscholtzii Saxifraga Saxifraga eschscholtzii \N \N \N \N \N 74766 S.polyceratium Sisymbrium Sisymbrium polyceratium \N \N \N \N \N 74767 \N genus Karatavia \N \N \N \N \N 74768 \N varietas Isodon shikokianus var. intermedius \N \N \N \N \N 74769 \N genus Metrosideros \N \N \N \N \N 74770 B.FS1558 Bulbophyllum Bulbophyllum sp. FS1558 \N \N \N \N \N 74771 D.XMW-2002-5 Dendrobium Dendrobium sp. XMW-2002-5 \N \N \N \N \N 74772 F.arizonica Filago Filago arizonica \N \N \N \N \N 74773 \N genus Piresia \N \N \N \N \N 74774 S.pendula Symphyandra Symphyandra pendula \N \N \N \N \N 74775 G.dolichopoda Guatteria Guatteria dolichopoda \N \N \N \N \N 74776 C.juncea Ceropegia Ceropegia juncea \N \N \N \N \N 74777 \N subspecies Tigridia mexicana subsp. mexicana \N \N \N \N \N 74778 S.bonplandii Sorocea Sorocea bonplandii \N \N \N \N \N 74779 \N genus Decorsella \N \N \N \N \N 74780 C.californica Carex Carex californica \N \N \N \N \N 74781 T.ochreata Tricalistra Tricalistra ochreata \N \N \N \N \N 74782 M.stephanostegia Medinilla Medinilla stephanostegia \N \N \N \N \N 74783 A.depressus Astragalus Astragalus depressus \N \N \N \N \N 74784 \N genus Crescentia \N \N \N \N \N 74785 \N genus Oreobolopsis \N \N \N \N \N 74786 S.pergracilis Symplocos Symplocos pergracilis \N \N \N \N \N 74787 \N genus Fenestraria \N \N \N \N \N 74788 T.ambrensis Tricalysia Tricalysia ambrensis \N \N \N \N \N 74789 \N subspecies Trifolium subterraneum subsp. yanninicum \N \N \N \N \N 74790 C.hexagyna Caylusea Caylusea hexagyna \N \N \N \N \N 74791 A.brachystachya Allocasuarina Allocasuarina brachystachya \N \N \N \N \N 74792 B.TL378 Byttneria Byttneria sp. D Laman et al. TL378 \N \N \N \N \N 74793 T.standleyi Tradescantia Tradescantia standleyi \N \N \N \N \N 74794 L.delavayanum Ligustrum Ligustrum delavayanum \N \N \N \N \N 74795 V.dolichopetalum Veratrum Veratrum dolichopetalum \N \N \N \N \N 74796 I.mutchagara Ilex Ilex mutchagara \N \N \N \N \N 74797 \N subspecies Liparia splendens subsp. comantha \N \N \N \N \N 74798 M.622 Myriophyllum Myriophyllum sp. Les 622 \N \N \N \N \N 74799 \N tribe Ocimeae \N \N \N \N \N 74800 A.arenaria Artemisia Artemisia arenaria \N \N \N \N \N 74801 B.s.n. Bauhinia Bauhinia sp. Doyle s.n. \N \N \N \N \N 74802 D.quinquelobata Dioscorea Dioscorea quinquelobata \N \N \N \N \N 74803 E.revoluta Euphrasia Euphrasia revoluta \N \N \N \N \N 74804 P.ascendens Pedicularis Pedicularis ascendens \N \N \N \N \N 74805 A.pubistamineum Abutilon Abutilon pubistamineum \N \N \N \N \N 74806 \N subtribe Elephantopinae \N \N \N \N \N 74807 L.minimus Leptosiphon Leptosiphon minimus \N \N \N \N \N 74808 S.SS-20 Scrophularia Scrophularia sp. DePamphilis SS-20 \N \N \N \N \N 74809 \N genus Pseudovanilla \N \N \N \N \N 74810 C.speciosa Calandrinia Calandrinia speciosa \N \N \N \N \N 74811 \N genus Polhillia \N \N \N \N \N 74812 C.hostiana Carex Carex hostiana \N \N \N \N \N 74813 L.rupestris Lachemilla Lachemilla rupestris \N \N \N \N \N 74814 \N genus Carpha \N \N \N \N \N 74815 B.immaculata Berlinia Berlinia immaculata \N \N \N \N \N 74816 S.cacosmum Solanum Solanum cacosmum \N \N \N \N \N 74817 A.chnoodes Apochloa Apochloa chnoodes \N \N \N \N \N 74818 M.puberulum Mecranium Mecranium puberulum \N \N \N \N \N 74819 A.comosus Ananas Ananas comosus pineapple \N \N \N \N 74820 E.bergiana Erica Erica bergiana \N \N \N \N \N 74821 V.grayi Viola Viola grayi iso-sumire \N \N \N \N 74822 \N family Onagraceae evening-primrose family \N \N \N \N 74823 C.rhomboidalis Campanula Campanula rhomboidalis \N \N \N \N \N 74824 \N varietas Astilbe thunbergii var. fujisanensis \N \N \N \N \N 74825 C.impatiens Cardamine Cardamine impatiens narrowleaf bittercress \N \N \N \N 74826 A.AL-2004 Alpinia Alpinia aff. shimadae AL-2004 \N \N \N \N \N 74827 D.sekimotoi Doellingeria Doellingeria sekimotoi \N \N \N \N \N 74828 P.migiurtinus Pseudolithos Pseudolithos migiurtinus \N \N \N \N \N 74829 M.alpinus Melicytus Melicytus alpinus \N \N \N \N \N 74830 P.richardsonii Potamogeton Potamogeton perfoliatus x Potamogeton richardsonii \N \N \N \N \N 74831 B.ciliata Bergenia Bergenia ciliata \N \N \N \N \N 74832 H.splendidum Helichrysum Helichrysum splendidum \N \N \N \N \N 74833 P.chamissonis Persea Persea chamissonis \N \N \N \N \N 74834 \N varietas Hubertia tomentosa var. tomentosa \N \N \N \N \N 74835 R.fedtschenkoana Rosa Rosa fedtschenkoana \N \N \N \N \N 74836 P.windsorii Pachypodium Pachypodium windsorii \N \N \N \N \N 74837 S.cymbalaria Saxifraga Saxifraga cymbalaria \N \N \N \N \N 74838 \N genus Allenanthus \N \N \N \N \N 74839 \N genus Dichaea \N \N \N \N \N 74840 C.griffithii Campylotropis Campylotropis griffithii \N \N \N \N \N 74841 M.colemanii Maxillaria Maxillaria colemanii \N \N \N \N \N 74842 A.magellanicus Alopecurus Alopecurus magellanicus \N \N \N \N \N 74843 \N genus Strobilopsis \N \N \N \N \N 74844 T.dyeri Thiseltonia Thiseltonia dyeri \N \N \N \N \N 74845 R.julietiae Ravenea Ravenea julietiae \N \N \N \N \N 74846 A.ledebourianum Allium Allium ledebourianum \N \N \N \N \N 74847 L.flaccida Luzula Luzula flaccida \N \N \N \N \N 74848 S.aspera Scalesia Scalesia aspera \N \N \N \N \N 74849 C.schottianum Capsicum Capsicum schottianum \N \N \N \N \N 74850 H.violaceopunctata Heterotaxis Heterotaxis violaceopunctata \N \N \N \N \N 74851 L.inflata Lebeckia Lebeckia inflata \N \N \N \N \N 74852 \N genus Calpocalyx \N \N \N \N \N 74853 T.longiflora Thorncroftia Thorncroftia longiflora \N \N \N \N \N 74854 M.dumosa Muraltia Muraltia dumosa \N \N \N \N \N 74855 P.tridentata Pilea Pilea tridentata \N \N \N \N \N 74856 P.bogneri Palisota Palisota bogneri \N \N \N \N \N 74857 L.crithmoides Limbarda Limbarda crithmoides \N \N \N \N \N 74858 I.gesneroides Isodon Isodon gesneroides \N \N \N \N \N 74859 O.pusilla Ononis Ononis pusilla \N \N \N \N \N 74860 P.padus Prunus Prunus padus bird cherry \N \N \N \N 74861 A.fluitans Apinagia Apinagia fluitans \N \N \N \N \N 74862 S.cervicornis Siparuna Siparuna cervicornis \N \N \N \N \N 74863 S.scabra Scabrethia Scabrethia scabra \N \N \N \N \N 74864 L.orestera Luzula Luzula orestera \N \N \N \N \N 74865 \N genus Philgamia \N \N \N \N \N 74866 C.sprucei Compsoneura Compsoneura sprucei \N \N \N \N \N 74867 C.eschscholtzii Claytonia Claytonia eschscholtzii \N \N \N \N \N 74868 M.loliiforme Mesosetum Mesosetum loliiforme \N \N \N \N \N 74869 \N genus Dirca leatherwoods \N \N \N \N 74870 \N genus Burmannia \N \N \N \N \N 74871 P.ixorifolium Pseudopeponidium Pseudopeponidium ixorifolium \N \N \N \N \N 74872 \N genus Savia \N \N \N \N \N 74873 D.pennell-hazenii Draba Draba pennell-hazenii \N \N \N \N \N 74874 \N genus Kingianthus \N \N \N \N \N 74875 P.watsonii Primula Primula watsonii \N \N \N \N \N 74876 S.pedata Sidalcea Sidalcea pedata bird-footed checkerbloom \N \N \N \N 74877 C.songorica Consolida Consolida songorica \N \N \N \N \N 74878 R.capensis Rhynchosia Rhynchosia capensis \N \N \N \N \N 74879 F.asterisciflora Filago Filago asterisciflora \N \N \N \N \N 74880 V.melanocarpum Viburnum Viburnum melanocarpum \N \N \N \N \N 74881 V.abietina Vellozia Vellozia abietina \N \N \N \N \N 74882 S.reticulata Senna Senna reticulata \N \N \N \N \N 74883 S.liebmannii Stevia Stevia liebmannii \N \N \N \N \N 74884 M.bicolor Matelea Matelea bicolor \N \N \N \N \N 74885 H.suaveolens Haplophyllum Haplophyllum suaveolens \N \N \N \N \N 74886 F.subinermis Fagonia Fagonia subinermis \N \N \N \N \N 74887 T.micrantha Tontelea Tontelea micrantha \N \N \N \N \N 74888 D.elata Drimia Drimia elata \N \N \N \N \N 74889 M.nobilis Margaritaria Margaritaria nobilis \N \N \N \N \N 74890 C.coriacea Campanula Campanula coriacea \N \N \N \N \N 74891 A.macrocarpa Aglaia Aglaia macrocarpa \N \N \N \N \N 74892 P.insularis Pentaschistis Pentameris insularis \N \N \N \N \N 74893 P.fenestrata Pleurothallis Pleurothallis fenestrata \N \N \N \N \N 74894 L.orbifolia Lambertia Lambertia orbifolia \N \N \N \N \N 74895 H.algida Hulsea Hulsea algida \N \N \N \N \N 74896 P.articulatum Pelargonium Pelargonium articulatum \N \N \N \N \N 74897 P.ericifolia Pentachondra Pentachondra ericifolia \N \N \N \N \N 74898 P.hirtella Pimpinella Pimpinella hirtella \N \N \N \N \N 74899 V.oroboides Virgilia Virgilia oroboides \N \N \N \N \N 74900 S.balanghas Sterculia Sterculia balanghas \N \N \N \N \N 74901 S.microcorys Satyrium Satyrium microcorys \N \N \N \N \N 74902 P.parviflora Peixotoa Peixotoa parviflora \N \N \N \N \N 74903 \N no rank environmental samples Taxonomy:417455 \N \N \N \N \N 74904 A.diminuta Allocasuarina Allocasuarina diminuta \N \N \N \N \N 74905 A.gracilis Anarthria Anarthria gracilis \N \N \N \N \N 74906 \N varietas Platymiscium trinitatis var. nigrum \N \N \N \N \N 74907 G.fiebrigiana Galactia Galactia fiebrigiana \N \N \N \N \N 74908 P.jefensis Psychotria Psychotria jefensis \N \N \N \N \N 74909 E.hunanense Epimedium Epimedium hunanense \N \N \N \N \N 74910 T.corrugata Tarasa Tarasa corrugata \N \N \N \N \N 74911 P.colensoi Poa Poa colensoi silver tussock \N \N \N \N 74912 E.neomexicanus Erigeron Erigeron neomexicanus \N \N \N \N \N 74913 M.edgeworthii Medicago Medicago edgeworthii \N \N \N \N \N 74914 M.decussata Minaria Minaria decussata \N \N \N \N \N 74915 S.madagascariensis Sebaea Sebaea madagascariensis \N \N \N \N \N 74916 B.pulchra Banisteriopsis Banisteriopsis pulchra \N \N \N \N \N 74917 G.bruguieri Glossostemon Glossostemon bruguieri \N \N \N \N \N 74918 K.hirsuta Kniphofia Kniphofia hirsuta \N \N \N \N \N 74919 C.friedrichsthaliana Chrysothemis Chrysothemis friedrichsthaliana \N \N \N \N \N 74920 \N genus Pseudocaryopteris \N \N \N \N \N 74921 B.1541 Boreava Boreava sp. Mummenhoff 1541 \N \N \N \N \N 74922 P.stenosepala Pavetta Pavetta stenosepala \N \N \N \N \N 74923 \N genus Titanotrichum \N \N \N \N \N 74924 E.heterophylla Euphorbia Euphorbia heterophylla \N \N \N \N \N 74925 B.parvula Brachyscome Brachyscome parvula \N \N \N \N \N 74926 O.maweana Ononis Ononis maweana \N \N \N \N \N 74927 R.cipoana Rhodophiala Rhodophiala cipoana \N \N \N \N \N 74928 P.spinescens Phaulothamnus Phaulothamnus spinescens putia,snake-eyes \N \N \N \N 74929 \N subspecies Delphinium hesperium subsp. hesperium \N \N \N \N \N 74930 C.betulus Carpinus Carpinus betulus European hornbeam \N \N \N \N 74931 A.hectori Aciphylla Aciphylla hectori \N \N \N \N \N 74932 Z.lotus Ziziphus Ziziphus lotus lotustree \N \N \N \N 74933 T.parvifolia Trianthema Trianthema parvifolia \N \N \N \N \N 74934 N.polynesiacum Nesoluma Nesoluma polynesiacum \N \N \N \N \N 74935 C.maxima Cucurbita Cucurbita maxima Boston marrow,great pumpkin,winter squash \N \N \N \N 74936 \N genus Otocarpus \N \N \N \N \N 74937 B.elegans Beauprea Beauprea elegans \N \N \N \N \N 74938 \N no rank environmental samples Taxonomy:662429 \N \N \N \N \N 74939 \N genus Oryzopsis ricegrass \N \N \N \N 74940 S.japonica Sedirea Sedirea japonica \N \N \N \N \N 74941 \N genus Leucophysalis \N \N \N \N \N 74942 \N genus Rehdera \N \N \N \N \N 74943 F.coronata Ficus Ficus coronata \N \N \N \N \N 74944 P.dolichocymba Pedicularis Pedicularis dolichocymba \N \N \N \N \N 74945 O.magellanica Oenothera Oenothera magellanica \N \N \N \N \N 74946 C.exilis Carex Carex exilis coastal sedge \N \N \N \N 74947 \N genus Arctopoa \N \N \N \N \N 74948 \N genus Ipheion \N \N \N \N \N 74949 J.californica Juglans Juglans californica California black walnut \N \N \N \N 74950 C.cookii Colpothrinax Colpothrinax cookii \N \N \N \N \N 74951 S.pseudolima Schizostachyum Schizostachyum pseudolima \N \N \N \N \N 74952 A.odoratissimus Artocarpus Artocarpus odoratissimus marang \N \N \N \N 74953 P.amalago Piper Piper amalago \N \N \N \N \N 74954 D.MP-2011 Dipcadi Dipcadi sp. 2 MP-2011 \N \N \N \N \N 74955 D.arachnites Dendrochilum Dendrochilum arachnites \N \N \N \N \N 74956 \N genus Heterosmilax \N \N \N \N \N 74957 D.sewerzowii Drepanocaryum Drepanocaryum sewerzowii \N \N \N \N \N 74958 S.trochilophila Suessenguthia Suessenguthia trochilophila \N \N \N \N \N 74959 M.pinnatum Myriophyllum Myriophyllum pinnatum \N \N \N \N \N 74960 G.podocarpus Gyrinops Gyrinops podocarpus \N \N \N \N \N 74961 P.salicifolia Pyrus Pyrus salicifolia willow-leaf pear \N \N \N \N 74962 S.sambucinum Solanum Solanum x sambucinum \N \N \N \N \N 74963 K.(d) Kunzea Kunzea aff. ericoides (d) \N \N \N \N \N 74964 S.calophylla Sauvagesia Sauvagesia calophylla \N \N \N \N \N 74965 C.tinctoria Coreopsis Coreopsis tinctoria \N \N \N \N \N 74966 G.9570 Guatteria Guatteria sp. Maas et al. 9570 \N \N \N \N \N 74967 \N genus Yermo \N \N \N \N \N 74968 P.personatus Penstemon Penstemon personatus \N \N \N \N \N 74969 P.1 Psychotria Psychotria sp. PSN 1 \N \N \N \N \N 74970 \N genus x Calammophila \N \N \N \N \N 74971 A.gageana Alocasia Alocasia gageana \N \N \N \N \N 74972 S.viridis Senecio Senecio viridis \N \N \N \N \N 74973 \N varietas Zanthoxylum ovalifolium var. spinifolium \N \N \N \N \N 74974 S.renifolius Symplocarpus Symplocarpus renifolius \N \N \N \N \N 74975 P.mannii Psilanthus Psilanthus mannii \N \N \N \N \N 74976 T.MAG-2009 Tachigali Tachigali sp. MAG-2009 \N \N \N \N \N 74977 K.kinabaluensis Knema Knema kinabaluensis \N \N \N \N \N 74978 P.macgregorii Protium Protium macgregorii \N \N \N \N \N 74979 G.dumetorum Guatteria Guatteria dumetorum \N \N \N \N \N 74980 N.macroceras Nemesia Nemesia macroceras \N \N \N \N \N 74981 \N varietas Berberis hookeri var. viridis \N \N \N \N \N 74982 R.71/99 Rhodochiton Rhodochiton sp. 71/99 \N \N \N \N \N 74983 C.pectinata Cardamine Cardamine pectinata \N \N \N \N \N 74984 L.kalalauensis Lysimachia Lysimachia kalalauensis \N \N \N \N \N 74985 \N varietas Boechera microphylla var. microphylla \N \N \N \N \N 74986 \N genus Podocalyx \N \N \N \N \N 74987 L.dortmanna Lobelia Lobelia dortmanna \N \N \N \N \N 74988 G.eremophilus Gonocarpus Gonocarpus eremophilus \N \N \N \N \N 74989 M.obtusifolia Macrocarpaea Macrocarpaea obtusifolia \N \N \N \N \N 74990 T.cordata Tilia Tilia cordata \N \N \N \N \N 74991 C.lusitanum Colchicum Colchicum lusitanum \N \N \N \N \N 74992 L.ciliatum Lysinema Lysinema ciliatum \N \N \N \N \N 74993 \N varietas Isodon umbrosus var. hakusanensis \N \N \N \N \N 74994 \N genus Tirpitzia \N \N \N \N \N 74995 C.baldensis Carex Carex baldensis \N \N \N \N \N 74996 K.fruticosa Kopsia Kopsia fruticosa \N \N \N \N \N 74997 P.kaalaensis Phyllostegia Phyllostegia kaalaensis \N \N \N \N \N 74998 N.salzmannii Narduroides Narduroides salzmannii \N \N \N \N \N 74999 B.bruneelii Berlinia Berlinia bruneelii \N \N \N \N \N 75000 W.amaniensis Warneckea Warneckea amaniensis \N \N \N \N \N 75001 \N genus Anomospermum \N \N \N \N \N 75002 P.filaris Pigafetta Pigafetta filaris \N \N \N \N \N 75003 \N genus Enriquebeltrania \N \N \N \N \N 75004 M.lanceolatus Moacroton Moacroton lanceolatus \N \N \N \N \N 75005 \N subtribe Collabiinae \N \N \N \N \N 75006 \N genus Harpephyllum \N \N \N \N \N 75007 \N genus Callianthemum \N \N \N \N \N 75008 C.grandiflora Canavalia Canavalia grandiflora \N \N \N \N \N 75009 S.discolor Solanum Solanum discolor \N \N \N \N \N 75010 \N genus Prosopanche \N \N \N \N \N 75011 \N genus Zinowiewia \N \N \N \N \N 75012 C.emirnense Clerodendrum Clerodendrum emirnense \N \N \N \N \N 75013 C.nocturnum Cestrum Cestrum nocturnum night jessamine \N \N \N \N 75014 \N subspecies Coronilla valentina subsp. glauca \N \N \N \N \N 75015 P.ogotorukensis Packera Packera ogotorukensis \N \N \N \N \N 75016 \N varietas Triticum sphaerococcum var. rotundatum \N \N \N \N \N 75017 \N no rank Saccharum hybrid cultivar Funong 95-1702 \N \N \N \N \N 75018 O.macdougallii Ortegocactus Ortegocactus macdougallii \N \N \N \N \N 75019 C.brittonianus Croton Croton brittonianus \N \N \N \N \N 75020 E.siamensis Enkleia Enkleia siamensis \N \N \N \N \N 75021 E.verrucata Eucalyptus Eucalyptus verrucata \N \N \N \N \N 75022 D.adae Dendrobium Dendrobium adae \N \N \N \N \N 75023 O.AAA-2004 Oncostemum Oncostemum sp. AAA-2004 \N \N \N \N \N 75024 \N genus Mandenovia \N \N \N \N \N 75025 C.chorassanicum Cicer Cicer chorassanicum \N \N \N \N \N 75026 S.macoorai Solanum Solanum macoorai \N \N \N \N \N 75027 I.crepidiformis Ipomoea Ipomoea crepidiformis \N \N \N \N \N 75028 P.majadum Pholidocarpus Pholidocarpus majadum \N \N \N \N \N 75029 L.tianschanicus Leymus Leymus tianschanicus \N \N \N \N \N 75030 C.hagbergii Calathea Calathea hagbergii \N \N \N \N \N 75031 S.campanulatum Sphyrospermum Sphyrospermum campanulatum \N \N \N \N \N 75032 S.fruticulosus Stylapterus Stylapterus fruticulosus \N \N \N \N \N 75033 N.obovata Nemcia Nemcia obovata \N \N \N \N \N 75034 R.dumulosa Rhodiola Rhodiola dumulosa \N \N \N \N \N 75035 \N genus Munronia \N \N \N \N \N 75036 N.caspica Nonea Nonea caspica \N \N \N \N \N 75037 A.melegueta Aframomum Aframomum melegueta \N \N \N \N \N 75038 C.heteroneura Carex Carex heteroneura \N \N \N \N \N 75039 A.aromatica Antennaria Antennaria aromatica \N \N \N \N \N 75040 \N genus Odixia \N \N \N \N \N 75041 S.rubtzovii Semenovia Semenovia rubtzovii \N \N \N \N \N 75042 D.elongata Deschampsia Deschampsia elongata \N \N \N \N \N 75043 C.arctotidifolia Cousinia Cousinia arctotidifolia \N \N \N \N \N 75044 A.concinna Areca Areca concinna \N \N \N \N \N 75045 S.griffithii Stylocline Stylocline griffithii \N \N \N \N \N 75046 \N genus Woodia \N \N \N \N \N 75047 O.denticulatum Odontoglossum Odontoglossum denticulatum \N \N \N \N \N 75048 H.graciliflora Hemsleya Hemsleya graciliflora \N \N \N \N \N 75049 A.megalocarpon Aspidosperma Aspidosperma megalocarpon \N \N \N \N \N 75050 H.papillosa Hamelia Hamelia papillosa \N \N \N \N \N 75051 T.fontanicola Taraxacum Taraxacum fontanicola \N \N \N \N \N 75052 L.julii Lithops Lithops julii \N \N \N \N \N 75053 B.bigelovii Blepharidachne Blepharidachne bigelovii \N \N \N \N \N 75054 X.sorbifolium Xanthoceras Xanthoceras sorbifolium \N \N \N \N \N 75055 M.spicatum Myriophyllum Myriophyllum spicatum \N \N \N \N \N 75056 \N subspecies Babiana nana subsp. maculata \N \N \N \N \N 75057 C.pubescens Cyclopia Cyclopia pubescens \N \N \N \N \N 75058 \N subspecies Tofieldia pusilla subsp. pusilla \N \N \N \N \N 75059 D.lactea Draba Draba lactea milky draba \N \N \N \N 75060 D.rosularis Draba Draba rosularis \N \N \N \N \N 75061 P.albida Pinguicula Pinguicula albida \N \N \N \N \N 75062 E.lateriflora Euphorbia Euphorbia lateriflora \N \N \N \N \N 75063 B.formosana Boehmeria Boehmeria formosana \N \N \N \N \N 75064 C.straussii Cyclotrichium Cyclotrichium straussii \N \N \N \N \N 75065 \N genus Hackelochloa \N \N \N \N \N 75066 A.lavateriflora Alcea Alcea lavateriflora \N \N \N \N \N 75067 L.andersoniana Lepidagathis Lepidagathis andersoniana \N \N \N \N \N 75068 E.hystrix Elymus Elymus hystrix \N \N \N \N \N 75069 L.dumetorum Lotus Lotus dumetorum \N \N \N \N \N 75070 \N genus Holmskioldia \N \N \N \N \N 75071 D.kaieteurensis Drosera Drosera kaieteurensis \N \N \N \N \N 75072 A.bermudiana Albizia Albizia bermudiana \N \N \N \N \N 75073 O.gaubae Onobrychis Onobrychis gaubae \N \N \N \N \N 75074 \N no rank Astereae incertae sedis \N \N \N \N \N 75075 \N genus Geocarpon \N \N \N \N \N 75076 P.campanulatum Polygonum Polygonum campanulatum \N \N \N \N \N 75077 B.decora Begonia Begonia decora \N \N \N \N \N 75078 \N subspecies Anthemis cretica subsp. anatolica \N \N \N \N \N 75079 T.barbeyi Trifolium Trifolium barbeyi \N \N \N \N \N 75080 C.luteovirescens Cestrum Cestrum luteovirescens \N \N \N \N \N 75081 P.phyllocalymmeus Pleuropappus Pleuropappus phyllocalymmeus \N \N \N \N \N 75082 C.memphitica Cutandia Cutandia memphitica \N \N \N \N \N 75083 D.6863 Drymonia Drymonia sp. Clark 6863 \N \N \N \N \N 75084 \N genus Stebbinsia \N \N \N \N \N 75085 B.candelaris Browningia Browningia candelaris \N \N \N \N \N 75086 C.chinensis Castanopsis Castanopsis chinensis \N \N \N \N \N 75087 P.heleniae Philodendron Philodendron heleniae \N \N \N \N \N 75088 E.FSP-2005 Eucalyptus Eucalyptus aff. vicina FSP-2005 \N \N \N \N \N 75089 J.uniflora Junellia Junellia uniflora \N \N \N \N \N 75090 P.cochlearis Phalaenopsis Phalaenopsis cochlearis \N \N \N \N \N 75091 A.foliolosa Astroloba Astroloba foliolosa \N \N \N \N \N 75092 \N genus Davilanthus \N \N \N \N \N 75093 \N genus Bulbophyllum \N \N \N \N \N 75094 P.hartwegii Penstemon Penstemon hartwegii \N \N \N \N \N 75095 G.radlkoferi Greyia Greyia radlkoferi \N \N \N \N \N 75096 C.vulgare Canarium Canarium vulgare Chinese-olive,Java-almond,kanari \N \N \N \N 75097 A.stenoloba Aletris Aletris stenoloba \N \N \N \N \N 75098 E.parviflora Eragrostis Eragrostis parviflora \N \N \N \N \N 75099 \N genus Mimusops \N \N \N \N \N 75100 B.camporum Brachystele Brachystele camporum \N \N \N \N \N 75101 A.woodii Alchemilla Alchemilla woodii \N \N \N \N \N 75102 \N genus Neurotheca \N \N \N \N \N 75103 M.villosa Moraea Moraea villosa \N \N \N \N \N 75104 S.procera Scaevola Scaevola procera \N \N \N \N \N 75105 R.teres Rhipsalis Rhipsalis teres \N \N \N \N \N 75106 E.carmenensis Euphorbia Euphorbia carmenensis \N \N \N \N \N 75107 P.paucifolia Polyxena Polyxena paucifolia \N \N \N \N \N 75108 C.phaenopyrum Crataegus Crataegus phaenopyrum \N \N \N \N \N 75109 E.ecalcaratum Epimedium Epimedium ecalcaratum \N \N \N \N \N 75110 S.brevipedunculata Sophronitis Sophronitis brevipedunculata \N \N \N \N \N 75111 F.altaica Festuca Festuca altaica Altai fescue \N \N \N \N 75112 \N varietas Erythrina variegata var. orientalis \N \N \N \N \N 75113 \N subfamily Brownlowioideae \N \N \N \N \N 75114 A.hymenoides Achnatherum Achnatherum hymenoides mountain-rice \N \N \N \N 75115 V.album Veratrum Veratrum album white false hellebore \N \N \N \N 75116 G.penangiana Garcinia Garcinia penangiana \N \N \N \N \N 75117 G.rostratus Gonolobus Gonolobus rostratus \N \N \N \N \N 75118 E.melliodora Eucalyptus Eucalyptus melliodora \N \N \N \N \N 75119 \N subspecies Aspalathus hispida subsp. hispida \N \N \N \N \N 75120 T.glabrum Taraxacum Taraxacum glabrum \N \N \N \N \N 75121 \N subspecies Crocus biflorus subsp. crewei \N \N \N \N \N 75122 \N varietas Fritillaria cirrhosa var. purpurea \N \N \N \N \N 75123 H.radiata Habenaria Habenaria radiata \N \N \N \N \N 75124 C.americana Callicarpa Callicarpa americana American beauty-berry \N \N \N \N 75125 A.elata Agoseris Agoseris elata \N \N \N \N \N 75126 \N genus Platycarpum \N \N \N \N \N 75127 E.fordii Erythrophleum Erythrophleum fordii \N \N \N \N \N 75128 M.serrulata Miconia Miconia serrulata jau jau \N \N \N \N 75129 A.clematideum Aphanopetalum Aphanopetalum clematideum \N \N \N \N \N 75130 A.chiwensis Astragalus Astragalus chiwensis \N \N \N \N \N 75131 P.polystachya Peperomia Peperomia polystachya \N \N \N \N \N 75132 D.humile Dasispermum Dasispermum humile \N \N \N \N \N 75133 H.beccarii Holochlamys Holochlamys beccarii \N \N \N \N \N 75134 L.liyuyingi Litsea Litsea liyuyingi \N \N \N \N \N 75135 G.thyrsoidea Guzmania Guzmania thyrsoidea \N \N \N \N \N 75136 A.effusa Aristida Aristida effusa \N \N \N \N \N 75137 T.polonicum Triticum Triticum polonicum Polish wheat \N \N \N \N 75138 C.franchetii Cousinia Cousinia franchetii \N \N \N \N \N 75139 A.alyssoides Alyssum Alyssum alyssoides hoary alyssum \N \N \N \N 75140 H.intybaceum Hieracium Hieracium intybaceum \N \N \N \N \N 75141 C.mcvaughii Cladocolea Cladocolea mcvaughii \N \N \N \N \N 75142 D.TLPC-2009a Draba Draba sp. TLPC-2009a \N \N \N \N \N 75143 I.longiauritus Indocalamus Indocalamus longiauritus \N \N \N \N \N 75144 C.3628 Clusia Clusia sp. JA 3628 \N \N \N \N \N 75145 F.filiformis Ficinia Ficinia filiformis \N \N \N \N \N 75146 S.thellungii Sisymbrium Sisymbrium thellungii \N \N \N \N \N 75147 V.araroba Vataireopsis Vataireopsis araroba angelim-amarelo,angelim-amargoso,angelim-aroroba \N \N \N \N 75148 M.orientalis Malus Malus orientalis \N \N \N \N \N 75149 T.s5620 unclassified Taraxacum Taraxacum (sect. Kashmirana) sp. s5620 \N \N \N \N \N 75150 T.corrugata Tunilla Tunilla corrugata \N \N \N \N \N 75151 S.kultiassovii Schrenkia Schrenkia kultiassovii \N \N \N \N \N 75152 G.humboldtensis Guettarda Guettarda humboldtensis \N \N \N \N \N 75153 S.assimilis Sauropus Sauropus assimilis \N \N \N \N \N 75154 M.triloba Macaranga Macaranga triloba \N \N \N \N \N 75155 A.bracteata Arracacia Arracacia bracteata \N \N \N \N \N 75156 S.glossula Stelis Stelis glossula \N \N \N \N \N 75157 S.kunstleri Shorea Shorea kunstleri \N \N \N \N \N 75158 \N genus Parakeelya \N \N \N \N \N 75159 P.crocydocalyx Plagiostachys Plagiostachys crocydocalyx \N \N \N \N \N 75160 T.NSW504425 Trochocarpa Trochocarpa sp. NSW504425 \N \N \N \N \N 75161 B.tonkinensis Bursera Bursera tonkinensis \N \N \N \N \N 75162 T.squarrosum Thesium Thesium squarrosum \N \N \N \N \N 75163 \N subspecies Nuphar advena subsp. advena \N \N \N \N \N 75164 N.wallichii Neoachmandra Neoachmandra wallichii \N \N \N \N \N 75165 C.strigosa Crassula Crassula strigosa \N \N \N \N \N 75166 E.moorei Eucryphia Eucryphia moorei acacia plum,pinkwood,white sally,yulbah \N \N \N \N 75167 G.wrightii Galactia Galactia wrightii \N \N \N \N \N 75168 Z.regeliana Zeravschania Zeravschania regeliana \N \N \N \N \N 75169 N.amazonum Nymphaea Nymphaea amazonum \N \N \N \N \N 75170 M.imbricata Micromeria Micromeria imbricata \N \N \N \N \N 75171 L.prostratus Lupinus Lupinus prostratus \N \N \N \N \N 75172 C.trichocarpa Cardamine Cardamine trichocarpa \N \N \N \N \N 75173 S.goniopterum Syzygium Syzygium goniopterum \N \N \N \N \N 75174 J.spinosa Jaracatia Jaracatia spinosa \N \N \N \N \N 75175 B.meyeri-johannis Begonia Begonia meyeri-johannis \N \N \N \N \N 75176 T.yukonensis Tephroseris Tephroseris yukonensis \N \N \N \N \N 75177 \N tribe Fabeae \N \N \N \N \N 75178 P.inaequalis Pilea Pilea inaequalis \N \N \N \N \N 75179 G.mirandae Galphimia Galphimia mirandae \N \N \N \N \N 75180 T.purpurea Tirania Tirania purpurea \N \N \N \N \N 75181 L.idatimon Lecythis Lecythis idatimon \N \N \N \N \N 75182 \N genus Rhodocodon \N \N \N \N \N 75183 B.sanguinea Berberis Berberis sanguinea \N \N \N \N \N 75184 M.fraternum Macroptilium Macroptilium fraternum \N \N \N \N \N 75185 C.56 Coffea Coffea sp. IRD-Montpelier OC 56 \N \N \N \N \N 75186 C.acutifolium Canarium Canarium acutifolium \N \N \N \N \N 75187 C.straminea Cyathodes Cyathodes straminea \N \N \N \N \N 75188 D.tuberculatus Dipterocarpus Dipterocarpus tuberculatus eng gurjuntree \N \N \N \N 75189 \N varietas Lilium leucanthum var. centifolium \N \N \N \N \N 75190 E.racemosa Elliottia Elliottia racemosa \N \N \N \N \N 75191 \N subspecies Pritzelago alpina subsp. alpina \N \N \N \N \N 75192 F.roemeri Festuca Festuca roemeri \N \N \N \N \N 75193 L.1143 Leroya Leroya sp. De Block et al. 1143 \N \N \N \N \N 75194 V.amurensis Valeriana Valeriana amurensis \N \N \N \N \N 75195 \N subspecies Veronica chamaedrys subsp. chamaedrys \N \N \N \N \N 75196 O.borneensis Olea Olea borneensis \N \N \N \N \N 75197 B.paupercula Boechera Boechera paupercula \N \N \N \N \N 75198 \N subspecies Hemizonia congesta subsp. calyculata \N \N \N \N \N 75199 X.quadrangulata Xanthorrhoea Xanthorrhoea quadrangulata \N \N \N \N \N 75200 T.indica Tylophora Tylophora indica \N \N \N \N \N 75201 C.pinnatifidum Cicer Cicer pinnatifidum \N \N \N \N \N 75202 S.cirratum Schizachyrium Schizachyrium cirratum Texas bluestem \N \N \N \N 75203 H.sample environmental samples Taxonomy:493874 Hordeum environmental sample \N \N \N \N \N 75204 \N no rank Saccharum hybrid cultivar SP80-87432 \N \N \N \N \N 75205 \N genus Melanostachya \N \N \N \N \N 75206 P.dahlgrenii Penaea Penaea dahlgrenii \N \N \N \N \N 75207 A.sousae Ateleia Ateleia sousae \N \N \N \N \N 75208 G.antillana Gamochaeta Gamochaeta antillana \N \N \N \N \N 75209 \N genus Trigonobalanus \N \N \N \N \N 75210 \N genus Pseudeminia \N \N \N \N \N 75211 B.inclinata Babiana Babiana inclinata \N \N \N \N \N 75212 U.capitatus Urodon Urodon capitatus \N \N \N \N \N 75213 \N subspecies Halosarcia indica subsp. indica \N \N \N \N \N 75214 A.courtii Acacia Acacia courtii \N \N \N \N \N 75215 \N family Proteaceae protea family \N \N \N \N 75216 H.glaberrimum Haplophyllum Haplophyllum glaberrimum \N \N \N \N \N 75217 C.ruscifolia Chuquiraga Chuquiraga ruscifolia \N \N \N \N \N 75218 D.rotundifolia Dissotis Dissotis rotundifolia \N \N \N \N \N 75219 M.persica Morina Morina persica \N \N \N \N \N 75220 D.lumholtzii Dalea Dalea lumholtzii \N \N \N \N \N 75221 R.pictum Rytidosperma Rytidosperma pictum \N \N \N \N \N 75222 \N genus Brachycylix \N \N \N \N \N 75223 P.lutea Pimpinella Pimpinella lutea \N \N \N \N \N 75224 \N genus Stevenia \N \N \N \N \N 75225 I.trichothyrsa Ilex Ilex trichothyrsa \N \N \N \N \N 75226 O.lithophila Octomeria Octomeria lithophila \N \N \N \N \N 75227 P.malacophyllum Paspalum Paspalum malacophyllum \N \N \N \N \N 75228 M.calocarpus Mallotus Mallotus calocarpus \N \N \N \N \N 75229 B.lyrata Berlandiera Berlandiera lyrata \N \N \N \N \N 75230 B.stenantha Burbidgea Burbidgea stenantha \N \N \N \N \N 75231 M.galpinii Microcharis Microcharis galpinii \N \N \N \N \N 75232 H.crux-andreae Hypericum Hypericum crux-andreae \N \N \N \N \N 75233 \N varietas Erysimum capitatum var. purshii \N \N \N \N \N 75234 A.tunku Areca Areca tunku \N \N \N \N \N 75235 \N genus Charadrophila \N \N \N \N \N 75236 E.indivisa Euphorbia Euphorbia indivisa \N \N \N \N \N 75237 H.minor Heliamphora Heliamphora minor \N \N \N \N \N 75238 L.rubrum Leucadendron Leucadendron rubrum \N \N \N \N \N 75239 P.ochreatus Potamogeton Potamogeton crispus x Potamogeton ochreatus \N \N \N \N \N 75240 A.trinervis Anaphalioides Anaphalioides trinervis \N \N \N \N \N 75241 S.robusta Schefflera Schefflera robusta \N \N \N \N \N 75242 P.platyrachis Petalodiscus Petalodiscus platyrachis \N \N \N \N \N 75243 C.triphyllum Colchicum Colchicum triphyllum \N \N \N \N \N 75244 A.brevistyla Aquilegia Aquilegia brevistyla \N \N \N \N \N 75245 C.grandifolius Cheirolophus Cheirolophus grandifolius \N \N \N \N \N 75246 P.vellozioides Paepalanthus Paepalanthus vellozioides \N \N \N \N \N 75247 A.navicularis Alocasia Alocasia navicularis \N \N \N \N \N 75248 \N genus Catabrosella \N \N \N \N \N 75249 M.bifidus Mimulus Mimulus bifidus \N \N \N \N \N 75250 S.angustissima Sida Sida angustissima \N \N \N \N \N 75251 \N varietas Rhododendron mucronatum var. ripense \N \N \N \N \N 75252 \N genus Laburnum \N \N \N \N \N 75253 \N tribe Platycarpheae \N \N \N \N \N 75254 R.franguloides Rhamnella Rhamnella franguloides \N \N \N \N \N 75255 A.pini Arceuthobium Arceuthobium pini \N \N \N \N \N 75256 R.lucida Renealmia Renealmia lucida \N \N \N \N \N 75257 U.leptostachya Uncinia Uncinia leptostachya \N \N \N \N \N 75258 G.pauciflora Gagea Gagea pauciflora \N \N \N \N \N 75259 S.roseum Solanum Solanum roseum \N \N \N \N \N 75260 L.subacaulis Lupinus Lupinus subacaulis \N \N \N \N \N 75261 M.carvalhoi Marsdenia Marsdenia carvalhoi \N \N \N \N \N 75262 R.cultivar Rubus Rubus hybrid cultivar \N \N \N \N \N 75263 M.bangii Miconia Miconia bangii \N \N \N \N \N 75264 P.virgatus Penstemon Penstemon virgatus \N \N \N \N \N 75265 E.biternatum Enemion Enemion biternatum \N \N \N \N \N 75266 S.prunifolia Symplocos Symplocos prunifolia \N \N \N \N \N 75267 T.rollotii Tournefortia Tournefortia rollotii \N \N \N \N \N 75268 U.floridana Uvularia Uvularia floridana \N \N \N \N \N 75269 P.fuscata Phalaenopsis Phalaenopsis fuscata \N \N \N \N \N 75270 A.berteroniana Arundinella Arundinella berteroniana \N \N \N \N \N 75271 D.ventosa Draba Draba ventosa \N \N \N \N \N 75272 P.schlechteri Planea Planea schlechteri \N \N \N \N \N 75273 S.ampullata Silene Silene ampullata \N \N \N \N \N 75274 C.corrugatus Cymopterus Cymopterus corrugatus wrinklewing springparsley \N \N \N \N 75275 S.oleracea Spinacia Spinacia oleracea spinach \N \N \N \N 75276 D.dedeana Draba Draba dedeana \N \N \N \N \N 75277 K.novae-zelandiae Kirkianella Kirkianella novae-zelandiae \N \N \N \N \N 75278 R.viscistylum Rhododendron Rhododendron viscistylum \N \N \N \N \N 75279 O.virgosa Oxalis Oxalis virgosa \N \N \N \N \N 75280 I.stocksii Iris Iris stocksii \N \N \N \N \N 75281 M.irwinii Manihot Manihot irwinii \N \N \N \N \N 75282 \N genus Dichelostemma \N \N \N \N \N 75283 B.heterophylla Berberis Berberis heterophylla \N \N \N \N \N 75284 \N genus Pleiospermium \N \N \N \N \N 75285 U.lata Urochloa Urochloa lata \N \N \N \N \N 75286 R.phaeochitum Rhododendron Rhododendron phaeochitum \N \N \N \N \N 75287 S.smithii Syagrus Syagrus smithii \N \N \N \N \N 75288 G.raimondii Gossypium Gossypium raimondii \N \N \N \N \N 75289 D.bambuseti Diclis Diclis bambuseti \N \N \N \N \N 75290 \N varietas Chamaecrista ramosa var. mollissima \N \N \N \N \N 75291 B.capillifolium Bunium Bunium capillifolium \N \N \N \N \N 75292 C.hymenodon Cruckshanksia Cruckshanksia hymenodon \N \N \N \N \N 75293 L.128 Lysipomia Lysipomia sp. nov. 128 \N \N \N \N \N 75294 N.variegata Nuphar Nuphar variegata pond-lily \N \N \N \N 75295 \N genus Quincula \N \N \N \N \N 75296 C.mucronulata Calandrinia Calandrinia mucronulata \N \N \N \N \N 75297 C.deltoidea Cineraria Cineraria deltoidea \N \N \N \N \N 75298 C.CAM084 Campanula Campanula aff. rotundifolia CAM084 \N \N \N \N \N 75299 O.carduiformis Outreya Outreya carduiformis \N \N \N \N \N 75300 \N genus Rheedia \N \N \N \N \N 75301 \N subspecies Lobularia canariensis subsp. canariensis \N \N \N \N \N 75302 \N genus Vellozia \N \N \N \N \N 75303 G.tenella Garnotia Garnotia tenella \N \N \N \N \N 75304 P.sapota Pouteria Pouteria sapota mammee sapote,marmalade-plum,sapote \N \N \N \N 75305 P.ternifolium Pelargonium Pelargonium ternifolium \N \N \N \N \N 75306 \N genus Bartonia \N \N \N \N \N 75307 S.eenii Senecio Senecio eenii \N \N \N \N \N 75308 C.antiquorum Colocasia Colocasia antiquorum \N \N \N \N \N 75309 M.pottsii Mammillaria Mammillaria pottsii \N \N \N \N \N 75311 O.arenaria Oxalis Oxalis arenaria \N \N \N \N \N 75312 L.pomposa Lachnaea Lachnaea pomposa \N \N \N \N \N 75313 M.astonii Muehlenbeckia Muehlenbeckia astonii \N \N \N \N \N 75314 \N varietas Dendrobium speciosum var. hillii \N \N \N \N \N 75315 P.rupestris Pentaschistis Pentameris rupestris \N \N \N \N \N 75316 D.ferox Dasyphyllum Dasyphyllum ferox \N \N \N \N \N 75317 M.trimera Miconia Miconia trimera \N \N \N \N \N 75318 R.viridis Reseda Reseda viridis \N \N \N \N \N 75319 H.elata Heritiera Heritiera elata mengkulang \N \N \N \N 75320 N.baccata Nolana Nolana baccata \N \N \N \N \N 75321 B.replicata Berberis Berberis replicata \N \N \N \N \N 75322 M.treutleri Mussaenda Mussaenda treutleri \N \N \N \N \N 75323 \N genus Oncocalyx \N \N \N \N \N 75324 F.fugax Flickingeria Flickingeria fugax \N \N \N \N \N 75325 \N genus Microthelys \N \N \N \N \N 75326 \N genus Lachenalia \N \N \N \N \N 75327 \N genus Alloplectus \N \N \N \N \N 75328 R.phyteuma Reseda Reseda phyteuma \N \N \N \N \N 75329 C.bolivianum Clinopodium Clinopodium bolivianum \N \N \N \N \N 75330 A.deplanchei Agation Agation deplanchei \N \N \N \N \N 75331 P.acutatum Philodendron Philodendron acutatum \N \N \N \N \N 75332 H.baetica Herniaria Herniaria baetica \N \N \N \N \N 75333 E.triflora Euphorbia Euphorbia triflora \N \N \N \N \N 75334 S.succulenta Silene Silene succulenta \N \N \N \N \N 75335 A.manningii Alfaroa Alfaroa manningii \N \N \N \N \N 75336 \N varietas Lachenalia orchioides var. orchioides \N \N \N \N \N 75337 G.melinonis Guzmania Guzmania melinonis \N \N \N \N \N 75338 C.houtteana Cleome Cleome houtteana \N \N \N \N \N 75339 S.longicilia Silene Silene longicilia \N \N \N \N \N 75340 H.apiculata Hopea Hopea apiculata \N \N \N \N \N 75341 J.tridens Junellia Junellia tridens \N \N \N \N \N 75342 S.andinum Sedum Sedum andinum \N \N \N \N \N 75343 M.yamamotoi Mitrastemon Mitrastemon yamamotoi \N \N \N \N \N 75344 D.HCO-2005 Dendrocalamus Dendrocalamus sp. HCO-2005 \N \N \N \N \N 75345 O.brunoniana Oberonia Oberonia brunoniana \N \N \N \N \N 75346 Z.atamasco Zephyranthes Zephyranthes atamasco \N \N \N \N \N 75347 P.pruinosa Protea Protea pruinosa \N \N \N \N \N 75348 D.costatus Dipterocarpus Dipterocarpus costatus \N \N \N \N \N 75349 P.lewtonii Polygala Polygala lewtonii \N \N \N \N \N 75350 T.brunonis Tordyliopsis Tordyliopsis brunonis \N \N \N \N \N 75351 A.MG1 Alternanthera Alternanthera sp. MG1 \N \N \N \N \N 75352 L.capitata Lachnaea Lachnaea capitata \N \N \N \N \N 75353 O.zpl(1) Origanum Origanum sp. MIB zpl(1) \N \N \N \N \N 75354 B.galpinii Brownleea Brownleea galpinii \N \N \N \N \N 75355 G.hookeriana Griffithella Griffithella hookeriana \N \N \N \N \N 75356 G.polytrichotoma Gutenbergia Gutenbergia polytrichotoma \N \N \N \N \N 75357 D.runcinatum Dryopetalon Dryopetalon runcinatum rock-mustard \N \N \N \N 75358 P.basutorum Pentaschistis Pentameris basutorum \N \N \N \N \N 75359 T.palustre Thysselinum Thysselinum palustre \N \N \N \N \N 75360 A.longicornu Anacamptis Anacamptis longicornu \N \N \N \N \N 75361 M.brachygyne Moraea Moraea brachygyne \N \N \N \N \N 75362 D.kamtschatica Draba Draba kamtschatica \N \N \N \N \N 75363 A.looseri Astragalus Astragalus looseri \N \N \N \N \N 75364 P.laxa Poa Poa laxa \N \N \N \N \N 75365 Z.crenulata Zuvanda Zuvanda crenulata \N \N \N \N \N 75366 L.azuayensis Lithospermum Lithospermum azuayensis \N \N \N \N \N 75367 D.toumatou Discaria Discaria toumatou \N \N \N \N \N 75368 R.donnell-smithii Ruellia Ruellia donnell-smithii \N \N \N \N \N 75369 \N genus Mussatia \N \N \N \N \N 75370 G.latifolia Glycine Glycine latifolia \N \N \N \N \N 75371 E.arborescens Eriogonum Eriogonum arborescens \N \N \N \N \N 75372 M.cercophylla Mandevilla Mandevilla cercophylla \N \N \N \N \N 75373 S.sanguiloba Sophronitis Sophronitis sanguiloba \N \N \N \N \N 75374 C.depressus Chrysothamnus Chrysothamnus depressus \N \N \N \N \N 75375 E.oaxacana Euphorbia Euphorbia oaxacana \N \N \N \N \N 75376 C.abutiloides Croton Croton abutiloides \N \N \N \N \N 75377 T.oliveri Thyrsostachys Thyrsostachys oliveri \N \N \N \N \N 75378 M.trilobata Maxillaria Maxillaria trilobata \N \N \N \N \N 75379 N.mikei Nepenthes Nepenthes mikei \N \N \N \N \N 75380 P.natans Potamogeton Potamogeton natans broadleaf pondweed \N \N \N \N 75381 A.macrophylla Aristolochia Aristolochia macrophylla Dutchman's-pipe \N \N \N \N 75382 P.sicariguensis Pseudoacanthocereus Pseudoacanthocereus sicariguensis \N \N \N \N \N 75383 \N genus Selleophytum \N \N \N \N \N 75384 A.arborescens Artemisia Artemisia arborescens \N \N \N \N \N 75385 \N genus Dussia \N \N \N \N \N 75386 H.japonicum Hypericum Hypericum japonicum \N \N \N \N \N 75387 L.grandifolia Leptostylis Leptostylis grandifolia \N \N \N \N \N 75388 P.elegans Phyllostachys Phyllostachys elegans \N \N \N \N \N 75389 P.receptacularis Pilea Pilea receptacularis \N \N \N \N \N 75390 A.nitida Anthriscus Anthriscus nitida \N \N \N \N \N 75391 E.brevirame Echium Echium brevirame \N \N \N \N \N 75392 C.semiconnata Calceolaria Calceolaria semiconnata \N \N \N \N \N 75393 \N genus Clerodendranthus \N \N \N \N \N 75394 M.rigida Maxillaria Maxillaria rigida \N \N \N \N \N 75395 A.acaulis Alcea Alcea acaulis \N \N \N \N \N 75396 \N genus Heliamphora \N \N \N \N \N 75397 C.pubescens Calystegia Calystegia pubescens \N \N \N \N \N 75398 O.pseudocernua Oxalis Oxalis pseudocernua \N \N \N \N \N 75399 \N genus Chamissoa \N \N \N \N \N 75400 D.hircicornis Disa Disa hircicornis \N \N \N \N \N 75401 M.cedarmontana Moraea Moraea cedarmontana \N \N \N \N \N 75402 B.calcitrapa Blepharis Blepharis calcitrapa \N \N \N \N \N 75403 A.carambola Averrhoa Averrhoa carambola \N \N \N \N \N 75404 A.praelongus Astragalus Astragalus praelongus \N \N \N \N \N 75405 P.arborea Prunus Prunus arborea \N \N \N \N \N 75406 P.marcida Poa Poa marcida \N \N \N \N \N 75407 M.CVM-2007 Miconia Miconia aff. radulifolia CVM-2007 \N \N \N \N \N 75408 N.rupicola Nemesia Nemesia rupicola \N \N \N \N \N 75409 P.angustifolia Palicourea Palicourea angustifolia \N \N \N \N \N 75410 \N subspecies Primula elatior subsp. meyeri \N \N \N \N \N 75411 C.glabra Chelone Chelone glabra snakehead,turtlehead \N \N \N \N 75412 V.laricicola Viola Viola laricicola \N \N \N \N \N 75413 M.microphylla Maireana Maireana microphylla \N \N \N \N \N 75414 \N genus Evodiopanax \N \N \N \N \N 75415 F.foetidissima Ferula Ferula foetidissima \N \N \N \N \N 75416 G.oblanceolata Gaertnera Gaertnera oblanceolata \N \N \N \N \N 75417 \N genus Goethalsia \N \N \N \N \N 75418 B.funckii Bulbostylis Bulbostylis funckii \N \N \N \N \N 75419 B.himalaicum Bryocarpum Bryocarpum himalaicum \N \N \N \N \N 75420 S.saxatilis Salix Salix saxatilis \N \N \N \N \N 75421 C.chilensis Cuscuta Cuscuta chilensis \N \N \N \N \N 75422 P.gonjianii Pterocactus Pterocactus gonjianii \N \N \N \N \N 75423 P.sachalinensis Primula Primula sachalinensis \N \N \N \N \N 75424 \N varietas Cyrtandra ootensis var. mollissima \N \N \N \N \N 75425 S.brachyptera Sclerolaena Sclerolaena brachyptera \N \N \N \N \N 75426 S.altissima Suaeda Suaeda altissima \N \N \N \N \N 75427 R.hunanense Rhododendron Rhododendron hunanense \N \N \N \N \N 75428 O.arctica Oxytropis Oxytropis arctica \N \N \N \N \N 75429 C.gossypina Calceolaria Calceolaria gossypina \N \N \N \N \N 75430 P.acutifolia Paraboea Paraboea acutifolia \N \N \N \N \N 75431 B.tenuifolia Begonia Begonia tenuifolia \N \N \N \N \N 75432 H.horrida Herrickia Herrickia horrida \N \N \N \N \N 75433 S.5248 Schefflera Schefflera aff. lorentzii Lowry 5248 \N \N \N \N \N 75434 S.pendulus Senecio Senecio pendulus \N \N \N \N \N 75435 \N genus Stilbe \N \N \N \N \N 75436 P.microcarpa Physalis Physalis microcarpa \N \N \N \N \N 75437 M.farwellii Myriophyllum Myriophyllum farwellii \N \N \N \N \N 75438 V.stricta Verbena Verbena stricta \N \N \N \N \N 75439 \N genus Bombycilaena \N \N \N \N \N 75440 P.parviflora Plakothira Plakothira parviflora \N \N \N \N \N 75441 P.intermedia Pearcea Pearcea intermedia \N \N \N \N \N 75442 L.equestre Leionema Leionema equestre \N \N \N \N \N 75443 L.chrysanthus Lupinus Lupinus chrysanthus \N \N \N \N \N 75444 F.miliacea Fimbristylis Fimbristylis miliacea \N \N \N \N \N 75445 L.lanceolatus Lonchocarpus Lonchocarpus lanceolatus \N \N \N \N \N 75446 S.ciliaris Sida Sida ciliaris \N \N \N \N \N 75447 P.cymigera Psydrax Psydrax cymigera \N \N \N \N \N 75448 C.kerrii Cattleya Cattleya kerrii \N \N \N \N \N 75449 S.undulata Schelhammera Schelhammera undulata \N \N \N \N \N 75450 A.cannabifolium Aconitum Aconitum cannabifolium \N \N \N \N \N 75451 A.guangdongensis Alpinia Alpinia guangdongensis \N \N \N \N \N 75452 P.latilabris Platanthera Platanthera latilabris \N \N \N \N \N 75453 M.dicoccum Myriophyllum Myriophyllum dicoccum \N \N \N \N \N 75454 G.deserticola Gladiolus Gladiolus deserticola \N \N \N \N \N 75455 \N varietas Carex sp. JAD-2009a \N \N \N \N \N 75456 B.cretica Bryonia Bryonia cretica \N \N \N \N \N 75457 A.teretifolia Adenogramma Adenogramma teretifolia \N \N \N \N \N 75458 B.reichenbachiana Benzingia Benzingia reichenbachiana \N \N \N \N \N 75459 F.bisumbellata Fimbristylis Fimbristylis bisumbellata \N \N \N \N \N 75460 B.australis Baptisia Baptisia australis \N \N \N \N \N 75461 A.longifolia Acis Acis longifolia \N \N \N \N \N 75462 E.tettensis Euphorbia Euphorbia tettensis \N \N \N \N \N 75463 M.pendula Maxillaria Maxillaria pendula \N \N \N \N \N 75464 O.grandiflorum Oncosiphon Oncosiphon grandiflorum \N \N \N \N \N 75465 P.petiolaris Prescottia Prescottia petiolaris \N \N \N \N \N 75466 P.flaviflora Psychotria Psychotria flaviflora \N \N \N \N \N 75467 \N varietas Cucurbita argyrosperma var. callicarpa \N \N \N \N \N 75468 B.sessilis Banksia Banksia sessilis \N \N \N \N \N 75469 E.pleurostylioides Euonymus Euonymus pleurostylioides \N \N \N \N \N 75470 A.rubra Astilbe Astilbe rubra \N \N \N \N \N 75471 \N genus Venegasia \N \N \N \N \N 75472 \N family Loranthaceae catkin mistletoe family,showy mistletoe family \N \N \N \N 75473 P.coriacea Pseuduvaria Pseuduvaria coriacea \N \N \N \N \N 75474 \N subspecies Limnanthes douglasii subsp. striata \N \N \N \N \N 75475 S.moavi Stuhlmannia Stuhlmannia moavi \N \N \N \N \N 75476 A.cumingiana Aristida Aristida cumingiana \N \N \N \N \N 75477 C.molinensis Cedrela Cedrela molinensis \N \N \N \N \N 75478 P.bicolor Piptochaetium Piptochaetium bicolor \N \N \N \N \N 75479 M.arborescens Mascarenhasia Mascarenhasia arborescens \N \N \N \N \N 75480 T.uliginosa Tamilnadia Tamilnadia uliginosa \N \N \N \N \N 75481 A.anthoxanthoides Aristida Aristida anthoxanthoides \N \N \N \N \N 75482 E.nudum Eriogonum Eriogonum nudum \N \N \N \N \N 75483 H.europaeus Hordelymus Hordelymus europaeus wood-barley \N \N \N \N 75484 T.ufoensis Trianthema Trianthema ufoensis \N \N \N \N \N 75485 C.goeringii Cymbidium Cymbidium goeringii \N \N \N \N \N 75486 P.atriplicifolia Perovskia Perovskia atriplicifolia \N \N \N \N \N 75487 M.6238 Maxillaria Maxillaria cf. microphyton Atwood & Whitten 6238 \N \N \N \N \N 75488 E.cumulata Euphorbia Euphorbia cumulata \N \N \N \N \N 75489 S.socotraensis Scaevola Scaevola socotraensis \N \N \N \N \N 75490 C.microcarpus Croton Croton microcarpus \N \N \N \N \N 75491 T.fruticosa Tetragonia Tetragonia fruticosa \N \N \N \N \N 75492 M.remyi Melanthera Melanthera remyi \N \N \N \N \N 75493 S.sootepensis Scurrula Scurrula sootepensis \N \N \N \N \N 75494 H.davidcummingii Hoya Hoya davidcummingii \N \N \N \N \N 75495 S.durangensis Schiedeella Schiedeella durangensis \N \N \N \N \N 75496 M.watsonii Mimosa Mimosa watsonii \N \N \N \N \N 75497 \N subspecies Leptinella pectinata subsp. villosa \N \N \N \N \N 75498 S.pygmaeus Siloxerus Siloxerus pygmaeus \N \N \N \N \N 75499 N.plicata Nanuza Nanuza plicata \N \N \N \N \N 75500 \N genus Woollsia \N \N \N \N \N 75501 S.ambigua Sebaea Sebaea ambigua \N \N \N \N \N 75502 P.inaequale Piper Piper inaequale \N \N \N \N \N 75503 E.nitentifolius Elaeocarpus Elaeocarpus nitentifolius \N \N \N \N \N 75504 C.'Ecuagenera' Coccineorchis Coccineorchis sp. 'Ecuagenera' \N \N \N \N \N 75505 T.speciosissima Telopea Telopea speciosissima \N \N \N \N \N 75506 R.gardneri Rhizanthella Rhizanthella gardneri \N \N \N \N \N 75507 \N genus Diplotropis \N \N \N \N \N 75508 G.spathulata Globba Globba spathulata \N \N \N \N \N 75509 P.macrophyllum Prionosciadium Prionosciadium macrophyllum \N \N \N \N \N 75510 H.mazarunensis Heterostemon Heterostemon mazarunensis \N \N \N \N \N 75511 I.montbretiana Inula Inula montbretiana \N \N \N \N \N 75512 \N genus Erianthecium \N \N \N \N \N 75513 C.physocalyx Cyclocheilon Cyclocheilon physocalyx \N \N \N \N \N 75514 E.stricta Euphorbia Euphorbia stricta \N \N \N \N \N 75515 \N genus Eremaea \N \N \N \N \N 75516 B.tambensis Besleria Besleria tambensis \N \N \N \N \N 75517 R.palaestinum Rheum Rheum palaestinum \N \N \N \N \N 75518 D.barbata Draba Draba barbata \N \N \N \N \N 75519 R.tuberosum Rhodosciadium Rhodosciadium tuberosum \N \N \N \N \N 75520 P.stenochila Pterostylis Pterostylis stenochila \N \N \N \N \N 75521 G.sodiroi Govenia Govenia sodiroi \N \N \N \N \N 75522 R.inerme Ribes Ribes inerme white stem gooseberry \N \N \N \N 75523 H.pygmaea Halopeplis Halopeplis pygmaea \N \N \N \N \N 75524 \N genus Glandonia \N \N \N \N \N 75525 N.floribunda Nemesia Nemesia floribunda \N \N \N \N \N 75526 P.2276' Petrocoptis Petrocoptis sp. 'Oxelman 2276' \N \N \N \N \N 75527 C.laevigata Crotalaria Crotalaria laevigata \N \N \N \N \N 75528 L.depressa Lobelia Lobelia depressa \N \N \N \N \N 75529 M.spinescens Menodora Menodora spinescens \N \N \N \N \N 75530 S.procumbens Sebaea Sebaea procumbens \N \N \N \N \N 75531 P.nigricans Pterostylis Pterostylis nigricans \N \N \N \N \N 75532 C.fontanesii Cytisus Cytisus fontanesii bolina \N \N \N \N 75533 R.230(HITBC) Roscoea Roscoea sp. XYM 230(HITBC) \N \N \N \N \N 75534 E.heteromorphus Echinops Echinops heteromorphus \N \N \N \N \N 75535 R.tetraphylla Rauvolfia Rauvolfia tetraphylla \N \N \N \N \N 75536 \N subspecies Gentiana bavarica subsp. subacaulis \N \N \N \N \N 75537 H.chilense Hordeum Hordeum chilense \N \N \N \N \N 75538 \N varietas Linociera incurvifolia var. planifolia \N \N \N \N \N 75539 B.qingchengshanensis Bashania Bashania qingchengshanensis \N \N \N \N \N 75540 C.monilifera Chrysanthemoides Chrysanthemoides monilifera \N \N \N \N \N 75541 S.munzii Salvia Salvia munzii \N \N \N \N \N 75542 S.polycephala Stevia Stevia polycephala \N \N \N \N \N 75543 T.caespitosum Thinopyrum Thinopyrum caespitosum \N \N \N \N \N 75544 P.tenuis Psilactis Psilactis tenuis \N \N \N \N \N 75545 A.rubricaulis Ascarina Ascarina rubricaulis \N \N \N \N \N 75546 \N subfamily Dombeyoideae \N \N \N \N \N 75547 \N genus Bupleurum \N \N \N \N \N 75548 A.watsonii Antirrhinum Antirrhinum watsonii \N \N \N \N \N 75549 T.catharinensis Tabernaemontana Tabernaemontana catharinensis \N \N \N \N \N 75550 A.panamensis Aegiphila Aegiphila panamensis \N \N \N \N \N 75551 A.nobile Aeonium Aeonium nobile \N \N \N \N \N 75552 C.championii Connarus Connarus championii \N \N \N \N \N 75553 P.furfuracea Pedicularis Pedicularis furfuracea \N \N \N \N \N 75554 P.glochidiata Polygala Polygala glochidiata \N \N \N \N \N 75555 \N genus Regelia \N \N \N \N \N 75556 L.1015 Lecanorchis Lecanorchis sp. Cameron 1015 \N \N \N \N \N 75557 P.setifera Polystachya Polystachya setifera \N \N \N \N \N 75558 \N genus Guatteriella \N \N \N \N \N 75559 P.jemtlandica Poa Poa jemtlandica \N \N \N \N \N 75560 S.aurantiacum Stenomesson Stenomesson aurantiacum \N \N \N \N \N 75561 N.rubrastra Nasa Nasa rubrastra \N \N \N \N \N 75562 P.villosa Psammochloa Psammochloa villosa \N \N \N \N \N 75563 H.rossouwii Haworthia Haworthia rossouwii \N \N \N \N \N 75564 C.pulcherrimus Calolisianthus Calolisianthus pulcherrimus \N \N \N \N \N 75565 C.angustifolia Chomelia Chomelia angustifolia \N \N \N \N \N 75566 A.polyantha Alpinia Alpinia polyantha \N \N \N \N \N 75567 \N family Paracryphiaceae \N \N \N \N \N 75568 I.decidua Ilex Ilex decidua \N \N \N \N \N 75569 P.melanocarpa Paracoffea Paracoffea melanocarpa \N \N \N \N \N 75570 G.striata Galactia Galactia striata \N \N \N \N \N 75571 H.bowlesioides Hydrocotyle Hydrocotyle bowlesioides \N \N \N \N \N 75572 D.ornithantha Disa Disa ornithantha \N \N \N \N \N 75573 E.soejartoi Ectopopterys Ectopopterys soejartoi \N \N \N \N \N 75574 D.bracteosa Dicella Dicella bracteosa \N \N \N \N \N 75575 A.tenuicaule Allium Allium tenuicaule \N \N \N \N \N 75576 T.lehmanniana Tulipa Tulipa lehmanniana \N \N \N \N \N 75577 P.castoreum Pediomelum Pediomelum castoreum \N \N \N \N \N 75578 B.striatella Bulbostylis Bulbostylis striatella \N \N \N \N \N 75580 T.gunnii Trochocarpa Trochocarpa gunnii \N \N \N \N \N 75581 \N subspecies Primula clevelandii var. insularis \N \N \N \N \N 75582 S.verrucisurcula Symplocos Symplocos verrucisurcula \N \N \N \N \N 75583 Q.alba Quercus Quercus alba white oak \N \N \N \N 75584 T.meyeri Tropaeolum Tropaeolum meyeri \N \N \N \N \N 75585 S.vahlii Symphyotrichum Symphyotrichum vahlii \N \N \N \N \N 75586 H.bilobata Hoya Hoya bilobata \N \N \N \N \N 75587 H.occidentalis Hesperalbizia Hesperalbizia occidentalis \N \N \N \N \N 75588 \N genus Swinglea \N \N \N \N \N 75589 B.atropurpureum Bulbophyllum Bulbophyllum atropurpureum \N \N \N \N \N 75590 N.cardinea Neoschumannia Neoschumannia cardinea \N \N \N \N \N 75591 B.lamellata Byblis Byblis lamellata \N \N \N \N \N 75592 M.rostrata Momordica Momordica rostrata \N \N \N \N \N 75593 G.propinqua Globba Globba propinqua \N \N \N \N \N 75594 A.AL-2003 Allium Allium sp. AL-2003 \N \N \N \N \N 75595 L.densiflorum Lepidium Lepidium densiflorum prairie peppergrass \N \N \N \N 75596 \N genus Tribulus \N \N \N \N \N 75597 R.borealis Rulingia Rulingia borealis \N \N \N \N \N 75598 P.spectabilis Primula Primula spectabilis \N \N \N \N \N 75599 P.brasiliensis Paloue Paloue brasiliensis \N \N \N \N \N 75600 \N varietas Cliffortia polygonifolia var. polygonifolia \N \N \N \N \N 75601 J.mollis Juglans Juglans mollis \N \N \N \N \N 75602 G.taylorianus Gonolobus Gonolobus taylorianus \N \N \N \N \N 75603 \N genus Brachypodium false bromes \N \N \N \N 75604 W.brachybotrys Wisteria Wisteria brachybotrys \N \N \N \N \N 75605 C.humilis Crotalaria Crotalaria humilis \N \N \N \N \N 75606 \N genus Sphyrospermum \N \N \N \N \N 75607 \N suborder Apiineae \N \N \N \N \N 75608 G.viridiflora Gesneria Gesneria viridiflora \N \N \N \N \N 75609 S.egregia Saxifraga Saxifraga egregia \N \N \N \N \N 75610 P.glabrifolia Philgamia Philgamia glabrifolia \N \N \N \N \N 75611 T.integrifolia Tacca Tacca integrifolia batplant,si xu ju ruo shu \N \N \N \N 75612 E.sebsebei Euphorbia Euphorbia sebsebei \N \N \N \N \N 75613 P.densa Poa Poa densa \N \N \N \N \N 75614 \N genus Oreocome \N \N \N \N \N 75615 T.dimococcum Triticum Triticum x dimococcum \N \N \N \N \N 75616 P.arifolia Persicaria Persicaria arifolia \N \N \N \N \N 75617 M.2558 Maxillaria Maxillaria aff. ponerantha Whitten 2558 \N \N \N \N \N 75618 H.AS-2008 Hippeastrum Hippeastrum sp. AS-2008 \N \N \N \N \N 75619 \N genus Graffenrieda \N \N \N \N \N 75620 C.montanum Cynoglossum Cynoglossum montanum \N \N \N \N \N 75621 B.augustinei Begonia Begonia augustinei \N \N \N \N \N 75622 \N genus Layia tidytips \N \N \N \N 75623 A.glandulosa Andryala Andryala glandulosa \N \N \N \N \N 75624 S.baicalensis Stipa Stipa baicalensis \N \N \N \N \N 75625 S.barbata Setaria Setaria barbata bristly foxtail grass \N \N \N \N 75626 W.pygmaea Wurmbea Wurmbea pygmaea \N \N \N \N \N 75627 A.esterhuyseniae Aspalathus Aspalathus esterhuyseniae \N \N \N \N \N 75628 \N genus Proboscidea \N \N \N \N \N 75629 L.yunnanensis Lloydia Lloydia yunnanensis \N \N \N \N \N 75630 T.SH-2010 Torenia Torenia sp. SH-2010 \N \N \N \N \N 75631 F.americana Ficus Ficus americana \N \N \N \N \N 75632 E.cheiri Erysimum Erysimum cheiri wallflower \N \N \N \N 75633 M.lichtensteinii Metalasia Metalasia lichtensteinii \N \N \N \N \N 75634 C.latifolia Collinsia Collinsia latifolia \N \N \N \N \N 75635 \N genus Oeceoclades \N \N \N \N \N 75636 M.induta Macaranga Macaranga induta \N \N \N \N \N 75637 C.zoutpansbergense Conostomium Conostomium zoutpansbergense \N \N \N \N \N 75638 \N genus Schizoboea \N \N \N \N \N 75639 M.uniflorum Macrotyloma Macrotyloma uniflorum Madras gram,horse gram,kulthi \N \N \N \N 75640 E.amazonica Eucharis Eucharis amazonica \N \N \N \N \N 75641 P.velutina Porana Porana velutina \N \N \N \N \N 75642 C.peterae Clematis Clematis peterae \N \N \N \N \N 75643 Z.leptophylla Zornia Zornia leptophylla \N \N \N \N \N 75644 C.spicata Corylopsis Corylopsis spicata \N \N \N \N \N 75645 R.magniflora Ruellia Ruellia magniflora \N \N \N \N \N 75646 C.chinense Crossostephium Crossostephium chinense \N \N \N \N \N 75647 R.diffusa Rafnia Rafnia diffusa \N \N \N \N \N 75648 P.weyrichii Persicaria Persicaria weyrichii \N \N \N \N \N 75649 \N subfamily Rosoideae \N \N \N \N \N 75650 M.menabeensis Mimosa Mimosa menabeensis \N \N \N \N \N 75651 M.appressa Muhlenbergia Muhlenbergia appressa \N \N \N \N \N 75652 L.serpyllifolia Lysimachia Lysimachia serpyllifolia \N \N \N \N \N 75653 C.modesta Clarkia Clarkia modesta \N \N \N \N \N 75654 \N varietas Festuca subulata var. japonica \N \N \N \N \N 75655 C.aestuaria Cochlearia Cochlearia aestuaria \N \N \N \N \N 75656 \N varietas Spiraea pubescens var. pubescens \N \N \N \N \N 75657 P.glaucum Papaver Papaver glaucum tulip poppy \N \N \N \N 75658 Z.esquirolii Zanthoxylum Zanthoxylum esquirolii \N \N \N \N \N 75659 P.teretifolius Phemeranthus Phemeranthus teretifolius \N \N \N \N \N 75660 O.amblyosepala Oxalis Oxalis amblyosepala \N \N \N \N \N 75661 S.amazonensis Sabicea Sabicea amazonensis \N \N \N \N \N 75662 M.rugosa Metrosideros Metrosideros rugosa \N \N \N \N \N 75663 \N genus Globularia \N \N \N \N \N 75664 S.densiflora Selago Selago densiflora \N \N \N \N \N 75665 S.burjatica Salix Salix burjatica \N \N \N \N \N 75666 P.SH-2010 Psychotria Psychotria sp. SH-2010 \N \N \N \N \N 75667 D.minthornii Deinandra Deinandra minthornii \N \N \N \N \N 75668 \N genus Chukrasia \N \N \N \N \N 75669 I.hispanica Imperatoria Imperatoria hispanica \N \N \N \N \N 75670 H.crinifera Habenaria Habenaria crinifera \N \N \N \N \N 75671 P.klotzschianus Paepalanthus Paepalanthus klotzschianus \N \N \N \N \N 75672 B.curviscapa Babiana Babiana curviscapa \N \N \N \N \N 75673 R.1618 Rudolfiella Rudolfiella sp. Whitten 1618 \N \N \N \N \N 75674 \N genus Dichaetophora \N \N \N \N \N 75675 \N genus Polyzygus \N \N \N \N \N 75676 C.platycarpos Caucalis Caucalis platycarpos \N \N \N \N \N 75677 A.maculatus Adromischus Adromischus maculatus \N \N \N \N \N 75678 C.siamensis Christisonia Christisonia siamensis \N \N \N \N \N 75679 P.insigne Paphiopedilum Paphiopedilum insigne \N \N \N \N \N 75680 G.sedifolia Gentiana Gentiana sedifolia \N \N \N \N \N 75681 S.xanti Sida Sida xanti \N \N \N \N \N 75682 T.daniellii Thaumatococcus Thaumatococcus daniellii katemfe,miracle fruit \N \N \N \N 75683 P.flavoviride Piper Piper flavoviride \N \N \N \N \N 75684 \N genus Psorospermum \N \N \N \N \N 75685 H.onosmopsis Hieracium Hieracium onosmopsis \N \N \N \N \N 75686 C.3849 Clusia Clusia sp. JA 3849 \N \N \N \N \N 75687 B.vieillardii Burretiokentia Burretiokentia vieillardii \N \N \N \N \N 75688 N.saximontana Navarretia Navarretia saximontana \N \N \N \N \N 75689 T.JK3752 unclassified Taraxacum Taraxacum (sect. Palustria) sp. JK3752 \N \N \N \N \N 75690 O.rubicundus Orthosiphon Orthosiphon rubicundus \N \N \N \N \N 75691 H.WB1068 Hydriastele Hydriastele sp. C WB1068 \N \N \N \N \N 75692 H.sangal Hopea Hopea sangal \N \N \N \N \N 75693 P.retrofractum Piper Piper retrofractum Javanese long pepper \N \N \N \N 75694 S.linnaeana Silene Silene linnaeana \N \N \N \N \N 75695 R.javanica Rhuacophila Rhuacophila javanica \N \N \N \N \N 75696 \N genus Duperrea \N \N \N \N \N 75697 M.spectabilis Myrcia Myrcia spectabilis \N \N \N \N \N 75698 S.JTM-2009b Speculantha Speculantha sp. JTM-2009b \N \N \N \N \N 75700 P.36852 Pimelea Pimelea cf. oreophila Norton 36852 \N \N \N \N \N 75701 \N subspecies Rotheca myricoides subsp. myricoides \N \N \N \N \N 75702 C.00-51 Cistanthe Cistanthe sp. Hershkovitz 00-51 \N \N \N \N \N 75703 C.hindsioides Chamaepentas Chamaepentas hindsioides \N \N \N \N \N 75704 \N genus Catenulina \N \N \N \N \N 75705 D.spectabile Dysoxylum Dysoxylum spectabile \N \N \N \N \N 75706 A.edulis Alibertia Alibertia edulis \N \N \N \N \N 75707 H.nervosa Haplocarpha Haplocarpha nervosa \N \N \N \N \N 75708 D.2114 Dierama Dierama sp. LHMS 2114 \N \N \N \N \N 75709 C.longissima Catalpa Catalpa longissima French-oak,mastwood \N \N \N \N 75710 \N genus Zameioscirpus \N \N \N \N \N 75711 D.hirsuta Dischidia Dischidia hirsuta \N \N \N \N \N 75712 L.biflora Lycianthes Lycianthes biflora hong si xian,mejiro-hozuki \N \N \N \N 75713 \N varietas Pimelea imbricata var. piligera \N \N \N \N \N 75714 T.riograndense Trifolium Trifolium riograndense \N \N \N \N \N 75715 V.inconspicua Viola Viola inconspicua \N \N \N \N \N 75716 Z.begoniifolia Zippelia Zippelia begoniifolia \N \N \N \N \N 75717 U.monanthos Utricularia Utricularia monanthos \N \N \N \N \N 75718 N.305 Nothoscordum Nothoscordum sp. 305 \N \N \N \N \N 75719 L.pungens Litsea Litsea pungens \N \N \N \N \N 75720 D.serrata Donnellsmithia Donnellsmithia serrata \N \N \N \N \N 75721 H.ghiesbreghtii Hoffmannia Hoffmannia ghiesbreghtii \N \N \N \N \N 75722 \N genus Leonardendron \N \N \N \N \N 75723 B.nyasica Burttdavya Burttdavya nyasica \N \N \N \N \N 75724 C.alba Carex Carex alba \N \N \N \N \N 75725 M.schistocarpa Maireana Maireana schistocarpa \N \N \N \N \N 75726 A.globosa Allocasuarina Allocasuarina globosa \N \N \N \N \N 75727 C.borinquensis Cordia Cordia borinquensis \N \N \N \N \N 75728 A.eardleyae Atriplex Atriplex eardleyae \N \N \N \N \N 75729 M.grandis Muhlenbergia Muhlenbergia grandis \N \N \N \N \N 75730 E.brockwayi Eucalyptus Eucalyptus brockwayi \N \N \N \N \N 75731 P.cubensis Pachyanthus Pachyanthus cubensis \N \N \N \N \N 75732 A.spanospicula Aristida Aristida spanospicula \N \N \N \N \N 75733 \N genus Porterandia \N \N \N \N \N 75734 I.depressa Indigofera Indigofera depressa \N \N \N \N \N 75735 \N tribe Calligoneae \N \N \N \N \N 75736 P.floccosa Phlomis Phlomis floccosa \N \N \N \N \N 75737 A.protanthera Ariopsis Ariopsis protanthera \N \N \N \N \N 75738 L.shevockii Lomatium Lomatium shevockii Owens Peak desertparsley \N \N \N \N 75739 \N genus Trisetella \N \N \N \N \N 75740 \N subspecies Crocus cancellatus subsp. cancellatus \N \N \N \N \N 75741 \N genus Flabellariopsis \N \N \N \N \N 75742 C.savannarum Caraipa Caraipa savannarum \N \N \N \N \N 75743 O.engleri Ozoroa Ozoroa engleri \N \N \N \N \N 75744 M.clavata Macaranga Macaranga clavata \N \N \N \N \N 75745 \N subspecies Disperis purpurata subsp. purpurata \N \N \N \N \N 75746 \N genus Mimulopsis \N \N \N \N \N 75747 H.supinum Heliotropium Heliotropium supinum \N \N \N \N \N 75748 A.listeri Arenga Arenga listeri \N \N \N \N \N 75749 \N tribe Arundineae \N \N \N \N \N 75750 P.caylae Pelargonium Pelargonium caylae \N \N \N \N \N 75751 R.cephalotes Rhynchospora Rhynchospora cephalotes \N \N \N \N \N 75752 A.arguta Actinidia Actinidia arguta \N \N \N \N \N 75753 \N varietas Nicotiana noctiflora var. albiflora \N \N \N \N \N 75754 V.intermedia Vernonia Vernonia intermedia \N \N \N \N \N 75755 G.sylvaticum Geranium Geranium sylvaticum \N \N \N \N \N 75756 P.rhodopea Pilosella Pilosella rhodopea \N \N \N \N \N 75757 M.innarrabilis Macrocarpaea Macrocarpaea innarrabilis \N \N \N \N \N 75758 \N genus Myrosma \N \N \N \N \N 75759 \N genus Arnoseris \N \N \N \N \N 75760 S.colombiana Sievekingia Sievekingia colombiana \N \N \N \N \N 75761 H.cordatum Hymenostephium Hymenostephium cordatum \N \N \N \N \N 75762 T.bahiensis Turnera Turnera bahiensis \N \N \N \N \N 75763 R.meyeri Ranunculus Ranunculus meyeri \N \N \N \N \N 75764 R.M Raoulia Raoulia sp. M \N \N \N \N \N 75765 \N subspecies Aristida congesta subsp. barbicollis \N \N \N \N \N 75766 S.creticum Smyrnium Smyrnium creticum \N \N \N \N \N 75767 G.grandiflorus Gonolobus Gonolobus grandiflorus \N \N \N \N \N 75768 S.disarticulata Sclerostegia Sclerostegia disarticulata \N \N \N \N \N 75769 P.haydenii Penstemon Penstemon haydenii \N \N \N \N \N 75770 O.grabowskii Ooia Ooia grabowskii \N \N \N \N \N 75771 E.gregaria Euphorbia Euphorbia gregaria \N \N \N \N \N 75772 \N varietas Ceanothus greggii var. vestitus \N \N \N \N \N 75773 S.mairetianus Senecio Senecio mairetianus \N \N \N \N \N 75774 M.faberi Myrsine Myrsine faberi \N \N \N \N \N 75775 M.ulicinum Mulinum Mulinum ulicinum \N \N \N \N \N 75776 S.seriata Setaria Setaria seriata \N \N \N \N \N 75777 G.australe Gossypium Gossypium australe \N \N \N \N \N 75778 V.trichophylla Viguiera Viguiera trichophylla \N \N \N \N \N 75779 P.nipponica Prunus Prunus nipponica Japanese alpine cherry \N \N \N \N 75780 S.confusus Schoenoplectus Schoenoplectus confusus \N \N \N \N \N 75781 Z.ramosissimum Zygophyllum Zygophyllum ramosissimum \N \N \N \N \N 75782 S.barbiger Streptanthus Streptanthus barbiger \N \N \N \N \N 75783 C.campestris Camissonia Camissonia campestris Mojave suncup \N \N \N \N 75784 C.anthoxanthea Carex Carex anthoxanthea \N \N \N \N \N 75785 S.GS-2009 Spathelia Spathelia sp. GS-2009 \N \N \N \N \N 75786 P.lunulibracteatum Piper Piper lunulibracteatum \N \N \N \N \N 75787 O.jacquinii Oxytropis Oxytropis jacquinii \N \N \N \N \N 75788 \N species group Pentameris sect. Pentameris \N \N \N \N \N 75789 \N genus Ventilago \N \N \N \N \N 75790 H.pauciflorus Helianthus Helianthus pauciflorus \N \N \N \N \N 75791 P.weberi Pachycereus Pachycereus weberi \N \N \N \N \N 75792 \N genus Hua \N \N \N \N \N 75793 L.glandulosa Lippia Lippia glandulosa \N \N \N \N \N 75794 P.uncinata Polygala Polygala uncinata \N \N \N \N \N 75795 \N genus Deinocheilos \N \N \N \N \N 75796 A.Bo07 Alocasia Alocasia sp. Bo07 \N \N \N \N \N 75797 S.montana Salsola Salsola montana \N \N \N \N \N 75798 Q.griffithii Quercus Quercus griffithii \N \N \N \N \N 75799 R.trigyna Raspalia Raspalia trigyna \N \N \N \N \N 75800 S.reinholdii Silene Silene reinholdii Reinhold's campion \N \N \N \N 75801 C.kawakamii Codonopsis Codonopsis kawakamii \N \N \N \N \N 75802 P.alpicola Pilosella Pilosella alpicola \N \N \N \N \N 75803 C.pusilla Cleistes Cleistes pusilla \N \N \N \N \N 75804 G.3660 Garcinia Garcinia sp. JA 3660 \N \N \N \N \N 75805 \N genus Hosta plantain lilies \N \N \N \N 75806 \N genus Minuartia \N \N \N \N \N 75807 O.aurea Oreocharis Oreocharis aurea \N \N \N \N \N 75808 \N genus Crossandrella \N \N \N \N \N 75809 S.incarnata Stevenia Stevenia incarnata \N \N \N \N \N 75810 K.sonorae Krameria Krameria sonorae \N \N \N \N \N 75811 \N subspecies Limnanthes douglasii subsp. sulphurea \N \N \N \N \N 75812 C.latifolia Cupania Cupania latifolia \N \N \N \N \N 75813 \N varietas Sisymbrium luteum var. glabrum \N \N \N \N \N 75814 P.sericiflora Paliavana Paliavana sericiflora \N \N \N \N \N 75815 P.phylicoides Pimelea Pimelea phylicoides \N \N \N \N \N 75816 \N genus Courtoisina \N \N \N \N \N 75817 L.rigidus Lathyrus Lathyrus rigidus \N \N \N \N \N 75818 C.iljinii Chenopodium Chenopodium iljinii \N \N \N \N \N 75819 E.alatavica Euphorbia Euphorbia alatavica \N \N \N \N \N 75820 M.fontana Montia Montia fontana \N \N \N \N \N 75821 C.acuminatum Chenopodium Chenopodium acuminatum \N \N \N \N \N 75822 A.flagellifera Aciachne Aciachne flagellifera \N \N \N \N \N 75823 E.endotrichus Echinops Echinops endotrichus \N \N \N \N \N 75824 P.insularis Procris Procris insularis \N \N \N \N \N 75825 \N genus Physospermopsis \N \N \N \N \N 75826 L.pauciflora Lithachne Lithachne pauciflora \N \N \N \N \N 75827 S.glutinosus Senecio Senecio glutinosus \N \N \N \N \N 75828 \N genus Rhynchotechum \N \N \N \N \N 75829 D.inermis Diceratella Diceratella inermis \N \N \N \N \N 75830 C.ciliaris Calamus Calamus ciliaris \N \N \N \N \N 75831 T.montana Triteleia Triteleia montana \N \N \N \N \N 75832 C.trichocephala Centaurea Centaurea trichocephala \N \N \N \N \N 75833 A.NSW409420 Astroloma Astroloma sp. NSW409420 \N \N \N \N \N 75834 S.pulcherrima Sarcocapnos Sarcocapnos pulcherrima \N \N \N \N \N 75835 T.lisaeoides Turgenia Turgenia lisaeoides \N \N \N \N \N 75836 C.amabilis Chamaedorea Chamaedorea amabilis \N \N \N \N \N 75837 \N subspecies Primula bulleyana subsp. beesiana \N \N \N \N \N 75838 V.cryptantha Vellozia Vellozia cryptantha \N \N \N \N \N 75839 C.compacta Crassula Crassula compacta \N \N \N \N \N 75840 C.allenii Costus Costus allenii \N \N \N \N \N 75841 B.purpureofolia Begonia Begonia purpureofolia \N \N \N \N \N 75842 A.rugosa Alseodaphne Alseodaphne rugosa \N \N \N \N \N 75843 \N subspecies Echinopsis atacamensis subsp. pasacana \N \N \N \N \N 75844 P.incarnata Pyrola Pyrola incarnata \N \N \N \N \N 75845 \N genus Tamridaea \N \N \N \N \N 75846 P.peruviana Phalaris Phalaris peruviana \N \N \N \N \N 75847 P.capillifolia Postiella Postiella capillifolia \N \N \N \N \N 75848 M.tamnifolia Matelea Matelea tamnifolia \N \N \N \N \N 75849 P.parodii Pteropepon Pteropepon parodii \N \N \N \N \N 75850 E.CEH-2009 Eleocharis Eleocharis cf. obtusitrigona CEH-2009 \N \N \N \N \N 75851 P.carolina Phlox Phlox carolina \N \N \N \N \N 75852 \N tribe Pterosporeae \N \N \N \N \N 75853 T.siphilitica Tabernaemontana Tabernaemontana siphilitica \N \N \N \N \N 75854 R.tomentosum Rhytidophyllum Rhytidophyllum tomentosum \N \N \N \N \N 75855 M.dalyi Mimosa Mimosa dalyi \N \N \N \N \N 75856 N.gracilis Nepenthes Nepenthes gracilis \N \N \N \N \N 75857 O.pulchella Orobanche Orobanche pulchella \N \N \N \N \N 75858 V.reflexa Vepris Vepris reflexa \N \N \N \N \N 75859 A.cochinchinensis Ancistrocladus Ancistrocladus cochinchinensis \N \N \N \N \N 75860 P.ovatus Penstemon Penstemon ovatus \N \N \N \N \N 75861 E.planiflora Echidnopsis Echidnopsis planiflora \N \N \N \N \N 75862 O.corymbosa Oldenlandia Oldenlandia corymbosa \N \N \N \N \N 75863 L.eucalyptifolium Leucadendron Leucadendron eucalyptifolium \N \N \N \N \N 75864 T.inflata Thermopsis Thermopsis inflata \N \N \N \N \N 75865 C.sessiliflorus Calyptrocalyx Calyptrocalyx sessiliflorus \N \N \N \N \N 75866 M.maingayi Myristica Myristica maingayi \N \N \N \N \N 75867 H.1521 Humbertacalia Humbertacalia sp. 1521 \N \N \N \N \N 75868 C.subfusca Carex Carex subfusca \N \N \N \N \N 75869 S.acre Syzygium Syzygium acre \N \N \N \N \N 75870 B.taipeiensis Begonia Begonia taipeiensis \N \N \N \N \N 75871 H.sprucei Helianthostylis Helianthostylis sprucei \N \N \N \N \N 75872 M.pilulifera Morella Morella pilulifera \N \N \N \N \N 75873 Y.lacandonica Yucca Yucca lacandonica \N \N \N \N \N 75874 C.dentipetala Cardamine Cardamine dentipetala \N \N \N \N \N 75875 \N genus Oxylobium \N \N \N \N \N 75876 V.occidentalis Valeriana Valeriana occidentalis western valerian \N \N \N \N 75877 A.quebracho-blanco Aspidosperma Aspidosperma quebracho-blanco \N \N \N \N \N 75878 P.discolor Phyllanthus Phyllanthus discolor \N \N \N \N \N 75879 M.rubicaulis Mimosa Mimosa rubicaulis \N \N \N \N \N 75880 L.hookeri Lithops Lithops hookeri \N \N \N \N \N 75881 R.fulleri Rhytidocaulon Rhytidocaulon fulleri \N \N \N \N \N 75882 M.funiformis Mandevilla Mandevilla funiformis \N \N \N \N \N 75883 \N genus Tabebuia \N \N \N \N \N 75884 B.plagioneura Begonia Begonia plagioneura \N \N \N \N \N 75885 \N genus Diplycosia \N \N \N \N \N 75886 A.lineata Andrographis Andrographis lineata \N \N \N \N \N 75887 T.campanulata Tagetes Tagetes campanulata \N \N \N \N \N 75888 H.fasciculata Hofmeisteria Hofmeisteria fasciculata \N \N \N \N \N 75889 \N varietas Thysanocarpus curvipes var. eradiatus \N \N \N \N \N 75890 L.chaituroides Leonurus Leonurus chaituroides \N \N \N \N \N 75891 I.dissectifoliola Incarvillea Incarvillea dissectifoliola \N \N \N \N \N 75892 O.attenuatus Osmanthus Osmanthus attenuatus \N \N \N \N \N 75893 M.stenostachya Melaleuca Melaleuca stenostachya \N \N \N \N \N 75894 P.buchanani Poa Poa buchanani \N \N \N \N \N 75895 M.baccata Malus Malus baccata shan jing zi \N \N \N \N 75896 P.bupleurifolia Pamphalea Pamphalea bupleurifolia \N \N \N \N \N 75897 \N genus Kaliphora \N \N \N \N \N 75898 \N varietas Alternanthera albotomentosa var. ecuadoriensis \N \N \N \N \N 75899 D.cavalcantei Diospyros Diospyros cavalcantei \N \N \N \N \N 75900 V.castanosperma Van-royena Van-royena castanosperma \N \N \N \N \N 75901 A.dodsoniana Anomalluma Anomalluma dodsoniana \N \N \N \N \N 75902 A.4204 Agarista Agarista sp. Schmidt & Andrianjafy 4204 \N \N \N \N \N 75903 M.penningtonii Miconia Miconia penningtonii \N \N \N \N \N 75904 A.retroflorescens Arenga Arenga retroflorescens \N \N \N \N \N 75905 C.fusuiensis Camellia Camellia fusuiensis \N \N \N \N \N 75906 P.argentatum Parthenium Parthenium argentatum \N \N \N \N \N 75907 B.villosula Babiana Babiana villosula \N \N \N \N \N 75908 L.KCM-2004 Lindmania Lindmania sp. KCM-2004 \N \N \N \N \N 75909 \N genus Pterisanthes \N \N \N \N \N 75910 H.pachyphyllum Homalopetalum Homalopetalum pachyphyllum \N \N \N \N \N 75911 G.stipulata Gillenia Gillenia stipulata American-ipecac,indian-physic \N \N \N \N 75912 T.TL259-1 unclassified Taraxacum Taraxacum (sect. Naevosa) sp. TL259-1 \N \N \N \N \N 75913 S.tomentosa Struthiola Struthiola tomentosa \N \N \N \N \N 75914 \N genus Pontechium \N \N \N \N \N 75915 K.marginata Kaempferia Kaempferia marginata \N \N \N \N \N 75916 B.tuberculata Brassavola Brassavola tuberculata \N \N \N \N \N 75917 \N genus Acrophyllum \N \N \N \N \N 75918 S.cooperorum Steganthera Steganthera cooperorum \N \N \N \N \N 75919 A.fibrosa Annesorhiza Annesorhiza fibrosa \N \N \N \N \N 75920 \N varietas Gymnocalycium megalothelon var. susannae \N \N \N \N \N 75921 \N genus Fosbergia \N \N \N \N \N 75922 N.tucumanensis Nierembergia Nierembergia tucumanensis \N \N \N \N \N 75923 \N genus Graellsia \N \N \N \N \N 75924 \N genus Loxostigma \N \N \N \N \N 75925 A.altissimus Asparagus Asparagus altissimus \N \N \N \N \N 75926 C.tuerckheimii Canna Canna tuerckheimii \N \N \N \N \N 75927 \N varietas Rytidosperma pictum var. pictum \N \N \N \N \N 75928 E.myrosmatis Elleanthus Elleanthus myrosmatis \N \N \N \N \N 75929 S.maulinus Senecio Senecio maulinus \N \N \N \N \N 75930 B.ambatoavense Bulbophyllum Bulbophyllum ambatoavense \N \N \N \N \N 75931 C.odoratissima Chamaeangis Chamaeangis odoratissima \N \N \N \N \N 75932 P.stipulaceum Pelargonium Pelargonium stipulaceum \N \N \N \N \N 75933 \N subspecies Gymnocalycium mostii subsp. immemoratum \N \N \N \N \N 75934 A.lividum Asterostigma Asterostigma lividum \N \N \N \N \N 75935 H.sikokiana Hydrangea Hydrangea sikokiana \N \N \N \N \N 75936 H.coccinea Helixanthera Helixanthera coccinea \N \N \N \N \N 75937 B.floribunda Barnhartia Barnhartia floribunda \N \N \N \N \N 75938 C.00-264 Cistanthe Cistanthe sp. Hershkovitz 00-264 \N \N \N \N \N 75939 \N genus Halosicyos \N \N \N \N \N 75940 S.nervosum Sehima Sehima nervosum \N \N \N \N \N 75941 E.nerteroides Epilobium Epilobium nerteroides \N \N \N \N \N 75942 M.hyssopifolia Muraltia Muraltia hyssopifolia \N \N \N \N \N 75943 M.dubia Myrciaria Myrciaria dubia camu-camu \N \N \N \N 75944 G.hollandii Gladiolus Gladiolus hollandii \N \N \N \N \N 75945 A.virgineum Aeonium Aeonium virgineum \N \N \N \N \N 75946 F.bicolor Flickingeria Flickingeria bicolor \N \N \N \N \N 75947 N.dienemum Nematoceras Nematoceras dienemum \N \N \N \N \N 75948 C.barkeri Comparettia Comparettia barkeri \N \N \N \N \N 75949 D.elatum Delphinium Delphinium elatum \N \N \N \N \N 75950 C.spathulata Chaetanthera Chaetanthera spathulata \N \N \N \N \N 75951 A.longana Alchemilla Alchemilla longana \N \N \N \N \N 75952 K.japonica Kinugasa Kinugasa japonica \N \N \N \N \N 75953 O.SW979 Oxalis Oxalis cf. alpina SW979 \N \N \N \N \N 75954 P.beauverdiana Photinia Photinia beauverdiana \N \N \N \N \N 75955 \N genus Rhodopentas \N \N \N \N \N 75956 P.fraxinifolia Polyscias Polyscias fraxinifolia \N \N \N \N \N 75957 C.trilobata Coccinia Coccinia trilobata \N \N \N \N \N 75958 P.orosioides Psychotria Psychotria orosioides \N \N \N \N \N 75959 F.deflexa Festuca Festuca deflexa \N \N \N \N \N 75960 W.panderi Wittsteinia Wittsteinia panderi \N \N \N \N \N 75961 C.umbellata Chimaphila Chimaphila umbellata san xing xi dong cao \N \N \N \N 75962 C.stevenii Campanula Campanula stevenii \N \N \N \N \N 75963 C.apiculata Cyrtandra Cyrtandra apiculata \N \N \N \N \N 75964 P.51 Pleioblastus Pleioblastus aff. simonii Triplett 51 \N \N \N \N \N 75965 \N order Amborellales \N \N \N \N \N 75966 A.boivinii Adenia Adenia boivinii \N \N \N \N \N 75967 M.parkerii Maxillaria Maxillaria parkerii \N \N \N \N \N 75968 G.lanceolatus Goniothalamus Goniothalamus lanceolatus \N \N \N \N \N 75969 K.blossfeldiana Kalanchoe Kalanchoe blossfeldiana \N \N \N \N \N 75970 L.polylepis Lachemilla Lachemilla polylepis \N \N \N \N \N 75971 M.australis Melodinus Melodinus australis \N \N \N \N \N 75972 C.folsomii Clidemia Clidemia folsomii \N \N \N \N \N 75973 A.bifidus Astragalus Astragalus bifidus \N \N \N \N \N 75974 A.andringitrensis Alchemilla Alchemilla andringitrensis \N \N \N \N \N 75975 E.drupifera Elaeophorbia Elaeophorbia drupifera \N \N \N \N \N 75976 \N subspecies Hylotelephium telephium subsp. maximum \N \N \N \N \N 75977 A.glandulosa Arctostaphylos Arctostaphylos glandulosa \N \N \N \N \N 75978 C.hederifolium Cyclamen Cyclamen hederifolium \N \N \N \N \N 75979 R.abyssinica Rosa Rosa abyssinica \N \N \N \N \N 75980 H.95082 Hypericum Hypericum sp. Qiu 95082 \N \N \N \N \N 75981 A.nanchuanense Asarum Asarum nanchuanense \N \N \N \N \N 75982 F.complanata Fimbristylis Fimbristylis complanata \N \N \N \N \N 75983 A.anthora Aconitum Aconitum anthora \N \N \N \N \N 75984 S.thompsonii Streptocarpus Streptocarpus thompsonii \N \N \N \N \N 75985 P.ophianthus Penstemon Penstemon ophianthus \N \N \N \N \N 75986 G.pratensis Galeana Galeana pratensis \N \N \N \N \N 75987 C.mangoroensis Coffea Coffea mangoroensis \N \N \N \N \N 75988 T.pisicarpum Tetrastigma Tetrastigma pisicarpum \N \N \N \N \N 75989 A.pyrifolia Atraphaxis Atraphaxis pyrifolia \N \N \N \N \N 75990 A.merrickiae Acacia Acacia merrickiae \N \N \N \N \N 75991 \N genus Austrobryonia \N \N \N \N \N 75992 G.solanderi Geranium Geranium solanderi \N \N \N \N \N 75993 C.westrae Cremastosperma Cremastosperma westrae \N \N \N \N \N 75994 M.wardii Myricaria Myricaria wardii \N \N \N \N \N 75995 F.magellanica Fuchsia Fuchsia magellanica \N \N \N \N \N 75996 O.burtoniae Oxalis Oxalis burtoniae \N \N \N \N \N 75997 G.bolivianum Glossoloma Glossoloma bolivianum \N \N \N \N \N 75998 R.gardenia Rhododendron Rhododendron gardenia \N \N \N \N \N 75999 M.caffra Microchloa Microchloa caffra \N \N \N \N \N 76000 P.haitiensis Picardaea Picardaea haitiensis \N \N \N \N \N 76001 A.HGK-2000 Ainsliaea Ainsliaea sp. HGK-2000 \N \N \N \N \N 76002 L.denticulata Luzula Luzula denticulata \N \N \N \N \N 76003 E.hyberna Euphorbia Euphorbia hyberna \N \N \N \N \N 76004 N.becquaertii Normandiodendron Normandiodendron becquaertii \N \N \N \N \N 76005 A.obovatus Adenanthos Adenanthos obovatus \N \N \N \N \N 76006 O.puberula Opuntia Opuntia puberula \N \N \N \N \N 76007 P.clusiana Primula Primula clusiana \N \N \N \N \N 76008 D.kingii Dendrochilum Dendrochilum kingii \N \N \N \N \N 76009 M.auriculata Mathewsia Mathewsia auriculata \N \N \N \N \N 76010 M.ADM-2007 Melicytus Melicytus aff. alpinus ADM-2007 \N \N \N \N \N 76011 L.cestroides Lycium Lycium cestroides \N \N \N \N \N 76012 E.congdonii Eriophyllum Eriophyllum congdonii \N \N \N \N \N 76013 C.2000-361 Chloraea Chloraea sp. Weigend 2000-361 \N \N \N \N \N 76014 M.grenadensis Maytenus Maytenus grenadensis \N \N \N \N \N 76015 S.mexicana Sabicea Sabicea mexicana \N \N \N \N \N 76016 A.aequalis Alopecurus Alopecurus aequalis \N \N \N \N \N 76017 S.dumosum Symphyotrichum Symphyotrichum dumosum \N \N \N \N \N 76018 O.affinis Oenothera Oenothera affinis \N \N \N \N \N 76019 E.disperma Euphrasia Euphrasia disperma \N \N \N \N \N 76020 \N genus Orbea \N \N \N \N \N 76021 B.echinacea Berkheya Berkheya echinacea \N \N \N \N \N 76022 \N genus Narvalina \N \N \N \N \N 76023 \N genus Jacquemontia \N \N \N \N \N 76024 D.convolvuloides Dalechampia Dalechampia convolvuloides \N \N \N \N \N 76025 P.pedunculata Pterostylis Pterostylis pedunculata \N \N \N \N \N 76026 S.2965 Scaphyglottis Scaphyglottis cf. pulchella DB 2965 \N \N \N \N \N 76027 A.veillonii Agatea Agatea veillonii \N \N \N \N \N 76028 \N genus Savignya \N \N \N \N \N 76029 P.stipulare Platymiscium Platymiscium stipulare \N \N \N \N \N 76030 \N no rank Epidendroideae incertae sedis \N \N \N \N \N 76031 T.S5448 unclassified Taraxacum Taraxacum (sect. Alpestria/Ruderalia) sp. S5448 \N \N \N \N \N 76032 M.robustum Macroclinidium Macroclinidium robustum \N \N \N \N \N 76033 \N genus Polyscias \N \N \N \N \N 76034 P.rupicola Plantago Plantago rupicola \N \N \N \N \N 76035 \N genus Bryomorphe \N \N \N \N \N 76036 K.biebersteiniana Klasea Klasea biebersteiniana \N \N \N \N \N 76037 P.fauriei Psychotria Psychotria fauriei \N \N \N \N \N 76038 \N subspecies Castilleja campestris subsp. campestris \N \N \N \N \N 76039 E.mongolicum Erysimum Erysimum mongolicum \N \N \N \N \N 76040 P.angustifolia Pyrola Pyrola angustifolia \N \N \N \N \N 76041 R.crenata Rhamnus Rhamnus crenata \N \N \N \N \N 76042 O.inconspicua Oxalis Oxalis inconspicua \N \N \N \N \N 76043 G.lineata Gentianella Gentianella lineata \N \N \N \N \N 76044 L.multiflora Leptoboea Leptoboea multiflora \N \N \N \N \N 76045 \N genus Bolbostemma \N \N \N \N \N 76046 Y.madagascariensis Yvesia Yvesia madagascariensis \N \N \N \N \N 76047 \N genus Abelmoschus \N \N \N \N \N 76048 C.02-276 Costus Costus sp. Specht 02-276 \N \N \N \N \N 76049 D.radicans Dyschoriste Dyschoriste radicans \N \N \N \N \N 76050 C.kirkianum Cyphostemma Cyphostemma kirkianum \N \N \N \N \N 76051 N.stannea Niedenzuella Niedenzuella stannea \N \N \N \N \N 76052 \N subspecies Bartonia paniculata subsp. paniculata \N \N \N \N \N 76053 G.apostasioides Genoplesium Genoplesium apostasioides \N \N \N \N \N 76054 A.fasciculifolius Astragalus Astragalus fasciculifolius \N \N \N \N \N 76055 \N genus Kennedia \N \N \N \N \N 76056 F.robustus Ferocactus Ferocactus robustus \N \N \N \N \N 76057 B.hemsleyi Berberis Berberis hemsleyi \N \N \N \N \N 76058 T.sheilae Trianthema Trianthema sheilae \N \N \N \N \N 76059 \N genus Aspidocarya \N \N \N \N \N 76060 P.scoparia Peteria Peteria scoparia camote del monte \N \N \N \N 76061 Z.kawagoi Zingiber Zingiber kawagoi \N \N \N \N \N 76062 H.lanceolata Hoya Hoya lanceolata \N \N \N \N \N 76063 D.luteum Delphinium Delphinium luteum golden larkspur \N \N \N \N 76064 C.caffrum Combretum Combretum caffrum Cape bush-willow \N \N \N \N 76065 E.quinqueflora Eleocharis Eleocharis quinqueflora fewflower spikerush \N \N \N \N 76066 \N genus Goniothalamus \N \N \N \N \N 76067 P.arenosa Potentilla Potentilla arenosa \N \N \N \N \N 76068 I.pallasii Iris Iris pallasii \N \N \N \N \N 76069 P.crithmifolium Pelargonium Pelargonium crithmifolium \N \N \N \N \N 76070 C.30-1 Cornus Cornus cf. canadensis Xiang and Fan 30-1 \N \N \N \N \N 76071 S.furfuraceum Sedum Sedum furfuraceum \N \N \N \N \N 76072 V.secunda Valeriana Valeriana secunda \N \N \N \N \N 76073 F.imperialis Fritillaria Fritillaria imperialis \N \N \N \N \N 76074 \N genus Theobroma \N \N \N \N \N 76075 E.lophogona Euphorbia Euphorbia lophogona \N \N \N \N \N 76076 P.distantilobum Philodendron Philodendron distantilobum \N \N \N \N \N 76077 \N subspecies Ranunculus dissectus subsp. napellifolius \N \N \N \N \N 76078 O.campestris Oxytropis Oxytropis campestris \N \N \N \N \N 76079 C.15-1 Cornus Cornus cf. canadensis Xiang and Fan 15-1 \N \N \N \N \N 76080 P.pseudoginseng Panax Panax pseudoginseng \N \N \N \N \N 76081 S.lehmannii Schoenoxiphium Schoenoxiphium lehmannii \N \N \N \N \N 76082 O.borneensis Oreomyrrhis Oreomyrrhis borneensis \N \N \N \N \N 76083 \N genus Dunnia \N \N \N \N \N 76084 P.recurva Passiflora Passiflora recurva \N \N \N \N \N 76085 G.cultivar Guzmania Guzmania hybrid cultivar \N \N \N \N \N 76086 S.diploconos Solanum Solanum diploconos \N \N \N \N \N 76087 D.subalpina Draba Draba subalpina \N \N \N \N \N 76088 M.pilotantha Myrceugenia Myrceugenia pilotantha \N \N \N \N \N 76089 T.trifidus Tripogon Tripogon trifidus \N \N \N \N \N 76090 \N no rank Saccharum hybrid cultivar R43 \N \N \N \N \N 76091 A.strigosum Acanthonema Acanthonema strigosum \N \N \N \N \N 76092 A.mandonii Apodanthera Apodanthera mandonii \N \N \N \N \N 76093 L.dealbatus Lithocarpus Lithocarpus dealbatus \N \N \N \N \N 76094 \N genus Ephedranthus \N \N \N \N \N 76095 I.stenanthum Iochroma Iochroma stenanthum \N \N \N \N \N 76096 G.heterophylla Garberia Garberia heterophylla \N \N \N \N \N 76097 H.trixoides Hoehnephytum Hoehnephytum trixoides \N \N \N \N \N 76098 M.floribunda Miconia Miconia floribunda \N \N \N \N \N 76099 K.macowanii Kniphofia Kniphofia macowanii \N \N \N \N \N 76100 C.anisata Clausena Clausena anisata \N \N \N \N \N 76101 C.dauricum Cnidium Cnidium dauricum \N \N \N \N \N 76102 C.FS882 Commiphora Commiphora sp. FS882 \N \N \N \N \N 76103 C.pseudocytisus Cytisopsis Cytisopsis pseudocytisus \N \N \N \N \N 76104 P.spicatum Papaver Papaver spicatum \N \N \N \N \N 76105 C.falcatum Comastoma Comastoma falcatum \N \N \N \N \N 76106 I.trifida Ipomoea Ipomoea trifida \N \N \N \N \N 76107 S.virgata Securidaca Securidaca virgata \N \N \N \N \N 76108 \N genus Alliaria \N \N \N \N \N 76109 L.edentula Leandra Leandra edentula \N \N \N \N \N 76110 \N genus Cnicothamnus \N \N \N \N \N 76111 K.procumbens Klasea Klasea procumbens \N \N \N \N \N 76112 A.tropicus Alectryon Alectryon tropicus \N \N \N \N \N 76113 P.sixaolensis Psychotria Psychotria sixaolensis \N \N \N \N \N 76114 P.sagittifolius Plicosepalus Plicosepalus sagittifolius \N \N \N \N \N 76115 A.allenii Ada Ada allenii \N \N \N \N \N 76116 \N genus Hypoxis \N \N \N \N \N 76117 O.subinsectifera Ophrys Ophrys subinsectifera \N \N \N \N \N 76118 C.racemosum Chorizema Chorizema racemosum \N \N \N \N \N 76119 E.caerulescens Euphorbia Euphorbia caerulescens \N \N \N \N \N 76120 \N subspecies Poa abbreviata subsp. abbreviata \N \N \N \N \N 76121 \N genus Kohautia \N \N \N \N \N 76122 C.tovarii Capsicum Capsicum tovarii \N \N \N \N \N 76123 B.kirkii Baphia Baphia kirkii \N \N \N \N \N 76124 C.roxanae Croton Croton roxanae \N \N \N \N \N 76125 I.macombii Ipomopsis Ipomopsis macombii \N \N \N \N \N 76126 \N subfamily Mapanioideae \N \N \N \N \N 76127 G.serpenticola Gladiolus Gladiolus serpenticola \N \N \N \N \N 76128 A.venosum Antidesma Antidesma venosum \N \N \N \N \N 76129 \N genus Myrteola \N \N \N \N \N 76130 M.stagnalis Moraea Moraea stagnalis \N \N \N \N \N 76131 D.robledorum Dracula Dracula robledorum \N \N \N \N \N 76132 M.grisebachii Moehringia Moehringia grisebachii \N \N \N \N \N 76133 V.fuscatum Vaccinium Vaccinium fuscatum \N \N \N \N \N 76134 P.daonensis Primula Primula daonensis \N \N \N \N \N 76135 S.pendula Swartzia Swartzia pendula \N \N \N \N \N 76136 A.ledinghamii Astragalus Astragalus ledinghamii \N \N \N \N \N 76137 \N tribe Alstonieae \N \N \N \N \N 76138 \N forma Erigeron thunbergii f. kirigishiensis \N \N \N \N \N 76139 C.minimus Calochortus Calochortus nudus x Calochortus minimus \N \N \N \N \N 76140 M.HYB Macrocarpaea Macrocarpaea sp. HYB \N \N \N \N \N 76141 \N subspecies Raphanus raphanistrum subsp. maritimus sea radish \N \N \N \N 76142 M.lenticellatum Magnolia Magnolia lenticellatum \N \N \N \N \N 76143 \N genus Eusiphon \N \N \N \N \N 76144 S.microchila Stelis Stelis microchila \N \N \N \N \N 76145 C.bocconei Chiliadenus Chiliadenus bocconei \N \N \N \N \N 76146 H.maculatum Hypericum Hypericum maculatum \N \N \N \N \N 76147 \N family Rhamnaceae buckthorn family \N \N \N \N 76148 E.latiglumis Elymus Elymus latiglumis \N \N \N \N \N 76149 N.myersii Navarretia Navarretia myersii \N \N \N \N \N 76150 A.tosaense Arisaema Arisaema tosaense \N \N \N \N \N 76151 S.caespitosa Suaeda Suaeda caespitosa \N \N \N \N \N 76152 E.uliginosa Euphorbia Euphorbia uliginosa \N \N \N \N \N 76153 S.helvetica Scorzoneroides Scorzoneroides helvetica \N \N \N \N \N 76154 T.8-98 Trichosanthes Trichosanthes sp. Bac Kan 8-98 \N \N \N \N \N 76155 C.s.n. Centrolobium Centrolobium sp. Lima s.n. \N \N \N \N \N 76156 H.mitrata Hoya Hoya mitrata \N \N \N \N \N 76157 \N varietas Lessingia lemmonii var. ramulosissima \N \N \N \N \N 76158 H.nicholsoniae Hoya Hoya nicholsoniae \N \N \N \N \N 76159 A.praelongata Acacia Acacia praelongata \N \N \N \N \N 76160 V.chinensis Vatica Vatica chinensis \N \N \N \N \N 76161 D.fascicularis Donatia Donatia fascicularis \N \N \N \N \N 76162 \N genus Anerincleistus \N \N \N \N \N 76163 E.confervoides Eleocharis Eleocharis confervoides \N \N \N \N \N 76164 P.frutescens Perilla Perilla frutescens beefsteak-mint,shiso-zoku \N \N \N \N 76165 \N subspecies Jacobaea carniolica subsp. insubrica \N \N \N \N \N 76166 H.membranaceum Hedysarum Hedysarum membranaceum \N \N \N \N \N 76167 V.keiskei Viola Viola keiskei \N \N \N \N \N 76168 L.brevispina Lymanbensonia Lymanbensonia brevispina \N \N \N \N \N 76169 D.macrophylla Delpydora Delpydora macrophylla \N \N \N \N \N 76170 P.cambessedesii Paeonia Paeonia cambessedesii Majorcan peony \N \N \N \N 76171 S.hyperborea Saxifraga Saxifraga hyperborea \N \N \N \N \N 76172 R.cynosbati Ribes Ribes cynosbati dogberry,eastern prickly gooseberry \N \N \N \N 76173 D.caespitosa Dodonaea Dodonaea caespitosa \N \N \N \N \N 76174 T.tentaculatum Typhonium Typhonium tentaculatum \N \N \N \N \N 76175 S.04F/0100 Salicornia Salicornia aff. fragilis Teege 04F/0100 \N \N \N \N \N 76176 O.pendens Oedina Oedina pendens \N \N \N \N \N 76177 H.dubium Haplophyllum Haplophyllum dubium \N \N \N \N \N 76178 P.hebestachyum Platymiscium Platymiscium hebestachyum \N \N \N \N \N 76179 M.oleosa Maytenus Maytenus oleosa \N \N \N \N \N 76180 T.johansenii Tetrathylacium Tetrathylacium johansenii \N \N \N \N \N 76181 P.fremontii Prunus Prunus fremontii desert apricot \N \N \N \N 76182 A.genuflexa Angelica Angelica genuflexa \N \N \N \N \N 76183 A.selago Azorella Azorella selago \N \N \N \N \N 76184 C.heterocalyx Coffea Coffea heterocalyx \N \N \N \N \N 76185 F.mandshurica Fraxinus Fraxinus mandshurica Manchurian ash \N \N \N \N 76186 A.appressipila Arachis Arachis appressipila amendoim bravo \N \N \N \N 76187 N.lucida Nemesia Nemesia lucida \N \N \N \N \N 76188 P.natalense Panicum Panicum natalense \N \N \N \N \N 76189 V.campanuloides Vellozia Vellozia campanuloides \N \N \N \N \N 76190 I.fosteriana Inga Inga fosteriana \N \N \N \N \N 76191 F.refracta Freesia Freesia refracta \N \N \N \N \N 76192 S.liatroides Streptoglossa Streptoglossa liatroides \N \N \N \N \N 76193 E.peploides Euphorbia Euphorbia peploides \N \N \N \N \N 76194 C.sellowiana Calibrachoa Calibrachoa sellowiana \N \N \N \N \N 76195 P.parvifolia Peperomia Peperomia parvifolia \N \N \N \N \N 76196 G.ibericum Geranium Geranium ibericum \N \N \N \N \N 76197 M.tropophylla Maba Maba tropophylla \N \N \N \N \N 76198 C.utan Corypha Corypha utan \N \N \N \N \N 76199 C.lachnocarpus Croton Croton lachnocarpus \N \N \N \N \N 76200 S.aegaea Silene Silene aegaea \N \N \N \N \N 76201 C.spinirostris Carex Carex spinirostris \N \N \N \N \N 76202 A.togashii Allium Allium togashii \N \N \N \N \N 76203 R.induratus Ranunculus Ranunculus induratus \N \N \N \N \N 76204 E.virgata Epacris Epacris virgata \N \N \N \N \N 76205 S.botschantzevii Salsola Salsola botschantzevii \N \N \N \N \N 76206 P.goetzeana Polystachya Polystachya goetzeana \N \N \N \N \N 76207 B.discoidea Brintonia Brintonia discoidea \N \N \N \N \N 76208 R.longiperulatum Rhododendron Rhododendron longiperulatum \N \N \N \N \N 76209 B.veitchiorum Berberis Berberis veitchiorum \N \N \N \N \N 76210 E.septentrionale Epilobium Epilobium septentrionale \N \N \N \N \N 76211 M.spinescens Monadenium Monadenium spinescens \N \N \N \N \N 76212 P.philippinensis Pinanga Pinanga philippinensis \N \N \N \N \N 76213 P.hombroniana Psychotria Psychotria hombroniana \N \N \N \N \N 76214 M.leucantha Mammillaria Mammillaria leucantha \N \N \N \N \N 76215 O.ensatum Oncidium Oncidium ensatum \N \N \N \N \N 76216 \N varietas Amorphophallus paeonifolius var. campanulatus \N \N \N \N \N 76217 E.haichowensis Elsholtzia Elsholtzia haichowensis \N \N \N \N \N 76218 Z.pterocaule Zygophyllum Zygophyllum pterocaule \N \N \N \N \N 76219 O.stellulata Olearia Olearia stellulata \N \N \N \N \N 76220 P.multifolium Phyllopodium Phyllopodium multifolium \N \N \N \N \N 76221 L.lima Leandra Leandra lima \N \N \N \N \N 76222 D.delicatum Dendrobium Dendrobium delicatum \N \N \N \N \N 76223 T.erectus Thamnochortus Thamnochortus erectus \N \N \N \N \N 76224 \N varietas Passiflora moluccana var. teysmanniana \N \N \N \N \N 76225 V.stricta Valeriana Valeriana stricta \N \N \N \N \N 76226 V.psittacina Vriesea Vriesea psittacina \N \N \N \N \N 76227 O.moschata Ocotea Ocotea moschata \N \N \N \N \N 76228 C.oerstedianus Croton Croton oerstedianus \N \N \N \N \N 76229 L.kunstleri Licuala Licuala kunstleri \N \N \N \N \N 76230 O.heptalon Oxydectes Oxydectes heptalon \N \N \N \N \N 76231 \N varietas Magnolia liliifera var. singapurensis \N \N \N \N \N 76232 B.alpina Begonia Begonia alpina \N \N \N \N \N 76233 X.microcarpa x Citrofortunella x Citrofortunella microcarpa Panama orange,calamondin,golden lime,hazara,kalamunding,limau kesturi,ma nao wan,musk lime,szu kai kat \N \N \N \N 76234 A.magnifica Alstroemeria Alstroemeria magnifica \N \N \N \N \N 76235 C.glabra Comocladia Comocladia glabra \N \N \N \N \N 76236 P.paucifolia Periboea Periboea paucifolia \N \N \N \N \N 76237 C.oppenheimiana Ctenanthe Ctenanthe oppenheimiana \N \N \N \N \N 76238 S.camporum Styrax Styrax camporum \N \N \N \N \N 76239 M.lepidota Miconia Miconia lepidota \N \N \N \N \N 76240 C.galeottiana Cordia Cordia galeottiana \N \N \N \N \N 76241 P.roseum Pleiochiton Pleiochiton roseum \N \N \N \N \N 76242 \N genus Gisekia \N \N \N \N \N 76243 E.sperata Erica Erica sperata \N \N \N \N \N 76244 G.asclepiadea Gentiana Gentiana asclepiadea \N \N \N \N \N 76245 D.menziesii Dracophyllum Dracophyllum menziesii \N \N \N \N \N 76246 S.minutum Sempervivum Sempervivum minutum \N \N \N \N \N 76247 W.tubulosa Wurmbea Wurmbea tubulosa \N \N \N \N \N 76248 S.decora Siphonochilus Siphonochilus decora \N \N \N \N \N 76249 \N subspecies Hymenolobus procumbens subsp. procumbens \N \N \N \N \N 76250 H.chiapasiana Hymenocallis Hymenocallis chiapasiana \N \N \N \N \N 76251 M.6264 Maxillaria Maxillaria aff. nutans Atwood & Whitten 6264 \N \N \N \N \N 76252 P.axillaris Polyspora Polyspora axillaris \N \N \N \N \N 76253 S.ulmifolia Solidago Solidago ulmifolia \N \N \N \N \N 76254 H.raffillii Hedychium Hedychium x raffillii \N \N \N \N \N 76255 I.wilsonii Indocalamus Indocalamus wilsonii \N \N \N \N \N 76256 L.angustifolia Liparia Liparia angustifolia \N \N \N \N \N 76257 C.tonsa Carex Carex tonsa \N \N \N \N \N 76258 \N subspecies Thymelaea tartonraira subsp. tartonraira \N \N \N \N \N 76259 B.brevicalyx Bauhinia Bauhinia brevicalyx \N \N \N \N \N 76260 M.champaca Michelia Michelia champaca \N \N \N \N \N 76261 A.dura Acrotriche Acrotriche dura \N \N \N \N \N 76262 C.14054 Crinum Crinum sp. Schunke 14054 \N \N \N \N \N 76263 P.laxmannii Parnassia Parnassia laxmannii \N \N \N \N \N 76264 \N varietas Hieracium nigrescens var. decipiens \N \N \N \N \N 76265 \N subspecies Argyranthemum adauctum subsp. canariense \N \N \N \N \N 76266 H.anoectocolea Hopkinsia Hopkinsia anoectocolea \N \N \N \N \N 76267 P.tricuspis Passiflora Passiflora tricuspis \N \N \N \N \N 76268 \N subspecies Sarcandra glabra subsp. brachystachys \N \N \N \N \N 76269 T.macbrideana Tillandsia Tillandsia macbrideana \N \N \N \N \N 76270 R.cantoniensis Rorippa Rorippa cantoniensis \N \N \N \N \N 76271 A.pavia Aesculus Aesculus pavia red buckeye \N \N \N \N 76272 P.poortmanii Pitcairnia Pitcairnia poortmanii \N \N \N \N \N 76273 \N genus Anulocaulis \N \N \N \N \N 76274 E.resinosa Escallonia Escallonia resinosa \N \N \N \N \N 76275 T.bynoei Triodia Triodia bynoei \N \N \N \N \N 76276 M.depressa Macaranga Macaranga depressa \N \N \N \N \N 76277 P.montanus Pseudocymopterus Pseudocymopterus montanus \N \N \N \N \N 76278 T.holmenianum Taraxacum Taraxacum holmenianum \N \N \N \N \N 76279 S.tibetica Smelowskia Smelowskia tibetica \N \N \N \N \N 76280 S.banksii Senecio Senecio banksii \N \N \N \N \N 76281 M.nodosa Melaleuca Melaleuca nodosa \N \N \N \N \N 76282 S.neomexicana Sida Sida neomexicana \N \N \N \N \N 76283 M.praestans Macaranga Macaranga praestans \N \N \N \N \N 76284 S.racemosum Solanum Solanum racemosum \N \N \N \N \N 76285 A.arizonica Aristida Aristida arizonica \N \N \N \N \N 76286 \N genus Neslia \N \N \N \N \N 76287 \N genus Protium \N \N \N \N \N 76288 L.ovatifolia Ledebouria Ledebouria ovatifolia \N \N \N \N \N 76289 K.beharensis Kalanchoe Kalanchoe beharensis \N \N \N \N \N 76290 \N genus Rheum \N \N \N \N \N 76291 V.montbretii Vicia Vicia montbretii \N \N \N \N \N 76292 C.geminifolium Capsicum Capsicum geminifolium \N \N \N \N \N 76293 M.muraltioides Muraltia Muraltia muraltioides \N \N \N \N \N 76294 O.pilosa Oxytropis Oxytropis pilosa \N \N \N \N \N 76295 V.fimbriatum Veratrum Veratrum fimbriatum \N \N \N \N \N 76296 A.kawakamii Artemisia Artemisia kawakamii \N \N \N \N \N 76297 P.chrysophylla Physopsis Physopsis chrysophylla \N \N \N \N \N 76298 T.flexuosa Tylophora Tylophora flexuosa \N \N \N \N \N 76299 X.octandrum Xanthophyllum Xanthophyllum octandrum cheesewood \N \N \N \N 76300 \N subspecies Hibiscus moscheutos subsp. moscheutos \N \N \N \N \N 76301 \N subspecies Carex lasiocarpa subsp. americana \N \N \N \N \N 76302 E.sclerolaenoides Eriochiton Eriochiton sclerolaenoides \N \N \N \N \N 76303 A.vesicaria Atriplex Atriplex vesicaria \N \N \N \N \N 76304 L.thomasii Lereschia Lereschia thomasii \N \N \N \N \N 76305 L.maroccanus Leontodon Leontodon maroccanus \N \N \N \N \N 76306 K.arvensis Knautia Knautia arvensis \N \N \N \N \N 76307 \N no rank unclassified Celastraceae \N \N \N \N \N 76308 \N subspecies Delphinium carolinianum subsp. calciphilum \N \N \N \N \N 76309 F.grandiflora Fragaria Fragaria grandiflora \N \N \N \N \N 76310 O.meschetica Onobrychis Onobrychis meschetica \N \N \N \N \N 76311 C.imbricata Cylindropuntia Cylindropuntia imbricata candelabrum cactus,cane cholla,devil's-rope \N \N \N \N 76312 P.digitalis Penstemon Penstemon digitalis talus slope penstemon \N \N \N \N 76313 D.lobulata Dodonaea Dodonaea lobulata \N \N \N \N \N 76314 P.pseudonobile Piper Piper pseudonobile \N \N \N \N \N 76315 E.cervina Ericameria Ericameria cervina deer goldenbush \N \N \N \N 76316 G.frivaldii Gymnadenia Gymnadenia frivaldii \N \N \N \N \N 76317 D.fanniniae Disperis Disperis fanniniae \N \N \N \N \N 76318 P.cinerea Pyrostegia Pyrostegia cinerea \N \N \N \N \N 76319 T.pedunculata Tithonia Tithonia pedunculata \N \N \N \N \N 76320 R.konori Rhododendron Rhododendron konori \N \N \N \N \N 76321 P.praecox Pleione Pleione praecox \N \N \N \N \N 76322 C.coelestinum Conoclinium Conoclinium coelestinum mistflower \N \N \N \N 76323 \N genus Greigia \N \N \N \N \N 76324 \N subspecies Centaurea napulifera subsp. thirkei \N \N \N \N \N 76325 S.comptonii Syncolostemon Syncolostemon comptonii \N \N \N \N \N 76326 S.Sluis05 Sobralia Sobralia sp. Sluis05 \N \N \N \N \N 76327 C.carolo-schmidtii Crinum Crinum carolo-schmidtii \N \N \N \N \N 76328 A.heliotropioides Antiphytum Antiphytum heliotropioides \N \N \N \N \N 76329 Z.botulifolium Zygophyllum Zygophyllum botulifolium \N \N \N \N \N 76330 \N family Halophytaceae \N \N \N \N \N 76331 J.pelocarpus Juncus Juncus pelocarpus \N \N \N \N \N 76332 H.floribundus Hybanthus Hybanthus floribundus \N \N \N \N \N 76333 A.purpurascens Asclepias Asclepias purpurascens \N \N \N \N \N 76334 P.excelsum Piper Piper excelsum \N \N \N \N \N 76335 \N varietas Ceanothus oliganthus var. orcuttii \N \N \N \N \N 76336 E.cupularis Eucalyptus Eucalyptus cupularis Halls Creek white gum \N \N \N \N 76337 C.dasyphylla Callerya Callerya dasyphylla \N \N \N \N \N 76338 H.angustata Heritiera Heritiera angustata \N \N \N \N \N 76339 P.paniculata Peltogyne Peltogyne paniculata \N \N \N \N \N 76340 \N genus Nelsonianthus \N \N \N \N \N 76341 C.thibaultii Cyrtandra Cyrtandra thibaultii \N \N \N \N \N 76342 \N genus Sphaerorrhiza \N \N \N \N \N 76343 H.apargioides Hypochaeris Hypochaeris apargioides \N \N \N \N \N 76344 S.seemanniana Schefflera Schefflera seemanniana \N \N \N \N \N 76345 G.pterocladus Gonocytisus Gonocytisus pterocladus \N \N \N \N \N 76346 \N family Schlegeliaceae \N \N \N \N \N 76347 B.incana Banksia Banksia incana \N \N \N \N \N 76348 V.arizonica Valeriana Valeriana arizonica \N \N \N \N \N 76349 I.capitata Inga Inga capitata \N \N \N \N \N 76350 G.littoralis Gymnosporia Gymnosporia littoralis \N \N \N \N \N 76351 M.centrodesma Miconia Miconia centrodesma \N \N \N \N \N 76352 H.petrophila Holmgrenanthe Holmgrenanthe petrophila rocklady \N \N \N \N 76353 T.chantieri Tacca Tacca chantieri batflower,devil-flower,jian gen shu \N \N \N \N 76354 F.conocephalifolia Ficus Ficus conocephalifolia \N \N \N \N \N 76355 S.tricalysioides Strychnos Strychnos tricalysioides \N \N \N \N \N 76356 S.longipes Symplocos Symplocos longipes \N \N \N \N \N 76357 C.cuzcoensis Cantua Cantua cuzcoensis \N \N \N \N \N 76358 L.lycioides Lycianthes Lycianthes lycioides \N \N \N \N \N 76359 R.bupleuroides Rhodiola Rhodiola bupleuroides \N \N \N \N \N 76360 \N genus Sarcaulus \N \N \N \N \N 76361 S.latifolia Silene Silene latifolia \N \N \N \N \N 76362 S.braunii Scolopia Scolopia braunii brown birch \N \N \N \N 76363 G.thunbergii Geranium Geranium thunbergii \N \N \N \N \N 76364 G.tomentosus Gomphocarpus Gomphocarpus tomentosus \N \N \N \N \N 76365 \N genus Margaritopsis \N \N \N \N \N 76366 E.aurata Eriosyce Eriosyce aurata \N \N \N \N \N 76367 S.wilfordii Sorbus Sorbus wilfordii \N \N \N \N \N 76368 G.decora Geochloa Geochloa decora \N \N \N \N \N 76369 A.presliana Alstroemeria Alstroemeria presliana \N \N \N \N \N 76370 C.collinsii Carex Carex collinsii \N \N \N \N \N 76371 O.pleiopetala Octamyrtus Octamyrtus pleiopetala \N \N \N \N \N 76372 A.conzattii Ainea Ainea conzattii \N \N \N \N \N 76373 M.havilandii Mallotus Mallotus havilandii \N \N \N \N \N 76374 D.pseudomezereum Daphne Daphne pseudomezereum \N \N \N \N \N 76375 P.martinii Pausandra Pausandra martinii \N \N \N \N \N 76376 C.pattersonii Cardamine Cardamine pattersonii \N \N \N \N \N 76377 \N subspecies Acer monspessulanum subsp. monspessulanum \N \N \N \N \N 76378 \N genus Wodyetia \N \N \N \N \N 76379 C.parviflorum Cyclamen Cyclamen parviflorum \N \N \N \N \N 76380 C.pappophoroides Cottea Cottea pappophoroides \N \N \N \N \N 76381 T.nitchaga Triplarina Triplarina nitchaga \N \N \N \N \N 76382 S.grande Syzygium Syzygium grande \N \N \N \N \N 76383 B.celsianum Brachysema Brachysema celsianum \N \N \N \N \N 76384 R.coreanus Rubus Rubus coreanus Korean blackberry,cha tian pao \N \N \N \N 76385 O.mitissima Ononis Ononis mitissima \N \N \N \N \N 76386 C.leptophyllum Chenopodium Chenopodium leptophyllum \N \N \N \N \N 76387 C.boottiana Carex Carex boottiana \N \N \N \N \N 76388 P.floribunda Piptadenia Piptadenia floribunda \N \N \N \N \N 76389 \N subspecies Centaurea panormitana subsp. seguenzae \N \N \N \N \N 76390 P.tortuosum Pancratium Pancratium tortuosum \N \N \N \N \N 76391 C.autranii Cousinia Cousinia autranii \N \N \N \N \N 76392 P.bartlingianum Piper Piper bartlingianum \N \N \N \N \N 76393 \N tribe Melodineae \N \N \N \N \N 76394 G.sphaerantha Guatteria Guatteria sphaerantha \N \N \N \N \N 76395 P.MG-2007 Polycycnis Polycycnis sp. MG-2007 \N \N \N \N \N 76396 S.0045Gal Lycopersicon Solanum sp. 0045Gal \N \N \N \N \N 76397 \N genus Cambessedesia \N \N \N \N \N 76398 C.esculentus Cyperus Cyperus esculentus \N \N \N \N \N 76399 V.guadalupensis Viola Viola guadalupensis \N \N \N \N \N 76400 C.525 Coptosperma Coptosperma sp. Razafimandimbison 525 \N \N \N \N \N 76401 C.CG-2009 Carex Carex sp. 5 CG-2009 \N \N \N \N \N 76402 D.sinicus Dipentodon Dipentodon sinicus \N \N \N \N \N 76403 Z.120137 Zhukowskia Zhukowskia sp. Heidelberg BG 120137 \N \N \N \N \N 76404 L.carassana Leandra Leandra carassana \N \N \N \N \N 76405 B.maxima Briza Briza maxima \N \N \N \N \N 76406 P.venosa Persea Persea venosa \N \N \N \N \N 76407 C.villosa Camellia Camellia villosa \N \N \N \N \N 76408 C.ovalifolium Cynanchum Cynanchum ovalifolium \N \N \N \N \N 76409 H.inermis Hohenbergia Hohenbergia inermis \N \N \N \N \N 76410 \N genus Omphalodes \N \N \N \N \N 76411 D.rufa Diplycosia Diplycosia rufa \N \N \N \N \N 76412 B.valida Bidens Bidens valida \N \N \N \N \N 76413 B.williamsii Boechera Boechera williamsii \N \N \N \N \N 76414 I.stenosepala Impatiens Impatiens stenosepala \N \N \N \N \N 76415 B.rigidiseta Bouteloua Bouteloua rigidiseta \N \N \N \N \N 76416 J.arborea Jacaranda Jacaranda arborea \N \N \N \N \N 76417 B.latifolia Brownea Brownea latifolia \N \N \N \N \N 76418 C.linearis Cheiranthera Cheiranthera linearis \N \N \N \N \N 76419 G.aequinoctialis Gladiolus Gladiolus aequinoctialis \N \N \N \N \N 76420 \N forma Rhipsalis micrantha f. kirbergii \N \N \N \N \N 76421 P.laxum Pelargonium Pelargonium laxum \N \N \N \N \N 76422 J.linearifolia Janusia Janusia linearifolia \N \N \N \N \N 76423 \N subspecies Disa cephalotes subsp. cephalotes \N \N \N \N \N 76424 A.truncata Atriplex Atriplex truncata \N \N \N \N \N 76425 F.peninsulae Ferocactus Ferocactus peninsulae \N \N \N \N \N 76426 L.madagascariensis Lemurorchis Lemurorchis madagascariensis \N \N \N \N \N 76427 D.lactea Drymocallis Drymocallis lactea \N \N \N \N \N 76428 \N genus Dendropemon \N \N \N \N \N 76429 M.thorelii Miliusa Miliusa thorelii \N \N \N \N \N 76430 A.myrtifolia Arctostaphylos Arctostaphylos myrtifolia \N \N \N \N \N 76431 I.globosa Isachne Isachne globosa \N \N \N \N \N 76432 L.cordifolius Lisianthius Lisianthius cordifolius \N \N \N \N \N 76433 \N genus Otiophora \N \N \N \N \N 76434 P.beccariana Pritchardia Pritchardia beccariana \N \N \N \N \N 76435 \N genus Polycarpaea \N \N \N \N \N 76436 N.gentryi Nissolia Nissolia gentryi \N \N \N \N \N 76437 \N subspecies Secale cereale subsp. segetale \N \N \N \N \N 76438 B.xanthina Begonia Begonia xanthina \N \N \N \N \N 76439 P.valentinae Primula Primula valentinae \N \N \N \N \N 76440 S.flavicarinata Swainsona Swainsona flavicarinata \N \N \N \N \N 76441 \N subspecies Gaura hexandra subsp. hexandra \N \N \N \N \N 76442 A.host environmental samples Taxonomy:202725 angiosperm mycorrhizal host \N \N \N \N \N 76443 C.fissa Carex Carex fissa \N \N \N \N \N 76444 B.wrightii Bourreria Bourreria wrightii \N \N \N \N \N 76445 S.cheirophorum Satyrium Satyrium cheirophorum \N \N \N \N \N 76446 R.pentaphyllum Rhododendron Rhododendron pentaphyllum \N \N \N \N \N 76447 \N genus Sindora \N \N \N \N \N 76448 P.kingiana Pseuduvaria Pseuduvaria kingiana \N \N \N \N \N 76449 M.brevitheca Miconia Miconia brevitheca \N \N \N \N \N 76450 C.tenuifolia Cousinia Cousinia tenuifolia \N \N \N \N \N 76451 M.major Melianthus Melianthus major \N \N \N \N \N 76452 \N genus Navia \N \N \N \N \N 76453 C.carolinus Cocculus Cocculus carolinus red-berried moonseed \N \N \N \N 76454 \N genus Huilaea \N \N \N \N \N 76455 T.montana Thamnosma Thamnosma montana \N \N \N \N \N 76456 \N genus Cercis \N \N \N \N \N 76457 S.lehmbachii Salacia Salacia lehmbachii \N \N \N \N \N 76458 B.album Bupleurum Bupleurum album \N \N \N \N \N 76459 A.hedinii Aphanocalyx Aphanocalyx hedinii \N \N \N \N \N 76460 I.pubescens Ipomoea Ipomoea pubescens \N \N \N \N \N 76461 M.cedarmonticola Moraea Moraea cedarmonticola \N \N \N \N \N 76462 Q.argentata Quercus Quercus argentata \N \N \N \N \N 76463 \N genus Gonostegia \N \N \N \N \N 76464 A.cretensis Athamanta Athamanta cretensis \N \N \N \N \N 76465 C.caribaea Coursetia Coursetia caribaea \N \N \N \N \N 76466 \N varietas Platostoma coloratum var. minutum \N \N \N \N \N 76467 C.rufescens Cojoba Cojoba rufescens \N \N \N \N \N 76468 C.vulgare Clinopodium Clinopodium vulgare \N \N \N \N \N 76469 C.patagonica Cryptantha Cryptantha patagonica \N \N \N \N \N 76470 P.fraxinifolia Pterocarya Pterocarya fraxinifolia \N \N \N \N \N 76471 \N genus Trachyspermum \N \N \N \N \N 76472 \N subspecies Helictotrichon sedenense subsp. sedenense \N \N \N \N \N 76473 D.anglica Drosera Drosera anglica \N \N \N \N \N 76474 \N subfamily Urgineoideae \N \N \N \N \N 76475 C.polot Claoxylon Claoxylon polot \N \N \N \N \N 76476 C.wangerinii Catopsis Catopsis wangerinii \N \N \N \N \N 76477 S.sinensis Sycopsis Sycopsis sinensis \N \N \N \N \N 76478 B.handelii Begonia Begonia handelii \N \N \N \N \N 76479 C.macracantha Crataegus Crataegus macracantha large-thorn haw \N \N \N \N 76480 M.hamata Mimosa Mimosa hamata \N \N \N \N \N 76481 \N genus Loxopterygium \N \N \N \N \N 76482 S.saginoides Sagina Sagina saginoides \N \N \N \N \N 76483 L.filicaulis Lotus Lotus filicaulis \N \N \N \N \N 76484 S.SH-2010 Streptocarpus Streptocarpus sp. SH-2010 \N \N \N \N \N 76485 \N genus Podangis \N \N \N \N \N 76486 L.gymnesicum Limonium Limonium gymnesicum \N \N \N \N \N 76487 E.mirabilis Eurybia Eurybia mirabilis bouquet aster \N \N \N \N 76488 H.pubescens Heliophila Heliophila pubescens \N \N \N \N \N 76489 B.cuspidata Bathysa Bathysa cuspidata \N \N \N \N \N 76490 \N genus Plagiopteron \N \N \N \N \N 76491 \N genus Corchorus \N \N \N \N \N 76492 C.divaricata Clusia Clusia divaricata \N \N \N \N \N 76493 L.affinis Lupinus Lupinus affinis \N \N \N \N \N 76494 A.keramanthus Adenia Adenia keramanthus \N \N \N \N \N 76495 D.aristatum Dichanthium Dichanthium aristatum \N \N \N \N \N 76496 A.luteocarpa Alpinia Alpinia luteocarpa \N \N \N \N \N 76497 M.discigera Meconopsis Meconopsis discigera \N \N \N \N \N 76498 P.770 Pyrostria Pyrostria sp. 1 Rabenantoandro et al. 770 \N \N \N \N \N 76499 \N genus Adelostemma \N \N \N \N \N 76500 E.fragrans Eriobotrya Eriobotrya fragrans \N \N \N \N \N 76501 H.unifoliolatum Harleyodendron Harleyodendron unifoliolatum \N \N \N \N \N 76502 C.tibetana Castanopsis Castanopsis tibetana \N \N \N \N \N 76503 T.grande Trigonidium Trigonidium grande \N \N \N \N \N 76504 N.igneosicola Navia Navia igneosicola \N \N \N \N \N 76505 \N genus Pitaviaster \N \N \N \N \N 76506 \N genus Dulacia \N \N \N \N \N 76507 A.aculeata Adenia Adenia aculeata \N \N \N \N \N 76508 T.nototrichoides Tarasa Tarasa nototrichoides \N \N \N \N \N 76509 P.SH-2010 Pollia Pollia sp. SH-2010 \N \N \N \N \N 76510 G.koehneana Ginoria Ginoria koehneana \N \N \N \N \N 76511 B.batesii Bolusiella Bolusiella batesii \N \N \N \N \N 76512 C.indicum Canarium Canarium indicum galip \N \N \N \N 76513 \N genus Taenidia \N \N \N \N \N 76514 T.coahuilensis Talinaria Talinaria coahuilensis \N \N \N \N \N 76515 E.miegei Elaeocarpus Elaeocarpus miegei \N \N \N \N \N 76516 S.leptocladum Santalum Santalum leptocladum \N \N \N \N \N 76517 C.lowianum Cymbidium Cymbidium lowianum \N \N \N \N \N 76518 \N genus Turraeanthus \N \N \N \N \N 76519 E.natalensis Euclea Euclea natalensis \N \N \N \N \N 76520 M.kelloggii Mimulus Mimulus kelloggii Kellog's monkeyflower \N \N \N \N 76521 S.rupicola Saintpaulia Saintpaulia rupicola \N \N \N \N \N 76522 H.papuana Heliconia Heliconia papuana \N \N \N \N \N 76523 \N genus Ledebouriella \N \N \N \N \N 76524 M.longiflora Mirabilis Mirabilis longiflora \N \N \N \N \N 76525 O.mannii Oreacanthus Oreacanthus mannii \N \N \N \N \N 76526 C.amplifolium Cynoglossum Cynoglossum amplifolium \N \N \N \N \N 76527 O.squarrosa Oedera Oedera squarrosa \N \N \N \N \N 76528 O.antennata Ononis Ononis antennata \N \N \N \N \N 76529 \N genus Anopterus \N \N \N \N \N 76530 C.misera Conostylis Conostylis misera \N \N \N \N \N 76531 \N tribe Priveae \N \N \N \N \N 76532 H.barbatum Hypericum Hypericum barbatum \N \N \N \N \N 76533 C.potosina Cuscuta Cuscuta potosina \N \N \N \N \N 76534 P.melastomoides Pilea Pilea melastomoides \N \N \N \N \N 76535 S.striata Sinningia Sinningia striata \N \N \N \N \N 76536 A.triangularis Agave Agave triangularis \N \N \N \N \N 76537 B.adenocarpa Bletia Bletia adenocarpa \N \N \N \N \N 76538 H.puncticulatum Hydrobryum Hydrobryum puncticulatum \N \N \N \N \N 76539 C.hypoleucus Celastrus Celastrus hypoleucus \N \N \N \N \N 76540 I.obscura Ipomoea Ipomoea obscura \N \N \N \N \N 76541 P.497 Peliosanthes Peliosanthes sp. Chase 497 \N \N \N \N \N 76542 L.anatina Lobelia Lobelia anatina \N \N \N \N \N 76543 A.23.06.1984 Arabis Arabis cf. planisiliqua Mateo 23.06.1984 \N \N \N \N \N 76544 \N genus Nelsonia \N \N \N \N \N 76545 S.pulcherrima Strobilanthes Strobilanthes pulcherrima \N \N \N \N \N 76546 \N genus Lichtensteinia \N \N \N \N \N 76547 C.ptarmicifolia Campanula Campanula ptarmicifolia \N \N \N \N \N 76548 \N subspecies Dubautia ciliolata subsp. ciliolata \N \N \N \N \N 76549 M.longicaulis Maxillaria Maxillaria longicaulis \N \N \N \N \N 76550 S.foetida Silene Silene foetida \N \N \N \N \N 76551 R.ternatus Ranunculus Ranunculus ternatus \N \N \N \N \N 76552 M.triplinervis Mattfeldia Mattfeldia triplinervis \N \N \N \N \N 76553 A.molinieri Artemisia Artemisia molinieri \N \N \N \N \N 76554 \N genus Bersama \N \N \N \N \N 76555 E.calycina Ehrharta Ehrharta calycina perennial veldt grass \N \N \N \N 76556 \N genus Haplocoelopsis \N \N \N \N \N 76557 P.carneum Phoradendron Phoradendron carneum \N \N \N \N \N 76558 \N genus Wattakaka \N \N \N \N \N 76559 C.ganpiniana Clematis Clematis ganpiniana \N \N \N \N \N 76560 M.6100 Maxillaria Maxillaria sp. Jost 6100 \N \N \N \N \N 76561 A.djalonis Anagallis Anagallis djalonis \N \N \N \N \N 76562 F.pallida Ferula Ferula pallida \N \N \N \N \N 76563 \N genus Cystostemon \N \N \N \N \N 76564 M.magnificum Monadenium Monadenium magnificum \N \N \N \N \N 76565 C.unijuga Chamaecrista Chamaecrista unijuga \N \N \N \N \N 76566 D.macgregorii Dolicholobium Dolicholobium macgregorii \N \N \N \N \N 76567 C.bicrenata Calceolaria Calceolaria bicrenata \N \N \N \N \N 76568 O.elmeri Ophiorrhiza Ophiorrhiza elmeri \N \N \N \N \N 76569 A.cupressina Aragoa Aragoa cupressina \N \N \N \N \N 76570 P.tunguraguae Phaedranassa Phaedranassa tunguraguae \N \N \N \N \N 76571 \N genus Tagetes marigolds \N \N \N \N 76572 B.NFL-2003-5 Boesenbergia Boesenbergia sp. NFL-2003-5 \N \N \N \N \N 76573 C.pilosa Coprosma Coprosma pilosa \N \N \N \N \N 76574 A.arnottianus Astragalus Astragalus arnottianus \N \N \N \N \N 76575 C.jepsonii Cuscuta Cuscuta jepsonii \N \N \N \N \N 76576 \N varietas Callitriche heterophylla var. heterophylla \N \N \N \N \N 76577 P.fassettii Primula Primula fassettii \N \N \N \N \N 76578 P.clareae Polystachya Polystachya clareae \N \N \N \N \N 76579 C.corymbosa Condaminea Condaminea corymbosa \N \N \N \N \N 76580 \N genus Okoubaka \N \N \N \N \N 76581 F.pyramidata Filago Filago pyramidata \N \N \N \N \N 76582 M.aucheri Moluccella Moluccella aucheri \N \N \N \N \N 76583 A.oppositifolium Aceratium Aceratium oppositifolium \N \N \N \N \N 76584 C.cathartica Chamaecrista Chamaecrista cathartica \N \N \N \N \N 76585 N.pteridophylla Nasa Nasa pteridophylla \N \N \N \N \N 76586 D.morrisii Dichaea Dichaea morrisii \N \N \N \N \N 76587 E.monogynum Erythroxylum Erythroxylum monogynum \N \N \N \N \N 76588 S.lyallii Stegostyla Stegostyla lyallii \N \N \N \N \N 76589 C.kawakamii Carpinus Carpinus kawakamii \N \N \N \N \N 76590 P.vaginata Pappostipa Pappostipa vaginata \N \N \N \N \N 76591 A.lessoniana Anemanthele Anemanthele lessoniana \N \N \N \N \N 76592 E.contortisiliquum Enterolobium Enterolobium contortisiliquum \N \N \N \N \N 76593 S.saxatilis Stapeliopsis Stapeliopsis saxatilis \N \N \N \N \N 76594 P.maximowiczii Populus Populus deltoides x Populus maximowiczii \N \N \N \N \N 76595 D.excelsa Dahlia Dahlia excelsa \N \N \N \N \N 76596 T.delavayi Toxicodendron Toxicodendron delavayi \N \N \N \N \N 76597 S.ochraceus Styrax Styrax ochraceus \N \N \N \N \N 76598 \N subspecies Chionochloa flavescens subsp. brevis \N \N \N \N \N 76599 B.plurijuga Baikiaea Baikiaea plurijuga Rhodesian-teak \N \N \N \N 76600 C.nealiae Carex Carex nealiae \N \N \N \N \N 76601 L.maroccana Lavatera Lavatera maroccana \N \N \N \N \N 76602 B.O00B465_1 Bulbophyllum Bulbophyllum sp. O00B465_1 \N \N \N \N \N 76603 A.taurostigma Amorphophallus Amorphophallus taurostigma \N \N \N \N \N 76604 A.elsiae Anderbergia Anderbergia elsiae \N \N \N \N \N 76605 I.tenuifolia Ipomopsis Ipomopsis tenuifolia \N \N \N \N \N 76606 P.pinnatum Platymiscium Platymiscium pinnatum Panama redwood,granadillo,quira \N \N \N \N 76607 C.ruscifolia Coriaria Coriaria ruscifolia \N \N \N \N \N 76608 B.coccinea Boerhavia Boerhavia coccinea red spiderling \N \N \N \N 76609 E.evodiifolius Evodiopanax Evodiopanax evodiifolius \N \N \N \N \N 76610 N.SH-2010 Nertera Nertera sp. SH-2010 \N \N \N \N \N 76611 C.nevadensis Crocus Crocus nevadensis \N \N \N \N \N 76612 \N genus Pentapeltis \N \N \N \N \N 76613 P.crassifolia Physalis Physalis crassifolia \N \N \N \N \N 76614 A.tenuifolia Achillea Achillea tenuifolia \N \N \N \N \N 76615 P.fimbriolata Pleuricospora Pleuricospora fimbriolata \N \N \N \N \N 76616 E.praeruptus Elymus Elymus praeruptus \N \N \N \N \N 76617 \N subspecies Lithodora hispidula subsp. versicolor \N \N \N \N \N 76618 N.1030 Nothoscordum Nothoscordum sp. 1030 \N \N \N \N \N 76619 W.amherstiana Wulfeniopsis Wulfeniopsis amherstiana \N \N \N \N \N 76620 W.undulata Wahlenbergia Wahlenbergia undulata \N \N \N \N \N 76621 P.ornifolia Polyscias Polyscias ornifolia \N \N \N \N \N 76622 A.roxburghianus Amaranthus Amaranthus roxburghianus \N \N \N \N \N 76623 M.juruanum Monotagma Monotagma juruanum \N \N \N \N \N 76624 A.frutescens Argyranthemum Argyranthemum frutescens \N \N \N \N \N 76625 R.32422 Rafflesia Rafflesia sp. Clemens 32422 \N \N \N \N \N 76626 C.discolor Clinopodium Clinopodium discolor \N \N \N \N \N 76627 H.normanii Hibiscus Hibiscus normanii \N \N \N \N \N 76628 P.3546 Phrynium Phrynium sp. Suksathan 3546 \N \N \N \N \N 76629 S.lorentzii Schinopsis Schinopsis lorentzii \N \N \N \N \N 76630 \N genus Motherwellia \N \N \N \N \N 76631 N.longiflora Nicotiana Nicotiana longiflora \N \N \N \N \N 76632 V.phyliciodes Valeriana Valeriana phyliciodes \N \N \N \N \N 76633 H.incana Hemigenia Hemigenia incana \N \N \N \N \N 76634 A.confusa Aspalathus Aspalathus confusa \N \N \N \N \N 76635 C.lavandulifolia Chionolaena Chionolaena lavandulifolia \N \N \N \N \N 76636 C.hessei Cornus Cornus hessei \N \N \N \N \N 76637 \N genus Schistophyllidium \N \N \N \N \N 76638 E.305 Erigeron Erigeron sp. Escobedo 305 \N \N \N \N \N 76639 L.disepala Lewisia Lewisia disepala \N \N \N \N \N 76640 C.peregrinus Calamus Calamus peregrinus \N \N \N \N \N 76641 C.macasense Cyrtochilum Cyrtochilum macasense \N \N \N \N \N 76642 K.tysonii Kniphofia Kniphofia tysonii \N \N \N \N \N 76643 \N genus Picrothamnus \N \N \N \N \N 76644 E.parodii Eleocharis Eleocharis parodii \N \N \N \N \N 76645 A.parishii Achnatherum Achnatherum parishii \N \N \N \N \N 76646 I.montana Ilex Ilex montana mountain holly,mountain winterberry \N \N \N \N 76647 G.riodocense Grazielodendron Grazielodendron riodocense \N \N \N \N \N 76648 C.caerulea Cyanicula Cyanicula caerulea \N \N \N \N \N 76649 M.donnell-smithii Myrrhidendron Myrrhidendron donnell-smithii \N \N \N \N \N 76650 C.stevensonii Carmichaelia Carmichaelia stevensonii \N \N \N \N \N 76651 \N genus Micropleura \N \N \N \N \N 76652 T.glandulifera Triplostegia Triplostegia glandulifera \N \N \N \N \N 76653 \N genus Dallwatsonia \N \N \N \N \N 76654 A.conferta Ataenidia Ataenidia conferta \N \N \N \N \N 76655 E.guilfoylei Eucalyptus Eucalyptus guilfoylei \N \N \N \N \N 76656 C.grandifolia Cliffortia Cliffortia grandifolia \N \N \N \N \N 76657 P.godfreyi Physostegia Physostegia godfreyi \N \N \N \N \N 76658 G.odoratissima Gymnadenia Gymnadenia odoratissima \N \N \N \N \N 76659 H.caerulea Houstonia Houstonia caerulea Quaker-ladies,azure bluet \N \N \N \N 76660 M.mollissima Montanoa Montanoa mollissima \N \N \N \N \N 76661 C.PMS-2010 Cucumis Cucumis sp. D PMS-2010 \N \N \N \N \N 76662 N.1330 Nasa Nasa cf. macrantha 1330 \N \N \N \N \N 76663 J.crispa Jasione Jasione crispa \N \N \N \N \N 76664 C.uliginosus Cheirolophus Cheirolophus uliginosus \N \N \N \N \N 76665 C.palmata Ceratosanthes Ceratosanthes palmata \N \N \N \N \N 76666 P.japonica Pieris Pieris japonica Japanese andromeda,ma zui mu \N \N \N \N 76667 C.citratus Cymbopogon Cymbopogon citratus lemon grass \N \N \N \N 76668 B.frutescens Bulbine Bulbine frutescens \N \N \N \N \N 76669 P.subsessilifolium Piper Piper subsessilifolium \N \N \N \N \N 76670 \N genus Dicranocarpus \N \N \N \N \N 76671 P.alpataco Prosopis Prosopis alpataco \N \N \N \N \N 76672 O.seineri Ornithogalum Ornithogalum seineri \N \N \N \N \N 76673 T.guatemalense Thalictrum Thalictrum guatemalense \N \N \N \N \N 76674 C.connata Coreopsis Coreopsis connata \N \N \N \N \N 76675 P.bracteosa Phlomoides Phlomoides bracteosa \N \N \N \N \N 76676 S.petersonii Silene Silene petersonii \N \N \N \N \N 76677 A.arvensis Aphanes Aphanes arvensis \N \N \N \N \N 76678 P.diaz-romeroana Pereskia Pereskia diaz-romeroana \N \N \N \N \N 76679 E.sitiens Erica Erica sitiens \N \N \N \N \N 76680 L.calocephalum Leontopodium Leontopodium calocephalum \N \N \N \N \N 76681 G.putterlickioides Gymnosporia Gymnosporia putterlickioides \N \N \N \N \N 76682 E.racemosa Eubotrys Eubotrys racemosa fetterbush,swamp doghobble,sweetbells \N \N \N \N 76683 A.calceolus Aneilema Aneilema calceolus \N \N \N \N \N 76684 V.pyrenaica Vicia Vicia pyrenaica \N \N \N \N \N 76685 L.rugosa Lantana Lantana rugosa \N \N \N \N \N 76686 A.robertsoniorum Ancistrocladus Ancistrocladus robertsoniorum \N \N \N \N \N 76687 C.petelotii Cleistanthus Cleistanthus petelotii \N \N \N \N \N 76688 I.latifolia Ixia Ixia latifolia \N \N \N \N \N 76689 O.lindleyoides Oncidium Oncidium lindleyoides \N \N \N \N \N 76690 K.saxatilis Kernera Kernera saxatilis \N \N \N \N \N 76691 A.rosengurttii Axonopus Axonopus rosengurttii \N \N \N \N \N 76692 M.bondii Muraltia Muraltia bondii \N \N \N \N \N 76693 \N varietas Cratoxylum formosum var. in edit. Zakaria 204 \N \N \N \N \N 76694 A.lutea Aristolochia Aristolochia lutea \N \N \N \N \N 76695 \N varietas Pediomelum megalanthum var. retrorsum \N \N \N \N \N 76696 D.canniformis Donax Donax canniformis \N \N \N \N \N 76697 V.lilliputiana Hebe Veronica lilliputiana \N \N \N \N \N 76698 O.paludosum Ornithogalum Ornithogalum paludosum \N \N \N \N \N 76699 \N genus Matthiola \N \N \N \N \N 76700 P.undulata Paris Paris undulata \N \N \N \N \N 76701 C.lappulacea Calotis Calotis lappulacea \N \N \N \N \N 76702 A.lanceolatum Argyrolobium Argyrolobium lanceolatum \N \N \N \N \N 76703 G.suaedifolia Geissolepis Geissolepis suaedifolia \N \N \N \N \N 76704 R.kialense Rheum Rheum kialense \N \N \N \N \N 76705 \N genus Pterocereus \N \N \N \N \N 76706 D.matthioloides Draba Draba matthioloides \N \N \N \N \N 76707 \N subspecies Glehnia littoralis subsp. littoralis \N \N \N \N \N 76708 P.cubensis Pieris Pieris cubensis \N \N \N \N \N 76709 \N genus Tremulina \N \N \N \N \N 76710 E.calyculata Euphorbia Euphorbia calyculata \N \N \N \N \N 76711 H.arachnoidea Haworthia Haworthia arachnoidea \N \N \N \N \N 76712 \N genus Clermontia \N \N \N \N \N 76713 P.appendiculatum Pelargonium Pelargonium appendiculatum \N \N \N \N \N 76714 A.albus Amaranthus Amaranthus albus tumbleweed amaranth \N \N \N \N 76715 G.inundata Guatteria Guatteria inundata \N \N \N \N \N 76716 B.razzifera Berlinia Berlinia razzifera \N \N \N \N \N 76717 S.calophylla Sericolea Sericolea calophylla \N \N \N \N \N 76718 \N subspecies Momordica charantia subsp. macroloba \N \N \N \N \N 76719 V.planifolia Vanilla Vanilla planifolia \N \N \N \N \N 76720 \N genus Attalea \N \N \N \N \N 76721 T.alata Thunbergia Thunbergia alata black-eyed Susan vine \N \N \N \N 76722 \N genus Callerya \N \N \N \N \N 76723 \N subspecies Sophora microphylla subsp. macnabiana \N \N \N \N \N 76724 C.carolinii Calandrinia Calandrinia carolinii \N \N \N \N \N 76725 A.anomala Artemisia Artemisia anomala \N \N \N \N \N 76726 A.lobatum Arisaema Arisaema lobatum \N \N \N \N \N 76727 A.podagraria Aegopodium Aegopodium podagraria goutweed,herb gerard \N \N \N \N 76728 C.tangutica Caragana Caragana tangutica \N \N \N \N \N 76729 C.firmifolium Crinum Crinum firmifolium \N \N \N \N \N 76730 P.wrightii Pachyanthus Pachyanthus wrightii \N \N \N \N \N 76731 \N genus Spondias \N \N \N \N \N 76732 F.microsperma Felicia Felicia microsperma \N \N \N \N \N 76733 C.albicoma Clematis Clematis albicoma \N \N \N \N \N 76734 \N varietas Clarkia xantiana var. xantiana \N \N \N \N \N 76735 \N genus Petrobium \N \N \N \N \N 76736 M.scrippsiana Mammillaria Mammillaria scrippsiana \N \N \N \N \N 76737 M.wislizeni Maurandya Maurandya wislizeni \N \N \N \N \N 76738 H.alba Hastingsia Hastingsia alba \N \N \N \N \N 76739 E.macrophylla Elytraria Elytraria macrophylla \N \N \N \N \N 76740 C.GF-2011 Chusquea Chusquea aff. fendleri B GF-2011 \N \N \N \N \N 76741 S.reflexum Schizocarpum Schizocarpum reflexum \N \N \N \N \N 76742 C.rhamnoides Choristylis Choristylis rhamnoides \N \N \N \N \N 76743 P.praecox Pittocaulon Pittocaulon praecox \N \N \N \N \N 76744 I.SH-2010 Isochilus Isochilus sp. SH-2010 \N \N \N \N \N 76745 P.palustris Parnassia Parnassia palustris bog stars \N \N \N \N 76746 E.parishii Eleocharis Eleocharis parishii \N \N \N \N \N 76747 C.colocynthis Citrullus Citrullus colocynthis alhandal,bitter-apple,colocynth,tumba,vine-of-Sodom,wild gourd \N \N \N \N 76748 F.aegyptia Farsetia Farsetia aegyptia \N \N \N \N \N 76749 \N subspecies Osmorhiza mexicana subsp. bipatriata \N \N \N \N \N 76750 L.acuminata Lafoensia Lafoensia acuminata \N \N \N \N \N 76751 M.hieronymi Mutisia Mutisia hieronymi \N \N \N \N \N 76752 C.multiflorum Calycophyllum Calycophyllum multiflorum \N \N \N \N \N 76753 L.glutinosa Litsea Litsea glutinosa \N \N \N \N \N 76754 N.graminea Najas Najas graminea \N \N \N \N \N 76755 \N varietas Commelina communis var. ludens \N \N \N \N \N 76756 L.habenarina Liparis Liparis habenarina \N \N \N \N \N 76757 M.lanata Micromeria Micromeria lanata \N \N \N \N \N 76758 \N genus Physocardamum \N \N \N \N \N 76759 S.graminifolium Stylidium Stylidium graminifolium \N \N \N \N \N 76760 S.callicarpa Sambucus Sambucus callicarpa \N \N \N \N \N 76763 P.calophylla Perezia Perezia calophylla \N \N \N \N \N 76764 C.ecuadoriana Carlowrightia Carlowrightia ecuadoriana \N \N \N \N \N 76765 \N genus Pentadiplandra \N \N \N \N \N 76766 M.hassellii Muiriantha Muiriantha hassellii \N \N \N \N \N 76767 C.canescens Chondrilla Chondrilla canescens \N \N \N \N \N 76768 H.2159 Heliotropium Heliotropium sp. 2159 \N \N \N \N \N 76769 A.hawksworthii Arceuthobium Arceuthobium hawksworthii \N \N \N \N \N 76770 A.angustifolia Acrotome Acrotome angustifolia \N \N \N \N \N 76771 M.lanceolata Microseris Microseris lanceolata \N \N \N \N \N 76772 \N genus Psylliostachys \N \N \N \N \N 76773 C.linifolia Coreopsis Coreopsis linifolia \N \N \N \N \N 76774 L.holochlorus Lathyrus Lathyrus holochlorus \N \N \N \N \N 76775 T.adnatum Typhonium Typhonium adnatum \N \N \N \N \N 76776 E.eucrosioides Eucrosia Eucrosia eucrosioides \N \N \N \N \N 76777 E.coleura Elegia Elegia coleura \N \N \N \N \N 76778 E.matabelicum Elaeodendron Elaeodendron matabelicum \N \N \N \N \N 76779 \N genus Endodesmia \N \N \N \N \N 76780 \N genus Sarocalamus \N \N \N \N \N 76781 S.cereale Secale Secale cereale rye \N \N \N \N 76782 C.serratum Cyrtochilum Cyrtochilum serratum \N \N \N \N \N 76783 M.cymbidioides Maxillaria Maxillaria cymbidioides \N \N \N \N \N 76784 A.euchroma Arnebia Arnebia euchroma \N \N \N \N \N 76785 S.JH-2004 Streptocarpus Streptocarpus sp. JH-2004 \N \N \N \N \N 76786 B.macristhmochila Bletia Bletia macristhmochila \N \N \N \N \N 76787 A.pachycephala Athanasia Athanasia pachycephala \N \N \N \N \N 76788 R.hunanensis Rubus Rubus hunanensis \N \N \N \N \N 76789 S.thomsonii Saussurea Saussurea thomsonii \N \N \N \N \N 76790 B.nottowayanus Bromus Bromus nottowayanus \N \N \N \N \N 76791 \N genus Endonema \N \N \N \N \N 76792 O.sessiliflorum Osmoxylon Osmoxylon sessiliflorum \N \N \N \N \N 76793 B.trelawniensis Bernardia Bernardia trelawniensis \N \N \N \N \N 76794 C.schweinfurthii Canarium Canarium schweinfurthii \N \N \N \N \N 76795 \N genus Selliera \N \N \N \N \N 76796 S.le-testui Sindoropsis Sindoropsis le-testui \N \N \N \N \N 76797 A.lunata Aspasia Aspasia lunata \N \N \N \N \N 76798 \N varietas Prunus persica var. potaninii \N \N \N \N \N 76799 O.clavifolia Oxalis Oxalis clavifolia \N \N \N \N \N 76800 V.myrsinites Vaccinium Vaccinium myrsinites evergreen blueberry,shiny blueberry \N \N \N \N 76801 C.CL-2005 Cabomba Cabomba sp. CL-2005 \N \N \N \N \N 76802 P.hirta Popowia Popowia hirta \N \N \N \N \N 76803 A.djumaensis Aphanocalyx Aphanocalyx djumaensis \N \N \N \N \N 76804 C.elongatum Corispermum Corispermum elongatum \N \N \N \N \N 76805 \N genus Homalocarpus \N \N \N \N \N 76806 A.ciliaris Amphithalea Amphithalea ciliaris \N \N \N \N \N 76807 \N genus Exodeconus \N \N \N \N \N 76808 D.fischeri Dianthus Dianthus fischeri \N \N \N \N \N 76809 \N subspecies Plagianthus regius subsp. chathamicus \N \N \N \N \N 76810 E.pungens Echinops Echinops pungens \N \N \N \N \N 76811 E.phragmostoma Euphrasia Euphrasia phragmostoma \N \N \N \N \N 76812 A.rosea Argemone Argemone rosea \N \N \N \N \N 76813 A.tripolium Aster Aster tripolium sea starwort \N \N \N \N 76814 B.barbosae Brasiliorchis Brasiliorchis barbosae \N \N \N \N \N 76815 \N genus Cipocereus \N \N \N \N \N 76816 P.myrsinodendron Planchonella Planchonella myrsinodendron \N \N \N \N \N 76817 B.diffracta Bomarea Bomarea diffracta \N \N \N \N \N 76818 \N genus Mosannona \N \N \N \N \N 76819 S.hostii Saxifraga Saxifraga hostii \N \N \N \N \N 76820 D.lanata Dalea Dalea lanata wooly prairie-clover \N \N \N \N 76821 P.madagascariensis Perrierbambus Perrierbambus madagascariensis \N \N \N \N \N 76822 W.maura Witsenia Witsenia maura \N \N \N \N \N 76823 \N genus Rhopaloblaste \N \N \N \N \N 76824 P.magellanica Perezia Perezia magellanica \N \N \N \N \N 76825 \N genus Porophyllum \N \N \N \N \N 76826 C.tashiroi Clematis Clematis tashiroi \N \N \N \N \N 76827 O.argyreia Oreocharis Oreocharis argyreia \N \N \N \N \N 76828 L.pyrenaicum Loncomelos Loncomelos pyrenaicum \N \N \N \N \N 76829 C.alfredii Cousinia Cousinia alfredii \N \N \N \N \N 76830 S.oblongula Sasa Sasa oblongula \N \N \N \N \N 76831 T.179 Trigonella Trigonella sp. Steele 179 \N \N \N \N \N 76832 C.fructiangusta Clusia Clusia fructiangusta \N \N \N \N \N 76833 G.intermedium Gorgonidium Gorgonidium intermedium \N \N \N \N \N 76834 C.xanthosioidea Calotis Calotis xanthosioidea \N \N \N \N \N 76835 Z.fragile Zingiber Zingiber fragile \N \N \N \N \N 76836 R.media Reseda Reseda media \N \N \N \N \N 76837 L.flava Lonicera Lonicera flava \N \N \N \N \N 76838 B.mildbraedii Bowringia Bowringia mildbraedii \N \N \N \N \N 76840 P.aurea Potentilla Potentilla aurea \N \N \N \N \N 76841 \N genus Tetrarrhena \N \N \N \N \N 76842 V.jucundum Viburnum Viburnum jucundum \N \N \N \N \N 76843 \N subspecies Eriosyce taltalensis subsp. pygmaea \N \N \N \N \N 76844 K.ensifolia Kniphofia Kniphofia ensifolia \N \N \N \N \N 76845 H.crispus Haemanthus Haemanthus crispus \N \N \N \N \N 76846 C.deserticola Chrysanthoglossum Chrysanthoglossum deserticola \N \N \N \N \N 76847 H.warnockii Hexalectris Hexalectris warnockii \N \N \N \N \N 76848 P.ecuadoricum Perymenium Perymenium ecuadoricum \N \N \N \N \N 76849 C.macrostyla Carex Carex macrostyla \N \N \N \N \N 76850 A.callosa Aspalathus Aspalathus callosa \N \N \N \N \N 76851 D.pellucida Diaphananthe Diaphananthe pellucida \N \N \N \N \N 76852 L.roseus Lampranthus Lampranthus roseus \N \N \N \N \N 76853 P.MVSP-2007 Plagiostachys Plagiostachys sp. MVSP-2007 \N \N \N \N \N 76854 G.wachenheimii Guatteria Guatteria wachenheimii \N \N \N \N \N 76855 S.coriaceum Stryphnodendron Stryphnodendron coriaceum \N \N \N \N \N 76856 Q.library unclassified Quercus Quercus petraea/Quercus robur mixed clone library \N \N \N \N \N 76857 I.puberula Impatiens Impatiens puberula \N \N \N \N \N 76858 \N varietas Vriesea splendens var. splendens \N \N \N \N \N 76859 \N genus Asteranthe \N \N \N \N \N 76860 G.gracilis Galanthus Galanthus gracilis \N \N \N \N \N 76861 A.leandrii Ampelosycios Ampelosicyos leandrii \N \N \N \N \N 76862 \N genus Rensonia \N \N \N \N \N 76863 C.macrostegia Calystegia Calystegia macrostegia \N \N \N \N \N 76864 A.rosenorum Allium Allium rosenorum \N \N \N \N \N 76865 C.serpens Chamaecrista Chamaecrista serpens \N \N \N \N \N 76866 O.astranthum Oncidium Oncidium astranthum \N \N \N \N \N 76867 S.Sieben508 Schoenoxiphium Schoenoxiphium sp. Sieben508 \N \N \N \N \N 76868 R.tymphaea Reseda Reseda tymphaea \N \N \N \N \N 76869 B.naorojii Brachystelma Brachystelma naorojii \N \N \N \N \N 76870 P.bernardina Packera Packera bernardina \N \N \N \N \N 76871 P.sordida Physalis Physalis sordida \N \N \N \N \N 76872 S.cana Senna Senna cana \N \N \N \N \N 76873 H.microcarpa Hakea Hakea microcarpa \N \N \N \N \N 76874 A.arachnites Aeranthes Aeranthes arachnites \N \N \N \N \N 76875 \N genus Thymus \N \N \N \N \N 76876 C.patinii Cattleya Cattleya patinii \N \N \N \N \N 76877 \N genus Rehderodendron \N \N \N \N \N 76878 \N genus Camptocarpus \N \N \N \N \N 76879 L.esterhuyseniae Lonchostoma Lonchostoma esterhuyseniae \N \N \N \N \N 76880 A.JEES-2007 Amphidasya Amphidasya sp. JEES-2007 \N \N \N \N \N 76881 P.pensylvanica Parietaria Parietaria pensylvanica \N \N \N \N \N 76882 C.bulbosus Cymopterus Cymopterus bulbosus \N \N \N \N \N 76883 E.polyphyllus Enneapogon Enneapogon polyphyllus \N \N \N \N \N 76884 G.crassuloides Gentiana Gentiana crassuloides \N \N \N \N \N 76885 V.erythrodactylon Vriesea Vriesea erythrodactylon \N \N \N \N \N 76886 B.eurybracteata Berberis Berberis eurybracteata \N \N \N \N \N 76887 C.lanatus Citrullus Citrullus colocynthis x Citrullus lanatus var. lanatus \N \N \N \N \N 76888 R.polyphyllus Ranunculus Ranunculus polyphyllus \N \N \N \N \N 76889 P.deltoides Populus Populus deltoides \N \N \N \N \N 76890 T.s5.IR701 unclassified Taraxacum Taraxacum (sect. Dioszegia) sp. s5.IR701 \N \N \N \N \N 76891 C.kotschyana Crepis Crepis kotschyana \N \N \N \N \N 76892 \N genus Phymatidium \N \N \N \N \N 76893 \N genus Coelogyne \N \N \N \N \N 76894 \N genus Atamisquea \N \N \N \N \N 76895 L.carnosa Lebeckia Lebeckia carnosa \N \N \N \N \N 76896 C.guabubu Cionosicyos Cionosicyos guabubu \N \N \N \N \N 76897 \N subspecies Vigna membranacea subsp. membranacea \N \N \N \N \N 76898 L.debilis Lasiopogon Lasiopogon debilis \N \N \N \N \N 76899 C.sacaquinha Croton Croton sacaquinha \N \N \N \N \N 76900 M.flexuosus Melicytus Melicytus flexuosus \N \N \N \N \N 76901 C.moravica Campanula Campanula moravica \N \N \N \N \N 76902 \N genus Cyclotrichium \N \N \N \N \N 76903 A.pearsonii Antherothamnus Antherothamnus pearsonii \N \N \N \N \N 76904 C.loretensis Clusia Clusia loretensis \N \N \N \N \N 76905 S.crebrinerve Syzygium Syzygium crebrinerve \N \N \N \N \N 76906 A.cynapium Aethusa Aethusa cynapium fool's parsley \N \N \N \N 76907 T.GAT-bg276 Tolpis Tolpis cf. umbellata GAT-bg276 \N \N \N \N \N 76908 H.subfasciata Haworthia Haworthia subfasciata \N \N \N \N \N 76909 C.orientalis Crataegus Crataegus orientalis \N \N \N \N \N 76910 \N varietas Gyrocheilos retrotrichus var. oligolobus \N \N \N \N \N 76911 P.stipularis Phylica Phylica stipularis \N \N \N \N \N 76912 M.macrocarpa Mucuna Mucuna macrocarpa \N \N \N \N \N 76913 R.bracteomana Roentgenia Roentgenia bracteomana \N \N \N \N \N 76914 A.arenicola Arachnorchis Arachnorchis arenicola \N \N \N \N \N 76915 M.mattii Macrocarpaea Macrocarpaea x mattii \N \N \N \N \N 76916 C.crenata Corchoropsis Corchoropsis crenata \N \N \N \N \N 76917 \N subspecies Erica viscaria subsp. macrosepala \N \N \N \N \N 76918 \N genus Yinshania \N \N \N \N \N 76919 D.freynii Delphinium Delphinium freynii \N \N \N \N \N 76920 C.tuberculata Clermontia Clermontia tuberculata \N \N \N \N \N 76921 P.crucis Prockia Prockia crucis \N \N \N \N \N 76922 V.uniflora Viola Viola uniflora \N \N \N \N \N 76923 P.microcarpum Papaver Papaver microcarpum \N \N \N \N \N 76924 \N genus Orcuttia \N \N \N \N \N 76925 C.obtusa Caltha Caltha obtusa \N \N \N \N \N 76926 \N genus Talisia \N \N \N \N \N 76927 \N genus Fagus beech trees \N \N \N \N 76928 \N varietas Torreyochloa pallida var. pauciflora \N \N \N \N \N 76929 S.glomeratum Sparganium Sparganium glomeratum \N \N \N \N \N 76930 P.thyrsoidea Planchonella Planchonella thyrsoidea \N \N \N \N \N 76931 M.hildebrandtii Mezoneuron Mezoneuron hildebrandtii \N \N \N \N \N 76932 S.lyratum Solanum Solanum lyratum \N \N \N \N \N 76933 C.microglossum Corycium Corycium microglossum \N \N \N \N \N 76934 P.puteolata Peperomia Peperomia puteolata \N \N \N \N \N 76935 M.infracta Masdevallia Masdevallia infracta \N \N \N \N \N 76936 C.gabrielis-blancae Centaurea Centaurea gabrielis-blancae \N \N \N \N \N 76937 B.blackii Barbacenia Barbacenia blackii \N \N \N \N \N 76938 V.oroboides Vicia Vicia oroboides \N \N \N \N \N 76939 P.froggattii Pseuduvaria Pseuduvaria froggattii \N \N \N \N \N 76940 A.plumbea Alocasia Alocasia plumbea \N \N \N \N \N 76941 C.villosa Calathea Calathea villosa \N \N \N \N \N 76942 M.floribundus Mallotus Mallotus floribundus \N \N \N \N \N 76943 F.nigrescens Ficinia Ficinia nigrescens \N \N \N \N \N 76944 \N genus Langebergia \N \N \N \N \N 76945 T.badium Trifolium Trifolium badium \N \N \N \N \N 76946 C.quinquefolia Cardamine Cardamine quinquefolia \N \N \N \N \N 76947 \N genus Setariopsis \N \N \N \N \N 76948 L.martinicensis Leucas Leucas martinicensis \N \N \N \N \N 76949 H.monachorum Heliosperma Heliosperma monachorum \N \N \N \N \N 76950 A.sesquipedale Angraecum Angraecum sesquipedale \N \N \N \N \N 76951 B.argenteomarginata Begonia Begonia argenteomarginata \N \N \N \N \N 76952 S.grandis Setaria Setaria grandis \N \N \N \N \N 76953 M.hypertrophicum Mesembryanthemum Mesembryanthemum hypertrophicum \N \N \N \N \N 76954 C.schmalhausenii Cousinia Cousinia schmalhausenii \N \N \N \N \N 76955 R.capuroni Rauvolfia Rauvolfia capuroni \N \N \N \N \N 76956 \N genus Chaiturus \N \N \N \N \N 76957 P.grande Piper Piper grande \N \N \N \N \N 76958 F.ovina Festuca Festuca idahoensis x Festuca ovina \N \N \N \N \N 76959 D.pentaphyllum Dorycnium Dorycnium pentaphyllum \N \N \N \N \N 76960 S.tenuifolium Symphyotrichum Symphyotrichum tenuifolium perennial saltmarsh aster \N \N \N \N 76961 \N genus Acampe \N \N \N \N \N 76962 L.maritima Lysiana Lysiana maritima \N \N \N \N \N 76963 T.varians Typhonium Typhonium varians \N \N \N \N \N 76964 J.microcarpa Juglans Juglans microcarpa \N \N \N \N \N 76965 H.conica Hymenogyne Hymenogyne conica \N \N \N \N \N 76966 D.extensa Draba Draba extensa \N \N \N \N \N 76967 L.secacul Leiotulus Leiotulus secacul \N \N \N \N \N 76968 J.hirta Jaegeria Jaegeria hirta \N \N \N \N \N 76969 \N genus Botryarrhena \N \N \N \N \N 76970 G.coriacea Gnidia Gnidia coriacea \N \N \N \N \N 76971 \N subspecies Potamogeton berchtoldii subsp. gemmiparus \N \N \N \N \N 76972 O.virginica Obolaria Obolaria virginica \N \N \N \N \N 76973 \N genus Wittmackanthus \N \N \N \N \N 76974 E.rubiginosa Eperua Eperua rubiginosa \N \N \N \N \N 76975 S.caerulescens Symplocos Symplocos caerulescens \N \N \N \N \N 76976 T.penicillatum Thesium Thesium penicillatum \N \N \N \N \N 76977 G.falconeri Galeola Galeola falconeri \N \N \N \N \N 76978 \N subspecies Impatiens rubromaculata subsp. imagiensis \N \N \N \N \N 76979 Z.ovatum Zygophyllum Zygophyllum ovatum \N \N \N \N \N 76980 S.abbreviatus Senecio Senecio abbreviatus \N \N \N \N \N 76981 M.madagascariensis Masoala Masoala madagascariensis \N \N \N \N \N 76982 \N genus Ammosperma \N \N \N \N \N 76983 P.longipes Persea Persea longipes \N \N \N \N \N 76984 M.xanti Malacothrix Malacothrix xanti \N \N \N \N \N 76985 P.petraea Pteryxia Pteryxia petraea rock wavewing \N \N \N \N 76986 T.rupestris Taihangia Taihangia rupestris \N \N \N \N \N 76987 C.DS-2008 Carthamus Carthamus sp. DS-2008 \N \N \N \N \N 76988 \N subtribe Ileostylinae \N \N \N \N \N 76989 S.avenaceum Sisyrinchium Sisyrinchium avenaceum \N \N \N \N \N 76990 S.aghensis Sinningia Sinningia aghensis \N \N \N \N \N 76991 C.sutup Croton Croton sutup \N \N \N \N \N 76992 A.guatimalense Antigonon Antigonon guatimalense \N \N \N \N \N 76993 V.dionysiensis Vicia Vicia dionysiensis \N \N \N \N \N 76994 A.fulgens Arnica Arnica fulgens \N \N \N \N \N 76995 D.herbaceum Dorycnium Dorycnium herbaceum \N \N \N \N \N 76996 G.tenuifolia Gyrandra Gyrandra tenuifolia \N \N \N \N \N 76997 G.rio-docensis Grazielodendron Grazielodendron rio-docensis \N \N \N \N \N 76998 P.pilosum Protium Protium pilosum \N \N \N \N \N 76999 N.aculeata Nyctanthes Nyctanthes aculeata \N \N \N \N \N 77000 J.prominens Juncus Juncus prominens \N \N \N \N \N 77001 P.aambe Papuechites Papuechites aambe \N \N \N \N \N 77002 C.bahianus Cryptanthus Cryptanthus bahianus \N \N \N \N \N 77003 K.biflora Krigia Krigia montana x Krigia biflora \N \N \N \N \N 77004 C.clavata Clavija Clavija clavata \N \N \N \N \N 77005 C.heptamera Clidemia Clidemia heptamera \N \N \N \N \N 77006 G.longicalyx Gossypium Gossypium longicalyx \N \N \N \N \N 77007 C.micropoda Carex Carex micropoda \N \N \N \N \N 77008 \N varietas Penstemon deustus var. suffrutescens \N \N \N \N \N 77009 S.drummondii Sesbania Sesbania drummondii poisonbean \N \N \N \N 77010 R.australasica Rhaphidophora Rhaphidophora australasica \N \N \N \N \N 77011 \N subspecies Babiana mucronata subsp. minor \N \N \N \N \N 77012 C.dichotoma Ceropegia Ceropegia dichotoma \N \N \N \N \N 77013 C.rubra Cephalanthera Cephalanthera rubra \N \N \N \N \N 77014 A.kermanschahensis Astragalus Astragalus kermanschahensis \N \N \N \N \N 77015 \N genus Sonerila \N \N \N \N \N 77016 A.phaeocarpa Anaxagorea Anaxagorea phaeocarpa \N \N \N \N \N 77017 S.angustiflora Strychnos Strychnos angustiflora \N \N \N \N \N 77018 S.elata Swertia Swertia elata \N \N \N \N \N 77019 G.gypsophila Gaillardia Gaillardia gypsophila \N \N \N \N \N 77020 E.azurea Eichhornia Eichhornia azurea \N \N \N \N \N 77021 P.rudibuenekeri Parodia Parodia rudibuenekeri \N \N \N \N \N 77022 C.lanceolaris Capparis Capparis lanceolaris \N \N \N \N \N 77023 L.lacerum Lepidium Lepidium lacerum \N \N \N \N \N 77024 E.mikinorii Epimedium Epimedium mikinorii \N \N \N \N \N 77025 B.EDNA09_01128 Begonia Begonia sp. EDNA09_01128 \N \N \N \N \N 77026 M.gracilis Macphersonia Macphersonia gracilis \N \N \N \N \N 77027 L.rivulorum Lachemilla Lachemilla rivulorum \N \N \N \N \N 77028 P.squamulosum Piper Piper squamulosum \N \N \N \N \N 77029 P.olivierii Pteropyrum Pteropyrum olivierii \N \N \N \N \N 77030 M.dentatus Melicytus Melicytus dentatus \N \N \N \N \N 77031 U.lobbiana Uvaria Uvaria lobbiana \N \N \N \N \N 77032 L.acutifolium Lenophyllum Lenophyllum acutifolium \N \N \N \N \N 77033 L.punicifolia Lafoensia Lafoensia punicifolia \N \N \N \N \N 77034 C.EYYL-2006 Crataegus Crataegus sp. EYYL-2006 \N \N \N \N \N 77035 C.keysseri Cardamine Cardamine keysseri \N \N \N \N \N 77036 C.amplexans Cyanicula Cyanicula amplexans \N \N \N \N \N 77037 T.bullatum Trifolium Trifolium bullatum \N \N \N \N \N 77038 M.luteynii Macrocarpaea Macrocarpaea luteynii \N \N \N \N \N 77039 M.ovalifolia Moringa Moringa ovalifolia \N \N \N \N \N 77040 T.niveum Taraxacum Taraxacum niveum \N \N \N \N \N 77041 E.penlandii Eutrema Eutrema penlandii \N \N \N \N \N 77042 N.hexaptera Neocogniauxia Neocogniauxia hexaptera \N \N \N \N \N 77043 L.pandurata Liparis Liparis pandurata \N \N \N \N \N 77044 P.microphyllus Paepalanthus Paepalanthus microphyllus \N \N \N \N \N 77045 S.lankesteriana Stenotyla Stenotyla lankesteriana \N \N \N \N \N 77046 \N varietas Allium ovalifolium var. leuconeurum \N \N \N \N \N 77047 \N genus Clypeola \N \N \N \N \N 77048 P.canescens Ptilotrichum Ptilotrichum canescens \N \N \N \N \N 77049 \N varietas Phryma leptostachya var. leptostachya \N \N \N \N \N 77050 M.platyclada Muehlenbeckia Muehlenbeckia platyclada \N \N \N \N \N 77051 S.luzula Sisyrinchium Sisyrinchium luzula \N \N \N \N \N 77052 D.doerfleri Draba Draba doerfleri \N \N \N \N \N 77053 V.purisimae Viguiera Viguiera purisimae \N \N \N \N \N 77054 \N subspecies Pimpinella tragium subsp. polyclada \N \N \N \N \N 77055 P.chrysacanthus Pilosocereus Pilosocereus chrysacanthus \N \N \N \N \N 77056 \N varietas Muhlenbergia villiflora var. villiflora \N \N \N \N \N 77057 \N genus Coelopleurum \N \N \N \N \N 77058 C.drabifolia Campanula Campanula drabifolia \N \N \N \N \N 77059 R.pilocarpa Rhipsalis Rhipsalis pilocarpa \N \N \N \N \N 77060 \N genus Petenaea \N \N \N \N \N 77061 A.pendula Aspalathus Aspalathus pendula \N \N \N \N \N 77062 H.aconitifolium Heracleum Heracleum aconitifolium \N \N \N \N \N 77063 P.bridgesii Phrodus Phrodus bridgesii \N \N \N \N \N 77064 P.granatum Punica Punica granatum \N \N \N \N \N 77065 \N varietas Coursetia caribaea var. chiapensis \N \N \N \N \N 77066 R.agastum Rhododendron Rhododendron agastum \N \N \N \N \N 77067 T.sp. Triticum Triticum turgidum subsp. durum x Triticosecale sp. \N \N \N \N \N 77068 E.racemosa Euclea Euclea racemosa \N \N \N \N \N 77069 D.lucida Dictyophleba Dictyophleba lucida \N \N \N \N \N 77070 A.polyneura Anisophyllea Anisophyllea polyneura \N \N \N \N \N 77071 A.trewioides Alchornea Alchornea trewioides \N \N \N \N \N 77072 H.bupleurifolia Heldreichia Heldreichia bupleurifolia \N \N \N \N \N 77073 \N genus Hypolaena \N \N \N \N \N 77074 C.giganteum Cymbidium Cymbidium giganteum \N \N \N \N \N 77075 A.impressa Aphelandra Aphelandra impressa \N \N \N \N \N 77076 C.teretifolia Chionochloa Chionochloa teretifolia \N \N \N \N \N 77077 \N genus Ectrosia \N \N \N \N \N 77078 P.rufa Passiflora Passiflora rufa \N \N \N \N \N 77079 V.chrysantha Vancouveria Vancouveria chrysantha \N \N \N \N \N 77080 P.canescens Paepalanthus Paepalanthus canescens \N \N \N \N \N 77081 P.darwinii Pleuropetalum Pleuropetalum darwinii \N \N \N \N \N 77082 S.stevenii Spiraea Spiraea stevenii \N \N \N \N \N 77083 N.hallaei Nephthytis Nephthytis hallaei \N \N \N \N \N 77084 X.australis Xanthorrhoea Xanthorrhoea australis \N \N \N \N \N 77085 P.loureiroi Phoenix Phoenix loureiroi \N \N \N \N \N 77086 M.sellowii Mandevilla Mandevilla sellowii \N \N \N \N \N 77087 D.hispida Draba Draba hispida \N \N \N \N \N 77088 C.marcellae Calochortus Calochortus marcellae \N \N \N \N \N 77089 H.schweinitzii Helianthus Helianthus schweinitzii \N \N \N \N \N 77090 S.assyriaca Silene Silene assyriaca \N \N \N \N \N 77091 \N genus Gongylotaxis \N \N \N \N \N 77092 O.basilissa Ophrys Ophrys basilissa \N \N \N \N \N 77093 D.arborescens Dysoxylum Dysoxylum arborescens \N \N \N \N \N 77094 \N genus Chilocarpus \N \N \N \N \N 77095 S.jordanicola Salsola Salsola jordanicola \N \N \N \N \N 77096 M.pulegium Mentha Mentha pulegium pennyroyoal \N \N \N \N 77097 C.robustum Clinopodium Clinopodium robustum \N \N \N \N \N 77098 A.pinnatifidum Aralidium Aralidium pinnatifidum \N \N \N \N \N 77099 A.musaensis Aeschynanthus Aeschynanthus musaensis \N \N \N \N \N 77100 H.radula Helianthus Helianthus radula \N \N \N \N \N 77101 C.salicifolia Callilepis Callilepis salicifolia \N \N \N \N \N 77102 \N subfamily Aristidoideae \N \N \N \N \N 77103 P.simsii Philodendron Philodendron simsii \N \N \N \N \N 77104 T.cucumerina Trichosanthes Trichosanthes cucumerina snake gourd \N \N \N \N 77105 \N genus Parodiophyllochloa \N \N \N \N \N 77106 A.malaccensis Aquilaria Aquilaria malaccensis \N \N \N \N \N 77107 F.pauciflora Fimbristylis Fimbristylis pauciflora \N \N \N \N \N 77108 U.buchholzii Uvaria Uvaria buchholzii \N \N \N \N \N 77109 S.briquetii Sorocea Sorocea briquetii \N \N \N \N \N 77110 M.amazonica Maxillaria Maxillaria amazonica \N \N \N \N \N 77111 L.chrysantha Lasthenia Lasthenia chrysantha \N \N \N \N \N 77112 R.capensis Retzia Retzia capensis \N \N \N \N \N 77113 P.officinale Peucedanum Peucedanum officinale hog's-fennel,sulphurweed \N \N \N \N 77114 \N no rank unclassified Gesneriaceae \N \N \N \N \N 77115 N.jungifolia Nasa Nasa jungifolia \N \N \N \N \N 77116 C.megasperma Callerya Callerya megasperma \N \N \N \N \N 77117 \N tribe Hubbardieae \N \N \N \N \N 77118 G.dumosa Gaylussacia Gaylussacia dumosa dwarf huckleberry \N \N \N \N 77119 O.amethystea Oxytropis Oxytropis amethystea \N \N \N \N \N 77120 \N genus Grammatophyllum \N \N \N \N \N 77121 A.huerlimannii Actinokentia Actinokentia huerlimannii \N \N \N \N \N 77122 \N genus Cephalosphaera \N \N \N \N \N 77123 V.harveyana Vitex Vitex harveyana \N \N \N \N \N 77124 S.hookeri Schizanthus Schizanthus hookeri \N \N \N \N \N 77125 \N genus Sanchezia \N \N \N \N \N 77126 S.ciliatum Stigmaphyllon Stigmaphyllon ciliatum \N \N \N \N \N 77127 M.humivagans Mimosa Mimosa humivagans \N \N \N \N \N 77128 R.suffulta Roldana Roldana suffulta \N \N \N \N \N 77129 D.iridioides Dietes Dietes iridioides \N \N \N \N \N 77130 \N genus Pleioblastus \N \N \N \N \N 77131 \N varietas Aristida setifolia var. setifolia \N \N \N \N \N 77132 N.pinninervis Neolitsea Neolitsea pinninervis \N \N \N \N \N 77133 S.swainsonioides Swainsona Swainsona swainsonioides \N \N \N \N \N 77134 C.orchidiformis Cyanella Cyanella orchidiformis \N \N \N \N \N 77135 \N genus Eliokarmos \N \N \N \N \N 77136 \N genus Arundinella \N \N \N \N \N 77137 A.porcata Albertisia Albertisia porcata \N \N \N \N \N 77138 L.carinthiacum Lomatogonium Lomatogonium carinthiacum \N \N \N \N \N 77139 P.sinofasciata Pilea Pilea sinofasciata \N \N \N \N \N 77140 D.prazeri Dioscorea Dioscorea prazeri \N \N \N \N \N 77141 C.viridi-luteola Cristaria Cristaria viridi-luteola \N \N \N \N \N 77142 M.trinervia Moehringia Moehringia trinervia \N \N \N \N \N 77143 I.danfordiae Iris Iris danfordiae \N \N \N \N \N 77144 V.articulata Vicia Vicia articulata one-flower vetch \N \N \N \N 77145 M.aspera Mimosa Mimosa aspera \N \N \N \N \N 77146 \N genus Cymbidiella \N \N \N \N \N 77147 C.martabanicus Cyathocalyx Cyathocalyx martabanicus \N \N \N \N \N 77148 A.00-6680 Amomum Amomum aff. villosum Kress 00-6680 \N \N \N \N \N 77149 \N genus Racemobambos \N \N \N \N \N 77150 L.otophorus Lasiocephalus Lasiocephalus otophorus \N \N \N \N \N 77151 P.asperifolius Pachycarpus Pachycarpus asperifolius \N \N \N \N \N 77153 T.fendleri Tillandsia Tillandsia fendleri \N \N \N \N \N 77154 C.humilis Chamaerops Chamaerops humilis European fan palm \N \N \N \N 77155 H.ovata Hoheria Hoheria ovata \N \N \N \N \N 77156 V.discolor Viguiera Viguiera discolor \N \N \N \N \N 77157 A.thymifolium Arcytophyllum Arcytophyllum thymifolium \N \N \N \N \N 77158 M.grandis Maxillaria Maxillaria grandis \N \N \N \N \N 77159 S.californica Sorbus Sorbus californica \N \N \N \N \N 77160 A.blayana Acacia Acacia blayana \N \N \N \N \N 77161 D.obtusa Disa Disa obtusa \N \N \N \N \N 77162 T.regelii Tripterygium Tripterygium regelii \N \N \N \N \N 77163 \N genus Hyalochlamys \N \N \N \N \N 77164 T.latearistata Tarasa Tarasa latearistata \N \N \N \N \N 77165 Z.oligantha Zinnia Zinnia oligantha \N \N \N \N \N 77166 P.malouinensis Pentaschistis Pentameris malouinensis \N \N \N \N \N 77167 G.sanabrensis Genista Genista sanabrensis \N \N \N \N \N 77168 D.beccariana Dicoelia Dicoelia beccariana \N \N \N \N \N 77169 S.acutifolia Stachys Stachys acutifolia \N \N \N \N \N 77170 B.h214 Bellevalia Bellevalia aff. brevipedicellata h214 \N \N \N \N \N 77171 T.longiracemosa Tetraberlinia Tetraberlinia longiracemosa \N \N \N \N \N 77172 C.ANM-2010 Cedrela Cedrela sp. 4 ANM-2010 \N \N \N \N \N 77173 R.vigorosus Rubus Rubus vigorosus \N \N \N \N \N 77174 E.durietziana Euphrasia Euphrasia durietziana \N \N \N \N \N 77175 E.multiflora Erica Erica multiflora brezo \N \N \N \N 77176 P.suteri Pimelea Pimelea suteri \N \N \N \N \N 77177 B.minuta Babiana Babiana minuta \N \N \N \N \N 77178 S.dodii Staavia Staavia dodii \N \N \N \N \N 77179 E.quinquangularis Eleocharis Eleocharis quinquangularis \N \N \N \N \N 77180 L.salicina Leandra Leandra salicina \N \N \N \N \N 77181 A.cornudentata Ardisia Ardisia cornudentata \N \N \N \N \N 77182 O.squamatus Oligochaetochilus Oligochaetochilus squamatus \N \N \N \N \N 77183 A.obovatum Alyssum Alyssum obovatum \N \N \N \N \N 77184 \N genus Entomophobia \N \N \N \N \N 77185 \N varietas Tabebuia insignis var. insignis \N \N \N \N \N 77186 L.parvifolius Lupinus Lupinus parvifolius \N \N \N \N \N 77187 I.tocacheana Inga Inga tocacheana \N \N \N \N \N 77188 P.tahitiensis Polyscias Polyscias tahitiensis \N \N \N \N \N 77189 A.arctisibirica Artemisia Artemisia arctisibirica \N \N \N \N \N 77190 W.vittata Werauhia Werauhia vittata \N \N \N \N \N 77191 T.subulatum Thrixspermum Thrixspermum subulatum \N \N \N \N \N 77192 S.emarginatum Sedum Sedum emarginatum ao ye jing tian \N \N \N \N 77193 P.minutifolium Phoradendron Phoradendron minutifolium \N \N \N \N \N 77194 P.mundi Pinguicula Pinguicula mundi \N \N \N \N \N 77195 S.81210:4 Stachyphrynium Stachyphrynium aff. repens Andersson 81210:4 \N \N \N \N \N 77196 B.occidentalis Betula Betula occidentalis water birch \N \N \N \N 77197 B.trifoliolata Bursera Bursera trifoliolata \N \N \N \N \N 77198 C.muehlenbergii Carex Carex muehlenbergii \N \N \N \N \N 77199 A.virens Ardisia Ardisia virens \N \N \N \N \N 77200 \N genus Lagenias \N \N \N \N \N 77201 L.jacotianum Leontopodium Leontopodium jacotianum \N \N \N \N \N 77202 Z.incurva Ziziphus Ziziphus incurva \N \N \N \N \N 77203 H.wolongense Heracleum Heracleum wolongense \N \N \N \N \N 77204 M.callicarpifolia Morinda Morinda callicarpifolia \N \N \N \N \N 77205 F.ruginerva Ficus Ficus ruginerva \N \N \N \N \N 77206 K.australiensis Kohautia Kohautia australiensis \N \N \N \N \N 77207 G.Narathiwat Goniothalamus Goniothalamus sp. Narathiwat \N \N \N \N \N 77208 L.myrothamnifolia Leonotis Leonotis myrothamnifolia \N \N \N \N \N 77209 R.gouldii Ristantia Ristantia gouldii \N \N \N \N \N 77210 \N varietas Fritillaria unibracteata var. longinectarea \N \N \N \N \N 77211 T.turcicum Trisetum Trisetum turcicum \N \N \N \N \N 77212 P.andina Pristimera Pristimera andina \N \N \N \N \N 77213 A.penduliflora Aloe Aloe penduliflora \N \N \N \N \N 77214 B.melancholica Besleria Besleria melancholica \N \N \N \N \N 77215 T.angustifolium Theobroma Theobroma angustifolium \N \N \N \N \N 77216 I.engleri Impatiens Impatiens engleri \N \N \N \N \N 77217 \N subspecies Epilobium alsinoides subsp. atriplicifolium \N \N \N \N \N 77218 C.normalis Carex Carex normalis \N \N \N \N \N 77219 \N genus Adinauclea \N \N \N \N \N 77220 L.andersonii Leontopodium Leontopodium andersonii \N \N \N \N \N 77221 E.cosmophylla Eucalyptus Eucalyptus cosmophylla \N \N \N \N \N 77222 T.JS4281 unclassified Taraxacum Taraxacum (sect. Alpina) sp. JS4281 \N \N \N \N \N 77223 E.teretifolia Ericameria Ericameria teretifolia green rabbitbrush \N \N \N \N 77224 H.tenuifolia Hypochaeris Hypochaeris tenuifolia \N \N \N \N \N 77225 M.glabrum Melampodium Melampodium glabrum \N \N \N \N \N 77226 O.linifolia Oenothera Oenothera linifolia \N \N \N \N \N 77227 \N subspecies Heracleum sphondylium subsp. sphondylium \N \N \N \N \N 77228 D.morleyi Dracula Dracula morleyi \N \N \N \N \N 77229 T.nigrovaginata Tetraria Tetraria nigrovaginata \N \N \N \N \N 77230 L.pendula Lophanthera Lophanthera pendula \N \N \N \N \N 77231 G.freyniana Gentiana Gentiana freyniana \N \N \N \N \N 77232 L.triloba Lavatera Lavatera triloba \N \N \N \N \N 77233 G.'ketcha' Guizotia Guizotia sp. 'ketcha' \N \N \N \N \N 77234 V.shenzhenica Vanilla Vanilla shenzhenica \N \N \N \N \N 77235 \N genus Chaunostoma \N \N \N \N \N 77236 \N genus Spuriopimpinella \N \N \N \N \N 77237 H.tulbaghensis Heliophila Heliophila tulbaghensis \N \N \N \N \N 77238 \N genus Praecereus \N \N \N \N \N 77239 \N subspecies Rhodiola integrifolia subsp. procera \N \N \N \N \N 77240 K.daigremontiana Kalanchoe Kalanchoe daigremontiana devil's backbone \N \N \N \N 77241 \N genus Fleischmannia \N \N \N \N \N 77242 O.lutea Orobanche Orobanche lutea \N \N \N \N \N 77243 R.montana Roupala Roupala montana \N \N \N \N \N 77244 \N genus Schoutenia \N \N \N \N \N 77245 C.10461 Carex Carex sp. Hyatt 10461 \N \N \N \N \N 77246 C.1221 Cuscuta Cuscuta aff. floribunda Prather & Soule 1221 \N \N \N \N \N 77247 H.minima Halenia Halenia minima \N \N \N \N \N 77248 L.G15A Lasiocephalus Lasiocephalus sp. G15A \N \N \N \N \N 77249 D.ciliata Digitalis Digitalis ciliata \N \N \N \N \N 77250 \N varietas Viola albida var. takahashii \N \N \N \N \N 77251 T.compar Tetraria Tetraria compar \N \N \N \N \N 77252 \N subspecies Anthemis secundiramea subsp. urvilleana \N \N \N \N \N 77253 A.gomerense Aeonium Aeonium gomerense \N \N \N \N \N 77254 \N genus Johannesteijsmannia \N \N \N \N \N 77255 F.crocata Ficus Ficus crocata \N \N \N \N \N 77256 \N tribe Lantaneae \N \N \N \N \N 77257 F.eggersiana Forestiera Forestiera eggersiana \N \N \N \N \N 77258 N.trifoliolatus Nabalus Nabalus trifoliolatus \N \N \N \N \N 77259 S.albens Stachys Stachys albens \N \N \N \N \N 77260 T.sparsiflorum Thalictrum Thalictrum sparsiflorum \N \N \N \N \N 77261 L.mucronatum Ligusticum Ligusticum mucronatum \N \N \N \N \N 77262 T.longifolia Thelymitra Thelymitra longifolia \N \N \N \N \N 77263 \N genus Amphiglossa \N \N \N \N \N 77264 O.pannonicum Ornithogalum Ornithogalum pannonicum \N \N \N \N \N 77265 S.microphylla Syringa Syringa microphylla \N \N \N \N \N 77266 P.pseudolanceifolium Piper Piper pseudolanceifolium \N \N \N \N \N 77267 S.beccariana Shorea Shorea beccariana \N \N \N \N \N 77268 D.staphelioides Disterigma Disterigma staphelioides \N \N \N \N \N 77269 X.gracile Xanthisma Xanthisma gracile \N \N \N \N \N 77270 P.arctica Parrya Parrya arctica \N \N \N \N \N 77271 D.CANB625050 Diuris Diuris aff. corymbosa CANB625050 \N \N \N \N \N 77272 N.lezamae Nolana Nolana lezamae \N \N \N \N \N 77273 \N genus Thelethylax \N \N \N \N \N 77274 \N no rank Saccharum officinarum complex cultivated sugarcanes \N \N \N \N 77275 C.atherodes Carex Carex atherodes \N \N \N \N \N 77276 W.tubulata Walsura Walsura tubulata \N \N \N \N \N 77277 O.papillosa Onuris Onuris papillosa \N \N \N \N \N 77278 R.pulchra Rodriguezia Rodriguezia pulchra \N \N \N \N \N 77279 \N genus Scrobicaria \N \N \N \N \N 77280 M.cyanea Monochoria Monochoria cyanea \N \N \N \N \N 77281 J.gaudichaudiana Joinvillea Joinvillea gaudichaudiana \N \N \N \N \N 77282 \N genus Tetracentron \N \N \N \N \N 77283 \N genus Gymnosiphon \N \N \N \N \N 77284 T.spectabilis Tutcheria Tutcheria spectabilis \N \N \N \N \N 77285 C.guillauminii Commiphora Commiphora guillauminii \N \N \N \N \N 77286 T.penduliflora Tabernaemontana Tabernaemontana penduliflora \N \N \N \N \N 77287 D.flexuosa Davilla Davilla flexuosa \N \N \N \N \N 77288 \N genus Mastixiodendron \N \N \N \N \N 77289 \N subspecies Sambucus racemosa subsp. sieboldiana Japanese elderberry \N \N \N \N 77290 \N genus Hardenbergia \N \N \N \N \N 77291 I.kiusiana Ilex Ilex x kiusiana narihira-mochi \N \N \N \N 77292 I.conchibracteata Impatiens Impatiens conchibracteata \N \N \N \N \N 77293 C.serpyllifolia Carlowrightia Carlowrightia serpyllifolia \N \N \N \N \N 77294 S.contrerasii Sideroxylon Sideroxylon contrerasii \N \N \N \N \N 77295 L.platycarpha Lasthenia Lasthenia platycarpha \N \N \N \N \N 77296 H.costatus Hibiscus Hibiscus costatus \N \N \N \N \N 77297 \N genus Phyllonoma \N \N \N \N \N 77298 P.8225 Phinaea Phinaea sp. Skog 8225 \N \N \N \N \N 77299 P.34 Piper Piper sp. RA 34 \N \N \N \N \N 77300 H.pampasica Hypochaeris Hypochaeris pampasica \N \N \N \N \N 77301 P.mooniana Pericopsis Pericopsis mooniana \N \N \N \N \N 77302 \N tribe Rhynchosporeae \N \N \N \N \N 77303 S.rotundifolium Stryphnodendron Stryphnodendron rotundifolium \N \N \N \N \N 77304 N.perryi Nothofagus Nothofagus perryi \N \N \N \N \N 77305 B.polyacantha Barnadesia Barnadesia polyacantha \N \N \N \N \N 77306 \N subspecies Leucaena leucocephala subsp. ixtahuacana \N \N \N \N \N 77307 K.ciliata Kunzea Kunzea ciliata \N \N \N \N \N 77308 A.putrescens Amomum Amomum putrescens \N \N \N \N \N 77309 S.chinensis Syringa Syringa chinensis \N \N \N \N \N 77310 \N genus Pseudodracontium \N \N \N \N \N 77311 F.populifolia Ficus Ficus populifolia \N \N \N \N \N 77312 P.eugenioides Pittosporum Pittosporum eugenioides \N \N \N \N \N 77313 \N subspecies Euphorbia grandicornis subsp. sejuncta \N \N \N \N \N 77314 \N genus Letestudoxa \N \N \N \N \N 77315 \N varietas Lycoris sanguinea var. koreana \N \N \N \N \N 77316 A.dives Angraecum Angraecum dives \N \N \N \N \N 77317 S.ED-2010 Stachys Stachys sp. ED-2010 \N \N \N \N \N 77318 A.cujabensis Andira Andira cujabensis \N \N \N \N \N 77319 E.coloratum Epilobium Epilobium coloratum \N \N \N \N \N 77320 R.parvus Rubus Rubus parvus \N \N \N \N \N 77321 \N genus Centrosema \N \N \N \N \N 77322 M.varia Micromeria Micromeria varia \N \N \N \N \N 77323 V.glauca Vellozia Vellozia glauca \N \N \N \N \N 77324 C.convallarioides Cuitlauzina Cuitlauzina convallarioides \N \N \N \N \N 77325 T.andropogonoides Triraphis Triraphis andropogonoides \N \N \N \N \N 77328 C.longipedicellata Chamarea Chamarea longipedicellata \N \N \N \N \N 77329 O.pisidica Ormosolenia Ormosolenia pisidica \N \N \N \N \N 77330 C.rectum Chondropetalum Chondropetalum rectum \N \N \N \N \N 77331 D.glochidiatus Daucus Daucus glochidiatus \N \N \N \N \N 77332 B.gigantea Byblis Byblis gigantea \N \N \N \N \N 77333 \N subspecies Helictotrichon desertorum subsp. altaicum \N \N \N \N \N 77334 C.straussii Cleistocactus Cleistocactus straussii \N \N \N \N \N 77335 E.campestris Esterhazya Esterhazya campestris \N \N \N \N \N 77336 \N genus Notobuxus \N \N \N \N \N 77337 R.friedrichiana Rebutia Rebutia friedrichiana \N \N \N \N \N 77338 T.eberhardtii Tetrastigma Tetrastigma eberhardtii \N \N \N \N \N 77339 \N genus Avonsera \N \N \N \N \N 77340 B.burmanniana Bartholina Bartholina burmanniana \N \N \N \N \N 77341 C.insignis Cordia Cordia insignis \N \N \N \N \N 77342 P.decomposita Paeonia Paeonia decomposita \N \N \N \N \N 77343 V.rupestris Vitis Vitis riparia x Vitis rupestris \N \N \N \N \N 77344 L.polyandra Luxemburgia Luxemburgia polyandra \N \N \N \N \N 77345 \N genus Acostaea \N \N \N \N \N 77346 \N genus Glossostemon \N \N \N \N \N 77347 H.decumbens Hypoxis Hypoxis decumbens \N \N \N \N \N 77348 E.beecheyanum Eryngium Eryngium beecheyanum \N \N \N \N \N 77349 T.4907 Thompsonella Thompsonella sp. Carrillo-Reyes & Vaz de Mello 4907 \N \N \N \N \N 77350 L.macromeria Lithospermum Lithospermum macromeria \N \N \N \N \N 77351 D.muluense Dendrochilum Dendrochilum muluense \N \N \N \N \N 77352 C.tenella Cousinia Cousinia tenella \N \N \N \N \N 77353 S.nanpingensis Shibataea Shibataea nanpingensis \N \N \N \N \N 77354 K.angustifolia Kadsura Kadsura angustifolia \N \N \N \N \N 77355 J.corymbosa Jasione Jasione corymbosa \N \N \N \N \N 77356 \N varietas Jasione maritima var. sabularia \N \N \N \N \N 77357 \N subspecies Asclepias californica subsp. greenei \N \N \N \N \N 77358 \N varietas Prunus japonica var. nakaii \N \N \N \N \N 77359 \N genus Calycoseris \N \N \N \N \N 77360 M.seorsifolia Mirbelia Mirbelia seorsifolia \N \N \N \N \N 77361 L.plumuliflorus Leucopogon Leucopogon plumuliflorus \N \N \N \N \N 77362 A.portuensis Allocasuarina Allocasuarina portuensis \N \N \N \N \N 77363 \N no rank Saccharum hybrid cultivar CoLk 8001 \N \N \N \N \N 77364 \N varietas Mimosa bimucronata var. bimucronata \N \N \N \N \N 77365 \N genus Gilletiodendron \N \N \N \N \N 77366 K.chartacea Klasea Klasea chartacea \N \N \N \N \N 77367 \N genus Spheneria \N \N \N \N \N 77368 \N varietas Paris polyphylla var. alba \N \N \N \N \N 77369 N.balearica Naufraga Naufraga balearica \N \N \N \N \N 77370 S.ferruginea Simaba Simaba ferruginea \N \N \N \N \N 77371 M.pedunculata Meryta Meryta pedunculata \N \N \N \N \N 77372 \N genus Tristemonanthus \N \N \N \N \N 77373 G.perralderi Galium Galium perralderi \N \N \N \N \N 77374 A.lehmannii Ammothamnus Ammothamnus lehmannii \N \N \N \N \N 77375 L.kishenensis Leucas Leucas kishenensis \N \N \N \N \N 77376 T.ovata Talauma Talauma ovata \N \N \N \N \N 77377 M.nitidissima Miconia Miconia nitidissima \N \N \N \N \N 77378 \N genus Pogonia \N \N \N \N \N 77379 S.gracilipes Syzygium Syzygium gracilipes \N \N \N \N \N 77380 A.nuttallii Astragalus Astragalus nuttallii \N \N \N \N \N 77381 A.stipularis Asparagus Asparagus stipularis \N \N \N \N \N 77382 A.sachalinensis Arnica Arnica sachalinensis \N \N \N \N \N 77383 S.pradica Stachys Stachys pradica \N \N \N \N \N 77384 P.nudicaule Piper Piper nudicaule \N \N \N \N \N 77385 A.eugeniae Anabasis Anabasis eugeniae \N \N \N \N \N 77386 S.inconspicua Salvia Salvia inconspicua \N \N \N \N \N 77387 P.hayesii Pterocarpus Pterocarpus hayesii \N \N \N \N \N 77388 P.corymbiferum Psorospermum Psorospermum corymbiferum \N \N \N \N \N 77389 C.coriacea Copaifera Copaifera coriacea \N \N \N \N \N 77390 \N subspecies Anthyllis montana subsp. atropurpurea \N \N \N \N \N 77391 S.gibbosus Senecio Senecio gibbosus \N \N \N \N \N 77392 H.rhopalifolia Heteropterys Heteropterys rhopalifolia \N \N \N \N \N 77393 M.paniculata Molopanthera Molopanthera paniculata \N \N \N \N \N 77394 S.ecuadorana Stenoptera Stenoptera ecuadorana \N \N \N \N \N 77395 G.17952 Garcinia Garcinia aff. ovalifolia McPherson 17952 \N \N \N \N \N 77396 P.lepidotum Papuodendron Papuodendron lepidotum \N \N \N \N \N 77397 C.collumanthus Carex Carex collumanthus \N \N \N \N \N 77398 S.DG-2011 Salix Salix sp. DG-2011 \N \N \N \N \N 77399 A.ridleyi Alangium Alangium ridleyi \N \N \N \N \N 77400 C.affinis Campanula Campanula affinis \N \N \N \N \N 77401 V.densiflora Veronica Veronica densiflora \N \N \N \N \N 77402 O.aequisepala Operculina Operculina aequisepala \N \N \N \N \N 77403 \N subspecies Heliosperma chromodontum subsp. vandasii \N \N \N \N \N 77404 C.cunninghamii Cleistanthus Cleistanthus cunninghamii \N \N \N \N \N 77405 D.warszewicziana Drymonia Drymonia warszewicziana \N \N \N \N \N 77406 A.zenkeri Aptandra Aptandra zenkeri \N \N \N \N \N 77407 M.furusei Mitella Mitella furusei \N \N \N \N \N 77408 A.canescens Arctotis Arctotis canescens \N \N \N \N \N 77409 \N varietas Gymnocalycium uruguayense var. roseiflorum \N \N \N \N \N 77410 A.pseudoamurensis Adonis Adonis pseudoamurensis \N \N \N \N \N 77411 H.intermedium Helichrysum Helichrysum intermedium \N \N \N \N \N 77412 V.ovatum Vaccinium Vaccinium ovatum California huckleberry \N \N \N \N 77413 S.myrsinifolia Salix Salix aurita x Salix cinerea x Salix myrsinifolia \N \N \N \N \N 77414 S.diversiflorum Solanum Solanum diversiflorum \N \N \N \N \N 77415 E.difforme Epidendrum Epidendrum difforme \N \N \N \N \N 77416 P.exul Paphiopedilum Paphiopedilum exul \N \N \N \N \N 77417 \N genus Dissiliaria \N \N \N \N \N 77418 A.eremitopetalum Abutilon Abutilon eremitopetalum \N \N \N \N \N 77419 C.berteroana Copernicia Copernicia berteroana \N \N \N \N \N 77420 M.sousanum Myrospermum Myrospermum sousanum \N \N \N \N \N 77421 M.81585 Microtropis Microtropis sp. Shui et al. 81585 \N \N \N \N \N 77422 E.geyeri Euphorbia Euphorbia geyeri \N \N \N \N \N 77423 C.multiflorum Carum Carum multiflorum \N \N \N \N \N 77425 O.warszewiczii Oncidium Oncidium warszewiczii \N \N \N \N \N 77426 A.cylindristachya Acaena Acaena cylindristachya \N \N \N \N \N 77427 Q.ithaburensis Quercus Quercus ithaburensis \N \N \N \N \N 77428 E.amabilis Erythroseris Erythroseris amabilis \N \N \N \N \N 77429 \N genus Ammopiptanthus \N \N \N \N \N 77430 C.scabra Clethra Clethra scabra \N \N \N \N \N 77431 \N subspecies Leucaena macrophylla subsp. macrophylla \N \N \N \N \N 77432 I.umbratica Inga Inga umbratica \N \N \N \N \N 77433 \N genus Cayaponia \N \N \N \N \N 77434 C.metzianus Calamus Calamus metzianus \N \N \N \N \N 77435 C.multipetala Camellia Camellia multipetala \N \N \N \N \N 77436 B.gabonensis Begonia Begonia gabonensis \N \N \N \N \N 77437 P.cuspidata Palicourea Palicourea cuspidata \N \N \N \N \N 77438 A.glabrum Acer Acer glabrum \N \N \N \N \N 77439 E.scias Eucalyptus Eucalyptus scias red mahogany \N \N \N \N 77440 E.gmelinii Elymus Elymus gmelinii \N \N \N \N \N 77441 F.murielae Fargesia Fargesia murielae \N \N \N \N \N 77442 O.sandiana Oenothera Oenothera sandiana \N \N \N \N \N 77443 H.vittatum Hippeastrum Hippeastrum vittatum \N \N \N \N \N 77444 C.francoanus Croton Croton francoanus \N \N \N \N \N 77445 T.baroni Tetraclis Tetraclis baroni \N \N \N \N \N 77446 \N subspecies Gasteranthus calcaratus subsp. calcaratus \N \N \N \N \N 77447 \N subspecies Stephanomeria virgata subsp. virgata \N \N \N \N \N 77448 P.torta Pedicularis Pedicularis torta \N \N \N \N \N 77449 A.kahiricus Astragalus Astragalus kahiricus \N \N \N \N \N 77450 A.mexicana Asclepias Asclepias mexicana \N \N \N \N \N 77451 \N varietas Triticum sphaerocuccum var. globosum \N \N \N \N \N 77452 C.falconeri Corydalis Corydalis falconeri \N \N \N \N \N 77453 G.fractiflexa Gaertnera Gaertnera fractiflexa \N \N \N \N \N 77454 P.klopfensteinii Peperomia Peperomia klopfensteinii \N \N \N \N \N 77455 P.rivale Panicum Panicum rivale \N \N \N \N \N 77456 T.962 Tamarix Tamarix cf. dalmatica Gaskin 962 \N \N \N \N \N 77457 A.kimberleyensis Aponogeton Aponogeton kimberleyensis \N \N \N \N \N 77458 L.deflexa Liparis Liparis deflexa \N \N \N \N \N 77459 \N genus Dracosciadium \N \N \N \N \N 77460 \N varietas Allium atrorubens var. atrorubens \N \N \N \N \N 77461 F.SH-2010 Festuca Festuca sp. SH-2010 \N \N \N \N \N 77462 V.papuana Viola Viola papuana \N \N \N \N \N 77463 R.nudiflora Ruellia Ruellia nudiflora \N \N \N \N \N 77464 M.stylosa Mitella Mitella stylosa \N \N \N \N \N 77465 F.10893 Fevillea Fevillea sp. Fuentes & Miranda 10893 \N \N \N \N \N 77466 G.brevis Glyphaea Glyphaea brevis \N \N \N \N \N 77467 A.96018 Asarum Asarum sp. Qiu 96018 \N \N \N \N \N 77468 M.bubops Macrocarpaea Macrocarpaea bubops \N \N \N \N \N 77469 F.sarmentosa Ficus Ficus sarmentosa \N \N \N \N \N 77470 D.corymbosa Dicymbe Dicymbe corymbosa \N \N \N \N \N 77471 V.roscheri Vanilla Vanilla roscheri \N \N \N \N \N 77472 S.cultivar Sorghum Sorghum hybrid cultivar \N \N \N \N \N 77473 \N genus Crantzia \N \N \N \N \N 77474 C.ramosissima Chusquea Chusquea ramosissima \N \N \N \N \N 77475 B.scardica Betonica Betonica scardica \N \N \N \N \N 77476 S.floribundum Spathiphyllum Spathiphyllum floribundum \N \N \N \N \N 77477 G.penetii Gentiana Gentiana penetii \N \N \N \N \N 77478 \N genus Acrisione \N \N \N \N \N 77479 T.zeylanicus Trichopus Trichopus zeylanicus \N \N \N \N \N 77480 G.rigida Guatteria Guatteria rigida \N \N \N \N \N 77481 \N genus Lobostemon \N \N \N \N \N 77482 M.globulosa Microcoelia Microcoelia globulosa \N \N \N \N \N 77483 B.aurea Bauhinia Bauhinia aurea \N \N \N \N \N 77484 \N subspecies Acer sterculiaceum subsp. sterculiaceum \N \N \N \N \N 77485 C.galeata Canavalia Canavalia galeata \N \N \N \N \N 77486 \N varietas Digitaria californica var. villosissima \N \N \N \N \N 77487 J.ramulosa Jurinea Jurinea ramulosa \N \N \N \N \N 77488 L.refracta Leandra Leandra refracta \N \N \N \N \N 77489 P.angustissimus Phaseolus Phaseolus angustissimus \N \N \N \N \N 77490 \N genus Anubias \N \N \N \N \N 77491 S.magnifica Saritaea Saritaea magnifica \N \N \N \N \N 77492 P.segregata Pseudosabicea Pseudosabicea segregata \N \N \N \N \N 77493 A.microphylla Aerva Aerva microphylla \N \N \N \N \N 77494 P.ramonensis Psychotria Psychotria ramonensis \N \N \N \N \N 77495 S.dipetala Swartzia Swartzia dipetala \N \N \N \N \N 77496 S.rosea Sabicea Sabicea rosea \N \N \N \N \N 77497 C.laxum Coulterophytum Coulterophytum laxum \N \N \N \N \N 77498 P.SXL-2010b Phyllanthus Phyllanthus sp. SXL-2010b \N \N \N \N \N 77499 P.medusula Psychotria Psychotria medusula \N \N \N \N \N 77500 S.fusca Saxifraga Saxifraga fusca \N \N \N \N \N 77501 S.stenandrum Solanum Solanum stenandrum \N \N \N \N \N 77502 B.oblonga Burmannia Burmannia oblonga \N \N \N \N \N 77503 E.hemilasia Epilasia Epilasia hemilasia \N \N \N \N \N 77504 \N genus Schismus \N \N \N \N \N 77505 A.stenophylla Aspalathus Aspalathus stenophylla \N \N \N \N \N 77506 \N genus Pseudomonotes \N \N \N \N \N 77507 A.sibirica Aquilegia Aquilegia sibirica \N \N \N \N \N 77508 C.haraka Cordyla Cordyla haraka \N \N \N \N \N 77509 A.macrochlamys Algrizea Algrizea macrochlamys \N \N \N \N \N 77510 P.quinqueradiata Psychotria Psychotria quinqueradiata \N \N \N \N \N 77511 \N genus Elaeoselinum \N \N \N \N \N 77512 R.kostermansii Reinwardtiodendron Reinwardtiodendron kostermansii \N \N \N \N \N 77513 P.taitense Pittosporum Pittosporum taitense \N \N \N \N \N 77514 C.crassipes Cousinia Cousinia crassipes \N \N \N \N \N 77515 C.amapaensis Corythophora Corythophora amapaensis \N \N \N \N \N 77516 E.homblei Ensete Ensete homblei \N \N \N \N \N 77517 C.prieurianus Chytranthus Chytranthus prieurianus \N \N \N \N \N 77518 W.riebeckii Withania Withania riebeckii \N \N \N \N \N 77519 \N genus Tetramerium \N \N \N \N \N 77520 A.yappii Argostemma Argostemma yappii \N \N \N \N \N 77521 \N genus Acianthus \N \N \N \N \N 77522 S.canadensis Sanguisorba Sanguisorba canadensis \N \N \N \N \N 77523 A.distyla Allocasuarina Allocasuarina distyla \N \N \N \N \N 77524 G.tibetica Gentiana Gentiana tibetica \N \N \N \N \N 77525 S.montana Scorzoneroides Scorzoneroides montana \N \N \N \N \N 77526 \N genus Dockrillia \N \N \N \N \N 77527 P.pseudodenticulata Primula Primula pseudodenticulata \N \N \N \N \N 77528 C.purpurascens Chorispora Chorispora purpurascens \N \N \N \N \N 77529 C.grandiflora Carapa Carapa grandiflora \N \N \N \N \N 77530 G.speciosa Galeopsis Galeopsis speciosa \N \N \N \N \N 77531 \N varietas Pisum sativum var. pumilio Syrian fodder pea \N \N \N \N 77532 A.armeniaca Artemisia Artemisia armeniaca \N \N \N \N \N 77533 P.decorticans Piper Piper decorticans \N \N \N \N \N 77534 C.enodis Catacolea Catacolea enodis \N \N \N \N \N 77535 \N genus Ornithoboea \N \N \N \N \N 77536 T.ionantha Tillandsia Tillandsia ionantha \N \N \N \N \N 77537 G.hirsuta Glechoma Glechoma hirsuta \N \N \N \N \N 77538 L.ramosissima Lagophylla Lagophylla ramosissima \N \N \N \N \N 77539 F.CEH-2010 Fuirena Fuirena cf. camptotricha CEH-2010 \N \N \N \N \N 77540 I.brachypoda Ixora Ixora brachypoda \N \N \N \N \N 77541 A.heldreichii Acer Acer heldreichii \N \N \N \N \N 77542 I.novae-zelandiae Iphigenia Iphigenia novae-zelandiae \N \N \N \N \N 77543 B.penaea Badiera Badiera penaea \N \N \N \N \N 77544 A.casei Astragalus Astragalus casei \N \N \N \N \N 77545 P.hintonii Phaseolus Phaseolus hintonii \N \N \N \N \N 77546 P.pulchra Phalaenopsis Phalaenopsis pulchra \N \N \N \N \N 77547 T.borealis Trientalis Trientalis borealis \N \N \N \N \N 77548 M.alba Muraltia Muraltia alba \N \N \N \N \N 77549 T.drucei Trisetum Trisetum drucei \N \N \N \N \N 77550 R.nitida Rauvolfia Rauvolfia nitida \N \N \N \N \N 77551 A.schirazana Alcea Alcea schirazana \N \N \N \N \N 77552 G.fragifera Gagea Gagea fragifera \N \N \N \N \N 77553 \N genus Englerophytum \N \N \N \N \N 77554 S.laciniata Sanicula Sanicula laciniata coastal blacksnakeroot \N \N \N \N 77555 C.tenera Coleataenia Coleataenia tenera \N \N \N \N \N 77556 \N genus Charianthus \N \N \N \N \N 77557 H.beccariana Hydriastele Hydriastele beccariana \N \N \N \N \N 77558 A.glomeratus Andropogon Andropogon glomeratus \N \N \N \N \N 77559 S.vulnerabilis Stachys Stachys vulnerabilis \N \N \N \N \N 77560 J.argunensis Jacobaea Jacobaea argunensis \N \N \N \N \N 77561 C.flexuosa Chrysolaena Chrysolaena flexuosa \N \N \N \N \N 77562 \N genus Nervilia \N \N \N \N \N 77563 W.communis Wahlenbergia Wahlenbergia communis \N \N \N \N \N 77564 M.dawsonensis Minuartia Minuartia dawsonensis \N \N \N \N \N 77565 P.hebetatum Protium Protium hebetatum \N \N \N \N \N 77566 \N subspecies Iris spuria subsp. musulmanica \N \N \N \N \N 77567 \N no rank environmental samples Taxonomy:664975 \N \N \N \N \N 77568 A.dahurica Actaea Actaea dahurica \N \N \N \N \N 77569 S.splendida Senna Senna splendida \N \N \N \N \N 77570 D.schlechteri Decorsea Decorsea schlechteri \N \N \N \N \N 77571 C.beckii Cymopterus Cymopterus beckii \N \N \N \N \N 77572 L.nivale Leontopodium Leontopodium nivale \N \N \N \N \N 77573 \N genus Conimitella \N \N \N \N \N 77574 B.madagascariensis Beccariophoenix Beccariophoenix madagascariensis \N \N \N \N \N 77575 T.polycephalum Thesium Thesium polycephalum \N \N \N \N \N 77576 M.macrosperma Myosotis Myosotis macrosperma \N \N \N \N \N 77577 S.cochinchinensis Symplocos Symplocos cochinchinensis \N \N \N \N \N 77578 P.faberi Primula Primula faberi \N \N \N \N \N 77579 P.nigrescens Pappobolus Pappobolus nigrescens \N \N \N \N \N 77580 S.joannis Stipa Stipa joannis \N \N \N \N \N 77581 A.victoriae-reginae Agave Agave victoriae-reginae \N \N \N \N \N 77582 C.herrerae Citharexylum Citharexylum herrerae \N \N \N \N \N 77583 P.villosa Ponthieva Ponthieva villosa \N \N \N \N \N 77584 B.breviflora Bertiera Bertiera breviflora \N \N \N \N \N 77585 C.pustulatus Cucumis Cucumis pustulatus \N \N \N \N \N 77586 H.pulvinum Heliotropium Heliotropium pulvinum \N \N \N \N \N 77587 O.uhlii Oncidium Oncidium uhlii \N \N \N \N \N 77588 H.cordifolium Hypocalymma Hypocalymma cordifolium \N \N \N \N \N 77589 \N genus Mostacillastrum \N \N \N \N \N 77590 R.riopalenquensis Ruellia Ruellia riopalenquensis \N \N \N \N \N 77591 T.glandulosa Tabernaemontana Tabernaemontana glandulosa \N \N \N \N \N 77592 A.sample environmental samples Taxonomy:664958 Apioideae environmental sample \N \N \N \N \N 77593 S.butterwickiae Stenaria Stenaria butterwickiae \N \N \N \N \N 77594 V.seemannii Viguiera Viguiera seemannii \N \N \N \N \N 77595 G.pulvinatum Grandiphyllum Grandiphyllum pulvinatum \N \N \N \N \N 77596 \N genus Liriope lilyturfs \N \N \N \N 77597 P.baylisiana Pennantia Pennantia baylisiana \N \N \N \N \N 77598 T.plicata Tiquilia Tiquilia plicata \N \N \N \N \N 77599 \N varietas Perilla frutescens var. auriculatodentata \N \N \N \N \N 77600 \N genus Nidema \N \N \N \N \N 77601 \N genus Hymenopappus \N \N \N \N \N 77602 \N genus Hampea \N \N \N \N \N 77603 \N genus Asteranthos \N \N \N \N \N 77604 A.erythranthum Acer Acer erythranthum \N \N \N \N \N 77605 \N genus Lamiodendron \N \N \N \N \N 77606 P.confertiflora Parasassafras Parasassafras confertiflora \N \N \N \N \N 77607 F.lahovarii Fagonia Fagonia lahovarii \N \N \N \N \N 77608 \N genus Neobeckia \N \N \N \N \N 77609 C.1705 Cyrtochilum Cyrtochilum sp. Whitten 1705 \N \N \N \N \N 77610 \N genus Rustia \N \N \N \N \N 77611 \N genus Oxychloe \N \N \N \N \N 77612 D.andesicola Delphinium Delphinium andesicola \N \N \N \N \N 77613 O.strigulosa Oldenlandia Oldenlandia strigulosa \N \N \N \N \N 77614 F.anomala Fraxinus Fraxinus anomala single-leaf ash \N \N \N \N 77615 \N subspecies Acer cappadocicum subsp. cappadocicum \N \N \N \N \N 77616 C.andicola Cercidium Cercidium andicola \N \N \N \N \N 77617 A.indochinensis Actinidia Actinidia indochinensis \N \N \N \N \N 77618 \N varietas Primula interjacens var. interjacens \N \N \N \N \N 77619 M.tomatophylla Manihot Manihot tomatophylla \N \N \N \N \N 77620 E.americanum Erythronium Erythronium americanum dogtooth violet \N \N \N \N 77621 I.jamaicensis Indigofera Indigofera jamaicensis \N \N \N \N \N 77622 \N subspecies Rafnia capensis subsp. dichotoma \N \N \N \N \N 77623 A.oxyphylla Alpinia Alpinia oxyphylla sharp-leaf galangal,yi zhi \N \N \N \N 77624 P.elliptica Pyrola Pyrola elliptica \N \N \N \N \N 77625 \N genus Nemcia \N \N \N \N \N 77626 M.sloanei Mucuna Mucuna sloanei \N \N \N \N \N 77627 M.klaineana Macaranga Macaranga klaineana \N \N \N \N \N 77628 P.benthamii Pseudogynoxys Pseudogynoxys benthamii \N \N \N \N \N 77629 P.nigra Phyllostachys Phyllostachys nigra black bamboo \N \N \N \N 77630 S.giganteus Sporobolus Sporobolus giganteus \N \N \N \N \N 77631 C.glandulosa Consolida Consolida glandulosa \N \N \N \N \N 77632 R.ulei Rinoreocarpus Rinoreocarpus ulei \N \N \N \N \N 77633 P.pellegrinii Polyceratocarpus Polyceratocarpus pellegrinii \N \N \N \N \N 77634 W.guianensis Windsorina Windsorina guianensis \N \N \N \N \N 77635 L.lobelioides Lysimachia Lysimachia lobelioides \N \N \N \N \N 77636 A.gigantea Agrostis Agrostis gigantea black bent grass,redtop \N \N \N \N 77637 \N genus Urochilus \N \N \N \N \N 77638 \N genus Maba \N \N \N \N \N 77639 S.longicarpa Swartzia Swartzia longicarpa \N \N \N \N \N 77640 D.subtrivialis Ditassa Ditassa subtrivialis \N \N \N \N \N 77641 \N genus Eremorchis \N \N \N \N \N 77642 \N genus Barbeuia \N \N \N \N \N 77643 C.TJSW-2011 Cryptocarya Cryptocarya sp. TJSW-2011 \N \N \N \N \N 77644 A.convexus Ancylostemon Ancylostemon convexus \N \N \N \N \N 77645 A.thunbergii Allium Allium thunbergii \N \N \N \N \N 77646 S.kombe Strophanthus Strophanthus kombe \N \N \N \N \N 77647 S.spicatum Santalum Santalum spicatum \N \N \N \N \N 77648 V.collina Viola Viola collina maruba-ke-sumire \N \N \N \N 77649 C.boissieri Carthamus Carthamus boissieri \N \N \N \N \N 77650 S.muricata Sclerolaena Sclerolaena muricata \N \N \N \N \N 77651 P.dumulosa Pulicaria Pulicaria dumulosa \N \N \N \N \N 77652 \N genus Quinqueremulus \N \N \N \N \N 77653 C.montis-loa Clermontia Clermontia cf. parviflora x montis-loa \N \N \N \N \N 77654 C.macracanthum Cicer Cicer macracanthum \N \N \N \N \N 77655 S.sedoides Sedobassia Sedobassia sedoides \N \N \N \N \N 77656 \N genus Laurelia \N \N \N \N \N 77657 \N subspecies Conostylis aculeata subsp. spinuligera \N \N \N \N \N 77658 O.leptochilus Oligochaetochilus Oligochaetochilus leptochilus \N \N \N \N \N 77659 A.deweyi Agropyron Agropyron deweyi \N \N \N \N \N 77660 P.canadensis Paronychia Paronychia canadensis \N \N \N \N \N 77661 J.paneroi Jaltomata Jaltomata paneroi \N \N \N \N \N 77662 S.turneroides Solanum Solanum turneroides \N \N \N \N \N 77663 C.wiedemanniana Centaurea Centaurea wiedemanniana \N \N \N \N \N 77664 S.pinnatifida Sutera Sutera pinnatifida \N \N \N \N \N 77665 Z.bulbosa Zuloagaea Zuloagaea bulbosa \N \N \N \N \N 77666 B.rivae Boswellia Boswellia rivae \N \N \N \N \N 77667 P.cyclaminoides Peperomia Peperomia cyclaminoides \N \N \N \N \N 77668 L.astrophora Lepanthopsis Lepanthopsis astrophora \N \N \N \N \N 77669 C.preissii Conostephium Conostephium preissii \N \N \N \N \N 77670 P.shaniana Physospermopsis Physospermopsis shaniana \N \N \N \N \N 77671 \N subspecies Crocus pallasii subsp. turcicus \N \N \N \N \N 77672 C.nubigena Castilleja Castilleja nubigena \N \N \N \N \N 77673 C.MF-2009 Calophyllum Calophyllum sp. MF-2009 \N \N \N \N \N 77674 C.burchellii Cliffortia Cliffortia burchellii \N \N \N \N \N 77675 T.rigidus Thamnochortus Thamnochortus rigidus \N \N \N \N \N 77676 D.virgatum Delphinium Delphinium virgatum \N \N \N \N \N 77677 F.parvigluma Festuca Festuca parvigluma \N \N \N \N \N 77678 M.africanum Manniophyton Manniophyton africanum \N \N \N \N \N 77679 E.peplis Euphorbia Euphorbia peplis \N \N \N \N \N 77680 P.lokohensis Psychotria Psychotria lokohensis \N \N \N \N \N 77681 H.spruceanum Heteropetalum Heteropetalum spruceanum \N \N \N \N \N 77682 \N genus Rimacola \N \N \N \N \N 77683 M.detinens Mimosa Mimosa detinens \N \N \N \N \N 77684 E.acanthothamnos Euphorbia Euphorbia acanthothamnos \N \N \N \N \N 77685 C.pinnatifrons Chamaedorea Chamaedorea pinnatifrons \N \N \N \N \N 77686 \N family Lophopyxidaceae \N \N \N \N \N 77687 V.jacquinii Veronica Veronica jacquinii \N \N \N \N \N 77688 \N genus Acrymia \N \N \N \N \N 77689 \N varietas Camellia pitardii var. yunnanica \N \N \N \N \N 77690 C.avilae Centaurea Centaurea avilae \N \N \N \N \N 77691 A.thouarsii Alafia Alafia thouarsii \N \N \N \N \N 77692 B.siliquosa Braya Braya siliquosa \N \N \N \N \N 77693 C.attenuata Cayaponia Cayaponia attenuata \N \N \N \N \N 77694 B.aspleniifolia Begonia Begonia aspleniifolia \N \N \N \N \N 77695 X.elliptica Xiphotheca Xiphotheca elliptica \N \N \N \N \N 77696 L.punctata Lavatera Lavatera punctata \N \N \N \N \N 77697 H.multisiliquosa Hippocrepis Hippocrepis multisiliquosa \N \N \N \N \N 77698 L.laevigatus Lathyrus Lathyrus laevigatus \N \N \N \N \N 77699 S.oppositifolia Stillingia Stillingia oppositifolia \N \N \N \N \N 77700 A.boylei Aloe Aloe boylei \N \N \N \N \N 77701 A.okuyamae Astilbe Astilbe okuyamae \N \N \N \N \N 77702 \N varietas Triticum macha var. subletschumicum \N \N \N \N \N 77703 \N subspecies Heracleum sphondylium subsp. montanum \N \N \N \N \N 77704 E.cuspidata Elegia Elegia cuspidata \N \N \N \N \N 77705 \N genus Pintoa \N \N \N \N \N 77706 O.cabulica Olimarabidopsis Olimarabidopsis cabulica \N \N \N \N \N 77707 \N genus Arophyton \N \N \N \N \N 77708 A.androgyna Archibaccharis Archibaccharis androgyna \N \N \N \N \N 77709 \N genus Erythrocoma \N \N \N \N \N 77710 A.wrangelianus Acmispon Acmispon wrangelianus \N \N \N \N \N 77711 \N genus Hilliardiella \N \N \N \N \N 77712 C.pseudoniveus Croton Croton pseudoniveus \N \N \N \N \N 77713 \N genus Karwinskia \N \N \N \N \N 77714 T.elegans Tordylium Tordylium elegans \N \N \N \N \N 77715 P.burchellii Podalyria Podalyria burchellii \N \N \N \N \N 77716 S.bornmuelleri Symphytum Symphytum bornmuelleri \N \N \N \N \N 77717 H.12624 Heppiella Heppiella sp. Stewart 12624 \N \N \N \N \N 77718 G.s.n. Genoplesium Genoplesium sp. Kores et al. s.n. \N \N \N \N \N 77719 \N genus Tuberolabium \N \N \N \N \N 77720 H.895 Hydriastele Hydriastele sp. Zona 895 \N \N \N \N \N 77721 A.pseudobodeanum Allium Allium pseudobodeanum \N \N \N \N \N 77722 A.obtusifolium Acer Acer obtusifolium \N \N \N \N \N 77723 A.SH-2010 Anamirta Anamirta sp. SH-2010 \N \N \N \N \N 77724 \N genus Trilisa \N \N \N \N \N 77725 H.virginicum Hypericum Hypericum virginicum Virginia marsh St. Johnswort \N \N \N \N 77726 D.araboides Draba Draba araboides \N \N \N \N \N 77727 T.petiolare Tinomiscium Tinomiscium petiolare \N \N \N \N \N 77728 P.scandens Psophocarpus Psophocarpus scandens \N \N \N \N \N 77729 A.ephemera Andrachne Andrachne ephemera \N \N \N \N \N 77730 H.glabra Hechtia Hechtia glabra \N \N \N \N \N 77731 E.kamponii Euphorbia Euphorbia kamponii \N \N \N \N \N 77732 G.eleonorae Gagea Gagea eleonorae \N \N \N \N \N 77733 A.subaphylla Asclepias Asclepias subaphylla \N \N \N \N \N 77734 L.globulosa Lotononis Lotononis globulosa \N \N \N \N \N 77735 \N varietas Acridocarpus natalitius var. natalitius \N \N \N \N \N 77736 O.javanica Olea Olea javanica \N \N \N \N \N 77737 E.tinifolia Ehretia Ehretia tinifolia \N \N \N \N \N 77738 S.capsicoides Solanum Solanum capsicoides cockroach-berry,devil's-apple,mata cucaracha \N \N \N \N 77739 M.neocaledonica Morinda Morinda neocaledonica \N \N \N \N \N 77740 C.vulpinoidea Carex Carex vulpinoidea \N \N \N \N \N 77741 E.aspasicensis Echinosepala Echinosepala aspasicensis \N \N \N \N \N 77742 O.engelmannii Opuntia Opuntia engelmannii \N \N \N \N \N 77743 W.smithii Wilkiea Wilkiea smithii \N \N \N \N \N 77744 \N genus Richeriella \N \N \N \N \N 77745 O.anertii Oxytropis Oxytropis anertii \N \N \N \N \N 77746 M.basjoo Musa Musa basjoo Japanese fiber banana,basjoo \N \N \N \N 77747 E.amoenum Echium Echium amoenum \N \N \N \N \N 77748 C.aparrerinja Corymbia Corymbia aparrerinja \N \N \N \N \N 77749 B.carabiaiana Basiphyllaea Basiphyllaea carabiaiana \N \N \N \N \N 77750 C.capensis Commiphora Commiphora capensis \N \N \N \N \N 77751 A.crispa Astilbe Astilbe x crispa \N \N \N \N \N 77752 S.tuberosum Solanum Solanum commersonii x Solanum tuberosum \N \N \N \N \N 77753 M.hirta Monnina Monnina hirta \N \N \N \N \N 77754 O.hirtiflora Orobanche Orobanche hirtiflora \N \N \N \N \N 77755 \N genus Macradenia \N \N \N \N \N 77756 H.speciosa Harveya Harveya speciosa \N \N \N \N \N 77757 P.aviculare Polygonum Polygonum aviculare \N \N \N \N \N 77758 T.macrocephala Trichocline Trichocline macrocephala \N \N \N \N \N 77759 O.crocea Oxalis Oxalis crocea \N \N \N \N \N 77760 M.cunninghamii Maytenus Maytenus cunninghamii \N \N \N \N \N 77761 \N genus Poliothyrsis \N \N \N \N \N 77762 T.exilis Tetraria Tetraria exilis \N \N \N \N \N 77763 D.bicameratum Dendrobium Dendrobium bicameratum \N \N \N \N \N 77764 P.verrucosa Pristimera Pristimera verrucosa \N \N \N \N \N 77765 R.inermis Rondeletia Rondeletia inermis \N \N \N \N \N 77766 \N subspecies Cortusa matthioli subsp. matthioli \N \N \N \N \N 77767 \N genus Allophyllum \N \N \N \N \N 77768 K.grandiflora Kohleria Kohleria grandiflora \N \N \N \N \N 77769 S.arborea Sabicea Sabicea arborea \N \N \N \N \N 77770 P.dubium Papaver Papaver dubium \N \N \N \N \N 77771 C.forrestii Cypripedium Cypripedium forrestii \N \N \N \N \N 77772 H.meleagris Hammeria Hammeria meleagris \N \N \N \N \N 77773 M.campbellii Magnolia Magnolia campbellii \N \N \N \N \N 77774 L.carolinense Lithospermum Lithospermum carolinense \N \N \N \N \N 77775 \N subspecies Pulsatilla pratensis subsp. nigricans \N \N \N \N \N 77776 P.mahonii Psychotria Psychotria mahonii \N \N \N \N \N 77777 A.acreana Amburana Amburana acreana \N \N \N \N \N 77778 E.pilgeri Eragrostis Eragrostis pilgeri \N \N \N \N \N 77779 S.kirkii Sonchus Sonchus kirkii \N \N \N \N \N 77780 \N genus Oplonia \N \N \N \N \N 77781 D.hidalgensis Draba Draba hidalgensis \N \N \N \N \N 77782 S.minima Stackhousia Stackhousia minima \N \N \N \N \N 77783 A.deltoidea Anisotome Anisotome deltoidea \N \N \N \N \N 77784 P.calycina Pultenaea Pultenaea calycina \N \N \N \N \N 77785 C.haussknechtii Cuscuta Cuscuta haussknechtii \N \N \N \N \N 77786 \N family Tetramelaceae \N \N \N \N \N 77787 \N genus Neonotonia \N \N \N \N \N 77788 \N genus Impatiens \N \N \N \N \N 77789 E.scaber Elephantopus Elephantopus scaber \N \N \N \N \N 77790 P.candollei Passiflora Passiflora candollei \N \N \N \N \N 77791 \N subspecies Centaurea pichleri subsp. pichleri \N \N \N \N \N 77792 C.llavea Cuphea Cuphea llavea \N \N \N \N \N 77793 B.pedunculosa Bolandia Bolandia pedunculosa \N \N \N \N \N 77794 B.angustifolia Bunchosia Bunchosia angustifolia \N \N \N \N \N 77795 E.berthelotii Euphorbia Euphorbia berthelotii \N \N \N \N \N 77796 \N genus Centranthus \N \N \N \N \N 77797 W.eriocephala Westoniella Westoniella eriocephala \N \N \N \N \N 77798 \N varietas Atriplex torreyi var. griffithsii \N \N \N \N \N 77799 O.marginatus Osmanthus Osmanthus marginatus \N \N \N \N \N 77800 C.elliottii Carex Carex elliottii \N \N \N \N \N 77801 C.somalensis Calyptrotheca Calyptrotheca somalensis \N \N \N \N \N 77802 L.leontopetalum Leontice Leontice leontopetalum \N \N \N \N \N 77803 \N genus Whytockia \N \N \N \N \N 77804 P.glabratum Piper Piper glabratum \N \N \N \N \N 77805 V.cultivar Vitis Vitis hybrid cultivar \N \N \N \N \N 77806 \N genus Lamourouxia \N \N \N \N \N 77807 L.multiflora Lycianthes Lycianthes multiflora \N \N \N \N \N 77808 A.viscida Arctostaphylos Arctostaphylos viscida \N \N \N \N \N 77809 \N genus Vasqueziella \N \N \N \N \N 77810 G.selliana Gamocarpha Gamocarpha selliana \N \N \N \N \N 77811 S.cameronii Stereochlaena Stereochlaena cameronii \N \N \N \N \N 77812 L.dasyantha Licuala Licuala dasyantha \N \N \N \N \N 77813 \N varietas Atriplex serenana var. serenana \N \N \N \N \N 77814 P.behriana Prostanthera Prostanthera behriana \N \N \N \N \N 77815 S.heteroptera Suaeda Suaeda heteroptera \N \N \N \N \N 77816 R.chiapensis Ruprechtia Ruprechtia chiapensis \N \N \N \N \N 77817 R.pulleanum Rhododendron Rhododendron pulleanum \N \N \N \N \N 77818 S.herbacea Sesbania Sesbania herbacea \N \N \N \N \N 77819 P.pseudopungens Pitcairnia Pitcairnia pseudopungens \N \N \N \N \N 77820 \N genus Frondaria \N \N \N \N \N 77821 T.lemoniana Tolumnia Tolumnia lemoniana \N \N \N \N \N 77822 C.nana Cassiope Cassiope nana \N \N \N \N \N 77823 M.hookeriana Miconia Miconia hookeriana \N \N \N \N \N 77824 P.alaschanica Pedicularis Pedicularis alaschanica \N \N \N \N \N 77825 D.nervosa Digitalis Digitalis nervosa \N \N \N \N \N 77826 M.pomifera Maclura Maclura pomifera Osage orange \N \N \N \N 77827 D.maximum Doronicum Doronicum maximum \N \N \N \N \N 77828 \N varietas Machilus yunnanensis var. yunnanensis \N \N \N \N \N 77829 C.sarawakanus Chisocheton Chisocheton sarawakanus \N \N \N \N \N 77830 T.pachyantha Thibaudia Thibaudia pachyantha \N \N \N \N \N 77831 E.hainanensis Elaeocarpus Elaeocarpus hainanensis \N \N \N \N \N 77832 C.oblongifolia Chuquiraga Chuquiraga oblongifolia \N \N \N \N \N 77833 P.humile Pediomelum Pediomelum humile \N \N \N \N \N 77834 \N genus Cochleanthes \N \N \N \N \N 77835 \N genus Tessmannia \N \N \N \N \N 77836 \N varietas Macrolobium multijugum var. multijugum \N \N \N \N \N 77837 A.helvetica Androsace Androsace helvetica \N \N \N \N \N 77838 P.setigera Parapentas Parapentas setigera \N \N \N \N \N 77839 M.concrescens Multidentia Multidentia concrescens \N \N \N \N \N 77840 P.parvifolius Phaseolus Phaseolus parvifolius \N \N \N \N \N 77841 C.lineare Campynema Campynema lineare \N \N \N \N \N 77842 \N genus Pleuropogon \N \N \N \N \N 77843 E.spinosa Eremophea Eremophea spinosa \N \N \N \N \N 77844 R.aureum Ribes Ribes aureum buffalo currant,golden currant \N \N \N \N 77845 \N genus Limbarda \N \N \N \N \N 77846 \N genus Brunnera \N \N \N \N \N 77847 C.songarica Crataegus Crataegus songarica \N \N \N \N \N 77848 A.squarrosum Agriophyllum Agriophyllum squarrosum \N \N \N \N \N 77849 D.ritacuvana Draba Draba ritacuvana \N \N \N \N \N 77850 E.carvifolium Erodium Erodium carvifolium \N \N \N \N \N 77851 T.cuspidata Tetraria Tetraria cuspidata \N \N \N \N \N 77852 W.sinica Weigela Weigela sinica \N \N \N \N \N 77853 A.asiatica Actaea Actaea asiatica \N \N \N \N \N 77854 \N genus Praecoxanthus \N \N \N \N \N 77855 C.laurinum Craterispermum Craterispermum laurinum \N \N \N \N \N 77856 V.hilariana Vanhouttea Vanhouttea hilariana \N \N \N \N \N 77857 S.teretifolius Sporobolus Sporobolus teretifolius \N \N \N \N \N 77858 S.86148 Salicornia Salicornia aff. depressa Ford 86148 \N \N \N \N \N 77859 E.axillaris Erica Erica axillaris \N \N \N \N \N 77860 H.occidentalis Hebanthe Hebanthe occidentalis \N \N \N \N \N 77861 S.penstemonoides Strobilanthes Strobilanthes penstemonoides \N \N \N \N \N 77862 C.rosea Caragana Caragana rosea \N \N \N \N \N 77863 A.punctigera Artemisia Artemisia punctigera \N \N \N \N \N 77864 V.nummularia Vaccinium Vaccinium nummularia \N \N \N \N \N 77865 E.enneacanthus Echinocereus Echinocereus enneacanthus \N \N \N \N \N 77866 T.flavovirens Trichocentrum Trichocentrum flavovirens \N \N \N \N \N 77867 H.HTL-2007 Hemsleya Hemsleya sp. HTL-2007 \N \N \N \N \N 77868 A.keniense Afrocanthium Afrocanthium keniense \N \N \N \N \N 77869 \N genus Lampranthus \N \N \N \N \N 77870 D.rhododioides Dendrobium Dendrobium rhododioides \N \N \N \N \N 77871 C.eminii Commiphora Commiphora eminii \N \N \N \N \N 77872 W.rupicola Wahlenbergia Wahlenbergia rupicola \N \N \N \N \N 77873 S.gw1547 Syzygium Syzygium sp. 1 gw1547 \N \N \N \N \N 77874 \N varietas Calochortus weedii var. vestus \N \N \N \N \N 77875 S.orbiculatum Solanum Solanum orbiculatum \N \N \N \N \N 77876 P.strigosa Pimelea Pimelea strigosa \N \N \N \N \N 77877 H.lithophila Habenaria Habenaria lithophila \N \N \N \N \N 77878 C.montana Cunonia Cunonia montana \N \N \N \N \N 77879 T.fungicidum Triticum Triticum x fungicidum \N \N \N \N \N 77880 P.urophyllum Piper Piper urophyllum \N \N \N \N \N 77881 A.williamsii Alfaroa Alfaroa williamsii \N \N \N \N \N 77882 C.pseudoevax Chthonocephalus Chthonocephalus pseudoevax \N \N \N \N \N 77883 A.taiwanense Arisaema Arisaema taiwanense \N \N \N \N \N 77884 \N genus Aciotis \N \N \N \N \N 77885 M.votschii Myriophyllum Myriophyllum votschii \N \N \N \N \N 77886 E.autumnalis Earina Earina autumnalis \N \N \N \N \N 77887 V.dentata Valerianella Valerianella dentata \N \N \N \N \N 77888 T.210 Tetragonia Tetragonia sp. LHMS 210 \N \N \N \N \N 77889 C.latifolia Calathea Calathea latifolia \N \N \N \N \N 77890 C.nilotica Crossandra Crossandra nilotica \N \N \N \N \N 77891 E.sample environmental samples Taxonomy:1008280 Erodium environmental sample \N \N \N \N \N 77892 L.coryphantha Leea Leea coryphantha \N \N \N \N \N 77893 A.coriandriodorum Amomum Amomum coriandriodorum \N \N \N \N \N 77894 R.alborugosum Rhododendron Rhododendron alborugosum \N \N \N \N \N 77895 G.ferdinandii Glochidion Glochidion ferdinandii \N \N \N \N \N 77896 A.salutaris Anchietea Anchietea salutaris \N \N \N \N \N 77897 P.splendens Persea Persea splendens \N \N \N \N \N 77898 \N genus Amalocalyx \N \N \N \N \N 77899 R.buergeri Rubus Rubus buergeri han mei \N \N \N \N 77900 P.jianfengensis Passiflora Passiflora jianfengensis \N \N \N \N \N 77901 N.stricta Nigella Nigella stricta \N \N \N \N \N 77902 S.aurita Salix Salix aurita \N \N \N \N \N 77903 C.mexicana Cypella Cypella mexicana \N \N \N \N \N 77904 C.villosa Cyanotis Cyanotis villosa \N \N \N \N \N 77905 E.knuthii Euphorbia Euphorbia knuthii \N \N \N \N \N 77906 \N varietas Spiraea japonica var. japonica \N \N \N \N \N 77907 L.major Lagarosiphon Lagarosiphon major \N \N \N \N \N 77908 G.triflorum Geum Geum triflorum \N \N \N \N \N 77909 S.nicorae Setaria Setaria nicorae \N \N \N \N \N 77910 D.XMW-2002-16 Dendrobium Dendrobium sp. XMW-2002-16 \N \N \N \N \N 77911 D.oreadum Draba Draba oreadum \N \N \N \N \N 77912 P.subobtusus Potamogeton Potamogeton x subobtusus \N \N \N \N \N 77913 N.tridentata Neotinea Neotinea tridentata \N \N \N \N \N 77914 V.subalpinum Viburnum Viburnum subalpinum \N \N \N \N \N 77915 B.producta Brassaiopsis Brassaiopsis producta \N \N \N \N \N 77916 S.lateriflorum Symphyotrichum Symphyotrichum lateriflorum calico aster \N \N \N \N 77917 P.roseus Phyllobolus Phyllobolus roseus \N \N \N \N \N 77918 R.emarginatum Rhododendron Rhododendron emarginatum \N \N \N \N \N 77919 A.8602 Aristolochia Aristolochia cf. cordiflora Holst 8602 \N \N \N \N \N 77920 E.mauritanica Euphorbia Euphorbia mauritanica \N \N \N \N \N 77921 P.bracteolaris Paranomus Paranomus bracteolaris \N \N \N \N \N 77922 \N genus Hovenia \N \N \N \N \N 77923 C.columnaris Clusia Clusia columnaris \N \N \N \N \N 77924 D.pubicalyx Diospyros Diospyros pubicalyx \N \N \N \N \N 77925 A.erianthum Acer Acer erianthum \N \N \N \N \N 77926 S.sessiliflora Savia Savia sessiliflora \N \N \N \N \N 77927 L.hispida Lonicera Lonicera hispida \N \N \N \N \N 77928 I.ovatus Ischnosiphon Ischnosiphon ovatus \N \N \N \N \N 77929 T.rubens Trifolium Trifolium rubens \N \N \N \N \N 77930 P.ulbrichiana Psammisia Psammisia ulbrichiana \N \N \N \N \N 77931 V.rhodopea Veronica Veronica rhodopea \N \N \N \N \N 77932 \N varietas Rhododendron tschonoskii var. tschonoskii \N \N \N \N \N 77933 \N subspecies Brassica villosa subsp. drepanensis \N \N \N \N \N 77934 A.200418 Angelica Angelica sp. NHW 200418 \N \N \N \N \N 77935 D.abbreviata Diuris Diuris abbreviata \N \N \N \N \N 77936 A.peduncularis Alonsoa Alonsoa peduncularis \N \N \N \N \N 77937 O.elegans Ochagavia Ochagavia elegans \N \N \N \N \N 77938 E.divaricata Eurybia Eurybia divaricata white wood aster \N \N \N \N 77939 R.tosaense Rhododendron Rhododendron tosaense \N \N \N \N \N 77940 A.bourgeaui Allium Allium bourgeaui \N \N \N \N \N 77941 G.nitida Gomortega Gomortega nitida \N \N \N \N \N 77942 P.lackneri Pommereschea Pommereschea lackneri \N \N \N \N \N 77943 B.scabrellum Bunium Bunium scabrellum \N \N \N \N \N 77944 P.hispida Pouteria Pouteria hispida \N \N \N \N \N 77945 B.jangarunii Boesenbergia Boesenbergia jangarunii \N \N \N \N \N 77946 P.albida Pulicaria Pulicaria albida \N \N \N \N \N 77947 \N genus Royena \N \N \N \N \N 77948 \N subspecies Carex muricata subsp. muricata \N \N \N \N \N 77949 B.succulenta Bulbine Bulbine succulenta \N \N \N \N \N 77950 P.tahitensis Planchonella Planchonella tahitensis \N \N \N \N \N 77951 S.polystachya Salvia Salvia polystachya \N \N \N \N \N 77952 \N varietas Arisaema nikoense var. nikoense \N \N \N \N \N 77953 A.glandulosa Amicia Amicia glandulosa \N \N \N \N \N 77954 O.macrocalyx Ormosia Ormosia macrocalyx \N \N \N \N \N 77955 B.falcata Boechera Boechera falcata \N \N \N \N \N 77956 S.cuspidata Stellaria Stellaria cuspidata \N \N \N \N \N 77957 J.mimosifolia Jacaranda Jacaranda mimosifolia \N \N \N \N \N 77958 P.pellucida Peperomia Peperomia pellucida \N \N \N \N \N 77959 \N subspecies Tropaeolum hookerianum subsp. hookerianum \N \N \N \N \N 77960 S.gregorii Senecio Senecio gregorii \N \N \N \N \N 77961 K.affinis Kadua Kadua affinis \N \N \N \N \N 77962 C.producta Cissus Cissus producta \N \N \N \N \N 77963 L.henryi Lithocarpus Lithocarpus henryi \N \N \N \N \N 77964 C.ameliae Carpodiptera Carpodiptera ameliae \N \N \N \N \N 77965 \N genus Bothriospora \N \N \N \N \N 77966 H.orthoceras Holothrix Holothrix orthoceras \N \N \N \N \N 77967 E.lactiflorum Epilobium Epilobium lactiflorum \N \N \N \N \N 77968 \N genus Psidium \N \N \N \N \N 77969 \N genus Aconitella \N \N \N \N \N 77970 F.104866 Fosterella Fosterella aff. weddelliana HEID 104866 \N \N \N \N \N 77971 \N genus Parartocarpus \N \N \N \N \N 77972 V.yazawana Viola Viola yazawana \N \N \N \N \N 77973 L.tsetensis Luculia Luculia gratissima x Luculia tsetensis \N \N \N \N \N 77974 \N varietas Morinda citrifolia var. citrifolia \N \N \N \N \N 77975 \N genus Machaeranthera tansyaster \N \N \N \N 77976 D.capitatum Diplacrum Diplacrum capitatum \N \N \N \N \N 77977 B.filicifolia Brandzeia Brandzeia filicifolia \N \N \N \N \N 77978 \N varietas Vicia venosa var. stolonifera \N \N \N \N \N 77979 F.leiophylla Ferula Ferula leiophylla \N \N \N \N \N 77980 E.citreus Elionurus Elionurus citreus \N \N \N \N \N 77981 P.bidentata Phanera Phanera bidentata \N \N \N \N \N 77982 \N genus Laccosperma \N \N \N \N \N 77983 M.tetracocca Margaritaria Margaritaria tetracocca \N \N \N \N \N 77984 I.ramosissima Indotristicha Indotristicha ramosissima \N \N \N \N \N 77985 \N varietas Atractylodes chinensis var. liaotungensis \N \N \N \N \N 77986 \N genus Dactylorhiza \N \N \N \N \N 77987 F.coskunii Ferula Ferula coskunii \N \N \N \N \N 77988 \N genus Xerosicyos \N \N \N \N \N 77989 L.parviflorum Lithophragma Lithophragma parviflorum \N \N \N \N \N 77990 S.globulosum Spyridium Spyridium globulosum \N \N \N \N \N 77991 I.sericea Inula Inula sericea \N \N \N \N \N 77992 C.monophyllus Calochortus Calochortus monophyllus yellow star-tulip \N \N \N \N 77993 L.fujisanensis Liparis Liparis fujisanensis \N \N \N \N \N 77994 H.cyclophyllus Helleborus Helleborus cyclophyllus \N \N \N \N \N 77995 C.elephantidens Coryphantha Coryphantha elephantidens \N \N \N \N \N 77996 E.proballyana Euphorbia Euphorbia proballyana \N \N \N \N \N 77997 \N varietas Spiranthes sinensis var. sinensis \N \N \N \N \N 77998 C.orientalis Cytisus Cytisus orientalis \N \N \N \N \N 77999 C.unita Caladenia Caladenia unita \N \N \N \N \N 78000 C.pumila Coursetia Coursetia pumila \N \N \N \N \N 78001 R.rottboellioides Rhytachne Rhytachne rottboellioides \N \N \N \N \N 78002 C.alligata Carex Carex alligata \N \N \N \N \N 78003 T.subincanum Theobroma Theobroma subincanum \N \N \N \N \N 78004 M.himalayensis Muhlenbergia Muhlenbergia himalayensis \N \N \N \N \N 78005 D.dioicum Dioicodendron Dioicodendron dioicum \N \N \N \N \N 78006 L.uniflorus Lampranthus Lampranthus uniflorus \N \N \N \N \N 78007 E.grandis Elegia Elegia grandis \N \N \N \N \N 78008 B.tetragona Bifrenaria Bifrenaria tetragona \N \N \N \N \N 78009 P.capitata Paraboea Paraboea capitata \N \N \N \N \N 78010 V.congestiflora Villarsia Villarsia congestiflora \N \N \N \N \N 78011 P.swartbergensis Pentameris sect. Pentameris Pentameris swartbergensis \N \N \N \N \N 78012 D.usterioides Dendrobium Dendrobium usterioides \N \N \N \N \N 78013 R.brachybotrys Ribes Ribes brachybotrys \N \N \N \N \N 78014 \N genus Holmbergia \N \N \N \N \N 78015 S.acanthifolius Senecio Senecio acanthifolius \N \N \N \N \N 78016 C.parryana Carex Carex parryana \N \N \N \N \N 78017 L.alba Lavoisiera Lavoisiera alba \N \N \N \N \N 78018 \N genus Oxypappus \N \N \N \N \N 78019 P.polygama Polygala Polygala polygama \N \N \N \N \N 78020 F.catappifolia Ficus Ficus catappifolia \N \N \N \N \N 78021 S.fruticulosum Sphaerocardamum Sphaerocardamum fruticulosum \N \N \N \N \N 78022 M.wercklei Maxillaria Maxillaria wercklei \N \N \N \N \N 78023 C.tenuiflorum Centaurium Centaurium tenuiflorum \N \N \N \N \N 78024 R.rhomboideum Rheum Rheum rhomboideum \N \N \N \N \N 78025 R.leptanthum Rhododendron Rhododendron leptanthum \N \N \N \N \N 78026 L.orientale Lamium Lamium orientale \N \N \N \N \N 78027 L.conocarpus Lithocarpus Lithocarpus conocarpus \N \N \N \N \N 78028 M.aethiopicum Mystroxylon Mystroxylon aethiopicum \N \N \N \N \N 78029 R.dyeri Raphionacme Raphionacme dyeri \N \N \N \N \N 78030 S.rosengurttii Setaria Setaria rosengurttii \N \N \N \N \N 78031 C.regelii Cerastium Cerastium regelii \N \N \N \N \N 78032 \N genus Fuernrohria \N \N \N \N \N 78033 A.americanum Arceuthobium Arceuthobium americanum \N \N \N \N \N 78034 T.madagascariensis Thecacoris Thecacoris madagascariensis \N \N \N \N \N 78035 P.brackenridgei Psychotria Psychotria brackenridgei \N \N \N \N \N 78036 S.gracilis Stenostachys Stenostachys gracilis \N \N \N \N \N 78037 M.neptunioides Mimosa Mimosa neptunioides \N \N \N \N \N 78038 J.javanica Jagera Jagera javanica \N \N \N \N \N 78039 A.stenophylla Andrachne Andrachne stenophylla \N \N \N \N \N 78040 \N genus Streblochaete \N \N \N \N \N 78041 M.esculenta Morella Morella esculenta \N \N \N \N \N 78042 V.mexicana Valeriana Valeriana mexicana \N \N \N \N \N 78043 P.antidysentericum Pelargonium Pelargonium antidysentericum \N \N \N \N \N 78044 H.pachyphylla Hemigraphis Hemigraphis pachyphylla \N \N \N \N \N 78045 M.8402 Microlicia Microlicia sp. Almeda et al. 8402 \N \N \N \N \N 78046 O.sphaerocarpa Oxandra Oxandra sphaerocarpa \N \N \N \N \N 78047 M.corynadenia Mimosa Mimosa corynadenia \N \N \N \N \N 78048 C.grandiflora Cineraria Cineraria grandiflora \N \N \N \N \N 78049 N.pilosa Nolana Nolana pilosa \N \N \N \N \N 78050 E.AK298118 Epilobium Epilobium sp. AK298118 \N \N \N \N \N 78051 B.nicobarica Bentinckia Bentinckia nicobarica \N \N \N \N \N 78052 P.macrophylla Paradrymonia Paradrymonia macrophylla \N \N \N \N \N 78053 L.supina Lagopsis Lagopsis supina \N \N \N \N \N 78054 B.'Calingiri' Baeckea Baeckea sp. 'Calingiri' \N \N \N \N \N 78055 P.delphiniifolia Pippenalia Pippenalia delphiniifolia \N \N \N \N \N 78056 G.circaezans Galium Galium circaezans forest bedstraw \N \N \N \N 78057 A.taiensis Aubregrinia Aubregrinia taiensis \N \N \N \N \N 78058 L.globosa Lymania Lymania globosa \N \N \N \N \N 78059 E.purpureum Eutrochium Eutrochium purpureum joe-pye-weed \N \N \N \N 78060 \N genus Conandron \N \N \N \N \N 78061 \N genus Stylodon \N \N \N \N \N 78062 M.dictyantha Matelea Matelea dictyantha \N \N \N \N \N 78063 W.sirikitiae Wrightia Wrightia sirikitiae \N \N \N \N \N 78064 T.BI10 unclassified Taraxacum Taraxacum sp. BI10 \N \N \N \N \N 78065 R.cereoides Rhipsalis Rhipsalis cereoides \N \N \N \N \N 78066 V.schulzeana Viola Viola schulzeana \N \N \N \N \N 78067 \N varietas Gazania rigens var. rigens \N \N \N \N \N 78068 M.ovata Magnolia Magnolia ovata \N \N \N \N \N 78069 R.columnifera Rosa Rosa columnifera \N \N \N \N \N 78070 D.incana Draba Draba incana \N \N \N \N \N 78071 \N genus Cormus \N \N \N \N \N 78072 C.goudotianum Crepidospermum Crepidospermum goudotianum \N \N \N \N \N 78073 S.SH-2010 Sauropus Sauropus sp. SH-2010 \N \N \N \N \N 78074 P.94109 Phytolacca Phytolacca sp. Qiu 94109 \N \N \N \N \N 78075 V.AB-2009 Vanilla Vanilla cf. odorata AB-2009 \N \N \N \N \N 78076 G.tapis Goniothalamus Goniothalamus tapis \N \N \N \N \N 78077 I.tenuisecta Isocoma Isocoma tenuisecta \N \N \N \N \N 78078 \N genus Hypericophyllum \N \N \N \N \N 78079 \N varietas Cypripedium flavum var. luteum \N \N \N \N \N 78080 C.rosea Commersonia Commersonia rosea \N \N \N \N \N 78081 \N genus Julbernardia \N \N \N \N \N 78082 P.festivum Phebalium Phebalium festivum \N \N \N \N \N 78083 E.alsinifolium Epilobium Epilobium alsinifolium \N \N \N \N \N 78084 Z.teres Zingiber Zingiber teres \N \N \N \N \N 78085 M.3108 Maxillaria Maxillaria aff. richii Blanco 3108 \N \N \N \N \N 78086 S.prinophyllum Solanum Solanum prinophyllum \N \N \N \N \N 78087 C.tigrensis Conyza Conyza tigrensis \N \N \N \N \N 78088 C.planostachys Carex Carex planostachys \N \N \N \N \N 78089 S.lachnea Setaria Setaria lachnea \N \N \N \N \N 78090 A.krauseanus Astragalus Astragalus krauseanus \N \N \N \N \N 78091 \N genus Meterostachys \N \N \N \N \N 78092 G.breviflorus Gymnosiphon Gymnosiphon breviflorus \N \N \N \N \N 78093 \N tribe Dalbergieae \N \N \N \N \N 78094 R.fuyuanense Rhododendron Rhododendron fuyuanense \N \N \N \N \N 78095 C.pontica Crambe Crambe pontica \N \N \N \N \N 78096 A.alpinus Astragalus Astragalus alpinus \N \N \N \N \N 78097 P.ussuriensis Phyllanthus Phyllanthus ussuriensis \N \N \N \N \N 78098 A.cerefolium Anthriscus Anthriscus cerefolium chervil \N \N \N \N 78099 S.macowanii Schizobasis Schizobasis macowanii \N \N \N \N \N 78100 P.biaristatum Polygonum Polygonum biaristatum \N \N \N \N \N 78101 S.nabekuraensis Symplocarpus Symplocarpus nabekuraensis \N \N \N \N \N 78102 D.floribundum Delosperma Delosperma floribundum \N \N \N \N \N 78103 C.beddiei Chionochloa Chionochloa beddiei \N \N \N \N \N 78104 P.hadrosoma Pericallis Pericallis hadrosoma \N \N \N \N \N 78105 \N genus Sarcocornia \N \N \N \N \N 78106 C.arcuata Cyrtorchis Cyrtorchis arcuata \N \N \N \N \N 78107 D.caperonioides Dalechampia Dalechampia caperonioides \N \N \N \N \N 78108 R.rugosa Rulingia Rulingia rugosa \N \N \N \N \N 78109 \N genus Nototriche \N \N \N \N \N 78110 \N genus Marcgraviastrum \N \N \N \N \N 78111 C.grandicalyx Cordia Cordia grandicalyx \N \N \N \N \N 78112 \N subspecies Camassia leichtlinii subsp. leichtlinii \N \N \N \N \N 78113 S.brachypoda Sciadotenia Sciadotenia brachypoda \N \N \N \N \N 78114 A.monopleura Alpinia Alpinia monopleura \N \N \N \N \N 78115 L.grandis Lasjia Lasjia grandis \N \N \N \N \N 78116 A.BJ-2009b unclassified Adelieae Adelieae sp. BJ-2009b \N \N \N \N \N 78117 C.oopoda Cousinia Cousinia oopoda \N \N \N \N \N 78118 \N genus Colensoa \N \N \N \N \N 78119 T.parryi Turricula Turricula parryi \N \N \N \N \N 78120 \N genus Cratylia \N \N \N \N \N 78121 \N genus Ottleya \N \N \N \N \N 78122 T.macrophylla Thermopsis Thermopsis macrophylla \N \N \N \N \N 78123 M.tenoreana Medicago Medicago tenoreana \N \N \N \N \N 78124 C.alchemilloides Cineraria Cineraria alchemilloides \N \N \N \N \N 78125 B.muricata Begonia Begonia muricata \N \N \N \N \N 78126 C.simensis Carex Carex simensis \N \N \N \N \N 78127 G.tricuspidata Genista Genista tricuspidata \N \N \N \N \N 78128 T.capillipes Tinospora Tinospora capillipes \N \N \N \N \N 78129 M.serrata Morus Morus serrata \N \N \N \N \N 78130 E.raniferum Epidendrum Epidendrum raniferum \N \N \N \N \N 78131 O.meisneri Oxalis Oxalis meisneri \N \N \N \N \N 78132 E.paludicola Erica Erica paludicola \N \N \N \N \N 78133 E.stenophyllum Exacum Exacum stenophyllum \N \N \N \N \N 78134 P.semsei Psilanthus Psilanthus semsei \N \N \N \N \N 78135 S.palinacanthum Solanum Solanum palinacanthum \N \N \N \N \N 78136 T.mattmarkense Taraxacum Taraxacum mattmarkense \N \N \N \N \N 78137 C.podolaena Cogniauxia Cogniauxia podolaena \N \N \N \N \N 78138 \N genus Pterandra \N \N \N \N \N 78139 T.nitens Tococa Tococa nitens \N \N \N \N \N 78140 E.longipilosa Elettaria Elettaria longipilosa \N \N \N \N \N 78141 P.xerocarpa Planchonella Planchonella xerocarpa \N \N \N \N \N 78142 L.yunnanense Lycium Lycium yunnanense \N \N \N \N \N 78143 H.philippinensis Homalomena Homalomena philippinensis \N \N \N \N \N 78144 Q.Bue215_183 Quercus Quercus cf. robur Bue215_183 \N \N \N \N \N 78145 R.moschata Rosa Rosa moschata musk rose \N \N \N \N 78146 \N genus Genlisea \N \N \N \N \N 78147 R.unarede Rytidosperma Rytidosperma unarede \N \N \N \N \N 78148 C.davalliana Carex Carex davalliana \N \N \N \N \N 78149 N.deplanchei Niemeyera Niemeyera deplanchei \N \N \N \N \N 78150 D.nelsonii Descurainia Descurainia nelsonii \N \N \N \N \N 78151 L.welwitschii Lannea Lannea welwitschii \N \N \N \N \N 78152 M.curtisii Macaranga Macaranga curtisii \N \N \N \N \N 78153 P.suburceolata Penelopeia Penelopeia suburceolata \N \N \N \N \N 78154 C.polyneura Cousinia Cousinia polyneura \N \N \N \N \N 78155 N.deltoidea Neoachmandra Neoachmandra deltoidea \N \N \N \N \N 78156 L.carolinianum Lycium Lycium carolinianum Carolina desert-thorn \N \N \N \N 78157 D.melanophloium Dinosperma Dinosperma melanophloium \N \N \N \N \N 78158 R.gardneri Rhynchoglossum Rhynchoglossum gardneri \N \N \N \N \N 78159 \N genus Syagrus \N \N \N \N \N 78160 C.spectabilis Centaurea Centaurea spectabilis \N \N \N \N \N 78161 T.occidentalis Tachia Tachia occidentalis \N \N \N \N \N 78162 O.pedunculata Ophiorrhiza Ophiorrhiza pedunculata \N \N \N \N \N 78163 R.ursinus Rubus Rubus ursinus California blackberry \N \N \N \N 78164 R.physodes Rupertia Rupertia physodes \N \N \N \N \N 78165 S.hernandifolia Stephania Stephania hernandifolia \N \N \N \N \N 78166 C.saxatilis Ceropegia Ceropegia saxatilis \N \N \N \N \N 78167 G.2414 Gonzalagunia Gonzalagunia sp. Rova and Sundbaum 2414 \N \N \N \N \N 78168 E.trichophora Eragrostis Eragrostis trichophora \N \N \N \N \N 78169 T.incana Templetonia Templetonia incana \N \N \N \N \N 78170 \N genus Pithecoctenium \N \N \N \N \N 78171 S.androsacea Saxifraga Saxifraga androsacea \N \N \N \N \N 78172 \N subspecies Armeria maritima subsp. elongata \N \N \N \N \N 78173 W.9411 Wurmbea Wurmbea sp. Goldblatt 9411 \N \N \N \N \N 78174 J.caffra Jubaeopsis Jubaeopsis caffra \N \N \N \N \N 78175 E.parryi Euphorbia Euphorbia parryi \N \N \N \N \N 78176 C.squalida Chromolaena Chromolaena squalida \N \N \N \N \N 78177 B.391 Bonniera Bonniera sp. Carlsward 391 \N \N \N \N \N 78178 A.stricta Adenia Adenia stricta \N \N \N \N \N 78179 H.helix Hedera Hedera helix English ivy \N \N \N \N 78180 \N order Santalales \N \N \N \N \N 78181 S.chrysantha Stachys Stachys chrysantha \N \N \N \N \N 78182 R.alboviolacea Ruellia Ruellia alboviolacea \N \N \N \N \N 78183 B.yagara Bolboschoenus Bolboschoenus yagara \N \N \N \N \N 78184 E.laeta Erica Erica laeta \N \N \N \N \N 78185 B.smaragdi Burmeistera Burmeistera smaragdi \N \N \N \N \N 78186 C.soulattri Calophyllum Calophyllum soulattri \N \N \N \N \N 78187 \N genus Gnephosis \N \N \N \N \N 78188 M.titanophylla Morinda Morinda titanophylla \N \N \N \N \N 78189 \N genus Stenanona \N \N \N \N \N 78190 \N varietas Ceanothus cuneatus var. fascicularis \N \N \N \N \N 78191 P.buenekeri Parodia Parodia buenekeri \N \N \N \N \N 78192 G.intangendus Granitites Granitites intangendus \N \N \N \N \N 78193 S.hillii Syncarpia Syncarpia hillii \N \N \N \N \N 78194 \N genus Pentaphylax \N \N \N \N \N 78195 C.rapaceum Caulipsolon Caulipsolon rapaceum \N \N \N \N \N 78196 \N varietas Aristida holathera var. holathera \N \N \N \N \N 78197 F.hartwegii Fuchsia Fuchsia hartwegii \N \N \N \N \N 78198 I.mannii Impatiens Impatiens mannii \N \N \N \N \N 78199 \N genus Votschia \N \N \N \N \N 78200 F.sagittifolia Ficus Ficus sagittifolia \N \N \N \N \N 78201 \N genus Fevillea \N \N \N \N \N 78202 C.M91P24 Cornukaempferia Cornukaempferia aff. aurantiflora Mood M91P24 \N \N \N \N \N 78203 \N genus Rodriguezia \N \N \N \N \N 78204 O.MO460 Oxalis Oxalis cf. pachyrrhiza MO460 \N \N \N \N \N 78205 S.acatlensis Sphinga Sphinga acatlensis \N \N \N \N \N 78206 \N subspecies Euryops evansii subsp. parvus \N \N \N \N \N 78207 E.tucumanensis Eleocharis Eleocharis tucumanensis \N \N \N \N \N 78208 D.websteri Dalechampia Dalechampia websteri \N \N \N \N \N 78209 D.delavayi Delphinium Delphinium delavayi \N \N \N \N \N 78210 R.minor Rhinanthus Rhinanthus minor \N \N \N \N \N 78211 C.zanguebariae Coffea Coffea zanguebariae Zanzibar coffee \N \N \N \N 78212 \N genus Encyclia \N \N \N \N \N 78213 I.dumetorum Ipomoea Ipomoea dumetorum \N \N \N \N \N 78214 \N subspecies Erica filipendula subsp. filipendula \N \N \N \N \N 78215 C.spinosa Capparis Capparis spinosa caper,caperbush \N \N \N \N 78216 A.monspessulanum Acer Acer monspessulanum \N \N \N \N \N 78217 \N genus Batocarpus \N \N \N \N \N 78218 M.subulifolia Micraira Micraira subulifolia \N \N \N \N \N 78219 P.polystachios Phaseolus Phaseolus polystachios \N \N \N \N \N 78220 \N forma Lepismium lumbricoides f. aculeatum \N \N \N \N \N 78221 C.renifolius Chalcanthus Chalcanthus renifolius \N \N \N \N \N 78222 L.hypogaea Langsdorffia Langsdorffia hypogaea \N \N \N \N \N 78223 M.chaseae Mesosetum Mesosetum chaseae \N \N \N \N \N 78224 E.watsonii Ericameria Ericameria watsonii \N \N \N \N \N 78225 F.alnus Frangula Frangula alnus alder buckthorn,glossy buckthorn \N \N \N \N 78226 \N forma Eleocharis tetraquetra f. tsurumachii \N \N \N \N \N 78227 P.gairdneri Penstemon Penstemon gairdneri \N \N \N \N \N 78228 \N genus Schomburgkia \N \N \N \N \N 78229 \N subfamily Dryadoideae \N \N \N \N \N 78230 E.gibbiflora Echeveria Echeveria gibbiflora \N \N \N \N \N 78231 P.cochleata Prosthechea Prosthechea cochleata \N \N \N \N \N 78232 D.salsa Dilophia Dilophia salsa \N \N \N \N \N 78233 A.herzogii Atriplex Atriplex herzogii \N \N \N \N \N 78234 E.tricuspidatum Eryngium Eryngium tricuspidatum \N \N \N \N \N 78235 E.C Eugenia Eugenia sp. C \N \N \N \N \N 78236 A.hystrix Aspalathus Aspalathus hystrix \N \N \N \N \N 78237 O.tetraptera Oenothera Oenothera tetraptera \N \N \N \N \N 78238 P.cuneata Pityrodia Pityrodia cuneata \N \N \N \N \N 78239 C.parviflora Cuscuta Cuscuta parviflora \N \N \N \N \N 78240 A.riceana Acacia Acacia riceana \N \N \N \N \N 78241 M.tetramerum Melastoma Melastoma tetramerum \N \N \N \N \N 78242 L.canadense Ligusticum Ligusticum canadense \N \N \N \N \N 78243 H.gardneri Hydrothrix Hydrothrix gardneri \N \N \N \N \N 78244 T.voinierianum Tetrastigma Tetrastigma voinierianum \N \N \N \N \N 78245 S.oxyacanthum Sideroxylon Sideroxylon oxyacanthum \N \N \N \N \N 78246 \N genus Clevelandia \N \N \N \N \N 78247 A.spinosa Aralia Aralia spinosa Hercules'-club,devil's walking stick \N \N \N \N 78248 G.oliviformis Guatteria Guatteria oliviformis \N \N \N \N \N 78249 C.hochstetteriana Carex Carex hochstetteriana \N \N \N \N \N 78250 P.lignosa Potentilla Potentilla lignosa \N \N \N \N \N 78251 E.buprestium Eucalyptus Eucalyptus buprestium apple mallee \N \N \N \N 78252 E.sphacelata Eleocharis Eleocharis sphacelata \N \N \N \N \N 78253 L.minutifolium Leptospermum Leptospermum minutifolium \N \N \N \N \N 78254 R.calycina Relhania Relhania calycina \N \N \N \N \N 78255 B.colombiana Brunellia Brunellia colombiana \N \N \N \N \N 78256 B.insularis Brassica Brassica insularis \N \N \N \N \N 78257 \N genus Lapsana \N \N \N \N \N 78258 C.hololeuca Caragana Caragana hololeuca \N \N \N \N \N 78259 S.spinosum Sarcopoterium Sarcopoterium spinosum \N \N \N \N \N 78260 E.tirucalli Euphorbia Euphorbia tirucalli \N \N \N \N \N 78261 S.13/2001 Salicornia Salicornia sp. Freitag 13/2001 \N \N \N \N \N 78262 M.pumila Mentzelia Mentzelia pumila \N \N \N \N \N 78263 M.laurina Macrostelia Macrostelia laurina \N \N \N \N \N 78264 D.kamaonense Doronicum Doronicum kamaonense \N \N \N \N \N 78265 S.ptychanthum Solanum Solanum ptychanthum eastern black nightshade \N \N \N \N 78266 \N genus Beckwithia \N \N \N \N \N 78267 \N family Costaceae \N \N \N \N \N 78268 C.leucanthus Cyrtanthus Cyrtanthus leucanthus \N \N \N \N \N 78269 C.heterophyllum Clerodendrum Clerodendrum heterophyllum \N \N \N \N \N 78270 F.236 Fraxinus Fraxinus sp. 236 \N \N \N \N \N 78271 A.zerumbet Alpinia Alpinia zerumbet light galangal,pink porcelain-lily,shell-ginger \N \N \N \N 78272 S.mexicana Sambucus Sambucus mexicana \N \N \N \N \N 78273 F.amethystina Festuca Festuca amethystina \N \N \N \N \N 78274 M.sacchariflorus Miscanthus Miscanthus sacchariflorus Amur silver grass \N \N \N \N 78275 \N genus Thuarea \N \N \N \N \N 78276 M.troglodytarum Musa Musa troglodytarum fe'i banana \N \N \N \N 78277 M.martin-delcampoi Mimosa Mimosa martin-delcampoi \N \N \N \N \N 78278 \N genus Diposis \N \N \N \N \N 78279 \N subspecies Corrigiola litoralis subsp. litoralis \N \N \N \N \N 78280 C.amazonica Cinchonopsis Cinchonopsis amazonica \N \N \N \N \N 78281 C.JW_13_02_07 Cuscuta Cuscuta sp. JW_13_02_07 \N \N \N \N \N 78282 \N no rank unclassified Magnoliophyta \N \N \N \N \N 78283 A.GLA-2009 Aframomum Aframomum sp. C GLA-2009 \N \N \N \N \N 78284 V.cercidifolium Vaccinium Vaccinium cercidifolium \N \N \N \N \N 78285 \N genus Luehea \N \N \N \N \N 78286 \N subfamily Nypoideae \N \N \N \N \N 78287 C.howelliana Cuscuta Cuscuta howelliana \N \N \N \N \N 78288 A.nova Artemisia Artemisia nova black sagebrush \N \N \N \N 78289 L.97-23 Lycium Lycium sp. Miller 97-23 \N \N \N \N \N 78290 M.civilis Masdevallia Masdevallia civilis \N \N \N \N \N 78291 \N tribe Richeeae \N \N \N \N \N 78292 A.cucurbitifolia Aristolochia Aristolochia cucurbitifolia \N \N \N \N \N 78293 \N genus Arrhenechthites \N \N \N \N \N 78294 S.scopulorum Silene Silene scopulorum \N \N \N \N \N 78295 I.australe Iochroma Iochroma australe \N \N \N \N \N 78296 \N varietas Carex lenticularis var. lenticularis \N \N \N \N \N 78297 P.tauricum Peucedanum Peucedanum tauricum \N \N \N \N \N 78298 O.oppositifolia Olearia Olearia oppositifolia \N \N \N \N \N 78299 T.obtusifolium Tapiphyllum Tapiphyllum obtusifolium \N \N \N \N \N 78300 E.gentilis Euphorbia Euphorbia gentilis \N \N \N \N \N 78301 P.richardii Populina Populina richardii \N \N \N \N \N 78302 G.2 Gyrinops Gyrinops sp. Persoon 2 \N \N \N \N \N 78303 G.amicta Gomesa Gomesa x amicta \N \N \N \N \N 78304 C.faberi Cymbidium Cymbidium faberi \N \N \N \N \N 78305 P.tachanensis Pedicularis Pedicularis tachanensis \N \N \N \N \N 78306 N.densiflora Neolaugeria Neolaugeria densiflora \N \N \N \N \N 78307 \N genus Epimedium \N \N \N \N \N 78308 C.discolor Croton Croton discolor \N \N \N \N \N 78309 C.mollis Cordylanthus Cordylanthus mollis \N \N \N \N \N 78310 T.laevigatum Tetrastigma Tetrastigma laevigatum \N \N \N \N \N 78311 A.eremigena Arabidella Arabidella eremigena \N \N \N \N \N 78312 C.viminalis Coronilla Coronilla viminalis \N \N \N \N \N 78313 R.smilacina Reissekia Reissekia smilacina \N \N \N \N \N 78314 P.pohlmaniana Planchonella Planchonella pohlmaniana engraver's wood \N \N \N \N 78315 S.overbergensis Stilbe Stilbe overbergensis \N \N \N \N \N 78316 A.flavovirens Alcea Alcea flavovirens \N \N \N \N \N 78317 G.sodiroi Gynoxys Gynoxys sodiroi \N \N \N \N \N 78318 W.ebracteata Wilbrandia Wilbrandia ebracteata \N \N \N \N \N 78319 G.colorata Gomesa Gomesa colorata \N \N \N \N \N 78320 \N tribe Crescentieae \N \N \N \N \N 78321 C.platyphyllum Cinnamomum Cinnamomum platyphyllum \N \N \N \N \N 78322 M.laotica Momordica Momordica laotica \N \N \N \N \N 78323 R.glauca Reseda Reseda glauca \N \N \N \N \N 78324 B.microphylla Buxus Buxus microphylla \N \N \N \N \N 78325 C.brasiliensis Canavalia Canavalia brasiliensis Brazilian jackbean \N \N \N \N 78326 B.frondosa Bidens Bidens frondosa \N \N \N \N \N 78327 A.robustum Arisaema Arisaema robustum \N \N \N \N \N 78328 T.dasystyla Tilia Tilia dasystyla \N \N \N \N \N 78329 G.virgatum Galium Galium virgatum \N \N \N \N \N 78330 I.anguifuga Iris Iris anguifuga \N \N \N \N \N 78331 S.burchellii Solanum Solanum burchellii \N \N \N \N \N 78332 A.Mad029 Adenia Adenia sp. Hearn Mad029 \N \N \N \N \N 78333 E.verreauxii Elegia Elegia verreauxii \N \N \N \N \N 78334 N.parvifolia Nama Nama parvifolia \N \N \N \N \N 78335 C.salina Carex Carex salina \N \N \N \N \N 78336 L.nana Lessingia Lessingia nana \N \N \N \N \N 78337 \N genus Monadenium \N \N \N \N \N 78338 P.megalantha Phlomis Phlomis megalantha \N \N \N \N \N 78339 E.papilionum Euphorbia Euphorbia papilionum \N \N \N \N \N 78340 L.maritima Lespedeza Lespedeza maritima \N \N \N \N \N 78341 M.peltata Manihot Manihot peltata \N \N \N \N \N 78342 \N genus Pechuel-loeschea \N \N \N \N \N 78343 A.magellanica Artemisia Artemisia magellanica \N \N \N \N \N 78344 L.angustata Lachemilla Lachemilla angustata \N \N \N \N \N 78345 \N subtribe Hyphaeninae \N \N \N \N \N 78346 G.prunelloides Grindelia Grindelia prunelloides \N \N \N \N \N 78347 \N genus Acrocomia \N \N \N \N \N 78348 D.sanza-minika Diospyros Diospyros sanza-minika \N \N \N \N \N 78349 N.naga Naucleopsis Naucleopsis naga \N \N \N \N \N 78350 A.ringens Aristolochia Aristolochia ringens \N \N \N \N \N 78351 B.longipetiolata Begonia Begonia longipetiolata \N \N \N \N \N 78352 J.trifidus Juncus Juncus trifidus \N \N \N \N \N 78353 C.loddigesianus Cyrtanthus Cyrtanthus loddigesianus \N \N \N \N \N 78354 W.salutaris Warburgia Warburgia salutaris \N \N \N \N \N 78355 C.nickelsiae Coryphantha Coryphantha nickelsiae \N \N \N \N \N 78356 \N genus Chilopsis \N \N \N \N \N 78357 C.CHR514269 Craspedia Craspedia sp. CHR514269 \N \N \N \N \N 78358 T.argenteum Tanacetum Tanacetum argenteum \N \N \N \N \N 78359 D.zehntneri Discocactus Discocactus zehntneri \N \N \N \N \N 78360 \N tribe Hedysareae \N \N \N \N \N 78361 S.meridionalis Senna Senna meridionalis \N \N \N \N \N 78362 \N genus Heberdenia \N \N \N \N \N 78363 E.acida Eulychnia Eulychnia acida copao \N \N \N \N 78364 A.racemosa Anthocercis Anthocercis racemosa \N \N \N \N \N 78365 A.JM06 Aristolochia Aristolochia sp. JM06 \N \N \N \N \N 78366 \N genus Euryblema \N \N \N \N \N 78367 H.biflorum Hedychium Hedychium biflorum \N \N \N \N \N 78368 C.chrysantha Camellia Camellia chrysantha \N \N \N \N \N 78369 P.longiflorum Pelargonium Pelargonium longiflorum \N \N \N \N \N 78370 A.ponticus Astragalus Astragalus ponticus \N \N \N \N \N 78371 T.gielsdorfianus Turbinicarpus Turbinicarpus gielsdorfianus \N \N \N \N \N 78372 P.confertum Polemonium Polemonium confertum \N \N \N \N \N 78373 E.eugeniae Euphorbia Euphorbia eugeniae \N \N \N \N \N 78374 \N genus Pseudananas \N \N \N \N \N 78375 F.tatrae Festuca Festuca tatrae \N \N \N \N \N 78376 M.pyxis Masdevallia Masdevallia pyxis \N \N \N \N \N 78377 L.japonica Litsea Litsea japonica \N \N \N \N \N 78378 C.malacitanus Cytisus Cytisus malacitanus \N \N \N \N \N 78379 C.superata Carex Carex superata \N \N \N \N \N 78380 G.1194 Gomphocarpus Gomphocarpus sp. Struwe & Albert 1194 \N \N \N \N \N 78381 \N genus Lophanthera \N \N \N \N \N 78382 T.capillaris Tetraria Tetraria capillaris \N \N \N \N \N 78383 R.1155 Rytigynia Rytigynia sp. LN 1155 \N \N \N \N \N 78384 P.lanuginosum Pharnaceum Pharnaceum lanuginosum \N \N \N \N \N 78385 \N varietas Carnarvonia araliifolia var. montana \N \N \N \N \N 78386 L.pentachaeta Layia Layia pentachaeta Sierra tidytips \N \N \N \N 78387 A.muscosa Abrotanella Abrotanella muscosa \N \N \N \N \N 78388 P.smithii Pascopyrum Pascopyrum smithii \N \N \N \N \N 78389 D.hassellii Drummondita Drummondita hassellii \N \N \N \N \N 78390 C.MB0854 Canna Canna sp. MB0854 \N \N \N \N \N 78391 C.hypoleuca Cousinia Cousinia hypoleuca \N \N \N \N \N 78392 C.wallichianum Calophyllum Calophyllum wallichianum \N \N \N \N \N 78393 T.seibertii Telipogon Telipogon seibertii \N \N \N \N \N 78394 K.legionensis Klasea Klasea legionensis \N \N \N \N \N 78395 E.sclerophyllum Epistephium Epistephium sclerophyllum \N \N \N \N \N 78396 G.traversii Geranium Geranium traversii \N \N \N \N \N 78397 O.enterocarpa Orophea Orophea enterocarpa \N \N \N \N \N 78398 H.dressleri Horichia Horichia dressleri \N \N \N \N \N 78399 R.kamerunense Rhipidoglossum Rhipidoglossum kamerunense \N \N \N \N \N 78400 P.guazacapanense Piper Piper guazacapanense \N \N \N \N \N 78401 M.villosa Maireana Maireana villosa \N \N \N \N \N 78403 \N varietas Ligustrum sinense var. myrianthum \N \N \N \N \N 78404 M.nayaritense Melampodium Melampodium nayaritense \N \N \N \N \N 78405 F.gardenii Fothergilla Fothergilla gardenii \N \N \N \N \N 78406 A.cardiophylla Adenia Adenia cardiophylla \N \N \N \N \N 78407 P.rotundifolia Primula Primula rotundifolia \N \N \N \N \N 78408 N.samoensis Neoachmandra Neoachmandra samoensis \N \N \N \N \N 78409 P.reptans Prosopis Prosopis reptans mastuerzo,screwbean,tornillo \N \N \N \N 78410 S.thonneri Scaphopetalum Scaphopetalum thonneri \N \N \N \N \N 78411 E.atrispina Euphorbia Euphorbia atrispina \N \N \N \N \N 78412 S.psilocarphoides Stylocline Stylocline psilocarphoides \N \N \N \N \N 78413 P.nummulariifolia Pilea Pilea nummulariifolia creeping-Charlie \N \N \N \N 78414 M.discolor Microtropis Microtropis discolor \N \N \N \N \N 78415 \N genus Basella \N \N \N \N \N 78416 T.frymirei Telipogon Telipogon frymirei \N \N \N \N \N 78417 P.pilosicorona Passiflora Passiflora pilosicorona \N \N \N \N \N 78418 V.aphylla Vanilla Vanilla aphylla \N \N \N \N \N 78419 S.asteriscus Silphium Silphium asteriscus \N \N \N \N \N 78420 P.pilifera Paederia Paederia pilifera \N \N \N \N \N 78421 H.nitida Henriquezia Henriquezia nitida \N \N \N \N \N 78422 S.stipulata Sanguisorba Sanguisorba stipulata \N \N \N \N \N 78423 C.maurus Cytisus Cytisus maurus \N \N \N \N \N 78424 T.obtusum Trigonidium Trigonidium obtusum \N \N \N \N \N 78425 G.lietzei Gomesa Gomesa lietzei \N \N \N \N \N 78426 C.biltmoreana Carex Carex biltmoreana \N \N \N \N \N 78427 P.gw1512 Pourouma Pourouma sp. gw1512 \N \N \N \N \N 78428 \N varietas Globba leucantha var. flavidula \N \N \N \N \N 78429 G.pseudopilosa Genista Genista pseudopilosa \N \N \N \N \N 78430 B.harrisoniana Berberis Berberis harrisoniana \N \N \N \N \N 78431 D.aureicolor Diplocaulobium Diplocaulobium aureicolor \N \N \N \N \N 78432 D.longicurvum Diplodium Diplodium longicurvum \N \N \N \N \N 78433 \N genus Hemiorchis \N \N \N \N \N 78434 S.aloides Stratiotes Stratiotes aloides \N \N \N \N \N 78435 P.djumaensis Psychotria Psychotria djumaensis \N \N \N \N \N 78436 P.setacea Persicaria Persicaria setacea \N \N \N \N \N 78437 P.ekmanii Pseudophoenix Pseudophoenix ekmanii \N \N \N \N \N 78438 \N subspecies Conostylis seorsiflora subsp. trichophylla \N \N \N \N \N 78439 A.orobanchoides Alectra Alectra orobanchoides \N \N \N \N \N 78440 N.nesophila Nicotiana Nicotiana nesophila \N \N \N \N \N 78441 A.megacarpa Antirhea Antirhea megacarpa \N \N \N \N \N 78442 R.nuttallii Rhexia Rhexia nuttallii \N \N \N \N \N 78443 C.yavizanum Centrolobium Centrolobium yavizanum \N \N \N \N \N 78444 H.obovata Hoya Hoya obovata \N \N \N \N \N 78445 S.corbularia Smilax Smilax corbularia \N \N \N \N \N 78446 A.davidbramwellii Aeonium Aeonium davidbramwellii \N \N \N \N \N 78447 R.canina Rosa Rosa canina dog briar \N \N \N \N 78448 T.madagascariense Trilepisium Trilepisium madagascariense \N \N \N \N \N 78449 \N genus Wenzelia \N \N \N \N \N 78450 S.stipulata Sessea Sessea stipulata \N \N \N \N \N 78451 T.baccharoides Traversia Traversia baccharoides \N \N \N \N \N 78452 \N genus Smitinandia \N \N \N \N \N 78453 M.viminea Melaleuca Melaleuca viminea \N \N \N \N \N 78454 \N varietas Gonolobus suberosus var. suberosus \N \N \N \N \N 78455 \N genus Cologania \N \N \N \N \N 78456 N.ispahanica Nepeta Nepeta ispahanica \N \N \N \N \N 78457 \N genus Monilaria \N \N \N \N \N 78458 M.cancellata Medicago Medicago cancellata \N \N \N \N \N 78459 \N varietas Tragopogon buphthalmoides var. humilis \N \N \N \N \N 78460 A.guianensis Amaioua Amaioua guianensis \N \N \N \N \N 78461 A.polymorpha Angelica Angelica polymorpha \N \N \N \N \N 78462 S.saligna Sarcococca Sarcococca saligna \N \N \N \N \N 78463 H.sinaloensis Heliopsis Heliopsis sinaloensis \N \N \N \N \N 78464 T.wallichii Tylecodon Tylecodon wallichii \N \N \N \N \N 78465 S.lottiae Sebastiania Sebastiania lottiae \N \N \N \N \N 78466 R.velutinum Ribes Ribes velutinum desert gooseberry \N \N \N \N 78467 O.lancifolia Ocotea Ocotea lancifolia \N \N \N \N \N 78468 A.pectinata Arachnorchis Arachnorchis pectinata \N \N \N \N \N 78469 \N genus Menepetalum \N \N \N \N \N 78470 T.s.n. Tricyrtis Tricyrtis sp. Waterway s.n. \N \N \N \N \N 78471 S.championii Syzygium Syzygium championii \N \N \N \N \N 78472 B.HT-2011 Burmannia Burmannia sp. HT-2011 \N \N \N \N \N 78473 \N subspecies Mammillaria voburnensis subsp. eichlamii \N \N \N \N \N 78474 P.124/99 Pterostylis Pterostylis aff. graminea B Molloy 124/99 \N \N \N \N \N 78475 P.1022 Piper Piper cf. obliquum Tepe 1022 \N \N \N \N \N 78476 \N genus Dichanthium \N \N \N \N \N 78477 G.talamancana Guatteria Guatteria talamancana \N \N \N \N \N 78478 L.formosana Liparis Liparis formosana \N \N \N \N \N 78479 H.CCWD-2000 Hedyosmum Hedyosmum sp. CCWD-2000 \N \N \N \N \N 78480 M.duoformis Mammillaria Mammillaria duoformis \N \N \N \N \N 78481 G.wilmsii Gnidia Gnidia wilmsii \N \N \N \N \N 78482 P.digitata Pseudovesicaria Pseudovesicaria digitata \N \N \N \N \N 78483 P.scaberrimum Physocalymma Physocalymma scaberrimum \N \N \N \N \N 78484 P.arequipense Presliophytum Presliophytum arequipense \N \N \N \N \N 78485 A.repens Arctostaphylos Arctostaphylos x repens \N \N \N \N \N 78486 M.obcordatum Melolobium Melolobium obcordatum \N \N \N \N \N 78487 S.zeylanica Sphenoclea Sphenoclea zeylanica \N \N \N \N \N 78488 H.dolichophylla Hippolytia Hippolytia dolichophylla \N \N \N \N \N 78489 C.perfoliata Calceolaria Calceolaria perfoliata \N \N \N \N \N 78490 \N varietas Toona ciliata var. australis \N \N \N \N \N 78491 P.viburnoides Pileostegia Pileostegia viburnoides \N \N \N \N \N 78492 P.2350 Physena Physena sp. Schatz 2350 \N \N \N \N \N 78493 P.breedlovei Pitcairnia Pitcairnia breedlovei \N \N \N \N \N 78494 \N varietas Fritillaria cirrhosa var. viridiflava \N \N \N \N \N 78495 \N subtribe Handeliinae \N \N \N \N \N 78496 D.obovata Dunalia Dunalia obovata \N \N \N \N \N 78497 T.perfoliata Tricyrtis Tricyrtis perfoliata \N \N \N \N \N 78498 N.nudicaulis Nicotiana Nicotiana nudicaulis \N \N \N \N \N 78499 S.altaica Smelowskia Smelowskia altaica \N \N \N \N \N 78500 \N genus Distichochlamys \N \N \N \N \N 78501 \N genus Patinoa \N \N \N \N \N 78502 P.pacifica Potentilla Potentilla pacifica \N \N \N \N \N 78503 A.lucida Angelica Angelica lucida \N \N \N \N \N 78504 R.fortunei Rhododendron Rhododendron fortunei \N \N \N \N \N 78505 P.padifolia Palicourea Palicourea padifolia \N \N \N \N \N 78506 P.elongata Pinguicula Pinguicula elongata \N \N \N \N \N 78507 T.luteoviride Tripterospermum Tripterospermum luteoviride \N \N \N \N \N 78508 P.subruminata Pinanga Pinanga subruminata \N \N \N \N \N 78509 A.amplexicaulis Acianthus Acianthus amplexicaulis \N \N \N \N \N 78510 L.barbata Lyginia Lyginia barbata \N \N \N \N \N 78511 C.cirrhosa Carex Carex cirrhosa \N \N \N \N \N 78512 \N genus Tricoryne \N \N \N \N \N 78513 L.emarginatus Lampranthus Lampranthus emarginatus \N \N \N \N \N 78514 N.trifoliolata Neoalsomitra Neoalsomitra trifoliolata \N \N \N \N \N 78515 \N genus Asepalum \N \N \N \N \N 78516 D.hainanensis Dendropanax Dendropanax hainanensis \N \N \N \N \N 78517 \N subspecies Satyrium hallackii subsp. ocellatum \N \N \N \N \N 78518 P.cernua Pterostylis Pterostylis cernua \N \N \N \N \N 78519 E.glabra Eremophila Eremophila glabra emu bush \N \N \N \N 78520 C.orientalis Carpinus Carpinus orientalis \N \N \N \N \N 78521 E.rostratum Epilobium Epilobium rostratum \N \N \N \N \N 78522 \N tribe Thomsonieae \N \N \N \N \N 78523 A.hildebrandii Aeschynanthus Aeschynanthus hildebrandii \N \N \N \N \N 78524 S.juncoides Schoenoplectiella Schoenoplectiella juncoides \N \N \N \N \N 78525 E.lemmonii Eryngium Eryngium lemmonii \N \N \N \N \N 78526 A.asaroides Asarum Asarum asaroides \N \N \N \N \N 78527 M.microphyton Maxillaria Maxillaria microphyton \N \N \N \N \N 78528 A.petersiana Albizia Albizia petersiana \N \N \N \N \N 78529 W.YS Wolffia Wolffia sp. YS \N \N \N \N \N 78530 L.tomentella Lonicera Lonicera tomentella \N \N \N \N \N 78531 \N subspecies Polystachya albescens subsp. imbricata \N \N \N \N \N 78532 \N subspecies Stephanomeria exigua subsp. coronaria \N \N \N \N \N 78533 \N subspecies Heracleum sphondylium subsp. verticillatum \N \N \N \N \N 78534 C.leichhardtii Corymbia Corymbia leichhardtii \N \N \N \N \N 78535 A.obtusata Acacia Acacia obtusata \N \N \N \N \N 78536 F.microphylla Fuchsia Fuchsia microphylla \N \N \N \N \N 78537 P.520 Pharnaceum Pharnaceum sp. Forest 520 \N \N \N \N \N 78538 S.johnstonii Solanum Solanum johnstonii \N \N \N \N \N 78539 \N genus Pegolettia \N \N \N \N \N 78540 A.canadensis Anemone Anemone canadensis \N \N \N \N \N 78541 S.oldhamianus Sinosenecio Sinosenecio oldhamianus \N \N \N \N \N 78542 P.brevispathum Philodendron Philodendron brevispathum \N \N \N \N \N 78543 O.banksii Oxypetalum Oxypetalum banksii \N \N \N \N \N 78544 G.phaiostele Geesinkorchis Geesinkorchis phaiostele \N \N \N \N \N 78545 \N genus Tricalistra \N \N \N \N \N 78546 P.bahiensis Patagonula Patagonula bahiensis \N \N \N \N \N 78547 C.socialis Carex Carex socialis \N \N \N \N \N 78548 S.caeruleus Setchellanthus Setchellanthus caeruleus \N \N \N \N \N 78549 P.glabra Photinia Photinia glabra Japanese photinia,guang ye shi nan,kaname-mochi \N \N \N \N 78550 P.cotyledon Peperomia Peperomia cotyledon \N \N \N \N \N 78551 L.DRP38 unclassified Lauraceae Lauraceae sp. 3 DRP38 \N \N \N \N \N 78552 T.spinosum Thesium Thesium spinosum \N \N \N \N \N 78553 T.grandiglumis Trichoneura Trichoneura grandiglumis \N \N \N \N \N 78554 \N varietas Santalum freycinetianum var. lanaiense \N \N \N \N \N 78555 R.erythrocarpum Ribes Ribes erythrocarpum \N \N \N \N \N 78556 E.nigrescens Elatostema Elatostema nigrescens \N \N \N \N \N 78557 \N varietas Veronica chamaedrys var. chamaedrys \N \N \N \N \N 78558 P.ovalifolia Perymeniopsis Perymeniopsis ovalifolia \N \N \N \N \N 78559 T.squarrosum Trifolium Trifolium squarrosum \N \N \N \N \N 78560 C.asteliifolia Celmisia Celmisia asteliifolia \N \N \N \N \N 78561 A.condensatum Alyssum Alyssum condensatum \N \N \N \N \N 78562 A.densistellatum Alyssum Alyssum densistellatum \N \N \N \N \N 78563 C.schiedeana Columnea Columnea schiedeana \N \N \N \N \N 78564 P.pubescens Pinckneya Pinckneya pubescens \N \N \N \N \N 78565 \N genus Clinacanthus \N \N \N \N \N 78566 D.cardaminiflora Draba Draba cardaminiflora \N \N \N \N \N 78567 H.velutina Hypselodelphys Hypselodelphys velutina \N \N \N \N \N 78568 B.glabra Begonia Begonia glabra \N \N \N \N \N 78569 B.cordifolia Berzelia Berzelia cordifolia \N \N \N \N \N 78570 C.tenuiculmis Chrysopogon Chrysopogon tenuiculmis \N \N \N \N \N 78571 A.angulosum Allium Allium angulosum \N \N \N \N \N 78572 T.grandiflora Tachia Tachia grandiflora \N \N \N \N \N 78573 C.tinctoria Cota Cota tinctoria \N \N \N \N \N 78574 C.rupestris Coincya Coincya rupestris \N \N \N \N \N 78575 C.ochotensis Corydalis Corydalis ochotensis \N \N \N \N \N 78576 \N varietas Rhododendron temenium var. temenium \N \N \N \N \N 78577 N.smilesii Nepenthes Nepenthes smilesii \N \N \N \N \N 78578 G.sphacelata Greigia Greigia sphacelata \N \N \N \N \N 78579 \N genus Eburophyton \N \N \N \N \N 78580 Z.taylori Ziziphus Ziziphus taylori \N \N \N \N \N 78581 R.negrensis Rhodostemonodaphne Rhodostemonodaphne negrensis \N \N \N \N \N 78582 \N genus Louisiella \N \N \N \N \N 78583 S.notabilis Senna Senna notabilis \N \N \N \N \N 78584 M.fucata Malpighia Malpighia fucata \N \N \N \N \N 78585 P.corticicola Pleurothallis Pleurothallis corticicola \N \N \N \N \N 78586 C.paramicola Columnea Columnea paramicola \N \N \N \N \N 78587 \N genus Tolypanthus \N \N \N \N \N 78588 C.pallidum Cephalostachyum Cephalostachyum pallidum \N \N \N \N \N 78589 \N genus Haplothismia \N \N \N \N \N 78590 A.deserti Agave Agave deserti \N \N \N \N \N 78591 A.retrorsa Agoseris Agoseris retrorsa \N \N \N \N \N 78592 P.bolanderi Perideridia Perideridia bolanderi \N \N \N \N \N 78593 D.punctata Diuris Diuris punctata purple donkey orchid \N \N \N \N 78594 H.reptans Hemigraphis Hemigraphis reptans \N \N \N \N \N 78595 P.longivaginans Piper Piper longivaginans \N \N \N \N \N 78596 B.goniocarpa Brachyscome Brachyscome goniocarpa \N \N \N \N \N 78597 C.schottii Corynopuntia Corynopuntia schottii \N \N \N \N \N 78598 A.forbesii Aglaia Aglaia forbesii \N \N \N \N \N 78599 \N genus Kielmeyera \N \N \N \N \N 78600 W.eugenii Warmingia Warmingia eugenii \N \N \N \N \N 78601 L.africana Luzula Luzula africana \N \N \N \N \N 78602 D.tenuis Dahlia Dahlia tenuis \N \N \N \N \N 78603 N.multiareolata Neobuxbaumia Neobuxbaumia multiareolata \N \N \N \N \N 78604 S.flexuosa Sinapis Sinapis flexuosa \N \N \N \N \N 78605 F.insipida Ficus Ficus insipida \N \N \N \N \N 78606 I.hochstetteri Ipomoea Ipomoea hochstetteri \N \N \N \N \N 78607 \N subspecies Secale strictum subsp. africanum \N \N \N \N \N 78608 P.omeiensis Parakmeria Parakmeria omeiensis \N \N \N \N \N 78609 M.puberula Macaranga Macaranga puberula \N \N \N \N \N 78610 M.alticola Moraea Moraea alticola \N \N \N \N \N 78611 A.oreophilus Arthrochilus Arthrochilus oreophilus \N \N \N \N \N 78612 \N genus Zaluzania \N \N \N \N \N 78613 S.aster Saussurea Saussurea aster \N \N \N \N \N 78614 T.pterocarpus Tragopogon Tragopogon pterocarpus \N \N \N \N \N 78615 M.amplexicaulis Monimia Monimia amplexicaulis \N \N \N \N \N 78616 I.bracteola Indigofera Indigofera bracteola \N \N \N \N \N 78617 P.excelsa Picconia Picconia excelsa \N \N \N \N \N 78618 S.stagnale Solanum Solanum stagnale \N \N \N \N \N 78619 S.nigra Schisandra Schisandra nigra \N \N \N \N \N 78620 \N genus Hylenaea \N \N \N \N \N 78621 G.brenningii Gliricidia Gliricidia brenningii \N \N \N \N \N 78622 M.SH-2010 Mirabilis Mirabilis sp. SH-2010 \N \N \N \N \N 78623 \N genus Tynanthus \N \N \N \N \N 78624 B.brandegeei Brahea Brahea brandegeei \N \N \N \N \N 78625 V.venustum Vaccinium Vaccinium venustum \N \N \N \N \N 78626 \N genus Xerotia \N \N \N \N \N 78627 A.protea Ascolepis Ascolepis protea \N \N \N \N \N 78628 G.subaequalis Gironniera Gironniera subaequalis \N \N \N \N \N 78629 I.parvifolium Illicium Illicium parvifolium \N \N \N \N \N 78630 A.koraiensis Anemone Anemone koraiensis \N \N \N \N \N 78631 P.cristata Paphinia Paphinia cristata \N \N \N \N \N 78632 C.colchicum Cyclamen Cyclamen colchicum \N \N \N \N \N 78633 M.umbrosum Micranthemum Micranthemum umbrosum \N \N \N \N \N 78634 G.guatemalense Guaiacum Guaiacum guatemalense \N \N \N \N \N 78635 S.microsphaerica Schlumbergera Schlumbergera microsphaerica \N \N \N \N \N 78636 M.mixtum Marcgraviastrum Marcgraviastrum mixtum \N \N \N \N \N 78637 M.lasiacantha Mammillaria Mammillaria lasiacantha \N \N \N \N \N 78638 B.pygmaea Babiana Babiana pygmaea \N \N \N \N \N 78639 L.dryadum Lagynias Lagynias dryadum \N \N \N \N \N 78640 P.variegata Pedicularis Pedicularis variegata \N \N \N \N \N 78641 I.emirnensis Ixora Ixora emirnensis \N \N \N \N \N 78642 L.vittiformis Lysimachia Lysimachia vittiformis \N \N \N \N \N 78643 P.stenocephala Pojarkovia Pojarkovia stenocephala \N \N \N \N \N 78644 \N family Haemodoraceae bloodwort family \N \N \N \N 78645 \N genus Batesimalva \N \N \N \N \N 78646 \N genus Ochrosia \N \N \N \N \N 78647 P.perfoliata Passiflora Passiflora perfoliata \N \N \N \N \N 78648 \N genus Sparrmannia \N \N \N \N \N 78649 N.nivalis Narcissus Narcissus nivalis \N \N \N \N \N 78650 R.purpurascens Restio Restio purpurascens \N \N \N \N \N 78651 I.buxifolius Isopogon Isopogon buxifolius \N \N \N \N \N 78652 \N family Gelsemiaceae \N \N \N \N \N 78653 B.bracteolosum Brachysema Brachysema bracteolosum \N \N \N \N \N 78654 S.leprosula Shorea Shorea leprosula \N \N \N \N \N 78655 N.lucens Nesampelos Nesampelos lucens \N \N \N \N \N 78656 R.multifolia Ruellia Ruellia multifolia \N \N \N \N \N 78657 \N subspecies Ulex parviflorus subsp. funkii \N \N \N \N \N 78658 F.polycarpa Fatsia Fatsia polycarpa \N \N \N \N \N 78659 A.bornmuelleri Anthemis Anthemis bornmuelleri \N \N \N \N \N 78660 P.cylindricum Phacelophrynium Phacelophrynium cylindricum \N \N \N \N \N 78661 P.barbeyanum Phagnalon Phagnalon barbeyanum \N \N \N \N \N 78662 \N genus Tetrasida \N \N \N \N \N 78663 V.pulchella Vicia Vicia pulchella \N \N \N \N \N 78664 A.antirrhina Achimenes Achimenes antirrhina \N \N \N \N \N 78665 C.chiapensis Catoferia Catoferia chiapensis \N \N \N \N \N 78666 C.tatrae Cochlearia Cochlearia tatrae \N \N \N \N \N 78667 \N subtribe Eugeissoninae \N \N \N \N \N 78668 S.flavum Stenomesson Stenomesson flavum \N \N \N \N \N 78669 S.veitchiana Saussurea Saussurea veitchiana \N \N \N \N \N 78670 \N varietas Leucas decemdentata var. decemdentata \N \N \N \N \N 78671 S.dissecta Schulzia Schulzia dissecta \N \N \N \N \N 78672 D.velebitica Degenia Degenia velebitica \N \N \N \N \N 78673 E.schlechteri Erica Erica schlechteri \N \N \N \N \N 78674 C.hedgei Centaurea Centaurea hedgei \N \N \N \N \N 78675 H.leskovii Heracleum Heracleum leskovii \N \N \N \N \N 78676 T.aberrans Triniteurybia Triniteurybia aberrans \N \N \N \N \N 78677 S.tettense Solanum Solanum tettense \N \N \N \N \N 78678 S.demissum Sisyrinchium Sisyrinchium demissum \N \N \N \N \N 78679 P.volubilis Petrea Petrea volubilis queen's wreath,sand-paper \N \N \N \N 78680 \N genus Scopelogena \N \N \N \N \N 78681 P.forsythiana Pilea Pilea forsythiana \N \N \N \N \N 78682 O.scoparia Orthosia Orthosia scoparia \N \N \N \N \N 78683 C.campestris Crassula Crassula campestris \N \N \N \N \N 78684 \N subtribe Boutelouinae \N \N \N \N \N 78685 C.nipponica Cardamine Cardamine nipponica \N \N \N \N \N 78686 J.alpinoarticulatus Juncus Juncus alpinoarticulatus \N \N \N \N \N 78687 P.bassleriana Pilea Pilea bassleriana \N \N \N \N \N 78688 V.BSh-2011 Vicia Vicia sp. BSh-2011 \N \N \N \N \N 78689 F.norica Festuca Festuca norica \N \N \N \N \N 78690 B.exaltata Bridelia Bridelia exaltata \N \N \N \N \N 78691 E.jatrophoides Euphorbia Euphorbia jatrophoides \N \N \N \N \N 78692 L.lagrangei Lychnis Lychnis lagrangei \N \N \N \N \N 78693 E.floribundum Eryngium Eryngium floribundum \N \N \N \N \N 78694 D.pahangensis Drepananthus Drepananthus pahangensis \N \N \N \N \N 78695 A.fernandezii Aphelandra Aphelandra fernandezii \N \N \N \N \N 78696 S.salesiana Scuticaria Scuticaria salesiana \N \N \N \N \N 78697 H.gossypinum Helichrysum Helichrysum gossypinum \N \N \N \N \N 78698 S.bulbocastanum Solanum Solanum bulbocastanum ornamental nightshade \N \N \N \N 78699 C.blanchetiana Chaetocalyx Chaetocalyx blanchetiana \N \N \N \N \N 78700 C.sp. Corydalis Corydalis sp. \N \N \N \N \N 78701 C.strobilacea Cuscuta Cuscuta strobilacea \N \N \N \N \N 78702 M.guatemalensis Mimosa Mimosa guatemalensis \N \N \N \N \N 78703 V.nestor Vernoniastrum Vernoniastrum nestor \N \N \N \N \N 78704 E.hylophilum Eriogonum Eriogonum hylophilum \N \N \N \N \N 78705 \N genus Amphipogon \N \N \N \N \N 78706 S.spinescens Scaevola Scaevola spinescens \N \N \N \N \N 78707 A.NN141 Allium Allium sp. NN141 \N \N \N \N \N 78708 P.stipularis Pomaria Pomaria stipularis \N \N \N \N \N 78709 N.papyracea Noccaea Noccaea papyracea \N \N \N \N \N 78710 A.thouarsii Actinoschoenus Actinoschoenus thouarsii \N \N \N \N \N 78711 I.rossii Iris Iris rossii \N \N \N \N \N 78712 C.egertonianum Cycnoches Cycnoches egertonianum \N \N \N \N \N 78713 C.radiata Chloris Chloris radiata \N \N \N \N \N 78714 A.macdougalii Aletes Aletes macdougalii \N \N \N \N \N 78715 \N genus Floerkea \N \N \N \N \N 78716 C.fasciculatus Chaetopogon Chaetopogon fasciculatus \N \N \N \N \N 78717 T.cordifolia Tannodia Tannodia cordifolia \N \N \N \N \N 78718 \N subspecies Najas guadalupensis subsp. floridana \N \N \N \N \N 78719 M.confertiflora Mohavea Mohavea confertiflora \N \N \N \N \N 78720 \N subspecies Sidalcea malviflora subsp. patula \N \N \N \N \N 78721 \N subspecies Primula conjugens subsp. conjugens \N \N \N \N \N 78722 M.whiteana Metrosideros Metrosideros whiteana \N \N \N \N \N 78723 C.H5_29 Castilleja Castilleja sp. H5_29 \N \N \N \N \N 78724 G.macropetala Gomesa Gomesa macropetala \N \N \N \N \N 78725 A.acutifolia Acleisanthes Acleisanthes acutifolia \N \N \N \N \N 78726 O.martiana Oxalis Oxalis martiana \N \N \N \N \N 78727 C.carinatum Canthium Canthium carinatum \N \N \N \N \N 78728 M.anacardiifolia Myrcia Myrcia anacardiifolia \N \N \N \N \N 78729 C.manghas Cerbera Cerbera manghas \N \N \N \N \N 78730 \N genus Glekia \N \N \N \N \N 78731 A.aurea Asclepias Asclepias aurea \N \N \N \N \N 78732 \N genus Oxyanthus \N \N \N \N \N 78733 D.szowitsianum Delphinium Delphinium szowitsianum \N \N \N \N \N 78734 G.javanica Gomphandra Gomphandra javanica \N \N \N \N \N 78735 P.calliantha Pyrola Pyrola calliantha \N \N \N \N \N 78736 \N subspecies Chamaecrista nictitans subsp. brachypoda \N \N \N \N \N 78737 \N genus Geraea \N \N \N \N \N 78738 M.budlejoides Miconia Miconia budlejoides \N \N \N \N \N 78739 T.purseglovei Trifolium Trifolium purseglovei \N \N \N \N \N 78740 W.graniticola Wurmbea Wurmbea graniticola \N \N \N \N \N 78741 A.histrix Aeschynomene Aeschynomene histrix \N \N \N \N \N 78742 T.guttata Tuberaria Tuberaria guttata \N \N \N \N \N 78743 K.cistoidea Krameria Krameria cistoidea \N \N \N \N \N 78744 P.angustifolia Picris Picris angustifolia \N \N \N \N \N 78745 B.diversifolia Brachyscome Brachyscome diversifolia \N \N \N \N \N 78746 A.albissima Avonia Avonia albissima \N \N \N \N \N 78747 S.stellatus Stenocereus Stenocereus stellatus pitaya,xoconochtli \N \N \N \N 78748 P.urinaria Phyllanthus Phyllanthus urinaria ye xia zhu \N \N \N \N 78749 N.repanda Nothocnide Nothocnide repanda \N \N \N \N \N 78750 P.lacorum Pilea Pilea lacorum \N \N \N \N \N 78751 P.lanceifolium Pterospermum Pterospermum lanceifolium \N \N \N \N \N 78752 C.jubata Cortaderia Cortaderia jubata \N \N \N \N \N 78753 \N genus Zerdana \N \N \N \N \N 78754 \N genus Zuccagnia \N \N \N \N \N 78755 E.handel-mazzettii Erysimum Erysimum handel-mazzettii \N \N \N \N \N 78756 T.emirnensis Triainolepis Triainolepis emirnensis \N \N \N \N \N 78757 \N genus Chondrorhyncha \N \N \N \N \N 78758 P.esseriana Pinguicula Pinguicula esseriana \N \N \N \N \N 78759 \N varietas Downingia ornatissima var. ornatissima \N \N \N \N \N 78760 P.jayaensis Pilea Pilea jayaensis \N \N \N \N \N 78761 A.sciureus Astragalus Astragalus sciureus \N \N \N \N \N 78762 \N genus Schedonnardus \N \N \N \N \N 78763 \N subspecies Proboscidea triloba subsp. triloba \N \N \N \N \N 78764 C.endivia Cichorium Cichorium intybus x Cichorium endivia \N \N \N \N \N 78765 G.glabrescens Galium Galium glabrescens \N \N \N \N \N 78766 E.pillansii Erepsia Erepsia pillansii \N \N \N \N \N 78767 \N genus Thyrsostachys \N \N \N \N \N 78768 N.dukei Notopleura Notopleura dukei \N \N \N \N \N 78769 C.magdalenensis Croton Croton magdalenensis \N \N \N \N \N 78770 \N tribe Prockieae \N \N \N \N \N 78771 P.rhyolitica Potentilla Potentilla rhyolitica \N \N \N \N \N 78772 E.dacrydioides Euryops Euryops dacrydioides \N \N \N \N \N 78773 C.lilacina Cardamine Cardamine lilacina \N \N \N \N \N 78774 \N subspecies Eschscholzia californica subsp. mexicana \N \N \N \N \N 78775 C.perrieri Colletogyne Colletogyne perrieri \N \N \N \N \N 78776 P.nodosus Potamogeton Potamogeton distinctus x Potamogeton nodosus \N \N \N \N \N 78777 P.nelsonii Prionosciadium Prionosciadium nelsonii \N \N \N \N \N 78778 H.aristata Hypoestes Hypoestes aristata \N \N \N \N \N 78779 B.126 Begonia Begonia sp. Forrest 126 \N \N \N \N \N 78780 \N subspecies Daviesia benthamii subsp. benthamii \N \N \N \N \N 78781 C.lyperiiflorum Camptoloma Camptoloma lyperiiflorum \N \N \N \N \N 78782 C.rhizomatosa Chamaedorea Chamaedorea rhizomatosa \N \N \N \N \N 78783 \N genus Wulfeniopsis \N \N \N \N \N 78784 E.muelleri Epipactis Epipactis muelleri \N \N \N \N \N 78785 V.leptophylla Virotia Virotia leptophylla \N \N \N \N \N 78786 R.SH-2010 Rubus Rubus sp. SH-2010 \N \N \N \N \N 78787 C.calvum Cichorium Cichorium calvum \N \N \N \N \N 78788 V.cazorlensis Viola Viola cazorlensis \N \N \N \N \N 78789 S.coutinhoi Silene Silene coutinhoi \N \N \N \N \N 78790 T.macrostachys Trematolobelia Trematolobelia macrostachys \N \N \N \N \N 78791 S.crispatus Stenocactus Stenocactus crispatus \N \N \N \N \N 78792 G.pulchra Glomera Glomera pulchra \N \N \N \N \N 78793 S.reginae Strelitzia Strelitzia reginae bird-of-paradise,craneflower \N \N \N \N 78794 B.gilva Bauhinia Bauhinia gilva \N \N \N \N \N 78795 \N genus Orleanesia \N \N \N \N \N 78796 S.syriaca Sideritis Sideritis syriaca \N \N \N \N \N 78797 \N genus Amphirrhox \N \N \N \N \N 78798 D.lasiogynoides Drypetes Drypetes lasiogynoides \N \N \N \N \N 78799 S.nipponica Sasa Sasa nipponica \N \N \N \N \N 78800 C.biflora Clarisia Clarisia biflora \N \N \N \N \N 78801 F.fournieri Flindersia Flindersia fournieri \N \N \N \N \N 78802 H.dshungaricum Haplophyllum Haplophyllum dshungaricum \N \N \N \N \N 78803 A.aphylla Agalinis Agalinis aphylla \N \N \N \N \N 78804 H.MAB-2005 Heliophila Heliophila sp. MAB-2005 \N \N \N \N \N 78805 P.corymbosa Pennantia Pennantia corymbosa \N \N \N \N \N 78806 O.P52 Olearia Olearia aff. traversii P52 \N \N \N \N \N 78807 \N genus Phanerodiscus \N \N \N \N \N 78808 Y.thibetica Ypsilandra Ypsilandra thibetica \N \N \N \N \N 78809 \N genus Scoparia \N \N \N \N \N 78810 \N varietas Leonia glycycarpa var. racemosa \N \N \N \N \N 78811 \N genus Calliandra \N \N \N \N \N 78812 I.7226 Ixora Ixora sp. Geesink et al. 7226 \N \N \N \N \N 78813 D.SRR-2011 Dichaea Dichaea sp. SRR-2011 \N \N \N \N \N 78814 V.prolifera Vellozia Vellozia prolifera \N \N \N \N \N 78815 E.acutangula Eleocharis Eleocharis acutangula \N \N \N \N \N 78816 A.straussii Ancistrorhynchus Ancistrorhynchus straussii \N \N \N \N \N 78817 L.anoleuca Ligularia Ligularia anoleuca \N \N \N \N \N 78818 P.subalpina Pultenaea Pultenaea subalpina \N \N \N \N \N 78819 L.dubia Leptochloa Leptochloa dubia \N \N \N \N \N 78820 E.saxatile Epithema Epithema saxatile \N \N \N \N \N 78821 L.schacaptaricus Lamyropappus Lamyropappus schacaptaricus \N \N \N \N \N 78822 \N genus Acrodon \N \N \N \N \N 78823 \N varietas Yucca elata var. utahensis \N \N \N \N \N 78824 P.haplophyllus Pitaviaster Pitaviaster haplophyllus \N \N \N \N \N 78825 A.allochrous Astragalus Astragalus allochrous \N \N \N \N \N 78826 I.herbstii Iresine Iresine herbstii \N \N \N \N \N 78827 \N varietas Hepatica nobilis var. japonica \N \N \N \N \N 78828 I.rubicunda Isolepis Isolepis rubicunda \N \N \N \N \N 78829 E.decaisnei Echium Echium decaisnei \N \N \N \N \N 78830 K.kahoolawensis Kanaloa Kanaloa kahoolawensis \N \N \N \N \N 78831 G.floribunda Garuga Garuga floribunda \N \N \N \N \N 78832 M.brevivaginata Muhlenbergia Muhlenbergia brevivaginata \N \N \N \N \N 78833 E.purpurascens Epidendrum Epidendrum purpurascens \N \N \N \N \N 78834 L.strandveldense Lycium Lycium strandveldense \N \N \N \N \N 78835 S.tomentosa Silene Silene tomentosa \N \N \N \N \N 78836 C.elephantina Cousinia Cousinia elephantina \N \N \N \N \N 78837 A.billardierei Anchonium Anchonium billardierei \N \N \N \N \N 78838 P.nodosa Persicaria Persicaria nodosa \N \N \N \N \N 78839 E.phaseoloides Entada Entada phaseoloides \N \N \N \N \N 78840 P.rubra Plumeria Plumeria rubra frangipani,nosegay,pagoda tree \N \N \N \N 78841 C.mahafalensis Capuronianthus Capuronianthus mahafalensis \N \N \N \N \N 78842 F.micrantha Fritillaria Fritillaria micrantha brown fritillary \N \N \N \N 78843 T.geitneriana Tibouchina Tibouchina geitneriana \N \N \N \N \N 78844 L.zeylanica Leucas Leucas zeylanica \N \N \N \N \N 78845 \N genus Agdestis \N \N \N \N \N 78846 \N family Grubbiaceae \N \N \N \N \N 78847 G.brachystephana Grindelia Grindelia brachystephana \N \N \N \N \N 78848 \N genus Lawsonia \N \N \N \N \N 78849 A.cordifolia Arnica Arnica cordifolia heartleaf arnica \N \N \N \N 78850 C.crassifolius Cheirolophus Cheirolophus crassifolius \N \N \N \N \N 78851 \N genus Ianthopappus \N \N \N \N \N 78852 P.glutinosa Primula Primula glutinosa \N \N \N \N \N 78853 E.coccinea Elizabetha Elizabetha coccinea \N \N \N \N \N 78854 \N genus Pluchea \N \N \N \N \N 78855 O.montana Oreoleysera Oreoleysera montana \N \N \N \N \N 78856 \N genus Amauriopsis \N \N \N \N \N 78857 M.decoratum Mediocalcar Mediocalcar decoratum \N \N \N \N \N 78858 P.florida Poitea Poitea florida \N \N \N \N \N 78859 L.uechtritzianum Lepidotrichum Lepidotrichum uechtritzianum \N \N \N \N \N 78860 E.socotrana Echidnopsis Echidnopsis socotrana \N \N \N \N \N 78861 P.exhibens Pelargonium Pelargonium exhibens \N \N \N \N \N 78862 W.cunninghamii Winika Winika cunninghamii \N \N \N \N \N 78863 V.blandum Viburnum Viburnum blandum \N \N \N \N \N 78864 B.longicarpa Begonia Begonia longicarpa \N \N \N \N \N 78865 \N varietas Nenga pumila var. pachystachya \N \N \N \N \N 78866 \N subspecies Scrophularia frigida subsp. haussknechti \N \N \N \N \N 78867 B.melloi Bulbophyllum Bulbophyllum melloi \N \N \N \N \N 78868 C.apiculata Cliffortia Cliffortia apiculata \N \N \N \N \N 78869 \N genus Friesodielsia \N \N \N \N \N 78870 M.latifolia Malaxis Malaxis latifolia \N \N \N \N \N 78871 L.ceratocarpa Lipschitziella Lipschitziella ceratocarpa \N \N \N \N \N 78872 E.minima Eleocharis Eleocharis minima \N \N \N \N \N 78873 S.capitata Schotia Schotia capitata \N \N \N \N \N 78874 \N genus Peplis \N \N \N \N \N 78875 \N genus Lagotis \N \N \N \N \N 78876 I.paniculata Ixia Ixia paniculata \N \N \N \N \N 78877 S.oblongifolia Synthyris Synthyris oblongifolia \N \N \N \N \N 78878 C.sericea Cliffortia Cliffortia sericea \N \N \N \N \N 78879 D.macbeathiana Draba Draba macbeathiana \N \N \N \N \N 78880 O.emarginata Olinia Olinia emarginata \N \N \N \N \N 78881 \N subspecies Gilia capitata subsp. tomentosa \N \N \N \N \N 78882 \N forma Phyllostachys nidularia f. farcta \N \N \N \N \N 78883 C.violacea Collinsia Collinsia violacea \N \N \N \N \N 78884 D.viridula Dichaea Dichaea viridula \N \N \N \N \N 78885 W.W011 Withania Withania sp. W011 \N \N \N \N \N 78886 A.fraternum Arisaema Arisaema fraternum \N \N \N \N \N 78887 A.congesta Aerva Aerva congesta \N \N \N \N \N 78888 G.oresbium Galium Galium oresbium \N \N \N \N \N 78889 A.cornutum Antirrhinum Antirrhinum cornutum \N \N \N \N \N 78890 \N varietas Neolitsea cambodiana var. glabra \N \N \N \N \N 78891 L.iberica Lonicera Lonicera iberica \N \N \N \N \N 78892 N.californica Nama Nama californica \N \N \N \N \N 78893 A.chinense Allium Allium chinense \N \N \N \N \N 78894 V.hebecarpa Valeriana Valeriana hebecarpa \N \N \N \N \N 78895 \N genus Hyobanche \N \N \N \N \N 78896 P.vialii Primula Primula vialii \N \N \N \N \N 78897 C.monteluccii Cardamine Cardamine monteluccii \N \N \N \N \N 78898 P.batesiana Pavetta Pavetta batesiana \N \N \N \N \N 78899 C.weedii Calochortus Calochortus weedii \N \N \N \N \N 78900 S.lasiocarpa Semenovia Semenovia lasiocarpa \N \N \N \N \N 78901 C.macrocarpa Chambeyronia Chambeyronia macrocarpa \N \N \N \N \N 78902 P.convexa Protea Protea convexa \N \N \N \N \N 78903 \N subspecies Carex divulsa subsp. divulsa \N \N \N \N \N 78904 R.australe Rytidosperma Rytidosperma australe \N \N \N \N \N 78905 \N subspecies Disa gladioliflora subsp. gladioliflora \N \N \N \N \N 78906 E.nutans Euphorbia Euphorbia nutans \N \N \N \N \N 78907 S.kerdousianus Senecio Senecio kerdousianus \N \N \N \N \N 78908 \N genus Desmocladus \N \N \N \N \N 78909 \N varietas Vigna unguiculata var. spontanea wild annual cowpea \N \N \N \N 78910 R.fulvum Rytidosperma Rytidosperma fulvum \N \N \N \N \N 78911 \N varietas Diospyros ferruginescens var. ferruginescens \N \N \N \N \N 78912 \N genus Glossogyne \N \N \N \N \N 78913 D.richii Dichaea Dichaea richii \N \N \N \N \N 78914 G.dioicus Gymnocladus Gymnocladus dioicus Kentucky coffee tree,nicker tree \N \N \N \N 78915 L.spectabilis Lacaena Lacaena spectabilis \N \N \N \N \N 78916 E.crinigerum Eriophorum Eriophorum crinigerum \N \N \N \N \N 78917 P.acrensis Pagamea Pagamea acrensis \N \N \N \N \N 78918 C.laevigatus Crocus Crocus laevigatus \N \N \N \N \N 78919 C.multisectum Coelopleurum Coelopleurum multisectum \N \N \N \N \N 78920 C.pubescens Capsicum Capsicum pubescens apple chile,chamburoto,chile caballo,manzano,rocoto \N \N \N \N 78921 N.sutchuanensis Neolitsea Neolitsea sutchuanensis \N \N \N \N \N 78922 E.conferta Euphorbia Euphorbia conferta \N \N \N \N \N 78923 P.distinctus Potamogeton Potamogeton wrightii x Potamogeton distinctus \N \N \N \N \N 78924 C.campanulacea Crawfurdia Crawfurdia campanulacea \N \N \N \N \N 78925 L.furfuracea Laelia Laelia furfuracea \N \N \N \N \N 78926 C.stricta Conyza Conyza stricta \N \N \N \N \N 78927 \N genus Jaltomata \N \N \N \N \N 78928 M.brevistyla Moraea Moraea brevistyla \N \N \N \N \N 78929 A.oregana Arabis Arabis oregana \N \N \N \N \N 78930 T.paronychioides Tiquilia Tiquilia paronychioides \N \N \N \N \N 78931 B.simplex Borneosicyos Borneosicyos simplex \N \N \N \N \N 78932 R.neglecta Rinorea Rinorea neglecta \N \N \N \N \N 78933 S.moranense Sedum Sedum moranense \N \N \N \N \N 78934 T.chebula Terminalia Terminalia chebula black myrobalan,harra \N \N \N \N 78935 T.pseudotriquetrum Tadehagi Tadehagi pseudotriquetrum \N \N \N \N \N 78936 H.latifolius Hemiphylacus Hemiphylacus latifolius \N \N \N \N \N 78937 B.lenticularis Bossiaea Bossiaea lenticularis \N \N \N \N \N 78938 \N genus Dendrosicyos \N \N \N \N \N 78939 L.pubescens Leymus Leymus pubescens \N \N \N \N \N 78940 R.novogaliciana Ruellia Ruellia novogaliciana \N \N \N \N \N 78941 A.ramosissimus Aphanostephus Aphanostephus ramosissimus \N \N \N \N \N 78942 A.platyphylla Anagallis Anagallis platyphylla \N \N \N \N \N 78943 H.oliverae Heliosperma Heliosperma oliverae \N \N \N \N \N 78944 D.asperoides Dipsacus Dipsacus asperoides \N \N \N \N \N 78945 L.kelloggii Lilium Lilium kelloggii \N \N \N \N \N 78946 H.ulicina Hakea Hakea ulicina \N \N \N \N \N 78947 C.buxbaumii Carex Carex buxbaumii \N \N \N \N \N 78948 A.amaniensis Angraecopsis Angraecopsis amaniensis \N \N \N \N \N 78949 L.fistulosa Lysimachia Lysimachia fistulosa \N \N \N \N \N 78950 \N subspecies Echinops sphaerocephalus subsp. sphaerocephalus \N \N \N \N \N 78951 S.farrenyi Seseli Seseli farrenyi \N \N \N \N \N 78952 C.atractyloides Cousiniopsis Cousiniopsis atractyloides \N \N \N \N \N 78953 D.africana Dalhousiea Dalhousiea africana \N \N \N \N \N 78954 \N genus Pseudohandelia \N \N \N \N \N 78955 \N genus Oresbia \N \N \N \N \N 78956 A.setosa Arundinella Arundinella setosa \N \N \N \N \N 78957 C.williamsii Carex Carex williamsii \N \N \N \N \N 78958 L.rodriguezii Lithospermum Lithospermum rodriguezii \N \N \N \N \N 78959 C.atropurpurea Chlorospatha Chlorospatha atropurpurea \N \N \N \N \N 78960 B.tenuifolia Bufonia Bufonia tenuifolia \N \N \N \N \N 78961 L.porphyrodiscus Leiotulus Leiotulus porphyrodiscus \N \N \N \N \N 78962 L.dorotheae Lithops Lithops dorotheae \N \N \N \N \N 78963 \N genus Vetiveria \N \N \N \N \N 78964 \N subspecies Allium platyspathum subsp. amblyophyllum \N \N \N \N \N 78965 M.sample environmental samples Taxonomy:438339 Morus environmental sample \N \N \N \N \N 78966 S.pterosperma Schweinfurthia Schweinfurthia pterosperma \N \N \N \N \N 78967 C.bonplandianus Croton Croton bonplandianus \N \N \N \N \N 78968 C.CSB-2008 Chlorophytum Chlorophytum sp. CSB-2008 \N \N \N \N \N 78969 P.illinoensis Potamogeton Potamogeton illinoensis \N \N \N \N \N 78970 C.arida Cousinia Cousinia arida \N \N \N \N \N 78971 D.roxburghii Drypetes Drypetes roxburghii \N \N \N \N \N 78972 \N genus Ivesia \N \N \N \N \N 78973 \N genus Vatica \N \N \N \N \N 78974 R.carinthiacus Ranunculus Ranunculus carinthiacus \N \N \N \N \N 78975 S.exasperata Stapeliopsis Stapeliopsis exasperata \N \N \N \N \N 78976 \N genus Semenovia \N \N \N \N \N 78977 S.henryi Schizomussaenda Schizomussaenda henryi \N \N \N \N \N 78978 \N subspecies Bidens micrantha subsp. ctenophylla \N \N \N \N \N 78979 T.aethusae Trepocarpus Trepocarpus aethusae \N \N \N \N \N 78980 M.clusiifolia Melicope Melicope clusiifolia \N \N \N \N \N 78981 V.corymbosum Vaccinium Vaccinium angustifolium x Vaccinium corymbosum \N \N \N \N \N 78982 \N varietas Senna pendula var. glabrata \N \N \N \N \N 78983 L.pindica Luzula Luzula pindica \N \N \N \N \N 78984 P.argentea Pentaschistis Pentameris argentea \N \N \N \N \N 78985 S.asbukinii Saussurea Saussurea asbukinii \N \N \N \N \N 78986 A.pojarkoviae Andrachne Andrachne pojarkoviae \N \N \N \N \N 78987 M.NSW893165 Monotoca Monotoca sp. NSW893165 \N \N \N \N \N 78988 L.parryi Lilium Lilium parryi \N \N \N \N \N 78989 P.sikkimense Podophyllum Podophyllum sikkimense \N \N \N \N \N 78990 \N genus Vaughania \N \N \N \N \N 78991 M.goyozanensis Menziesia Menziesia goyozanensis \N \N \N \N \N 78992 \N tribe Inuleae \N \N \N \N \N 78993 S.aberrans Smilax Smilax aberrans \N \N \N \N \N 78994 C.buchneri Clerodendrum Clerodendrum buchneri \N \N \N \N \N 78995 I.laevis Isertia Isertia laevis \N \N \N \N \N 78996 B.malacophylla Bursera Bursera malacophylla \N \N \N \N \N 78997 R.parviflora Rulingia Rulingia parviflora \N \N \N \N \N 78998 \N genus Schumanniophyton \N \N \N \N \N 78999 I.sertulifera Inga Inga sertulifera \N \N \N \N \N 79000 C.cyclocarpa Coreopsis Coreopsis cyclocarpa \N \N \N \N \N 79001 K.59 Kutchubaea Kutchubaea sp. Rodriguez 59 \N \N \N \N \N 79002 \N genus Heteropyxis \N \N \N \N \N 79003 J.corumbensis Jacaratia Jacaratia corumbensis \N \N \N \N \N 79004 D.teres Diodella Diodella teres \N \N \N \N \N 79005 A.ligulata Acacia Acacia ligulata \N \N \N \N \N 79007 M.picta Mammillaria Mammillaria picta \N \N \N \N \N 79008 O.radiata Onobrychis Onobrychis radiata \N \N \N \N \N 79009 Z.comptonii Zygogynum Zygogynum comptonii \N \N \N \N \N 79010 \N genus Purdiaea \N \N \N \N \N 79011 P.viscosa Piriqueta Piriqueta viscosa \N \N \N \N \N 79012 B.jamaicana Bactris Bactris jamaicana \N \N \N \N \N 79013 S.maritima Sagina Sagina maritima \N \N \N \N \N 79014 C.furfuracea Camellia Camellia furfuracea \N \N \N \N \N 79015 Z.southwellii Zieria Zieria southwellii \N \N \N \N \N 79016 \N genus Ceanothus \N \N \N \N \N 79017 R.oblongifolia Raspalia Raspalia oblongifolia \N \N \N \N \N 79018 \N genus Sedum \N \N \N \N \N 79019 P.itapuana Poecilanthe Poecilanthe itapuana \N \N \N \N \N 79020 \N genus Sheareria \N \N \N \N \N 79021 A.glandulosa Ahernia Ahernia glandulosa \N \N \N \N \N 79022 D.barbara Decumaria Decumaria barbara \N \N \N \N \N 79023 T.lepidosepala Tillandsia Tillandsia lepidosepala \N \N \N \N \N 79024 A.pyrenaica Achillea Achillea pyrenaica \N \N \N \N \N 79025 N.sanguinea Nepenthes Nepenthes sanguinea \N \N \N \N \N 79026 L.klaverensis Leipoldtia Leipoldtia klaverensis \N \N \N \N \N 79027 T.paraguayense Talinum Talinum paraguayense \N \N \N \N \N 79028 E.jimenezii Epidendrum Epidendrum jimenezii \N \N \N \N \N 79029 S.chloranthum Stenomesson Stenomesson chloranthum \N \N \N \N \N 79030 \N subspecies Cyclamen graecum subsp. graecum \N \N \N \N \N 79031 \N genus Pterocephalus \N \N \N \N \N 79032 \N genus Eriosolena \N \N \N \N \N 79033 A.finetianum Aconitum Aconitum finetianum \N \N \N \N \N 79034 C.saccensis Centaurea Centaurea saccensis \N \N \N \N \N 79035 E.nivulia Euphorbia Euphorbia nivulia \N \N \N \N \N 79036 \N family Combretaceae Indian almond family \N \N \N \N 79037 B.syriaca Bryonia Bryonia syriaca \N \N \N \N \N 79038 \N genus Polymita \N \N \N \N \N 79039 R.sinuata Rhodiola Rhodiola sinuata \N \N \N \N \N 79040 A.brasiliensis Anisacanthus Anisacanthus brasiliensis \N \N \N \N \N 79041 J.ventricosa Jaltomata Jaltomata ventricosa \N \N \N \N \N 79042 G.6970 Gladiolus Gladiolus sp. Hahn 6970 \N \N \N \N \N 79043 S.philippianum Sisymbrium Sisymbrium philippianum \N \N \N \N \N 79044 L.roudairei Lotus Lotus roudairei \N \N \N \N \N 79045 U.quinquedentata Utricularia Utricularia quinquedentata \N \N \N \N \N 79046 A.sanbornii Allium Allium sanbornii \N \N \N \N \N 79047 \N genus Sophora \N \N \N \N \N 79048 L.cuspidata Leucaena Leucaena cuspidata \N \N \N \N \N 79049 C.0336 Costus Costus aff. wilsonii Kay 0336 \N \N \N \N \N 79050 \N genus Camellia \N \N \N \N \N 79051 S.indica Silene Silene indica \N \N \N \N \N 79052 \N varietas Dinebra retroflexa var. retroflexa \N \N \N \N \N 79053 A.maritima Artemisia Artemisia maritima \N \N \N \N \N 79054 S.grandifolia Stylosanthes Stylosanthes grandifolia \N \N \N \N \N 79055 S.tunicata Saussurea Saussurea tunicata \N \N \N \N \N 79056 \N genus Oxystelma \N \N \N \N \N 79057 T.obtusa Tapirira Tapirira obtusa \N \N \N \N \N 79058 \N genus Ramonda \N \N \N \N \N 79059 L.rupestris Lachnaea Lachnaea rupestris \N \N \N \N \N 79060 S.nipponicus Schoenoplectus Schoenoplectus nipponicus \N \N \N \N \N 79061 E.pterococca Euphorbia Euphorbia pterococca \N \N \N \N \N 79062 A.unedo Arbutus Arbutus unedo strawberry tree \N \N \N \N 79063 A.speciosa Aloe Aloe speciosa \N \N \N \N \N 79064 C.volckmanni Calceolaria Calceolaria volckmanni \N \N \N \N \N 79065 R.formosa Rustia Rustia formosa \N \N \N \N \N 79066 C.huegelii Cyrtostylis Cyrtostylis huegelii \N \N \N \N \N 79067 F.longispica Fimbristylis Fimbristylis longispica \N \N \N \N \N 79068 Q.amara Quassia Quassia amara quassia \N \N \N \N 79069 C.szechuense Cerastium Cerastium szechuense \N \N \N \N \N 79070 L.curvifolia Leiothrix Leiothrix curvifolia \N \N \N \N \N 79071 L.laciniata Lysipomia Lysipomia laciniata \N \N \N \N \N 79072 R.roxburghii Rosa Rosa roxburghii chestnut rose,chinquapin rose \N \N \N \N 79073 R.primula Rosa Rosa primula \N \N \N \N \N 79074 R.communis Ricinus Ricinus communis castor bean \N \N \N \N 79075 \N subspecies Neoalsomitra schefferiana subsp. podagrica \N \N \N \N \N 79076 L.chinensis Lobelia Lobelia chinensis \N \N \N \N \N 79077 L.nanayensis Leandra Leandra nanayensis \N \N \N \N \N 79078 S.heteromallum Sisymbrium Sisymbrium heteromallum \N \N \N \N \N 79079 G.yorkii Gilia Gilia yorkii \N \N \N \N \N 79080 A.fraasii Achillea Achillea fraasii \N \N \N \N \N 79081 \N genus Iphiona \N \N \N \N \N 79082 C.micrantha Cuphea Cuphea micrantha \N \N \N \N \N 79083 K.hastifolia Klasea Klasea hastifolia \N \N \N \N \N 79084 C.canterae Chloris Chloris canterae \N \N \N \N \N 79085 B.confusa Berlinia Berlinia confusa \N \N \N \N \N 79086 P.emoryi Psorothamnus Psorothamnus emoryi dyebush \N \N \N \N 79087 D.grandiflora Duabanga Duabanga grandiflora \N \N \N \N \N 79088 P.teres Papilionanthe Papilionanthe teres \N \N \N \N \N 79089 D.thadhowardii Dandya Dandya thadhowardii \N \N \N \N \N 79090 \N varietas Festuca nevadensis var. nevadensis \N \N \N \N \N 79091 O.calycophylla Otiophora Otiophora calycophylla \N \N \N \N \N 79092 P.cerasus Prunus Prunus canescens x Prunus cerasus \N \N \N \N \N 79093 L.plumbea Lundinia Lundinia plumbea \N \N \N \N \N 79094 A.bulbifer Amorphophallus Amorphophallus bulbifer \N \N \N \N \N 79095 \N genus Antiphytum \N \N \N \N \N 79096 M.torta Masdevallia Masdevallia torta \N \N \N \N \N 79097 F.trichodes Ficinia Ficinia trichodes \N \N \N \N \N 79098 A.caspicus Astragalus Astragalus caspicus \N \N \N \N \N 79099 S.colorata Silene Silene colorata \N \N \N \N \N 79100 \N genus Nectaropetalum \N \N \N \N \N 79101 C.crassipedicellatum Cynanchum Cynanchum crassipedicellatum \N \N \N \N \N 79102 \N subspecies Eucalyptus ebbanoensis subsp. glauciramula \N \N \N \N \N 79103 B.vulgaris Bambusa Bambusa vulgaris \N \N \N \N \N 79104 M.junceum Miscanthidium Miscanthidium junceum \N \N \N \N \N 79105 I.daleoides Indigofera Indigofera daleoides \N \N \N \N \N 79106 L.urticifolia Lantana Lantana urticifolia \N \N \N \N \N 79107 S.africana Sauvagesia Sauvagesia africana \N \N \N \N \N 79108 D.chamaethamnus Diospyros Diospyros chamaethamnus \N \N \N \N \N 79109 E.polystachya Eysenhardtia Eysenhardtia polystachya \N \N \N \N \N 79110 \N genus Barleria \N \N \N \N \N 79111 Z.balansae Zygogynum Zygogynum balansae \N \N \N \N \N 79112 X.inapertum Xeranthemum Xeranthemum inapertum \N \N \N \N \N 79113 C.attenuata Castilleja Castilleja attenuata \N \N \N \N \N 79114 A.triflora Archytaea Archytaea triflora \N \N \N \N \N 79115 M.tagetina Machaeranthera Machaeranthera tagetina \N \N \N \N \N 79116 C.portoricensis Crescentia Crescentia portoricensis higuero de sierra \N \N \N \N 79117 H.demissum Hyalosperma Hyalosperma demissum \N \N \N \N \N 79118 E.lasiandra Encephalosphaera Encephalosphaera lasiandra \N \N \N \N \N 79119 C.hexandra Cyathocoma Cyathocoma hexandra \N \N \N \N \N 79120 Z.lunata Zygostates Zygostates lunata \N \N \N \N \N 79121 A.stokoei Amphithalea Amphithalea stokoei \N \N \N \N \N 79122 E.atrovinosa Erica Erica atrovinosa \N \N \N \N \N 79123 M.s.n. Mucuna Mucuna sp. Doyle et al. s.n. \N \N \N \N \N 79124 E.lata Euphorbia Euphorbia lata \N \N \N \N \N 79125 E.benthamiana Erica Erica benthamiana \N \N \N \N \N 79126 M.secundum Monotagma Monotagma secundum \N \N \N \N \N 79127 \N genus Asphodeline \N \N \N \N \N 79128 C.gharbensis Convolvulus Convolvulus gharbensis \N \N \N \N \N 79129 H.fauriei Hypericum Hypericum fauriei \N \N \N \N \N 79130 B.AA873 Byttneria Byttneria sp. C Ambriansyah et al. AA873 \N \N \N \N \N 79131 D.pseudomespilus Diospyros Diospyros pseudomespilus \N \N \N \N \N 79132 \N genus Bejaria \N \N \N \N \N 79133 L.aphylla Leptomeria Leptomeria aphylla \N \N \N \N \N 79134 P.hainanensis Polyspora Polyspora hainanensis \N \N \N \N \N 79135 P.cucullata Pterostylis Pterostylis cucullata \N \N \N \N \N 79136 \N genus Cunila \N \N \N \N \N 79137 A.subglauca Aotus Aotus subglauca \N \N \N \N \N 79138 X.bicephala Xyris Xyris bicephala \N \N \N \N \N 79139 B.intermedia Boerhavia Boerhavia intermedia \N \N \N \N \N 79140 \N genus Craterispermum \N \N \N \N \N 79141 B.caespitosus Brachyclados Brachyclados caespitosus \N \N \N \N \N 79142 G.cinerascens Genista Genista cinerascens \N \N \N \N \N 79143 D.caerulea Deinanthe Deinanthe caerulea \N \N \N \N \N 79144 G.punctatum Gastrolobium Gastrolobium punctatum \N \N \N \N \N 79145 A.breweri Angelica Angelica breweri \N \N \N \N \N 79146 B.americanum Bupleurum Bupleurum americanum \N \N \N \N \N 79147 H.bermejoi Helosciadium Helosciadium bermejoi \N \N \N \N \N 79148 A.montanum Arthrophyllum Arthrophyllum montanum \N \N \N \N \N 79149 A.coronilla Astragalus Astragalus coronilla \N \N \N \N \N 79150 I.densiflora Inga Inga densiflora \N \N \N \N \N 79151 D.racemosa Diphysa Diphysa racemosa \N \N \N \N \N 79152 P.panamense Protium Protium panamense \N \N \N \N \N 79153 C.rupestris Calothamnus Calothamnus rupestris \N \N \N \N \N 79154 S.chinensis Siphonostegia Siphonostegia chinensis \N \N \N \N \N 79155 \N varietas Adonis aestivalis var. palaestina \N \N \N \N \N 79156 \N genus Ancylobothrys \N \N \N \N \N 79157 \N varietas Solanum citrullifolium var. setigerum \N \N \N \N \N 79158 P.javanica Picrasma Picrasma javanica \N \N \N \N \N 79159 C.angusta Callicarpa Callicarpa angusta \N \N \N \N \N 79160 A.setifolium Allium Allium setifolium \N \N \N \N \N 79161 N.cultivar Nolana Nolana hybrid cultivar \N \N \N \N \N 79162 \N genus Buforrestia \N \N \N \N \N 79163 M.multifida Monsonia Monsonia multifida \N \N \N \N \N 79164 \N subspecies Corymbia watsoniana subsp. watsoniana \N \N \N \N \N 79165 S.wrightii Strobilopsis Strobilopsis wrightii \N \N \N \N \N 79166 H.tenuifolia Haloragis Haloragis tenuifolia \N \N \N \N \N 79167 A.jucunda Aloe Aloe jucunda \N \N \N \N \N 79168 E.marginata Eucalyptus Eucalyptus marginata \N \N \N \N \N 79169 P.harry-smithii Peucedanum Peucedanum harry-smithii \N \N \N \N \N 79170 \N subspecies Passiflora lobbii subsp. ayaucuchoensis \N \N \N \N \N 79171 H.rolfeana Habenaria Habenaria rolfeana \N \N \N \N \N 79172 M.longifolia Meriania Meriania longifolia \N \N \N \N \N 79173 T.cucumeroides Trichosanthes Trichosanthes cucumeroides \N \N \N \N \N 79174 \N varietas Eleocharis compressa var. acutisquamata \N \N \N \N \N 79175 C.juniperinum Coleonema Coleonema juniperinum \N \N \N \N \N 79176 P.longispicata Peperomia Peperomia longispicata \N \N \N \N \N 79177 A.ponticum Agropyron Agropyron ponticum \N \N \N \N \N 79178 A.inflatum Asarum Asarum inflatum \N \N \N \N \N 79179 \N varietas Maxillaria heterophylla var. acicularifolia \N \N \N \N \N 79180 O.linifolia Oligomeris Oligomeris linifolia \N \N \N \N \N 79181 M.pauhoi Machilus Machilus pauhoi \N \N \N \N \N 79182 B.attenuata Banksia Banksia attenuata \N \N \N \N \N 79183 P.comosa Physoplexis Physoplexis comosa \N \N \N \N \N 79184 V.clemensae Viburnum Viburnum clemensae \N \N \N \N \N 79185 C.suaveolens Cyrtanthus Cyrtanthus suaveolens \N \N \N \N \N 79186 M.wrightii Mammillaria Mammillaria wrightii \N \N \N \N \N 79187 P.longituba Polyxena Polyxena longituba \N \N \N \N \N 79188 \N subtribe Dypsidinae \N \N \N \N \N 79189 A.septicidalis Arachnothryx Arachnothryx septicidalis \N \N \N \N \N 79190 V.flexuosa Vitis Vitis flexuosa \N \N \N \N \N 79191 \N genus Hunga \N \N \N \N \N 79192 \N no rank Apocynaceae incertae sedis \N \N \N \N \N 79193 T.hemsleyanum Tetrastigma Tetrastigma hemsleyanum \N \N \N \N \N 79194 T.chilense x Tritordeum Triticum turgidum subsp. durum x Hordeum chilense \N \N \N \N \N 79195 E.giganteum Echium Echium giganteum \N \N \N \N \N 79196 T.spicata Thymbra Thymbra spicata \N \N \N \N \N 79197 P.viridis Pabstia Pabstia viridis \N \N \N \N \N 79198 M.integrifolia Micranthes Micranthes integrifolia \N \N \N \N \N 79199 H.madagascariensis Humbertia Humbertia madagascariensis \N \N \N \N \N 79200 A.ramosissima Austrostipa Austrostipa ramosissima \N \N \N \N \N 79201 A.magnificum Amydrium Amydrium magnificum \N \N \N \N \N 79202 T.piperita Tasmannia Tasmannia piperita \N \N \N \N \N 79203 C.graminifolia Chamaedorea Chamaedorea graminifolia \N \N \N \N \N 79204 \N subspecies Melinis repens subsp. repens \N \N \N \N \N 79205 O.kuzinskyanae Omphalodes Omphalodes kuzinskyanae \N \N \N \N \N 79206 P.biglandulosa Parkia Parkia biglandulosa \N \N \N \N \N 79207 H.arborea Hedycarya Hedycarya arborea \N \N \N \N \N 79208 T.nodiflora Trochiscanthes Trochiscanthes nodiflora \N \N \N \N \N 79209 E.chionophila Erica Erica chionophila \N \N \N \N \N 79210 \N varietas Echinochloa crus-galli var. crus-galli \N \N \N \N \N 79211 L.emarginatus Lonchocarpus Lonchocarpus emarginatus \N \N \N \N \N 79212 A.wrightii Acleisanthes Acleisanthes wrightii \N \N \N \N \N 79213 H.tiliifolium Heracleum Heracleum tiliifolium \N \N \N \N \N 79214 C.glastifolia Centaurea Centaurea glastifolia \N \N \N \N \N 79215 \N no rank Cattleya bicolor 'Diamantina' \N \N \N \N \N 79216 F.texana Froelichia Froelichia texana \N \N \N \N \N 79217 P.monadelpha Passiflora Passiflora monadelpha \N \N \N \N \N 79218 P.macrochaetum Pennisetum Pennisetum macrochaetum \N \N \N \N \N 79219 C.tournefortii Crocus Crocus tournefortii \N \N \N \N \N 79220 T.gabonensis Trichostephanus Trichostephanus gabonensis \N \N \N \N \N 79221 E.owerinianus Edraianthus Edraianthus owerinianus \N \N \N \N \N 79222 T.wormskioldii Trifolium Trifolium wormskioldii cow clover,seaside clover \N \N \N \N 79223 R.hypoleuca Rhus Rhus hypoleuca \N \N \N \N \N 79224 A.cana Artemisia Artemisia cana silver sagebrush \N \N \N \N 79225 D.bicolor Dendropemon Dendropemon bicolor \N \N \N \N \N 79226 \N genus Chondropetalum \N \N \N \N \N 79227 L.grandiflora Lachnaea Lachnaea grandiflora \N \N \N \N \N 79228 S.albiflora Sanguisorba Sanguisorba albiflora \N \N \N \N \N 79229 P.pilosa Phlox Phlox pilosa \N \N \N \N \N 79230 I.cumulicola Ilex Ilex cumulicola \N \N \N \N \N 79231 P.australis Parrya Parrya australis \N \N \N \N \N 79232 P.vernalis Pterostylis Pterostylis vernalis \N \N \N \N \N 79233 A.carletonii Abronia Abronia carletonii \N \N \N \N \N 79234 E.sessilifolium Eupatorium Eupatorium sessilifolium \N \N \N \N \N 79235 P.MAC-2002 Pterostylis Pterostylis aff. barbata MAC-2002 \N \N \N \N \N 79236 H.darjeelingense Herpetospermum Herpetospermum darjeelingense \N \N \N \N \N 79237 N.clivicola Nolana Nolana clivicola \N \N \N \N \N 79238 O.megasperma Opuntia Opuntia megasperma \N \N \N \N \N 79239 A.alaskanum Aconogonon Aconogonon alaskanum \N \N \N \N \N 79240 O.tristis Ocotea Ocotea tristis \N \N \N \N \N 79241 P.crocyllis Plocama Plocama crocyllis \N \N \N \N \N 79242 D.glandulosa Disa Disa glandulosa \N \N \N \N \N 79243 P.myrtillifolia Podalyria Podalyria myrtillifolia \N \N \N \N \N 79244 D.mananjarensis Dypsis Dypsis mananjarensis \N \N \N \N \N 79245 P.rubrum Protium Protium rubrum \N \N \N \N \N 79246 \N subspecies Dactylorhiza incarnata subsp. pulchella \N \N \N \N \N 79247 C.cerinus Croton Croton cerinus \N \N \N \N \N 79248 V.merrillii Vanda Vanda merrillii \N \N \N \N \N 79249 S.reticularis Scleria Scleria reticularis \N \N \N \N \N 79250 \N genus Myrialepis \N \N \N \N \N 79251 C.X Coffea Coffea sp. X \N \N \N \N \N 79252 \N genus Leidesia \N \N \N \N \N 79253 F.simensis Festuca Festuca simensis \N \N \N \N \N 79254 M.globosa Magnolia Magnolia globosa \N \N \N \N \N 79255 E.umbellatus Echites Echites umbellatus \N \N \N \N \N 79256 I.percrenata Impatiens Impatiens percrenata \N \N \N \N \N 79257 P.pinoides Pityphyllum Pityphyllum pinoides \N \N \N \N \N 79258 T.cordata Telosma Telosma cordata \N \N \N \N \N 79259 H.santanae Heterotaxis Heterotaxis santanae \N \N \N \N \N 79260 C.lanata Cousinia Cousinia lanata \N \N \N \N \N 79261 P.hainanense Phrynium Phrynium hainanense \N \N \N \N \N 79262 S.mexicana Suaeda Suaeda mexicana \N \N \N \N \N 79263 P.wightiana Parnassia Parnassia wightiana \N \N \N \N \N 79264 \N varietas Aloe somaliensis var. somaliensis \N \N \N \N \N 79265 V.biloba Veronica Veronica biloba \N \N \N \N \N 79266 \N subspecies Ceropegia radicans subsp. smithii \N \N \N \N \N 79267 N.watsonii Neonicholsonia Neonicholsonia watsonii \N \N \N \N \N 79268 P.decorissima Pedicularis Pedicularis decorissima \N \N \N \N \N 79269 D.stenostachys Dactylocladus Dactylocladus stenostachys \N \N \N \N \N 79270 \N genus Trochomeriopsis \N \N \N \N \N 79271 S.viridiflorus Sapranthus Sapranthus viridiflorus \N \N \N \N \N 79272 D.canaliculatum Dendrobium Dendrobium canaliculatum \N \N \N \N \N 79273 O.socotranus Ochradenus Ochradenus socotranus \N \N \N \N \N 79274 S.fulgens Salvia Salvia fulgens \N \N \N \N \N 79275 D.crassipes Dianthus Dianthus crassipes \N \N \N \N \N 79276 \N genus Pygeum \N \N \N \N \N 79277 A.pachycarpa Acacia Acacia pachycarpa \N \N \N \N \N 79278 A.sempervirens Aristolochia Aristolochia sempervirens \N \N \N \N \N 79279 E.confusa Euphrasia Euphrasia confusa \N \N \N \N \N 79280 W.rugosa Willdenowia Willdenowia rugosa \N \N \N \N \N 79281 \N subspecies Mimulus aurantiacus subsp. aurantiacus \N \N \N \N \N 79282 T.562 unclassified Taraxacum Taraxacum (sect. Boreigena) sp. 562 \N \N \N \N \N 79283 P.ellipticus Phialanthus Phialanthus ellipticus \N \N \N \N \N 79284 J.ceratophylla Jenmaniella Jenmaniella ceratophylla \N \N \N \N \N 79285 P.forestierae Phoradendron Phoradendron forestierae \N \N \N \N \N 79286 \N varietas Globba atrosanguinea var. sumatrana \N \N \N \N \N 79287 A.hirta Adinandra Adinandra hirta \N \N \N \N \N 79288 M.reflexa Mentzelia Mentzelia reflexa \N \N \N \N \N 79289 \N subspecies Malacothrix foliosa subsp. foliosa \N \N \N \N \N 79290 \N genus Neoharmsia \N \N \N \N \N 79291 \N subspecies Campanula spatulata subsp. filicaulis \N \N \N \N \N 79292 M.karwinskii Mandevilla Mandevilla karwinskii \N \N \N \N \N 79293 D.lacustris Deyeuxia Deyeuxia lacustris \N \N \N \N \N 79294 K.406 Kunzea Kunzea sp. D Johnstone 406 \N \N \N \N \N 79295 T.nevadense Thlaspi Thlaspi nevadense \N \N \N \N \N 79296 B.sonorae Briquetia Briquetia sonorae \N \N \N \N \N 79297 E.gramineum Eryngium Eryngium gramineum \N \N \N \N \N 79298 S.pinifolia Seegeriella Seegeriella pinifolia \N \N \N \N \N 79299 S.multivenosum Solanum Solanum multivenosum \N \N \N \N \N 79300 \N no rank Saccharum hybrid cultivar CoS 767 \N \N \N \N \N 79301 \N genus Pseudarthria \N \N \N \N \N 79302 H.eremophila Hypochaeris Hypochaeris eremophila \N \N \N \N \N 79303 F.casapiensis Ficus Ficus casapiensis \N \N \N \N \N 79304 \N genus Chelyocarpus \N \N \N \N \N 79305 M.rosii Mukdenia Mukdenia rosii \N \N \N \N \N 79306 D.genistifolia Daviesia Daviesia genistifolia \N \N \N \N \N 79307 P.vitellina Prosthechea Prosthechea vitellina \N \N \N \N \N 79308 P.ciccoides Phyllanthus Phyllanthus ciccoides \N \N \N \N \N 79309 S.crenata Spiraea Spiraea crenata \N \N \N \N \N 79310 S.elatior Sinningia Sinningia elatior \N \N \N \N \N 79311 \N subspecies Anthyllis vulneraria subsp. arundana \N \N \N \N \N 79312 C.alpina Cerinthe Cerinthe alpina \N \N \N \N \N 79313 S.arvensis Sherardia Sherardia arvensis \N \N \N \N \N 79314 S.stellulata Siparuna Siparuna stellulata \N \N \N \N \N 79315 T.incisa Trapa Trapa incisa \N \N \N \N \N 79316 M.LP19 Micromeria Micromeria cf. herpyllomorpha Heubl LP19 \N \N \N \N \N 79317 S.majus Sideroxylon Sideroxylon majus \N \N \N \N \N 79318 \N genus Wangenheimia \N \N \N \N \N 79319 \N varietas Osmanthus marginatus var. longissimus \N \N \N \N \N 79320 Z.korovinii Zosima Zosima korovinii \N \N \N \N \N 79321 \N genus Ottochloa \N \N \N \N \N 79322 P.pulcher Phyllanthus Phyllanthus pulcher \N \N \N \N \N 79323 M.macropus Masdevallia Masdevallia macropus \N \N \N \N \N 79324 S.sinense Saccharum officinarum complex Saccharum sinense Chinese cane,zhongguo zhong \N \N \N \N 79325 H.merrillii Hoya Hoya merrillii \N \N \N \N \N 79326 L.parviflora Licuala Licuala parviflora \N \N \N \N \N 79327 T.virgata Tetratheca Tetratheca virgata \N \N \N \N \N 79328 \N genus Leptosolena \N \N \N \N \N 79329 \N subspecies Chionochloa conspicua subsp. cunninghamii \N \N \N \N \N 79330 \N genus Meionectes \N \N \N \N \N 79331 T.pinbianense Tripterospermum Tripterospermum pinbianense \N \N \N \N \N 79332 P.adangensis Pinanga Pinanga adangensis \N \N \N \N \N 79333 A.acida Ambelania Ambelania acida \N \N \N \N \N 79334 A.brassicoides Aechmea Aechmea brassicoides \N \N \N \N \N 79335 O.speciosus Oxyanthus Oxyanthus speciosus \N \N \N \N \N 79336 C.argyrosperma Cucurbita Cucurbita argyrosperma \N \N \N \N \N 79337 B.nevinii Berberis Berberis nevinii \N \N \N \N \N 79338 H.amarum Helenium Helenium amarum \N \N \N \N \N 79339 S.humile Solanum Solanum humile \N \N \N \N \N 79340 H.allenii Hasseltia Hasseltia allenii \N \N \N \N \N 79341 S.2619 Steudnera Steudnera cf. discolor. Bogner 2619 \N \N \N \N \N 79342 L.integrifolia Lipochaeta Lipochaeta integrifolia \N \N \N \N \N 79343 \N varietas Bupleurum canescens var. handiense \N \N \N \N \N 79344 M.lilacina Moraea Moraea lilacina \N \N \N \N \N 79345 T.ambigua Thelypodiopsis Thelypodiopsis ambigua \N \N \N \N \N 79346 M.spectabilis Malus Malus spectabilis Chinese flowering crabapple \N \N \N \N 79347 C.blandum Cynanchum Cynanchum blandum \N \N \N \N \N 79348 F.hamatacanthus Ferocactus Ferocactus hamatacanthus \N \N \N \N \N 79349 R.steyermarkii Ruellia Ruellia steyermarkii \N \N \N \N \N 79350 O.grandiflora Ochrosia Ochrosia grandiflora \N \N \N \N \N 79351 T.undulata Tecomella Tecomella undulata \N \N \N \N \N 79352 E.decipiens Euphorbia Euphorbia decipiens \N \N \N \N \N 79353 O.arnacantha Onobrychis Onobrychis arnacantha \N \N \N \N \N 79354 A.occidentale Anacardium Anacardium occidentale cashew,maranon \N \N \N \N 79355 B.carassense Bulbophyllum Bulbophyllum carassense \N \N \N \N \N 79356 A.arnhemica Asteromyrtus Asteromyrtus arnhemica \N \N \N \N \N 79357 S.involucrata Saussurea Saussurea involucrata \N \N \N \N \N 79358 \N subspecies Dichromanthus cinnabarinus subsp. cinnabarinus \N \N \N \N \N 79359 D.graomogolensis Drosera Drosera graomogolensis \N \N \N \N \N 79360 S.varius Scirpus Scirpus varius \N \N \N \N \N 79361 C.SAT-2011a Ceropegia Ceropegia sp. SAT-2011a \N \N \N \N \N 79362 V.copallifera Vateria Vateria copallifera \N \N \N \N \N 79363 V.lobelianum Veratrum Veratrum lobelianum \N \N \N \N \N 79364 C.90-12 Cuscuta Cuscuta sp. RGO 90-12 \N \N \N \N \N 79365 S.rubra Sextonia Sextonia rubra \N \N \N \N \N 79366 M.elegans Monadenium Monadenium elegans \N \N \N \N \N 79367 A.tenellus Astragalus Astragalus tenellus \N \N \N \N \N 79368 N.spinosa Nylandtia Nylandtia spinosa \N \N \N \N \N 79369 \N genus Holmgrenanthe \N \N \N \N \N 79370 \N genus Gerritea \N \N \N \N \N 79371 A.kujukense Allium Allium kujukense \N \N \N \N \N 79372 C.boiteaui Croton Croton boiteaui \N \N \N \N \N 79373 T.imbricata Triplarina Triplarina imbricata \N \N \N \N \N 79374 P.vaniotii Paris Paris vaniotii \N \N \N \N \N 79376 F.71 Fraxinus Fraxinus sp. 71 \N \N \N \N \N 79377 E.trilobatus Eriolobus Eriolobus trilobatus \N \N \N \N \N 79378 C.sintenisii Cistus Cistus sintenisii \N \N \N \N \N 79379 P.malvifolia Palaua Palaua malvifolia \N \N \N \N \N 79380 T.MVSP-2007 Trigonia Trigonia sp. MVSP-2007 \N \N \N \N \N 79381 E.mamillosa Echinopsis Echinopsis mamillosa \N \N \N \N \N 79382 C.ericoides Calceolaria Calceolaria ericoides \N \N \N \N \N 79383 A.leucoblepharum Aeonium Aeonium leucoblepharum \N \N \N \N \N 79384 X.confertifolia Xylorhiza Xylorhiza confertifolia \N \N \N \N \N 79385 A.ovalifolia Aristolochia Aristolochia ovalifolia \N \N \N \N \N 79386 I.353 Iochroma Iochroma sp. Smith 353 \N \N \N \N \N 79387 A.RBGE Altingia Altingia sp. RBGE \N \N \N \N \N 79388 \N varietas Artemisia borealis var. mertensii \N \N \N \N \N 79389 H.jahandiezii Helictotrichon Helictotrichon jahandiezii \N \N \N \N \N 79390 E.graminea Eulophia Eulophia graminea \N \N \N \N \N 79391 L.beccarianus Lithocarpus Lithocarpus beccarianus \N \N \N \N \N 79392 A.macdonaldiana Arabis Arabis macdonaldiana \N \N \N \N \N 79393 \N family Lowiaceae \N \N \N \N \N 79394 C.umbellatum Clerodendrum Clerodendrum umbellatum \N \N \N \N \N 79395 \N varietas Senecio triodon var. triodon \N \N \N \N \N 79396 H.2556 Hiptage Hiptage sp. Middleton 2556 \N \N \N \N \N 79397 \N subspecies Acer stachyophyllum subsp. stachyophyllum \N \N \N \N \N 79398 \N genus Discladium \N \N \N \N \N 79399 B.domingensis Banara Banara domingensis \N \N \N \N \N 79400 H.gaudichaudiana Heterosmilax Heterosmilax gaudichaudiana \N \N \N \N \N 79401 C.natalitium Cynanchum Cynanchum natalitium \N \N \N \N \N 79402 B.holboellii Boechera Boechera holboellii \N \N \N \N \N 79403 D.megaphyllus Didymocarpus Didymocarpus megaphyllus \N \N \N \N \N 79404 C.ternaria Carex Carex ternaria \N \N \N \N \N 79405 A.arachnoidea Athrixia Athrixia arachnoidea \N \N \N \N \N 79406 T.arborea Taeckholmia Taeckholmia arborea \N \N \N \N \N 79407 \N varietas Toxicodendron hookeri var. microcarpum \N \N \N \N \N 79408 E.petraea Eustachys Eustachys petraea \N \N \N \N \N 79409 P.perenne Polycnemum Polycnemum perenne \N \N \N \N \N 79410 R.takesimensis Rubus Rubus takesimensis \N \N \N \N \N 79411 S.pubiger Senecio Senecio pubiger \N \N \N \N \N 79412 C.710 Cupaniopsis Cupaniopsis sp. Munzinger 710 \N \N \N \N \N 79413 T.anguina Trigonella Trigonella anguina \N \N \N \N \N 79414 P.spondiocarpus Poupartiopsis Poupartiopsis spondiocarpus \N \N \N \N \N 79415 S.tenella Scaphyglottis Scaphyglottis tenella \N \N \N \N \N 79416 O.umbrosa Olimarabidopsis Olimarabidopsis umbrosa \N \N \N \N \N 79417 H.sparsiflora Hesperevax Hesperevax sparsiflora \N \N \N \N \N 79418 S.JK-2009 Sebaea Sebaea cf. rotundifolia JK-2009 \N \N \N \N \N 79419 S.retorta Stipa Stipa retorta \N \N \N \N \N 79420 A.robbinsii Astragalus Astragalus robbinsii \N \N \N \N \N 79421 S.pseudohookeri Swertia Swertia aff. pseudohookeri \N \N \N \N \N 79422 G.coriacea Galatella Galatella coriacea \N \N \N \N \N 79423 \N tribe Bignonieae \N \N \N \N \N 79424 C.sphacelatus Cyperus Cyperus sphacelatus \N \N \N \N \N 79425 \N no rank Saccharum hybrid cultivar SP70-1143 \N \N \N \N \N 79426 H.scandens Hypselodelphys Hypselodelphys scandens \N \N \N \N \N 79427 D.traunsteineri Dactylorhiza Dactylorhiza traunsteineri \N \N \N \N \N 79428 D.bryoides Dionysia Dionysia bryoides \N \N \N \N \N 79429 T.peltata Tambourissa Tambourissa peltata \N \N \N \N \N 79430 O.supthutii Orthophytum Orthophytum supthutii \N \N \N \N \N 79431 A.PS2010MT01 Aconitum Aconitum sp. PS2010MT01 \N \N \N \N \N 79432 M.villosa Macrostylis Macrostylis villosa \N \N \N \N \N 79433 C.atahualpae Calceolaria Calceolaria atahualpae \N \N \N \N \N 79434 P.gharbiana Pyrus Pyrus gharbiana \N \N \N \N \N 79435 \N subspecies Armeria bigerrensis subsp. bigerrensis \N \N \N \N \N 79436 U.neottioides Utricularia Utricularia neottioides \N \N \N \N \N 79437 T.cyathiferum Trifolium Trifolium cyathiferum \N \N \N \N \N 79438 P.4037 Prismatomeris Prismatomeris sp. 2 Davis 4037 \N \N \N \N \N 79439 G.campestris Gentianella Gentianella campestris \N \N \N \N \N 79440 A.SH-2010 Aphanamixis Aphanamixis sp. SH-2010 \N \N \N \N \N 79441 A.ericoides Arcytophyllum Arcytophyllum ericoides \N \N \N \N \N 79442 V.hederifolia Veronica Veronica hederifolia ivyleaf speedwell,small henbit \N \N \N \N 79443 T.modesta Traubia Traubia modesta \N \N \N \N \N 79444 S.thymifolium Spyridium Spyridium thymifolium \N \N \N \N \N 79445 P.grandiflora Platanthera Platanthera grandiflora \N \N \N \N \N 79446 S.glomerata Salaciopsis Salaciopsis glomerata \N \N \N \N \N 79447 B.polygonoides Begonia Begonia polygonoides \N \N \N \N \N 79448 C.crispum Corycium Corycium crispum \N \N \N \N \N 79449 \N genus Baliospermum \N \N \N \N \N 79450 V.rufidulum Viburnum Viburnum rufidulum blue haw,rusty nanny-berry,southern blackhaw \N \N \N \N 79451 B.rotundifolia Besleria Besleria rotundifolia \N \N \N \N \N 79452 S.caseolaris Sonneratia Sonneratia caseolaris \N \N \N \N \N 79453 R.uncinatus Ranunculus Ranunculus uncinatus \N \N \N \N \N 79454 P.gunnii Pseudopanax Pseudopanax gunnii \N \N \N \N \N 79455 S.trifasciata Sansevieria Sansevieria trifasciata mother-in-law's tongue,snake plant \N \N \N \N 79456 S.dshungarica Salsola Salsola dshungarica \N \N \N \N \N 79457 E.globosa Echidnopsis Echidnopsis globosa \N \N \N \N \N 79458 E.caducifolia Euphorbia Euphorbia caducifolia \N \N \N \N \N 79459 P.schottii Philodendron Philodendron schottii \N \N \N \N \N 79460 \N subspecies Metalasia divergens subsp. divergens \N \N \N \N \N 79461 M.delicatula Miconia Miconia delicatula \N \N \N \N \N 79462 F.glaucescens Festuca Festuca glaucescens \N \N \N \N \N 79463 C.carvi Carum Carum carvi \N \N \N \N \N 79464 C.exserta Castilleja Castilleja exserta \N \N \N \N \N 79465 S.primulifolius Streptocarpus Streptocarpus primulifolius \N \N \N \N \N 79466 E.concinnum Epilobium Epilobium concinnum \N \N \N \N \N 79467 A.listera Allium Allium listera \N \N \N \N \N 79468 V.lepidota Valeriana Valeriana lepidota \N \N \N \N \N 79469 A.pycnocephalus Astragalus Astragalus pycnocephalus \N \N \N \N \N 79470 C.dichotoma Campanula Campanula dichotoma \N \N \N \N \N 79471 L.rubra Leea Leea rubra \N \N \N \N \N 79472 D.odorata Dipteryx Dipteryx odorata cumaru,sarrapia,tonga-bean \N \N \N \N 79473 A.smithsonianus Amorphophallus Amorphophallus smithsonianus \N \N \N \N \N 79474 \N genus Glechon \N \N \N \N \N 79475 E.tuolumnense Erythronium Erythronium tuolumnense \N \N \N \N \N 79476 L.bainesii Lotononis Lotononis bainesii \N \N \N \N \N 79477 G.herniarioides Gomphocalyx Gomphocalyx herniarioides \N \N \N \N \N 79478 H.lusitanicum Helictotrichon Helictotrichon lusitanicum \N \N \N \N \N 79479 S.medians Solanum Solanum medians \N \N \N \N \N 79480 C.trichotomus Croton Croton trichotomus \N \N \N \N \N 79481 E.recurvatus Elaeocarpus Elaeocarpus recurvatus \N \N \N \N \N 79482 V.bifolia Vicia Vicia bifolia \N \N \N \N \N 79483 C.ilicifolia Cliffortia Cliffortia ilicifolia \N \N \N \N \N 79484 G.filiformis Gagea Gagea filiformis \N \N \N \N \N 79485 \N genus Leucactinia \N \N \N \N \N 79486 E.M069 Eriospermum Eriospermum sp. M069 \N \N \N \N \N 79487 G.tillianum Gymnocalycium Gymnocalycium tillianum \N \N \N \N \N 79488 \N varietas Ascocentrum ampullaceum var. aurantiacum \N \N \N \N \N 79489 S.macroptera Shorea Shorea macroptera \N \N \N \N \N 79490 P.arida Poa Poa arida \N \N \N \N \N 79491 \N genus Oxytropis \N \N \N \N \N 79492 \N genus Orthanthera \N \N \N \N \N 79493 C.compacta Calandrinia Calandrinia caespitosa x Calandrinia compacta \N \N \N \N \N 79494 C.incana Chaetanthera Chaetanthera incana \N \N \N \N \N 79495 H.tenue Haplophyllum Haplophyllum tenue \N \N \N \N \N 79496 S.erinaceus Sphaerocyperus Sphaerocyperus erinaceus \N \N \N \N \N 79497 \N tribe Putorieae \N \N \N \N \N 79498 P.repens Petrogenia Petrogenia repens \N \N \N \N \N 79499 P.stipulacea Prunus Prunus stipulacea \N \N \N \N \N 79500 \N varietas Craspedia uniflora var. uniflora \N \N \N \N \N 79501 C.cuspidata Chorizanthe Chorizanthe cuspidata \N \N \N \N \N 79502 P.flavescens Penstemon Penstemon flavescens high mountain penstemon \N \N \N \N 79503 L.caniflorus Leucaster Leucaster caniflorus \N \N \N \N \N 79504 C.jacobsiana Corymbia Corymbia jacobsiana \N \N \N \N \N 79505 \N genus Hemizonella \N \N \N \N \N 79506 P.lucuma Pouteria Pouteria lucuma \N \N \N \N \N 79507 S.2004-64b Salicornia Salicornia aff. europaea Yaprak 2004-64b \N \N \N \N \N 79508 \N family Araceae arum family \N \N \N \N 79509 D.leucophaea Digitalis Digitalis leucophaea \N \N \N \N \N 79510 T.tenuifolia Tillandsia Tillandsia tenuifolia \N \N \N \N \N 79511 A.alopecurus Acridocarpus Acridocarpus alopecurus \N \N \N \N \N 79512 L.fulviceps Lithops Lithops fulviceps \N \N \N \N \N 79513 P.betle Piper Piper betle \N \N \N \N \N 79514 N.glabrata Nepenthes Nepenthes glabrata \N \N \N \N \N 79515 G.lindeniana Gloxinella Gloxinella lindeniana \N \N \N \N \N 79516 P.adscendens Polypsecadium Polypsecadium adscendens \N \N \N \N \N 79517 E.aromatica Encyclia Encyclia aromatica \N \N \N \N \N 79518 D.glaberrima Dipyrena Dipyrena glaberrima \N \N \N \N \N 79519 C.macrocephala Centaurea Centaurea macrocephala \N \N \N \N \N 79520 B.elata Brownlowia Brownlowia elata \N \N \N \N \N 79521 P.pratensis Pulsatilla Pulsatilla pratensis \N \N \N \N \N 79522 C.micrantha Cariniana Cariniana micrantha \N \N \N \N \N 79523 C.trachyphyllaria Cousinia Cousinia trachyphyllaria \N \N \N \N \N 79524 \N genus Lophostemon \N \N \N \N \N 79525 E.dominans Erica Erica dominans \N \N \N \N \N 79526 A.vaviloviana Avena Avena vaviloviana \N \N \N \N \N 79527 \N genus Lasiospermum \N \N \N \N \N 79528 \N genus Tetrastigma \N \N \N \N \N 79529 \N genus Delilia \N \N \N \N \N 79530 R.villosa Rosa Rosa villosa apple rose \N \N \N \N 79531 B.liliputana Blossfeldia Blossfeldia liliputana \N \N \N \N \N 79532 R.rotundifolia Relhania Relhania rotundifolia \N \N \N \N \N 79533 \N genus Embreea \N \N \N \N \N 79534 A.monstrosa Aegiphila Aegiphila monstrosa \N \N \N \N \N 79535 H.741 Henriettella Henriettella aff. tovarensis Michelangeli 741 \N \N \N \N \N 79536 A.selengensis Artemisia Artemisia selengensis \N \N \N \N \N 79537 T.NW11 unclassified Taraxacum Taraxacum sp. NW11 \N \N \N \N \N 79538 D.biflora Drosera Drosera biflora \N \N \N \N \N 79539 M.integerrima Minuria Minuria integerrima \N \N \N \N \N 79540 M.476 Myriophyllum Myriophyllum sp. Moody 476 \N \N \N \N \N 79541 P.guianensis Pagamea Pagamea guianensis \N \N \N \N \N 79542 P.angustifolia Pimelea Pimelea angustifolia \N \N \N \N \N 79543 U.prehensilis Utricularia Utricularia prehensilis \N \N \N \N \N 79544 C.pancicii Cardamine Cardamine pancicii \N \N \N \N \N 79545 \N subspecies Crocus vernus subsp. albiflorus \N \N \N \N \N 79546 P.schwackeanum Panicum Panicum schwackeanum \N \N \N \N \N 79547 H.grandifolium Hypericum Hypericum grandifolium \N \N \N \N \N 79548 \N genus Santalum sandalwoods \N \N \N \N 79549 G.aspera Glycyrrhiza Glycyrrhiza aspera \N \N \N \N \N 79550 H.caprinum Himantoglossum Himantoglossum caprinum \N \N \N \N \N 79551 T.scirpeum Thinopyrum Thinopyrum scirpeum \N \N \N \N \N 79552 S.breve Satyrium Satyrium breve \N \N \N \N \N 79553 N.longispathus Narcissus Narcissus longispathus \N \N \N \N \N 79554 S.oligacanthum Solanum Solanum oligacanthum \N \N \N \N \N 79555 T.velickiana Tillandsia Tillandsia velickiana \N \N \N \N \N 79556 P.grandiflorum Pachyneurum Pachyneurum grandiflorum \N \N \N \N \N 79557 N.suberosa Nothoalsomitra Nothoalsomitra suberosa \N \N \N \N \N 79558 D.stenopetala Drosera Drosera stenopetala \N \N \N \N \N 79559 C.saxatile Coelopleurum Coelopleurum saxatile \N \N \N \N \N 79560 \N subspecies Pisum sativum subsp. elatius wild pea \N \N \N \N 79561 B.spatifolia Boechera Boechera spatifolia \N \N \N \N \N 79562 C.alternans Chamaedorea Chamaedorea alternans \N \N \N \N \N 79563 H.japonica Hylomecon Hylomecon japonica \N \N \N \N \N 79564 \N varietas Daphne kiusiana var. atrocaulis \N \N \N \N \N 79565 E.squamosa Elegia Elegia squamosa \N \N \N \N \N 79566 S.bourgaei Sedum Sedum bourgaei \N \N \N \N \N 79567 D.tatuhyensis Desmanthus Desmanthus tatuhyensis \N \N \N \N \N 79568 V.palmeri Valeriana Valeriana palmeri \N \N \N \N \N 79569 S.oppositifolia Saxifraga Saxifraga oppositifolia purple mountain saxifrage \N \N \N \N 79570 S.nigricans Stenaria Stenaria nigricans diamondflowers \N \N \N \N 79571 P.tenuifolium Pittosporum Pittosporum tenuifolium \N \N \N \N \N 79572 P.streptorhyncha Pedicularis Pedicularis streptorhyncha \N \N \N \N \N 79573 A.malabarica Aralia Aralia malabarica \N \N \N \N \N 79574 \N genus Pseudoscolopia \N \N \N \N \N 79575 P.heterophylla Packera Packera heterophylla \N \N \N \N \N 79576 C.tamdaoensis Camellia Camellia tamdaoensis \N \N \N \N \N 79577 A.filiformis Anagallis Anagallis filiformis \N \N \N \N \N 79578 H.rubicunda Hyaloseris Hyaloseris rubicunda \N \N \N \N \N 79579 P.nutans Pterostylis Pterostylis nutans \N \N \N \N \N 79580 C.calymega Comesperma Comesperma calymega \N \N \N \N \N 79581 L.3109 Lepidolopha Lepidolopha sp. Bremer 3109 \N \N \N \N \N 79582 \N varietas Berchemia polyphylla var. leioclada \N \N \N \N \N 79583 \N subspecies Glandora prostrata subsp. lusitanica \N \N \N \N \N 79584 S.falcata Secamone Secamone falcata \N \N \N \N \N 79585 \N varietas Bursera fagaroides var. fagaroides \N \N \N \N \N 79586 V.mangachapoi Vatica Vatica mangachapoi \N \N \N \N \N 79587 C.fraserianus Cymophyllus Cymophyllus fraserianus \N \N \N \N \N 79588 C.minuta Christensonella Christensonella minuta \N \N \N \N \N 79589 S.discolor Saussurea Saussurea discolor \N \N \N \N \N 79590 M.longistrobus Metarungia Metarungia longistrobus \N \N \N \N \N 79591 M.461 Mimosa Mimosa sp. Simon 461 \N \N \N \N \N 79592 C.umbrosum Clinopodium Clinopodium umbrosum \N \N \N \N \N 79593 N.adansonii Nolana Nolana adansonii \N \N \N \N \N 79594 \N varietas Lomatium grayi var. grayi \N \N \N \N \N 79595 K.arborescens Krascheninnikovia Krascheninnikovia arborescens \N \N \N \N \N 79596 M.sintenisii Matelea Matelea sintenisii \N \N \N \N \N 79597 A.macrostachya Aloysia Aloysia macrostachya \N \N \N \N \N 79598 \N genus Actinorhytis \N \N \N \N \N 79599 \N subspecies Helleborus viridis subsp. viridis \N \N \N \N \N 79600 D.polygonoides Disa Disa polygonoides \N \N \N \N \N 79601 A.sutepensis Aspidistra Aspidistra sutepensis \N \N \N \N \N 79602 A.sample environmental samples Taxonomy:1008271 Adenostoma environmental sample \N \N \N \N \N 79603 \N varietas Grindelia scabra var. scabra \N \N \N \N \N 79604 \N genus Osteospermum \N \N \N \N \N 79605 \N genus Gesnouinia \N \N \N \N \N 79606 C.prostrata Chaetanthera Chaetanthera prostrata \N \N \N \N \N 79607 S.intermedia Sinobambusa Sinobambusa intermedia \N \N \N \N \N 79608 \N genus Elytraria \N \N \N \N \N 79609 \N genus Lasia \N \N \N \N \N 79610 P.limonifolia Pseudoscabiosa Pseudoscabiosa limonifolia \N \N \N \N \N 79611 A.bryophylla Arenaria Arenaria bryophylla \N \N \N \N \N 79612 P.hutchinsonianus Phyllanthus Phyllanthus hutchinsonianus \N \N \N \N \N 79613 P.interior Puccinellia Puccinellia interior \N \N \N \N \N 79614 \N genus Tetragastris \N \N \N \N \N 79615 E.shandongensis Elymus Elymus shandongensis \N \N \N \N \N 79616 H.devium Helichrysum Helichrysum devium \N \N \N \N \N 79617 \N genus Ammandra \N \N \N \N \N 79618 \N subspecies Carex curvula subsp. curvula \N \N \N \N \N 79619 \N subspecies Impatiens meruensis subsp. cruciata \N \N \N \N \N 79620 S.terebinthifolius Schinus Schinus terebinthifolius Brazilian peppertree \N \N \N \N 79621 H.kittanae Hieracium Hieracium kittanae \N \N \N \N \N 79622 T.zygioides Thymus Thymus zygioides \N \N \N \N \N 79623 M.incarum Mimosa Mimosa incarum \N \N \N \N \N 79624 \N genus Glossocalyx \N \N \N \N \N 79625 T.efoliata Tetratheca Tetratheca efoliata \N \N \N \N \N 79626 A.pallida Alstroemeria Alstroemeria pallida \N \N \N \N \N 79627 C.urophyllidia Chamaecrista Chamaecrista urophyllidia \N \N \N \N \N 79628 V.44-53M Vitis Vitis sp. 44-53M \N \N \N \N \N 79629 P.amaryllifolius Pandanus Pandanus amaryllifolius pandan rampeh,pandan wangi \N \N \N \N 79630 H.ekmanii Henriettea Henriettea ekmanii \N \N \N \N \N 79631 A.vitaliana Androsace Androsace vitaliana \N \N \N \N \N 79632 T.arborea Tabernaemontana Tabernaemontana arborea \N \N \N \N \N 79633 S.echinata Spermolepis Spermolepis echinata \N \N \N \N \N 79634 \N varietas Mimosa aculeaticarpa var. biuncifera \N \N \N \N \N 79635 B.sylvatica Blumea Blumea sylvatica \N \N \N \N \N 79636 \N order Piperales \N \N \N \N \N 79637 E.Esp8275 Elleanthus Elleanthus sp. Esp8275 \N \N \N \N \N 79638 \N genus Iphigenia \N \N \N \N \N 79639 C.erinacea Calotis Calotis erinacea \N \N \N \N \N 79640 H.alucense Helichrysum Helichrysum alucense \N \N \N \N \N 79641 B.retrofracta Boechera Boechera retrofracta \N \N \N \N \N 79642 M.orsiniana Malcolmia Malcolmia orsiniana \N \N \N \N \N 79643 M.fletcheriana Maxillaria Maxillaria fletcheriana \N \N \N \N \N 79644 M.HAS-002 Manihot Manihot sp. HAS-002 \N \N \N \N \N 79645 O.arenaria Onobrychis Onobrychis arenaria \N \N \N \N \N 79646 E.megacalyx Echeveria Echeveria megacalyx \N \N \N \N \N 79647 \N genus Fingerhuthia \N \N \N \N \N 79648 S.niveus Senecio Senecio niveus \N \N \N \N \N 79649 C.confertiflora Casselia Casselia confertiflora \N \N \N \N \N 79650 D.tayloriana Dorstenia Dorstenia tayloriana \N \N \N \N \N 79651 D.racemosum Distylium Distylium racemosum \N \N \N \N \N 79652 P.calycinus Plectranthus Plectranthus calycinus \N \N \N \N \N 79653 C.cynophallophora Capparis Capparis cynophallophora Jamaica capertree,black-willow \N \N \N \N 79654 C.lancifolia Coffea Coffea lancifolia \N \N \N \N \N 79655 P.chinense Piper Piper chinense \N \N \N \N \N 79656 T.henekenii Tolumnia Tolumnia henekenii \N \N \N \N \N 79657 \N varietas Passiflora moluccana var. glaberrima \N \N \N \N \N 79658 D.PA4E0302 Diospyros Diospyros sp. PA4E0302 \N \N \N \N \N 79659 H.descurva Heliophila Heliophila descurva \N \N \N \N \N 79660 S.monstrosa Sajanella Sajanella monstrosa \N \N \N \N \N 79661 S.ramosissimus Sauropus Sauropus ramosissimus \N \N \N \N \N 79662 F.sikkimensis Fraxinus Fraxinus sikkimensis \N \N \N \N \N 79663 D.satyriopsis Disa Disa satyriopsis \N \N \N \N \N 79664 P.maximum Phacelophrynium Phacelophrynium maximum \N \N \N \N \N 79665 L.mascarenense Lycium Lycium mascarenense \N \N \N \N \N 79666 L.depressum Lycium Lycium depressum \N \N \N \N \N 79667 V.appenii Vriesea Vriesea appenii \N \N \N \N \N 79668 C.appressa Carex Carex appressa \N \N \N \N \N 79669 S.chontalensis Selenicereus Selenicereus chontalensis \N \N \N \N \N 79670 J.ovalifolia Jacquemontia Jacquemontia ovalifolia \N \N \N \N \N 79671 \N subspecies Alnus alnobetula subsp. alnobetula \N \N \N \N \N 79672 B.latiflorus Bambusa x Dendrocalamus Bambusa textilis x Dendrocalamus latiflorus \N \N \N \N \N 79673 C.lycianthoides Capsicum Capsicum lycianthoides \N \N \N \N \N 79674 C.gnezdilloi Cousinia Cousinia gnezdilloi \N \N \N \N \N 79675 L.aristigera Leandra Leandra aristigera \N \N \N \N \N 79676 P.latiloba Primula Primula latiloba white shootingstar \N \N \N \N 79677 \N no rank Persea americana 'guatemalensis' \N \N \N \N \N 79678 P.erectipilum Piper Piper erectipilum \N \N \N \N \N 79679 F.idahoensis Festuca Festuca idahoensis \N \N \N \N \N 79680 P.sessiliflorus Paepalanthus Paepalanthus sessiliflorus \N \N \N \N \N 79681 Z.absinthifolia Zosima Zosima absinthifolia \N \N \N \N \N 79682 \N genus Dactylostelma \N \N \N \N \N 79683 \N genus Mouretia \N \N \N \N \N 79684 M.saxicola Moraea Moraea saxicola \N \N \N \N \N 79685 P.patula Pinanga Pinanga patula \N \N \N \N \N 79686 A.ovalifolius Alysicarpus Alysicarpus ovalifolius \N \N \N \N \N 79687 \N genus Cominsia \N \N \N \N \N 79688 \N genus Chortolirion \N \N \N \N \N 79689 P.bicalcarata Polystachya Polystachya bicalcarata \N \N \N \N \N 79690 N.cumingii Nassauvia Nassauvia cumingii \N \N \N \N \N 79691 T.3660 unclassified Taraxacum Taraxacum (sect. Dissecta) sp. 3660 \N \N \N \N \N 79692 B.glauca Breynia Breynia glauca \N \N \N \N \N 79693 C.lanceolata Codonopsis Codonopsis lanceolata \N \N \N \N \N 79694 A.sikkimensis Aeschynanthus Aeschynanthus sikkimensis \N \N \N \N \N 79695 R.damascena Rosa Rosa x damascena damask rose \N \N \N \N 79696 C.macrocarpum Cremastosperma Cremastosperma macrocarpum \N \N \N \N \N 79697 A.lucida Acaena Acaena lucida \N \N \N \N \N 79698 S.09.2003 Salicornia Salicornia aff. perennans Zacharova 09.2003 \N \N \N \N \N 79699 C.terrestris Callitriche Callitriche terrestris \N \N \N \N \N 79700 I.setosa Iris Iris setosa \N \N \N \N \N 79701 P.quadrata Pilea Pilea quadrata \N \N \N \N \N 79702 R.nasutus Rhinacanthus Rhinacanthus nasutus \N \N \N \N \N 79703 H.pulcherrima Hessea Hessea pulcherrima \N \N \N \N \N 79704 M.caledonica Manulea Manulea caledonica \N \N \N \N \N 79705 E.mackaiana Erica Erica mackaiana \N \N \N \N \N 79706 L.jacobsii Lithocarpus Lithocarpus jacobsii \N \N \N \N \N 79707 B.canadensis Boechera Boechera canadensis \N \N \N \N \N 79708 G.1865 Gaussia Gaussia princeps H.Wendl. 1865 \N \N \N \N \N 79709 \N genus Morelotia \N \N \N \N \N 79710 B.hirsuta Blephilia Blephilia hirsuta \N \N \N \N \N 79711 F.rubrivestimenta Ficus Ficus rubrivestimenta \N \N \N \N \N 79712 A.pentheri Aconitum Aconitum pentheri \N \N \N \N \N 79713 D.tubeana Dracula Dracula tubeana \N \N \N \N \N 79714 D.apetalum Doratoxylon Doratoxylon apetalum \N \N \N \N \N 79715 H.canadense Hydrophyllum Hydrophyllum canadense \N \N \N \N \N 79716 L.rarifolia Launaea Launaea rarifolia \N \N \N \N \N 79717 L.triflora Lloydia Lloydia triflora \N \N \N \N \N 79718 S.domingensis Scrophularia Scrophularia domingensis \N \N \N \N \N 79719 G.108478 Gagea Gagea cf. xiphoidea HAL 108478 \N \N \N \N \N 79720 C.wolfii Cylindropuntia Cylindropuntia wolfii \N \N \N \N \N 79721 A.schliebenii Adenia Adenia schliebenii \N \N \N \N \N 79722 R.foetida Rosa Rosa foetida Austrian briar \N \N \N \N 79723 R.gracilis Ruellia Ruellia gracilis \N \N \N \N \N 79724 \N subspecies Colchicum bulbocodium subsp. bulbocodium \N \N \N \N \N 79725 A.blepharocalyx Alpinia Alpinia blepharocalyx \N \N \N \N \N 79726 P.saxatilis Primula Primula saxatilis \N \N \N \N \N 79727 O.bremifera Ophrys Ophrys bremifera \N \N \N \N \N 79728 C.wumengense Cypripedium Cypripedium wumengense \N \N \N \N \N 79729 H.deformis Haemanthus Haemanthus deformis \N \N \N \N \N 79730 D.diabola Dracula Dracula diabola \N \N \N \N \N 79731 D.oxysepalum Delphinium Delphinium oxysepalum \N \N \N \N \N 79732 S.minor Sabal Sabal minor bush palmetto,dwarf palmetto,scrub palmetto \N \N \N \N 79733 N.jelskii Napeanthus Napeanthus jelskii \N \N \N \N \N 79734 F.oppositifolia Flindersia Flindersia oppositifolia \N \N \N \N \N 79735 P.indutum Piptochaetium Piptochaetium indutum \N \N \N \N \N 79736 P.06141 Pleioblastus Pleioblastus sp. Zeng & Zhang 06141 \N \N \N \N \N 79737 A.brasiliensis Albertinia Albertinia brasiliensis \N \N \N \N \N 79738 C.wenshanense Cymbidium Cymbidium wenshanense \N \N \N \N \N 79739 N.killipii Neoptychocarpus Neoptychocarpus killipii \N \N \N \N \N 79740 C.communis Commelina Commelina communis \N \N \N \N \N 79741 E.tournefortii Echinops Echinops tournefortii \N \N \N \N \N 79742 G.tergestina Gentiana Gentiana tergestina \N \N \N \N \N 79743 G.latifolia Guatteria Guatteria latifolia \N \N \N \N \N 79744 \N subspecies Astragalus armatus subsp. numidicus \N \N \N \N \N 79745 B.glauca Bauhinia Bauhinia glauca \N \N \N \N \N 79746 S.ramosissima Stenotalis Stenotalis ramosissima \N \N \N \N \N 79747 D.BGB-2009d Dalechampia Dalechampia sp. BGB-2009d \N \N \N \N \N 79748 R.peltatus Ranunculus Ranunculus peltatus \N \N \N \N \N 79749 B.K16652 Bulbophyllum Bulbophyllum sp. K16652 \N \N \N \N \N 79750 \N genus Securigera \N \N \N \N \N 79751 J.oxycarpus Juncus Juncus oxycarpus \N \N \N \N \N 79752 H.styotrichum Heliotropium Heliotropium styotrichum \N \N \N \N \N 79753 F.anhuiensis Fritillaria Fritillaria anhuiensis \N \N \N \N \N 79754 S.crassifolia Scaevola Scaevola crassifolia \N \N \N \N \N 79755 \N genus Diuris \N \N \N \N \N 79756 D.SH-2010 Drosera Drosera sp. SH-2010 \N \N \N \N \N 79757 J.cataonica Jurinea Jurinea cataonica \N \N \N \N \N 79758 \N varietas Prunus leveilleana var. pendula \N \N \N \N \N 79759 \N family Limnanthaceae meadow-foam family \N \N \N \N 79760 E.kerstingii Eriocoelum Eriocoelum kerstingii \N \N \N \N \N 79761 P.pallescens Pentaschistis Pentameris pallescens \N \N \N \N \N 79762 \N subspecies Crocus biflorus subsp. alexandri \N \N \N \N \N 79763 O.monadelphus Orthrosanthus Orthrosanthus monadelphus \N \N \N \N \N 79764 \N genus Peltiera \N \N \N \N \N 79765 C.pulchra Columnea Columnea pulchra \N \N \N \N \N 79766 A.arpilobus Astragalus Astragalus arpilobus \N \N \N \N \N 79767 O.bombyliflora Ophrys Ophrys bombyliflora \N \N \N \N \N 79768 H.gazanioides Hirpicium Hirpicium gazanioides \N \N \N \N \N 79769 L.pygmaea Lewisia Lewisia pygmaea \N \N \N \N \N 79770 N.2640 Nymphoides Nymphoides sp. Barrett & Barrett 2640 \N \N \N \N \N 79771 C.SRR-2011 unclassified Catasetinae Catasetinae sp. 1 SRR-2011 \N \N \N \N \N 79772 C.segawae Cypripedium Cypripedium segawae \N \N \N \N \N 79773 C.sedoides Campylanthus Campylanthus sedoides \N \N \N \N \N 79774 \N genus Apacheria \N \N \N \N \N 79775 M.armillata Mammillaria Mammillaria armillata \N \N \N \N \N 79776 L.NSW713980 Lepyrodia Lepyrodia sp. NSW713980 \N \N \N \N \N 79777 J.confusa Jumellea Jumellea confusa \N \N \N \N \N 79778 D.alba Drypetes Drypetes alba \N \N \N \N \N 79779 \N varietas Aristida schiedeana var. schiedeana \N \N \N \N \N 79780 \N genus Neyraudia \N \N \N \N \N 79781 S.nervosa Swertia Swertia nervosa \N \N \N \N \N 79782 U.cheiranthos Utricularia Utricularia cheiranthos \N \N \N \N \N 79783 S.argutum Smodingium Smodingium argutum \N \N \N \N \N 79784 A.kemando Artocarpus Artocarpus kemando \N \N \N \N \N 79785 V.neurophylla Virotia Virotia neurophylla \N \N \N \N \N 79786 P.olivascens Pulicaria Pulicaria olivascens \N \N \N \N \N 79787 A.squarrosula Androsace Androsace squarrosula \N \N \N \N \N 79788 \N subspecies Korthalsella rubra subsp. geijericola \N \N \N \N \N 79789 \N genus Chrysocoma \N \N \N \N \N 79790 A.leeana Aerides Aerides leeana \N \N \N \N \N 79791 \N genus Hilliardia \N \N \N \N \N 79792 M.neogranatensis Meineckia Meineckia neogranatensis \N \N \N \N \N 79793 \N genus Philbornea \N \N \N \N \N 79794 A.aucheri Arabis Arabis aucheri \N \N \N \N \N 79795 H.asperrimum Heliotropium Heliotropium asperrimum \N \N \N \N \N 79796 H.laurina Hakea Hakea laurina \N \N \N \N \N 79797 P.macrocera Plectritis Plectritis macrocera \N \N \N \N \N 79798 A.olivaceum Acer Acer olivaceum \N \N \N \N \N 79799 A.franchetii Aralia Aralia franchetii \N \N \N \N \N 79800 J.anisandra Janusia Janusia anisandra \N \N \N \N \N 79801 A.ameghinoi Azorella Azorella ameghinoi \N \N \N \N \N 79802 P.australis Pouteria Pouteria australis \N \N \N \N \N 79803 \N no rank apioid superclade incertae sedis \N \N \N \N \N 79804 P.SH-2010 Phormium Phormium sp. SH-2010 \N \N \N \N \N 79805 \N genus Sinosenecio \N \N \N \N \N 79806 H.lotoides Hammatolobium Hammatolobium lotoides \N \N \N \N \N 79807 V.6018 Vallisneria Vallisneria sp. Chase 6018 \N \N \N \N \N 79808 I.pallida Iris Iris pallida \N \N \N \N \N 79809 O.espintana Oxandra Oxandra espintana \N \N \N \N \N 79810 L.grantii Lefebvrea Lefebvrea grantii \N \N \N \N \N 79811 \N genus Hamadryas \N \N \N \N \N 79812 P.ecboliophylla Pilea Pilea ecboliophylla \N \N \N \N \N 79813 T.simulatum Trichostema Trichostema simulatum Siskiyou bluecurls \N \N \N \N 79814 C.jenmanii Cayaponia Cayaponia jenmanii \N \N \N \N \N 79815 C.bennettii Comparettia Comparettia bennettii \N \N \N \N \N 79816 A.hyemalis Agrostis Agrostis hyemalis \N \N \N \N \N 79817 \N species group Detzneria \N \N \N \N \N 79818 P.brachystyla Pimpinella Pimpinella brachystyla \N \N \N \N \N 79819 \N genus Cliftonia \N \N \N \N \N 79820 \N subspecies Zingeria biebersteiniana subsp. trichopoda \N \N \N \N \N 79821 C.lanceolatus Chamaecostus Chamaecostus lanceolatus \N \N \N \N \N 79822 C.opulifolium Chenopodium Chenopodium opulifolium \N \N \N \N \N 79823 C.barbarae Corybas Corybas barbarae \N \N \N \N \N 79824 \N varietas Potamogeton lucens var. teganumensis \N \N \N \N \N 79825 P.tabernaemontani Potentilla Potentilla tabernaemontani \N \N \N \N \N 79826 T.trichocephalum Trifolium Trifolium trichocephalum \N \N \N \N \N 79827 \N genus Dubyaea \N \N \N \N \N 79828 A.melampodina Anthemis Anthemis melampodina \N \N \N \N \N 79829 C.thirkei Centaurea Centaurea thirkei \N \N \N \N \N 79830 A.cuprea Alocasia Alocasia cuprea \N \N \N \N \N 79831 \N genus Dictyophragmus \N \N \N \N \N 79832 B.hapalanthos Bulbophyllum Bulbophyllum hapalanthos \N \N \N \N \N 79833 \N genus Senna \N \N \N \N \N 79834 S.candidissima Salvia Salvia candidissima \N \N \N \N \N 79835 A.polycarpum Aconitum Aconitum polycarpum \N \N \N \N \N 79836 S.sylvestris Schistogyne Schistogyne sylvestris \N \N \N \N \N 79837 C.livida Carex Carex livida \N \N \N \N \N 79838 G.atratus Gasteranthus Gasteranthus atratus \N \N \N \N \N 79839 P.saniculifolia Patrinia Patrinia saniculifolia \N \N \N \N \N 79840 M.araujoi Mezia Mezia araujoi \N \N \N \N \N 79841 S.rovirosanum Solanum Solanum rovirosanum \N \N \N \N \N 79842 F.daltoniana Fragaria Fragaria daltoniana \N \N \N \N \N 79843 \N genus Osmanthus \N \N \N \N \N 79844 \N genus Clivia \N \N \N \N \N 79845 O.obtusa Oxalis Oxalis obtusa \N \N \N \N \N 79846 S.hildebrandtii Streptocarpus Streptocarpus hildebrandtii \N \N \N \N \N 79847 \N genus Lotus \N \N \N \N \N 79848 R.auriculata Roscoea Roscoea auriculata \N \N \N \N \N 79849 H.fimbriata Huttonaea Huttonaea fimbriata \N \N \N \N \N 79850 P.cascajalensis Psychotria Psychotria cascajalensis \N \N \N \N \N 79851 C.laetum Colchicum Colchicum laetum \N \N \N \N \N 79852 C.aromatica Cochleanthes Cochleanthes aromatica \N \N \N \N \N 79853 \N subspecies Polemonium pulcherrimum subsp. pulcherrimum \N \N \N \N \N 79854 S.dregeana Stipa Stipa dregeana \N \N \N \N \N 79855 C.kingianus Corallodiscus Corallodiscus kingianus \N \N \N \N \N 79856 D.laeta Downingia Downingia laeta \N \N \N \N \N 79857 \N subspecies Secale cereale subsp. ancestrale \N \N \N \N \N 79858 P.laxiflora Pedicularis Pedicularis laxiflora \N \N \N \N \N 79859 I.schlechteri Indigofera Indigofera schlechteri \N \N \N \N \N 79860 K.millottii Kalanchoe Kalanchoe millottii \N \N \N \N \N 79861 C.austrosinensis Cornus Cornus austrosinensis \N \N \N \N \N 79862 S.thapsoides Senecio Senecio thapsoides \N \N \N \N \N 79863 O.croesus Oncidium Oncidium croesus \N \N \N \N \N 79864 C.orientalis Conringia Conringia orientalis hare's-ear mustard \N \N \N \N 79865 \N genus Curarea \N \N \N \N \N 79866 \N genus Aegopodium \N \N \N \N \N 79867 A.virescens Altensteinia Altensteinia virescens \N \N \N \N \N 79868 P.13 Pseudomalmea Pseudomalmea sp. Idarraga 13 \N \N \N \N \N 79869 K.duperreana Kmeria Kmeria duperreana \N \N \N \N \N 79870 A.gregorii Adansonia Adansonia gregorii Australian baobab,dead rat tree,gadawon \N \N \N \N 79871 R.hyacinthosmum Rhododendron Rhododendron hyacinthosmum \N \N \N \N \N 79872 B.aureum Bupleurum Bupleurum aureum \N \N \N \N \N 79873 A.trichodon Allocasuarina Allocasuarina trichodon \N \N \N \N \N 79874 \N family Typhaceae bur-reed family,cattail famly \N \N \N \N 79875 E.cymbifera Euphorbia Euphorbia cymbifera \N \N \N \N \N 79876 P.dahurica Pulsatilla Pulsatilla dahurica \N \N \N \N \N 79877 \N genus Harmonia \N \N \N \N \N 79878 V.loranthifolia Vangueria Vangueria loranthifolia \N \N \N \N \N 79879 A.linearis Astelia Astelia linearis \N \N \N \N \N 79880 M.purpureocostata Manihot Manihot purpureocostata \N \N \N \N \N 79881 D.malacantha Danthonia Danthonia malacantha \N \N \N \N \N 79882 \N genus Luzula woodrushes \N \N \N \N 79883 C.engleriana Calceolaria Calceolaria engleriana \N \N \N \N \N 79884 A.taishanensis Amaranthus Amaranthus taishanensis \N \N \N \N \N 79885 F.rectinervia Faramea Faramea rectinervia \N \N \N \N \N 79886 G.aspalathoides Genista Genista aspalathoides \N \N \N \N \N 79887 V.adenophylla Viguiera Viguiera adenophylla \N \N \N \N \N 79888 D.rubens Deutzia Deutzia rubens \N \N \N \N \N 79889 R.macrostoma Rhabdadenia Rhabdadenia macrostoma \N \N \N \N \N 79890 A.spectabilis Acridocarpus Acridocarpus spectabilis \N \N \N \N \N 79891 G.punctata Guatteria Guatteria punctata \N \N \N \N \N 79892 \N subtribe Dendrophthoinae \N \N \N \N \N 79893 S.piresiana Sinningia Sinningia piresiana \N \N \N \N \N 79894 \N varietas Carex petricosa var. petricosa \N \N \N \N \N 79895 Z.pauciflorum Zygogynum Zygogynum pauciflorum \N \N \N \N \N 79896 \N subspecies Galium angustifolium subsp. borregoense \N \N \N \N \N 79897 M.viridissima Monarda Monarda viridissima \N \N \N \N \N 79898 S.puberulum Syzygium Syzygium puberulum \N \N \N \N \N 79899 \N subspecies Chionochloa rubra subsp. occulta \N \N \N \N \N 79900 D.lusitanicum Drosophyllum Drosophyllum lusitanicum \N \N \N \N \N 79901 S.arisanensis Salvia Salvia arisanensis \N \N \N \N \N 79902 S.sphaeranthum Satyrium Satyrium sphaeranthum \N \N \N \N \N 79903 \N genus Parastrephia \N \N \N \N \N 79904 \N genus Fumaria \N \N \N \N \N 79905 V.glabella Viola Viola glabella \N \N \N \N \N 79906 G.occidentalis Grewia Grewia occidentalis crossberry \N \N \N \N 79907 \N genus Diamena \N \N \N \N \N 79908 H.campechianum Haematoxylum Haematoxylum campechianum \N \N \N \N \N 79909 M.patens Metrosideros Metrosideros patens \N \N \N \N \N 79910 L.alpina Linaria Linaria alpina \N \N \N \N \N 79911 O.daphnifolia Ocotea Ocotea daphnifolia \N \N \N \N \N 79912 P.trichostomum Paspalum Paspalum trichostomum \N \N \N \N \N 79913 \N genus Allionia \N \N \N \N \N 79914 V.lundellii Vatairea Vatairea lundellii \N \N \N \N \N 79915 \N genus Allotropa \N \N \N \N \N 79916 P.oxycarpa Pedicularis Pedicularis oxycarpa \N \N \N \N \N 79917 H.belsonii Homopholis Homopholis belsonii \N \N \N \N \N 79918 M.lepidotum Meiocarpidium Meiocarpidium lepidotum \N \N \N \N \N 79919 C.berlandieri Calylophus Calylophus berlandieri \N \N \N \N \N 79920 I.ovata Isoglossa Isoglossa ovata \N \N \N \N \N 79921 M.petraea Moltkia Moltkia petraea \N \N \N \N \N 79922 B.juncea Burmannia Burmannia juncea \N \N \N \N \N 79923 T.kirilowii Trichosanthes Trichosanthes kirilowii Mongolian snake-gourd,gua lou,tian hua fen \N \N \N \N 79924 \N genus Maraniona \N \N \N \N \N 79925 C.guineensis Cordia Cordia guineensis \N \N \N \N \N 79926 E.JK-2009 Exacum Exacum sp. JK-2009 \N \N \N \N \N 79927 P.australe Pelargonium Pelargonium australe \N \N \N \N \N 79928 A.ilicifolia Anthocercis Anthocercis ilicifolia \N \N \N \N \N 79929 I.zhongdianensis Incarvillea Incarvillea zhongdianensis \N \N \N \N \N 79930 C.clavata Caiophora Caiophora clavata \N \N \N \N \N 79931 C.pedunculatum Comastoma Comastoma pedunculatum \N \N \N \N \N 79932 E.thorifolium Eryngium Eryngium thorifolium \N \N \N \N \N 79933 S.microcephala Scorzoneroides Scorzoneroides microcephala \N \N \N \N \N 79934 \N genus Schizostylis \N \N \N \N \N 79935 P.glomerata Primula Primula glomerata \N \N \N \N \N 79936 A.papillosa Acampe Acampe papillosa \N \N \N \N \N 79937 R.asperulum Rhododendron Rhododendron asperulum \N \N \N \N \N 79938 B.straminea Bomarea Bomarea straminea \N \N \N \N \N 79939 \N varietas Gaultheria depressa var. novae-zealandiae \N \N \N \N \N 79940 C.praecox Cynanchum Cynanchum praecox \N \N \N \N \N 79941 A.eupatoria Agrimonia Agrimonia eupatoria \N \N \N \N \N 79942 C.herbertii Cypella Cypella herbertii \N \N \N \N \N 79943 B.balansae Bupleurum Bupleurum balansae \N \N \N \N \N 79944 I.xanthina Impatiens Impatiens xanthina \N \N \N \N \N 79945 E.tereticornis Eucalyptus Eucalyptus tereticornis red ironbark \N \N \N \N 79946 \N genus Diploon \N \N \N \N \N 79947 D.tangutica Daphne Daphne tangutica \N \N \N \N \N 79948 N.IM-2010 Narcissus Narcissus cf. x perezlarae IM-2010 \N \N \N \N \N 79949 S.brachycarpa Salix Salix brachycarpa \N \N \N \N \N 79950 P.dutraei Pseudolaelia Pseudolaelia dutraei \N \N \N \N \N 79951 V.urticifolia Veronica Veronica urticifolia \N \N \N \N \N 79952 C.subalpinus Calochortus Calochortus subalpinus \N \N \N \N \N 79953 \N varietas Corallorhiza striata var. striata \N \N \N \N \N 79954 \N tribe Hippotideae \N \N \N \N \N 79955 G.gonoloboides Gonolobus Gonolobus gonoloboides \N \N \N \N \N 79956 P.verruculosa Peperomia Peperomia verruculosa \N \N \N \N \N 79957 H.SL-2011 Helanthium Helanthium sp. SL-2011 \N \N \N \N \N 79958 \N genus Trichocladus \N \N \N \N \N 79959 P.latisecta Primula Primula latisecta \N \N \N \N \N 79960 S.oaxacanus Smallanthus Smallanthus oaxacanus \N \N \N \N \N 79961 P.longifolia Pycnarrhena Pycnarrhena longifolia \N \N \N \N \N 79962 F.ferruginea Fimbristylis Fimbristylis ferruginea \N \N \N \N \N 79963 N.gallica Nigella Nigella gallica \N \N \N \N \N 79964 M.pallida Moraea Moraea pallida \N \N \N \N \N 79965 E.tsukushiensis Elymus Elymus tsukushiensis \N \N \N \N \N 79966 C.eichleri Clematis Clematis eichleri \N \N \N \N \N 79967 \N subspecies Triticum monococcum subsp. monococcum \N \N \N \N \N 79968 C.minor Cerinthe Cerinthe minor \N \N \N \N \N 79969 \N subspecies Styrax platanifolius subsp. stellatus \N \N \N \N \N 79970 H.burtonii Hibiscus Hibiscus burtonii \N \N \N \N \N 79971 P.grandiflorus Platycodon Platycodon grandiflorus Chinese-bellflower,balloon-flower,jie geng \N \N \N \N 79972 C.filiformis Cicendia Cicendia filiformis \N \N \N \N \N 79973 C.coriaceus Croton Croton coriaceus \N \N \N \N \N 79974 P.luteolum Pelargonium Pelargonium luteolum \N \N \N \N \N 79975 C.phragmitoides Carex Carex phragmitoides \N \N \N \N \N 79976 E.canaliculata Erica Erica canaliculata \N \N \N \N \N 79977 S.etonia Sabal Sabal etonia \N \N \N \N \N 79978 S.pentaseta Schistogyne Schistogyne pentaseta \N \N \N \N \N 79979 D.lamarckii Digitalis Digitalis lamarckii \N \N \N \N \N 79980 F.major Fothergilla Fothergilla major mountain witchalder \N \N \N \N 79981 S.riederi Saussurea Saussurea riederi \N \N \N \N \N 79982 W.stanleyanus Wittmackanthus Wittmackanthus stanleyanus \N \N \N \N \N 79983 C.comosa Calathea Calathea comosa \N \N \N \N \N 79984 C.woodii Calpurnia Calpurnia woodii \N \N \N \N \N 79985 \N genus Pimenta \N \N \N \N \N 79986 B.prouacensis Bocoa Bocoa prouacensis \N \N \N \N \N 79987 A.lycopodineus Asparagus Asparagus lycopodineus \N \N \N \N \N 79988 C.crassifolia Christolea Christolea crassifolia \N \N \N \N \N 79989 \N genus Bahia \N \N \N \N \N 79990 H.orixense Hymenodictyon Hymenodictyon orixense \N \N \N \N \N 79991 B.macduffieana Begonia Begonia macduffieana \N \N \N \N \N 79992 C.aurata Chytroglossa Chytroglossa aurata \N \N \N \N \N 79993 D.confertus Dipterocarpus Dipterocarpus confertus \N \N \N \N \N 79994 \N subspecies Jacobaea vulgaris subsp. gotlandica \N \N \N \N \N 79995 \N subspecies Acacia nilotica subsp. hemispherica \N \N \N \N \N 79996 D.lindbergii Dionysia Dionysia lindbergii \N \N \N \N \N 79997 S.paucifolia Setaria Setaria paucifolia \N \N \N \N \N 79998 M.schulzei Myrceugenia Myrceugenia schulzei \N \N \N \N \N 79999 A.mollissimus Astragalus Astragalus mollissimus \N \N \N \N \N 80000 D.lankesteri Dichaea Dichaea lankesteri \N \N \N \N \N 80001 D.zehnderi Dicraeanthus Dicraeanthus zehnderi \N \N \N \N \N 80002 S.elisabethae Silene Silene elisabethae Elisabeth's campion \N \N \N \N 80003 C.chinensis Cercis Cercis chinensis \N \N \N \N \N 80004 M.juniperifolia Muraltia Muraltia juniperifolia \N \N \N \N \N 80005 S.NFL-2010 Syringa Syringa sp. 5 NFL-2010 \N \N \N \N \N 80006 C.H1_32 Castilleja Castilleja sp. H1_32 \N \N \N \N \N 80007 D.concinna Disperis Disperis concinna \N \N \N \N \N 80008 B.1024 Brassia Brassia cf. caudata DB 1024 \N \N \N \N \N 80009 A.eremoprasum Allium Allium eremoprasum \N \N \N \N \N 80010 C.bromelioides Cryptanthus Cryptanthus bromelioides \N \N \N \N \N 80011 A.cephalotes Aspalathus Aspalathus cephalotes \N \N \N \N \N 80012 \N genus Rhamnidium \N \N \N \N \N 80013 F.insularum Finlaysonia Finlaysonia insularum \N \N \N \N \N 80014 D.crassifolium Dichapetalum Dichapetalum crassifolium \N \N \N \N \N 80015 C.CHR514275 Craspedia Craspedia sp. CHR514275 \N \N \N \N \N 80016 \N varietas Carex tribuloides var. tribuloides \N \N \N \N \N 80017 P.tagetina Psilostrophe Psilostrophe tagetina \N \N \N \N \N 80018 E.fuscum Enicosanthum Enicosanthum fuscum \N \N \N \N \N 80019 A.petoumo Apeiba Apeiba petoumo \N \N \N \N \N 80020 C.juncifolia Catopsis Catopsis juncifolia \N \N \N \N \N 80021 B.yinchowense Bupleurum Bupleurum yinchowense \N \N \N \N \N 80022 A.vochinensis Arabis Arabis vochinensis \N \N \N \N \N 80023 M.heisteria Muraltia Muraltia heisteria \N \N \N \N \N 80024 \N subfamily Cichorioideae \N \N \N \N \N 80025 S.oliganthum Satyrium Satyrium oliganthum \N \N \N \N \N 80026 C.sinuosus Chordifex Chordifex sinuosus \N \N \N \N \N 80027 E.aphylla Euphorbia Euphorbia aphylla \N \N \N \N \N 80028 S.gardneri Spathicarpa Spathicarpa gardneri \N \N \N \N \N 80029 I.perado Ilex Ilex perado \N \N \N \N \N 80030 L.confusa Luzula Luzula confusa \N \N \N \N \N 80031 E.boissieri Erodium Erodium boissieri \N \N \N \N \N 80032 C.reflexifolius Croton Croton reflexifolius \N \N \N \N \N 80033 \N subspecies Medicago sativa subsp. x varia \N \N \N \N \N 80034 P.arieianum Piper Piper arieianum \N \N \N \N \N 80035 L.glaucum Laserpitium Laserpitium glaucum \N \N \N \N \N 80036 G.sintenisii Geranium Geranium sintenisii \N \N \N \N \N 80037 C.epigaeus Corallocarpus Corallocarpus epigaeus \N \N \N \N \N 80038 M.tenuifolia Muraltia Muraltia tenuifolia \N \N \N \N \N 80039 E.asperifolia Encelia Encelia asperifolia \N \N \N \N \N 80040 A.gilioides Allophyllum Allophyllum gilioides \N \N \N \N \N 80041 G.odoratum Galium Galium odoratum \N \N \N \N \N 80042 H.dulce Heracleum Heracleum dulce \N \N \N \N \N 80043 S.altissima Scutellaria Scutellaria altissima tall skullcap \N \N \N \N 80044 O.clarkiae Olmeca Olmeca clarkiae \N \N \N \N \N 80045 V.grandifolia Voacanga Voacanga grandifolia \N \N \N \N \N 80046 \N genus Arctotheca \N \N \N \N \N 80047 \N genus Bischofia \N \N \N \N \N 80048 C.viridis Cliffortia Cliffortia viridis \N \N \N \N \N 80049 G.00-334 Globba Globba sp. Williams 00-334 \N \N \N \N \N 80050 \N subspecies Orbea lutea subsp. lutea \N \N \N \N \N 80051 S.sodiroi Sphyrospermum Sphyrospermum sodiroi \N \N \N \N \N 80052 \N genus Lucilia \N \N \N \N \N 80053 L.12668 Lithospermum Lithospermum sp. Goldblatt 12668 \N \N \N \N \N 80054 A.drummondii Allium Allium drummondii \N \N \N \N \N 80055 L.cinereum Lycium Lycium cinereum \N \N \N \N \N 80056 M.MMvdM-2004 Monimiastrum Monimiastrum sp. MMvdM-2004 \N \N \N \N \N 80057 P.angustifolium Piptatherum Piptatherum angustifolium \N \N \N \N \N 80058 P.salomonense Ptychosperma Ptychosperma salomonense \N \N \N \N \N 80059 S.sichuanensis Stewartia Stewartia sichuanensis \N \N \N \N \N 80060 S.kakudensis Scrophularia Scrophularia kakudensis \N \N \N \N \N 80061 P.denticulatum Pelargonium Pelargonium denticulatum \N \N \N \N \N 80062 A.lindiensis Adenia Adenia lindiensis \N \N \N \N \N 80063 P.besseae Phragmipedium Phragmipedium besseae \N \N \N \N \N 80064 C.laurifolius Cistus Cistus laurifolius \N \N \N \N \N 80065 S.divaricatum Syzygium Syzygium divaricatum \N \N \N \N \N 80066 C.argentea Cratylia Cratylia argentea \N \N \N \N \N 80067 A.havilandii Archidendron Archidendron havilandii \N \N \N \N \N 80068 B.FS1173 Bulbophyllum Bulbophyllum sp. FS1173 \N \N \N \N \N 80069 T.grandiflora Tellima Tellima grandiflora \N \N \N \N \N 80070 \N subspecies Saxifraga flagellaris subsp. crassiflagellata \N \N \N \N \N 80071 \N genus Amomum \N \N \N \N \N 80072 T.bicolor Thelocactus Thelocactus bicolor \N \N \N \N \N 80073 \N genus Calotis \N \N \N \N \N 80074 P.patula Physalis Physalis patula \N \N \N \N \N 80075 P.sample environmental samples Taxonomy:404793 Pittosporaceae environmental sample \N \N \N \N \N 80076 E.przewalskyi Echinops Echinops przewalskyi \N \N \N \N \N 80077 \N family Magnoliaceae magnolia family \N \N \N \N 80078 B.galpinii Berzelia Berzelia galpinii \N \N \N \N \N 80079 C.PC4B0214 Canarium Canarium sp. PC4B0214 \N \N \N \N \N 80080 U.selkirkii Ugni Ugni selkirkii \N \N \N \N \N 80081 S.xantha Strychnos Strychnos xantha \N \N \N \N \N 80082 H.angustifolia Hypochaeris Hypochaeris angustifolia \N \N \N \N \N 80083 \N subspecies Ipomopsis multiflora subsp. multiflora \N \N \N \N \N 80084 P.articulatum Polygonum Polygonum articulatum \N \N \N \N \N 80085 C.macrophyllum Cestrum Cestrum macrophyllum \N \N \N \N \N 80086 H.picturata Homalomena Homalomena picturata \N \N \N \N \N 80087 B.clavigera Bifrenaria Bifrenaria clavigera \N \N \N \N \N 80088 C.stuebelii Chaetanthera Chaetanthera stuebelii \N \N \N \N \N 80089 \N varietas Ligularia fischeri var. spiciformis \N \N \N \N \N 80090 R.GLA-2009 Renealmia Renealmia sp. GLA-2009 \N \N \N \N \N 80091 J.maritima Jasione Jasione maritima \N \N \N \N \N 80092 P.calyptrata Pinguicula Pinguicula calyptrata \N \N \N \N \N 80093 B.badachschanicum Bunium Bunium badachschanicum \N \N \N \N \N 80094 C.hainanensis Chuniophoenix Chuniophoenix hainanensis \N \N \N \N \N 80095 \N genus Philadelphus mock-oranges \N \N \N \N 80096 K.TT15793 Kaempferia Kaempferia sp. nov. 2 TT15793 \N \N \N \N \N 80097 M.leptantha Mimosa Mimosa leptantha \N \N \N \N \N 80098 \N varietas Hieracium scouleri var. albertinum \N \N \N \N \N 80099 \N genus Staavia \N \N \N \N \N 80100 K.polifolia Kalmia Kalmia polifolia bog laurel \N \N \N \N 80101 L.lehmannii Lachnoloma Lachnoloma lehmannii \N \N \N \N \N 80102 T.glabra Tinospora Tinospora glabra \N \N \N \N \N 80103 S.florulenta Saxifraga Saxifraga florulenta \N \N \N \N \N 80104 A.villosa Adesmia Adesmia villosa \N \N \N \N \N 80105 \N family Crypteroniaceae \N \N \N \N \N 80106 A.suberecta Atriplex Atriplex suberecta \N \N \N \N \N 80107 S.chondrachne Setaria Setaria chondrachne \N \N \N \N \N 80108 C.pumila Castanea Castanea pumila chinkapin \N \N \N \N 80109 M.rufidulus Mallotus Mallotus rufidulus \N \N \N \N \N 80110 \N varietas Edmundoa lindenii var. rosea \N \N \N \N \N 80111 A.brachyglossa Acmella Acmella brachyglossa \N \N \N \N \N 80112 \N genus Dichondra \N \N \N \N \N 80113 M.billardierei Marsdenia Marsdenia billardierei \N \N \N \N \N 80114 M.humbertii Meiostemon Meiostemon humbertii \N \N \N \N \N 80115 S.venosa Stevia Stevia venosa \N \N \N \N \N 80116 M.deanei Melaleuca Melaleuca deanei \N \N \N \N \N 80117 B.variabilis Besleria Besleria variabilis \N \N \N \N \N 80118 C.resupinata Centaurea Centaurea resupinata \N \N \N \N \N 80119 O.nubigena Oxalis Oxalis nubigena \N \N \N \N \N 80120 A.nivea Aspalathus Aspalathus nivea \N \N \N \N \N 80121 B.galeottiana Bursera Bursera galeottiana \N \N \N \N \N 80122 A.laeve Anemopaegma Anemopaegma laeve \N \N \N \N \N 80123 G.artemczukii Gagea Gagea artemczukii \N \N \N \N \N 80124 S.gaertneri Schlumbergera Schlumbergera rosea x Schlumbergera gaertneri \N \N \N \N \N 80125 C.belangeri Cousinia Cousinia belangeri \N \N \N \N \N 80126 \N genus Stenorrhynchos \N \N \N \N \N 80127 L.pomponium Lilium Lilium pomponium \N \N \N \N \N 80128 A.pavia Aesculus Aesculus parviflora f. serotina x Aesculus pavia \N \N \N \N \N 80129 G.arizonica Gaillardia Gaillardia arizonica \N \N \N \N \N 80130 A.canadense Allium Allium canadense \N \N \N \N \N 80131 P.mahaleb Prunus Prunus mahaleb mahaleb cherry,rock cherry \N \N \N \N 80132 C.bridgesii Copiapoa Copiapoa bridgesii \N \N \N \N \N 80133 E.barthii Echinodorus Echinodorus barthii \N \N \N \N \N 80134 E.bracteolata Endlicheria Endlicheria bracteolata \N \N \N \N \N 80135 \N tribe Bischofieae \N \N \N \N \N 80136 R.michauxii Rhus Rhus michauxii \N \N \N \N \N 80137 S.anchusifolia Scaevola Scaevola anchusifolia \N \N \N \N \N 80138 T.actaeifolium Thalictrum Thalictrum actaeifolium \N \N \N \N \N 80139 P.muelleri Podostemum Podostemum muelleri \N \N \N \N \N 80140 \N varietas Saintpaulia magungensis var. minima \N \N \N \N \N 80141 G.maya Gaussia Gaussia maya \N \N \N \N \N 80142 S.japonica Sagina Sagina japonica \N \N \N \N \N 80143 P.bohemica Pinguicula Pinguicula bohemica \N \N \N \N \N 80144 D.cretica Draba Draba cretica \N \N \N \N \N 80145 H.bupleuroides Hyalolaena Hyalolaena bupleuroides \N \N \N \N \N 80146 R.refracta Roemeria Roemeria refracta \N \N \N \N \N 80147 A.lobophorus Astragalus Astragalus lobophorus \N \N \N \N \N 80148 E.paularense Erodium Erodium paularense \N \N \N \N \N 80149 P.quinata Pachira Pachira quinata \N \N \N \N \N 80150 D.subcalva Dioscorea Dioscorea subcalva \N \N \N \N \N 80151 V.bombycina Veronica Veronica bombycina \N \N \N \N \N 80152 E.rubida Eucalyptus Eucalyptus rubida \N \N \N \N \N 80153 S.pseudobarberina Symplocos Symplocos pseudobarberina \N \N \N \N \N 80154 T.lucida Teedia Teedia lucida \N \N \N \N \N 80155 \N genus Lagenaria \N \N \N \N \N 80156 \N subspecies Poa hartzii subsp. hartzii \N \N \N \N \N 80157 S.tetrandra Stephania Stephania tetrandra \N \N \N \N \N 80158 L.carduchorum Laserpitium Laserpitium carduchorum \N \N \N \N \N 80159 S.zawadskii Silene Silene zawadskii Zawadskii's campion \N \N \N \N 80160 M.africana Malcolmia Malcolmia africana \N \N \N \N \N 80161 P.cretica Phlomis Phlomis cretica \N \N \N \N \N 80162 E.saccharata Ericksonella Ericksonella saccharata \N \N \N \N \N 80163 A.kitadakense Aconitum Aconitum kitadakense \N \N \N \N \N 80164 \N tribe Oldenburgieae \N \N \N \N \N 80165 R.regelianus Ranunculus Ranunculus regelianus \N \N \N \N \N 80166 S.eremophila Sixalix Sixalix eremophila \N \N \N \N \N 80167 P.alopecuroides Pedicularis Pedicularis alopecuroides \N \N \N \N \N 80168 \N genus Hymenanthera \N \N \N \N \N 80169 B.nipondhii Bulbophyllum Bulbophyllum nipondhii \N \N \N \N \N 80170 S.dunnii Streptocarpus Streptocarpus dunnii \N \N \N \N \N 80171 A.nephtonensis Astragalus Astragalus nephtonensis \N \N \N \N \N 80172 \N subspecies Petunia integrifolia subsp. inflata \N \N \N \N \N 80173 H.perforatum Hypericum Hypericum perforatum \N \N \N \N \N 80174 B.javanica Brucea Brucea javanica \N \N \N \N \N 80175 T.barrelieri Triglochin Triglochin barrelieri \N \N \N \N \N 80176 D.cordifolia Diplaspis Diplaspis cordifolia \N \N \N \N \N 80177 P.dianthoides Paepalanthus Paepalanthus dianthoides \N \N \N \N \N 80178 S.gyirongensis Salix Salix gyirongensis \N \N \N \N \N 80179 \N subspecies Rhodanthemum gayanum subsp. demnatense \N \N \N \N \N 80180 O.MO576 Oxalis Oxalis cf. flava MO576 \N \N \N \N \N 80181 C.sericea Canavalia Canavalia sericea \N \N \N \N \N 80182 P.nuratensis Parrya Parrya nuratensis \N \N \N \N \N 80183 \N varietas Dyschoriste linearis var. linearis \N \N \N \N \N 80184 \N varietas Prunus subhirtella var. ascendens \N \N \N \N \N 80185 \N genus Lebruniodendron \N \N \N \N \N 80186 \N genus Peersia \N \N \N \N \N 80187 \N genus Desmanthus \N \N \N \N \N 80188 S.brownii Solanum Solanum brownii \N \N \N \N \N 80189 G.cuneatum Geranium Geranium cuneatum hinahina \N \N \N \N 80190 C.glastifolia Cochlearia Cochlearia glastifolia \N \N \N \N \N 80191 E.filiflora Euphorbia Euphorbia filiflora \N \N \N \N \N 80192 C.muiriana Calamagrostis Calamagrostis muiriana \N \N \N \N \N 80193 C.abbayesii Coffea Coffea abbayesii \N \N \N \N \N 80194 A.monticola Anthoxanthum Anthoxanthum monticola \N \N \N \N \N 80195 P.s.n. Ponthieva Ponthieva aff. orchioides Salazar s.n. \N \N \N \N \N 80196 P.pumila Prunus Prunus pumila sand cherry \N \N \N \N 80197 C.SH-2010 Capsicum Capsicum sp. SH-2010 \N \N \N \N \N 80198 I.pavetta Ixora Ixora pavetta \N \N \N \N \N 80199 P.YL-2009 Prenanthes Prenanthes sp. YL-2009 \N \N \N \N \N 80200 \N genus Phlomis \N \N \N \N \N 80201 E.macranthum Exacum Exacum macranthum \N \N \N \N \N 80202 T.minus Thalictrum Thalictrum minus \N \N \N \N \N 80203 \N varietas Humiria balsamifera var. balsamifera \N \N \N \N \N 80204 \N genus Laccodiscus \N \N \N \N \N 80205 D.stenoplectron Disperis Disperis stenoplectron \N \N \N \N \N 80206 B.heliantha Banksia Banksia heliantha \N \N \N \N \N 80207 \N subspecies Hylodesmum podocarpum subsp. oxyphyllum \N \N \N \N \N 80208 \N genus Euthystachys \N \N \N \N \N 80209 A.biennis Artemisia Artemisia biennis biennial wormwood \N \N \N \N 80210 O.humbertii Oxalis Oxalis humbertii \N \N \N \N \N 80211 \N genus Maranta \N \N \N \N \N 80212 A.wahlenbergii Alisma Alisma wahlenbergii \N \N \N \N \N 80213 M.pilulifera Mimosa Mimosa pilulifera \N \N \N \N \N 80214 C.acutifolia Cliffortia Cliffortia acutifolia \N \N \N \N \N 80215 C.perakensis Chisocheton Chisocheton perakensis \N \N \N \N \N 80216 \N genus Tamijia \N \N \N \N \N 80217 \N subspecies Streptocarpus confusus subsp. lebomboensis \N \N \N \N \N 80218 C.madagascariense Cladogelonium Cladogelonium madagascariense \N \N \N \N \N 80219 N.parasiticus Neohymenopogon Neohymenopogon parasiticus \N \N \N \N \N 80220 \N varietas Lachenalia aloides var. vanzyliae \N \N \N \N \N 80221 Z.leprieurii Zanthoxylum Zanthoxylum leprieurii \N \N \N \N \N 80222 C.angustifolia Cyanea Cyanea angustifolia \N \N \N \N \N 80223 I.tenax Iris Iris tenax toughleaf iris \N \N \N \N 80224 H.erosum Heliotropium Heliotropium erosum \N \N \N \N \N 80225 \N genus Brugmansia \N \N \N \N \N 80226 I.gordonii Impatiens Impatiens gordonii \N \N \N \N \N 80227 I.qingchengshanica Impatiens Impatiens qingchengshanica \N \N \N \N \N 80228 C.pannonica Crepis Crepis pannonica \N \N \N \N \N 80229 \N subspecies Brassica rapa subsp. oleifera biennial turnip rape \N \N \N \N 80230 A.maxima Androsace Androsace maxima \N \N \N \N \N 80231 P.kerrii Platostoma Platostoma kerrii \N \N \N \N \N 80232 D.parviflora Drymonia Drymonia parviflora \N \N \N \N \N 80233 H.kentiana Hoya Hoya kentiana \N \N \N \N \N 80234 C.glauca Centropodia Centropodia glauca \N \N \N \N \N 80235 C.DH-2011 Chionanthus Chionanthus sp. DH-2011 \N \N \N \N \N 80236 E.turpinii Euphorbia Euphorbia turpinii \N \N \N \N \N 80237 S.tetramerum Solanum Solanum tetramerum \N \N \N \N \N 80238 C.chathamica Coprosma Coprosma chathamica \N \N \N \N \N 80239 \N subspecies Anchusa crispa subsp. maritima \N \N \N \N \N 80240 C.rugulosa Calceolaria Calceolaria rugulosa \N \N \N \N \N 80241 H.angustifolius Helianthus Helianthus angustifolius \N \N \N \N \N 80242 P.trimera Pseuduvaria Pseuduvaria trimera \N \N \N \N \N 80243 Z.angustifolia Zinnia Zinnia angustifolia \N \N \N \N \N 80244 H.bottae Halothamnus Halothamnus bottae \N \N \N \N \N 80245 C.ranunculina Cyrtorhyncha Cyrtorhyncha ranunculina \N \N \N \N \N 80246 B.insulana Bridelia Bridelia insulana \N \N \N \N \N 80247 S.poeppigii Streptocalyx Streptocalyx poeppigii \N \N \N \N \N 80248 E.speciosa Erythrina Erythrina speciosa \N \N \N \N \N 80249 C.haydenii Carex Carex haydenii \N \N \N \N \N 80250 E.chersonesa Euphorbia Euphorbia chersonesa \N \N \N \N \N 80251 B.madagascariensis Beilschmiedia Beilschmiedia madagascariensis \N \N \N \N \N 80252 A.trinervis Aiouea Aiouea trinervis \N \N \N \N \N 80253 M.oteroi Mammillaria Mammillaria oteroi \N \N \N \N \N 80254 P.cinereum Piper Piper cinereum \N \N \N \N \N 80255 A.thaliana Arabidopsis Arabidopsis arenosa x Arabidopsis thaliana \N \N \N \N \N 80256 M.thomii Mystropetalon Mystropetalon thomii \N \N \N \N \N 80257 \N genus Markhamia \N \N \N \N \N 80258 \N subspecies Leucadendron glaberrimum subsp. glaberrimum \N \N \N \N \N 80259 T.eriospermus Tragopogon Tragopogon eriospermus \N \N \N \N \N 80260 A.tolmaczevii Astragalus Astragalus tolmaczevii \N \N \N \N \N 80261 A.cliffortioides Aspalathus Aspalathus cliffortioides \N \N \N \N \N 80262 C.hyacinthosma Coeliopsis Coeliopsis hyacinthosma \N \N \N \N \N 80263 T.saturejoides Thymus Thymus saturejoides \N \N \N \N \N 80264 H.cumbalense Hedyosmum Hedyosmum cumbalense \N \N \N \N \N 80265 E.cardiochilum Epidendrum Epidendrum cardiochilum \N \N \N \N \N 80266 L.solandri Lepidium Lepidium solandri \N \N \N \N \N 80267 S.maculata Strobilanthes Strobilanthes maculata \N \N \N \N \N 80268 S.nitens Schoenus Schoenus nitens \N \N \N \N \N 80269 \N genus Draba \N \N \N \N \N 80270 A.coeruleum Androstephium Androstephium coeruleum \N \N \N \N \N 80271 \N genus Sicyos \N \N \N \N \N 80272 O.periquino Onychopetalum Onychopetalum periquino \N \N \N \N \N 80273 E.discifolia Emilia Emilia discifolia \N \N \N \N \N 80274 O.maysillesii Oenothera Oenothera maysillesii \N \N \N \N \N 80275 P.paradoxa Plinthanthesis Plinthanthesis paradoxa \N \N \N \N \N 80276 S.palmeri Salmea Salmea palmeri \N \N \N \N \N 80277 \N genus Mellera \N \N \N \N \N 80278 U.villosa Urochloa Urochloa villosa \N \N \N \N \N 80279 A.peduncularis Aristotelia Aristotelia peduncularis \N \N \N \N \N 80280 H.telephioides Haplophyllum Haplophyllum telephioides \N \N \N \N \N 80281 G.ruthenicum Galium Galium ruthenicum \N \N \N \N \N 80282 B.damazii Burmannia Burmannia damazii \N \N \N \N \N 80283 \N genus Lindheimera \N \N \N \N \N 80284 I.japonica Inula Inula japonica \N \N \N \N \N 80285 P.congesta Peperomia Peperomia congesta \N \N \N \N \N 80286 B.acutangula Barringtonia Barringtonia acutangula \N \N \N \N \N 80287 L.sachapapa Larnax Larnax sachapapa \N \N \N \N \N 80288 R.falconensis Rhodospatha Rhodospatha falconensis \N \N \N \N \N 80289 S.pillahuatense Solanum Solanum pillahuatense \N \N \N \N \N 80290 P.abbreviata Poa Poa abbreviata \N \N \N \N \N 80291 E.agallocha Excoecaria Excoecaria agallocha hai qi \N \N \N \N 80292 S.asperum Solanum Solanum asperum \N \N \N \N \N 80293 I.acreana Inga Inga acreana \N \N \N \N \N 80294 B.SS-2007 Brachystelma Brachystelma sp. 2 SS-2007 \N \N \N \N \N 80295 F.dracocephala Fargesia Fargesia dracocephala \N \N \N \N \N 80296 H.grandifloriformis Habenaria Habenaria grandifloriformis \N \N \N \N \N 80297 C.finlaysonianum Cymbidium Cymbidium finlaysonianum \N \N \N \N \N 80298 D.cardinale Delphinium Delphinium cardinale scarlet larkspur \N \N \N \N 80299 P.vallisneriifolia Pinguicula Pinguicula vallisneriifolia \N \N \N \N \N 80300 C.glaucophylla Cristaria Cristaria glaucophylla \N \N \N \N \N 80301 T.ferox Trichotosia Trichotosia ferox \N \N \N \N \N 80302 \N genus Diplodiscus \N \N \N \N \N 80303 O.brieniana Oncidium Oncidium brieniana \N \N \N \N \N 80304 S.candidum Solanum Solanum candidum \N \N \N \N \N 80305 D.similis Disa Disa similis \N \N \N \N \N 80306 E.rostratum Elatostema rostratum group Elatostema rostratum \N \N \N \N \N 80307 R.leiophylla Rinorea Rinorea leiophylla \N \N \N \N \N 80308 D.didymophylla Daemonorops Daemonorops didymophylla \N \N \N \N \N 80309 B.aetnensis Berberis Berberis aetnensis \N \N \N \N \N 80310 \N forma Bupleurum longiradiatum f. australe \N \N \N \N \N 80311 O.s.n. Ouratea Ouratea sp. Morawetz s.n. \N \N \N \N \N 80312 A.subintegrifolia Argemone Argemone subintegrifolia \N \N \N \N \N 80313 \N genus Disphyma \N \N \N \N \N 80314 E.whitei Euphorbia Euphorbia whitei \N \N \N \N \N 80315 \N genus Monarda horsemints,wild bergamots \N \N \N \N 80316 E.baselicis Euphorbia Euphorbia baselicis \N \N \N \N \N 80317 C.peltata Coccoloba Coccoloba peltata \N \N \N \N \N 80318 S.foetida Sterculia Sterculia foetida \N \N \N \N \N 80319 B.constanciae Bactris Bactris constanciae \N \N \N \N \N 80320 V.guianensis Votomita Votomita guianensis \N \N \N \N \N 80321 L.flexicaule Lepidium Lepidium flexicaule \N \N \N \N \N 80322 P.lineata Paradrymonia Paradrymonia lineata \N \N \N \N \N 80323 T.calostachya Thymbra Thymbra calostachya \N \N \N \N \N 80324 \N subtribe Cranichidinae \N \N \N \N \N 80325 F.undulata Freylinia Freylinia undulata \N \N \N \N \N 80326 \N genus Semiarundinaria \N \N \N \N \N 80327 P.guttata Pleurothallis Pleurothallis guttata \N \N \N \N \N 80328 B.1977-8 Begonia Begonia cf. grandis K 1977-8 \N \N \N \N \N 80329 C.africana Cordia Cordia africana muringa \N \N \N \N 80330 \N genus Tanakaea \N \N \N \N \N 80331 N.carpatha Nigella Nigella carpatha \N \N \N \N \N 80332 \N varietas Carex luzulina var. ablata \N \N \N \N \N 80333 C.gynodynama Carex Carex gynodynama \N \N \N \N \N 80334 T.avenacea Tristachya Tristachya avenacea \N \N \N \N \N 80335 F.esterhuyseniae Ficinia Ficinia esterhuyseniae \N \N \N \N \N 80336 R.cruegeri Ruprechtia Ruprechtia cruegeri \N \N \N \N \N 80337 G.hoppeanum Gnaphalium Gnaphalium hoppeanum \N \N \N \N \N 80338 S.stevensonii Sideroxylon Sideroxylon stevensonii \N \N \N \N \N 80339 T.pennellii Tetralocularia Tetralocularia pennellii \N \N \N \N \N 80340 V.oldhamii Vaccinium Vaccinium oldhamii \N \N \N \N \N 80341 L.ciliatibracteata Luxemburgia Luxemburgia ciliatibracteata \N \N \N \N \N 80342 T.polycephalum Tanacetum Tanacetum polycephalum \N \N \N \N \N 80343 \N subspecies Hordeum patagonicum subsp. magellanicum \N \N \N \N \N 80344 C.sp. Chrysanthemum Chrysanthemum sp. \N \N \N \N \N 80345 L.dentata Ligularia Ligularia dentata \N \N \N \N \N 80346 C.pseudopulchellus Croton Croton pseudopulchellus \N \N \N \N \N 80347 R.95022 Ribes Ribes sp. Qiu 95022 \N \N \N \N \N 80348 \N genus x Mokara \N \N \N \N \N 80349 \N subspecies Aichryson pachycaulon subsp. immaculatum \N \N \N \N \N 80350 P.hybridus Petasites Petasites hybridus \N \N \N \N \N 80351 C.dentatum Clinopodium Clinopodium dentatum Florida calamint \N \N \N \N 80352 C.nitida Catopsis Catopsis nitida \N \N \N \N \N 80353 C.achrysantha Camellia Camellia achrysantha \N \N \N \N \N 80354 A.cultivar Astilbe Astilbe hybrid cultivar \N \N \N \N \N 80355 C.laevigata Celtis Celtis laevigata southern hackberry,sugarberry \N \N \N \N 80356 L.hakeifolia Lamarchea Lamarchea hakeifolia \N \N \N \N \N 80357 T.floribunda Thibaudia Thibaudia floribunda \N \N \N \N \N 80358 A.aneura Acacia Acacia aneura mulga \N \N \N \N 80359 B.fastuosa Bromelia Bromelia fastuosa \N \N \N \N \N 80360 A.aculeolata Arabis Arabis aculeolata \N \N \N \N \N 80361 G.montanus Gonocarpus Gonocarpus montanus \N \N \N \N \N 80362 N.1386 Nothoscordum Nothoscordum sp. 1386 \N \N \N \N \N 80363 O.onobrychis Orbexilum Orbexilum onobrychis \N \N \N \N \N 80364 N.diffusa Nolana Nolana diffusa \N \N \N \N \N 80365 S.schlechteri Sebaea Sebaea schlechteri \N \N \N \N \N 80366 S.disarticulata Salicornia Salicornia disarticulata \N \N \N \N \N 80367 \N genus Marila \N \N \N \N \N 80368 \N genus Hippia \N \N \N \N \N 80369 T.intermedia Typha Typha intermedia \N \N \N \N \N 80370 P.glacialis Pastinacopsis Pastinacopsis glacialis \N \N \N \N \N 80371 \N subspecies Cleome spinosa subsp. spinosa \N \N \N \N \N 80372 G.undata Geonoma Geonoma undata \N \N \N \N \N 80373 C.2001_29A Crataegus Crataegus sp. 2001_29A \N \N \N \N \N 80374 P.dudleyi Pagamea Pagamea dudleyi \N \N \N \N \N 80375 A.aspilioides Angelphytum Angelphytum aspilioides \N \N \N \N \N 80376 P.sprucei Picrolemma Picrolemma sprucei \N \N \N \N \N 80377 \N genus Corysanthes \N \N \N \N \N 80378 \N subspecies Erigeron thunbergii subsp. glabratus \N \N \N \N \N 80379 \N genus Dendrocnide \N \N \N \N \N 80380 R.angustifolia Rinorea Rinorea angustifolia \N \N \N \N \N 80381 V.corymbosa Vauquelinia Vauquelinia corymbosa \N \N \N \N \N 80382 S.arnezii Solanum Solanum arnezii \N \N \N \N \N 80383 \N genus Polylophium \N \N \N \N \N 80384 M.denticulata Malacomeles Malacomeles denticulata southern false serviceberry \N \N \N \N 80385 P.purpurea Pentas Pentas purpurea \N \N \N \N \N 80386 G.foliolosa Gaultheria Gaultheria foliolosa \N \N \N \N \N 80387 C.longipedunculata Ceraria Ceraria longipedunculata \N \N \N \N \N 80388 \N varietas Delphinium forrestii var. viride \N \N \N \N \N 80389 \N subspecies Galium angustifolium subsp. nudicaule \N \N \N \N \N 80390 H.sanctorum Heteropterys Heteropterys sanctorum \N \N \N \N \N 80391 D.15238 Diplospora Diplospora sp. Bremer 15238 \N \N \N \N \N 80392 C.modestus Canadanthus Canadanthus modestus \N \N \N \N \N 80393 J.globosa Jacquiniella Jacquiniella globosa \N \N \N \N \N 80394 G.prostrata Gaultheria Gaultheria prostrata \N \N \N \N \N 80395 G.integrifolia Gallesia Gallesia integrifolia \N \N \N \N \N 80396 T.longisagittatum Taraxacum Taraxacum longisagittatum \N \N \N \N \N 80397 D.sinuatum Dendrobium Dendrobium sinuatum \N \N \N \N \N 80398 P.inyanganiensis Protea Protea inyanganiensis \N \N \N \N \N 80399 M.goniostigma Miconia Miconia goniostigma \N \N \N \N \N 80400 \N genus Neurada \N \N \N \N \N 80401 S.pachycarpa Sophora Sophora pachycarpa \N \N \N \N \N 80402 B.nyanzarum Brillantaisia Brillantaisia nyanzarum \N \N \N \N \N 80403 P.oxyphylla Polygala Polygala oxyphylla \N \N \N \N \N 80404 C.basalis Coreopsis Coreopsis basalis \N \N \N \N \N 80405 M.longipetala Matthiola Matthiola longipetala \N \N \N \N \N 80406 S.palmeri Sinclairia Sinclairia palmeri \N \N \N \N \N 80407 L.sulfurea Leandra Leandra sulfurea \N \N \N \N \N 80408 C.austrotransvaalensis Cineraria Cineraria austrotransvaalensis \N \N \N \N \N 80409 S.pachyphylla Salvia Salvia pachyphylla \N \N \N \N \N 80410 A.montana Anthyllis Anthyllis montana \N \N \N \N \N 80411 I.auriculata Impatiens Impatiens auriculata \N \N \N \N \N 80412 L.2462 Lichtensteinia Lichtensteinia sp. Downie 2462 \N \N \N \N \N 80413 V.dispar Vitellariopsis Vitellariopsis dispar \N \N \N \N \N 80414 \N genus Wilsonia \N \N \N \N \N 80415 G.trifoliolata Gingidia Gingidia trifoliolata \N \N \N \N \N 80416 I.truxillensis Indigofera Indigofera truxillensis \N \N \N \N \N 80417 E.A-AAA-2006 Eschweilera Eschweilera sp. A-AAA-2006 \N \N \N \N \N 80418 \N genus Bealia \N \N \N \N \N 80419 E.georgei Euphorbia Euphorbia georgei \N \N \N \N \N 80420 P.eburneum Pachypodium Pachypodium eburneum \N \N \N \N \N 80421 C.xanthochortos Cuscuta Cuscuta xanthochortos \N \N \N \N \N 80422 G.aizoon Greenovia Greenovia aizoon \N \N \N \N \N 80423 M.2 Melodorum Melodorum cf. fruticosum Mols 2 \N \N \N \N \N 80424 C.oophora Cousinia Cousinia oophora \N \N \N \N \N 80425 C.902279 Centropogon Centropogon sp. UCBG 902279 \N \N \N \N \N 80426 V.bithynica Vicia Vicia bithynica \N \N \N \N \N 80427 C.O-583 Cynorkis Cynorkis sp. Chase O-583 \N \N \N \N \N 80428 \N genus Henricksonia \N \N \N \N \N 80429 S.19972895 Streptocarpus Streptocarpus sp. 19972895 \N \N \N \N \N 80430 C.heterophylla Chromolepis Chromolepis heterophylla \N \N \N \N \N 80431 C.caloptera Cleistes Cleistes caloptera \N \N \N \N \N 80432 \N genus Gyrocheilos \N \N \N \N \N 80433 D.tripetala Dennettia Dennettia tripetala \N \N \N \N \N 80434 P.militaris Pachycereus Pachycereus militaris \N \N \N \N \N 80435 A.polyphylla Anarthria Anarthria polyphylla \N \N \N \N \N 80436 V.doaniana Vitis Vitis x doaniana \N \N \N \N \N 80437 C.grandicollum Crepidiastrum Crepidiastrum grandicollum \N \N \N \N \N 80438 \N genus Guihaia \N \N \N \N \N 80439 O.calachaccensis Oxalis Oxalis calachaccensis \N \N \N \N \N 80440 T.africana Tessmannia Tessmannia africana nkaga \N \N \N \N 80441 E.tessmannii Eschweilera Eschweilera tessmannii \N \N \N \N \N 80442 S.australis Smilax Smilax australis lawyer-vine \N \N \N \N 80443 D.baccal Delonix Delonix baccal \N \N \N \N \N 80444 O.marlothii Odontophorus Odontophorus marlothii \N \N \N \N \N 80445 \N genus Aridarum \N \N \N \N \N 80446 D.ophrydea Disa Disa ophrydea \N \N \N \N \N 80447 M.candida Mammilloydia Mammilloydia candida \N \N \N \N \N 80448 T.natolicum Thlaspi Thlaspi natolicum \N \N \N \N \N 80449 \N genus Tecticornia \N \N \N \N \N 80450 P.ligularis Passiflora Passiflora ligularis \N \N \N \N \N 80451 A.vulcanicus Astragalus Astragalus vulcanicus \N \N \N \N \N 80452 C.versicolor Caragana Caragana versicolor \N \N \N \N \N 80453 A.paniculata Arabis Arabis paniculata \N \N \N \N \N 80454 O.7411 Ossaea Ossaea aff. incerta Moran 7411 \N \N \N \N \N 80455 \N subspecies Centaurea paniculata subsp. castellana \N \N \N \N \N 80457 C.piercei Coelachyrum Coelachyrum piercei \N \N \N \N \N 80458 \N subspecies Arenaria tetraquetra subsp. amabilis \N \N \N \N \N 80459 E.KMC1998 Epidendrum Epidendrum sp. KMC1998 \N \N \N \N \N 80460 S.'Dibohelo.1' Saintpaulia Saintpaulia cf. velutina 'Dibohelo.1' \N \N \N \N \N 80461 M.californica Micranthes Micranthes californica \N \N \N \N \N 80462 \N genus Honckenya \N \N \N \N \N 80463 L.subulatum Lolium Lolium subulatum \N \N \N \N \N 80464 H.spathulata Hypochaeris Hypochaeris spathulata \N \N \N \N \N 80465 Q.miyagii Quercus Quercus miyagii \N \N \N \N \N 80466 O.perrottetii Odontadenia Odontadenia perrottetii \N \N \N \N \N 80467 \N genus Rapatea \N \N \N \N \N 80468 C.arborescens Calligonum Calligonum arborescens \N \N \N \N \N 80469 F.boliviana Fuchsia Fuchsia boliviana \N \N \N \N \N 80470 T.tau Tambourissa Tambourissa tau \N \N \N \N \N 80471 I.semiretschenskia Incarvillea Incarvillea semiretschenskia \N \N \N \N \N 80472 S.batesii Sedum Sedum batesii \N \N \N \N \N 80473 \N genus Apetahia \N \N \N \N \N 80474 T.benthamiana Thelymitra Thelymitra benthamiana \N \N \N \N \N 80475 D.bacigalupii Deinandra Deinandra bacigalupii \N \N \N \N \N 80476 N.emarginata Noronhia Noronhia emarginata \N \N \N \N \N 80477 H.debile Heterolamium Heterolamium debile \N \N \N \N \N 80478 B.rugosa Berendtia Berendtia rugosa \N \N \N \N \N 80479 S.assamica Shorea Shorea assamica \N \N \N \N \N 80480 P.victoria-mariae Paphiopedilum Paphiopedilum victoria-mariae \N \N \N \N \N 80481 B.anthemoides Boopis Boopis anthemoides \N \N \N \N \N 80482 O.alstonii Oxalis Oxalis alstonii \N \N \N \N \N 80483 \N genus Atractylodes \N \N \N \N \N 80484 \N subspecies Helianthus praecox subsp. runyonii \N \N \N \N \N 80485 \N subspecies Erica abietina subsp. atrorosea \N \N \N \N \N 80486 A.mayrii Alnus Alnus x mayrii \N \N \N \N \N 80487 \N varietas Rosa lucieae var. hakonensis \N \N \N \N \N 80488 \N genus Duckeella \N \N \N \N \N 80489 V.farinosa Veronica Veronica farinosa \N \N \N \N \N 80490 \N genus Frankenia \N \N \N \N \N 80491 E.EsppurpleS Elleanthus Elleanthus sp. EsppurpleS \N \N \N \N \N 80492 M.arborea Moringa Moringa arborea \N \N \N \N \N 80493 M.rhizomata Mentzelia Mentzelia rhizomata \N \N \N \N \N 80494 A.montana Aphyllorchis Aphyllorchis montana \N \N \N \N \N 80495 \N genus Cordylanthus \N \N \N \N \N 80496 D.decipiens Dioscorea Dioscorea decipiens \N \N \N \N \N 80497 D.nervosa Disa Disa nervosa \N \N \N \N \N 80498 A.chartostegius Astragalus Astragalus chartostegius \N \N \N \N \N 80499 L.2000 Lupinus Lupinus sp. CEH 2000 \N \N \N \N \N 80500 S.ambigua Sphaeralcea Sphaeralcea ambigua apricot mallow \N \N \N \N 80501 M.deserticola Moraea Moraea deserticola \N \N \N \N \N 80502 \N genus Lemurosicyos \N \N \N \N \N 80503 L.erythrocarpa Lindera Lindera erythrocarpa \N \N \N \N \N 80504 S.pennata Stipa Stipa pennata \N \N \N \N \N 80505 E.obovatus Elaeocarpus Elaeocarpus obovatus \N \N \N \N \N 80506 S.fulvum Saccharum Saccharum fulvum \N \N \N \N \N 80507 D.charidemi Dianthus Dianthus charidemi \N \N \N \N \N 80508 P.vinaceum Pelargonium Pelargonium vinaceum \N \N \N \N \N 80509 P.roborowskii Parasenecio Parasenecio roborowskii \N \N \N \N \N 80510 F.botschantzevii Ferula Ferula botschantzevii \N \N \N \N \N 80511 P.cardenasii Pedersenia Pedersenia cardenasii \N \N \N \N \N 80512 M.speciosa Monsonia Monsonia speciosa \N \N \N \N \N 80513 \N subspecies Streptanthus glandulosus subsp. pulchellus \N \N \N \N \N 80514 S.arguta Solidago Solidago arguta forest goldenrod \N \N \N \N 80515 A.08004 Aechmea Aechmea sp. 08004 \N \N \N \N \N 80516 L.tomentosa Lychnophora Lychnophora tomentosa \N \N \N \N \N 80517 B.pannosa Berkheya Berkheya pannosa \N \N \N \N \N 80518 E.fontqueri Echinops Echinops fontqueri \N \N \N \N \N 80519 L.nigra Lasiacis Lasiacis nigra \N \N \N \N \N 80520 G.royleana Gymnosporia Gymnosporia royleana \N \N \N \N \N 80521 F.laurifolia Fulcaldea Fulcaldea laurifolia \N \N \N \N \N 80522 T.baregense Trisetum Trisetum baregense \N \N \N \N \N 80523 \N genus Revealia \N \N \N \N \N 80524 O.tenuiloba Oncinotis Oncinotis tenuiloba \N \N \N \N \N 80525 A.humilis Attalea Attalea humilis \N \N \N \N \N 80526 H.byrsonimifolia Heteropterys Heteropterys byrsonimifolia \N \N \N \N \N 80527 X.parvifolia Xylosma Xylosma parvifolia \N \N \N \N \N 80528 C.liliputana Cuscuta Cuscuta liliputana \N \N \N \N \N 80529 V.colostylis Hebe Veronica colostylis \N \N \N \N \N 80530 P.crassinervium Piper Piper crassinervium \N \N \N \N \N 80531 P.laevigata Parameria Parameria laevigata \N \N \N \N \N 80532 C.fasciculatum Clinopodium Clinopodium fasciculatum \N \N \N \N \N 80533 S.arborea Strychnos Strychnos arborea \N \N \N \N \N 80534 \N genus Muscari \N \N \N \N \N 80535 \N genus Homoranthus \N \N \N \N \N 80537 C.degenerans Cyrtandra Cyrtandra degenerans \N \N \N \N \N 80538 S.sericans Schima Schima sericans \N \N \N \N \N 80539 A.assamica Aesculus Aesculus assamica \N \N \N \N \N 80540 H.modesta Hydrocotyle Hydrocotyle modesta \N \N \N \N \N 80541 R.russellii Rhipsalis Rhipsalis russellii \N \N \N \N \N 80542 S.pulvinatus Stenotus Stenotus pulvinatus \N \N \N \N \N 80543 P.mexicanus Podopterus Podopterus mexicanus \N \N \N \N \N 80544 L.paridiformis Lysimachia Lysimachia paridiformis \N \N \N \N \N 80545 C.fansipanensis Cyclea Cyclea fansipanensis \N \N \N \N \N 80546 G.serrata Gazania Gazania serrata \N \N \N \N \N 80547 C.burmannii Cinnamomum Cinnamomum burmannii Batavia cinnamon \N \N \N \N 80548 A.jacquemontii Arisaema Arisaema jacquemontii \N \N \N \N \N 80549 \N genus Trillium \N \N \N \N \N 80550 C.virgata Castilleja Castilleja virgata \N \N \N \N \N 80551 O.sinohenryi Opithandra Opithandra sinohenryi \N \N \N \N \N 80552 T.angustifolia Thomasia Thomasia angustifolia \N \N \N \N \N 80553 \N genus Cattleyopsis \N \N \N \N \N 80554 T.markgrafiana Tabernaemontana Tabernaemontana markgrafiana \N \N \N \N \N 80555 T.4310Hnew unclassified Taraxacum Taraxacum (sect. Dioszegia) sp. 4310Hnew \N \N \N \N \N 80556 C.CAM076 Campanula Campanula sp. CAM076 \N \N \N \N \N 80557 N.laxa Nasa Nasa laxa \N \N \N \N \N 80558 D.oligosperma Draba Draba oligosperma fewseed draba \N \N \N \N 80559 S.odorum Satyrium Satyrium odorum \N \N \N \N \N 80560 C.ehrenbergii Croton Croton ehrenbergii \N \N \N \N \N 80561 P.rotundata Pisonia Pisonia rotundata \N \N \N \N \N 80562 A.crenatiflora Anoda Anoda crenatiflora \N \N \N \N \N 80563 V.atropurpurea Vahlodea Vahlodea atropurpurea \N \N \N \N \N 80564 M.nigrescens Memecylon Memecylon nigrescens \N \N \N \N \N 80565 C.lanuginosus Ceanothus Ceanothus lanuginosus \N \N \N \N \N 80566 A.rotunda Aristolochia Aristolochia rotunda \N \N \N \N \N 80567 \N genus Melanoxylon \N \N \N \N \N 80568 F.pilaloensis Fuchsia Fuchsia pilaloensis \N \N \N \N \N 80569 E.desvauxii Enneapogon Enneapogon desvauxii \N \N \N \N \N 80570 M.pohlii Manihot Manihot pohlii \N \N \N \N \N 80571 C.pumila Carex Carex pumila \N \N \N \N \N 80572 F.sinuata Fockea Fockea sinuata \N \N \N \N \N 80573 S.dictyophylla Stomatanthes Stomatanthes dictyophylla \N \N \N \N \N 80574 T.thyrsoidea Tarasa Tarasa thyrsoidea \N \N \N \N \N 80575 M.nigra Metrodorea Metrodorea nigra \N \N \N \N \N 80576 P.iwatensis Phyllospadix Phyllospadix iwatensis \N \N \N \N \N 80577 S.narenga Saccharum Saccharum narenga \N \N \N \N \N 80578 \N genus Boschniakia \N \N \N \N \N 80579 B.mananjebensis Begonia Begonia mananjebensis \N \N \N \N \N 80580 L.erubescens Leucospermum Leucospermum erubescens \N \N \N \N \N 80581 A.revoluta Aerva Aerva revoluta \N \N \N \N \N 80582 \N genus Crossosoma \N \N \N \N \N 80583 D.henteri Dianthus Dianthus henteri \N \N \N \N \N 80584 P.novogalicianum Piper Piper novogalicianum \N \N \N \N \N 80585 \N subspecies Coelogyne corymbosa subsp. corymbosa \N \N \N \N \N 80586 P.coerulescens Piptatherum Piptatherum coerulescens \N \N \N \N \N 80587 R.thomsonii Rytidosperma Rytidosperma thomsonii \N \N \N \N \N 80588 P.linifolia Pectis Pectis linifolia \N \N \N \N \N 80589 P.mandonii Protoschwenkia Protoschwenkia mandonii \N \N \N \N \N 80590 C.eichleri Croton Croton eichleri \N \N \N \N \N 80591 C.dissecta Cousinia Cousinia dissecta \N \N \N \N \N 80592 L.longitudinale Lepidosperma Lepidosperma longitudinale \N \N \N \N \N 80593 L.jamauensis Linanthus Linanthus jamauensis \N \N \N \N \N 80594 G.polystachya Gnidia Gnidia polystachya \N \N \N \N \N 80595 B.FS741 Bulbophyllum Bulbophyllum sp. FS741 \N \N \N \N \N 80596 H.imbricata Hydrostachys Hydrostachys imbricata \N \N \N \N \N 80597 \N genus Apios \N \N \N \N \N 80598 \N varietas Setaria sphacelata var. sphacelata \N \N \N \N \N 80599 G.violacea Genlisea Genlisea violacea \N \N \N \N \N 80600 \N subspecies Eucalyptus scias subsp. apoda \N \N \N \N \N 80601 P.conzattii Pinguicula Pinguicula conzattii \N \N \N \N \N 80602 S.uvedalia Smallanthus Smallanthus uvedalia \N \N \N \N \N 80603 F.desertorum Filago Filago desertorum \N \N \N \N \N 80604 P.sulfuratum Phoradendron Phoradendron sulfuratum \N \N \N \N \N 80605 A.jacksonii Aloe Aloe aff. jacksonii \N \N \N \N \N 80606 M.ampullacea Masdevallia Masdevallia ampullacea \N \N \N \N \N 80607 S.adenotrichius Senecio Senecio adenotrichius \N \N \N \N \N 80608 C.mitissimus Carduncellus Carduncellus mitissimus \N \N \N \N \N 80609 \N genus Aenigmatanthera \N \N \N \N \N 80610 \N genus Diaphananthe \N \N \N \N \N 80611 M.anomala Moraea Moraea anomala \N \N \N \N \N 80612 \N subspecies Aspalathus cephalotes subsp. violacea \N \N \N \N \N 80613 A.pulchella Acacia Acacia pulchella \N \N \N \N \N 80614 C.jonesii Cyrtandra Cyrtandra jonesii \N \N \N \N \N 80615 S.calycosa Sidalcea Sidalcea calycosa \N \N \N \N \N 80616 S.grahamii Stachys Stachys grahamii \N \N \N \N \N 80617 \N subspecies Felicia filifolia subsp. schlechteri \N \N \N \N \N 80618 A.coronaria Anemone Anemone coronaria \N \N \N \N \N 80619 T.ambigua Tetrapterys Tetrapterys ambigua \N \N \N \N \N 80620 P.andromedea Pterospora Pterospora andromedea pinedrops \N \N \N \N 80621 S.callosa Saxifraga Saxifraga callosa \N \N \N \N \N 80622 P.biolleyi Piper Piper biolleyi \N \N \N \N \N 80623 N.197/00 Nematoceras Nematoceras aff. trilobum Molloy 197/00 \N \N \N \N \N 80624 R.macrobotrys Ribes Ribes macrobotrys \N \N \N \N \N 80625 C.18749 Calamagrostis Calamagrostis cf. emodensis Peterson & Saarela 18749 \N \N \N \N \N 80626 C.ebenoides Centaurea Centaurea ebenoides \N \N \N \N \N 80627 P.nervifolium Pelargonium Pelargonium nervifolium \N \N \N \N \N 80628 H.cymosum Helichrysum Helichrysum cymosum \N \N \N \N \N 80629 H.aurantiacus Hybanthus Hybanthus aurantiacus \N \N \N \N \N 80630 G.herbaceum Gossypium Gossypium herbaceum Arabian cotton \N \N \N \N 80631 C.texanum Cerastium Cerastium texanum \N \N \N \N \N 80632 Z.xishuangbannaense Zingiber Zingiber xishuangbannaense \N \N \N \N \N 80633 C.dichotoma Cymaria Cymaria dichotoma \N \N \N \N \N 80634 L.liniflorus Leptosiphon Leptosiphon liniflorus \N \N \N \N \N 80635 M.foetida Mappia Mappia foetida \N \N \N \N \N 80636 C.fleischeri Crocus Crocus fleischeri \N \N \N \N \N 80637 C.floribunda Catopsis Catopsis floribunda \N \N \N \N \N 80638 N.oblonga Niphaea Niphaea oblonga \N \N \N \N \N 80639 R.2215 Ryssopterys Ryssopterys sp. Motley & Cameron 2215 \N \N \N \N \N 80640 A.malaccensis Actinodaphne Actinodaphne malaccensis \N \N \N \N \N 80641 B.curtisii Brachylophon Brachylophon curtisii \N \N \N \N \N 80642 \N genus Lysionotus \N \N \N \N \N 80643 T.virgineum Taraxacum Taraxacum virgineum \N \N \N \N \N 80644 A.palmeri Amaranthus Amaranthus palmeri \N \N \N \N \N 80645 S.anomala Stipa Stipa anomala \N \N \N \N \N 80646 A.giraldii Ailanthus Ailanthus giraldii \N \N \N \N \N 80647 A.mitchellii Acacia Acacia mitchellii \N \N \N \N \N 80648 S.divaricatus Sphenopus Sphenopus divaricatus \N \N \N \N \N 80649 \N varietas Vigna radiata var. setulosa \N \N \N \N \N 80650 I.patens Indosasa Indosasa patens \N \N \N \N \N 80651 E.ecuadoriensis Erigeron Erigeron ecuadoriensis \N \N \N \N \N 80652 D.newmanii Didymocarpus Didymocarpus newmanii \N \N \N \N \N 80653 C.engleriana Comocladia Comocladia engleriana \N \N \N \N \N 80654 C.angustifolius Crocus Crocus angustifolius \N \N \N \N \N 80655 \N varietas Ophiorrhiza trichocarpon var. glabra \N \N \N \N \N 80656 \N subspecies Reseda muricata subsp. muricata \N \N \N \N \N 80657 M.fasciculatus Malacothamnus Malacothamnus fasciculatus \N \N \N \N \N 80658 M.99-6547 Marantochloa Marantochloa sp. Kress 99-6547 \N \N \N \N \N 80659 S.diffusum Sicydium Sicydium diffusum \N \N \N \N \N 80660 L.tenerrima Lathrocasis Lathrocasis tenerrima \N \N \N \N \N 80661 M.3195 Maxillaria Maxillaria aff. aggregata Whitten 3195 \N \N \N \N \N 80662 N.carunculata Nasa Nasa carunculata \N \N \N \N \N 80663 A.sinensis Alyxia Alyxia sinensis \N \N \N \N \N 80664 P.222 Pseudopeponidium Pseudopeponidium sp. 1 Karehed et al. 222 \N \N \N \N \N 80665 M.elobata Micromyrtus Micromyrtus elobata \N \N \N \N \N 80666 A.organensis Aechmea Aechmea organensis \N \N \N \N \N 80667 T.hirtella Thamnea Thamnea hirtella \N \N \N \N \N 80668 A.champlainensis Ammophila Ammophila champlainensis \N \N \N \N \N 80669 S.longipetala Silene Silene longipetala \N \N \N \N \N 80670 P.peperomiifolia Pilea Pilea peperomiifolia \N \N \N \N \N 80671 \N tribe Gouanieae \N \N \N \N \N 80672 H.arenaria Hedyotis Hedyotis arenaria \N \N \N \N \N 80673 C.dampieri Corymbia Corymbia dampieri \N \N \N \N \N 80674 D.aucheri Didymophysa Didymophysa aucheri \N \N \N \N \N 80675 \N no rank Euphorbiaceae incertae sedis \N \N \N \N \N 80676 \N subspecies Arum italicum subsp. albispathum \N \N \N \N \N 80677 S.chica Selenipedium Selenipedium chica \N \N \N \N \N 80678 \N varietas Fagus grandifolia var. caroliniana \N \N \N \N \N 80679 A.alpinum Aconogonon Aconogonon alpinum \N \N \N \N \N 80680 G.02-589 Globba Globba aff. adhaerens Williams 02-589 \N \N \N \N \N 80681 O.6531 Orobanche Orobanche cf. rosmarina Jeanmonod 6531 \N \N \N \N \N 80682 A.3 Anacampseros Anacampseros sp. 3 \N \N \N \N \N 80683 C.burle-marxii Clusia Clusia burle-marxii \N \N \N \N \N 80684 P.validum Panicum Panicum validum \N \N \N \N \N 80685 L.deckenii Lobelia Lobelia deckenii \N \N \N \N \N 80686 H.grandiuscula Hypolaena Hypolaena grandiuscula \N \N \N \N \N 80687 W.subxerophila Walwhalleya Walwhalleya subxerophila \N \N \N \N \N 80688 \N genus Heinsenia \N \N \N \N \N 80689 I.bourgonii Inga Inga bourgonii \N \N \N \N \N 80690 Z.calycosa Zeltnera Zeltnera calycosa \N \N \N \N \N 80691 A.woronowii Aechmea Aechmea woronowii \N \N \N \N \N 80692 A.runcinata Aphelandra Aphelandra runcinata \N \N \N \N \N 80693 G.gladysiae Gavilea Gavilea gladysiae \N \N \N \N \N 80694 C.60910:1 Canna Canna aff. indica Andersson 60910:1 \N \N \N \N \N 80695 \N genus Kadua \N \N \N \N \N 80696 I.spicata Ipomopsis Ipomopsis spicata \N \N \N \N \N 80697 O.grex-anserinus Ornithocephalus Ornithocephalus grex-anserinus \N \N \N \N \N 80698 C.kobomugi Carex Carex kobomugi \N \N \N \N \N 80699 P.harazianum Phagnalon Phagnalon harazianum \N \N \N \N \N 80700 R.luteum Rhododendron Rhododendron luteum \N \N \N \N \N 80701 S.strictum Schoenoxiphium Schoenoxiphium strictum \N \N \N \N \N 80702 P.battiscombei Parapentas Parapentas battiscombei \N \N \N \N \N 80703 O.gigantea Oxalis Oxalis gigantea \N \N \N \N \N 80704 O.lanceolata Oxandra Oxandra lanceolata \N \N \N \N \N 80705 L.gnaphalodes Leysera Leysera gnaphalodes \N \N \N \N \N 80706 D.radicosa Digitaria Digitaria radicosa \N \N \N \N \N 80707 M.'Rylstone' Monotoca Monotoca sp. 'Rylstone' \N \N \N \N \N 80708 T.occidentalis Telfairia Telfairia occidentalis \N \N \N \N \N 80709 C.pringlei Cobaea Cobaea pringlei \N \N \N \N \N 80710 \N genus Alhagi \N \N \N \N \N 80711 P.vulgaris Primula Primula veris x Primula vulgaris \N \N \N \N \N 80712 L.yuccoides Lobelia Lobelia yuccoides \N \N \N \N \N 80713 \N subspecies Lithodora hispidula subsp. hispidula \N \N \N \N \N 80714 H.scabra Hyoseris Hyoseris scabra \N \N \N \N \N 80715 G.rufum Genoplesium Genoplesium rufum \N \N \N \N \N 80716 P.comosus Phyllanthus Phyllanthus comosus \N \N \N \N \N 80717 N.angustipetala Neoalsomitra Neoalsomitra angustipetala \N \N \N \N \N 80718 C.Rh-76 Ceriops Ceriops sp. KDAIS Rh-76 \N \N \N \N \N 80719 A.bustillosii Argylia Argylia bustillosii \N \N \N \N \N 80720 E.bicolor Eriogonum Eriogonum bicolor \N \N \N \N \N 80721 A.concolor Alibertia Alibertia concolor \N \N \N \N \N 80722 C.thesioides Cynanchum Cynanchum thesioides \N \N \N \N \N 80723 \N genus Hubbardia \N \N \N \N \N 80724 S.longiarista Streblochaete Streblochaete longiarista \N \N \N \N \N 80725 F.laevis Frankenia Frankenia laevis \N \N \N \N \N 80726 N.bahamensis Neobracea Neobracea bahamensis \N \N \N \N \N 80727 C.apiculata Cranichis Cranichis apiculata \N \N \N \N \N 80728 L.microcarpa Lysimachia Lysimachia microcarpa \N \N \N \N \N 80731 M.MDC9266 Mirbelia Mirbelia sp. MDC9266 \N \N \N \N \N 80732 L.2906 Lachnostylis Lachnostylis sp. Archer 2906 \N \N \N \N \N 80733 A.kummeriae Annickia Annickia kummeriae \N \N \N \N \N 80734 S.imbricata Silene Silene imbricata \N \N \N \N \N 80735 T.fragrans Thunbergia Thunbergia fragrans \N \N \N \N \N 80736 L.albertisiana Linospadix Linospadix albertisiana \N \N \N \N \N 80737 A.sinuata Alocasia Alocasia sinuata \N \N \N \N \N 80738 C.olbiensis Carex Carex olbiensis \N \N \N \N \N 80739 \N varietas Lecanorchis japonica var. kiiensis \N \N \N \N \N 80740 Y.maling Yushania Yushania maling \N \N \N \N \N 80741 I.D42 Iris Iris sp. D42 \N \N \N \N \N 80742 \N genus Ophiocolea \N \N \N \N \N 80743 S.tomentosus Styrax Styrax tomentosus \N \N \N \N \N 80744 E.lysistemon Erythrina Erythrina lysistemon \N \N \N \N \N 80745 O.burchellii Otoptera Otoptera burchellii \N \N \N \N \N 80746 A.trichocalycinum Asyneuma Asyneuma trichocalycinum \N \N \N \N \N 80747 M.linearifolium Misodendrum Misodendrum linearifolium \N \N \N \N \N 80748 P.thouvenotii Protorhus Protorhus thouvenotii \N \N \N \N \N 80749 A.marginata Aspalathus Aspalathus marginata \N \N \N \N \N 80750 E.lanata Espostoa Espostoa lanata \N \N \N \N \N 80751 S.barbisetum Solanum Solanum barbisetum \N \N \N \N \N 80752 \N varietas Kengyilia melanthera var. tahopaica \N \N \N \N \N 80753 E.maderi Erica Erica maderi \N \N \N \N \N 80754 L.orcuttii Linanthus Linanthus orcuttii Orcutt's linanthus \N \N \N \N 80755 G.schatzii Gaertnera Gaertnera schatzii \N \N \N \N \N 80756 T.brachyantha Tabernaemontana Tabernaemontana brachyantha \N \N \N \N \N 80757 M.1713 Macaranga Macaranga cf. brachytricha Weiblen 1713 \N \N \N \N \N 80758 I.542 Isolona Isolona sp. Chase 542 \N \N \N \N \N 80759 P.spirillus Potamogeton Potamogeton spirillus \N \N \N \N \N 80760 C.739 Cynodon Cynodon sp. Forest 739 \N \N \N \N \N 80761 D.guerrerensis Dioscorea Dioscorea guerrerensis \N \N \N \N \N 80762 L.lanuginosa Livistona Livistona lanuginosa \N \N \N \N \N 80763 K.pinnata Kalanchoe Kalanchoe pinnata airplant \N \N \N \N 80764 P.vicosanum Piper Piper vicosanum \N \N \N \N \N 80765 \N varietas Neolitsea aurata var. chekiangensis \N \N \N \N \N 80766 P.danckelmannianus Pandanus Pandanus danckelmannianus \N \N \N \N \N 80767 C.longispatha Cardiostigma Cardiostigma longispatha \N \N \N \N \N 80768 \N genus Gonzalagunia \N \N \N \N \N 80769 \N no rank Arceuthobium abietinum f. sp. concoloris \N \N \N \N \N 80770 S.lasiophyllus Sporobolus Sporobolus lasiophyllus \N \N \N \N \N 80771 \N subspecies Streptanthus glandulosus subsp. niger Tiburon jewelflower \N \N \N \N 80772 S.obovatum Sideroxylon Sideroxylon obovatum \N \N \N \N \N 80773 S.cintrana Saxifraga Saxifraga cintrana \N \N \N \N \N 80774 \N varietas Solanum heterodoxum var. heterodoxum \N \N \N \N \N 80775 D.elegans Duvalia Duvalia elegans \N \N \N \N \N 80776 M.laurentii Monodora Monodora laurentii \N \N \N \N \N 80777 P.angustilabia Pleurothallis Pleurothallis angustilabia \N \N \N \N \N 80778 O.galilaea Ophrys Ophrys galilaea \N \N \N \N \N 80779 \N varietas Eriosyce subgibbosa var. litoralis \N \N \N \N \N 80780 \N subspecies Cytisus scoparius subsp. scoparius \N \N \N \N \N 80781 A.mono Acer Acer mono \N \N \N \N \N 80782 \N genus Apteria \N \N \N \N \N 80783 P.WSY0032106-9 Penstemon Penstemon sp. WSY0032106-9 \N \N \N \N \N 80784 Q.ciliaris Quercus Quercus ciliaris \N \N \N \N \N 80785 \N genus Fallopia \N \N \N \N \N 80786 M.garwoodii Mosannona Mosannona garwoodii \N \N \N \N \N 80787 O.rauhii Oeceoclades Oeceoclades rauhii \N \N \N \N \N 80788 \N genus Miqueliopuntia \N \N \N \N \N 80789 \N genus Suckleya \N \N \N \N \N 80790 P.schlimii Phragmipedium Phragmipedium schlimii \N \N \N \N \N 80791 M.corsica Mercurialis Mercurialis corsica \N \N \N \N \N 80792 D.amethystoglossum Dendrobium Dendrobium amethystoglossum \N \N \N \N \N 80793 \N subspecies Dubautia knudsenii subsp. filiformis \N \N \N \N \N 80794 \N varietas Collinsia sparsiflora var. collina \N \N \N \N \N 80795 O.casearia Octolepis Octolepis casearia \N \N \N \N \N 80796 \N genus Kageneckia \N \N \N \N \N 80797 M.filiculmis Muhlenbergia Muhlenbergia filiculmis \N \N \N \N \N 80798 G.phyllostachya Gaertnera Gaertnera phyllostachya \N \N \N \N \N 80799 L.stelleroides Linum Linum stelleroides \N \N \N \N \N 80800 J.minimus Juncus Juncus minimus \N \N \N \N \N 80801 \N genus Macfadyena \N \N \N \N \N 80802 C.paraense Centrolobium Centrolobium paraense \N \N \N \N \N 80803 C.scandens Callicarpa Callicarpa scandens \N \N \N \N \N 80804 O.paniculata Olea Olea paniculata \N \N \N \N \N 80805 P.latifolia Pimelea Pimelea latifolia \N \N \N \N \N 80806 V.brachybotryum Viburnum Viburnum brachybotryum \N \N \N \N \N 80807 A.michauxii Asclepias Asclepias michauxii \N \N \N \N \N 80808 P.YJB-2002 Primula Primula sp. YJB-2002 \N \N \N \N \N 80809 M.matudae Mammillaria Mammillaria matudae \N \N \N \N \N 80810 W.fosteri Warneckea Warneckea fosteri \N \N \N \N \N 80811 P.050804-1 Primula Primula sp. Schoenswetter & Tribsch 050804-1 \N \N \N \N \N 80812 L.tetraquetra Leandra Leandra tetraquetra \N \N \N \N \N 80813 C.leiophyllum Cremastosperma Cremastosperma leiophyllum \N \N \N \N \N 80814 P.fastigiatum Pachycladon Pachycladon fastigiatum \N \N \N \N \N 80815 H.linearis Heliophila Heliophila linearis \N \N \N \N \N 80816 B.macranthum Bulbophyllum Bulbophyllum macranthum \N \N \N \N \N 80817 H.yixianensis Hilliella Hilliella yixianensis \N \N \N \N \N 80818 \N family Balanophoraceae \N \N \N \N \N 80819 G.s.n. Grevea Grevea sp. Thulin et al. s.n. \N \N \N \N \N 80820 S.macranthus Symbolanthus Symbolanthus macranthus \N \N \N \N \N 80821 P.chilensis Porlieria Porlieria chilensis \N \N \N \N \N 80822 Q.Bue215_235 Quercus Quercus cf. robur Bue215_235 \N \N \N \N \N 80823 \N genus Psoralidium \N \N \N \N \N 80824 M.dodsonii Mandevilla Mandevilla dodsonii \N \N \N \N \N 80825 E.heterosperma Eichhornia Eichhornia heterosperma \N \N \N \N \N 80826 \N varietas Arisaema nikoense var. australe \N \N \N \N \N 80827 M.tubulosa Malesherbia Malesherbia tubulosa \N \N \N \N \N 80828 \N genus Trigonocapnos \N \N \N \N \N 80829 R.costata Ruprechtia Ruprechtia costata \N \N \N \N \N 80830 K.secundiflora Krameria Krameria secundiflora \N \N \N \N \N 80831 T.crocea Triteleia Triteleia crocea \N \N \N \N \N 80832 S.miyabeana Salix Salix miyabeana \N \N \N \N \N 80833 C.tomentosa Chusquea Chusquea tomentosa \N \N \N \N \N 80834 I.oblonga Indigofera Indigofera oblonga \N \N \N \N \N 80835 Z.latifolia Zeugites Zeugites latifolia \N \N \N \N \N 80836 H.gracilis Hornstedtia Hornstedtia gracilis \N \N \N \N \N 80837 \N subspecies Camassia quamash subsp. walpolei \N \N \N \N \N 80838 R.pallida Rosularia Rosularia pallida \N \N \N \N \N 80839 C.grammatus Chimonanthus Chimonanthus grammatus \N \N \N \N \N 80840 A.sororia Anisophyllea Anisophyllea sororia \N \N \N \N \N 80841 \N varietas Delphinium delavayi var. pogonanthum \N \N \N \N \N 80842 D.scardica Draba Draba scardica \N \N \N \N \N 80843 \N genus Harnackia \N \N \N \N \N 80844 C.parviflora Cleome Cleome parviflora \N \N \N \N \N 80845 H.nanum Hymenidium Hymenidium nanum \N \N \N \N \N 80846 \N subspecies Virectaria major subsp. spathulata \N \N \N \N \N 80847 E.pubens Epilobium Epilobium pubens \N \N \N \N \N 80848 K.pumila Kniphofia Kniphofia pumila \N \N \N \N \N 80849 H.ciliata Hoya Hoya ciliata \N \N \N \N \N 80850 E.lignosa Erica Erica lignosa \N \N \N \N \N 80851 A.PA4A0222 Abrus Abrus sp. PA4A0222 \N \N \N \N \N 80852 S.fuscescens Salix Salix fuscescens \N \N \N \N \N 80853 P.renschiana Pulicaria Pulicaria renschiana \N \N \N \N \N 80854 P.bifida Pedicularis Pedicularis bifida \N \N \N \N \N 80855 T.dicoccoides Triticum Triticum dicoccoides wild emmer wheat \N \N \N \N 80856 L.tenerrima Lactuca Lactuca tenerrima \N \N \N \N \N 80857 \N genus Dalzellia \N \N \N \N \N 80858 P.mexiae Piper Piper mexiae \N \N \N \N \N 80859 M.capitata Microcorys Microcorys capitata \N \N \N \N \N 80860 \N genus Pycnosphaera \N \N \N \N \N 80861 C.etonia Conradina Conradina etonia \N \N \N \N \N 80862 \N genus Gloeocarpus \N \N \N \N \N 80863 M.camptotricha Mammillaria Mammillaria camptotricha \N \N \N \N \N 80864 P.cooperi Pterygodium Pterygodium cooperi \N \N \N \N \N 80865 \N subspecies Astragalus vesicarius subsp. vesicarius \N \N \N \N \N 80866 \N genus Physalis \N \N \N \N \N 80867 \N subfamily Coronantheroideae \N \N \N \N \N 80868 \N genus Endertia \N \N \N \N \N 80869 F.michailovskyi Fritillaria Fritillaria michailovskyi \N \N \N \N \N 80870 A.glabrata Alloschmidia Alloschmidia glabrata \N \N \N \N \N 80871 D.inquisiviana Draba Draba inquisiviana \N \N \N \N \N 80872 A.korupensis Afrothismia Afrothismia korupensis \N \N \N \N \N 80873 P.calcicola Pimelea Pimelea calcicola \N \N \N \N \N 80874 D.spinescens Dasyphyllum Dasyphyllum spinescens \N \N \N \N \N 80875 C.goeldiana Cordia Cordia goeldiana Brazilian-walnut,frei-jorge,imbuia \N \N \N \N 80876 \N genus Mathewsia \N \N \N \N \N 80877 P.ternifolia Pavetta Pavetta ternifolia \N \N \N \N \N 80878 P.radiciflora Pariana Pariana radiciflora \N \N \N \N \N 80879 \N genus Gagria \N \N \N \N \N 80880 K.lukei Keetia Keetia lukei \N \N \N \N \N 80881 T.gansuensis Tamarix Tamarix gansuensis \N \N \N \N \N 80882 E.plumerioides Euphorbia Euphorbia plumerioides \N \N \N \N \N 80883 A.wrightii Acoelorraphe Acoelorraphe wrightii \N \N \N \N \N 80884 M.amygdalinum Mecranium Mecranium amygdalinum \N \N \N \N \N 80885 S.divaricata Sachsia Sachsia divaricata \N \N \N \N \N 80886 A.laoticus Amorphophallus Amorphophallus laoticus \N \N \N \N \N 80887 E.wasabi Eutrema Eutrema wasabi wasabe \N \N \N \N 80888 A.reconditum Aenictophyton Aenictophyton reconditum \N \N \N \N \N 80889 P.remota Poa Poa remota \N \N \N \N \N 80890 C.montevidense Citharexylum Citharexylum montevidense \N \N \N \N \N 80891 A.nipponicum Anthoxanthum Anthoxanthum nipponicum \N \N \N \N \N 80892 C.ichangensis Citrus Citrus ichangensis Ichang papeda \N \N \N \N 80893 \N subspecies Stipa pennata subsp. eriocaulis \N \N \N \N \N 80894 K.stenocarpa Kotschyella Kotschyella stenocarpa \N \N \N \N \N 80895 C.tenuiflora Carex Carex tenuiflora \N \N \N \N \N 80896 \N subspecies Oenothera flava subsp. taraxacoides \N \N \N \N \N 80897 L.unicolor Lachenalia Lachenalia unicolor \N \N \N \N \N 80898 P.candollei Pueraria Pueraria candollei \N \N \N \N \N 80899 \N genus Larnax \N \N \N \N \N 80900 L.congesta Leea Leea congesta \N \N \N \N \N 80901 \N subspecies Horkelia bolanderi subsp. bolanderi \N \N \N \N \N 80902 S.Creek' Syzygium Syzygium sp. 'Noah Creek' \N \N \N \N \N 80903 C.pseudotenuis Calamus Calamus pseudotenuis \N \N \N \N \N 80904 \N genus Knowltonia \N \N \N \N \N 80905 C.hirtigera Cyrtandra Cyrtandra hirtigera \N \N \N \N \N 80906 K.integrifolia Kalanchoe Kalanchoe integrifolia \N \N \N \N \N 80907 J.ichu Jarava Jarava ichu \N \N \N \N \N 80908 A.heterophyllum Aconitum Aconitum heterophyllum \N \N \N \N \N 80909 A.holosericea Achillea Achillea holosericea \N \N \N \N \N 80910 G.boerhaviifolia Grabowskia Grabowskia boerhaviifolia \N \N \N \N \N 80911 M.obversa Marlierea Marlierea obversa \N \N \N \N \N 80912 V.sinuatum Verbascum Verbascum sinuatum \N \N \N \N \N 80913 E.ferreirianus Echinocereus Echinocereus ferreirianus \N \N \N \N \N 80914 A.alata Acacia Acacia alata \N \N \N \N \N 80915 C.rakotonasoloi Coffea Coffea rakotonasoloi \N \N \N \N \N 80916 D.californica Dithyrea Dithyrea californica \N \N \N \N \N 80917 K.dipsacifolia Knautia Knautia dipsacifolia \N \N \N \N \N 80918 S.chinensis Salvia Salvia chinensis \N \N \N \N \N 80919 I.rubra Ilex Ilex rubra \N \N \N \N \N 80920 T.albertiana Tillandsia Tillandsia albertiana \N \N \N \N \N 80921 A.cardiophyllum Asarum Asarum cardiophyllum \N \N \N \N \N 80922 B.bracteata Bonatea Bonatea bracteata \N \N \N \N \N 80923 S.laciniatum Solanum Solanum laciniatum \N \N \N \N \N 80924 T.glaucophyllum Taraxacum Taraxacum glaucophyllum \N \N \N \N \N 80925 C.hookerana Carex Carex hookerana \N \N \N \N \N 80926 S.densa Scaphyglottis Scaphyglottis densa \N \N \N \N \N 80927 C.guioliana Crepis Crepis guioliana \N \N \N \N \N 80928 L.ludoviciana Limnophila Limnophila x ludoviciana \N \N \N \N \N 80929 T.urartu Triticum Triticum urartu \N \N \N \N \N 80930 S.mandonii Silene Silene mandonii \N \N \N \N \N 80931 \N genus Saccharum \N \N \N \N \N 80932 E.pectinatus Echinocereus Echinocereus pectinatus \N \N \N \N \N 80933 A.ciliata Androsace Androsace ciliata \N \N \N \N \N 80934 P.macrophylla Prenanthes Prenanthes macrophylla \N \N \N \N \N 80935 A.reitzii Angelphytum Angelphytum reitzii \N \N \N \N \N 80936 P.pseudobreviramosa Plagiostachys Plagiostachys pseudobreviramosa \N \N \N \N \N 80937 A.chama Artocarpus Artocarpus chama chaplash \N \N \N \N 80938 \N varietas Hibiscus sabdariffa var. altissima \N \N \N \N \N 80939 \N varietas Rhynchospora consanguinea var. subrigida \N \N \N \N \N 80940 S.darienensis Strychnos Strychnos darienensis \N \N \N \N \N 80941 D.barkeriae Dahlia Dahlia barkeriae \N \N \N \N \N 80942 \N subspecies Kniphofia ensifolia subsp. autumnalis \N \N \N \N \N 80943 C.erinacea Caragana Caragana erinacea \N \N \N \N \N 80944 C.aschersoniana Cobaea Cobaea aschersoniana \N \N \N \N \N 80945 S.cernua Setaria Setaria cernua \N \N \N \N \N 80946 L.huigrensis Lupinus Lupinus huigrensis \N \N \N \N \N 80947 \N genus Pfaffia \N \N \N \N \N 80948 H.fulva Hexatheca Hexatheca fulva \N \N \N \N \N 80949 A.subulata Austrocylindropuntia Austrocylindropuntia subulata \N \N \N \N \N 80950 P.2583 Planchonella Planchonella sp. Munzinger 2583 \N \N \N \N \N 80951 M.wrightii Muhlenbergia Muhlenbergia wrightii \N \N \N \N \N 80952 A.margaretae Apetahia Apetahia margaretae \N \N \N \N \N 80953 M.latifolium Macropiper Macropiper latifolium \N \N \N \N \N 80954 A.angustifolius Aeschynanthus Aeschynanthus angustifolius \N \N \N \N \N 80955 G.bilocularis Gongrodiscus Gongrodiscus bilocularis \N \N \N \N \N 80956 B.oreodorum Bulbophyllum Bulbophyllum oreodorum \N \N \N \N \N 80957 D.togoensis Dioscorea Dioscorea togoensis \N \N \N \N \N 80958 V.poasanum Vaccinium Vaccinium poasanum \N \N \N \N \N 80959 E.SL-2011 Echinodorus Echinodorus cf. opacus SL-2011 \N \N \N \N \N 80960 L.lalambensis Lotus Lotus lalambensis \N \N \N \N \N 80961 D.maguirei Draba Draba maguirei Maguire's draba \N \N \N \N 80962 M.montanum Melampodium Melampodium montanum \N \N \N \N \N 80963 C.naja Coelogyne Coelogyne naja \N \N \N \N \N 80964 P.indecora Passiflora Passiflora indecora \N \N \N \N \N 80965 O.atrovirens Oenothera Oenothera atrovirens \N \N \N \N \N 80966 \N genus Lasiodiscus \N \N \N \N \N 80967 E.pulchella Eriachne Eriachne pulchella \N \N \N \N \N 80968 S.hastatus Stenocactus Stenocactus hastatus \N \N \N \N \N 80969 I.amplidentata Ixora Ixora amplidentata \N \N \N \N \N 80970 E.occidentalis Euthamia Euthamia occidentalis \N \N \N \N \N 80971 C.razafindratsiraea Crinum Crinum razafindratsiraea \N \N \N \N \N 80972 S.malaccense Syzygium Syzygium malaccense Malay-apple,pomerac \N \N \N \N 80973 \N genus Lepilaena \N \N \N \N \N 80974 C.windischii Chusquea Chusquea windischii \N \N \N \N \N 80975 \N genus Tetrachyron \N \N \N \N \N 80976 P.reniformis Plantago Plantago reniformis \N \N \N \N \N 80977 A.pekinense Achnatherum Achnatherum pekinense \N \N \N \N \N 80978 T.trichocarpum Toxicodendron Toxicodendron trichocarpum \N \N \N \N \N 80979 N.albimarginatus Narcissus Narcissus albimarginatus \N \N \N \N \N 80980 M.AK-2007 Metastelma Metastelma sp. 1 AK-2007 \N \N \N \N \N 80981 T.thespesioides Thespesia Thespesia thespesioides \N \N \N \N \N 80982 P.pungens Plectrachne Plectrachne pungens \N \N \N \N \N 80983 P.tenuifolium Ptilotrichum Ptilotrichum tenuifolium \N \N \N \N \N 80984 B.nana Beta Beta nana \N \N \N \N \N 80985 C.aurea Calpurnia Calpurnia aurea \N \N \N \N \N 80986 P.turbinata Polyclita Polyclita turbinata \N \N \N \N \N 80987 \N genus Didymosalpinx \N \N \N \N \N 80988 C.mathewsiana Crocosmia Crocosmia mathewsiana \N \N \N \N \N 80989 \N varietas Salix caprea var. sericea \N \N \N \N \N 80990 T.elephantina Typha Typha elephantina \N \N \N \N \N 80991 E.chevallieri Eremophyton Eremophyton chevallieri \N \N \N \N \N 80992 B.graebneriana Buckleya Buckleya graebneriana \N \N \N \N \N 80993 P.dentoceras Polygonum Polygonum dentoceras \N \N \N \N \N 80994 A.DAP-2004-3 Arachis Arachis sp. DAP-2004-3 \N \N \N \N \N 80995 \N no rank unclassified Pomaderreae \N \N \N \N \N 80996 \N tribe Bathiorhamneae \N \N \N \N \N 80997 A.japonicus Alopecurus Alopecurus japonicus \N \N \N \N \N 80998 F.heteromorpha Ficus Ficus heteromorpha \N \N \N \N \N 80999 L.brachystylus Loncomelos Loncomelos brachystylus \N \N \N \N \N 81000 S.zizyphoides Symplocos Symplocos zizyphoides \N \N \N \N \N 81001 G.wendlandianus Gasteranthus Gasteranthus wendlandianus \N \N \N \N \N 81002 P.lepidula Poa Poa lepidula \N \N \N \N \N 81003 E.resinosa Ericameria Ericameria resinosa \N \N \N \N \N 81004 E.africanus Eriocephalus Eriocephalus africanus \N \N \N \N \N 81005 A.352 Ampelopsis Ampelopsis sp. Nie 352 \N \N \N \N \N 81006 A.smithii Aeonium Aeonium smithii \N \N \N \N \N 81007 P.grandifolia Pilea Pilea grandifolia \N \N \N \N \N 81008 \N varietas Thysanocarpus curvipes var. longistylus \N \N \N \N \N 81009 E.glaciale Eryngium Eryngium glaciale \N \N \N \N \N 81010 T.capitata Turnera Turnera capitata \N \N \N \N \N 81011 L.pulcher Lithocarpus Lithocarpus pulcher \N \N \N \N \N 81012 H.micrantha Heuchera Heuchera micrantha alumroot \N \N \N \N 81013 C.hirsuta Cupania Cupania hirsuta \N \N \N \N \N 81014 P.micranthum Paphiopedilum Paphiopedilum micranthum \N \N \N \N \N 81015 G.schlechteri Gigasiphon Gigasiphon schlechteri \N \N \N \N \N 81016 P.SH-2010 Pellionia Pellionia sp. SH-2010 \N \N \N \N \N 81017 S.davurica Saussurea Saussurea davurica \N \N \N \N \N 81018 P.lutea Parnassia Parnassia lutea \N \N \N \N \N 81019 F.longaeva Furcraea Furcraea longaeva \N \N \N \N \N 81020 \N varietas Berberis amurensis var. latifolia \N \N \N \N \N 81021 D.NSW720059 Diuris Diuris aff. alba NSW720059 \N \N \N \N \N 81022 R.megaphylla Rhaphidophora Rhaphidophora megaphylla \N \N \N \N \N 81023 S.leucanthum Sparattosperma Sparattosperma leucanthum \N \N \N \N \N 81024 J.spicigera Justicia Justicia spicigera \N \N \N \N \N 81025 \N genus Hebecoccus \N \N \N \N \N 81026 \N subspecies Genista hirsuta subsp. lanuginosa \N \N \N \N \N 81027 \N genus Cochlioda \N \N \N \N \N 81028 T.virginiana Tradescantia Tradescantia virginiana Virginia spiderwort \N \N \N \N 81029 C.tardiflora Carpolepis Carpolepis tardiflora \N \N \N \N \N 81030 G.somaliense Goydera Goydera somaliense \N \N \N \N \N 81031 C.cacalaco Caesalpinia Caesalpinia cacalaco \N \N \N \N \N 81032 M.acuminata Miconia Miconia acuminata \N \N \N \N \N 81033 H.palmeri Hesperelaea Hesperelaea palmeri \N \N \N \N \N 81034 R.rh6216 Rheum Rheum sp. Liu rh6216 \N \N \N \N \N 81035 P.oplismenoides Poecilostachys Poecilostachys oplismenoides \N \N \N \N \N 81036 \N subspecies Arabidopsis halleri subsp. ovirensis \N \N \N \N \N 81037 C.crucensis Chamaedorea Chamaedorea crucensis \N \N \N \N \N 81038 M.SH-2010 Maurocenia Maurocenia sp. SH-2010 \N \N \N \N \N 81039 P.setigera Pilea Pilea setigera \N \N \N \N \N 81040 A.stolonifera Agrostis Agrostis gigantea x Agrostis stolonifera \N \N \N \N \N 81041 P.bifaria Psychotria Psychotria bifaria \N \N \N \N \N 81042 M.cubatanensis Miconia Miconia cubatanensis \N \N \N \N \N 81043 P.thodei Phylica Phylica thodei \N \N \N \N \N 81044 P.cana Packera Packera cana \N \N \N \N \N 81045 B.conjuncta Bidens Bidens conjuncta \N \N \N \N \N 81046 M.saccifera Macaranga Macaranga saccifera \N \N \N \N \N 81047 I.amelanchier Ilex Ilex amelanchier sarvis holly,swamp holly \N \N \N \N 81048 C.rottlerifolius Croton Croton rottlerifolius \N \N \N \N \N 81049 T.mollissima Tarenna Tarenna mollissima \N \N \N \N \N 81050 P.ptychandra Pradosia Pradosia ptychandra \N \N \N \N \N 81051 \N genus Andrographis \N \N \N \N \N 81052 G.cilicicus Galanthus Galanthus cilicicus \N \N \N \N \N 81053 D.candida Dulacia Dulacia candida \N \N \N \N \N 81054 \N varietas Ficus variegata var. chlorocarpa \N \N \N \N \N 81055 M.14476 Marila Marila sp. van der Werff et al. 14476 \N \N \N \N \N 81056 P.cauliflora Pavonia Pavonia cauliflora \N \N \N \N \N 81057 S.cambrensis Senecio Senecio cambrensis Welsh ragwort \N \N \N \N 81058 O.prasinum Ornithogalum Ornithogalum prasinum \N \N \N \N \N 81059 \N tribe Epacrideae \N \N \N \N \N 81060 E.globosa Euphorbia Euphorbia globosa \N \N \N \N \N 81061 C.aurescens Cyclopia Cyclopia aurescens \N \N \N \N \N 81062 S.africanus Sporobolus Sporobolus africanus \N \N \N \N \N 81063 \N subspecies Daucus carota subsp. drepanensis \N \N \N \N \N 81064 R.cordata Ruellia Ruellia cordata \N \N \N \N \N 81065 E.simulans Euphorbia Euphorbia simulans \N \N \N \N \N 81066 M.syriaca Medicago Medicago syriaca \N \N \N \N \N 81067 A.hispanicum Antirrhinum Antirrhinum majus x Antirrhinum hispanicum \N \N \N \N \N 81068 E.squamigera Eriotheca Eriotheca squamigera \N \N \N \N \N 81069 E.taiwanense Epithema Epithema taiwanense \N \N \N \N \N 81070 O.buhseana Onobrychis Onobrychis buhseana \N \N \N \N \N 81071 \N genus Exacum \N \N \N \N \N 81072 A.sino-proliferum Aconitum Aconitum sino-proliferum \N \N \N \N \N 81073 O.exasperata Olea Olea exasperata \N \N \N \N \N 81074 S.oblongata Stachyopsis Stachyopsis oblongata \N \N \N \N \N 81075 \N genus Notechidnopsis \N \N \N \N \N 81076 S.baicalensis Scutellaria Scutellaria baicalensis Baikal skullcap \N \N \N \N 81077 \N genus Dendropanax \N \N \N \N \N 81078 M.arcana Melaleuca Melaleuca arcana \N \N \N \N \N 81079 I.wilsonii Iris Iris wilsonii \N \N \N \N \N 81080 S.bracteatus Silvianthus Silvianthus bracteatus \N \N \N \N \N 81081 \N genus Myrrhidendron \N \N \N \N \N 81082 P.hirtiglumis Pentameris sect. Pentameris Pentameris hirtiglumis \N \N \N \N \N 81083 A.syreistschikowii Arenaria Arenaria syreistschikowii \N \N \N \N \N 81084 C.mazama Collomia Collomia mazama \N \N \N \N \N 81085 S.pricei Saussurea Saussurea pricei \N \N \N \N \N 81086 P.toona Paraserianthes Paraserianthes toona \N \N \N \N \N 81087 I.lactea Iris Iris lactea \N \N \N \N \N 81088 N.buchtienii Notylia Notylia buchtienii \N \N \N \N \N 81089 C.sphacioticum Cynoglossum Cynoglossum sphacioticum \N \N \N \N \N 81090 O.fortunei Osmanthus Osmanthus x fortunei \N \N \N \N \N 81091 P.aschersonianum Polygonum Polygonum aschersonianum \N \N \N \N \N 81092 T.isaloensis Tina Tina isaloensis \N \N \N \N \N 81093 S.suave Sium Sium suave \N \N \N \N \N 81094 S.virens Sophronitis Sophronitis virens \N \N \N \N \N 81095 S.milanjianus Streptocarpus Streptocarpus milanjianus \N \N \N \N \N 81096 P.ornatum Philodendron Philodendron ornatum \N \N \N \N \N 81097 \N subspecies Quercus petraea subsp. petraea \N \N \N \N \N 81098 C.strophiolata Coopernookia Coopernookia strophiolata \N \N \N \N \N 81099 S.inerme Sideroxylon Sideroxylon inerme \N \N \N \N \N 81100 I.trigonelloides Indigofera Indigofera trigonelloides \N \N \N \N \N 81101 T.pinnatum Thalictrum Thalictrum pinnatum \N \N \N \N \N 81102 A.neopodlechii Astragalus Astragalus neopodlechii \N \N \N \N \N 81103 \N genus Calocephalus \N \N \N \N \N 81104 \N genus Pleuricospora \N \N \N \N \N 81105 \N genus Monnina \N \N \N \N \N 81106 B.1561A Boholia Boholia sp. Bicknell 1561A \N \N \N \N \N 81107 E.glomerata Erycibe Erycibe glomerata \N \N \N \N \N 81108 S.excelsum Sciadodendron Sciadodendron excelsum \N \N \N \N \N 81109 C.12713 Cyrtandra Cyrtandra sp. Wiriadinata 12713 \N \N \N \N \N 81110 N.valenzuelana Neobracea Neobracea valenzuelana \N \N \N \N \N 81111 \N genus Symphonia \N \N \N \N \N 81112 P.pedersenii Panicum Panicum pedersenii \N \N \N \N \N 81113 A.6383 Allium Allium sp. GAT 6383 \N \N \N \N \N 81114 S.microbotrys Sambucus Sambucus microbotrys \N \N \N \N \N 81115 L.coreana Litsea Litsea coreana \N \N \N \N \N 81116 H.filiformis Hypoxis Hypoxis filiformis \N \N \N \N \N 81117 L.seemannii Luehea Luehea seemannii \N \N \N \N \N 81118 O.MO490 Oxalis Oxalis cf. tragopoda MO490 \N \N \N \N \N 81119 Z.xiangchengensis Ziziphus Ziziphus xiangchengensis \N \N \N \N \N 81120 P.paniculata Pseudocaryopteris Pseudocaryopteris paniculata \N \N \N \N \N 81121 L.barbatum Lamium Lamium barbatum \N \N \N \N \N 81122 K.fedtschenkoi Kalanchoe Kalanchoe fedtschenkoi South American air plant,lavender-scallops \N \N \N \N 81123 P.notobellidiastrum Podocoma Podocoma notobellidiastrum \N \N \N \N \N 81124 V.calthifolia Villarsia Villarsia calthifolia \N \N \N \N \N 81125 E.capensis Ehrharta Ehrharta capensis \N \N \N \N \N 81126 H.fraseri Hypericum Hypericum fraseri \N \N \N \N \N 81127 \N genus Kegeliella \N \N \N \N \N 81128 \N genus Cardamine bittercress,bittercresses \N \N \N \N 81129 B.xerophyta Bauhinia Bauhinia xerophyta \N \N \N \N \N 81130 M.macrophylla Mediasia Mediasia macrophylla \N \N \N \N \N 81131 T.290 Tillandsia Tillandsia sp. Granados 290 \N \N \N \N \N 81132 \N tribe Brachyelytreae \N \N \N \N \N 81133 F.mollis Fagonia Fagonia mollis \N \N \N \N \N 81134 I.11220 Iris Iris aff. bucharica Chase 11220 \N \N \N \N \N 81135 O.malcomberi Ocotea Ocotea malcomberi \N \N \N \N \N 81136 A.aspera Achyranthes Achyranthes aspera \N \N \N \N \N 81137 F.tibetica Fragaria Fragaria tibetica \N \N \N \N \N 81138 A.erioloba Acacia Acacia erioloba \N \N \N \N \N 81139 S.argopetalum Solanum Solanum argopetalum \N \N \N \N \N 81140 R.hirsutum Rhododendron Rhododendron hirsutum \N \N \N \N \N 81141 L.stachydiformis Leucas Leucas stachydiformis \N \N \N \N \N 81142 S.disticha Shorea Shorea disticha \N \N \N \N \N 81143 \N genus Oziroe \N \N \N \N \N 81144 R.cicutarius Ranunculus Ranunculus cicutarius \N \N \N \N \N 81145 P.havardii Prunus Prunus havardii \N \N \N \N \N 81146 \N varietas Oldenlandia herbacea var. goetzei \N \N \N \N \N 81147 H.dissectus Homalocarpus Homalocarpus dissectus \N \N \N \N \N 81148 C.yuhsienensis Camellia Camellia yuhsienensis \N \N \N \N \N 81149 C.incanescens Centaurea Centaurea incanescens \N \N \N \N \N 81150 F.sansibarica Ficus Ficus sansibarica \N \N \N \N \N 81151 E.songoricum Eremosparton Eremosparton songoricum \N \N \N \N \N 81152 A.subverticillata Asclepias Asclepias subverticillata \N \N \N \N \N 81153 C.heterosavia Clusia Clusia heterosavia \N \N \N \N \N 81154 \N tribe Phoeniceae \N \N \N \N \N 81155 S.bullii Synthyris Synthyris bullii \N \N \N \N \N 81156 P.endlicherianum Pelargonium Pelargonium endlicherianum \N \N \N \N \N 81157 \N genus Phitosia \N \N \N \N \N 81158 C.cyrtophyllum Clerodendrum Clerodendrum cyrtophyllum \N \N \N \N \N 81159 \N genus Erioneuron \N \N \N \N \N 81160 M.serpylloides Muraltia Muraltia serpylloides \N \N \N \N \N 81161 T.depauperatum Trifolium Trifolium depauperatum \N \N \N \N \N 81162 P.acuminatum Phagnalon Phagnalon acuminatum \N \N \N \N \N 81163 A.ovata Asclepias Asclepias ovata \N \N \N \N \N 81164 A.citrodora Aloysia Aloysia citrodora lemon verbena \N \N \N \N 81165 A.pusillus Athysanus Athysanus pusillus \N \N \N \N \N 81166 L.168 Lupinus Lupinus sp. Eastwood 168 \N \N \N \N \N 81167 C.occidentalis Celtis Celtis occidentalis common hackberry \N \N \N \N 81168 S.lisianthoides Schultesia Schultesia lisianthoides \N \N \N \N \N 81169 B.vestita Bremeria Bremeria vestita \N \N \N \N \N 81170 A.kungshanense Acer Acer kungshanense \N \N \N \N \N 81171 M.maguirei Macrocarpaea Macrocarpaea maguirei \N \N \N \N \N 81172 \N varietas Eriogonum corymbosum var. corymbosum \N \N \N \N \N 81173 E.hirta Euphorbia Euphorbia hirta asthma-plant,garden spurge \N \N \N \N 81174 C.SH-2010 Cleidion Cleidion sp. SH-2010 \N \N \N \N \N 81175 I.SH-2010 Irvingbaileya Irvingbaileya sp. SH-2010 \N \N \N \N \N 81176 \N subspecies Chuquiraga ulicina subsp. ulicina \N \N \N \N \N 81177 S.purpurea Stipa Stipa purpurea \N \N \N \N \N 81178 \N varietas Astragalus kentrophyta var. implexus \N \N \N \N \N 81179 R.barahonensis Rondeletia Rondeletia barahonensis \N \N \N \N \N 81180 S.aphylla Saxifraga Saxifraga aphylla \N \N \N \N \N 81181 M.gemmulata Mimosa Mimosa gemmulata \N \N \N \N \N 81182 C.illinoinensis Carya Carya illinoinensis pecan \N \N \N \N 81183 R.cordatum Rughidia Rughidia cordatum \N \N \N \N \N 81184 C.filiformis Cassytha Cassytha filiformis love vine \N \N \N \N 81185 R.gracilis Ranunculus Ranunculus gracilis \N \N \N \N \N 81186 D.incana Dicrastylis Dicrastylis incana \N \N \N \N \N 81187 J.prismatocarpus Juncus Juncus prismatocarpus \N \N \N \N \N 81188 G.epetiolata Geonoma Geonoma epetiolata \N \N \N \N \N 81189 \N genus Puya \N \N \N \N \N 81190 O.constrictum Ornithogalum Ornithogalum constrictum \N \N \N \N \N 81191 \N subspecies Momordica charantia subsp. charantia \N \N \N \N \N 81192 \N genus Bonetiella \N \N \N \N \N 81193 \N tribe Cardiochlamyeae \N \N \N \N \N 81194 T.tremula Tremulina Tremulina tremula \N \N \N \N \N 81195 P.megalantha Potentilla Potentilla megalantha \N \N \N \N \N 81196 \N genus Aganisia \N \N \N \N \N 81197 I.fanshawei Indigofera Indigofera fanshawei \N \N \N \N \N 81198 A.hubrichtii Amsonia Amsonia hubrichtii \N \N \N \N \N 81199 \N no rank environmental samples Taxonomy:1096671 \N \N \N \N \N 81200 O.lutea Ophrys Ophrys lutea \N \N \N \N \N 81201 \N tribe Diurideae \N \N \N \N \N 81202 L.auriculata Liparis Liparis auriculata \N \N \N \N \N 81203 G.microfistulosa Gagea Gagea microfistulosa \N \N \N \N \N 81204 B.AH-2005 Brachyscome Brachyscome aff. curvicarpa AH-2005 \N \N \N \N \N 81205 P.divaricata Pteronia Pteronia divaricata \N \N \N \N \N 81206 \N genus Hondurodendron \N \N \N \N \N 81207 V.leiocarpa Ventilago Ventilago leiocarpa \N \N \N \N \N 81208 T.heterospermus Tragopogon Tragopogon heterospermus \N \N \N \N \N 81209 \N subspecies Saxifraga oppositifolia subsp. smalliana \N \N \N \N \N 81210 D.sanderiana Dracaena Dracaena sanderiana \N \N \N \N \N 81211 E.scaber Enneapogon Enneapogon scaber \N \N \N \N \N 81212 \N genus Catalpa \N \N \N \N \N 81213 I.schaffneri Iresine Iresine schaffneri \N \N \N \N \N 81214 P.longipes Pectinaria Pectinaria longipes \N \N \N \N \N 81215 A.australis Astragalus Astragalus australis \N \N \N \N \N 81216 E.pedunculosum Elatostema Elatostema pedunculosum \N \N \N \N \N 81217 S.glabrescens Salsola Salsola glabrescens \N \N \N \N \N 81218 G.laytoni Gastrolobium Gastrolobium laytoni \N \N \N \N \N 81219 A.calcis Australopyrum Australopyrum calcis \N \N \N \N \N 81220 T.408aa Tovomita Tovomita sp. HG 408aa \N \N \N \N \N 81221 \N subspecies Malacothrix foliosa subsp. polycephala \N \N \N \N \N 81222 P.arctica Physaria Physaria arctica \N \N \N \N \N 81223 \N genus Ramphicarpa \N \N \N \N \N 81224 \N genus Monstera \N \N \N \N \N 81225 \N genus Spathicalyx \N \N \N \N \N 81226 \N subspecies Heracleum austriacum subsp. siifolium \N \N \N \N \N 81227 \N genus Aphanopetalum \N \N \N \N \N 81228 \N genus Stenachaenium \N \N \N \N \N 81229 N.adenosiphon Nautilocalyx Nautilocalyx adenosiphon \N \N \N \N \N 81230 P.atrosanguineum Panicum Panicum atrosanguineum \N \N \N \N \N 81231 R.assamensis Rubus Rubus assamensis \N \N \N \N \N 81232 \N genus Casasia \N \N \N \N \N 81233 C.deltoidea Crassula Crassula deltoidea \N \N \N \N \N 81234 N.saluenensis Nomocharis Nomocharis saluenensis \N \N \N \N \N 81235 S.calygonus Symbolanthus Symbolanthus calygonus \N \N \N \N \N 81236 \N varietas Panicum coloratum var. makarikariensis \N \N \N \N \N 81237 H.micranthum Hesperolinon Hesperolinon micranthum \N \N \N \N \N 81238 P.amphorellae Penstemon Penstemon amphorellae \N \N \N \N \N 81239 A.purpurea Agalinis Agalinis purpurea \N \N \N \N \N 81240 O.citriodorum Ochrosperma Ochrosperma citriodorum \N \N \N \N \N 81241 D.exilis Digitaria Digitaria exilis \N \N \N \N \N 81242 S.parvistipulata Shorea Shorea parvistipulata \N \N \N \N \N 81243 S.pubescens Saxifraga Saxifraga pubescens \N \N \N \N \N 81244 \N family Joinvilleaceae \N \N \N \N \N 81245 B.glaucescens Blepharodon Blepharodon glaucescens \N \N \N \N \N 81246 \N genus Pabellonia \N \N \N \N \N 81247 B.microcarpa Bilacunaria Bilacunaria microcarpa \N \N \N \N \N 81248 \N family Argophyllaceae \N \N \N \N \N 81249 P.atriplicina Pityrodia Pityrodia atriplicina \N \N \N \N \N 81250 C.multicaulis Coleostephus Coleostephus multicaulis \N \N \N \N \N 81251 S.389 Stenoptera Stenoptera sp. Trujillo 389 \N \N \N \N \N 81252 S.marilandica Scrophularia Scrophularia marilandica carpenter's-square,pilewort \N \N \N \N 81253 P.224 Polyalthia Polyalthia cf. glabra Rastini 224 \N \N \N \N \N 81254 \N genus Phelipanche \N \N \N \N \N 81255 C.intratropica Cryptandra Cryptandra intratropica \N \N \N \N \N 81256 S.h158 Scilla Scilla cf. bulgarica h158 \N \N \N \N \N 81257 D.madagascariensis Decarya Decarya madagascariensis \N \N \N \N \N 81258 M.maximus Megathyrsus Megathyrsus maximus Guinea grass \N \N \N \N 81259 H.quadrifaria Hemigraphis Hemigraphis quadrifaria \N \N \N \N \N 81260 P.laevigatus Penstemon Penstemon laevigatus eastern smooth beardtongue \N \N \N \N 81261 L.decumbens Linum Linum decumbens \N \N \N \N \N 81262 P.ruber Phyllanthus Phyllanthus ruber \N \N \N \N \N 81263 S.pacificum Solanum Solanum pacificum \N \N \N \N \N 81264 W.globosa Wolffia Wolffia globosa \N \N \N \N \N 81265 F.gracilipes Fagopyrum Fagopyrum gracilipes \N \N \N \N \N 81266 B.cymosa Bowkeria Bowkeria cymosa \N \N \N \N \N 81267 \N genus Wiesneria \N \N \N \N \N 81268 C.citrinus Callistemon Callistemon citrinus \N \N \N \N \N 81269 R.perplexus Restio Restio perplexus \N \N \N \N \N 81270 G.speciosum Geum Geum speciosum \N \N \N \N \N 81271 A.mahidolae Afgekia Afgekia mahidolae \N \N \N \N \N 81272 C.thyrsiflora Calceolaria Calceolaria thyrsiflora \N \N \N \N \N 81273 E.esteriana Erica Erica esteriana \N \N \N \N \N 81274 S.hainanensis Stephania Stephania hainanensis \N \N \N \N \N 81275 \N genus Pseudoconyza \N \N \N \N \N 81276 W.samoensis Weinmannia Weinmannia samoensis \N \N \N \N \N 81277 G.guaranitica Glandularia Glandularia guaranitica \N \N \N \N \N 81278 P.newberryi Potentilla Potentilla newberryi \N \N \N \N \N 81279 H.graveolens Hypericum Hypericum graveolens \N \N \N \N \N 81280 \N subspecies Rafnia rostrata subsp. rostrata \N \N \N \N \N 81281 A.japonica Astilbe Astilbe japonica \N \N \N \N \N 81282 L.chinensis Leymus Leymus chinensis \N \N \N \N \N 81283 A.reticulata Alepidea Alepidea reticulata \N \N \N \N \N 81284 G.20975 Guatteria Guatteria cf. pilosula Stergio et al. 20975 \N \N \N \N \N 81285 A.praeirroratum Androcymbium Androcymbium praeirroratum \N \N \N \N \N 81286 M.guttatus Mimulus Mimulus luteus x Mimulus guttatus \N \N \N \N \N 81287 P.klotzschii Polygala Polygala klotzschii \N \N \N \N \N 81288 B.longifolia Briggsia Briggsia longifolia \N \N \N \N \N 81289 S.multispicula Staberoha Staberoha multispicula \N \N \N \N \N 81290 R.tomentosa Rhodomyrtus Rhodomyrtus tomentosa \N \N \N \N \N 81291 B.sparsiflora Boechera Boechera sparsiflora sicklepod rockcress \N \N \N \N 81292 C.chilensis Cleome Cleome chilensis \N \N \N \N \N 81293 P.elachista Pultenaea Pultenaea elachista \N \N \N \N \N 81294 W.guianensis Whittonia Whittonia guianensis \N \N \N \N \N 81295 I.tinctoria Indigofera Indigofera tinctoria \N \N \N \N \N 81296 I.sanguinea Indigofera Indigofera sanguinea \N \N \N \N \N 81297 G.JFS-2010 Gasteranthus Gasteranthus sp. JFS-2010 \N \N \N \N \N 81298 G.canosoi Gentianella Gentianella canosoi \N \N \N \N \N 81299 \N tribe Cynodonteae \N \N \N \N \N 81300 \N varietas Banksia leptophylla var. melletica \N \N \N \N \N 81301 F.pseudomangifera Ficus Ficus pseudomangifera \N \N \N \N \N 81302 K.sicula Kundmannia Kundmannia sicula \N \N \N \N \N 81303 C.JHL-2011 Cypripedium Cypripedium aff. macranthos JHL-2011 \N \N \N \N \N 81304 A.caudata Amelichloa Amelichloa caudata \N \N \N \N \N 81305 M.nigricans Mucuna Mucuna nigricans \N \N \N \N \N 81306 \N subspecies Gymnocalycium anisitsii subsp. anisitsii \N \N \N \N \N 81307 A.pumila Arctostaphylos Arctostaphylos pumila \N \N \N \N \N 81308 A.acoma Acomis Acomis acoma \N \N \N \N \N 81309 C.elaeagnoides Combretum Combretum elaeagnoides \N \N \N \N \N 81310 A.corymbosum Anthericum Anthericum corymbosum \N \N \N \N \N 81311 \N genus Caesulia \N \N \N \N \N 81312 M.laui Mammillaria Mammillaria laui \N \N \N \N \N 81313 B.setigerum Bulbophyllum Bulbophyllum setigerum \N \N \N \N \N 81314 H.megalantha Hedyotis Hedyotis megalantha \N \N \N \N \N 81315 O.120006 Oberonia Oberonia sp. Heidelberg BG 120006 \N \N \N \N \N 81316 P.holciforme Piptatherum Piptatherum holciforme \N \N \N \N \N 81317 Q.oidocarpa Quercus Quercus oidocarpa \N \N \N \N \N 81318 A.orientalis Asperula Asperula orientalis \N \N \N \N \N 81319 O.bahia-blancae Oenothera Oenothera bahia-blancae \N \N \N \N \N 81320 C.parviflora Castilleja Castilleja parviflora \N \N \N \N \N 81321 B.tomentosa Basselinia Basselinia tomentosa \N \N \N \N \N 81322 B.pinnatum Brachypodium Brachypodium pinnatum \N \N \N \N \N 81323 C.simplicifolius Calamus Calamus simplicifolius \N \N \N \N \N 81324 B.pinnatifolium Bunium Bunium pinnatifolium \N \N \N \N \N 81325 V.woodii Veratrum Veratrum woodii \N \N \N \N \N 81326 \N genus Tassadia \N \N \N \N \N 81327 \N genus Geostachys \N \N \N \N \N 81328 L.multiflora Lysipomia Lysipomia multiflora \N \N \N \N \N 81329 C.koktebelica Crambe Crambe koktebelica \N \N \N \N \N 81330 T.longissima x Aegilotriticum Triticum aestivum x Aegilops longissima \N \N \N \N \N 81331 \N family Myrothamnaceae \N \N \N \N \N 81332 P.campanulata Physalis Physalis campanulata \N \N \N \N \N 81333 \N varietas Globba patens var. costulata \N \N \N \N \N 81334 F.pilosus Ferocactus Ferocactus pilosus \N \N \N \N \N 81335 D.longipetala Deuterocohnia Deuterocohnia longipetala \N \N \N \N \N 81336 \N subtribe Lycastinae \N \N \N \N \N 81337 L.leptalea Lasthenia Lasthenia leptalea \N \N \N \N \N 81338 \N genus Melasphaerula \N \N \N \N \N 81339 A.brachybotrya Acacia Acacia brachybotrya \N \N \N \N \N 81340 D.laciniata Dorobaea Dorobaea laciniata \N \N \N \N \N 81341 L.aethiopicum Limeum Limeum aethiopicum \N \N \N \N \N 81342 M.densiflora Macrotomia Macrotomia densiflora \N \N \N \N \N 81343 P.chiapasanus Phaseolus Phaseolus chiapasanus \N \N \N \N \N 81344 \N tribe Hyacintheae \N \N \N \N \N 81345 R.SH-2010 Rauvolfia Rauvolfia sp. SH-2010 \N \N \N \N \N 81346 \N genus Rhoogeton \N \N \N \N \N 81347 P.asuntapatensis Pfeiffera Pfeiffera asuntapatensis \N \N \N \N \N 81348 S.galapagense Solanum Solanum galapagense \N \N \N \N \N 81349 P.5395 Polyscias Polyscias sp. Lowry 5395 \N \N \N \N \N 81350 P.ajanensis Parrya Parrya ajanensis \N \N \N \N \N 81351 P.pyrifolia Phthirusa Phthirusa pyrifolia \N \N \N \N \N 81352 V.chamaedrys Veronica Veronica chamaedrys germander speedwell \N \N \N \N 81353 P.breviculus Penstemon Penstemon breviculus \N \N \N \N \N 81354 D.pubescens Drepananthus Drepananthus pubescens \N \N \N \N \N 81355 L.cinereus Leymus Leymus cinereus \N \N \N \N \N 81356 P.suffultum Polygonum Polygonum suffultum \N \N \N \N \N 81357 C.spinosa Centaurea Centaurea spinosa \N \N \N \N \N 81358 J.medranoi Justicia Justicia medranoi \N \N \N \N \N 81359 M.luteoalba Maxillaria Maxillaria luteoalba \N \N \N \N \N 81360 M.sessiliflora Mammea Mammea sessiliflora \N \N \N \N \N 81361 R.godleyanus Ranunculus Ranunculus godleyanus \N \N \N \N \N 81362 D.bicornutus Desmanthus Desmanthus bicornutus \N \N \N \N \N 81363 S.runcinata Stephanomeria Stephanomeria runcinata \N \N \N \N \N 81364 P.longifolia Potentilla Potentilla longifolia \N \N \N \N \N 81365 S.dunedinensis Senecio Senecio dunedinensis \N \N \N \N \N 81366 \N genus Coula \N \N \N \N \N 81367 \N subspecies Leucaena collinsii subsp. zacapana \N \N \N \N \N 81368 \N subspecies Papaver alpinum subsp. tatricum \N \N \N \N \N 81369 G.monticola Gladiolus Gladiolus monticola \N \N \N \N \N 81370 P.chryseus Phyllanthus Phyllanthus chryseus \N \N \N \N \N 81371 S.faguetioides Shorea Shorea faguetioides \N \N \N \N \N 81372 T.amethystina Tricyrtis Tricyrtis amethystina \N \N \N \N \N 81373 K.2092 Kokoona Kokoona sp. Chase 2092 \N \N \N \N \N 81374 A.setaceus Asparagus Asparagus setaceus \N \N \N \N \N 81375 \N subspecies Gymnocalycium glaucum subsp. glaucum \N \N \N \N \N 81376 P.cordifolius Podopterus Podopterus cordifolius \N \N \N \N \N 81377 T.paniculatus Thamnochortus Thamnochortus paniculatus \N \N \N \N \N 81378 D.orthacanthos Desmoncus Desmoncus orthacanthos \N \N \N \N \N 81379 \N genus Ungnadia \N \N \N \N \N 81380 \N subspecies Silene vulgaris subsp. angustifolia \N \N \N \N \N 81381 M.citrifolia Morinda Morinda citrifolia Indian mulberry,awl tree \N \N \N \N 81382 \N genus Bowlesia \N \N \N \N \N 81383 A.tohokuense Asarum Asarum tohokuense \N \N \N \N \N 81384 \N genus Lasiocephalus \N \N \N \N \N 81385 T.splendens Trichocarya Trichocarya splendens \N \N \N \N \N 81386 E.minutum Epilobium Epilobium minutum \N \N \N \N \N 81387 A.formosa Anchusa Anchusa formosa \N \N \N \N \N 81388 R.aromatica Rhus Rhus aromatica \N \N \N \N \N 81389 A.warburgii Alocasia Alocasia warburgii \N \N \N \N \N 81390 P.sanguinea Potentilla Potentilla sanguinea \N \N \N \N \N 81391 C.polyodonta Camellia Camellia polyodonta \N \N \N \N \N 81392 C.subsessilis Callichilia Callichilia subsessilis \N \N \N \N \N 81393 C.triplex Cryptandra Cryptandra triplex \N \N \N \N \N 81394 D.frutescens Diospyros Diospyros frutescens \N \N \N \N \N 81395 \N subspecies Carlina acanthifolia subsp. utzka \N \N \N \N \N 81396 M.ciliata Moraea Moraea ciliata \N \N \N \N \N 81397 A.minuta Amaryllis Amaryllis minuta \N \N \N \N \N 81398 S.anomala Stipagrostis Stipagrostis anomala \N \N \N \N \N 81399 \N subspecies Silene sedoides subsp. runemarkii \N \N \N \N \N 81400 A.potaninii Adenophora Adenophora potaninii \N \N \N \N \N 81401 S.natalensis Sarcocornia Sarcocornia natalensis \N \N \N \N \N 81402 P.drummondiana Poa Poa drummondiana \N \N \N \N \N 81403 \N no rank Oncidium Gower Ramsey \N \N \N \N \N 81404 O.holubyana Ophrys Ophrys holubyana \N \N \N \N \N 81405 T.TL212-3 unclassified Taraxacum Taraxacum (sect. Naevosa) sp. TL212-3 \N \N \N \N \N 81406 M.2650 Molineria Molineria aff. latifolia Bogner 2650 \N \N \N \N \N 81407 H.tetrapterum Hypericum Hypericum tetrapterum \N \N \N \N \N 81408 H.AC639 Harrisia Harrisia sp. AC639 \N \N \N \N \N 81409 G.cassinoides Gymnosporia Gymnosporia cassinoides peralillo \N \N \N \N 81410 A.rothrockii Artemisia Artemisia rothrockii \N \N \N \N \N 81411 P.aequatorialis Puya Puya aequatorialis \N \N \N \N \N 81412 B.spicata Byrsonima Byrsonima spicata \N \N \N \N \N 81413 W.cinnamomoides Warneckea Warneckea cinnamomoides \N \N \N \N \N 81414 V.hornschuchiana Valeriana Valeriana hornschuchiana \N \N \N \N \N 81415 \N genus Prosopidastrum \N \N \N \N \N 81416 A.marauensis Andira Andira marauensis \N \N \N \N \N 81417 M.websteri Meineckia Meineckia websteri \N \N \N \N \N 81418 A.eketensis Argocoffeopsis Argocoffeopsis eketensis \N \N \N \N \N 81419 P.formosana Pterocypsela Pterocypsela formosana \N \N \N \N \N 81420 \N genus Fockea \N \N \N \N \N 81421 C.pilosa Chaetopoa Chaetopoa pilosa \N \N \N \N \N 81422 B.amphioxus Begonia Begonia amphioxus \N \N \N \N \N 81423 C.castaneus Chrysopogon Chrysopogon castaneus \N \N \N \N \N 81424 M.tahuantinsuyuana Macrocarpaea Macrocarpaea tahuantinsuyuana \N \N \N \N \N 81425 A.bruggeri Aechmea Aechmea bruggeri \N \N \N \N \N 81426 C.ledebouriana Campanula Campanula ledebouriana \N \N \N \N \N 81427 V.diffusa Villadia Villadia diffusa \N \N \N \N \N 81428 T.laurina Tristaniopsis Tristaniopsis laurina \N \N \N \N \N 81429 L.pudens Lachnaea Lachnaea pudens \N \N \N \N \N 81430 \N subspecies Senecio lautus subsp. lautus \N \N \N \N \N 81431 P.zombamontana Psychotria Psychotria zombamontana \N \N \N \N \N 81432 S.pygmaeum Satyrium Satyrium pygmaeum \N \N \N \N \N 81433 A.subbaeticum Antirrhinum Antirrhinum subbaeticum \N \N \N \N \N 81434 \N varietas Rhododendron metternichii var. hondoense \N \N \N \N \N 81435 C.glaucum Chenopodium Chenopodium glaucum oakleaf goosefoot \N \N \N \N 81436 G.grandiflorus Gladiolus Gladiolus grandiflorus \N \N \N \N \N 81437 A.flabellum Atriplex Atriplex flabellum \N \N \N \N \N 81438 C.grandifolia Commiphora Commiphora grandifolia \N \N \N \N \N 81439 N.3679 Nemesia Nemesia aff. versicolor Steiner 3679 \N \N \N \N \N 81440 D.grandiflora Digitalis Digitalis grandiflora yellow foxglove \N \N \N \N 81441 L.indica Lagerstroemia Lagerstroemia indica crape-myrtle,zi wei \N \N \N \N 81442 \N subspecies Euphorbia stygiana subsp. stygiana \N \N \N \N \N 81443 S.9461a Sarcocornia Sarcocornia sp. Gutte & Moeller 9461a \N \N \N \N \N 81444 D.osana Dalechampia Dalechampia osana \N \N \N \N \N 81445 A.albidum Allium Allium albidum \N \N \N \N \N 81446 \N subspecies Crocus biflorus subsp. nubigena \N \N \N \N \N 81447 M.brevipes Morinda Morinda brevipes \N \N \N \N \N 81448 \N subspecies Lysimachia remyi subsp. subherbacea \N \N \N \N \N 81449 \N genus Ampelozizyphus \N \N \N \N \N 81450 M.multicaulis Mentzelia Mentzelia multicaulis \N \N \N \N \N 81451 S.DOB-2010 Stackhousia Stackhousia sp. 1 DOB-2010 \N \N \N \N \N 81452 R.racemosum Rytidosperma Rytidosperma racemosum \N \N \N \N \N 81453 \N subspecies Digitalis obscura subsp. laciniata \N \N \N \N \N 81454 T.muelleri Terminalia Terminalia muelleri \N \N \N \N \N 81455 P.cacuminum Parnassia Parnassia cacuminum \N \N \N \N \N 81456 P.hospitalis Palicourea Palicourea hospitalis \N \N \N \N \N 81457 Z.KI37 Zeylanidium Zeylanidium sp. KI37 \N \N \N \N \N 81458 G.verum Galium Galium verum \N \N \N \N \N 81459 B.acuminata Bursera Bursera acuminata \N \N \N \N \N 81460 A.glutinosum Aeonium Aeonium glutinosum \N \N \N \N \N 81461 F.pallens Festuca Festuca pallens \N \N \N \N \N 81462 J.havanensis Jacquemontia Jacquemontia havanensis \N \N \N \N \N 81463 \N genus Bellonia \N \N \N \N \N 81464 D.nubigena Deschampsia Deschampsia nubigena \N \N \N \N \N 81465 L.tinctum Leucadendron Leucadendron tinctum \N \N \N \N \N 81466 C.426187 Carthamus Carthamus sp. PI 426187 \N \N \N \N \N 81467 L.melanantha Lespedeza Lespedeza melanantha \N \N \N \N \N 81468 T.guatemalensis Tillandsia Tillandsia guatemalensis \N \N \N \N \N 81469 N.rosea Neomortonia Neomortonia rosea \N \N \N \N \N 81470 L.strigosus Lotus Lotus strigosus \N \N \N \N \N 81471 I.SJ-2008 Impatiens Impatiens sp. SJ-2008 \N \N \N \N \N 81472 \N genus Synandra \N \N \N \N \N 81473 W.laevis Wrightia Wrightia laevis \N \N \N \N \N 81474 \N subspecies Stachys recta subsp. subcrenata \N \N \N \N \N 81475 P.alba Polygala Polygala alba \N \N \N \N \N 81476 M.harlequina Masdevallia Masdevallia harlequina \N \N \N \N \N 81477 M.sanderiana Maxillaria Maxillaria sanderiana \N \N \N \N \N 81478 L.strangulata Lagenophora Lagenophora strangulata \N \N \N \N \N 81479 T.leucothrix Tristachya Tristachya leucothrix \N \N \N \N \N 81480 P.papposa Pectis Pectis papposa \N \N \N \N \N 81481 P.australis Polylepis Polylepis australis \N \N \N \N \N 81482 W.angustifolia Wilkiea Wilkiea angustifolia \N \N \N \N \N 81483 E.3536 Euphorbia Euphorbia sp. Booth 3536 \N \N \N \N \N 81484 F.vallis-choudae Ficus Ficus vallis-choudae \N \N \N \N \N 81485 S.MD-2010 Sobralia Sobralia cf. madisonii MD-2010 \N \N \N \N \N 81486 D.polyphyllum Dracontium Dracontium polyphyllum \N \N \N \N \N 81487 \N genus Fuertesia \N \N \N \N \N 81488 M.martinii Michelia Michelia martinii \N \N \N \N \N 81489 \N genus Cephalanthus buttonbushes \N \N \N \N 81490 R.thora Ranunculus Ranunculus thora \N \N \N \N \N 81491 P.venulosum Peponidium Peponidium venulosum \N \N \N \N \N 81492 C.pycnoloba Crataegus Crataegus pycnoloba \N \N \N \N \N 81493 K.cynanchica Kohautia Kohautia cynanchica \N \N \N \N \N 81494 E.greyi Erica Erica greyi \N \N \N \N \N 81495 V.yeshanensis Vitis Vitis yeshanensis \N \N \N \N \N 81496 \N varietas Iris proantha var. valida \N \N \N \N \N 81497 \N varietas Begonia acetosella var. hirtifolia \N \N \N \N \N 81498 C.cristatus Cynosurus Cynosurus cristatus crested dogstail grass \N \N \N \N 81499 S.langsdorffii Swartzia Swartzia langsdorffii \N \N \N \N \N 81500 A.traillii Aciphylla Aciphylla traillii \N \N \N \N \N 81501 C.oxyandra Carex Carex oxyandra \N \N \N \N \N 81502 S.parvifolius Syncolostemon Syncolostemon parvifolius \N \N \N \N \N 81503 D.confertifolia Draba Draba confertifolia \N \N \N \N \N 81504 I.liberica Iodes Iodes liberica \N \N \N \N \N 81505 C.aladaghensis Centaurea Centaurea aladaghensis \N \N \N \N \N 81506 D.senilis Dontostemon Dontostemon senilis \N \N \N \N \N 81507 D.polyandra Dodonaea Dodonaea polyandra \N \N \N \N \N 81508 E.caninus Elymus Elymus caninus \N \N \N \N \N 81509 \N subtribe Holcinae \N \N \N \N \N 81510 P.DJW-2004 Plowmanianthus Plowmanianthus sp. DJW-2004 \N \N \N \N \N 81511 L.phaseolifolius Lonchocarpus Lonchocarpus phaseolifolius \N \N \N \N \N 81512 R.obtusifolius Rumex Rumex obtusifolius bitter dock \N \N \N \N 81513 A.0016 Alpinia Alpinia cf. aenea Argent et al. 0016 \N \N \N \N \N 81514 S.hoggariensis Senecio Senecio hoggariensis \N \N \N \N \N 81515 A.thibautiana Aerides Aerides thibautiana \N \N \N \N \N 81516 \N subspecies Centaurea cariensis subsp. maculiceps \N \N \N \N \N 81517 C.subavenium Cinnamomum Cinnamomum subavenium \N \N \N \N \N 81518 \N genus Indigastrum \N \N \N \N \N 81519 N.yepesii Narcissus Narcissus yepesii \N \N \N \N \N 81520 \N genus Ericksonella \N \N \N \N \N 81521 \N genus Zannichellia \N \N \N \N \N 81523 A.purissima Arctostaphylos Arctostaphylos purissima \N \N \N \N \N 81524 S.resa Syzygium Syzygium resa \N \N \N \N \N 81525 A.ionocalyx Arabis Arabis ionocalyx \N \N \N \N \N 81526 \N genus Salacca \N \N \N \N \N 81527 \N family Schoepfiaceae \N \N \N \N \N 81528 M.shiluensis Michelia Michelia shiluensis \N \N \N \N \N 81529 A.obtusifolia Agalinis Agalinis obtusifolia \N \N \N \N \N 81530 L.lupinifolia Lotononis Lotononis lupinifolia \N \N \N \N \N 81531 L.aquatica Lobelia Lobelia aquatica \N \N \N \N \N 81532 \N varietas Salvia glabrescens var. purpureomaculata \N \N \N \N \N 81533 D.violacea Dioclea Dioclea violacea \N \N \N \N \N 81534 E.grayana Eubotryoides Eubotryoides grayana \N \N \N \N \N 81535 C.timothei Calathea Calathea timothei \N \N \N \N \N 81536 S.crassulifolius Senecio Senecio crassulifolius \N \N \N \N \N 81537 M.schiedeana Mammillaria Mammillaria schiedeana \N \N \N \N \N 81538 \N varietas Morinda citrifolia var. potteri \N \N \N \N \N 81539 \N genus Gleasonia \N \N \N \N \N 81540 E.bahiensis Eragrostis Eragrostis bahiensis \N \N \N \N \N 81541 B.biternata Bidens Bidens biternata \N \N \N \N \N 81542 C.jalpanensis Coryphantha Coryphantha jalpanensis \N \N \N \N \N 81543 P.elatior Portulaca Portulaca elatior \N \N \N \N \N 81544 P.venosa Phalaenopsis Phalaenopsis venosa \N \N \N \N \N 81545 C.aeruginosa Curcuma Curcuma aeruginosa \N \N \N \N \N 81546 D.primulinum Dendrobium Dendrobium primulinum \N \N \N \N \N 81547 P.Beteta Pinguicula Pinguicula sp. Hoz de Beteta \N \N \N \N \N 81548 P.peltigera Pentapeltis Pentapeltis peltigera \N \N \N \N \N 81549 L.madreporoides Lennoa Lennoa madreporoides \N \N \N \N \N 81550 \N genus Strophostyles \N \N \N \N \N 81551 \N varietas Antenoron filiforme var. neofiliforme \N \N \N \N \N 81552 P.ramburei Prunus Prunus ramburei \N \N \N \N \N 81553 Z.persica Zagrosia Zagrosia persica \N \N \N \N \N 81554 A.salsoloides Acantholippia Acantholippia salsoloides \N \N \N \N \N 81555 \N genus Kanahia \N \N \N \N \N 81556 D.zygophylloides Drosanthemum Drosanthemum zygophylloides \N \N \N \N \N 81557 \N varietas Platanthera dilatata var. albiflora \N \N \N \N \N 81558 A.dianthiflora Alsobia Alsobia dianthiflora \N \N \N \N \N 81559 T.aureum Trifolium Trifolium aureum large trefoil \N \N \N \N 81560 A.humilis Ardisia Ardisia humilis \N \N \N \N \N 81561 A.holopsilus Astragalus Astragalus holopsilus \N \N \N \N \N 81562 N.tenuis Nemastylis Nemastylis tenuis \N \N \N \N \N 81563 V.amazonica Victoria Victoria cf. amazonica \N \N \N \N \N 81564 S.platacanthum Solanum Solanum platacanthum \N \N \N \N \N 81565 A.furcatus Axonopus Axonopus furcatus \N \N \N \N \N 81566 A.chonta Astrocaryum Astrocaryum chonta \N \N \N \N \N 81567 W.kohkemperi Westoniella Westoniella kohkemperi \N \N \N \N \N 81568 \N genus Blainvillea \N \N \N \N \N 81569 D.daunea Dioscorea Dioscorea daunea \N \N \N \N \N 81570 P.rubriflora Pilea Pilea rubriflora \N \N \N \N \N 81571 S.cordata Sida Sida cordata \N \N \N \N \N 81572 S.wallisii Spathiphyllum Spathiphyllum wallisii \N \N \N \N \N 81573 H.pastinaca Heracleum Heracleum pastinaca \N \N \N \N \N 81574 T.pubescens Tapeinochilos Tapeinochilos pubescens \N \N \N \N \N 81575 C.resinosa Conostylis Conostylis resinosa \N \N \N \N \N 81576 B.valida Begonia Begonia valida \N \N \N \N \N 81577 \N subspecies Lecythis persistens subsp. aurantiaca \N \N \N \N \N 81578 T.hamabo Talipariti Talipariti hamabo \N \N \N \N \N 81579 O.tenuiflora Onosma Onosma tenuiflora \N \N \N \N \N 81580 P.firmipes Primula Primula firmipes \N \N \N \N \N 81581 F.columnaris Fouquieria Fouquieria columnaris boojum tree \N \N \N \N 81582 P.angolensis Pycnanthus Pycnanthus angolensis \N \N \N \N \N 81583 C.klugii Chaetocalyx Chaetocalyx klugii \N \N \N \N \N 81584 C.ludovicianum Codiaeum Codiaeum ludovicianum \N \N \N \N \N 81585 S.lindenbergiana Setaria Setaria lindenbergiana \N \N \N \N \N 81586 P.kaduana Psychotria Psychotria kaduana \N \N \N \N \N 81587 A.macrobotrys Astragalus Astragalus macrobotrys \N \N \N \N \N 81588 C.pulchella Cuscuta Cuscuta pulchella \N \N \N \N \N 81589 G.multiflorum Gelonium Gelonium multiflorum \N \N \N \N \N 81590 G.mendozae Graptopetalum Graptopetalum mendozae \N \N \N \N \N 81591 \N varietas Passiflora tripartita var. mollissima banana passionfruit,curuba de castilla,tacso,tumbo \N \N \N \N 81592 D.coccinea Diphelypaea Diphelypaea coccinea \N \N \N \N \N 81593 B.matitanense Bulbophyllum Bulbophyllum matitanense \N \N \N \N \N 81594 A.apricus Astragalus Astragalus apricus \N \N \N \N \N 81595 A.rotundum Aglaonema Aglaonema rotundum \N \N \N \N \N 81596 L.aschenbornii Lupinus Lupinus aschenbornii \N \N \N \N \N 81597 \N family Ruppiaceae ditch-grass family \N \N \N \N 81598 H.reinwardtii Haworthia Haworthia reinwardtii \N \N \N \N \N 81599 C.integrifolia Cuervea Cuervea integrifolia \N \N \N \N \N 81600 S.brachystachyum Sarcophrynium Sarcophrynium brachystachyum \N \N \N \N \N 81601 \N genus Bikkia \N \N \N \N \N 81602 C.cephalobotrys Cephalaralia Cephalaralia cephalobotrys \N \N \N \N \N 81603 E.jugatum Echiochilon Echiochilon jugatum \N \N \N \N \N 81604 S.intermedia Sagittaria Sagittaria intermedia \N \N \N \N \N 81605 P.rhombifolia Palaua Palaua rhombifolia \N \N \N \N \N 81606 E.optima Eucalyptus Eucalyptus optima \N \N \N \N \N 81607 \N genus Airopsis \N \N \N \N \N 81608 \N genus Halleria \N \N \N \N \N 81609 E.hololeucus Echinops Echinops hololeucus \N \N \N \N \N 81610 C.pygmaea Ceraria Ceraria pygmaea \N \N \N \N \N 81611 P.apennina Potentilla Potentilla apennina \N \N \N \N \N 81612 P.harmsianum Polypsecadium Polypsecadium harmsianum \N \N \N \N \N 81613 D.bogdanii Dactyloctenium Dactyloctenium bogdanii \N \N \N \N \N 81614 C.purdiei Croton Croton purdiei \N \N \N \N \N 81615 R.aberconwayi Rhododendron Rhododendron aberconwayi \N \N \N \N \N 81616 G.tripartitum Geranium Geranium tripartitum \N \N \N \N \N 81617 T.australianus Tragus Tragus australianus \N \N \N \N \N 81618 L.multiflorum Lithospermum Lithospermum multiflorum \N \N \N \N \N 81619 B.BIOPHIL Biophytum Biophytum sp. BIOPHIL \N \N \N \N \N 81620 \N subspecies Disphyma australe subsp. australe \N \N \N \N \N 81621 C.plummerae Calochortus Calochortus plummerae \N \N \N \N \N 81622 T.latior Tiquilia Tiquilia latior \N \N \N \N \N 81623 \N genus Puccinellia \N \N \N \N \N 81624 B.pauletia Bauhinia Bauhinia pauletia \N \N \N \N \N 81625 M.johannis Maxillaria Maxillaria johannis \N \N \N \N \N 81626 C.monophylla Cleome Cleome monophylla \N \N \N \N \N 81627 M.pygmaeus Mimulus Mimulus pygmaeus \N \N \N \N \N 81628 I.bongensis Indigofera Indigofera bongensis \N \N \N \N \N 81629 N.nimmoniana Nothapodytes Nothapodytes nimmoniana \N \N \N \N \N 81630 P.sanguinea Polygala Polygala sanguinea \N \N \N \N \N 81631 \N genus Allardia \N \N \N \N \N 81632 T.dubium Trifolium Trifolium dubium \N \N \N \N \N 81633 D.graveolens Dysphania Dysphania graveolens \N \N \N \N \N 81634 S.rhytidoandrum Solanum Solanum rhytidoandrum \N \N \N \N \N 81635 D.exunguiculata Draba Draba exunguiculata \N \N \N \N \N 81636 C.oleifolius Convolvulus Convolvulus oleifolius \N \N \N \N \N 81637 \N genus Sclerodactylon \N \N \N \N \N 81638 P.mayottensis Polyscias Polyscias mayottensis \N \N \N \N \N 81639 \N genus Chassalia \N \N \N \N \N 81640 S.5059 Schefflera Schefflera sp. 5059 \N \N \N \N \N 81641 A.manshuriensis Aristolochia Aristolochia manshuriensis Manchurian birthwort,guan mu tong \N \N \N \N 81642 L.margarodes Leucopogon Leucopogon margarodes \N \N \N \N \N 81643 S.parvifolium Sisyrinchium Sisyrinchium parvifolium \N \N \N \N \N 81644 A.LBF-2005 Ancistrothyrsus Ancistrothyrsus sp. LBF-2005 \N \N \N \N \N 81645 R.waitziana Rosa Rosa x waitziana \N \N \N \N \N 81646 \N subtribe Sipolisiinae \N \N \N \N \N 81647 S.polyanthemoides Senecio Senecio polyanthemoides \N \N \N \N \N 81648 A.articulata Aerangis Aerangis articulata \N \N \N \N \N 81649 C.macrostegia Cyanea Cyanea macrostegia \N \N \N \N \N 81650 E.castanea Eulychnia Eulychnia castanea \N \N \N \N \N 81651 \N varietas Heracleum millefolium var. millefolium \N \N \N \N \N 81652 P.javanica Paraphlomis Paraphlomis javanica \N \N \N \N \N 81653 B.stuebelii Burmannia Burmannia stuebelii \N \N \N \N \N 81654 P.spathulifolia Pilea Pilea spathulifolia \N \N \N \N \N 81655 \N varietas Chamaecrista nictitans var. jaliscensis \N \N \N \N \N 81656 Z.wrayi Zingiber Zingiber wrayi \N \N \N \N \N 81657 C.caesius Cymbopogon Cymbopogon caesius \N \N \N \N \N 81658 S.sobarocephala Saussurea Saussurea sobarocephala \N \N \N \N \N 81659 P.boreale Polemonium Polemonium boreale \N \N \N \N \N 81660 T.malaccensis Triomma Triomma malaccensis \N \N \N \N \N 81661 \N genus Kalanchoe Palm-Beach bells \N \N \N \N 81662 P.aphyllus Praecoxanthus Praecoxanthus aphyllus \N \N \N \N \N 81663 A.petiolaris Alseodaphne Alseodaphne petiolaris \N \N \N \N \N 81664 E.flettii Erigeron Erigeron flettii \N \N \N \N \N 81665 O.burmannii Oplismenus Oplismenus burmannii \N \N \N \N \N 81666 C.vitellinus Crocus Crocus vitellinus \N \N \N \N \N 81667 S.minor Sanguisorba Sanguisorba minor \N \N \N \N \N 81668 \N order Fabales \N \N \N \N \N 81669 V.galeata Vicia Vicia galeata \N \N \N \N \N 81670 L.laxa Lotononis Lotononis laxa \N \N \N \N \N 81671 D.velutinus Desmanthus Desmanthus velutinus velvet bundleflower \N \N \N \N 81672 B.marnieri Begonia Begonia marnieri \N \N \N \N \N 81673 V.9313 Vismia Vismia sp. Miller et al. 9313 \N \N \N \N \N 81674 C.odorata Cananga Cananga odorata ilang-ilang \N \N \N \N 81675 \N genus Cryptopus \N \N \N \N \N 81676 \N varietas Carex albicans var. australis \N \N \N \N \N 81677 \N subspecies Erica melastoma subsp. melastoma \N \N \N \N \N 81678 A.chlorops Ada Ada chlorops \N \N \N \N \N 81679 \N genus Castelnavia \N \N \N \N \N 81680 C.huairacajana Critoniopsis Critoniopsis huairacajana \N \N \N \N \N 81681 T.oxoniense Taraxacum Taraxacum oxoniense \N \N \N \N \N 81682 I.sericoleuca Ivesia Ivesia sericoleuca \N \N \N \N \N 81683 C.diffusa Coptosapelta Coptosapelta diffusa \N \N \N \N \N 81684 P.equitans Paspalum Paspalum equitans \N \N \N \N \N 81685 A.mirheydari Anthemis Anthemis mirheydari \N \N \N \N \N 81686 E.aquifolium Eryngium Eryngium aquifolium \N \N \N \N \N 81687 G.1593 Guamia Guamia sp. Rainer 1593 \N \N \N \N \N 81688 T.nothisii Tieghemopanax Tieghemopanax nothisii \N \N \N \N \N 81689 W.preissii Wahlenbergia Wahlenbergia preissii \N \N \N \N \N 81690 \N varietas Paris cronquistii var. xichouensis \N \N \N \N \N 81691 \N tribe Lasiantheae \N \N \N \N \N 81692 \N tribe Smyrnieae \N \N \N \N \N 81693 \N subspecies Eucalyptus radiata subsp. radiata \N \N \N \N \N 81694 \N genus Tricomaria \N \N \N \N \N 81695 P.brevis Pterocephalus Pterocephalus brevis \N \N \N \N \N 81696 U.intermedia Utricularia Utricularia intermedia flatleaf bladderwort \N \N \N \N 81697 \N genus Erianthemum \N \N \N \N \N 81698 \N genus Isabelia \N \N \N \N \N 81699 P.schattaueri Pritchardia Pritchardia schattaueri \N \N \N \N \N 81700 \N no rank Viola suavis ssp. PM-2011b \N \N \N \N \N 81701 \N varietas Festuca ovina var. ovina \N \N \N \N \N 81702 B.micrantha Brocchinia Brocchinia micrantha \N \N \N \N \N 81703 A.graveolens Apium Apium graveolens \N \N \N \N \N 81704 M.argophyllum Melampodium Melampodium argophyllum \N \N \N \N \N 81705 G.consobrina Gibasis Gibasis consobrina \N \N \N \N \N 81706 \N genus Oreobolus \N \N \N \N \N 81707 I.scaposa Inulopsis Inulopsis scaposa \N \N \N \N \N 81708 \N genus Florestina \N \N \N \N \N 81709 D.longan Dimocarpus Dimocarpus longan longan \N \N \N \N 81710 P.lundii Philodendron Philodendron lundii \N \N \N \N \N 81711 F.polytrichoides Fimbristylis Fimbristylis polytrichoides \N \N \N \N \N 81712 C.celiae Clusia Clusia celiae \N \N \N \N \N 81713 \N genus Alopecurus \N \N \N \N \N 81714 B.plumosus Bystropogon Bystropogon plumosus \N \N \N \N \N 81715 P.carterae Phaseolus Phaseolus carterae \N \N \N \N \N 81716 C.leucophlyctis Cordia Cordia leucophlyctis \N \N \N \N \N 81717 M.macroterantha Macrohasseltia Macrohasseltia macroterantha \N \N \N \N \N 81719 K.calycina Kydia Kydia calycina \N \N \N \N \N 81720 \N genus Bromuniola \N \N \N \N \N 81721 C.lonchocarpa Carex Carex lonchocarpa \N \N \N \N \N 81722 Z.minima Zaluzianskya Zaluzianskya minima \N \N \N \N \N 81723 \N genus Bacopa \N \N \N \N \N 81724 \N genus Comarella \N \N \N \N \N 81725 P.pseudofuligineum Piper Piper pseudofuligineum \N \N \N \N \N 81726 A.verna Arabis Arabis verna \N \N \N \N \N 81727 C.pachaca Capparis Capparis pachaca \N \N \N \N \N 81728 E.brevicornu Epimedium Epimedium brevicornu \N \N \N \N \N 81729 \N subspecies Epipactis helleborine subsp. tremolsii \N \N \N \N \N 81730 M.eumecephylla Myrcia Myrcia eumecephylla \N \N \N \N \N 81731 H.nudifolium Helichrysum Helichrysum nudifolium \N \N \N \N \N 81732 O.huaucui Orthopterygium Orthopterygium huaucui \N \N \N \N \N 81733 B.planifolia Babiana Babiana planifolia \N \N \N \N \N 81734 P.acutifolius Phaseolus Phaseolus acutifolius tepary bean \N \N \N \N 81735 E.squarrosa Erica Erica squarrosa \N \N \N \N \N 81736 C.poscharskyana Campanula Campanula poscharskyana \N \N \N \N \N 81737 S.kurilensis Sasa Sasa kurilensis \N \N \N \N \N 81738 C.hemschinicum Cerastium Cerastium hemschinicum \N \N \N \N \N 81739 S.lobeliiformis Stenostephanus Stenostephanus lobeliiformis \N \N \N \N \N 81740 S.humilis Scorzonera Scorzonera humilis \N \N \N \N \N 81741 M.ekmanii Moacroton Moacroton ekmanii \N \N \N \N \N 81742 I.histrio Iris Iris histrio \N \N \N \N \N 81743 L.gynochlamydea Lonicera Lonicera gynochlamydea \N \N \N \N \N 81744 S.2004-19 Salicornia Salicornia aff. perennans Yaprak 2004-19 \N \N \N \N \N 81745 P.confertus Penstemon Penstemon confertus \N \N \N \N \N 81746 A.viridis Amaranthus Amaranthus viridis bledo,green amaranth,pigweed,slender amaranth \N \N \N \N 81747 O.gosseliniana Opuntia Opuntia gosseliniana \N \N \N \N \N 81748 O.balickii Oenocarpus Oenocarpus balickii \N \N \N \N \N 81749 S.imbricata Schweinfurthia Schweinfurthia imbricata \N \N \N \N \N 81750 M.rosmarinifolia Muraltia Muraltia rosmarinifolia \N \N \N \N \N 81751 A.mcvickerae Aliciella Aliciella mcvickerae \N \N \N \N \N 81752 P.wakere Pouteria Pouteria wakere \N \N \N \N \N 81753 P.KM-2008 Pinguicula Pinguicula sp. KM-2008 \N \N \N \N \N 81754 B.miersii Barbrodria Barbrodria miersii \N \N \N \N \N 81755 N.bellii Nepenthes Nepenthes bellii \N \N \N \N \N 81756 P.lucens Psychotria Psychotria lucens \N \N \N \N \N 81757 L.microcarpus Lupinus Lupinus microcarpus chick lupine \N \N \N \N 81758 P.brazzaeana Paropsia Paropsia brazzaeana \N \N \N \N \N 81759 \N genus Wrightia \N \N \N \N \N 81760 \N subspecies Navarretia hamata subsp. parviloba \N \N \N \N \N 81761 A.broussonetii Argyranthemum Argyranthemum broussonetii \N \N \N \N \N 81762 \N varietas Penstemon eriantherus var. eriantherus \N \N \N \N \N 81763 M.pseudosepiaria Mimosa Mimosa pseudosepiaria \N \N \N \N \N 81764 E.montanus Euryops Euryops montanus \N \N \N \N \N 81765 S.curtisii Shorea Shorea curtisii \N \N \N \N \N 81766 N.8690 Nolana Nolana sp. Dillon 8690 \N \N \N \N \N 81767 H.nubigena Heliophila Heliophila nubigena \N \N \N \N \N 81768 V.tricolor Vanda Vanda tricolor \N \N \N \N \N 81769 A.macrostemon Allium Allium macrostemon \N \N \N \N \N 81770 C.kandaharica Consolida Consolida kandaharica \N \N \N \N \N 81771 B.strigosa Begonia Begonia strigosa \N \N \N \N \N 81772 P.teretifolia Pleurothallis Pleurothallis teretifolia \N \N \N \N \N 81773 J.wallichianus Juncus Juncus wallichianus \N \N \N \N \N 81774 M.polyphylla Mormolyca Mormolyca polyphylla \N \N \N \N \N 81775 E.sparteus Exocarpos Exocarpos sparteus \N \N \N \N \N 81776 D.vernicosa Damnamenia Damnamenia vernicosa \N \N \N \N \N 81777 W.8759 Warneckea Warneckea cf. schliebenii Luke 8759 \N \N \N \N \N 81778 I.cdK153 Ipomoea Ipomoea sp. cdK153 \N \N \N \N \N 81779 \N genus Saxofridericia \N \N \N \N \N 81780 C.antilibanoticum Colchicum Colchicum antilibanoticum \N \N \N \N \N 81781 D.ellipticifolia Diospyros Diospyros ellipticifolia \N \N \N \N \N 81782 A.elephas Arisaema Arisaema elephas \N \N \N \N \N 81783 \N subspecies Crepis aurea subsp. aurea \N \N \N \N \N 81784 \N varietas Hedinia taxkargannica var. hejingensis \N \N \N \N \N 81785 G.tesselata Goodyera Goodyera tesselata \N \N \N \N \N 81786 G.florida Gentianella Gentianella florida \N \N \N \N \N 81787 A.acuminata Anogeissus Anogeissus acuminata buttontree \N \N \N \N 81788 H.inodorum Hypericum Hypericum inodorum \N \N \N \N \N 81789 V.triphylla Valeriana Valeriana triphylla \N \N \N \N \N 81790 \N genus Hornschuchia \N \N \N \N \N 81791 R.abortivus Ranunculus Ranunculus abortivus \N \N \N \N \N 81792 S.costata Symplocos Symplocos costata \N \N \N \N \N 81793 C.leptocephala Chaetanthera Chaetanthera leptocephala \N \N \N \N \N 81794 \N tribe Gesnerieae \N \N \N \N \N 81795 A.patearoa Abrotanella Abrotanella patearoa \N \N \N \N \N 81796 A.agrostidea Antinoria Antinoria agrostidea \N \N \N \N \N 81797 R.acriformis Ranunculus Ranunculus acriformis \N \N \N \N \N 81798 D.algetanus Dianthus Dianthus algetanus \N \N \N \N \N 81799 P.parvifolia Phyllostachys Phyllostachys parvifolia \N \N \N \N \N 81800 A.nivea Asclepias Asclepias nivea \N \N \N \N \N 81801 \N genus Eupatorium \N \N \N \N \N 81802 H.boreale Haematoxylum Haematoxylum boreale \N \N \N \N \N 81803 S.papuanum Santalum Santalum papuanum \N \N \N \N \N 81804 M.tricolor Mandevilla Mandevilla tricolor \N \N \N \N \N 81805 Z.SRR-2011 unclassified Zygopetalinae Zygopetalinae sp. 6 SRR-2011 \N \N \N \N \N 81806 U.californica Umbellularia Umbellularia californica California bay,California bay tree \N \N \N \N 81807 O.drakei Ormocarpum Ormocarpum drakei \N \N \N \N \N 81808 C.epilobiifolia Cuphea Cuphea epilobiifolia \N \N \N \N \N 81809 K.longiglumis Kengyilia Kengyilia longiglumis \N \N \N \N \N 81810 \N subspecies Ipomopsis congesta subsp. crebrifolia \N \N \N \N \N 81811 \N genus Ascocentrum \N \N \N \N \N 81812 M.rootstock Malus Malus hybrid rootstock \N \N \N \N \N 81813 \N genus Herrickia \N \N \N \N \N 81814 M.inyoensis Mentzelia Mentzelia inyoensis \N \N \N \N \N 81815 D.amurensis Dianthus Dianthus amurensis \N \N \N \N \N 81816 G.ochoterenae Gymnocalycium Gymnocalycium ochoterenae \N \N \N \N \N 81817 D.oligodontus Dendropanax Dendropanax oligodontus \N \N \N \N \N 81818 P.archboldiana Psychotria Psychotria archboldiana \N \N \N \N \N 81819 G.saxifragoides Graptopetalum Graptopetalum saxifragoides \N \N \N \N \N 81820 V.AB-2009 Vanilla Vanilla cf. imperialis AB-2009 \N \N \N \N \N 81821 \N genus Pinguicula butterworts \N \N \N \N 81822 M.obovata Magnolia Magnolia obovata Japanese whitebark magnolia,ho-no-ki \N \N \N \N 81823 V.hirsuta Vanilla Vanilla hirsuta \N \N \N \N \N 81824 C.mahafaliensis Commiphora Commiphora mahafaliensis \N \N \N \N \N 81825 C.virescens Carex Carex virescens \N \N \N \N \N 81826 C.rupestre Chrysanthemum Chrysanthemum rupestre \N \N \N \N \N 81827 C.rheedei Cansjera Cansjera rheedei \N \N \N \N \N 81828 B.margaritifolia Bellis Bellis margaritifolia \N \N \N \N \N 81829 \N varietas Caralluma adscendens var. gracilis \N \N \N \N \N 81830 \N genus Aucoumea \N \N \N \N \N 81831 P.lindenii Pleuranthodendron Pleuranthodendron lindenii \N \N \N \N \N 81832 A.utile Arisaema Arisaema utile \N \N \N \N \N 81833 M.MP-2011 Massonia Massonia sp. 1 MP-2011 \N \N \N \N \N 81834 D.de-lilei Dombeya Dombeya de-lilei \N \N \N \N \N 81835 C.pseudovaccinium Cuphea Cuphea pseudovaccinium \N \N \N \N \N 81836 U.alata Ulmus Ulmus alata wahoo elm,winged elm \N \N \N \N 81837 M.napaulensis Meconopsis Meconopsis napaulensis satin-poppy \N \N \N \N 81838 C.ASC-2009 Chamaecrista Chamaecrista sp. ASC-2009 \N \N \N \N \N 81839 N.linariifolia Nierembergia Nierembergia linariifolia \N \N \N \N \N 81840 P.parvula Psychotria Psychotria parvula \N \N \N \N \N 81841 M.verna Minuartia Minuartia verna \N \N \N \N \N 81842 I.graeberiana Iris Iris graeberiana \N \N \N \N \N 81843 I.dentatum Ixeridium Ixeridium dentatum \N \N \N \N \N 81844 G.kurdicum Geranium Geranium kurdicum \N \N \N \N \N 81845 C.fluviatilis Camellia Camellia fluviatilis \N \N \N \N \N 81846 \N genus Airyantha \N \N \N \N \N 81847 C.brasiliense Cyclolobium Cyclolobium brasiliense \N \N \N \N \N 81848 P.chutanka Peperomia Peperomia chutanka \N \N \N \N \N 81849 \N genus Chisocheton \N \N \N \N \N 81850 B.trixago Bellardia Bellardia trixago \N \N \N \N \N 81851 D.wallichii Diospyros Diospyros wallichii \N \N \N \N \N 81852 T.lindenii Tillandsia Tillandsia lindenii \N \N \N \N \N 81853 T.spathaceus Tetrapogon Tetrapogon spathaceus \N \N \N \N \N 81854 \N genus Cithareloma \N \N \N \N \N 81855 M.marginata Mentzelia Mentzelia marginata \N \N \N \N \N 81856 A.pachypoda Actaea Actaea pachypoda \N \N \N \N \N 81857 \N genus Gustavia \N \N \N \N \N 81858 \N genus Sigmatostalix \N \N \N \N \N 81859 V.arvensis Viola Viola arvensis European field pansy \N \N \N \N 81860 P.sp. Peltophorum Peltophorum sp. \N \N \N \N \N 81861 P.milliganii Pimelea Pimelea milliganii \N \N \N \N \N 81862 M.montanum Macrolobium Macrolobium montanum \N \N \N \N \N 81863 G.tomentosa Grubbia Grubbia tomentosa \N \N \N \N \N 81864 C.rosei Cypella Cypella rosei \N \N \N \N \N 81865 P.peregrina Paeonia Paeonia peregrina \N \N \N \N \N 81866 \N genus Neolaugeria \N \N \N \N \N 81867 \N subspecies Festuca elegans subsp. merinoi \N \N \N \N \N 81868 P.siamica Psychotria Psychotria siamica \N \N \N \N \N 81869 E.saligna Ehretia Ehretia saligna \N \N \N \N \N 81870 \N genus Apodanthes \N \N \N \N \N 81871 A.hispidula Arctostaphylos Arctostaphylos hispidula \N \N \N \N \N 81872 N.versicolor Nonea Nonea versicolor \N \N \N \N \N 81873 M.pauperiflora Melaleuca Melaleuca pauperiflora \N \N \N \N \N 81874 P.wightii Pleurostylia Pleurostylia wightii \N \N \N \N \N 81875 T.sinensis Tinospora Tinospora sinensis \N \N \N \N \N 81876 \N genus Laennecia \N \N \N \N \N 81877 B.pseudolateralis Begonia Begonia pseudolateralis \N \N \N \N \N 81878 \N genus Pseudochirita \N \N \N \N \N 81879 O.megarhiza Opuntia Opuntia megarhiza \N \N \N \N \N 81880 P.scutifolium Piper Piper scutifolium \N \N \N \N \N 81881 \N genus Symphyandra \N \N \N \N \N 81882 K.gracile Kalidium Kalidium gracile \N \N \N \N \N 81883 C.glandulosa Callicarpa Callicarpa glandulosa \N \N \N \N \N 81884 M.tenuifolia Mandevilla Mandevilla tenuifolia \N \N \N \N \N 81885 S.sphaerocephalus Senecio Senecio sphaerocephalus \N \N \N \N \N 81886 C.cryptolepis Carex Carex cryptolepis \N \N \N \N \N 81887 E.koernickianum Eriocaulon Eriocaulon koernickianum \N \N \N \N \N 81888 B.rubiginosum Bulbophyllum Bulbophyllum rubiginosum \N \N \N \N \N 81889 P.humilis Phacelia Phacelia humilis \N \N \N \N \N 81890 C.davazamcii Caragana Caragana davazamcii \N \N \N \N \N 81891 O.woollsii Oligochaetochilus Oligochaetochilus woollsii \N \N \N \N \N 81892 A.antucensis Anemone Anemone antucensis \N \N \N \N \N 81893 E.trachysperma Euphorbia Euphorbia trachysperma \N \N \N \N \N 81894 T.peruviana Thevetia Thevetia peruviana \N \N \N \N \N 81895 S.yuana Sorbus Sorbus yuana \N \N \N \N \N 81896 L.999 Ligustrum Ligustrum sp. 999 \N \N \N \N \N 81897 A.grandiflora Arenaria Arenaria grandiflora \N \N \N \N \N 81898 M.paniculata Meconopsis Meconopsis paniculata \N \N \N \N \N 81899 M.biennis Mathewsia Mathewsia biennis \N \N \N \N \N 81900 \N genus Galeana \N \N \N \N \N 81901 A.heterophylla Anubias Anubias heterophylla \N \N \N \N \N 81902 M.crassifolia Molineria Molineria crassifolia \N \N \N \N \N 81903 I.inaperta Impatiens Impatiens inaperta \N \N \N \N \N 81904 M.rhodopea Medicago Medicago rhodopea \N \N \N \N \N 81905 S.ehrenbergii Solanum Solanum ehrenbergii \N \N \N \N \N 81906 P.angustifolia Poiretia Poiretia angustifolia \N \N \N \N \N 81907 F.fuscescens Filago Filago fuscescens \N \N \N \N \N 81908 P.amethystina Phalaris Phalaris amethystina \N \N \N \N \N 81909 \N genus Tetramolopium \N \N \N \N \N 81910 D.pendula Dichaea Dichaea pendula \N \N \N \N \N 81911 G.stellata Gilia Gilia stellata \N \N \N \N \N 81912 M.brownei Metopium Metopium brownei \N \N \N \N \N 81913 T.VNSS-2010 Tragopogon Tragopogon sp. VNSS-2010 \N \N \N \N \N 81914 M.nepalensis Miscanthus Miscanthus nepalensis Himalayan fairy grass \N \N \N \N 81915 E.longitubulosa Eriotheca Eriotheca longitubulosa \N \N \N \N \N 81916 C.chanii Coelogyne Coelogyne chanii \N \N \N \N \N 81917 H.amplexicaule Hieracium Hieracium amplexicaule \N \N \N \N \N 81918 \N subspecies Lolium perenne subsp. perenne \N \N \N \N \N 81919 Z.SRR-2011 unclassified Zygopetalinae Zygopetalinae sp. 10 SRR-2011 \N \N \N \N \N 81920 E.chamissonis Eryngium Eryngium chamissonis \N \N \N \N \N 81921 \N genus Sisymbriopsis \N \N \N \N \N 81922 E.variabilis Elaeocarpus Elaeocarpus variabilis \N \N \N \N \N 81923 G.acuminatus Gladiolus Gladiolus acuminatus \N \N \N \N \N 81924 S.burtt-davyi Solanum Solanum burtt-davyi \N \N \N \N \N 81925 \N genus Plectritis \N \N \N \N \N 81926 A.penicillatum Arisaema Arisaema penicillatum \N \N \N \N \N 81927 L.piriformis Lagerstroemia Lagerstroemia piriformis \N \N \N \N \N 81928 A.euscadiensis Armeria Armeria euscadiensis \N \N \N \N \N 81929 C.macrophylla Carlina Carlina macrophylla \N \N \N \N \N 81930 E.albescens Erysimum Erysimum albescens \N \N \N \N \N 81931 V.muricata Volutaria Volutaria muricata \N \N \N \N \N 81932 A.chinensis Aralia Aralia chinensis \N \N \N \N \N 81933 H.dasyanthum Helichrysum Helichrysum dasyanthum \N \N \N \N \N 81934 A.pterocarpum Alyssum Alyssum pterocarpum \N \N \N \N \N 81935 B.pauciflora Boucerosia Boucerosia pauciflora \N \N \N \N \N 81936 P.angustifolius Penstemon Penstemon angustifolius \N \N \N \N \N 81937 S.microphylla Suaeda Suaeda microphylla \N \N \N \N \N 81938 C.seidlitzii Cousinia Cousinia seidlitzii \N \N \N \N \N 81939 P.formosana Phoebe Phoebe formosana \N \N \N \N \N 81940 E.macrocoma Endocomia Endocomia macrocoma \N \N \N \N \N 81941 O.coccinea Ormosia Ormosia coccinea \N \N \N \N \N 81942 P.syriaca Pyrus Pyrus syriaca \N \N \N \N \N 81943 P.confusus Penstemon Penstemon confusus \N \N \N \N \N 81944 \N subspecies Primula auricula subsp. widmerae \N \N \N \N \N 81945 R.lanuginosus Ranunculus Ranunculus lanuginosus \N \N \N \N \N 81946 C.temulifolia Corydalis Corydalis temulifolia \N \N \N \N \N 81947 A.austrosinense Amomum Amomum austrosinense \N \N \N \N \N 81948 \N genus Monelytrum \N \N \N \N \N 81949 \N tribe Endodesmieae \N \N \N \N \N 81950 V.chingii Viburnum Viburnum chingii \N \N \N \N \N 81951 S.chinensis Styrax Styrax chinensis \N \N \N \N \N 81952 \N varietas Foeniculum vulgare var. dulce Roman fennel,sweet fennel \N \N \N \N 81953 M.sample environmental samples Taxonomy:1096675 Miconia environmental sample \N \N \N \N \N 81954 \N no rank Saccharum hybrid cultivar Co 93009 \N \N \N \N \N 81955 K.bolusii Karoophila Karoophila bolusii \N \N \N \N \N 81956 \N genus Pogonatherum \N \N \N \N \N 81957 G.costaricensis Guatteria Guatteria costaricensis \N \N \N \N \N 81958 \N genus Landoltia \N \N \N \N \N 81959 L.solitudinis Lotononis Lotononis solitudinis \N \N \N \N \N 81960 E.songarica Eremopoa Eremopoa songarica \N \N \N \N \N 81961 C.sosnowskyi Campanula Campanula sosnowskyi \N \N \N \N \N 81962 S.menziesii Schiedea Schiedea menziesii \N \N \N \N \N 81963 B.leucantha Brownea Brownea leucantha \N \N \N \N \N 81964 A.glabrata Achimenes Achimenes glabrata \N \N \N \N \N 81965 P.compactus Pleiospilos Pleiospilos compactus \N \N \N \N \N 81966 A.brachystachys Anredera Anredera brachystachys \N \N \N \N \N 81967 F.stellata Fischeria Fischeria stellata \N \N \N \N \N 81968 A.hyrcanum Acer Acer hyrcanum \N \N \N \N \N 81969 A.porphyrocarpa Arenga Arenga porphyrocarpa \N \N \N \N \N 81970 \N genus Geitonoplesium \N \N \N \N \N 81971 B.lateriflorum Bupleurum Bupleurum lateriflorum \N \N \N \N \N 81972 A.ballyi Adenia Adenia ballyi \N \N \N \N \N 81973 C.ulrichiorum Centaurea Centaurea ulrichiorum \N \N \N \N \N 81974 D.winteri Drimys Drimys winteri \N \N \N \N \N 81975 M.macrophylla Macrocarpaea Macrocarpaea macrophylla \N \N \N \N \N 81976 M.glandulosa Mandevilla Mandevilla glandulosa \N \N \N \N \N 81977 S.wittigiana Sophronitis Sophronitis wittigiana \N \N \N \N \N 81978 L.glaucus Lampranthus Lampranthus glaucus \N \N \N \N \N 81979 O.ansiferum Oncidium Oncidium ansiferum \N \N \N \N \N 81980 Z.divaricatum Zygophyllum Zygophyllum divaricatum \N \N \N \N \N 81981 E.lirata Eucalyptus Eucalyptus lirata Kimberly yellow jacket \N \N \N \N 81982 A.episcopale Aconitum Aconitum episcopale \N \N \N \N \N 81983 A.graecus Adenocarpus Adenocarpus graecus \N \N \N \N \N 81984 R.exiguum Rytidosperma Rytidosperma exiguum \N \N \N \N \N 81985 O.triquetrum Osteospermum Osteospermum triquetrum \N \N \N \N \N 81986 \N family Laxmanniaceae \N \N \N \N \N 81987 P.ingentifolia Psychotria Psychotria ingentifolia \N \N \N \N \N 81988 B.prominens Babingtonia Babingtonia prominens \N \N \N \N \N 81989 T.guyanensis Terminalia Terminalia guyanensis \N \N \N \N \N 81990 S.australiense Sorghum Sorghum australiense \N \N \N \N \N 81991 G.mesopotamicum Gymnocalycium Gymnocalycium mesopotamicum \N \N \N \N \N 81992 \N genus Petrorchis \N \N \N \N \N 81994 Z.citriodorum Zingiber Zingiber citriodorum \N \N \N \N \N 81995 L.2024 Livistona Livistona sp. Dung 2024 \N \N \N \N \N 81996 \N subspecies Crocus biflorus subsp. tauri \N \N \N \N \N 81997 S.supina Schoenoplectiella Schoenoplectiella supina \N \N \N \N \N 81998 E.duriensis Epipactis Epipactis duriensis \N \N \N \N \N 81999 \N varietas Acis autumnalis var. oporantha \N \N \N \N \N 82000 A.rumelica Armeria Armeria rumelica \N \N \N \N \N 82001 D.gypsophilum Delphinium Delphinium gypsophilum \N \N \N \N \N 82002 P.insignis Pachystegia Pachystegia insignis \N \N \N \N \N 82003 C.LJM054271 Chiritopsis Chiritopsis sp. LJM054271 \N \N \N \N \N 82004 A.chiapensis Acacia Acacia chiapensis \N \N \N \N \N 82005 C.aristata Cephalaria Cephalaria aristata \N \N \N \N \N 82006 B.chlorantha Benthamia Benthamia chlorantha \N \N \N \N \N 82007 C.diphylla Cupania Cupania diphylla \N \N \N \N \N 82008 R.baldshuanicus Ranunculus Ranunculus baldshuanicus \N \N \N \N \N 82009 S.crassifolia Stellaria Stellaria crassifolia \N \N \N \N \N 82010 \N subspecies Hordeum brevisubulatum subsp. iranicum \N \N \N \N \N 82011 E.milii Euphorbia Euphorbia milii \N \N \N \N \N 82012 \N genus Mackaya \N \N \N \N \N 82013 O.papuana Opocunonia Opocunonia papuana \N \N \N \N \N 82014 C.ninae Cousinia Cousinia ninae \N \N \N \N \N 82015 P.laevigata Periploca Periploca laevigata \N \N \N \N \N 82016 V.thomasiana Viola Viola thomasiana \N \N \N \N \N 82017 O.octodonta Osbornia Osbornia octodonta \N \N \N \N \N 82018 M.magnifolia Maba Maba magnifolia \N \N \N \N \N 82019 P.macrosepala Pterostylis Pterostylis macrosepala \N \N \N \N \N 82020 A.nipponicum Aconitum Aconitum nipponicum \N \N \N \N \N 82021 L.tingitanus Lathyrus Lathyrus tingitanus Tangier pea \N \N \N \N 82022 G.wrayi Goniothalamus Goniothalamus wrayi \N \N \N \N \N 82023 P.gozadakensis Pleioblastus Pleioblastus gozadakensis \N \N \N \N \N 82024 H.phetchabunense Hydrobryum Hydrobryum phetchabunense \N \N \N \N \N 82025 S.helleri Scalesia Scalesia helleri \N \N \N \N \N 82026 A.cantabrica Androsace Androsace cantabrica \N \N \N \N \N 82027 E.odieri Eriosyce Eriosyce odieri \N \N \N \N \N 82028 M.abbottii Maytenus Maytenus abbottii \N \N \N \N \N 82029 E.longimontana Erica Erica longimontana \N \N \N \N \N 82030 L.xylosteum Lonicera Lonicera xylosteum \N \N \N \N \N 82031 P.rigidula Phacellaria Phacellaria rigidula \N \N \N \N \N 82032 \N tribe Didymocarpeae \N \N \N \N \N 82033 S.heteropodium Solanum Solanum heteropodium \N \N \N \N \N 82034 H.cravenii Hibiscus Hibiscus cravenii \N \N \N \N \N 82035 B.colombiana Baskervilla Baskervilla colombiana \N \N \N \N \N 82036 L.sibiricus Leonurus Leonurus sibiricus Siberian motherwort,xi ye yi mu cao \N \N \N \N 82037 H.parasitica Helixanthera Helixanthera parasitica \N \N \N \N \N 82038 C.magellense Chaerophyllum Chaerophyllum magellense \N \N \N \N \N 82039 W.decora Weigela Weigela decora \N \N \N \N \N 82040 P.SH-2010 Poikilospermum Poikilospermum sp. SH-2010 \N \N \N \N \N 82041 S.intermedia Stackhousia Stackhousia intermedia \N \N \N \N \N 82042 \N genus Nomopyle \N \N \N \N \N 82043 B.FS937 Bulbophyllum Bulbophyllum aff. baronii FS937 \N \N \N \N \N 82044 F.japonica Fritillaria Fritillaria japonica \N \N \N \N \N 82045 C.cucullata Chloris Chloris cucullata \N \N \N \N \N 82046 \N no rank unclassified Spermacoceae \N \N \N \N \N 82047 M.myrtifolia Muellerina Muellerina myrtifolia \N \N \N \N \N 82048 A.gorgonum Artemisia Artemisia gorgonum \N \N \N \N \N 82049 S.rugosa Senna Senna rugosa \N \N \N \N \N 82050 C.umbrosum Colchicum Colchicum umbrosum \N \N \N \N \N 82051 B.filiformis Begonia Begonia filiformis \N \N \N \N \N 82052 \N subspecies Potentilla hirta subsp. laete \N \N \N \N \N 82053 \N genus Scrophularia figworts \N \N \N \N 82054 E.antarctica Euphrasia Euphrasia antarctica \N \N \N \N \N 82055 H.populifolius Homalanthus Homalanthus populifolius native bleeding-heart \N \N \N \N 82056 D.virginiana Diodia Diodia virginiana Virginia buttonweed \N \N \N \N 82057 A.ormosioides Andira Andira ormosioides \N \N \N \N \N 82058 \N genus Pterygopappus \N \N \N \N \N 82059 C.seussana Centaurea Centaurea seussana \N \N \N \N \N 82060 \N subspecies Vitex trifolia subsp. trifolia \N \N \N \N \N 82061 S.delavayi Schefflera Schefflera delavayi \N \N \N \N \N 82062 T.jS6003/2 unclassified Taraxacum Taraxacum (sect. Alpina) sp. jS6003/2 \N \N \N \N \N 82063 E.triodioides Eriachne Eriachne triodioides \N \N \N \N \N 82064 \N varietas Kalanchoe geroldii var. geroldii \N \N \N \N \N 82065 \N subspecies Heracleum sphondylium subsp. pyrenaicum \N \N \N \N \N 82066 E.spinosum Exostema Exostema spinosum \N \N \N \N \N 82067 S.fallax Shorea Shorea fallax \N \N \N \N \N 82068 B.nobilis Bismarckia Bismarckia nobilis \N \N \N \N \N 82069 L.villosa Lepidagathis Lepidagathis villosa \N \N \N \N \N 82070 \N genus Frommia \N \N \N \N \N 82071 \N genus Davilla \N \N \N \N \N 82072 \N genus Diodonopsis \N \N \N \N \N 82073 R.missimana Rhodomyrtus Rhodomyrtus missimana \N \N \N \N \N 82074 P.parishii Phalaenopsis Phalaenopsis parishii \N \N \N \N \N 82075 M.cryptothamnos Mimosa Mimosa cryptothamnos \N \N \N \N \N 82076 C.77.0031 Clusia Clusia sp. 77.0031 \N \N \N \N \N 82077 \N varietas Mimosa gracilis var. stipitata \N \N \N \N \N 82078 I.ivanovae Iris Iris ivanovae \N \N \N \N \N 82079 M.camerounensis Momordica Momordica camerounensis \N \N \N \N \N 82080 P.7324 Peplidium Peplidium sp. Barker 7324 \N \N \N \N \N 82081 \N genus Pityrodia \N \N \N \N \N 82082 O.tripetala Odontocarya Odontocarya tripetala \N \N \N \N \N 82083 \N genus Psiadia \N \N \N \N \N 82084 C.undulata Calathea Calathea undulata \N \N \N \N \N 82085 M.distachya Mimosa Mimosa distachya \N \N \N \N \N 82086 Q.hyalina Queenslandiella Queenslandiella hyalina \N \N \N \N \N 82087 B.canei Banksia Banksia canei \N \N \N \N \N 82088 P.lebrunianus Psilanthus Psilanthus lebrunianus \N \N \N \N \N 82089 C.tianschanica Cousinia Cousinia tianschanica \N \N \N \N \N 82090 C.hypocyrtantha Columnea Columnea hypocyrtantha \N \N \N \N \N 82091 R.madurensis Rauvolfia Rauvolfia madurensis \N \N \N \N \N 82092 \N genus Amsinckia \N \N \N \N \N 82093 P.prachinburiense Polypleurum Polypleurum prachinburiense \N \N \N \N \N 82094 H.JS-2005 Hydrangea Hydrangea sp. JS-2005 \N \N \N \N \N 82095 \N genus Platycarya \N \N \N \N \N 82096 G.khasiana Germainia Germainia khasiana \N \N \N \N \N 82097 I.memecylifolia Ilex Ilex memecylifolia \N \N \N \N \N 82098 C.cuneifolium Chrysophyllum Chrysophyllum cuneifolium \N \N \N \N \N 82099 A.rudis Amaranthus Amaranthus palmeri x Amaranthus rudis \N \N \N \N \N 82100 B.gardneriana Byrsonima Byrsonima gardneriana \N \N \N \N \N 82101 Z.incrustatum Zygophyllum Zygophyllum incrustatum \N \N \N \N \N 82102 E.macvaughii Euphorbia Euphorbia macvaughii \N \N \N \N \N 82103 O.macrosperma Ononis Ononis macrosperma \N \N \N \N \N 82104 P.fendleri Penstemon Penstemon fendleri \N \N \N \N \N 82105 J.megadenia Jamesbrittenia Jamesbrittenia megadenia \N \N \N \N \N 82106 C.spathulata Cespedesia Cespedesia spathulata \N \N \N \N \N 82107 F.macrophylla Ficus Ficus macrophylla Moreton Bay fig \N \N \N \N 82108 C.humilis Coffea Coffea humilis \N \N \N \N \N 82109 \N genus Nolana \N \N \N \N \N 82110 M.integra Maireana Maireana integra \N \N \N \N \N 82111 A.tecta Arundinaria Arundinaria appalachiana x Arundinaria tecta \N \N \N \N \N 82112 S.urophyllum Symphyotrichum Symphyotrichum urophyllum \N \N \N \N \N 82113 \N genus Posoqueria \N \N \N \N \N 82114 A.inornata Alocasia Alocasia inornata \N \N \N \N \N 82115 \N genus Triodia \N \N \N \N \N 82116 P.amplexicaulis Plantago Plantago amplexicaulis \N \N \N \N \N 82117 C.ortholobus Croton Croton ortholobus \N \N \N \N \N 82118 \N varietas Gymnocalycium zegarrae var. zegarrae \N \N \N \N \N 82119 A.charbonneliana Alchemilla Alchemilla charbonneliana \N \N \N \N \N 82120 C.oliviforme Chrysophyllum Chrysophyllum oliviforme satinleaf \N \N \N \N 82121 \N genus Phitopis \N \N \N \N \N 82122 \N varietas Panax japonicus var. bipinnatifidus \N \N \N \N \N 82123 C.meyeniana Clematis Clematis meyeniana \N \N \N \N \N 82124 S.argenteus Syncolostemon Syncolostemon argenteus \N \N \N \N \N 82125 R.citrinum Rhododendron Rhododendron citrinum \N \N \N \N \N 82126 \N subspecies Triticum turgidum subsp. dicoccon cultivated emmer wheat \N \N \N \N 82127 S.salteri Strumaria Strumaria salteri \N \N \N \N \N 82128 M.ammitia Morinda Morinda ammitia \N \N \N \N \N 82129 S.glandulifera Strobilanthes Strobilanthes glandulifera \N \N \N \N \N 82130 B.circumlobata Begonia Begonia circumlobata \N \N \N \N \N 82131 P.acraeum Pelargonium Pelargonium acraeum \N \N \N \N \N 82132 \N genus Vahlia \N \N \N \N \N 82133 P.tremuloides Populus Populus tremula x Populus tremuloides \N \N \N \N \N 82134 A.innopinata Autumnalia Autumnalia innopinata \N \N \N \N \N 82135 B.nepalensis Burmannia Burmannia nepalensis \N \N \N \N \N 82136 N.rhombicaulis Nepenthes Nepenthes rhombicaulis \N \N \N \N \N 82137 C.serrulatus Chrysopogon Chrysopogon serrulatus \N \N \N \N \N 82138 \N varietas Chamaerhodos erecta var. parviflora \N \N \N \N \N 82139 F.callianthum Fagopyrum Fagopyrum callianthum \N \N \N \N \N 82140 T.platyphylla Tococa Tococa platyphylla \N \N \N \N \N 82141 A.capillipes Acer Acer capillipes \N \N \N \N \N 82142 N.myristicifolia Neostenanthera Neostenanthera myristicifolia \N \N \N \N \N 82143 A.pusilla Anchusa Anchusa pusilla \N \N \N \N \N 82144 M.gomeziana Maxillaria Maxillaria gomeziana \N \N \N \N \N 82145 S.bracteata Smilax Smilax bracteata \N \N \N \N \N 82146 J.lepidopoda Joycea Joycea lepidopoda \N \N \N \N \N 82147 V.reflexopilosa Vigna Vigna reflexopilosa \N \N \N \N \N 82148 L.pallidum Lycium Lycium pallidum pale desert-thorn \N \N \N \N 82149 \N subspecies Disa harveyana subsp. longicalcarata \N \N \N \N \N 82150 T.glaucifolia Trachymene Trachymene glaucifolia \N \N \N \N \N 82151 L.alba Linnaeopsis Linnaeopsis alba \N \N \N \N \N 82152 C.formosensis Carex Carex formosensis \N \N \N \N \N 82153 E.davuricum Epilobium Epilobium davuricum \N \N \N \N \N 82154 V.selerorum Valeriana Valeriana selerorum \N \N \N \N \N 82155 L.squarrosa Liatris Liatris squarrosa \N \N \N \N \N 82156 K.macrantha Kobresia Kobresia macrantha \N \N \N \N \N 82157 P.rugosa Pilea Pilea rugosa \N \N \N \N \N 82158 C.crispatus Chordifex Chordifex crispatus \N \N \N \N \N 82159 E.quadrangularis Erithalis Erithalis quadrangularis \N \N \N \N \N 82160 B.auriculata Babiana Babiana auriculata \N \N \N \N \N 82161 L.NSW716090 Lepyrodia Lepyrodia sp. NSW716090 \N \N \N \N \N 82162 C.concinna Cathissa Cathissa concinna \N \N \N \N \N 82163 C.foenea Carex Carex foenea \N \N \N \N \N 82164 C.rubella Capsella Capsella rubella \N \N \N \N \N 82165 H.illyrica Hypochaeris Hypochaeris illyrica \N \N \N \N \N 82166 E.hypnoides Eragrostis Eragrostis hypnoides \N \N \N \N \N 82167 \N genus Hydnora \N \N \N \N \N 82168 S.57 Salicornia Salicornia cf. procumbens Keremma 57 \N \N \N \N \N 82169 A.contracta Aechmea Aechmea contracta \N \N \N \N \N 82170 P.kavachensis Paeonia Paeonia kavachensis \N \N \N \N \N 82171 \N genus Oedina \N \N \N \N \N 82172 \N subspecies Arctostaphylos viscida subsp. mariposa \N \N \N \N \N 82173 \N genus Carpodetus \N \N \N \N \N 82174 R.muricatus Ranunculus Ranunculus muricatus \N \N \N \N \N 82175 T.S5652 unclassified Taraxacum Taraxacum (sect. Kashmirana) sp. S5652 \N \N \N \N \N 82176 G.2165 Genipa Genipa aff. williamsii Persson et al. 2165 \N \N \N \N \N 82177 \N genus Ogastemma \N \N \N \N \N 82178 G.longifolia Guadua Guadua longifolia jimba \N \N \N \N 82179 \N genus Jodina \N \N \N \N \N 82180 S.micrantha Smitinandia Smitinandia micrantha \N \N \N \N \N 82181 E.ramiflora Ecclinusa Ecclinusa ramiflora \N \N \N \N \N 82182 \N genus Homonoia \N \N \N \N \N 82183 A.subulata Artemisia Artemisia subulata \N \N \N \N \N 82184 \N varietas Hydrocotyle sibthorpioides var. sibthorpioides \N \N \N \N \N 82185 R.MP-2011 Rhadamanthopsis Rhadamanthopsis sp. 1 MP-2011 \N \N \N \N \N 82186 H.biflora Hippocrepis Hippocrepis biflora \N \N \N \N \N 82187 S.viminalis Salix Salix purpurea x Salix viminalis \N \N \N \N \N 82188 \N genus Lennoa \N \N \N \N \N 82189 \N genus Rhynchostylis \N \N \N \N \N 82190 \N genus Gynerium \N \N \N \N \N 82191 E.albomarginata Euphorbia Euphorbia albomarginata \N \N \N \N \N 82192 N.ulei Naucleopsis Naucleopsis ulei \N \N \N \N \N 82193 F.australis Felicia Felicia australis \N \N \N \N \N 82194 R.eludens Reederochloa Reederochloa eludens \N \N \N \N \N 82195 S.atropurpurea Sixalix Sixalix atropurpurea \N \N \N \N \N 82196 S.conditum Solanum Solanum conditum \N \N \N \N \N 82197 C.faulknerae Cordia Cordia faulknerae \N \N \N \N \N 82198 L.pyrenaica Lonicera Lonicera pyrenaica \N \N \N \N \N 82199 C.scandens Colignonia Colignonia scandens \N \N \N \N \N 82200 P.viscofera Persicaria Persicaria viscofera \N \N \N \N \N 82201 M.tournefortiana Malva Malva tournefortiana \N \N \N \N \N 82202 M.tripetala Moraea Moraea tripetala \N \N \N \N \N 82203 \N subspecies Hieracium levicaule subsp. lepidulum \N \N \N \N \N 82204 L.tenuis Linaria Linaria tenuis \N \N \N \N \N 82205 M.itinerans Musa Musa itinerans \N \N \N \N \N 82206 P.labicheoides Petalostylis Petalostylis labicheoides \N \N \N \N \N 82207 G.spartioides Genista Genista spartioides \N \N \N \N \N 82208 \N genus Nivellea \N \N \N \N \N 82209 E.microphylla Ehretia Ehretia microphylla \N \N \N \N \N 82210 E.uncinata Erichsenia Erichsenia uncinata \N \N \N \N \N 82211 D.papillistigma Dalechampia Dalechampia papillistigma \N \N \N \N \N 82212 T.tschonoskii Trillium Trillium tschonoskii \N \N \N \N \N 82213 \N genus Phlomidoschema \N \N \N \N \N 82214 S.aloysii Sabaudiella Sabaudiella aloysii \N \N \N \N \N 82215 C.pseudactinia Cousinia Cousinia pseudactinia \N \N \N \N \N 82216 S.crenulata Schiedeella Schiedeella crenulata \N \N \N \N \N 82217 C.4538 Chlorophytum Chlorophytum sp. Nordal & Bjora 4538 \N \N \N \N \N 82218 M.pinnatus Myodocarpus Myodocarpus pinnatus \N \N \N \N \N 82219 O.perpusillus Ornithopus Ornithopus perpusillus birdsfoot \N \N \N \N 82220 O.neriifolia Olea Olea neriifolia \N \N \N \N \N 82221 \N genus Dithyrea \N \N \N \N \N 82222 \N varietas Fallopia multiflora var. hypoleuca \N \N \N \N \N 82223 T.inflata Thibaudia Thibaudia inflata \N \N \N \N \N 82224 O.taborensis Oldenlandia Oldenlandia taborensis \N \N \N \N \N 82225 \N varietas Santalum ellipticum var. ellipticum \N \N \N \N \N 82226 \N genus Paraisometrum \N \N \N \N \N 82227 \N genus Palaua \N \N \N \N \N 82228 M.saboae Mammillaria Mammillaria saboae \N \N \N \N \N 82229 A.balansanum Arum Arum balansanum \N \N \N \N \N 82230 T.fulvinervis Tina Tina fulvinervis \N \N \N \N \N 82231 P.propinquum Polygonum Polygonum propinquum \N \N \N \N \N 82232 R.collina Reseda Reseda collina \N \N \N \N \N 82233 \N genus Conringia \N \N \N \N \N 82234 T.thermalis Tetraria Tetraria thermalis \N \N \N \N \N 82235 C.epifanioi Caesalpinia Caesalpinia epifanioi \N \N \N \N \N 82236 \N genus Pinalia \N \N \N \N \N 82237 C.volkensii Cycnium Cycnium volkensii \N \N \N \N \N 82238 T.texana Thamnosma Thamnosma texana \N \N \N \N \N 82239 \N varietas Dracaena reflexa var. linearifolia \N \N \N \N \N 82240 C.umbellata Cardamine Cardamine umbellata \N \N \N \N \N 82241 D.masonii Darwinia Darwinia masonii \N \N \N \N \N 82242 \N family Stylidiaceae \N \N \N \N \N 82243 T.superba Tristachya Tristachya superba giant trident grass \N \N \N \N 82244 C.lasiantha Clematis Clematis lasiantha pipestem \N \N \N \N 82245 T.2566 Tetrorchidium Tetrorchidium sp. Clark 2566 \N \N \N \N \N 82246 L.pallescens Luzula Luzula pallescens \N \N \N \N \N 82247 B.dichotoma Bernardia Bernardia dichotoma \N \N \N \N \N 82248 C.macrospermum Carpoxylon Carpoxylon macrospermum \N \N \N \N \N 82249 M.divergens Metalasia Metalasia divergens \N \N \N \N \N 82250 \N varietas Spiraea japonica var. acuminata \N \N \N \N \N 82251 T.zpl Thymus Thymus sp. MIB zpl \N \N \N \N \N 82252 C.sparsa Campanula Campanula sparsa \N \N \N \N \N 82253 B.blumeana Bambusa Bambusa blumeana \N \N \N \N \N 82254 E.calcicola Euphorbia Euphorbia calcicola \N \N \N \N \N 82255 B.odorata Bothriochloa Bothriochloa odorata \N \N \N \N \N 82256 C.aestivalis Carex Carex aestivalis \N \N \N \N \N 82257 S.yezoensis Salix Salix yezoensis \N \N \N \N \N 82258 C.scleranthum Craibiodendron Craibiodendron scleranthum \N \N \N \N \N 82259 P.newberryi Penstemon Penstemon newberryi \N \N \N \N \N 82260 C.triqueter Croton Croton triqueter \N \N \N \N \N 82261 R.pendulum Rhododendron Rhododendron pendulum \N \N \N \N \N 82262 D.mannii Diospyros Diospyros mannii \N \N \N \N \N 82263 T.procera Triglochin Triglochin procera \N \N \N \N \N 82264 E.fernandezianus Erigeron Erigeron fernandezianus \N \N \N \N \N 82265 S.echinata Siparuna Siparuna echinata \N \N \N \N \N 82266 E.millotii Euphorbia Euphorbia millotii \N \N \N \N \N 82267 A.condensatum Allium Allium condensatum \N \N \N \N \N 82268 C.syriacum Crocodylium Crocodylium syriacum \N \N \N \N \N 82269 B.punctata Bletia Bletia punctata \N \N \N \N \N 82270 P.tucumanensis Potentilla Potentilla tucumanensis \N \N \N \N \N 82271 T.kimballiana Tsiorchis Tsiorchis kimballiana \N \N \N \N \N 82272 O.grandiglumis Oryza Oryza grandiglumis \N \N \N \N \N 82273 C.antepense Colchicum Colchicum antepense \N \N \N \N \N 82274 \N genus Musa \N \N \N \N \N 82275 B.siamensis Bergera Bergera siamensis \N \N \N \N \N 82276 R.dasyphylla Rulingia Rulingia dasyphylla \N \N \N \N \N 82277 D.longicarpa Delarbrea Delarbrea longicarpa \N \N \N \N \N 82278 \N subspecies Andira inermis subsp. inermis \N \N \N \N \N 82279 A.alba Avicennia Avicennia alba \N \N \N \N \N 82280 S.australis Scandix Scandix australis \N \N \N \N \N 82281 W.309 Wahlenbergia Wahlenbergia sp. Cupido 309 \N \N \N \N \N 82282 C.pandurata Coelogyne Coelogyne pandurata \N \N \N \N \N 82283 S.maritima Suriana Suriana maritima \N \N \N \N \N 82284 E.huteri Eryngium Eryngium huteri \N \N \N \N \N 82285 A.redolens Anthoxanthum Anthoxanthum redolens \N \N \N \N \N 82286 G.incanum Gossypium Gossypium incanum \N \N \N \N \N 82287 S.0043Gal Lycopersicon Solanum sp. 0043Gal \N \N \N \N \N 82288 D.cossoniana Diplotaxis Diplotaxis cossoniana \N \N \N \N \N 82289 B.ciliatus Brownanthus Brownanthus ciliatus \N \N \N \N \N 82290 \N genus Napaea \N \N \N \N \N 82291 V.geniculata Vulpia Vulpia geniculata \N \N \N \N \N 82292 P.radicosus Penstemon Penstemon radicosus \N \N \N \N \N 82293 R.pachyrrhachis Rhus Rhus pachyrrhachis \N \N \N \N \N 82294 \N genus Braya \N \N \N \N \N 82295 S.T39 Schizodium Schizodium sp. T39 \N \N \N \N \N 82296 \N genus Oschatzia \N \N \N \N \N 82297 S.GW1719 Syzygium Syzygium sp. GW1719 \N \N \N \N \N 82298 N.umbratica Nicotiana Nicotiana umbratica \N \N \N \N \N 82299 \N genus Haploclathra \N \N \N \N \N 82300 B.reptans Bulbophyllum Bulbophyllum reptans \N \N \N \N \N 82301 P.viscidula Pentaschistis Pentameris viscidula \N \N \N \N \N 82302 P.purpurascens Pratia Pratia purpurascens \N \N \N \N \N 82305 T.salmoneum Trifolium Trifolium salmoneum \N \N \N \N \N 82306 P.minima Physalis Physalis minima pygmy groundcherry \N \N \N \N 82307 F.distans Ficinia Ficinia distans \N \N \N \N \N 82308 P.sandwicensis Planchonella Planchonella sandwicensis \N \N \N \N \N 82309 C.runemarkii Cerastium Cerastium runemarkii \N \N \N \N \N 82310 B.eriospatha Butia Butia eriospatha \N \N \N \N \N 82311 P.panamense Philodendron Philodendron panamense \N \N \N \N \N 82312 C.fuscatum Chamaemelum Chamaemelum fuscatum \N \N \N \N \N 82313 R.stamineum Rhododendron Rhododendron stamineum \N \N \N \N \N 82314 \N subspecies Artocarpus nitidus subsp. griffithii \N \N \N \N \N 82315 A.brasiliense Austroamericium Austroamericium brasiliense \N \N \N \N \N 82316 P.rupicola Protea Protea rupicola \N \N \N \N \N 82317 P.nivalis Primula Primula nivalis \N \N \N \N \N 82318 \N subspecies Arctostaphylos bakeri subsp. bakeri \N \N \N \N \N 82319 \N varietas Gentiana lawrencei var. farreri \N \N \N \N \N 82320 C.diffusa Cleome Cleome diffusa \N \N \N \N \N 82321 S.tricoccata Symplocos Symplocos tricoccata \N \N \N \N \N 82322 P.inconspicua Polystachya Polystachya inconspicua \N \N \N \N \N 82323 R.microphyton Rhododendron Rhododendron microphyton \N \N \N \N \N 82324 G.imperialis Gardenia Gardenia imperialis \N \N \N \N \N 82325 G.rotundifolium Gossypium Gossypium rotundifolium \N \N \N \N \N 82326 S.ceterach Saussurea Saussurea ceterach \N \N \N \N \N 82327 M.bicolor Marianthus Marianthus bicolor \N \N \N \N \N 82328 H.SM-2000 Hedyosmum Hedyosmum sp. SM-2000 \N \N \N \N \N 82329 S.fruticosus Sonchus Sonchus fruticosus \N \N \N \N \N 82330 T.occidentalis Turnera Turnera occidentalis \N \N \N \N \N 82331 \N genus Aspidoglossum \N \N \N \N \N 82332 J.mediterranea Janusia Janusia mediterranea \N \N \N \N \N 82333 \N genus Mischocarpus \N \N \N \N \N 82334 \N genus Jacaranda \N \N \N \N \N 82335 S.MP-2011 Schizobasis Schizobasis sp. 1 MP-2011 \N \N \N \N \N 82336 I.orizabensis Ipomoea Ipomoea orizabensis \N \N \N \N \N 82337 \N varietas Mimosa albida var. albida \N \N \N \N \N 82338 H.mystax Hugonia Hugonia mystax \N \N \N \N \N 82339 J.attenuatum Jasminum Jasminum attenuatum \N \N \N \N \N 82340 P.sanguineus Plectranthus Plectranthus sanguineus \N \N \N \N \N 82341 C.vernum Colchicum Colchicum vernum \N \N \N \N \N 82342 O.paralias Ononis Ononis paralias \N \N \N \N \N 82343 R.dumosum Rhyssolobium Rhyssolobium dumosum \N \N \N \N \N 82344 P.WH-0521 Potamogeton Potamogeton sp. WH-0521 \N \N \N \N \N 82345 D.eserre Dendrobium Dendrobium eserre \N \N \N \N \N 82346 P.decaryana Paramelhania Paramelhania decaryana \N \N \N \N \N 82347 A.orbelica Anthemis Anthemis orbelica \N \N \N \N \N 82348 B.viscosa Bracteantha Bracteantha viscosa \N \N \N \N \N 82349 S.baclei Schleidenia Schleidenia baclei \N \N \N \N \N 82350 \N varietas Ficus pedunculosa var. mearnsii \N \N \N \N \N 82351 P.nigra Populus Populus maximowiczii x Populus nigra \N \N \N \N \N 82352 \N family Triuridaceae \N \N \N \N \N 82353 B.oldhamii Bambusa Bambusa oldhamii \N \N \N \N \N 82354 \N varietas Tricalysia anomala var. guineensis \N \N \N \N \N 82355 T.triflorum Thesium Thesium triflorum \N \N \N \N \N 82356 O.parryi Oreochrysum Oreochrysum parryi \N \N \N \N \N 82357 A.leucophylla Atriplex Atriplex leucophylla \N \N \N \N \N 82358 L.propinquum Lepidium Lepidium propinquum \N \N \N \N \N 82359 H.souliei Heracleum Heracleum souliei \N \N \N \N \N 82360 E.lydenburgensis Euphorbia Euphorbia lydenburgensis \N \N \N \N \N 82361 \N genus Amblyopappus \N \N \N \N \N 82362 B.praealtum Bupleurum Bupleurum praealtum \N \N \N \N \N 82363 C.oxalidea Cleome Cleome oxalidea \N \N \N \N \N 82364 S.kossinskyi Suaeda Suaeda kossinskyi \N \N \N \N \N 82365 V.megacephala Vittadinia Vittadinia megacephala \N \N \N \N \N 82366 \N genus Clarkia \N \N \N \N \N 82367 A.avicennicus Astragalus Astragalus avicennicus \N \N \N \N \N 82368 C.geniculata Cayratia Cayratia geniculata \N \N \N \N \N 82369 H.robusta Hypolaena Hypolaena robusta \N \N \N \N \N 82370 \N subspecies Tropaeolum leptophyllum subsp. gracile \N \N \N \N \N 82371 \N no rank environmental samples Taxonomy:404789 \N \N \N \N \N 82372 P.suaveolens Plagiopteron Plagiopteron suaveolens \N \N \N \N \N 82373 C.hendersonii Carex Carex hendersonii \N \N \N \N \N 82374 V.barkerii Hebe Veronica barkerii \N \N \N \N \N 82375 P.oviedoi Piper Piper oviedoi \N \N \N \N \N 82376 S.hieracium Senecio Senecio hieracium \N \N \N \N \N 82377 R.elliptica Rhipsalis Rhipsalis elliptica \N \N \N \N \N 82378 J.validus Juncus Juncus validus \N \N \N \N \N 82379 C.dalmaticus Crocus Crocus dalmaticus \N \N \N \N \N 82380 C.reticulatus Calamus Calamus reticulatus \N \N \N \N \N 82381 T.triangularis Tetraria Tetraria triangularis \N \N \N \N \N 82382 \N genus Garrya \N \N \N \N \N 82383 V.davidii Viburnum Viburnum davidii \N \N \N \N \N 82384 C.laevigata Crataegus Crataegus laevigata \N \N \N \N \N 82385 E.sessilis Erismadelphus Erismadelphus sessilis \N \N \N \N \N 82386 \N genus Matisia \N \N \N \N \N 82387 I.yaouhensis Ixora Ixora yaouhensis \N \N \N \N \N 82388 D.martiusii Diplotropis Diplotropis martiusii chontaquiro,faveira,sapupira \N \N \N \N 82389 D.paradisa Descurainia Descurainia paradisa \N \N \N \N \N 82390 P.tomentosum Phoradendron Phoradendron tomentosum California mistletoe \N \N \N \N 82391 Z.striolatum Zingiber Zingiber striolatum \N \N \N \N \N 82392 \N genus Stylogyne \N \N \N \N \N 82393 S.stellaris Sabatia Sabatia stellaris \N \N \N \N \N 82394 P.albida Pseudorchis Pseudorchis albida \N \N \N \N \N 82395 \N subspecies Neotinea ustulata subsp. aestivalis \N \N \N \N \N 82396 C.latifolia Callichlamys Callichlamys latifolia \N \N \N \N \N 82397 P.fumariifolium Pelargonium Pelargonium fumariifolium \N \N \N \N \N 82398 Y.tenuifolia Youngia Youngia tenuifolia \N \N \N \N \N 82399 A.bethencourtianum Aichryson Aichryson bethencourtianum \N \N \N \N \N 82400 \N genus Godmania \N \N \N \N \N 82401 \N varietas Pentameris calcicola var. hirsuta \N \N \N \N \N 82402 \N subspecies Olea capensis subsp. enervis \N \N \N \N \N 82403 S.aellenii Silene Silene aellenii \N \N \N \N \N 82404 A.occidentalis Anemone Anemone occidentalis western pasqueflower \N \N \N \N 82405 G.suaveolens Greenwayodendron Greenwayodendron suaveolens \N \N \N \N \N 82406 E.racemosa Elmera Elmera racemosa \N \N \N \N \N 82407 P.sericea Patersonia Patersonia sericea \N \N \N \N \N 82408 O.myrtoidea Orites Orites myrtoidea \N \N \N \N \N 82409 H.salicifolius Haenianthus Haenianthus salicifolius \N \N \N \N \N 82410 C.rosea Chondrorhyncha Chondrorhyncha rosea \N \N \N \N \N 82411 T.croceum Taraxacum Taraxacum croceum \N \N \N \N \N 82412 R.nicaraguensis Ruprechtia Ruprechtia nicaraguensis \N \N \N \N \N 82413 M.TES-2011 Mimosa Mimosa sp. 5 TES-2011 \N \N \N \N \N 82414 W.obcordata Wiborgia Wiborgia obcordata \N \N \N \N \N 82415 G.altescandens Glossoloma Glossoloma altescandens \N \N \N \N \N 82416 P.yunnanensis Pholidota Pholidota yunnanensis \N \N \N \N \N 82417 \N genus Galega \N \N \N \N \N 82418 \N genus Lithrea \N \N \N \N \N 82419 A.luma Amomyrtus Amomyrtus luma \N \N \N \N \N 82420 T.HT-#31 unclassified Tropidieae Tropidieae sp. HT-#31 \N \N \N \N \N 82421 B.zeyheri Berkheya Berkheya zeyheri \N \N \N \N \N 82422 P.elegans Polystachya Polystachya elegans \N \N \N \N \N 82423 \N subfamily Chloridoideae \N \N \N \N \N 82424 O.pteripes Operculina Operculina pteripes \N \N \N \N \N 82425 S.mattogrossensis Strychnos Strychnos mattogrossensis \N \N \N \N \N 82426 P.triloba Patrinia Patrinia triloba \N \N \N \N \N 82427 E.arnhemicus Elaeocarpus Elaeocarpus arnhemicus \N \N \N \N \N 82428 \N subspecies Alstroemeria ligtu subsp. ligtu \N \N \N \N \N 82429 P.pratensis Poa Poa secunda x Poa pratensis \N \N \N \N \N 82430 S.punctulata Saxifraga Saxifraga punctulata \N \N \N \N \N 82431 V.alpina Vexatorella Vexatorella alpina \N \N \N \N \N 82432 \N genus Pristiglottis \N \N \N \N \N 82433 V.breviracemosa Hebe Veronica breviracemosa \N \N \N \N \N 82434 O.minutula Ophrys Ophrys minutula \N \N \N \N \N 82435 \N varietas Cuscuta gronovii var. calyptrata \N \N \N \N \N 82436 P.maassii Parodia Parodia maassii \N \N \N \N \N 82437 \N genus Tridimeris \N \N \N \N \N 82438 A.bulbosa Aetheorhiza Aetheorhiza bulbosa \N \N \N \N \N 82439 P.subscutatum Piper Piper subscutatum \N \N \N \N \N 82440 C.oblonga Calceolaria Calceolaria oblonga \N \N \N \N \N 82441 C.tolucensis Calamagrostis Calamagrostis tolucensis \N \N \N \N \N 82442 \N subspecies Artemisia gmelinii subsp. scheludjakoviae \N \N \N \N \N 82443 D.guianense Dialium Dialium guianense \N \N \N \N \N 82444 L.trilobum Laser Laser trilobum \N \N \N \N \N 82445 \N varietas Phedimus aizoon var. aizoon \N \N \N \N \N 82446 S.violacea Schlegelia Schlegelia violacea \N \N \N \N \N 82447 \N subspecies Ficus sansibarica subsp. sansibarica \N \N \N \N \N 82448 V.barbareifolia Valeriana Valeriana barbareifolia \N \N \N \N \N 82449 \N genus Scolopia \N \N \N \N \N 82450 \N genus Arceuthobium dwarf mistletoes \N \N \N \N 82451 G.O-555 Glomera Glomera sp. Chase O-555 \N \N \N \N \N 82452 A.notha Asclepias Asclepias notha \N \N \N \N \N 82453 P.cubana Parathesis Parathesis cubana \N \N \N \N \N 82454 H.caspica Halostachys Halostachys caspica \N \N \N \N \N 82455 H.carassensis Hemipogon Hemipogon carassensis \N \N \N \N \N 82456 M.jeffreyana Momordica Momordica jeffreyana \N \N \N \N \N 82457 D.stenoglossum Doronicum Doronicum stenoglossum \N \N \N \N \N 82458 \N genus Oldenlandiopsis \N \N \N \N \N 82459 A.lateriticola Acacia Acacia lateriticola \N \N \N \N \N 82460 T.grandiflorum Trillium Trillium grandiflorum large white trillium,snow trillium \N \N \N \N 82461 \N genus Atropa \N \N \N \N \N 82462 L.nigricans Linaria Linaria nigricans \N \N \N \N \N 82463 L.bifurcata Ledermanniella Ledermanniella bifurcata \N \N \N \N \N 82464 S.velutina Sabicea Sabicea velutina \N \N \N \N \N 82465 S.hallackii Satyrium Satyrium hallackii \N \N \N \N \N 82466 G.499 Guatteria Guatteria aff. australis Lobo and Fiaschi 499 \N \N \N \N \N 82467 O.claytonii Osmorhiza Osmorhiza claytonii \N \N \N \N \N 82468 L.exscapa Leiospora Leiospora exscapa \N \N \N \N \N 82469 \N genus Brachysema \N \N \N \N \N 82470 S.spinulosa Samyda Samyda spinulosa \N \N \N \N \N 82471 G.sample environmental samples Taxonomy:417455 Geraniales environmental sample \N \N \N \N \N 82472 C.petersenii Calathea Calathea petersenii \N \N \N \N \N 82473 \N genus Hollrungia \N \N \N \N \N 82474 \N genus Cayratia \N \N \N \N \N 82475 O.schoenlandii Orostachys Orostachys schoenlandii \N \N \N \N \N 82476 A.laevigata Asperula Asperula laevigata \N \N \N \N \N 82477 \N genus Octamyrtus \N \N \N \N \N 82478 G.wilfordii Geranium Geranium wilfordii \N \N \N \N \N 82479 D.boyacana Draba Draba boyacana \N \N \N \N \N 82480 N.attenuata Nicotiana Nicotiana attenuata \N \N \N \N \N 82481 C.intermedia Corydalis Corydalis intermedia \N \N \N \N \N 82482 O.corymbosa Oxalis Oxalis corymbosa \N \N \N \N \N 82483 \N genus Sagotia \N \N \N \N \N 82484 A.molluginoides Asperula Asperula molluginoides \N \N \N \N \N 82485 C.linczewskii Cousinia Cousinia linczewskii \N \N \N \N \N 82486 \N genus Lachanodes \N \N \N \N \N 82487 O.macrocalyx Oxera Oxera macrocalyx \N \N \N \N \N 82488 V.cuneata Viola Viola cuneata \N \N \N \N \N 82489 C.alpinum Cyclamen Cyclamen alpinum \N \N \N \N \N 82490 D.stramonium Datura Datura stramonium common thornapple,jimsonweed \N \N \N \N 82491 O.811 Oplismenus Oplismenus sp. Forest 811 \N \N \N \N \N 82492 \N subspecies Euryops pectinatus subsp. pectinatus \N \N \N \N \N 82493 A.decussata Allocasuarina Allocasuarina decussata \N \N \N \N \N 82494 Z.bungeanum Zanthoxylum Zanthoxylum bungeanum Sichuan-pepper,hua jiao \N \N \N \N 82495 \N subspecies Lepidium villarsii subsp. reverchonii \N \N \N \N \N 82496 P.phagnaloides Phagnalon Phagnalon phagnaloides \N \N \N \N \N 82497 C.styloflexa Carex Carex styloflexa \N \N \N \N \N 82498 \N genus Perilla \N \N \N \N \N 82499 Z.cearensis Zephyranthes Zephyranthes cearensis \N \N \N \N \N 82500 \N varietas Arachis hypogaea var. hirsuta \N \N \N \N \N 82501 P.palmata Plantago Plantago palmata \N \N \N \N \N 82502 \N genus Sclerorhachis \N \N \N \N \N 82503 I.paniculata Ivesia Ivesia paniculata \N \N \N \N \N 82504 \N subspecies Papaver alpinum subsp. rhaeticum \N \N \N \N \N 82505 V.chaerophylloides Valeriana Valeriana chaerophylloides \N \N \N \N \N 82506 A.sennii Acanthus Acanthus sennii \N \N \N \N \N 82507 E.740854 Eria Eria aff. javanica CBG 740854 \N \N \N \N \N 82508 \N genus Swartzia \N \N \N \N \N 82509 S.erythrocalyx Syzygium Syzygium erythrocalyx \N \N \N \N \N 82510 \N family Thomandersiaceae \N \N \N \N \N 82511 I.6347 Indigofera Indigofera sp. Bidgood et al. 6347 \N \N \N \N \N 82512 C.stauntonii Cynanchum Cynanchum stauntonii \N \N \N \N \N 82513 T.sylvestre Toxicodendron Toxicodendron sylvestre \N \N \N \N \N 82514 \N genus Stegolepis \N \N \N \N \N 82515 P.tortilis Paepalanthus Paepalanthus tortilis \N \N \N \N \N 82516 M.stipoides Microlaena Microlaena stipoides \N \N \N \N \N 82517 D.vanzylii Dinteranthus Dinteranthus vanzylii \N \N \N \N \N 82518 A.salicifolia Azara Azara salicifolia \N \N \N \N \N 82519 D.convolvulacea Dioscorea Dioscorea convolvulacea barbasquillo \N \N \N \N 82520 A.sparsus Astragalus Astragalus sparsus \N \N \N \N \N 82521 L.vernum Leucojum Leucojum vernum \N \N \N \N \N 82522 G.capitatus Gymnosiphon Gymnosiphon capitatus \N \N \N \N \N 82523 G.atropurpurea Gentiana Gentiana atropurpurea \N \N \N \N \N 82524 \N varietas Salvia cavaleriei var. simplicifolia \N \N \N \N \N 82525 O.gunnii Oreomyrrhis Oreomyrrhis gunnii \N \N \N \N \N 82526 R.euonymifolium Rhododendron Rhododendron euonymifolium \N \N \N \N \N 82527 G.patens Gonolobus Gonolobus patens \N \N \N \N \N 82528 H.resinosus Helianthus Helianthus resinosus \N \N \N \N \N 82529 B.42557 Bursera Bursera sp. 42557 \N \N \N \N \N 82530 J.brieyi Julbernardia Julbernardia brieyi \N \N \N \N \N 82531 A.pendulisepala Anemone Anemone pendulisepala \N \N \N \N \N 82532 \N varietas Cratoxylum arborescens var. in edit. Zakaria 209 \N \N \N \N \N 82533 C.studartiana Clusia Clusia studartiana \N \N \N \N \N 82534 C.hirsuta Ceropegia Ceropegia hirsuta \N \N \N \N \N 82535 P.campestris Peritassa Peritassa campestris \N \N \N \N \N 82536 M.truncatula Medicago Medicago truncatula barrel medic \N \N \N \N 82537 \N subspecies Arenaria armerina subsp. armerina \N \N \N \N \N 82538 \N forma Pappostipa vaginata f. contracta \N \N \N \N \N 82539 L.dakrongensis Licuala Licuala dakrongensis \N \N \N \N \N 82540 L.caespitosum Leontopodium Leontopodium caespitosum \N \N \N \N \N 82541 P.venusta Puya Puya venusta \N \N \N \N \N 82542 \N genus Maschalocorymbus \N \N \N \N \N 82543 A.hirsuta Arabis Arabis hirsuta hairy rockcress \N \N \N \N 82544 A.congesta Aciphylla Aciphylla congesta \N \N \N \N \N 82545 O.acuminata Olax Olax acuminata \N \N \N \N \N 82546 \N genus Cyclopia \N \N \N \N \N 82547 L.harrisii Lasiocroton Lasiocroton harrisii \N \N \N \N \N 82548 A.acanthes Aspalathus Aspalathus acanthes \N \N \N \N \N 82549 C.abyssinica Coccinia Coccinia abyssinica \N \N \N \N \N 82550 B.boliviensis Bomarea Bomarea boliviensis \N \N \N \N \N 82551 M.SH-2010 Melia Melia sp. SH-2010 \N \N \N \N \N 82552 N.urubambae Nolana Nolana urubambae \N \N \N \N \N 82553 C.cipoensis Collaea Collaea cipoensis \N \N \N \N \N 82554 D.celastroides Denhamia Denhamia celastroides \N \N \N \N \N 82555 A.glauca Aristea Aristea glauca \N \N \N \N \N 82556 B.insignis Brighamia Brighamia insignis \N \N \N \N \N 82557 E.chamaegyne Eleocharis Eleocharis chamaegyne \N \N \N \N \N 82558 C.alpinum Cerastium Cerastium alpinum \N \N \N \N \N 82559 T.filiforme Typhonium Typhonium filiforme \N \N \N \N \N 82560 \N varietas Castilleja tenuiflora var. tenuiflora \N \N \N \N \N 82561 E.1399 Eichhornia Eichhornia sp. Barrett and Shore 1399 \N \N \N \N \N 82562 \N family Heliconiaceae \N \N \N \N \N 82563 \N genus Nemum \N \N \N \N \N 82564 A.DAP-2004-1 Arachis Arachis sp. DAP-2004-1 \N \N \N \N \N 82565 \N subspecies Tropaeolum hookerianum subsp. pilosum \N \N \N \N \N 82566 L.maingayi Liparis Liparis maingayi \N \N \N \N \N 82567 G.ursina Gaylussacia Gaylussacia ursina \N \N \N \N \N 82568 C.buettneri Chlamydocardia Chlamydocardia buettneri \N \N \N \N \N 82569 C.neurocarpa Carex Carex neurocarpa \N \N \N \N \N 82570 T.ludovicianum Trillium Trillium ludovicianum Louisiana trillium \N \N \N \N 82571 P.venezuelae Panicum Panicum venezuelae \N \N \N \N \N 82572 P.crassinervia Planchonella Planchonella crassinervia \N \N \N \N \N 82573 H.ruschii Hoodia Hoodia ruschii \N \N \N \N \N 82574 P.canescens Penstemon Penstemon canescens \N \N \N \N \N 82575 P.badachschanicum Piptatherum Piptatherum badachschanicum \N \N \N \N \N 82576 C.foetidissima Cucurbita Cucurbita foetidissima buffalo gourd,calabazilla,chilicote \N \N \N \N 82577 \N genus Achyranthes \N \N \N \N \N 82578 D.secundum Dendrobium Dendrobium secundum \N \N \N \N \N 82579 T.taquimbalensis Trichocereus Trichocereus taquimbalensis \N \N \N \N \N 82580 \N varietas Aconitum carmichaelii var. tripartitum \N \N \N \N \N 82581 C.intermedia Corbassona Corbassona intermedia \N \N \N \N \N 82582 B.tenuifolia Bursaria Bursaria tenuifolia \N \N \N \N \N 82583 \N subspecies Silene sedoides subsp. sedoides \N \N \N \N \N 82584 V.verticillata Valeriana Valeriana verticillata \N \N \N \N \N 82585 Q.ilicifolia Quercus Quercus ilicifolia bear oak \N \N \N \N 82586 U.spiralis Utricularia Utricularia spiralis \N \N \N \N \N 82587 C.hydrophilum Cirsium Cirsium hydrophilum \N \N \N \N \N 82588 P.kirkmanii Posidonia Posidonia kirkmanii \N \N \N \N \N 82589 A.decursiva Angelica Angelica decursiva \N \N \N \N \N 82590 A.desertorum Adenocarpus Adenocarpus desertorum \N \N \N \N \N 82591 D.montana Dilomilis Dilomilis montana \N \N \N \N \N 82592 \N family Grossulariaceae currant family \N \N \N \N 82593 A.olivacea Alternanthera Alternanthera olivacea \N \N \N \N \N 82594 \N genus Rhyncholaelia \N \N \N \N \N 82595 \N genus Taxandria \N \N \N \N \N 82596 C.malaccensis Cleghornia Cleghornia malaccensis \N \N \N \N \N 82597 E.guttatum Erodium Erodium guttatum \N \N \N \N \N 82598 U.henryi Urophysa Urophysa henryi \N \N \N \N \N 82599 B.chloroneura Begonia Begonia chloroneura \N \N \N \N \N 82600 A.graecorum Alhagi Alhagi graecorum \N \N \N \N \N 82601 R.eustylis Rorippa Rorippa eustylis \N \N \N \N \N 82602 A.paramaca Astrocaryum Astrocaryum paramaca \N \N \N \N \N 82603 \N subspecies Eucalyptus gittinsii subsp. illucida \N \N \N \N \N 82604 B.rosthornii Briggsia Briggsia rosthornii \N \N \N \N \N 82605 C.acaulis Cochlearia Cochlearia acaulis \N \N \N \N \N 82606 S.tinctoria Serratula Serratula tinctoria \N \N \N \N \N 82607 \N subtribe Dactylidinae \N \N \N \N \N 82608 \N varietas Allium victorialis var. platyphyllum \N \N \N \N \N 82609 L.vitreola Lysipomia Lysipomia vitreola \N \N \N \N \N 82610 T.heliophilum Thalictrum Thalictrum heliophilum \N \N \N \N \N 82611 \N genus Benthamia \N \N \N \N \N 82612 P.majus Prasium Prasium majus \N \N \N \N \N 82613 C.marmorea Chimonobambusa Chimonobambusa marmorea \N \N \N \N \N 82614 A.teres Aspalathus Aspalathus teres \N \N \N \N \N 82615 L.mutabilis Lupinus Lupinus mutabilis \N \N \N \N \N 82616 N.amazonum Nectandra Nectandra amazonum \N \N \N \N \N 82617 E.californicum Eriodictyon Eriodictyon californicum \N \N \N \N \N 82618 T.2325 Tricalysia Tricalysia sp. Davis 2325 \N \N \N \N \N 82619 \N no rank unclassified Sapotaceae \N \N \N \N \N 82620 E.agglutinans Erica Erica agglutinans \N \N \N \N \N 82621 C.subternata Cyclopia Cyclopia subternata \N \N \N \N \N 82622 C.pectinata Centaurea Centaurea pectinata \N \N \N \N \N 82623 S.argyropedicum Syzygium Syzygium argyropedicum \N \N \N \N \N 82624 A.scopoliana Arabis Arabis procurrens x Arabis scopoliana \N \N \N \N \N 82625 J.odora Justicia Justicia odora \N \N \N \N \N 82626 P.sp. Parthenocissus Parthenocissus sp. \N \N \N \N \N 82627 A.tinifolius Acunaeanthus Acunaeanthus tinifolius \N \N \N \N \N 82628 L.splendens Liparia Liparia splendens \N \N \N \N \N 82629 L.minimiflorus Lonchocarpus Lonchocarpus minimiflorus \N \N \N \N \N 82630 M.sclerophylla Miconia Miconia sclerophylla \N \N \N \N \N 82631 P.glaber Pogostemon Pogostemon glaber \N \N \N \N \N 82632 P.gatopensis Pycnandra Pycnandra gatopensis \N \N \N \N \N 82633 V.abyssinica Veronica Veronica abyssinica \N \N \N \N \N 82634 D.hyrcanum Dorema Dorema hyrcanum \N \N \N \N \N 82635 S.lindleyana Sobralia Sobralia lindleyana \N \N \N \N \N 82636 \N genus Castellia \N \N \N \N \N 82637 T.mirus Tragopogon Tragopogon mirus \N \N \N \N \N 82638 G.97/910 Gorgonidium Gorgonidium sp. Weigend & Forther 97/910 \N \N \N \N \N 82639 L.idahoensis Lomatium Lomatium idahoensis Idaho biscuitroot \N \N \N \N 82640 \N genus Euclea \N \N \N \N \N 82641 M.californica Mentzelia Mentzelia californica \N \N \N \N \N 82642 A.americana Aeschynomene Aeschynomene americana \N \N \N \N \N 82643 M.polynoda Microlaena Microlaena polynoda \N \N \N \N \N 82644 C.verreauxii Croton Croton verreauxii \N \N \N \N \N 82645 P.mutans Pelargonium Pelargonium mutans \N \N \N \N \N 82646 Q.168 Qualea Qualea sp. Chase 168 \N \N \N \N \N 82647 A.powellii Atriplex Atriplex powellii \N \N \N \N \N 82648 \N genus Lepidostemon \N \N \N \N \N 82649 D.hystrix Draba Draba hystrix \N \N \N \N \N 82650 C.schimperi Corchorus Corchorus schimperi \N \N \N \N \N 82651 C.paeninsulae Carex Carex paeninsulae \N \N \N \N \N 82652 \N genus Urbinella \N \N \N \N \N 82653 V.deliciosum Vaccinium Vaccinium deliciosum \N \N \N \N \N 82654 C.novae-angliae Carex Carex novae-angliae \N \N \N \N \N 82655 C.longifolius Centranthus Centranthus longifolius \N \N \N \N \N 82656 O.bungei Onobrychis Onobrychis bungei \N \N \N \N \N 82657 P.microgemma Pleurothallis Pleurothallis microgemma \N \N \N \N \N 82658 T.rumicispermum Tetrastigma Tetrastigma rumicispermum \N \N \N \N \N 82659 C.platypterum Corispermum Corispermum platypterum \N \N \N \N \N 82660 \N genus Remijia \N \N \N \N \N 82661 R.megaphylla Rheedia Rheedia megaphylla \N \N \N \N \N 82662 P.orientalis Platanus Platanus orientalis \N \N \N \N \N 82663 G.holttumii Globba Globba holttumii \N \N \N \N \N 82664 C.octopetala Camellia Camellia octopetala \N \N \N \N \N 82665 S.trifidum Solanum Solanum trifidum \N \N \N \N \N 82666 D.melanoxylon Dalbergia Dalbergia melanoxylon \N \N \N \N \N 82667 S.ruschiana Schefflera Schefflera ruschiana \N \N \N \N \N 82668 I.korythoglossa Ischnea Ischnea korythoglossa \N \N \N \N \N 82669 M.bifoveata Macaranga Macaranga bifoveata \N \N \N \N \N 82670 \N genus Cameraria \N \N \N \N \N 82671 P.microcalyx Potamoganos Potamoganos microcalyx \N \N \N \N \N 82672 R.vanderbiltianum Rhododendron Rhododendron vanderbiltianum \N \N \N \N \N 82673 R.ferrugineum Rhododendron Rhododendron ferrugineum alpine-rose \N \N \N \N 82674 M.pustulata Massonia Massonia pustulata \N \N \N \N \N 82675 A.boliviensis Asclepias Asclepias boliviensis \N \N \N \N \N 82676 \N genus Geum \N \N \N \N \N 82677 C.917 Colea Colea sp. Zjhra 917 \N \N \N \N \N 82678 A.palmense Aeonium Aeonium palmense \N \N \N \N \N 82679 R.excelsa Rhapis Rhapis excelsa \N \N \N \N \N 82680 \N varietas Anogeissus acuminata var. lanceolata \N \N \N \N \N 82681 A.rojasiana Anthaenantiopsis Anthaenantiopsis rojasiana \N \N \N \N \N 82682 O.deamii Opuntia Opuntia deamii \N \N \N \N \N 82683 M.debilis Monopsis Monopsis debilis \N \N \N \N \N 82684 Q.MES285r Quercus Quercus sp. MES285r \N \N \N \N \N 82685 \N genus Boechera \N \N \N \N \N 82686 A.erdvendbergiana Ampelocissus Ampelocissus erdvendbergiana \N \N \N \N \N 82687 V.multiflora Virectaria Virectaria multiflora \N \N \N \N \N 82688 \N no rank environmental samples Taxonomy:1008280 \N \N \N \N \N 82689 T.saueri Turbinicarpus Turbinicarpus saueri \N \N \N \N \N 82690 O.taihangensis Opisthopappus Opisthopappus taihangensis \N \N \N \N \N 82691 H.limosa Heteranthera Heteranthera limosa \N \N \N \N \N 82692 Z.montanum Zingiber Zingiber montanum \N \N \N \N \N 82693 C.elatines Campanula Campanula elatines Adriatic bellflower \N \N \N \N 82694 B.quadrialata Begonia Begonia quadrialata \N \N \N \N \N 82695 O.chimboracensis Orthrosanthus Orthrosanthus chimboracensis \N \N \N \N \N 82696 \N varietas Jasione montana var. montana \N \N \N \N \N 82697 I.TP-2009 Inga Inga sp. 18 TP-2009 \N \N \N \N \N 82698 B.odora Biebersteinia Biebersteinia odora \N \N \N \N \N 82699 \N varietas Iris tenax var. tenax \N \N \N \N \N 82700 \N genus Pleiochiton \N \N \N \N \N 82701 L.macrocephala Llerasia Llerasia macrocephala \N \N \N \N \N 82702 I.vicioides Indigofera Indigofera vicioides \N \N \N \N \N 82703 P.bradei Piper Piper bradei \N \N \N \N \N 82704 G.hypocarpium Galium Galium hypocarpium \N \N \N \N \N 82705 V.canelinha Vellozia Vellozia canelinha \N \N \N \N \N 82706 S.eburneum Silybum Silybum eburneum \N \N \N \N \N 82707 O.nummularia Onobrychis Onobrychis nummularia \N \N \N \N \N 82708 A.pavia Aesculus Aesculus glabra var. arguta x Aesculus pavia \N \N \N \N \N 82709 G.aurantiacus Gladiolus Gladiolus aurantiacus \N \N \N \N \N 82710 M.laxiflora Medusanthera Medusanthera laxiflora \N \N \N \N \N 82711 P.bilocularis Pouteria Pouteria bilocularis \N \N \N \N \N 82712 \N no rank Saccharum hybrid cultivar SP98-87432 \N \N \N \N \N 82713 P.grandiflora Pleione Pleione grandiflora \N \N \N \N \N 82714 P.cordifolia Priva Priva cordifolia \N \N \N \N \N 82715 S.chinensis Stellaria Stellaria chinensis \N \N \N \N \N 82716 A.microdictyon Allium Allium microdictyon \N \N \N \N \N 82717 E.stellata Eranthis Eranthis stellata \N \N \N \N \N 82718 M.wrightii Monnina Monnina wrightii \N \N \N \N \N 82719 \N genus Mutisia \N \N \N \N \N 82720 L.leichtlinii Lilium Lilium leichtlinii \N \N \N \N \N 82721 R.hameliifolia Rondeletia Rondeletia hameliifolia \N \N \N \N \N 82722 A.colensoi Aciphylla Aciphylla colensoi \N \N \N \N \N 82723 S.buchii Selleophytum Selleophytum buchii \N \N \N \N \N 82724 S.aggregata Sida Sida aggregata \N \N \N \N \N 82725 H.aureosericea Heteropterys Heteropterys aureosericea \N \N \N \N \N 82726 M.floribundus Mimulus Mimulus floribundus \N \N \N \N \N 82727 E.intermedia Eleocharis Eleocharis intermedia \N \N \N \N \N 82728 B.spectabilis Bougainvillea Bougainvillea spectabilis \N \N \N \N \N 82729 D.acuminatum Disterigma Disterigma acuminatum \N \N \N \N \N 82730 \N subspecies Senecio vulgaris subsp. vulgaris \N \N \N \N \N 82731 \N genus Machaerium \N \N \N \N \N 82732 A.munita Argemone Argemone munita \N \N \N \N \N 82733 \N genus Newbouldia \N \N \N \N \N 82734 H.MSS-2010 Hydrangea Hydrangea sp. MSS-2010 \N \N \N \N \N 82735 C.racemosum Cycnium Cycnium racemosum \N \N \N \N \N 82736 \N genus Bewsia \N \N \N \N \N 82737 C.euboica Centaurea Centaurea euboica \N \N \N \N \N 82738 B.FS907 Bulbophyllum Bulbophyllum sp. FS907 \N \N \N \N \N 82739 \N genus Annickia \N \N \N \N \N 82740 M.fasciger Melicytus Melicytus fasciger \N \N \N \N \N 82741 T.retusa Templetonia Templetonia retusa \N \N \N \N \N 82742 P.lindenii Phalaenopsis Phalaenopsis lindenii \N \N \N \N \N 82743 A.wrayi Arisaema Arisaema wrayi \N \N \N \N \N 82744 E.canum Erysimum Erysimum canum \N \N \N \N \N 82745 L.umbellata Litsea Litsea umbellata \N \N \N \N \N 82746 S.1010 Siparuna Siparuna aff. cristata Vicentini et al. 1010 \N \N \N \N \N 82747 P.octandra Phytolacca Phytolacca octandra red inkplant \N \N \N \N 82748 E.rupestre Erodium Erodium rupestre \N \N \N \N \N 82749 S.delagoense Solanum Solanum delagoense \N \N \N \N \N 82750 C.frankii Carex Carex frankii \N \N \N \N \N 82751 S.scabra Sebaea Sebaea scabra \N \N \N \N \N 82752 \N genus Aristogeitonia \N \N \N \N \N 82753 S.niphoclada Salix Salix niphoclada \N \N \N \N \N 82754 S.vernonioides Syngonanthus Syngonanthus vernonioides \N \N \N \N \N 82755 L.8869 Lysipomia Lysipomia sp. nov. 8869 \N \N \N \N \N 82756 A.ricinella Adelia Adelia ricinella \N \N \N \N \N 82757 A.splendens Achnatherum Achnatherum splendens \N \N \N \N \N 82758 \N subspecies Erythronium grandiflorum subsp. grandiflorum \N \N \N \N \N 82759 H.carlsoniae Hechtia Hechtia carlsoniae \N \N \N \N \N 82760 K.olgae Korshinskya Korshinskya olgae \N \N \N \N \N 82761 \N genus Deutzia \N \N \N \N \N 82762 D.hispida Dubyaea Dubyaea hispida \N \N \N \N \N 82763 G.ledifolia Guichenotia Guichenotia ledifolia \N \N \N \N \N 82764 R.glaucus Rubus Rubus glaucus Andean blackberry,mora blanca,zarzamora azul \N \N \N \N 82765 P.guyannense Phenakospermum Phenakospermum guyannense \N \N \N \N \N 82766 S.cathayensis Semiliquidambar Semiliquidambar cathayensis \N \N \N \N \N 82767 L.pescatorei Lueddemannia Lueddemannia pescatorei \N \N \N \N \N 82768 I.parvula Iris Iris parvula \N \N \N \N \N 82769 \N varietas Angelica acutiloba var. iwatensis \N \N \N \N \N 82770 P.paniculata Piptadenia Piptadenia paniculata \N \N \N \N \N 82771 \N genus Askellia \N \N \N \N \N 82772 A.incisa Arctotis Arctotis incisa \N \N \N \N \N 82773 \N forma Rhododendron indicum f. otakumi \N \N \N \N \N 82774 A.6819 Airosperma Airosperma sp. Sands 6819 \N \N \N \N \N 82775 A.jaegerianus Astragalus Astragalus jaegerianus \N \N \N \N \N 82776 O.didymopetalus Osmanthus Osmanthus didymopetalus \N \N \N \N \N 82777 P.acuminata Pimpinella Pimpinella acuminata \N \N \N \N \N 82778 V.hemisphaerica Vellozia Vellozia hemisphaerica \N \N \N \N \N 82779 Z.SG221 Zornia Zornia sp. SG221 \N \N \N \N \N 82780 A.rotundifolia Arctotis Arctotis rotundifolia \N \N \N \N \N 82781 \N genus Teramnus \N \N \N \N \N 82782 T.laurina Trochocarpa Trochocarpa laurina \N \N \N \N \N 82783 S.schlechteri Semecarpus Semecarpus schlechteri \N \N \N \N \N 82784 N.nidus-avis Neottia Neottia nidus-avis \N \N \N \N \N 82785 \N genus Hypsophila \N \N \N \N \N 82786 C.intermedia Cattleya Cattleya intermedia \N \N \N \N \N 82787 C.corsicum Colchicum Colchicum corsicum \N \N \N \N \N 82788 B.frondosus Bromus Bromus frondosus weeping brome \N \N \N \N 82789 R.lowii Ranunculus Ranunculus lowii \N \N \N \N \N 82790 P.montana Psychotria Psychotria montana \N \N \N \N \N 82791 I.carnea Ipomoea Ipomoea carnea \N \N \N \N \N 82792 O.peyerimhoffii Ononis Ononis peyerimhoffii \N \N \N \N \N 82793 E.dysodantha Endlicheria Endlicheria dysodantha \N \N \N \N \N 82794 \N genus Synechanthus \N \N \N \N \N 82795 P.zecheri Pinguicula Pinguicula zecheri \N \N \N \N \N 82796 S.maschalinus Schoenus Schoenus maschalinus \N \N \N \N \N 82797 P.crenulata Pyracantha Pyracantha crenulata \N \N \N \N \N 82798 A.feresetacea Austrostipa Austrostipa feresetacea \N \N \N \N \N 82799 I.bicolor Isolepis Isolepis bicolor \N \N \N \N \N 82800 P.aestivum Podolobium Podolobium aestivum \N \N \N \N \N 82801 T.polium Teucrium Teucrium polium \N \N \N \N \N 82802 \N subspecies Narcissus hispanicus subsp. bujei \N \N \N \N \N 82803 S.phyllocalyx Symplocos Symplocos phyllocalyx \N \N \N \N \N 82804 V.NL-2003 Vitis Vitis sp. NL-2003 \N \N \N \N \N 82805 R.herrei Ruschia Ruschia herrei \N \N \N \N \N 82806 S.omeiana Salvia Salvia omeiana \N \N \N \N \N 82807 L.laurina Lindackeria Lindackeria laurina \N \N \N \N \N 82808 G.oblonga Gymnanthera Gymnanthera oblonga \N \N \N \N \N 82809 \N genus Geococcus \N \N \N \N \N 82810 B.pygmaea Borago Borago pygmaea \N \N \N \N \N 82811 T.asterias Thesium Thesium asterias \N \N \N \N \N 82812 N.kevediana Neorites Neorites kevediana \N \N \N \N \N 82813 S.italica Silene Silene italica \N \N \N \N \N 82814 C.latisquamea Carex Carex latisquamea \N \N \N \N \N 82815 K.gracilis Kickxia Kickxia gracilis \N \N \N \N \N 82816 \N tribe Cucurbiteae \N \N \N \N \N 82817 H.pungens Horaninovia Horaninovia pungens \N \N \N \N \N 82818 P.bellatulum Paphiopedilum Paphiopedilum bellatulum \N \N \N \N \N 82819 E.wilsonii Euonymus Euonymus wilsonii \N \N \N \N \N 82820 A.radicans Achyrospermum Achyrospermum radicans \N \N \N \N \N 82821 S.chamissonis Salix Salix chamissonis \N \N \N \N \N 82822 S.xinwuense Schizostachyum Schizostachyum xinwuense \N \N \N \N \N 82823 B.shepherdii Blepharoneuron Blepharoneuron shepherdii \N \N \N \N \N 82824 E.JK-2009 Exochaenium Exochaenium sp. D JK-2009 \N \N \N \N \N 82825 L.neufliseana Leucas Leucas neufliseana \N \N \N \N \N 82826 P.streptanthifolia Packera Packera streptanthifolia \N \N \N \N \N 82827 E.acanthocarpa Erythrina Erythrina acanthocarpa \N \N \N \N \N 82828 B.pungens Barbacenia Barbacenia pungens \N \N \N \N \N 82829 \N genus Linospadix \N \N \N \N \N 82830 T.elata Typha Typha elata \N \N \N \N \N 82831 S.wenzelii Suessenguthia Suessenguthia wenzelii \N \N \N \N \N 82832 E.tenuipes Eucalyptus Eucalyptus tenuipes \N \N \N \N \N 82833 D.bracteata Dissochaeta Dissochaeta bracteata \N \N \N \N \N 82834 E.1101 Echeandia Echeandia sp. Steele 1101 \N \N \N \N \N 82835 T.T948 Triainolepis Triainolepis sp. Eriksson et al. T948 \N \N \N \N \N 82836 A.macropus Asclepias Asclepias macropus \N \N \N \N \N 82837 \N genus Rhopalostylis \N \N \N \N \N 82838 V.venusta Vesselowskya Vesselowskya venusta \N \N \N \N \N 82839 C.bambusioides Coaxana Coaxana bambusioides \N \N \N \N \N 82840 M.longibracteata Maxillaria Maxillaria longibracteata \N \N \N \N \N 82841 P.praeruptorum Pedicularis Pedicularis praeruptorum \N \N \N \N \N 82842 M.brachycarpa Mimosa Mimosa brachycarpa \N \N \N \N \N 82843 O.2387 Ourisia Ourisia sp. Garnock-Jones 2387 \N \N \N \N \N 82844 T.suave Taraxacum Taraxacum suave \N \N \N \N \N 82845 \N genus Leucopogon \N \N \N \N \N 82846 D.natalensis Drosera Drosera natalensis \N \N \N \N \N 82847 M.discolor Myosotis Myosotis discolor \N \N \N \N \N 82848 M.umbellatum Memecylon Memecylon umbellatum \N \N \N \N \N 82849 E.pinnata Ebenus Ebenus pinnata \N \N \N \N \N 82850 C.nesophila Corymbia Corymbia nesophila \N \N \N \N \N 82851 G.physocarpus Gomphocarpus Gomphocarpus physocarpus balloon cottonbush \N \N \N \N 82852 C.cyanea Cuphea Cuphea cyanea \N \N \N \N \N 82853 \N varietas Rosa davidii var. elongata \N \N \N \N \N 82854 \N subspecies Chrysanthemum arcticum subsp. maekawanum \N \N \N \N \N 82855 E.masirahensis Euphorbia Euphorbia masirahensis \N \N \N \N \N 82856 \N subspecies Cucurbita pepo subsp. pepo field pumpkin,vegetable marrow \N \N \N \N 82857 C.billbergianus Croton Croton billbergianus \N \N \N \N \N 82858 E.palustris Eleocharis Eleocharis palustris common spikerush \N \N \N \N 82859 C.roxburghiana Chloris Chloris roxburghiana \N \N \N \N \N 82860 V.macrostemon Veronica Veronica macrostemon \N \N \N \N \N 82861 G.laeve Geissospermum Geissospermum laeve \N \N \N \N \N 82862 M.candida Maxillaria Maxillaria candida \N \N \N \N \N 82863 W.capillacea Wahlenbergia Wahlenbergia capillacea \N \N \N \N \N 82864 \N subspecies Schlumbergera lutea subsp. lutea \N \N \N \N \N 82865 H.granularis Hackelochloa Hackelochloa granularis \N \N \N \N \N 82866 C.saccharata Cryptocarya Cryptocarya saccharata \N \N \N \N \N 82867 \N genus Maguireothamnus \N \N \N \N \N 82868 U.dasoclema Uvaria Uvaria dasoclema \N \N \N \N \N 82869 A.correntina Arachis Arachis correntina \N \N \N \N \N 82870 \N subspecies Syzygium hemilamprum subsp. hemilamprum \N \N \N \N \N 82871 B.chaishoui Bupleurum Bupleurum chaishoui \N \N \N \N \N 82872 \N tribe Schizocoleeae \N \N \N \N \N 82873 H.digynum Heliotropium Heliotropium digynum \N \N \N \N \N 82874 H.fournieri Hoffmannseggella Hoffmannseggella fournieri \N \N \N \N \N 82875 C.OM1654 Combretum Combretum cf. coriifolium OM1654 \N \N \N \N \N 82876 \N genus Lidbeckia \N \N \N \N \N 82877 D.urceolata Drymonia Drymonia urceolata \N \N \N \N \N 82878 C.mannii Camptostylus Camptostylus mannii \N \N \N \N \N 82879 G.lanceisepalum Glochidion Glochidion lanceisepalum \N \N \N \N \N 82880 G.hyptiacanthum Gymnocalycium Gymnocalycium hyptiacanthum \N \N \N \N \N 82881 D.trichocarpa Dichaea Dichaea trichocarpa \N \N \N \N \N 82882 \N genus Soemmeringia \N \N \N \N \N 82883 C.oppositifolia Chuquiraga Chuquiraga oppositifolia \N \N \N \N \N 82884 N.pumilio Nothofagus Nothofagus pumilio \N \N \N \N \N 82885 H.peshmenianum Heracleum Heracleum peshmenianum \N \N \N \N \N 82886 P.brazzeana Pentadiplandra Pentadiplandra brazzeana \N \N \N \N \N 82887 C.natalensis Cuscuta Cuscuta natalensis \N \N \N \N \N 82888 L.leschenaultii Lysimachia Lysimachia leschenaultii \N \N \N \N \N 82889 A.chrysantha Aspalathus Aspalathus chrysantha \N \N \N \N \N 82890 A.myosuroides Alopecurus Alopecurus myosuroides \N \N \N \N \N 82891 D.rottleroides Dombeya Dombeya rottleroides \N \N \N \N \N 82892 I.94038 Ilex Ilex sp. Qiu 94038 \N \N \N \N \N 82893 E.kashmiriana Euphrasia Euphrasia kashmiriana \N \N \N \N \N 82894 \N subspecies Genista florida subsp. florida \N \N \N \N \N 82895 G.tetrahit Galeopsis Galeopsis tetrahit \N \N \N \N \N 82896 D.elata Dactylorhiza Dactylorhiza elata \N \N \N \N \N 82897 M.crassifolius Myodocarpus Myodocarpus crassifolius \N \N \N \N \N 82898 \N genus Paracephaelis \N \N \N \N \N 82899 S.candollei Selinum Selinum candollei \N \N \N \N \N 82900 \N genus Allotoonia \N \N \N \N \N 82901 C.ynesae Croton Croton ynesae \N \N \N \N \N 82902 E.pallescens Eriachne Eriachne pallescens \N \N \N \N \N 82903 A.melantha Asclepias Asclepias melantha \N \N \N \N \N 82904 S.thailandica Sarcoglyphis Sarcoglyphis thailandica \N \N \N \N \N 82905 H.integerrimus Homalocarpus Homalocarpus integerrimus \N \N \N \N \N 82906 G.hystricocarpum Galium Galium hystricocarpum \N \N \N \N \N 82907 W.cylindracea Wolffia Wolffia cylindracea \N \N \N \N \N 82908 \N subspecies Chaetobromus involucratus subsp. dregeanus \N \N \N \N \N 82909 S.hartwegii Sidalcea Sidalcea hartwegii \N \N \N \N \N 82910 B.campanulata Bletia Bletia campanulata \N \N \N \N \N 82911 I.shockleyi Ivesia Ivesia shockleyi \N \N \N \N \N 82912 Z.capensis Zostera Zostera capensis \N \N \N \N \N 82913 S.raphanifolium Solanum Solanum raphanifolium \N \N \N \N \N 82914 A.australiensis Aglaia Aglaia australiensis \N \N \N \N \N 82915 \N subtribe Othonninae \N \N \N \N \N 82916 S.elliptica Salacia Salacia elliptica \N \N \N \N \N 82917 C.senaria Coreopsis Coreopsis senaria \N \N \N \N \N 82918 A.longipes Androcymbium Androcymbium longipes \N \N \N \N \N 82919 G.pervillei Glenniea Glenniea pervillei \N \N \N \N \N 82920 B.filifolia Brodiaea Brodiaea filifolia \N \N \N \N \N 82921 L.sargentiae Lilium Lilium sargentiae \N \N \N \N \N 82922 I.heterolepis Inula Inula heterolepis \N \N \N \N \N 82923 P.cortusoides Primula Primula cortusoides \N \N \N \N \N 82924 \N family Acanthaceae \N \N \N \N \N 82925 P.paucicapitatum Psacalium Psacalium paucicapitatum \N \N \N \N \N 82926 G.thurberi Gossypium Gossypium thurberi \N \N \N \N \N 82927 V.octoflora Vulpia Vulpia octoflora \N \N \N \N \N 82928 R.adinophyllum Rhododendron Rhododendron adinophyllum \N \N \N \N \N 82929 D.rubra Diospyros Diospyros rubra \N \N \N \N \N 82930 P.viscida Pseudarthria Pseudarthria viscida \N \N \N \N \N 82931 S.capense Solanum Solanum capense \N \N \N \N \N 82932 I.winogradowii Iris Iris winogradowii \N \N \N \N \N 82933 A.cryptobotrys Astragalus Astragalus cryptobotrys \N \N \N \N \N 82934 \N genus Arabidella \N \N \N \N \N 82935 \N genus Lemurorchis \N \N \N \N \N 82936 I.TP-2009 Inga Inga sp. 6 TP-2009 \N \N \N \N \N 82937 D.rigescens Diascia Diascia rigescens \N \N \N \N \N 82938 P.microphylla Potentilla Potentilla microphylla \N \N \N \N \N 82939 F.subbispicata Fimbristylis Fimbristylis subbispicata \N \N \N \N \N 82940 S.1376 Suaeda Suaeda sp. Schuetze 1376 \N \N \N \N \N 82941 A.dolichantha Aphelandra Aphelandra dolichantha \N \N \N \N \N 82942 \N order Malpighiales \N \N \N \N \N 82943 \N genus Leucophyta \N \N \N \N \N 82944 \N subspecies Dubautia plantaginea subsp. plantaginea \N \N \N \N \N 82945 P.denticulata Protea Protea denticulata \N \N \N \N \N 82946 M.xiphophorus Macroclinium Macroclinium xiphophorus \N \N \N \N \N 82947 C.costaricensis Cuscuta Cuscuta costaricensis \N \N \N \N \N 82948 \N subspecies Rhododendron camtschaticum subsp. glandulosum \N \N \N \N \N 82949 L.shockleyi Lycium Lycium shockleyi \N \N \N \N \N 82950 A.centralis Austrostipa Austrostipa centralis \N \N \N \N \N 82951 P.octophylla Pimelea Pimelea octophylla \N \N \N \N \N 82952 H.belmoreana Howea Howea belmoreana \N \N \N \N \N 82953 S.Ssp5 Sobralia Sobralia sp. Ssp5 \N \N \N \N \N 82954 T.gallica Tamarix Tamarix gallica \N \N \N \N \N 82955 \N subspecies Astragalus vesicarius subsp. pastellianus \N \N \N \N \N 82956 \N subspecies Eucalyptus calcicola subsp. unita \N \N \N \N \N 82957 \N genus Oreomunnea \N \N \N \N \N 82958 U.mairei Urtica Urtica mairei \N \N \N \N \N 82959 C.sphaerocarpa Citrus Citrus sphaerocarpa \N \N \N \N \N 82960 A.spinosa Amphithalea Amphithalea spinosa \N \N \N \N \N 82961 A.nakaoi Aristolochia Aristolochia nakaoi \N \N \N \N \N 82962 P.deltoides Populus Populus trichocarpa x Populus deltoides \N \N \N \N \N 82963 E.aristata Euphorbia Euphorbia aristata \N \N \N \N \N 82964 G.pilosum Galium Galium pilosum \N \N \N \N \N 82965 E.chionodes Erica Erica chionodes \N \N \N \N \N 82966 \N tribe Biscutelleae \N \N \N \N \N 82967 A.hookeri Aeschynanthus Aeschynanthus hookeri \N \N \N \N \N 82968 G.forbesii Gomesa Gomesa forbesii \N \N \N \N \N 82969 \N genus Lymanbensonia \N \N \N \N \N 82970 A.chrysantha Acineta Acineta chrysantha \N \N \N \N \N 82971 G.glandulosa Galphimia Galphimia glandulosa \N \N \N \N \N 82972 L.scilloides Lilaea Lilaea scilloides \N \N \N \N \N 82973 S.02-01-34 Silene Silene sp. Miehe et al. 02-01-34 \N \N \N \N \N 82974 A.98-6187 Amomum Amomum aff. purpureorubrum Kress 98-6187 \N \N \N \N \N 82975 Y.brevifolia Yucca Yucca brevifolia Joshua tree \N \N \N \N 82976 B.eloiseae Billbergia Billbergia eloiseae \N \N \N \N \N 82977 M.phalaenopsis Miltoniopsis Miltoniopsis phalaenopsis \N \N \N \N \N 82978 L.thurberi Lepidium Lepidium thurberi \N \N \N \N \N 82979 P.comperei Psychotria Psychotria comperei \N \N \N \N \N 82980 \N varietas Chamaecrista eitenorum var. regana \N \N \N \N \N 82981 \N genus Marathrum \N \N \N \N \N 82982 C.nobilis Corydalis Corydalis nobilis \N \N \N \N \N 82983 R.applanata Rhyncholacis Rhyncholacis applanata \N \N \N \N \N 82984 M.hahajimensis Malaxis Malaxis hahajimensis \N \N \N \N \N 82985 R.praecox Rauvolfia Rauvolfia praecox \N \N \N \N \N 82986 A.engelmanniana Asclepias Asclepias engelmanniana \N \N \N \N \N 82987 L.glomerata Lawrencia Lawrencia glomerata \N \N \N \N \N 82988 A.stenocarpa Arabis Arabis stenocarpa \N \N \N \N \N 82989 A.benomensis Ancistrocladus Ancistrocladus benomensis \N \N \N \N \N 82990 H.strigosum Hedyosmum Hedyosmum strigosum \N \N \N \N \N 82991 R.cistoides Reaumuria Reaumuria cistoides \N \N \N \N \N 82992 P.monticola Pterostylis Pterostylis monticola \N \N \N \N \N 82993 K.leonense Kolobopetalum Kolobopetalum leonense \N \N \N \N \N 82994 C.tuberculosa Coryphantha Coryphantha tuberculosa \N \N \N \N \N 82995 B.mucronata Babiana Babiana mucronata \N \N \N \N \N 82996 S.rigens Schoenus Schoenus rigens \N \N \N \N \N 82997 C.gigantea Calamovilfa Calamovilfa gigantea \N \N \N \N \N 82998 P.gonoloboides Pentarrhinum Pentarrhinum gonoloboides \N \N \N \N \N 82999 U.rupestris Uvaria Uvaria rupestris \N \N \N \N \N 83000 M.cantharophila Moraea Moraea cantharophila \N \N \N \N \N 83001 S.elegans Senecio Senecio elegans \N \N \N \N \N 83002 \N genus Sommerfeltia \N \N \N \N \N 83003 G.maculatus Gladiolus Gladiolus maculatus \N \N \N \N \N 83004 \N subspecies Halosarcia indica subsp. julacea \N \N \N \N \N 83005 M.rutenbergianum Mesanthemum Mesanthemum rutenbergianum \N \N \N \N \N 83006 N.arenicola Nolana Nolana arenicola \N \N \N \N \N 83007 \N genus Blackstonia \N \N \N \N \N 83008 C.petiolata Coprosma Coprosma petiolata \N \N \N \N \N 83009 C.lactiflora Campanula Campanula lactiflora \N \N \N \N \N 83010 C.rotundifolius Corybas Corybas rotundifolius \N \N \N \N \N 83011 \N subspecies Cornus schindleri subsp. poliophylla \N \N \N \N \N 83012 E.stapelioides Euphorbia Euphorbia stapelioides \N \N \N \N \N 83013 S.tubifera Salvia Salvia tubifera \N \N \N \N \N 83014 \N subspecies Oenothera villosa subsp. villosa \N \N \N \N \N 83015 C.parvimuricata Camellia Camellia parvimuricata \N \N \N \N \N 83016 I.poeppigii Irlbachia Irlbachia poeppigii \N \N \N \N \N 83017 D.omeiense Delphinium Delphinium omeiense \N \N \N \N \N 83018 \N genus Aletris \N \N \N \N \N 83019 R.olivifera Rhipsalis Rhipsalis olivifera \N \N \N \N \N 83020 V.cult33 Viola Viola sp. Hearn cult33 \N \N \N \N \N 83021 O.brevipes Ophiopogon Ophiopogon brevipes \N \N \N \N \N 83022 S.rhodoleuca Sauvagesia Sauvagesia rhodoleuca \N \N \N \N \N 83023 F.phaeosyce Ficus Ficus phaeosyce \N \N \N \N \N 83024 Y.furcatopilosa Yinshania Yinshania furcatopilosa \N \N \N \N \N 83025 T.lucanicum Trifolium Trifolium lucanicum \N \N \N \N \N 83026 D.angustiloba Duvalia Duvalia angustiloba \N \N \N \N \N 83027 \N varietas Butia capitata var. odorata \N \N \N \N \N 83028 M.cordifolia Mascagnia Mascagnia cordifolia \N \N \N \N \N 83029 S.longiloba Sagittaria Sagittaria longiloba \N \N \N \N \N 83030 S.micrantha Scaphyglottis Scaphyglottis micrantha \N \N \N \N \N 83031 V.ciliolata Hebe Veronica ciliolata \N \N \N \N \N 83032 S.santolallae Solanum Solanum santolallae \N \N \N \N \N 83033 S.unilobum Solanum Solanum unilobum \N \N \N \N \N 83034 \N genus Seyrigia \N \N \N \N \N 83035 R.afghanicum Rhammatophyllum Rhammatophyllum afghanicum \N \N \N \N \N 83036 \N genus Arisaema \N \N \N \N \N 83037 C.intermedia Cienfuegosia Cienfuegosia intermedia \N \N \N \N \N 83038 O.hispidum Ornithogalum Ornithogalum hispidum \N \N \N \N \N 83039 \N genus Heterotaxis \N \N \N \N \N 83040 H.scabrum Hieracium Hieracium scabrum \N \N \N \N \N 83041 M.ambovombensis Microsteira Microsteira ambovombensis \N \N \N \N \N 83042 P.maculosoides Pleioblastus Pleioblastus maculosoides \N \N \N \N \N 83043 P.constrictum Paspalidium Paspalidium constrictum \N \N \N \N \N 83044 \N genus Thalictrum \N \N \N \N \N 83045 A.pellitus Astragalus Astragalus pellitus \N \N \N \N \N 83046 G.montserratii Gentiana Gentiana montserratii \N \N \N \N \N 83047 \N varietas Polygonum campanulatum var. campanulatum \N \N \N \N \N 83048 D.standleyi Draba Draba standleyi \N \N \N \N \N 83049 R.jingangshanicum Rhododendron Rhododendron jingangshanicum \N \N \N \N \N 83050 A.wilsoniana Achillea Achillea wilsoniana \N \N \N \N \N 83051 V.principis Viola Viola principis \N \N \N \N \N 83052 A.hispida Arundinella Arundinella hispida \N \N \N \N \N 83053 J.kraussii Juncus Juncus kraussii \N \N \N \N \N 83054 C.versicolor Cylindropuntia Cylindropuntia versicolor \N \N \N \N \N 83055 L.confusa Lonicera Lonicera confusa \N \N \N \N \N 83056 G.catalinense Galium Galium catalinense \N \N \N \N \N 83057 M.s.n. Myriophyllum Myriophyllum sp. Broch s.n. \N \N \N \N \N 83058 L.deflexicalyx Lonicera Lonicera deflexicalyx \N \N \N \N \N 83059 C.lemmonii Castilleja Castilleja lemmonii \N \N \N \N \N 83060 D.kohatense Delphinium Delphinium kohatense \N \N \N \N \N 83061 N.plicata Nemcia Nemcia plicata \N \N \N \N \N 83062 C.hypochoeridea Crepis Crepis hypochoeridea \N \N \N \N \N 83063 D.kawakamii Disporum Disporum kawakamii \N \N \N \N \N 83064 O.dissitiflora Olax Olax dissitiflora \N \N \N \N \N 83065 P.nitens Pterogyne Pterogyne nitens palo mortero,tipa,tipilla \N \N \N \N 83066 M.flavescens Moraea Moraea flavescens \N \N \N \N \N 83067 L.alpinum Laburnum Laburnum alpinum Scotch laburnum \N \N \N \N 83068 S.nitens Symplocos Symplocos nitens \N \N \N \N \N 83069 T.tomasellii Tillandsia Tillandsia tomasellii \N \N \N \N \N 83070 P.tricolor Piper Piper tricolor \N \N \N \N \N 83071 M.unguis-cati Macfadyena Macfadyena unguis-cati cat's claw creeper \N \N \N \N 83072 \N family Strombosiaceae \N \N \N \N \N 83073 C.castanea Cliffortia Cliffortia castanea \N \N \N \N \N 83074 \N family Cactaceae cactus family \N \N \N \N 83075 C.JB-2006 Castilleja Castilleja sp. JB-2006 \N \N \N \N \N 83076 C.acutifolia Capparis Capparis acutifolia \N \N \N \N \N 83077 P.actinella Packera Packera actinella \N \N \N \N \N 83078 V.officinalis Valeriana Valeriana officinalis common valerian,garden heliotrope \N \N \N \N 83079 P.orbicularis Phyllanthus Phyllanthus orbicularis \N \N \N \N \N 83080 D.glacialis Draba Draba glacialis \N \N \N \N \N 83081 S.peruvianum Lycopersicon Solanum lycopersicum x Solanum peruvianum \N \N \N \N \N 83083 I.nothofagifolia Ilex Ilex nothofagifolia \N \N \N \N \N 83084 T.tubispathum Typhonium Typhonium tubispathum \N \N \N \N \N 83085 \N genus Euroschinus \N \N \N \N \N 83086 L.arrecta Leiothrix Leiothrix arrecta \N \N \N \N \N 83087 M.barbeyana Miconia Miconia barbeyana \N \N \N \N \N 83088 C.orientalis Cenchrus Cenchrus americanus x Cenchrus orientalis \N \N \N \N \N 83089 \N subspecies Osmorhiza mexicana subsp. mexicana \N \N \N \N \N 83090 O.chodshamuminensis Olgaea Olgaea chodshamuminensis \N \N \N \N \N 83091 A.metriosiphon Adenia Adenia metriosiphon \N \N \N \N \N 83092 D.fusiformis Dieterlea Dieterlea fusiformis \N \N \N \N \N 83093 C.ophiocarpa Corydalis Corydalis ophiocarpa \N \N \N \N \N 83094 E.kotschyi Echinops Echinops kotschyi \N \N \N \N \N 83095 H.gmelinii Hedysarum Hedysarum gmelinii \N \N \N \N \N 83096 S.segethi Solenomelus Solenomelus segethi \N \N \N \N \N 83097 A.5517 Attalea Attalea sp. Noblick 5517 \N \N \N \N \N 83098 B.nitens Bulbophyllum Bulbophyllum nitens \N \N \N \N \N 83099 A.vinealis Agrostis Agrostis vinealis brown bentgrass \N \N \N \N 83100 C.asperrimum Cynarospermum Cynarospermum asperrimum \N \N \N \N \N 83101 \N varietas Viburnum punctatum var. lepidotulum \N \N \N \N \N 83102 \N genus Annamocarya \N \N \N \N \N 83103 P.paucinervis Pauridiantha Pauridiantha paucinervis \N \N \N \N \N 83104 \N varietas Exacum trinervium var. ritigalense \N \N \N \N \N 83105 P.cyanococca Psychotria Psychotria cyanococca \N \N \N \N \N 83106 \N genus Vitis \N \N \N \N \N 83107 A.bangkokensis Amorphophallus Amorphophallus bangkokensis \N \N \N \N \N 83108 A.perakensis Alseodaphne Alseodaphne perakensis \N \N \N \N \N 83109 \N genus Onixotis \N \N \N \N \N 83110 I.georgei Indigofera Indigofera georgei \N \N \N \N \N 83111 S.pondoense Syzygium Syzygium pondoense \N \N \N \N \N 83112 \N varietas Asparagus altissimus var. asperulus \N \N \N \N \N 83113 S.altum Schoenoxiphium Schoenoxiphium altum \N \N \N \N \N 83114 S.brevifolium Solanum Solanum brevifolium \N \N \N \N \N 83115 C.varelae Croton Croton varelae \N \N \N \N \N 83116 R.sinonuttallii Rhododendron Rhododendron sinonuttallii \N \N \N \N \N 83117 A.osyrensis Argyreia Argyreia osyrensis \N \N \N \N \N 83118 R.thyrsoides Rumex Rumex thyrsoides \N \N \N \N \N 83119 P.gibbosum Pelargonium Pelargonium gibbosum \N \N \N \N \N 83120 S.rigescentoides Solanum Solanum rigescentoides \N \N \N \N \N 83121 L.abyssinica Lavatera Lavatera abyssinica \N \N \N \N \N 83122 \N subspecies Lathyrus palustris subsp. pilosus \N \N \N \N \N 83123 O.acetosella Oxalis Oxalis acetosella Irish shamrock,cuckoo-bread \N \N \N \N 83124 A.stracheyi Artemisiella Artemisiella stracheyi \N \N \N \N \N 83125 E.terracina Euphorbia Euphorbia terracina \N \N \N \N \N 83126 V.mirabilis Viola Viola mirabilis \N \N \N \N \N 83127 A.kariniana Amorimia Amorimia kariniana \N \N \N \N \N 83128 B.comorensis Begonia Begonia comorensis \N \N \N \N \N 83129 S.colombiensis Strychnos Strychnos colombiensis \N \N \N \N \N 83130 A.EYYL-2006 Aronia Aronia sp. EYYL-2006 \N \N \N \N \N 83131 E.bravoana Euphorbia Euphorbia bravoana \N \N \N \N \N 83132 D.graveolens Durio Durio graveolens \N \N \N \N \N 83133 S.trichoclada Sampaiella Sampaiella trichoclada \N \N \N \N \N 83134 B.archboldiana Bhesa Bhesa archboldiana \N \N \N \N \N 83135 T.floribunda Tylophora Tylophora floribunda \N \N \N \N \N 83136 P.revoluta Protea Protea revoluta \N \N \N \N \N 83137 C.strigosa Campanula Campanula strigosa \N \N \N \N \N 83138 M.canadense Menispermum Menispermum canadense \N \N \N \N \N 83139 S.remotiflora Sericorema Sericorema remotiflora \N \N \N \N \N 83140 \N varietas Hydrangea macrophylla var. stylosa \N \N \N \N \N 83141 G.curvinervia Guatteria Guatteria curvinervia \N \N \N \N \N 83142 L.draba Lepidium Lepidium draba heart-podded hoary cress,hoary cress,perennial peppergrass,whitetop \N \N \N \N 83143 L.deserti Lycium Lycium deserti \N \N \N \N \N 83144 L.bahiensis Luetzelburgia Luetzelburgia bahiensis \N \N \N \N \N 83145 T.silaifolia Tongoloa Tongoloa silaifolia \N \N \N \N \N 83146 L.perennis Lactuca Lactuca perennis blue lettuce \N \N \N \N 83147 \N subspecies Ipomopsis tenuituba subsp. latiloba \N \N \N \N \N 83148 D.remotiflora Dyckia Dyckia remotiflora \N \N \N \N \N 83149 M.sylvatica Mirandea Mirandea sylvatica \N \N \N \N \N 83150 G.acuminatum Glochidion Glochidion acuminatum \N \N \N \N \N 83151 C.hygrophila Carapa Carapa hygrophila \N \N \N \N \N 83152 B.orectopetalum Bulbophyllum Bulbophyllum orectopetalum \N \N \N \N \N 83153 M.fendleriana Mentzelia Mentzelia fendleriana \N \N \N \N \N 83154 D.micrantha Diastatea Diastatea micrantha \N \N \N \N \N 83155 A.virens Albuca Albuca virens \N \N \N \N \N 83156 P.yunhoensis Phyllostachys Phyllostachys yunhoensis \N \N \N \N \N 83157 A.subsericeum Aframomum Aframomum subsericeum \N \N \N \N \N 83158 T.junceiforme Thinopyrum Thinopyrum junceiforme \N \N \N \N \N 83159 \N subspecies Artemisia ludoviciana subsp. gnaphalodes \N \N \N \N \N 83160 B.13412 Brachystephanus Brachystephanus sp. Letouzey 13412 \N \N \N \N \N 83161 C.sparganioides Carex Carex sparganioides \N \N \N \N \N 83162 \N subspecies Rorippa palustris subsp. palustris \N \N \N \N \N 83163 M.tenuivenosa Myrcia Myrcia tenuivenosa \N \N \N \N \N 83164 \N genus Baloskion \N \N \N \N \N 83165 \N genus Sigesbeckia \N \N \N \N \N 83166 P.alboviolaceus Plectranthus Plectranthus alboviolaceus \N \N \N \N \N 83167 C.behrii Caladenia Caladenia behrii \N \N \N \N \N 83168 B.nashii Bursera Bursera nashii \N \N \N \N \N 83169 I.furcata Impatiens Impatiens furcata \N \N \N \N \N 83170 C.peloponnesiacum Colchicum Colchicum peloponnesiacum \N \N \N \N \N 83171 V.longidentata Vaughania Vaughania longidentata \N \N \N \N \N 83172 Y.denticulata Youngia Youngia denticulata \N \N \N \N \N 83173 C.productus Costus Costus productus \N \N \N \N \N 83174 N.umbellula Nestronia Nestronia umbellula conjurer's-nut,leechbrush \N \N \N \N 83175 \N varietas Peucedanum harry-smithii var. grande \N \N \N \N \N 83176 \N subspecies Crocus serotinus subsp. serotinus \N \N \N \N \N 83177 P.persica Prunus Prunus dulcis x Prunus persica \N \N \N \N \N 83178 \N subfamily Seetzenioideae \N \N \N \N \N 83179 A.inermis Andira Andira inermis \N \N \N \N \N 83180 \N genus Pinellia \N \N \N \N \N 83181 E.leucophloia Eucalyptus Eucalyptus leucophloia \N \N \N \N \N 83182 R.chasmanthiflora Reyemia Reyemia chasmanthiflora \N \N \N \N \N 83183 L.rantonnei Lycianthes Lycianthes rantonnei blue potato bush \N \N \N \N 83184 \N subspecies Allium senescens subsp. montanum \N \N \N \N \N 83185 P.obscura Polygala Polygala obscura \N \N \N \N \N 83186 M.177 Mentha Mentha sp. Edwards 177 \N \N \N \N \N 83187 O.basicola Oreomyrrhis Oreomyrrhis basicola \N \N \N \N \N 83188 \N genus Simsia \N \N \N \N \N 83189 L.ovalifolium Ligustrum Ligustrum ovalifolium \N \N \N \N \N 83190 C.capense Chlorophytum Chlorophytum capense \N \N \N \N \N 83191 S.19931445 Streptocarpus Streptocarpus sp. 19931445 \N \N \N \N \N 83192 \N varietas Satyrium cristatum var. longilabiatum \N \N \N \N \N 83193 M.laxa Mandevilla Mandevilla laxa Chilean jasmine \N \N \N \N 83194 C.intermedia Calicotome Calicotome intermedia \N \N \N \N \N 83195 \N genus Atropanthe \N \N \N \N \N 83196 \N subspecies Rafnia capensis subsp. capensis \N \N \N \N \N 83197 H.tenuis Haageocereus Haageocereus tenuis \N \N \N \N \N 83198 V.patens Vernonanthura Vernonanthura patens \N \N \N \N \N 83199 C.stricta Casuarina Casuarina stricta \N \N \N \N \N 83200 G.californicum Galium Galium californicum \N \N \N \N \N 83201 G.chorisepalus Gyrocheilos Gyrocheilos chorisepalus \N \N \N \N \N 83202 E.lichiangensis Euonymus Euonymus lichiangensis \N \N \N \N \N 83203 \N genus Urmenetea \N \N \N \N \N 83204 N.megalosiphon Nicotiana Nicotiana megalosiphon \N \N \N \N \N 83205 \N varietas Mimosa nuda var. nuda \N \N \N \N \N 83206 S.105 Sonderina Sonderina sp. 1-Magee & Boatwright 105 \N \N \N \N \N 83207 I.tenuis Inga Inga tenuis \N \N \N \N \N 83208 A.turbinata Archirhodomyrtus Archirhodomyrtus turbinata \N \N \N \N \N 83209 G.MZ-2008 Gagea Gagea cf. setifolia MZ-2008 \N \N \N \N \N 83210 P.discolor Paraligusticum Paraligusticum discolor \N \N \N \N \N 83211 H.intermedia Habenaria Habenaria intermedia \N \N \N \N \N 83212 A.NHN-2007 Allium Allium sp. NHN-2007 \N \N \N \N \N 83213 \N subspecies Tabebuia chrysantha subsp. pluvicola \N \N \N \N \N 83214 G.duplicata Gastonia Gastonia duplicata \N \N \N \N \N 83215 I.remota Iliamna Iliamna remota \N \N \N \N \N 83216 H.acaulis Huanaca Huanaca acaulis \N \N \N \N \N 83217 S.glutinosum Solanum Solanum glutinosum \N \N \N \N \N 83218 A.mexicana Agastache Agastache mexicana \N \N \N \N \N 83219 S.bellum Sisyrinchium Sisyrinchium bellum \N \N \N \N \N 83220 P.pachyphylla Phacelia Phacelia pachyphylla blacktack phacelia \N \N \N \N 83221 C.molokaiensis Canavalia Canavalia molokaiensis \N \N \N \N \N 83222 B.angulosa Berberis Berberis angulosa \N \N \N \N \N 83223 S.hainanense Schizostachyum Schizostachyum hainanense \N \N \N \N \N 83224 R.costaricensis Ruellia Ruellia costaricensis \N \N \N \N \N 83225 P.phleoides Phleum Phleum phleoides Boehmer's cat's-tail,purple-stem cat's-tail \N \N \N \N 83226 S.montanum Symphionema Symphionema montanum \N \N \N \N \N 83227 \N genus Acronychia \N \N \N \N \N 83228 \N genus Cuspidia \N \N \N \N \N 83229 P.weddellianum Podostemum Podostemum weddellianum \N \N \N \N \N 83230 L.africana Leonardoxa Leonardoxa africana \N \N \N \N \N 83231 H.echiifolia Hibbertia Hibbertia echiifolia \N \N \N \N \N 83232 E.EHR-2010 Eleocharis Eleocharis aff. sellowiana EHR-2010 \N \N \N \N \N 83233 A.virletii Asclepias Asclepias virletii \N \N \N \N \N 83234 B.nitidum Bulbophyllum Bulbophyllum nitidum \N \N \N \N \N 83235 A.globulifera Acacia Acacia globulifera \N \N \N \N \N 83236 G.saxatile Galium Galium saxatile heath bedstraw \N \N \N \N 83237 \N genus Xantolis \N \N \N \N \N 83238 \N genus Wetria \N \N \N \N \N 83239 \N genus Maurandella \N \N \N \N \N 83240 J.canaliculata Jaeschkea Jaeschkea canaliculata \N \N \N \N \N 83241 D.tortuosum Desmodium Desmodium tortuosum amor-seco,beggarweed,pega-pega \N \N \N \N 83242 \N subspecies Descurainia incisa subsp. viscosa \N \N \N \N \N 83243 S.esteroa Suaeda Suaeda esteroa \N \N \N \N \N 83244 C.calyculata Chamaedaphne Chamaedaphne calyculata \N \N \N \N \N 83245 C.imerinensis Cayratia Cayratia imerinensis \N \N \N \N \N 83246 C.bicolor Ceratandra Ceratandra bicolor \N \N \N \N \N 83247 C.boliviensis Chlidanthus Chlidanthus boliviensis \N \N \N \N \N 83248 P.szechuanica Paeonia Paeonia szechuanica \N \N \N \N \N 83249 I.antunesiana Indigofera Indigofera antunesiana \N \N \N \N \N 83250 L.H795 Ledebouria Ledebouria sp. Pfosser H795 \N \N \N \N \N 83251 P.amurensis Physocarpus Physocarpus amurensis \N \N \N \N \N 83252 P.grandiflora Pedicularis Pedicularis grandiflora \N \N \N \N \N 83253 A.rubiginosa Aspalathus Aspalathus rubiginosa \N \N \N \N \N 83254 \N tribe Ceropegieae \N \N \N \N \N 83255 \N genus Oldenburgia \N \N \N \N \N 83256 N.bonariensis Nicotiana Nicotiana bonariensis \N \N \N \N \N 83257 A.vexillocalyculatum Antirrhinum Antirrhinum vexillocalyculatum \N \N \N \N \N 83258 C.mucronata Carex Carex mucronata \N \N \N \N \N 83259 H.rubicundum Helichrysum Helichrysum rubicundum \N \N \N \N \N 83260 T.platycarpa Thapsia Thapsia platycarpa \N \N \N \N \N 83261 U.ceylanicum Urophyllum Urophyllum ceylanicum \N \N \N \N \N 83262 S.remota Spermacoce Spermacoce remota \N \N \N \N \N 83263 L.squarrosa Laxmannia Laxmannia squarrosa \N \N \N \N \N 83264 B.verruculosum Bunium Bunium verruculosum \N \N \N \N \N 83265 C.pringlei Cronquistia Cronquistia pringlei \N \N \N \N \N 83266 \N genus Eriope \N \N \N \N \N 83267 O.promontorii Ophrys Ophrys promontorii \N \N \N \N \N 83268 \N family Diapensiaceae \N \N \N \N \N 83269 A.cretacea Anabasis Anabasis cretacea \N \N \N \N \N 83270 S.tuberosa Stemona Stemona tuberosa \N \N \N \N \N 83271 D.meziana Deuterocohnia Deuterocohnia meziana \N \N \N \N \N 83272 C.264 Cliffortia Cliffortia cf. virgata Whitehouse 264 \N \N \N \N \N 83273 R.verbasciformis Ruellia Ruellia verbasciformis \N \N \N \N \N 83274 L.364 Luvunga Luvunga sp. TT 364 \N \N \N \N \N 83275 C.linearifolius Croton Croton linearifolius \N \N \N \N \N 83276 \N family Gentianaceae gentian family \N \N \N \N 83277 B.yunnanensis Bambusa Bambusa yunnanensis \N \N \N \N \N 83278 S.haleakalae Santalum Santalum haleakalae Haleakala sandalwood \N \N \N \N 83279 C.kuelapensis Cedrela Cedrela kuelapensis \N \N \N \N \N 83280 \N varietas Aristida adscensionis var. nigrescens \N \N \N \N \N 83281 C.nyssana Centaurea Centaurea nyssana \N \N \N \N \N 83282 X.VOV-2010 Xyris Xyris sp. VOV-2010 \N \N \N \N \N 83283 \N forma Rhipsalis micrantha f. micrantha \N \N \N \N \N 83284 L.anfractuosus Lotus Lotus anfractuosus \N \N \N \N \N 83285 N.mexicana Nymphaea Nymphaea mexicana banana water-lily,yellow water-lily \N \N \N \N 83286 C.laciniata Campanula Campanula laciniata \N \N \N \N \N 83287 S.repens Salix Salix myrtilloides x Salix repens subsp. repens \N \N \N \N \N 83288 M.repens Melampodium Melampodium repens \N \N \N \N \N 83289 E.minutissima Eleocharis Eleocharis minutissima \N \N \N \N \N 83290 \N varietas Daphniphyllum macropodum var. humile \N \N \N \N \N 83291 G.stricta Geonoma Geonoma stricta \N \N \N \N \N 83292 O.cuneata Oxalis Oxalis cuneata \N \N \N \N \N 83293 K.clavata Korthalsella Korthalsella clavata \N \N \N \N \N 83294 S.dissecta Selenia Selenia dissecta \N \N \N \N \N 83295 J.bernardelloana Jaltomata Jaltomata bernardelloana \N \N \N \N \N 83296 R.elliptica Rafnia Rafnia elliptica \N \N \N \N \N 83297 O.alborosea Onosma Onosma alborosea \N \N \N \N \N 83298 M.Nuer unclassified Magnoliophyta Magnoliophyta sp. Khao-Yen Nuer \N \N \N \N \N 83299 O.ulvifolia Ottelia Ottelia ulvifolia \N \N \N \N \N 83300 \N genus Hillia \N \N \N \N \N 83301 A.subnivalis Alchemilla Alchemilla subnivalis \N \N \N \N \N 83302 P.amoena Psychotria Psychotria amoena \N \N \N \N \N 83303 \N genus Pteroxygonum \N \N \N \N \N 83304 S.obtusum Schoenocaulon Schoenocaulon obtusum \N \N \N \N \N 83305 D.dewildei Dendrochilum Dendrochilum dewildei \N \N \N \N \N 83306 P.umbratica Pimelea Pimelea umbratica \N \N \N \N \N 83307 N.tangutorum Nitraria Nitraria tangutorum \N \N \N \N \N 83308 O.scandens Oteiza Oteiza scandens \N \N \N \N \N 83309 \N subspecies Lasthenia californica subsp. californica \N \N \N \N \N 83310 S.caulescens Streptocarpus Streptocarpus caulescens \N \N \N \N \N 83311 G.colombiana Galeottia Galeottia colombiana \N \N \N \N \N 83312 K.larsenii Kaempferia Kaempferia larsenii \N \N \N \N \N 83313 \N genus Protomegabaria \N \N \N \N \N 83314 P.chinense Phellodendron Phellodendron chinense \N \N \N \N \N 83315 M.junodii Monodora Monodora junodii \N \N \N \N \N 83316 M.minima Mibora Mibora minima \N \N \N \N \N 83317 C.cavanillesii Collomia Collomia cavanillesii \N \N \N \N \N 83318 U.thouarsii Uapaca Uapaca thouarsii \N \N \N \N \N 83319 C.parviflora Catesbaea Catesbaea parviflora \N \N \N \N \N 83320 A.TH-53B Arthrostylidium Arthrostylidium sp. TH-53B \N \N \N \N \N 83321 Z.olivaceum Zeylanidium Zeylanidium olivaceum \N \N \N \N \N 83322 C.sinemariensis Carolus Carolus sinemariensis \N \N \N \N \N 83323 T.saposhnikovii Timouria Timouria saposhnikovii \N \N \N \N \N 83324 S.apetala Sterculia Sterculia apetala \N \N \N \N \N 83325 X.ovatifolia Xeroaloysia Xeroaloysia ovatifolia \N \N \N \N \N 83326 S.macrophylla Scrophularia Scrophularia macrophylla \N \N \N \N \N 83327 L.chinensis Lespedeza Lespedeza chinensis \N \N \N \N \N 83328 I.cassiniiformis Iresine Iresine cassiniiformis \N \N \N \N \N 83329 S.bullata Shorea Shorea bullata \N \N \N \N \N 83330 M.subcaudata Macrocarpaea Macrocarpaea subcaudata \N \N \N \N \N 83331 P.mooreana Passiflora Passiflora mooreana \N \N \N \N \N 83332 S.aethiopicum Solanum Solanum aethiopicum gilo,kumba,scarlet eggplant,shum \N \N \N \N 83333 B.montana Bipinnula Bipinnula montana \N \N \N \N \N 83334 H.millefolium Heracleum Heracleum millefolium \N \N \N \N \N 83335 \N genus Afrolimon \N \N \N \N \N 83336 S.candida Sidalcea Sidalcea candida \N \N \N \N \N 83337 T.latifolia Thysanolaena Thysanolaena latifolia Asian broom grass,tiger grass \N \N \N \N 83338 P.schliebenii Psychotria Psychotria schliebenii \N \N \N \N \N 83339 C.micayensis Cavendishia Cavendishia micayensis \N \N \N \N \N 83340 L.botryodes Ligularia Ligularia botryodes \N \N \N \N \N 83341 T.mexicanum Trichospermum Trichospermum mexicanum \N \N \N \N \N 83342 A.scandens Austrobaileya Austrobaileya scandens \N \N \N \N \N 83343 K.boetica Klasea Klasea boetica \N \N \N \N \N 83344 T.grandifolia Telanthophora Telanthophora grandifolia \N \N \N \N \N 83345 \N genus Gleditsia \N \N \N \N \N 83346 O.h179 Othocallis Othocallis sp. h179 \N \N \N \N \N 83347 T.rupicola Tetratheca Tetratheca rupicola \N \N \N \N \N 83348 P.delavayi Paeonia Paeonia delavayi \N \N \N \N \N 83349 C.glauca Cyathodes Cyathodes glauca \N \N \N \N \N 83350 G.costaricense Geranium Geranium costaricense \N \N \N \N \N 83351 P.flexuosa Pedicularis Pedicularis flexuosa \N \N \N \N \N 83353 P.dracomontana Protea Protea dracomontana \N \N \N \N \N 83354 B.auriculata Berlinia Berlinia auriculata \N \N \N \N \N 83355 D.dives Dryopoa Dryopoa dives \N \N \N \N \N 83356 S.hookeri Silene Silene hookeri \N \N \N \N \N 83357 P.scoparioides Polygala Polygala scoparioides \N \N \N \N \N 83358 W.pulcherrima Warneckea Warneckea pulcherrima \N \N \N \N \N 83359 P.delicatulum Polygonum Polygonum delicatulum \N \N \N \N \N 83360 T.achilleifolium Tanacetum Tanacetum achilleifolium \N \N \N \N \N 83361 C.lateralis Celmisia Celmisia lateralis \N \N \N \N \N 83362 \N genus Eleiodoxa \N \N \N \N \N 83363 \N varietas Goodyera hachijoensis var. hachijoensis \N \N \N \N \N 83364 C.africanum Chlorophytum Chlorophytum africanum \N \N \N \N \N 83365 V.vandewateri Hebe Veronica vandewateri \N \N \N \N \N 83366 \N varietas Lachenalia orchioides var. glaucina \N \N \N \N \N 83367 S.grandifolia Swartzia Swartzia grandifolia \N \N \N \N \N 83368 P.papuanus Papuasicyos Papuasicyos papuanus \N \N \N \N \N 83369 C.humilis Clinanthus Clinanthus humilis \N \N \N \N \N 83370 T.scandens Tolumnia Tolumnia scandens \N \N \N \N \N 83371 R.mexicana Ratibida Ratibida mexicana \N \N \N \N \N 83372 A.supervisus Astragalus Astragalus supervisus \N \N \N \N \N 83373 A.laxiflorum Aframomum Aframomum laxiflorum \N \N \N \N \N 83374 \N subspecies Pultenaea indira subsp. indira \N \N \N \N \N 83375 R.polyantha Renealmia Renealmia polyantha \N \N \N \N \N 83376 N.occidentalis Nicolletia Nicolletia occidentalis \N \N \N \N \N 83377 P.leucophyllum Piper Piper leucophyllum \N \N \N \N \N 83378 A.affine Anodendron Anodendron affine \N \N \N \N \N 83379 M.aquaticum Myriophyllum Myriophyllum aquaticum \N \N \N \N \N 83380 \N genus Solenandra \N \N \N \N \N 83381 L.nervosum Leucadendron Leucadendron nervosum \N \N \N \N \N 83382 S.urbaniana Salix Salix urbaniana \N \N \N \N \N 83383 A.obtusiflorum Allium Allium obtusiflorum \N \N \N \N \N 83384 A.frutescens Aporusa Aporusa frutescens \N \N \N \N \N 83385 R.ledebourii Rhododendron Rhododendron ledebourii \N \N \N \N \N 83386 \N genus Pteleopsis \N \N \N \N \N 83387 A.tectum Astroloma Astroloma tectum \N \N \N \N \N 83388 N.paniculata Nietneria Nietneria paniculata \N \N \N \N \N 83389 \N genus Bellendena \N \N \N \N \N 83390 T.rinconensis Thelocactus Thelocactus rinconensis \N \N \N \N \N 83391 T.pulchella Tolumnia Tolumnia pulchella \N \N \N \N \N 83392 \N forma Prunus persica f. compressa \N \N \N \N \N 83393 B.calabra Buglossoides Buglossoides calabra \N \N \N \N \N 83394 \N genus Eriophyllum wooly sunflowers \N \N \N \N 83395 B.coriacea Byttneria Byttneria coriacea \N \N \N \N \N 83396 D.trifasciculatus Dianthus Dianthus trifasciculatus \N \N \N \N \N 83397 \N genus Lachnagrostis \N \N \N \N \N 83398 S.pendulina Salix Salix x pendulina niobe willow \N \N \N \N 83399 P.bromelioides Paepalanthus Paepalanthus bromelioides \N \N \N \N \N 83400 K.floribunda Kraussia Kraussia floribunda \N \N \N \N \N 83401 C.eriocephalus Carduncellus Carduncellus eriocephalus \N \N \N \N \N 83402 S.mattogrossensis Sabicea Sabicea mattogrossensis \N \N \N \N \N 83403 S.hyporhodium Solanum Solanum hyporhodium cocona \N \N \N \N 83404 M.gypsophila Muhlenbergia Muhlenbergia gypsophila \N \N \N \N \N 83405 U.filiformis Uncinia Uncinia filiformis \N \N \N \N \N 83406 \N genus Lonicera honeysuckle \N \N \N \N 83407 X.humilis Xerophyta Xerophyta humilis \N \N \N \N \N 83408 D.elliptica Davilla Davilla elliptica \N \N \N \N \N 83409 S.glutinosa Swinglea Swinglea glutinosa \N \N \N \N \N 83410 E.umbricola Euchiton Euchiton umbricola \N \N \N \N \N 83411 C.rotundifolia Cardamine Cardamine rotundifolia \N \N \N \N \N 83412 B.lanigera Burkartia Burkartia lanigera \N \N \N \N \N 83413 C.sinaica Caralluma Caralluma sinaica \N \N \N \N \N 83414 C.aphyllum Comesperma Comesperma aphyllum \N \N \N \N \N 83415 E.henryi Emmenopterys Emmenopterys henryi \N \N \N \N \N 83416 B.membranifolia Blepharistemma Blepharistemma membranifolia \N \N \N \N \N 83417 P.harmandii Pseudodracontium Pseudodracontium harmandii \N \N \N \N \N 83418 P.major Pimpinella Pimpinella major \N \N \N \N \N 83419 Z.capillacea Zehneria Zehneria capillacea \N \N \N \N \N 83420 \N subspecies Syzygium forte subsp. potamophilum \N \N \N \N \N 83421 O.lanata Ossaea Ossaea lanata \N \N \N \N \N 83422 V.speciosum Verbascum Verbascum speciosum \N \N \N \N \N 83423 B.truncatocoronata Boucerosia Boucerosia truncatocoronata \N \N \N \N \N 83424 \N varietas Leucas glabrata var. glabrata \N \N \N \N \N 83425 C.suffruticosum Centaurium Centaurium suffruticosum \N \N \N \N \N 83426 P.chimonanthifolium Piper Piper chimonanthifolium \N \N \N \N \N 83427 \N genus Gundlachia \N \N \N \N \N 83428 T.cinereus Thamnochortus Thamnochortus cinereus \N \N \N \N \N 83429 P.crystallina Pinguicula Pinguicula crystallina \N \N \N \N \N 83430 H.4272 Hevea Hevea sp. Gillespie 4272 \N \N \N \N \N 83431 A.agadiriana Avena Avena agadiriana \N \N \N \N \N 83432 S.pierotii Salix Salix pierotii \N \N \N \N \N 83433 P.krookii Pimpinella Pimpinella krookii \N \N \N \N \N 83434 B.02-12 Billia Billia sp. Xiang 02-12 \N \N \N \N \N 83435 M.saltatrix Masdevallia Masdevallia saltatrix \N \N \N \N \N 83436 V.fasciculata Vernonia Vernonia fasciculata \N \N \N \N \N 83437 D.socotrana Dirachma Dirachma socotrana \N \N \N \N \N 83438 B.139 Begonia Begonia cf. incisa Forrest 139 \N \N \N \N \N 83439 C.anthocercidea Cyphanthera Cyphanthera anthocercidea \N \N \N \N \N 83440 \N varietas Perilla frutescens var. hirtella \N \N \N \N \N 83441 A.lijiangensis Actinidia Actinidia lijiangensis \N \N \N \N \N 83442 L.indica Leea Leea indica \N \N \N \N \N 83443 \N genus Brachistus \N \N \N \N \N 83444 A.forbesiana Arctotheca Arctotheca forbesiana \N \N \N \N \N 83445 I.sari Iris Iris sari \N \N \N \N \N 83446 M.ramulosa Mirbelia Mirbelia ramulosa \N \N \N \N \N 83447 Z.oblonga Zeuxine Zeuxine oblonga \N \N \N \N \N 83448 H.nudiflorum Hypericum Hypericum nudiflorum \N \N \N \N \N 83449 P.strictus Penstemon Penstemon strictus \N \N \N \N \N 83450 L.thyrsoidea Ligularia Ligularia thyrsoidea \N \N \N \N \N 83451 P.210 Piper Piper cf. cajambrense Lugo 210 \N \N \N \N \N 83452 \N genus Arctophila \N \N \N \N \N 83453 C.africana Cryptotaenia Cryptotaenia africana \N \N \N \N \N 83454 F.corymbosa Fragaria Fragaria corymbosa \N \N \N \N \N 83455 P.speciosa Protea Protea speciosa \N \N \N \N \N 83456 H.smithii Helianthus Helianthus smithii \N \N \N \N \N 83457 G.crista Guilandina Guilandina crista \N \N \N \N \N 83458 P.rheedei Phrynium Phrynium rheedei \N \N \N \N \N 83459 P.scoparius Psorothamnus Psorothamnus scoparius \N \N \N \N \N 83460 M.acuminata Maxillaria Maxillaria acuminata \N \N \N \N \N 83461 M.mosenii Maxillaria Maxillaria mosenii \N \N \N \N \N 83462 C.pocsii Coffea Coffea pocsii \N \N \N \N \N 83463 T.flagellaris Tamijia Tamijia flagellaris \N \N \N \N \N 83464 \N varietas Gilia polyantha var. whitingii \N \N \N \N \N 83465 S.flexuosa Saxifraga Saxifraga flexuosa \N \N \N \N \N 83466 E.surinamensis Eriotheca Eriotheca surinamensis \N \N \N \N \N 83467 C.yamashitae Cicer Cicer yamashitae \N \N \N \N \N 83468 S.tectorum Sempervivum Sempervivum tectorum \N \N \N \N \N 83469 \N family Phyllanthaceae \N \N \N \N \N 83470 A.parviflora Anemone Anemone parviflora \N \N \N \N \N 83471 D.pittieri Dieffenbachia Dieffenbachia pittieri \N \N \N \N \N 83472 \N genus Zomicarpa \N \N \N \N \N 83473 B.brachychaete Briza Briza brachychaete \N \N \N \N \N 83474 K.flaviflora Kedhalia Kedhalia flaviflora \N \N \N \N \N 83475 L.carnosa Lachenalia Lachenalia carnosa \N \N \N \N \N 83476 G.anapoides Gossypium Gossypium anapoides \N \N \N \N \N 83477 A.malabarica Anisomeles Anisomeles malabarica \N \N \N \N \N 83478 \N genus Halosarcia \N \N \N \N \N 83479 C.alaica Cnidiocarpa Cnidiocarpa alaica \N \N \N \N \N 83480 V.kitaibeliana Viola Viola kitaibeliana \N \N \N \N \N 83481 C.martii Cranocarpus Cranocarpus martii \N \N \N \N \N 83482 \N genus Calospatha \N \N \N \N \N 83483 M.patens Micropyrum Micropyrum patens \N \N \N \N \N 83484 A.verecunda Aloe Aloe verecunda \N \N \N \N \N 83485 C.microphyllum Cicer Cicer microphyllum \N \N \N \N \N 83486 M.solbrigii Moscharia Moscharia solbrigii \N \N \N \N \N 83487 A.scotostemon Allium Allium scotostemon \N \N \N \N \N 83488 Q.wutaishanica Quercus Quercus wutaishanica \N \N \N \N \N 83489 P.carneus Petalochilus Petalochilus carneus \N \N \N \N \N 83490 E.epiphylloides Euphorbia Euphorbia epiphylloides \N \N \N \N \N 83491 D.davisiana Digitalis Digitalis davisiana \N \N \N \N \N 83492 A.subrigida Anaphalioides Anaphalioides subrigida \N \N \N \N \N 83493 B.inaguensis Bursera Bursera inaguensis \N \N \N \N \N 83494 P.sclerocarpa Portulaca Portulaca sclerocarpa \N \N \N \N \N 83495 P.pedata Potentilla Potentilla pedata \N \N \N \N \N 83496 S.insignis Stirtonanthus Stirtonanthus insignis \N \N \N \N \N 83497 T.strigillosum Thalictrum Thalictrum strigillosum \N \N \N \N \N 83498 H.klaineana Hannoa Hannoa klaineana \N \N \N \N \N 83499 V.albida Viola Viola albida Korean violet \N \N \N \N 83500 O.panamense Oncidium Oncidium panamense \N \N \N \N \N 83501 V.cervicularis Vittadinia Vittadinia cervicularis \N \N \N \N \N 83502 A.divaricatum Arceuthobium Arceuthobium divaricatum \N \N \N \N \N 83503 M.paludosa Muraltia Muraltia paludosa \N \N \N \N \N 83504 C.ANM-2010 Cedrela Cedrela sp. 3 ANM-2010 \N \N \N \N \N 83505 C.zahlbruckneri Caragana Caragana zahlbruckneri \N \N \N \N \N 83506 \N varietas Pimelea imbricata var. petraea \N \N \N \N \N 83507 S.racemosa Sambucus Sambucus racemosa \N \N \N \N \N 83508 A.CL-2011 Angelica Angelica sp. CL-2011 \N \N \N \N \N 83509 S.pyrifolia Symplocos Symplocos pyrifolia \N \N \N \N \N 83510 \N genus Berneuxia \N \N \N \N \N 83511 \N genus Montia \N \N \N \N \N 83512 B.shoemakeri Barkeria Barkeria shoemakeri \N \N \N \N \N 83513 C.intermedia Cyclopia Cyclopia intermedia honeybush \N \N \N \N 83514 C.minensis Cipocereus Cipocereus minensis \N \N \N \N \N 83515 \N genus Urochlaena \N \N \N \N \N 83516 S.breviflora Stipa Stipa breviflora \N \N \N \N \N 83517 N.boottii Nabalus Nabalus boottii \N \N \N \N \N 83518 M.schomburgkii Mimosa Mimosa schomburgkii \N \N \N \N \N 83519 \N genus Heterostemon \N \N \N \N \N 83520 B.chlorosticta Begonia Begonia chlorosticta \N \N \N \N \N 83521 R.pollinensis Ranunculus Ranunculus pollinensis \N \N \N \N \N 83522 \N varietas Miscanthus sinensis var. nakaianus \N \N \N \N \N 83523 I.multijuga Inga Inga multijuga \N \N \N \N \N 83524 M.boliviensis Mandevilla Mandevilla boliviensis \N \N \N \N \N 83525 C.cognatum Cheiloclinium Cheiloclinium cognatum \N \N \N \N \N 83526 S.fragrans Schoenorchis Schoenorchis fragrans \N \N \N \N \N 83527 S.kuebiniense Syzygium Syzygium kuebiniense \N \N \N \N \N 83528 F.lenensis Festuca Festuca lenensis \N \N \N \N \N 83529 A.fourcadei Amphithalea Amphithalea fourcadei \N \N \N \N \N 83530 E.hylonoma Euphorbia Euphorbia hylonoma \N \N \N \N \N 83531 S.arbuscula Salsola Salsola arbuscula \N \N \N \N \N 83532 N.ustulata Neotinea Neotinea ustulata \N \N \N \N \N 83533 R.vilmorinii Ribes Ribes vilmorinii \N \N \N \N \N 83534 I.concava Indigofera Indigofera concava \N \N \N \N \N 83535 M.erythranthum Memecylon Memecylon erythranthum \N \N \N \N \N 83536 P.tamaulipense Phoradendron Phoradendron tamaulipense \N \N \N \N \N 83537 \N subspecies Rhodiola integrifolia subsp. neomexicana \N \N \N \N \N 83538 P.glauca Poa Poa glauca \N \N \N \N \N 83539 D.minjanense Delphinium Delphinium minjanense \N \N \N \N \N 83540 V.missurica Vernonia Vernonia missurica \N \N \N \N \N 83541 F.patula Festuca Festuca patula \N \N \N \N \N 83542 \N genus Khaosokia \N \N \N \N \N 83543 P.aculeata Psoralea Psoralea aculeata \N \N \N \N \N 83544 O.andina Oxychloe Oxychloe andina \N \N \N \N \N 83545 L.littoralis Lachnagrostis Lachnagrostis littoralis \N \N \N \N \N 83546 D.nuttallii Delphinium Delphinium nuttallii \N \N \N \N \N 83547 H.pseudomelanostele Haageocereus Haageocereus pseudomelanostele \N \N \N \N \N 83548 \N genus Meum \N \N \N \N \N 83549 D.guineense Dialium Dialium guineense \N \N \N \N \N 83550 C.uniflora Clintonia Clintonia uniflora \N \N \N \N \N 83551 E.signatum Eriastrum Eriastrum signatum \N \N \N \N \N 83552 \N genus Dipterocome \N \N \N \N \N 83553 D.NSW432988 Diuris Diuris aff. alba NSW432988 \N \N \N \N \N 83554 A.caryophyllaceus Adromischus Adromischus caryophyllaceus \N \N \N \N \N 83555 N.polylopha Neobuxbaumia Neobuxbaumia polylopha \N \N \N \N \N 83556 Z.rosowii Zygophyllum Zygophyllum rosowii \N \N \N \N \N 83557 B.toximontana Babiana Babiana toximontana \N \N \N \N \N 83558 C.hallii Caulanthus Caulanthus hallii \N \N \N \N \N 83559 D.rhodantha Disa Disa rhodantha \N \N \N \N \N 83560 L.peruvianus Lamprothyrsus Lamprothyrsus peruvianus \N \N \N \N \N 83561 D.punctata Dryas Dryas punctata \N \N \N \N \N 83562 U.divaricata Uncinia Uncinia divaricata \N \N \N \N \N 83563 A.spongiosa Atriplex Atriplex spongiosa \N \N \N \N \N 83564 T.splendidum Trichocentrum Trichocentrum splendidum \N \N \N \N \N 83565 J.OUT358 Jacaranda Jacaranda sp. OUT358 \N \N \N \N \N 83566 \N genus Coelanthum \N \N \N \N \N 83567 N.filiformis Neja Neja filiformis \N \N \N \N \N 83568 P.yedoensis Prunus Prunus x yedoensis Cheju native flowering cherry,Potomac cherry,Yoshino cherry \N \N \N \N 83569 \N varietas Spiraea trilobata var. trilobata \N \N \N \N \N 83570 S.filiformis Secamone Secamone filiformis \N \N \N \N \N 83571 \N genus Aotus \N \N \N \N \N 83572 \N tribe Stylochaetoneae \N \N \N \N \N 83573 M.tanzanica Moraea Moraea tanzanica \N \N \N \N \N 83574 G.lanceolatum Galium Galium lanceolatum \N \N \N \N \N 83575 D.hungaricum Doronicum Doronicum hungaricum \N \N \N \N \N 83576 A.pskemense Allium Allium pskemense \N \N \N \N \N 83577 A.distachyos Andropogon Andropogon distachyos \N \N \N \N \N 83578 D.floribunda Deinandra Deinandra floribunda \N \N \N \N \N 83579 K.magnifica Kentiopsis Kentiopsis magnifica \N \N \N \N \N 83580 A.herbert-smithii Ateleia Ateleia herbert-smithii \N \N \N \N \N 83581 T.168 Telipogon Telipogon sp. Dod 168 \N \N \N \N \N 83582 S.vernalis Scrophularia Scrophularia vernalis \N \N \N \N \N 83583 C.neglectum Campylocentrum Campylocentrum neglectum \N \N \N \N \N 83584 \N forma Ptilotus polystachyus f. rubriflorus \N \N \N \N \N 83585 A.arenosa Arabidopsis Arabidopsis arenosa \N \N \N \N \N 83586 H.curassavicum Heliotropium Heliotropium curassavicum \N \N \N \N \N 83587 A.alboaristatum Askidiosperma Askidiosperma alboaristatum \N \N \N \N \N 83588 \N varietas Aristida cumingiana var. diminuta \N \N \N \N \N 83589 C.sahendi Crepis Crepis sahendi \N \N \N \N \N 83590 \N tribe Scrophularieae \N \N \N \N \N 83591 D.cariniferum Dendrobium Dendrobium cariniferum \N \N \N \N \N 83592 T.lanceolata Tasmannia Tasmannia lanceolata \N \N \N \N \N 83593 A.glandulosum Adenophyllum Adenophyllum glandulosum \N \N \N \N \N 83594 E.esculenta Euphorbia Euphorbia esculenta \N \N \N \N \N 83595 D.aretioides Draba Draba aretioides \N \N \N \N \N 83596 \N varietas Pseudopanax colensoi var. ternatus \N \N \N \N \N 83597 P.latifolia Pseuduvaria Pseuduvaria latifolia \N \N \N \N \N 83598 C.maackii Carex Carex maackii \N \N \N \N \N 83599 N.digitata Nassauvia Nassauvia digitata \N \N \N \N \N 83600 C.degeneriana Cyanea Cyanea degeneriana \N \N \N \N \N 83601 \N subspecies Gymnocalycium damsii subsp. evae \N \N \N \N \N 83602 \N family Stemonaceae \N \N \N \N \N 83603 T.moorei Trimenia Trimenia moorei \N \N \N \N \N 83604 \N genus Fouquieria \N \N \N \N \N 83605 S.auriculata Sericanthe Sericanthe auriculata \N \N \N \N \N 83606 C.diffusa Chenolea Chenolea diffusa \N \N \N \N \N 83607 C.702 Cyrtandra Cyrtandra cf. occulta Clark 702 \N \N \N \N \N 83608 S.lipskyi Stubendorffia Stubendorffia lipskyi \N \N \N \N \N 83609 B.spinosa Berkheya Berkheya spinosa \N \N \N \N \N 83610 C.argentina Collaea Collaea argentina \N \N \N \N \N 83611 A.japonica Artemisia Artemisia japonica \N \N \N \N \N 83612 S.unilateralis Spathanthus Spathanthus unilateralis \N \N \N \N \N 83613 A.porphyronotum Asarum Asarum porphyronotum \N \N \N \N \N 83614 P.herzogii Puya Puya herzogii \N \N \N \N \N 83615 E.weddellii Exhalimolobos Exhalimolobos weddellii \N \N \N \N \N 83616 E.aquaticum Eriocaulon Eriocaulon aquaticum \N \N \N \N \N 83617 C.scardicus Crocus Crocus scardicus \N \N \N \N \N 83618 H.equitans Heterotaxis Heterotaxis equitans \N \N \N \N \N 83619 A.hebronica Anthemis Anthemis hebronica \N \N \N \N \N 83620 E.brachycarpum Erodium Erodium brachycarpum \N \N \N \N \N 83621 D.bensoniae Dendrobium Dendrobium bensoniae \N \N \N \N \N 83622 \N genus Lophira \N \N \N \N \N 83623 E.variifolium Eryngium Eryngium variifolium \N \N \N \N \N 83624 D.blagayana Daphne Daphne blagayana Balkan daphne \N \N \N \N 83625 E.hookeri Euphrasia Euphrasia hookeri \N \N \N \N \N 83626 R.fastigiata Rhodiola Rhodiola fastigiata \N \N \N \N \N 83627 A.2420 Acranthera Acranthera sp. Ridsdale 2420 \N \N \N \N \N 83628 B.grevei Bauhinia Bauhinia grevei \N \N \N \N \N 83629 T.marginatus Tragopogon Tragopogon marginatus \N \N \N \N \N 83630 \N genus Phyllocosmus \N \N \N \N \N 83631 \N genus Daphne \N \N \N \N \N 83632 P.boreiocalliantha Primula Primula boreiocalliantha \N \N \N \N \N 83633 A.nizandensis Agave Agave nizandensis \N \N \N \N \N 83634 C.piperi Campanula Campanula piperi \N \N \N \N \N 83635 A.pubescens Anisadenia Anisadenia pubescens \N \N \N \N \N 83636 D.lomentaceum Dasymaschalon Dasymaschalon lomentaceum \N \N \N \N \N 83637 P.tatarinowii Pedicularis Pedicularis tatarinowii \N \N \N \N \N 83638 H.occulta Homalomena Homalomena occulta \N \N \N \N \N 83639 M.phainops Matelea Matelea phainops \N \N \N \N \N 83640 G.nervosa Garcinia Garcinia nervosa \N \N \N \N \N 83641 K.jongmansii Kalanchoe Kalanchoe jongmansii \N \N \N \N \N 83642 \N genus Velezia \N \N \N \N \N 83643 A.531 Amellus Amellus sp. Forest & Manning 531 \N \N \N \N \N 83644 C.chascaniflorus Campylanthus Campylanthus chascaniflorus \N \N \N \N \N 83645 S.cristata Secamone Secamone cristata \N \N \N \N \N 83646 P.trifurcata Pimpinella Pimpinella trifurcata \N \N \N \N \N 83648 G.spinosa Geoffroea Geoffroea spinosa \N \N \N \N \N 83649 G.gandavensis Gladiolus Gladiolus x gandavensis \N \N \N \N \N 83650 L.heermannii Lotus Lotus heermannii \N \N \N \N \N 83651 \N genus Elytrophorus \N \N \N \N \N 83652 \N subspecies Veronica sp. 'crassifolia' \N \N \N \N \N 83653 G.bulgarica Gentianella Gentianella bulgarica \N \N \N \N \N 83654 A.subsessilis Adelobotrys Adelobotrys subsessilis \N \N \N \N \N 83655 \N subspecies Lavatera triloba subsp. pallescens \N \N \N \N \N 83656 V.AB-2009a Vanilla Vanilla sp. hybrid AB-2009a \N \N \N \N \N 83657 \N varietas Allium obtusum var. obtusum \N \N \N \N \N 83658 P.tyrolensis Primula Primula tyrolensis \N \N \N \N \N 83659 G.sessilifolia Graffenrieda Graffenrieda sessilifolia \N \N \N \N \N 83660 M.evermanniana Mammillaria Mammillaria evermanniana \N \N \N \N \N 83661 L.calycosum Lithospermum Lithospermum calycosum \N \N \N \N \N 83662 G.quitensis Gasteranthus Gasteranthus quitensis \N \N \N \N \N 83663 A.melanoxylon Angophora Angophora melanoxylon \N \N \N \N \N 83664 V.sessilifolia Viguiera Viguiera sessilifolia \N \N \N \N \N 83665 C.hispidulum Comesperma Comesperma hispidulum \N \N \N \N \N 83666 M.thunbergii Muraltia Muraltia thunbergii \N \N \N \N \N 83667 A.coaetaneus Amorphophallus Amorphophallus coaetaneus \N \N \N \N \N 83668 S.camptoneura Strychnos Strychnos camptoneura \N \N \N \N \N 83669 M.ovalis Melicope Melicope ovalis \N \N \N \N \N 83670 P.foliata Pterostylis Pterostylis foliata \N \N \N \N \N 83671 \N tribe Oxycladeae \N \N \N \N \N 83672 \N subspecies Centaurea pomeliana subsp. rouxiana \N \N \N \N \N 83673 \N genus Sargentodoxa \N \N \N \N \N 83674 A.aenea Alpinia Alpinia aenea \N \N \N \N \N 83675 \N varietas Carex scoparia var. tessellata \N \N \N \N \N 83676 O.elizondoana Opuntia Opuntia elizondoana \N \N \N \N \N 83677 E.gracilipes Erica Erica gracilipes \N \N \N \N \N 83678 S.JK-2007 Spyridium Spyridium sp. 1 JK-2007 \N \N \N \N \N 83679 P.bacteriophila Psychotria Psychotria bacteriophila \N \N \N \N \N 83680 A.sericea Aspicarpa Aspicarpa sericea \N \N \N \N \N 83681 C.tomentosa Caryodaphnopsis Caryodaphnopsis tomentosa \N \N \N \N \N 83682 C.odorata Clusia Clusia odorata \N \N \N \N \N 83683 \N genus Milula \N \N \N \N \N 83684 D.leptoloma Dianthus Dianthus leptoloma \N \N \N \N \N 83685 C.tenera Carex Carex tenera \N \N \N \N \N 83686 Z.perennis Zea Zea perennis perennial teosinte,teosinte \N \N \N \N 83687 T.subglobosum Typhonium Typhonium subglobosum \N \N \N \N \N 83688 C.resedifolia Cardamine Cardamine resedifolia \N \N \N \N \N 83689 R.buchananii Reissantia Reissantia buchananii \N \N \N \N \N 83690 A.quadrifolia Asclepias Asclepias quadrifolia \N \N \N \N \N 83691 T.weberbaueri Tetrasida Tetrasida weberbaueri \N \N \N \N \N 83692 \N genus Poupartia \N \N \N \N \N 83693 \N genus Loropetalum \N \N \N \N \N 83694 S.nivalis Sinningia Sinningia nivalis \N \N \N \N \N 83695 G.amherstiae Grobya Grobya amherstiae \N \N \N \N \N 83696 Z.pubescens Zygophyllum Zygophyllum pubescens \N \N \N \N \N 83697 H.littoralis Heritiera Heritiera littoralis \N \N \N \N \N 83698 L.vestitus Lathyrus Lathyrus vestitus Pacific pea \N \N \N \N 83699 A.storyi Acacia Acacia storyi \N \N \N \N \N 83700 C.CAM051 unclassified Campanulaceae Campanulaceae sp. CAM051 \N \N \N \N \N 83701 \N genus Lavrania \N \N \N \N \N 83702 R.xanthopollinium Rhipidoglossum Rhipidoglossum xanthopollinium \N \N \N \N \N 83703 \N genus Pseudopogonatherum \N \N \N \N \N 83704 M.phillyreoides Monnina Monnina phillyreoides \N \N \N \N \N 83705 G.discolor Gonzalagunia Gonzalagunia discolor \N \N \N \N \N 83706 E.tysonii Euryops Euryops tysonii \N \N \N \N \N 83707 \N genus Turraea \N \N \N \N \N 83708 M.calycina Montia Montia calycina \N \N \N \N \N 83709 P.parviflora Pedicularis Pedicularis parviflora \N \N \N \N \N 83710 V.bituminosa Vriesea Vriesea bituminosa \N \N \N \N \N 83711 \N genus Pangium \N \N \N \N \N 83712 G.sieberiana Gahnia Gahnia sieberiana \N \N \N \N \N 83713 C.flavovirens Caralluma Caralluma flavovirens \N \N \N \N \N 83714 L.cardamine Lepidium Lepidium cardamine \N \N \N \N \N 83715 \N varietas Croton alabamensis var. alabamensis \N \N \N \N \N 83716 H.franchetii Harrysmithia Harrysmithia franchetii \N \N \N \N \N 83717 C.tenellum Chaenorhinum Chaenorhinum tenellum \N \N \N \N \N 83718 R.macrophylla Rosa Rosa macrophylla \N \N \N \N \N 83719 \N subspecies Phlox pilosa subsp. latisepala \N \N \N \N \N 83720 D.scabra Dubautia Dubautia scabra \N \N \N \N \N 83721 H.angustifolia Hertia Hertia angustifolia \N \N \N \N \N 83722 S.clementii Schenkia Schenkia clementii \N \N \N \N \N 83723 D.oreodoxa Dionysia Dionysia oreodoxa \N \N \N \N \N 83724 \N genus Cornulaca \N \N \N \N \N 83725 M.spathulata Microcharis Microcharis spathulata \N \N \N \N \N 83726 M.albescens Mentzelia Mentzelia albescens \N \N \N \N \N 83727 A.parasitica Aralia Aralia parasitica \N \N \N \N \N 83728 A.henanensis Actinidia Actinidia henanensis \N \N \N \N \N 83729 N.heimii Neobalanocarpus Neobalanocarpus heimii \N \N \N \N \N 83730 \N genus Eudema \N \N \N \N \N 83731 S.H1765 Stenocactus Stenocactus sp. H1765 \N \N \N \N \N 83732 V.narbonensis Vicia Vicia narbonensis \N \N \N \N \N 83733 X.johnstonii Xylothamia Xylothamia johnstonii \N \N \N \N \N 83734 P.jungioides Paracalia Paracalia jungioides \N \N \N \N \N 83735 R.soulieana Rosa Rosa soulieana \N \N \N \N \N 83736 V.oxysepalum Veratrum Veratrum oxysepalum \N \N \N \N \N 83737 \N subspecies Festuca arundinacea subsp. fenas \N \N \N \N \N 83738 C.takesimana Campanula Campanula takesimana \N \N \N \N \N 83739 P.imbricata Phaulopsis Phaulopsis imbricata \N \N \N \N \N 83740 S.nematocarpum Stereospermum Stereospermum nematocarpum \N \N \N \N \N 83741 A.alatum Ammobium Ammobium alatum \N \N \N \N \N 83742 C.orthoceras Ceratocephala Ceratocephala orthoceras \N \N \N \N \N 83743 S.pulneyensis Strobilanthes Strobilanthes pulneyensis \N \N \N \N \N 83744 C.americana Cayaponia Cayaponia americana \N \N \N \N \N 83746 R.hookeri Rhaphidophora Rhaphidophora hookeri \N \N \N \N \N 83747 \N genus Darwiniothamnus \N \N \N \N \N 83748 N.KN22 Nymphaea Nymphaea cf. mexicana KN22 \N \N \N \N \N 83749 H.donacifolia Hymenachne Hymenachne donacifolia \N \N \N \N \N 83750 P.violacea Passiflora Passiflora violacea \N \N \N \N \N 83751 P.macrocarpa Phytelephas Phytelephas macrocarpa \N \N \N \N \N 83752 C.cephalopodus Convolvulus Convolvulus cephalopodus \N \N \N \N \N 83753 L.molleoides Lithrea Lithrea molleoides \N \N \N \N \N 83754 C.PMS-2010 Cucumis Cucumis sp. C PMS-2010 \N \N \N \N \N 83755 A.SB17550 Armeria Armeria sp. SB17550 \N \N \N \N \N 83756 Z.stricta Zeltnera Zeltnera stricta \N \N \N \N \N 83757 V.lycioides Vestia Vestia lycioides \N \N \N \N \N 83758 F.asperifolia Ficus Ficus asperifolia \N \N \N \N \N 83759 \N genus Shepherdia \N \N \N \N \N 83760 \N subspecies Carex glareosa subsp. glareosa \N \N \N \N \N 83761 \N subspecies Artemisia arctica subsp. ehrendorferi \N \N \N \N \N 83762 H.mimetes Helichrysum Helichrysum mimetes \N \N \N \N \N 83763 L.jankae Lilium Lilium jankae \N \N \N \N \N 83764 C.113 Calophyllum Calophyllum sp. Ruhfel 113 \N \N \N \N \N 83765 D.gracilis Dalzellia Dalzellia gracilis \N \N \N \N \N 83766 S.callicarpa Szovitsia Szovitsia callicarpa \N \N \N \N \N 83767 \N genus Elaphandra \N \N \N \N \N 83768 C.spicata Cautleya Cautleya spicata \N \N \N \N \N 83769 P.MAJ-2008 Piper Piper sp. 2 MAJ-2008 \N \N \N \N \N 83770 \N genus Monotropsis \N \N \N \N \N 83771 R.tumjensis Roscoea Roscoea tumjensis \N \N \N \N \N 83772 A.peristereus Astragalus Astragalus peristereus \N \N \N \N \N 83773 \N subspecies Aspalathus angustifolia subsp. angustifolia \N \N \N \N \N 83774 D.multifida Dysphania Dysphania multifida \N \N \N \N \N 83775 C.capitata Calicorema Calicorema capitata \N \N \N \N \N 83776 S.spartioides Senecio Senecio spartioides \N \N \N \N \N 83777 C.pyrularia Clermontia Clermontia pyrularia \N \N \N \N \N 83778 \N genus Trachyphrynium \N \N \N \N \N 83779 O.andicola Oreomyrrhis Oreomyrrhis andicola \N \N \N \N \N 83780 E.pluriflorum Erythronium Erythronium pluriflorum \N \N \N \N \N 83781 \N forma Haworthia coarctata f. greenii \N \N \N \N \N 83782 \N genus Couma \N \N \N \N \N 83783 L.aquatica Limosella Limosella aquatica \N \N \N \N \N 83784 L.arachnoidea Lessingia Lessingia arachnoidea \N \N \N \N \N 83785 H.cuatrecazanum Hedyosmum Hedyosmum cuatrecazanum \N \N \N \N \N 83786 I.GAR-01 Inversodicraea Inversodicraea cf. bosii Ghouge et al GAR-01 \N \N \N \N \N 83787 \N subspecies Nymphaea odorata subsp. tuberosa \N \N \N \N \N 83788 T.myriocarpa Terminalia Terminalia myriocarpa \N \N \N \N \N 83789 T.crassifolia Tridactyle Tridactyle crassifolia \N \N \N \N \N 83790 C.skutchii Chrysochlamys Chrysochlamys skutchii \N \N \N \N \N 83791 G.tenuifolia Gazania Gazania tenuifolia \N \N \N \N \N 83792 \N no rank environmental samples Taxonomy:197740 \N \N \N \N \N 83793 D.BGB-2009 Dalechampia Dalechampia aff. cissifolia BGB-2009 \N \N \N \N \N 83794 P.raimondii Puya Puya raimondii \N \N \N \N \N 83795 P.kokanicum Piptatherum Piptatherum kokanicum \N \N \N \N \N 83796 F.langkokensis Ficus Ficus langkokensis \N \N \N \N \N 83797 V.dumetorum Vicia Vicia dumetorum \N \N \N \N \N 83798 R.moupinense Rhododendron Rhododendron moupinense \N \N \N \N \N 83799 C.plumosa Chamaedorea Chamaedorea plumosa \N \N \N \N \N 83800 P.anjouanensis Pyrostria Pyrostria anjouanensis \N \N \N \N \N 83801 C.schottii Coussapoa Coussapoa schottii \N \N \N \N \N 83802 C.3854 Caiophora Caiophora sp. Hufford 3854 \N \N \N \N \N 83803 S.lucens Strychnos Strychnos lucens \N \N \N \N \N 83804 \N subspecies Pastinaca sativa subsp. sativa \N \N \N \N \N 83805 \N genus Sinojackia \N \N \N \N \N 83806 L.vlokii Lidbeckia Lidbeckia vlokii \N \N \N \N \N 83807 C.sarawschanica Cousinia Cousinia sarawschanica \N \N \N \N \N 83808 \N genus Erucastrum \N \N \N \N \N 83809 \N no rank Komarovia clade \N \N \N \N \N 83810 Z.albomaculata Zantedeschia Zantedeschia albomaculata \N \N \N \N \N 83811 Z.nesophila Zehneria Zehneria nesophila \N \N \N \N \N 83812 F.akitschkensis Ferula Ferula akitschkensis \N \N \N \N \N 83813 G.latissima Garcinia Garcinia latissima \N \N \N \N \N 83814 \N tribe Perameae \N \N \N \N \N 83815 E.lanceolatus Elymus Elymus lanceolatus \N \N \N \N \N 83816 B.straussii Biarum Biarum straussii \N \N \N \N \N 83817 R.detonsa Ruellia Ruellia detonsa \N \N \N \N \N 83818 A.arvensis Asperula Asperula arvensis \N \N \N \N \N 83819 P.vespertilio Passiflora Passiflora vespertilio \N \N \N \N \N 83820 T.coerulea Turnera Turnera coerulea \N \N \N \N \N 83821 B.crandallii Boechera Boechera crandallii \N \N \N \N \N 83822 I.velutina Inga Inga velutina \N \N \N \N \N 83823 T.polyphylla Tiarella Tiarella polyphylla \N \N \N \N \N 83824 O.albus Otochilus Otochilus albus \N \N \N \N \N 83825 Z.multiflora Zataria Zataria multiflora \N \N \N \N \N 83826 L.lindleyanus Lithocarpus Lithocarpus lindleyanus \N \N \N \N \N 83827 \N genus Cremnophila \N \N \N \N \N 83828 O.grandis Oldenburgia Oldenburgia grandis \N \N \N \N \N 83829 E.phylloclada Euphorbia Euphorbia phylloclada \N \N \N \N \N 83830 S.canescens Swartzia Swartzia canescens \N \N \N \N \N 83831 H.pendula Harpullia Harpullia pendula \N \N \N \N \N 83832 S.pubescens Spiraea Spiraea pubescens \N \N \N \N \N 83833 K.JT-2010b Kaempferia Kaempferia sp. JT-2010b \N \N \N \N \N 83834 F.paradoxa Filago Filago paradoxa \N \N \N \N \N 83835 \N genus Wajira \N \N \N \N \N 83836 B.sinuata Blumea Blumea sinuata \N \N \N \N \N 83837 T.parthenium Tanacetum Tanacetum parthenium feverfew \N \N \N \N 83838 C.florida Cottendorfia Cottendorfia florida \N \N \N \N \N 83839 O.exauriculatum Oncidium Oncidium exauriculatum \N \N \N \N \N 83840 W.acuminata Wimmeria Wimmeria acuminata \N \N \N \N \N 83841 \N genus Chiliotrichiopsis \N \N \N \N \N 83842 S.glabrata Serjania Serjania glabrata \N \N \N \N \N 83843 M.mannii Marantochloa Marantochloa mannii \N \N \N \N \N 83844 D.mezereum Daphne Daphne mezereum mezereon \N \N \N \N 83845 \N genus Ajuga \N \N \N \N \N 83846 H.testui Hypolytrum Hypolytrum testui \N \N \N \N \N 83847 A.grandis Alocasia Alocasia grandis \N \N \N \N \N 83848 A.uncinatus Ancistrocactus Ancistrocactus uncinatus \N \N \N \N \N 83849 H.viride Hylotelephium Hylotelephium viride \N \N \N \N \N 83850 D.foetida Dorstenia Dorstenia foetida \N \N \N \N \N 83851 L.spicata Luzula Luzula spicata \N \N \N \N \N 83852 O.reclinata Ononis Ononis reclinata \N \N \N \N \N 83853 C.delagoensis Cryptolepis Cryptolepis delagoensis \N \N \N \N \N 83854 G.pyrenaicum Geranium Geranium pyrenaicum \N \N \N \N \N 83855 V.fusca Vatairea Vatairea fusca \N \N \N \N \N 83856 O.foetens Ocotea Ocotea foetens \N \N \N \N \N 83857 \N subspecies Olea europaea subsp. cerasiformis \N \N \N \N \N 83858 C.fasciculatum Cestrum Cestrum fasciculatum \N \N \N \N \N 83859 \N subspecies Aspalathus pinguis subsp. pinguis \N \N \N \N \N 83860 M.ternata Melicope Melicope ternata \N \N \N \N \N 83861 D.schiedeana Dyschoriste Dyschoriste schiedeana \N \N \N \N \N 83862 H.peruvianum Hesperoxiphion Hesperoxiphion peruvianum \N \N \N \N \N 83863 \N genus Cyrtosperma \N \N \N \N \N 83864 \N tribe Blossfeldieae \N \N \N \N \N 83865 E.inconspicuum Erysimum Erysimum inconspicuum \N \N \N \N \N 83866 C.dioica Chaetanthera Chaetanthera dioica \N \N \N \N \N 83867 H.longipes Hydrangea Hydrangea longipes \N \N \N \N \N 83868 D.wootonii Delphinium Delphinium wootonii \N \N \N \N \N 83869 V.oahuensis Viola Viola oahuensis \N \N \N \N \N 83870 \N genus Tinguarra \N \N \N \N \N 83871 \N family Physenaceae \N \N \N \N \N 83872 G.fraternus Gonolobus Gonolobus fraternus \N \N \N \N \N 83873 S.sanguineum Symphyglossum Symphyglossum sanguineum \N \N \N \N \N 83874 G.prostrata Gentiana Gentiana prostrata \N \N \N \N \N 83875 S.carinatus Streptanthus Streptanthus carinatus \N \N \N \N \N 83876 P.paiei Pedicellarum Pedicellarum paiei \N \N \N \N \N 83877 H.hookeriana Hookerochloa Hookerochloa hookeriana \N \N \N \N \N 83878 \N genus Dandya \N \N \N \N \N 83879 V.diamantiaca Viola Viola diamantiaca \N \N \N \N \N 83880 P.canescens Plantago Plantago canescens \N \N \N \N \N 83881 \N subspecies Cucurbita pepo subsp. ovifera \N \N \N \N \N 83882 S.cordatulus Stachyurus Stachyurus cordatulus \N \N \N \N \N 83883 S.ligularioides Sinosenecio Sinosenecio ligularioides \N \N \N \N \N 83884 L.hirsutum Linum Linum hirsutum \N \N \N \N \N 83885 O.compta Ochrosia Ochrosia compta \N \N \N \N \N 83886 \N genus Anacardium \N \N \N \N \N 83887 \N genus Exaculum \N \N \N \N \N 83888 D.pusilla Downingia Downingia pusilla \N \N \N \N \N 83889 E.chrysantha Echinophora Echinophora chrysantha \N \N \N \N \N 83890 N.goodspeedii Nicotiana Nicotiana goodspeedii \N \N \N \N \N 83891 \N genus Discopodium \N \N \N \N \N 83892 I.lineata Inga Inga lineata \N \N \N \N \N 83893 S.cyclaminifolius Sinosenecio Sinosenecio cyclaminifolius \N \N \N \N \N 83894 A.347 Alstroemeria Alstroemeria sp. TJB 347 \N \N \N \N \N 83895 T.dregeana Thunbergia Thunbergia dregeana \N \N \N \N \N 83896 A.F204 Actinocephalus Actinocephalus sp. F204 \N \N \N \N \N 83897 B.capreolata Bignonia Bignonia capreolata crossvine \N \N \N \N 83898 C.edwardsiana Carex Carex edwardsiana \N \N \N \N \N 83899 B.burmanica Bambusa Bambusa burmanica \N \N \N \N \N 83900 R.laetum Rhododendron Rhododendron laetum \N \N \N \N \N 83901 M.trichostachya Melaleuca Melaleuca trichostachya \N \N \N \N \N 83902 B.glandulifera Bunchosia Bunchosia glandulifera \N \N \N \N \N 83903 E.paniculata Elliottia Elliottia paniculata \N \N \N \N \N 83904 C.subsessilis Chamaecostus Chamaecostus subsessilis \N \N \N \N \N 83905 C.ringens Carruanthus Carruanthus ringens \N \N \N \N \N 83906 C.przewalskii Cotoneaster Cotoneaster przewalskii \N \N \N \N \N 83907 S.linifolius Stenosiphon Stenosiphon linifolius \N \N \N \N \N 83908 A.chinensis Aesculus Aesculus chinensis Chinese horse-chestnut \N \N \N \N 83909 D.scoriarum Dendrobium Dendrobium scoriarum \N \N \N \N \N 83910 C.dinklagei Costus Costus dinklagei \N \N \N \N \N 83911 C.rudiuscula Cortaderia Cortaderia rudiuscula \N \N \N \N \N 83912 P.stellaris Petrosavia Petrosavia stellaris \N \N \N \N \N 83913 R.pseudoacacia Robinia Robinia pseudoacacia black locust \N \N \N \N 83914 E.arabica Euphorbia Euphorbia arabica \N \N \N \N \N 83915 S.lyonsii Schomburgkia Schomburgkia lyonsii \N \N \N \N \N 83916 S.glaucochina Smilax Smilax glaucochina \N \N \N \N \N 83917 \N genus Trymatococcus \N \N \N \N \N 83918 S.centiflora Stilpnolepis Stilpnolepis centiflora \N \N \N \N \N 83919 \N genus Zygostelma \N \N \N \N \N 83920 L.africana Loeseneriella Loeseneriella africana \N \N \N \N \N 83921 L.borealis Linnaea Linnaea borealis \N \N \N \N \N 83922 C.pruinosa Caragana Caragana pruinosa \N \N \N \N \N 83923 C.hollrungii Calyptrocalyx Calyptrocalyx hollrungii \N \N \N \N \N 83924 M.500 Manglietia Manglietia sp. Nie & Meng 500 \N \N \N \N \N 83925 E.palliiflora Erica Erica palliiflora \N \N \N \N \N 83926 \N genus Trachymene \N \N \N \N \N 83927 T.5843 unclassified Taraxacum Taraxacum (sect. Dioszegia) sp. 5843 \N \N \N \N \N 83928 C.pterocaulos Cousinia Cousinia pterocaulos \N \N \N \N \N 83929 T.coccinea Thunbergia Thunbergia coccinea \N \N \N \N \N 83930 P.gracilis Pseudosasa Pseudosasa gracilis \N \N \N \N \N 83931 E.glabra Elaeagnus Elaeagnus glabra \N \N \N \N \N 83932 \N genus Holzneria \N \N \N \N \N 83933 \N varietas Coursetia caribaea var. caribaea \N \N \N \N \N 83934 B.cardiobulbum Bulbophyllum Bulbophyllum cardiobulbum \N \N \N \N \N 83935 B.guianensis Banara Banara guianensis \N \N \N \N \N 83936 \N genus Conicosia \N \N \N \N \N 83937 A.karakolicum Aconitum Aconitum karakolicum \N \N \N \N \N 83938 E.interrupta Erica Erica interrupta \N \N \N \N \N 83939 \N varietas Actinidia callosa var. henryi \N \N \N \N \N 83940 T.nepalense Tetrataenium Tetrataenium nepalense \N \N \N \N \N 83941 H.nummularium Helianthemum Helianthemum nummularium \N \N \N \N \N 83942 V.boliviana Vasqueziella Vasqueziella boliviana \N \N \N \N \N 83943 M.MA41 Microtis Microtis sp. MA41 \N \N \N \N \N 83944 S.tetraptera Sechiopsis Sechiopsis tetraptera \N \N \N \N \N 83945 I.tonduzii Inga Inga tonduzii \N \N \N \N \N 83946 \N genus Dermatobotrys \N \N \N \N \N 83947 A.eusperma Allium Allium eusperma \N \N \N \N \N 83948 D.citrina Dracula Dracula citrina \N \N \N \N \N 83949 A.canescens Armeria Armeria canescens \N \N \N \N \N 83950 X.brasiliense Xanthosoma Xanthosoma brasiliense \N \N \N \N \N 83951 A.sesquipedalis Actinodaphne Actinodaphne sesquipedalis \N \N \N \N \N 83952 C.walteri Cornus Cornus walteri \N \N \N \N \N 83953 M.murex Medicago Medicago murex \N \N \N \N \N 83954 C.alismifolia Calanthe Calanthe alismifolia \N \N \N \N \N 83955 I.subcorymbosa Indigofera Indigofera subcorymbosa \N \N \N \N \N 83956 R.papyrocarpus Ranunculus Ranunculus papyrocarpus \N \N \N \N \N 83957 H.juncea Heliophila Heliophila juncea \N \N \N \N \N 83958 L.pneumatophora Lecythis Lecythis pneumatophora \N \N \N \N \N 83959 P.alpestris Puya Puya alpestris \N \N \N \N \N 83960 E.leucanthus Echinocereus Echinocereus leucanthus \N \N \N \N \N 83961 A.neglecta Arabidopsis Arabidopsis neglecta \N \N \N \N \N 83962 S.parvifolius Senecio Senecio parvifolius \N \N \N \N \N 83963 B.texana Bergia Bergia texana \N \N \N \N \N 83964 J.atratus Juncus Juncus atratus \N \N \N \N \N 83965 T.bicallosum Trichocentrum Trichocentrum bicallosum \N \N \N \N \N 83966 \N varietas Camellia pitardii var. pitardii \N \N \N \N \N 83967 L.procumbens Lachemilla Lachemilla procumbens \N \N \N \N \N 83968 H.piloselloides Hieracium Hieracium piloselloides \N \N \N \N \N 83969 \N genus Lipskya \N \N \N \N \N 83970 N.inutile Nothoscordum Nothoscordum inutile \N \N \N \N \N 83971 \N genus Ecballium \N \N \N \N \N 83972 S.cisplatinus Senecio Senecio cisplatinus \N \N \N \N \N 83973 E.trimera Erica Erica trimera \N \N \N \N \N 83974 A.longifolia Augusta Augusta longifolia \N \N \N \N \N 83975 B.ugandensis Bothriocline Bothriocline ugandensis \N \N \N \N \N 83976 H.graniticus Haemanthus Haemanthus graniticus \N \N \N \N \N 83977 C.aurea Cousinia Cousinia aurea \N \N \N \N \N 83978 H.elymaitica Haussknechtia Haussknechtia elymaitica \N \N \N \N \N 83979 \N genus Rhodohypoxis \N \N \N \N \N 83980 \N genus Remusatia \N \N \N \N \N 83981 P.wallisii Phragmipedium Phragmipedium wallisii \N \N \N \N \N 83982 C.dionaeifolia Caltha Caltha dionaeifolia \N \N \N \N \N 83983 \N subspecies Streptanthus insignis subsp. insignis \N \N \N \N \N 83984 S.bilocularis Sebastiania Sebastiania bilocularis \N \N \N \N \N 83985 E.uberiflora Erica Erica uberiflora \N \N \N \N \N 83986 G.subulatostipulatum Geranium Geranium subulatostipulatum \N \N \N \N \N 83987 B.gracilenta Boechera Boechera gracilenta \N \N \N \N \N 83988 E.triorgyalis Etlingera Etlingera triorgyalis \N \N \N \N \N 83989 D.woodii Disa Disa woodii \N \N \N \N \N 83990 C.mahabalei Ceropegia Ceropegia mahabalei \N \N \N \N \N 83991 C.nigrescens Calochortus Calochortus nigrescens \N \N \N \N \N 83992 H.yayeyamensis Hydrangea Hydrangea yayeyamensis \N \N \N \N \N 83993 H.cylindrocarpa Hydriastele Hydriastele cylindrocarpa \N \N \N \N \N 83994 C.pitardii Camellia Camellia pitardii \N \N \N \N \N 83995 \N genus Rhagadiolus \N \N \N \N \N 83996 P.oreodoxa Primula Primula oreodoxa \N \N \N \N \N 83997 L.assamensis Larsenianthus Larsenianthus assamensis \N \N \N \N \N 83998 T.ochroleucon Trifolium Trifolium ochroleucon \N \N \N \N \N 83999 C.verticillata Coreopsis Coreopsis verticillata \N \N \N \N \N 84000 A.elymoides Astrebla Astrebla elymoides \N \N \N \N \N 84001 B.pubescens Burbidgea Burbidgea pubescens \N \N \N \N \N 84002 C.ombrophila Clidemia Clidemia ombrophila \N \N \N \N \N 84003 B.sylvestris Blumenbachia Blumenbachia sylvestris \N \N \N \N \N 84004 P.reticulata Pinguicula Pinguicula reticulata \N \N \N \N \N 84005 E.michaeliana Eucalyptus Eucalyptus michaeliana \N \N \N \N \N 84006 \N genus Schmardaea \N \N \N \N \N 84007 P.yaoluopingensis Pinellia Pinellia yaoluopingensis \N \N \N \N \N 84008 M.7203 Musa Musa sp. Sytsma 7203 \N \N \N \N \N 84009 R.pohlii Rhabdadenia Rhabdadenia pohlii \N \N \N \N \N 84010 E.dunnii Eucalyptus Eucalyptus dunnii Killarney ash,ribbon gum \N \N \N \N 84011 C.cinerea Cotula Cotula cinerea \N \N \N \N \N 84012 A.serrata Abelia Abelia serrata \N \N \N \N \N 84013 V.occulta Viola Viola occulta \N \N \N \N \N 84014 \N genus Jacksonia \N \N \N \N \N 84015 A.aretioides Astragalus Astragalus aretioides \N \N \N \N \N 84016 M.maderensis Matthiola Matthiola maderensis \N \N \N \N \N 84017 S.juvenale Solanum Solanum juvenale \N \N \N \N \N 84018 C.4482 Carex Carex cf. lagunensis Gonzalez et al. 4482 \N \N \N \N \N 84019 R.lowii Rhododendron Rhododendron lowii \N \N \N \N \N 84020 E.pachycalyx Eucalyptus Eucalyptus pachycalyx pumpkin gum \N \N \N \N 84021 S.commixta Sorbus Sorbus commixta \N \N \N \N \N 84022 B.caudata Brylkinia Brylkinia caudata \N \N \N \N \N 84023 C.montekupensis Coffea Coffea montekupensis \N \N \N \N \N 84024 F.renardii Ferula Ferula renardii \N \N \N \N \N 84025 E.lamprocarpa Euphorbia Euphorbia lamprocarpa \N \N \N \N \N 84026 C.xanthorrhiza Curcuma Curcuma xanthorrhiza temu lawak \N \N \N \N 84027 C.barbata Calceolaria Calceolaria barbata \N \N \N \N \N 84028 C.eryngioides Cousinia Cousinia eryngioides \N \N \N \N \N 84029 M.ramiflora Metrosideros Metrosideros ramiflora \N \N \N \N \N 84030 H.decaryi Humbertiella Humbertiella decaryi \N \N \N \N \N 84031 L.odoratus Lathyrus Lathyrus odoratus sweet pea \N \N \N \N 84032 T.wentzelianum Trifolium Trifolium wentzelianum \N \N \N \N \N 84033 S.4104 Sphedamnocarpus Sphedamnocarpus sp. Phillipson et al. 4104 \N \N \N \N \N 84034 L.benthamii Lissocarpa Lissocarpa benthamii \N \N \N \N \N 84035 C.monticola Coelospermum Coelospermum monticola \N \N \N \N \N 84036 H.laevigatum Hieracium Hieracium laevigatum \N \N \N \N \N 84037 T.kinabaluensis Trichosanthes Trichosanthes kinabaluensis \N \N \N \N \N 84038 A.uniaristata Aegilops Aegilops uniaristata \N \N \N \N \N 84039 E.potosina Echeveria Echeveria potosina \N \N \N \N \N 84040 R.paucifolius Rumex Rumex paucifolius alpine sheep sorrel \N \N \N \N 84041 S.securidaca Securigera Securigera securidaca \N \N \N \N \N 84042 B.integerrima Berberis Berberis integerrima \N \N \N \N \N 84043 E.covillei Enceliopsis Enceliopsis covillei \N \N \N \N \N 84044 \N genus x Aegilotriticum \N \N \N \N \N 84045 \N varietas Carthamus tinctorius var. tinctorius \N \N \N \N \N 84046 A.laristanicus Astragalus Astragalus laristanicus \N \N \N \N \N 84047 L.litwinowii Lepidium Lepidium litwinowii \N \N \N \N \N 84048 L.obovatum Leptospermum Leptospermum obovatum \N \N \N \N \N 84049 L.revoluta Ledebouria Ledebouria revoluta \N \N \N \N \N 84050 \N genus Andriana \N \N \N \N \N 84051 C.latifolium Chamerion Chamerion latifolium glacier rose \N \N \N \N 84052 T.latifolia Typha Typha latifolia common cattail \N \N \N \N 84053 S.8360 Schefflera Schefflera sp. Wen 8360 \N \N \N \N \N 84054 R.puberula Rhanteriopsis Rhanteriopsis puberula \N \N \N \N \N 84055 \N genus Warea \N \N \N \N \N 84056 D.hirsutissima Dresslerella Dresslerella hirsutissima \N \N \N \N \N 84057 L.2239 Lupinus Lupinus sp. CEH 2239 \N \N \N \N \N 84058 T.macrosperma Tococa Tococa macrosperma \N \N \N \N \N 84059 L.microphyllus Lupinus Lupinus microphyllus \N \N \N \N \N 84060 R.palmatus Rubus Rubus palmatus \N \N \N \N \N 84061 L.ferruginea Lepisanthes Lepisanthes ferruginea \N \N \N \N \N 84062 R.rivularis Ravenea Ravenea rivularis \N \N \N \N \N 84063 A.ampla Angelica Angelica ampla giant angelica \N \N \N \N 84064 M.sessilifolia Momordica Momordica sessilifolia \N \N \N \N \N 84065 A.nepalensis Aphragmus Aphragmus nepalensis \N \N \N \N \N 84066 V.calycina Labiatoides Veronica calycina \N \N \N \N \N 84067 C.153_Iran Cousinia Cousinia sp. 153_Iran \N \N \N \N \N 84068 \N subspecies Festuca rubra subsp. pruinosa \N \N \N \N \N 84069 \N genus Trichoglottis \N \N \N \N \N 84070 P.scutilimbum Piper Piper scutilimbum \N \N \N \N \N 84071 \N genus Xiphotheca \N \N \N \N \N 84072 \N varietas Paraboea capitata var. capitata \N \N \N \N \N 84073 \N tribe Ricinodendreae \N \N \N \N \N 84074 \N genus Grangea \N \N \N \N \N 84075 C.multiflora Conzattia Conzattia multiflora \N \N \N \N \N 84076 C.madagascariensis Cyphochlaena Cyphochlaena madagascariensis \N \N \N \N \N 84077 P.zenkeri Peucedanum Peucedanum zenkeri \N \N \N \N \N 84078 P.obliquum Piper Piper obliquum \N \N \N \N \N 84079 S.ugamica Schrenkia Schrenkia ugamica \N \N \N \N \N 84080 C.cardiophylla Cayratia Cayratia cardiophylla \N \N \N \N \N 84081 \N varietas Perilla frutescens var. acuta \N \N \N \N \N 84082 O.tuberosa Oxalis Oxalis aff. tuberosa \N \N \N \N \N 84083 E.longirachis Eschweilera Eschweilera longirachis \N \N \N \N \N 84084 O.SH-2010 Octomeria Octomeria sp. SH-2010 \N \N \N \N \N 84085 P.sapinii Psilanthus Psilanthus sapinii \N \N \N \N \N 84086 \N genus Halanthium \N \N \N \N \N 84087 A.reflexa Anemone Anemone reflexa \N \N \N \N \N 84088 T.sylvae Tetramolopium Tetramolopium sylvae \N \N \N \N \N 84089 \N genus Capeobolus \N \N \N \N \N 84090 A.semilunaris Atriplex Atriplex semilunaris \N \N \N \N \N 84091 P.oviferum Pachyphytum Pachyphytum oviferum \N \N \N \N \N 84092 P.speciosus Pogonopus Pogonopus speciosus \N \N \N \N \N 84093 B.microphylla Bredemeyera Bredemeyera microphylla \N \N \N \N \N 84094 B.mengtzeana Begonia Begonia mengtzeana \N \N \N \N \N 84095 G.3909 Globba Globba sp. Chase 3909 \N \N \N \N \N 84096 I.gracilis Isachne Isachne gracilis \N \N \N \N \N 84097 V.wittrockiana Viola Viola x wittrockiana \N \N \N \N \N 84098 P.colimensis Pinguicula Pinguicula colimensis \N \N \N \N \N 84099 O.aurea Oxalis Oxalis aurea \N \N \N \N \N 84100 \N genus Echinosepala \N \N \N \N \N 84101 \N subtribe Aeridinae \N \N \N \N \N 84102 P.flava Pseudomussaenda Pseudomussaenda flava \N \N \N \N \N 84103 \N varietas Toxicodendron wallichii var. microcarpum \N \N \N \N \N 84104 E.congestiflora Euphorbia Euphorbia congestiflora \N \N \N \N \N 84105 N.cavicola Nicotiana Nicotiana cavicola \N \N \N \N \N 84106 \N varietas Berula erecta var. incisa \N \N \N \N \N 84107 J.983 Justicia Justicia sp. Zjhra 983 \N \N \N \N \N 84108 M.pigra Mimosa Mimosa pigra \N \N \N \N \N 84109 S.wallichii Sindora Sindora wallichii \N \N \N \N \N 84110 M.garciniifolia Micropholis Micropholis garciniifolia \N \N \N \N \N 84111 V.glabra Vernonia Vernonia glabra \N \N \N \N \N 84112 R.eriocarpum Rhododendron Rhododendron eriocarpum \N \N \N \N \N 84113 H.molle Heliotropium Heliotropium molle \N \N \N \N \N 84114 \N genus Lundellianthus \N \N \N \N \N 84115 I.verruculosa Isolepis Isolepis verruculosa \N \N \N \N \N 84116 \N subspecies Huernia verekeri subsp. pauciflora \N \N \N \N \N 84117 M.patonii Mammillaria Mammillaria patonii \N \N \N \N \N 84118 A.tomentosa Amphiglossa Amphiglossa tomentosa \N \N \N \N \N 84119 C.arietinum Cypripedium Cypripedium arietinum \N \N \N \N \N 84120 \N forma Spiranthes sinensis f. gracilis \N \N \N \N \N 84121 U.micrantha Urceola Urceola micrantha \N \N \N \N \N 84122 N.levinei Neolitsea Neolitsea levinei \N \N \N \N \N 84123 E.dhofarensis Euphorbia Euphorbia dhofarensis \N \N \N \N \N 84124 C.curcumoides Chamaecostus Chamaecostus curcumoides \N \N \N \N \N 84125 C.hydrangeifolia Coussarea Coussarea hydrangeifolia \N \N \N \N \N 84126 \N genus Centratherum \N \N \N \N \N 84127 L.camposanum Limonium Limonium camposanum \N \N \N \N \N 84128 G.angustiflora Gentianella Gentianella angustiflora \N \N \N \N \N 84129 B.coccinea Banksia Banksia coccinea \N \N \N \N \N 84130 T.velutina Thymelaea Thymelaea velutina \N \N \N \N \N 84131 P.lindeniana Passiflora Passiflora lindeniana \N \N \N \N \N 84132 A.leptostachya Achyropsis Achyropsis leptostachya \N \N \N \N \N 84133 A.crassifolia Anagallis Anagallis crassifolia \N \N \N \N \N 84134 D.gnidium Daphne Daphne gnidium \N \N \N \N \N 84135 I.11253 Iris Iris aff. vicaria Chase 11253 \N \N \N \N \N 84136 O.kittanae Onosma Onosma kittanae \N \N \N \N \N 84137 C.clematitis Cardamine Cardamine clematitis small mountain bittercress \N \N \N \N 84138 S.agraria Stachys Stachys agraria \N \N \N \N \N 84139 A.pubescens Androsace Androsace pubescens \N \N \N \N \N 84140 F.puqiensis Fritillaria Fritillaria puqiensis \N \N \N \N \N 84141 R.periclymenoides Rhododendron Rhododendron periclymenoides \N \N \N \N \N 84142 \N varietas Aconitum yuparense var. yuparense \N \N \N \N \N 84143 K.eversmanniana Krascheninnikovia Krascheninnikovia eversmanniana \N \N \N \N \N 84144 R.cirrhosa Ruppia Ruppia cirrhosa \N \N \N \N \N 84145 C.cinerascens Copiapoa Copiapoa cinerascens \N \N \N \N \N 84146 \N genus Macroptilium \N \N \N \N \N 84147 F.dumetorum Fallopia Fallopia dumetorum \N \N \N \N \N 84148 \N subspecies Rhaponticum nanum subsp. pellucidum \N \N \N \N \N 84149 G.multiflora Gardneria Gardneria multiflora \N \N \N \N \N 84150 V.arvensis Veronica Veronica arvensis corn speedwell,wall speedwell \N \N \N \N 84151 P.copelandii Pandanus Pandanus copelandii \N \N \N \N \N 84152 \N genus Thouarsiora \N \N \N \N \N 84153 \N subspecies Crocus speciosus subsp. speciosus \N \N \N \N \N 84154 M.juliana Micromeria Micromeria juliana \N \N \N \N \N 84155 I.inflexus Isodon Isodon inflexus \N \N \N \N \N 84156 S.bollei Senecio Senecio bollei \N \N \N \N \N 84157 \N genus Pseudosamanea \N \N \N \N \N 84158 P.soliviformis Plagiocheilus Plagiocheilus soliviformis \N \N \N \N \N 84159 P.albana Pulsatilla Pulsatilla albana \N \N \N \N \N 84160 \N genus Dilobeia \N \N \N \N \N 84161 D.mutabilis Desmaria Desmaria mutabilis \N \N \N \N \N 84162 H.engelmannii Halophila Halophila engelmannii \N \N \N \N \N 84163 L.hypoglauca Lonicera Lonicera hypoglauca \N \N \N \N \N 84164 O.bornmuelleri Ophrys Ophrys bornmuelleri \N \N \N \N \N 84165 M.hedyosperma Michelia Michelia hedyosperma \N \N \N \N \N 84166 D.foeniculifolia Dahlia Dahlia foeniculifolia \N \N \N \N \N 84167 D.maritima Dicrastylis Dicrastylis maritima \N \N \N \N \N 84168 P.thomasii Piper Piper thomasii \N \N \N \N \N 84169 W.australiana Wolffia Wolffia australiana \N \N \N \N \N 84170 D.chrysostachya Disa Disa chrysostachya \N \N \N \N \N 84171 D.gracilentum Delphinium Delphinium gracilentum \N \N \N \N \N 84172 \N genus Quinetia \N \N \N \N \N 84173 A.tricolor Anthemis Anthemis tricolor \N \N \N \N \N 84174 \N varietas Allium ovalifolium var. cordifolium \N \N \N \N \N 84175 \N genus Tremandra \N \N \N \N \N 84176 M.vittariifolia Maxillaria Maxillaria vittariifolia \N \N \N \N \N 84177 \N genus Minquartia \N \N \N \N \N 84178 C.frondosa Capparis Capparis frondosa \N \N \N \N \N 84179 P.acinosa Pentaschistis Pentameris acinosa \N \N \N \N \N 84180 S.mixta Sophronitis Sophronitis mixta \N \N \N \N \N 84181 A.pennatula Acacia Acacia pennatula \N \N \N \N \N 84182 M.ovata Mollinedia Mollinedia ovata \N \N \N \N \N 84183 P.halleri Pulsatilla Pulsatilla halleri \N \N \N \N \N 84184 A.lanuginosa Arenaria Arenaria lanuginosa \N \N \N \N \N 84185 \N genus Tylosema \N \N \N \N \N 84186 N.ovata Nepenthes Nepenthes ovata \N \N \N \N \N 84187 E.AK298135 Epilobium Epilobium sp. AK298135 \N \N \N \N \N 84188 L.phlebopetalum Lepidium Lepidium phlebopetalum \N \N \N \N \N 84189 \N subspecies Leptecophylla juniperina subsp. parvifolia \N \N \N \N \N 84190 R.pinifolius Ricinocarpos Ricinocarpos pinifolius \N \N \N \N \N 84191 C.virgaurea Cestrum Cestrum virgaurea \N \N \N \N \N 84192 V.riukiuensis Vigna Vigna riukiuensis \N \N \N \N \N 84193 P.ruwenzoriensis Pteroglossaspis Pteroglossaspis ruwenzoriensis \N \N \N \N \N 84194 B.longifolia Begonia Begonia longifolia \N \N \N \N \N 84195 E.paludosus Euchiton Euchiton paludosus \N \N \N \N \N 84196 E.giessii Euphorbia Euphorbia giessii \N \N \N \N \N 84197 P.pentandrus Phyllanthus Phyllanthus pentandrus \N \N \N \N \N 84198 C.montanus Chisocheton Chisocheton montanus \N \N \N \N \N 84199 \N family Plantaginaceae speedwell family \N \N \N \N 84200 F.comaru Fockea Fockea comaru \N \N \N \N \N 84201 L.pseudotruncatella Lithops Lithops pseudotruncatella \N \N \N \N \N 84202 \N genus Eriolobus \N \N \N \N \N 84203 C.triceps Cousinia Cousinia triceps \N \N \N \N \N 84204 \N genus Bentinckia \N \N \N \N \N 84205 \N genus Driessenia \N \N \N \N \N 84206 \N genus Hymenostemma \N \N \N \N \N 84207 O.regis-ferdinandii Ophrys Ophrys regis-ferdinandii \N \N \N \N \N 84208 P.LBF-2002-1 Passiflora Passiflora sp. LBF-2002-1 \N \N \N \N \N 84209 L.frutescens Leipoldtia Leipoldtia frutescens \N \N \N \N \N 84210 Z.hamiense Zygophyllum Zygophyllum hamiense \N \N \N \N \N 84211 G.delavayi Gleditsia Gleditsia delavayi \N \N \N \N \N 84212 \N subspecies Bidens micrantha subsp. kalealaha \N \N \N \N \N 84213 \N genus Caryodaphnopsis \N \N \N \N \N 84214 \N genus Sphaenolobium \N \N \N \N \N 84215 \N subspecies Arctostaphylos manzanita subsp. laevigata \N \N \N \N \N 84216 N.255526 Nemesia Nemesia aff. anisocarpa AK 255526 \N \N \N \N \N 84217 \N varietas Lysimachia deltoidea var. cinerascens \N \N \N \N \N 84218 S.tanala Streptocarpus Streptocarpus tanala \N \N \N \N \N 84219 N.praevisa Nitraria Nitraria praevisa \N \N \N \N \N 84220 P.rothianum Piper Piper rothianum \N \N \N \N \N 84221 G.triangulata Gaura Gaura triangulata \N \N \N \N \N 84222 \N subfamily Hemerocallidoideae \N \N \N \N \N 84223 P.purpusii Polygala Polygala purpusii \N \N \N \N \N 84224 D.sahariensis Daucus Daucus sahariensis \N \N \N \N \N 84225 D.binata Drosera Drosera binata \N \N \N \N \N 84226 M.kirkii Momordica Momordica kirkii \N \N \N \N \N 84227 A.exilis Austrostipa Austrostipa exilis \N \N \N \N \N 84228 A.obovata Atriplex Atriplex obovata \N \N \N \N \N 84229 C.1602 Cineraria Cineraria sp. Savolainen 1602 \N \N \N \N \N 84230 L.meyeri Lotononis Lotononis meyeri \N \N \N \N \N 84231 \N subspecies Gustavia macarenensis subsp. macarenensis \N \N \N \N \N 84232 C.werdermannii Catabrosa Catabrosa werdermannii \N \N \N \N \N 84233 \N varietas Cleome macrophylla var. macrophylla \N \N \N \N \N 84235 S.lithosperma Scleria Scleria lithosperma \N \N \N \N \N 84236 U.ellipticum Urophyllum Urophyllum ellipticum \N \N \N \N \N 84237 \N genus Microchloa \N \N \N \N \N 84238 Z.multijugum Zanthoxylum Zanthoxylum multijugum \N \N \N \N \N 84239 M.paradoxus Monachather Monachather paradoxus \N \N \N \N \N 84240 C.hantamensis Cliffortia Cliffortia hantamensis \N \N \N \N \N 84241 I.TP-2009 Inga Inga sp. 35 TP-2009 \N \N \N \N \N 84242 H.penicillanthemum Hugonia Hugonia penicillanthemum \N \N \N \N \N 84243 H.basalticum Helichrysum Helichrysum basalticum \N \N \N \N \N 84244 \N genus Nuttallanthus \N \N \N \N \N 84245 C.s.n. Calamovilfa Calamovilfa sp. Hodkinson s.n. \N \N \N \N \N 84246 K.uncinata Kalaharia Kalaharia uncinata \N \N \N \N \N 84247 L.sagotii Loxopterygium Loxopterygium sagotii \N \N \N \N \N 84248 B.victoriae Banksia Banksia victoriae \N \N \N \N \N 84249 E.rhinocerotis Elytropappus Elytropappus rhinocerotis \N \N \N \N \N 84250 H.piliferum Hieracium Hieracium piliferum \N \N \N \N \N 84251 P.praecox Parkinsonia Parkinsonia praecox \N \N \N \N \N 84252 P.muelleri Pultenaea Pultenaea muelleri \N \N \N \N \N 84253 \N subspecies Oenothera californica subsp. eurekensis \N \N \N \N \N 84254 C.s.n. Cynorkis Cynorkis sp. Roberts s.n. \N \N \N \N \N 84255 T.cryptopodium Trifolium Trifolium cryptopodium \N \N \N \N \N 84256 M.balansae Mimosa Mimosa balansae \N \N \N \N \N 84257 \N varietas Crataegus pinnatifida var. major \N \N \N \N \N 84258 \N genus Botschantzevia \N \N \N \N \N 84259 R.semiannulare Rytidosperma Rytidosperma semiannulare \N \N \N \N \N 84260 G.parvulum Gymnocalycium Gymnocalycium parvulum \N \N \N \N \N 84261 O.1903 Opilia Opilia sp. Chase 1903 \N \N \N \N \N 84262 A.maculosa Aerides Aerides maculosa \N \N \N \N \N 84263 P.obovata Pluchea Pluchea obovata \N \N \N \N \N 84264 P.mephiticum Pediomelum Pediomelum mephiticum \N \N \N \N \N 84265 C.sidarum Cuscuta Cuscuta sidarum \N \N \N \N \N 84266 C.abbreviata Cassia Cassia abbreviata \N \N \N \N \N 84267 \N varietas Aconitum kongboense var. villosum \N \N \N \N \N 84268 D.mauritiana Dombeya Dombeya mauritiana \N \N \N \N \N 84269 C.domatifer Croton Croton domatifer \N \N \N \N \N 84270 R.harveyana Ruellia Ruellia harveyana \N \N \N \N \N 84271 P.luquanensis Paris Paris luquanensis \N \N \N \N \N 84272 P.simplex Potentilla Potentilla simplex \N \N \N \N \N 84273 G.bracteatus Gymnocarpos Gymnocarpos bracteatus \N \N \N \N \N 84274 S.eopygmaea Saussurea Saussurea eopygmaea \N \N \N \N \N 84275 H.ridleyi Hemigraphis Hemigraphis ridleyi \N \N \N \N \N 84276 A.austroiranica Anthemis Anthemis austroiranica \N \N \N \N \N 84277 H.rattrayi Hydrophilus Hydrophilus rattrayi \N \N \N \N \N 84278 A.orientalis Acridocarpus Acridocarpus orientalis \N \N \N \N \N 84279 C.virgatum Cephalostachyum Cephalostachyum virgatum \N \N \N \N \N 84280 U.ecuadorensis Uncinia Uncinia ecuadorensis \N \N \N \N \N 84281 \N genus Decarydendron \N \N \N \N \N 84282 T.neglecta Templetonia Templetonia neglecta \N \N \N \N \N 84283 \N genus Ditaxis \N \N \N \N \N 84284 P.luridum Pelargonium Pelargonium luridum \N \N \N \N \N 84285 S.wallichii Schoenoplectiella Schoenoplectiella wallichii \N \N \N \N \N 84286 E.ovata Eleocharis Eleocharis ovata \N \N \N \N \N 84287 A.monelli Anagallis Anagallis monelli \N \N \N \N \N 84288 G.beyrichii Galeandra Galeandra beyrichii \N \N \N \N \N 84289 C.U-03 Cypripedium Cypripedium sp. U-03 \N \N \N \N \N 84290 R.calycina Randia Randia calycina \N \N \N \N \N 84291 C.olitorius Corchorus Corchorus olitorius \N \N \N \N \N 84292 P.diphyllum Polycarpon Polycarpon diphyllum \N \N \N \N \N 84293 S.hirtinervis Streptocarpus Streptocarpus hirtinervis \N \N \N \N \N 84294 S.exorrhiza Socratea Socratea exorrhiza \N \N \N \N \N 84295 E.intermedia Eragrostis Eragrostis intermedia plains lovegrass \N \N \N \N 84296 \N genus Aa \N \N \N \N \N 84297 N.championii Neurocalyx Neurocalyx championii \N \N \N \N \N 84298 \N varietas Cliffortia filifolia var. arenaria \N \N \N \N \N 84299 H.setaceum Helictotrichon Helictotrichon setaceum \N \N \N \N \N 84300 L.pendulus Leymus Leymus pendulus \N \N \N \N \N 84301 N.insignis Newcastelia Newcastelia insignis \N \N \N \N \N 84302 D.pilosa Draba Draba pilosa \N \N \N \N \N 84303 \N varietas Cardamine scutata var. formosana \N \N \N \N \N 84304 S.orbiculatus Symphoricarpos Symphoricarpos orbiculatus Indian-currant,coralberry \N \N \N \N 84305 H.novae-zelandiae Hierochloe Hierochloe novae-zelandiae \N \N \N \N \N 84306 L.breviflora Lagenaria Lagenaria breviflora \N \N \N \N \N 84307 K.grandiflora Killickia Killickia grandiflora \N \N \N \N \N 84308 B.ampla Begonia Begonia ampla \N \N \N \N \N 84309 M.hollrungii Myristica Myristica hollrungii \N \N \N \N \N 84310 \N subspecies Erica cerinthoides subsp. cerinthoides \N \N \N \N \N 84311 I.quadratus Indocalamus Indocalamus quadratus \N \N \N \N \N 84312 M.neopalmeri Mammillaria Mammillaria neopalmeri \N \N \N \N \N 84313 A.eriantha Artemisia Artemisia eriantha \N \N \N \N \N 84314 \N subtribe Pigafettinae \N \N \N \N \N 84315 B.tenuissimum Bupleurum Bupleurum tenuissimum \N \N \N \N \N 84316 \N genus Reichenbachia \N \N \N \N \N 84317 \N genus Peltariopsis \N \N \N \N \N 84318 L.LipV Liparis Liparis cf. distans LipV \N \N \N \N \N 84319 L.densiflorus Lithocarpus Lithocarpus densiflorus \N \N \N \N \N 84320 D.'johnsonii' Davidsonia Davidsonia sp. 'johnsonii' \N \N \N \N \N 84321 R.cuneifolius Rubus Rubus cuneifolius sand blackberry \N \N \N \N 84322 A.umbellatum Aethionema Aethionema umbellatum \N \N \N \N \N 84323 A.arboreum Aeonium Aeonium arboreum \N \N \N \N \N 84324 S.malacosperma Suaeda Suaeda malacosperma \N \N \N \N \N 84325 V.japonicum Veratrum Veratrum japonicum \N \N \N \N \N 84326 C.niveus Crocus Crocus niveus \N \N \N \N \N 84327 A.gracilis Ampelocissus Ampelocissus gracilis \N \N \N \N \N 84328 \N genus Heterachne \N \N \N \N \N 84329 E.junceum Eryngium Eryngium junceum \N \N \N \N \N 84330 D.hypericifolia Diplopterys Diplopterys hypericifolia \N \N \N \N \N 84331 A.cyrilli Allium Allium cyrilli \N \N \N \N \N 84332 D.senile Dendrobium Dendrobium senile \N \N \N \N \N 84333 \N family Juncaceae rush family \N \N \N \N 84334 E.japonica Eleorchis Eleorchis japonica \N \N \N \N \N 84335 C.gamosepalus Centropogon Centropogon gamosepalus \N \N \N \N \N 84336 N.mirzayanii Nepeta Nepeta mirzayanii \N \N \N \N \N 84337 T.triphyllum Tetrastigma Tetrastigma triphyllum \N \N \N \N \N 84338 \N genus Merianthera \N \N \N \N \N 84339 C.caudatum Citharexylum Citharexylum caudatum \N \N \N \N \N 84340 A.foemina Anagallis Anagallis foemina \N \N \N \N \N 84341 C.spectabilis Carex Carex spectabilis \N \N \N \N \N 84342 \N genus Heteromeles \N \N \N \N \N 84343 S.speciosa Semiramisia Semiramisia speciosa \N \N \N \N \N 84344 R.canadensis Rubus Rubus canadensis \N \N \N \N \N 84345 S.prolifera Solms-laubachia Solms-laubachia prolifera \N \N \N \N \N 84346 \N subspecies Biscutella laevigata subsp. lucida \N \N \N \N \N 84347 C.plectrochilum Cypripedium Cypripedium plectrochilum \N \N \N \N \N 84348 \N genus Amauria \N \N \N \N \N 84349 M.mammillaris Mammillaria Mammillaria mammillaris \N \N \N \N \N 84350 C.haughtii Cuscuta Cuscuta haughtii \N \N \N \N \N 84351 S.317PV02 Schefflera Schefflera cf. arboricola 317PV02 \N \N \N \N \N 84352 \N genus Gouania \N \N \N \N \N 84353 E.stenophyllus Eremurus Eremurus stenophyllus \N \N \N \N \N 84354 F.schaijesiorum Faroa Faroa schaijesiorum \N \N \N \N \N 84355 H.australasica Helicia Helicia australasica \N \N \N \N \N 84356 H.brachyphylla Hemigenia Hemigenia brachyphylla \N \N \N \N \N 84357 U.singeriana Utricularia Utricularia singeriana \N \N \N \N \N 84358 L.procumbens Leidesia Leidesia procumbens \N \N \N \N \N 84359 \N genus Linnaeopsis \N \N \N \N \N 84360 \N genus Myrosmodes \N \N \N \N \N 84361 L.clementei Logfia Logfia clementei \N \N \N \N \N 84362 \N subspecies Casuarina junghuhniana subsp. junghuhniana \N \N \N \N \N 84363 C.ramondioides Conandron Conandron ramondioides \N \N \N \N \N 84364 I.rotundifolia Iphionopsis Iphionopsis rotundifolia \N \N \N \N \N 84365 E.bifida Eleocharis Eleocharis bifida \N \N \N \N \N 84366 N.arcaensis Nassella Nassella arcaensis \N \N \N \N \N 84367 \N genus Ochrocephala \N \N \N \N \N 84368 D.marina Dactylis Dactylis marina \N \N \N \N \N 84369 A.iminouakensis Aliella Aliella iminouakensis \N \N \N \N \N 84370 \N subtribe Santolininae \N \N \N \N \N 84371 \N genus Paracryphia \N \N \N \N \N 84372 E.stellata Encyclia Encyclia stellata \N \N \N \N \N 84373 S.4679 Samadera Samadera sp. C-Ford 4679 \N \N \N \N \N 84374 P.topengii Pygeum Pygeum topengii \N \N \N \N \N 84375 C.foerstermannii Coelogyne Coelogyne foerstermannii \N \N \N \N \N 84376 A.setacea Agalinis Agalinis setacea \N \N \N \N \N 84377 A.ayersiana Acacia Acacia ayersiana \N \N \N \N \N 84378 \N varietas Schoenocaulon jaliscense var. regulare \N \N \N \N \N 84379 F.peruviana Fuertesimalva Fuertesimalva peruviana \N \N \N \N \N 84380 M.neocambrica Macarthuria Macarthuria neocambrica \N \N \N \N \N 84381 O.longiflora Orchidantha Orchidantha longiflora \N \N \N \N \N 84382 \N genus Hasseltiopsis \N \N \N \N \N 84383 E.tumida Erica Erica tumida \N \N \N \N \N 84384 M.puberula Mentzelia Mentzelia puberula \N \N \N \N \N 84385 \N subspecies Dorstenia cayapia subsp. asaroides \N \N \N \N \N 84386 D.rudis Dahlia Dahlia rudis \N \N \N \N \N 84387 H.deltoidea Himalaiella Himalaiella deltoidea \N \N \N \N \N 84388 C.cordatum Cardiocrinum Cardiocrinum cordatum \N \N \N \N \N 84389 S.coriacea Scaevola Scaevola coriacea dwarf naupaka \N \N \N \N 84390 P.penduliflora Passiflora Passiflora penduliflora \N \N \N \N \N 84391 C.vialis Calyptocarpus Calyptocarpus vialis \N \N \N \N \N 84392 \N varietas Viola tokubuchiana var. takedana \N \N \N \N \N 84393 \N genus Dactylocladus \N \N \N \N \N 84394 M.elliptica Melicope Melicope elliptica \N \N \N \N \N 84395 A.98-6197 Amomum Amomum aff. paratsao-ko Kress 98-6197 \N \N \N \N \N 84396 \N genus Chloracantha \N \N \N \N \N 84397 G.villosa Guizotia Guizotia villosa \N \N \N \N \N 84398 P.'PR' Persea Persea sp. 'PR' \N \N \N \N \N 84399 \N varietas Drosera villosa var. ascendens \N \N \N \N \N 84400 S.involucrata Scholtzia Scholtzia involucrata \N \N \N \N \N 84401 \N genus Zanonia \N \N \N \N \N 84402 \N subspecies Narcissus papyraceus subsp. panizzianus \N \N \N \N \N 84403 P.pauciflora Primula Primula pauciflora darkthroat shootingstar \N \N \N \N 84404 S.paniculatum Sacosperma Sacosperma paniculatum \N \N \N \N \N 84405 T.fremontii Toxicoscordion Toxicoscordion fremontii \N \N \N \N \N 84406 \N subspecies Pimelea spinescens subsp. pubiflora \N \N \N \N \N 84407 P.lindheimeri Perityle Perityle lindheimeri \N \N \N \N \N 84408 D.viminalis Diplectria Diplectria viminalis \N \N \N \N \N 84409 P.rhynchodonta Pedicularis Pedicularis rhynchodonta \N \N \N \N \N 84410 N.1544 Notylia Notylia sp. Whitten 1544 \N \N \N \N \N 84411 H.foliosa Haloragis Haloragis foliosa \N \N \N \N \N 84412 A.siccus Axonopus Axonopus siccus \N \N \N \N \N 84413 C.belizense Cheiloclinium Cheiloclinium belizense \N \N \N \N \N 84414 X.0166 Xylobium Xylobium sp. Koehler 0166 \N \N \N \N \N 84415 \N varietas Pleioblastus hsienchuensis var. subglabratus \N \N \N \N \N 84416 S.walkeri Strobilanthes Strobilanthes walkeri \N \N \N \N \N 84417 R.rhuyuenense Rhododendron Rhododendron rhuyuenense \N \N \N \N \N 84418 D.sorensenii Dahlia Dahlia sorensenii \N \N \N \N \N 84419 R.saturata Rosa Rosa saturata \N \N \N \N \N 84420 A.flabellata Alpinia Alpinia flabellata \N \N \N \N \N 84421 A.gemmifera Arabidopsis Arabidopsis thaliana x Arabidopsis halleri subsp. gemmifera \N \N \N \N \N 84422 T.maracasana Turnera Turnera maracasana \N \N \N \N \N 84423 P.jerdoniana Porpax Porpax jerdoniana \N \N \N \N \N 84424 C.SH-2010 Cardamine Cardamine sp. SH-2010 \N \N \N \N \N 84425 \N genus Pediomelum \N \N \N \N \N 84426 P.kisoana Primula Primula kisoana \N \N \N \N \N 84427 L.integrifolia Lippia Lippia integrifolia \N \N \N \N \N 84428 \N genus Lophiola \N \N \N \N \N 84430 P.craspedodroma Pilea Pilea craspedodroma \N \N \N \N \N 84431 M.schiedeanum Marathrum Marathrum schiedeanum \N \N \N \N \N 84432 D.major Doliocarpus Doliocarpus major \N \N \N \N \N 84433 L.glaber Lithocarpus Lithocarpus glaber Japanese-oak,shiribukagashi \N \N \N \N 84434 C.glabrum Caryocar Caryocar glabrum \N \N \N \N \N 84435 M.caesalpiniifolia Mimosa Mimosa caesalpiniifolia \N \N \N \N \N 84436 \N genus Dystovomita \N \N \N \N \N 84437 A.ericetorum Allium Allium ericetorum \N \N \N \N \N 84438 C.capensis Chamarea Chamarea capensis \N \N \N \N \N 84439 W.SH-2010 Weinmannia Weinmannia sp. SH-2010 \N \N \N \N \N 84440 F.racemosa Forgesia Forgesia racemosa \N \N \N \N \N 84441 G.hirsuta Guettarda Guettarda hirsuta \N \N \N \N \N 84442 L.confusa Liparia Liparia confusa \N \N \N \N \N 84443 F.prasinicarpa Ficus Ficus prasinicarpa \N \N \N \N \N 84444 P.cryptantha Phacelia Phacelia cryptantha \N \N \N \N \N 84445 D.sylvatica Dioscorea Dioscorea sylvatica \N \N \N \N \N 84446 C.rhizopendulum Chlorophytum Chlorophytum rhizopendulum \N \N \N \N \N 84447 M.saligna Melaleuca Melaleuca saligna \N \N \N \N \N 84448 P.truncatibaccum Piper Piper truncatibaccum \N \N \N \N \N 84449 S.THH-2011 Stenocactus Stenocactus sp. THH-2011 \N \N \N \N \N 84450 G.bipinnatifida Glandularia Glandularia bipinnatifida Dakota mock vervain \N \N \N \N 84451 \N genus Ellipeiopsis \N \N \N \N \N 84452 E.aquatile Eriocaulon Eriocaulon aquatile \N \N \N \N \N 84453 \N genus Macroditassa \N \N \N \N \N 84454 D.baueri Dodonaea Dodonaea baueri \N \N \N \N \N 84455 C.hispidus Corybas Corybas hispidus \N \N \N \N \N 84456 U.purpureocaerulea Utricularia Utricularia purpureocaerulea \N \N \N \N \N 84457 P.ferrugineus Pachyrhizus Pachyrhizus ferrugineus \N \N \N \N \N 84458 N.M114 Nuphar Nuphar sp. Qiu M114 \N \N \N \N \N 84459 \N genus Hammada \N \N \N \N \N 84460 A.translucens Acacia Acacia translucens \N \N \N \N \N 84461 S.379) Swartzia Swartzia sp. B (Torke 379) \N \N \N \N \N 84462 \N varietas Allium plurifoliatum var. zhegushanense \N \N \N \N \N 84463 G.cana Gilia Gilia cana \N \N \N \N \N 84464 C.percivaliana Cattleya Cattleya percivaliana \N \N \N \N \N 84465 \N genus Baptisia \N \N \N \N \N 84466 G.stoliczkai Gentianella Gentianella stoliczkai \N \N \N \N \N 84467 P.scaturiginum Podostemum Podostemum scaturiginum \N \N \N \N \N 84468 A.columbiana Arctostaphylos Arctostaphylos columbiana \N \N \N \N \N 84469 I.5135 Isidorea Isidorea cf. brachyantha McDowell 5135 \N \N \N \N \N 84470 S.globosa Schiedea Schiedea globosa \N \N \N \N \N 84471 R.chrysocarpus Rumex Rumex chrysocarpus \N \N \N \N \N 84472 \N genus Carlesia \N \N \N \N \N 84473 L.villosum Lycium Lycium villosum \N \N \N \N \N 84474 \N genus Morisonia \N \N \N \N \N 84475 \N genus Tamonea \N \N \N \N \N 84476 D.glaciale Delphinium Delphinium glaciale \N \N \N \N \N 84477 \N subspecies Vigna unguiculata subsp. alba \N \N \N \N \N 84478 C.gladiata Coreopsis Coreopsis gladiata \N \N \N \N \N 84479 A.lineata Atylosia Atylosia lineata \N \N \N \N \N 84480 H.annuus Helianthus Helianthus annuus common sunflower \N \N \N \N 84481 A.ballyi Acridocarpus Acridocarpus ballyi \N \N \N \N \N 84482 \N genus Artanema \N \N \N \N \N 84483 Z.piperitum Zanthoxylum Zanthoxylum piperitum Japanese-pepper,san-sho \N \N \N \N 84484 G.flexicaulis Gentiana Gentiana flexicaulis \N \N \N \N \N 84485 T.quartinianum Trifolium Trifolium quartinianum \N \N \N \N \N 84486 N.insignis Nepenthes Nepenthes insignis \N \N \N \N \N 84487 K.appendiculata Kyllinga Kyllinga appendiculata \N \N \N \N \N 84488 L.sessilifolius Lathyrus Lathyrus sessilifolius \N \N \N \N \N 84489 B.basiloba Byrsonima Byrsonima basiloba \N \N \N \N \N 84490 O.EE916 Oxalis Oxalis cf. ptychoclada EE916 \N \N \N \N \N 84491 A.andraeanum Anthurium Anthurium andraeanum flamingo-lily,oilcloth-flower \N \N \N \N 84492 C.assimile Capillipedium Capillipedium assimile \N \N \N \N \N 84493 \N varietas Ischaemum aristatum var. glaucum \N \N \N \N \N 84494 C.atlanticum Chaerophyllum Chaerophyllum atlanticum \N \N \N \N \N 84495 C.glomeratum Cerastium Cerastium glomeratum \N \N \N \N \N 84496 \N genus Kraussia \N \N \N \N \N 84497 \N genus Tetrapanax \N \N \N \N \N 84498 N.inodorum Nothoscordum Nothoscordum inodorum \N \N \N \N \N 84499 H.caudatifolia Hydrangea Hydrangea caudatifolia \N \N \N \N \N 84500 F.ornus Fraxinus Fraxinus ornus flowering ash,manna ash \N \N \N \N 84501 C.messorius Cucumis Cucumis messorius \N \N \N \N \N 84502 \N genus Bonatea \N \N \N \N \N 84503 E.auberianum Echium Echium auberianum \N \N \N \N \N 84504 D.brevisiliqua Diplotaxis Diplotaxis brevisiliqua \N \N \N \N \N 84505 A.matsudae Arisaema Arisaema matsudae \N \N \N \N \N 84506 \N order Rosales \N \N \N \N \N 84507 M.fabaceus Marah Marah fabaceus California manroot \N \N \N \N 84508 S.aucheri Sinapis Sinapis aucheri \N \N \N \N \N 84509 C.dammeriana Chamaedorea Chamaedorea dammeriana \N \N \N \N \N 84510 F.mauritiana Ficus Ficus mauritiana \N \N \N \N \N 84511 \N genus Marshalljohnstonia \N \N \N \N \N 84512 D.ericoides Dinemandra Dinemandra ericoides \N \N \N \N \N 84513 V.cereum Vaccinium Vaccinium cereum \N \N \N \N \N 84514 G.koelreuteria Guioa Guioa koelreuteria \N \N \N \N \N 84515 \N genus Loxocarya \N \N \N \N \N 84516 S.schmakovii Sterigmostemum Sterigmostemum schmakovii \N \N \N \N \N 84517 H.gayanus Holcus Holcus gayanus \N \N \N \N \N 84518 M.furtadoana Maxburretia Maxburretia furtadoana \N \N \N \N \N 84519 P.8118 Prosthechea Prosthechea cf. moojenii Brieger 8118 \N \N \N \N \N 84520 \N varietas Pueraria montana var. lobata kudzu,kudzu vine \N \N \N \N 84521 C.robustum Centrolobium Centrolobium robustum \N \N \N \N \N 84522 B.filifolia Byblis Byblis filifolia \N \N \N \N \N 84523 \N genus Acrotome \N \N \N \N \N 84524 S.deserti Sibara Sibara deserti \N \N \N \N \N 84525 E.petrophila Euphorbia Euphorbia petrophila \N \N \N \N \N 84526 L.spathulatum Lomatogonium Lomatogonium spathulatum \N \N \N \N \N 84527 I.SH-2010 Itea Itea sp. SH-2010 \N \N \N \N \N 84528 V.amoena Veronica Veronica amoena \N \N \N \N \N 84529 \N genus Scilla \N \N \N \N \N 84530 G.montanus Goniothalamus Goniothalamus montanus \N \N \N \N \N 84531 M.griffithii Microsaccus Microsaccus griffithii \N \N \N \N \N 84532 A.paleacea Aa Aa paleacea \N \N \N \N \N 84533 M.massonii Metalasia Metalasia massonii \N \N \N \N \N 84534 \N genus Ceratochilus \N \N \N \N \N 84535 S.nashii Sisyrinchium Sisyrinchium nashii \N \N \N \N \N 84536 B.scabra Byttneria Byttneria scabra \N \N \N \N \N 84537 M.litoralis Molinia Molinia litoralis \N \N \N \N \N 84538 S.scorodonia Scrophularia Scrophularia scorodonia \N \N \N \N \N 84539 M.discoidea Masdevallia Masdevallia discoidea \N \N \N \N \N 84540 D.stairsii Disa Disa stairsii \N \N \N \N \N 84541 C.693 Castanopsis Castanopsis sp. 693 \N \N \N \N \N 84542 E.aurea Eulalia Eulalia aurea \N \N \N \N \N 84543 H.cachemiricum Heracleum Heracleum cachemiricum \N \N \N \N \N 84544 T.solanifolia Tabernaemontana Tabernaemontana solanifolia \N \N \N \N \N 84545 A.macrocalyx Astrocaryum Astrocaryum macrocalyx \N \N \N \N \N 84546 \N varietas Begonia handelii var. rubropilosa \N \N \N \N \N 84547 \N genus Ligaria \N \N \N \N \N 84548 \N genus Sherardia \N \N \N \N \N 84549 E.phillipsii Erica Erica phillipsii \N \N \N \N \N 84550 P.ericoides Poranthera Poranthera ericoides \N \N \N \N \N 84551 A.auriculatum Arisaema Arisaema auriculatum \N \N \N \N \N 84552 \N order Saxifragales \N \N \N \N \N 84553 S.jacutica Smelowskia Smelowskia jacutica \N \N \N \N \N 84554 A.castanifolia Aphelandra Aphelandra castanifolia \N \N \N \N \N 84555 M.suaveolens Marlierea Marlierea suaveolens \N \N \N \N \N 84556 A.camptoceras Astragalus Astragalus camptoceras \N \N \N \N \N 84557 \N genus Stephania \N \N \N \N \N 84558 C.glabrata Cordia Cordia glabrata \N \N \N \N \N 84559 S.grande Schizostachyum Schizostachyum grande \N \N \N \N \N 84560 P.crenata Polygala Polygala crenata \N \N \N \N \N 84561 E.comosa Euphorbia Euphorbia comosa \N \N \N \N \N 84562 H.exsulca Hypolaena Hypolaena exsulca \N \N \N \N \N 84563 C.betulinus Croton Croton betulinus \N \N \N \N \N 84564 S.spicigera Satureja Satureja spicigera \N \N \N \N \N 84565 D.cooleyi Desmanthus Desmanthus cooleyi huizachillo \N \N \N \N 84566 O.vitiensis Ochrosia Ochrosia vitiensis \N \N \N \N \N 84567 S.438 Symplocos Symplocos sp. 438 \N \N \N \N \N 84568 B.sample environmental samples Taxonomy:979580 Brassica environmental sample \N \N \N \N \N 84569 C.subterranea Cumulopuntia Cumulopuntia subterranea \N \N \N \N \N 84570 M.borealis Microseris Microseris borealis \N \N \N \N \N 84571 P.atacamensis Perezia Perezia atacamensis \N \N \N \N \N 84572 S.sulcinervia Symplocos Symplocos sulcinervia \N \N \N \N \N 84573 P.YLQ-2003 Platanus Platanus sp. YLQ-2003 \N \N \N \N \N 84574 C.aspleniifolia Coptis Coptis aspleniifolia \N \N \N \N \N 84575 E.coacervata Erica Erica coacervata \N \N \N \N \N 84576 H.racemosum Hypobathrum Hypobathrum racemosum \N \N \N \N \N 84577 C.yanhusuo Corydalis Corydalis yanhusuo \N \N \N \N \N 84578 F.phaeanthera Fritillaria Fritillaria phaeanthera \N \N \N \N \N 84579 R.glacialis Rhinanthus Rhinanthus glacialis \N \N \N \N \N 84580 \N subspecies Narcissus triandrus subsp. capax \N \N \N \N \N 84581 M.elliptica Mercurialis Mercurialis corsica x Mercurialis elliptica \N \N \N \N \N 84582 \N no rank environmental samples Taxonomy:1096669 \N \N \N \N \N 84583 E.platylepis Echinops Echinops platylepis \N \N \N \N \N 84584 V.effusa Valeriana Valeriana effusa \N \N \N \N \N 84585 P.umbellata Prunus Prunus umbellata hog plum,sloe plum \N \N \N \N 84586 S.manshurica Sambucus Sambucus manshurica \N \N \N \N \N 84587 D.longipedicellata Descurainia Descurainia longipedicellata \N \N \N \N \N 84588 P.hystrix Pyrostria Pyrostria hystrix \N \N \N \N \N 84589 E.congesta Eremogone Eremogone congesta \N \N \N \N \N 84590 S.malheurensis Stephanomeria Stephanomeria malheurensis \N \N \N \N \N 84591 A.cincinnata Acacia Acacia cincinnata \N \N \N \N \N 84592 I.arabica Indigofera Indigofera arabica \N \N \N \N \N 84593 S.acuminatissima Shorea Shorea acuminatissima \N \N \N \N \N 84594 A.setigera Amblyolepis Amblyolepis setigera \N \N \N \N \N 84595 S.spatulifolius Sauropus Sauropus spatulifolius \N \N \N \N \N 84596 \N genus Araujia \N \N \N \N \N 84597 P.subglabribracteatum Piper Piper subglabribracteatum \N \N \N \N \N 84598 B.polyantha Boechera Boechera polyantha \N \N \N \N \N 84599 B.riparia Blumea Blumea riparia \N \N \N \N \N 84600 A.tortuosa Acacia Acacia tortuosa \N \N \N \N \N 84601 A.virginiana Anemone Anemone virginiana tall thimbleweed \N \N \N \N 84602 S.pseudocapsicum Solanum Solanum pseudocapsicum Jerusalem cherry \N \N \N \N 84603 E.tarokoana Euphrasia Euphrasia tarokoana \N \N \N \N \N 84604 M.5082 Maxillaria Maxillaria cf. alba Atwood & Whitten 5082 \N \N \N \N \N 84605 \N varietas Pteryxia terebinthina var. terebinthina \N \N \N \N \N 84606 C.brachystachys Chionanthus Chionanthus brachystachys \N \N \N \N \N 84607 \N subspecies Gymnocalycium pflanzii subsp. pflanzii \N \N \N \N \N 84608 P.deliciosa Phalaenopsis Phalaenopsis deliciosa \N \N \N \N \N 84609 D.613 Dimerostemma Dimerostemma sp. Moraes 613 \N \N \N \N \N 84610 \N genus Pearcea \N \N \N \N \N 84611 K.ericoides Kunzea Kunzea ericoides burgan,white teatree \N \N \N \N 84612 L.striatum Linum Linum striatum \N \N \N \N \N 84613 N.weberbaueri Nasa Nasa weberbaueri \N \N \N \N \N 84614 T.nigrobaccatum Tripterospermum Tripterospermum nigrobaccatum \N \N \N \N \N 84615 R.fortunae-hibernae Rytidosperma Rytidosperma fortunae-hibernae \N \N \N \N \N 84616 E.gigas Entada Entada gigas \N \N \N \N \N 84617 V.97-3 Vellozia Vellozia sp. Kubitzki and Feuerer 97-3 \N \N \N \N \N 84618 \N varietas Cliffortia ruscifolia var. ruscifolia \N \N \N \N \N 84619 P.veitchii Pinanga Pinanga veitchii \N \N \N \N \N 84620 S.3352 Sanango Sanango sp. Bremer 3352 \N \N \N \N \N 84621 \N genus Helicostylis \N \N \N \N \N 84622 \N varietas Cyrtandra ootensis var. ootensis \N \N \N \N \N 84623 H.aridicola Hibiscus Hibiscus aridicola \N \N \N \N \N 84624 L.graminifolius Lathyrus Lathyrus graminifolius \N \N \N \N \N 84625 M.laciniata Medicago Medicago laciniata \N \N \N \N \N 84626 P.wawrana Phyllostegia Phyllostegia wawrana \N \N \N \N \N 84627 A.polonicum x Aegilotriticum Aegilops tauschii subsp. tauschii x Triticum turgidum subsp. polonicum \N \N \N \N \N 84628 D.intricatus Dipterocarpus Dipterocarpus intricatus \N \N \N \N \N 84629 \N subspecies Chionochloa pallens subsp. cadens \N \N \N \N \N 84630 N.aretioides Nama Nama aretioides \N \N \N \N \N 84631 C.shortiana Carex Carex shortiana \N \N \N \N \N 84632 P.28464 Polygala Polygala cf. obovata Zardini & Aquino 28464 \N \N \N \N \N 84633 A.muelleriana Allocasuarina Allocasuarina muelleriana \N \N \N \N \N 84634 C.odorata Cumarinia Cumarinia odorata \N \N \N \N \N 84636 N.minor Najas Najas minor European naiad,brittle naiad \N \N \N \N 84637 S.calabrella Soldanella Soldanella calabrella \N \N \N \N \N 84638 M.australis Mentha Mentha australis \N \N \N \N \N 84639 \N varietas Passiflora foetida var. hirsutissima \N \N \N \N \N 84640 \N varietas Ceanothus impressus var. nipomensis \N \N \N \N \N 84641 V.pentasepala Hebe Veronica pentasepala \N \N \N \N \N 84642 A.touranicus Astragalus Astragalus touranicus \N \N \N \N \N 84643 H.ranunculoides Hydrocotyle Hydrocotyle ranunculoides \N \N \N \N \N 84644 L.arcuata Luzula Luzula arcuata \N \N \N \N \N 84645 P.montana Protea Protea montana \N \N \N \N \N 84646 G.pauciflora Geonoma Geonoma pauciflora \N \N \N \N \N 84647 P.spathulatus Paepalanthus Paepalanthus spathulatus \N \N \N \N \N 84648 B.hordeaceus Bromus Bromus hordeaceus soft brome,soft chess \N \N \N \N 84649 B.ogadensis Boswellia Boswellia ogadensis \N \N \N \N \N 84650 H.silphioides Helianthus Helianthus silphioides \N \N \N \N \N 84651 P.ionanthum Paspalum Paspalum ionanthum \N \N \N \N \N 84652 M.guilandinae Mimosa Mimosa guilandinae \N \N \N \N \N 84653 S.tenuisetosum Solanum Solanum tenuisetosum \N \N \N \N \N 84654 S.collina Shorea Shorea collina \N \N \N \N \N 84655 T.glaucifolia Tasmannia Tasmannia glaucifolia \N \N \N \N \N 84656 G.callistantha Gentiana Gentiana callistantha \N \N \N \N \N 84657 \N genus Reyesia \N \N \N \N \N 84658 L.AA3 Lithocarpus Lithocarpus sp. AA3 \N \N \N \N \N 84659 C.mauritanicus Cheirolophus Cheirolophus mauritanicus \N \N \N \N \N 84660 A.filiformis Ayenia Ayenia filiformis \N \N \N \N \N 84661 \N subspecies Gilia tricolor subsp. tricolor \N \N \N \N \N 84662 P.mourai Piper Piper mourai \N \N \N \N \N 84663 \N genus Chorizema \N \N \N \N \N 84664 C.cruciata Cliffortia Cliffortia cruciata \N \N \N \N \N 84665 H.officinalis Hyssopus Hyssopus officinalis hyssop \N \N \N \N 84666 L.chachas Lupinus Lupinus chachas \N \N \N \N \N 84667 E.sapphirinum Eriastrum Eriastrum sapphirinum \N \N \N \N \N 84668 T.calocephalum Taraxacum Taraxacum calocephalum \N \N \N \N \N 84669 N.scordotis Nepeta Nepeta scordotis \N \N \N \N \N 84670 D.behrii Diuris Diuris behrii \N \N \N \N \N 84671 S.P01860082 Strychnos Strychnos sp. P01860082 \N \N \N \N \N 84672 C.tetragona Crotalaria Crotalaria tetragona \N \N \N \N \N 84673 I.ekmanii Illicium Illicium ekmanii \N \N \N \N \N 84674 M.crassum Marsypopetalum Marsypopetalum crassum \N \N \N \N \N 84675 B.shaferi Bursera Bursera shaferi \N \N \N \N \N 84676 \N genus Printzia \N \N \N \N \N 84677 \N varietas Coursetia caribaea var. ochroleuca \N \N \N \N \N 84678 P.clavata Pseudogaltonia Pseudogaltonia clavata \N \N \N \N \N 84679 C.brasiliense Cymbopetalum Cymbopetalum brasiliense \N \N \N \N \N 84680 C.rossteniorum Chamaedorea Chamaedorea rossteniorum \N \N \N \N \N 84681 \N genus Paractaenum \N \N \N \N \N 84682 O.thyrsiflora Orostachys Orostachys thyrsiflora \N \N \N \N \N 84683 \N genus Djinga \N \N \N \N \N 84684 S.defoliata Sinningia Sinningia defoliata \N \N \N \N \N 84685 M.japonica Mentha Mentha japonica \N \N \N \N \N 84686 G.SM-2010 Gunnera Gunnera sp. SM-2010 \N \N \N \N \N 84687 I.brevicalyx Indigofera Indigofera brevicalyx \N \N \N \N \N 84688 M.raiateensis Mussaenda Mussaenda raiateensis \N \N \N \N \N 84689 L.purpureum Lonchostoma Lonchostoma purpureum \N \N \N \N \N 84690 T.parviflora Trochetia Trochetia parviflora \N \N \N \N \N 84691 \N subspecies Crocus cancellatus subsp. mazziaricus \N \N \N \N \N 84692 \N genus Pseudocalyx \N \N \N \N \N 84693 L.denticulata Lycianthes Lycianthes denticulata \N \N \N \N \N 84694 \N genus Hermogenodendron \N \N \N \N \N 84695 H.pungens Habenaria Habenaria pungens \N \N \N \N \N 84696 R.commiphoroides Rotheca Rotheca commiphoroides \N \N \N \N \N 84697 M.sucrei Marlierea Marlierea sucrei \N \N \N \N \N 84698 C.hirtus Croton Croton hirtus \N \N \N \N \N 84699 \N genus Forstera \N \N \N \N \N 84700 P.rutilus Potamogeton Potamogeton rutilus \N \N \N \N \N 84701 \N genus Stenopadus \N \N \N \N \N 84702 A.linearis Aspalathus Aspalathus linearis rooibos \N \N \N \N 84703 A.pehuenches Astragalus Astragalus pehuenches \N \N \N \N \N 84704 L.duchartrei Lilium Lilium duchartrei \N \N \N \N \N 84705 V.arcuata Viola Viola arcuata \N \N \N \N \N 84706 P.aliciae Primula Primula aliciae \N \N \N \N \N 84707 T.621 Tetraplandra Tetraplandra sp. Jardin 621 \N \N \N \N \N 84708 C.scabiosa Centaurea Centaurea scabiosa \N \N \N \N \N 84709 P.humistratum Piper Piper humistratum \N \N \N \N \N 84710 L.elimense Leucadendron Leucadendron elimense \N \N \N \N \N 84711 P.verschaffeltii Peperomia Peperomia verschaffeltii \N \N \N \N \N 84712 A.merostachyoides Arthrostylidium Arthrostylidium merostachyoides \N \N \N \N \N 84713 A.acutiflora Aspalathus Aspalathus acutiflora \N \N \N \N \N 84714 D.yunnanensis Dipelta Dipelta yunnanensis \N \N \N \N \N 84715 E.tamanduana Euphorbia Euphorbia tamanduana \N \N \N \N \N 84716 T.balbisiana Tillandsia Tillandsia balbisiana \N \N \N \N \N 84717 \N genus Tibouchina glory bushes \N \N \N \N 84718 M.pulchra Millettia Millettia pulchra \N \N \N \N \N 84719 \N genus Deguelia \N \N \N \N \N 84720 C.semilacera Cousinia Cousinia semilacera \N \N \N \N \N 84721 \N varietas Dracaena reflexa var. salicifolia \N \N \N \N \N 84722 W.monopetala Wurmbea Wurmbea monopetala \N \N \N \N \N 84723 \N genus Alania \N \N \N \N \N 84724 S.jussieuana Sida Sida jussieuana \N \N \N \N \N 84725 E.tordilioides Erodium Erodium tordilioides \N \N \N \N \N 84726 X.viscosa Xerophyta Xerophyta viscosa \N \N \N \N \N 84727 C.mopane Colophospermum Colophospermum mopane mopane,turpentine tree \N \N \N \N 84728 X.gymnospermoides Xanthocephalum Xanthocephalum gymnospermoides \N \N \N \N \N 84729 A.balansae Arthrophyllum Arthrophyllum balansae \N \N \N \N \N 84730 \N genus Anemone \N \N \N \N \N 84731 T.polystachya Tournefortia Tournefortia polystachya \N \N \N \N \N 84732 E.horvatii Edraianthus Edraianthus horvatii \N \N \N \N \N 84733 H.schmidtii Hieracium Hieracium schmidtii \N \N \N \N \N 84734 S.coriaceum Solanum Solanum coriaceum \N \N \N \N \N 84735 S.violacea Sophronitella Sophronitella violacea \N \N \N \N \N 84736 D.maculomarronina Disa Disa x maculomarronina \N \N \N \N \N 84737 D.cabrerana Diplopterys Diplopterys cabrerana \N \N \N \N \N 84738 C.robusta Conostylis Conostylis robusta \N \N \N \N \N 84739 A.rigidula Acacia Acacia rigidula \N \N \N \N \N 84740 \N subspecies Genista umbellata subsp. equisetiformis \N \N \N \N \N 84741 C.aculeatum Clerodendrum Clerodendrum aculeatum \N \N \N \N \N 84742 T.euphorbioides Thesium Thesium euphorbioides \N \N \N \N \N 84743 X.rotundifolia Xanthosia Xanthosia rotundifolia \N \N \N \N \N 84744 \N subspecies Brassica fruticulosa subsp. cossoniana \N \N \N \N \N 84745 T.bridgesii Triteleia Triteleia bridgesii \N \N \N \N \N 84746 \N subspecies Centaurea resupinata subsp. spachii \N \N \N \N \N 84747 \N genus Andira \N \N \N \N \N 84748 K.diversifolia Komaroffia Komaroffia diversifolia \N \N \N \N \N 84749 A.macrophylla Astronia Astronia macrophylla \N \N \N \N \N 84750 C.rostrata Carex Carex rostrata \N \N \N \N \N 84751 \N genus Tarlmounia \N \N \N \N \N 84752 M.himalaica Mirabilis Mirabilis himalaica \N \N \N \N \N 84753 \N varietas Symphyotrichum drummondii var. texanum \N \N \N \N \N 84754 L.falcata Legousia Legousia falcata \N \N \N \N \N 84755 S.tigerstedtii Syringa Syringa tigerstedtii \N \N \N \N \N 84756 \N subspecies Colchicum lingulatum subsp. rigescens \N \N \N \N \N 84757 A.triquetra Aspalathus Aspalathus triquetra \N \N \N \N \N 84758 K.6998 Kunzea Kunzea sp. K Bean 6998 \N \N \N \N \N 84759 H.angustisecta Hydrostachys Hydrostachys angustisecta \N \N \N \N \N 84760 A.micrantha Aristolochia Aristolochia micrantha \N \N \N \N \N 84761 C.canariensis Convolvulus Convolvulus canariensis \N \N \N \N \N 84762 D.subternata Dalechampia Dalechampia subternata \N \N \N \N \N 84763 C.minus Cocconerion Cocconerion minus \N \N \N \N \N 84764 \N genus Hilliella \N \N \N \N \N 84765 \N genus Cardiochlamys \N \N \N \N \N 84766 \N varietas Eriogonum hoffmannii var. robustius \N \N \N \N \N 84767 O.urbaniana Oxalis Oxalis urbaniana \N \N \N \N \N 84768 C.aculeata Conostylis Conostylis aculeata \N \N \N \N \N 84769 \N genus Paramacrolobium \N \N \N \N \N 84770 A.uva-ursi Arctostaphylos Arctostaphylos uva-ursi bearberry \N \N \N \N 84771 \N genus Moquiniella \N \N \N \N \N 84772 G.geoffrayi Globba Globba geoffrayi \N \N \N \N \N 84773 P.N298 Peperomia Peperomia sp. N298 \N \N \N \N \N 84774 R.339 Randia Randia sp. Persson and Gustafsson 339 \N \N \N \N \N 84775 S.grandiflora Sesbania Sesbania grandiflora Spanish armada,agati,baby boots,gallito,ofai,picashia,scarlet wistaria-tree \N \N \N \N 84776 C.ingeanum Corycium Corycium ingeanum \N \N \N \N \N 84777 B.pentacocca Bosistoa Bosistoa pentacocca \N \N \N \N \N 84778 B.dodecandra Bernardia Bernardia dodecandra \N \N \N \N \N 84779 R.masafuerae Robinsonia Robinsonia masafuerae \N \N \N \N \N 84780 S.jaliscanus Styrax Styrax jaliscanus \N \N \N \N \N 84781 M.foliosum Melanospermum Melanospermum foliosum \N \N \N \N \N 84782 B.schreberi Brasenia Brasenia schreberi \N \N \N \N \N 84783 S.connatus Smallanthus Smallanthus connatus \N \N \N \N \N 84784 T.mucronata Tetragastris Tetragastris mucronata \N \N \N \N \N 84785 S.cebennensis Saxifraga Saxifraga cebennensis \N \N \N \N \N 84786 D.glutinosum Desmodium Desmodium glutinosum \N \N \N \N \N 84787 B.caudata Bactris Bactris caudata \N \N \N \N \N 84788 B.americana Bifora Bifora americana \N \N \N \N \N 84789 L.trachycaula Lecanorchis Lecanorchis trachycaula \N \N \N \N \N 84790 D.brachyacantha Dunalia Dunalia brachyacantha \N \N \N \N \N 84791 E.polygamus Echinops Echinops polygamus \N \N \N \N \N 84792 B.longiscapa Barbacenia Barbacenia longiscapa \N \N \N \N \N 84793 S.spinosa Stachys Stachys spinosa \N \N \N \N \N 84794 C.superbum Canistrum Canistrum superbum \N \N \N \N \N 84795 L.purosericeus Lupinus Lupinus purosericeus \N \N \N \N \N 84796 W.regia Welfia Welfia regia \N \N \N \N \N 84797 F.leucographa Ferula Ferula leucographa \N \N \N \N \N 84798 H.chengyihana Hemsleya Hemsleya chengyihana \N \N \N \N \N 84799 F.buxifolia Ficus Ficus buxifolia \N \N \N \N \N 84800 O.africana Oftia Oftia africana \N \N \N \N \N 84801 H.populifolia Hildegardia Hildegardia populifolia \N \N \N \N \N 84802 M.4190 Monnina Monnina sp. 2 Gonzalez 4190 \N \N \N \N \N 84803 T.wuiana Tutcheria Tutcheria wuiana \N \N \N \N \N 84804 S.vayredana Saxifraga Saxifraga vayredana \N \N \N \N \N 84805 \N genus Niphaea \N \N \N \N \N 84806 S.hondelmannii Solanum Solanum arnezii x Solanum hondelmannii \N \N \N \N \N 84807 X.gymnocephalum Xanthisma Xanthisma gymnocephalum \N \N \N \N \N 84808 \N subspecies Centaurea boissieri subsp. prostrata \N \N \N \N \N 84809 N.gracillima Nolana Nolana gracillima \N \N \N \N \N 84810 \N varietas Achillea millefolium var. californica \N \N \N \N \N 84811 Y.schidigera Yucca Yucca schidigera Mohave yucca \N \N \N \N 84812 W.monantha Wurmbea Wurmbea monantha \N \N \N \N \N 84813 \N no rank Artemisia herba-alba (type 1) \N \N \N \N \N 84814 L.blepharolepis Leucopogon Leucopogon blepharolepis \N \N \N \N \N 84815 V.macropetala Vouacapoua Vouacapoua macropetala \N \N \N \N \N 84816 C.erecta Cephalanthera Cephalanthera erecta \N \N \N \N \N 84817 I.cardiophylla Illigera Illigera cardiophylla \N \N \N \N \N 84818 \N subspecies Pinguicula longifolia subsp. caussensis \N \N \N \N \N 84819 A.acuminata Alibertia Alibertia acuminata \N \N \N \N \N 84820 F.philippinensis Flemingia Flemingia philippinensis \N \N \N \N \N 84821 D.pendulus Dendrocalamus Dendrocalamus pendulus \N \N \N \N \N 84822 R.tetrasperma Rhaphidophora Rhaphidophora tetrasperma \N \N \N \N \N 84823 L.bidoupensis Licuala Licuala bidoupensis \N \N \N \N \N 84824 F.TJSW-2011 unclassified Fabaceae Fabaceae sp. TJSW-2011 \N \N \N \N \N 84825 R.matudae Ruellia Ruellia matudae \N \N \N \N \N 84826 A.exsul Amphoricarpos Amphoricarpos exsul \N \N \N \N \N 84827 A.puberulus Anisacanthus Anisacanthus puberulus \N \N \N \N \N 84828 L.pulchella Lotononis Lotononis pulchella \N \N \N \N \N 84829 H.griffithii Hammada Hammada griffithii \N \N \N \N \N 84830 I.falcifolia Iris Iris falcifolia \N \N \N \N \N 84831 \N subspecies Crassula sarcocaulis subsp. rupicola \N \N \N \N \N 84832 G.bojeriana Gnidia Gnidia bojeriana \N \N \N \N \N 84833 B.crassifolia Burmeistera Burmeistera crassifolia \N \N \N \N \N 84834 S.dolichotricha Symplocos Symplocos dolichotricha \N \N \N \N \N 84835 L.ludlowii Leptodermis Leptodermis ludlowii \N \N \N \N \N 84836 \N tribe Phyllantheae \N \N \N \N \N 84837 P.leucophylla Potentilla Potentilla leucophylla \N \N \N \N \N 84838 P.floribunda Pauridiantha Pauridiantha floribunda \N \N \N \N \N 84839 L.esculenta Leucaena Leucaena esculenta carne de venado,guaje colorado \N \N \N \N 84840 S.macrantha Stenogyne Stenogyne macrantha \N \N \N \N \N 84841 \N genus Craibiodendron \N \N \N \N \N 84842 A.durum Amomum Amomum durum \N \N \N \N \N 84843 C.tenella Cephalaria Cephalaria tenella \N \N \N \N \N 84844 B.orientalis Bunias Bunias orientalis Turkish rocket \N \N \N \N 84845 C.teretifolia Conostylis Conostylis teretifolia \N \N \N \N \N 84846 S.pinheiroana Swartzia Swartzia pinheiroana \N \N \N \N \N 84847 A.leucotrichus Ammodaucus Ammodaucus leucotrichus \N \N \N \N \N 84848 L.inyoensis Linanthus Linanthus inyoensis \N \N \N \N \N 84849 I.corei Iliamna Iliamna corei \N \N \N \N \N 84850 P.victoria Paphiopedilum Paphiopedilum victoria \N \N \N \N \N 84851 C.integerrima Cliffortia Cliffortia ruscifolia x Cliffortia integerrima \N \N \N \N \N 84852 J.obcordata Jacquemontia Jacquemontia obcordata \N \N \N \N \N 84853 \N genus Gonatostylis \N \N \N \N \N 84854 G.nissana Genista Genista nissana \N \N \N \N \N 84855 S.tetrandra Strombosiopsis Strombosiopsis tetrandra \N \N \N \N \N 84856 Z.B Zannichellia Zannichellia sp. haplotype B \N \N \N \N \N 84857 C.latifolium Chasmanthium Chasmanthium latifolium wild oats \N \N \N \N 84858 P.zippeliana Prunus Prunus zippeliana \N \N \N \N \N 84859 C.veluchensis Crocus Crocus veluchensis \N \N \N \N \N 84860 M.heliotropioides Monsonia Monsonia heliotropioides \N \N \N \N \N 84861 P.involucrata Peddiea Peddiea involucrata \N \N \N \N \N 84862 L.elegantula Liatris Liatris elegantula \N \N \N \N \N 84863 H.aurantiacum Hieracium Hieracium aurantiacum devil's-paintbrush,fox-and-cubs,orange hawkweed \N \N \N \N 84864 M.pallatangensis Monactis Monactis pallatangensis \N \N \N \N \N 84865 A.kearneyana Amsonia Amsonia kearneyana Kearney's bluestar \N \N \N \N 84866 S.pachyantha Siparuna Siparuna pachyantha \N \N \N \N \N 84867 L.discolor Ludisia Ludisia discolor \N \N \N \N \N 84868 H.multiflora Hoya Hoya multiflora \N \N \N \N \N 84869 C.minimus Cymopterus Cymopterus minimus \N \N \N \N \N 84870 K.esenbeckii Kobresia Kobresia esenbeckii \N \N \N \N \N 84871 C.barosmum Clinopodium Clinopodium barosmum \N \N \N \N \N 84872 E.adenocaulon Epilobium Epilobium adenocaulon \N \N \N \N \N 84873 \N tribe Hylocereeae \N \N \N \N \N 84874 P.O-203 Phreatia Phreatia sp. Chase O-203 \N \N \N \N \N 84875 R.septentrionalis Ranunculus Ranunculus septentrionalis \N \N \N \N \N 84876 \N subspecies Pachycereus schottii subsp. australis \N \N \N \N \N 84877 I.leucophaeus Ischnosiphon Ischnosiphon leucophaeus \N \N \N \N \N 84878 C.virginianum Centrosema Centrosema virginianum \N \N \N \N \N 84879 \N genus Polycardia \N \N \N \N \N 84880 \N subtribe Calaminae \N \N \N \N \N 84881 A.globosum Arceuthobium Arceuthobium globosum \N \N \N \N \N 84882 B.microcarpa Brachyscome Brachyscome microcarpa \N \N \N \N \N 84883 P.submysorensis Parnassia Parnassia submysorensis \N \N \N \N \N 84884 G.dodrantalis Greenovia Greenovia dodrantalis \N \N \N \N \N 84885 H.tschuiliensis Hyalolaena Hyalolaena tschuiliensis \N \N \N \N \N 84886 S.megalandrus Schultesianthus Schultesianthus megalandrus \N \N \N \N \N 84887 A.album Arrhenatherum Arrhenatherum album \N \N \N \N \N 84888 G.pomeranica Gagea Gagea pomeranica \N \N \N \N \N 84889 I.warburgii Ilex Ilex warburgii \N \N \N \N \N 84890 J.conglomeratus Juncus Juncus conglomeratus \N \N \N \N \N 84891 O.carnea Ochagavia Ochagavia carnea \N \N \N \N \N 84892 S.SP138 Sisyrinchium Sisyrinchium cf. burchellii SP138 \N \N \N \N \N 84893 A.BH Anoectochilus Anoectochilus sp. BH \N \N \N \N \N 84894 Z.coreanum Zanthoxylum Zanthoxylum coreanum \N \N \N \N \N 84895 \N varietas Carex communis var. communis \N \N \N \N \N 84896 M.nervosa Mussaenda Mussaenda nervosa \N \N \N \N \N 84897 E.SB052 Exacum Exacum cf. quinquenervium SB052 \N \N \N \N \N 84898 W.mirabilis Wunderlichia Wunderlichia mirabilis \N \N \N \N \N 84899 \N genus Monolena \N \N \N \N \N 84900 \N genus Naufraga \N \N \N \N \N 84901 M.rhagodioides Mirbelia Mirbelia rhagodioides \N \N \N \N \N 84902 S.ovata Shorea Shorea ovata \N \N \N \N \N 84903 M.3 Melolobium Melolobium cf. burchellii Moteetee & Van Wyk 3 \N \N \N \N \N 84904 \N genus Cola \N \N \N \N \N 84905 A.trullifolia Anemone Anemone trullifolia \N \N \N \N \N 84906 \N genus Yeatesia \N \N \N \N \N 84907 \N varietas Rhododendron stamineum var. gaozhaiense \N \N \N \N \N 84908 H.laurifolia Humboldtia Humboldtia laurifolia \N \N \N \N \N 84909 V.pinnata Viola Viola pinnata \N \N \N \N \N 84910 H.bihai Heliconia Heliconia bihai firebird,macaw-flower \N \N \N \N 84911 K.amaniensis Kleinia Kleinia amaniensis \N \N \N \N \N 84912 B.lucens Bakoa Bakoa lucens \N \N \N \N \N 84913 P.robustus Piliocalyx Piliocalyx robustus \N \N \N \N \N 84914 S.ayopayensis Senecio Senecio ayopayensis \N \N \N \N \N 84915 O.pendulifolia Oxalis Oxalis pendulifolia \N \N \N \N \N 84916 \N subfamily Asclepiadoideae \N \N \N \N \N 84917 T.laevis Thunbergia Thunbergia laevis \N \N \N \N \N 84918 C.variabilis Craspedia Craspedia variabilis \N \N \N \N \N 84919 I.frondosa Indigofera Indigofera frondosa \N \N \N \N \N 84920 T.vagans Torenia Torenia vagans \N \N \N \N \N 84921 \N genus Dipcadi \N \N \N \N \N 84922 O.morganii Oncidium Oncidium morganii \N \N \N \N \N 84923 P.fadenii Petalodiscus Petalodiscus fadenii \N \N \N \N \N 84924 C.modestum Crinum Crinum modestum \N \N \N \N \N 84925 C.ficifolia Cucurbita Cucurbita ficifolia Malabar gourd,chilacayote,figleaf gourd \N \N \N \N 84926 K.galanga Kaempferia Kaempferia galanga galangal \N \N \N \N 84927 R.potaninii Rhus Rhus potaninii \N \N \N \N \N 84928 W.rayneri Worsleya Worsleya rayneri \N \N \N \N \N 84929 \N varietas Spigelia gentianoides var. gentianoides \N \N \N \N \N 84930 F.maxima Ficus Ficus maxima \N \N \N \N \N 84931 A.longicarpa Astilbe Astilbe longicarpa \N \N \N \N \N 84932 \N subspecies Camellia japonica subsp. rusticana \N \N \N \N \N 84933 C.3833 Clusia Clusia sp. JA 3833 \N \N \N \N \N 84934 A.georgiana Arabis Arabis georgiana \N \N \N \N \N 84935 L.macounii Limnanthes Limnanthes macounii \N \N \N \N \N 84936 L.subsessilis Lupinus Lupinus subsessilis \N \N \N \N \N 84937 \N subspecies Poa anceps subsp. polyphylla \N \N \N \N \N 84938 M.artemisiana Mimosa Mimosa artemisiana \N \N \N \N \N 84939 O.ortgiesii Oxalis Oxalis ortgiesii \N \N \N \N \N 84940 \N genus Gymnostemon \N \N \N \N \N 84941 H.parvifolia Hymenaea Hymenaea parvifolia \N \N \N \N \N 84942 C.falcata Cryptospora Cryptospora falcata \N \N \N \N \N 84943 T.bullatum Trianaeopiper Trianaeopiper bullatum \N \N \N \N \N 84944 R.nivicola Rytidosperma Rytidosperma nivicola \N \N \N \N \N 84945 G.curvata Glycine Glycine curvata \N \N \N \N \N 84946 D.myricoides Ditta Ditta myricoides \N \N \N \N \N 84947 H.puberula Helietta Helietta puberula \N \N \N \N \N 84948 S.myrsinites Salix Salix myrsinites myrtle wllow \N \N \N \N 84949 P.orientale Polygonum Polygonum orientale \N \N \N \N \N 84950 E.linguiformis Euphorbia Euphorbia linguiformis \N \N \N \N \N 84951 G.cordifolia Globularia Globularia cordifolia \N \N \N \N \N 84952 A.fabrei Acis Acis fabrei \N \N \N \N \N 84953 C.crepidioides Crassocephalum Crassocephalum crepidioides \N \N \N \N \N 84954 \N genus Cottea \N \N \N \N \N 84955 T.hypericoides Triaspis Triaspis hypericoides \N \N \N \N \N 84956 C.bicolor Carex Carex bicolor \N \N \N \N \N 84957 S.poomae Sauropus Sauropus poomae \N \N \N \N \N 84958 L.axillare Limonium Limonium axillare \N \N \N \N \N 84959 T.humilis Tarasa Tarasa humilis \N \N \N \N \N 84960 V.discolor Viburnum Viburnum discolor \N \N \N \N \N 84961 A.impatiens Achillea Achillea impatiens \N \N \N \N \N 84962 I.laurifolium Isodendrion Isodendrion laurifolium \N \N \N \N \N 84963 A.ovalifolium Allium Allium ovalifolium \N \N \N \N \N 84964 A.macrostachya Acalypha Acalypha macrostachya \N \N \N \N \N 84965 B.filifolium Bulbophyllum Bulbophyllum filifolium \N \N \N \N \N 84966 \N subspecies Erica plukenetii subsp. plukenetii \N \N \N \N \N 84967 A.serra Allium Allium serra \N \N \N \N \N 84968 M.dilatata Mirbelia Mirbelia dilatata \N \N \N \N \N 84969 H.zeyheri Hessea Hessea zeyheri \N \N \N \N \N 84970 E.abbreviata Euthystachys Euthystachys abbreviata \N \N \N \N \N 84971 N.pedicellata Neosprucea Neosprucea pedicellata \N \N \N \N \N 84972 T.crassa Tetraria Tetraria crassa \N \N \N \N \N 84973 P.schizandra Peperomia Peperomia schizandra \N \N \N \N \N 84974 P.croizatii Pseudobombax Pseudobombax croizatii \N \N \N \N \N 84975 \N genus Corynaea \N \N \N \N \N 84976 P.ciliata Phlebocarya Phlebocarya ciliata \N \N \N \N \N 84977 P.melanoleucum Phagnalon Phagnalon melanoleucum \N \N \N \N \N 84978 G.mutabilis Gasteranthus Gasteranthus mutabilis \N \N \N \N \N 84979 G.eggersiana Guapira Guapira eggersiana \N \N \N \N \N 84980 C.linearis Collinsia Collinsia linearis \N \N \N \N \N 84981 \N genus Indianthus \N \N \N \N \N 84982 H.formosissimum Helichrysum Helichrysum formosissimum \N \N \N \N \N 84983 A.bomanii Anatherostipa Anatherostipa bomanii \N \N \N \N \N 84984 T.spectabilis Tahina Tahina spectabilis \N \N \N \N \N 84985 O.bicornutum Ornithogalum Ornithogalum bicornutum \N \N \N \N \N 84986 M.dimorpha Minthostachys Minthostachys dimorpha \N \N \N \N \N 84987 D.navarrorum Dracula Dracula navarrorum \N \N \N \N \N 84988 O.coulteriana Oserya Oserya coulteriana \N \N \N \N \N 84989 N.cunninghamii Neoachmandra Neoachmandra cunninghamii \N \N \N \N \N 84990 C.macranthum Cyrtochilum Cyrtochilum macranthum \N \N \N \N \N 84991 E.latifolium Eriogonum Eriogonum latifolium \N \N \N \N \N 84992 S.pumila Sideritis Sideritis pumila \N \N \N \N \N 84993 \N genus Onoseris \N \N \N \N \N 84994 P.wrightii Paspalum Paspalum wrightii \N \N \N \N \N 84995 M.nelsoniana Micranthes Micranthes nelsoniana \N \N \N \N \N 84996 A.virgata Aloysia Aloysia virgata \N \N \N \N \N 84997 P.angulata Pratia Pratia angulata \N \N \N \N \N 84998 C.buxifolius Cotoneaster Cotoneaster buxifolius \N \N \N \N \N 84999 E.petraeus Euryops Euryops petraeus \N \N \N \N \N 85000 A.alba Aegiphila Aegiphila alba \N \N \N \N \N 85001 \N genus Choretrum \N \N \N \N \N 85002 L.americana Lophiola Lophiola americana \N \N \N \N \N 85003 E.hirsuta Elasis Elasis hirsuta \N \N \N \N \N 85004 \N genus Greenwayodendron \N \N \N \N \N 85005 B.pectinatus Bromus Bromus pectinatus \N \N \N \N \N 85006 S.bahiensis Sophronitis Sophronitis bahiensis \N \N \N \N \N 85007 C.spatulata Codia Codia spatulata \N \N \N \N \N 85008 E.brevipes Epilobium Epilobium brevipes \N \N \N \N \N 85009 E.parviflorum Epistephium Epistephium parviflorum \N \N \N \N \N 85010 P.cleistogamum Pterygodium Pterygodium cleistogamum \N \N \N \N \N 85011 P.488 Pentagonia Pentagonia sp. Tuberquia et al. 488 \N \N \N \N \N 85012 V.farnesiana Vachellia Vachellia farnesiana dead-finish,prickly Moses,sheep's briar \N \N \N \N 85013 \N genus Nothocnide \N \N \N \N \N 85014 C.longipes Crotalaria Crotalaria longipes \N \N \N \N \N 85015 E.coronaria Eria Eria coronaria \N \N \N \N \N 85016 B.clarkei Blumea Blumea clarkei \N \N \N \N \N 85017 P.elegans Polyscias Polyscias elegans \N \N \N \N \N 85018 \N genus Crupina \N \N \N \N \N 85019 \N subspecies Pimelea cracens subsp. glabra \N \N \N \N \N 85020 P.2984 Palaua Palaua cf. tomentosa Schneider et al. 2984 \N \N \N \N \N 85021 A.vicarius Astragalus Astragalus vicarius \N \N \N \N \N 85022 E.langsdorffii Eugenia Eugenia langsdorffii \N \N \N \N \N 85023 H.wallichii Hymenandra Hymenandra wallichii \N \N \N \N \N 85024 \N subspecies Zilla spinosa subsp. macroptera \N \N \N \N \N 85025 A.bulbosus Alopecurus Alopecurus bulbosus \N \N \N \N \N 85026 G.riparia Guatteria Guatteria riparia \N \N \N \N \N 85027 \N genus Arachnis x Vanda \N \N \N \N \N 85028 A.chiisanense Aconitum Aconitum chiisanense \N \N \N \N \N 85029 I.microdactyla Ipomoea Ipomoea microdactyla \N \N \N \N \N 85030 C.brasiliense Calophyllum Calophyllum brasiliense \N \N \N \N \N 85031 L.regnellii Leandra Leandra regnellii \N \N \N \N \N 85032 B.salicina Breonadia Breonadia salicina \N \N \N \N \N 85033 E.ovata Eschweilera Eschweilera ovata \N \N \N \N \N 85034 C.venusta Carex Carex venusta \N \N \N \N \N 85035 P.sikkimensis Pleurospermopsis Pleurospermopsis sikkimensis \N \N \N \N \N 85036 M.verticillare Miraglossum Miraglossum verticillare \N \N \N \N \N 85037 \N genus Inocarpus \N \N \N \N \N 85038 H.bolanderi Helianthus Helianthus bolanderi \N \N \N \N \N 85039 C.hupeana Carpinus Carpinus hupeana \N \N \N \N \N 85040 \N genus Meehania \N \N \N \N \N 85041 T.ellipticum Tetrastigma Tetrastigma ellipticum \N \N \N \N \N 85042 C.angustifolia Castilleja Castilleja angustifolia desert Indian paintbrush \N \N \N \N 85043 K.JT2007-28 Kaempferia Kaempferia cf. laotica JT2007-28 \N \N \N \N \N 85044 C.capsularis Corchorus Corchorus capsularis jute \N \N \N \N 85045 \N genus Tetrapathea \N \N \N \N \N 85046 H.semiviva Haworthia Haworthia semiviva \N \N \N \N \N 85047 S.geobombycis Stachys Stachys geobombycis \N \N \N \N \N 85048 \N genus Corpuscularia \N \N \N \N \N 85049 S.arguta Saxifraga Saxifraga arguta \N \N \N \N \N 85050 \N genus Ligulariopsis \N \N \N \N \N 85051 B.nigritarum Begonia Begonia nigritarum \N \N \N \N \N 85052 C.maculata Corymbia Corymbia maculata \N \N \N \N \N 85053 P.thomensis Polystachya Polystachya thomensis \N \N \N \N \N 85054 P.bruneiensis Pseuduvaria Pseuduvaria bruneiensis \N \N \N \N \N 85055 \N subspecies Euclea crispa subsp. linearis \N \N \N \N \N 85056 R.peneia Rhodostemonodaphne Rhodostemonodaphne peneia \N \N \N \N \N 85057 W.glaucophyllum Williamodendron Williamodendron glaucophyllum \N \N \N \N \N 85058 S.kulundensis Suaeda Suaeda kulundensis \N \N \N \N \N 85059 \N genus Eremodaucus \N \N \N \N \N 85060 D.varia Diplotaxis Diplotaxis varia \N \N \N \N \N 85061 E.maritimus Echinocereus Echinocereus maritimus \N \N \N \N \N 85062 P.elegantula Pyrola Pyrola elegantula \N \N \N \N \N 85063 M.rigida Meliosma Meliosma rigida \N \N \N \N \N 85064 I.edgeworthii Impatiens Impatiens edgeworthii \N \N \N \N \N 85065 M.memorabilis Mentzelia Mentzelia memorabilis \N \N \N \N \N 85066 \N genus Hevea \N \N \N \N \N 85067 O.361 Onixotis Onixotis sp. Duncan 361 \N \N \N \N \N 85068 D.gracilicaule Dendrobium Dendrobium gracilicaule \N \N \N \N \N 85069 P.latifolia Posoqueria Posoqueria latifolia \N \N \N \N \N 85070 F.vaginata Flaveria Flaveria vaginata \N \N \N \N \N 85071 R.bogneri Rhodospatha Rhodospatha bogneri \N \N \N \N \N 85072 P.trilobulata Palmorchis Palmorchis trilobulata \N \N \N \N \N 85073 Q.cubana Quercus Quercus cubana \N \N \N \N \N 85074 A.kotschyana Anthemis Anthemis kotschyana \N \N \N \N \N 85075 R.laslobasensis Ruellia Ruellia laslobasensis \N \N \N \N \N 85076 P.grandiflorus Pyrrhopappus Pyrrhopappus grandiflorus \N \N \N \N \N 85077 S.elliptica Secamone Secamone elliptica \N \N \N \N \N 85078 O.linearifolia Orogenia Orogenia linearifolia \N \N \N \N \N 85079 T.makaschwilii Tragopogon Tragopogon makaschwilii \N \N \N \N \N 85080 \N varietas Acacia sieberiana var. sieberiana \N \N \N \N \N 85081 P.zea Phacelurus Phacelurus zea \N \N \N \N \N 85082 S.grandiflora Stephanotis Stephanotis grandiflora \N \N \N \N \N 85083 P.tuerckheimii Phaseolus Phaseolus tuerckheimii \N \N \N \N \N 85084 L.linifolia Ludwigia Ludwigia linifolia \N \N \N \N \N 85085 S.pachycarpus Sicyos Sicyos pachycarpus \N \N \N \N \N 85086 P.daguanum Piper Piper daguanum \N \N \N \N \N 85087 H.arnhemica Hovea Hovea arnhemica \N \N \N \N \N 85088 Z.thomsonii Zotovia Zotovia thomsonii \N \N \N \N \N 85089 E.euryopoides Euryops Euryops euryopoides \N \N \N \N \N 85090 K.bracteolata Kunzea Kunzea bracteolata \N \N \N \N \N 85091 P.niveoglobula Pleurothallis Pleurothallis niveoglobula \N \N \N \N \N 85092 C.stocksiana Consolida Consolida stocksiana \N \N \N \N \N 85093 N.Harriot Nymphaea Nymphaea sp. cv. Paul Harriot \N \N \N \N \N 85094 B.subsessilis Bejaria Bejaria subsessilis \N \N \N \N \N 85095 P.henryana Parthenocissus Parthenocissus henryana \N \N \N \N \N 85096 P.kinabaluensis Pleiocarpidia Pleiocarpidia kinabaluensis \N \N \N \N \N 85097 H.atropurpurea Hyobanche Hyobanche atropurpurea \N \N \N \N \N 85098 V.jamesonii Viburnum Viburnum jamesonii \N \N \N \N \N 85099 \N subspecies Eleocharis congesta subsp. congesta \N \N \N \N \N 85100 M.robusta Mimosa Mimosa robusta \N \N \N \N \N 85101 P.africanus Petersianthus Petersianthus africanus \N \N \N \N \N 85102 L.quinquenervius Lathyrus Lathyrus quinquenervius \N \N \N \N \N 85103 \N subfamily Asphodeloideae \N \N \N \N \N 85104 D.astephana Dischidia Dischidia astephana \N \N \N \N \N 85106 L.pilosa Lonicera Lonicera pilosa \N \N \N \N \N 85107 \N genus Abobra \N \N \N \N \N 85108 P.grandiflorus Penstemon Penstemon grandiflorus \N \N \N \N \N 85109 A.pangeran Alocasia Alocasia pangeran \N \N \N \N \N 85110 S.articulata Schoenoplectiella Schoenoplectiella articulata \N \N \N \N \N 85111 C.haplorrhiza Craspedia Craspedia haplorrhiza \N \N \N \N \N 85112 P.hastata Pavonia Pavonia hastata \N \N \N \N \N 85113 L.canescens Lithospermum Lithospermum canescens \N \N \N \N \N 85114 A.europaeum Asarum Asarum europaeum \N \N \N \N \N 85115 D.galphimioides Diacidia Diacidia galphimioides \N \N \N \N \N 85116 C.eriophylla Calliandra Calliandra eriophylla \N \N \N \N \N 85117 R.caucasicus Ranunculus Ranunculus caucasicus \N \N \N \N \N 85118 D.johnstonii Dendrosenecio Dendrosenecio johnstonii \N \N \N \N \N 85119 \N varietas Prenanthes trifoliolatus var. nanus \N \N \N \N \N 85120 S.brachypodum Sorghum Sorghum brachypodum \N \N \N \N \N 85121 L.japonica Lespedeza Lespedeza japonica \N \N \N \N \N 85122 G.chlorosperma Glycosmis Glycosmis chlorosperma \N \N \N \N \N 85123 P.variegata Psychotria Psychotria variegata \N \N \N \N \N 85124 H.angustifolia Helicteres Helicteres angustifolia \N \N \N \N \N 85125 L.subcordatum Loropetalum Loropetalum subcordatum \N \N \N \N \N 85126 G.hedypnois Garhadiolus Garhadiolus hedypnois \N \N \N \N \N 85127 A.litvinovii Allium Allium litvinovii \N \N \N \N \N 85128 C.nigricans Centropogon Centropogon nigricans \N \N \N \N \N 85129 \N genus Petasites \N \N \N \N \N 85130 C.baumii Crinum Crinum baumii \N \N \N \N \N 85131 F.kokanica Ferula Ferula kokanica \N \N \N \N \N 85132 E.gymnoclada Euphorbia Euphorbia gymnoclada \N \N \N \N \N 85133 N.candolleana Neojobertia Neojobertia candolleana \N \N \N \N \N 85134 C.12489 Cyanotis Cyanotis sp. Goldblatt 12489 \N \N \N \N \N 85135 G.seatonii Galium Galium seatonii \N \N \N \N \N 85136 M.waterlotii Mimosa Mimosa waterlotii \N \N \N \N \N 85137 C.flanaganii Corycium Corycium flanaganii \N \N \N \N \N 85138 P.asaroides Pleurothallis Pleurothallis asaroides \N \N \N \N \N 85139 L.dentata Leea Leea dentata \N \N \N \N \N 85140 E.rotundata Errazurizia Errazurizia rotundata roundleaf dunebroom \N \N \N \N 85141 D.sutherlandii Delphinium Delphinium sutherlandii \N \N \N \N \N 85142 H.wrightianum Hymenidium Hymenidium wrightianum \N \N \N \N \N 85143 B.lignescens Brownanthus Brownanthus lignescens \N \N \N \N \N 85144 M.misera Mimosa Mimosa misera \N \N \N \N \N 85145 \N genus Mammillaria \N \N \N \N \N 85146 O.benthamiana Olax Olax benthamiana \N \N \N \N \N 85147 \N genus Vancouveria \N \N \N \N \N 85148 \N genus Lenwebbia \N \N \N \N \N 85149 \N genus Schumannia \N \N \N \N \N 85150 \N varietas Bauhinia glauca var. hupehana \N \N \N \N \N 85151 O.microphylla Olearia Olearia microphylla \N \N \N \N \N 85152 S.scandens Sericostachys Sericostachys scandens \N \N \N \N \N 85153 A.polyrhizum Allium Allium polyrhizum \N \N \N \N \N 85154 B.aestuans Bejaria Bejaria aestuans angucho,meloso,payama \N \N \N \N 85155 E.setacea Erica Erica setacea \N \N \N \N \N 85156 \N genus Atraphaxis \N \N \N \N \N 85157 K.coccinea Kohautia Kohautia coccinea \N \N \N \N \N 85158 P.ruprechtianum Piptochaetium Piptochaetium ruprechtianum \N \N \N \N \N 85159 D.tokaiensis Drosera Drosera tokaiensis \N \N \N \N \N 85160 C.coryli Cuscuta Cuscuta coryli \N \N \N \N \N 85161 D.sinuata Dendrocnide Dendrocnide sinuata \N \N \N \N \N 85162 O.glanduliferus Oreanthes Oreanthes glanduliferus \N \N \N \N \N 85163 O.teikiteetinii Oparanthus Oparanthus teikiteetinii \N \N \N \N \N 85164 C.dianius Carduncellus Carduncellus dianius \N \N \N \N \N 85165 C.canadensis Cornus Cornus canadensis bunchberry,creeping dogwood,dwarf cornel \N \N \N \N 85166 P.exilis Ponera Ponera exilis \N \N \N \N \N 85167 C.grossheimii Campanula Campanula grossheimii \N \N \N \N \N 85168 A.cerasocrenus Astragalus Astragalus cerasocrenus \N \N \N \N \N 85169 G.waitukubuliensis Gonolobus Gonolobus waitukubuliensis \N \N \N \N \N 85170 S.moorei Sinclairia Sinclairia moorei \N \N \N \N \N 85171 C.fruticosus Carduncellus Carduncellus fruticosus \N \N \N \N \N 85172 Z.thwaitesii Zehneria Zehneria thwaitesii \N \N \N \N \N 85173 P.BL-2011d Psychotria Psychotria sp. BL-2011d \N \N \N \N \N 85174 G.marantina Globba Globba marantina \N \N \N \N \N 85175 C.urumiensis Cousinia Cousinia urumiensis \N \N \N \N \N 85176 P.pittieri Palicourea Palicourea pittieri \N \N \N \N \N 85177 C.apuanum Carum Carum apuanum \N \N \N \N \N 85178 T.734 Taraxacum Taraxacum sp. Sojak 734 \N \N \N \N \N 85179 S.rehderianum Syzygium Syzygium rehderianum \N \N \N \N \N 85180 \N genus Tovomitopsis \N \N \N \N \N 85181 M.bulbillifera Moraea Moraea bulbillifera \N \N \N \N \N 85182 C.linearifolia Crescentia Crescentia linearifolia \N \N \N \N \N 85183 C.longipetala Chloraea Chloraea longipetala \N \N \N \N \N 85184 D.eriopoda Draba Draba eriopoda \N \N \N \N \N 85185 G.antarctica Gaultheria Gaultheria antarctica \N \N \N \N \N 85186 \N genus Orthion \N \N \N \N \N 85187 O.muscosa Ourisia Ourisia muscosa \N \N \N \N \N 85188 A.riedelianum Asterostigma Asterostigma riedelianum \N \N \N \N \N 85189 L.crocothyrsos Leycesteria Leycesteria crocothyrsos \N \N \N \N \N 85190 \N genus Stuartina \N \N \N \N \N 85191 \N genus Empleurum \N \N \N \N \N 85192 D.polysperma Diplospora Diplospora polysperma \N \N \N \N \N 85193 \N genus Abromeitiella \N \N \N \N \N 85194 K.GW2439 Kibara Kibara cf. coriacea GW2439 \N \N \N \N \N 85195 A.crassicaulis Aeschynomene Aeschynomene crassicaulis \N \N \N \N \N 85196 T.macrocarpa Tinopsis Tinopsis macrocarpa \N \N \N \N \N 85197 I.hochstetteri Impatiens Impatiens hochstetteri \N \N \N \N \N 85198 S.gaudichaudii Scaevola Scaevola gaudichaudii \N \N \N \N \N 85199 C.jacobaea Campanula Campanula jacobaea \N \N \N \N \N 85200 P.fitzalanii Psychotria Psychotria fitzalanii \N \N \N \N \N 85201 \N varietas Glischrocaryon aureum var. angustifolium \N \N \N \N \N 85202 D.somaliense Diplolophium Diplolophium somaliense \N \N \N \N \N 85203 M.sample environmental samples Taxonomy:1008274 Microseris environmental sample \N \N \N \N \N 85204 L.hirsutissimus Lupinus Lupinus hirsutissimus \N \N \N \N \N 85205 S.nangqenensis Silene Silene nangqenensis \N \N \N \N \N 85206 M.cathcartii Magnolia Magnolia cathcartii \N \N \N \N \N 85207 P.tschanbaischanica Pyrola Pyrola tschanbaischanica \N \N \N \N \N 85208 A.rotundifolia Adenandra Adenandra rotundifolia \N \N \N \N \N 85209 D.ovatum Dendrochilum Dendrochilum ovatum \N \N \N \N \N 85210 I.ficoidea Ilex Ilex cf. ficoidea \N \N \N \N \N 85211 P.parvifolia Photinia Photinia parvifolia \N \N \N \N \N 85212 V.liukiuense Veronicastrum Veronicastrum liukiuense \N \N \N \N \N 85213 P.sericea Podalyria Podalyria sericea \N \N \N \N \N 85214 R.chrysocarpa Rollinia Rollinia chrysocarpa \N \N \N \N \N 85215 M.beccariana Macaranga Macaranga beccariana \N \N \N \N \N 85216 \N varietas Mentzelia pumila var. pumila \N \N \N \N \N 85217 O.tubiforme Odontonema Odontonema tubiforme \N \N \N \N \N 85218 D.micrantha Daphnandra Daphnandra micrantha canary sassafras,light yellowood \N \N \N \N 85219 P.juxianensis Pleioblastus Pleioblastus juxianensis \N \N \N \N \N 85220 A.arianum Atraphaxis Atraphaxis arianum \N \N \N \N \N 85221 L.funicaulis Lachnaea Lachnaea funicaulis \N \N \N \N \N 85222 I.heterophylla Indigofera Indigofera heterophylla \N \N \N \N \N 85223 \N subspecies Hippophae rhamnoides subsp. yunnanensis \N \N \N \N \N 85224 P.petrophila Pimelea Pimelea petrophila \N \N \N \N \N 85225 C.caricina Conostylis Conostylis caricina \N \N \N \N \N 85226 M.ellenbeckii Monadenium Monadenium ellenbeckii \N \N \N \N \N 85227 E.luxurians Erigeron Erigeron luxurians \N \N \N \N \N 85228 \N varietas Platymiscium pinnatum var. pinnatum \N \N \N \N \N 85229 S.monogyna Stackhousia Stackhousia monogyna \N \N \N \N \N 85230 A.amatus Astragalus Astragalus amatus \N \N \N \N \N 85231 C.53919 Cissus Cissus sp. Nee & Wen 53919 \N \N \N \N \N 85232 S.hirsuta Sphaerobambos Sphaerobambos hirsuta \N \N \N \N \N 85233 L.oroboides Lotus Lotus oroboides \N \N \N \N \N 85234 D.triangularis Dodonaea Dodonaea triangularis \N \N \N \N \N 85235 Z.compressum Zygophyllum Zygophyllum compressum \N \N \N \N \N 85236 H.attenuatum Hypericum Hypericum attenuatum \N \N \N \N \N 85237 C.peraeruginosus Croton Croton peraeruginosus \N \N \N \N \N 85238 T.copei Tripogon Tripogon copei \N \N \N \N \N 85239 I.rotunda Ilex Ilex rotunda kurogane-mochi \N \N \N \N 85240 D.spectabilis Dahlia Dahlia spectabilis \N \N \N \N \N 85241 V.altissima Vitex Vitex altissima \N \N \N \N \N 85242 M.abyssinica Melanocenchris Melanocenchris abyssinica \N \N \N \N \N 85243 P.P0 Physalis Physalis sp. P0 \N \N \N \N \N 85244 \N genus Teesdalia \N \N \N \N \N 85245 B.katangensis Blepharis Blepharis katangensis \N \N \N \N \N 85246 D.tagetoides Dysodiopsis Dysodiopsis tagetoides \N \N \N \N \N 85247 C.setifolia Crosslandia Crosslandia setifolia \N \N \N \N \N 85248 R.smirnowii Rhododendron Rhododendron smirnowii \N \N \N \N \N 85249 \N genus Semecarpus \N \N \N \N \N 85250 I.stolonifera Ixeris Ixeris stolonifera \N \N \N \N \N 85251 \N genus Lindera \N \N \N \N \N 85252 \N subspecies Campanula thyrsoides subsp. carniolica \N \N \N \N \N 85253 W.microscopica Wolffia Wolffia microscopica \N \N \N \N \N 85254 S.3798 Sericanthe Sericanthe sp. Sonke 3798 \N \N \N \N \N 85255 C.delavayi Cardamine Cardamine delavayi \N \N \N \N \N 85256 M.alba Mitrephora Mitrephora alba \N \N \N \N \N 85257 L.myrtifolia Liparia Liparia myrtifolia \N \N \N \N \N 85258 \N subspecies Serratula tinctoria subsp. tinctoria \N \N \N \N \N 85259 \N varietas Macaranga curtisii var. glabra \N \N \N \N \N 85260 P.macrorhiza Peperomia Peperomia macrorhiza \N \N \N \N \N 85261 S.33464 Solms-laubachia Solms-laubachia sp. Boufford et al. 33464 \N \N \N \N \N 85262 V.carnosum Vincetoxicum Vincetoxicum carnosum \N \N \N \N \N 85263 \N varietas Ilex dumosa var. dumosa \N \N \N \N \N 85264 \N genus Pupalia \N \N \N \N \N 85265 S.pubescens Swertia Swertia pubescens \N \N \N \N \N 85266 \N genus Rhigiophyllum \N \N \N \N \N 85267 S.dolichanthus Streptocarpus Streptocarpus dolichanthus \N \N \N \N \N 85268 \N genus Tritonia \N \N \N \N \N 85269 S.bifurcata Smelowskia Smelowskia bifurcata \N \N \N \N \N 85270 Z.mucronata Zostera Zostera mucronata \N \N \N \N \N 85271 \N genus Adansonia \N \N \N \N \N 85272 S.wrightii Sphaeralcea Sphaeralcea wrightii \N \N \N \N \N 85273 H.anisoptera Heptaptera Heptaptera anisoptera \N \N \N \N \N 85274 M.virginica Mertensia Mertensia virginica Virginia bluebells \N \N \N \N 85275 A.appalachiana Arundinaria Arundinaria gigantea x Arundinaria appalachiana \N \N \N \N \N 85276 G.lividum Geocaulon Geocaulon lividum \N \N \N \N \N 85277 P.albomarginatus Penstemon Penstemon albomarginatus \N \N \N \N \N 85278 H.virginiana Hamamelis Hamamelis virginiana American witch-hazel \N \N \N \N 85279 \N subspecies Darwiniothamnus lancifolius subsp. glandulosus \N \N \N \N \N 85280 C.munbyi Cistus Cistus munbyi \N \N \N \N \N 85281 P.metamorphophylla Paradrymonia Paradrymonia metamorphophylla \N \N \N \N \N 85282 P.ecordatum Philodendron Philodendron ecordatum \N \N \N \N \N 85283 \N genus Hapalorchis \N \N \N \N \N 85284 L.nuttallii Leptosiphon Leptosiphon nuttallii \N \N \N \N \N 85285 \N genus Theriophonum \N \N \N \N \N 85286 L.neoanglicus Leucopogon Leucopogon neoanglicus \N \N \N \N \N 85287 M.11166 Matelea Matelea sp. Taylor 11166 \N \N \N \N \N 85288 C.caudata Castilleja Castilleja caudata \N \N \N \N \N 85289 \N genus Monolopia \N \N \N \N \N 85290 \N genus Petrophile \N \N \N \N \N 85291 \N genus Rubovietnamia \N \N \N \N \N 85292 \N genus Schaefferia \N \N \N \N \N 85293 P.marginata Pleurothallis Pleurothallis marginata \N \N \N \N \N 85294 B.solanoides Besleria Besleria solanoides \N \N \N \N \N 85295 R.riparia Rhynchospora Rhynchospora riparia \N \N \N \N \N 85296 E.japonica Eragrostis Eragrostis japonica \N \N \N \N \N 85297 S.troodea Scorzonera Scorzonera troodea \N \N \N \N \N 85298 M.ramosa Melasphaerula Melasphaerula ramosa \N \N \N \N \N 85299 G.turkestanica Gagea Gagea turkestanica \N \N \N \N \N 85300 R.indicum Rhododendron Rhododendron nakaharae x Rhododendron indicum \N \N \N \N \N 85301 P.citrina Pseudolaelia Pseudolaelia citrina \N \N \N \N \N 85302 H.arizonicum Hordeum Hordeum arizonicum \N \N \N \N \N 85303 C.alba Craspedia Craspedia alba \N \N \N \N \N 85304 A.blitoides Aphanisma Aphanisma blitoides \N \N \N \N \N 85305 N.africanus Nesogenes Nesogenes africanus \N \N \N \N \N 85306 W.monnula Wikstroemia Wikstroemia monnula \N \N \N \N \N 85307 D.peckoltiana Dalechampia Dalechampia peckoltiana \N \N \N \N \N 85308 T.crassifolia Tabernaemontana Tabernaemontana crassifolia \N \N \N \N \N 85309 G.insignis Gunnera Gunnera insignis \N \N \N \N \N 85310 \N varietas Aristida californica var. glabrata \N \N \N \N \N 85311 B.carcinophylla Bauhinia Bauhinia carcinophylla \N \N \N \N \N 85312 P.hyperborea Platanthera Platanthera hyperborea \N \N \N \N \N 85313 E.eburnea Ehrharta Ehrharta eburnea \N \N \N \N \N 85314 M.arborescens Matayba Matayba arborescens \N \N \N \N \N 85315 P.ambiguum Phebalium Phebalium ambiguum \N \N \N \N \N 85316 M.nuda Mimosa Mimosa nuda \N \N \N \N \N 85317 A.corrugatus Astragalus Astragalus corrugatus \N \N \N \N \N 85318 C.pinifolius Callistemon Callistemon pinifolius \N \N \N \N \N 85319 O.RR-89-6 Ophiorrhiza Ophiorrhiza sp. RR-89-6 \N \N \N \N \N 85320 C.laevissima Carex Carex laevissima \N \N \N \N \N 85321 \N genus Skimmia \N \N \N \N \N 85322 S.ruthiae Sphaeromeria Sphaeromeria ruthiae \N \N \N \N \N 85323 G.bogotensis Gomphichis Gomphichis bogotensis \N \N \N \N \N 85324 R.longicuspis Rinorea Rinorea longicuspis \N \N \N \N \N 85325 M.12322 Mimosa Mimosa aff. flagellaris Queiroz 12322 \N \N \N \N \N 85326 C.macrochlamys Calycosiphonia Calycosiphonia macrochlamys \N \N \N \N \N 85327 C.parryi Ceanothus Ceanothus parryi \N \N \N \N \N 85328 P.caerulea Persea Persea caerulea \N \N \N \N \N 85329 R.taratana Rhus Rhus taratana \N \N \N \N \N 85330 C.linearifolia Clematis Clematis linearifolia \N \N \N \N \N 85331 C.campanulata Conanthera Conanthera campanulata \N \N \N \N \N 85332 V.parviflora Vasconcellea Vasconcellea parviflora \N \N \N \N \N 85333 C.s.n. Cuscuta Cuscuta sp. Stefanovic s.n. \N \N \N \N \N 85334 E.verecunda Erica Erica verecunda \N \N \N \N \N 85335 M.pectinata Monarda Monarda pectinata \N \N \N \N \N 85336 \N genus Descurainia \N \N \N \N \N 85337 N.ternstroemiiflora Naucleopsis Naucleopsis ternstroemiiflora \N \N \N \N \N 85338 P.coronaria Pleione Pleione coronaria \N \N \N \N \N 85339 C.compacta Cynorkis Cynorkis compacta \N \N \N \N \N 85340 \N genus Phenakospermum \N \N \N \N \N 85341 W.sericea Wiborgia Wiborgia sericea \N \N \N \N \N 85342 D.callitrophilum Dendrobium Dendrobium callitrophilum \N \N \N \N \N 85343 R.scandens Rhodotypos Rhodotypos scandens jetbead \N \N \N \N 85344 P.hoffmannseggiana Psychotria Psychotria hoffmannseggiana \N \N \N \N \N 85345 G.spiloptera Gomesa Gomesa spiloptera \N \N \N \N \N 85346 T.artocarpifolia Tacca Tacca artocarpifolia \N \N \N \N \N 85347 S.ciliaris Stelis Stelis ciliaris \N \N \N \N \N 85348 B.meridensis Begonia Begonia meridensis \N \N \N \N \N 85349 T.succedaneum Toxicodendron Toxicodendron succedaneum wax tree \N \N \N \N 85350 G.fragrantissima Galagania Galagania fragrantissima \N \N \N \N \N 85351 H.insularis Hibiscus Hibiscus insularis \N \N \N \N \N 85352 C.fimbriata Carex Carex fimbriata \N \N \N \N \N 85353 B.B8526 Bryonia Bryonia sp. Dinsmore B8526 \N \N \N \N \N 85354 A.glazioveana Ateleia Ateleia glazioveana \N \N \N \N \N 85355 T.obovata Talisia Talisia obovata \N \N \N \N \N 85356 R.montanum Rhodosciadium Rhodosciadium montanum \N \N \N \N \N 85357 T.viridescens Trillium Trillium viridescens Ozark green trillium \N \N \N \N 85358 S.2004-81 Salicornia Salicornia aff. emerici Yaprak 2004-81 \N \N \N \N \N 85359 V.pterochaeta Vittadinia Vittadinia pterochaeta \N \N \N \N \N 85360 C.alata Clusia Clusia alata \N \N \N \N \N 85361 M.dealbata Magnolia Magnolia dealbata cloudforest magnolia \N \N \N \N 85362 P.whytei Pelargonium Pelargonium whytei \N \N \N \N \N 85363 C.dumosum Cneoridium Cneoridium dumosum \N \N \N \N \N 85364 N.bowdenii Nerine Nerine bowdenii \N \N \N \N \N 85365 S.callosa Scorzonera Scorzonera callosa \N \N \N \N \N 85366 B.molossus Bulbophyllum Bulbophyllum molossus \N \N \N \N \N 85367 E.autumnalis Erica Erica autumnalis \N \N \N \N \N 85368 S.2957 Sphedamnocarpus Sphedamnocarpus sp. Phillipson 2957 \N \N \N \N \N 85369 E.berlandieri Echinocereus Echinocereus berlandieri \N \N \N \N \N 85370 C.pustulatum Cullen Cullen pustulatum \N \N \N \N \N 85371 L.ledebourii Lonicera Lonicera ledebourii \N \N \N \N \N 85372 V.muralis Valantia Valantia muralis \N \N \N \N \N 85373 L.cardimii Laelia Laelia cardimii \N \N \N \N \N 85374 P.pinnatus Phyllanthus Phyllanthus pinnatus \N \N \N \N \N 85375 R.1027 Razafimandimbisonia Razafimandimbisonia cf. humblotii Eriksson et al. 1027 \N \N \N \N \N 85376 S.vermicularis Syagrus Syagrus vermicularis \N \N \N \N \N 85377 I.declinata Indigofera Indigofera declinata \N \N \N \N \N 85378 C.3708 Carpacoce Carpacoce sp. Bremer 3708 \N \N \N \N \N 85379 L.grandiflora Lychnis Lychnis grandiflora \N \N \N \N \N 85380 \N tribe Asclepiadeae \N \N \N \N \N 85381 A.1685 Ada Ada sp. Whitten 1685 \N \N \N \N \N 85382 \N subspecies Proboscidea louisianica subsp. louisianica \N \N \N \N \N 85383 V.interrupta Valeriana Valeriana interrupta \N \N \N \N \N 85384 P.suffrutescens Primula Primula suffrutescens \N \N \N \N \N 85385 C.atroviridis Carex Carex atroviridis \N \N \N \N \N 85386 P.impressivena Photinia Photinia impressivena \N \N \N \N \N 85387 P.mexiae Psychotria Psychotria mexiae \N \N \N \N \N 85388 D.nuda Draba Draba nuda \N \N \N \N \N 85389 B.philippensis Boea Boea philippensis \N \N \N \N \N 85390 I.chlorocarpa Indomelothria Indomelothria chlorocarpa \N \N \N \N \N 85391 T.stramineum Trichocentrum Trichocentrum stramineum \N \N \N \N \N 85392 \N genus Corycium \N \N \N \N \N 85393 A.craspedocarpa Acacia Acacia craspedocarpa \N \N \N \N \N 85394 A.elongatum Aethionema Aethionema elongatum \N \N \N \N \N 85395 \N varietas Agrimonia pilosa var. pilosa \N \N \N \N \N 85396 B.platanifolia Bowlesia Bowlesia platanifolia \N \N \N \N \N 85397 \N subtribe Marshalliinae \N \N \N \N \N 85398 \N genus Cryptanthus \N \N \N \N \N 85399 C.eximia Corymbia Corymbia eximia yellow bloodwood \N \N \N \N 85400 C.CQ-2003 Cymbidium Cymbidium sp. CQ-2003 \N \N \N \N \N 85401 M.mansoanus Mesechites Mesechites mansoanus \N \N \N \N \N 85402 \N genus Meximalva \N \N \N \N \N 85403 \N subfamily Pyroloideae \N \N \N \N \N 85404 R.maclovianus Ranunculus Ranunculus maclovianus \N \N \N \N \N 85405 C.alopecuroides Cyclopia Cyclopia alopecuroides \N \N \N \N \N 85406 A.romeroi Aechmea Aechmea romeroi \N \N \N \N \N 85407 I.boviperda Indigofera Indigofera boviperda \N \N \N \N \N 85408 C.7963 Cyrtanthus Cyrtanthus sp. Spies 7963 \N \N \N \N \N 85409 T.TK37-2 unclassified Taraxacum Taraxacum (sect. Naevosa) sp. TK37-2 \N \N \N \N \N 85410 D.psilocarpum Desmodium Desmodium psilocarpum \N \N \N \N \N 85411 G.virgatum Gomphostigma Gomphostigma virgatum \N \N \N \N \N 85412 M.7717 Morinda Morinda sp. Wood 7717 \N \N \N \N \N 85413 \N genus Barkeria \N \N \N \N \N 85414 \N subspecies Pachypodium rosulatum subsp. gracilius \N \N \N \N \N 85415 D.XMW-2002-15 Dendrobium Dendrobium sp. XMW-2002-15 \N \N \N \N \N 85416 T.usillo Tricomaria Tricomaria usillo \N \N \N \N \N 85417 R.pacimonica Remijia Remijia pacimonica \N \N \N \N \N 85418 L.mexicana Lepechinia Lepechinia mexicana \N \N \N \N \N 85419 C.petricosa Carex Carex petricosa \N \N \N \N \N 85420 L.S131-13 Ligustrum Ligustrum cf. japonicum S131-13 \N \N \N \N \N 85421 \N family Achariaceae \N \N \N \N \N 85422 N.ezannoi Nymphoides Nymphoides ezannoi \N \N \N \N \N 85423 D.discolor Diospyros Diospyros discolor \N \N \N \N \N 85424 G.elata Genista Genista elata \N \N \N \N \N 85425 \N genus Vallisneria \N \N \N \N \N 85426 P.americana Phytolacca Phytolacca americana American pokeweed,Virginia poke,common pokeberry,common pokeweed,red stem pokeweed \N \N \N \N 85427 D.amazonicum Dodecastigma Dodecastigma amazonicum \N \N \N \N \N 85428 F.sandrasica Ferulago Ferulago sandrasica \N \N \N \N \N 85429 M.humilis Munronia Munronia humilis \N \N \N \N \N 85430 C.coronopifolia Cotula Cotula coronopifolia brass-buttons,eendjieskweek,gansgras \N \N \N \N 85431 L.philippensis Lindenbergia Lindenbergia philippensis \N \N \N \N \N 85432 \N genus Paullinia \N \N \N \N \N 85433 S.serrata Sarcotoechia Sarcotoechia serrata \N \N \N \N \N 85434 \N subspecies Psychotria costivenia subsp. altorum \N \N \N \N \N 85435 F.xanthoxyloides Fraxinus Fraxinus xanthoxyloides \N \N \N \N \N 85436 P.polygamum Polygonum Polygonum polygamum \N \N \N \N \N 85437 K.nigricans Kennedia Kennedia nigricans black coral-pea \N \N \N \N 85438 E.peperomioides Euphorbia Euphorbia peperomioides \N \N \N \N \N 85439 C.corymbosa Cambessedesia Cambessedesia corymbosa \N \N \N \N \N 85440 L.brevicaulis Lupinus Lupinus brevicaulis \N \N \N \N \N 85441 C.occidentalis Ceropegia Ceropegia occidentalis \N \N \N \N \N 85442 D.calamiformis Dockrillia Dockrillia calamiformis \N \N \N \N \N 85443 S.medeola Strychnos Strychnos medeola \N \N \N \N \N 85444 \N varietas Banksia nutans var. nutans \N \N \N \N \N 85445 \N subspecies Leymus alaicus subsp. karataviensis \N \N \N \N \N 85446 S.zangezura Symphyandra Symphyandra zangezura \N \N \N \N \N 85447 L.eriocephala Lachnaea Lachnaea eriocephala \N \N \N \N \N 85448 C.BWvE-2008 Croton Croton aff. incanus BWvE-2008 \N \N \N \N \N 85449 V.Blue' Viola Viola sp. 'Ash Vale Blue' \N \N \N \N \N 85450 S.antillana Sigmoidotropis Sigmoidotropis antillana \N \N \N \N \N 85451 G.rosea Globba Globba rosea \N \N \N \N \N 85452 S.parviflorus Streptopus Streptopus parviflorus \N \N \N \N \N 85453 \N genus Naucleopsis \N \N \N \N \N 85454 \N genus Monardella \N \N \N \N \N 85455 S.trifolia Staphylea Staphylea trifolia American bladdernut \N \N \N \N 85456 M.2648 Mimosa Mimosa sp. Hughes 2648 \N \N \N \N \N 85457 \N genus Guynesomia \N \N \N \N \N 85458 R.suffulta Rosa Rosa suffulta \N \N \N \N \N 85459 T.fragrans Tulbaghia Tulbaghia fragrans \N \N \N \N \N 85460 \N genus Acanthochlamys \N \N \N \N \N 85461 C.multifida Cristaria Cristaria multifida \N \N \N \N \N 85462 \N no rank environmental samples Taxonomy:1096675 \N \N \N \N \N 85463 A.xiangyeus Acorus Acorus xiangyeus \N \N \N \N \N 85464 E.Esp9 Elleanthus Elleanthus sp. Esp9 \N \N \N \N \N 85465 A.capensis Alepidea Alepidea capensis \N \N \N \N \N 85466 B.ornithophylla Begonia Begonia ornithophylla \N \N \N \N \N 85467 \N genus Castrilanthemum \N \N \N \N \N 85468 P.warscewiczii Psiguria Psiguria warscewiczii \N \N \N \N \N 85469 \N genus Phymaspermum \N \N \N \N \N 85470 S.makinoi Semiarundinaria Semiarundinaria makinoi \N \N \N \N \N 85471 V.truxillensis Viguiera Viguiera truxillensis \N \N \N \N \N 85472 \N subspecies Moehringia intricata subsp. castellana \N \N \N \N \N 85473 P.flocculosum Pittosporum Pittosporum flocculosum \N \N \N \N \N 85474 B.fendleri Boechera Boechera fendleri \N \N \N \N \N 85475 A.hylaea Aphelandra Aphelandra hylaea \N \N \N \N \N 85476 S.bullatus Stemonoporus Stemonoporus bullatus \N \N \N \N \N 85477 E.nanum Eritrichium Eritrichium nanum \N \N \N \N \N 85478 R.weyleri Ranunculus Ranunculus weyleri \N \N \N \N \N 85479 P.australis Pterostylis Pterostylis australis \N \N \N \N \N 85480 A.monticola Amphithalea Amphithalea monticola \N \N \N \N \N 85481 A.nerium Anechites Anechites nerium \N \N \N \N \N 85482 D.coriacea Dalechampia Dalechampia coriacea \N \N \N \N \N 85483 V.tigridis Vicia Vicia tigridis \N \N \N \N \N 85484 C.stauntonii Corispermum Corispermum stauntonii \N \N \N \N \N 85485 C.sumatranus Cyathocalyx Cyathocalyx sumatranus \N \N \N \N \N 85486 \N genus Extriplex \N \N \N \N \N 85487 P.villosa Photinia Photinia villosa ji ding zi,oriental photinia \N \N \N \N 85488 G.bergiana Grammatotheca Grammatotheca bergiana \N \N \N \N \N 85489 M.natalensis Merwilla Merwilla natalensis \N \N \N \N \N 85490 C.hengchunensis Camellia Camellia hengchunensis \N \N \N \N \N 85491 M.benthamii Micromeria Micromeria benthamii \N \N \N \N \N 85492 P.lanata Pimelea Pimelea lanata \N \N \N \N \N 85493 F.palmata Ficus Ficus palmata \N \N \N \N \N 85494 B.juncea Bouteloua Bouteloua juncea \N \N \N \N \N 85495 H.canadensis Houstonia Houstonia canadensis Canadian summer bluet \N \N \N \N 85496 V.216-N Vitis Vitis sp. 216-N \N \N \N \N \N 85497 \N genus Microlepis \N \N \N \N \N 85498 C.colombiana Cischweinfia Cischweinfia colombiana \N \N \N \N \N 85499 S.brevifolia Stipagrostis Stipagrostis brevifolia \N \N \N \N \N 85500 S.campechiense Solanum Solanum campechiense \N \N \N \N \N 85501 \N genus Paraligusticum \N \N \N \N \N 85502 T.macropoda Tricyrtis Tricyrtis macropoda \N \N \N \N \N 85503 G.diemensis Gentianella Gentianella diemensis \N \N \N \N \N 85504 I.grandis Impatiens Impatiens grandis \N \N \N \N \N 85505 C.hirsuta Calliandra Calliandra hirsuta \N \N \N \N \N 85506 G.rosmarinifolia Grubbia Grubbia rosmarinifolia \N \N \N \N \N 85507 S.nervosum Syzygium Syzygium nervosum \N \N \N \N \N 85508 A.spicatum Acer Acer spicatum moose maple,mountain maple \N \N \N \N 85509 C.oreocharis Carex Carex oreocharis \N \N \N \N \N 85510 \N genus Gongylosciadium \N \N \N \N \N 85511 S.longebracteolata Smilax Smilax longebracteolata \N \N \N \N \N 85512 P.flexuosa Prosopis Prosopis flexuosa algarrobo amarillo,algarrobo dulce,pauta negro \N \N \N \N 85513 E.darwinii Eustephia Eustephia darwinii \N \N \N \N \N 85514 T.flexuosa Tetraria Tetraria flexuosa \N \N \N \N \N 85515 \N subspecies Helleborus viridis subsp. occidentalis \N \N \N \N \N 85516 D.glaucescens Dichostemma Dichostemma glaucescens \N \N \N \N \N 85517 P.vulgaris Pulsatilla Pulsatilla vulgaris \N \N \N \N \N 85518 D.favargeri Delphinium Delphinium favargeri \N \N \N \N \N 85519 R.circinatus Ranunculus Ranunculus circinatus \N \N \N \N \N 85520 \N subfamily Apioideae \N \N \N \N \N 85521 P.cuspidata Psychotria Psychotria cuspidata \N \N \N \N \N 85522 B.12865 Babiana Babiana aff. brachystachys Goldblatt & Porter 12865 \N \N \N \N \N 85523 L.pectinata Lachemilla Lachemilla pectinata \N \N \N \N \N 85524 T.gratissima Tintinnabularia Tintinnabularia gratissima \N \N \N \N \N 85525 D.quadrangulare Dendrobium Dendrobium quadrangulare \N \N \N \N \N 85526 E.rusticula Erica Erica rusticula \N \N \N \N \N 85527 \N genus Succisella \N \N \N \N \N 85528 \N tribe Brongniartieae \N \N \N \N \N 85529 \N subspecies Lens culinaris subsp. tomentosus \N \N \N \N \N 85530 \N varietas Haworthia cooperi var. cooperi \N \N \N \N \N 85531 C.samoensis Cyrtandra Cyrtandra samoensis \N \N \N \N \N 85532 S.laciniata Synthyris Synthyris laciniata \N \N \N \N \N 85533 M.australiana Malva Malva australiana \N \N \N \N \N 85534 \N subspecies Phlox carolina subsp. angusta \N \N \N \N \N 85535 E.longistyla Eigia Eigia longistyla \N \N \N \N \N 85536 K.caspicum Kalidium Kalidium caspicum \N \N \N \N \N 85537 M.sanguinea Mirabilis Mirabilis sanguinea \N \N \N \N \N 85538 D.steyermarkii Draba Draba steyermarkii \N \N \N \N \N 85539 T.occidentalis Tradescantia Tradescantia occidentalis \N \N \N \N \N 85540 M.longifolia Mentha Mentha longifolia horsemint \N \N \N \N 85541 L.pectinata Lidbeckia Lidbeckia pectinata \N \N \N \N \N 85542 M.angulata Moraea Moraea angulata \N \N \N \N \N 85543 A.newberryi Astragalus Astragalus newberryi \N \N \N \N \N 85544 B.simplex Bouteloua Bouteloua simplex \N \N \N \N \N 85545 T.imperati Telephium Telephium imperati \N \N \N \N \N 85546 \N genus Lilaea \N \N \N \N \N 85547 H.pseudomirabile Hieracium Hieracium pseudomirabile \N \N \N \N \N 85548 M.parvifolia Morella Morella parvifolia \N \N \N \N \N 85549 T.acuminata Tetrarrhena Tetrarrhena acuminata \N \N \N \N \N 85550 A.hyemale Aplectrum Aplectrum hyemale \N \N \N \N \N 85551 \N subfamily Hecastocleidoideae \N \N \N \N \N 85552 H.125 Hypselodelphys Hypselodelphys sp. Ley 125 \N \N \N \N \N 85553 H.masatierrana Haloragis Haloragis masatierrana \N \N \N \N \N 85554 \N subspecies Malacothrix foliosa subsp. philbrickii \N \N \N \N \N 85555 S.punicea Sesbania Sesbania punicea \N \N \N \N \N 85556 E.rhaeticum Erysimum Erysimum rhaeticum \N \N \N \N \N 85557 S.leucoma Saussurea Saussurea leucoma \N \N \N \N \N 85558 V.praetermissa Vilobia Vilobia praetermissa \N \N \N \N \N 85559 E.uruguayensis Echinodorus Echinodorus uruguayensis \N \N \N \N \N 85560 \N genus Narthecium \N \N \N \N \N 85561 P.bulbosa Poa Poa bulbosa \N \N \N \N \N 85562 G.elegantissima Guatteria Guatteria elegantissima \N \N \N \N \N 85563 C.procera Carapa Carapa procera \N \N \N \N \N 85564 B.media Banksia Banksia media \N \N \N \N \N 85565 C.californica Camissonia Camissonia californica California suncup \N \N \N \N 85566 \N tribe Stipeae \N \N \N \N \N 85567 \N genus Dupontia \N \N \N \N \N 85568 \N varietas Corylus heterophylla var. thunbergii \N \N \N \N \N 85569 \N subspecies Digitalis obscura subsp. obscura \N \N \N \N \N 85570 P.pyracantha Putterlickia Putterlickia pyracantha \N \N \N \N \N 85571 S.secunda Salpinga Salpinga secunda \N \N \N \N \N 85572 G.dissectum Geranium Geranium dissectum \N \N \N \N \N 85573 A.echinata Argemone Argemone echinata \N \N \N \N \N 85574 M.parviflora Mezzettia Mezzettia parviflora \N \N \N \N \N 85575 M.yecorensis Mimulus Mimulus yecorensis \N \N \N \N \N 85576 A.rubricaulis Alpinia Alpinia rubricaulis \N \N \N \N \N 85577 \N subspecies Arnica lanceolata subsp. prima \N \N \N \N \N 85578 \N family Lepidobotryaceae \N \N \N \N \N 85579 N.depauperata Nassella Nassella depauperata \N \N \N \N \N 85580 T.austromontanum Trichostema Trichostema austromontanum San Jacinto bluecurls \N \N \N \N 85581 E.japonicus Elaeocarpus Elaeocarpus japonicus \N \N \N \N \N 85582 \N subspecies Bromus alopecuros subsp. alopecuros \N \N \N \N \N 85583 C.kalinii Chaetanthera Chaetanthera kalinii \N \N \N \N \N 85584 K.eriantha Kirilowia Kirilowia eriantha \N \N \N \N \N 85585 V.fruticulosa Veronica Veronica fruticulosa \N \N \N \N \N 85586 E.labios Endospermum Endospermum labios \N \N \N \N \N 85587 S.henryi Salvia Salvia henryi crimson sage \N \N \N \N 85588 M.oliveri Myrsine Myrsine oliveri \N \N \N \N \N 85589 C.greeniana Corymbia Corymbia greeniana \N \N \N \N \N 85590 M.revoluta Mimosa Mimosa revoluta \N \N \N \N \N 85591 E.ingens Euphorbia Euphorbia ingens \N \N \N \N \N 85592 P.simmondsiana Psychotria Psychotria simmondsiana \N \N \N \N \N 85593 H.silvatica Harveya Harveya silvatica \N \N \N \N \N 85594 A.JM01 Aristolochia Aristolochia sp. JM01 \N \N \N \N \N 85595 N.balansae Niemeyera Niemeyera balansae \N \N \N \N \N 85596 P.querocochana Peperomia Peperomia querocochana \N \N \N \N \N 85597 R.armena Reseda Reseda armena \N \N \N \N \N 85598 S.paniculatum Santalum Santalum paniculatum mountain sandalwood \N \N \N \N 85599 A.longifolia Apinagia Apinagia longifolia \N \N \N \N \N 85600 L.hirsuta Lonicera Lonicera hirsuta \N \N \N \N \N 85601 L.elata Lepanthes Lepanthes elata \N \N \N \N \N 85602 B.calcicola Beschorneria Beschorneria calcicola \N \N \N \N \N 85603 D.argenteus Dimerocostus Dimerocostus argenteus \N \N \N \N \N 85604 C.longicornis Coryphantha Coryphantha longicornis \N \N \N \N \N 85605 \N varietas Rosa spinosissima var. altaica \N \N \N \N \N 85606 \N genus Solenogyne \N \N \N \N \N 85607 \N subspecies Monnina hirta subsp. hirta \N \N \N \N \N 85608 C.N325 Cyrtochilum Cyrtochilum sp. Beckendorf N325 \N \N \N \N \N 85609 I.cornifolium Iochroma Iochroma cornifolium \N \N \N \N \N 85610 S.AC484 Sinningia Sinningia sp. Cervi et al. AC484 \N \N \N \N \N 85611 A.valentina Acis Acis valentina \N \N \N \N \N 85612 M.plumbaginea Marila Marila plumbaginea \N \N \N \N \N 85613 F.trinervia Faramea Faramea trinervia \N \N \N \N \N 85614 S.33 Sersalisia Sersalisia sp. Bartish and Ford 33 \N \N \N \N \N 85615 L.crassijuga Lichtensteinia Lichtensteinia crassijuga \N \N \N \N \N 85616 L.punctata Liatris Liatris punctata dotted blazing star \N \N \N \N 85617 \N genus Brodriguesia \N \N \N \N \N 85618 \N genus Bourreria \N \N \N \N \N 85619 \N genus Hippocrepis \N \N \N \N \N 85620 S.pruinosa Scrophularia Scrophularia pruinosa \N \N \N \N \N 85621 C.coccineum Camptosema Camptosema coccineum \N \N \N \N \N 85622 S.mexicana Sabal Sabal mexicana \N \N \N \N \N 85623 D.stellatum Didymiandrum Didymiandrum stellatum \N \N \N \N \N 85624 E.americanus Euonymus Euonymus americanus \N \N \N \N \N 85625 C.brachyscyphus Cyrtanthus Cyrtanthus brachyscyphus \N \N \N \N \N 85626 A.rehmanniana Acacia Acacia rehmanniana \N \N \N \N \N 85627 O.galioides Oldenlandia Oldenlandia galioides \N \N \N \N \N 85628 P.heterophylla Pseudostellaria Pseudostellaria heterophylla hai er shen \N \N \N \N 85629 \N subspecies Arceuthobium aureum subsp. aureum \N \N \N \N \N 85630 N.1049 Nepenthes Nepenthes sp. Jobson 1049 \N \N \N \N \N 85631 A.lamarckii Adenophora Adenophora lamarckii \N \N \N \N \N 85632 C.vinosa Cissus Cissus vinosa \N \N \N \N \N 85633 D.hainanensis Dehaasia Dehaasia hainanensis \N \N \N \N \N 85634 S.myrtifolium Stenostomum Stenostomum myrtifolium \N \N \N \N \N 85635 M.vitiense Metroxylon Metroxylon vitiense \N \N \N \N \N 85636 O.arenaria Orobanche Orobanche arenaria \N \N \N \N \N 85637 C.flagellifera Cardamine Cardamine flagellifera Blue Ridge bittercress \N \N \N \N 85638 C.compacta Canna Canna compacta \N \N \N \N \N 85639 C.villosa Calamagrostis Calamagrostis villosa \N \N \N \N \N 85640 \N genus Macropiper \N \N \N \N \N 85641 E.retusa Euphorbia Euphorbia retusa \N \N \N \N \N 85642 L.avicula Lanium Lanium avicula \N \N \N \N \N 85643 \N subspecies Arctostaphylos pringlei subsp. drupacea \N \N \N \N \N 85644 P.japonica Pilea Pilea japonica \N \N \N \N \N 85645 M.guianensis Mouriri Mouriri guianensis \N \N \N \N \N 85646 S.rimophilus Sauropus Sauropus rimophilus \N \N \N \N \N 85647 S.mackinnonianum Syzygium Syzygium mackinnonianum \N \N \N \N \N 85648 S.karwinskyana Stevia Stevia karwinskyana \N \N \N \N \N 85649 C.wrightii Cuphea Cuphea wrightii \N \N \N \N \N 85650 S.sanfordii Sagittaria Sagittaria sanfordii \N \N \N \N \N 85651 T.strumarum Tetrastigma Tetrastigma strumarum \N \N \N \N \N 85652 R.karooicus Rhadamanthopsis Rhadamanthopsis karooicus \N \N \N \N \N 85653 \N genus Hypogomphia \N \N \N \N \N 85654 R.singaporensis Rhopaloblaste Rhopaloblaste singaporensis \N \N \N \N \N 85655 S.cystosiphon Sideritis Sideritis cystosiphon \N \N \N \N \N 85656 J.linearis Janusia Janusia linearis \N \N \N \N \N 85657 \N genus Psilostrophe \N \N \N \N \N 85658 D.reptans Draba Draba reptans Carolina draba \N \N \N \N 85659 O.atlantica Ophrys Ophrys atlantica \N \N \N \N \N 85660 \N genus Calorezia \N \N \N \N \N 85661 A.quanzensis Afzelia Afzelia quanzensis \N \N \N \N \N 85662 G.chilensis Gunnera Gunnera chilensis \N \N \N \N \N 85663 L.levisanus Leucadendron Leucadendron levisanus \N \N \N \N \N 85664 \N genus Trema \N \N \N \N \N 85665 M.JG3565 Melaleuca Melaleuca sp. JG3565 \N \N \N \N \N 85666 B.inconstans Brongniartia Brongniartia inconstans \N \N \N \N \N 85667 H.plumulosum Hieracium Hieracium plumulosum \N \N \N \N \N 85668 T.wilbertii Typhonium Typhonium wilbertii \N \N \N \N \N 85669 S.burkillii Stemona Stemona burkillii \N \N \N \N \N 85670 A.abrotanoides Achillea Achillea abrotanoides \N \N \N \N \N 85671 E.stagnalis Erica Erica stagnalis \N \N \N \N \N 85672 \N subfamily Epidendroideae \N \N \N \N \N 85673 \N genus Cyathula \N \N \N \N \N 85674 W.religiosa Wrightia Wrightia religiosa \N \N \N \N \N 85675 D.oliveri Dalbergia Dalbergia oliveri \N \N \N \N \N 85676 P.simulatrix Potentilla Potentilla simulatrix \N \N \N \N \N 85677 P.hirticaule Panicum Panicum hirticaule Mexican panicgrass \N \N \N \N 85678 A.3669 Anacampseros Anacampseros sp. Hogan 3669 \N \N \N \N \N 85679 T.obliqua Triolena Triolena obliqua \N \N \N \N \N 85680 M.atropurpureum Maianthemum Maianthemum atropurpureum \N \N \N \N \N 85681 T.825 Tapinanthus Tapinanthus sp. OM 825 \N \N \N \N \N 85682 P.sieboldii Persicaria Persicaria sieboldii \N \N \N \N \N 85683 B.lasiopus Baccharoides Baccharoides lasiopus \N \N \N \N \N 85684 P.arizonicus Plagiobothrys Plagiobothrys arizonicus \N \N \N \N \N 85685 S.crassifolium Sarcophyton Sarcophyton crassifolium \N \N \N \N \N 85686 J.pellegriniana Julbernardia Julbernardia pellegriniana \N \N \N \N \N 85687 \N genus Changiostyrax \N \N \N \N \N 85688 P.grandiflora Portea Portea grandiflora \N \N \N \N \N 85689 A.suhirmaniana Alocasia Alocasia suhirmaniana \N \N \N \N \N 85690 O.fucosa Ophiorrhiza Ophiorrhiza fucosa \N \N \N \N \N 85691 S.expansum Sceletium Sceletium expansum \N \N \N \N \N 85692 P.peduncularis Philibertia Philibertia peduncularis \N \N \N \N \N 85693 E.beharensis Euphorbia Euphorbia beharensis \N \N \N \N \N 85694 D.XMW-2002-11 Dendrobium Dendrobium sp. XMW-2002-11 \N \N \N \N \N 85695 S.elegans Scyphanthus Scyphanthus elegans \N \N \N \N \N 85696 V.hirtum Vaccinium Vaccinium hirtum \N \N \N \N \N 85697 L.minimus Lupinus Lupinus minimus \N \N \N \N \N 85698 E.scatorhiza Euphorbia Euphorbia scatorhiza \N \N \N \N \N 85699 B.magnibracteata Brongniartia Brongniartia magnibracteata \N \N \N \N \N 85700 P.echinatum Pelargonium Pelargonium echinatum \N \N \N \N \N 85701 \N no rank Apioideae incertae sedis \N \N \N \N \N 85702 M.schomburgkii Marahuacaea Marahuacaea schomburgkii \N \N \N \N \N 85703 R.melanochaetes Roscheria Roscheria melanochaetes \N \N \N \N \N 85704 H.SK-2009e Hydrobryum Hydrobryum sp. SK-2009e \N \N \N \N \N 85705 D.integrifolium Delostoma Delostoma integrifolium \N \N \N \N \N 85706 P.chlorocephalus Paepalanthus Paepalanthus chlorocephalus \N \N \N \N \N 85707 C.sacleuxii Cucumis Cucumis sacleuxii \N \N \N \N \N 85708 P.micrantha Pennellia Pennellia micrantha \N \N \N \N \N 85709 D.rubroviolacea Dichaea Dichaea rubroviolacea \N \N \N \N \N 85710 L.lenta Lycianthes Lycianthes lenta \N \N \N \N \N 85711 M.leimonias Mimosa Mimosa leimonias \N \N \N \N \N 85712 H.cappadocicum Haplophyllum Haplophyllum cappadocicum \N \N \N \N \N 85713 H.chartacea Heliconia Heliconia chartacea \N \N \N \N \N 85714 C.breviscapa Conostylis Conostylis breviscapa \N \N \N \N \N 85715 A.jacquemontii Arum Arum jacquemontii \N \N \N \N \N 85716 E.microsciadia Euphorbia Euphorbia microsciadia \N \N \N \N \N 85717 \N genus Pimelodendron \N \N \N \N \N 85718 T.mastichina Thymus Thymus mastichina Spanish marjoram,mastic thyme,mejorana \N \N \N \N 85719 A.excelsa Aniba Aniba excelsa \N \N \N \N \N 85720 \N genus Galianthe \N \N \N \N \N 85721 \N genus Schizostephanus \N \N \N \N \N 85722 S.patula Silene Silene patula \N \N \N \N \N 85723 M.brunonis Mostuea Mostuea brunonis \N \N \N \N \N 85724 V.amurensis Vitis Vitis amurensis \N \N \N \N \N 85725 P.celebica Polyalthia Polyalthia celebica \N \N \N \N \N 85726 P.foliosa Poa Poa foliosa \N \N \N \N \N 85727 S.descoingsii Senecio Senecio descoingsii \N \N \N \N \N 85728 P.mezianum Polygonum Polygonum mezianum \N \N \N \N \N 85729 S.doriae Scorzonera Scorzonera doriae \N \N \N \N \N 85730 \N genus Trimeria \N \N \N \N \N 85731 \N genus Chionanthus \N \N \N \N \N 85732 S.shirleyanum Solanum Solanum shirleyanum \N \N \N \N \N 85733 \N varietas Chamaecrista nictitans var. disadena \N \N \N \N \N 85734 D.lotteae Deuterocohnia Deuterocohnia lotteae \N \N \N \N \N 85735 W.telfordii Wahlenbergia Wahlenbergia telfordii \N \N \N \N \N 85736 A.pringlei Arctostaphylos Arctostaphylos pringlei \N \N \N \N \N 85737 E.erythrocorys Eucalyptus Eucalyptus erythrocorys illyarie \N \N \N \N 85738 S.cedrosensis Salvia Salvia cedrosensis \N \N \N \N \N 85739 C.glauca Cardamine Cardamine glauca \N \N \N \N \N 85740 R.nicaraguensis Rogiera Rogiera nicaraguensis \N \N \N \N \N 85741 D.FS2217 Diospyros Diospyros sp. FS2217 \N \N \N \N \N 85742 P.231-99 Pericallis Pericallis sp. Francisco-Ortega 231-99 \N \N \N \N \N 85743 C.pentacantha Cousinia Cousinia pentacantha \N \N \N \N \N 85744 \N varietas Spiraea japonica var. fortunei \N \N \N \N \N 85745 P.peruviana Parkinsonia Parkinsonia peruviana \N \N \N \N \N 85746 \N varietas Shuteria involucrata var. villosa \N \N \N \N \N 85747 C.multistachys Chloranthus Chloranthus multistachys \N \N \N \N \N 85748 H.texana Hunzikeria Hunzikeria texana \N \N \N \N \N 85749 B.bovei Biarum Biarum bovei \N \N \N \N \N 85750 B.parryi Bouteloua Bouteloua parryi \N \N \N \N \N 85751 E.agowensis Euphorbia Euphorbia agowensis \N \N \N \N \N 85752 \N subspecies Cenchrus polystachios subsp. polystachios \N \N \N \N \N 85753 E.paniculata Exothea Exothea paniculata butter-bough,inkwood \N \N \N \N 85754 P.mesophytica Pinguicula Pinguicula mesophytica \N \N \N \N \N 85755 \N family Balsaminaceae touch-me-not family \N \N \N \N 85756 T.compressicaulis Tolumnia Tolumnia compressicaulis \N \N \N \N \N 85757 \N genus Vavilovia \N \N \N \N \N 85758 \N genus Eremanthus \N \N \N \N \N 85759 S.lessingiana Stipa Stipa lessingiana \N \N \N \N \N 85760 C.sulcata Citrus Citrus sulcata sanbokan \N \N \N \N 85761 C.ferruginea Cyrtandra Cyrtandra ferruginea \N \N \N \N \N 85762 P.leptoclada Passiflora Passiflora leptoclada \N \N \N \N \N 85763 R.acicularifolia Renvoizea Renvoizea acicularifolia \N \N \N \N \N 85764 E.deltoideum Eutrema Eutrema deltoideum \N \N \N \N \N 85765 H.cordifolium Hieracium Hieracium cordifolium \N \N \N \N \N 85766 S.leiocarpa Stylosanthes Stylosanthes leiocarpa \N \N \N \N \N 85767 O.lineare Oxylobium Oxylobium lineare \N \N \N \N \N 85768 C.nitida Casearia Casearia nitida \N \N \N \N \N 85769 A.rigida Alectra Alectra rigida \N \N \N \N \N 85770 \N genus Duvernoia \N \N \N \N \N 85771 \N genus Livistona \N \N \N \N \N 85772 S.saccata Stenia Stenia saccata \N \N \N \N \N 85773 C.acris Cayratia Cayratia acris \N \N \N \N \N 85774 \N subspecies Trifolium rusbyi subsp. rusbyi \N \N \N \N \N 85775 D.williamsonii Dendrobium Dendrobium williamsonii \N \N \N \N \N 85776 A.trinervia Austromuellera Austromuellera trinervia \N \N \N \N \N 85777 V.intercedens Veronica Veronica intercedens \N \N \N \N \N 85778 O.cubense Oxycaryum Oxycaryum cubense \N \N \N \N \N 85779 M.goldmanii Mimosa Mimosa goldmanii \N \N \N \N \N 85780 S.dzeurensis Saussurea Saussurea dzeurensis \N \N \N \N \N 85781 \N subspecies Centaurea maculosa subsp. subalbida \N \N \N \N \N 85782 D.dioscoridis Duvaliandra Duvaliandra dioscoridis \N \N \N \N \N 85783 G.pilosa Gunnera Gunnera pilosa \N \N \N \N \N 85784 I.elliotii Ixora Ixora elliotii \N \N \N \N \N 85785 S.thibetica Sinodielsia Sinodielsia thibetica \N \N \N \N \N 85786 L.mayumbensis Leptoterantha Leptoterantha mayumbensis \N \N \N \N \N 85787 T.bromoides Tetraria Tetraria bromoides \N \N \N \N \N 85788 R.schollii Ruschia Ruschia schollii \N \N \N \N \N 85789 A.verticillata Asclepias Asclepias verticillata \N \N \N \N \N 85790 N.pampeana Nassella Nassella pampeana \N \N \N \N \N 85791 P.ruprechtii Primula Primula ruprechtii \N \N \N \N \N 85792 L.mediale Lithospermum Lithospermum mediale \N \N \N \N \N 85793 E.akenocarpa Euphorbia Euphorbia akenocarpa \N \N \N \N \N 85794 L.griffithii Loxostigma Loxostigma griffithii \N \N \N \N \N 85795 A.latebrosa Acaena Acaena latebrosa \N \N \N \N \N 85796 P.subulifolium Paraholcoglossum Paraholcoglossum subulifolium \N \N \N \N \N 85797 \N genus Hemerocallis \N \N \N \N \N 85798 C.cucullaris Callipeltis Callipeltis cucullaris \N \N \N \N \N 85799 C.nigra Carex Carex nigra \N \N \N \N \N 85800 M.punctostriata Maxillaria Maxillaria punctostriata \N \N \N \N \N 85801 B.webbiana Beta Beta webbiana \N \N \N \N \N 85802 T.JS5108 unclassified Taraxacum Taraxacum (sect. Calanthodia/Ruderalia) sp. JS5108 \N \N \N \N \N 85803 A.guianensis Aiouea Aiouea guianensis \N \N \N \N \N 85804 H.eriophorum Hieracium Hieracium eriophorum \N \N \N \N \N 85805 A.tutumilla Alibertia Alibertia tutumilla \N \N \N \N \N 85806 C.brevipes Cremastosperma Cremastosperma brevipes \N \N \N \N \N 85807 P.stocksii Pachypterygium Pachypterygium stocksii \N \N \N \N \N 85808 \N forma Eleutherococcus senticosus f. inermis \N \N \N \N \N 85809 M.hypoleuca Miconia Miconia hypoleuca \N \N \N \N \N 85810 L.trichilioides Lovoa Lovoa trichilioides \N \N \N \N \N 85811 D.flagelliformis Disocactus Disocactus flagelliformis \N \N \N \N \N 85812 K.SH-2010 Knema Knema sp. SH-2010 \N \N \N \N \N 85813 S.eriocephala Sideritis Sideritis eriocephala \N \N \N \N \N 85814 \N genus Croninia \N \N \N \N \N 85815 R.rhodantha Rhodiola Rhodiola rhodantha \N \N \N \N \N 85816 L.oryzoides Leersia Leersia oryzoides rice cutgrass \N \N \N \N 85817 C.aristata Chusquea Chusquea aristata \N \N \N \N \N 85818 L.linifolium Lepidium Lepidium linifolium \N \N \N \N \N 85819 \N genus Viburnum \N \N \N \N \N 85820 P.pulvinaris Pescatoria Pescatoria pulvinaris \N \N \N \N \N 85821 D.hispanica Draba Draba hispanica \N \N \N \N \N 85822 C.25104 Chaetanthera Chaetanthera cf. sphaeroidalis Arroyo 25104 \N \N \N \N \N 85823 B.FS612 Bulbophyllum Bulbophyllum aff. sphaerobulbum FS612 \N \N \N \N \N 85824 F.longifolium Filicium Filicium longifolium \N \N \N \N \N 85825 P.moffatii Penstemon Penstemon moffatii \N \N \N \N \N 85826 G.SH-2010 Gamochaeta Gamochaeta sp. SH-2010 \N \N \N \N \N 85827 \N subspecies Melicytus novae-zelandiae subsp. centurionis \N \N \N \N \N 85828 C.horrens Cistus Cistus horrens \N \N \N \N \N 85829 D.caloneurus Dendropanax Dendropanax caloneurus \N \N \N \N \N 85830 N.thyrsiflora Neillia Neillia thyrsiflora \N \N \N \N \N 85831 C.cespitosa Carex Carex cespitosa \N \N \N \N \N 85832 A.nitens Alexgeorgea Alexgeorgea nitens \N \N \N \N \N 85833 G.decora Gentiana Gentiana decora \N \N \N \N \N 85834 P.tenuifolium Pycnanthemum Pycnanthemum tenuifolium \N \N \N \N \N 85835 \N varietas Prunus serrulata var. spontanea Japanese mountain cherry,hill cherry,yama-zakura \N \N \N \N 85836 C.neubaueri Cousinia Cousinia neubaueri \N \N \N \N \N 85837 L.microphylla Lonicera Lonicera microphylla \N \N \N \N \N 85838 \N genus Pericalymma \N \N \N \N \N 85839 D.brevispinum Dasyphyllum Dasyphyllum brevispinum \N \N \N \N \N 85840 C.mollis Centaurea Centaurea mollis \N \N \N \N \N 85841 C.confusum Colchicum Colchicum confusum \N \N \N \N \N 85842 C.atlantica Carex Carex atlantica \N \N \N \N \N 85843 T.usambarense Trifolium Trifolium usambarense \N \N \N \N \N 85844 C.awdeliana Caralluma Caralluma awdeliana \N \N \N \N \N 85845 B.wallichii Burmannia Burmannia wallichii \N \N \N \N \N 85846 N.pillansii Nelia Nelia pillansii \N \N \N \N \N 85847 H.heteroclita Huntleya Huntleya heteroclita \N \N \N \N \N 85848 \N genus Eucalyptus \N \N \N \N \N 85849 E.stokoei Erica Erica stokoei \N \N \N \N \N 85850 \N genus Thuspeinanta \N \N \N \N \N 85851 G.pungens Glochidion Glochidion pungens \N \N \N \N \N 85852 T.rotundifolia Tithonia Tithonia rotundifolia Mexican sunflower,clavel de muerto \N \N \N \N 85853 C.O-551 Chloraea Chloraea sp. Chase O-551 \N \N \N \N \N 85854 G.avellana Gevuina Gevuina avellana \N \N \N \N \N 85855 E.stellulatum Epimedium Epimedium stellulatum \N \N \N \N \N 85856 P.nigra Populus Populus trichocarpa x Populus nigra \N \N \N \N \N 85857 P.bicupulatus Potamogeton Potamogeton bicupulatus \N \N \N \N \N 85858 \N genus Caragana \N \N \N \N \N 85859 P.heterophyllum Pterospermum Pterospermum heterophyllum \N \N \N \N \N 85860 P.arboreum Picrodendron Picrodendron arboreum \N \N \N \N \N 85861 R.elegans Rhodomyrtus Rhodomyrtus elegans \N \N \N \N \N 85862 \N genus Stenocoelium \N \N \N \N \N 85863 C.chinensis Chionographis Chionographis chinensis \N \N \N \N \N 85864 B.oleracea Brassica Brassica oleracea \N \N \N \N \N 85865 N.altissimus Nabalus Nabalus altissimus \N \N \N \N \N 85866 T.sepicana Terminalia Terminalia sepicana \N \N \N \N \N 85867 B.heterophylla Beaufortia Beaufortia heterophylla \N \N \N \N \N 85868 A.teretifolium Allium Allium teretifolium \N \N \N \N \N 85869 C.elegans Coluria Coluria elegans \N \N \N \N \N 85870 P.crassifolia Passiflora Passiflora crassifolia \N \N \N \N \N 85871 M.umbellata Marcgravia Marcgravia umbellata \N \N \N \N \N 85872 T.steyermarkii Thalictrum Thalictrum steyermarkii \N \N \N \N \N 85873 D.subtilissimus Dichasianthus Dichasianthus subtilissimus \N \N \N \N \N 85874 S.austrocaledonicum Santalum Santalum austrocaledonicum \N \N \N \N \N 85875 S.setacea Spatalla Spatalla setacea \N \N \N \N \N 85876 P.dentatus Potamogeton Potamogeton dentatus \N \N \N \N \N 85877 D.simia Dracula Dracula simia \N \N \N \N \N 85878 T.95034 Tamarix Tamarix sp. Qiu 95034 \N \N \N \N \N 85879 C.huegelii Caladenia Caladenia huegelii \N \N \N \N \N 85880 A.telephiastrum Anacampseros Anacampseros telephiastrum \N \N \N \N \N 85881 D.wenzelii Dendrochilum Dendrochilum wenzelii \N \N \N \N \N 85882 H.bhutanicum Heracleum Heracleum bhutanicum \N \N \N \N \N 85883 R.cordata Rhynchostele Rhynchostele cordata \N \N \N \N \N 85884 D.aristolochiifolia Dalechampia Dalechampia aristolochiifolia \N \N \N \N \N 85885 H.rubra Houstonia Houstonia rubra red bluet \N \N \N \N 85886 T.doichangensis Trigonobalanus Trigonobalanus doichangensis \N \N \N \N \N 85887 S.parviflora Stifftia Stifftia parviflora \N \N \N \N \N 85888 H.cymbalaria Halerpestes Halerpestes cymbalaria \N \N \N \N \N 85889 S.francisii Syzygium Syzygium francisii \N \N \N \N \N 85890 \N genus Aliciella \N \N \N \N \N 85891 \N tribe Mimozygantheae \N \N \N \N \N 85892 S.fernandezianum Solanum Solanum fernandezianum \N \N \N \N \N 85893 \N genus Nageliella \N \N \N \N \N 85894 V.arenaria Viguiera Viguiera arenaria \N \N \N \N \N 85895 P.praecox Dracomontanum Pentameris praecox \N \N \N \N \N 85896 P.cossatotensis Polymnia Polymnia cossatotensis \N \N \N \N \N 85897 C.villosa Coussapoa Coussapoa villosa \N \N \N \N \N 85898 \N subspecies Oxytropis deflexa subsp. foliolosa \N \N \N \N \N 85899 L.angolense Limnophyton Limnophyton angolense \N \N \N \N \N 85900 \N genus Leptoglossis \N \N \N \N \N 85901 M.031' Munnozia Munnozia sp. 'Nordenstam & Lundin 031' \N \N \N \N \N 85902 P.guenoarum Paspalum Paspalum guenoarum \N \N \N \N \N 85903 A.spathulata Abrotanella Abrotanella spathulata \N \N \N \N \N 85904 R.columnae Romulea Romulea columnae \N \N \N \N \N 85905 \N subspecies Lysimachia remyi subsp. remyi \N \N \N \N \N 85906 A.pendula Anogeissus Anogeissus pendula \N \N \N \N \N 85907 \N genus Astiella \N \N \N \N \N 85908 S.JK-2009 Sebaea Sebaea sp. 4 JK-2009 \N \N \N \N \N 85909 S.peruvianum Lycopersicon Solanum huaylasense x Solanum peruvianum \N \N \N \N \N 85910 N.luteola Noronhia Noronhia luteola \N \N \N \N \N 85911 \N tribe Ixoreae \N \N \N \N \N 85912 H.messerschmidioides Heliotropium Heliotropium messerschmidioides \N \N \N \N \N 85913 \N subspecies Festuca rubra subsp. arctica \N \N \N \N \N 85914 \N varietas Santalum freycinetianum var. freycinetianum \N \N \N \N \N 85915 \N family Gomortegaceae \N \N \N \N \N 85916 \N varietas Salvia nipponica var. kisoensis \N \N \N \N \N 85917 K.pictus Kalopanax Kalopanax pictus \N \N \N \N \N 85918 C.pilulifera Carex Carex pilulifera \N \N \N \N \N 85919 P.fowleri Polygonum Polygonum fowleri \N \N \N \N \N 85920 T.triquetrum Tadehagi Tadehagi triquetrum \N \N \N \N \N 85921 \N genus Cortusa \N \N \N \N \N 85922 C.megistocarpa Carapa Carapa megistocarpa \N \N \N \N \N 85923 \N subspecies Malcolmia flexuosa subsp. naxensis \N \N \N \N \N 85924 Z.peruviana Zinnia Zinnia peruviana \N \N \N \N \N 85925 \N genus Blepharidium \N \N \N \N \N 85926 \N genus Eriogonum \N \N \N \N \N 85927 C.myosuroides Cassiope Cassiope myosuroides \N \N \N \N \N 85928 G.340KM Gavilea Gavilea sp. 340KM \N \N \N \N \N 85929 P.grayana Prunus Prunus grayana Japanese bird cherry,hui ye chou li,uwa-mizu-zakura \N \N \N \N 85930 P.marginata Peripterygia Peripterygia marginata \N \N \N \N \N 85931 A.tenuior Aloe Aloe tenuior \N \N \N \N \N 85932 M.gleniei Murraya Murraya gleniei \N \N \N \N \N 85933 D.penninervium Discopodium Discopodium penninervium \N \N \N \N \N 85934 L.forrestii Leptodermis Leptodermis forrestii \N \N \N \N \N 85935 R.alba Rhynchospora Rhynchospora alba \N \N \N \N \N 85936 B.caroli-henrici Bromus Bromus caroli-henrici \N \N \N \N \N 85937 R.silerifolius Ranunculus Ranunculus silerifolius \N \N \N \N \N 85938 B.bicoloratum Bulbophyllum Bulbophyllum bicoloratum \N \N \N \N \N 85939 A.haematoxylon Acacia Acacia haematoxylon \N \N \N \N \N 85940 S.500 unclassified Gesneriaceae Sphaerorrhizeae sp. Araujo et al. 500 \N \N \N \N \N 85941 \N varietas Platanthera dilatata var. leucostachys \N \N \N \N \N 85942 S.schumanniana Sterculia Sterculia schumanniana \N \N \N \N \N 85943 M.fendleri Malacothrix Malacothrix fendleri \N \N \N \N \N 85944 \N genus Thawatchaia \N \N \N \N \N 85945 H.asperuloides Hedyotis Hedyotis asperuloides \N \N \N \N \N 85946 V.misionensis Viguiera Viguiera misionensis \N \N \N \N \N 85947 P.yunnanensis Parakmeria Parakmeria yunnanensis \N \N \N \N \N 85948 G.murale Galium Galium murale \N \N \N \N \N 85949 O.multicaulis Orobanche Orobanche multicaulis \N \N \N \N \N 85950 M.caesariata Miconia Miconia caesariata \N \N \N \N \N 85951 S.stromanthoides Stromanthe Stromanthe stromanthoides \N \N \N \N \N 85952 T.etesiogaripense Trimelopter Trimelopter etesiogaripense \N \N \N \N \N 85953 A.atrata Achillea Achillea atrata \N \N \N \N \N 85954 P.machrisianum Panicum Panicum machrisianum \N \N \N \N \N 85955 D.ceratophorum Delphinium Delphinium ceratophorum \N \N \N \N \N 85956 V.sulcatum Viburnum Viburnum sulcatum \N \N \N \N \N 85957 M.mochisia Manilkara Manilkara mochisia \N \N \N \N \N 85958 C.H1_30 Castilleja Castilleja sp. H1_30 \N \N \N \N \N 85959 G.G1459 Glycine Glycine sp. G1459 \N \N \N \N \N 85960 R.gracilis Richeriella Richeriella gracilis \N \N \N \N \N 85961 B.odorata Bursera Bursera odorata \N \N \N \N \N 85962 \N genus Pseudopteris \N \N \N \N \N 85963 \N varietas Pedicularis bracteosa var. paysoniana \N \N \N \N \N 85964 O.pavlovae Onosma Onosma pavlovae \N \N \N \N \N 85965 D.MDG-53198 Dipcadi Dipcadi cf. heterocuspe MDG-53198 \N \N \N \N \N 85966 N.schinzii Nesaea Nesaea schinzii \N \N \N \N \N 85967 C.tetanica Carex Carex tetanica \N \N \N \N \N 85968 A.cypria Arabis Arabis cypria \N \N \N \N \N 85969 S.angustialatum Solanum Solanum angustialatum \N \N \N \N \N 85970 D.englerianus Dictyophragmus Dictyophragmus englerianus \N \N \N \N \N 85971 N.pauciflora Neoregelia Neoregelia pauciflora \N \N \N \N \N 85972 M.multiflora Momordica Momordica multiflora \N \N \N \N \N 85973 \N no rank environmental samples Taxonomy:531415 \N \N \N \N \N 85974 A.glabrata Aglaia Aglaia glabrata \N \N \N \N \N 85975 M.chinensis Mesona Mesona chinensis \N \N \N \N \N 85976 P.chinense Penthorum Penthorum chinense \N \N \N \N \N 85977 N.cauliflora Neea Neea cauliflora \N \N \N \N \N 85978 C.nevadense Chenopodium Chenopodium nevadense \N \N \N \N \N 85979 S.recurvigemmis Salix Salix recurvigemmis \N \N \N \N \N 85980 A.rechingeri Alcea Alcea rechingeri \N \N \N \N \N 85981 A.purpurascens Arenaria Arenaria purpurascens \N \N \N \N \N 85982 S.drobovii Salsola Salsola drobovii \N \N \N \N \N 85983 E.finkii Euphorbia Euphorbia finkii \N \N \N \N \N 85984 R.nudicaule Rhodosciadium Rhodosciadium nudicaule \N \N \N \N \N 85985 \N genus Phlomoides \N \N \N \N \N 85986 \N varietas Capsicum baccatum var. umbilicatum \N \N \N \N \N 85987 T.tricholepis Tillandsia Tillandsia tricholepis \N \N \N \N \N 85988 M.drummondii Myriophyllum Myriophyllum drummondii \N \N \N \N \N 85989 A.intermedia Atriplex Atriplex intermedia \N \N \N \N \N 85990 P.laxiflorus Penstemon Penstemon laxiflorus \N \N \N \N \N 85991 N.juniperina Nassauvia Nassauvia juniperina \N \N \N \N \N 85992 \N varietas Senecio pinnatifolius var. lanceolatus \N \N \N \N \N 85993 P.yunnanensis Pellacalyx Pellacalyx yunnanensis \N \N \N \N \N 85994 \N subspecies Allium taeniopetalum subsp. turakulovii \N \N \N \N \N 85995 N.A Neonauclea Neonauclea sp. A \N \N \N \N \N 85996 M.chathamica Myrsine Myrsine chathamica \N \N \N \N \N 85997 C.alexandrinus Carthamus Carthamus alexandrinus \N \N \N \N \N 85998 D.cuneifolia Draba Draba cuneifolia \N \N \N \N \N 85999 C.MG380 Clusia Clusia sp. MG380 \N \N \N \N \N 86000 C.MG358 Clusia Clusia cf. flaviflora MG358 \N \N \N \N \N 86001 \N varietas Ficus sarmentosa var. nipponica \N \N \N \N \N 86002 C.lindsayi Cylindropuntia Cylindropuntia lindsayi \N \N \N \N \N 86003 E.chinensis Enkianthus Enkianthus chinensis \N \N \N \N \N 86004 N.pisidica Nonea Nonea pisidica \N \N \N \N \N 86005 P.jamesonii Podandrogyne Podandrogyne jamesonii \N \N \N \N \N 86006 S.lepidota Shorea Shorea lepidota \N \N \N \N \N 86007 D.wrightii Dalea Dalea wrightii \N \N \N \N \N 86008 C.harrisii Columnea Columnea harrisii \N \N \N \N \N 86009 A.viscosa Aquilegia Aquilegia viscosa \N \N \N \N \N 86010 \N genus Decorsea \N \N \N \N \N 86011 \N genus Brillantaisia \N \N \N \N \N 86012 R.cochinchinensis Rottboellia Rottboellia cochinchinensis \N \N \N \N \N 86013 H.coronaria Hymenocallis Hymenocallis coronaria \N \N \N \N \N 86014 T.pygmaeus Tonestus Tonestus pygmaeus \N \N \N \N \N 86015 P.acaulis Prangos Prangos acaulis \N \N \N \N \N 86016 L.regale Lilium Lilium regale \N \N \N \N \N 86017 C.kimbozensis Coffea Coffea kimbozensis \N \N \N \N \N 86018 P.cordatum Phyteuma Phyteuma cordatum \N \N \N \N \N 86019 A.potatorum Agave Agave potatorum \N \N \N \N \N 86020 D.adamsii Dracophyllum Dracophyllum adamsii \N \N \N \N \N 86021 S.pillansiae Sarcocornia Sarcocornia pillansiae \N \N \N \N \N 86022 C.callophylla Capparis Capparis callophylla \N \N \N \N \N 86023 P.dolichocarpa Polygala Polygala dolichocarpa \N \N \N \N \N 86024 V.rockiana Viola Viola rockiana \N \N \N \N \N 86025 T.viridis Townsonia Townsonia viridis \N \N \N \N \N 86026 B.aptera Bursera Bursera aptera \N \N \N \N \N 86027 E.griffithianum Epigynum Epigynum griffithianum \N \N \N \N \N 86028 \N genus Peltaria \N \N \N \N \N 86029 A.elliptica Alibertia Alibertia elliptica \N \N \N \N \N 86030 C.linearis Collomia Collomia linearis narrow leaf mountaintrumpet \N \N \N \N 86031 E.articularis Erica Erica articularis \N \N \N \N \N 86032 P.TL319 Polypleurum Polypleurum sp. TL319 \N \N \N \N \N 86033 P.viridis Polypogon Polypogon viridis water bent grass \N \N \N \N 86034 V.lantana Viburnum Viburnum lantana mealytree,wayfaring-tree \N \N \N \N 86035 P.angustata Protea Protea angustata \N \N \N \N \N 86036 K.buxifolia Kalmia Kalmia buxifolia \N \N \N \N \N 86037 P.welwitschii Protea Protea welwitschii \N \N \N \N \N 86038 P.gentianoides Penstemon Penstemon gentianoides \N \N \N \N \N 86039 H.lingulata Hyacinthoides Hyacinthoides lingulata \N \N \N \N \N 86040 C.isthmensis Clusiella Clusiella isthmensis \N \N \N \N \N 86041 M.tristis Miconia Miconia tristis \N \N \N \N \N 86042 \N family Geissolomataceae \N \N \N \N \N 86043 L.200491 Lindera Lindera sp. Zhou 200491 \N \N \N \N \N 86044 M.spicata Minthostachys Minthostachys spicata \N \N \N \N \N 86045 M.arboreus Mimetes Mimetes arboreus \N \N \N \N \N 86046 S.foliaceum Symphyotrichum Symphyotrichum foliaceum alpine leafybract aster,leafy aster \N \N \N \N 86047 S.elegantissima Sasa Sasa elegantissima \N \N \N \N \N 86048 A.pygmaea Alstroemeria Alstroemeria pygmaea \N \N \N \N \N 86049 C.ecalyculata Cordia Cordia ecalyculata cha-de-bugre \N \N \N \N 86050 \N subspecies Iris histrio subsp. aintabensis \N \N \N \N \N 86051 P.pilibracteum Piper Piper pilibracteum \N \N \N \N \N 86052 \N genus Stenostelma \N \N \N \N \N 86053 D.arrosti Dianthus Dianthus arrosti \N \N \N \N \N 86054 M.thompsonii Mentzelia Mentzelia thompsonii \N \N \N \N \N 86055 E.maritimum Eryngium Eryngium maritimum \N \N \N \N \N 86056 \N genus Haynaldia \N \N \N \N \N 86057 L.azorica Lysimachia Lysimachia azorica \N \N \N \N \N 86058 R.THH-2011 Rauhocereus Rauhocereus sp. THH-2011 \N \N \N \N \N 86059 \N varietas Croton michauxii var. elliptica \N \N \N \N \N 86060 \N subspecies Physostegia virginiana subsp. virginiana \N \N \N \N \N 86061 S.hirsuta Seddera Seddera hirsuta \N \N \N \N \N 86062 N.howii Neolitsea Neolitsea howii \N \N \N \N \N 86063 \N no rank Apostasiodeae \N \N \N \N \N 86064 P.avilensis Psychotria Psychotria avilensis \N \N \N \N \N 86065 A.khoshjailensis Astragalus Astragalus khoshjailensis \N \N \N \N \N 86066 \N varietas Elymus ciliaris var. amurensis \N \N \N \N \N 86067 D.henryi Dendrobium Dendrobium henryi \N \N \N \N \N 86068 E.dinaricus Edraianthus Edraianthus dinaricus \N \N \N \N \N 86069 H.rigida Halgania Halgania rigida \N \N \N \N \N 86070 R.major Rufodorsia Rufodorsia major \N \N \N \N \N 86071 A.dasydesmis Aristida Aristida dasydesmis \N \N \N \N \N 86072 D.semiplanus Desmocladus Desmocladus semiplanus \N \N \N \N \N 86073 E.arbuscula Euphorbia Euphorbia arbuscula \N \N \N \N \N 86074 A.cobrensis Astragalus Astragalus cobrensis \N \N \N \N \N 86075 \N subspecies Rhipsalis baccifera subsp. horrida \N \N \N \N \N 86076 S.montaniformis Scorzoneroides Scorzoneroides montaniformis \N \N \N \N \N 86077 \N genus Ruizodendron \N \N \N \N \N 86078 P.nuttallii Polygala Polygala nuttallii \N \N \N \N \N 86079 \N subspecies Antirrhinum majus subsp. tortuosum \N \N \N \N \N 86080 P.wheeleri Phyllanthus Phyllanthus wheeleri \N \N \N \N \N 86081 T.pendula Tovaria Tovaria pendula \N \N \N \N \N 86082 \N genus Schulzia \N \N \N \N \N 86083 U.topazensis Uvaria Uvaria topazensis \N \N \N \N \N 86084 M.PRI Macrocarpaea Macrocarpaea sp. PRI \N \N \N \N \N 86085 D.cachrydifolia Diplotaenia Diplotaenia cachrydifolia \N \N \N \N \N 86086 \N genus Dahlstedtia \N \N \N \N \N 86087 S.diffusum Seseli Seseli diffusum \N \N \N \N \N 86088 P.aidanianum Protium Protium aidanianum \N \N \N \N \N 86089 S.glauca Stypandra Stypandra glauca \N \N \N \N \N 86090 S.yunnanensis Stephania Stephania yunnanensis \N \N \N \N \N 86091 P.laricifolius Penstemon Penstemon laricifolius \N \N \N \N \N 86092 K.tigridia Kohleria Kohleria tigridia \N \N \N \N \N 86093 C.multiloba Commersonia Commersonia multiloba \N \N \N \N \N 86094 A.lappacea Astrebla Astrebla lappacea curly Mitchell grass \N \N \N \N 86095 M.mazatlanensis Mammillaria Mammillaria mazatlanensis \N \N \N \N \N 86096 G.preussii Gilbertiodendron Gilbertiodendron preussii \N \N \N \N \N 86097 C.absus Chamaecrista Chamaecrista absus \N \N \N \N \N 86098 S.pubescens Schisandra Schisandra pubescens \N \N \N \N \N 86099 E.annuus Erigeron Erigeron annuus eastern daisy fleabane \N \N \N \N 86100 T.serotinum Taraxacum Taraxacum serotinum \N \N \N \N \N 86101 H.undulata Hannoa Hannoa undulata \N \N \N \N \N 86102 C.mirabilis Clinanthus Clinanthus mirabilis \N \N \N \N \N 86103 E.carlinae Eryngium Eryngium carlinae gravata,hierba del sapo \N \N \N \N 86104 C.polycephala Cordia Cordia polycephala \N \N \N \N \N 86105 O.caerulescens Onosma Onosma caerulescens \N \N \N \N \N 86106 G.robustum Gymnophyton Gymnophyton robustum \N \N \N \N \N 86107 V.tenuicaulis Vigna Vigna tenuicaulis \N \N \N \N \N 86108 A.monticola Aconitum Aconitum monticola \N \N \N \N \N 86109 M.gongshanense Maianthemum Maianthemum gongshanense \N \N \N \N \N 86110 R.klossii Rungia Rungia klossii \N \N \N \N \N 86111 A.boronioides Adesmia Adesmia boronioides \N \N \N \N \N 86112 H.volubilis Hippocratea Hippocratea volubilis \N \N \N \N \N 86113 \N genus Bienertia \N \N \N \N \N 86114 P.sibirica Poa Poa sibirica \N \N \N \N \N 86115 \N genus Dinoseris \N \N \N \N \N 86116 S.eriacantha Sclerolaena Sclerolaena eriacantha \N \N \N \N \N 86117 D.varius Dendrophylax Dendrophylax varius \N \N \N \N \N 86118 P.keiskeanum Paraixeris Paraixeris keiskeanum \N \N \N \N \N 86119 \N varietas Stewartia sinensis var. sinensis \N \N \N \N \N 86120 \N genus Zemisia \N \N \N \N \N 86121 P.squarrosa Picris Picris squarrosa \N \N \N \N \N 86122 N.burkei Nepenthes Nepenthes burkei \N \N \N \N \N 86123 P.luteum Pentalinon Pentalinon luteum \N \N \N \N \N 86124 A.guinanensis Alpinia Alpinia guinanensis \N \N \N \N \N 86125 C.tiomanensis Coelogyne Coelogyne tiomanensis \N \N \N \N \N 86126 S.flexicaulis Solidago Solidago flexicaulis \N \N \N \N \N 86127 C.pinnatifida Chirita Chirita pinnatifida \N \N \N \N \N 86128 B.pusilla Burmannia Burmannia pusilla \N \N \N \N \N 86129 S.ninsi Sium Sium ninsi \N \N \N \N \N 86130 H.trichosperma Hainania Hainania trichosperma \N \N \N \N \N 86131 E.rothschildiana Eurychone Eurychone rothschildiana \N \N \N \N \N 86132 T.israeliticum Trifolium Trifolium israeliticum \N \N \N \N \N 86133 C.diversifolia Comarostaphylis Comarostaphylis diversifolia summer-holly \N \N \N \N 86134 A.coriacea Acacia Acacia coriacea \N \N \N \N \N 86135 L.hirta Linaria Linaria hirta \N \N \N \N \N 86136 I.trifoliata Indigofera Indigofera trifoliata \N \N \N \N \N 86137 X.undulatum Xysmalobium Xysmalobium undulatum \N \N \N \N \N 86138 D.dendrobioides Diuris Diuris dendrobioides \N \N \N \N \N 86139 \N no rank Saccharum hybrid cultivar Co 86032 \N \N \N \N \N 86140 \N genus Acanthocardamum \N \N \N \N \N 86141 C.commersonii Cylindrocline Cylindrocline commersonii \N \N \N \N \N 86142 A.NR-2004 Alstroemeria Alstroemeria sp. NR-2004 \N \N \N \N \N 86143 D.macrocalyx Duguetia Duguetia macrocalyx \N \N \N \N \N 86144 \N subspecies Aspalathus quinquefolia subsp. quinquefolia \N \N \N \N \N 86145 N.sericea Neolitsea Neolitsea sericea shiro-damo \N \N \N \N 86146 F.novaezelandiae Festuca Festuca novaezelandiae \N \N \N \N \N 86147 R.wolfii Ribes Ribes wolfii \N \N \N \N \N 86148 P.kolopakingii Paphiopedilum Paphiopedilum kolopakingii \N \N \N \N \N 86149 S.wallichiana Saxifraga Saxifraga wallichiana \N \N \N \N \N 86150 C.calyptribracteata Cyrtandra Cyrtandra calyptribracteata \N \N \N \N \N 86151 A.konjac Amorphophallus Amorphophallus konjac devil's-tongue,elephant-yam,konnyaku,mo-yu \N \N \N \N 86152 P.P089 Physalis Physalis sp. P089 \N \N \N \N \N 86153 C.aucheri Chrysopogon Chrysopogon aucheri \N \N \N \N \N 86154 H.02/247 Hieracium Hieracium cf. fuscescens Schuhwerk 02/247 \N \N \N \N \N 86155 C.divergens Coprosma Coprosma divergens \N \N \N \N \N 86156 G.scortechinii Gigantochloa Gigantochloa scortechinii \N \N \N \N \N 86157 M.panamensis Magnolia Magnolia panamensis \N \N \N \N \N 86158 S.albidiflora Sebaea Sebaea albidiflora \N \N \N \N \N 86159 H.MAG-2009 Himatanthus Himatanthus sp. MAG-2009 \N \N \N \N \N 86160 G.heathii Gibbaeum Gibbaeum heathii \N \N \N \N \N 86161 E.floccifera Erica Erica floccifera \N \N \N \N \N 86162 \N genus Exarata \N \N \N \N \N 86163 A.spondylophylla Acacia Acacia spondylophylla \N \N \N \N \N 86164 R.oblonga Rhipsalis Rhipsalis oblonga \N \N \N \N \N 86165 P.platyclada Pavetta Pavetta platyclada \N \N \N \N \N 86166 S.caprea Salix Salix aurita x Salix caprea \N \N \N \N \N 86167 M.95020 Myriophyllum Myriophyllum sp. Qiu 95020 \N \N \N \N \N 86168 S.zollingeri Schizostachyum Schizostachyum zollingeri \N \N \N \N \N 86169 G.cerina Gentianella Gentianella cerina \N \N \N \N \N 86170 H.clayi Hibiscus Hibiscus clayi red Kauai rosemallow \N \N \N \N 86171 Z.rugosa Ziziphus Ziziphus rugosa \N \N \N \N \N 86172 A.cerulata Agave Agave cerulata \N \N \N \N \N 86173 A.hutchinsifolia Aliciella Aliciella hutchinsifolia \N \N \N \N \N 86174 C.gossypina Chrysopsis Chrysopsis gossypina \N \N \N \N \N 86175 C.hirtella Coccinia Coccinia hirtella \N \N \N \N \N 86176 C.stechmanniopsis Cousinia Cousinia stechmanniopsis \N \N \N \N \N 86177 E.compositifolium Eupatorium Eupatorium compositifolium yankeeweed \N \N \N \N 86178 C.30548 Capparis Capparis sp. 2 Iltis et al. 30548 \N \N \N \N \N 86179 P.oaxacanus Phaseolus Phaseolus oaxacanus \N \N \N \N \N 86180 G.245 Guatteria Guatteria sp. Chatrou et al. 245 \N \N \N \N \N 86181 P.'Maunga' Pimelea Pimelea sp. 'Maunga' \N \N \N \N \N 86182 \N genus Monanthocitrus \N \N \N \N \N 86183 S.brasiliense Sisyrinchium Sisyrinchium brasiliense \N \N \N \N \N 86184 \N subspecies Gymnocalycium riojense subsp. paucispinum \N \N \N \N \N 86185 T.urceolatus Telipogon Telipogon urceolatus \N \N \N \N \N 86186 S.calycosa Solenophora Solenophora calycosa \N \N \N \N \N 86187 S.cochichinensis Sesbania Sesbania cochichinensis \N \N \N \N \N 86188 A.cochinchinensis Asparagus Asparagus cochinchinensis \N \N \N \N \N 86189 G.nicaraguensis Guzmania Guzmania nicaraguensis \N \N \N \N \N 86190 M.canescens Melolobium Melolobium canescens \N \N \N \N \N 86191 N.gracilis Neobenthamia Neobenthamia gracilis \N \N \N \N \N 86192 E.maynense Exostema Exostema maynense \N \N \N \N \N 86193 M.peltata Merremia Merremia peltata \N \N \N \N \N 86194 P.rotundifolium Platostoma Platostoma rotundifolium \N \N \N \N \N 86195 M.cuspidata Mapania Mapania cuspidata \N \N \N \N \N 86196 R.mirabile Rhektophyllum Rhektophyllum mirabile \N \N \N \N \N 86197 F.rivularis Festuca Festuca rivularis \N \N \N \N \N 86198 \N subspecies Anthemis arvensis subsp. sphacelata \N \N \N \N \N 86199 S.preussii Syntriandrium Syntriandrium preussii \N \N \N \N \N 86200 I.vicaria Iris Iris vicaria \N \N \N \N \N 86201 A.pendulum Aconitum Aconitum pendulum \N \N \N \N \N 86202 \N subspecies Galium angustifolium subsp. jacinticum \N \N \N \N \N 86203 L.alfredii Lysimachia Lysimachia alfredii \N \N \N \N \N 86204 A.robinsonii Aponogeton Aponogeton robinsonii \N \N \N \N \N 86205 \N genus Conospermum \N \N \N \N \N 86206 C.parvifolium Capsicum Capsicum parvifolium \N \N \N \N \N 86207 I.fimbriosepala Ipomoea Ipomoea fimbriosepala \N \N \N \N \N 86208 T.wilfordii Tripterygium Tripterygium wilfordii \N \N \N \N \N 86209 P.aculeata Pereskia Pereskia aculeata \N \N \N \N \N 86210 A.montanus Acrothamnus Acrothamnus montanus \N \N \N \N \N 86211 \N genus Acrotrema \N \N \N \N \N 86212 P.dielsiana Pseuduvaria Pseuduvaria dielsiana \N \N \N \N \N 86213 P.tenuifolia Pleea Pleea tenuifolia rush featherling \N \N \N \N 86214 D.brackenridgei Draba Draba brackenridgei \N \N \N \N \N 86215 \N subspecies Aloe mitriformis subsp. distans \N \N \N \N \N 86216 \N genus Elachanthus \N \N \N \N \N 86217 M.866A Mimosa Mimosa sp. Simon 866A \N \N \N \N \N 86218 P.maculatifolius Phaseolus Phaseolus maculatifolius \N \N \N \N \N 86219 C.caudata Camellia Camellia caudata \N \N \N \N \N 86220 F.raibocarpa Fraxinus Fraxinus raibocarpa \N \N \N \N \N 86221 P.uxorium Porroglossum Porroglossum uxorium \N \N \N \N \N 86222 E.elbursensis Echinops Echinops elbursensis \N \N \N \N \N 86223 \N genus Monolepis \N \N \N \N \N 86224 \N genus Toona \N \N \N \N \N 86225 C.aruensis Calamus Calamus aruensis \N \N \N \N \N 86226 \N genus Coprosma \N \N \N \N \N 86227 G.subsessilis Guatteria Guatteria subsessilis \N \N \N \N \N 86228 I.australis Irvingbaileya Irvingbaileya australis \N \N \N \N \N 86229 C.ramosissima Cliffortia Cliffortia ramosissima \N \N \N \N \N 86230 \N subfamily Cactoideae \N \N \N \N \N 86231 L.borneensis Ludekia Ludekia borneensis \N \N \N \N \N 86232 \N genus Bolboschoenus \N \N \N \N \N 86233 P.ciliosa Paradrymonia Paradrymonia ciliosa \N \N \N \N \N 86234 \N subspecies Helianthus debilis subsp. tardiflorus \N \N \N \N \N 86235 C.smyrnaea Crepis Crepis smyrnaea \N \N \N \N \N 86236 A.candidissima Anthemis Anthemis candidissima \N \N \N \N \N 86237 C.silaifolium Cnidium Cnidium silaifolium \N \N \N \N \N 86238 H.pyrenaicum Heracleum Heracleum pyrenaicum \N \N \N \N \N 86239 \N genus Rhipidoglossum \N \N \N \N \N 86240 T.aquilegiifolium Thalictrum Thalictrum aquilegiifolium \N \N \N \N \N 86241 S.mexicana Selenia Selenia mexicana \N \N \N \N \N 86242 G.inflexa Gaertnera Gaertnera inflexa \N \N \N \N \N 86243 \N varietas Tetrastigma erubescens var. monophyllum \N \N \N \N \N 86244 M.1669 Maxillaria Maxillaria cf. rufescens Whitten 1669 \N \N \N \N \N 86245 \N varietas Polygonum campanulatum var. fulvidum \N \N \N \N \N 86246 P.eminiana Psychotria Psychotria eminiana \N \N \N \N \N 86247 M.ecornuta Mondia Mondia ecornuta \N \N \N \N \N 86248 C.saxifraga Campanula Campanula saxifraga \N \N \N \N \N 86249 A.jodanthum Allium Allium jodanthum \N \N \N \N \N 86250 G.biuncinatum Geranium Geranium biuncinatum \N \N \N \N \N 86251 T.abditum Tetramerium Tetramerium abditum \N \N \N \N \N 86252 V.9320 Vitex Vitex sp. Beusekom 9320 \N \N \N \N \N 86253 L.involucrata Loeselia Loeselia involucrata \N \N \N \N \N 86254 C.racemosa Cuscuta Cuscuta racemosa \N \N \N \N \N 86255 C.desiccatum Chenopodium Chenopodium desiccatum \N \N \N \N \N 86256 R.grandiflora Rudbeckia Rudbeckia grandiflora \N \N \N \N \N 86257 P.greggii Peniocereus Peniocereus greggii night-blooming cereus \N \N \N \N 86258 S.emeiensis Smilax Smilax emeiensis \N \N \N \N \N 86259 S.calycina Smelowskia Smelowskia calycina \N \N \N \N \N 86260 \N genus Kozlovia \N \N \N \N \N 86261 C.brainerdii Carex Carex brainerdii \N \N \N \N \N 86262 V.thunbergii Vitis Vitis thunbergii \N \N \N \N \N 86263 E.stricta Entolasia Entolasia stricta \N \N \N \N \N 86264 A.anthemoides Achyropappus Achyropappus anthemoides \N \N \N \N \N 86265 M.meyeri Meyerophytum Meyerophytum meyeri \N \N \N \N \N 86266 A.melinonii Aechmea Aechmea melinonii \N \N \N \N \N 86267 \N subspecies Aspalathus spinosa subsp. spinosa \N \N \N \N \N 86268 A.sibiricum Alyssum Alyssum sibiricum \N \N \N \N \N 86269 I.trichocarpus Isodon Isodon trichocarpus \N \N \N \N \N 86270 \N subspecies Stephanomeria exigua subsp. deanei \N \N \N \N \N 86271 M.zeteticorum Melaleuca Melaleuca zeteticorum \N \N \N \N \N 86272 A.occidentalis Achimenes Achimenes occidentalis \N \N \N \N \N 86273 Q.coccifera Quercus Quercus coccifera \N \N \N \N \N 86274 S.thoroldii Saussurea Saussurea thoroldii \N \N \N \N \N 86275 S.lamiifolia Strobilanthes Strobilanthes lamiifolia \N \N \N \N \N 86276 S.alternifolia Stevia Stevia alternifolia \N \N \N \N \N 86277 \N tribe Centotheceae \N \N \N \N \N 86278 V.farreri Viburnum Viburnum farreri \N \N \N \N \N 86279 P.luteoalbum Petalidium Petalidium luteoalbum \N \N \N \N \N 86280 I.diphylla Indigofera Indigofera diphylla \N \N \N \N \N 86281 \N varietas Prunus maritima var. maritima \N \N \N \N \N 86282 C.chanetii Chrysanthemum Chrysanthemum chanetii \N \N \N \N \N 86283 G.suberosus Gonolobus Gonolobus suberosus \N \N \N \N \N 86284 P.farinosa Paederia Paederia farinosa \N \N \N \N \N 86285 \N genus Arida \N \N \N \N \N 86286 C.grandiflora Caragana Caragana grandiflora \N \N \N \N \N 86287 O.junceum Olsynium Olsynium junceum \N \N \N \N \N 86288 S.anomalum Solanum Solanum anomalum \N \N \N \N \N 86289 C.ixioides Cyrtochilum Cyrtochilum ixioides \N \N \N \N \N 86290 S.platycarpa Shorea Shorea platycarpa \N \N \N \N \N 86291 A.rupestris Adenodolichos Adenodolichos rupestris \N \N \N \N \N 86292 S.pulchra Selago Selago pulchra \N \N \N \N \N 86293 \N genus Cantua \N \N \N \N \N 86294 J.biglumis Juncus Juncus biglumis \N \N \N \N \N 86295 \N genus Stachydeoma \N \N \N \N \N 86296 F.argentea Filago Filago argentea \N \N \N \N \N 86297 R.hispida Rostraria Rostraria hispida \N \N \N \N \N 86298 L.secundiflora Leandra Leandra secundiflora \N \N \N \N \N 86299 H.3346 Hydrocotyle Hydrocotyle sp. Van Valkenburg & Den Hartog 3346 \N \N \N \N \N 86300 \N subspecies Ophrys sphegodes subsp. sphegodes \N \N \N \N \N 86301 S.staintonii Stipa Stipa staintonii \N \N \N \N \N 86302 G.manicata Gunnera Gunnera manicata \N \N \N \N \N 86303 S.GR-2010 Semecarpus Semecarpus sp. GR-2010 \N \N \N \N \N 86304 P.triloba Ponthieva Ponthieva triloba \N \N \N \N \N 86305 H.pilosella Hieracium Hieracium pilosella mouse-ear hawkweed \N \N \N \N 86306 C.pinnatifida Campanula Campanula pinnatifida \N \N \N \N \N 86307 T.argentata Thymelaea Thymelaea argentata \N \N \N \N \N 86308 R.multiscapus Ranunculus Ranunculus multiscapus \N \N \N \N \N 86309 T.schinzii Triraphis Triraphis schinzii \N \N \N \N \N 86310 \N subspecies Cotyledon tomentosa subsp. ladysmithiensis \N \N \N \N \N 86311 \N genus Spatalla \N \N \N \N \N 86312 C.paucipetala Camellia Camellia paucipetala \N \N \N \N \N 86313 T.riparia Tetradenia Tetradenia riparia \N \N \N \N \N 86314 M.quadrangularis Montanoa Montanoa quadrangularis \N \N \N \N \N 86315 H.transsilvanicum Hieracium Hieracium transsilvanicum \N \N \N \N \N 86316 D.tonduzii Dieffenbachia Dieffenbachia tonduzii \N \N \N \N \N 86317 P.tricuspe Piper Piper tricuspe \N \N \N \N \N 86318 \N subspecies Colchicum cupanii subsp. glossophyllum \N \N \N \N \N 86319 H.macroceratitis Habenaria Habenaria macroceratitis \N \N \N \N \N 86320 R.peduncularis Ranunculus Ranunculus peduncularis \N \N \N \N \N 86321 N.roanensis Nabalus Nabalus roanensis \N \N \N \N \N 86322 T.angulata Tabernaemontana Tabernaemontana angulata \N \N \N \N \N 86323 P.hopeiensis Populus Populus hopeiensis \N \N \N \N \N 86324 \N varietas Trillium chloropetalum var. giganteum \N \N \N \N \N 86325 S.nelsoniana Sidalcea Sidalcea nelsoniana \N \N \N \N \N 86326 \N genus Acorus \N \N \N \N \N 86327 \N genus Moluccella \N \N \N \N \N 86328 \N varietas Astragalus geyeri var. geyeri \N \N \N \N \N 86329 C.s.n. Cominsia Cominsia sp. Kress s.n. \N \N \N \N \N 86330 F.ampla Festuca Festuca ampla \N \N \N \N \N 86331 I.blumei Indomelothria Indomelothria blumei \N \N \N \N \N 86332 C.cristata Coelogyne Coelogyne cristata \N \N \N \N \N 86333 E.ursinus Erigeron Erigeron ursinus \N \N \N \N \N 86334 C.obcordata Cliffortia Cliffortia obcordata \N \N \N \N \N 86335 S.arenosa Silene Silene arenosa \N \N \N \N \N 86336 \N varietas Haworthia maraisii var. notabilis \N \N \N \N \N 86337 A.filamentosa Azorella Azorella filamentosa \N \N \N \N \N 86338 T.arcuata Triainolepis Triainolepis arcuata \N \N \N \N \N 86339 S.montagnacii Stapelianthus Stapelianthus montagnacii \N \N \N \N \N 86340 M.rhomboidea Micranthes Micranthes rhomboidea \N \N \N \N \N 86341 T.93-205 Tetrorchidium Tetrorchidium sp. Bell et al. 93-205 \N \N \N \N \N 86342 A.macrostachya Abolboda Abolboda macrostachya \N \N \N \N \N 86343 S.sessiliflorum Solanum Solanum sessiliflorum \N \N \N \N \N 86344 A.collina Anagallis Anagallis collina \N \N \N \N \N 86345 \N genus Parachimarrhis \N \N \N \N \N 86346 V.fuhsii Veronica Veronica fuhsii \N \N \N \N \N 86347 P.polycomum Panicum Panicum polycomum \N \N \N \N \N 86348 B.crassirostris Begonia Begonia crassirostris \N \N \N \N \N 86349 D.obtusifolius Dipterocarpus Dipterocarpus obtusifolius \N \N \N \N \N 86350 \N genus Lagochilus \N \N \N \N \N 86351 C.sachalinensis Carex Carex sachalinensis \N \N \N \N \N 86352 C.stellata Couratari Couratari stellata \N \N \N \N \N 86353 C.propinqua Cliffortia Cliffortia propinqua \N \N \N \N \N 86354 \N genus Monopyle \N \N \N \N \N 86355 P.argaea Potentilla Potentilla argaea \N \N \N \N \N 86356 C.lipingensis Cleyera Cleyera lipingensis \N \N \N \N \N 86357 C.vallicola Carex Carex vallicola \N \N \N \N \N 86358 R.nodiflorus Ranunculus Ranunculus nodiflorus \N \N \N \N \N 86359 B.chinense Bupleurum Bupleurum chinense \N \N \N \N \N 86360 M.lanceolata Minuartia Minuartia lanceolata \N \N \N \N \N 86361 H.kinashianum Hypericum Hypericum kinashianum \N \N \N \N \N 86362 P.palmita Prionium Prionium palmita \N \N \N \N \N 86363 L.bellus Linanthus Linanthus bellus desertbeauty \N \N \N \N 86364 \N genus Antizoma \N \N \N \N \N 86365 X.1 Xantolis Xantolis cf. siamensis Smitairi 1 \N \N \N \N \N 86366 C.candicans Conostylis Conostylis candicans \N \N \N \N \N 86367 I.platythyrsa Ixora Ixora platythyrsa \N \N \N \N \N 86368 N.coccineus Nautilocalyx Nautilocalyx coccineus \N \N \N \N \N 86369 L.speciosa Luxemburgia Luxemburgia speciosa \N \N \N \N \N 86370 P.arborescens Psorothamnus Psorothamnus arborescens \N \N \N \N \N 86371 F.formosana Ficus Ficus formosana \N \N \N \N \N 86372 E.viminalis Eucalyptus Eucalyptus viminalis \N \N \N \N \N 86373 P.ligustrifolium Pittosporum Pittosporum ligustrifolium \N \N \N \N \N 86374 \N genus Dasypogon \N \N \N \N \N 86375 S.oppositiflora Salvia Salvia oppositiflora \N \N \N \N \N 86376 R.penninervia Rehdera Rehdera penninervia \N \N \N \N \N 86377 C.robustum Campylocentrum Campylocentrum robustum \N \N \N \N \N 86378 R.rarilepidotum Rhododendron Rhododendron rarilepidotum \N \N \N \N \N 86379 \N varietas Pagamea plicata var. glabrescens \N \N \N \N \N 86380 E.conferta Eleiodoxa Eleiodoxa conferta \N \N \N \N \N 86381 S.auritum Syngonium Syngonium auritum \N \N \N \N \N 86382 R.11613 Randia Randia sp. Haber and Zuchowski 11613 \N \N \N \N \N 86383 \N subspecies Androsace chamaejasme subsp. lehmanniana \N \N \N \N \N 86384 \N subspecies Erica viscaria subsp. viscaria \N \N \N \N \N 86385 V.barbellata Vanilla Vanilla barbellata \N \N \N \N \N 86386 F.pollen unclassified Fagus fossil Fagus pollen \N \N \N \N \N 86387 A.gangetica Asystasia Asystasia gangetica \N \N \N \N \N 86388 A.ptarmicifolia Achillea Achillea ptarmicifolia \N \N \N \N \N 86389 H.nasuta Habenaria Habenaria nasuta \N \N \N \N \N 86390 P.incurvus Psilurus Psilurus incurvus \N \N \N \N \N 86391 C.suarezensis Cleistanthus Cleistanthus suarezensis \N \N \N \N \N 86392 M.filiformis Micrargeria Micrargeria filiformis \N \N \N \N \N 86393 \N genus Hemisteptia \N \N \N \N \N 86394 M.gilpinae Microcoelia Microcoelia gilpinae \N \N \N \N \N 86395 P.altaicum Paracolpodium Paracolpodium altaicum \N \N \N \N \N 86396 P.maculata Prosartes Prosartes maculata \N \N \N \N \N 86397 C.amblycoleus Chordifex Chordifex amblycoleus \N \N \N \N \N 86398 A.deickianus Astragalus Astragalus deickianus \N \N \N \N \N 86399 G.balsamiferum Gossweilerodendron Gossweilerodendron balsamiferum agba,tola \N \N \N \N 86400 G.00-385 Globba Globba aff. adhaerens Williams 00-385 \N \N \N \N \N 86401 C.leavenworthii Coreopsis Coreopsis leavenworthii \N \N \N \N \N 86402 \N genus Diplarrhena \N \N \N \N \N 86403 K.spuria Kickxia Kickxia spuria \N \N \N \N \N 86404 S.caffra Stenosemis Stenosemis caffra \N \N \N \N \N 86405 H.ovatiflora Hodgkinsonia Hodgkinsonia ovatiflora \N \N \N \N \N 86406 \N varietas Gymnocalycium damsii var. evae \N \N \N \N \N 86407 N.tenuifolia Neurachne Neurachne tenuifolia \N \N \N \N \N 86408 V.bicolor Viola Viola bicolor \N \N \N \N \N 86409 E.riparius Elymus Elymus riparius \N \N \N \N \N 86410 D.brachycarpa Delonix Delonix brachycarpa \N \N \N \N \N 86411 C.grahamii Carphochaete Carphochaete grahamii \N \N \N \N \N 86412 F.sample environmental samples Taxonomy:404789 Fabaceae environmental sample \N \N \N \N \N 86413 C.dentex Calotis Calotis dentex \N \N \N \N \N 86414 E.emarginata Elythranthera Elythranthera emarginata \N \N \N \N \N 86415 C.schenckii Codon Codon schenckii \N \N \N \N \N 86416 C.fallaensis Copernicia Copernicia fallaensis \N \N \N \N \N 86417 C.monnieri Cnidium Cnidium monnieri \N \N \N \N \N 86418 \N subspecies Brodiaea elegans subsp. elegans \N \N \N \N \N 86419 \N genus Chevaliera \N \N \N \N \N 86420 C.CR-2009 Carpacoce Carpacoce sp. CR-2009 \N \N \N \N \N 86421 W.westii Weingartia Weingartia westii \N \N \N \N \N 86422 L.crassomarginata Lysipomia Lysipomia crassomarginata \N \N \N \N \N 86423 C.sessilis Cornus Cornus sessilis \N \N \N \N \N 86424 E.heteradena Euphorbia Euphorbia heteradena \N \N \N \N \N 86425 N.bicarinata Nervilia Nervilia bicarinata \N \N \N \N \N 86426 B.avromanum Bunium Bunium avromanum \N \N \N \N \N 86427 E.esula Euphorbia Euphorbia virgata x Euphorbia esula \N \N \N \N \N 86428 C.haematocephala Calliandra Calliandra haematocephala red powder-puff,zhu ying hua \N \N \N \N 86429 D.dolichochilum Diplodium Diplodium dolichochilum \N \N \N \N \N 86430 L.melanodesma Leandra Leandra melanodesma \N \N \N \N \N 86431 \N tribe Theligoneae \N \N \N \N \N 86432 \N subspecies Medicago sativa subsp. x hemicycla \N \N \N \N \N 86433 A.6791 Aethionema Aethionema sp. Duran 6791 \N \N \N \N \N 86434 O.triquetra Onixotis Onixotis triquetra \N \N \N \N \N 86435 R.saluenense Rhododendron Rhododendron saluenense \N \N \N \N \N 86436 S.nummularia Sameraria Sameraria nummularia \N \N \N \N \N 86437 S.cristata Sagittaria Sagittaria cristata \N \N \N \N \N 86438 C.triflora Cousinia Cousinia triflora \N \N \N \N \N 86439 L.corymbosa Lippia Lippia corymbosa \N \N \N \N \N 86440 J.s.n. Juncus Juncus sp. Hansen s.n. \N \N \N \N \N 86441 C.coum Cyclamen Cyclamen coum \N \N \N \N \N 86442 C.tanakae Cardamine Cardamine tanakae \N \N \N \N \N 86443 C.sample environmental samples Taxonomy:404791 Celastraceae environmental sample \N \N \N \N \N 86444 A.myrtifolium Angelphytum Angelphytum myrtifolium \N \N \N \N \N 86445 B.megacephala Blumea Blumea megacephala \N \N \N \N \N 86446 \N genus Hedythyrsus \N \N \N \N \N 86447 R.pensilvanicus Rubus Rubus pensilvanicus \N \N \N \N \N 86448 \N subspecies Tragopogon porrifolius subsp. australis \N \N \N \N \N 86449 N.linocerioides Noronhia Noronhia linocerioides \N \N \N \N \N 86450 C.tricolor Cousinia Cousinia tricolor \N \N \N \N \N 86451 C.173 Cyrtandra Cyrtandra sp. Hoover & Agus ARs 173 \N \N \N \N \N 86452 U.quelchii Utricularia Utricularia quelchii \N \N \N \N \N 86453 G.itoana Gaultheria Gaultheria itoana \N \N \N \N \N 86454 \N genus Syncolostemon \N \N \N \N \N 86455 G.leucodon Gymnostoma Gymnostoma leucodon \N \N \N \N \N 86456 P.'Guam' Psychotria Psychotria sp. 'Guam' \N \N \N \N \N 86457 \N genus Myroxylon \N \N \N \N \N 86458 M.mcvaughii Mexacanthus Mexacanthus mcvaughii \N \N \N \N \N 86459 D.gracillima Dioscorea Dioscorea gracillima \N \N \N \N \N 86460 O.unguiculatum Oncidium Oncidium unguiculatum \N \N \N \N \N 86461 L.viscidiflorus Lisianthius Lisianthius viscidiflorus \N \N \N \N \N 86462 V.proschii Vangueria Vangueria proschii \N \N \N \N \N 86463 K.hystricula Kumlienia Kumlienia hystricula \N \N \N \N \N 86464 L.taliensis Lysimachia Lysimachia taliensis \N \N \N \N \N 86465 \N genus Ancathia \N \N \N \N \N 86466 E.blodgettii Euphorbia Euphorbia blodgettii \N \N \N \N \N 86467 \N subspecies Heracleum sphondylium subsp. sibiricum \N \N \N \N \N 86468 V.monticola Vitis Vitis monticola \N \N \N \N \N 86469 S.turkestanica Spinacia Spinacia turkestanica \N \N \N \N \N 86470 S.vernicosa Spathelia Spathelia vernicosa \N \N \N \N \N 86471 S.rotundifolia Shortia Shortia rotundifolia \N \N \N \N \N 86472 R.macrocarpum Rehderodendron Rehderodendron macrocarpum \N \N \N \N \N 86473 B.bleasdalei Bleasdalea Bleasdalea bleasdalei \N \N \N \N \N 86474 C.semicordata Celmisia Celmisia semicordata \N \N \N \N \N 86475 B.stenostachya Bambusa Bambusa stenostachya \N \N \N \N \N 86476 C.excavata Clausena Clausena excavata \N \N \N \N \N 86477 H.klainei Hymenostegia Hymenostegia klainei \N \N \N \N \N 86478 C.tingitana Crepis Crepis tingitana \N \N \N \N \N 86479 E.dodsonii Eucrosia Eucrosia dodsonii \N \N \N \N \N 86480 P.appressum Phymaspermum Phymaspermum appressum \N \N \N \N \N 86481 C.11057 Cyrtandra Cyrtandra sp. Wood 11057 \N \N \N \N \N 86482 \N varietas Mimosa setosa var. urbica \N \N \N \N \N 86483 H.pseudopilosella Hieracium Hieracium pseudopilosella \N \N \N \N \N 86484 A.excelsus Alectryon Alectryon excelsus titoki \N \N \N \N 86485 T.filifolia Tagetes Tagetes filifolia \N \N \N \N \N 86486 S.delavayi Swertia Swertia delavayi \N \N \N \N \N 86487 E.oxyrhynchum Erodium Erodium oxyrhynchum \N \N \N \N \N 86488 A.miser Astragalus Astragalus miser \N \N \N \N \N 86489 O.raddeana Orobanche Orobanche raddeana \N \N \N \N \N 86490 E.zambesiana Euphorbia Euphorbia zambesiana \N \N \N \N \N 86491 \N subtribe Metroxylinae \N \N \N \N \N 86492 C.madagascariensis Capuronia Capuronia madagascariensis \N \N \N \N \N 86493 S.yunnanensis Sabia Sabia yunnanensis \N \N \N \N \N 86494 P.albida Parafestuca Parafestuca albida \N \N \N \N \N 86495 \N varietas Leucaena lanceolata var. sousae \N \N \N \N \N 86496 C.bicolor Curcuma Curcuma bicolor \N \N \N \N \N 86497 B.origanifolius Bystropogon Bystropogon origanifolius \N \N \N \N \N 86498 A.nebrodensis Armeria Armeria nebrodensis \N \N \N \N \N 86499 B.stolonifera Berberis Berberis stolonifera \N \N \N \N \N 86500 \N genus Beaufortia \N \N \N \N \N 86501 H.makranicum Helichrysum Helichrysum makranicum \N \N \N \N \N 86502 A.urartu x Aegilotriticum Aegilops tauschii x Triticum urartu \N \N \N \N \N 86503 S.ioclados Sporobolus Sporobolus ioclados \N \N \N \N \N 86504 P.irregulare Panicum Panicum irregulare \N \N \N \N \N 86505 P.bellidifolia Primula Primula bellidifolia \N \N \N \N \N 86506 N.macrocephala Neobuxbaumia Neobuxbaumia macrocephala \N \N \N \N \N 86507 F.incarnata Fleischmannia Fleischmannia incarnata \N \N \N \N \N 86508 A.triviale Alisma Alisma triviale \N \N \N \N \N 86509 G.mauritiana Gastonia Gastonia mauritiana \N \N \N \N \N 86510 R.ormindoi Rhipsalis Rhipsalis ormindoi \N \N \N \N \N 86511 S.chilensis Senecio Senecio chilensis \N \N \N \N \N 86512 P.drummondii Pelargonium Pelargonium drummondii \N \N \N \N \N 86513 \N subspecies Digitalis ferruginea subsp. schischkinii \N \N \N \N \N 86514 P.tibetica Pedicularis Pedicularis tibetica \N \N \N \N \N 86515 A.geyeri Allium Allium geyeri \N \N \N \N \N 86516 H.viscidihirta Heteranthemis Heteranthemis viscidihirta \N \N \N \N \N 86517 R.fagifolia Ruprechtia Ruprechtia fagifolia \N \N \N \N \N 86518 C.involucrata Clidemia Clidemia involucrata \N \N \N \N \N 86519 \N genus Calocrater \N \N \N \N \N 86520 \N genus Cymbalaria \N \N \N \N \N 86521 D.soratensis Draba Draba soratensis \N \N \N \N \N 86522 M.domingensis Maytenus Maytenus domingensis \N \N \N \N \N 86523 M.haemanthum Mecranium Mecranium haemanthum \N \N \N \N \N 86524 F.wildemaniana Ficus Ficus wildemaniana \N \N \N \N \N 86525 \N subspecies Evax pygmaea subsp. ramosissima \N \N \N \N \N 86526 C.juncea Crambe Crambe juncea \N \N \N \N \N 86527 \N genus Triphyophyllum \N \N \N \N \N 86528 P.caudescens Polyandrococos Polyandrococos caudescens \N \N \N \N \N 86529 N.orbiculatum Nematoceras Nematoceras orbiculatum \N \N \N \N \N 86530 G.humblotii Gaertnera Gaertnera humblotii \N \N \N \N \N 86531 P.buergeriana Prunus Prunus buergeriana inuzakura,lin mu \N \N \N \N 86532 X.caeruleum Xiphidium Xiphidium caeruleum \N \N \N \N \N 86533 S.blakei Sigesbeckia Sigesbeckia blakei \N \N \N \N \N 86534 A.syriaca Asclepias Asclepias syriaca \N \N \N \N \N 86535 S.stolonifera Soliva Soliva stolonifera \N \N \N \N \N 86536 E.palifolius Echinodorus Echinodorus palifolius \N \N \N \N \N 86537 L.niihauensis Lobelia Lobelia niihauensis \N \N \N \N \N 86538 A.macrophylla Armeria Armeria macrophylla \N \N \N \N \N 86539 N.fusca Nothofagus Nothofagus fusca \N \N \N \N \N 86540 T.cerrateae Tarasa Tarasa cerrateae \N \N \N \N \N 86541 V.campylophylla Vania Vania campylophylla \N \N \N \N \N 86542 C.paniculata Carex Carex paniculata \N \N \N \N \N 86543 A.repens Alyssum Alyssum repens \N \N \N \N \N 86544 U.glumaris Urochloa Urochloa glumaris \N \N \N \N \N 86545 T.vernicifluum Toxicodendron Toxicodendron vernicifluum Chinese lacquer,Japanese lacquer tree,Japanese lacquer-tree,varnish tree \N \N \N \N 86546 M.weberbaueri Malesherbia Malesherbia weberbaueri \N \N \N \N \N 86547 \N genus Tunilla \N \N \N \N \N 86548 P.grandis Pachycereus Pachycereus grandis \N \N \N \N \N 86549 G.superbum Graptopetalum Graptopetalum superbum \N \N \N \N \N 86550 C.grandis Clavija Clavija grandis \N \N \N \N \N 86551 B.fatsioides Brassaiopsis Brassaiopsis fatsioides \N \N \N \N \N 86552 B.radicans Brachyscome Brachyscome radicans \N \N \N \N \N 86553 A.polycephala Ardisia Ardisia polycephala \N \N \N \N \N 86554 H.parvifolia Heisteria Heisteria parvifolia \N \N \N \N \N 86555 O.GMS-2008 Orobanche Orobanche sp. 3 GMS-2008 \N \N \N \N \N 86556 S.tricuspis Salvia Salvia tricuspis \N \N \N \N \N 86557 C.corsicus Crocus Crocus corsicus \N \N \N \N \N 86558 N.scoparia Neobuxbaumia Neobuxbaumia scoparia \N \N \N \N \N 86559 S.serrulatus Styrax Styrax serrulatus \N \N \N \N \N 86560 S.leucophyllum Sideroxylon Sideroxylon leucophyllum \N \N \N \N \N 86561 \N genus Pimelea \N \N \N \N \N 86562 P.angustifolium Papaver Papaver angustifolium \N \N \N \N \N 86563 T.spicigerus Thamnochortus Thamnochortus spicigerus \N \N \N \N \N 86564 F.C97106 Fagopyrum Fagopyrum sp. C97106 \N \N \N \N \N 86565 B.1 Begonia Begonia sp. China 1 \N \N \N \N \N 86566 R.procumbens Rulingia Rulingia procumbens \N \N \N \N \N 86567 \N varietas Phaseolus vulgaris var. aborigineus \N \N \N \N \N 86568 P.8665 Pera Pera sp. Delprete et al. 8665 \N \N \N \N \N 86569 M.trifida Mitella Mitella trifida \N \N \N \N \N 86570 S.BM104 Senna Senna cf. rigida BM104 \N \N \N \N \N 86571 K.petitiana Kalanchoe Kalanchoe petitiana \N \N \N \N \N 86572 P.vogelii Peponium Peponium vogelii \N \N \N \N \N 86573 M.splendens Malesherbia Malesherbia splendens \N \N \N \N \N 86574 P.foliosa Polystachya Polystachya foliosa \N \N \N \N \N 86575 C.robynsiana Ceropegia Ceropegia robynsiana \N \N \N \N \N 86576 G.aristigera Glandularia Glandularia aristigera \N \N \N \N \N 86577 S.hypoleuca Schefflera Schefflera hypoleuca \N \N \N \N \N 86578 \N genus Moratia \N \N \N \N \N 86579 O.decaphylla Oxalis Oxalis decaphylla \N \N \N \N \N 86580 R.lowii Rhizanthes Rhizanthes lowii \N \N \N \N \N 86581 R.leschenaultiana Rosa Rosa leschenaultiana \N \N \N \N \N 86582 F.levynsiae Ficinia Ficinia levynsiae \N \N \N \N \N 86583 \N genus Steiractinia \N \N \N \N \N 86584 \N genus Zeravschania \N \N \N \N \N 86585 H.rubescens Heuchera Heuchera rubescens \N \N \N \N \N 86586 A.trachysperma Aphanopleura Aphanopleura trachysperma \N \N \N \N \N 86587 C.pilosa Cyanea Cyanea pilosa \N \N \N \N \N 86588 D.extenta Dicliptera Dicliptera extenta \N \N \N \N \N 86589 A.pichleri Asyneuma Asyneuma pichleri \N \N \N \N \N 86590 G.uysiae Gladiolus Gladiolus uysiae \N \N \N \N \N 86591 S.vargasii Suessenguthia Suessenguthia vargasii \N \N \N \N \N 86592 \N family Siparunaceae \N \N \N \N \N 86593 C.194 Curarea Curarea sp. RO 194 \N \N \N \N \N 86594 P.korshinskyi Pyrus Pyrus korshinskyi \N \N \N \N \N 86595 \N genus Dithyridanthus \N \N \N \N \N 86596 P.pojarkovae Pojarkovia Pojarkovia pojarkovae \N \N \N \N \N 86597 I.coetsa Isodon Isodon coetsa \N \N \N \N \N 86598 P.natans Potamogeton Potamogeton alpinus x Potamogeton natans \N \N \N \N \N 86599 C.nuecensoides Coreopsis Coreopsis nuecensoides \N \N \N \N \N 86600 S.crustata Saxifraga Saxifraga crustata \N \N \N \N \N 86601 C.bertrandii Coffea Coffea bertrandii \N \N \N \N \N 86602 M.pendula Mandevilla Mandevilla pendula \N \N \N \N \N 86603 I.reticularis Isolepis Isolepis reticularis \N \N \N \N \N 86604 C.cymbalaria Campanula Campanula cymbalaria \N \N \N \N \N 86605 E.rhombifolia Euphorbia Euphorbia rhombifolia \N \N \N \N \N 86606 G.reptans Geum Geum reptans \N \N \N \N \N 86607 R.blechum Ruellia Ruellia blechum \N \N \N \N \N 86608 A.erythronioides Amana Amana erythronioides \N \N \N \N \N 86609 C.endlichii Carex Carex endlichii \N \N \N \N \N 86610 L.leopoldi-secundi Leptactina Leptactina leopoldi-secundi \N \N \N \N \N 86611 A.himalaicum Adenocaulon Adenocaulon himalaicum \N \N \N \N \N 86612 N.gracilis Neptunia Neptunia gracilis \N \N \N \N \N 86613 L.filiformis Lathyrus Lathyrus filiformis \N \N \N \N \N 86614 \N subspecies Croton guildingii subsp. tiarensis \N \N \N \N \N 86615 A.mattogrossensis Acanthura Acanthura mattogrossensis \N \N \N \N \N 86616 S.bamagense Syzygium Syzygium bamagense \N \N \N \N \N 86617 M.cordata Minaria Minaria cordata \N \N \N \N \N 86618 B.346 Begonia Begonia sp. TJB 346 \N \N \N \N \N 86619 G.arizonica Grindelia Grindelia arizonica \N \N \N \N \N 86620 \N varietas Dodonaea microzyga var. acrolobata \N \N \N \N \N 86621 P.caffra Pimpinella Pimpinella caffra \N \N \N \N \N 86622 M.sheldonii Meconopsis Meconopsis x sheldonii \N \N \N \N \N 86623 C.virgata Chusquea Chusquea virgata \N \N \N \N \N 86624 H.bicarpellatum Hesperolinon Hesperolinon bicarpellatum \N \N \N \N \N 86625 I.khasiana Indofevillea Indofevillea khasiana \N \N \N \N \N 86626 \N varietas Morus macroura var. mawu \N \N \N \N \N 86627 P.pulverulenta Primula Primula pulverulenta \N \N \N \N \N 86628 C.paniculata Crypteronia Crypteronia paniculata \N \N \N \N \N 86629 A.catenulata Acacia Acacia catenulata \N \N \N \N \N 86630 A.tenuifolia Anemone Anemone tenuifolia \N \N \N \N \N 86631 G.wutaiensis Gentiana Gentiana wutaiensis \N \N \N \N \N 86632 E.grandiflora Euphrasia Euphrasia grandiflora \N \N \N \N \N 86633 \N genus Luzuriaga \N \N \N \N \N 86634 S.pubescens Solanum Solanum pubescens \N \N \N \N \N 86635 \N varietas Rhododendron mekongense var. mekongense \N \N \N \N \N 86636 S.dodecandra Struthiola Struthiola dodecandra \N \N \N \N \N 86637 \N genus Rochefortia \N \N \N \N \N 86638 N.grandidierana Neobathiea Neobathiea grandidierana \N \N \N \N \N 86639 C.flava Cuphea Cuphea flava \N \N \N \N \N 86640 B.heteresthes Bursera Bursera heteresthes \N \N \N \N \N 86641 L.ledebourii Lilium Lilium ledebourii \N \N \N \N \N 86642 H.laniflora Hyptis Hyptis laniflora \N \N \N \N \N 86643 C.kernensis Camissonia Camissonia kernensis \N \N \N \N \N 86644 L.sericobalanos Lithocarpus Lithocarpus sericobalanos \N \N \N \N \N 86645 \N genus Sarcandra \N \N \N \N \N 86646 P.opelousana Persicaria Persicaria opelousana \N \N \N \N \N 86647 \N genus Tovaria \N \N \N \N \N 86648 \N genus Deinbollia \N \N \N \N \N 86649 \N varietas Fraxinus velutina var. toumeyi \N \N \N \N \N 86650 T.eriantha Triphysaria Triphysaria eriantha \N \N \N \N \N 86651 C.panduriformis Cyrtochiloides Cyrtochiloides panduriformis \N \N \N \N \N 86652 T.pediculata Tarasa Tarasa pediculata \N \N \N \N \N 86653 C.oligosperma Carex Carex oligosperma \N \N \N \N \N 86654 D.fugongensis Dendrocalamus Dendrocalamus fugongensis \N \N \N \N \N 86655 \N genus Bakerella \N \N \N \N \N 86656 M.cercophora Miconia Miconia cercophora \N \N \N \N \N 86657 C.hakkiaricum Chaerophyllum Chaerophyllum hakkiaricum \N \N \N \N \N 86658 P.strindbergii Polygonum Polygonum strindbergii \N \N \N \N \N 86659 K.hillii Keraudrenia Keraudrenia hillii \N \N \N \N \N 86660 G.1046 Gurania Gurania sp. 8 Steele 1046 \N \N \N \N \N 86661 R.286 Rytidosperma Rytidosperma aff. caespitosum Pirie 286 \N \N \N \N \N 86662 S.chubutensis Silene Silene chubutensis \N \N \N \N \N 86663 \N subspecies Ainsliaea latifolia subsp. henryi \N \N \N \N \N 86664 L.papyracea Lisaea Lisaea papyracea \N \N \N \N \N 86665 R.coryanum Rhododendron Rhododendron coryanum \N \N \N \N \N 86666 \N genus Pterolepis \N \N \N \N \N 86667 V.arboreum Vaccinium Vaccinium arboreum farkleberry,sparkleberry,winter huckleberry \N \N \N \N 86668 O.henryi Osmanthus Osmanthus henryi \N \N \N \N \N 86669 I.poneantha Ilex Ilex poneantha \N \N \N \N \N 86670 A.lombardii Asterostigma Asterostigma lombardii \N \N \N \N \N 86671 P.lanata Pedicularis Pedicularis lanata \N \N \N \N \N 86672 \N varietas Heracleum candicans var. candicans \N \N \N \N \N 86673 G.kunishii Gelidocalamus Gelidocalamus kunishii \N \N \N \N \N 86674 B.tuldoides Bambusa Bambusa tuldoides \N \N \N \N \N 86675 G.neglecta Guatteria Guatteria neglecta \N \N \N \N \N 86676 P.procumbens Polypremum Polypremum procumbens \N \N \N \N \N 86677 E.scaber Eriochilus Eriochilus scaber \N \N \N \N \N 86678 C.1742 Crotonogyne Crotonogyne sp. Smith 1742 \N \N \N \N \N 86679 P.tomentosa Pervillaea Pervillaea tomentosa \N \N \N \N \N 86680 E.asymmetricum Eremocaulon Eremocaulon asymmetricum \N \N \N \N \N 86681 \N genus Wimmeria \N \N \N \N \N 86682 C.ruizianus Croton Croton ruizianus \N \N \N \N \N 86683 K.pronyensis Kermadecia Kermadecia pronyensis \N \N \N \N \N 86684 \N varietas Aristida stricta var. stricta \N \N \N \N \N 86685 \N genus Aphyllorchis \N \N \N \N \N 86686 \N varietas Carex digitalis var. macropoda \N \N \N \N \N 86687 H.warburgii Hilliella Hilliella warburgii \N \N \N \N \N 86688 \N genus Phyllanthus \N \N \N \N \N 86689 \N subspecies Solanum bulbocastanum subsp. bulbocastanum \N \N \N \N \N 86690 P.reflectens Pachycarpus Pachycarpus reflectens \N \N \N \N \N 86691 F.densa Fimbristylis Fimbristylis densa \N \N \N \N \N 86692 L.longisetosa Leandra Leandra longisetosa \N \N \N \N \N 86693 \N genus Karoophila \N \N \N \N \N 86694 P.integrifolia Primula Primula integrifolia \N \N \N \N \N 86695 M.ferox Muraltia Muraltia ferox \N \N \N \N \N 86696 G.lindblomii Galega Galega lindblomii \N \N \N \N \N 86697 G.hispida Guatteriopsis Guatteriopsis hispida \N \N \N \N \N 86698 O.rhizomatis Oryza Oryza rhizomatis \N \N \N \N \N 86699 \N varietas Ophiorrhiza japonica var. amamiana \N \N \N \N \N 86700 \N subspecies Crepis modocensis subsp. modocensis \N \N \N \N \N 86701 \N genus Seetzenia \N \N \N \N \N 86702 S.grandisepalum Sedum Sedum grandisepalum \N \N \N \N \N 86703 G.drummondi Glossostigma Glossostigma drummondi \N \N \N \N \N 86704 E.brownei Euryops Euryops brownei \N \N \N \N \N 86705 O.aridicola Oxalis Oxalis aridicola \N \N \N \N \N 86706 C.asperuloides Campanula Campanula asperuloides \N \N \N \N \N 86707 C.anthospermoides Cliffortia Cliffortia anthospermoides \N \N \N \N \N 86708 D.pilosula Diospyros Diospyros pilosula \N \N \N \N \N 86709 C.luteus Calochortus Calochortus luteus \N \N \N \N \N 86710 \N genus Citronella \N \N \N \N \N 86711 T.incisum Trichoptilium Trichoptilium incisum \N \N \N \N \N 86712 B.pendulina Boechera Boechera pendulina \N \N \N \N \N 86713 \N varietas Trifolium incarnatum var. molineri \N \N \N \N \N 86714 A.artemisioides Aerva Aerva artemisioides \N \N \N \N \N 86715 \N genus Galeola \N \N \N \N \N 86716 A.pedata Alchemilla Alchemilla pedata \N \N \N \N \N 86717 S.rosifolia Scandia Scandia rosifolia \N \N \N \N \N 86718 B.finlaysoniana Bromheadia Bromheadia finlaysoniana \N \N \N \N \N 86719 T.nudatum Traganum Traganum nudatum \N \N \N \N \N 86720 D.filipendula Diospyros Diospyros filipendula \N \N \N \N \N 86721 L.lancifolium Lilium Lilium lancifolium true tiger lily \N \N \N \N 86722 Z.biebersteiniana Zingeria Zingeria biebersteiniana \N \N \N \N \N 86723 \N subspecies Helichrysum stoechas subsp. barrelieri \N \N \N \N \N 86724 \N genus Beloglottis \N \N \N \N \N 86725 C.nivale Culcitium Culcitium nivale \N \N \N \N \N 86726 B.pringlei Bauhinia Bauhinia pringlei \N \N \N \N \N 86727 \N genus Ondinea \N \N \N \N \N 86728 M.augustae-victoriae Maxillaria Maxillaria augustae-victoriae \N \N \N \N \N 86729 E.6405 Elaeagia Elaeagia sp. Delprete & Verduga 6405 \N \N \N \N \N 86730 C.cotoneaster Corokia Corokia cotoneaster \N \N \N \N \N 86731 A.cylindrica Androsace Androsace cylindrica \N \N \N \N \N 86732 S.spinosissima Sulla Sulla spinosissima \N \N \N \N \N 86733 Z.JID-2004 Zoysia Zoysia sp. JID-2004 \N \N \N \N \N 86734 P.macrura Puya Puya macrura \N \N \N \N \N 86735 N.membranacea Nectandra Nectandra membranacea \N \N \N \N \N 86736 M.ruspoliana Moringa Moringa ruspoliana \N \N \N \N \N 86737 \N genus Holoptelea \N \N \N \N \N 86738 R.rutilum Rhipidoglossum Rhipidoglossum rutilum \N \N \N \N \N 86739 H.matronalis Hesperis Hesperis matronalis \N \N \N \N \N 86740 I.triantha Ixora Ixora triantha \N \N \N \N \N 86741 \N genus Vernoniastrum \N \N \N \N \N 86742 C.maxima Cattleya Cattleya maxima \N \N \N \N \N 86743 \N varietas Ceanothus americanus var. intermedius \N \N \N \N \N 86744 D.ningpoensis Deutzia Deutzia ningpoensis \N \N \N \N \N 86745 \N genus Dactylopsis \N \N \N \N \N 86746 M.sanguinea Maxillaria Maxillaria sanguinea \N \N \N \N \N 86747 D.kairoi Dubouzetia Dubouzetia kairoi \N \N \N \N \N 86748 C.canadensis Conyza Conyza canadensis horseweed \N \N \N \N 86749 \N varietas Narcissus triandrus var. triandrus \N \N \N \N \N 86750 A.giraldii Artemisia Artemisia giraldii \N \N \N \N \N 86751 M.flavescens Miltonia Miltonia flavescens \N \N \N \N \N 86752 A.chamaemelifolia Artemisia Artemisia chamaemelifolia \N \N \N \N \N 86753 I.latifolius Isopogon Isopogon latifolius \N \N \N \N \N 86754 S.295) Swartzia Swartzia sp. A (Torke 295) \N \N \N \N \N 86755 P.macounii Podistera Podistera macounii \N \N \N \N \N 86756 G.galeottiana Guatteria Guatteria galeottiana \N \N \N \N \N 86757 \N subspecies Echinopsis schieliana subsp. leptacantha \N \N \N \N \N 86758 B.4410 Borojoa Borojoa sp. Staahl 4410 \N \N \N \N \N 86759 S.mammosum Solanum Solanum mammosum \N \N \N \N \N 86760 \N subspecies Lepidium sisymbrioides subsp. kawarau \N \N \N \N \N 86761 N.divaricatum Nototrichium Nototrichium divaricatum \N \N \N \N \N 86762 \N genus Homogyne \N \N \N \N \N 86763 D.XMW-2002-7 Dendrobium Dendrobium sp. XMW-2002-7 \N \N \N \N \N 86764 G.271 Greigia Greigia sp. 271 \N \N \N \N \N 86765 L.parviflora Larnax Larnax parviflora \N \N \N \N \N 86766 P.punctatum Pelargonium Pelargonium punctatum \N \N \N \N \N 86767 H.morsus-ranae Hydrocharis Hydrocharis morsus-ranae European frog's-bit \N \N \N \N 86768 S.tundalomense Solanum Solanum tundalomense \N \N \N \N \N 86769 H.schaffneri Hofmeisteria Hofmeisteria schaffneri \N \N \N \N \N 86770 S.tenuis Silene Silene tenuis \N \N \N \N \N 86771 A.ramosus Asphodelus Asphodelus ramosus silverrod \N \N \N \N 86772 I.kopetdagensis Iris Iris kopetdagensis \N \N \N \N \N 86773 C.japonica Cryptotaenia Cryptotaenia japonica \N \N \N \N \N 86774 G.megalothyrsa Gaoligongshania Gaoligongshania megalothyrsa \N \N \N \N \N 86775 \N genus Kelloggia \N \N \N \N \N 86776 C.agatiflora Crotalaria Crotalaria agatiflora \N \N \N \N \N 86777 M.cuneata Menonvillea Menonvillea cuneata \N \N \N \N \N 86778 \N subspecies Halimium lasianthum subsp. lasianthum \N \N \N \N \N 86779 \N genus Hylaeorchis \N \N \N \N \N 86780 H.montana Hechtia Hechtia montana \N \N \N \N \N 86781 T.balansae Trigonella Trigonella balansae \N \N \N \N \N 86782 \N subspecies Genista stenopetala subsp. stenopetala \N \N \N \N \N 86783 D.bitteriana Deprea Deprea bitteriana \N \N \N \N \N 86784 P.nivea Prostanthera Prostanthera nivea snowy mintbush \N \N \N \N 86785 G.tuberosum Geranium Geranium tuberosum \N \N \N \N \N 86786 T.borneensis Thottea Thottea borneensis \N \N \N \N \N 86787 P.EM-2009 Potentilla Potentilla sp. EM-2009 \N \N \N \N \N 86788 D.retusa Dillenia Dillenia retusa \N \N \N \N \N 86789 \N genus Tacarcuna \N \N \N \N \N 86790 T.coronatum Taraxacum Taraxacum coronatum \N \N \N \N \N 86791 D.gracilis Daviesia Daviesia gracilis \N \N \N \N \N 86792 S.umbellata Stellaria Stellaria umbellata \N \N \N \N \N 86793 H.sphaerocephalum Hieracium Hieracium sphaerocephalum \N \N \N \N \N 86794 C.coquimbana Copiapoa Copiapoa coquimbana \N \N \N \N \N 86795 P.lanceolata Protea Protea lanceolata \N \N \N \N \N 86796 C.SH-2010 Calanthe Calanthe sp. SH-2010 \N \N \N \N \N 86797 C.concinnus Cleistanthus Cleistanthus concinnus \N \N \N \N \N 86798 A.tanggulashanensis Androsace Androsace tanggulashanensis \N \N \N \N \N 86799 \N genus Salpistele \N \N \N \N \N 86800 P.rydbergii Parrya Parrya rydbergii \N \N \N \N \N 86801 \N subspecies Arum orientale subsp. orientale \N \N \N \N \N 86802 M.simplicifolius Myodocarpus Myodocarpus simplicifolius \N \N \N \N \N 86803 F.robusta Flaveria Flaveria robusta \N \N \N \N \N 86804 \N subfamily Cyperoideae \N \N \N \N \N 86805 V.scoparium Vaccinium Vaccinium scoparium grouseberry \N \N \N \N 86806 C.impressus Ceanothus Ceanothus impressus \N \N \N \N \N 86807 C.killipii Calathea Calathea killipii \N \N \N \N \N 86808 X.granatum Xylocarpus Xylocarpus granatum \N \N \N \N \N 86809 P.tectorius Pandanus Pandanus tectorius Veitch's screw pine,hala,pandan,thatch screw-pine \N \N \N \N 86810 C.montana Catopsis Catopsis montana \N \N \N \N \N 86811 \N subspecies Triticum timopheevii subsp. araraticum \N \N \N \N \N 86812 P.vaseyi Potamogeton Potamogeton berchtoldii x Potamogeton vaseyi \N \N \N \N \N 86813 \N genus Psammomoya \N \N \N \N \N 86814 P.mussotii Pedicularis Pedicularis mussotii \N \N \N \N \N 86815 \N genus Gonioma \N \N \N \N \N 86816 R.gigantea Rhynchostylis Rhynchostylis gigantea \N \N \N \N \N 86817 C.cinnamomifolium Cinnamomum Cinnamomum cinnamomifolium \N \N \N \N \N 86818 B.careyana Balsamorhiza Balsamorhiza careyana \N \N \N \N \N 86819 A.powellii Amaranthus Amaranthus powellii \N \N \N \N \N 86820 P.nutans Purdiaea Purdiaea nutans \N \N \N \N \N 86821 I.sonorae Ipomopsis Ipomopsis sonorae \N \N \N \N \N 86822 A.gerardii Andropogon Andropogon gerardii \N \N \N \N \N 86823 R.bryoides Raoulia Raoulia bryoides \N \N \N \N \N 86824 \N varietas Phaseolus vulgaris var. nanus \N \N \N \N \N 86825 P.schumanniana Parodia Parodia schumanniana \N \N \N \N \N 86826 P.taubatensis Piriqueta Piriqueta taubatensis \N \N \N \N \N 86827 N.3056 Nepenthes Nepenthes sp. Nickrent 3056 \N \N \N \N \N 86828 A.taquetii Allium Allium taquetii \N \N \N \N \N 86829 E.sabulicola Echium Echium sabulicola \N \N \N \N \N 86830 L.glabellus Leucopogon Leucopogon glabellus \N \N \N \N \N 86831 L.villosa Lobelia Lobelia villosa \N \N \N \N \N 86832 I.palaestina Iris Iris palaestina \N \N \N \N \N 86833 Z.amplexicaule Zygogynum Zygogynum amplexicaule \N \N \N \N \N 86834 E.parnassicus Edraianthus Edraianthus parnassicus \N \N \N \N \N 86835 S.incanum Solanum Solanum incanum \N \N \N \N \N 86836 \N genus Celtica \N \N \N \N \N 86837 C.alata Carex Carex alata \N \N \N \N \N 86838 P.glabra Phyllostegia Phyllostegia glabra \N \N \N \N \N 86839 I.tabascana Ipomoea Ipomoea tabascana \N \N \N \N \N 86840 R.phaeochrysum Rhododendron Rhododendron phaeochrysum \N \N \N \N \N 86841 A.invenusta Agnorhiza Agnorhiza invenusta \N \N \N \N \N 86842 L.texana Leavenworthia Leavenworthia texana \N \N \N \N \N 86843 L.cassinoides Lydenburgia Lydenburgia cassinoides \N \N \N \N \N 86844 \N genus Neesiochloa \N \N \N \N \N 86845 T.caatingicola Tabaroa Tabaroa caatingicola \N \N \N \N \N 86846 S.modestus Syncolostemon Syncolostemon modestus \N \N \N \N \N 86847 H.scitula Heterospathe Heterospathe scitula \N \N \N \N \N 86848 E.stagnina Echinochloa Echinochloa stagnina burgu grass,hippo grass \N \N \N \N 86849 C.bicolor Cattleya Cattleya bicolor \N \N \N \N \N 86850 D.haworthioides Drimia Drimia haworthioides \N \N \N \N \N 86851 E.procumbens Erigeron Erigeron procumbens \N \N \N \N \N 86852 S.diplotricha Strychnos Strychnos diplotricha \N \N \N \N \N 86853 T.gracilis Trailliaedoxa Trailliaedoxa gracilis \N \N \N \N \N 86854 \N subspecies Grevillea ilicifolia subsp. lobata \N \N \N \N \N 86855 N.weissiana Nolana Nolana weissiana \N \N \N \N \N 86856 M.polybotrya Mascagnia Mascagnia polybotrya \N \N \N \N \N 86857 \N subfamily Nolinoideae \N \N \N \N \N 86858 P.1028 Peponidium Peponidium sp. 5 Davis 1028 \N \N \N \N \N 86859 C.guttata Cattleya Cattleya guttata \N \N \N \N \N 86860 I.brunonis Ixora Ixora brunonis \N \N \N \N \N 86861 \N genus Craspedolobium \N \N \N \N \N 86862 H.alpina Hymenanthera Hymenanthera alpina \N \N \N \N \N 86863 E.ventricosum Ensete Ensete ventricosum \N \N \N \N \N 86864 A.1731 Acranthera Acranthera sp. 2 Bremer 1731 \N \N \N \N \N 86865 A.paniculata Aeschynomene Aeschynomene paniculata \N \N \N \N \N 86866 \N subspecies Leptosiphon aureus subsp. decorus \N \N \N \N \N 86867 C.haemanthoides Cryptostephanus Cryptostephanus haemanthoides \N \N \N \N \N 86868 \N no rank Malpighiales incertae sedis \N \N \N \N \N 86869 C.AC-2009 Calceolaria Calceolaria sp. 2 AC-2009 \N \N \N \N \N 86870 M.nitens Moricandia Moricandia nitens \N \N \N \N \N 86871 E.elatum Epimedium Epimedium elatum \N \N \N \N \N 86872 H.cernua Hopea Hopea cernua \N \N \N \N \N 86873 C.capitata Commelina Commelina capitata \N \N \N \N \N 86874 L.sodiroi Lasiocephalus Lasiocephalus sodiroi \N \N \N \N \N 86875 S.apus Saussurea Saussurea apus \N \N \N \N \N 86876 S.hydrophilus Sonchus Sonchus hydrophilus \N \N \N \N \N 86877 M.kuelap Macrocarpaea Macrocarpaea kuelap \N \N \N \N \N 86878 H.albus Hyoscyamus Hyoscyamus albus white henbane \N \N \N \N 86879 M.cunninghamii Minuria Minuria cunninghamii \N \N \N \N \N 86880 P.mastersianum Paphiopedilum Paphiopedilum mastersianum \N \N \N \N \N 86881 A.bourgaei Armeria Armeria bourgaei \N \N \N \N \N 86882 C.Rh-75 Ceriops Ceriops sp. KDAIS Rh-75 \N \N \N \N \N 86883 S.stenocarpa Sphenostylis Sphenostylis stenocarpa African yam-bean \N \N \N \N 86884 O.australiensis Oryza Oryza australiensis \N \N \N \N \N 86885 \N genus Rhododendron \N \N \N \N \N 86886 P.perfoliata Persicaria Persicaria perfoliata \N \N \N \N \N 86887 P.tubulosa Plantago Plantago tubulosa \N \N \N \N \N 86888 \N genus Mollera \N \N \N \N \N 86889 L.clethroides Lysimachia Lysimachia clethroides gooseneck loosestrife \N \N \N \N 86890 A.peregrina Anadenanthera Anadenanthera peregrina \N \N \N \N \N 86891 L.preslii Lotus Lotus preslii \N \N \N \N \N 86892 C.bullata Carex Carex bullata \N \N \N \N \N 86893 E.punctata Eucalyptus Eucalyptus punctata grey irongum \N \N \N \N 86894 A.bowiea Aloe Aloe bowiea \N \N \N \N \N 86895 P.stenopetala Polyalthia Polyalthia stenopetala \N \N \N \N \N 86896 P.margilicola Poa Poa margilicola \N \N \N \N \N 86897 P.oculatus Phyllobolus Phyllobolus oculatus \N \N \N \N \N 86898 \N genus Kerria \N \N \N \N \N 86899 G.pumilum Galium Galium pumilum \N \N \N \N \N 86900 D.heteromorpha Dalechampia Dalechampia heteromorpha \N \N \N \N \N 86901 C.gayana Carex Carex gayana \N \N \N \N \N 86902 S.spinosa Scolopia Scolopia spinosa \N \N \N \N \N 86903 \N genus Groenlandia \N \N \N \N \N 86904 \N subspecies Lupinus albus subsp. graecus \N \N \N \N \N 86905 \N genus Littorella \N \N \N \N \N 86906 A.ascinodis Andropogon Andropogon ascinodis \N \N \N \N \N 86907 E.malacoides Erodium Erodium malacoides \N \N \N \N \N 86908 \N varietas Cymbidium floribundum var. pumilum \N \N \N \N \N 86909 S.alpina Scutellaria Scutellaria alpina \N \N \N \N \N 86910 N.macleanii Nestotus Nestotus macleanii \N \N \N \N \N 86911 H.JANB-2011 Habenaria Habenaria sp. 4 JANB-2011 \N \N \N \N \N 86912 H.tatarinowii Heterosamara Heterosamara tatarinowii \N \N \N \N \N 86913 V.amurensis Vicia Vicia amurensis \N \N \N \N \N 86914 S.viridis Setaria Setaria viridis \N \N \N \N \N 86915 H.spectabile Hedyosmum Hedyosmum spectabile \N \N \N \N \N 86916 C.sericeum Clinopodium Clinopodium sericeum \N \N \N \N \N 86917 I.hissarica Iskandera Iskandera hissarica \N \N \N \N \N 86918 C.opaca Corymbia Corymbia opaca \N \N \N \N \N 86919 L.dissectum Lomatium Lomatium dissectum fernleaf biscuitroot \N \N \N \N 86920 M.inermis Mitragyna Mitragyna inermis \N \N \N \N \N 86921 R.magellensis Ranunculus Ranunculus magellensis \N \N \N \N \N 86922 S.3254) Swartzia Swartzia sp. H (Redden 3254) \N \N \N \N \N 86923 T.biolleyi Telipogon Telipogon biolleyi \N \N \N \N \N 86924 \N genus Hanabusaya \N \N \N \N \N 86925 H.linkweiensis Hydrangea Hydrangea linkweiensis \N \N \N \N \N 86926 L.mirabile Lithospermum Lithospermum incisum x Lithospermum mirabile \N \N \N \N \N 86927 A.verbascifolia Ardisia Ardisia verbascifolia \N \N \N \N \N 86928 P.faginea Paullinia Paullinia faginea \N \N \N \N \N 86929 C.tonkinensis Carya Carya tonkinensis yue nan shan he tao \N \N \N \N 86930 C.s.n. Chaptalia Chaptalia cf. cordata Sanchez & Cabanillas s.n. \N \N \N \N \N 86931 S.bitchuensis Sasaella Sasaella bitchuensis \N \N \N \N \N 86932 H.bucharicum Haplophyllum Haplophyllum bucharicum \N \N \N \N \N 86933 E.JK-2009 Exochaenium Exochaenium sp. 3 JK-2009 \N \N \N \N \N 86934 H.cymbiformis Halosarcia Halosarcia cymbiformis \N \N \N \N \N 86935 \N varietas Fimbristylis ferruginea var. sieboldii \N \N \N \N \N 86937 R.carpaticola Ranunculus Ranunculus carpaticola \N \N \N \N \N 86938 C.candelabra Cerberiopsis Cerberiopsis candelabra \N \N \N \N \N 86939 B.guaduensis Begonia Begonia guaduensis \N \N \N \N \N 86940 \N varietas Sagittaria trifolia var. sinensis \N \N \N \N \N 86941 \N genus Trachydium \N \N \N \N \N 86942 G.liesneri Guatteria Guatteria liesneri \N \N \N \N \N 86943 A.tayoensis Aechmea Aechmea tayoensis \N \N \N \N \N 86944 R.dictyosperma Rorippa Rorippa dictyosperma \N \N \N \N \N 86945 \N subspecies Orchis provincialis subsp. pauciflora \N \N \N \N \N 86946 A.tortilis Amphithalea Amphithalea tortilis \N \N \N \N \N 86947 S.suberectus Spatholobus Spatholobus suberectus \N \N \N \N \N 86948 \N subspecies Rondeletia alaternoides subsp. brachyloba \N \N \N \N \N 86949 P.affinis Phacelia Phacelia affinis limestone phacelia \N \N \N \N 86950 A.candolleanus Astragalus Astragalus candolleanus \N \N \N \N \N 86951 H.ephemera Heliophila Heliophila ephemera \N \N \N \N \N 86952 A.compactus Astragalus Astragalus compactus \N \N \N \N \N 86953 L.61 Lupinus Lupinus sp. Oropeza 61 \N \N \N \N \N 86954 V.vallicola Viola Viola vallicola \N \N \N \N \N 86955 C.scammaniana Claytonia Claytonia scammaniana \N \N \N \N \N 86956 A.heitzii Aphanocalyx Aphanocalyx heitzii \N \N \N \N \N 86957 \N genus Adonis pheasant's eye \N \N \N \N 86958 O.celiensis Ophrys Ophrys celiensis \N \N \N \N \N 86959 H.Lake Halosarcia Halosarcia sp. Yanneri Lake \N \N \N \N \N 86960 \N subspecies Erica glabella subsp. laevis \N \N \N \N \N 86961 \N genus Glyptocarpa \N \N \N \N \N 86962 C.brevicalyx Commiphora Commiphora brevicalyx \N \N \N \N \N 86963 A.stereophyllus Actinocephalus Actinocephalus stereophyllus \N \N \N \N \N 86964 C.warneri Cuscuta Cuscuta warneri \N \N \N \N \N 86965 E.arizonica Euphorbia Euphorbia arizonica \N \N \N \N \N 86966 L.rupestris Lampranthus Lampranthus rupestris \N \N \N \N \N 86967 C.pusillum Colchicum Colchicum pusillum \N \N \N \N \N 86968 \N subspecies Armeria arenaria subsp. bupleuroides \N \N \N \N \N 86969 D.hiatum Disterigma Disterigma hiatum \N \N \N \N \N 86970 E.subsalsa Euphorbia Euphorbia subsalsa \N \N \N \N \N 86971 O.toumeyi Oenothera Oenothera toumeyi \N \N \N \N \N 86972 A.obconicus Aeschynanthus Aeschynanthus obconicus \N \N \N \N \N 86973 T.brachyphylla Tillandsia Tillandsia brachyphylla \N \N \N \N \N 86974 E.elongatum Epigeneium Epigeneium elongatum \N \N \N \N \N 86975 E.octoradiata Euphorbia Euphorbia octoradiata \N \N \N \N \N 86976 M.MLM-2007a Myriophyllum Myriophyllum sp. MLM-2007a \N \N \N \N \N 86977 W.peruviana Weberbauera Weberbauera peruviana \N \N \N \N \N 86978 S.radicatus Sonchus Sonchus radicatus \N \N \N \N \N 86979 S.suksdorfii Silene Silene suksdorfii \N \N \N \N \N 86980 I.puberulus Ischnosiphon Ischnosiphon puberulus \N \N \N \N \N 86981 E.multicaulis Eleocharis Eleocharis multicaulis \N \N \N \N \N 86982 S.zeylanica Smilax Smilax zeylanica \N \N \N \N \N 86983 C.gracillima Carex Carex gracillima \N \N \N \N \N 86984 U.ZAF-H852 Urgineopsis Urgineopsis cf. modesta ZAF-H852 \N \N \N \N \N 86985 T.andrieuxii Tillandsia Tillandsia andrieuxii \N \N \N \N \N 86986 M.sibiricum Myriophyllum Myriophyllum spicatum x Myriophyllum sibiricum \N \N \N \N \N 86987 P.pennellii Pedicularis Pedicularis pennellii \N \N \N \N \N 86988 P.hirsuta Podocoma Podocoma hirsuta \N \N \N \N \N 86989 \N genus Sonneratia \N \N \N \N \N 86990 A.sericifera Araujia Araujia sericifera \N \N \N \N \N 86991 \N subspecies Camassia quamash subsp. breviflora \N \N \N \N \N 86992 P.ginseng Panax Panax ginseng Chinese ginseng,Korean ginseng,ginseng,hong shen,insam,ninjin,ren seng \N \N \N \N 86993 A.erinacea Arenaria Arenaria erinacea \N \N \N \N \N 86994 A.andina Arracacia Arracacia andina \N \N \N \N \N 86995 M.gleasoniana Mouriri Mouriri gleasoniana \N \N \N \N \N 86996 P.quercifolium Pelargonium Pelargonium quercifolium \N \N \N \N \N 86997 O.unifolium Ornithogalum Ornithogalum unifolium \N \N \N \N \N 86998 C.virgata Cryptantha Cryptantha virgata \N \N \N \N \N 86999 C.braccatum Conchidium Conchidium braccatum \N \N \N \N \N 87000 P.mangenotii Phyllanthus Phyllanthus mangenotii \N \N \N \N \N 87001 \N genus Pyrgophyllum \N \N \N \N \N 87002 S.brenesii Symplocos Symplocos brenesii \N \N \N \N \N 87003 D.PW-2005 Dioscorea Dioscorea cf. adenocarpa PW-2005 \N \N \N \N \N 87004 C.lanceolata Cakile Cakile lanceolata searocket \N \N \N \N 87005 \N genus Paederota \N \N \N \N \N 87006 \N genus Bothriochilus \N \N \N \N \N 87007 P.buxifolia Pimelea Pimelea buxifolia \N \N \N \N \N 87008 \N genus Tapirira \N \N \N \N \N 87009 L.paboanus Leymus Leymus paboanus \N \N \N \N \N 87010 P.hookeri Pleurophyllum Pleurophyllum hookeri \N \N \N \N \N 87011 \N genus Pipturus \N \N \N \N \N 87012 L.nena Lacistema Lacistema nena \N \N \N \N \N 87013 D.brevispicata Deuterocohnia Deuterocohnia brevispicata \N \N \N \N \N 87014 W.nubigena Werneria Werneria nubigena \N \N \N \N \N 87015 \N genus Centropogon \N \N \N \N \N 87016 D.1311 Dysoxylum Dysoxylum sp. Chase 1311 \N \N \N \N \N 87017 \N varietas Raphanus sativus var. oleiformis \N \N \N \N \N 87018 D.preauxiana Descurainia Descurainia preauxiana \N \N \N \N \N 87019 \N genus Wilhelmsia \N \N \N \N \N 87020 T.goesingense Thlaspi Thlaspi goesingense \N \N \N \N \N 87021 S.italica Senna Senna italica \N \N \N \N \N 87022 P.ocrosensis Peperomia Peperomia ocrosensis \N \N \N \N \N 87023 D.lotus Diospyros Diospyros lotus date-plum,guiaca,jun qian zi,mamegaki \N \N \N \N 87024 P.fokienensis Photinia Photinia fokienensis \N \N \N \N \N 87025 A.odoratus Astragalus Astragalus odoratus \N \N \N \N \N 87026 M.spicata Mentha Mentha spicata spearmint \N \N \N \N 87027 \N genus Gomphostigma \N \N \N \N \N 87028 T.brunonis Tweedia Tweedia brunonis \N \N \N \N \N 87029 W.thunbergiana Wahlenbergia Wahlenbergia thunbergiana \N \N \N \N \N 87030 C.calcitrapa Cousinia Cousinia calcitrapa \N \N \N \N \N 87031 C.glabrum Clinopodium Clinopodium glabrum \N \N \N \N \N 87032 \N genus Eustachys \N \N \N \N \N 87033 V.tetrasperma Vicia Vicia tetrasperma \N \N \N \N \N 87034 M.tschonoskii Malus Malus tschonoskii \N \N \N \N \N 87035 N.scaposa Nolana Nolana scaposa \N \N \N \N \N 87036 \N genus Berrya \N \N \N \N \N 87037 \N subtribe Pleurothallidinae \N \N \N \N \N 87038 M.sinaica Moricandia Moricandia sinaica \N \N \N \N \N 87039 A.labrosa Arachnis Arachnis labrosa \N \N \N \N \N 87040 D.campanulata Dahlia Dahlia campanulata \N \N \N \N \N 87041 \N genus Psychotria \N \N \N \N \N 87042 P.JN-2011 Peperomia Peperomia sp. JN-2011 \N \N \N \N \N 87043 N.filiculmis Nassella Nassella filiculmis \N \N \N \N \N 87044 N.brachystachyus Neuracanthus Neuracanthus brachystachyus \N \N \N \N \N 87045 D.zeyheri Dianthus Dianthus zeyheri \N \N \N \N \N 87046 M.arvensis Myosotis Myosotis arvensis field forget-me-not \N \N \N \N 87047 \N genus Brachylophon \N \N \N \N \N 87048 B.intertextum Bulbophyllum Bulbophyllum intertextum \N \N \N \N \N 87049 S.sessiliflora Salacia Salacia sessiliflora \N \N \N \N \N 87050 L.hatschbachii Leandra Leandra hatschbachii \N \N \N \N \N 87051 R.nudipes Rhododendron Rhododendron nudipes \N \N \N \N \N 87052 M.endresii Maxillaria Maxillaria endresii \N \N \N \N \N 87053 V.grandis Verticordia Verticordia grandis \N \N \N \N \N 87054 T.laxum Tetrastigma Tetrastigma laxum \N \N \N \N \N 87055 M.porphyrea Malaxis Malaxis porphyrea \N \N \N \N \N 87056 H.argyrophyllum Helichrysum Helichrysum argyrophyllum \N \N \N \N \N 87057 L.arabica Lobularia Lobularia arabica \N \N \N \N \N 87058 \N genus Dendromyza \N \N \N \N \N 87059 M.grandiflora Microcos Microcos grandiflora \N \N \N \N \N 87060 H.krischae Helictotrichon Helictotrichon x krischae \N \N \N \N \N 87061 \N varietas Drimys winteri var. winteri \N \N \N \N \N 87062 C.gloriosus Ceanothus Ceanothus gloriosus \N \N \N \N \N 87063 C.pleurocarpa Crepis Crepis pleurocarpa \N \N \N \N \N 87064 C.asperata Coelogyne Coelogyne asperata \N \N \N \N \N 87065 P.peruviana Peperomia Peperomia peruviana \N \N \N \N \N 87066 A.tervequinata Andira Andira tervequinata \N \N \N \N \N 87067 \N genus Ledothamnus \N \N \N \N \N 87068 D.oligospermus Desmanthus Desmanthus oligospermus \N \N \N \N \N 87069 T.cundinamarcae Tripsacum Tripsacum cundinamarcae \N \N \N \N \N 87070 S.pancheri Solanum Solanum pancheri \N \N \N \N \N 87071 C.spiralis Ceropegia Ceropegia spiralis \N \N \N \N \N 87072 C.bugoyense Canthium Canthium bugoyense \N \N \N \N \N 87073 P.actinia Passiflora Passiflora actinia \N \N \N \N \N 87074 C.imperatoris-friderici Colchicum Colchicum imperatoris-friderici \N \N \N \N \N 87075 A.tenerum Actinostemma Actinostemma tenerum \N \N \N \N \N 87076 \N tribe Corypheae \N \N \N \N \N 87077 \N genus Gigantochloa \N \N \N \N \N 87078 B.vestita Breynia Breynia vestita \N \N \N \N \N 87079 C.guttatum Cypripedium Cypripedium guttatum \N \N \N \N \N 87080 O.andina Oxalis Oxalis andina \N \N \N \N \N 87081 A.villosum Amomum Amomum villosum sha ren \N \N \N \N 87082 S.procumbens Sagina Sagina procumbens bird-eye pearlwort \N \N \N \N 87083 H.scandens Humulus Humulus scandens \N \N \N \N \N 87084 S.tecturata Schismatoglottis Schismatoglottis tecturata \N \N \N \N \N 87085 O.villicaulis Otiophora Otiophora villicaulis \N \N \N \N \N 87086 M.matthewsii Myosotis Myosotis matthewsii \N \N \N \N \N 87087 A.californica Amorpha Amorpha californica \N \N \N \N \N 87088 H.roeperianum Hypericum Hypericum roeperianum \N \N \N \N \N 87089 F.nigropunctata Ficus Ficus nigropunctata \N \N \N \N \N 87090 C.hubaishanii Campylanthus Campylanthus hubaishanii \N \N \N \N \N 87091 C.clusiifolia Calyptranthes Calyptranthes clusiifolia \N \N \N \N \N 87092 D.vacciniifolia Dalbergia Dalbergia vacciniifolia \N \N \N \N \N 87093 B.arnhemica Bambusa Bambusa arnhemica \N \N \N \N \N 87094 P.ferox Palaquium Palaquium ferox \N \N \N \N \N 87095 D.canescens Dieteria Dieteria canescens \N \N \N \N \N 87096 \N genus Rhodochiton \N \N \N \N \N 87097 F.jimenezii Fuchsia Fuchsia jimenezii \N \N \N \N \N 87098 D.ochreatum Dendrobium Dendrobium ochreatum \N \N \N \N \N 87099 E.javanica Eria Eria javanica \N \N \N \N \N 87100 \N genus Mesoglossum \N \N \N \N \N 87101 S.davidiana Smilax Smilax davidiana \N \N \N \N \N 87102 S.decipiens Steinchisma Steinchisma decipiens \N \N \N \N \N 87103 \N genus Hermas \N \N \N \N \N 87104 S.s.n. Salicornia Salicornia sp. Bauer s.n. \N \N \N \N \N 87105 I.crandallii Iliamna Iliamna crandallii \N \N \N \N \N 87106 A.nullanulla Austrostipa Austrostipa nullanulla \N \N \N \N \N 87107 T.JK4062 unclassified Taraxacum Taraxacum sp. JK4062 \N \N \N \N \N 87108 C.pogonandra Clematis Clematis pogonandra \N \N \N \N \N 87109 E.longiflora Euclinia Euclinia longiflora \N \N \N \N \N 87110 P.drummondii Paronychia Paronychia drummondii Drummond's nailwort \N \N \N \N 87111 M.crinitum Melastoma Melastoma crinitum \N \N \N \N \N 87112 S.kanehoana Stenogyne Stenogyne kanehoana \N \N \N \N \N 87113 N.confinis Nolana Nolana confinis \N \N \N \N \N 87114 P.longepedunculata Pentanisia Pentanisia longepedunculata \N \N \N \N \N 87115 L.eriocarinalis Lonchocarpus Lonchocarpus eriocarinalis \N \N \N \N \N 87116 M.meyranii Mammillaria Mammillaria meyranii \N \N \N \N \N 87117 P.glareosus Paepalanthus Paepalanthus glareosus \N \N \N \N \N 87118 E.esmeraldense Eriogonum Eriogonum esmeraldense \N \N \N \N \N 87119 N.phoenicea Navaea Navaea phoenicea \N \N \N \N \N 87120 A.revoluta Alstroemeria Alstroemeria revoluta \N \N \N \N \N 87121 S.tridactylites Saxifraga Saxifraga tridactylites \N \N \N \N \N 87122 C.flabelliformis Cochleanthes Cochleanthes flabelliformis \N \N \N \N \N 87123 S.katochaete Saussurea Saussurea katochaete \N \N \N \N \N 87124 M.martii Macrosiphonia Macrosiphonia martii \N \N \N \N \N 87125 P.cladarophylla Plantago Plantago cladarophylla \N \N \N \N \N 87126 H.pseudopilosa Hesperantha Hesperantha pseudopilosa \N \N \N \N \N 87127 \N genus Gymnodiscus \N \N \N \N \N 87128 \N no rank unclassified Myrtaceae \N \N \N \N \N 87129 N.pinifolia Nierembergia Nierembergia pinifolia \N \N \N \N \N 87130 L.akmolinensis Leymus Leymus akmolinensis \N \N \N \N \N 87131 B.discolor Bursera Bursera discolor \N \N \N \N \N 87132 C.nemorosa Clusia Clusia nemorosa \N \N \N \N \N 87133 B.baldense Bupleurum Bupleurum baldense \N \N \N \N \N 87134 G.humilis Gonocarpus Gonocarpus humilis \N \N \N \N \N 87135 O.pocockiae Oxalis Oxalis pocockiae \N \N \N \N \N 87136 C.acaule Chamaesciadium Chamaesciadium acaule \N \N \N \N \N 87137 I.stenoptera Inga Inga stenoptera \N \N \N \N \N 87138 C.buphanoides Crinum Crinum buphanoides \N \N \N \N \N 87139 S.phaneroptera Swartzia Swartzia phaneroptera \N \N \N \N \N 87140 S.'zollingerana' Schefflera Schefflera sp. ined. 'zollingerana' \N \N \N \N \N 87141 M.incana Matthiola Matthiola incana common stock \N \N \N \N 87142 M.911 Marsdenia Marsdenia sp. Omirim 911 \N \N \N \N \N 87143 C.morreniana Catopsis Catopsis morreniana \N \N \N \N \N 87144 V.albonervata Valeriana Valeriana albonervata \N \N \N \N \N 87145 \N genus Phylacium \N \N \N \N \N 87146 H.kautskyana Hoffmannseggella Hoffmannseggella kautskyana \N \N \N \N \N 87147 R.baccata Rhagodia Rhagodia baccata \N \N \N \N \N 87148 \N genus Azanza \N \N \N \N \N 87149 M.naranjoana Manekia Manekia naranjoana \N \N \N \N \N 87150 G.caspica Gleditsia Gleditsia caspica \N \N \N \N \N 87151 M.hodgsonii Magnolia Magnolia hodgsonii \N \N \N \N \N 87152 \N genus Laurembergia \N \N \N \N \N 87153 G.frigida Gentiana Gentiana frigida \N \N \N \N \N 87154 \N varietas Trichosanthes cucumerina var. cucumerina \N \N \N \N \N 87155 A.angustifolia Arnica Arnica angustifolia \N \N \N \N \N 87156 P.cerina Pescatoria Pescatoria cerina \N \N \N \N \N 87157 S.distachyos Staberoha Staberoha distachyos \N \N \N \N \N 87158 \N genus Mandevilla \N \N \N \N \N 87159 \N subspecies Paspalum dilatatum subsp. dilatatum \N \N \N \N \N 87160 \N varietas Bidens alba var. radiata \N \N \N \N \N 87161 \N genus Sievekingia \N \N \N \N \N 87162 P.noemiae Parnassia Parnassia noemiae \N \N \N \N \N 87163 \N genus Bifrenaria \N \N \N \N \N 87164 E.cleistogamum Epilobium Epilobium cleistogamum \N \N \N \N \N 87165 P.longifolia Parapachygone Parapachygone longifolia \N \N \N \N \N 87166 V.ceratophylla Valeriana Valeriana ceratophylla \N \N \N \N \N 87167 B.diffusa Boltonia Boltonia diffusa \N \N \N \N \N 87168 E.pulverulenta Escallonia Escallonia pulverulenta \N \N \N \N \N 87169 S.salicaria Schiedea Schiedea salicaria \N \N \N \N \N 87170 \N varietas Michelia figo var. crassipes \N \N \N \N \N 87171 F.stylosa Ferula Ferula stylosa \N \N \N \N \N 87172 P.macrantha Persicaria Persicaria macrantha \N \N \N \N \N 87173 \N genus Harpachne \N \N \N \N \N 87174 L.pauciflora Levenhookia Levenhookia pauciflora \N \N \N \N \N 87175 P.villosum Paphiopedilum Paphiopedilum villosum \N \N \N \N \N 87176 B.prainiana Boesenbergia Boesenbergia prainiana \N \N \N \N \N 87177 C.dalmatica Cota Cota dalmatica \N \N \N \N \N 87178 A.gypsophiloides Arenaria Arenaria gypsophiloides \N \N \N \N \N 87179 A.altum Achnatherum Achnatherum altum \N \N \N \N \N 87180 D.DraB30 Draba Draba sp. DraB30 \N \N \N \N \N 87181 \N genus Leporella \N \N \N \N \N 87182 S.neoanglicum Solanum Solanum neoanglicum \N \N \N \N \N 87183 P.grantii Pachycarpus Pachycarpus grantii \N \N \N \N \N 87184 E.niveus Edraianthus Edraianthus niveus \N \N \N \N \N 87185 D.capensis Disperis Disperis capensis \N \N \N \N \N 87186 S.dracophylloides Sphenotoma Sphenotoma dracophylloides \N \N \N \N \N 87187 \N genus Catapodium \N \N \N \N \N 87188 \N genus Decazesia \N \N \N \N \N 87189 R.robinsonii Rhododendron Rhododendron robinsonii \N \N \N \N \N 87190 H.wagneriana Heliconia Heliconia wagneriana \N \N \N \N \N 87191 E.edwardsii Eutrema Eutrema edwardsii \N \N \N \N \N 87192 \N genus Eremophyton \N \N \N \N \N 87193 A.bocainensis Aechmea Aechmea bocainensis \N \N \N \N \N 87194 S.alnifolia Sida Sida alnifolia \N \N \N \N \N 87195 G.flavum Glaucium Glaucium flavum \N \N \N \N \N 87196 X.hispidula Xylosma Xylosma hispidula \N \N \N \N \N 87197 \N genus Blepharis \N \N \N \N \N 87198 X.pyriforme Xylomelum Xylomelum pyriforme \N \N \N \N \N 87199 \N varietas Lycopus europaeus var. exaltatus \N \N \N \N \N 87200 I.sodenii Impatiens Impatiens sodenii \N \N \N \N \N 87201 \N genus Veronica brooklimes,speedwells \N \N \N \N 87202 B.platycarpa Begonia Begonia platycarpa \N \N \N \N \N 87203 \N genus Eriosyce \N \N \N \N \N 87204 P.14071 Persea Persea sp. van der Werff 14071 \N \N \N \N \N 87205 R.pinnata Rodgersia Rodgersia pinnata \N \N \N \N \N 87206 A.incana Artemisia Artemisia incana \N \N \N \N \N 87207 M.ramosissima Montiopsis Montiopsis ramosissima \N \N \N \N \N 87208 \N genus Carnarvonia \N \N \N \N \N 87209 T.fruticans Teucrium Teucrium fruticans tree germander \N \N \N \N 87210 P.3567 Prescottia Prescottia aff. stachyodes Salazar 3567 \N \N \N \N \N 87211 Q.austroglauca Quercus Quercus austroglauca \N \N \N \N \N 87212 B.alveolata Begonia Begonia alveolata \N \N \N \N \N 87213 L.merinoi Leucanthemum Leucanthemum merinoi \N \N \N \N \N 87214 A.rosei Acaciella Acaciella rosei \N \N \N \N \N 87215 H.cryptophila Habenaria Habenaria cryptophila \N \N \N \N \N 87216 \N subspecies Halosarcia indica subsp. bidens \N \N \N \N \N 87217 V.riparia Vitis Vitis riparia frost grape,riverbank grape \N \N \N \N 87218 Z.uzungwaensis Zimmermanniopsis Zimmermanniopsis uzungwaensis \N \N \N \N \N 87219 M.media Microtis Microtis media \N \N \N \N \N 87220 S.lanceolata Symplocos Symplocos lanceolata \N \N \N \N \N 87221 A.spruceanum Anacardium Anacardium spruceanum \N \N \N \N \N 87222 A.johnstonii Astragalus Astragalus johnstonii \N \N \N \N \N 87223 C.cupreatus Croton Croton cupreatus \N \N \N \N \N 87224 L.ochrus Lathyrus Lathyrus ochrus yellow-flowered pea \N \N \N \N 87225 F.fistulosa Ficus Ficus fistulosa \N \N \N \N \N 87226 \N subspecies Gilia sinistra subsp. pinnatisecta \N \N \N \N \N 87227 H.dekianum Hedychium Hedychium dekianum \N \N \N \N \N 87228 G.hispanica Genista Genista hispanica \N \N \N \N \N 87229 C.lancifolia Clavija Clavija lancifolia \N \N \N \N \N 87230 B.oxycalyx Bulbophyllum Bulbophyllum oxycalyx \N \N \N \N \N 87231 E.giganteum Eryngium Eryngium giganteum \N \N \N \N \N 87232 P.amplexicaulis Poa Poa amplexicaulis \N \N \N \N \N 87233 H.meraukensis Hibiscus Hibiscus meraukensis \N \N \N \N \N 87234 M.pruinosa Macaranga Macaranga pruinosa \N \N \N \N \N 87235 H.comosa Helminthotheca Helminthotheca comosa \N \N \N \N \N 87236 \N genus Raritebe \N \N \N \N \N 87237 B.armata Brahea Brahea armata \N \N \N \N \N 87238 S.glabra Sarcandra Sarcandra glabra \N \N \N \N \N 87239 H.foetidum Helichrysum Helichrysum foetidum \N \N \N \N \N 87240 G.lanceolata Gentianopsis Gentianopsis lanceolata \N \N \N \N \N 87241 C.gracilis Clarkia Clarkia gracilis \N \N \N \N \N 87242 \N subspecies Clinopodium vulgare subsp. arundanum \N \N \N \N \N 87243 C.399a Clusia Clusia sp. HG 399a \N \N \N \N \N 87244 A.merxmuelleri Andrachne Andrachne merxmuelleri \N \N \N \N \N 87245 P.macrophylla Pseuduvaria Pseuduvaria macrophylla \N \N \N \N \N 87246 C.pancheri Coronanthera Coronanthera pancheri \N \N \N \N \N 87247 \N genus Micropus \N \N \N \N \N 87248 L.547121 Leymus Leymus sp. PI 547121 \N \N \N \N \N 87249 C.rosea Cleistes Cleistes rosea \N \N \N \N \N 87250 R.SH-2010 Ruta Ruta sp. SH-2010 \N \N \N \N \N 87251 \N genus Boholia \N \N \N \N \N 87252 I.diffusa Iresine Iresine diffusa Juba's bush \N \N \N \N 87253 S.aristata Scorzonera Scorzonera aristata \N \N \N \N \N 87254 S.hookeri Scaevola Scaevola hookeri \N \N \N \N \N 87255 O.6509 Orobanche Orobanche cf. rosmarina Jeanmonod 6509 \N \N \N \N \N 87256 \N subspecies Eucalyptus racemosa subsp. racemosa \N \N \N \N \N 87257 N.cymbopetala Nasa Nasa cymbopetala \N \N \N \N \N 87258 L.trigonus Lobostemon Lobostemon trigonus \N \N \N \N \N 87259 M.heckelii Mauloutchia Mauloutchia heckelii \N \N \N \N \N 87260 S.umbellata Schefflera Schefflera umbellata \N \N \N \N \N 87261 \N genus Masoala \N \N \N \N \N 87262 N.obtusifolium Nardophyllum Nardophyllum obtusifolium \N \N \N \N \N 87263 \N genus Blennodia \N \N \N \N \N 87264 S.candicans Saussurea Saussurea candicans \N \N \N \N \N 87265 P.heterophyllus Pilocarpus Pilocarpus heterophyllus \N \N \N \N \N 87266 S.redofskyi Saxifraga Saxifraga redofskyi \N \N \N \N \N 87267 S.acuminata Suaeda Suaeda acuminata \N \N \N \N \N 87268 A.stipuligera Acacia Acacia stipuligera \N \N \N \N \N 87269 N.plena Neoalsomitra Neoalsomitra plena \N \N \N \N \N 87270 \N tribe Hypocalypteae \N \N \N \N \N 87271 L.balansae Lepidaploa Lepidaploa balansae \N \N \N \N \N 87272 R.sanguinea Restrepia Restrepia sanguinea \N \N \N \N \N 87273 G.jamesonii Gerbera Gerbera jamesonii Transvaal daisy \N \N \N \N 87274 T.mesopotamica Trigonella Trigonella mesopotamica \N \N \N \N \N 87275 C.tuerckheimii Chamaedorea Chamaedorea tuerckheimii \N \N \N \N \N 87276 E.PB-2011 Euphorbia Euphorbia sp. 2 PB-2011 \N \N \N \N \N 87277 B.leptoptera Begonia Begonia leptoptera \N \N \N \N \N 87278 \N genus Fioria \N \N \N \N \N 87279 E.nevadense Epilobium Epilobium nevadense \N \N \N \N \N 87280 A.papillifolia Aristolochia Aristolochia papillifolia \N \N \N \N \N 87281 K.celebicum Kjellbergiodendron Kjellbergiodendron celebicum \N \N \N \N \N 87282 B.ramosii Begonia Begonia ramosii \N \N \N \N \N 87283 A.indica Artemisia Artemisia indica \N \N \N \N \N 87284 I.parasitica Ipomoea Ipomoea parasitica \N \N \N \N \N 87285 R.amazonicum Rhabdodendron Rhabdodendron amazonicum \N \N \N \N \N 87286 C.sinensis Cordia Cordia sinensis \N \N \N \N \N 87287 \N varietas Cerinthe major var. purpurascens \N \N \N \N \N 87288 M.collina Moraea Moraea collina \N \N \N \N \N 87289 \N genus Pteroselinum \N \N \N \N \N 87290 S.paraibanum Solanum Solanum paraibanum \N \N \N \N \N 87291 A.acuta Adenia Adenia acuta \N \N \N \N \N 87292 O.7481 Orobanche Orobanche cf. gracilis HST 7481 \N \N \N \N \N 87293 A.graveolens Astronium Astronium graveolens \N \N \N \N \N 87294 R.vaccinioides Rhododendron Rhododendron vaccinioides \N \N \N \N \N 87295 M.tomentella Microlicia Microlicia tomentella \N \N \N \N \N 87296 L.crenata Lomelosia Lomelosia crenata \N \N \N \N \N 87297 D.intortum Desmodium Desmodium intortum amor seco,beggarlice \N \N \N \N 87298 C.yunnanensis Camellia Camellia yunnanensis \N \N \N \N \N 87299 P.sinensis Pyrularia Pyrularia sinensis \N \N \N \N \N 87300 B.tulda Bambusa Bambusa tulda \N \N \N \N \N 87301 \N genus Pteropyrum \N \N \N \N \N 87302 B.nobilis Blandfordia Blandfordia nobilis \N \N \N \N \N 87303 S.orinocensis Syagrus Syagrus orinocensis \N \N \N \N \N 87304 S.densiflora Spartina Spartina alterniflora x Spartina densiflora \N \N \N \N \N 87305 A.altyncolicum Allium Allium altyncolicum \N \N \N \N \N 87306 B.texensis Bromus Bromus texensis \N \N \N \N \N 87307 M.tricuspidata Matthiola Matthiola tricuspidata \N \N \N \N \N 87308 E.spectabilis Erica Erica spectabilis \N \N \N \N \N 87309 F.paraensis Ficus Ficus paraensis \N \N \N \N \N 87310 \N genus Kirkianella \N \N \N \N \N 87311 A.anthelmia Andira Andira anthelmia \N \N \N \N \N 87312 H.philaenorum Heteromera Heteromera philaenorum \N \N \N \N \N 87313 T.micans Teramnus Teramnus micans \N \N \N \N \N 87314 \N varietas Vigna linearis var. latifolia \N \N \N \N \N 87315 G.longicuspis Glossocalyx Glossocalyx longicuspis \N \N \N \N \N 87316 M.erythroloma Macroptilium Macroptilium erythroloma \N \N \N \N \N 87317 M.megacarpum Merrilliodendron Merrilliodendron megacarpum \N \N \N \N \N 87318 S.beraviensis Stictocardia Stictocardia beraviensis \N \N \N \N \N 87319 C.tortuosa Castela Castela tortuosa \N \N \N \N \N 87320 G.greenmanii Grindelia Grindelia greenmanii \N \N \N \N \N 87321 S.diplotricha Saintpaulia Saintpaulia diplotricha \N \N \N \N \N 87322 A.confusa Acacia Acacia confusa \N \N \N \N \N 87323 P.secunda Poa Poa secunda big bluegrass \N \N \N \N 87324 O.benacensis Ophrys Ophrys benacensis \N \N \N \N \N 87325 R.glaria Rachelia Rachelia glaria \N \N \N \N \N 87326 \N genus Thelypodium \N \N \N \N \N 87327 T.brevirhachis Tuberolabium Tuberolabium brevirhachis \N \N \N \N \N 87328 A.SB050 Aerides Aerides aff. lawrenciae SB050 \N \N \N \N \N 87329 \N genus Dasyphyllum \N \N \N \N \N 87330 W.angusta Wolffia Wolffia angusta \N \N \N \N \N 87331 I.bongardiana Indigofera Indigofera bongardiana \N \N \N \N \N 87332 E.macrostachya Elizabetha Elizabetha macrostachya \N \N \N \N \N 87333 C.iberica Centaurea Centaurea iberica Iberian star thistle \N \N \N \N 87334 A.decorum Aeonium Aeonium decorum \N \N \N \N \N 87335 I.arborescens Ipomoea Ipomoea arborescens \N \N \N \N \N 87336 P.bureaviana Pterostylis Pterostylis bureaviana \N \N \N \N \N 87337 K.rapensis Kadua Kadua rapensis \N \N \N \N \N 87338 B.laevis Bidens Bidens laevis \N \N \N \N \N 87339 I.rhynchocarpa Indigofera Indigofera rhynchocarpa \N \N \N \N \N 87340 R.ehrenbergii Rhynchostele Rhynchostele ehrenbergii \N \N \N \N \N 87341 L.angustus Leymus Leymus angustus \N \N \N \N \N 87342 \N genus Ligustrum privets \N \N \N \N 87343 R.sumatrana Rauvolfia Rauvolfia sumatrana \N \N \N \N \N 87344 \N genus Ixyophora \N \N \N \N \N 87345 O.undulatifolius Oplismenus Oplismenus undulatifolius \N \N \N \N \N 87346 \N subspecies Arctostaphylos manzanita subsp. glaucescens \N \N \N \N \N 87347 C.capensis Centella Centella capensis \N \N \N \N \N 87348 E.resinosa Ehretia Ehretia resinosa \N \N \N \N \N 87349 O.reichenbachii Oncidium Oncidium reichenbachii \N \N \N \N \N 87350 S.aspera Striga Striga aspera \N \N \N \N \N 87351 T.gracilis Tachiadenus Tachiadenus gracilis \N \N \N \N \N 87352 M.tritoides Microcharis Microcharis tritoides \N \N \N \N \N 87353 H.daucifolia Horkelia Horkelia daucifolia \N \N \N \N \N 87354 O.baueri Oncidium Oncidium baueri \N \N \N \N \N 87355 A.edulis Astragalus Astragalus edulis \N \N \N \N \N 87356 H.delavayi Hemsleya Hemsleya delavayi \N \N \N \N \N 87357 D.MP-2011 Dipcadi Dipcadi sp. 1 MP-2011 \N \N \N \N \N 87358 \N genus Alnus alders \N \N \N \N 87359 B.formosa Besleria Besleria formosa \N \N \N \N \N 87360 E.brachyandra Eucalyptus Eucalyptus brachyandra \N \N \N \N \N 87361 L.asterias Loasa Loasa asterias \N \N \N \N \N 87362 S.koreanus Sinosenecio Sinosenecio koreanus \N \N \N \N \N 87363 I.fagifer Inocarpus Inocarpus fagifer \N \N \N \N \N 87364 \N varietas Cercis canadensis var. texensis Texas redbud \N \N \N \N 87365 D.clavata Dendrophthora Dendrophthora clavata Columbian mistletoe \N \N \N \N 87366 V.inopinatum Viburnum Viburnum inopinatum \N \N \N \N \N 87367 C.breviseta Commersonia Commersonia breviseta \N \N \N \N \N 87368 M.diffusa Metrosideros Metrosideros diffusa \N \N \N \N \N 87369 S.mannii Sclerosperma Sclerosperma mannii \N \N \N \N \N 87370 N.hexarrhena Newcastelia Newcastelia hexarrhena \N \N \N \N \N 87371 \N genus Boscia \N \N \N \N \N 87372 I.kerriae Impatiens Impatiens kerriae \N \N \N \N \N 87373 I.torulosa Indigofera Indigofera torulosa \N \N \N \N \N 87374 C.floribundus Croton Croton floribundus \N \N \N \N \N 87375 S.eumorpha Sinningia Sinningia eumorpha \N \N \N \N \N 87376 I.takhtajanii Isatis Isatis takhtajanii \N \N \N \N \N 87377 E.dunensis Eleocharis Eleocharis dunensis \N \N \N \N \N 87378 B.sagittata Blumea Blumea sagittata \N \N \N \N \N 87379 S.ternata Schefflera Schefflera ternata \N \N \N \N \N 87380 C.SH-2010 Cissus Cissus sp. SH-2010 \N \N \N \N \N 87381 S.talbotiae Strychnos Strychnos talbotiae \N \N \N \N \N 87382 D.wallisii Dracula Dracula wallisii \N \N \N \N \N 87383 \N genus Sibbaldia \N \N \N \N \N 87384 G.annulatus Gelidocalamus Gelidocalamus annulatus \N \N \N \N \N 87385 H.verticillatus Helianthus Helianthus verticillatus \N \N \N \N \N 87386 S.sargentii Silene Silene sargentii \N \N \N \N \N 87387 T.lappacea Taverniera Taverniera lappacea \N \N \N \N \N 87388 A.rechingeri Androcymbium Androcymbium rechingeri \N \N \N \N \N 87389 \N subspecies Pimelea sericostachya subsp. amabilis \N \N \N \N \N 87390 \N genus Olimarabidopsis \N \N \N \N \N 87391 \N genus Mollinedia \N \N \N \N \N 87392 D.maura Drimia Drimia maura \N \N \N \N \N 87393 G.guianensis Genlisea Genlisea guianensis \N \N \N \N \N 87394 \N genus Leonia \N \N \N \N \N 87395 P.quinquefolius Panax Panax quinquefolius \N \N \N \N \N 87396 N.NY450 Nymphaea Nymphaea cf. immutabilis NY450 \N \N \N \N \N 87397 C.398 Croton Croton sp. Gonzalez 398 \N \N \N \N \N 87398 I.sarmentosa Indigofera Indigofera sarmentosa \N \N \N \N \N 87399 M.laxiflora Myricaria Myricaria laxiflora \N \N \N \N \N 87400 F.ischnopoda Ficus Ficus ischnopoda \N \N \N \N \N 87401 D.rezekiana Dracula Dracula rezekiana \N \N \N \N \N 87402 C.scipionum Calamus Calamus scipionum \N \N \N \N \N 87403 H.henryi Hypericum Hypericum henryi \N \N \N \N \N 87404 M.densispina Mammillaria Mammillaria densispina \N \N \N \N \N 87405 \N subspecies Impatiens burtonii subsp. burtonii \N \N \N \N \N 87406 N.macranthum Nematoceras Nematoceras macranthum \N \N \N \N \N 87407 A.bartramiana Amelanchier Amelanchier bartramiana mountain shadbush \N \N \N \N 87408 H.TDP16995 Hymenolobium Hymenolobium sp. TDP16995 \N \N \N \N \N 87409 C.caerulea Catananche Catananche caerulea \N \N \N \N \N 87410 \N genus Hymenothrix \N \N \N \N \N 87411 M.setigera Maxillaria Maxillaria setigera \N \N \N \N \N 87412 P.montana Pentaschistis Pentameris montana \N \N \N \N \N 87413 C.diurnum Cestrum Cestrum diurnum day-jessamine \N \N \N \N 87414 E.ceroderma Euphorbia Euphorbia ceroderma \N \N \N \N \N 87415 \N genus Margyricarpus \N \N \N \N \N 87416 S.galericulata Scutellaria Scutellaria galericulata marsh skullcap \N \N \N \N 87417 P.crantzii Potentilla Potentilla crantzii \N \N \N \N \N 87418 G.106 Gnidia Gnidia sp. Rogers et al. 106 \N \N \N \N \N 87419 B.paradoxa Bursera Bursera paradoxa \N \N \N \N \N 87420 B.dentata Brachyscome Brachyscome dentata \N \N \N \N \N 87421 H.111 Hypenia Hypenia sp. Forzza et al 111 \N \N \N \N \N 87422 T.thyrsoideus Thysanotus Thysanotus thyrsoideus \N \N \N \N \N 87423 A.elegans Allium Allium elegans \N \N \N \N \N 87424 \N genus Hemithrinax \N \N \N \N \N 87425 C.oblongifolia Chrozophora Chrozophora oblongifolia \N \N \N \N \N 87426 P.parviflora Potamophila Potamophila parviflora \N \N \N \N \N 87427 P.bilocularis Polianthion Polianthion bilocularis \N \N \N \N \N 87428 \N subspecies Erysimum menziesii subsp. eurekense \N \N \N \N \N 87429 A.pratensis Alopecurus Alopecurus pratensis foxtail \N \N \N \N 87430 \N genus Jumelleanthus \N \N \N \N \N 87431 C.ulicina Chuquiraga Chuquiraga ulicina \N \N \N \N \N 87432 L.africana Leeuwenbergia Leeuwenbergia africana \N \N \N \N \N 87433 H.ulicina Horaninovia Horaninovia ulicina \N \N \N \N \N 87434 S.subciliata Silene Silene subciliata Louisiana catchfly \N \N \N \N 87435 T.junodii Tricalysia Tricalysia junodii \N \N \N \N \N 87436 \N genus Chenopodium \N \N \N \N \N 87437 S.bullatus Streptocarpus Streptocarpus bullatus \N \N \N \N \N 87438 E.alatus Euonymus Euonymus alatus burningbush,winged euonymus \N \N \N \N 87439 L.rubicunda Litsea Litsea rubicunda \N \N \N \N \N 87440 H.squamulosa Henriettea Henriettea squamulosa \N \N \N \N \N 87441 V.s.n. Vallisneria Vallisneria sp. Christensen s.n. \N \N \N \N \N 87442 B.phoenicanthera Brasiliorchis Brasiliorchis phoenicanthera \N \N \N \N \N 87443 C.wrightii Chrysosplenium Chrysosplenium wrightii \N \N \N \N \N 87444 C.longipetiolata Cornukaempferia Cornukaempferia longipetiolata \N \N \N \N \N 87445 C.arenarium Colchicum Colchicum arenarium \N \N \N \N \N 87446 L.quinquenervius Loxocalyx Loxocalyx quinquenervius \N \N \N \N \N 87447 O.mitrasacmoides Oldenlandia Oldenlandia mitrasacmoides \N \N \N \N \N 87448 V.filiformis Veronica Veronica filiformis creeping speedwell \N \N \N \N 87449 C.argutedentatum Citharexylum Citharexylum argutedentatum \N \N \N \N \N 87450 P.merrilliana Primula Primula merrilliana \N \N \N \N \N 87451 U.kamienskii Utricularia Utricularia kamienskii \N \N \N \N \N 87452 S.laciniata Scorzonera Scorzonera laciniata \N \N \N \N \N 87453 N.salicifolia Nectandra Nectandra salicifolia \N \N \N \N \N 87454 L.juniperinum Lomatium Lomatium juniperinum \N \N \N \N \N 87455 B.00116 Begonia Begonia sp. Mendum et al. 00116 \N \N \N \N \N 87456 B.tetrandra Bikkia Bikkia tetrandra \N \N \N \N \N 87457 D.affinis Diploclisia Diploclisia affinis \N \N \N \N \N 87458 M.iltisiana Magnolia Magnolia iltisiana \N \N \N \N \N 87459 A.datylio Agave Agave datylio \N \N \N \N \N 87460 E.californica Extriplex Extriplex californica \N \N \N \N \N 87461 S.geniculata Setaria Setaria geniculata \N \N \N \N \N 87462 D.rhizomata Daviesia Daviesia rhizomata \N \N \N \N \N 87463 C.cicatricosa Caralluma Caralluma cicatricosa \N \N \N \N \N 87464 E.99051 Elatine Elatine sp. Qiu 99051 \N \N \N \N \N 87465 M.platytyrea Myrmecodia Myrmecodia platytyrea \N \N \N \N \N 87466 \N subspecies Psathyrostachys fragilis subsp. secaliformis \N \N \N \N \N 87467 B.ecklonii Babiana Babiana ecklonii \N \N \N \N \N 87468 C.davidianum Chrysosplenium Chrysosplenium davidianum \N \N \N \N \N 87469 \N varietas Eleutherococcus divaricatus var. chiisanensis \N \N \N \N \N 87470 E.stenophyllum Exostema Exostema stenophyllum \N \N \N \N \N 87471 B.duckeana Byrsonima Byrsonima duckeana \N \N \N \N \N 87472 M.caloxylon Merrillia Merrillia caloxylon katinga \N \N \N \N 87473 E.beketowii Erodium Erodium beketowii \N \N \N \N \N 87474 \N subspecies Plantago spathulata subsp. spathulata \N \N \N \N \N 87475 \N genus Eremopyrum \N \N \N \N \N 87476 \N genus Rydingia \N \N \N \N \N 87477 P.cyathophylla Pedicularis Pedicularis cyathophylla \N \N \N \N \N 87478 P.creethiae Parakeelya Parakeelya creethiae \N \N \N \N \N 87479 O.simia Orchis Orchis simia \N \N \N \N \N 87480 M.rimalis Miconia Miconia rimalis \N \N \N \N \N 87481 R.majalis Rhynchostele Rhynchostele majalis \N \N \N \N \N 87482 S.arboricola Schefflera Schefflera arboricola \N \N \N \N \N 87483 A.schiedeana Aristida Aristida schiedeana \N \N \N \N \N 87484 \N genus Kalidium \N \N \N \N \N 87485 T.TL263-3 unclassified Taraxacum Taraxacum (sect. Naevosa) sp. TL263-3 \N \N \N \N \N 87486 L.oxyptera Lotononis Lotononis oxyptera \N \N \N \N \N 87487 \N subspecies Acer saccharum subsp. leucoderme \N \N \N \N \N 87488 L.castellani Lampayo Lampayo castellani \N \N \N \N \N 87489 H.minor Halophila Halophila minor \N \N \N \N \N 87490 M.gracilipes Meconopsis Meconopsis gracilipes \N \N \N \N \N 87491 S.fauces-orci Sonchus Sonchus fauces-orci \N \N \N \N \N 87492 C.tincta Carex Carex tincta \N \N \N \N \N 87493 T.hispidissima Tiquilia Tiquilia hispidissima \N \N \N \N \N 87494 M.matritensis Muscari Muscari matritensis \N \N \N \N \N 87495 \N subspecies Phebalium squamulosum subsp. ozothamnoides \N \N \N \N \N 87496 R.eastmanii Rhododendron Rhododendron eastmanii \N \N \N \N \N 87497 S.elegans Salvia Salvia elegans \N \N \N \N \N 87498 O.ouricanense Oncidium Oncidium ouricanense \N \N \N \N \N 87499 E.hoehnelii Echinops Echinops hoehnelii \N \N \N \N \N 87500 D.cibrarius Dianthus Dianthus cibrarius \N \N \N \N \N 87501 A.caeruleum Allium Allium caeruleum \N \N \N \N \N 87502 C.thyrsoides Campanula Campanula thyrsoides \N \N \N \N \N 87503 D.roei Didymanthus Didymanthus roei \N \N \N \N \N 87504 L.obscura Lichtensteinia Lichtensteinia obscura \N \N \N \N \N 87505 O.multiflorus Ochrocarpos Ochrocarpos multiflorus \N \N \N \N \N 87506 F.pubescens Flaveria Flaveria pubescens \N \N \N \N \N 87507 E.simulans Erica Erica simulans \N \N \N \N \N 87508 T.diffusum Trifolium Trifolium diffusum \N \N \N \N \N 87509 \N genus Adinandra \N \N \N \N \N 87510 L.anhuiensis Lycoris Lycoris anhuiensis \N \N \N \N \N 87511 A.aurea Anthyllis Anthyllis aurea \N \N \N \N \N 87512 M.carretii Mammillaria Mammillaria carretii \N \N \N \N \N 87513 P.longiflora Parsonsia Parsonsia longiflora \N \N \N \N \N 87514 B.jaculifolia Byttneria Byttneria jaculifolia \N \N \N \N \N 87515 P.glomerata Ponera Ponera glomerata \N \N \N \N \N 87516 \N genus Muehlenbeckia \N \N \N \N \N 87517 \N genus Pothoidium \N \N \N \N \N 87518 D.macrostachya Dimorphandra Dimorphandra macrostachya \N \N \N \N \N 87519 C.oblonga Columellia Columellia oblonga \N \N \N \N \N 87520 R.caracolito Ruptiliocarpon Ruptiliocarpon caracolito \N \N \N \N \N 87521 C.sparsiflora Calceolaria Calceolaria sparsiflora \N \N \N \N \N 87522 E.barbellulatus Erigeron Erigeron barbellulatus \N \N \N \N \N 87523 \N genus Schaffnerella \N \N \N \N \N 87524 C.2191 Carpolobia Carpolobia aff. goetzei Luke and Robertson 2191 \N \N \N \N \N 87525 M.bracteata Melaleuca Melaleuca bracteata \N \N \N \N \N 87526 \N genus Helianthella \N \N \N \N \N 87527 R.battandieri Reseda Reseda battandieri \N \N \N \N \N 87528 P.golungensis Polystachya Polystachya golungensis \N \N \N \N \N 87529 C.purpureus Charianthus Charianthus purpureus \N \N \N \N \N 87530 \N genus Euchilopsis \N \N \N \N \N 87531 A.longifolius Acridocarpus Acridocarpus longifolius \N \N \N \N \N 87532 I.sedgewickiana Indigofera Indigofera sedgewickiana \N \N \N \N \N 87533 E.canaliculatus Elymus Elymus canaliculatus \N \N \N \N \N 87534 C.pedunculata Commiphora Commiphora pedunculata \N \N \N \N \N 87535 I.monticola Ipomopsis Ipomopsis monticola \N \N \N \N \N 87536 C.giganteum Cardiocrinum Cardiocrinum giganteum \N \N \N \N \N 87537 T.argentinum Tropaeolum Tropaeolum argentinum \N \N \N \N \N 87538 U.rhynchophylla Uncaria Uncaria rhynchophylla \N \N \N \N \N 87539 S.ningpoensis Scrophularia Scrophularia ningpoensis xuan shen \N \N \N \N 87540 \N genus Upuna \N \N \N \N \N 87541 \N varietas Lysimachia japonica var. minutissima \N \N \N \N \N 87542 P.tenuiflora Pristimera Pristimera tenuiflora \N \N \N \N \N 87543 M.tetrancistra Mammillaria Mammillaria tetrancistra \N \N \N \N \N 87544 L.amethystea Linaria Linaria amethystea \N \N \N \N \N 87545 C.strigulosa Cuphea Cuphea strigulosa \N \N \N \N \N 87546 S.tieghemii Scytopetalum Scytopetalum tieghemii \N \N \N \N \N 87547 N.gammieana Nervilia Nervilia gammieana \N \N \N \N \N 87548 F.charoides Fagonia Fagonia charoides \N \N \N \N \N 87549 H.hypopityforme Hieracium Hieracium hypopityforme \N \N \N \N \N 87550 S.pusilla Sinningia Sinningia pusilla \N \N \N \N \N 87551 \N genus Smithiantha \N \N \N \N \N 87552 \N genus Notobubon \N \N \N \N \N 87553 A.plantaginifolia Antennaria Antennaria plantaginifolia \N \N \N \N \N 87554 I.loxense Iochroma Iochroma loxense \N \N \N \N \N 87555 \N genus Leptothrium \N \N \N \N \N 87556 \N genus Streblacanthus \N \N \N \N \N 87557 C.A13 Castanopsis Castanopsis sp. A13 \N \N \N \N \N 87558 G.munzii Galium Galium munzii \N \N \N \N \N 87559 V.vindobonensis Veronica Veronica vindobonensis \N \N \N \N \N 87560 \N genus Capsicodendron \N \N \N \N \N 87561 F.tremula Ficus Ficus tremula \N \N \N \N \N 87562 B.ledifolia Bejaria Bejaria ledifolia \N \N \N \N \N 87563 \N genus Desbordesia \N \N \N \N \N 87564 O.sinensis Oxyria Oxyria sinensis \N \N \N \N \N 87565 C.browniana Cliffortia Cliffortia browniana \N \N \N \N \N 87566 S.heiseri Solanum Solanum heiseri \N \N \N \N \N 87567 P.angusticarpum Prosopidastrum Prosopidastrum angusticarpum \N \N \N \N \N 87568 G.trifidum Galium Galium trifidum \N \N \N \N \N 87569 D.repens Dianthus Dianthus repens \N \N \N \N \N 87570 F.laevicarpa Flindersia Flindersia laevicarpa \N \N \N \N \N 87571 C.schomburgkianus Cyperus Cyperus schomburgkianus \N \N \N \N \N 87572 F.538 Fragaria Fragaria sp. CFRA 538 \N \N \N \N \N 87573 \N genus Roscoea \N \N \N \N \N 87574 D.tenuissimum Diplodium Diplodium tenuissimum \N \N \N \N \N 87575 M.canariensis Malva Malva canariensis \N \N \N \N \N 87576 S.pruriens Sphedamnocarpus Sphedamnocarpus pruriens \N \N \N \N \N 87577 E.hispidulus Exhalimolobos Exhalimolobos hispidulus \N \N \N \N \N 87578 G.trifoliata Glycosmis Glycosmis trifoliata \N \N \N \N \N 87579 C.conspurcatus Croton Croton conspurcatus \N \N \N \N \N 87580 S.isophylla Saxifraga Saxifraga isophylla \N \N \N \N \N 87581 C.woodii Combretum Combretum woodii \N \N \N \N \N 87582 P.hirsutissimum Paphiopedilum Paphiopedilum hirsutissimum \N \N \N \N \N 87583 L.maroccana Lotononis Lotononis maroccana \N \N \N \N \N 87584 M.inconspicua Miconia Miconia inconspicua \N \N \N \N \N 87585 S.marginata Scopellaria Scopellaria marginata \N \N \N \N \N 87586 P.perakensis Passiflora Passiflora perakensis \N \N \N \N \N 87587 B.buceras Bucida Bucida buceras \N \N \N \N \N 87588 D.californica Descurainia Descurainia californica Sierra tansymustard \N \N \N \N 87589 S.pictus Scindapsus Scindapsus pictus \N \N \N \N \N 87590 \N genus Sphaerocyperus \N \N \N \N \N 87591 A.barbinerve Acer Acer barbinerve \N \N \N \N \N 87592 A.amphopogonoides Amphipogon Amphipogon amphopogonoides \N \N \N \N \N 87593 \N varietas Ceanothus foliosus var. medius \N \N \N \N \N 87594 J.violacea Jovellana Jovellana violacea \N \N \N \N \N 87595 \N subspecies Clerodendrum cephalanthum subsp. mashariki \N \N \N \N \N 87596 \N genus Borreria \N \N \N \N \N 87597 A.infesta Adolphia Adolphia infesta junco \N \N \N \N 87598 \N genus Pseudocinchona \N \N \N \N \N 87599 S.122933 Sarcochilus Sarcochilus sp. Heidelberg BG 122933 \N \N \N \N \N 87600 H.tarapotensis Himatanthus Himatanthus tarapotensis \N \N \N \N \N 87601 A.caerulescens Artemisia Artemisia caerulescens \N \N \N \N \N 87602 M.mandrarensis Madagaster Madagaster mandrarensis \N \N \N \N \N 87603 A.vinaceus Aeschynanthus Aeschynanthus vinaceus \N \N \N \N \N 87604 L.bullata Lophomyrtus Lophomyrtus bullata \N \N \N \N \N 87605 H.unisiliquosa Hippocrepis Hippocrepis unisiliquosa \N \N \N \N \N 87606 M.xylocarpum Melliodendron Melliodendron xylocarpum \N \N \N \N \N 87607 L.malajana Licuala Licuala malajana \N \N \N \N \N 87608 E.chionanthum Epilobium Epilobium chionanthum \N \N \N \N \N 87609 B.globosa Buddleja Buddleja globosa \N \N \N \N \N 87610 \N genus Disporopsis \N \N \N \N \N 87611 G.angustifolia Guadua Guadua angustifolia \N \N \N \N \N 87612 H.breviscapum Hieracium Hieracium breviscapum \N \N \N \N \N 87613 L.flavum Lithospermum Lithospermum flavum \N \N \N \N \N 87614 C.nigrescens Crepis Crepis nigrescens \N \N \N \N \N 87615 L.pleurocaulis Ligularia Ligularia pleurocaulis \N \N \N \N \N 87616 A.MAG-2009 Andira Andira sp. MAG-2009 \N \N \N \N \N 87618 P.bowkeri Pelargonium Pelargonium bowkeri \N \N \N \N \N 87619 \N tribe Camelineae \N \N \N \N \N 87620 H.spermacocinus Hedythyrsus Hedythyrsus spermacocinus \N \N \N \N \N 87621 T.dictyophylla Triclisia Triclisia dictyophylla \N \N \N \N \N 87622 D.gracilis Delpydora Delpydora gracilis \N \N \N \N \N 87623 \N suborder Cactineae \N \N \N \N \N 87624 F.capreolata Fumaria Fumaria capreolata \N \N \N \N \N 87625 \N genus Microsteris \N \N \N \N \N 87626 C.arbutifolius Cheirolophus Cheirolophus arbutifolius \N \N \N \N \N 87627 \N genus Streptostachys \N \N \N \N \N 87628 L.arabicum Limeum Limeum arabicum \N \N \N \N \N 87629 \N genus Polyandrococos \N \N \N \N \N 87630 C.megistocarpus Croton Croton megistocarpus \N \N \N \N \N 87631 D.gracilipes Diospyros Diospyros gracilipes \N \N \N \N \N 87632 L.swynnertonii Lovoa Lovoa swynnertonii \N \N \N \N \N 87633 E.melanohydrata Euphorbia Euphorbia melanohydrata \N \N \N \N \N 87634 N.4390 Nymphoides Nymphoides sp. Cowie 4390 \N \N \N \N \N 87635 P.rubicunda Pomaria Pomaria rubicunda acacia roja \N \N \N \N 87636 L.eremiticus Lotus Lotus eremiticus \N \N \N \N \N 87637 M.paniensis Metrosideros Metrosideros paniensis \N \N \N \N \N 87638 A.guilinensis Actinidia Actinidia guilinensis \N \N \N \N \N 87639 E.setacea Ehrharta Ehrharta setacea \N \N \N \N \N 87640 V.pauciflora Vetiveria Vetiveria pauciflora \N \N \N \N \N 87641 P.spurius Phedimus Phedimus spurius Caucasian stonecrop,o-benkei-so \N \N \N \N 87642 F.gautieri Festuca Festuca gautieri \N \N \N \N \N 87643 S.sordida Saussurea Saussurea sordida \N \N \N \N \N 87644 H.amarylloides Haemanthus Haemanthus amarylloides \N \N \N \N \N 87645 A.glabra Annona Annona glabra alligator-apple,palo bobo,pond-apple \N \N \N \N 87646 R.fasciculatum Ribes Ribes fasciculatum \N \N \N \N \N 87647 \N subspecies Achillea formosa subsp. formosa \N \N \N \N \N 87648 C.cordata Cucurbita Cucurbita cordata \N \N \N \N \N 87649 P.rubristipulata Psychotria Psychotria rubristipulata \N \N \N \N \N 87650 I.perrieri Isolona Isolona perrieri \N \N \N \N \N 87651 P.hortorum Pelargonium Pelargonium x hortorum bedding geranium,geranium,house geranium,zonal geranium,zonal pelargonium \N \N \N \N 87652 S.frymirei Stanhopea Stanhopea frymirei \N \N \N \N \N 87653 T.margalefii Trichocentrum Trichocentrum margalefii \N \N \N \N \N 87654 A.scabrivalvis Amphibromus Amphibromus scabrivalvis \N \N \N \N \N 87655 S.palaestina Suaeda Suaeda palaestina \N \N \N \N \N 87656 \N varietas Ourisia macrocarpa var. calycina \N \N \N \N \N 87657 T.capillatum Triptilion Triptilion capillatum \N \N \N \N \N 87658 P.copelandii Pinanga Pinanga copelandii \N \N \N \N \N 87659 G.nelsonii Gypsacanthus Gypsacanthus nelsonii \N \N \N \N \N 87660 M.calciphila Manulea Manulea calciphila \N \N \N \N \N 87661 A.suarezensis Adansonia Adansonia suarezensis \N \N \N \N \N 87662 \N tribe Aristideae \N \N \N \N \N 87663 P.lateripes Pelargonium Pelargonium lateripes \N \N \N \N \N 87664 M.dipholiphylla Mascagnia Mascagnia dipholiphylla \N \N \N \N \N 87665 L.dentata Lindackeria Lindackeria dentata \N \N \N \N \N 87666 \N genus Eurychone \N \N \N \N \N 87667 C.glutinosa Cuphea Cuphea glutinosa \N \N \N \N \N 87668 B.halophila Betula Betula halophila \N \N \N \N \N 87669 \N subtribe Abrotanellinae \N \N \N \N \N 87670 \N genus Mairia \N \N \N \N \N 87671 D.carolinianum Delphinium Delphinium carolinianum \N \N \N \N \N 87672 C.pulchellus Crocus Crocus pulchellus \N \N \N \N \N 87673 M.flexuosa Mauritia Mauritia flexuosa \N \N \N \N \N 87674 R.1881 Rhaphidophora Rhaphidophora beccarii Engl. 1881 \N \N \N \N \N 87675 \N genus Anogeissus \N \N \N \N \N 87676 C.lurida Carex Carex lurida \N \N \N \N \N 87677 P.napostaense Piptochaetium Piptochaetium napostaense \N \N \N \N \N 87678 C.douglasii Cusickiella Cusickiella douglasii \N \N \N \N \N 87679 R.grandifolius Ranunculus Ranunculus grandifolius \N \N \N \N \N 87680 G.corsica Genista Genista corsica \N \N \N \N \N 87681 V.dunalianum Vaccinium Vaccinium dunalianum \N \N \N \N \N 87682 H.glauca Haloragis Haloragis glauca \N \N \N \N \N 87683 V.vagans Vriesea Vriesea vagans \N \N \N \N \N 87684 S.113 Spyridium Spyridium sp. Kellermann 113 \N \N \N \N \N 87685 S.frondosum Symphyotrichum Symphyotrichum frondosum \N \N \N \N \N 87686 S.richteriana Stipa Stipa richteriana \N \N \N \N \N 87687 G.gnetoides Garcinia Garcinia gnetoides \N \N \N \N \N 87688 M.compressa Michelia Michelia compressa \N \N \N \N \N 87689 E.gottlebei Euphorbia Euphorbia gottlebei \N \N \N \N \N 87690 H.heterophyllus Hydnocarpus Hydnocarpus heterophyllus \N \N \N \N \N 87691 \N genus Androtrichum \N \N \N \N \N 87692 \N genus Leontopodium \N \N \N \N \N 87693 M.intricata Moehringia Moehringia intricata \N \N \N \N \N 87694 E.densa Eleocharis Eleocharis densa \N \N \N \N \N 87695 H.JANB-2011 Habenaria Habenaria sp. 7 JANB-2011 \N \N \N \N \N 87696 P.grandis Psychotria Psychotria grandis \N \N \N \N \N 87697 B.3017 Bertiera Bertiera sp. Davis 3017 \N \N \N \N \N 87698 M.mohavensis Mimulus Mimulus mohavensis \N \N \N \N \N 87699 P.alnifolia Pouteria Pouteria alnifolia \N \N \N \N \N 87700 P.deorum Primula Primula deorum \N \N \N \N \N 87701 L.crustacea Lindernia Lindernia crustacea \N \N \N \N \N 87702 C.axillaris Caesulia Caesulia axillaris \N \N \N \N \N 87703 S.heterophylla Suaeda Suaeda heterophylla \N \N \N \N \N 87704 R.hastatulus Rumex Rumex hastatulus \N \N \N \N \N 87705 C.iranica Climacoptera Climacoptera iranica \N \N \N \N \N 87706 \N varietas Mimosa aurivillus var. aurivillus \N \N \N \N \N 87707 \N varietas Phyllostegia parviflora var. lydgatei \N \N \N \N \N 87708 V.monstrum Vriesea Vriesea monstrum \N \N \N \N \N 87709 C.haenseleri Centaurea Centaurea haenseleri \N \N \N \N \N 87710 \N varietas Toxicoscordion venenosum var. venenosum \N \N \N \N \N 87711 P.montenegrina Potentilla Potentilla montenegrina \N \N \N \N \N 87712 M.parryi Marina Marina parryi \N \N \N \N \N 87713 A.chinensis Atractylodes Atractylodes lancea x Atractylodes chinensis \N \N \N \N \N 87714 S.confusa Saintpaulia Saintpaulia confusa \N \N \N \N \N 87715 \N genus Ampelopsis \N \N \N \N \N 87716 C.mildbraediana Carex Carex mildbraediana \N \N \N \N \N 87717 L.sphaericus Lathyrus Lathyrus sphaericus spring vetchling \N \N \N \N 87718 C.uncinata Clematis Clematis uncinata \N \N \N \N \N 87719 C.affinis Clarkia Clarkia affinis \N \N \N \N \N 87720 P.mucronata Psychotria Psychotria mucronata \N \N \N \N \N 87721 A.racemosus Asparagus Asparagus racemosus \N \N \N \N \N 87722 V.trichostoma Valeriana Valeriana trichostoma \N \N \N \N \N 87723 S.superba Salvia Salvia x superba \N \N \N \N \N 87724 \N family Hydnoraceae \N \N \N \N \N 87725 S.burchellii Sphaerorrhiza Sphaerorrhiza burchellii \N \N \N \N \N 87726 T.arctogenum Taraxacum Taraxacum arctogenum \N \N \N \N \N 87727 \N genus Votomita \N \N \N \N \N 87728 M.flavicentra Mammillaria Mammillaria flavicentra \N \N \N \N \N 87729 E.cladocalyx Eucalyptus Eucalyptus cladocalyx \N \N \N \N \N 87730 C.aucheri Centaurea Centaurea aucheri \N \N \N \N \N 87731 S.chartacea Sphaerantia Sphaerantia chartacea \N \N \N \N \N 87732 M.arsenei Muhlenbergia Muhlenbergia arsenei \N \N \N \N \N 87733 P.cucumerina Polyclathra Polyclathra cucumerina \N \N \N \N \N 87734 H.zhewanensis Hydrangea Hydrangea zhewanensis \N \N \N \N \N 87735 C.gleasonianum Cheiloclinium Cheiloclinium gleasonianum \N \N \N \N \N 87736 \N genus Archontophoenix \N \N \N \N \N 87737 S.glycycarpa Siparuna Siparuna glycycarpa \N \N \N \N \N 87738 G.brevipedicellata Guatteria Guatteria brevipedicellata \N \N \N \N \N 87739 A.striata Agave Agave striata \N \N \N \N \N 87740 P.scandinavica Primula Primula scandinavica \N \N \N \N \N 87741 P.grandiflora Paypayrola Paypayrola grandiflora \N \N \N \N \N 87742 \N genus Elateriopsis \N \N \N \N \N 87743 M.ligustrina Miconia Miconia ligustrina \N \N \N \N \N 87744 S.pendula Siemensia Siemensia pendula \N \N \N \N \N 87745 \N varietas Platostoma cambodgense var. cambodgense \N \N \N \N \N 87746 P.palustris Proserpinaca Proserpinaca palustris \N \N \N \N \N 87747 H.intricata Hedyotis Hedyotis intricata \N \N \N \N \N 87748 L.fontanesiana Leucothoe Leucothoe fontanesiana dog-hobble,switch-ivy \N \N \N \N 87749 \N genus Sarcophrynium \N \N \N \N \N 87750 L.scoticum Ligusticum Ligusticum scoticum Scots lovage,beach lovage \N \N \N \N 87751 C.hastata Cissus Cissus hastata \N \N \N \N \N 87752 \N subtribe Piptocarphinae \N \N \N \N \N 87753 S.lancerottense Sedum Sedum lancerottense \N \N \N \N \N 87754 R.dayaoshanense Rhododendron Rhododendron dayaoshanense \N \N \N \N \N 87755 C.divergens Chisocheton Chisocheton divergens \N \N \N \N \N 87756 \N genus Townsendia \N \N \N \N \N 87757 E.bifarius Elleanthus Elleanthus bifarius \N \N \N \N \N 87758 \N subspecies Dontostemon senilis subsp. gubanovii \N \N \N \N \N 87759 H.occidentalis Hypoxis Hypoxis occidentalis \N \N \N \N \N 87760 G.geniculata Gibasis Gibasis geniculata \N \N \N \N \N 87761 \N varietas Acorus tatarinowii var. flavomarginatus \N \N \N \N \N 87762 M.fernandeziana Myrceugenia Myrceugenia fernandeziana \N \N \N \N \N 87763 L.dextrorsiflora Lysimachia Lysimachia dextrorsiflora \N \N \N \N \N 87764 \N genus Athrixia \N \N \N \N \N 87765 D.saponacea Dionysia Dionysia saponacea \N \N \N \N \N 87766 B.K16935 Bulbophyllum Bulbophyllum sp. K16935 \N \N \N \N \N 87767 D.3177 Dioscorea Dioscorea sp. Lewis 3177 \N \N \N \N \N 87768 B.komoensis Begonia Begonia komoensis \N \N \N \N \N 87769 G.walkeri Gaertnera Gaertnera walkeri \N \N \N \N \N 87770 \N subspecies Arrhenatherum elatius subsp. baeticum \N \N \N \N \N 87771 M.albicuspa Moraea Moraea albicuspa \N \N \N \N \N 87772 C.brachypetala Clathrotropis Clathrotropis brachypetala \N \N \N \N \N 87773 C.inaequilateralis Centradenia Centradenia inaequilateralis \N \N \N \N \N 87774 A.flavum Aconitum Aconitum flavum \N \N \N \N \N 87775 \N genus Schlimmia \N \N \N \N \N 87776 B.ternata Bunchosia Bunchosia ternata \N \N \N \N \N 87777 A.melanantha Agrocharis Agrocharis melanantha \N \N \N \N \N 87778 \N genus Xanthoselinum \N \N \N \N \N 87779 C.castroanum Cremosperma Cremosperma castroanum \N \N \N \N \N 87780 C.froschii Cypripedium Cypripedium froschii \N \N \N \N \N 87781 P.dealbatus Petrocodon Petrocodon dealbatus \N \N \N \N \N 87782 C.veatchii Cuscuta Cuscuta veatchii \N \N \N \N \N 87783 L.parviflora Luzula Luzula parviflora \N \N \N \N \N 87784 G.inflexus Gladiolus Gladiolus inflexus \N \N \N \N \N 87785 \N genus Cossinia \N \N \N \N \N 87786 \N tribe Scandiceae \N \N \N \N \N 87787 S.arctica Salix Salix arctica \N \N \N \N \N 87788 \N genus Cymbopetalum \N \N \N \N \N 87789 P.maowenensis Parasenecio Parasenecio maowenensis \N \N \N \N \N 87790 U.congestiflorum Urophyllum Urophyllum congestiflorum \N \N \N \N \N 87791 C.kuhihewa Cyanea Cyanea kuhihewa \N \N \N \N \N 87792 P.matsumurae Potentilla Potentilla matsumurae \N \N \N \N \N 87793 E.echinatum Eryngium Eryngium echinatum \N \N \N \N \N 87794 T.hernandezii Thalictrum Thalictrum hernandezii \N \N \N \N \N 87795 B.wiebkei Bidens Bidens wiebkei \N \N \N \N \N 87796 \N varietas Olea europaea var. sylvestris wild olive \N \N \N \N 87797 \N varietas Astragalus lentiginosus var. palans \N \N \N \N \N 87798 P.phyliciformis Parastrephia Parastrephia phyliciformis \N \N \N \N \N 87799 P.australe Prasophyllum Prasophyllum australe \N \N \N \N \N 87800 L.sudetica Luzula Luzula sudetica \N \N \N \N \N 87801 P.multicaule Pentanema Pentanema multicaule \N \N \N \N \N 87802 P.coronopifolia Perralderia Perralderia coronopifolia \N \N \N \N \N 87803 B.striata Brunsvigia Brunsvigia striata \N \N \N \N \N 87804 \N varietas Cyrtanthus tuckii var. transvaalensis \N \N \N \N \N 87805 H.dawei Habropetalum Habropetalum dawei \N \N \N \N \N 87806 A.angolensis Ammocharis Ammocharis angolensis \N \N \N \N \N 87807 A.Septier Alocasia Alocasia sp. Septier \N \N \N \N \N 87808 B.vernae Berberis Berberis vernae \N \N \N \N \N 87809 L.falcata Lotononis Lotononis falcata \N \N \N \N \N 87810 M.cordifolia Matelea Matelea cordifolia \N \N \N \N \N 87811 T.lepidota Tabebuia Tabebuia lepidota \N \N \N \N \N 87812 M.glomerata Montiopsis Montiopsis glomerata \N \N \N \N \N 87813 C.multifoliolata Comarella Comarella multifoliolata \N \N \N \N \N 87814 C.spissa Carex Carex spissa \N \N \N \N \N 87815 T.tuberosum Thalictrum Thalictrum tuberosum \N \N \N \N \N 87816 K.lacteum Kearnemalvastrum Kearnemalvastrum lacteum \N \N \N \N \N 87817 P.talamancensis Phaseolus Phaseolus talamancensis \N \N \N \N \N 87818 T.tuberosum Tropaeolum Tropaeolum tuberosum \N \N \N \N \N 87819 A.pusillum Arceuthobium Arceuthobium pusillum \N \N \N \N \N 87820 D.TNS:KI-116 Dalzellia Dalzellia sp. TNS:KI-116 \N \N \N \N \N 87821 P.albiflora Portlandia Portlandia albiflora \N \N \N \N \N 87822 \N subspecies Viola suavis subsp. adriatica \N \N \N \N \N 87823 \N genus Anna \N \N \N \N \N 87824 \N genus Cystacanthus \N \N \N \N \N 87825 \N subspecies Festuca matthewsii subsp. matthewsii \N \N \N \N \N 87826 M.2873 Maxillaria Maxillaria cf. breviscapa Whitten 2873 \N \N \N \N \N 87827 P.fischeri Polystachya Polystachya fischeri \N \N \N \N \N 87828 \N genus Triplostegia \N \N \N \N \N 87829 A.GG01278 Acer Acer cf. monspessulanum Grimm GG01278 \N \N \N \N \N 87830 H.pilosula Hessea Hessea pilosula \N \N \N \N \N 87831 C.nigricans Chaetocalyx Chaetocalyx nigricans \N \N \N \N \N 87832 \N varietas Thamnocalamus spathiflorus var. crassinodus \N \N \N \N \N 87833 H.vitellina Hoya Hoya vitellina \N \N \N \N \N 87834 T.kotschyi Trigonella Trigonella kotschyi \N \N \N \N \N 87835 C.marchesettii Campanula Campanula marchesettii \N \N \N \N \N 87836 B.brevifolium Balsamocarpon Balsamocarpon brevifolium \N \N \N \N \N 87837 \N genus Anacamptis \N \N \N \N \N 87838 \N genus Ancistrachne \N \N \N \N \N 87839 C.grayi Carex Carex grayi \N \N \N \N \N 87840 C.repens Circaea Circaea repens \N \N \N \N \N 87841 E.capmanambatoensis Euphorbia Euphorbia capmanambatoensis \N \N \N \N \N 87842 R.orthorhynchus Ranunculus Ranunculus orthorhynchus \N \N \N \N \N 87843 L.sinuatum Limonium Limonium sinuatum \N \N \N \N \N 87844 M.racemosa Marila Marila racemosa \N \N \N \N \N 87845 A.ottonis-schulzii Arabis Arabis ottonis-schulzii \N \N \N \N \N 87846 \N varietas Wendlandiella gracilis var. polyclada \N \N \N \N \N 87847 E.hallii Euphorbia Euphorbia hallii \N \N \N \N \N 87848 \N genus Rapistrum \N \N \N \N \N 87849 G.wrayi Gigantochloa Gigantochloa wrayi \N \N \N \N \N 87850 P.quinqueangulatum Piper Piper quinqueangulatum \N \N \N \N \N 87851 S.lidii Solanum Solanum lidii \N \N \N \N \N 87852 E.macrophyllum Erythroxylum Erythroxylum macrophyllum \N \N \N \N \N 87853 A.tubicina Anthemis Anthemis tubicina \N \N \N \N \N 87854 S.flabellata Solms-laubachia Solms-laubachia flabellata \N \N \N \N \N 87855 P.yunnanensis Pseudobartsia Pseudobartsia yunnanensis \N \N \N \N \N 87856 \N subspecies Uebelinia kigesiensis subsp. ragazziana \N \N \N \N \N 87857 I.monticola Impatiens Impatiens monticola \N \N \N \N \N 87858 T.herba-barona Thymus Thymus herba-barona \N \N \N \N \N 87859 U.juncea Utricularia Utricularia juncea southern bladderwort \N \N \N \N 87860 C.armatum Canthium Canthium armatum \N \N \N \N \N 87861 \N genus Geesinkorchis \N \N \N \N \N 87862 C.lauterbachianus Calyptrocalyx Calyptrocalyx lauterbachianus \N \N \N \N \N 87863 \N varietas Spiraea mongolica var. mongolica \N \N \N \N \N 87864 A.trinervium Aethionema Aethionema trinervium \N \N \N \N \N 87865 \N genus Urochloa \N \N \N \N \N 87866 \N genus Anomochloa \N \N \N \N \N 87867 M.mollis Morinda Morinda mollis \N \N \N \N \N 87868 F.sideritides Fleischmannia Fleischmannia sideritides \N \N \N \N \N 87869 S.cretacea Stipa Stipa cretacea \N \N \N \N \N 87870 D.alpina Danthonia Danthonia alpina \N \N \N \N \N 87871 O.elliptica Ochrosia Ochrosia elliptica \N \N \N \N \N 87872 \N varietas Magnolia acuminata var. acuminata \N \N \N \N \N 87873 L.batangensis Lasianthus Lasianthus batangensis \N \N \N \N \N 87874 R.geniculatum Rytidosperma Rytidosperma geniculatum \N \N \N \N \N 87875 C.macrocarpa Catalpa Catalpa macrocarpa \N \N \N \N \N 87876 C.guianense Coccocypselum Coccocypselum guianense \N \N \N \N \N 87877 P.trichosperma Polygala Polygala trichosperma \N \N \N \N \N 87878 E.asperum Erysimum Erysimum asperum \N \N \N \N \N 87879 M.oasena Mitrasacme Mitrasacme oasena \N \N \N \N \N 87880 \N genus Carramboa \N \N \N \N \N 87881 \N subspecies Quaqua incarnata subsp. incarnata \N \N \N \N \N 87882 M.textilis Musa Musa textilis Manila hemp,abaca \N \N \N \N 87883 P.serrata Primula Primula serrata \N \N \N \N \N 87884 T.90-2984 Tapeinochilos Tapeinochilos sp. Kress 90-2984 \N \N \N \N \N 87885 N.alba Nymphaea Nymphaea alba white water-lily \N \N \N \N 87886 \N genus Aegiceras \N \N \N \N \N 87887 \N varietas Iris uniflora var. caricina \N \N \N \N \N 87888 P.teretifolia Polygala Polygala teretifolia \N \N \N \N \N 87889 E.africanum Erythrophleum Erythrophleum africanum \N \N \N \N \N 87890 P.emirnensis Phylica Phylica emirnensis \N \N \N \N \N 87891 \N genus Samaipaticereus \N \N \N \N \N 87892 P.insularis Psychotria Psychotria insularis \N \N \N \N \N 87893 C.hordeoides Cenchrus Cenchrus hordeoides \N \N \N \N \N 87894 H.microtum Hieracium Hieracium microtum \N \N \N \N \N 87895 G.pubescens Gymnosporia Gymnosporia pubescens \N \N \N \N \N 87896 \N genus Eperua \N \N \N \N \N 87897 P.sylvivaga Psychotria Psychotria sylvivaga \N \N \N \N \N 87898 C.eggersiana Clavija Clavija eggersiana \N \N \N \N \N 87899 \N varietas Ceanothus velutinus var. velutinus \N \N \N \N \N 87900 S.integrifolia Sarcocapnos Sarcocapnos integrifolia \N \N \N \N \N 87901 S.curtisii Stemona Stemona curtisii \N \N \N \N \N 87902 S.margelanica Stipa Stipa margelanica \N \N \N \N \N 87903 I.lindheimeri Ipomoea Ipomoea lindheimeri \N \N \N \N \N 87904 I.quercetorum Ilex Ilex cf. quercetorum \N \N \N \N \N 87905 \N genus Diatenopteryx \N \N \N \N \N 87906 S.arctica Suaeda Suaeda arctica \N \N \N \N \N 87907 G.staudtii Garcinia Garcinia staudtii \N \N \N \N \N 88007 P.elongata Piptospatha Piptospatha elongata \N \N \N \N \N 87908 A.hypochondriacus Amaranthus Amaranthus hypochondriacus grain amaranth,prince's feather \N \N \N \N 87909 M.rubricaulis Manihot Manihot rubricaulis \N \N \N \N \N 87910 A.tomentosa Aristolochia Aristolochia tomentosa pipevine,woolly Dutchman's-pipe \N \N \N \N 87911 A.abietina Aragoa Aragoa abietina \N \N \N \N \N 87912 P.brachycarpa Pennellia Pennellia brachycarpa \N \N \N \N \N 87913 A.subtilissimum Allium Allium subtilissimum \N \N \N \N \N 87914 \N varietas Lachenalia aloides var. quadricolor \N \N \N \N \N 87915 P.africanum Platostoma Platostoma africanum \N \N \N \N \N 87916 V.rosea Veronica Veronica rosea \N \N \N \N \N 87917 G.grisebachii Gentianella Gentianella grisebachii \N \N \N \N \N 87918 C.juttae Cyphostemma Cyphostemma juttae \N \N \N \N \N 87919 \N genus Neotorularia \N \N \N \N \N 87920 T.baviensis Trichosanthes Trichosanthes baviensis \N \N \N \N \N 87921 L.benthamii Lotus Lotus benthamii \N \N \N \N \N 87922 \N genus Austrobaileya \N \N \N \N \N 87923 G.altaica Gentiana Gentiana altaica \N \N \N \N \N 87924 P.pedunculatum Piper Piper pedunculatum \N \N \N \N \N 87925 O.giftbergensis Oxalis Oxalis giftbergensis \N \N \N \N \N 87926 C.calycina Couratari Couratari calycina \N \N \N \N \N 87927 R.rodriguesii Ramosmania Ramosmania rodriguesii \N \N \N \N \N 87928 A.maculatum Arum Arum maculatum cuckoo-pint,cuckoopint \N \N \N \N 87929 R.puri Ruellia Ruellia puri \N \N \N \N \N 87930 P.emblica Phyllanthus Phyllanthus emblica Indian-gooseberry,amla,emblic \N \N \N \N 87931 B.fordii Beilschmiedia Beilschmiedia fordii \N \N \N \N \N 87932 O.capensis Oedera Oedera capensis \N \N \N \N \N 87933 R.corymbosa Rhynchospora Rhynchospora corymbosa \N \N \N \N \N 87934 C.caracalla Cochliasanthus Cochliasanthus caracalla \N \N \N \N \N 87935 M.guianensis Matayba Matayba guianensis \N \N \N \N \N 87936 M.rufopunctatum Myrtastrum Myrtastrum rufopunctatum \N \N \N \N \N 87937 S.mairei Seseli Seseli mairei \N \N \N \N \N 87938 \N genus Alzatea \N \N \N \N \N 87939 A.diffusum Alyssum Alyssum diffusum \N \N \N \N \N 87940 P.coriacea Pagamea Pagamea coriacea \N \N \N \N \N 87941 \N genus Dyera \N \N \N \N \N 87942 \N genus Notoceras \N \N \N \N \N 87943 F.itoana Ficus Ficus itoana \N \N \N \N \N 87944 B.byei Batopilasia Batopilasia byei \N \N \N \N \N 87945 \N genus Saltera \N \N \N \N \N 87946 P.xerophila Pyrus Pyrus xerophila \N \N \N \N \N 87947 G.ventricosum Gastridium Gastridium ventricosum \N \N \N \N \N 87948 C.agrimonioides Cenchrus Cenchrus agrimonioides \N \N \N \N \N 87949 P.columnaris Phyllanthus Phyllanthus columnaris \N \N \N \N \N 87950 E.fruticosa Elsholtzia Elsholtzia fruticosa \N \N \N \N \N 87951 O.castellana Ophrys Ophrys castellana \N \N \N \N \N 87952 L.bordiana Linaria Linaria bordiana \N \N \N \N \N 87953 S.croatica Sibiraea Sibiraea croatica \N \N \N \N \N 87954 R.auriculatum Rytidosperma Rytidosperma auriculatum \N \N \N \N \N 87955 A.eburneum Angraecum Angraecum eburneum \N \N \N \N \N 87956 V.papilla Valeriana Valeriana papilla \N \N \N \N \N 87957 P.intraterranea Portulaca Portulaca intraterranea \N \N \N \N \N 87958 S.PS-2009 Suaeda Suaeda sp. PS-2009 \N \N \N \N \N 87959 \N genus Neobuxbaumia \N \N \N \N \N 87960 H.verschaffeltii Hyophorbe Hyophorbe verschaffeltii \N \N \N \N \N 87961 I.virginalis Isabelia Isabelia virginalis \N \N \N \N \N 87962 \N genus Eustephia \N \N \N \N \N 87963 B.fruticosum Bupleurum Bupleurum fruticosum \N \N \N \N \N 87964 C.mendocina Calceolaria Calceolaria mendocina \N \N \N \N \N 87965 T.JS4280 unclassified Taraxacum Taraxacum (sect. Alpestria) sp. JS4280 \N \N \N \N \N 87966 P.atrata Plantago Plantago atrata \N \N \N \N \N 87967 E.vesiculosum Eryngium Eryngium vesiculosum \N \N \N \N \N 87968 N.formosa Nectouxia Nectouxia formosa \N \N \N \N \N 87969 V.hastata Verbena Verbena hastata American blue vervain,simpler's-joy,wild hyssop \N \N \N \N 87970 A.bongardii Actinocephalus Actinocephalus bongardii \N \N \N \N \N 87971 A.citrina Aspalathus Aspalathus citrina \N \N \N \N \N 87972 P.gloriosa Pedicularis Pedicularis gloriosa \N \N \N \N \N 87973 P.glabrescens Pentas Pentas glabrescens \N \N \N \N \N 87974 C.marginatus Cymbopogon Cymbopogon marginatus \N \N \N \N \N 87975 C.albogigas Camellia Camellia albogigas \N \N \N \N \N 87976 M.spruceana Micrandra Micrandra spruceana \N \N \N \N \N 87977 N.benavidesii Nicotiana Nicotiana benavidesii \N \N \N \N \N 87978 H.rimosa Henriettella Henriettella rimosa \N \N \N \N \N 87979 R.dilatatum Rhododendron Rhododendron dilatatum \N \N \N \N \N 87980 C.asarifolia Cardamine Cardamine asarifolia \N \N \N \N \N 87981 L.acutiflora Leandra Leandra acutiflora \N \N \N \N \N 87982 P.villosa Pseuduvaria Pseuduvaria villosa \N \N \N \N \N 87983 C.11141 Carex Carex sp. Reznicek et Gonzalez 11141 \N \N \N \N \N 87984 \N genus Loesenera \N \N \N \N \N 87985 D.esfandiarii Dionysia Dionysia esfandiarii \N \N \N \N \N 87986 C.karduchorum Crocus Crocus karduchorum \N \N \N \N \N 87987 C.fischerianum Cerastium Cerastium fischerianum \N \N \N \N \N 87988 P.dolichocarpa Pilea Pilea dolichocarpa \N \N \N \N \N 87989 C.'odorata' Cedrela Cedrela sp. 'odorata' \N \N \N \N \N 87990 B.intermedia Berzelia Berzelia intermedia \N \N \N \N \N 87991 \N genus Chalepophyllum \N \N \N \N \N 87992 C.aurantiaca Caragana Caragana aurantiaca \N \N \N \N \N 87993 \N varietas Cleistogenes caespitosa var. romosa \N \N \N \N \N 87994 B.empetrifolia Berberis Berberis empetrifolia \N \N \N \N \N 87995 L.decemdentata Leucas Leucas decemdentata \N \N \N \N \N 87996 \N genus Zeylanidium \N \N \N \N \N 87997 J.multipartitum Jasminum Jasminum multipartitum \N \N \N \N \N 87998 V.transjenisensis Valeriana Valeriana transjenisensis \N \N \N \N \N 87999 I.pauciflora Ipomoea Ipomoea pauciflora \N \N \N \N \N 88000 U.boniana Uvaria Uvaria boniana \N \N \N \N \N 88001 \N varietas Rhododendron yedoense var. poukhanense \N \N \N \N \N 88002 \N no rank Magnoliophyta angiosperms,flowering plants \N \N \N \N 88003 \N genus Parafestuca \N \N \N \N \N 88004 \N varietas Downingia bicornuta var. bicornuta \N \N \N \N \N 88008 P.95-5568 Phacelophrynium Phacelophrynium sp. Kress 95-5568 \N \N \N \N \N 88009 J.lomatophyllus Juncus Juncus lomatophyllus \N \N \N \N \N 88010 E.JS-2008 Echinopogon Echinopogon sp. JS-2008 \N \N \N \N \N 88011 A.emarginata Abrotanella Abrotanella emarginata \N \N \N \N \N 88012 S.pulla Stanhopea Stanhopea pulla \N \N \N \N \N 88014 S.intermedia Sorbus Sorbus intermedia \N \N \N \N \N 88015 P.tetraspis Phalaenopsis Phalaenopsis tetraspis \N \N \N \N \N 88016 \N genus Stenotaphrum \N \N \N \N \N 88017 T.dasycarpum Thalictrum Thalictrum dasycarpum \N \N \N \N \N 88018 \N genus Temnopteryx \N \N \N \N \N 88019 M.persiciforma Mangifera Mangifera persiciforma \N \N \N \N \N 88020 P.terebinthus Pistacia Pistacia terebinthus terebinth,turpentine-tree \N \N \N \N 88021 S.macroglossus Senecio Senecio macroglossus \N \N \N \N \N 88022 L.calciphila Licuala Licuala calciphila \N \N \N \N \N 88023 \N subspecies Felicia aethiopica subsp. ecklonis \N \N \N \N \N 88024 S.sempervivum Saxifraga Saxifraga sempervivum \N \N \N \N \N 88025 \N genus Brunia \N \N \N \N \N 88026 M.leticiana Malpighia Malpighia leticiana \N \N \N \N \N 88027 \N varietas Croton pottsii var. thermophilus \N \N \N \N \N 88028 V.chamaepithyoides Veronica Veronica chamaepithyoides \N \N \N \N \N 88029 T.arvense Trifolium Trifolium arvense hare-foot clover,stone clover \N \N \N \N 88030 P.praelongus Potamogeton Potamogeton praelongus \N \N \N \N \N 88031 B.barbata Bulbostylis Bulbostylis barbata \N \N \N \N \N 88032 M.jankae Moehringia Moehringia jankae \N \N \N \N \N 88033 \N genus Physena \N \N \N \N \N 88034 P.densiflorum Pachypodium Pachypodium densiflorum \N \N \N \N \N 88035 S.reflexa Scaphyglottis Scaphyglottis reflexa \N \N \N \N \N 88036 I.surinamensis Ibetralia Ibetralia surinamensis \N \N \N \N \N 88037 F.tica Fernandezia Fernandezia tica \N \N \N \N \N 88038 C.TJSW-2011 Cupaniopsis Cupaniopsis sp. TJSW-2011 \N \N \N \N \N 88039 M.splendens Marcelliopsis Marcelliopsis splendens \N \N \N \N \N 88040 L.sikkimensis Lasianthus Lasianthus sikkimensis \N \N \N \N \N 88041 H.euphlebia Halophila Halophila euphlebia \N \N \N \N \N 88042 P.densifolia Pentaschistis Pentameris densifolia \N \N \N \N \N 88043 C.pubescens Centaurea Centaurea pubescens \N \N \N \N \N 88044 P.filifolium Paspalum Paspalum filifolium \N \N \N \N \N 88045 T.JS6298 unclassified Taraxacum Taraxacum (sect. Erythrocarpa) sp. JS6298 \N \N \N \N \N 88046 L.berlandieri Lycium Lycium berlandieri \N \N \N \N \N 88047 A.caspium Allium Allium caspium \N \N \N \N \N 88048 W.dillonii Weberbauera Weberbauera dillonii \N \N \N \N \N 88049 P.racemosa Platanus Platanus racemosa California sycamore,aliso,western sycamore \N \N \N \N 88050 G.purpusii Giliastrum Giliastrum purpusii \N \N \N \N \N 88051 O.catalaunica Ophrys Ophrys catalaunica \N \N \N \N \N 88052 \N varietas Malacothrix incana var. succulenta \N \N \N \N \N 88053 \N genus Pearsonia \N \N \N \N \N 88054 \N genus Jacquiniella \N \N \N \N \N 88055 E.rigidior Eragrostis Eragrostis rigidior curlyleaf \N \N \N \N 88056 L.TJSW-2011 unclassified Lythraceae Lythraceae sp. TJSW-2011 \N \N \N \N \N 88057 \N varietas Aegilops peregrina var. peregrina \N \N \N \N \N 88058 C.leucantha Craspedia Craspedia leucantha \N \N \N \N \N 88059 D.cuspidata Draba Draba cuspidata \N \N \N \N \N 88060 D.fischeri Diospyros Diospyros fischeri \N \N \N \N \N 88061 \N subspecies Lepidium hirtum subsp. nebrodense \N \N \N \N \N 88062 P.pumila Pilea Pilea pumila \N \N \N \N \N 88063 G.11086 Guatteria Guatteria cf. lasiocalyx Krukoff 11086 \N \N \N \N \N 88064 \N varietas Aristida setifolia var. intermedia \N \N \N \N \N 88065 P.glabra Primula Primula glabra \N \N \N \N \N 88066 B.graminea Brachyscome Brachyscome graminea \N \N \N \N \N 88067 H.cordata Hebenstretia Hebenstretia cordata \N \N \N \N \N 88068 L.leucocephala Leucaena Leucaena leucocephala cassie,granadillo bobo,ipil ipil,jumbie bean,jump-and-go,white popinac \N \N \N \N 88069 \N varietas Carex vaginata var. petersii \N \N \N \N \N 88070 \N genus Haeckeria \N \N \N \N \N 88071 \N family Crassulaceae stonecrop family \N \N \N \N 88072 M.villiflora Muhlenbergia Muhlenbergia villiflora \N \N \N \N \N 88073 \N tribe Chrozophoreae \N \N \N \N \N 88074 B.gymnocarpa Bathysa Bathysa gymnocarpa \N \N \N \N \N 88075 L.vallis-gratiae Lampranthus Lampranthus vallis-gratiae \N \N \N \N \N 88076 P.kotschyana Pimpinella Pimpinella kotschyana \N \N \N \N \N 88077 C.pauciflora Caesalpinia Caesalpinia pauciflora \N \N \N \N \N 88078 B.albosinensis Betula Betula albosinensis hong hua \N \N \N \N 88079 \N genus Schumannianthus \N \N \N \N \N 88080 H.forsteri Hibiscus Hibiscus forsteri \N \N \N \N \N 88081 R.caucasicus Rubus Rubus caucasicus \N \N \N \N \N 88082 V.eriophora Viguiera Viguiera eriophora \N \N \N \N \N 88083 G.cephalantha Genista Genista cephalantha \N \N \N \N \N 88084 M.complanatum Marmoritis Marmoritis complanatum \N \N \N \N \N 88085 C.mariposana Carex Carex mariposana \N \N \N \N \N 88086 G.pulcherrimus Gladiolus Gladiolus pulcherrimus \N \N \N \N \N 88087 P.brachycarpa Pimpinella Pimpinella brachycarpa \N \N \N \N \N 88088 N.indica Najas Najas indica \N \N \N \N \N 88089 P.sample environmental samples Taxonomy:644533 Platanus environmental sample \N \N \N \N \N 88090 C.bella Cleistes Cleistes bella \N \N \N \N \N 88091 D.christmanii Dicerandra Dicerandra christmanii \N \N \N \N \N 88092 H.normandii Hymenostegia Hymenostegia normandii \N \N \N \N \N 88093 U.bisquamata Utricularia Utricularia bisquamata \N \N \N \N \N 88094 S.rupicola Sipaneopsis Sipaneopsis rupicola \N \N \N \N \N 88095 S.hoehnei Sisyrinchium Sisyrinchium hoehnei \N \N \N \N \N 88096 T.glabrifolium Tetradium Tetradium glabrifolium \N \N \N \N \N 88097 C.fascicularis Centrolepis Centrolepis fascicularis \N \N \N \N \N 88098 T.TL150 unclassified Taraxacum Taraxacum (sect. Ruderalia) sp. TL150 \N \N \N \N \N 88099 V.longii Vitis Vitis longii \N \N \N \N \N 88100 I.podophylla Indigofera Indigofera podophylla \N \N \N \N \N 88101 A.saccharum Acer Acer saccharum sugar maple \N \N \N \N 91771 \N genus Perezia \N \N \N \N \N 88102 S.dracontea Stelis Stelis dracontea \N \N \N \N \N 88103 H.878 Hypodiscus Hypodiscus sp. Balele 878 \N \N \N \N \N 88104 D.elliptica Dracaena Dracaena elliptica \N \N \N \N \N 88105 S.solimoesana Strychnos Strychnos solimoesana \N \N \N \N \N 88106 I.latifolia Ichthyothere Ichthyothere latifolia \N \N \N \N \N 88107 A.utahensis Astragalus Astragalus utahensis \N \N \N \N \N 88108 H.leyianum Hieracium Hieracium leyianum \N \N \N \N \N 88109 S.incana Sphaeralcea Sphaeralcea incana \N \N \N \N \N 88110 \N genus Oscularia \N \N \N \N \N 88111 L.MP-2011 Ledebouria Ledebouria sp. 3 MP-2011 \N \N \N \N \N 88112 A.carpinifolium Acer Acer carpinifolium hornbeam maple \N \N \N \N 88113 J.heterophylla Jarilla Jarilla heterophylla jarrilla \N \N \N \N 88114 \N genus Purshia \N \N \N \N \N 88115 G.elongata Gelasine Gelasine elongata \N \N \N \N \N 88116 T.ciliatum Tropaeolum Tropaeolum ciliatum \N \N \N \N \N 88117 \N subspecies Alectryon excelsus subsp. grandis \N \N \N \N \N 88118 S.polaris Stilbocarpa Stilbocarpa polaris \N \N \N \N \N 88119 Z.pringlei Zaluzania Zaluzania pringlei \N \N \N \N \N 88120 C.obtusifolia Camellia Camellia obtusifolia \N \N \N \N \N 88121 O.cunliffeae Oligocodon Oligocodon cunliffeae \N \N \N \N \N 88122 H.rhagadioloides Hedypnois Hedypnois rhagadioloides \N \N \N \N \N 88123 B.parviflora Baphiopsis Baphiopsis parviflora \N \N \N \N \N 88124 T.sinuatum Triosteum Triosteum sinuatum \N \N \N \N \N 88125 C.eriophyllum Clerodendrum Clerodendrum eriophyllum \N \N \N \N \N 88126 D.canadensis Dicentra Dicentra canadensis squirrel-corn \N \N \N \N 88127 P.elisae Prospero Prospero elisae \N \N \N \N \N 88128 M.brevifolia Metalasia Metalasia brevifolia \N \N \N \N \N 88129 D.pycnastera Duguetia Duguetia pycnastera \N \N \N \N \N 88130 F.hadramautica Fagonia Fagonia hadramautica \N \N \N \N \N 88131 S.manabiense Solanum Solanum manabiense \N \N \N \N \N 88132 H.bauhinii Hieracium Hieracium bauhinii \N \N \N \N \N 88133 A.minutiflora Aphanes Aphanes minutiflora \N \N \N \N \N 88134 S.colais Stereospermum Stereospermum colais \N \N \N \N \N 88135 C.xiphiolepis Cousinia Cousinia xiphiolepis \N \N \N \N \N 88136 \N varietas Hilliella sinuata var. sinuata \N \N \N \N \N 88137 \N genus Anisochilus \N \N \N \N \N 88138 G.carinalis Genista Genista carinalis \N \N \N \N \N 88139 H.limoniaca Hoya Hoya limoniaca \N \N \N \N \N 88140 \N genus Anisodus \N \N \N \N \N 88141 \N varietas Isodon umbrosus var. excisinflexus \N \N \N \N \N 88142 B.mollis Brucea Brucea mollis \N \N \N \N \N 88143 \N subspecies Ligustrum obtusifolium subsp. microphyllum \N \N \N \N \N 88144 \N genus Tetranthus \N \N \N \N \N 88145 \N genus Spartium \N \N \N \N \N 88146 F.varia Ferula Ferula varia \N \N \N \N \N 88147 C.soongorica Caragana Caragana soongorica \N \N \N \N \N 88148 F.chlorantha Ferdinandusa Ferdinandusa chlorantha \N \N \N \N \N 88149 P.trisperma Piptadenia Piptadenia trisperma \N \N \N \N \N 88150 P.beccarii Pterocymbium Pterocymbium beccarii \N \N \N \N \N 88151 H.grosseserratus Helianthus Helianthus grosseserratus \N \N \N \N \N 88152 M.corymbosa Maranthes Maranthes corymbosa \N \N \N \N \N 88153 K.laxiflora Kniphofia Kniphofia laxiflora \N \N \N \N \N 88154 F.tubulosa Frasera Frasera tubulosa \N \N \N \N \N 88155 \N genus Blepharocarya \N \N \N \N \N 88156 B.regia Banara Banara regia \N \N \N \N \N 88157 \N genus Anthocleista \N \N \N \N \N 88158 E.pectinifolia Erica Erica pectinifolia \N \N \N \N \N 88159 A.humilis Atractylis Atractylis humilis \N \N \N \N \N 88160 C.sikkimensis Cyathopus Cyathopus sikkimensis \N \N \N \N \N 88161 L.2012 Lupinus Lupinus sp. CEH 2012 \N \N \N \N \N 88162 H.minima Heliophila Heliophila minima \N \N \N \N \N 88163 A.parviflora Arida Arida parviflora \N \N \N \N \N 88164 B.aurea Brugmansia Brugmansia aurea borrachero,culebra,golden angel's-trumpet \N \N \N \N 88165 P.goudotiana Puya Puya goudotiana \N \N \N \N \N 88166 C.araneosus Carduncellus Carduncellus araneosus \N \N \N \N \N 88167 \N genus Andradea \N \N \N \N \N 88168 \N genus Orthosphenia \N \N \N \N \N 88169 G.nelsonii Gossypium Gossypium nelsonii \N \N \N \N \N 88170 V.cucullata Villadia Villadia cucullata \N \N \N \N \N 88171 E.178 Elatostema Elatostema aff. strigosum Hadiah 178 \N \N \N \N \N 88172 F.callosa Ficus Ficus callosa \N \N \N \N \N 88173 A.sessiliflorum Aconitum Aconitum sessiliflorum \N \N \N \N \N 88174 \N varietas Aucuba japonica var. ovoidea \N \N \N \N \N 88175 P.flava Prockia Prockia flava \N \N \N \N \N 88176 \N subspecies Centaurea boissieri subsp. mariolensis \N \N \N \N \N 88177 P.bolivianus Phaseolus Phaseolus bolivianus \N \N \N \N \N 88178 C.pratericola Chenopodium Chenopodium pratericola \N \N \N \N \N 88179 P.cruddasiana Paederia Paederia cruddasiana sewervine \N \N \N \N 88180 G.pyria Gymnosporia Gymnosporia pyria \N \N \N \N \N 88181 \N subfamily Monotoideae \N \N \N \N \N 88182 C.sylvaticus Chrysopogon Chrysopogon sylvaticus \N \N \N \N \N 88183 B.CIAT-36062 Brachiaria Brachiaria sp. CIAT-36062 \N \N \N \N \N 88184 P.pandorana Pandorea Pandorea pandorana \N \N \N \N \N 88185 \N genus Scaraboides \N \N \N \N \N 88186 C.trifoliata Citrus Citrus reticulata x Citrus trifoliata \N \N \N \N \N 88187 R.longipetiolata Reevesia Reevesia longipetiolata \N \N \N \N \N 88188 R.carpaticus Ranunculus Ranunculus carpaticus \N \N \N \N \N 88189 O.calocaerina Ophrys Ophrys calocaerina \N \N \N \N \N 88190 V.gardneri Vanhouttea Vanhouttea gardneri \N \N \N \N \N 88191 M.obscura Mentzelia Mentzelia obscura \N \N \N \N \N 88192 I.nigricans Iris Iris nigricans \N \N \N \N \N 88193 R.pulcher Rumex Rumex pulcher \N \N \N \N \N 88194 T.personatus Telipogon Telipogon personatus \N \N \N \N \N 88195 S.incisa Scorzonera Scorzonera incisa \N \N \N \N \N 88196 \N family Carlemanniaceae \N \N \N \N \N 88197 R.schlechteri Rutidea Rutidea schlechteri \N \N \N \N \N 88198 \N varietas Carex aquatilis var. aquatilis \N \N \N \N \N 88199 B.acutifolia Begonia Begonia acutifolia \N \N \N \N \N 88200 \N varietas Yucca angustissima var. kanabensis \N \N \N \N \N 88201 \N genus Macoubea \N \N \N \N \N 88202 H.polydichotoma Hexinia Hexinia polydichotoma \N \N \N \N \N 88203 D.araratica Draba Draba araratica \N \N \N \N \N 88204 \N no rank Cattleya bicolor 'Itatiaia' \N \N \N \N \N 88205 P.ruscifolia Prosopis Prosopis ruscifolia ibop \N \N \N \N 88206 S.sedoides Sebaea Sebaea sedoides \N \N \N \N \N 88207 S.filiforme Schizoglossum Schizoglossum filiforme \N \N \N \N \N 88208 O.duriuscula Oxalis Oxalis duriuscula \N \N \N \N \N 88209 S.sumatranum Stachyphrynium Stachyphrynium sumatranum \N \N \N \N \N 88210 P.pubiflora Pentas Pentas pubiflora \N \N \N \N \N 88211 N.strumosa Nemesia Nemesia strumosa \N \N \N \N \N 88212 S.radula Silphium Silphium radula \N \N \N \N \N 88213 W.nereifolia Welwitschiella Welwitschiella nereifolia \N \N \N \N \N 88214 P.bellendenkerensis Polyscias Polyscias bellendenkerensis \N \N \N \N \N 88215 P.incarnata Polygala Polygala incarnata \N \N \N \N \N 88216 \N genus Oreosolen \N \N \N \N \N 88217 S.polyacanthon Solanum Solanum polyacanthon \N \N \N \N \N 88218 \N genus Eutrochium \N \N \N \N \N 88219 P.crenatus Petalonyx Petalonyx crenatus \N \N \N \N \N 88220 R.curranii Ruprechtia Ruprechtia curranii \N \N \N \N \N 88221 C.adscendens Chamaedorea Chamaedorea adscendens \N \N \N \N \N 88222 A.gigantiflora Aphelandra Aphelandra gigantiflora \N \N \N \N \N 88223 T.nematobrachion Thyrsosalacia Thyrsosalacia nematobrachion \N \N \N \N \N 88224 A.nitens Anthoxanthum Anthoxanthum nitens vanilla grass \N \N \N \N 88225 R.adpressum Rhanterium Rhanterium adpressum \N \N \N \N \N 88226 S.nemorensis Senecio Senecio nemorensis \N \N \N \N \N 88227 H.tomentosa Hubertia Hubertia tomentosa \N \N \N \N \N 88228 L.integrifolia Ludovia Ludovia integrifolia \N \N \N \N \N 88229 C.angustifolia Capparis Capparis angustifolia \N \N \N \N \N 88230 C.nilotica Catunaregam Catunaregam nilotica \N \N \N \N \N 88231 L.lanceolata Lophira Lophira lanceolata \N \N \N \N \N 88232 O.lavandulacea Orobanche Orobanche lavandulacea \N \N \N \N \N 88233 G.s.n. Gnidia Gnidia cf. juniperifolia Johns s.n. \N \N \N \N \N 88234 C.KG-26 Chaetanthera Chaetanthera sp. KG-26 \N \N \N \N \N 88235 L.vesicaria Lonicera Lonicera vesicaria \N \N \N \N \N 88236 \N varietas Geranium sessiliflorum var. arenarum \N \N \N \N \N 88237 T.australe Tripterospermum Tripterospermum australe \N \N \N \N \N 88238 M.7884 Mesua Mesua sp. Coode 7884 \N \N \N \N \N 88239 C.rostratus Cucumis Cucumis rostratus \N \N \N \N \N 88240 H.platysepala Hugonia Hugonia platysepala \N \N \N \N \N 88241 C.no Caryota Caryota no \N \N \N \N \N 88242 R.stylosa Rosa Rosa stylosa \N \N \N \N \N 88243 \N genus Melocalamus \N \N \N \N \N 88244 L.lancifolia Lepechinia Lepechinia lancifolia \N \N \N \N \N 88245 C.pyramidalis Campanula Campanula pyramidalis chimney bellflower \N \N \N \N 88246 O.sphaerocarpa Ozoroa Ozoroa sphaerocarpa \N \N \N \N \N 88247 M.magnifica Milla Milla magnifica \N \N \N \N \N 88248 \N genus Cephalantheropsis \N \N \N \N \N 88249 \N genus Laurus \N \N \N \N \N 88250 H.nigrescens Hieracium Hieracium nigrescens \N \N \N \N \N 88251 S.brachystachya Salicornia Salicornia brachystachya \N \N \N \N \N 88252 \N genus Corylopsis \N \N \N \N \N 88253 T.aintabense Trifolium Trifolium aintabense \N \N \N \N \N 88254 E.rojasii Eryngium Eryngium rojasii \N \N \N \N \N 88255 E.florida Eugenia Eugenia florida \N \N \N \N \N 88256 R.henryi Rhododendron Rhododendron henryi \N \N \N \N \N 88257 \N subspecies Ourisia coccinea subsp. elegans \N \N \N \N \N 88258 C.watsonii Chenopodium Chenopodium watsonii \N \N \N \N \N 88259 V.triphyllos Veronica Veronica triphyllos fingered speedwell \N \N \N \N 88260 \N varietas Geonoma maxima var. chelidonura \N \N \N \N \N 88261 A.koidzumii Artemisia Artemisia koidzumii \N \N \N \N \N 88262 B.retusum Brachypodium Brachypodium retusum \N \N \N \N \N 88263 \N genus Moltkia \N \N \N \N \N 88264 \N varietas Celtis tournefortii var. aspera \N \N \N \N \N 88265 C.crus-corvi Carex Carex crus-corvi raven-foot sedge \N \N \N \N 88266 C.alatum Clibadium Clibadium alatum \N \N \N \N \N 88267 P.nana Physospermopsis Physospermopsis nana \N \N \N \N \N 88268 \N genus Erica \N \N \N \N \N 88269 M.pentandra Mangifera Mangifera pentandra mempelam bemban \N \N \N \N 88270 B.lanata Balsamorhiza Balsamorhiza lanata \N \N \N \N \N 88271 C.rattanii Collinsia Collinsia rattanii \N \N \N \N \N 88272 P.chrysandra Polyspora Polyspora chrysandra \N \N \N \N \N 88273 H.rhizophylla Hypoxidia Hypoxidia rhizophylla \N \N \N \N \N 88274 S.pulchra Salix Salix pulchra \N \N \N \N \N 88275 A.lerchenfeldianum Atocion Atocion lerchenfeldianum \N \N \N \N \N 88276 \N varietas Panicum hallii var. filipes \N \N \N \N \N 88277 A.12737 Aspidostemon Aspidostemon sp. van der Werff 12737 \N \N \N \N \N 88278 \N genus Sclerochiton \N \N \N \N \N 88279 A.commixtus Astragalus Astragalus commixtus \N \N \N \N \N 88280 H.JANB-2011 Habenaria Habenaria aff. meeana JANB-2011 \N \N \N \N \N 88281 S.siuzevii Salix Salix siuzevii \N \N \N \N \N 88282 \N subspecies Reseda alba subsp. myriosperma \N \N \N \N \N 88283 \N tribe Veroniceae \N \N \N \N \N 88284 D.lenheirensis Ditassa Ditassa lenheirensis \N \N \N \N \N 88285 H.halleyana Hypsophila Hypsophila halleyana \N \N \N \N \N 88286 O.elatum Oreostemma Oreostemma elatum \N \N \N \N \N 88287 Q.acuta Quercus Quercus acuta \N \N \N \N \N 88288 \N genus Apochiton \N \N \N \N \N 88289 S.setaceum Solanum Solanum setaceum \N \N \N \N \N 88290 E.multiflorum Epimedium Epimedium multiflorum \N \N \N \N \N 88291 \N tribe Dunnieae \N \N \N \N \N 88292 P.parvipetalum Pelargonium Pelargonium parvipetalum \N \N \N \N \N 88293 S.riparius Smallanthus Smallanthus riparius \N \N \N \N \N 88294 \N varietas Carex viridula var. saxilittoralis \N \N \N \N \N 88295 N.asparagoides Nephradenia Nephradenia asparagoides \N \N \N \N \N 88296 \N genus Aureliana \N \N \N \N \N 88297 P.nubiphila Psychotria Psychotria nubiphila \N \N \N \N \N 92651 \N genus Dipogon \N \N \N \N \N 88298 \N varietas Physalis alkekengi var. franchetii gua jin deng,hozuki \N \N \N \N 88299 C.microcarpum Caryocar Caryocar microcarpum \N \N \N \N \N 88300 A.pruinosa Annona Annona pruinosa \N \N \N \N \N 88301 B.australe Baloskion Baloskion australe \N \N \N \N \N 88302 \N varietas Solanum heterodoxum var. setigeroides \N \N \N \N \N 88303 L.serratus Lyperanthus Lyperanthus serratus \N \N \N \N \N 88304 O.esculentum Oxystelma Oxystelma esculentum \N \N \N \N \N 88305 D.confusa Duguetia Duguetia confusa \N \N \N \N \N 88306 \N genus Bassecoia \N \N \N \N \N 88307 R.notabilis Ranunculus Ranunculus notabilis \N \N \N \N \N 88308 C.88-003 Catalpa Catalpa aff. speciosa Olmstead 88-003 \N \N \N \N \N 88309 \N genus Duvalia \N \N \N \N \N 88310 C.megacephala Calea Calea megacephala \N \N \N \N \N 88311 H.monagensis Hasseltia Hasseltia monagensis \N \N \N \N \N 88312 P.stutzeri Pullea Pullea stutzeri \N \N \N \N \N 88313 G.fruticosum Gonospermum Gonospermum fruticosum \N \N \N \N \N 88314 \N varietas Carex stipata var. stipata \N \N \N \N \N 88315 \N subspecies Gazania krebsiana subsp. krebsiana \N \N \N \N \N 88316 H.hirsutissima Heuchera Heuchera hirsutissima \N \N \N \N \N 88317 G.ebracteata Gratiola Gratiola ebracteata \N \N \N \N \N 88318 B.macranthera Bauhinia Bauhinia macranthera \N \N \N \N \N 88319 C.flavescens Corymbia Corymbia flavescens \N \N \N \N \N 88320 \N subspecies Arabis nova subsp. nova \N \N \N \N \N 88321 \N genus Blepharipappus \N \N \N \N \N 88322 \N subspecies Helianthus praecox subsp. hirtus \N \N \N \N \N 88323 \N genus Micropera \N \N \N \N \N 88324 S.juzepczukii Solanum Solanum x juzepczukii ckaisalla,rucki \N \N \N \N 88325 P.GW2428 Pouteria Pouteria sp. GW2428 \N \N \N \N \N 88326 S.301 Saldinia Saldinia sp. Rakoto 301 \N \N \N \N \N 88327 \N varietas Actinidia eriantha var. eriantha \N \N \N \N \N 88328 M.scoparia Mulguraea Mulguraea scoparia \N \N \N \N \N 88329 T.krukovii Telitoxicum Telitoxicum krukovii \N \N \N \N \N 88330 S.humboldtiana Salix Salix humboldtiana \N \N \N \N \N 88331 \N genus Eremobium \N \N \N \N \N 88332 \N genus Androsace \N \N \N \N \N 88333 M.paludosa Microseris Microseris paludosa marsh silverpuff \N \N \N \N 88334 C.anantii Ceropegia Ceropegia anantii \N \N \N \N \N 88335 O.glaberrima Oryza Oryza sativa x Oryza glaberrima \N \N \N \N \N 88336 C.ligusticus Crocus Crocus ligusticus \N \N \N \N \N 88337 V.saturejoides Veronica Veronica saturejoides \N \N \N \N \N 88338 S.amplum Syzygium Syzygium amplum \N \N \N \N \N 88339 B.J.R.B.Tosh-2008 Belonophora Belonophora sp. J.R.B.Tosh-2008 \N \N \N \N \N 88340 V.kauaensis Viola Viola kauaensis \N \N \N \N \N 88341 C.trigyna Celosia Celosia trigyna wool-flower \N \N \N \N 88342 \N genus Gitara \N \N \N \N \N 88343 I.revoluta Ilex Ilex revoluta \N \N \N \N \N 88344 C.angustifolia Callicarpa Callicarpa angustifolia \N \N \N \N \N 88345 A.cochinchinensis Aidia Aidia cochinchinensis \N \N \N \N \N 88346 C.macrophyllum Chlorophytum Chlorophytum macrophyllum \N \N \N \N \N 88347 C.robusta Couepia Couepia robusta \N \N \N \N \N 88348 M.oldhamii Meliosma Meliosma oldhamii \N \N \N \N \N 88349 P.aristifolia Pentaschistis Pentameris aristifolia \N \N \N \N \N 88350 F.drummondii Froelichia Froelichia drummondii \N \N \N \N \N 88351 A.triphysa Ailanthus Ailanthus triphysa \N \N \N \N \N 88352 C.chlorosaccus Carex Carex chlorosaccus \N \N \N \N \N 88353 A.subsessilis Actephila Actephila subsessilis \N \N \N \N \N 88354 C.mortonianum Cestrum Cestrum mortonianum \N \N \N \N \N 88355 B.lehmanniana Billardiera Billardiera lehmanniana \N \N \N \N \N 88356 \N subspecies Oenothera ravenii subsp. chilensis \N \N \N \N \N 88357 A.costatum Arisaema Arisaema costatum \N \N \N \N \N 88358 A.songpanensis Angelica Angelica songpanensis \N \N \N \N \N 88359 C.kolenatiana Campanula Campanula kolenatiana \N \N \N \N \N 88360 P.virginianum Pycnanthemum Pycnanthemum virginianum \N \N \N \N \N 88361 H.epacroides Hybanthus Hybanthus epacroides \N \N \N \N \N 88362 M.nervosa Micromeria Micromeria nervosa \N \N \N \N \N 88363 P.mauritianum Psiloxylon Psiloxylon mauritianum \N \N \N \N \N 88364 \N genus Cedrela \N \N \N \N \N 88365 S.macrophyllum Satyrium Satyrium macrophyllum \N \N \N \N \N 88366 A.subviscosa Artemisia Artemisia subviscosa \N \N \N \N \N 88367 \N genus Coldenia \N \N \N \N \N 88368 J.abyssinicum Jasminum Jasminum abyssinicum \N \N \N \N \N 88369 C.andrambovatensis Coffea Coffea andrambovatensis \N \N \N \N \N 88370 V.praemorsa Viola Viola praemorsa \N \N \N \N \N 88371 S.tanakae Symplocos Symplocos tanakae \N \N \N \N \N 88372 P.latifolia Parentucellia Parentucellia latifolia \N \N \N \N \N 88373 \N varietas Ectrosia leporina var. leporina \N \N \N \N \N 88374 \N genus Echinospartum \N \N \N \N \N 88375 T.semipilosum Trifolium Trifolium semipilosum \N \N \N \N \N 88376 P.kleiniana Potentilla Potentilla kleiniana \N \N \N \N \N 88377 C.fauriei Clermontia Clermontia fauriei \N \N \N \N \N 88378 R.pinnatinervis Rhodomyrtus Rhodomyrtus pinnatinervis \N \N \N \N \N 88379 P.interior Pedicularis Pedicularis interior \N \N \N \N \N 88380 C.chilensis Cremolobus Cremolobus chilensis \N \N \N \N \N 88381 L.urticifolia Leucas Leucas urticifolia \N \N \N \N \N 88382 C.diffusa Canscora Canscora diffusa \N \N \N \N \N 88383 S.humbertiana Sobennikoffia Sobennikoffia humbertiana \N \N \N \N \N 88384 S.ovata Stewartia Stewartia ovata mountain camellia \N \N \N \N 88385 C.hyssopifolia Crotalaria Crotalaria hyssopifolia \N \N \N \N \N 88386 R.membranaceus Ranunculus Ranunculus membranaceus \N \N \N \N \N 88387 \N varietas Salvia nipponica var. nipponica \N \N \N \N \N 88388 S.acclinis Senna Senna acclinis \N \N \N \N \N 88389 A.obscurus Aphanocalyx Aphanocalyx obscurus \N \N \N \N \N 88390 T.peruvianum Trifolium Trifolium peruvianum \N \N \N \N \N 88391 S.turkestanica Silene Silene turkestanica \N \N \N \N \N 88392 \N genus Ceratiola \N \N \N \N \N 88393 H.abortiva Heterachne Heterachne abortiva \N \N \N \N \N 88394 \N genus Eremostachys \N \N \N \N \N 88395 C.mexicana Compsoneura Compsoneura mexicana \N \N \N \N \N 88396 M.phytolaccifolia Monnina Monnina phytolaccifolia \N \N \N \N \N 88397 D.decipiens Dirca Dirca decipiens \N \N \N \N \N 88398 M.indica Margaritaria Margaritaria indica \N \N \N \N \N 88399 C.poselgeriana Coryphantha Coryphantha poselgeriana \N \N \N \N \N 88400 C.vesicaria Caesalpinia Caesalpinia vesicaria \N \N \N \N \N 88401 A.platycarpa Acacia Acacia platycarpa \N \N \N \N \N 88402 S.macrostema Satureja Satureja macrostema \N \N \N \N \N 88403 C.japonica Chaenomeles Chaenomeles japonica flowering quince,he yuan zi \N \N \N \N 88404 R.thyrsiger Rubus Rubus ulmifolius var. inermis x Rubus thyrsiger \N \N \N \N \N 88405 A.densilepidotula Ardisia Ardisia densilepidotula \N \N \N \N \N 88406 M.pruinosa Manihot Manihot pruinosa \N \N \N \N \N 88407 C.lineare Cremanthodium Cremanthodium lineare \N \N \N \N \N 88408 P.acaulis Phylloscirpus Phylloscirpus acaulis \N \N \N \N \N 88409 D.linguiforme Dockrillia Dockrillia linguiforme \N \N \N \N \N 88410 H.sincorensis Heteropterys Heteropterys sincorensis \N \N \N \N \N 88411 B.angustifolia Brachyscome Brachyscome angustifolia \N \N \N \N \N 88412 \N subspecies Circaea alpina subsp. micrantha \N \N \N \N \N 88413 T.tiliifolia Torricellia Torricellia tiliifolia \N \N \N \N \N 88414 D.cruentum Dendrobium Dendrobium cruentum \N \N \N \N \N 88415 \N subspecies Gilia capitata subsp. mediomontana \N \N \N \N \N 88416 E.aeruginosa Euphorbia Euphorbia aeruginosa \N \N \N \N \N 88417 M.ochrantha Metrosideros Metrosideros ochrantha \N \N \N \N \N 88418 P.multiflorus Pleuropterus Pleuropterus multiflorus \N \N \N \N \N 88419 \N family Annonaceae custard-apple family \N \N \N \N 88420 C.forskalii Centropodia Centropodia forskalii \N \N \N \N \N 88421 \N genus Neostrearia \N \N \N \N \N 88422 L.paranensis Lupinus Lupinus paranensis \N \N \N \N \N 88423 C.fernandesii Convolvulus Convolvulus fernandesii \N \N \N \N \N 88424 O.sample environmental samples Taxonomy:1096708 Odontadenia environmental sample \N \N \N \N \N 88425 C.gynopetalus Croton Croton gynopetalus \N \N \N \N \N 88426 H.patavinum Haplophyllum Haplophyllum patavinum \N \N \N \N \N 88427 C.tibetica Crawfurdia Crawfurdia tibetica \N \N \N \N \N 88428 M.tibeticum Microgynoecium Microgynoecium tibeticum \N \N \N \N \N 88429 P.thompsoniae Penstemon Penstemon thompsoniae \N \N \N \N \N 88430 T.purpusii Trichostema Trichostema purpusii \N \N \N \N \N 88431 C.vestita Calanthe Calanthe vestita \N \N \N \N \N 88432 L.rosea Lumnitzera Lumnitzera rosea \N \N \N \N \N 88433 U.grandiflora Uvaria Uvaria grandiflora \N \N \N \N \N 88434 \N genus Laguncularia \N \N \N \N \N 88435 A.andersonii Anisacanthus Anisacanthus andersonii \N \N \N \N \N 88436 E.monadenioides Euphorbia Euphorbia monadenioides \N \N \N \N \N 88437 D.thurberi Diphysa Diphysa thurberi \N \N \N \N \N 88438 C.joorii Carex Carex joorii \N \N \N \N \N 88439 A.africanus Asparagus Asparagus africanus \N \N \N \N \N 88440 \N genus Zizia \N \N \N \N \N 88441 C.brevicaulis Capeobolus Capeobolus brevicaulis \N \N \N \N \N 88442 \N genus Forsskaolea \N \N \N \N \N 88443 E.fortunei Eupatorium Eupatorium fortunei Chinese eupatorium,pei lan \N \N \N \N 88444 E.pilosum Eupatorium Eupatorium pilosum rough boneset \N \N \N \N 88445 G.tabacina Glycine Glycine tabacina \N \N \N \N \N 88446 \N genus Leionema \N \N \N \N \N 88447 C.glomerata Cuscuta Cuscuta glomerata \N \N \N \N \N 88448 D.ulignosum Delphinium Delphinium ulignosum \N \N \N \N \N 88449 D.forrestii Delphinium Delphinium forrestii \N \N \N \N \N 88450 P.laetevirens Pseudopanax Pseudopanax laetevirens \N \N \N \N \N 88451 G.tubulosum Galeoglossum Galeoglossum tubulosum \N \N \N \N \N 88452 C.wardii Clinopodium Clinopodium wardii \N \N \N \N \N 88453 J.longistylis Juncus Juncus longistylis \N \N \N \N \N 88454 C.mayombensis Coffea Coffea mayombensis \N \N \N \N \N 88455 C.435 Curcuma Curcuma sp. Kalita 435 \N \N \N \N \N 88456 \N subspecies Meineckia phyllanthoides subsp. phyllanthoides \N \N \N \N \N 88457 L.4104 Lichtensteinia Lichtensteinia sp. van Wyk 4104 \N \N \N \N \N 88458 P.suberosa Passiflora Passiflora suberosa devil's-pumpkin,indigo-berry \N \N \N \N 88459 A.tanguticus Astragalus Astragalus tanguticus \N \N \N \N \N 88460 F.neapolitana Ferula Ferula neapolitana \N \N \N \N \N 88461 \N genus Acidoton \N \N \N \N \N 88462 C.sahyadrica Ceropegia Ceropegia sahyadrica \N \N \N \N \N 88463 P.violifloreum Pelargonium Pelargonium violifloreum \N \N \N \N \N 88464 \N genus Phaleria \N \N \N \N \N 88465 R.taitensis Rhus Rhus taitensis \N \N \N \N \N 88466 O.basilaris Opuntia Opuntia basilaris \N \N \N \N \N 88467 \N genus Gasteria \N \N \N \N \N 88468 P.fax Poa Poa fax \N \N \N \N \N 88469 L.ramosissimus Lupinus Lupinus ramosissimus \N \N \N \N \N 88470 A.auriculata Alonsoa Alonsoa auriculata \N \N \N \N \N 88471 M.soleirolii Medicago Medicago soleirolii \N \N \N \N \N 88472 P.rivularis Pilea Pilea rivularis \N \N \N \N \N 88473 L.ocymifolia Leonotis Leonotis ocymifolia \N \N \N \N \N 88474 P.nauruaq Parrya Parrya nauruaq \N \N \N \N \N 88475 S.subscaposa Semenovia Semenovia subscaposa \N \N \N \N \N 88476 D.vestita Dodonaea Dodonaea vestita \N \N \N \N \N 88477 B.cypria Bosea Bosea cypria \N \N \N \N \N 88478 T.campestre Trifolium Trifolium campestre \N \N \N \N \N 88479 E.horridum Echium Echium horridum \N \N \N \N \N 88480 L.bandelierae Lupinus Lupinus bandelierae \N \N \N \N \N 88481 \N subspecies Jasione crispa subsp. tristis \N \N \N \N \N 88482 N.troximoides Nothocalais Nothocalais troximoides false-agoseris,weevil prairie-dandelion \N \N \N \N 88483 C.pauciflorum Cerastium Cerastium pauciflorum \N \N \N \N \N 88484 C.pleiostemona Conceveiba Conceveiba pleiostemona \N \N \N \N \N 88485 C.2593 Commiphora Commiphora cf. mafaidoha Phillipson 2593 \N \N \N \N \N 88486 C.coursiana Coffea Coffea coursiana \N \N \N \N \N 88487 A.nakaii Artemisia Artemisia nakaii \N \N \N \N \N 88488 T.urvilleana Tibouchina Tibouchina urvilleana lasiandra,pleroma,princess flower,purple glory bush \N \N \N \N 92652 \N genus Dracophilus \N \N \N \N \N 88489 T.glaucophylla Triaspis Triaspis glaucophylla \N \N \N \N \N 88490 C.sabulosa Chorispora Chorispora sabulosa \N \N \N \N \N 88491 C.imperiale Chrysophyllum Chrysophyllum imperiale \N \N \N \N \N 88492 I.rosea Isertia Isertia rosea \N \N \N \N \N 88493 S.arborea Salacia Salacia arborea \N \N \N \N \N 88494 R.uva-crispa Ribes Ribes uva-crispa English gooseberry \N \N \N \N 88495 T.dichotomum Trifolium Trifolium dichotomum \N \N \N \N \N 88496 \N subspecies Gymnocalycium castellanosii subsp. castellanosii \N \N \N \N \N 88497 S.chamaedryfolia Spiraea Spiraea chamaedryfolia \N \N \N \N \N 88498 L.minor Lasthenia Lasthenia minor \N \N \N \N \N 88499 \N genus Ptilotus \N \N \N \N \N 88500 E.heterophylla Exoacantha Exoacantha heterophylla \N \N \N \N \N 88501 I.coccinea Ipomoea Ipomoea coccinea \N \N \N \N \N 88502 S.rypara Salvia Salvia rypara \N \N \N \N \N 88503 S.anfracta Stanhopea Stanhopea anfracta \N \N \N \N \N 88504 A.laniflora Arachnothryx Arachnothryx laniflora \N \N \N \N \N 88505 B.leiophylla Boehmeria Boehmeria leiophylla \N \N \N \N \N 88506 P.megalantha Pedicularis Pedicularis megalantha \N \N \N \N \N 88507 A.citroides Atalantia Atalantia citroides \N \N \N \N \N 88508 J.stoechadifolia Jurinea Jurinea stoechadifolia \N \N \N \N \N 88509 S.puertopenascoa Suaeda Suaeda puertopenascoa \N \N \N \N \N 88510 C.bakeri Cryptantha Cryptantha bakeri \N \N \N \N \N 88511 \N genus Tridentea \N \N \N \N \N 88512 C.gentryi Comparettia Comparettia gentryi \N \N \N \N \N 88513 D.villosa Dumasia Dumasia villosa \N \N \N \N \N 88514 O.ramosa Orobanche Orobanche ramosa \N \N \N \N \N 88515 \N genus Inula \N \N \N \N \N 88516 M.gillespieae Marsdenia Marsdenia gillespieae \N \N \N \N \N 88517 \N varietas Echinops pungens var. polyacanthus \N \N \N \N \N 88518 P.hispidula Pterostylis Pterostylis hispidula \N \N \N \N \N 88519 P.chilensis Pinguicula Pinguicula chilensis \N \N \N \N \N 88520 R.maxima Ruschia Ruschia maxima \N \N \N \N \N 88521 T.mocquerysi Tabernaemontana Tabernaemontana mocquerysi \N \N \N \N \N 88522 E.confusus Elymus Elymus confusus \N \N \N \N \N 88523 \N genus Mormodes \N \N \N \N \N 88524 M.modestei Melanophylla Melanophylla modestei \N \N \N \N \N 88525 N.cristata Nymphoides Nymphoides cristata \N \N \N \N \N 88526 P.ramosissimum Peraphyllum Peraphyllum ramosissimum squaw apple \N \N \N \N 88527 S.scoparia Serruria Serruria scoparia \N \N \N \N \N 88528 N.trichotoma Nassella Nassella trichotoma serrated tussock grass \N \N \N \N 88529 \N genus Guadua \N \N \N \N \N 88530 L.05010 Lonicera Lonicera sp. Qiu 05010 \N \N \N \N \N 88531 D.AS18 Distichochlamys Distichochlamys sp. AS18 \N \N \N \N \N 88532 P.balduinii Polygala Polygala balduinii \N \N \N \N \N 88533 L.alba Licania Licania alba \N \N \N \N \N 88534 F.flacca Festuca Festuca flacca \N \N \N \N \N 88535 P.jubata Pfaffia Pfaffia jubata \N \N \N \N \N 88536 D.minimus Drymoanthus Drymoanthus minimus \N \N \N \N \N 88537 O.depressa Oxalis Oxalis depressa \N \N \N \N \N 88538 H.salicifolius Hexalobus Hexalobus salicifolius \N \N \N \N \N 88539 S.crassipes Saprosma Saprosma crassipes \N \N \N \N \N 88540 L.zeyheri Lachenalia Lachenalia zeyheri \N \N \N \N \N 88541 C.erectifolia Calamagrostis Calamagrostis erectifolia \N \N \N \N \N 88542 \N genus Cylicomorpha \N \N \N \N \N 88543 D.rotundata Dioscorea Dioscorea rotundata Guinea yam,eboe yam,white guinea yam,white yam \N \N \N \N 88544 B.undulata Ballota Ballota undulata \N \N \N \N \N 88545 \N genus Ticodendron \N \N \N \N \N 88546 \N order Myrtales \N \N \N \N \N 88547 B.humilis Bloomeria Bloomeria humilis \N \N \N \N \N 88548 P.oblanceolata Plagiostachys Plagiostachys oblanceolata \N \N \N \N \N 88549 E.cernuum Eriospermum Eriospermum cernuum \N \N \N \N \N 88550 R.occidentalis Rumex Rumex occidentalis western dock \N \N \N \N 88551 H.imberbe Hypecoum Hypecoum imberbe \N \N \N \N \N 88552 L.monogynum Lonchostoma Lonchostoma monogynum \N \N \N \N \N 88553 C.sfikasianum Colchicum Colchicum sfikasianum \N \N \N \N \N 88554 A.angustifolia Agathelpis Agathelpis angustifolia \N \N \N \N \N 88555 A.sergii Allium Allium sergii \N \N \N \N \N 88556 M.globosum Monimiastrum Monimiastrum globosum \N \N \N \N \N 88557 R.robertsonii Rhysotoechia Rhysotoechia robertsonii \N \N \N \N \N 88558 S.myrsinifolia Salix Salix myrsinifolia whortle willow \N \N \N \N 88559 E.hunterianum Epidendrum Epidendrum hunterianum \N \N \N \N \N 88560 P.minensis Philcoxia Philcoxia minensis \N \N \N \N \N 88561 T.syriacum Taraxacum Taraxacum syriacum \N \N \N \N \N 88562 P.balansae Pseudosciadium Pseudosciadium balansae \N \N \N \N \N 88563 F.burtt-davyi Ficus Ficus burtt-davyi \N \N \N \N \N 88564 S.cappadocica Silene Silene cappadocica \N \N \N \N \N 88565 B.zamboangensis Brachypeza Brachypeza zamboangensis \N \N \N \N \N 88566 C.sessilifolia Coccinia Coccinia sessilifolia \N \N \N \N \N 88567 D.brownsbergensis Dalechampia Dalechampia brownsbergensis \N \N \N \N \N 88568 \N genus Xanthosia \N \N \N \N \N 88569 S.nana Sheareria Sheareria nana \N \N \N \N \N 88570 G.trullata Gavilea Gavilea trullata \N \N \N \N \N 88571 M.domatiosa Macaranga Macaranga domatiosa \N \N \N \N \N 88572 V.montana Veronica Veronica montana \N \N \N \N \N 88573 \N genus Xanthocephalum \N \N \N \N \N 88574 \N varietas Goodyera biflora var. macrantha \N \N \N \N \N 88575 C.brachiata Carallia Carallia brachiata \N \N \N \N \N 88576 A.DCT-2010 Alseuosmia Alseuosmia sp. DCT-2010 \N \N \N \N \N 88577 H.changhuaensis Hilliella Hilliella changhuaensis \N \N \N \N \N 88578 C.parviflorus Cleistocactus Cleistocactus parviflorus \N \N \N \N \N 88579 A.patriciae Aechmea Aechmea patriciae \N \N \N \N \N 88580 C.venulosum Canthium Canthium venulosum \N \N \N \N \N 88581 \N genus Tristagma \N \N \N \N \N 88582 S.glenum Syzygium Syzygium glenum \N \N \N \N \N 88583 A.teheranicus Astragalus Astragalus teheranicus \N \N \N \N \N 88584 S.albescens Scilla Scilla albescens \N \N \N \N \N 88585 \N subspecies Holosteum umbellatum subsp. umbellatum \N \N \N \N \N 88586 P.reticulatum Piper Piper reticulatum \N \N \N \N \N 88587 S.depressa Saxifraga Saxifraga depressa \N \N \N \N \N 88588 C.1838 Cyrtandra Cyrtandra sp. Plunkett 1838 \N \N \N \N \N 88589 X.klaprothioides Xylopodia Xylopodia klaprothioides \N \N \N \N \N 88590 \N subtribe Attaleinae \N \N \N \N \N 88591 D.kamborangense Dendrochilum Dendrochilum kamborangense \N \N \N \N \N 88592 C.patula Cremersia Cremersia patula \N \N \N \N \N 88593 S.ajanensis Silene Silene ajanensis \N \N \N \N \N 88594 \N genus Acnistus \N \N \N \N \N 88595 E.stipitatum Exospermum Exospermum stipitatum \N \N \N \N \N 88596 \N genus Dimorphorchis \N \N \N \N \N 88597 C.cephallenica Campanula Campanula cephallenica \N \N \N \N \N 88598 M.gracile Macroptilium Macroptilium gracile \N \N \N \N \N 88599 \N varietas Lupinus formosus var. robustus \N \N \N \N \N 88600 S.28 Symphoricarpos Symphoricarpos sp. Donoghue & Winkworth 28 \N \N \N \N \N 88601 \N genus Tetrameranthus \N \N \N \N \N 88602 L.tricolor Lycianthes Lycianthes tricolor \N \N \N \N \N 88603 C.louisianica Carex Carex louisianica \N \N \N \N \N 88604 E.juncea Elegia Elegia juncea \N \N \N \N \N 88605 A.praetervisa Astraea Astraea praetervisa \N \N \N \N \N 88606 C.commersoniana Cadia Cadia commersoniana \N \N \N \N \N 88607 P.irrorata Pilea Pilea irrorata \N \N \N \N \N 88608 \N subspecies Salix glauca subsp. stipulifera \N \N \N \N \N 88609 \N genus Vaseyanthus \N \N \N \N \N 88610 I.guaranitica Indigofera Indigofera guaranitica \N \N \N \N \N 88611 S.ovigerum Solanum Solanum ovigerum \N \N \N \N \N 88612 E.involucrata Eugenia Eugenia involucrata cerejeira-do-mato,cherry of the Rio Grande \N \N \N \N 88613 \N subspecies Campanula fragilis subsp. fragilis \N \N \N \N \N 88614 E.nanus Euonymus Euonymus nanus \N \N \N \N \N 88615 B.grandibracteata Baeckea Baeckea grandibracteata \N \N \N \N \N 88616 E.ophiuroides Eremochloa Eremochloa ophiuroides \N \N \N \N \N 88617 A.pachycaulon Aichryson Aichryson pachycaulon \N \N \N \N \N 88618 C.setaceus Cenchrus Cenchrus setaceus fountain grass \N \N \N \N 88619 A.hoehnei Arachis Arachis hoehnei \N \N \N \N \N 88620 A.euxinum Arum Arum euxinum \N \N \N \N \N 88621 A.pubescens Aaronsohnia Aaronsohnia pubescens \N \N \N \N \N 88622 \N genus Stipagrostis \N \N \N \N \N 88623 D.gilliesii Draba Draba gilliesii \N \N \N \N \N 88624 R.burchellii Restio Restio burchellii \N \N \N \N \N 88625 W.madagascariensis Warneckea Warneckea madagascariensis \N \N \N \N \N 88626 M.laskowskii Montanoa Montanoa laskowskii \N \N \N \N \N 88627 P.'flava' Pentas Pentas sp. 'flava' \N \N \N \N \N 88628 \N genus Chomelia \N \N \N \N \N 88629 S.neomexicana Sidalcea Sidalcea neomexicana \N \N \N \N \N 88630 L.arborescens Loreya Loreya arborescens \N \N \N \N \N 88631 L.heterophyllus Lathyrus Lathyrus heterophyllus \N \N \N \N \N 88632 D.meeboldii Darwinia Darwinia meeboldii \N \N \N \N \N 88633 U.acuminata Uvaria Uvaria acuminata \N \N \N \N \N 88634 S.pungens Strychnos Strychnos pungens \N \N \N \N \N 88635 O.floribunda Ocotea Ocotea floribunda \N \N \N \N \N 88636 C.lanceolata Callistachys Callistachys lanceolata \N \N \N \N \N 88637 C.rostrata Commiphora Commiphora rostrata \N \N \N \N \N 88638 C.herrei Cyrtanthus Cyrtanthus herrei \N \N \N \N \N 88639 T.tubaeformis Tithonia Tithonia tubaeformis \N \N \N \N \N 88640 C.ferrisiae Ceanothus Ceanothus ferrisiae \N \N \N \N \N 88641 F.pandurata Ficus Ficus pandurata \N \N \N \N \N 88642 S.cadmica Salvia Salvia cadmica \N \N \N \N \N 88643 H.nordestina Heteropterys Heteropterys nordestina \N \N \N \N \N 88644 N.YLQ-2003 Nuphar Nuphar sp. YLQ-2003 \N \N \N \N \N 88645 L.pubescens Linum Linum pubescens \N \N \N \N \N 88646 T.stolonifera Torenia Torenia stolonifera \N \N \N \N \N 88647 J.caudata Justicia Justicia caudata \N \N \N \N \N 88648 B.villifolia Begonia Begonia villifolia \N \N \N \N \N 88649 P.smithiana Pseuderia Pseuderia smithiana \N \N \N \N \N 88650 \N genus Lecomtedoxa \N \N \N \N \N 88651 \N genus Macrostylis \N \N \N \N \N 88652 R.pumilum Rhynchopsidium Rhynchopsidium pumilum \N \N \N \N \N 88653 D.jorullensis Draba Draba jorullensis \N \N \N \N \N 88654 \N subtribe Linziinae \N \N \N \N \N 88655 S.schweinfurthii Sonchus Sonchus schweinfurthii \N \N \N \N \N 88656 G.aquamontanus Gladiolus Gladiolus aquamontanus \N \N \N \N \N 88657 O.philippei Ophrys Ophrys x philippei \N \N \N \N \N 88658 H.laxum Hypericum Hypericum laxum \N \N \N \N \N 88659 R.63717 Randia Randia sp. Madsen 63717 \N \N \N \N \N 88660 \N genus Dyerophytum \N \N \N \N \N 88661 A.poeltianum Androcymbium Androcymbium poeltianum \N \N \N \N \N 88662 \N genus Artabotrys \N \N \N \N \N 88663 C.exilifolia Caesalpinia Caesalpinia exilifolia \N \N \N \N \N 88664 \N genus Platymitra \N \N \N \N \N 88665 E.conspicua Erica Erica conspicua \N \N \N \N \N 88666 P.xenica Poa Poa xenica \N \N \N \N \N 88667 M.beccarianum Melastoma Melastoma beccarianum \N \N \N \N \N 88668 P.virginica Peltandra Peltandra virginica arrow arum,tuckahoe \N \N \N \N 88669 D.knudsenii Dubautia Dubautia knudsenii \N \N \N \N \N 88670 D.moldavica Dracocephalum Dracocephalum moldavica \N \N \N \N \N 88671 P.palmeri Passiflora Passiflora palmeri \N \N \N \N \N 88672 P.11000 Piper Piper sp. Davidson 11000 \N \N \N \N \N 88673 \N genus Apocynum \N \N \N \N \N 88674 \N subspecies Poa smirnowii subsp. mariae \N \N \N \N \N 88675 \N family Cleomaceae \N \N \N \N \N 88676 P.florida Parkinsonia Parkinsonia florida blue paloverde \N \N \N \N 88677 S.viscosa Schiedea Schiedea viscosa \N \N \N \N \N 88678 \N varietas Carex debilis var. rudgei \N \N \N \N \N 88679 G.itatiaiae Gaultheria Gaultheria itatiaiae \N \N \N \N \N 88680 D.natalensis Diospyros Diospyros natalensis \N \N \N \N \N 88681 D.finniganense Dendrobium Dendrobium finniganense \N \N \N \N \N 88682 C.1222' Chusquea Chusquea sp. 'LC&XL 1222' \N \N \N \N \N 88683 C.arabica Coffea Coffea arabica arabica coffee,coffee \N \N \N \N 88684 P.tomentosa Populus Populus tomentosa Chinese white poplar \N \N \N \N 88685 D.alticola Disa Disa alticola \N \N \N \N \N 88686 S.koessleri Suessenguthia Suessenguthia koessleri \N \N \N \N \N 88687 S.pauciflora Silene Silene pauciflora \N \N \N \N \N 88688 M.textilis Musa Musa balbisiana x Musa textilis \N \N \N \N \N 88689 H.undatus Hylocereus Hylocereus undatus dragon fruit \N \N \N \N 88690 A.pseudoselinum Angelica Angelica pseudoselinum \N \N \N \N \N 88691 C.alpina Campanula Campanula alpina \N \N \N \N \N 88692 G.ilicifolia Grevillea Grevillea ilicifolia \N \N \N \N \N 88693 O.montana Onobrychis Onobrychis montana \N \N \N \N \N 88694 C.Popov Cyclopogon Cyclopogon sp. 2 ex cult. Popov \N \N \N \N \N 88695 A.manglesii Anigozanthos Anigozanthos humilis x Anigozanthos manglesii \N \N \N \N \N 88696 \N genus Niemeyera \N \N \N \N \N 88697 P.serratodigitata Passiflora Passiflora serratodigitata \N \N \N \N \N 88698 F.megacarpum Fagopyrum Fagopyrum megacarpum \N \N \N \N \N 88699 M.clevelandii Muilla Muilla clevelandii \N \N \N \N \N 88700 I.h-5 Impatiens Impatiens sp. h-5 \N \N \N \N \N 88701 P.sessilis Prismatocarpus Prismatocarpus sessilis \N \N \N \N \N 88702 \N varietas Dendrobium jonesii var. magnificum \N \N \N \N \N 88703 S.robusta Stilbocarpa Stilbocarpa robusta \N \N \N \N \N 88704 C.neomexicanum Cirsium Cirsium neomexicanum New Mexico thistle \N \N \N \N 88705 M.minor Monodora Monodora minor \N \N \N \N \N 88706 A.retinervis Alchemilla Alchemilla retinervis \N \N \N \N \N 88707 P.aereum Piper Piper aereum \N \N \N \N \N 88708 C.debilis Cayratia Cayratia debilis \N \N \N \N \N 88709 \N genus Kalmia \N \N \N \N \N 88710 C.contracta Coussarea Coussarea contracta \N \N \N \N \N 88711 \N genus Abdominea \N \N \N \N \N 88712 G.andreae Gymnocalycium Gymnocalycium andreae \N \N \N \N \N 88713 \N genus Geissois \N \N \N \N \N 88714 P.spectabilis Pimelea Pimelea spectabilis \N \N \N \N \N 88715 S.orbicularis Sauropus Sauropus orbicularis \N \N \N \N \N 88716 K.paradoxus Kingianthus Kingianthus paradoxus \N \N \N \N \N 88717 B.scariosa Babiana Babiana scariosa \N \N \N \N \N 88718 M.rehsteineri Myosotis Myosotis rehsteineri \N \N \N \N \N 88719 L.comosus Leucocroton Leucocroton comosus \N \N \N \N \N 88720 S.decompositiflorum Solanum Solanum decompositiflorum \N \N \N \N \N 88721 T.stupendum Taraxacum Taraxacum stupendum \N \N \N \N \N 88722 P.puritanorum Persicaria Persicaria puritanorum \N \N \N \N \N 88723 \N genus Tsoongia \N \N \N \N \N 88724 N.divaricata Navarretia Navarretia divaricata \N \N \N \N \N 88725 \N genus Tetrazygia \N \N \N \N \N 88726 \N genus Tiarocarpus \N \N \N \N \N 88727 L.comosa Luzula Luzula comosa \N \N \N \N \N 88728 S.striiflorus Sphinctanthus Sphinctanthus striiflorus \N \N \N \N \N 88729 P.transvaalensis Pimpinella Pimpinella transvaalensis \N \N \N \N \N 88730 O.racemosa Oxyanthus Oxyanthus racemosa \N \N \N \N \N 88731 L.quitoensis Leptochiton Leptochiton quitoensis \N \N \N \N \N 88732 R.bonii Rhaphidophora Rhaphidophora bonii \N \N \N \N \N 88733 A.2283 Aristolochia Aristolochia aff. ringens 2283 \N \N \N \N \N 88734 U.horizontalis Umbilicus Umbilicus horizontalis \N \N \N \N \N 88735 O.praestanoides Oncidium Oncidium praestanoides \N \N \N \N \N 88736 \N genus Dorycnium \N \N \N \N \N 88737 \N tribe Isachneae \N \N \N \N \N 88738 S.pleuropogon Schismus Schismus pleuropogon \N \N \N \N \N 88739 P.s.n. Ploiarium Ploiarium sp. Cameron s.n. \N \N \N \N \N 88740 P.rzedowskii Platanus Platanus rzedowskii \N \N \N \N \N 88741 M.4870 Megaphrynium Megaphrynium sp. de Koning 4870 \N \N \N \N \N 88742 C.formosus Cyananthus Cyananthus formosus \N \N \N \N \N 88743 H.mariae Herrania Herrania mariae \N \N \N \N \N 88744 F.11 Forsythia Forsythia sp. Reeves 11 \N \N \N \N \N 88745 G.pellucida Gibasis Gibasis pellucida \N \N \N \N \N 88746 L.multifida Lavandula Lavandula multifida \N \N \N \N \N 88747 \N subspecies Lamium galeobdolon subsp. flavidum \N \N \N \N \N 88748 B.thianschanicum Bupleurum Bupleurum thianschanicum \N \N \N \N \N 88749 P.multiflora Poitea Poitea multiflora \N \N \N \N \N 88750 D.singaporensis Durio Durio singaporensis \N \N \N \N \N 88751 D.synacanthum Dasyphyllum Dasyphyllum synacanthum \N \N \N \N \N 88752 B.erecta Briza Briza erecta \N \N \N \N \N 88753 S.glomulifera Syncarpia Syncarpia glomulifera \N \N \N \N \N 88754 A.maculata Aphelandra Aphelandra maculata \N \N \N \N \N 88755 H.cultivar Helanthium Helanthium hybrid cultivar \N \N \N \N \N 88756 \N genus Anadenanthera \N \N \N \N \N 88757 \N varietas Aloe lineata var. lineata \N \N \N \N \N 88758 P.fasciculatus Paepalanthus Paepalanthus fasciculatus \N \N \N \N \N 88759 A.dipelta Astragalus Astragalus dipelta \N \N \N \N \N 88760 C.mollis Callicarpa Callicarpa mollis \N \N \N \N \N 88761 \N genus Monachather \N \N \N \N \N 88762 P.villosa Pinguicula Pinguicula villosa hairy butterwort \N \N \N \N 88763 C.granthamiana Camellia Camellia granthamiana \N \N \N \N \N 88764 \N subspecies Glossopappus macrotus subsp. hesperius \N \N \N \N \N 88765 B.strychnifolia Bauhinia Bauhinia strychnifolia \N \N \N \N \N 88766 D.nummulariifolia Diplolepis Diplolepis nummulariifolia \N \N \N \N \N 88767 D.96007 Dieffenbachia Dieffenbachia sp. Qiu 96007 \N \N \N \N \N 88768 L.2172 Lobelia Lobelia sp. Chase 2172 \N \N \N \N \N 88769 O.suaveolens Oenothera Oenothera suaveolens \N \N \N \N \N 88770 P.brevidens Phyllostegia Phyllostegia brevidens \N \N \N \N \N 88771 K.zimbabwensis Kalanchoe Kalanchoe zimbabwensis \N \N \N \N \N 88772 V.sublanceolatum Vincetoxicum Vincetoxicum sublanceolatum \N \N \N \N \N 88773 S.6917/1 Salicornia Salicornia aff. meyeriana Mucina 6917/1 \N \N \N \N \N 88774 T.capitata Tococa Tococa capitata \N \N \N \N \N 88775 T.hassleriana Turnera Turnera hassleriana \N \N \N \N \N 88776 \N genus Anacyclus \N \N \N \N \N 88777 \N genus Avenula \N \N \N \N \N 88778 S.megapotamicum Sisyrinchium Sisyrinchium megapotamicum \N \N \N \N \N 88779 C.skinneri Cattleya Cattleya skinneri \N \N \N \N \N 88780 B.estradae Benzingia Benzingia estradae \N \N \N \N \N 94208 S.lydia Silene Silene lydia \N \N \N \N \N 88781 V.sambucifolia Valeriana Valeriana sambucifolia \N \N \N \N \N 88782 K.montana Krigia Krigia montana \N \N \N \N \N 88783 \N subtribe Chondrillinae \N \N \N \N \N 88784 S.rothrockii Stachys Stachys rothrockii \N \N \N \N \N 88785 A.callistachys Astragalus Astragalus callistachys \N \N \N \N \N 88786 C.pulchella Centaurea Centaurea pulchella \N \N \N \N \N 88787 P.warshaueri Phyllostegia Phyllostegia warshaueri \N \N \N \N \N 88788 F.meleagris Fritillaria Fritillaria meleagris \N \N \N \N \N 88789 S.standleyi Stenocereus Stenocereus standleyi \N \N \N \N \N 88790 M.clarkeana Murdannia Murdannia clarkeana \N \N \N \N \N 88791 C.werdermannii Cuscuta Cuscuta werdermannii \N \N \N \N \N 88792 \N genus Coleogyne \N \N \N \N \N 88793 A.crassiflora Annona Annona crassiflora \N \N \N \N \N 88794 \N genus Maurocenia \N \N \N \N \N 88795 D.flexuosa Daviesia Daviesia flexuosa \N \N \N \N \N 88796 \N varietas Cuscuta salina var. apoda \N \N \N \N \N 88797 T.dunniana Trichosanthes Trichosanthes dunniana \N \N \N \N \N 88798 T.alpina Tozzia Tozzia alpina \N \N \N \N \N 88799 R.pringlei Raillardella Raillardella pringlei \N \N \N \N \N 88800 O.spinosa Ononis Ononis spinosa \N \N \N \N \N 88801 S.stenodon Strobilanthes Strobilanthes stenodon \N \N \N \N \N 88802 \N genus Acaulimalva \N \N \N \N \N 88803 N.pulchella Neolitsea Neolitsea pulchella \N \N \N \N \N 88804 H.gracilis Hoffmannseggella Hoffmannseggella gracilis \N \N \N \N \N 88805 A.cepiforme Allium Allium x cepiforme \N \N \N \N \N 88806 E.saissanicus Echinops Echinops saissanicus \N \N \N \N \N 88807 G.maritima Gazania Gazania maritima \N \N \N \N \N 88808 B.strobilacea Boschniakia Boschniakia strobilacea \N \N \N \N \N 88809 S.cordifolium Sphyrospermum Sphyrospermum cordifolium \N \N \N \N \N 88810 A.blackii Anthotroche Anthotroche blackii \N \N \N \N \N 88811 G.aristata Gentiana Gentiana aristata \N \N \N \N \N 88812 L.feei Limoniastrum Limoniastrum feei \N \N \N \N \N 88813 N.moorei Nothofagus Nothofagus moorei \N \N \N \N \N 88814 C.cochleata Cranichis Cranichis cochleata \N \N \N \N \N 88815 B.ericaea Baeckea Baeckea ericaea \N \N \N \N \N 88816 \N genus Chionogentias \N \N \N \N \N 88817 T.brandegei Trifolium Trifolium brandegei \N \N \N \N \N 88818 B.appendiculata Brodiaea Brodiaea appendiculata \N \N \N \N \N 88819 T.ramosissimum Trymalium Trymalium ramosissimum \N \N \N \N \N 88820 D.febrifuga Dichroa Dichroa febrifuga \N \N \N \N \N 88821 \N genus Berardia \N \N \N \N \N 88822 \N genus Nohawilliamsia \N \N \N \N \N 88823 Z.97755 Zeltnera Zeltnera sp. 97755 \N \N \N \N \N 88824 F.mauritiana Foetidia Foetidia mauritiana \N \N \N \N \N 88825 C.coccineum Clinopodium Clinopodium coccineum \N \N \N \N \N 88826 E.ridleyi Epigynum Epigynum ridleyi \N \N \N \N \N 88827 C.aethiopica Chasmanthe Chasmanthe aethiopica \N \N \N \N \N 88828 H.triebneri Hoodia Hoodia triebneri \N \N \N \N \N 88829 B.juncea Baumea Baumea juncea \N \N \N \N \N 88830 A.ventricosa Antimima Antimima ventricosa \N \N \N \N \N 88831 \N varietas Pteryxia terebinthina var. calcarea \N \N \N \N \N 88832 E.formosa Echinopsis Echinopsis formosa \N \N \N \N \N 88833 C.northropiae Coccoloba Coccoloba northropiae \N \N \N \N \N 88834 M.angolensis Mollera Mollera angolensis \N \N \N \N \N 88835 V.amicorum Vavaea Vavaea amicorum \N \N \N \N \N 88836 A.germinans Avicennia Avicennia germinans black mangrove \N \N \N \N 88837 S.ptaritepuiensis Stegolepis Stegolepis ptaritepuiensis \N \N \N \N \N 88838 M.discolor Mosannona Mosannona discolor \N \N \N \N \N 88839 T.grandiflora Triteleia Triteleia grandiflora \N \N \N \N \N 88840 \N genus Sebertia \N \N \N \N \N 88841 S.hirsuta Sidalcea Sidalcea hirsuta \N \N \N \N \N 88842 G.hallii Galium Galium hallii \N \N \N \N \N 88843 S.trachypus Senna Senna trachypus \N \N \N \N \N 88844 C.praeceptorum Carex Carex praeceptorum \N \N \N \N \N 88845 D.lugens Disa Disa lugens \N \N \N \N \N 88846 A.laevis Atriplex Atriplex laevis \N \N \N \N \N 88847 C.leptocarpoides Cytogonidium Cytogonidium leptocarpoides \N \N \N \N \N 88848 \N genus Xanthophytum \N \N \N \N \N 88849 P.umbrosa Pastinaca Pastinaca umbrosa \N \N \N \N \N 88850 C.hispidula Cryptandra Cryptandra hispidula \N \N \N \N \N 88851 B.HCO-2006 Bambusa Bambusa aff. longispiculata HCO-2006 \N \N \N \N \N 88852 X.chrysanthus Xanthostemon Xanthostemon chrysanthus Johnstone River penda,black penda \N \N \N \N 88853 S.praetermissa Saxifraga Saxifraga praetermissa \N \N \N \N \N 88854 C.LMP-2009 Canna Canna sp. LMP-2009 \N \N \N \N \N 88855 L.7668 Loxostigma Loxostigma sp. Gaoligong Shan 7668 \N \N \N \N \N 88856 N.chalmersii Neonauclea Neonauclea chalmersii \N \N \N \N \N 88857 S.SH-2010 Spathoglottis Spathoglottis sp. SH-2010 \N \N \N \N \N 88858 \N subspecies Pausinystalia lane-poolei subsp. lane-poolei \N \N \N \N \N 88859 \N varietas Leonotis nepetifolia var. nepetifolia \N \N \N \N \N 88860 B.MH-2011a Begonia Begonia sp. MH-2011a \N \N \N \N \N 88861 M.gigantea Mucuna Mucuna gigantea \N \N \N \N \N 88862 C.nobilis Chusquea Chusquea nobilis \N \N \N \N \N 88863 W.exilis Wahlenbergia Wahlenbergia exilis \N \N \N \N \N 88864 D.swalleniana Digitaria Digitaria swalleniana \N \N \N \N \N 88865 L.aculeatifolia Lophocarpinia Lophocarpinia aculeatifolia \N \N \N \N \N 88866 T.argentea Tylosema Tylosema argentea \N \N \N \N \N 88867 I.kingii Ivesia Ivesia kingii \N \N \N \N \N 88868 R.physocalyx Rhynchosida Rhynchosida physocalyx \N \N \N \N \N 88869 H.divaricatus Helianthus Helianthus divaricatus \N \N \N \N \N 88870 H.inexpectatum Heracleum Heracleum inexpectatum \N \N \N \N \N 88871 B.intermedia Barbarea Barbarea intermedia \N \N \N \N \N 88872 \N subspecies Moehringia intricata subsp. intricata \N \N \N \N \N 88873 R.rhizostachyum Rheum Rheum rhizostachyum \N \N \N \N \N 88874 \N genus Simirestis \N \N \N \N \N 88875 S.1274 Salicornia Salicornia sp. Chen 1274 \N \N \N \N \N 88876 R.picroides Reichardia Reichardia picroides \N \N \N \N \N 88877 C.moritziana Cleome Cleome moritziana \N \N \N \N \N 88878 C.clausus Cryptopylos Cryptopylos clausus \N \N \N \N \N 88879 M.occidentalis Mimosa Mimosa occidentalis \N \N \N \N \N 88880 D.alpinum Dendrochilum Dendrochilum alpinum \N \N \N \N \N 88881 A.menziesii Abutilon Abutilon menziesii \N \N \N \N \N 88882 S.huangmeiensis Sinojackia Sinojackia huangmeiensis \N \N \N \N \N 88883 E.amazoniciformis Eschweilera Eschweilera amazoniciformis \N \N \N \N \N 88884 S.gigantea Stelis Stelis gigantea \N \N \N \N \N 88885 S.huaylasense Lycopersicon Solanum huaylasense \N \N \N \N \N 88886 P.calycoptera Pterogaillonia Pterogaillonia calycoptera \N \N \N \N \N 88887 U.tridactyla Utricularia Utricularia tridactyla \N \N \N \N \N 88888 C.645 Cyrtandra Cyrtandra cf. pogonantha Clark 645 \N \N \N \N \N 88889 C.sumatranus Cleistanthus Cleistanthus sumatranus \N \N \N \N \N 88890 \N genus Ekmanianthe \N \N \N \N \N 88891 C.taliera Corypha Corypha taliera \N \N \N \N \N 88892 M.elongata Minthostachys Minthostachys elongata \N \N \N \N \N 88893 D.cinerea Dichrostachys Dichrostachys cinerea \N \N \N \N \N 88894 I.s.n. Isochilus Isochilus sp. Szlachetko s.n. \N \N \N \N \N 88895 S.superba Saussurea Saussurea superba \N \N \N \N \N 88896 D.9254 Danthonia Danthonia sp. Chase 9254 \N \N \N \N \N 88897 R.guanchensis Rhodospatha Rhodospatha guanchensis \N \N \N \N \N 88898 L.ciliatum Lycium Lycium ciliatum \N \N \N \N \N 88899 A.henryi Androsace Androsace henryi \N \N \N \N \N 88900 D.umbraculorum Delphinium Delphinium umbraculorum umbrella larkspur \N \N \N \N 88901 C.mertensiana Corallorhiza Corallorhiza mertensiana \N \N \N \N \N 88902 \N genus Chaetopappa \N \N \N \N \N 88903 B.compressa Bothriochloa Bothriochloa compressa \N \N \N \N \N 88904 N.retusa Nemcia Nemcia retusa \N \N \N \N \N 88905 \N genus Chaunanthus \N \N \N \N \N 88906 \N genus Svenkoeltzia \N \N \N \N \N 88907 R.austriaca Rorippa Rorippa austriaca \N \N \N \N \N 88908 \N genus Nicodemia \N \N \N \N \N 88909 P.triphyllum Pelargonium Pelargonium triphyllum \N \N \N \N \N 88910 \N tribe Olyreae \N \N \N \N \N 88911 \N genus Raycadenco \N \N \N \N \N 88912 \N genus Briza quaking grass \N \N \N \N 88913 G.australianum Gymnostoma Gymnostoma australianum \N \N \N \N \N 88914 Z.fabago Zygophyllum Zygophyllum fabago Syrian bean-caper \N \N \N \N 88915 M.sieversii Malus Malus sieversii \N \N \N \N \N 88916 C.scandens Callerya Callerya scandens \N \N \N \N \N 88917 \N varietas Vigna angularis var. nipponensis \N \N \N \N \N 88918 L.815 Lupinus Lupinus sp. Pennington 815 \N \N \N \N \N 88919 L.strictum Linum Linum strictum \N \N \N \N \N 88920 L.tenuis Lessingia Lessingia tenuis \N \N \N \N \N 88921 H.suffrutescens Hesperidanthus Hesperidanthus suffrutescens \N \N \N \N \N 88922 \N genus Ditta \N \N \N \N \N 88923 P.scheuchzeri Phyteuma Phyteuma scheuchzeri \N \N \N \N \N 88924 C.myricoides Cyclonema Cyclonema myricoides \N \N \N \N \N 88925 A.flagellaris Antennaria Antennaria flagellaris \N \N \N \N \N 88926 B.grushvitzkyi Brassaiopsis Brassaiopsis grushvitzkyi \N \N \N \N \N 88927 \N genus Thyridolepis \N \N \N \N \N 88928 S.urceolata Secamone Secamone urceolata \N \N \N \N \N 88929 E.bifaria Eragrostiella Eragrostiella bifaria \N \N \N \N \N 88930 C.lingulata Clarkia Clarkia lingulata \N \N \N \N \N 88931 I.aucheri Iris Iris aucheri \N \N \N \N \N 88932 B.emoryi Bergerocactus Bergerocactus emoryi \N \N \N \N \N 88933 P.linifolia Pimelea Pimelea linifolia \N \N \N \N \N 88934 S.glaberrima Schizogyne Schizogyne glaberrima \N \N \N \N \N 88935 R.lanigerum Rhododendron Rhododendron lanigerum \N \N \N \N \N 88936 S.beampingaratrensis Streptocarpus Streptocarpus beampingaratrensis \N \N \N \N \N 88937 C.N018 Cyrtochilum Cyrtochilum sp. N018 \N \N \N \N \N 88938 H.frutescens Hippia Hippia frutescens \N \N \N \N \N 88939 A.smithiae Alpinia Alpinia smithiae \N \N \N \N \N 88940 \N genus Pterocephalidium \N \N \N \N \N 88941 \N subspecies Rafnia angulata subsp. thunbergii \N \N \N \N \N 88942 I.spathulata Ipomoea Ipomoea spathulata \N \N \N \N \N 88943 C.macrostachya Campanula Campanula macrostachya \N \N \N \N \N 88944 C.echinatus Cenchrus Cenchrus echinatus \N \N \N \N \N 88945 C.lachenalii Carex Carex lachenalii \N \N \N \N \N 88946 \N genus Trigonostemon \N \N \N \N \N 88947 C.californica Cylindropuntia Cylindropuntia californica \N \N \N \N \N 88948 B.argyrophylla Banisteriopsis Banisteriopsis argyrophylla \N \N \N \N \N 88949 \N genus Spermadictyon \N \N \N \N \N 88950 \N tribe Actinostemmateae \N \N \N \N \N 88951 \N genus Galactites \N \N \N \N \N 88952 L.micrantha Loasa Loasa micrantha \N \N \N \N \N 88953 P.hederifolia Physalis Physalis hederifolia \N \N \N \N \N 88954 D.altaica Draba Draba altaica \N \N \N \N \N 88955 E.randii Euphrasia Euphrasia randii \N \N \N \N \N 88956 W.fruticosa Woodfordia Woodfordia fruticosa \N \N \N \N \N 88957 A.apiculata Amphitecna Amphitecna apiculata \N \N \N \N \N 88958 C.sibirica Clematis Clematis sibirica \N \N \N \N \N 88959 \N genus Mandragora \N \N \N \N \N 88960 B.tweediei Blepharocalyx Blepharocalyx tweediei \N \N \N \N \N 88961 H.pubiflorum Hordeum Hordeum pubiflorum \N \N \N \N \N 88962 O.multiflora Orobanche Orobanche multiflora \N \N \N \N \N 88963 E.pininsulare Elaeodendron Elaeodendron pininsulare \N \N \N \N \N 88964 \N genus Clavija \N \N \N \N \N 88965 P.costata Pouteria Pouteria costata \N \N \N \N \N 88966 M.nodulosum Megistostegium Megistostegium nodulosum \N \N \N \N \N 88967 \N varietas Achillea millefolium var. lanulosa \N \N \N \N \N 88968 A.urostachys Astrocaryum Astrocaryum urostachys \N \N \N \N \N 88969 R.freynii Rhinanthus Rhinanthus freynii \N \N \N \N \N 88970 B.mellicolor Bifrenaria Bifrenaria mellicolor \N \N \N \N \N 88971 B.americana Bouteloua Bouteloua americana \N \N \N \N \N 88972 C.digitalis Carex Carex digitalis \N \N \N \N \N 88973 A.tenuicaulis Anagallis Anagallis tenuicaulis \N \N \N \N \N 88974 \N genus Leitneria \N \N \N \N \N 88975 B.aconitifolia Boykinia Boykinia aconitifolia \N \N \N \N \N 88976 \N subspecies Disa tenella subsp. pusilla \N \N \N \N \N 88977 D.pustulata Diospyros Diospyros pustulata \N \N \N \N \N 88978 G.deliana Globba Globba deliana \N \N \N \N \N 88979 A.villifera Antennaria Antennaria villifera \N \N \N \N \N 88980 M.zephyranthoides Mammillaria Mammillaria zephyranthoides \N \N \N \N \N 88981 L.lutea Luzula Luzula lutea \N \N \N \N \N 88982 M.tetracoccus Mallotus Mallotus tetracoccus \N \N \N \N \N 88983 V.anemonifolia Villanova Villanova anemonifolia \N \N \N \N \N 88984 E.esterhuyseniae Elegia Elegia esterhuyseniae \N \N \N \N \N 88985 M.algoensis Moraea Moraea algoensis \N \N \N \N \N 88986 C.vaginatum Conioselinum Conioselinum vaginatum \N \N \N \N \N 88987 S.lucida Scabiosa Scabiosa lucida \N \N \N \N \N 88988 V.sheltonii Viola Viola sheltonii \N \N \N \N \N 88989 \N subspecies Phlox carolina subsp. carolina \N \N \N \N \N 88990 \N forma Viola grypoceras f. albiflora \N \N \N \N \N 88991 \N genus Dichromanthus \N \N \N \N \N 88992 S.australis Salvadora Salvadora australis \N \N \N \N \N 88993 O.villosula Oxalis Oxalis villosula \N \N \N \N \N 88994 \N varietas Luzula acuminata var. carolinae \N \N \N \N \N 88995 \N tribe Abildgaardieae \N \N \N \N \N 88996 \N subspecies Secale strictum subsp. strictum \N \N \N \N \N 88997 G.chiloensis Grindelia Grindelia chiloensis \N \N \N \N \N 88998 O.armatum Oncidium Oncidium armatum \N \N \N \N \N 88999 C.lassenensis Clarkia Clarkia lassenensis \N \N \N \N \N 89000 C.thomsoniana Chlamydocarya Chlamydocarya thomsoniana \N \N \N \N \N 89001 O.Wood-16051 Oxypetalum Oxypetalum sp. Wood-16051 \N \N \N \N \N 89002 W.formosana Wendlandia Wendlandia formosana \N \N \N \N \N 89003 S.mitlense/lanceolatum Solanum Solanum mitlense/lanceolatum \N \N \N \N \N 89004 C.kealiae Cyrtandra Cyrtandra kealiae \N \N \N \N \N 89005 \N genus Anemarrhena \N \N \N \N \N 89006 \N family Menyanthaceae buckbean family \N \N \N \N 89007 C.texanum Cirsium Cirsium texanum \N \N \N \N \N 89008 \N genus Dentoceras \N \N \N \N \N 89009 H.loxocarya Hedycarya Hedycarya loxocarya \N \N \N \N \N 89010 N.vanheerdei Namaquanthus Namaquanthus vanheerdei \N \N \N \N \N 89011 E.innocua Euphorbia Euphorbia innocua \N \N \N \N \N 89012 L.adenanthum Leptospron Leptospron adenanthum \N \N \N \N \N 89013 P.parviflora Proboscidea Proboscidea parviflora doubleclaw \N \N \N \N 89014 O.chamaedrifolia Ourisia Ourisia chamaedrifolia \N \N \N \N \N 89015 S.cuminodora Strychnos Strychnos cuminodora \N \N \N \N \N 89016 H.vicioides Hedysarum Hedysarum vicioides \N \N \N \N \N 89017 C.lepidotus Croton Croton lepidotus \N \N \N \N \N 89018 S.tonkinense Siliquamomum Siliquamomum tonkinense \N \N \N \N \N 89019 P.pubescens Polycarena Polycarena pubescens \N \N \N \N \N 89020 P.ornithoura Passiflora Passiflora ornithoura \N \N \N \N \N 89021 B.macrophylla Brunnera Brunnera macrophylla \N \N \N \N \N 89022 A.chevalieri Acridocarpus Acridocarpus chevalieri \N \N \N \N \N 89023 M.1642 Mimosa Mimosa cf. polycarpa var. redundans Pennington 1642 \N \N \N \N \N 89024 M.quinqueloba Manihot Manihot quinqueloba \N \N \N \N \N 89025 G.paczoskii Gagea Gagea paczoskii \N \N \N \N \N 89026 R.sinuata Rinorea Rinorea sinuata \N \N \N \N \N 89027 B.longiflora Billardiera Billardiera longiflora \N \N \N \N \N 89028 T.ir455 unclassified Taraxacum Taraxacum (sect. Macrocornuta) sp. ir455 \N \N \N \N \N 89029 V.amplexicaule Vincetoxicum Vincetoxicum amplexicaule \N \N \N \N \N 89030 C.saluenensis Camellia Camellia saluenensis \N \N \N \N \N 89031 X.MMU-2005 Xyris Xyris sp. MMU-2005 \N \N \N \N \N 89032 \N genus Fanninia \N \N \N \N \N 89033 L.arborescens Lepidaploa Lepidaploa arborescens \N \N \N \N \N 89034 D.pusilla Draba Draba pusilla \N \N \N \N \N 89035 T.bachmaense Typhonium Typhonium bachmaense \N \N \N \N \N 89036 C.teleandra Cuphea Cuphea teleandra \N \N \N \N \N 89037 S.alexandri Silene Silene alexandri \N \N \N \N \N 89038 A.thurberi Astragalus Astragalus thurberi \N \N \N \N \N 89039 N.cuspidata Nothocalais Nothocalais cuspidata prairie dandelion \N \N \N \N 89040 A.umbellulata Aegilops Aegilops umbellulata \N \N \N \N \N 89041 C.runcinata Chaptalia Chaptalia runcinata \N \N \N \N \N 89042 C.witasekiana Campanula Campanula witasekiana \N \N \N \N \N 89043 S.poiretiana Setaria Setaria poiretiana grama negra \N \N \N \N 89044 L.arnhemicum Lophopetalum Lophopetalum arnhemicum \N \N \N \N \N 89045 M.crocata Miconia Miconia crocata \N \N \N \N \N 89046 \N genus Telephium \N \N \N \N \N 89047 \N varietas Sarcocornia natalensis var. affinis \N \N \N \N \N 89048 H.gronovii Hieracium Hieracium gronovii queen-devil \N \N \N \N 89049 \N subspecies Arum italicum subsp. canariense \N \N \N \N \N 89050 \N varietas Astragalus australis var. glabriusculus \N \N \N \N \N 89051 \N subspecies Galanthus plicatus subsp. byzantinus \N \N \N \N \N 89052 P.isaurica Pimpinella Pimpinella isaurica \N \N \N \N \N 89053 L.acicularis Leptosiphon Leptosiphon acicularis \N \N \N \N \N 89054 P.SH-2010 Pedilanthus Pedilanthus sp. SH-2010 \N \N \N \N \N 89055 S.bupleuroides Silene Silene bupleuroides \N \N \N \N \N 89056 D.marnier-lapostollei Dyckia Dyckia marnier-lapostollei \N \N \N \N \N 89057 E.JK-2009 Exochaenium Exochaenium sp. 2 JK-2009 \N \N \N \N \N 89058 M.sylvatica Mangifera Mangifera sylvatica Nepal mango \N \N \N \N 89059 \N genus Pravinaria \N \N \N \N \N 89060 \N subspecies Prenia pallens subsp. pallens \N \N \N \N \N 89061 C.viscidula Commersonia Commersonia viscidula \N \N \N \N \N 89062 P.aspera Pentaschistis Pentameris aspera \N \N \N \N \N 89063 P.3475 Piper Piper sp. Borsch 3475 \N \N \N \N \N 89064 M.cinerascens Miconia Miconia cinerascens \N \N \N \N \N 89065 H.trichophylla Hyalolaena Hyalolaena trichophylla \N \N \N \N \N 89066 \N subspecies Caltha leptosepala subsp. leptosepala \N \N \N \N \N 89067 E.gossweileri Euphorbia Euphorbia gossweileri \N \N \N \N \N 89068 A.littorum Arceuthobium Arceuthobium littorum \N \N \N \N \N 89069 A.pulcherrima Antennaria Antennaria pulcherrima \N \N \N \N \N 89070 C.wildpretii Crambe Crambe wildpretii \N \N \N \N \N 89071 D.communis Drosera Drosera communis \N \N \N \N \N 89072 \N subspecies Reseda lutea subsp. neglecta \N \N \N \N \N 89073 \N varietas Vriesea psittacina var. psittacina \N \N \N \N \N 89074 T.cornucopiae Thecanthes Thecanthes cornucopiae \N \N \N \N \N 89075 L.formosa Libertia Libertia formosa \N \N \N \N \N 89076 \N genus Trianaeopiper \N \N \N \N \N 89077 C.elegans Calochortus Calochortus elegans \N \N \N \N \N 89078 K.isoetifolia Kniphofia Kniphofia isoetifolia \N \N \N \N \N 89079 D.cheranganiensis Dendrosenecio Dendrosenecio cheranganiensis \N \N \N \N \N 89080 M.propinquum Myriophyllum Myriophyllum propinquum \N \N \N \N \N 89081 P.farcta Prosopis Prosopis farcta \N \N \N \N \N 89082 L.rotundifolia Lavandula Lavandula rotundifolia \N \N \N \N \N 89083 A.chambira Astrocaryum Astrocaryum chambira \N \N \N \N \N 89084 T.JEES-2007 Trichostachys Trichostachys sp. JEES-2007 \N \N \N \N \N 89085 \N genus Scyphiphora \N \N \N \N \N 89086 U.dulcis Uvaria Uvaria dulcis \N \N \N \N \N 89087 \N varietas Peniocereus greggii var. transmontanus \N \N \N \N \N 89088 C.dispar Cliffortia Cliffortia dispar \N \N \N \N \N 89089 C.daweana Citropsis Citropsis daweana \N \N \N \N \N 89090 M.tricornis Malacocera Malacocera tricornis \N \N \N \N \N 89091 C.pinifolia Chusquea Chusquea pinifolia \N \N \N \N \N 89092 M.ankafinensis Mapouria Mapouria ankafinensis \N \N \N \N \N 89093 C.argentea Conostylis Conostylis argentea \N \N \N \N \N 89094 S.pseudomairei Senecio Senecio pseudomairei \N \N \N \N \N 89095 X.parviflora Xylopia Xylopia parviflora \N \N \N \N \N 89096 C.bilocellata Caryodaphnopsis Caryodaphnopsis bilocellata \N \N \N \N \N 89097 \N subspecies Narcissus pseudonarcissus subsp. radinganorum \N \N \N \N \N 89098 \N genus Adenandra \N \N \N \N \N 89099 \N genus Cordisepalum \N \N \N \N \N 89100 L.brisbanica Lilaeopsis Lilaeopsis brisbanica \N \N \N \N \N 89101 A.rhododendron Aeschynanthus Aeschynanthus rhododendron \N \N \N \N \N 89102 T.tkx11-21E unclassified Taraxacum Taraxacum sp. tkx11-21E \N \N \N \N \N 89103 \N varietas Ceropegia oculata var. satpudensis \N \N \N \N \N 89104 S.tracyi Sanicula Sanicula tracyi \N \N \N \N \N 89105 C.pentandra Ceiba Ceiba pentandra kapoktree,silk-cottontree \N \N \N \N 89106 E.cristatum Epidendrum Epidendrum cristatum \N \N \N \N \N 89107 E.muelleriana Eucalyptus Eucalyptus muelleriana yellow stringybark \N \N \N \N 89108 C.WO0192512 Cucurbita Cucurbita sp. WO0192512 \N \N \N \N \N 89109 C.hawaiiensis Canavalia Canavalia hawaiiensis \N \N \N \N \N 89110 P.dichotomiflorum Panicum Panicum dichotomiflorum fall panicum \N \N \N \N 89111 A.crassicarpa Acacia Acacia crassicarpa brown salwood,lancewood,northern wattle \N \N \N \N 89112 I.setchellii Ixora Ixora setchellii \N \N \N \N \N 89113 N.bruce-bayeri Namaquanula Namaquanula bruce-bayeri \N \N \N \N \N 89114 M.JJS-2010i Mentzelia Mentzelia sp. JJS-2010i \N \N \N \N \N 89115 P.brahuicus Physorhynchus Physorhynchus brahuicus \N \N \N \N \N 89116 E.chinensis Eurya Eurya chinensis \N \N \N \N \N 89117 G.angustifolia Gentiana Gentiana angustifolia \N \N \N \N \N 89118 C.AK-2011 Cytisus Cytisus cf. scoparius AK-2011 \N \N \N \N \N 89119 C.concinna Cryptocarya Cryptocarya concinna \N \N \N \N \N 89120 P.mexicana Passiflora Passiflora mexicana \N \N \N \N \N 89121 T.Gray-9276 Typhonium Typhonium aff. brownii Gray-9276 \N \N \N \N \N 89122 C.canariense Camptoloma Camptoloma canariense \N \N \N \N \N 89123 I.mannii Inula Inula mannii \N \N \N \N \N 89124 T.vermicularis Thelypodiopsis Thelypodiopsis vermicularis \N \N \N \N \N 89125 S.multiovulatum Stenospermation Stenospermation multiovulatum \N \N \N \N \N 89126 C.ambigua Corydalis Corydalis ambigua \N \N \N \N \N 89127 B.O00437_1 Bulbophyllum Bulbophyllum sp. O00437_1 \N \N \N \N \N 89128 E.nitens Echinops Echinops nitens \N \N \N \N \N 89129 O.orthotis Oncidium Oncidium orthotis \N \N \N \N \N 89130 A.longiflorus Aeschynanthus Aeschynanthus longiflorus \N \N \N \N \N 89131 I.dalzellii Indigofera Indigofera dalzellii \N \N \N \N \N 89132 A.fastuosa Aerangis Aerangis fastuosa \N \N \N \N \N 89133 A.cordiflora Aristolochia Aristolochia cordiflora \N \N \N \N \N 89134 \N varietas Chaetanthera linearis var. albiflora \N \N \N \N \N 89135 \N subtribe Ligarinae \N \N \N \N \N 89136 B.polystachyon Basilicum Basilicum polystachyon \N \N \N \N \N 89137 C.dracomontanum Corycium Corycium dracomontanum \N \N \N \N \N 89138 P.runcinatum Polygonum Polygonum runcinatum \N \N \N \N \N 89139 L.williamsii Lophophora Lophophora williamsii divine cactus,mescal buttons \N \N \N \N 89140 P.cyrtonema Polygonatum Polygonatum cyrtonema \N \N \N \N \N 89141 P.cookianum Phormium Phormium cookianum \N \N \N \N \N 89142 S.SH-2010 Sida Sida sp. SH-2010 \N \N \N \N \N 89143 T.griseiflora Tricalysia Tricalysia griseiflora \N \N \N \N \N 89144 \N genus Itea \N \N \N \N \N 89145 S.areira Schinus Schinus areira \N \N \N \N \N 89146 \N genus Orthosia \N \N \N \N \N 89147 J.carnea Justicia Justicia carnea \N \N \N \N \N 89148 C.gabonensis Costus Costus gabonensis \N \N \N \N \N 89149 C.palmatus Cordylanthus Cordylanthus palmatus \N \N \N \N \N 89150 P.dioica Phytolacca Phytolacca dioica \N \N \N \N \N 89151 E.minima Elatine Elatine minima \N \N \N \N \N 89152 S.derustensis Syringodea Syringodea derustensis \N \N \N \N \N 89153 \N genus Warneckea \N \N \N \N \N 89154 P.tomentosus Piptanthus Piptanthus tomentosus \N \N \N \N \N 89155 R.fascicularis Ranunculus Ranunculus fascicularis \N \N \N \N \N 89156 P.sikangensis Pedicularis Pedicularis sikangensis \N \N \N \N \N 89157 C.gigantea Cercis Cercis gigantea \N \N \N \N \N 89158 C.zeylanica Capparis Capparis zeylanica \N \N \N \N \N 89159 T.solanacea Thomasia Thomasia solanacea \N \N \N \N \N 89160 D.anosmum Dendrobium Dendrobium anosmum \N \N \N \N \N 89161 U.guineensis Uapaca Uapaca guineensis \N \N \N \N \N 89162 M.japonica Millettia Millettia japonica \N \N \N \N \N 89163 S.2608 Sericanthe Sericanthe sp. Dessein et al. 2608 \N \N \N \N \N 89164 \N varietas Silene douglasii var. douglasii \N \N \N \N \N 89165 C.transvaalensis Cynodon Cynodon transvaalensis \N \N \N \N \N 89166 \N genus Ponera \N \N \N \N \N 89167 C.ochotensis Clematis Clematis ochotensis \N \N \N \N \N 89168 C.mayarum Croton Croton mayarum \N \N \N \N \N 89169 G.yakushimensis Gentiana Gentiana yakushimensis \N \N \N \N \N 89170 K.humilis Kobresia Kobresia humilis \N \N \N \N \N 89171 T.tiliaceum Talipariti Talipariti tiliaceum cottontree,mahoe,majagua,sea hibiscus \N \N \N \N 89172 N.5029rb Nothofagus Nothofagus sp. 5029rb \N \N \N \N \N 89173 L.verticillata Leandra Leandra verticillata \N \N \N \N \N 89174 V.cassinoides Viburnum Viburnum cassinoides \N \N \N \N \N 89175 \N subspecies Cynanchum compactum subsp. compactum \N \N \N \N \N 89176 A.pynaertii Angylocalyx Angylocalyx pynaertii \N \N \N \N \N 89177 \N family Cyperaceae sedge family \N \N \N \N 89178 N.hamata Navarretia Navarretia hamata \N \N \N \N \N 89179 B.socotrana Boswellia Boswellia socotrana \N \N \N \N \N 89180 T.racemosus Thereianthus Thereianthus racemosus \N \N \N \N \N 89181 S.quinqueflora Sarcocornia Sarcocornia quinqueflora \N \N \N \N \N 89182 P.monopleurus Pachyanthus Pachyanthus monopleurus \N \N \N \N \N 89183 P.tectum Platostoma Platostoma tectum \N \N \N \N \N 89184 A.japonica Angelica Angelica japonica \N \N \N \N \N 89185 \N subspecies Oenothera elata subsp. hookeri Hooker's evening primrose \N \N \N \N 89186 G.septentrionale Galium Galium septentrionale \N \N \N \N \N 89187 O.explanata Ophrys Ophrys explanata \N \N \N \N \N 89188 S.kiangsiensis Salvia Salvia kiangsiensis \N \N \N \N \N 89189 H.guatemalensis Hasseltia Hasseltia guatemalensis \N \N \N \N \N 89190 \N genus Stephanachne \N \N \N \N \N 89191 S.cabrerae Sommerfeltia Sommerfeltia cabrerae \N \N \N \N \N 89192 C.hirsutum Coccocypselum Coccocypselum hirsutum \N \N \N \N \N 89193 N.pardanthina Nomocharis Nomocharis pardanthina \N \N \N \N \N 89194 M.densiflora Milligania Milligania densiflora \N \N \N \N \N 89195 \N varietas Santalum insulare var. marchionense \N \N \N \N \N 89196 \N varietas Eriocephalus africanus var. paniculatus \N \N \N \N \N 89197 R.gayeri Ranunculus Ranunculus gayeri \N \N \N \N \N 89198 S.prostrata Spermacoce Spermacoce prostrata \N \N \N \N \N 89199 R.humilis Ruellia Ruellia humilis \N \N \N \N \N 89200 \N genus Fatsia \N \N \N \N \N 89201 \N genus Castroviejoa \N \N \N \N \N 89202 D.divaricatus Dielsiothamnus Dielsiothamnus divaricatus \N \N \N \N \N 89203 P.guayranum Piper Piper guayranum \N \N \N \N \N 89204 C.20020431 Corydalis Corydalis sp. Gong 20020431 \N \N \N \N \N 89205 L.suaveolens Lophostemon Lophostemon suaveolens \N \N \N \N \N 89206 H.petiolare Helichrysum Helichrysum petiolare \N \N \N \N \N 89207 M.klissingiana Mammillaria Mammillaria klissingiana \N \N \N \N \N 89208 C.linarioides Cuphea Cuphea linarioides \N \N \N \N \N 89209 C.dentata Clidemia Clidemia dentata \N \N \N \N \N 89210 O.jasminiflora Orthanthera Orthanthera jasminiflora \N \N \N \N \N 89211 L.fosbergii Lomanthus Lomanthus fosbergii \N \N \N \N \N 89212 D.cuspidatum Desmodium Desmodium cuspidatum big tick-trefoil \N \N \N \N 89213 P.lueddemanniana Phalaenopsis Phalaenopsis lueddemanniana \N \N \N \N \N 89214 A.muricata Arctotis Arctotis muricata \N \N \N \N \N 89215 T.flexilis Teramnus Teramnus flexilis \N \N \N \N \N 89216 \N genus Podochilus \N \N \N \N \N 89217 C.mackinnoniana Cryptocarya Cryptocarya mackinnoniana \N \N \N \N \N 89218 D.monspessulanus Dianthus Dianthus monspessulanus \N \N \N \N \N 89219 \N varietas Panax pseudoginseng var. elegantior \N \N \N \N \N 89220 A.angustifolium Aframomum Aframomum angustifolium \N \N \N \N \N 89221 P.nummularium Paspalum Paspalum nummularium \N \N \N \N \N 89222 N.7 Neonauclea Neonauclea sp. 7 \N \N \N \N \N 89223 T.pentaphyllum Tropaeolum Tropaeolum pentaphyllum \N \N \N \N \N 89224 \N family Piperaceae pepper family \N \N \N \N 89225 S.americanum Sideroxylon Sideroxylon americanum \N \N \N \N \N 89226 C.plocasperma Cleomella Cleomella plocasperma \N \N \N \N \N 89227 \N genus Adenophaedra \N \N \N \N \N 89228 E.Asia2 Echinops Echinops sp. Asia2 \N \N \N \N \N 89229 E.parvifolia Eriotheca Eriotheca parvifolia \N \N \N \N \N 89230 M.obtusisepala Momordica Momordica obtusisepala \N \N \N \N \N 89231 A.major Astrantia Astrantia major greater masterwort \N \N \N \N 89232 S.stenophylla Stipa Stipa stenophylla \N \N \N \N \N 89233 \N subspecies Loeselia glandulosa subsp. conglomerata \N \N \N \N \N 89234 P.pseudinundata Psychotria Psychotria pseudinundata \N \N \N \N \N 89235 \N subspecies Astilbe japonica subsp. glaberrima \N \N \N \N \N 89236 \N genus Rhynchophora \N \N \N \N \N 89237 C.heteroneura Clidemia Clidemia heteroneura \N \N \N \N \N 89238 B.approximatum Bulbophyllum Bulbophyllum approximatum \N \N \N \N \N 89239 L.inaequilatera Lycianthes Lycianthes inaequilatera \N \N \N \N \N 89240 E.densa Elsholtzia Elsholtzia densa \N \N \N \N \N 89241 S.11102 Scyphonychium Scyphonychium cf. multiflorum Acevedo 11102 \N \N \N \N \N 89242 A.grantii Astripomoea Astripomoea grantii \N \N \N \N \N 89243 N.auberi Nopalea Nopalea auberi \N \N \N \N \N 89244 P.orientalis Phyllanthus Phyllanthus orientalis \N \N \N \N \N 89245 U.humboldtii Utricularia Utricularia humboldtii \N \N \N \N \N 89246 C.coerulea Cousinia Cousinia coerulea \N \N \N \N \N 89247 P.contorta Pedicularis Pedicularis contorta \N \N \N \N \N 89248 \N varietas Heliophila scoparia var. aspera \N \N \N \N \N 89249 \N family Amaryllidaceae amaryllis family \N \N \N \N 89250 B.indusiata Brachypeza Brachypeza indusiata \N \N \N \N \N 89251 V.endlicheriana Verticordia Verticordia endlicheriana \N \N \N \N \N 89252 E.leptorrhizum Epimedium Epimedium leptorrhizum \N \N \N \N \N 89253 M.megalorrhiza Microcoelia Microcoelia megalorrhiza \N \N \N \N \N 89254 F.koso-poljanskyi Ferula Ferula koso-poljanskyi \N \N \N \N \N 89255 S.pubescens Sinapis Sinapis pubescens \N \N \N \N \N 89256 O.serrulatus Osmanthus Osmanthus serrulatus \N \N \N \N \N 89257 R.rubropunctatum Rhododendron Rhododendron rubropunctatum \N \N \N \N \N 89258 P.costaricensis Polygala Polygala costaricensis \N \N \N \N \N 89259 E.grahamii Excoecaria Excoecaria grahamii \N \N \N \N \N 94499 \N genus Orphium \N \N \N \N \N 89260 T.tetrandra Tetrapathea Tetrapathea tetrandra \N \N \N \N \N 89261 V.treleasei Vitis Vitis treleasei \N \N \N \N \N 89262 R.angustifolia Richterago Richterago angustifolia \N \N \N \N \N 89263 P.distinctus Potamogeton Potamogeton distinctus \N \N \N \N \N 89264 T.pubescens Tristerix Tristerix pubescens \N \N \N \N \N 89265 \N genus Ionidium \N \N \N \N \N 89266 C.SH-2010 Cyrtopodium Cyrtopodium sp. SH-2010 \N \N \N \N \N 89267 H.tetragona Halleria Halleria tetragona \N \N \N \N \N 89268 C.membranacea Chloraea Chloraea membranacea \N \N \N \N \N 89269 \N subspecies Aspalathus pinea subsp. pinea \N \N \N \N \N 89270 A.triphylla Alchemilla Alchemilla triphylla \N \N \N \N \N 89271 A.floribunda Allanblackia Allanblackia floribunda \N \N \N \N \N 89272 \N varietas Lithops bromfieldii var. bromfieldii \N \N \N \N \N 89273 C.cardenasii Capsicum Capsicum cardenasii ulupica \N \N \N \N 89274 M.elegans Magnolia Magnolia elegans \N \N \N \N \N 89275 C.burhia Crotalaria Crotalaria burhia \N \N \N \N \N 89276 A.henryi Actinodaphne Actinodaphne henryi \N \N \N \N \N 89277 A.carlinoides Atractylodes Atractylodes carlinoides \N \N \N \N \N 89278 W.sanguisugarum Weinmannia Weinmannia sanguisugarum \N \N \N \N \N 89279 P.mensarum Penstemon Penstemon mensarum \N \N \N \N \N 89280 B.australiana Brackenridgea Brackenridgea australiana \N \N \N \N \N 89281 C.eryngioides Cousinia Cousinia chrysochlora x Cousinia eryngioides \N \N \N \N \N 89282 \N genus Calycogonium \N \N \N \N \N 89283 \N genus Schoenocaulon \N \N \N \N \N 89284 I.ternstroemioides Illicium Illicium ternstroemioides \N \N \N \N \N 89285 \N genus Uladendron \N \N \N \N \N 89286 \N genus Mastixia \N \N \N \N \N 89287 S.cornuta Sebastiania Sebastiania cornuta \N \N \N \N \N 89288 \N varietas Spiranthes lacera var. gracilis \N \N \N \N \N 89289 \N subfamily Mimosoideae \N \N \N \N \N 89290 B.johnstonii Boechera Boechera johnstonii \N \N \N \N \N 89291 S.euosmus Sinosenecio Sinosenecio euosmus \N \N \N \N \N 89292 S.graveolens Sanicula Sanicula graveolens northern sanicle \N \N \N \N 89293 H.borneense Hedychium Hedychium borneense \N \N \N \N \N 89294 P.zollingeri Pseudosorghum Pseudosorghum zollingeri \N \N \N \N \N 89295 D.dichotoma Debregeasia Debregeasia dichotoma \N \N \N \N \N 89296 B.atricha Begonia Begonia atricha \N \N \N \N \N 89297 P.eurygnatha Polystachya Polystachya eurygnatha \N \N \N \N \N 89298 A.longicalycina Amphidasya Amphidasya longicalycina \N \N \N \N \N 89299 K.angustifolia Kniphofia Kniphofia angustifolia \N \N \N \N \N 89300 L.nervosa Liparis Liparis nervosa \N \N \N \N \N 89301 \N subspecies Eriosyce taltalensis subsp. taltalensis \N \N \N \N \N 89302 A.planisiliqua Arabis Arabis planisiliqua \N \N \N \N \N 89303 I.rufa Ichthyothere Ichthyothere rufa \N \N \N \N \N 89304 S.decora Sorbus Sorbus decora \N \N \N \N \N 89305 P.pyramidata Pauridiantha Pauridiantha pyramidata \N \N \N \N \N 89306 N.nudicaule Nothoscordum Nothoscordum nudicaule \N \N \N \N \N 89307 \N subspecies Leonardoxa africana subsp. letouzeyi \N \N \N \N \N 89308 K.purpurea Karroochloa Karroochloa purpurea \N \N \N \N \N 89309 C.sample environmental samples Taxonomy:417449 Chloranthaceae environmental sample \N \N \N \N \N 89310 \N genus Ochagavia \N \N \N \N \N 89311 E.graminifolius Eliokarmos Eliokarmos graminifolius \N \N \N \N \N 89312 S.multiflora Scrophularia Scrophularia multiflora \N \N \N \N \N 89313 P.almasensis Paepalanthus Paepalanthus almasensis \N \N \N \N \N 89314 T.longidentatum Trifolium Trifolium longidentatum \N \N \N \N \N 89315 \N subspecies Hordeum patagonicum subsp. setifolium \N \N \N \N \N 89316 G.mostertiae Gladiolus Gladiolus mostertiae \N \N \N \N \N 89317 D.luteynii Disterigma Disterigma luteynii \N \N \N \N \N 89318 S.origanifolia Salpichroa Salpichroa origanifolia cock's-eggs \N \N \N \N 89319 E.venusta Etlingera Etlingera venusta \N \N \N \N \N 89320 B.purpurocaerulea Buglossoides Buglossoides purpurocaerulea purple gromwell \N \N \N \N 89321 D.cordeiroana Ditassa Ditassa cordeiroana \N \N \N \N \N 89322 F.punctata Fimbristylis Fimbristylis punctata \N \N \N \N \N 89323 V.sieboldii Viburnum Viburnum sieboldii \N \N \N \N \N 89324 D.sessiliflorus Dendropanax Dendropanax sessiliflorus \N \N \N \N \N 89325 \N genus Faidherbia \N \N \N \N \N 89326 T.venusta Tepuia Tepuia venusta \N \N \N \N \N 89327 V.breviflora Vassobia Vassobia breviflora \N \N \N \N \N 89328 \N genus Enceliopsis \N \N \N \N \N 89329 C.humile Crinum Crinum humile \N \N \N \N \N 89330 E.platyloba Echinophora Echinophora platyloba \N \N \N \N \N 89331 C.excelsa Cornus Cornus excelsa \N \N \N \N \N 89332 T.integrifolia Tephroseris Tephroseris integrifolia \N \N \N \N \N 89333 E.chocoensis Exarata Exarata chocoensis \N \N \N \N \N 89334 \N subspecies Agave striata subsp. stricta \N \N \N \N \N 89335 \N tribe Oryzeae \N \N \N \N \N 89336 \N genus Spartochloa \N \N \N \N \N 89337 D.oryzetorum Dioscorea Dioscorea oryzetorum \N \N \N \N \N 89338 S.avilesii Solanum Solanum avilesii \N \N \N \N \N 89339 P.capitata Pagamea Pagamea capitata \N \N \N \N \N 89340 \N family Paeoniaceae peony family \N \N \N \N 89341 D.barbatus Dendrocalamus Dendrocalamus barbatus \N \N \N \N \N 89342 \N subspecies Tragopogon porrifolius subsp. porrifolius \N \N \N \N \N 89343 C.linearis Callistemon Callistemon linearis \N \N \N \N \N 89344 C.sinensis Carlesia Carlesia sinensis \N \N \N \N \N 89345 P.concreta Polystachya Polystachya concreta \N \N \N \N \N 89346 H.vesicarius Helleborus Helleborus vesicarius \N \N \N \N \N 89347 \N varietas Rhododendron sanguineum var. haemaleum \N \N \N \N \N 89348 G.brasiliensis Galphimia Galphimia brasiliensis \N \N \N \N \N 89349 G.sarcoglossa Galeottiella Galeottiella sarcoglossa \N \N \N \N \N 89350 \N subtribe Thelasineae \N \N \N \N \N 89351 A.macroflora Astilbe Astilbe macroflora \N \N \N \N \N 89352 L.reversa Leandra Leandra reversa \N \N \N \N \N 89353 A.nigrum Arceuthobium Arceuthobium nigrum \N \N \N \N \N 89354 R.runyonii Ruellia Ruellia runyonii \N \N \N \N \N 89355 P.virescens Piptochaetium Piptochaetium virescens \N \N \N \N \N 89356 \N subspecies Cleretum papulosum subsp. schlechteri \N \N \N \N \N 89357 P.costiniana Poa Poa costiniana \N \N \N \N \N 89358 C.cusickii Castilleja Castilleja cusickii \N \N \N \N \N 89359 Z.cult.21(KYO) Zingiber Zingiber sp. Takano cult.21(KYO) \N \N \N \N \N 89360 C.sample environmental samples Taxonomy:1096671 Caesalpinioideae environmental sample \N \N \N \N \N 89361 A.kotschyi Anthriscus Anthriscus kotschyi \N \N \N \N \N 89362 C.oliganthum Crinum Crinum oliganthum \N \N \N \N \N 89363 H.pringlei Halenia Halenia pringlei \N \N \N \N \N 89364 D.supranivalis Draba Draba supranivalis \N \N \N \N \N 89365 R.staddo Rhamnus Rhamnus staddo \N \N \N \N \N 89366 S.goetzei Solanum Solanum goetzei \N \N \N \N \N 89367 S.guianensis Simaba Simaba guianensis \N \N \N \N \N 89368 N.pictus Nautilocalyx Nautilocalyx pictus \N \N \N \N \N 89369 \N varietas Paphiopedilum hookerae var. volonteanum \N \N \N \N \N 89370 \N varietas Carex crinita var. crinita \N \N \N \N \N 89371 M.dahurica Mentha Mentha dahurica \N \N \N \N \N 89372 P.332 Ponthieva Ponthieva sp. Trujillo 332 \N \N \N \N \N 89373 R.ishidae Rhodiola Rhodiola ishidae \N \N \N \N \N 89374 E.agropyroides Elymus Elymus agropyroides \N \N \N \N \N 89375 \N tribe Schismatoglottideae \N \N \N \N \N 89376 \N genus Chloroleucon \N \N \N \N \N 89377 E.genistoides Euphorbia Euphorbia genistoides \N \N \N \N \N 89378 D.microphylla Dyschoriste Dyschoriste microphylla \N \N \N \N \N 89379 \N genus Ochanostachys \N \N \N \N \N 89380 S.filiforme Schizocarpum Schizocarpum filiforme \N \N \N \N \N 89381 C.cupressinum Chaetostoma Chaetostoma cupressinum \N \N \N \N \N 89382 \N genus Sterigmapetalum \N \N \N \N \N 89383 \N genus Cadaba \N \N \N \N \N 89384 A.6704 Allium Allium sp. GAT 6704 \N \N \N \N \N 89385 S.saharae Spartidium Spartidium saharae \N \N \N \N \N 89386 S.botryantha Symplocos Symplocos botryantha \N \N \N \N \N 89387 \N subspecies Olea capensis subsp. macrocarpa \N \N \N \N \N 89388 \N genus Anotea \N \N \N \N \N 89389 P.malipoense Paphiopedilum Paphiopedilum malipoense \N \N \N \N \N 89390 \N genus Alistilus \N \N \N \N \N 89391 N.herzogii Nasa Nasa herzogii \N \N \N \N \N 89392 S.gaudichaudiana Scaevola Scaevola gaudichaudiana \N \N \N \N \N 89393 B.tatei Brocchinia Brocchinia tatei \N \N \N \N \N 89394 V.venosa Vicia Vicia venosa \N \N \N \N \N 89395 S.lasiocarpum Stylophorum Stylophorum lasiocarpum \N \N \N \N \N 89396 D.turrialvae Drymonia Drymonia turrialvae \N \N \N \N \N 89397 R.hostmanniana Rudgea Rudgea hostmanniana \N \N \N \N \N 89398 H.macrostegia Hedyotis Hedyotis macrostegia \N \N \N \N \N 89399 S.repanda Strobilanthes Strobilanthes repanda \N \N \N \N \N 89400 E.cinerea Erica Erica cinerea bell-heather,gray heath \N \N \N \N 89401 G.myrtilloides Gaultheria Gaultheria myrtilloides \N \N \N \N \N 89402 G.taiwaniana Gaultheria Gaultheria taiwaniana \N \N \N \N \N 89403 C.henrikii Corydalis Corydalis henrikii \N \N \N \N \N 89404 \N varietas Silene mellifera var. mellifera \N \N \N \N \N 89405 A.murina Aristida Aristida murina \N \N \N \N \N 89406 R.MP-2011 Rhadamanthus Rhadamanthus sp. 1 MP-2011 \N \N \N \N \N 89407 C.atratiformis Carex Carex atratiformis \N \N \N \N \N 89408 D.sinensis Decumaria Decumaria sinensis \N \N \N \N \N 89409 C.adenosticta Cousinia Cousinia adenosticta \N \N \N \N \N 89410 R.dentatus Rumex Rumex dentatus \N \N \N \N \N 89411 \N genus Gurania \N \N \N \N \N 89412 O.tehuacana Opuntia Opuntia tehuacana \N \N \N \N \N 89413 E.EHR-2010 Eleocharis Eleocharis aff. minarum EHR-2010 \N \N \N \N \N 89414 G.detonsa Gentianopsis Gentianopsis detonsa \N \N \N \N \N 89415 P.HZ Peperomia Peperomia sp. HZ \N \N \N \N \N 89416 G.huttonii Gladiolus Gladiolus huttonii \N \N \N \N \N 89417 C.loxense Cyrtochilum Cyrtochilum loxense \N \N \N \N \N 89418 E.wrightii Epidendrum Epidendrum wrightii \N \N \N \N \N 89419 R.624 Rytigynia Rytigynia sp. Ranirison 624 \N \N \N \N \N 89420 P.alba Persea Persea alba \N \N \N \N \N 89421 L.spongia Limnobium Limnobium spongia American spongeplant,frog's-bit \N \N \N \N 89422 M.excelsa Mora Mora excelsa \N \N \N \N \N 89423 \N genus Tipularia \N \N \N \N \N 89424 M.wangchiana Machilus Machilus wangchiana \N \N \N \N \N 89425 S.pseudolasiogyne Salix Salix pseudolasiogyne \N \N \N \N \N 89426 D.pilosus Dichilus Dichilus pilosus \N \N \N \N \N 89427 S.1697 Saranthe Saranthe sp. Andersson 1697 \N \N \N \N \N 89428 O.sativa Oryza Oryza rufipogon x Oryza sativa \N \N \N \N \N 89429 P.pulchellum Pelargonium Pelargonium pulchellum \N \N \N \N \N 89430 O.maculatum Oncidium Oncidium maculatum \N \N \N \N \N 89431 A.lorentziana Abromeitiella Abromeitiella lorentziana \N \N \N \N \N 89432 H.136591 Heliosperma Heliosperma cf. pusillum LJU 136591 \N \N \N \N \N 89433 S.lactucina Stephanomeria Stephanomeria lactucina \N \N \N \N \N 89434 C.graveolens Cullen Cullen graveolens \N \N \N \N \N 89435 M.petiolaris Molinaea Molinaea petiolaris \N \N \N \N \N 89436 \N genus Nardus \N \N \N \N \N 89437 C.rubiginosum Calophyllum Calophyllum rubiginosum \N \N \N \N \N 89438 C.3 Charybdis Charybdis sp. 3 \N \N \N \N \N 89439 A.gmelinii Atriplex Atriplex gmelinii \N \N \N \N \N 89440 S.eriophora Scorzonera Scorzonera eriophora \N \N \N \N \N 89441 R.luraluense Rhododendron Rhododendron luraluense \N \N \N \N \N 89442 \N genus Chaetostoma \N \N \N \N \N 89443 \N genus Antennaria cat's-ears,pussy-toes \N \N \N \N 89444 I.molluginoides Ifloga Ifloga molluginoides \N \N \N \N \N 89445 C.badghysi Cousinia Cousinia badghysi \N \N \N \N \N 89446 H.correanum Hedyosmum Hedyosmum correanum \N \N \N \N \N 89447 C.glaziovii Cinnamomum Cinnamomum glaziovii \N \N \N \N \N 89448 T.isodon Trifolium Trifolium isodon \N \N \N \N \N 89449 \N genus Anelsonia \N \N \N \N \N 89450 F.segregata Forestiera Forestiera segregata \N \N \N \N \N 89451 K.prolifera Kalanchoe Kalanchoe prolifera \N \N \N \N \N 89452 S.dalstromii Sphyrastylis Sphyrastylis dalstromii \N \N \N \N \N 89453 \N subspecies Pimelea brevistyla subsp. brevistyla \N \N \N \N \N 89454 S.cusickii Sidalcea Sidalcea cusickii \N \N \N \N \N 89455 T.obovatus Telipogon Telipogon obovatus \N \N \N \N \N 89456 D.pyrenaica Dioscorea Dioscorea pyrenaica \N \N \N \N \N 89457 H.cantoniensis Hedyotis Hedyotis cantoniensis \N \N \N \N \N 89458 \N genus Bryonia \N \N \N \N \N 89459 A.rupestre Antirrhinum Antirrhinum rupestre \N \N \N \N \N 89460 D.bholua Daphne Daphne bholua \N \N \N \N \N 89461 S.gracile Seseli Seseli gracile \N \N \N \N \N 89462 R.louvelii Ravenea Ravenea louvelii \N \N \N \N \N 89463 M.obovatus Melicytus Melicytus obovatus \N \N \N \N \N 89464 T.schweinfurthii Thesium Thesium schweinfurthii \N \N \N \N \N 89465 C.glomeratum Choretrum Choretrum glomeratum \N \N \N \N \N 89466 E.Billabong' Eleocharis Eleocharis sp. 'Coonjimba Billabong' \N \N \N \N \N 89467 C.racemosa Cercis Cercis racemosa \N \N \N \N \N 89468 R.carolina Rosa Rosa carolina Carolina rose,pasture rose \N \N \N \N 89469 G.31217 Gisekia Gisekia sp. Hartmann 31217 \N \N \N \N \N 89470 A.excelsa Alphitonia Alphitonia excelsa \N \N \N \N \N 89471 L.macrophylla Leucaena Leucaena macrophylla \N \N \N \N \N 89472 M.dulcis Melothria Melothria dulcis \N \N \N \N \N 89473 L.CQ1 Lilium Lilium sp. CQ1 \N \N \N \N \N 89474 K.tenella Karroochloa Karroochloa tenella \N \N \N \N \N 89475 \N genus Adenocline \N \N \N \N \N 89476 B.zeyheri Berchemia Berchemia zeyheri \N \N \N \N \N 89477 V.oviedoensis Vachellia Vachellia oviedoensis \N \N \N \N \N 89478 T.maculatoclada Tutcheria Tutcheria maculatoclada \N \N \N \N \N 89479 C.otayensis Ceanothus Ceanothus otayensis \N \N \N \N \N 89480 D.costulata Dyera Dyera costulata \N \N \N \N \N 89481 P.wightianus Psilanthus Psilanthus wightianus \N \N \N \N \N 89482 C.pickeringii Cyrtandra Cyrtandra pickeringii \N \N \N \N \N 89483 A.tomentosa Allardia Allardia tomentosa \N \N \N \N \N 89484 T.melampodioides Trigonospermum Trigonospermum melampodioides \N \N \N \N \N 89485 S.00-626 Salicornia Salicornia aff. perennans Kuerschner & Sonnentag 00-626 \N \N \N \N \N 89486 M.evonymoides Maytenus Maytenus evonymoides \N \N \N \N \N 89487 A.ochotense Allium Allium ochotense \N \N \N \N \N 89488 \N genus Nidorella \N \N \N \N \N 89489 T.ariasii Telipogon Telipogon ariasii \N \N \N \N \N 89490 P.flavescens Pycreus Pycreus flavescens \N \N \N \N \N 89491 H.leonurus Hornstedtia Hornstedtia leonurus \N \N \N \N \N 89492 E.aurea Echinopsis Echinopsis aurea \N \N \N \N \N 89493 \N varietas Amblyopyrum muticum var. loliaceum \N \N \N \N \N 89494 C.welwitschii Commelina Commelina welwitschii \N \N \N \N \N 89495 P.minimum Pelargonium Pelargonium minimum \N \N \N \N \N 89496 \N varietas Pseudosasa japonica var. tsutsumiana \N \N \N \N \N 89497 I.nimbana Ixora Ixora nimbana \N \N \N \N \N 89498 L.melanocarpa Lennea Lennea melanocarpa \N \N \N \N \N 89499 S.nigra Salix Salix nigra black willow \N \N \N \N 89500 H.agropyroides Helictotrichon Helictotrichon agropyroides \N \N \N \N \N 89501 S.trapezifolia Shorea Shorea trapezifolia \N \N \N \N \N 89502 S.pittieri Swartzia Swartzia pittieri \N \N \N \N \N 89503 L.rubellum Lilium Lilium rubellum \N \N \N \N \N 89504 \N genus Anisocoma \N \N \N \N \N 89505 F.eugeniifolia Ficus Ficus eugeniifolia \N \N \N \N \N 89506 \N varietas Ptilotus obovatus var. obovatus \N \N \N \N \N 89507 \N no rank environmental samples Taxonomy:404791 \N \N \N \N \N 89508 M.oxysepala Muraltia Muraltia oxysepala \N \N \N \N \N 89509 P.ovulifera Parodiophyllochloa Parodiophyllochloa ovulifera \N \N \N \N \N 89510 \N genus Pardancanda \N \N \N \N \N 89511 C.erycina Centaurea Centaurea erycina \N \N \N \N \N 89512 D.minimum Dracophyllum Dracophyllum minimum \N \N \N \N \N 89513 A.nigrescens Arrabidaea Arrabidaea nigrescens \N \N \N \N \N 89514 C.dubia Cota Cota dubia \N \N \N \N \N 89515 S.myrionerva Shorea Shorea myrionerva \N \N \N \N \N 89516 \N genus Neurolaena \N \N \N \N \N 89517 D.lancilabium Dendrochilum Dendrochilum lancilabium \N \N \N \N \N 89518 \N varietas Jasione montana var. gracilis \N \N \N \N \N 89519 D.pubipetala Diplopterys Diplopterys pubipetala \N \N \N \N \N 89520 C.brachyrhachis Coursetia Coursetia brachyrhachis \N \N \N \N \N 89521 G.K' Geum Geum sp. 'Chase 2507 K' \N \N \N \N \N 89522 G.SB-2009 Genlisea Genlisea aff. pygmaea SB-2009 \N \N \N \N \N 89523 S.angereri Sophronitis Sophronitis angereri \N \N \N \N \N 89524 S.bombycopholis Senecio Senecio bombycopholis \N \N \N \N \N 89525 \N genus Cischweinfia \N \N \N \N \N 89526 D.calycina Duguetia Duguetia calycina \N \N \N \N \N 89527 M.longiflora Moraea Moraea longiflora \N \N \N \N \N 89528 P.3425' Pearcea Pearcea sp. 'J.F. Smith 3425' \N \N \N \N \N 89529 C.papuana Casuarina Casuarina papuana \N \N \N \N \N 89530 \N varietas Eutrema fontanum var. microspermum \N \N \N \N \N 89531 S.JY-2006-1 Solms-laubachia Solms-laubachia sp. JY-2006-1 \N \N \N \N \N 89532 D.villosum Dasypyrum Dasypyrum villosum \N \N \N \N \N 89533 K.antirrhinoides Keckiella Keckiella antirrhinoides snapdragon penstemon \N \N \N \N 89534 X.grindelioides Xanthisma Xanthisma grindelioides goldenweed,rayless tansyaster \N \N \N \N 89535 H.sarracenorum Helictotrichon Helictotrichon sarracenorum \N \N \N \N \N 89536 \N varietas Prunus serrulata var. quelpaertensis \N \N \N \N \N 89537 E.lusitanica Erica Erica lusitanica \N \N \N \N \N 89538 A.monticola Arachis Arachis monticola \N \N \N \N \N 89539 E.glaberrima Eurya Eurya glaberrima \N \N \N \N \N 89540 D.floribunda Drypetes Drypetes floribunda \N \N \N \N \N 89541 I.lateristachys Impatiens Impatiens lateristachys \N \N \N \N \N 89542 P.digitatum Pediomelum Pediomelum digitatum \N \N \N \N \N 89543 S.ecarinatum Sorghum Sorghum ecarinatum \N \N \N \N \N 89544 M.O-435 Monophyllorchis Monophyllorchis sp. Chase O-435 \N \N \N \N \N 89545 \N varietas Mimosa radula var. imbricata \N \N \N \N \N 89546 L.NC1 Lilium Lilium sp. 2 NC1 \N \N \N \N \N 89547 A.saxatilis Ancylostemon Ancylostemon saxatilis \N \N \N \N \N 89548 S.s.n. Salicornia Salicornia aff. patula Kadereit s.n. \N \N \N \N \N 89549 M.xyridoides Monotrema Monotrema xyridoides \N \N \N \N \N 89550 L.fimbrisepalum Loxostigma Loxostigma fimbrisepalum \N \N \N \N \N 89551 T.scabrum Trifolium Trifolium scabrum \N \N \N \N \N 89552 \N genus Margaretta \N \N \N \N \N 89553 P.longiflora Palicourea Palicourea longiflora \N \N \N \N \N 89554 M.polita Mentzelia Mentzelia polita \N \N \N \N \N 89555 \N genus Eriocaulon \N \N \N \N \N 89556 S.japonica Skimmia Skimmia japonica \N \N \N \N \N 89557 M.megacarpa Monotaxis Monotaxis megacarpa \N \N \N \N \N 89558 B.sandvicensis Bidens Bidens sandvicensis \N \N \N \N \N 89559 U.leptoplectra Utricularia Utricularia leptoplectra \N \N \N \N \N 89560 A.kiusianus Asparagus Asparagus kiusianus \N \N \N \N \N 89561 A.angustifolia Anaxagorea Anaxagorea angustifolia \N \N \N \N \N 89562 W.sansibarica Warneckea Warneckea sansibarica \N \N \N \N \N 89563 \N varietas Sophora microphylla var. longicarinata \N \N \N \N \N 89564 S.scaposa Silene Silene scaposa \N \N \N \N \N 89565 F.cordifolia Fevillea Fevillea cordifolia \N \N \N \N \N 89566 G.30781 Geosiris Geosiris sp. Prance 30781 \N \N \N \N \N 89567 N.rustica Nicotiana Nicotiana rustica Aztec tobacco,wild tobacco \N \N \N \N 89568 S.melinoniana Strychnos Strychnos melinoniana \N \N \N \N \N 89569 F.cyrtophylla Ficus Ficus cyrtophylla \N \N \N \N \N 89570 A.prolifera Anarthria Anarthria prolifera \N \N \N \N \N 89571 D.crassifolium Delphinium Delphinium crassifolium \N \N \N \N \N 89572 P.pinifolius Penstemon Penstemon pinifolius \N \N \N \N \N 89573 A.erecta Androsace Androsace erecta \N \N \N \N \N 89574 E.myrtoidea Escallonia Escallonia myrtoidea \N \N \N \N \N 89575 M.platycalyx Mimulus Mimulus platycalyx \N \N \N \N \N 89576 \N subspecies Thymelaea pubescens subsp. thesioides \N \N \N \N \N 89577 R.parvifolia Rhodostemonodaphne Rhodostemonodaphne parvifolia \N \N \N \N \N 89578 \N subspecies Thalictrum flavum subsp. glaucum \N \N \N \N \N 89579 L.carolinensis Lilaeopsis Lilaeopsis carolinensis \N \N \N \N \N 89580 T.filiformis Tetratheca Tetratheca filiformis \N \N \N \N \N 89581 Z.orbiculatum Zingiber Zingiber orbiculatum \N \N \N \N \N 89582 B.glabra Bougainvillea Bougainvillea glabra \N \N \N \N \N 89583 \N genus Lobularia \N \N \N \N \N 89584 S.chionopeplica Salvia Salvia chionopeplica \N \N \N \N \N 89585 A.yatungensis Astragalus Astragalus yatungensis \N \N \N \N \N 89586 B.abyssinicum Biophytum Biophytum abyssinicum \N \N \N \N \N 89587 K.eugenioides Kania Kania eugenioides \N \N \N \N \N 89588 P.angustifolium Pittosporum Pittosporum angustifolium \N \N \N \N \N 89589 R.alpina Roscoea Roscoea alpina \N \N \N \N \N 89590 A.contorta Aristolochia Aristolochia contorta bei ma dou ling \N \N \N \N 89591 \N genus Trigonella \N \N \N \N \N 89592 S.demissum Solanum Solanum demissum \N \N \N \N \N 89593 \N genus Aphaerema \N \N \N \N \N 89594 L.fulvescens Lachemilla Lachemilla fulvescens \N \N \N \N \N 89595 C.78 Cliffortia Cliffortia cf. glauca Whitehouse 78 \N \N \N \N \N 89596 R.glauca Rhyncholaelia Rhyncholaelia glauca \N \N \N \N \N 89597 E.yunnanense Eutrema Eutrema yunnanense \N \N \N \N \N 89598 W.texana Willkommia Willkommia texana \N \N \N \N \N 89599 \N subspecies Disa fragrans subsp. fragrans \N \N \N \N \N 89600 H.monizii Helichrysum Helichrysum monizii \N \N \N \N \N 89601 \N genus Thamnocalamus \N \N \N \N \N 89602 M.pubescens Mussaenda Mussaenda pubescens \N \N \N \N \N 89603 H.anisactis Heracleum Heracleum anisactis \N \N \N \N \N 89604 C.macrogyna Carex Carex macrogyna \N \N \N \N \N 89605 M.variifolium Myriophyllum Myriophyllum variifolium \N \N \N \N \N 89606 E.JT-2009 Euphrasia Euphrasia aff. pectinata JT-2009 \N \N \N \N \N 89607 \N genus Discophora \N \N \N \N \N 89608 P.glabrata Peperomia Peperomia glabrata \N \N \N \N \N 89609 T.mongolica Tugarinovia Tugarinovia mongolica \N \N \N \N \N 89610 S.mecistopteryx Shorea Shorea mecistopteryx \N \N \N \N \N 89611 \N genus Trachystemon \N \N \N \N \N 89612 X.224 x Aegilotriticum x Aegilotriticum sp. KU 224 \N \N \N \N \N 89613 \N varietas Isodon umbrosus var. umbrosus \N \N \N \N \N 89614 \N subspecies Conostylis serrulata subsp. serrulata \N \N \N \N \N 89615 S.rotundifolium Smyrnium Smyrnium rotundifolium \N \N \N \N \N 89616 S.hadwenii Scuticaria Scuticaria hadwenii \N \N \N \N \N 89617 \N varietas Lecanorchis kiusiana var. kiusiana \N \N \N \N \N 89618 \N genus Sarcodes \N \N \N \N \N 89619 A.caffra Anemone Anemone caffra \N \N \N \N \N 89620 H.simulans Helianthus Helianthus simulans \N \N \N \N \N 89621 B.rockii Brighamia Brighamia rockii \N \N \N \N \N 89622 B.belalongensis Boesenbergia Boesenbergia belalongensis \N \N \N \N \N 89623 \N genus Scyphochlamys \N \N \N \N \N 89624 E.bonaepartis Eremopyrum Eremopyrum bonaepartis \N \N \N \N \N 89625 I.655 Iryanthera Iryanthera sp. Vincentini 655 \N \N \N \N \N 89626 C.tibetica Caragana Caragana tibetica \N \N \N \N \N 89627 \N genus Herreria \N \N \N \N \N 89628 C.phyllanthoides Cliffortia Cliffortia phyllanthoides \N \N \N \N \N 89629 \N genus Peripleura \N \N \N \N \N 89630 A.turnerae Argemone Argemone turnerae \N \N \N \N \N 89631 N.anthophylla Nematostylis Nematostylis anthophylla \N \N \N \N \N 89632 E.glabellus Erigeron Erigeron glabellus \N \N \N \N \N 89633 C.pulchella Corynopuntia Corynopuntia pulchella \N \N \N \N \N 89634 H.antasiaticum Heracleum Heracleum antasiaticum \N \N \N \N \N 89635 P.rhombea Pilea Pilea rhombea \N \N \N \N \N 89636 \N genus Glia \N \N \N \N \N 89637 L.lanata Lanaria Lanaria lanata \N \N \N \N \N 89638 H.leptoceras Habenaria Habenaria leptoceras \N \N \N \N \N 89639 E.cupressiformis Exocarpos Exocarpos cupressiformis \N \N \N \N \N 89640 E.mahafalensis Euphorbia Euphorbia mahafalensis \N \N \N \N \N 89641 B.apetala Burasaia Burasaia apetala \N \N \N \N \N 89642 M.zophoflora Macrocarpaea Macrocarpaea zophoflora \N \N \N \N \N 89643 B.tayabensis Begonia Begonia tayabensis \N \N \N \N \N 89644 X.ferruginea Xylopia Xylopia ferruginea \N \N \N \N \N 89645 N.11 Neonauclea Neonauclea sp. 11 \N \N \N \N \N 89646 \N genus Vaccaria \N \N \N \N \N 89647 H.forskahlii Helichrysum Helichrysum forskahlii \N \N \N \N \N 89648 G.phyllosepala Gaertnera Gaertnera phyllosepala \N \N \N \N \N 89649 R.densiflorum Rosenbergiodendron Rosenbergiodendron densiflorum \N \N \N \N \N 89650 S.japonica Spiraea Spiraea japonica \N \N \N \N \N 89651 C.graeca Cardamine Cardamine graeca \N \N \N \N \N 89652 A.MM2448 Asperula Asperula sp. MM2448 \N \N \N \N \N 89653 V.parviflorum Veratrum Veratrum parviflorum \N \N \N \N \N 89654 O.helvetica Onosma Onosma helvetica \N \N \N \N \N 89655 P.sanctum Piper Piper sanctum \N \N \N \N \N 89656 L.biflora Litosanthes Litosanthes biflora \N \N \N \N \N 89657 S.sturtianum Solanum Solanum sturtianum \N \N \N \N \N 89658 \N varietas Heterostemon mimosoides var. complanatus \N \N \N \N \N 89659 I.cauliflora Ixora Ixora cauliflora \N \N \N \N \N 89660 M.decurrens Mutisia Mutisia decurrens \N \N \N \N \N 89661 P.salsugineum Polygonum Polygonum salsugineum \N \N \N \N \N 89662 G.tinctorium Galium Galium tinctorium \N \N \N \N \N 89663 A.tanacetifolia Artemisia Artemisia tanacetifolia \N \N \N \N \N 89664 P.argyrophylla Pulicaria Pulicaria argyrophylla \N \N \N \N \N 89665 A.aciculosa Aechmea Aechmea aciculosa \N \N \N \N \N 89666 A.sensitiva Arctostaphylos Arctostaphylos sensitiva \N \N \N \N \N 89667 M.cheiranthus Manulea Manulea cheiranthus \N \N \N \N \N 89668 P.salviifolius Phyllanthus Phyllanthus salviifolius \N \N \N \N \N 89669 S.hartmannii Sarcochilus Sarcochilus hartmannii \N \N \N \N \N 89670 H.ada-kodien Holostemma Holostemma ada-kodien \N \N \N \N \N 89671 \N genus Ceratiosicyos \N \N \N \N \N 89672 D.burmannii Drosera Drosera burmannii \N \N \N \N \N 89673 C.minor Comoranthus Comoranthus minor \N \N \N \N \N 89674 \N genus Enarthrocarpus \N \N \N \N \N 89675 S.zaprjagaevii Semenovia Semenovia zaprjagaevii \N \N \N \N \N 89676 V.AB-2009 Vanilla Vanilla cf. grandiflora AB-2009 \N \N \N \N \N 89677 C.tachibana Citrus Citrus tachibana tachibana orange \N \N \N \N 89678 \N genus Lyrocarpa \N \N \N \N \N 89679 \N genus Endosamara \N \N \N \N \N 89680 C.decipiens Cousinia Cousinia decipiens \N \N \N \N \N 89681 E.appariciana Euphorbia Euphorbia appariciana \N \N \N \N \N 89682 P.californica Portulaca Portulaca californica \N \N \N \N \N 89683 M.microphylla Marantochloa Marantochloa microphylla \N \N \N \N \N 89684 G.gilliesii Galium Galium gilliesii \N \N \N \N \N 89685 P.villiramulum Piper Piper villiramulum \N \N \N \N \N 89686 \N varietas Pilea peploides var. major \N \N \N \N \N 89687 P.capensis Phyllosma Phyllosma capensis \N \N \N \N \N 89688 Z.grandiflora Zygostates Zygostates grandiflora \N \N \N \N \N 89689 \N genus Cryptocoryne \N \N \N \N \N 89690 D.stipulacea Dalechampia Dalechampia stipulacea \N \N \N \N \N 89691 G.nubigena Gaultheria Gaultheria nubigena \N \N \N \N \N 89692 E.glauca Erica Erica glauca \N \N \N \N \N 89693 A.minor Acrosynanthus Acrosynanthus minor \N \N \N \N \N 89694 N.lusitanicus Narcissus Narcissus lusitanicus \N \N \N \N \N 89695 E.clivicola Euphorbia Euphorbia clivicola \N \N \N \N \N 89696 S.monodiana Suaeda Suaeda monodiana \N \N \N \N \N 89697 D.wheeleri Dasylirion Dasylirion wheeleri spoon flower \N \N \N \N 89698 D.blattiolens Dombeya Dombeya blattiolens \N \N \N \N \N 89699 D.insignis Downingia Downingia insignis \N \N \N \N \N 89700 E.planchonii Ewartia Ewartia planchonii \N \N \N \N \N 89701 \N varietas Rhododendron weyrichii var. weyrichii \N \N \N \N \N 89702 \N genus Nerine \N \N \N \N \N 89703 B.syzigachne Beckmannia Beckmannia syzigachne \N \N \N \N \N 89704 H.fulva Hemerocallis Hemerocallis fulva \N \N \N \N \N 89705 D.weberbaueri Dalea Dalea weberbaueri \N \N \N \N \N 89706 P.affinis Passiflora Passiflora affinis \N \N \N \N \N 89707 G.erolesii Gymnocalycium Gymnocalycium erolesii \N \N \N \N \N 89708 I.foetidissima Iris Iris foetidissima \N \N \N \N \N 89709 P.obcordata Pictetia Pictetia obcordata \N \N \N \N \N 89710 T.TL259-2 unclassified Taraxacum Taraxacum (sect. Naevosa) sp. TL259-2 \N \N \N \N \N 89711 N.andina Nicoraepoa Nicoraepoa andina \N \N \N \N \N 89712 \N subspecies Erica stagnalis subsp. stagnalis \N \N \N \N \N 89713 C.capensis Chrysitrix Chrysitrix capensis \N \N \N \N \N 89714 E.actoni Encelia Encelia actoni \N \N \N \N \N 89715 R.mangle Rhizophora Rhizophora mangle American mangrove \N \N \N \N 89716 I.hylonoma Ilex Ilex hylonoma \N \N \N \N \N 89717 A.gypsocola Astragalus Astragalus gypsocola \N \N \N \N \N 89718 \N genus Peponopsis \N \N \N \N \N 89719 N.megapotamica Nectandra Nectandra megapotamica \N \N \N \N \N 89720 R.sanguineum Ribes Ribes sanguineum \N \N \N \N \N 89721 T.penduliflorus Tristerix Tristerix penduliflorus \N \N \N \N \N 89722 H.oliganthum Hypericum Hypericum oliganthum \N \N \N \N \N 89723 \N genus Neohemsleya \N \N \N \N \N 89724 \N genus Cestrum \N \N \N \N \N 89725 M.squamata Maxillaria Maxillaria squamata \N \N \N \N \N 89726 A.patula Aristida Aristida patula \N \N \N \N \N 89727 V.fulvibarbis Vetiveria Vetiveria fulvibarbis \N \N \N \N \N 89728 C.revoluta Cordia Cordia revoluta \N \N \N \N \N 89729 \N subspecies Silene patula subsp. patula \N \N \N \N \N 89730 K.wilmsii Kirkia Kirkia wilmsii \N \N \N \N \N 89731 S.742 Setaria Setaria sp. Forest 742 \N \N \N \N \N 89732 F.ramossisima Ficinia Ficinia ramossisima \N \N \N \N \N 89733 \N varietas Aristida ternipes var. ternipes \N \N \N \N \N 89734 N.HM-2001 Nepenthes Nepenthes cf. petiolata HM-2001 \N \N \N \N \N 89735 T.dalzellii Theriophonum Theriophonum dalzellii \N \N \N \N \N 89736 \N genus Sinapidendron \N \N \N \N \N 89737 S.forsteri Sclerotheca Sclerotheca forsteri \N \N \N \N \N 89738 M.acuminatum Myoporum Myoporum acuminatum \N \N \N \N \N 89739 C.0303 Carpinus Carpinus sp. Bergthorsson 0303 \N \N \N \N \N 89740 A.241128 Adenia Adenia sp. Hearn 241128 \N \N \N \N \N 89741 O.dregei Oxalis Oxalis dregei \N \N \N \N \N 89742 \N subspecies Hippophae rhamnoides subsp. mongolica \N \N \N \N \N 89743 \N genus Inulanthera \N \N \N \N \N 89744 P.villosum Phoradendron Phoradendron villosum \N \N \N \N \N 98003 \N genus Trivalvaria \N \N \N \N \N 89745 F.esculentum Fagopyrum Fagopyrum esculentum common buckwheat \N \N \N \N 89746 A.huntleyi Androcymbium Androcymbium huntleyi \N \N \N \N \N 89747 \N subspecies Androcymbium roseum subsp. albiflorum \N \N \N \N \N 89748 M.lichiangense Maianthemum Maianthemum lichiangense \N \N \N \N \N 89749 \N genus Ruta \N \N \N \N \N 89750 \N genus Magnistipula \N \N \N \N \N 89751 C.procumbens Cuphea Cuphea procumbens \N \N \N \N \N 89752 P.sp. Pyrrocoma Pyrrocoma sp. \N \N \N \N \N 89753 E.meruense Erucastrum Erucastrum meruense \N \N \N \N \N 89754 W.murchisoniana Wurmbea Wurmbea murchisoniana \N \N \N \N \N 89755 T.90-2984 Tapeinochilus Tapeinochilus sp. Kress 90-2984 \N \N \N \N \N 89756 P.suaveolens Pseudopiptadenia Pseudopiptadenia suaveolens \N \N \N \N \N 89757 G.stenophita Glycine Glycine stenophita \N \N \N \N \N 89758 \N genus Miliusa \N \N \N \N \N 89759 \N subspecies Vicia sativa subsp. nigra black-pod vetch,common vetch,narrow-leaf vetch \N \N \N \N 89760 G.mulfordii Greigia Greigia mulfordii \N \N \N \N \N 89761 P.foliosa Parnassia Parnassia foliosa \N \N \N \N \N 89762 B.himalaica Boschniakia Boschniakia himalaica ding zuo cao \N \N \N \N 89763 \N genus Xerospiraea \N \N \N \N \N 89764 D.fiordense Dracophyllum Dracophyllum fiordense \N \N \N \N \N 89765 H.maderensis Hedera Hedera maderensis \N \N \N \N \N 89766 \N genus Coriaria \N \N \N \N \N 89767 D.hians Disa Disa hians \N \N \N \N \N 89768 L.rzedowskii Lycianthes Lycianthes rzedowskii \N \N \N \N \N 89769 C.coccinea Crataegus Crataegus coccinea \N \N \N \N \N 89770 S.goetzenii Schefflera Schefflera goetzenii \N \N \N \N \N 89771 E.platypterum Exochaenium Exochaenium platypterum \N \N \N \N \N 89772 D.pogonathera Dalea Dalea pogonathera bearded prairie-clover \N \N \N \N 89773 S.lucidum Stenostomum Stenostomum lucidum \N \N \N \N \N 89774 J.janusioides Janusia Janusia janusioides \N \N \N \N \N 89775 P.canariensis Paronychia Paronychia canariensis \N \N \N \N \N 89776 \N family Tamaricaceae tamarix family \N \N \N \N 89777 L.watsonii Linanthus Linanthus watsonii \N \N \N \N \N 89778 \N genus Ozoroa \N \N \N \N \N 89779 S.ovalifolia Salix Salix ovalifolia \N \N \N \N \N 89780 \N subspecies Sonchus ustulatus subsp. ustulatus \N \N \N \N \N 89781 A.roemeriana Acacia Acacia roemeriana \N \N \N \N \N 89782 \N subspecies Gilia achilleifolia subsp. achilleifolia \N \N \N \N \N 89783 L.urceolus Loeseneriella Loeseneriella urceolus \N \N \N \N \N 89784 S.daltonii Spyridium Spyridium daltonii \N \N \N \N \N 89785 \N genus Hydrostachys \N \N \N \N \N 89786 M.citrinella Masdevallia Masdevallia citrinella \N \N \N \N \N 89787 I.reticulata Ixonanthes Ixonanthes reticulata \N \N \N \N \N 89788 \N subspecies Laserpitium krapfii subsp. gaudinii \N \N \N \N \N 89789 \N genus Hemizonia spikeweeds \N \N \N \N 89790 B.136 Begonia Begonia cf. serratipetala Forrest 136 \N \N \N \N \N 89791 I.tetrasperma Indigofera Indigofera tetrasperma \N \N \N \N \N 89792 O.fuliginosa Opuntia Opuntia fuliginosa \N \N \N \N \N 89793 A.clavennae Achillea Achillea clavennae \N \N \N \N \N 89794 N.obtusifolia Nonea Nonea obtusifolia \N \N \N \N \N 89795 S.hystrix Solanum Solanum hystrix \N \N \N \N \N 89796 D.antoniensis Diplotaxis Diplotaxis antoniensis \N \N \N \N \N 89797 V.oblongum Veratrum Veratrum oblongum \N \N \N \N \N 89798 \N genus Sprengelia \N \N \N \N \N 89799 H.elderi Hemiphora Hemiphora elderi \N \N \N \N \N 89800 S.murex Sterculia Sterculia murex \N \N \N \N \N 89801 \N subspecies Sideritis soluta subsp. soluta \N \N \N \N \N 89802 \N genus Corynabutilon \N \N \N \N \N 89803 \N genus Nassauvia \N \N \N \N \N 89804 E.CDB-2011b unclassified Celastraceae Euonymeae sp. CDB-2011b \N \N \N \N \N 89805 S.aquatica Spiloxene Spiloxene aquatica \N \N \N \N \N 89806 L.optica Lithops Lithops optica \N \N \N \N \N 89807 S.microdontum Solanum Solanum microdontum \N \N \N \N \N 89808 C.arenasii Colchicum Colchicum arenasii \N \N \N \N \N 89809 M.mexicana Muhlenbergia Muhlenbergia mexicana \N \N \N \N \N 89810 C.floribunda Colona Colona floribunda \N \N \N \N \N 89811 A.araneosa Aspalathus Aspalathus araneosa \N \N \N \N \N 89812 P.lucentifolia Psychotria Psychotria lucentifolia \N \N \N \N \N 89813 R.burchellii Rhipsalis Rhipsalis burchellii \N \N \N \N \N 89814 O.leucantha Oxytropis Oxytropis leucantha \N \N \N \N \N 89815 M.JMB-2009b Mentzelia Mentzelia sp. JMB-2009b \N \N \N \N \N 89816 \N genus Schleidenia \N \N \N \N \N 89817 \N subspecies Veronica barrelieri subsp. nitens \N \N \N \N \N 89818 N.japonica Neoshirakia Neoshirakia japonica \N \N \N \N \N 89819 E.cuneifolius Erigeron Erigeron cuneifolius \N \N \N \N \N 89820 \N forma Castelnavia multipartita f. multipartita \N \N \N \N \N 89821 \N genus Gonolobus \N \N \N \N \N 89822 \N genus Megaloprotachne \N \N \N \N \N 89823 P.panduriforme Philodendron Philodendron panduriforme \N \N \N \N \N 89824 B.lamium Brillantaisia Brillantaisia lamium \N \N \N \N \N 89825 S.spicata Schenkia Schenkia spicata \N \N \N \N \N 89826 C.macrocarpum Capnophyllum Capnophyllum macrocarpum \N \N \N \N \N 89827 T.biloba Templetonia Templetonia biloba \N \N \N \N \N 89828 C.schaeferi Comparettia Comparettia schaeferi \N \N \N \N \N 89829 P.30 Prionosciadium Prionosciadium sp. Baez & Paredes 30 \N \N \N \N \N 89830 A.ruthenica Anthemis Anthemis ruthenica \N \N \N \N \N 89831 D.tenuisectus Daucus Daucus tenuisectus \N \N \N \N \N 89832 N.166/00 Nematoceras Nematoceras aff. trilobum Molloy 166/00 \N \N \N \N \N 89833 A.longiflora Althaea Althaea longiflora \N \N \N \N \N 89834 C.libanotis Cistus Cistus libanotis \N \N \N \N \N 89835 B.velutina Bursera Bursera velutina \N \N \N \N \N 89836 T.quadrifida Tambourissa Tambourissa quadrifida \N \N \N \N \N 89837 P.sinense Psilopeganum Psilopeganum sinense \N \N \N \N \N 89838 \N genus Pentanema \N \N \N \N \N 89839 V.sprucei Vasconcellea Vasconcellea sprucei \N \N \N \N \N 89840 P.cuneato-ovata Pitraea Pitraea cuneato-ovata \N \N \N \N \N 89841 \N subspecies Crocus pallasii subsp. haussknechtii \N \N \N \N \N 89842 \N varietas Pseudopanax colensoi var. fiordensis \N \N \N \N \N 89843 T.exilis Trichanthodium Trichanthodium exilis \N \N \N \N \N 89844 E.intervallaris Erica Erica intervallaris \N \N \N \N \N 89845 A.jerichoensis Aristida Aristida jerichoensis \N \N \N \N \N 89846 A.tetracantha Azima Azima tetracantha \N \N \N \N \N 89847 E.90031 Epistephium Epistephium sp. 90031 \N \N \N \N \N 89848 \N subspecies Cerastium arvense subsp. strictum \N \N \N \N \N 89849 C.eremophilus Croton Croton eremophilus \N \N \N \N \N 89850 C.BWvE-2008 Croton Croton sp. sect. Eluteria BWvE-2008 \N \N \N \N \N 89851 P.mitisphaera Pseudosabicea Pseudosabicea mitisphaera \N \N \N \N \N 89852 C.JK-2008a Cardamine Cardamine sp. JK-2008a \N \N \N \N \N 89853 C.recurvata Cousinia Cousinia recurvata \N \N \N \N \N 89854 \N subspecies Carex wahuensis subsp. robusta \N \N \N \N \N 89855 A.empetrifolia Androstoma Androstoma empetrifolia \N \N \N \N \N 89856 N.verdcourtii Neoleroya Neoleroya verdcourtii \N \N \N \N \N 89857 \N genus Calymmatium \N \N \N \N \N 89858 \N varietas Vigna racemosa var. racemosa \N \N \N \N \N 89859 L.gariepense Lycium Lycium gariepense \N \N \N \N \N 89860 O.fruticosum Osteospermum Osteospermum fruticosum \N \N \N \N \N 89861 L.cactiformis Larryleachia Larryleachia cactiformis \N \N \N \N \N 89862 G.curviloba Grevillea Grevillea curviloba \N \N \N \N \N 89863 O.episcopalis Ophrys Ophrys episcopalis \N \N \N \N \N 89864 S.angustifolia Sphenostylis Sphenostylis angustifolia \N \N \N \N \N 89865 \N genus Strumaria \N \N \N \N \N 89866 \N genus Gymnopodium \N \N \N \N \N 89867 G.scabrida Gnidia Gnidia scabrida \N \N \N \N \N 89868 T.flava Tricyrtis Tricyrtis flava \N \N \N \N \N 89869 \N varietas Lespedeza fasciculiflora var. fasciculiflora \N \N \N \N \N 89870 I.amplexicaulis Ixora Ixora amplexicaulis \N \N \N \N \N 89871 T.nephelioides Tetratheca Tetratheca nephelioides \N \N \N \N \N 89872 P.colligatispicum Piper Piper colligatispicum \N \N \N \N \N 89873 A.jaliscensis Andira Andira jaliscensis \N \N \N \N \N 89874 H.dactyloides Hakea Hakea dactyloides \N \N \N \N \N 89875 A.dinteri Aizoanthemum Aizoanthemum dinteri \N \N \N \N \N 89876 G.angelae Gagea Gagea angelae \N \N \N \N \N 89877 A.decapetala Anemone Anemone decapetala \N \N \N \N \N 89878 A.scandens Argocoffeopsis Argocoffeopsis scandens \N \N \N \N \N 89879 A.glacialis Artemisia Artemisia glacialis \N \N \N \N \N 89880 S.BRK-2005 Sagittaria Sagittaria sp. BRK-2005 \N \N \N \N \N 89881 E.chrysanthum Erodium Erodium chrysanthum \N \N \N \N \N 89882 S.angustifolia Scorzonera Scorzonera angustifolia \N \N \N \N \N 89883 E.humilis Echinops Echinops humilis \N \N \N \N \N 89884 \N no rank Selineae \N \N \N \N \N 89885 T.patens Trifolium Trifolium patens \N \N \N \N \N 89886 A.juniperina Aspalathus Aspalathus juniperina \N \N \N \N \N 89887 P.canescens Petrophile Petrophile canescens \N \N \N \N \N 89888 O.zeekoevleyensis Oxalis Oxalis zeekoevleyensis \N \N \N \N \N 89889 H.formicarum Hydnophytum Hydnophytum formicarum \N \N \N \N \N 89890 R.typhina Rhus Rhus typhina \N \N \N \N \N 89891 \N subspecies Chaenorhinum origanifolium subsp. crassifolium \N \N \N \N \N 89892 E.longifolia Eurycoma Eurycoma longifolia \N \N \N \N \N 89893 T.tommasinii Tragopogon Tragopogon tommasinii \N \N \N \N \N 89894 C.longii Carex Carex longii \N \N \N \N \N 89895 H.praecox Helianthus Helianthus praecox \N \N \N \N \N 89896 \N subspecies Haemanthus humilis subsp. hirsutus \N \N \N \N \N 89897 R.semibarbatum Rhododendron Rhododendron semibarbatum \N \N \N \N \N 89898 A.hystrix Astragalus Astragalus hystrix \N \N \N \N \N 89899 P.lacourii Pseudodracontium Pseudodracontium lacourii \N \N \N \N \N 89900 E.myoporoides Eriostemon Eriostemon myoporoides \N \N \N \N \N 89901 \N genus Myxochlamys \N \N \N \N \N 89902 F.tuberifera Ferula Ferula tuberifera \N \N \N \N \N 89903 R.splendens Rhodophiala Rhodophiala splendens \N \N \N \N \N 89904 D.teuscheri Drymonia Drymonia teuscheri \N \N \N \N \N 89905 \N genus Pseudocamelina \N \N \N \N \N 89906 \N genus Dyssochroma \N \N \N \N \N 89907 A.papuana Apostasia Apostasia papuana \N \N \N \N \N 89908 \N genus Erythrospermum \N \N \N \N \N 89909 P.bignoniacea Psiguria Psiguria bignoniacea \N \N \N \N \N 89910 S.subcrassa Salsola Salsola subcrassa \N \N \N \N \N 89911 T.cymosum Tripetalum Tripetalum cymosum \N \N \N \N \N 89912 C.linearis Chamaedorea Chamaedorea linearis \N \N \N \N \N 89913 \N subspecies Descurainia pinnata subsp. menziesii \N \N \N \N \N 89914 Z.lathetica Zygia Zygia lathetica \N \N \N \N \N 89915 G.traceyae Gomphichis Gomphichis traceyae \N \N \N \N \N 89916 S.cernua Saxifraga Saxifraga cernua \N \N \N \N \N 89917 M.serrulata Maxillaria Maxillaria serrulata \N \N \N \N \N 89918 I.haynei Iris Iris haynei \N \N \N \N \N 89919 K.SH-2010 Kopsia Kopsia sp. SH-2010 \N \N \N \N \N 89920 A.giganteum Allium Allium giganteum \N \N \N \N \N 89921 H.purpurea Hovea Hovea purpurea \N \N \N \N \N 89922 H.CVM-2007 Hedera Hedera sp. CVM-2007 \N \N \N \N \N 89923 E.chinense Eupatorium Eupatorium chinense \N \N \N \N \N 89924 C.irregularis Calepina Calepina irregularis \N \N \N \N \N 89925 D.barbatulum Dendrobium Dendrobium barbatulum \N \N \N \N \N 89926 \N genus Eutetras \N \N \N \N \N 89927 \N genus Baissea \N \N \N \N \N 89928 P.debilis Prunus Prunus debilis \N \N \N \N \N 89929 \N varietas Setaria sphacelata var. sericea \N \N \N \N \N 89930 E.calcareophila Erica Erica calcareophila \N \N \N \N \N 89931 K.hirsuta Kengyilia Kengyilia hirsuta \N \N \N \N \N 89932 N.variegata Neoglaziovia Neoglaziovia variegata \N \N \N \N \N 89933 P.alcalinum Paspalum Paspalum alcalinum \N \N \N \N \N 89934 Q.variabilis Quercus Quercus variabilis \N \N \N \N \N 89935 S.waldsteinii Silene Silene waldsteinii Waldstein's campion \N \N \N \N 89936 E.arborescens Erica Erica arborescens \N \N \N \N \N 89937 D.acuiferum Dendrochilum Dendrochilum acuiferum \N \N \N \N \N 89938 E.speciosa Eremomastax Eremomastax speciosa \N \N \N \N \N 89939 T.95016 Trillium Trillium sp. Qiu 95016 \N \N \N \N \N 89940 P.arborea Psychotria Psychotria arborea \N \N \N \N \N 89941 S.purpureosericeum Sorghum Sorghum purpureosericeum \N \N \N \N \N 89942 C.cheirolepidioides Centaurea Centaurea cheirolepidioides \N \N \N \N \N 89943 O.obryzatoides Oncidium Oncidium obryzatoides \N \N \N \N \N 89944 P.glandulosum Phebalium Phebalium glandulosum \N \N \N \N \N 89945 C.mocinnoi Citharexylum Citharexylum mocinnoi \N \N \N \N \N 89946 A.gorgoneum Aeonium Aeonium gorgoneum \N \N \N \N \N 89947 S.argentea Salvia Salvia argentea \N \N \N \N \N 89948 A.4588 Alloplectus Alloplectus sp. Clark 4588 \N \N \N \N \N 89949 R.novoguineensis Rhodomyrtus Rhodomyrtus novoguineensis \N \N \N \N \N 89950 W.gloriosa Wahlenbergia Wahlenbergia gloriosa \N \N \N \N \N 89951 A.inophloia Allocasuarina Allocasuarina inophloia \N \N \N \N \N 89952 M.guelzowiana Mammillaria Mammillaria guelzowiana \N \N \N \N \N 89953 M.ophrydis Malaxis Malaxis ophrydis \N \N \N \N \N 89954 V.cruziana Victoria Victoria cruziana Santa Cruz water-lily,irupe \N \N \N \N 89955 S.maheshwarii Silene Silene maheshwarii Maheshwari's campion \N \N \N \N 89956 C.gunniana Carex Carex gunniana \N \N \N \N \N 89957 \N genus Geocaryum \N \N \N \N \N 89958 Q.michauxii Quercus Quercus michauxii basket oak,swamp chestnut oak \N \N \N \N 89959 P.gentryi Penstemon Penstemon gentryi \N \N \N \N \N 89960 \N genus Habrosia \N \N \N \N \N 89961 N.spathulata Nepenthes Nepenthes spathulata \N \N \N \N \N 89962 V.papuana Vatica Vatica papuana \N \N \N \N \N 89963 A.shenzhenica Apostasia Apostasia shenzhenica \N \N \N \N \N 89964 \N subspecies Potamogeton berchtoldii subsp. clystocarpus \N \N \N \N \N 89965 A.longissima Acacia Acacia longissima \N \N \N \N \N 89966 \N genus Dorstenia \N \N \N \N \N 89967 O.ecuadorensis Oliveriana Oliveriana ecuadorensis \N \N \N \N \N 89968 A.petriei Agrostis Agrostis petriei \N \N \N \N \N 89969 M.malacophylla Mimosa Mimosa malacophylla \N \N \N \N \N 89970 L.glanduliflora Lysimachia Lysimachia glanduliflora \N \N \N \N \N 89971 E.macilenta Eragrostis Eragrostis macilenta \N \N \N \N \N 89972 \N genus Chlorocalymma \N \N \N \N \N 89973 \N subspecies Campanula saxifraga subsp. aucheri \N \N \N \N \N 89974 A.canescens Arctostaphylos Arctostaphylos canescens \N \N \N \N \N 89975 E.gnaphaloides Erica Erica gnaphaloides \N \N \N \N \N 89976 C.renggerioides Clusia Clusia renggerioides \N \N \N \N \N 89977 U.ectomycorrhiza environmental samples Taxonomy:197745 uncultured Quercus pubescens from ectomycorrhiza \N \N \N \N \N 89978 M.canarina Maxillaria Maxillaria canarina \N \N \N \N \N 89979 \N varietas Peucedanum harry-smithii var. harry-smithii \N \N \N \N \N 89980 \N subspecies Ipomopsis congesta subsp. palmifrons \N \N \N \N \N 89981 L.palmeriana Linospadix Linospadix palmeriana \N \N \N \N \N 89982 F.heteropetala Fenerivia Fenerivia heteropetala \N \N \N \N \N 89983 B.aquatica Bonyunia Bonyunia aquatica \N \N \N \N \N 89984 \N genus Helicia \N \N \N \N \N 89985 S.moorei Syzygium Syzygium moorei \N \N \N \N \N 89986 \N genus Paranomus \N \N \N \N \N 89987 O.pancicii Orobanche Orobanche pancicii \N \N \N \N \N 89988 H.gorterioides Hirpicium Hirpicium gorterioides \N \N \N \N \N 89989 E.bijuga Eperua Eperua bijuga \N \N \N \N \N 89990 \N varietas Senna holwayana var. holwayana \N \N \N \N \N 89991 C.urvillei Cyrtandra Cyrtandra urvillei \N \N \N \N \N 89992 C.tricalysioides Coffea Coffea tricalysioides \N \N \N \N \N 89993 E.longiflorum Echiochilon Echiochilon longiflorum \N \N \N \N \N 89994 R.cephalanthum Rhododendron Rhododendron cephalanthum \N \N \N \N \N 89995 L.squamatum Lepidium Lepidium squamatum \N \N \N \N \N 89996 P.alticola Paracryphia Paracryphia alticola \N \N \N \N \N 89997 T.vaginatus Trollius Trollius vaginatus \N \N \N \N \N 89998 \N subspecies Euryops subcarnosus subsp. vulgaris \N \N \N \N \N 89999 E.cymosa Euphorbia Euphorbia cymosa \N \N \N \N \N 90000 L.prostratum Linum Linum prostratum \N \N \N \N \N 90001 C.inodora Citrus Citrus inodora North Queensland lime \N \N \N \N 90002 D.linawianum Dendrobium Dendrobium linawianum \N \N \N \N \N 90003 \N genus Neoschischkinia \N \N \N \N \N 90004 P.sagittata Parabaena Parabaena sagittata \N \N \N \N \N 90005 A.pycnocarpa Arabis Arabis pycnocarpa \N \N \N \N \N 90006 C.brachynematum Craterispermum Craterispermum brachynematum \N \N \N \N \N 90007 S.secundiflora Sophora Sophora secundiflora \N \N \N \N \N 90008 B.sample environmental samples Taxonomy:404793 Bursaria environmental sample \N \N \N \N \N 90009 C.opulens Caragana Caragana opulens \N \N \N \N \N 90010 T.spicatum Trisetum Trisetum spicatum \N \N \N \N \N 90011 R.megasperma Rhaphidophora Rhaphidophora megasperma \N \N \N \N \N 90012 M.exsucca Myrceugenia Myrceugenia exsucca \N \N \N \N \N 90013 C.dewevrei Colletoecema Colletoecema dewevrei \N \N \N \N \N 90014 E.quaitensis Euphorbia Euphorbia quaitensis \N \N \N \N \N 90015 A.latifolia Aechmea Aechmea latifolia \N \N \N \N \N 90016 \N subspecies Fuchsia thymifolia subsp. minimiflora \N \N \N \N \N 90017 M.nazasensis Mammillaria Mammillaria nazasensis \N \N \N \N \N 90018 C.maritimus Cordylanthus Cordylanthus maritimus \N \N \N \N \N 90019 \N subspecies Manihot esculenta subsp. flabellifolia \N \N \N \N \N 90020 \N subspecies Euphorbia deltoidea subsp. deltoidea \N \N \N \N \N 90021 \N family Akaniaceae \N \N \N \N \N 90022 H.depressa Hermannia Hermannia depressa \N \N \N \N \N 90023 M.noeana Medicago Medicago noeana \N \N \N \N \N 90024 A.convallis Agave Agave convallis \N \N \N \N \N 90025 P.DG-2010 Parrya Parrya aff. stenocarpa DG-2010 \N \N \N \N \N 90026 P.densiflora Polianthes Polianthes densiflora \N \N \N \N \N 90027 R.seemannii Racinaea Racinaea seemannii \N \N \N \N \N 90028 H.corrugata Henckelia Henckelia corrugata \N \N \N \N \N 90029 \N genus Neokochia \N \N \N \N \N 90030 I.praticola Indigofera Indigofera praticola \N \N \N \N \N 90031 S.clandestina Sideritis Sideritis clandestina \N \N \N \N \N 90032 C.tenuis Cattleya Cattleya tenuis \N \N \N \N \N 90033 C.fasciculata Chamaecrista Chamaecrista fasciculata golden cassia,partridge-pea \N \N \N \N 90034 \N varietas Oldenlandia capensis var. capensis \N \N \N \N \N 90035 A.biternata Astilbe Astilbe biternata false goat's-beard \N \N \N \N 90036 A.soulameoides Amaroria Amaroria soulameoides \N \N \N \N \N 90037 S.globosa Sarcocornia Sarcocornia globosa \N \N \N \N \N 90038 \N genus Emmenosperma \N \N \N \N \N 90039 P.calva Psychotria Psychotria calva \N \N \N \N \N 90040 \N subspecies Carex microchaeta subsp. nesophila \N \N \N \N \N 90041 A.hispanica Alchemilla Alchemilla hispanica \N \N \N \N \N 90042 \N varietas Toxicoscordion fremontii var. fremontii \N \N \N \N \N 90043 P.patulum Polygonum Polygonum patulum \N \N \N \N \N 90044 D.8032 Dioscorea Dioscorea sp. Wood 8032 \N \N \N \N \N 90045 \N genus Lachemilla \N \N \N \N \N 90046 H.glandulosum Haloragodendron Haloragodendron glandulosum \N \N \N \N \N 90047 T.iboga Tabernanthe Tabernanthe iboga \N \N \N \N \N 90048 A.hookeri Argostemma Argostemma hookeri \N \N \N \N \N 90049 G.huttonii Geniostoma Geniostoma huttonii \N \N \N \N \N 90050 R.eustephanos Rubus Rubus eustephanos \N \N \N \N \N 90051 H.pinnata Hosackia Hosackia pinnata \N \N \N \N \N 90052 \N genus Cyclanthus \N \N \N \N \N 90053 O.solandri Olearia Olearia solandri \N \N \N \N \N 90054 C.bhupinderana Caralluma Caralluma bhupinderana \N \N \N \N \N 90055 D.hansenii Delphinium Delphinium hansenii \N \N \N \N \N 90056 A.ovalis Andrachne Andrachne ovalis \N \N \N \N \N 90057 P.axillaris Pityrodia Pityrodia axillaris \N \N \N \N \N 90058 H.muticus Hyoscyamus Hyoscyamus muticus \N \N \N \N \N 90059 C.LJZ-2004 Corispermum Corispermum sp. LJZ-2004 \N \N \N \N \N 90060 S.anomala Swartzia Swartzia anomala \N \N \N \N \N 90061 \N genus Arcytophyllum \N \N \N \N \N 90062 A.barbatum Aconitum Aconitum barbatum \N \N \N \N \N 90063 M.gigas Maianthemum Maianthemum gigas \N \N \N \N \N 90064 C.pinnatipartitus Corchorus Corchorus pinnatipartitus \N \N \N \N \N 90065 \N genus Spryginia \N \N \N \N \N 90066 S.wichurae Scirpus Scirpus wichurae \N \N \N \N \N 90067 C.fimbriata Chondroscaphe Chondroscaphe fimbriata \N \N \N \N \N 90068 O.MO501 Oxalis Oxalis cf. fergusoniae MO501 \N \N \N \N \N 90069 \N varietas Glandularia gooddingii var. gooddingii \N \N \N \N \N 90070 A.glabrata Alcea Alcea glabrata \N \N \N \N \N 90071 M.theizans Miconia Miconia theizans \N \N \N \N \N 90072 V.fischerii Viola Viola fischerii \N \N \N \N \N 90073 D.glanduligera Driessenia Driessenia glanduligera \N \N \N \N \N 90074 R.batemanii Rodriguezia Rodriguezia batemanii \N \N \N \N \N 90075 L.michauxii Licania Licania michauxii gopher-apple,ground-oak \N \N \N \N 90076 D.subtenuicornis Disa Disa subtenuicornis \N \N \N \N \N 90077 \N genus Dactyliophora \N \N \N \N \N 90078 I.capensis Isolepis Isolepis capensis \N \N \N \N \N 90079 M.helleri Microsechium Microsechium helleri \N \N \N \N \N 90080 L.arcuatum Leucadendron Leucadendron arcuatum \N \N \N \N \N 90081 E.trapifolia Euphorbia Euphorbia trapifolia \N \N \N \N \N 90082 P.scandens Palmeria Palmeria scandens \N \N \N \N \N 90083 A.mexicana Achimenes Achimenes mexicana \N \N \N \N \N 90084 F.211 Fraxinus Fraxinus sp. 211 \N \N \N \N \N 90085 C.hirsutus Cucumis Cucumis hirsutus \N \N \N \N \N 90086 P.B199309198 Pinanga Pinanga sp. B199309198 \N \N \N \N \N 90087 I.leucantha Ipomoea Ipomoea leucantha \N \N \N \N \N 90088 A.sample environmental samples Taxonomy:493874 Avena environmental sample \N \N \N \N \N 90089 P.acuminatus Penstemon Penstemon acuminatus \N \N \N \N \N 90090 S.columbariae Salvia Salvia columbariae \N \N \N \N \N 90091 H.dioica Hasseltiopsis Hasseltiopsis dioica \N \N \N \N \N 90092 \N subspecies Toxicodendron radicans subsp. hispidum \N \N \N \N \N 90093 V.stelleri Veronica Veronica stelleri \N \N \N \N \N 90094 \N subspecies Aizopsis middendorfiana subsp. sichotense \N \N \N \N \N 90095 \N genus Eccremis \N \N \N \N \N 90096 R.delavayi Rhododendron Rhododendron decorum x Rhododendron delavayi \N \N \N \N \N 90097 A.thodei Alepidea Alepidea thodei \N \N \N \N \N 90098 C.exsiccata Carex Carex exsiccata \N \N \N \N \N 90099 O.papuana Oreomyrrhis Oreomyrrhis papuana \N \N \N \N \N 90100 D.altaicum Doronicum Doronicum altaicum \N \N \N \N \N 90101 S.neoserrata Saussurea Saussurea neoserrata \N \N \N \N \N 90102 A.acuminata Alocasia Alocasia acuminata \N \N \N \N \N 90103 A.peltarioides Alyssum Alyssum peltarioides \N \N \N \N \N 90104 \N subspecies Cucurbita okeechobeensis subsp. okeechobeensis \N \N \N \N \N 90105 H.biaristatum Huodendron Huodendron biaristatum \N \N \N \N \N 90106 C.ehrenbergii Cirsium Cirsium ehrenbergii \N \N \N \N \N 90107 S.nudipes Siphocranion Siphocranion nudipes \N \N \N \N \N 90108 G.recurva Gomesa Gomesa recurva \N \N \N \N \N 90109 N.umbraticus Neuracanthus Neuracanthus umbraticus \N \N \N \N \N 90110 \N subspecies Androcymbium exiguum subsp. exiguum \N \N \N \N \N 90111 C.lutescens Coptis Coptis lutescens \N \N \N \N \N 90112 O.crocidipterum Oncidium Oncidium crocidipterum \N \N \N \N \N 90113 L.bellum Lomatogonium Lomatogonium bellum \N \N \N \N \N 90114 B.atropurpurea Bifrenaria Bifrenaria atropurpurea \N \N \N \N \N 90115 O.microcalyx Oxera Oxera microcalyx \N \N \N \N \N 90116 \N genus Pseudoprosopis \N \N \N \N \N 90117 Q.aucherii Quercus Quercus aucherii \N \N \N \N \N 90118 S.bracteolata Shorea Shorea bracteolata \N \N \N \N \N 90119 D.congestum Diplocentrum Diplocentrum congestum \N \N \N \N \N 90120 \N genus Batrachium \N \N \N \N \N 90121 R.thyrsoidea Reevesia Reevesia thyrsoidea \N \N \N \N \N 90122 M.red1 Myriophyllum Myriophyllum sp. red1 \N \N \N \N \N 90123 P.heterodoxus Penstemon Penstemon heterodoxus \N \N \N \N \N 90124 L.apetalum Lepidium Lepidium apetalum \N \N \N \N \N 90125 M.zehntneri Marsdenia Marsdenia zehntneri \N \N \N \N \N 90126 S.21048 Salicornia Salicornia aff. depressa Oldham 21048 \N \N \N \N \N 90127 P.latisecta Pinanga Pinanga latisecta \N \N \N \N \N 90128 \N subspecies Crepis jacquinii subsp. kerneri \N \N \N \N \N 98197 \N genus Nealchornea \N \N \N \N \N 90129 T.cepaeifolium Thlaspi Thlaspi cepaeifolium \N \N \N \N \N 90130 \N genus Gymnosporia \N \N \N \N \N 90131 M.delicata Micromyrtus Micromyrtus delicata \N \N \N \N \N 90132 R.brutius Ranunculus Ranunculus brutius \N \N \N \N \N 90133 O.gussonei Ornithogalum Ornithogalum gussonei \N \N \N \N \N 90134 T.espinosae Tillandsia Tillandsia espinosae \N \N \N \N \N 90135 N.gajah Nenga Nenga gajah \N \N \N \N \N 90136 A.lobelii Acer Acer lobelii \N \N \N \N \N 90137 T.adriaticum Taraxacum Taraxacum adriaticum \N \N \N \N \N 90138 \N genus Kingdonia \N \N \N \N \N 90139 C.MVSP-2007 Crucianella Crucianella sp. MVSP-2007 \N \N \N \N \N 90140 M.muddii Moraea Moraea muddii \N \N \N \N \N 90141 L.chinensis Livistona Livistona chinensis \N \N \N \N \N 90142 M.heleneae Meryta Meryta heleneae \N \N \N \N \N 90143 A.shimadai Aristolochia Aristolochia shimadai \N \N \N \N \N 90144 C.syriaca Cephalaria Cephalaria syriaca \N \N \N \N \N 90145 E.chrysanthemifolia Eucrypta Eucrypta chrysanthemifolia \N \N \N \N \N 90146 P.elegantissima Pilea Pilea elegantissima \N \N \N \N \N 90147 \N genus Lepidophorum \N \N \N \N \N 90148 S.oligophylla Schnabelia Schnabelia oligophylla \N \N \N \N \N 90149 \N genus Briggsiopsis \N \N \N \N \N 90150 P.incanum Pharnaceum Pharnaceum incanum \N \N \N \N \N 90151 O.EE295 Oxalis Oxalis sp. EE295 \N \N \N \N \N 90152 M.superba Miconia Miconia superba \N \N \N \N \N 90153 K.coriacea Kielmeyera Kielmeyera coriacea \N \N \N \N \N 90154 S.vaginatum Sisyrinchium Sisyrinchium vaginatum \N \N \N \N \N 90155 O.passerinoides Olearia Olearia passerinoides \N \N \N \N \N 90156 R.weisiensis Rosa Rosa weisiensis \N \N \N \N \N 90157 P.terminalis Pityrodia Pityrodia terminalis \N \N \N \N \N 90158 K.JT-2010d Kaempferia Kaempferia sp. JT-2010d \N \N \N \N \N 90159 M.GLM Macrocarpaea Macrocarpaea sp. GLM \N \N \N \N \N 90160 C.wentsaii Chirita Chirita wentsaii \N \N \N \N \N 90161 T.schmiedickeanus Turbinicarpus Turbinicarpus schmiedickeanus \N \N \N \N \N 90162 L.davisii Lepidium Lepidium davisii \N \N \N \N \N 90163 R.cuneata Rulingia Rulingia cuneata \N \N \N \N \N 90164 C.204 Canthium Canthium sp. 4 Karehed et al. 204 \N \N \N \N \N 90165 R.angustifolius Rhinanthus Rhinanthus angustifolius \N \N \N \N \N 90166 P.stylosa Psychine Psychine stylosa \N \N \N \N \N 90167 S.jamaicensis Stachytarpheta Stachytarpheta jamaicensis Brazilian tea,bastard vervain,blue porterweed \N \N \N \N 90168 P.longifolia Paradrymonia Paradrymonia longifolia \N \N \N \N \N 90169 M.kwangsiensis Magnolia Magnolia kwangsiensis \N \N \N \N \N 90170 E.officinarum Euphorbia Euphorbia officinarum \N \N \N \N \N 90171 \N genus Plagiosetum \N \N \N \N \N 90172 T.purpusii Tiquilia Tiquilia purpusii \N \N \N \N \N 90173 H.verticillata Hedyotis Hedyotis verticillata \N \N \N \N \N 90174 T.hispidum Trisetum Trisetum hispidum \N \N \N \N \N 90175 M.koenigii Murraya Murraya koenigii \N \N \N \N \N 90176 T.fitzalanii Trukia Trukia fitzalanii \N \N \N \N \N 90177 \N family Doryanthaceae \N \N \N \N \N 90178 C.PS-2009 Cassia Cassia sp. PS-2009 \N \N \N \N \N 90179 P.macrocaulon Paepalanthus Paepalanthus macrocaulon \N \N \N \N \N 90180 R.costaricensis Ruprechtia Ruprechtia costaricensis \N \N \N \N \N 90181 D.daurica Draba Draba daurica \N \N \N \N \N 90182 P.suswaensis Pentas Pentas suswaensis \N \N \N \N \N 90183 V.laxum Viscum Viscum laxum \N \N \N \N \N 90184 R.bella Rosa Rosa bella \N \N \N \N \N 90185 S.trichilioides Simaba Simaba trichilioides \N \N \N \N \N 90186 P.talbotii Phaulopsis Phaulopsis talbotii \N \N \N \N \N 90187 H.sinclairii Haastia Haastia sinclairii \N \N \N \N \N 90188 \N no rank Gentianaceae incertae sedis \N \N \N \N \N 90189 P.limpato Prainea Prainea limpato \N \N \N \N \N 90190 A.delavayana Ampelopsis Ampelopsis delavayana \N \N \N \N \N 90191 \N genus Rennera \N \N \N \N \N 90192 \N varietas Salvia dorrii var. pilosa \N \N \N \N \N 90193 C.2010-0215 Cyperus Cyperus sp. Larridon et al. 2010-0215 \N \N \N \N \N 90194 D.platichila Diuris Diuris platichila \N \N \N \N \N 90195 F.uliginosa Felicia Felicia uliginosa \N \N \N \N \N 90196 A.glareosa Anthemis Anthemis glareosa \N \N \N \N \N 90197 B.moumingensis Brassaiopsis Brassaiopsis moumingensis \N \N \N \N \N 90198 D.laciniata Daucosma Daucosma laciniata \N \N \N \N \N 90199 A.wongii Alocasia Alocasia wongii \N \N \N \N \N 90200 \N genus Floydia \N \N \N \N \N 90201 P.peltata Pilea Pilea peltata \N \N \N \N \N 90202 L.inschanica Lespedeza Lespedeza inschanica \N \N \N \N \N 90203 M.SGR-2009 Morinda Morinda sp. 8 SGR-2009 \N \N \N \N \N 90204 C.stapfii Callicarpa Callicarpa stapfii \N \N \N \N \N 90205 S.leucopila Setaria Setaria leucopila \N \N \N \N \N 90206 \N varietas Achillea millefolium var. arenicola \N \N \N \N \N 90207 \N subspecies Melicytus ramiflorus subsp. oblongifolius \N \N \N \N \N 90208 \N genus Chaetocalyx \N \N \N \N \N 90209 J.tiehmii Juncus Juncus tiehmii \N \N \N \N \N 90210 P.hoffmannii Peperomia Peperomia hoffmannii \N \N \N \N \N 90211 C.antalyensis Crocus Crocus antalyensis \N \N \N \N \N 90212 \N genus Spermacoce \N \N \N \N \N 90213 \N genus Wahlenbergia \N \N \N \N \N 90214 A.yabeana Aquilegia Aquilegia yabeana \N \N \N \N \N 90215 R.maxima Rhynchocorys Rhynchocorys maxima \N \N \N \N \N 90216 \N genus Monsonia \N \N \N \N \N 90217 R.argutus Rubus Rubus argutus prickly Florida blackberry \N \N \N \N 90218 \N varietas Artemisia norvegica var. villosula \N \N \N \N \N 90219 C.viridiflorus Callistemon Callistemon viridiflorus \N \N \N \N \N 90220 A.38 Alseodaphne Alseodaphne sp. Arifiani & van der Werff 38 \N \N \N \N \N 90221 L.blanche-amesiae Loefgrenianthus Loefgrenianthus blanche-amesiae \N \N \N \N \N 90222 A.flava Asclepias Asclepias flava \N \N \N \N \N 90223 L.tortuosa Lepidaploa Lepidaploa tortuosa \N \N \N \N \N 90224 X.blephariphyllum Xanthisma Xanthisma blephariphyllum Texas tansyaster \N \N \N \N 90225 \N genus Faujasia \N \N \N \N \N 90226 A.sanguinolenta Aerva Aerva sanguinolenta \N \N \N \N \N 90227 P.stichadenia Pleonotoma Pleonotoma stichadenia \N \N \N \N \N 90228 M.lindavii Mendoncia Mendoncia lindavii \N \N \N \N \N 90229 U.australis Ulex Ulex australis \N \N \N \N \N 90230 P.acutivagina Pseudosasa Pseudosasa acutivagina \N \N \N \N \N 90231 A.cyathiferum Antirrhinum Antirrhinum cyathiferum \N \N \N \N \N 90232 F.excelsior Fraxinus Fraxinus excelsior European ash \N \N \N \N 90233 I.brasiliensis Ilex Ilex brasiliensis \N \N \N \N \N 90234 A.arguta Angelica Angelica arguta \N \N \N \N \N 90235 P.comatum Podostemum Podostemum comatum \N \N \N \N \N 90236 A.javalensis Ampelocissus Ampelocissus javalensis \N \N \N \N \N 90237 N.occidentalis Nicotiana Nicotiana occidentalis \N \N \N \N \N 90238 C.pelocarpa Carex Carex pelocarpa \N \N \N \N \N 90239 D.scabrum Diplodium Diplodium scabrum \N \N \N \N \N 90240 \N family Asteraceae daisy family \N \N \N \N 90241 J.gerardii Juncus Juncus gerardii \N \N \N \N \N 90242 S.ciliata Stipagrostis Stipagrostis ciliata \N \N \N \N \N 90243 A.flava Artemisia Artemisia flava \N \N \N \N \N 90244 E.cyathophora Euphorbia Euphorbia cyathophora fire-on-the-mountain \N \N \N \N 90245 P.isophyllus Penstemon Penstemon isophyllus \N \N \N \N \N 90246 P.8457 Pseuderanthemum Pseuderanthemum sp. Hedren 8457 \N \N \N \N \N 90247 P.umbrosa Phlomis Phlomis umbrosa \N \N \N \N \N 90248 L.scandens Lophospermum Lophospermum scandens \N \N \N \N \N 90249 P.alpina Pinguicula Pinguicula alpina \N \N \N \N \N 90250 M.persoonii Myosotis Myosotis persoonii \N \N \N \N \N 90251 \N tribe Ourisieae \N \N \N \N \N 90252 M.vexator Myrciaria Myrciaria vexator \N \N \N \N \N 90253 D.acamptostachys Daemonorops Daemonorops acamptostachys \N \N \N \N \N 90254 M.klebelsbergianum Melampyrum Melampyrum klebelsbergianum \N \N \N \N \N 90255 E.O-403 Eulophia Eulophia sp. Chase O-403 \N \N \N \N \N 90256 \N subspecies Erica banksii subsp. comptonii \N \N \N \N \N 90257 H.MAB-2008 Hesperis Hesperis sp. MAB-2008 \N \N \N \N \N 90258 M.lenta Mammillaria Mammillaria lenta \N \N \N \N \N 90259 S.parviflora Stemona Stemona parviflora \N \N \N \N \N 90260 B.diffusa Boerhavia Boerhavia diffusa \N \N \N \N \N 90261 \N genus Sorghastrum \N \N \N \N \N 90262 C.alternifolius Cyperus Cyperus alternifolius \N \N \N \N \N 90263 E.heliophila Erica Erica heliophila \N \N \N \N \N 90264 U.holtzei Utricularia Utricularia holtzei \N \N \N \N \N 90265 P.jaumavensis Pinguicula Pinguicula jaumavensis \N \N \N \N \N 90266 \N genus Glaucosciadium \N \N \N \N \N 90267 I.thonneri Isolona Isolona thonneri \N \N \N \N \N 90268 C.glaber Calycobolus Calycobolus glaber \N \N \N \N \N 90269 D.XMW-2002-14 Dendrobium Dendrobium sp. XMW-2002-14 \N \N \N \N \N 90270 \N genus Sacosperma \N \N \N \N \N 90271 C.114 Calophyllum Calophyllum sp. Ruhfel 114 \N \N \N \N \N 90272 D.pohlei Draba Draba pohlei \N \N \N \N \N 90273 \N genus Eigia \N \N \N \N \N 90274 C.lucidula Cordia Cordia lucidula \N \N \N \N \N 90275 C.domingensis Cubanola Cubanola domingensis \N \N \N \N \N 90276 D.zederbaueri Dianthus Dianthus zederbaueri \N \N \N \N \N 90277 S.verticillata Setaria Setaria verticillata \N \N \N \N \N 90278 S.roseus Streblacanthus Streblacanthus roseus \N \N \N \N \N 90279 \N varietas Encelia farinosa var. radians \N \N \N \N \N 90280 \N genus Parodiodoxa \N \N \N \N \N 90281 \N genus Hemichroa \N \N \N \N \N 90282 Z.tatei Zygosepalum Zygosepalum tatei \N \N \N \N \N 90283 N.pallida Nolana Nolana pallida \N \N \N \N \N 90284 C.polytricha Crepis Crepis polytricha \N \N \N \N \N 90285 C.frigida Carlina Carlina frigida \N \N \N \N \N 90286 \N subspecies Brassica rapa subsp. nipposinica mizuna,wang sheng cai \N \N \N \N 90287 \N subspecies Nigella arvensis subsp. aristata \N \N \N \N \N 90288 S.oblongifolia Santolina Santolina oblongifolia \N \N \N \N \N 90289 D.lindeniana Dorstenia Dorstenia lindeniana \N \N \N \N \N 90290 B.pumila Betula Betula pumila American dwarf birch,bog birch \N \N \N \N 90291 V.shinchikuensis Viola Viola shinchikuensis \N \N \N \N \N 90292 \N genus Pseudobersama \N \N \N \N \N 90293 F.amadiensis Ficus Ficus amadiensis \N \N \N \N \N 90294 S.carpatica Soldanella Soldanella carpatica \N \N \N \N \N 90295 R.ecae Rosa Rosa ecae \N \N \N \N \N 90296 G.carneus Gladiolus Gladiolus carneus \N \N \N \N \N 90297 L.hirsuta Lantana Lantana hirsuta \N \N \N \N \N 90298 \N genus Drymonia \N \N \N \N \N 90299 B.aequata Begonia Begonia aequata \N \N \N \N \N 90300 P.albinervus Phaseolus Phaseolus albinervus \N \N \N \N \N 90301 D.dentatus Dontostemon Dontostemon dentatus \N \N \N \N \N 90302 O.biebersteinii Onobrychis Onobrychis biebersteinii \N \N \N \N \N 90303 T.radicans Tanakaea Tanakaea radicans \N \N \N \N \N 90304 \N varietas Passiflora oerstedii var. choconiana \N \N \N \N \N 90305 \N genus Capanemia \N \N \N \N \N 90306 D.integrifolia Didymeles Didymeles integrifolia \N \N \N \N \N 90307 O.caryophyllacea Orobanche Orobanche caryophyllacea \N \N \N \N \N 90308 E.platypetalum Epimedium Epimedium platypetalum \N \N \N \N \N 90309 \N varietas Dracaena reflexa var. condensata \N \N \N \N \N 90310 F.splendens Fouquieria Fouquieria splendens ocotillo \N \N \N \N 90311 \N genus Gonocalyx \N \N \N \N \N 90312 F.micrantha Fosterella Fosterella micrantha \N \N \N \N \N 90313 S.phaeotricha Strychnos Strychnos phaeotricha \N \N \N \N \N 90314 D.consolatae Diospyros Diospyros consolatae \N \N \N \N \N 90315 Q.urvillei Quinetia Quinetia urvillei \N \N \N \N \N 90316 \N genus Giliastrum \N \N \N \N \N 90317 \N genus Petopentia \N \N \N \N \N 90318 O.nigrum Oreoselinum Oreoselinum nigrum \N \N \N \N \N 90319 P.flavum Paspalum Paspalum flavum \N \N \N \N \N 90320 C.natalensis Cryptocarya Cryptocarya natalensis \N \N \N \N \N 90321 C.georgii Coryphantha Coryphantha georgii \N \N \N \N \N 90322 P.subulifera Pentapleura Pentapleura subulifera \N \N \N \N \N 90323 T.coloratus Tragopogon Tragopogon coloratus \N \N \N \N \N 90324 O.gracilipes Oligostachyum Oligostachyum gracilipes \N \N \N \N \N 90325 \N genus Euchiton \N \N \N \N \N 90326 C.sinensis Chirita Chirita sinensis \N \N \N \N \N 90327 G.pauciflorum Gloeospermum Gloeospermum pauciflorum \N \N \N \N \N 90328 C.lingulata Centaurea Centaurea lingulata \N \N \N \N \N 90329 C.emoryi Corynopuntia Corynopuntia emoryi \N \N \N \N \N 90330 O.guatemalenoides Oncidium Oncidium guatemalenoides \N \N \N \N \N 90331 \N varietas Magnolia liliifera var. obovata \N \N \N \N \N 90332 C.japonicum Chrysanthemum Chrysanthemum japonicum ryuno-giku \N \N \N \N 90333 C.MAB-2010 Coincya Coincya sp. MAB-2010 \N \N \N \N \N 90334 C.helictus Cyrtanthus Cyrtanthus helictus \N \N \N \N \N 90335 S.macrum Sphaerocardamum Sphaerocardamum macrum \N \N \N \N \N 90336 R.Bridge Rulingia Rulingia sp. Trigwell Bridge \N \N \N \N \N 90337 G.bigeminum Galium Galium bigeminum \N \N \N \N \N 90338 S.secundatum Stenotaphrum Stenotaphrum secundatum \N \N \N \N \N 90339 R.lucidus Rhopalocarpus Rhopalocarpus lucidus \N \N \N \N \N 90340 C.putoensis Carpinus Carpinus putoensis \N \N \N \N \N 90341 D.trusmadiense Dendrochilum Dendrochilum trusmadiense \N \N \N \N \N 90342 P.tenuiflorum Psoralidium Psoralidium tenuiflorum \N \N \N \N \N 90343 S.brevicuspis Schismatoglottis Schismatoglottis brevicuspis \N \N \N \N \N 90344 A.oncosepala Angelica Angelica oncosepala \N \N \N \N \N 90345 \N genus Lomatophyllum \N \N \N \N \N 90346 N.korolkowii Neotorularia Neotorularia korolkowii \N \N \N \N \N 90347 C.hyperborea Cardamine Cardamine hyperborea \N \N \N \N \N 90348 A.JM04 Aristolochia Aristolochia sp. JM04 \N \N \N \N \N 90349 M.malmeana Monnina Monnina malmeana \N \N \N \N \N 90350 A.monoica Aphananthe Aphananthe monoica \N \N \N \N \N 90351 T.polyphylla Tetraberlinia Tetraberlinia polyphylla andoung \N \N \N \N 90352 M.microphylla Metrosideros Metrosideros microphylla \N \N \N \N \N 90353 S.multicaule Sedum Sedum multicaule \N \N \N \N \N 90354 G.longevaginalis Gaertnera Gaertnera longevaginalis \N \N \N \N \N 90355 \N subspecies Coelogyne sp. BG-2011 \N \N \N \N \N 90356 I.ficoidea Ilex Ilex ficoidea \N \N \N \N \N 90357 E.microcarpum Exacum Exacum microcarpum \N \N \N \N \N 90358 A.visnaga Ammi Ammi visnaga \N \N \N \N \N 90359 N.angustifolia Nabaluia Nabaluia angustifolia \N \N \N \N \N 90360 C.fruticosa Cupaniopsis Cupaniopsis fruticosa \N \N \N \N \N 90361 S.aspera Siparuna Siparuna aspera \N \N \N \N \N 90362 A.adsurgens Astragalus Astragalus adsurgens \N \N \N \N \N 90363 B.espigneira Blumenbachia Blumenbachia espigneira \N \N \N \N \N 90364 \N varietas Metrosideros polymorpha var. pseudorugosa \N \N \N \N \N 90365 J.lanipes Jurinea Jurinea lanipes \N \N \N \N \N 90366 G.subcaeruleus Gladiolus Gladiolus subcaeruleus \N \N \N \N \N 90367 B.sexangula Bruguiera Bruguiera sexangula \N \N \N \N \N 90368 G.leptothecus Gonocarpus Gonocarpus leptothecus \N \N \N \N \N 90369 T.japonica Trapa Trapa japonica \N \N \N \N \N 90370 L.congesta Liparia Liparia congesta \N \N \N \N \N 90371 \N subspecies Fenestraria rhopalophylla subsp. aurantiaca \N \N \N \N \N 90372 M.schroederiana Masdevallia Masdevallia schroederiana \N \N \N \N \N 90373 Z.adenophora Zieria Zieria adenophora \N \N \N \N \N 90374 \N subspecies Pimelea lehmanniana subsp. nervosa \N \N \N \N \N 90375 S.elegans Spachea Spachea elegans \N \N \N \N \N 90376 \N genus Camptacra \N \N \N \N \N 90377 \N genus Dilodendron \N \N \N \N \N 90378 L.macrantha Lebeckia Lebeckia macrantha \N \N \N \N \N 90379 H.pellegrinii Hymenostegia Hymenostegia pellegrinii \N \N \N \N \N 90380 \N genus Besleria \N \N \N \N \N 90381 H.pseudociliosa Habenaria Habenaria pseudociliosa \N \N \N \N \N 90382 D.ischnopetalum Diplocaulobium Diplocaulobium ischnopetalum \N \N \N \N \N 90383 G.monocaulis Gustavia Gustavia monocaulis \N \N \N \N \N 90384 H.nymphoides Hydrocleys Hydrocleys nymphoides water-poppy \N \N \N \N 90385 A.pygmaeus Amorphophallus Amorphophallus pygmaeus \N \N \N \N \N 90386 A.polygama Actinidia Actinidia polygama \N \N \N \N \N 90387 A.musciformis Arenaria Arenaria musciformis \N \N \N \N \N 90388 \N family Araliaceae ginseng family \N \N \N \N 90389 R.cathartica Rhamnus Rhamnus cathartica \N \N \N \N \N 90390 C.angulatus Celastrus Celastrus angulatus \N \N \N \N \N 90391 \N subspecies Ophionella arcuata subsp. arcuata \N \N \N \N \N 90392 \N subspecies Musa acuminata subsp. burmannicoides \N \N \N \N \N 90393 S.sabulosus Spirorhynchus Spirorhynchus sabulosus \N \N \N \N \N 90394 \N varietas Paspalum distichum var. indutum \N \N \N \N \N 90395 M.pierrei Mallotus Mallotus pierrei \N \N \N \N \N 90396 M.suringarii Momordica Momordica suringarii \N \N \N \N \N 90397 \N genus Troglophyton \N \N \N \N \N 90398 \N genus Doryphora \N \N \N \N \N 90399 M.shweliensis Machilus Machilus shweliensis \N \N \N \N \N 90400 V.sympodiale Viburnum Viburnum sympodiale \N \N \N \N \N 90401 A.dahurica Angelica Angelica dahurica \N \N \N \N \N 90402 T.trautvetteri Thymus Thymus trautvetteri \N \N \N \N \N 90403 A.1122 Aulotandra Aulotandra cf. trigonocarpa Wilkin 1122 \N \N \N \N \N 90404 F.hispidioides Ficus Ficus hispidioides \N \N \N \N \N 90405 W.candida Weldenia Weldenia candida \N \N \N \N \N 90406 M.aliquantula Miconia Miconia aliquantula \N \N \N \N \N 90407 B.syringifolia Barklya Barklya syringifolia \N \N \N \N \N 90408 \N subspecies Rafnia capensis subsp. calycina \N \N \N \N \N 90409 S.bifurca Sibbaldianthe Sibbaldianthe bifurca \N \N \N \N \N 90410 D.heterocarpon Desmodium Desmodium heterocarpon \N \N \N \N \N 90411 D.L32 Draba Draba sp. L32 \N \N \N \N \N 90412 P.nivalis Peperomia Peperomia nivalis \N \N \N \N \N 90413 S.tongwensis Saintpaulia Saintpaulia tongwensis \N \N \N \N \N 90414 \N genus Hypoestes \N \N \N \N \N 90415 \N genus Anemoclema \N \N \N \N \N 90416 D.decora Dolichopentas Dolichopentas decora \N \N \N \N \N 90417 C.erythraeum Cymbidium Cymbidium erythraeum \N \N \N \N \N 90418 T.jK3660 unclassified Taraxacum Taraxacum (sect. Dissecta) sp. jK3660 \N \N \N \N \N 90419 S.chacoensis Senna Senna chacoensis \N \N \N \N \N 90420 E.clavarioides Euphorbia Euphorbia clavarioides \N \N \N \N \N 90421 H.s.n. Heliamphora Heliamphora sp. Anderberg s.n. \N \N \N \N \N 90422 S.trinervula Smilax Smilax trinervula \N \N \N \N \N 90423 H.annamensis Hydnocarpus Hydnocarpus annamensis \N \N \N \N \N 90424 \N genus Operculina \N \N \N \N \N 90425 \N genus Cybistax \N \N \N \N \N 90426 C.litorosa Carex Carex litorosa \N \N \N \N \N 90427 T.megapotamicum Thelesperma Thelesperma megapotamicum \N \N \N \N \N 90428 H.wislizeni Hymenothrix Hymenothrix wislizeni \N \N \N \N \N 90429 M.hauniensis Manfreda Manfreda hauniensis \N \N \N \N \N 90430 A.urartu x Aegilotriticum Aegilops speltoides x Triticum urartu \N \N \N \N \N 90431 \N subspecies Trichopus zeylanicus subsp. travancoricus \N \N \N \N \N 90432 \N subspecies Arabidopsis kamchatica subsp. kawasakiana \N \N \N \N \N 90433 D.eilensis Duvalia Duvalia eilensis \N \N \N \N \N 90434 \N no rank Orchidaceae incertae sedis \N \N \N \N \N 90435 S.occidentalis Saniella Saniella occidentalis \N \N \N \N \N 90436 C.megalanthus Cytisus Cytisus megalanthus \N \N \N \N \N 90437 N.eriocephala Navarretia Navarretia eriocephala \N \N \N \N \N 90438 A.114-11888 Amphidasya Amphidasya sp. Morawetz & Wallnofer 114-11888 \N \N \N \N \N 90439 \N no rank Penaea cneorum subsp. cf. ruscifolia Schoenenberger 368 \N \N \N \N \N 90440 R.vaginatus Ranunculus Ranunculus vaginatus \N \N \N \N \N 90441 A.stannensis Aciphylla Aciphylla stannensis \N \N \N \N \N 90442 L.sierrae-blancae Lupinus Lupinus sierrae-blancae \N \N \N \N \N 90443 C.arachnoidea Castilleja Castilleja arachnoidea \N \N \N \N \N 90444 A.hispidus Alloplectus Alloplectus hispidus \N \N \N \N \N 90445 A.imbricata Amphithalea Amphithalea imbricata \N \N \N \N \N 90446 \N subfamily Brodiaeoideae \N \N \N \N \N 90447 S.orientale Sisymbrium Sisymbrium orientale \N \N \N \N \N 90448 G.longifolia Gustavia Gustavia longifolia \N \N \N \N \N 90449 \N tribe Bambuseae \N \N \N \N \N 90450 T.daenensis Thymus Thymus daenensis \N \N \N \N \N 90451 C.tuberculosa Castellia Castellia tuberculosa \N \N \N \N \N 90452 C.lanceolata Clusia Clusia lanceolata \N \N \N \N \N 90453 D.capsularis Diascia Diascia capsularis \N \N \N \N \N 90454 B.procumbens Beta Beta procumbens \N \N \N \N \N 90455 M.albida Mirabilis Mirabilis albida \N \N \N \N \N 90456 L.truncatus Lithocarpus Lithocarpus truncatus \N \N \N \N \N 90457 P.somalensis Pulicaria Pulicaria somalensis \N \N \N \N \N 90458 M.505472 Melicytus Melicytus aff. dentatus CHR 505472 \N \N \N \N \N 90459 R.bucephalophorus Rumex Rumex bucephalophorus \N \N \N \N \N 90460 O.phryganae Ophrys Ophrys phryganae \N \N \N \N \N 90461 A.hookeri Arctostaphylos Arctostaphylos hookeri \N \N \N \N \N 90462 \N genus Nymphaea \N \N \N \N \N 90463 \N subtribe Hyoseridinae \N \N \N \N \N 90464 \N genus Aglaia \N \N \N \N \N 90465 C.oblongifolia Calandrinia Calandrinia oblongifolia \N \N \N \N \N 90466 H.riparia Hollandaea Hollandaea riparia \N \N \N \N \N 90467 M.muehlenpfordtii Mammillaria Mammillaria muehlenpfordtii \N \N \N \N \N 90468 T.crenulata Trichosanthes Trichosanthes crenulata \N \N \N \N \N 90469 L.micropetala Leandra Leandra micropetala \N \N \N \N \N 90470 C.wintersii Citrus Citrus wintersii Brown River finger-lime \N \N \N \N 90471 A.costaricensis Alfaroa Alfaroa costaricensis \N \N \N \N \N 90472 A.capitiformis Argyreia Argyreia capitiformis \N \N \N \N \N 90473 G.transversalis Gagea Gagea transversalis \N \N \N \N \N 90474 \N genus Mwasumbia \N \N \N \N \N 90475 C.polyphylla Cryptothladia Cryptothladia polyphylla \N \N \N \N \N 90476 H.maculata Hypochaeris Hypochaeris maculata \N \N \N \N \N 90477 A.hypogaea Arachis Arachis glabrata x Arachis hypogaea \N \N \N \N \N 90478 D.filamentosus Distichostemon Distichostemon filamentosus \N \N \N \N \N 90479 C.angolense Chortolirion Chortolirion angolense \N \N \N \N \N 90480 R.cristata Rostraria Rostraria cristata \N \N \N \N \N 90481 R.thomsonii Rhododendron Rhododendron thomsonii \N \N \N \N \N 90482 S.pleiostemoneus Schoenus Schoenus pleiostemoneus \N \N \N \N \N 90483 \N genus Baratranthus \N \N \N \N \N 90484 A.arisanensis Actinidia Actinidia arisanensis \N \N \N \N \N 90485 S.latifolia Scleria Scleria latifolia \N \N \N \N \N 90486 B.pilocarpa Bunchosia Bunchosia pilocarpa \N \N \N \N \N 90487 S.vaillantii Solanum Solanum vaillantii \N \N \N \N \N 90488 D.cooperi Disa Disa cooperi \N \N \N \N \N 90489 \N genus Hesperaloe \N \N \N \N \N 90490 A.polyantha Aechmea Aechmea polyantha \N \N \N \N \N 90491 M.amydros Monanthes Monanthes amydros \N \N \N \N \N 90492 \N genus Mimetes \N \N \N \N \N 90493 P.thamnophila Pedicularis Pedicularis thamnophila \N \N \N \N \N 90494 \N varietas Leucas volkensii var. parviflora \N \N \N \N \N 90495 \N genus Miltoniopsis \N \N \N \N \N 90496 C.jodopappa Chersodoma Chersodoma jodopappa \N \N \N \N \N 90497 H.celebica Hopea Hopea celebica \N \N \N \N \N 90498 C.turgescens Carex Carex turgescens \N \N \N \N \N 90499 C.nevadensis Camissonia Camissonia nevadensis \N \N \N \N \N 90500 M.spinulosus Mallotus Mallotus spinulosus \N \N \N \N \N 90501 A.pilosa Agrimonia Agrimonia pilosa long ya cao,xian he cao \N \N \N \N 90502 S.rexii Streptocarpus Streptocarpus rexii \N \N \N \N \N 90503 N.capitata Nyctaginia Nyctaginia capitata \N \N \N \N \N 90504 P.asarifolia Parnassia Parnassia asarifolia \N \N \N \N \N 90505 L.globulifera Lachnaea Lachnaea globulifera \N \N \N \N \N 90506 C.gilliesii Clinopodium Clinopodium gilliesii \N \N \N \N \N 90507 C.arborea Cliffortia Cliffortia arborea \N \N \N \N \N 90508 \N order Arecales \N \N \N \N \N 90509 S.wasiotense Silphium Silphium wasiotense \N \N \N \N \N 90510 G.diffusa Glandora Glandora diffusa \N \N \N \N \N 90511 C.cajucara Croton Croton cajucara sacaca \N \N \N \N 90512 C.multicaulis Crepis Crepis multicaulis \N \N \N \N \N 90513 C.capitata Coulterella Coulterella capitata \N \N \N \N \N 90514 M.vinacea Mormodes Mormodes vinacea \N \N \N \N \N 90515 D.frutescens Deinandra Deinandra frutescens \N \N \N \N \N 90516 O.crinitum Oncidium Oncidium crinitum \N \N \N \N \N 90517 \N genus Glenniea \N \N \N \N \N 90518 T.okelensis Tricalysia Tricalysia okelensis \N \N \N \N \N 90519 M.popovii Medicago Medicago popovii \N \N \N \N \N 90520 \N forma Chrysanthemum seticuspe f. boreale \N \N \N \N \N 90521 \N subspecies Poa saltuensis subsp. languida \N \N \N \N \N 90522 V.grahamii Viguiera Viguiera grahamii \N \N \N \N \N 90523 \N genus Parapolydora \N \N \N \N \N 90524 D.inerme Dasyphyllum Dasyphyllum inerme \N \N \N \N \N 90525 V.beccabunga Veronica Veronica beccabunga European brooklime \N \N \N \N 90620 C.borhidiana Coccothrinax Coccothrinax borhidiana \N \N \N \N \N 90526 B.MED-51886 Bellevalia Bellevalia aff. brevipedicellata MED-51886 \N \N \N \N \N 90527 L.ciliatus Leptosiphon Leptosiphon ciliatus \N \N \N \N \N 90528 E.blakelyi Eucalyptus Eucalyptus blakelyi forest red gum \N \N \N \N 90529 D.maculata Dactylorhiza Dactylorhiza maculata early marsh orchid,spotted-orchid \N \N \N \N 90530 B.hirtella Bulbostylis Bulbostylis hirtella \N \N \N \N \N 90531 U.glaucescens Urophyllum Urophyllum glaucescens \N \N \N \N \N 90532 N.grandiflorus Neriacanthus Neriacanthus grandiflorus \N \N \N \N \N 90533 K.pauciflora Krameria Krameria pauciflora \N \N \N \N \N 90534 B.SH-2010 Bulbostylis Bulbostylis sp. SH-2010 \N \N \N \N \N 90535 S.parviflora Speculantha Speculantha parviflora \N \N \N \N \N 90536 G.ornatus Gladiolus Gladiolus ornatus \N \N \N \N \N 90537 A.ocreatum Aconogonon Aconogonon ocreatum \N \N \N \N \N 90538 V.95-14236-2 Vellozia Vellozia sp. FRP 95-14236-2 \N \N \N \N \N 90539 S.patula Solidago Solidago patula rough-leaf goldenrod \N \N \N \N 90540 C.macrocephala Carlina Carlina macrocephala \N \N \N \N \N 90541 T.baillonii Torenia Torenia baillonii \N \N \N \N \N 90542 \N genus Lonchocarpus \N \N \N \N \N 90543 C.gaskelliana Cattleya Cattleya gaskelliana \N \N \N \N \N 90544 M.minima Monanthes Monanthes minima \N \N \N \N \N 90545 N.chui Neolitsea Neolitsea chui \N \N \N \N \N 90546 L.incisum Lithospermum Lithospermum incisum \N \N \N \N \N 90547 A.curviflorus Astragalus Astragalus curviflorus \N \N \N \N \N 90548 B.nagelii Bulbophyllum Bulbophyllum nagelii \N \N \N \N \N 90549 H.bunchosioides Heladena Heladena bunchosioides \N \N \N \N \N 90550 P.flabellifolia Potentilla Potentilla flabellifolia \N \N \N \N \N 90551 M.senilis Mammillaria Mammillaria senilis \N \N \N \N \N 90552 A.pinetorum Astragalus Astragalus pinetorum \N \N \N \N \N 90553 \N genus Triodoglossum \N \N \N \N \N 90554 G.pretoriensis Gladiolus Gladiolus pretoriensis \N \N \N \N \N 90555 P.umbellatum Piper Piper umbellatum \N \N \N \N \N 90556 S.huarochiriense Solanum Solanum huarochiriense \N \N \N \N \N 90557 E.leptorhizon Erigeron Erigeron leptorhizon \N \N \N \N \N 90558 A.genistifolia Acacia Acacia genistifolia \N \N \N \N \N 90559 A.rubriflorum Anthotium Anthotium rubriflorum \N \N \N \N \N 90560 M.supertexta Mammillaria Mammillaria supertexta \N \N \N \N \N 90561 M.triloba Malcolmia Malcolmia triloba \N \N \N \N \N 90562 \N subspecies Brownleea galpinii subsp. galpinii \N \N \N \N \N 90563 T.parviflora Tylophora Tylophora parviflora \N \N \N \N \N 90564 G.obcordatum Gompholobium Gompholobium obcordatum \N \N \N \N \N 90565 G.amurensis Glyceria Glyceria amurensis \N \N \N \N \N 90566 P.tuberculata Polygala Polygala tuberculata \N \N \N \N \N 90567 G.keule Gomortega Gomortega keule \N \N \N \N \N 90568 A.luederitzii Acacia Acacia luederitzii \N \N \N \N \N 90569 A.4846 Acrosynanthus Acrosynanthus sp. McDowell 4846 \N \N \N \N \N 90570 E.myrianthus Euonymus Euonymus myrianthus \N \N \N \N \N 90571 H.cristata Hetaeria Hetaeria cristata \N \N \N \N \N 90572 C.pseudo-olitorius Corchorus Corchorus pseudo-olitorius \N \N \N \N \N 90573 A.axillaris Amphithalea Amphithalea axillaris \N \N \N \N \N 90574 S.gemmascens Salsola Salsola gemmascens \N \N \N \N \N 90575 \N family Alseuosmiaceae \N \N \N \N \N 90576 A.obtusifolia Arenga Arenga obtusifolia \N \N \N \N \N 90577 E.recurvata Echeveria Echeveria recurvata \N \N \N \N \N 90578 O.multiflora Ochna Ochna multiflora \N \N \N \N \N 90579 L.chingii Lysionotus Lysionotus chingii \N \N \N \N \N 90580 M.arbuscula Maxillaria Maxillaria arbuscula \N \N \N \N \N 90581 M.riparia Metalasia Metalasia riparia \N \N \N \N \N 90582 \N varietas Calyptridium parryi var. hesseae \N \N \N \N \N 90583 O.luteus Odontites Odontites luteus \N \N \N \N \N 90584 \N genus Eragrostiella \N \N \N \N \N 90585 G.parodii Glandularia Glandularia parodii \N \N \N \N \N 90586 A.chamaemoly Allium Allium chamaemoly \N \N \N \N \N 90587 C.fadenii Canthium Canthium fadenii \N \N \N \N \N 90588 \N genus Dauphinea \N \N \N \N \N 90589 C.kraussii Combretum Combretum kraussii \N \N \N \N \N 90590 A.galbra Amorphophallus Amorphophallus galbra \N \N \N \N \N 90591 B.125 Begonia Begonia cf. porteri Forrest 125 \N \N \N \N \N 90592 C.isophylla Campanula Campanula isophylla \N \N \N \N \N 90593 M.hedwigiae Maxillaria Maxillaria hedwigiae \N \N \N \N \N 90594 C.madagascariensis Cathariostachys Cathariostachys madagascariensis \N \N \N \N \N 90595 H.intonsum Heliosperma Heliosperma intonsum \N \N \N \N \N 90596 S.monadenum Satyrium Satyrium monadenum \N \N \N \N \N 90597 S.alyssoides Stevenia Stevenia alyssoides \N \N \N \N \N 90598 I.corymbosus Ianthopappus Ianthopappus corymbosus \N \N \N \N \N 90599 A.stolonifera Amelanchier Amelanchier stolonifera \N \N \N \N \N 90600 \N genus Halophila \N \N \N \N \N 90601 H.radiata Hyoseris Hyoseris radiata \N \N \N \N \N 90602 M.prieurei Mussatia Mussatia prieurei \N \N \N \N \N 90603 D.suberosa Diphysa Diphysa suberosa \N \N \N \N \N 90604 \N subspecies Biarum davisii subsp. davisii \N \N \N \N \N 90605 A.stellulata Arabis Arabis stellulata \N \N \N \N \N 90606 M.sinuatum Melampodium Melampodium sinuatum \N \N \N \N \N 90607 C.laxum Chasmanthium Chasmanthium laxum \N \N \N \N \N 90608 L.subpinnatus Lotus Lotus subpinnatus \N \N \N \N \N 90609 S.verticillata Staavia Staavia verticillata \N \N \N \N \N 90610 A.borbonica Antirhea Antirhea borbonica \N \N \N \N \N 90611 C.werdermannii Coryphantha Coryphantha werdermannii \N \N \N \N \N 90612 S.MM3721 Schoenoxiphium Schoenoxiphium cf. ludwigii MM3721 \N \N \N \N \N 90613 S.neei Sarcocornia Sarcocornia neei \N \N \N \N \N 90614 R.crassipes Ranunculus Ranunculus crassipes \N \N \N \N \N 90615 B.simplicifolia Brassaiopsis Brassaiopsis simplicifolia \N \N \N \N \N 90616 C.rhothophilum Cirsium Cirsium rhothophilum surf thistle \N \N \N \N 90617 A.grandidentatum Acer Acer grandidentatum bigtooth maple \N \N \N \N 90618 M.tortuosum Mesembryanthemum Mesembryanthemum tortuosum \N \N \N \N \N 90619 L.giraldii Lonicera Lonicera giraldii \N \N \N \N \N 91587 \N genus Xerophyllum \N \N \N \N \N 90621 A.crassum Asarum Asarum crassum \N \N \N \N \N 90622 C.velutina Caesalpinia Caesalpinia velutina \N \N \N \N \N 90623 C.allenii Chamaedorea Chamaedorea allenii \N \N \N \N \N 90624 A.erubescens Arisaema Arisaema erubescens \N \N \N \N \N 90625 R.ledermanniana Rhopaloblaste Rhopaloblaste ledermanniana \N \N \N \N \N 90626 E.petiolaris Euphorbia Euphorbia petiolaris \N \N \N \N \N 90627 C.silvaticum Chlorophytum Chlorophytum silvaticum \N \N \N \N \N 90628 A.woodmaniorum Acacia Acacia woodmaniorum \N \N \N \N \N 90629 H.pringlei Harpalyce Harpalyce pringlei \N \N \N \N \N 90630 \N genus Paramomum \N \N \N \N \N 90631 A.batakiorum Aeschynanthus Aeschynanthus batakiorum \N \N \N \N \N 90632 A.atroviolaceum Allium Allium atroviolaceum \N \N \N \N \N 90633 D.divaricata Dodonaea Dodonaea divaricata \N \N \N \N \N 90634 O.MO125 Oxalis Oxalis cf. sonderiana MO125 \N \N \N \N \N 90635 A.narcissiflora Anemone Anemone narcissiflora \N \N \N \N \N 90636 M.calophylla Malaxis Malaxis calophylla \N \N \N \N \N 90637 C.sphaerocarpa Commiphora Commiphora sphaerocarpa \N \N \N \N \N 90638 C.antinaia Curcuma Curcuma antinaia \N \N \N \N \N 90639 \N genus Manostachya \N \N \N \N \N 90640 H.dinteri Haematoxylum Haematoxylum dinteri \N \N \N \N \N 90641 I.chrysophylla Iris Iris chrysophylla \N \N \N \N \N 90642 R.palustris Rosa Rosa palustris swamp rose \N \N \N \N 90643 T.alpina Thermopsis Thermopsis alpina \N \N \N \N \N 90644 \N genus Resnova \N \N \N \N \N 90645 \N genus Ehretia \N \N \N \N \N 90646 T.utriculata Tillandsia Tillandsia utriculata giant wild-pine \N \N \N \N 90647 O.serrulata Ochna Ochna serrulata \N \N \N \N \N 90648 U.zeylanica Uvaria Uvaria zeylanica \N \N \N \N \N 90649 D.cuneatus Dendropanax Dendropanax cuneatus \N \N \N \N \N 90650 T.leptostachyum Thesidium Thesidium leptostachyum \N \N \N \N \N 90651 H.middendorffii Hemerocallis Hemerocallis middendorffii \N \N \N \N \N 90652 C.glabriperulata Camellia Camellia glabriperulata \N \N \N \N \N 90653 B.lanata Babiana Babiana lanata \N \N \N \N \N 90654 L.spectabile Leptospermum Leptospermum spectabile \N \N \N \N \N 90655 C.clusii Cistus Cistus clusii \N \N \N \N \N 90656 \N subspecies Stipa pennata subsp. kirghisorum \N \N \N \N \N 90657 R.arizonensis Rubus Rubus arizonensis \N \N \N \N \N 90658 D.lichiangensis Draba Draba lichiangensis \N \N \N \N \N 90659 P.philacra Psychotria Psychotria philacra \N \N \N \N \N 90660 C.nanodendron Calamus Calamus nanodendron \N \N \N \N \N 90661 L.amabilis Leea Leea amabilis \N \N \N \N \N 90662 D.SH1999 Daphniphyllum Daphniphyllum sp. SH1999 \N \N \N \N \N 90663 B.fagpurpusii Bursera Bursera fagpurpusii \N \N \N \N \N 90664 H.asp.bol.2 Hieracium Hieracium aff. asplundii asp.bol.2 \N \N \N \N \N 90665 A.salmonis Astragalus Astragalus salmonis \N \N \N \N \N 90666 D.hancockii Dendrobium Dendrobium hancockii \N \N \N \N \N 90667 \N genus Acrachne \N \N \N \N \N 90668 B.spiralis Barbacenia Barbacenia spiralis \N \N \N \N \N 90669 P.racemosa Psychotria Psychotria racemosa \N \N \N \N \N 90670 H.banksii Hibbertia Hibbertia banksii \N \N \N \N \N 90671 H.versicolor Haplophyllum Haplophyllum versicolor \N \N \N \N \N 90672 V.reichei Viola Viola reichei \N \N \N \N \N 90673 S.balansae Schinopsis Schinopsis balansae \N \N \N \N \N 90674 H.sclerocarpum Heteroflorum Heteroflorum sclerocarpum \N \N \N \N \N 90675 D.villosus Didymocarpus Didymocarpus villosus \N \N \N \N \N 90676 \N subspecies Pritzelago alpina subsp. brevicaulis \N \N \N \N \N 90677 D.speciosa Daviesia Daviesia speciosa \N \N \N \N \N 90678 M.keisak Murdannia Murdannia keisak \N \N \N \N \N 90679 I.laevigatum Ixeridium Ixeridium laevigatum \N \N \N \N \N 90680 C.angolensis Commiphora Commiphora angolensis \N \N \N \N \N 90681 N.hormozganica Nepeta Nepeta hormozganica \N \N \N \N \N 90682 P.africanum Piptadeniastrum Piptadeniastrum africanum \N \N \N \N \N 90683 T.glabra Turritis Turritis glabra tower rockcress \N \N \N \N 90684 M.scandens Maurandya Maurandya scandens \N \N \N \N \N 90685 \N varietas Chisocheton divergens var. robustus \N \N \N \N \N 90686 \N genus Rhexia meadow beauties \N \N \N \N 90687 C.00-160 Cistanthe Cistanthe sp. Hershkovitz 00-160 \N \N \N \N \N 90688 G.stenophyllum Gastrolobium Gastrolobium stenophyllum \N \N \N \N \N 90689 B.ciliata Brassaiopsis Brassaiopsis ciliata \N \N \N \N \N 90690 P.mamei Philodendron Philodendron mamei \N \N \N \N \N 90691 \N subspecies Arceuthobium globosum subsp. globosum \N \N \N \N \N 90692 V.orientalis Veronica Veronica orientalis \N \N \N \N \N 90693 H.hoppeanum Hieracium Hieracium hoppeanum \N \N \N \N \N 90694 B.angustiflora Besleria Besleria angustiflora \N \N \N \N \N 90695 \N genus Sorindeia \N \N \N \N \N 90696 O.pulchra Ochna Ochna pulchra \N \N \N \N \N 90697 G.pallida Genlisea Genlisea pallida \N \N \N \N \N 90698 \N varietas Bouteloua uniflora var. coahuilensis \N \N \N \N \N 90699 L.crassifolia Leiothrix Leiothrix crassifolia \N \N \N \N \N 90700 C.fruticulosa Campanula Campanula fruticulosa \N \N \N \N \N 90701 S.potamogetifolia Sagittaria Sagittaria potamogetifolia \N \N \N \N \N 90702 C.tracyi Collomia Collomia tracyi \N \N \N \N \N 90703 G.procera Gentiana Gentiana procera \N \N \N \N \N 90704 B.glaucovalvula Boechera Boechera glaucovalvula \N \N \N \N \N 90705 L.palaestinus Lupinus Lupinus palaestinus \N \N \N \N \N 90706 M.torreyana Muhlenbergia Muhlenbergia torreyana \N \N \N \N \N 90707 B.itoana Burmannia Burmannia itoana \N \N \N \N \N 90708 \N genus Themistoclesia \N \N \N \N \N 90709 G.carpishense Glossoloma Glossoloma carpishense \N \N \N \N \N 90710 C.leersii Carex Carex leersii \N \N \N \N \N 90711 S.erianthum Solanum Solanum erianthum \N \N \N \N \N 90712 C.JP4 Clianthus Clianthus sp. JP4 \N \N \N \N \N 90713 \N subfamily Agapanthoideae African lily family \N \N \N \N 90714 S.micrantha Symplocos Symplocos micrantha \N \N \N \N \N 90715 B.montana Bellendena Bellendena montana \N \N \N \N \N 90716 \N genus Dielsiochloa \N \N \N \N \N 90717 A.annulata Aegialitis Aegialitis annulata \N \N \N \N \N 90718 \N varietas Elizabetha coccinea var. coccinea \N \N \N \N \N 90719 S.lancifolia Simira Simira lancifolia \N \N \N \N \N 90720 E.psoraleoides Eriosema Eriosema psoraleoides \N \N \N \N \N 90721 M.baeticum Muscari Muscari baeticum \N \N \N \N \N 90722 C.erinacea Chuquiraga Chuquiraga erinacea \N \N \N \N \N 90723 G.lutea Gavilea Gavilea lutea \N \N \N \N \N 90724 \N genus Drepanostachyum \N \N \N \N \N 90725 E.nesiotica Eugenia Eugenia nesiotica \N \N \N \N \N 90726 C.violaceum Critesion Critesion violaceum \N \N \N \N \N 90727 J.suffruticosa Jurinea Jurinea suffruticosa \N \N \N \N \N 90728 S.caesia Solidago Solidago caesia blue-stem goldenrod,woodland goldenrod \N \N \N \N 90729 P.reidii Primula Primula reidii \N \N \N \N \N 90730 H.cylindrica Hatiora Hatiora cylindrica \N \N \N \N \N 90731 C.boreali-yunnanica Camellia Camellia boreali-yunnanica \N \N \N \N \N 90732 H.xanthoneura Hydrangea Hydrangea xanthoneura \N \N \N \N \N 90733 S.limbaniense Solanum Solanum limbaniense \N \N \N \N \N 90734 G.aureus Gladiolus Gladiolus aureus \N \N \N \N \N 90735 S.macrocarpa Sagittaria Sagittaria macrocarpa \N \N \N \N \N 90736 C.fucata Calathea Calathea fucata \N \N \N \N \N 90737 R.kiangsiense Rhododendron Rhododendron kiangsiense \N \N \N \N \N 90738 U.atacamensis Urmenetea Urmenetea atacamensis \N \N \N \N \N 90739 S.sendtnerianum Solanum Solanum sendtnerianum \N \N \N \N \N 90740 R.magellanicum Ribes Ribes magellanicum \N \N \N \N \N 90741 C.striatus Cytisus Cytisus striatus \N \N \N \N \N 90742 J.mexicana Jacquemontia Jacquemontia mexicana \N \N \N \N \N 90743 D.XMW-2002-13 Dendrobium Dendrobium sp. XMW-2002-13 \N \N \N \N \N 90744 K.arborea Kopsia Kopsia arborea \N \N \N \N \N 90745 \N subspecies Lotononis rostrata subsp. namaquensis \N \N \N \N \N 90746 \N genus Argyrocytisus \N \N \N \N \N 90747 R.skottsbergii Rumex Rumex skottsbergii \N \N \N \N \N 90748 P.porphyroclados Poa Poa porphyroclados \N \N \N \N \N 90749 T.KS-2002 Thysselinum Thysselinum sp. KS-2002 \N \N \N \N \N 90750 \N subspecies Allocasuarina diminuta subsp. annectens \N \N \N \N \N 90751 C.999 Craterispermum Craterispermum sp. 1 Eriksson et al. 999 \N \N \N \N \N 90752 A.angustata Alchemilla Alchemilla angustata \N \N \N \N \N 90753 C.micranthum Cinnamomum Cinnamomum micranthum \N \N \N \N \N 90754 P.brevissimus Psilocarphus Psilocarphus brevissimus \N \N \N \N \N 90755 H.laseguei Hinterhubera Hinterhubera laseguei \N \N \N \N \N 90756 M.umbellata Moraea Moraea umbellata \N \N \N \N \N 90757 \N varietas Hypericum ascyron var. longistylum \N \N \N \N \N 90758 A.zizanioides Acroceras Acroceras zizanioides arrocillo \N \N \N \N 90759 P.mentosa Pleurothallis Pleurothallis mentosa \N \N \N \N \N 90760 F.multiflora Faramea Faramea multiflora \N \N \N \N \N 90761 B.roxburghiana Bauhinia Bauhinia roxburghiana \N \N \N \N \N 90762 S.masamuneana Sasaella Sasaella masamuneana \N \N \N \N \N 90763 R.prostrata Rulingia Rulingia prostrata \N \N \N \N \N 90764 C.guianensis Casearia Casearia guianensis \N \N \N \N \N 90765 A.nana Allocasuarina Allocasuarina nana \N \N \N \N \N 90766 D.94044 Dioscorea Dioscorea sp. Qiu 94044 \N \N \N \N \N 90767 N.epacridoides Nemcia Nemcia epacridoides \N \N \N \N \N 90768 C.irazuense Cestrum Cestrum irazuense \N \N \N \N \N 90769 G.17360 Guatteria Guatteria cf. candolleana Harley et al. 17360 \N \N \N \N \N 90770 O.perennis Oenothera Oenothera perennis \N \N \N \N \N 90771 M.arenarium Macroptilium Macroptilium arenarium \N \N \N \N \N 90772 I.platychlaena Impatiens Impatiens platychlaena \N \N \N \N \N 90773 C.dentatus Ceanothus Ceanothus dentatus \N \N \N \N \N 90774 \N genus Microcodon \N \N \N \N \N 90775 \N no rank Saccharum hybrid cultivar Pindar \N \N \N \N \N 90776 E.leucochilum Epidendrum Epidendrum leucochilum \N \N \N \N \N 90777 P.elongatum Pelargonium Pelargonium elongatum \N \N \N \N \N 90778 L.medius Leptorhynchos Leptorhynchos medius \N \N \N \N \N 90779 \N tribe Buddlejeae \N \N \N \N \N 90780 H.hololeion Hieracium Hieracium hololeion \N \N \N \N \N 90781 \N subspecies Carlina vulgaris subsp. spinosa \N \N \N \N \N 90782 T.corniculata Trigonella Trigonella corniculata \N \N \N \N \N 90783 M.graeca Micromeria Micromeria graeca \N \N \N \N \N 90784 O.aquaticum Orontium Orontium aquaticum golden-club \N \N \N \N 90785 E.ingeana Erica Erica ingeana \N \N \N \N \N 90786 S.imberbis Squamellaria Squamellaria imberbis \N \N \N \N \N 90787 C.byzantinum Chaerophyllum Chaerophyllum byzantinum \N \N \N \N \N 90788 M.cruenta Mimosa Mimosa cruenta \N \N \N \N \N 90789 E.drobovii Elymus Elymus drobovii \N \N \N \N \N 90790 \N genus Chambeyronia \N \N \N \N \N 90791 D.azorica Daboecia Daboecia azorica \N \N \N \N \N 90792 E.94.10 Epidendrum Epidendrum sp. CWD 94.10 \N \N \N \N \N 90793 A.pingbianensis Amorphophallus Amorphophallus pingbianensis \N \N \N \N \N 90794 P.nashiana Phacelia Phacelia nashiana \N \N \N \N \N 90795 P.nummularia Pratia Pratia nummularia \N \N \N \N \N 90796 B.robusta Bobartia Bobartia robusta \N \N \N \N \N 90797 S.SR-2010 Schotia Schotia aff. latifolia SR-2010 \N \N \N \N \N 90798 G.serrata Gerbera Gerbera serrata \N \N \N \N \N 90799 M.connatus Mallotus Mallotus connatus \N \N \N \N \N 90800 \N genus Pelexia \N \N \N \N \N 90801 M.goodrichii Mentzelia Mentzelia goodrichii \N \N \N \N \N 90802 N.kamerunensis Neoschumannia Neoschumannia kamerunensis \N \N \N \N \N 90803 M.sample environmental samples Taxonomy:1096675 Maieta environmental sample \N \N \N \N \N 98294 \N genus Ostryopsis \N \N \N \N \N 90804 L.darcyana Leptoglossis Leptoglossis darcyana \N \N \N \N \N 90805 U.comata Urochloa Urochloa comata \N \N \N \N \N 90806 D.serratifolius Dianthus Dianthus serratifolius \N \N \N \N \N 90807 R.buchananii Rytidosperma Rytidosperma buchananii \N \N \N \N \N 90808 \N genus Bonplandia \N \N \N \N \N 90809 P.yucatanum Platymiscium Platymiscium yucatanum \N \N \N \N \N 90810 A.laxiflora Anacamptis Anacamptis laxiflora \N \N \N \N \N 90811 \N tribe Thermopsideae \N \N \N \N \N 90812 F.triphylla Fuchsia Fuchsia triphylla \N \N \N \N \N 91588 \N genus Akebia \N \N \N \N \N 90813 P.songpanense Peucedanum Peucedanum songpanense \N \N \N \N \N 90814 C.parvifolia Calcicola Calcicola parvifolia \N \N \N \N \N 90815 \N genus Haplopappus \N \N \N \N \N 90816 N.henryi Notoseris Notoseris henryi \N \N \N \N \N 90817 \N genus Paracladopus \N \N \N \N \N 90818 P.armiana Portulacaria Portulacaria armiana \N \N \N \N \N 90819 L.columnaris Lobelia Lobelia columnaris \N \N \N \N \N 90820 A.moandense Angraecum Angraecum moandense \N \N \N \N \N 90821 \N subspecies Olsynium junceum subsp. colchaguense \N \N \N \N \N 90822 L.chinensis Lasianthus Lasianthus chinensis \N \N \N \N \N 90823 S.janetiae Stelis Stelis janetiae \N \N \N \N \N 90824 \N varietas Cristaria dissecta var. glandulosa \N \N \N \N \N 90825 T.angustifolium Trymalium Trymalium angustifolium \N \N \N \N \N 90826 A.patula Arctostaphylos Arctostaphylos patula \N \N \N \N \N 90827 C.kunstleri Chondrostylis Chondrostylis kunstleri \N \N \N \N \N 90828 T.leucanthum Trifolium Trifolium leucanthum \N \N \N \N \N 90829 W.krebsii Wahlenbergia Wahlenbergia krebsii \N \N \N \N \N 90830 D.diversifolia Dampiera Dampiera diversifolia \N \N \N \N \N 90831 B.macrostachya Beclardia Beclardia macrostachya \N \N \N \N \N 90832 \N family Malvaceae mallow family \N \N \N \N 90833 C.arenaria Carex Carex arenaria \N \N \N \N \N 90834 M.chasei Mascagnia Mascagnia chasei \N \N \N \N \N 90835 \N genus Symonanthus \N \N \N \N \N 90836 K.816 Kearnemalvastrum Kearnemalvastrum sp. Ventura A. 816 \N \N \N \N \N 90837 B.FS949 Bulbophyllum Bulbophyllum aff. baronii FS949 \N \N \N \N \N 90838 U.lasiocaulis Utricularia Utricularia lasiocaulis \N \N \N \N \N 90839 A.borneensis Anaxagorea Anaxagorea borneensis \N \N \N \N \N 90840 H.dulcis Hovenia Hovenia dulcis Chinese raisintree,kemponashi \N \N \N \N 90841 C.congdonii Carex Carex congdonii \N \N \N \N \N 90842 G.megapolitana Gagea Gagea megapolitana \N \N \N \N \N 90843 G.officinalis Galega Galega officinalis goat's rue \N \N \N \N 90844 R.alexandrae Rheum Rheum alexandrae \N \N \N \N \N 90845 \N genus Nothostele \N \N \N \N \N 90846 P.ovatum Podostemum Podostemum ovatum \N \N \N \N \N 90847 L.aureonitens Lupinus Lupinus aureonitens \N \N \N \N \N 90848 M.ovalis Mitella Mitella ovalis \N \N \N \N \N 90849 \N subspecies Erica plukenetii subsp. breviflora \N \N \N \N \N 90850 \N genus Horkelia \N \N \N \N \N 90851 D.macowanii Disperis Disperis macowanii \N \N \N \N \N 90852 G.sphaerocarpum Gloeospermum Gloeospermum sphaerocarpum \N \N \N \N \N 90853 C.pachygyna Carex Carex pachygyna \N \N \N \N \N 90854 \N genus Aegopogon \N \N \N \N \N 90855 \N subspecies Crassula thunbergiana subsp. thunbergiana \N \N \N \N \N 90856 D.catamarcensis Digitaria Digitaria catamarcensis \N \N \N \N \N 90857 A.complicatus Adenocarpus Adenocarpus complicatus \N \N \N \N \N 90858 M.philippensis Mallotus Mallotus philippensis kamala-tree \N \N \N \N 90859 G.inflata Glycyrrhiza Glycyrrhiza inflata \N \N \N \N \N 90860 O.turcicum Onopordum Onopordum turcicum \N \N \N \N \N 90861 M.gigantea Munnozia Munnozia gigantea \N \N \N \N \N 90862 C.linosyris Crinitaria Crinitaria linosyris \N \N \N \N \N 90863 P.racemosum Piptatherum Piptatherum racemosum \N \N \N \N \N 90864 A.polaris Astragalus Astragalus polaris \N \N \N \N \N 90865 P.mendoncaei Passiflora Passiflora mendoncaei \N \N \N \N \N 90866 T.guayacan Tabebuia Tabebuia guayacan \N \N \N \N \N 90867 A.croatica Arabidopsis Arabidopsis croatica \N \N \N \N \N 90868 T.melinonii Tachigali Tachigali melinonii \N \N \N \N \N 90869 M.niedzwetzkyana Malus Malus niedzwetzkyana \N \N \N \N \N 90870 \N tribe Echiteae \N \N \N \N \N 90871 \N genus Plagiolirion \N \N \N \N \N 90872 P.coronopifolium Pelargonium Pelargonium coronopifolium \N \N \N \N \N 90873 O.filicaulis Ononis Ononis filicaulis \N \N \N \N \N 90874 \N tribe Virectarieae \N \N \N \N \N 90875 S.IG-2010 unclassified Spermacoceae Spermacoceae sp. IG-2010 \N \N \N \N \N 90876 C.heleonastes Carex Carex heleonastes \N \N \N \N \N 90877 A.cymosum Amphiblemma Amphiblemma cymosum \N \N \N \N \N 90878 C.colchica Chymsydia Chymsydia colchica \N \N \N \N \N 90879 P.hookeri Plethiandra Plethiandra hookeri \N \N \N \N \N 90880 P.giraldii Pteroxygonum Pteroxygonum giraldii \N \N \N \N \N 90881 \N varietas Leycesteria formosa var. stenosepala \N \N \N \N \N 90882 S.texana Salvia Salvia texana \N \N \N \N \N 90883 D.pallida Deinandra Deinandra pallida \N \N \N \N \N 90884 L.minor Liriope Liriope minor \N \N \N \N \N 90885 C.lutea Cuphea Cuphea lutea \N \N \N \N \N 90886 B.arachnoidea Berzelia Berzelia arachnoidea \N \N \N \N \N 90887 B.cirsiifolia Berkheya Berkheya cirsiifolia \N \N \N \N \N 90888 P.cuneata Phoebe Phoebe cuneata \N \N \N \N \N 90889 \N genus Stapelia \N \N \N \N \N 90890 J.arborescens Jasminum Jasminum arborescens \N \N \N \N \N 90891 N.stenophylla Nolana Nolana stenophylla \N \N \N \N \N 90892 L.oxycarpum Lycium Lycium oxycarpum \N \N \N \N \N 90893 Q.multinervis Quercus Quercus multinervis \N \N \N \N \N 90894 K.caricoides Khaosokia Khaosokia caricoides \N \N \N \N \N 90895 \N subspecies Pinguicula grandiflora subsp. rosea \N \N \N \N \N 90896 L.sericeum Leucadendron Leucadendron sericeum \N \N \N \N \N 90897 C.colombiana Cuatresia Cuatresia colombiana \N \N \N \N \N 90898 H.WB1096 Hydriastele Hydriastele sp. A WB1096 \N \N \N \N \N 90899 Q.crenata Quercus Quercus crenata \N \N \N \N \N 90900 C.granatensis Centaurea Centaurea granatensis \N \N \N \N \N 90901 \N subspecies Coryphantha robustispina subsp. robustispina \N \N \N \N \N 90902 F.baffinensis Festuca Festuca baffinensis \N \N \N \N \N 90903 S.nepetifolia Stevia Stevia nepetifolia \N \N \N \N \N 90904 \N subspecies Fragaria vesca subsp. americana woodland strawberry \N \N \N \N 90905 \N subspecies Athroisma gracile subsp. psyllioides \N \N \N \N \N 90906 G.fuscoviolaceus Gonolobus Gonolobus fuscoviolaceus \N \N \N \N \N 90907 C.lawii Camellia Camellia lawii \N \N \N \N \N 90908 \N subspecies Echium stenosiphon subsp. lindbergii \N \N \N \N \N 90909 I.svetlanae Iris Iris svetlanae \N \N \N \N \N 90910 I.subcordata Ilex Ilex subcordata \N \N \N \N \N 90911 T.diphylla Thibaudia Thibaudia diphylla \N \N \N \N \N 90912 L.azorica Laurus Laurus azorica \N \N \N \N \N 90913 \N varietas Lilium concolor var. strictum \N \N \N \N \N 90914 S.americana Saussurea Saussurea americana \N \N \N \N \N 90915 A.artemisiifolius Adenocarpus Adenocarpus artemisiifolius \N \N \N \N \N 90916 M.gahniiformis Morelotia Morelotia gahniiformis \N \N \N \N \N 90917 L.nudicaule Lomatium Lomatium nudicaule barestem biscuitroot \N \N \N \N 90918 P.coriacea Paeonia Paeonia coriacea \N \N \N \N \N 90919 M.5084 Maxillaria Maxillaria cf. horichii Atwood & Whitten 5084 \N \N \N \N \N 90920 T.boliviensis Telipogon Telipogon boliviensis \N \N \N \N \N 90921 S.zacatecana Stevia Stevia zacatecana \N \N \N \N \N 90922 O.fragrans Osmanthus Osmanthus fragrans sweet osmanthus \N \N \N \N 90923 E.canariensis Euphorbia Euphorbia canariensis \N \N \N \N \N 90924 D.iricolor Dracula Dracula iricolor \N \N \N \N \N 90925 A.micrantha Aidia Aidia micrantha \N \N \N \N \N 90926 P.frutescens Pennellianthus Pennellianthus frutescens \N \N \N \N \N 90927 T.3976 Tocoyena Tocoyena sp. Jansen-Jacobs et al. 3976 \N \N \N \N \N 90928 \N genus Camphorosma \N \N \N \N \N 90929 E.auriculata Eurystyles Eurystyles auriculata \N \N \N \N \N 90930 E.mariae Euchile Euchile mariae \N \N \N \N \N 90931 \N genus Teucrium germanders \N \N \N \N 90932 P.molle Pternopetalum Pternopetalum molle \N \N \N \N \N 90933 S.macrophylla Shorea Shorea macrophylla \N \N \N \N \N 90934 D.laureola Daphne Daphne laureola spurge-laurel \N \N \N \N 90935 C.japonica Coriaria Coriaria japonica \N \N \N \N \N 90936 P.schlagintweitiana Primula Primula schlagintweitiana \N \N \N \N \N 90937 S.orientalis Sabicea Sabicea orientalis \N \N \N \N \N 90938 N.clemensiae Neonauclea Neonauclea clemensiae \N \N \N \N \N 90939 C.scopulorum Conioselinum Conioselinum scopulorum \N \N \N \N \N 90940 O.parviflorum Ornithoglossum Ornithoglossum parviflorum \N \N \N \N \N 90941 B.obtusatum Bulbophyllum Bulbophyllum obtusatum \N \N \N \N \N 90942 \N genus Macropodiella \N \N \N \N \N 90943 S.birrea Sclerocarya Sclerocarya birrea \N \N \N \N \N 90944 \N genus Magonia \N \N \N \N \N 90945 V.kellereri Veronica Veronica kellereri \N \N \N \N \N 90946 S.humbertii Seyrigia Seyrigia humbertii \N \N \N \N \N 90947 L.puberula Lobelia Lobelia puberula \N \N \N \N \N 90948 E.furcata Eurybia Eurybia furcata \N \N \N \N \N 90949 \N genus Nasturtium \N \N \N \N \N 90950 \N genus Aeginetia \N \N \N \N \N 90951 B.anthemidifolium Boeberastrum Boeberastrum anthemidifolium \N \N \N \N \N 90952 H.hypnoides Harrimanella Harrimanella hypnoides \N \N \N \N \N 90953 T.laxum Trichostema Trichostema laxum turpentine weed \N \N \N \N 90954 Z.sagittatus Zeugites Zeugites sagittatus \N \N \N \N \N 90955 \N genus Potaninia \N \N \N \N \N 90956 C.aurea Cavacoa Cavacoa aurea \N \N \N \N \N 90957 E.insularis Eucalyptus Eucalyptus insularis Twin Peak Island mallee \N \N \N \N 90958 O.polycladium Oncidium Oncidium polycladium \N \N \N \N \N 90959 H.rupicola Hilliella Hilliella rupicola \N \N \N \N \N 90960 T.microphylla Tetrapterys Tetrapterys microphylla \N \N \N \N \N 90961 D.grandiflora Dissotis Dissotis grandiflora \N \N \N \N \N 90962 S.nipponica Spiraea Spiraea nipponica \N \N \N \N \N 90963 N.'Rastroensis' Nicotiana Nicotiana sp. variant 'Rastroensis' \N \N \N \N \N 90964 P.hastatum Pterygodium Pterygodium hastatum \N \N \N \N \N 90965 I.chrysographes Iris Iris chrysographes \N \N \N \N \N 90966 \N genus Milicia \N \N \N \N \N 90967 Q.insignis Quercus Quercus insignis \N \N \N \N \N 90968 P.axillaris Piptocarpha Piptocarpha axillaris \N \N \N \N \N 90969 P.ellipticus Penstemon Penstemon ellipticus \N \N \N \N \N 90970 \N genus Comandra \N \N \N \N \N 90971 M.severtzovii Mogoltavia Mogoltavia severtzovii \N \N \N \N \N 90972 E.aureum Epipremnum Epipremnum aureum \N \N \N \N \N 90973 D.baillonianum Dicarpellum Dicarpellum baillonianum \N \N \N \N \N 90974 P.ferrugineus Petrocodon Petrocodon ferrugineus \N \N \N \N \N 90975 \N genus Calothamnus \N \N \N \N \N 90976 C.pulchellus Cyperus Cyperus pulchellus \N \N \N \N \N 90977 P.media Plantago Plantago media hoary plantain \N \N \N \N 90978 S.rambonis Sisyrinchium Sisyrinchium rambonis \N \N \N \N \N 90979 R.fortuneana Rosa Rosa x fortuneana \N \N \N \N \N 90980 S.fricii Stenocereus Stenocereus fricii \N \N \N \N \N 90981 \N genus Grangeria \N \N \N \N \N 90982 \N genus Heteranthemis \N \N \N \N \N 90983 \N tribe Potheae \N \N \N \N \N 90984 N.insignis Nouelia Nouelia insignis \N \N \N \N \N 90985 \N genus Nuxia \N \N \N \N \N 90986 C.gramineus Cuniculotinus Cuniculotinus gramineus Panamint rock goldenrod \N \N \N \N 90987 H.corniculata Halenia Halenia corniculata hua mao \N \N \N \N 90988 L.vivipara Leiothrix Leiothrix vivipara \N \N \N \N \N 90989 N.miersii Nicotiana Nicotiana miersii \N \N \N \N \N 90990 P.spuria Pseudoselago Pseudoselago spuria \N \N \N \N \N 90991 C.falcatum Cerastium Cerastium falcatum \N \N \N \N \N 90992 C.andina Camissonia Camissonia andina Blackfoot River evening-primrose \N \N \N \N 90993 H.beaudettei Halodule Halodule beaudettei \N \N \N \N \N 90994 E.exstipulata Euphorbia Euphorbia exstipulata \N \N \N \N \N 90995 F.pumila Frailea Frailea pumila \N \N \N \N \N 90996 L.membranacea Licania Licania membranacea \N \N \N \N \N 90997 L.italicum Lolium Lolium italicum \N \N \N \N \N 90998 S.gynoglossa Styppeiochloa Styppeiochloa gynoglossa \N \N \N \N \N 90999 A.marginata Antennaria Antennaria marginata \N \N \N \N \N 91000 \N subspecies Prunus ilicifolia subsp. lyonii Catalina cherry \N \N \N \N 91001 S.2727 Solanum Solanum aff. echinatum Bohs 2727 \N \N \N \N \N 91002 L.racemosa Luzula Luzula racemosa \N \N \N \N \N 91003 \N genus Parvisedum \N \N \N \N \N 91004 T.tenellus Tetrapogon Tetrapogon tenellus \N \N \N \N \N 91005 \N subspecies Primula tanneri subsp. tsariensis \N \N \N \N \N 91006 E.brevifolia Ehrharta Ehrharta brevifolia \N \N \N \N \N 91007 B.striata Babiana Babiana striata \N \N \N \N \N 91008 G.major Guilandina Guilandina major \N \N \N \N \N 91009 I.s.n. Ichnanthus Ichnanthus sp. Hodkinson s.n. \N \N \N \N \N 91010 P.canaliculatus Phyllobolus Phyllobolus canaliculatus \N \N \N \N \N 91011 \N genus Platylophus \N \N \N \N \N 91012 \N genus Scurrula \N \N \N \N \N 91013 P.confusum Piper Piper confusum \N \N \N \N \N 91014 \N genus Mexacanthus \N \N \N \N \N 91015 P.incisa Phyla Phyla incisa \N \N \N \N \N 91016 P.yezoensis Pedicularis Pedicularis yezoensis \N \N \N \N \N 91017 A.subcordatum Antirrhinum Antirrhinum subcordatum \N \N \N \N \N 91018 \N genus Xanthomyrtus \N \N \N \N \N 91019 P.sellowii Panicum Panicum sellowii \N \N \N \N \N 91020 \N genus Tegicornia \N \N \N \N \N 91021 \N subspecies Arenaria aggregata subsp. aggregata \N \N \N \N \N 91022 L.limosa Legenere Legenere limosa \N \N \N \N \N 91023 \N varietas Juncus covillei var. obtusatus \N \N \N \N \N 91024 T.3396 Tetrastigma Tetrastigma sp. Deng 3396 \N \N \N \N \N 91025 \N subspecies Triticum turgidum subsp. pyramidale \N \N \N \N \N 91026 \N genus Arcteranthis \N \N \N \N \N 91027 B.pseudodictamnus Ballota Ballota pseudodictamnus \N \N \N \N \N 91028 V.pannonica Vicia Vicia pannonica \N \N \N \N \N 91029 E.petiolaris Eucalyptus Eucalyptus petiolaris \N \N \N \N \N 91030 M.hypericifolia Melaleuca Melaleuca hypericifolia \N \N \N \N \N 91031 G.decaryana Gnidia Gnidia decaryana \N \N \N \N \N 91032 \N genus Lagenandra \N \N \N \N \N 91033 I.sessile Ipheion Ipheion sessile \N \N \N \N \N 91034 F.composita Fimbristylis Fimbristylis composita \N \N \N \N \N 91035 P.poissonii Primula Primula poissonii \N \N \N \N \N 91036 P.umbricola Piper Piper umbricola \N \N \N \N \N 91037 A.distincta Arenga Arenga distincta \N \N \N \N \N 91038 \N genus Schoenocrambe \N \N \N \N \N 91039 C.jwarancusa Cymbopogon Cymbopogon jwarancusa \N \N \N \N \N 91040 C.integrifolia Castilleja Castilleja integrifolia \N \N \N \N \N 91041 C.baccharoides Catamixis Catamixis baccharoides \N \N \N \N \N 91042 E.scytophylla Erica Erica scytophylla \N \N \N \N \N 91043 E.lineatum Exostema Exostema lineatum \N \N \N \N \N 91044 M.procumbens Mecardonia Mecardonia procumbens baby jump-up \N \N \N \N 91045 M.skinneri Mimosa Mimosa skinneri \N \N \N \N \N 91046 \N varietas Corethrogyne filaginifolia var. filaginifolia \N \N \N \N \N 91047 N.arentsii Nicotiana Nicotiana arentsii \N \N \N \N \N 91048 \N genus Aphandra \N \N \N \N \N 91049 A.hirsutus Artocarpus Artocarpus hirsutus aini,aini-maram \N \N \N \N 91050 P.parishii Paphiopedilum Paphiopedilum parishii \N \N \N \N \N 91051 E.papillosa Euphorbia Euphorbia papillosa \N \N \N \N \N 91052 \N varietas Euphrasia transmorrisonensis var. durietziana \N \N \N \N \N 91053 T.volubilis Tetracera Tetracera volubilis \N \N \N \N \N 91054 C.aurea Cattleya Cattleya aurea \N \N \N \N \N 91055 T.humblotii Tabernaemontana Tabernaemontana humblotii \N \N \N \N \N 91056 C.subulata Caralluma Caralluma subulata \N \N \N \N \N 91057 A.yosemitense Allium Allium yosemitense \N \N \N \N \N 91058 T.calcicola Typhonium Typhonium calcicola \N \N \N \N \N 91059 A.ciliata Aeschynomene Aeschynomene ciliata \N \N \N \N \N 91060 T.verticillaris Tommasinia Tommasinia verticillaris \N \N \N \N \N 91061 D.pentagynum Delphinium Delphinium pentagynum \N \N \N \N \N 91062 O.tenuis Orcuttia Orcuttia tenuis \N \N \N \N \N 91063 P.sauropodoides Phyllanthus Phyllanthus sauropodoides \N \N \N \N \N 91064 P.tenuiloba Passiflora Passiflora tenuiloba \N \N \N \N \N 91065 S.oedipus Swartzia Swartzia oedipus \N \N \N \N \N 91066 L.hirsutiflora Leptodermis Leptodermis hirsutiflora \N \N \N \N \N 91067 P.graeffei Phaius Phaius graeffei \N \N \N \N \N 91068 C.1103 Cupaniopsis Cupaniopsis sp. Munzinger 1103 \N \N \N \N \N 91069 T.amygdalifolia Tabernaemontana Tabernaemontana amygdalifolia \N \N \N \N \N 91070 E.orcuttiana Eragrostis Eragrostis orcuttiana \N \N \N \N \N 91071 S.pyramidalis Smallanthus Smallanthus pyramidalis \N \N \N \N \N 91072 \N varietas Acacia aneura var. intermedia \N \N \N \N \N 91073 A.mollis Alyssopsis Alyssopsis mollis \N \N \N \N \N 91074 \N subspecies Wahlenbergia congesta subsp. haastii \N \N \N \N \N 91075 \N genus Veratrum \N \N \N \N \N 91076 A.maximowiczianum Acer Acer maximowiczianum Nikko maple \N \N \N \N 91077 E.regia Eucomis Eucomis regia \N \N \N \N \N 91078 C.valentinus Convolvulus Convolvulus valentinus \N \N \N \N \N 91079 E.tournefortii Echinophora Echinophora tournefortii \N \N \N \N \N 91080 O.obcordatus Ozothamnus Ozothamnus obcordatus \N \N \N \N \N 91081 P.persicariifolia Polygala Polygala persicariifolia \N \N \N \N \N 91082 N.nipponicum Nipponanthemum Nipponanthemum nipponicum \N \N \N \N \N 91083 E.subpeltata Euphorbia Euphorbia subpeltata \N \N \N \N \N 91084 A.diversifolia Athertonia Athertonia diversifolia \N \N \N \N \N 91085 I.14360 Iteadaphne Iteadaphne sp. van der Werff 14360 \N \N \N \N \N 91086 \N varietas Apium prostratum var. filiforme \N \N \N \N \N 91087 D.virletii Descurainia Descurainia virletii \N \N \N \N \N 91088 L.biflora Leucas Leucas biflora \N \N \N \N \N 91089 A.uncinulata Ancistrachne Ancistrachne uncinulata \N \N \N \N \N 91090 \N genus Plectrelminthus \N \N \N \N \N 91091 O.nanhuensis Oreomyrrhis Oreomyrrhis nanhuensis \N \N \N \N \N 91092 S.thunbergii Spiraea Spiraea thunbergii \N \N \N \N \N 91093 G.saffordiana Guatteria Guatteria saffordiana \N \N \N \N \N 91094 H.vulgaris Hydrocotyle Hydrocotyle vulgaris \N \N \N \N \N 91095 O.glandulosa Ourisia Ourisia glandulosa \N \N \N \N \N 91096 P.moniliformis Pityrocarpa Pityrocarpa moniliformis \N \N \N \N \N 91097 A.latifolia Ainsliaea Ainsliaea latifolia \N \N \N \N \N 91098 S.ericoides Stylapterus Stylapterus ericoides \N \N \N \N \N 91099 \N no rank Torilidinae \N \N \N \N \N 91100 M.mossamedensis Manihot Manihot mossamedensis \N \N \N \N \N 91101 P.littledalei Primula Primula littledalei \N \N \N \N \N 91102 S.lanicuspis Sclerolaena Sclerolaena lanicuspis \N \N \N \N \N 91103 \N genus Parapentas \N \N \N \N \N 91104 P.schottii Pachycereus Pachycereus schottii \N \N \N \N \N 91105 C.lyonii Chelone Chelone lyonii \N \N \N \N \N 91106 A.pedicellata Agiortia Agiortia pedicellata \N \N \N \N \N 91107 C.foetidum Crinum Crinum foetidum \N \N \N \N \N 91108 A.nepalensis Acanthocalyx Acanthocalyx nepalensis \N \N \N \N \N 91109 \N subspecies Dioscorea nipponica subsp. rosthornii \N \N \N \N \N 91110 G.microcarpum Gastrolobium Gastrolobium microcarpum \N \N \N \N \N 91111 A.alopecurus Aspalathus Aspalathus alopecurus \N \N \N \N \N 91112 C.peruviana Codonanthopsis Codonanthopsis peruviana \N \N \N \N \N 91113 C.tenuis Cleistes Cleistes tenuis \N \N \N \N \N 91114 V.WO2005118628 Viola Viola sp. WO2005118628 \N \N \N \N \N 91115 L.coutinhoi Lamium Lamium coutinhoi \N \N \N \N \N 91116 P.revoluta Psychotria Psychotria revoluta \N \N \N \N \N 91117 P.congestus Phyllobolus Phyllobolus congestus \N \N \N \N \N 91118 P.bambusoides Phyllostachys Phyllostachys bambusoides timber bamboo \N \N \N \N 91119 G.leptostachya Glyceria Glyceria leptostachya \N \N \N \N \N 91120 H.telosmoides Hoya Hoya telosmoides \N \N \N \N \N 91121 G.conopsea Gymnadenia Gymnadenia conopsea \N \N \N \N \N 91122 P.ramentacea Petteria Petteria ramentacea \N \N \N \N \N 91123 P.'Manaia' Pimelea Pimelea sp. 'Manaia' \N \N \N \N \N 91124 L.camara Lantana Lantana camara \N \N \N \N \N 91125 D.lancifolius Dendropanax Dendropanax lancifolius \N \N \N \N \N 91126 M.flexuosa Muhlenbergia Muhlenbergia flexuosa \N \N \N \N \N 91127 L.diosmeum Leionema Leionema diosmeum \N \N \N \N \N 91128 C.wilsonii Corydalis Corydalis wilsonii \N \N \N \N \N 91129 S.grandyi Sedum Sedum grandyi \N \N \N \N \N 91130 \N genus Xiphidium \N \N \N \N \N 91131 D.4889 Dinizia Dinizia sp. Folli 4889 \N \N \N \N \N 91132 C.chinensis Callistephus Callistephus chinensis Chinese aster \N \N \N \N 91133 B.gracilis Berberis Berberis gracilis \N \N \N \N \N 91134 A.obovata Acanthomintha Acanthomintha obovata \N \N \N \N \N 91135 C.rigidus Cordylanthus Cordylanthus rigidus \N \N \N \N \N 91136 \N varietas Primula sinolisteri var. sinolisteri \N \N \N \N \N 91137 \N genus Nevada \N \N \N \N \N 91138 \N varietas Pimelea spiculigera var. thesiodes \N \N \N \N \N 91139 T.grandistigma Tupistra Tupistra grandistigma \N \N \N \N \N 91140 P.australis Portulaca Portulaca australis \N \N \N \N \N 91141 E.galaticus Echinops Echinops galaticus \N \N \N \N \N 91142 B.sprucei Bejaria Bejaria sprucei \N \N \N \N \N 91143 S.nikoensis Spuriopimpinella Spuriopimpinella nikoensis \N \N \N \N \N 91144 A.inflata Acrotome Acrotome inflata \N \N \N \N \N 91145 C.arizonica Calia Calia arizonica Arizona necklacepod \N \N \N \N 91146 F.longiauriculata Festuca Festuca longiauriculata \N \N \N \N \N 91147 C.boryana Carex Carex borbonica x Carex boryana \N \N \N \N \N 91148 S.corymbiflorum Solanum Solanum corymbiflorum \N \N \N \N \N 91149 P.excelsa Phoebe Phoebe excelsa \N \N \N \N \N 91150 \N genus Ottoa \N \N \N \N \N 91151 L.kurilense Leontopodium Leontopodium kurilense \N \N \N \N \N 91152 G.ova Gagea Gagea ova \N \N \N \N \N 91153 L.platypetalum Lepidium Lepidium platypetalum \N \N \N \N \N 91154 \N genus Trachelospermum \N \N \N \N \N 91155 R.JPM-2004 Rubus Rubus sp. JPM-2004 \N \N \N \N \N 91156 M.philippinensis Macropodanthus Macropodanthus philippinensis \N \N \N \N \N 91157 D.cappadocica Draba Draba cappadocica \N \N \N \N \N 91158 S.crassifolia Sarcocapnos Sarcocapnos crassifolia \N \N \N \N \N 91159 M.rosea Musa Musa rosea \N \N \N \N \N 91160 \N genus Plecostachys \N \N \N \N \N 91161 \N varietas Salvia lutescens var. stolonifera \N \N \N \N \N 91162 P.ampla Pentaschistis Pentameris ampla \N \N \N \N \N 91163 C.cucullata Caucaea Caucaea cucullata \N \N \N \N \N 91164 E.candicans Echium Echium candicans \N \N \N \N \N 91165 G.triacanthos Gleditsia Gleditsia triacanthos honey locust,honeyshuck,sweet locust \N \N \N \N 91166 A.einseleana Aquilegia Aquilegia einseleana \N \N \N \N \N 91167 O.parosica Ophrys Ophrys parosica \N \N \N \N \N 91168 G.bavarica Gentiana Gentiana bavarica \N \N \N \N \N 91169 G.elegans Gypsophila Gypsophila elegans annual baby's-breath \N \N \N \N 91170 M.xerophyticum Mexipedium Mexipedium xerophyticum \N \N \N \N \N 91171 I.cairica Ipomoea Ipomoea cairica \N \N \N \N \N 91172 S.58 Staberoha Staberoha sp. Balele 58 \N \N \N \N \N 91173 D.oliveri Dolichos Dolichos oliveri \N \N \N \N \N 91174 \N genus Monizia \N \N \N \N \N 91175 \N genus Mcvaughia \N \N \N \N \N 91176 \N subspecies Arenaria tetraquetra subsp. tetraquetra \N \N \N \N \N 91177 P.glandulosa Paraboea Paraboea glandulosa \N \N \N \N \N 91178 X.tysonianum Xysmalobium Xysmalobium tysonianum \N \N \N \N \N 91179 H.longicaulis Hormathophylla Hormathophylla longicaulis \N \N \N \N \N 91180 C.diphylla Chiloglottis Chiloglottis diphylla \N \N \N \N \N 91181 A.tuxtlensis Amphitecna Amphitecna tuxtlensis \N \N \N \N \N 91182 T.guianensis Tachia Tachia guianensis \N \N \N \N \N 91183 \N genus Thyrsanthera \N \N \N \N \N 91184 D.agathosmoides Disterigma Disterigma agathosmoides \N \N \N \N \N 91185 \N no rank Cyperoideae incertae sedis \N \N \N \N \N 91186 \N subspecies Perideridia bolanderi subsp. involucrata \N \N \N \N \N 91187 P.plenum Paspalum Paspalum plenum \N \N \N \N \N 91188 \N subspecies Anchusa leptophylla subsp. incana \N \N \N \N \N 91189 A.coerulea Aquilegia Aquilegia coerulea \N \N \N \N \N 91190 M.nutans Melampodium Melampodium nutans \N \N \N \N \N 91191 I.minutiflora Ionopsis Ionopsis minutiflora \N \N \N \N \N 91192 B.polyodonta Berberis Berberis polyodonta \N \N \N \N \N 91193 R.mcvaughii Ruellia Ruellia mcvaughii \N \N \N \N \N 91194 L.humilis Lithachne Lithachne humilis \N \N \N \N \N 91195 I.andringitrensis Impatiens Impatiens andringitrensis \N \N \N \N \N 91196 A.crispum Aglaonema Aglaonema crispum \N \N \N \N \N 91197 C.stylosa Cleome Cleome stylosa \N \N \N \N \N 91198 P.'guatemalensis' Persea Persea schiedeana x Persea americana 'guatemalensis' \N \N \N \N \N 91199 \N genus Paramignya \N \N \N \N \N 91200 S.macrostachya Schefflera Schefflera macrostachya \N \N \N \N \N 91201 S.stipitatostellatum Solanum Solanum stipitatostellatum \N \N \N \N \N 91202 P.pleiantha Proatriplex Proatriplex pleiantha \N \N \N \N \N 91203 \N subspecies Banksia serratuloides subsp. perissa \N \N \N \N \N 91204 S.tampicense Solanum Solanum tampicense espina de manglar,wetland nightshade \N \N \N \N 91205 V.filiforme Vaccinium Vaccinium filiforme \N \N \N \N \N 91206 M.spirocarpa Mimosa Mimosa spirocarpa \N \N \N \N \N 91207 M.greggii Mortonia Mortonia greggii \N \N \N \N \N 91208 T.cinerariifolium Tanacetum Tanacetum cinerariifolium pyrethrum \N \N \N \N 91209 C.00-212 Cistanthe Cistanthe aff. longiscapa Hershkovitz 00-212 \N \N \N \N \N 91210 \N genus Davidsonia \N \N \N \N \N 91211 G.pilosa Genista Genista pilosa \N \N \N \N \N 91212 A.deserti-syriaci Anthemis Anthemis deserti-syriaci \N \N \N \N \N 91213 \N genus Stephanomeria \N \N \N \N \N 91214 C.stricta Campanula Campanula stricta \N \N \N \N \N 91215 S.ramosiana Salacca Salacca ramosiana \N \N \N \N \N 91216 B.aethiopum Borassus Borassus aethiopum \N \N \N \N \N 91217 A.angustifolia Agave Agave angustifolia mescal de maguey \N \N \N \N 91218 T.elatior Tricoryne Tricoryne elatior \N \N \N \N \N 91219 C.elingamita Carex Carex elingamita \N \N \N \N \N 91220 P.24404 Psychotria Psychotria sp. Whistler 24404 \N \N \N \N \N 91221 P.verna Pelletiera Pelletiera verna \N \N \N \N \N 91222 S.deserta Salvia Salvia deserta \N \N \N \N \N 91223 P.pusillus Potamogeton Potamogeton foliosus x Potamogeton pusillus \N \N \N \N \N 91224 Z.areolata Zornia Zornia areolata \N \N \N \N \N 91225 C.miraguama Coccothrinax Coccothrinax miraguama miragua palm \N \N \N \N 91226 A.huntianus Arthrochilus Arthrochilus huntianus \N \N \N \N \N 91227 M.10476 Mimosa Mimosa aff. xanthocentra Queiroz 10476 \N \N \N \N \N 91228 \N genus Dichaetanthera \N \N \N \N \N 91229 C.bicolor Caryopteris Caryopteris bicolor \N \N \N \N \N 91230 A.anisatus Aletes Aletes anisatus \N \N \N \N \N 91231 C.O-488 Calochilus Calochilus sp. Chase O-488 \N \N \N \N \N 91232 P.ovatiloba Promenaea Promenaea ovatiloba \N \N \N \N \N 91233 P.seemannii Phyllanthus Phyllanthus seemannii \N \N \N \N \N 91234 P.maackiana Persicaria Persicaria maackiana \N \N \N \N \N 91235 H.dimorpha Hoya Hoya dimorpha \N \N \N \N \N 91236 H.proctorii Hohenbergia Hohenbergia proctorii \N \N \N \N \N 91237 I.amplexicaulis Impatiens Impatiens amplexicaulis \N \N \N \N \N 91238 S.2004-16 Salicornia Salicornia sp. Yaprak 2004-16 \N \N \N \N \N 91239 G.fraxinipratensis Grindelia Grindelia fraxinipratensis \N \N \N \N \N 91240 T.califanii Tillandsia Tillandsia califanii \N \N \N \N \N 91241 D.decumbens Dyschoriste Dyschoriste decumbens \N \N \N \N \N 91242 G.globosa Gomphrena Gomphrena globosa globe-amaranth \N \N \N \N 91243 \N genus Pennilabium \N \N \N \N \N 91244 C.elastica Castilla Castilla elastica \N \N \N \N \N 91245 C.longissima Camellia Camellia longissima \N \N \N \N \N 91246 N.uekii Neillia Neillia uekii \N \N \N \N \N 91247 D.nutans Dracocephalum Dracocephalum nutans \N \N \N \N \N 91248 F.bifera Fragaria Fragaria x bifera \N \N \N \N \N 91249 V.dilloniana Vanilla Vanilla dilloniana \N \N \N \N \N 91250 L.L8 Liparis Liparis sp. Tsutsumi L8 \N \N \N \N \N 91251 S.alterniflora Spartina Spartina alterniflora salt marsh cordgrass,smooth cordgrass \N \N \N \N 91252 S.acuminatissimum Syzygium Syzygium acuminatissimum \N \N \N \N \N 91253 S.29 Selago Selago sp. Balele 29 \N \N \N \N \N 91254 P.obsoleta Polhillia Polhillia obsoleta \N \N \N \N \N 91255 P.paradoxus Paracostus Paracostus paradoxus \N \N \N \N \N 91256 M.luederitzianum Monelytrum Monelytrum luederitzianum \N \N \N \N \N 91257 F.paniculata Flabellaria Flabellaria paniculata \N \N \N \N \N 91258 P.crenata Pedicularis Pedicularis crenata \N \N \N \N \N 91259 P.globosa Phaenosperma Phaenosperma globosa \N \N \N \N \N 91260 M.hyrcanum Myopordon Myopordon hyrcanum \N \N \N \N \N 91261 P.gymnantha Poa Poa gymnantha \N \N \N \N \N 91262 C.trinitatis Croton Croton trinitatis \N \N \N \N \N 91263 J.microchila Jonesiopsis Jonesiopsis microchila \N \N \N \N \N 91264 S.bernardina Silene Silene bernardina \N \N \N \N \N 91265 R.acicularis Rosa Rosa acicularis \N \N \N \N \N 91266 G.divaricatum Grandiphyllum Grandiphyllum divaricatum \N \N \N \N \N 91267 B.burfordiense Bulbophyllum Bulbophyllum burfordiense \N \N \N \N \N 91268 C.petrophiloides Conostylis Conostylis petrophiloides \N \N \N \N \N 91269 L.contaminata Lachenalia Lachenalia contaminata \N \N \N \N \N 91270 V.cultivar Vriesea Vriesea hybrid cultivar \N \N \N \N \N 91271 D.scorpiurus Desmodium Desmodium scorpiurus \N \N \N \N \N 91272 M.runssorica Momordica Momordica runssorica \N \N \N \N \N 91273 D.huegelii Diplopeltis Diplopeltis huegelii \N \N \N \N \N 91274 A.viridis Asclepias Asclepias viridis \N \N \N \N \N 91275 D.texana Diospyros Diospyros texana chapote \N \N \N \N 91276 N.tenuifolium Notobubon Notobubon tenuifolium \N \N \N \N \N 91277 P.DG-2010 Parrya Parrya sp. DG-2010 \N \N \N \N \N 91278 V.gillettii Vangueria Vangueria gillettii \N \N \N \N \N 91279 C.verrucosus Ceanothus Ceanothus verrucosus \N \N \N \N \N 91280 G.clusii Gentiana Gentiana clusii \N \N \N \N \N 91281 G.bracteata Gaultheria Gaultheria bracteata \N \N \N \N \N 91282 \N varietas Leucas deflexa var. deflexa \N \N \N \N \N 91283 \N varietas Carex conferta var. conferta \N \N \N \N \N 91284 \N genus Streptopus twisted stalks \N \N \N \N 91285 L.pilifolium Lycium Lycium pilifolium \N \N \N \N \N 91286 M.viridiflora Melaleuca Melaleuca viridiflora \N \N \N \N \N 91287 C.setacea Capeochloa Capeochloa setacea \N \N \N \N \N 91288 C.reflexa Calanthe Calanthe reflexa \N \N \N \N \N 91289 M.peloponnesiacum Molopospermum Molopospermum peloponnesiacum \N \N \N \N \N 91290 \N genus Mosla \N \N \N \N \N 91291 F.pseudeskia Festuca Festuca pseudeskia \N \N \N \N \N 91292 H.robustum Hybosema Hybosema robustum \N \N \N \N \N 91293 W.orientalis Wulfenia Wulfenia orientalis \N \N \N \N \N 91294 M.scabrida Morinda Morinda scabrida \N \N \N \N \N 91295 \N genus Siolmatra \N \N \N \N \N 91296 D.wendelboi Delphinium Delphinium wendelboi \N \N \N \N \N 91297 A.sublanata Androsace Androsace sublanata \N \N \N \N \N 91298 O.paradoxa Onosma Onosma paradoxa \N \N \N \N \N 91299 P.perquadrangularis Palicourea Palicourea perquadrangularis \N \N \N \N \N 91300 M.pyrifolia Miconia Miconia pyrifolia \N \N \N \N \N 91301 \N genus Paragenipa \N \N \N \N \N 91302 \N subspecies Fragaria chiloensis subsp. pacifica \N \N \N \N \N 91303 H.pruinosa Halosarcia Halosarcia pruinosa \N \N \N \N \N 91304 P.tomentosa Persicaria Persicaria tomentosa \N \N \N \N \N 91305 R.minima Rhynchosia Rhynchosia minima jumby-bean,least snoutbean \N \N \N \N 91306 H.ovigera Hernandia Hernandia ovigera \N \N \N \N \N 91307 \N genus Carolus \N \N \N \N \N 91308 C.glutinosus Chiliadenus Chiliadenus glutinosus \N \N \N \N \N 91309 S.scutellarioides Salvia Salvia scutellarioides \N \N \N \N \N 91310 S.SP817 Sisyrinchium Sisyrinchium aff. langloisii SP817 \N \N \N \N \N 91311 O.sativa Oryza Oryza glaberrima x Oryza sativa \N \N \N \N \N 91312 S.domingensis Symplocos Symplocos domingensis \N \N \N \N \N 91313 \N genus Paradisanthus \N \N \N \N \N 91314 C.stenocarpus Caulanthus Caulanthus stenocarpus \N \N \N \N \N 91315 B.fistulosa Barteria Barteria fistulosa \N \N \N \N \N 91316 M.annua Mercurialis Mercurialis annua annual mercury,herb mercury \N \N \N \N 91317 S.bidwillii Samadera Samadera bidwillii \N \N \N \N \N 91318 \N subspecies Felicia amoena subsp. latifolia \N \N \N \N \N 91319 H.verticillata Hydrilla Hydrilla verticillata hydrilla \N \N \N \N 91320 L.acaulis Licuala Licuala acaulis \N \N \N \N \N 91321 B.cordata Buddleja Buddleja cordata \N \N \N \N \N 91322 H.lasiolobus Halimolobos Halimolobos lasiolobus \N \N \N \N \N 91323 \N genus Cassipourea \N \N \N \N \N 91324 D.viminea Diplotaxis Diplotaxis viminea \N \N \N \N \N 91325 \N subspecies Arctostaphylos viscida subsp. pulchella \N \N \N \N \N 91326 \N genus Octomeles \N \N \N \N \N 91327 F.lutea Ficus Ficus lutea \N \N \N \N \N 91328 \N varietas Rosa x waitziana nothovar. macrantha \N \N \N \N \N 91329 R.gadutensis Rafflesia Rafflesia gadutensis \N \N \N \N \N 91330 L.pinceana Luculia Luculia pinceana \N \N \N \N \N 91331 \N genus Phebalium \N \N \N \N \N 91332 R.maresii Rhodanthemum Rhodanthemum maresii \N \N \N \N \N 91333 P.257 Pachycarpus Pachycarpus sp. Potgieter 257 \N \N \N \N \N 91334 H.brasiletto Haematoxylum Haematoxylum brasiletto \N \N \N \N \N 91335 C.3702 Clusia Clusia sp. JA 3702 \N \N \N \N \N 91336 \N genus Arthrophyllum \N \N \N \N \N 91337 A.fragrantissima Achillea Achillea fragrantissima \N \N \N \N \N 91338 D.strictum Dracophyllum Dracophyllum strictum \N \N \N \N \N 91339 W.glassii Wurmbea Wurmbea glassii \N \N \N \N \N 91340 S.minuta Spiloxene Spiloxene minuta \N \N \N \N \N 91341 S.chetchozensis Saussurea Saussurea chetchozensis \N \N \N \N \N 91342 U.lacustris Uncinia Uncinia lacustris \N \N \N \N \N 91343 A.ursinum Allium Allium ursinum ramson,wild garlic \N \N \N \N 91344 M.1615 Miconia Miconia aff. aspergillaris Penneys 1615 \N \N \N \N \N 91345 R.neomexicana Robinia Robinia neomexicana \N \N \N \N \N 91346 C.verna Callitriche Callitriche verna \N \N \N \N \N 91347 \N genus Brighamia \N \N \N \N \N 91348 D.salicifolia Duguetia Duguetia salicifolia \N \N \N \N \N 91349 C.alcahes Cylindropuntia Cylindropuntia alcahes \N \N \N \N \N 91350 \N no rank Annesorhiza clade \N \N \N \N \N 91351 M.ligustrinus Macropeplus Macropeplus ligustrinus \N \N \N \N \N 91352 R.complicata Reseda Reseda complicata \N \N \N \N \N 91353 V.hosakae Viola Viola hosakae \N \N \N \N \N 91354 M.crispatum Myriophyllum Myriophyllum crispatum \N \N \N \N \N 91355 A.pontica Aristolochia Aristolochia pontica \N \N \N \N \N 91356 O.pallidula Ophrys Ophrys pallidula \N \N \N \N \N 91357 G.1411 Garcinia Garcinia aff. afzelii Sweeney 1411 \N \N \N \N \N 91358 E.arachoideus Echinopepon Echinopepon arachoideus \N \N \N \N \N 91359 A.madagascariensis Anisotes Anisotes madagascariensis \N \N \N \N \N 91360 G.spiculosa Glyceria Glyceria spiculosa \N \N \N \N \N 91361 \N genus Triplaris \N \N \N \N \N 91362 D.namaensis Dianthus Dianthus namaensis \N \N \N \N \N 91363 C.aboriginum Carex Carex aboriginum \N \N \N \N \N 91364 \N tribe Pyramidoptereae \N \N \N \N \N 91365 S.incognita Stevia Stevia incognita \N \N \N \N \N 91366 P.sulphurea Protea Protea sulphurea \N \N \N \N \N 91367 D.fragrantissima Dichaea Dichaea fragrantissima \N \N \N \N \N 91368 G.heterochaeta Gazania Gazania heterochaeta \N \N \N \N \N 91369 C.scopulorum Carex Carex scopulorum \N \N \N \N \N 91370 \N tribe Gnaphalieae \N \N \N \N \N 91371 P.SH-2010 Plumbago Plumbago sp. SH-2010 \N \N \N \N \N 91372 C.hastatum Collospermum Collospermum hastatum \N \N \N \N \N 91373 P.armenaicum Podospermum Podospermum armenaicum \N \N \N \N \N 91374 S.leucophractum Stenanthemum Stenanthemum leucophractum \N \N \N \N \N 91375 M.achilleifolia Meeboldia Meeboldia achilleifolia \N \N \N \N \N 91376 \N varietas Lycium carolinianum var. carolinianum \N \N \N \N \N 91377 \N genus Pseudosedum \N \N \N \N \N 91378 S.lichuanensis Sagittaria Sagittaria lichuanensis \N \N \N \N \N 91379 G.cantleyana Garcinia Garcinia cantleyana \N \N \N \N \N 91380 \N genus Autonoe \N \N \N \N \N 91381 \N subspecies Disa erubescens subsp. carsonii \N \N \N \N \N 91382 I.basiflora Indigofera Indigofera basiflora \N \N \N \N \N 91383 \N genus Neolindleya \N \N \N \N \N 91384 M.tetrandrus Meiostemon Meiostemon tetrandrus \N \N \N \N \N 91385 O.delavayi Omphalogramma Omphalogramma delavayi \N \N \N \N \N 91386 \N genus Canna \N \N \N \N \N 91387 \N genus Hedyotis \N \N \N \N \N 91388 X.affine Xanthophyllum Xanthophyllum affine \N \N \N \N \N 91389 C.cernua Cuspidia Cuspidia cernua \N \N \N \N \N 91390 S.conrathii Stiburus Stiburus conrathii \N \N \N \N \N 91391 C.spinosa Clavija Clavija spinosa \N \N \N \N \N 91392 E.odorifera Erithalis Erithalis odorifera \N \N \N \N \N 91393 B.skottsbergii Benthamiella Benthamiella skottsbergii \N \N \N \N \N 91394 \N genus Phyllacanthus \N \N \N \N \N 91395 V.emarginatum Vaccinium Vaccinium emarginatum \N \N \N \N \N 91396 D.morrisonii Dendrobium Dendrobium morrisonii \N \N \N \N \N 91397 C.rigida Cayaponia Cayaponia rigida \N \N \N \N \N 91398 C.oshimensis Carex Carex oshimensis \N \N \N \N \N 91399 \N subspecies Cistus ladanifer subsp. africanus \N \N \N \N \N 91400 E.hierniana Ecpoma Ecpoma hierniana \N \N \N \N \N 91401 \N no rank Narcissus hybrid cultivar 2 \N \N \N \N \N 91402 \N genus Chrozophora \N \N \N \N \N 91403 P.umbilicata Peperomia Peperomia umbilicata \N \N \N \N \N 91404 \N varietas Mimosa dolens var. rigida \N \N \N \N \N 91405 T.parryi Trifolium Trifolium parryi \N \N \N \N \N 91406 \N genus Forchhammeria \N \N \N \N \N 91407 M.triphyllum Myriophyllum Myriophyllum triphyllum \N \N \N \N \N 91408 B.2006-3 Breynia Breynia cf. retusa Van Welzen 2006-3 \N \N \N \N \N 91409 T.mollis Terminalia Terminalia mollis \N \N \N \N \N 91410 F.botryocarpa Ficus Ficus botryocarpa \N \N \N \N \N 91411 \N genus Nidularium \N \N \N \N \N 91412 T.esculenta Talisia Talisia esculenta pitomba \N \N \N \N 91413 \N subspecies Weingartia neocumingii subsp. neocumingii \N \N \N \N \N 91414 A.kiusiuensis Amorphophallus Amorphophallus kiusiuensis \N \N \N \N \N 91415 R.repens Rhaponticum Rhaponticum repens Russian knapweed,blueweed,hardheads \N \N \N \N 91416 \N subspecies Carex inops subsp. inops \N \N \N \N \N 91417 C.macroglossa Copernicia Copernicia macroglossa \N \N \N \N \N 91418 \N genus Pachyrhizus \N \N \N \N \N 91419 S.thirkei Stachys Stachys thirkei \N \N \N \N \N 91420 H.salsuginosa Halerpestes Halerpestes salsuginosa \N \N \N \N \N 91421 A.laxa Aulonemia Aulonemia laxa \N \N \N \N \N 91422 R.ADW-2005 Rehmannia Rehmannia sp. ADW-2005 \N \N \N \N \N 91423 P.peruviana Piptadenia Piptadenia peruviana \N \N \N \N \N 91424 R.tanguticus Ranunculus Ranunculus tanguticus \N \N \N \N \N 91425 \N genus Austromyrtus \N \N \N \N \N 91426 A.decaryi Androya Androya decaryi \N \N \N \N \N 91427 \N genus Machilus \N \N \N \N \N 91428 R.lineolata Roldana Roldana lineolata \N \N \N \N \N 91429 M.leucocalyx Mallotus Mallotus leucocalyx \N \N \N \N \N 91430 \N subspecies Fascicularia bicolor subsp. canaliculata \N \N \N \N \N 91431 C.venosa Clusia Clusia venosa \N \N \N \N \N 91432 M.salomonense Metroxylon Metroxylon salomonense hebe-nut palm,ivory nut palm \N \N \N \N 91433 P.punctata Poiretia Poiretia punctata \N \N \N \N \N 91434 R.minutiflora Reldia Reldia minutiflora \N \N \N \N \N 91435 E.transhyrcanus Elymus Elymus transhyrcanus \N \N \N \N \N 91436 O.GMS-2004 Orobanche Orobanche cf. gracilis GMS-2004 \N \N \N \N \N 91437 M.sonorensis Mammillaria Mammillaria sonorensis \N \N \N \N \N 91438 C.inundatum Colchicum Colchicum inundatum \N \N \N \N \N 91439 T.humifusum Thesium Thesium humifusum \N \N \N \N \N 91440 \N genus Lycopsis \N \N \N \N \N 91441 C.07nia743 Coccinia Coccinia sp. 07nia743 \N \N \N \N \N 91442 C.turneri Caralluma Caralluma turneri \N \N \N \N \N 91443 H.verticillatus Hybanthus Hybanthus verticillatus \N \N \N \N \N 91444 C.baccifera Chironia Chironia baccifera \N \N \N \N \N 91445 P.huillensis Pimpinella Pimpinella huillensis \N \N \N \N \N 91446 R.brasiliensis Richardia Richardia brasiliensis \N \N \N \N \N 91447 B.simplex Bunium Bunium simplex \N \N \N \N \N 91448 C.atriplicifolia Cineraria Cineraria glandulosa x Cineraria atriplicifolia \N \N \N \N \N 91449 C.NJD-2007 Carex Carex sp. nov. NJD-2007 \N \N \N \N \N 91450 \N varietas Ourisia sessilifolia var. sessilifolia \N \N \N \N \N 91451 C.minimus Croton Croton minimus \N \N \N \N \N 91452 E.obtusata Erica Erica obtusata \N \N \N \N \N 91453 \N tribe Psoraleeae \N \N \N \N \N 91454 S.coccinea Scaevola Scaevola coccinea \N \N \N \N \N 91455 P.crocifolia Phitosia Phitosia crocifolia \N \N \N \N \N 91456 A.ebracteata Armeria Armeria ebracteata \N \N \N \N \N 91457 P.nigrescens Parquetina Parquetina nigrescens \N \N \N \N \N 91458 J.lojae Jaltomata Jaltomata lojae \N \N \N \N \N 91459 R.sphenocleoides Reseda Reseda sphenocleoides \N \N \N \N \N 91460 O.exserta Oxalis Oxalis exserta \N \N \N \N \N 91461 \N varietas Ziziphus obtusifolia var. obtusifolia \N \N \N \N \N 91462 C.cariocae Chevaliera Chevaliera cariocae \N \N \N \N \N 91463 P.globosus Pycnosorus Pycnosorus globosus \N \N \N \N \N 91464 M.2577 Maxillaria Maxillaria aff. vaginalis Whitten 2577 \N \N \N \N \N 91465 \N genus Chrysophyllum \N \N \N \N \N 91466 C.kirkii Carmichaelia Carmichaelia kirkii \N \N \N \N \N 91467 M.gummifera Margotia Margotia gummifera \N \N \N \N \N 91468 P.rubrum Perrierophytum Perrierophytum rubrum \N \N \N \N \N 91469 C.denticulata Ceropegia Ceropegia denticulata \N \N \N \N \N 91470 J.loretensis Jacqueshuberia Jacqueshuberia loretensis \N \N \N \N \N 91471 C.sessilifolia Cuphea Cuphea sessilifolia \N \N \N \N \N 91472 \N genus Dickinsia \N \N \N \N \N 91473 S.recta Stachys Stachys recta \N \N \N \N \N 91474 J.laurifolium Jasminum Jasminum laurifolium \N \N \N \N \N 91475 S.topkegolensis Saussurea Saussurea topkegolensis \N \N \N \N \N 91476 S.glabratum Solanum Solanum glabratum \N \N \N \N \N 91477 S.davidiana Stranvaesia Stranvaesia davidiana \N \N \N \N \N 91478 R.11-13-97' Rhopalocarpus Rhopalocarpus sp. 'M.F.F. 11-13-97' \N \N \N \N \N 91479 O.serratum Oncidium Oncidium serratum \N \N \N \N \N 91480 C.javanica Cassia Cassia javanica Javanese cassia,appleblossom shower,jointwood \N \N \N \N 91481 V.rupestris Vitis Vitis arizonica x Vitis rupestris \N \N \N \N \N 91482 H.lloydii Hypericum Hypericum lloydii \N \N \N \N \N 91483 A.lipskyanum Allium Allium lipskyanum \N \N \N \N \N 91484 C.pestalotii Centaurea Centaurea x pestalotii \N \N \N \N \N 91485 \N varietas Brassica juncea var. multiceps \N \N \N \N \N 91486 S.motleyana Schismatoglottis Schismatoglottis motleyana \N \N \N \N \N 91487 \N genus Robinia \N \N \N \N \N 91488 T.tembense Trifolium Trifolium tembense \N \N \N \N \N 91489 \N forma Paphiopedilum godefroyae f. leucochilum \N \N \N \N \N 91490 G.moranii Galium Galium moranii \N \N \N \N \N 91491 P.dwyeri Psychotria Psychotria dwyeri \N \N \N \N \N 91492 O.polyphylla Ononis Ononis polyphylla \N \N \N \N \N 91493 \N genus Tapiphyllum \N \N \N \N \N 91494 R.grandis Richeria Richeria grandis \N \N \N \N \N 91495 S.33.101 Salicornia Salicornia aff. perennans Freitag 33.101 \N \N \N \N \N 91496 \N genus Carpolepis \N \N \N \N \N 91497 E.obscurum Epilobium Epilobium obscurum \N \N \N \N \N 91498 C.candicans Curarea Curarea candicans \N \N \N \N \N 91499 D.alternifolia Daviesia Daviesia alternifolia \N \N \N \N \N 91500 P.cenisia Poa Poa cenisia \N \N \N \N \N 91501 I.alba Ipomoea Ipomoea alba \N \N \N \N \N 91502 S.corymbosum Sauroglossum Sauroglossum corymbosum \N \N \N \N \N 91503 T.SBH-2009 Triclisia Triclisia sp. SBH-2009 \N \N \N \N \N 91504 P.ericifolia Pultenaea Pultenaea ericifolia \N \N \N \N \N 91505 B.melanops Babiana Babiana melanops \N \N \N \N \N 91506 A.clarkei Agalmyla Agalmyla clarkei \N \N \N \N \N 91507 P.sericea Petrocosmea Petrocosmea sericea \N \N \N \N \N 91508 A.sadina Arabis Arabis sadina \N \N \N \N \N 91509 D.patagonica Duseniella Duseniella patagonica \N \N \N \N \N 91510 \N genus Fibigia \N \N \N \N \N 91511 S.s.n. Stipa Stipa sp. Hodkinson s.n. \N \N \N \N \N 91512 F.tinctoria Ficus Ficus tinctoria liang liao rong \N \N \N \N 91513 G.virgatus Gladiolus Gladiolus virgatus \N \N \N \N \N 91514 A.orientale Arum Arum orientale \N \N \N \N \N 91515 S.rugosa Salvia Salvia rugosa \N \N \N \N \N 91516 C.hypoleuca Coursetia Coursetia hypoleuca \N \N \N \N \N 91517 \N genus Diceratostele \N \N \N \N \N 91518 P.saligna Protea Protea saligna \N \N \N \N \N 91519 \N genus Trichoneura \N \N \N \N \N 91520 P.stapelioides Promenaea Promenaea stapelioides \N \N \N \N \N 91521 C.macroglossa Cota Cota macroglossa \N \N \N \N \N 91522 \N genus Crotonopsis \N \N \N \N \N 91523 Y.intermedia Yucca Yucca intermedia \N \N \N \N \N 91524 P.filifolium Phebalium Phebalium filifolium \N \N \N \N \N 91525 T.167 Thismia Thismia sp. Agatho-Elsener 167 \N \N \N \N \N 91526 D.seguine Dieffenbachia Dieffenbachia seguine dumb cane,mother-in-law plant \N \N \N \N 91527 S.pendula Silene Silene pendula nodding catchfly \N \N \N \N 91528 E.marschallianum Erysimum Erysimum marschallianum \N \N \N \N \N 91529 A.bidouwensis Aspalathus Aspalathus bidouwensis \N \N \N \N \N 91530 M.officinalis Melilotus Melilotus officinalis \N \N \N \N \N 91531 P.verruculosa Pultenaea Pultenaea verruculosa \N \N \N \N \N 91532 B.FS960 Bulbophyllum Bulbophyllum sp. FS960 \N \N \N \N \N 91533 \N subspecies Pentameris pallida form B \N \N \N \N \N 91534 E.sphaericus Elaeocarpus Elaeocarpus sphaericus \N \N \N \N \N 91535 P.lasiospermus Pterocephalus Pterocephalus lasiospermus \N \N \N \N \N 91536 E.floribunda Elachyptera Elachyptera floribunda \N \N \N \N \N 91537 E.gollmeriana Euphorbia Euphorbia gollmeriana \N \N \N \N \N 91538 \N genus Pharochilum \N \N \N \N \N 91539 \N subspecies Centaurea maculosa subsp. albida \N \N \N \N \N 91540 \N genus Lagoecia \N \N \N \N \N 91541 A.gibbsianus Adenocarpus Adenocarpus gibbsianus \N \N \N \N \N 91542 M.viridis Musa Musa viridis \N \N \N \N \N 91543 C.anthonyi Coffea Coffea anthonyi \N \N \N \N \N 91544 L.lingulatus Lasiocephalus Lasiocephalus lingulatus \N \N \N \N \N 91545 I.3936 Ixora Ixora sp. Florence 3936 \N \N \N \N \N 91546 \N genus Sukunia \N \N \N \N \N 91547 \N varietas Centaurea rouyi var. suffrutescens \N \N \N \N \N 91548 B.alexandrae Bulbophyllum Bulbophyllum alexandrae \N \N \N \N \N 91549 P.cultrifolia Plectrophora Plectrophora cultrifolia \N \N \N \N \N 91550 C.macrosperma Citrus Citrus macrosperma \N \N \N \N \N 91551 H.exilis Helianthus Helianthus exilis \N \N \N \N \N 91552 \N genus Beschorneria \N \N \N \N \N 91553 \N subspecies Papaver alpinum subsp. lapeyrousianum \N \N \N \N \N 91554 C.cockerellii Cuscuta Cuscuta cockerellii \N \N \N \N \N 91555 \N genus Eirmocephala \N \N \N \N \N 91556 C.subscaposa Conyza Conyza subscaposa \N \N \N \N \N 91557 E.staechadifolium Eriophyllum Eriophyllum staechadifolium seaside wooly sunflower \N \N \N \N 91558 E.MD-2010 Elleanthus Elleanthus cf. graminifolius MD-2010 \N \N \N \N \N 91559 N.africana Nicotiana Nicotiana africana \N \N \N \N \N 91560 P.bellina Phalaenopsis Phalaenopsis bellina \N \N \N \N \N 91561 \N varietas Potentilla gracilis var. glabrata \N \N \N \N \N 91562 P.densa Paradrymonia Paradrymonia densa \N \N \N \N \N 91563 P.birmanica Paraboea Paraboea birmanica \N \N \N \N \N 91564 H.lingulata Heliconia Heliconia lingulata \N \N \N \N \N 91565 C.verrucolineata Coryanthes Coryanthes verrucolineata \N \N \N \N \N 91566 A.lyrata Arabidopsis Arabidopsis lyrata lyrate rockcress \N \N \N \N 91567 \N genus Kanaloa \N \N \N \N \N 91568 A.grandibracteata Albizia Albizia grandibracteata \N \N \N \N \N 91569 Z.guidonia Zuelania Zuelania guidonia \N \N \N \N \N 91570 V.macrocarpa Vatairea Vatairea macrocarpa \N \N \N \N \N 91571 E.segoviensis Euphorbia Euphorbia segoviensis \N \N \N \N \N 91572 \N subspecies Hieracium fuscescens subsp. fuscescens \N \N \N \N \N 91573 Z.yakumontanum Zanthoxylum Zanthoxylum yakumontanum \N \N \N \N \N 91574 D.artemisioides Descurainia Descurainia artemisioides \N \N \N \N \N 91575 V.retusa Vandasina Vandasina retusa \N \N \N \N \N 91576 \N genus Rhabdosciadium \N \N \N \N \N 91577 A.longipedunculata Arracacia Arracacia longipedunculata \N \N \N \N \N 98488 \N genus Scytopetalum \N \N \N \N \N 91578 R.picticaulis Rubus Rubus picticaulis \N \N \N \N \N 91579 G.punctatum Gaiadendron Gaiadendron punctatum \N \N \N \N \N 91580 G.brasiliensis Gunnera Gunnera brasiliensis \N \N \N \N \N 91581 C.parlatoris Centaurea Centaurea parlatoris \N \N \N \N \N 91582 \N genus Charadranaetes \N \N \N \N \N 91583 \N genus Douglasdeweya \N \N \N \N \N 91584 P.SH-2010 Phyllanthus Phyllanthus sp. SH-2010 \N \N \N \N \N 91585 L.haastioides Leontopodium Leontopodium haastioides \N \N \N \N \N 91586 \N genus Leucaena \N \N \N \N \N 91589 D.villosa Diospyros Diospyros villosa \N \N \N \N \N 91590 S.exauriculata Souroubea Souroubea exauriculata \N \N \N \N \N 91591 P.argenteus Paepalanthus Paepalanthus argenteus \N \N \N \N \N 91592 D.longifolium Dracophyllum Dracophyllum longifolium \N \N \N \N \N 91593 \N genus Haplophyllum \N \N \N \N \N 91594 C.velutina Casearia Casearia velutina \N \N \N \N \N 91595 C.rubella Callicarpa Callicarpa rubella \N \N \N \N \N 91596 A.glycyphyllos Astragalus Astragalus glycyphyllos liquorice milk-vetch \N \N \N \N 91597 D.lopense Dialium Dialium lopense \N \N \N \N \N 91598 H.davidii Hydrangea Hydrangea davidii \N \N \N \N \N 91599 P.fortuneana Pyracantha Pyracantha fortuneana \N \N \N \N \N 91600 \N varietas Aristida schiedeana var. orcuttiana \N \N \N \N \N 91601 A.changduense Allium Allium changduense \N \N \N \N \N 91602 B.aromatica Blumea Blumea aromatica \N \N \N \N \N 91603 P.glandulosa Pomaria Pomaria glandulosa \N \N \N \N \N 91604 R.graniticola Ranunculus Ranunculus graniticola \N \N \N \N \N 91605 I.corchorifolia Impatiens Impatiens corchorifolia \N \N \N \N \N 91606 \N genus Otoglossum \N \N \N \N \N 91607 C.hawaiensis Cyrtandra Cyrtandra hawaiensis \N \N \N \N \N 91608 O.oricola Opuntia Opuntia oricola \N \N \N \N \N 91609 B.rufosericea Begonia Begonia rufosericea \N \N \N \N \N 91610 \N subspecies Rondeletia intermixta subsp. intermixta \N \N \N \N \N 91611 T.valdezianus Turbinicarpus Turbinicarpus valdezianus \N \N \N \N \N 91612 S.caricifolium Solanum Solanum caricifolium \N \N \N \N \N 91613 C.pergracile Cephalostachyum Cephalostachyum pergracile \N \N \N \N \N 91614 U.amethystina Utricularia Utricularia amethystina Florida purple bladderwort \N \N \N \N 91615 S.aquatica Subularia Subularia aquatica \N \N \N \N \N 91616 L.subcarnosa Leucoptera Leucoptera subcarnosa \N \N \N \N \N 91617 U.arnhemica Utricularia Utricularia arnhemica \N \N \N \N \N 91618 \N genus Tetrataenium \N \N \N \N \N 91619 D.buxifolia Drimys Drimys buxifolia \N \N \N \N \N 91620 H.pulchra Helixanthera Helixanthera pulchra \N \N \N \N \N 91621 E.Esp8085 Elleanthus Elleanthus sp. Esp8085 \N \N \N \N \N 91622 \N genus Epiphyllum \N \N \N \N \N 91623 E.mexiae Eryngium Eryngium mexiae \N \N \N \N \N 91624 A.balansae Arisaema Arisaema balansae \N \N \N \N \N 91625 N.gracile Nothoscordum Nothoscordum gracile \N \N \N \N \N 91626 E.utile Entandrophragma Entandrophragma utile \N \N \N \N \N 91627 H.wrightianum Hedysarum Hedysarum wrightianum \N \N \N \N \N 91628 M.senegalensis Monsonia Monsonia senegalensis \N \N \N \N \N 91629 T.latifolia Tricyrtis Tricyrtis latifolia \N \N \N \N \N 91630 P.hubeiensis Potamogeton Potamogeton hubeiensis \N \N \N \N \N 91631 S.paniculata Symplocos Symplocos paniculata \N \N \N \N \N 91632 C.SC29-1 Cornus Cornus cf. canadensis Xiang and Fan SC29-1 \N \N \N \N \N 91633 D.calycinum Daphniphyllum Daphniphyllum calycinum \N \N \N \N \N 91634 C.alpinum Colchicum Colchicum alpinum \N \N \N \N \N 91635 M.peruviana Mathewsia Mathewsia peruviana \N \N \N \N \N 91636 C.sterilis Carex Carex sterilis \N \N \N \N \N 91637 R.ovatum Rhododendron Rhododendron ovatum \N \N \N \N \N 91638 M.obovata Marshallia Marshallia obovata \N \N \N \N \N 91639 E.globiceps Erica Erica globiceps \N \N \N \N \N 91640 C.pavonii Calathea Calathea pavonii \N \N \N \N \N 91641 M.manicata Miconia Miconia manicata \N \N \N \N \N 91642 C.lydia Centaurea Centaurea lydia \N \N \N \N \N 91643 I.gabonensis Irvingia Irvingia gabonensis \N \N \N \N \N 91644 S.yauaperyensis Sobralia Sobralia yauaperyensis \N \N \N \N \N 91645 B.thunbergii Berberis Berberis thunbergii Japanese barberry \N \N \N \N 91646 L.latifolium Lithospermum Lithospermum latifolium \N \N \N \N \N 91647 \N genus Psittacanthus \N \N \N \N \N 91648 M.tenuirostris Microcharis Microcharis tenuirostris \N \N \N \N \N 91649 S.ballotiflora Salvia Salvia ballotiflora shrubby blue sage \N \N \N \N 91650 R.nevadense Ribes Ribes nevadense mountain pink currant \N \N \N \N 91651 \N subspecies Dodecatheon meadia subsp. membranaceum \N \N \N \N \N 91652 S.oreophyton Senecio Senecio oreophyton \N \N \N \N \N 91653 A.2427 Abutilon Abutilon sp. LHMS 2427 \N \N \N \N \N 91654 P.affinis Poa Poa affinis \N \N \N \N \N 91655 C.maritima Cardamine Cardamine maritima \N \N \N \N \N 91656 \N genus Kinabaluchloa \N \N \N \N \N 91657 H.richardiana Hippocratea Hippocratea richardiana \N \N \N \N \N 91658 P.gramineus Potamogeton Potamogeton distinctus x Potamogeton gramineus \N \N \N \N \N 91659 M.longipetiolata Metrosideros Metrosideros longipetiolata \N \N \N \N \N 91660 S.robusta Scaphyglottis Scaphyglottis robusta \N \N \N \N \N 91661 C.ciliata Commiphora Commiphora ciliata \N \N \N \N \N 91662 M.17821 Mimosa Mimosa cf. weberbaueri Pennington 17821 \N \N \N \N \N 91663 R.beloglossa Rhynchostele Rhynchostele beloglossa \N \N \N \N \N 91664 A.prostrata Asclepias Asclepias prostrata \N \N \N \N \N 91665 C.tenuifolia Conostegia Conostegia tenuifolia \N \N \N \N \N 91666 E.EHR-2010 Eleocharis Eleocharis cf. minima EHR-2010 \N \N \N \N \N 91667 P.7827 Pultenaea Pultenaea sp. Beard 7827 \N \N \N \N \N 91668 \N genus Schischkinia \N \N \N \N \N 91669 A.grayi Angelica Angelica grayi \N \N \N \N \N 91670 I.elegans Ixora Ixora elegans \N \N \N \N \N 91671 P.luzonensis Pseuduvaria Pseuduvaria luzonensis \N \N \N \N \N 91672 M.rufescens Maxillaria Maxillaria rufescens \N \N \N \N \N 91673 \N subspecies Impatiens digitata subsp. digitata \N \N \N \N \N 91674 S.crenata Stachys Stachys crenata \N \N \N \N \N 91675 \N genus Abuta \N \N \N \N \N 91676 C.cardiophylla Cissus Cissus cardiophylla \N \N \N \N \N 91677 D.kusnetzowii Draba Draba kusnetzowii \N \N \N \N \N 91678 S.chinensis Shibataea Shibataea chinensis \N \N \N \N \N 91679 T.gonoptera Tococa Tococa gonoptera \N \N \N \N \N 91680 \N subspecies Olea europaea subsp. europaea x O. europaea subsp. cuspidata \N \N \N \N \N 91681 \N genus Hochreutinera \N \N \N \N \N 91682 Q.brantii Quercus Quercus brantii \N \N \N \N \N 91683 S.spathulata Sebaea Sebaea spathulata \N \N \N \N \N 93824 \N genus Monochasma \N \N \N \N \N 91684 D.fragrans Diospyros Diospyros fragrans \N \N \N \N \N 91685 M.repens Muhlenbergia Muhlenbergia repens \N \N \N \N \N 91686 R.lobata Rafflesia Rafflesia lobata \N \N \N \N \N 91687 T.abrahamii Thottea Thottea abrahamii \N \N \N \N \N 91688 C.ochroleuca Crotalaria Crotalaria ochroleuca \N \N \N \N \N 91689 M.microphyllum Melolobium Melolobium microphyllum \N \N \N \N \N 91690 H.marxii Haworthia Haworthia marxii \N \N \N \N \N 91691 T.pycnanthum Thinopyrum Thinopyrum pycnanthum \N \N \N \N \N 91692 P.ramosissima Phacelia Phacelia ramosissima \N \N \N \N \N 91693 H.leptobotryosa Hyperbaena Hyperbaena leptobotryosa \N \N \N \N \N 91694 \N varietas Clematis terniflora var. mandshurica \N \N \N \N \N 91695 P.holmgrenii Palicourea Palicourea holmgrenii \N \N \N \N \N 91696 Z.GM-2003 Zeltnera Zeltnera sp. GM-2003 \N \N \N \N \N 91697 \N genus Fischeria \N \N \N \N \N 91698 C.iguaguana Cordia Cordia iguaguana \N \N \N \N \N 91699 \N varietas Chione venosa var. cubensis \N \N \N \N \N 91700 S.hjertingii Solanum Solanum hjertingii \N \N \N \N \N 91701 \N genus Gueldenstaedtia \N \N \N \N \N 91702 J.moschus Jurinella Jurinella moschus \N \N \N \N \N 91703 M.Ragged' Monotoca Monotoca sp. 'Mt. Ragged' \N \N \N \N \N 91704 C.bianoris Centaurium Centaurium bianoris \N \N \N \N \N 91705 P.nigra) Populus Populus nigra x (Populus deltoides x Populus nigra) \N \N \N \N \N 91706 M.nervatus Myodocarpus Myodocarpus nervatus \N \N \N \N \N 91707 A.fruticosus Aeschynanthus Aeschynanthus fruticosus \N \N \N \N \N 91708 T.guianensis Tapura Tapura guianensis \N \N \N \N \N 91709 \N varietas Lygodesmia grandiflora var. arizonica \N \N \N \N \N 91710 A.Xia-73 Amomum Amomum aff. glabrum Xia-73 \N \N \N \N \N 91711 P.3800 Pygmaeothamnus Pygmaeothamnus cf. chamaedendrum Bremer 3800 \N \N \N \N \N 91712 S.buddleifolium Solanum Solanum buddleifolium \N \N \N \N \N 91713 D.elliptica Derris Derris elliptica derris,tubaroot \N \N \N \N 91714 \N genus Weberbauerocereus \N \N \N \N \N 91715 \N genus Pseudabutilon \N \N \N \N \N 91716 A.flava Alternanthera Alternanthera flava \N \N \N \N \N 91717 D.paxianum Drosanthemum Drosanthemum paxianum \N \N \N \N \N 91718 E.humifusa Erica Erica humifusa \N \N \N \N \N 91719 A.skinneri Achimenes Achimenes skinneri \N \N \N \N \N 91720 P.rivularis Pinanga Pinanga rivularis \N \N \N \N \N 91721 C.zeylanicus Chrysopogon Chrysopogon zeylanicus \N \N \N \N \N 91722 C.puberulum Corispermum Corispermum puberulum \N \N \N \N \N 91723 E.rutidobulbon Eriopsis Eriopsis rutidobulbon \N \N \N \N \N 91724 G.anomala Guatteria Guatteria anomala \N \N \N \N \N 91725 I.pinnatifidus Iodanthus Iodanthus pinnatifidus \N \N \N \N \N 91726 H.ghiesbreghtii Hoffmannia Hoffmannia refulgens x Hoffmannia ghiesbreghtii \N \N \N \N \N 91727 L.lapathifolia Ligularia Ligularia lapathifolia \N \N \N \N \N 91728 \N genus Brachystigma \N \N \N \N \N 91729 C.1520418 Cyathocalyx Cyathocalyx sp. 1520418 \N \N \N \N \N 91730 H.sylvestris Horsfieldia Horsfieldia sylvestris \N \N \N \N \N 91731 \N genus Seshagiria \N \N \N \N \N 91732 E.tenuisectus Echinops Echinops tenuisectus \N \N \N \N \N 91733 D.ciliatus Dianthus Dianthus ciliatus \N \N \N \N \N 91734 C.wilsonii Cinnamomum Cinnamomum wilsonii \N \N \N \N \N 91735 S.fuscata Silene Silene fuscata \N \N \N \N \N 91736 \N genus Vaseyochloa \N \N \N \N \N 91737 C.6932 Cordyline Cordyline sp. Hahn 6932 \N \N \N \N \N 91738 D.biflora Diplolepis Diplolepis biflora \N \N \N \N \N 91739 D.decaryi Dalechampia Dalechampia decaryi \N \N \N \N \N 91740 T.montana Thladiantha Thladiantha montana \N \N \N \N \N 91741 I.multiflora Ipomopsis Ipomopsis multiflora \N \N \N \N \N 91742 S.warscewiczianus Synechanthus Synechanthus warscewiczianus \N \N \N \N \N 91743 P.incarnata Passiflora Passiflora incarnata \N \N \N \N \N 91744 D.minor Dendrocalamus Dendrocalamus minor \N \N \N \N \N 91745 T.luteum Trillium Trillium luteum yellow toadshade \N \N \N \N 91746 \N genus Larrea \N \N \N \N \N 91747 W.mucronata Wiborgia Wiborgia mucronata \N \N \N \N \N 91748 A.microcephala Anthemis Anthemis microcephala \N \N \N \N \N 91749 C.intertexta Cousinia Cousinia intertexta \N \N \N \N \N 91750 C.tainturieri Chaerophyllum Chaerophyllum tainturieri \N \N \N \N \N 91751 D.picta Diuris Diuris picta \N \N \N \N \N 91752 W.angustifolia Willughbeia Willughbeia angustifolia \N \N \N \N \N 91753 H.ellipticum Hedychium Hedychium ellipticum \N \N \N \N \N 91754 P.stonensis Paysonia Paysonia stonensis \N \N \N \N \N 91755 \N genus Antenoron \N \N \N \N \N 91756 M.chicana Maxillaria Maxillaria chicana \N \N \N \N \N 91757 S.ocymifolia Spermacoce Spermacoce ocymifolia \N \N \N \N \N 91758 C.leptophyllum Cyclospermum Cyclospermum leptophyllum \N \N \N \N \N 91759 T.longipes Tromotriche Tromotriche longipes \N \N \N \N \N 91760 S.nerioides Symbolanthus Symbolanthus nerioides \N \N \N \N \N 91761 S.infundibuliforme Solanum Solanum infundibuliforme \N \N \N \N \N 91762 B.purpurea Babiana Babiana purpurea \N \N \N \N \N 91763 M.BEP-2004 Melhania Melhania sp. BEP-2004 \N \N \N \N \N 91764 L.angustissimus Lotus Lotus angustissimus \N \N \N \N \N 91765 B.caerulea Brownleea Brownleea caerulea \N \N \N \N \N 91766 W.celebicum Wallaceodendron Wallaceodendron celebicum banuyo \N \N \N \N 91767 A.scapigera Abrotanella Abrotanella scapigera \N \N \N \N \N 91768 O.reticulata Orobanche Orobanche reticulata \N \N \N \N \N 91769 S.moxosense Solanum Solanum moxosense \N \N \N \N \N 91770 F.collina Flindersia Flindersia collina \N \N \N \N \N 91772 I.lobata Ipomoea Ipomoea lobata \N \N \N \N \N 91773 Q.MES114 Quercus Quercus sp. MES114 \N \N \N \N \N 91774 E.nutans Eriogonum Eriogonum nutans \N \N \N \N \N 91775 \N genus Heliconia \N \N \N \N \N 91776 E.carunculata Euphorbia Euphorbia carunculata \N \N \N \N \N 91777 \N varietas Echinacea angustifolia var. strigosa \N \N \N \N \N 91778 S.ditassoides Sauropus Sauropus ditassoides \N \N \N \N \N 91779 M.sagittatum Microloma Microloma sagittatum \N \N \N \N \N 91780 S.alata Saussurea Saussurea alata \N \N \N \N \N 91781 E.tef Eragrostis Eragrostis tef tef \N \N \N \N 91782 C.mangga Curcuma Curcuma mangga \N \N \N \N \N 91783 C.bella Coelia Coelia bella \N \N \N \N \N 91784 N.henryana Nepenthes Nepenthes x henryana \N \N \N \N \N 91785 A.flavovirens Allium Allium flavovirens \N \N \N \N \N 91786 T.empedoclea Tetracera Tetracera empedoclea \N \N \N \N \N 91787 J.sphaerostigma Jacquemontia Jacquemontia sphaerostigma \N \N \N \N \N 91788 \N subtribe Agrostidinae \N \N \N \N \N 91789 E.jonesiae Eurybia Eurybia jonesiae Jones' aster \N \N \N \N 91790 S.coronopifolius Stizolophus Stizolophus coronopifolius \N \N \N \N \N 91791 D.rosea Disa Disa rosea \N \N \N \N \N 91792 P.nitida Polyscias Polyscias nitida \N \N \N \N \N 91793 C.collina Casuarina Casuarina collina \N \N \N \N \N 91794 C.sphaerocephala Chevaliera Chevaliera sphaerocephala \N \N \N \N \N 91795 M.obtusa Myrceugenia Myrceugenia obtusa \N \N \N \N \N 91796 A.cornutus Astrococcus Astrococcus cornutus \N \N \N \N \N 91797 P.cordobensis Psychotria Psychotria cordobensis \N \N \N \N \N 91798 D.moluccana Duabanga Duabanga moluccana \N \N \N \N \N 91799 A.scabriscapum Allium Allium scabriscapum \N \N \N \N \N 91800 N.browniana Najas Najas browniana \N \N \N \N \N 91801 V.griffithii Vanda Vanda griffithii \N \N \N \N \N 91802 S.coccinea Symplocos Symplocos coccinea \N \N \N \N \N 91803 M.monandra Muhlenbergia Muhlenbergia monandra \N \N \N \N \N 91804 P.muraltiana Polyscias Polyscias muraltiana \N \N \N \N \N 91805 A.stenophylla Arachis Arachis stenophylla \N \N \N \N \N 91806 \N subspecies Origanum vulgare subsp. virens \N \N \N \N \N 91807 B.palmeri Bursera Bursera palmeri \N \N \N \N \N 91808 C.pubescens Cucumis Cucumis pubescens \N \N \N \N \N 91809 T.conspicua Tiquilia Tiquilia conspicua \N \N \N \N \N 91810 S.31.302 Salicornia Salicornia sp. Freitag 31.302 \N \N \N \N \N 91811 \N genus Weldenia \N \N \N \N \N 91812 S.tribracteolata Symplocos Symplocos tribracteolata \N \N \N \N \N 91813 F.frigida Fargesia Fargesia frigida \N \N \N \N \N 91814 V.splendida Verschaffeltia Verschaffeltia splendida \N \N \N \N \N 91815 C.pannosa Caesalpinia Caesalpinia pannosa \N \N \N \N \N 91816 Z.muticus Zameioscirpus Zameioscirpus muticus \N \N \N \N \N 91817 B.huangii Begonia Begonia huangii \N \N \N \N \N 91818 \N no rank Cardamine pratensis 'rivularis type' \N \N \N \N \N 91819 A.yuparense Aconitum Aconitum yuparense \N \N \N \N \N 91820 M.prostratus Mimulus Mimulus prostratus \N \N \N \N \N 91821 S.250 Schefflera Schefflera aff. paniculitomentosa Repizzo 250 \N \N \N \N \N 91822 T.hirta Tutcheria Tutcheria hirta \N \N \N \N \N 91823 D.elliptica Diceratella Diceratella elliptica \N \N \N \N \N 91824 P.verrucosum Pittosporum Pittosporum verrucosum \N \N \N \N \N 91825 V.nudum Viburnum Viburnum nudum \N \N \N \N \N 91826 P.albida Pedicularis Pedicularis albida \N \N \N \N \N 91827 G.purpureum Glossoloma Glossoloma purpureum \N \N \N \N \N 91828 S.aureus Styrax Styrax aureus \N \N \N \N \N 91829 E.tricallosum Epigeneium Epigeneium tricallosum \N \N \N \N \N 91830 N.tenuifolia Najas Najas tenuifolia \N \N \N \N \N 91831 C.egertonii Cuitlauzina Cuitlauzina egertonii \N \N \N \N \N 91832 C.libanotica Carlina Carlina libanotica \N \N \N \N \N 91833 T.esseriana Tillandsia Tillandsia esseriana \N \N \N \N \N 91834 \N genus Stictophyllorchis \N \N \N \N \N 91835 \N subspecies Halosarcia pterygosperma subsp. pterygosperma \N \N \N \N \N 91836 M.skeaniana Miconia Miconia skeaniana \N \N \N \N \N 91837 C.salicifolia Cuphea Cuphea salicifolia \N \N \N \N \N 91838 C.douglassii Cardamine Cardamine douglassii \N \N \N \N \N 91839 A.macrocalyx Astroloma Astroloma macrocalyx \N \N \N \N \N 91840 \N genus Pausinystalia \N \N \N \N \N 91841 R.lagunculicarpum Rhododendron Rhododendron lagunculicarpum \N \N \N \N \N 91842 S.harleyi Syngonanthus Syngonanthus harleyi \N \N \N \N \N 91843 A.canadensis Amelanchier Amelanchier canadensis \N \N \N \N \N 91844 \N genus Cicer \N \N \N \N \N 91845 \N subspecies Paeonia rockii subsp. taibaishanica \N \N \N \N \N 91846 P.ledinghamii Physostegia Physostegia ledinghamii \N \N \N \N \N 91847 D.nuda Digitaria Digitaria nuda \N \N \N \N \N 91848 J.aculeata Jacquinia Jacquinia aculeata \N \N \N \N \N 91849 \N subtribe Cotulinae \N \N \N \N \N 91850 \N genus Saribus \N \N \N \N \N 91851 N.elata Nigella Nigella elata \N \N \N \N \N 91852 \N subspecies Begonia grandis subsp. evansiana hardy begonia \N \N \N \N 91853 A.jibberdingensis Acacia Acacia jibberdingensis \N \N \N \N \N 91854 C.torulosum Cymbopetalum Cymbopetalum torulosum \N \N \N \N \N 91855 H.neomexicana Hesperostipa Hesperostipa neomexicana \N \N \N \N \N 91856 G.vinosomaculatus Gladiolus Gladiolus vinosomaculatus \N \N \N \N \N 91857 G.jasminoides Gardenia Gardenia jasminoides gardenia \N \N \N \N 91858 E.secundiflora Eragrostis Eragrostis secundiflora red lovegrass \N \N \N \N 91859 \N genus Melomphis \N \N \N \N \N 91860 S.wairauensis Senecio Senecio wairauensis \N \N \N \N \N 91861 C.formosum Cratoxylum Cratoxylum formosum \N \N \N \N \N 91862 L.concolor Lilium Lilium concolor \N \N \N \N \N 91863 C.oxyphyllum Cyrtococcum Cyrtococcum oxyphyllum \N \N \N \N \N 91864 P.1997' Patersonia Patersonia sp. 'Lejeune 1997' \N \N \N \N \N 91865 A.nordmanniana Arabis Arabis nordmanniana \N \N \N \N \N 91866 \N genus Ortegia \N \N \N \N \N 91867 \N subspecies Orbea gerstneri subsp. gerstneri \N \N \N \N \N 91868 G.RM1349 Gorteria Gorteria sp. RM1349 \N \N \N \N \N 91869 \N genus Sisymbrium \N \N \N \N \N 91870 \N varietas Gymnocalycium ritterianum var. ritterianum \N \N \N \N \N 91871 C.crispa Clematis Clematis crispa blue jasmine,marsh clematis \N \N \N \N 91872 A.commutatus Adenocarpus Adenocarpus commutatus \N \N \N \N \N 91873 L.91/97 Lophospermum Lophospermum sp. 91/97 \N \N \N \N \N 91874 D.albiflora Dyschoriste Dyschoriste albiflora \N \N \N \N \N 91875 L.amazonensis Ladenbergia Ladenbergia amazonensis \N \N \N \N \N 91876 \N genus Astroworthia \N \N \N \N \N 91877 C.hirsuta Cliffortia Cliffortia hirsuta \N \N \N \N \N 91878 T.bicolor Theobroma Theobroma bicolor \N \N \N \N \N 91879 N.pulchella Nemcia Nemcia pulchella \N \N \N \N \N 91880 G.glaucophylla Guzmania Guzmania glaucophylla \N \N \N \N \N 91881 \N genus Adenophyllum \N \N \N \N \N 91882 P.imbricata Pimelea Pimelea imbricata \N \N \N \N \N 91883 J.dregeanus Juncus Juncus dregeanus \N \N \N \N \N 91884 P.indica Plumbago Plumbago indica \N \N \N \N \N 91885 \N varietas Triticum spelta var. arduini \N \N \N \N \N 91886 L.expansum Ligustrum Ligustrum expansum \N \N \N \N \N 91887 I.cocleensis Inga Inga cocleensis \N \N \N \N \N 91888 M.howellii Micranthes Micranthes howellii \N \N \N \N \N 91889 \N genus Camelinopsis \N \N \N \N \N 91890 O.aureum Oncidium Oncidium aureum \N \N \N \N \N 91891 S.appendiculatum Solanum Solanum appendiculatum \N \N \N \N \N 91892 U.densus Ulex Ulex densus \N \N \N \N \N 91893 \N genus Postiella \N \N \N \N \N 91894 E.acraeus Euryops Euryops acraeus \N \N \N \N \N 91895 D.aucklandica Deyeuxia Deyeuxia aucklandica \N \N \N \N \N 91896 R.goebeliana Rhipsalis Rhipsalis goebeliana \N \N \N \N \N 91897 H.piloselliflorum Hieracium Hieracium piloselliflorum \N \N \N \N \N 91898 \N genus Neomolinia \N \N \N \N \N 91899 L.serratus Lysionotus Lysionotus serratus \N \N \N \N \N 91900 R.tsurugisanense Rhododendron Rhododendron tsurugisanense \N \N \N \N \N 91901 G.rudis Gladiolus Gladiolus rudis \N \N \N \N \N 91902 C.illota Carex Carex illota \N \N \N \N \N 91903 P.albida Parrya Parrya albida \N \N \N \N \N 91904 C.1839 Croton Croton cf. lundellii Sima 1839 \N \N \N \N \N 91905 H.blackburniae Haworthia Haworthia blackburniae \N \N \N \N \N 91906 A.usumacintensis Acacia Acacia usumacintensis \N \N \N \N \N 91907 \N genus Batesanthus \N \N \N \N \N 91908 Z.maritima Zaluzianskya Zaluzianskya maritima \N \N \N \N \N 91909 L.bella Lonicera Lonicera x bella \N \N \N \N \N 91910 G.soukupii Gynoxys Gynoxys soukupii \N \N \N \N \N 91911 E.syriacum Euclidium Euclidium syriacum \N \N \N \N \N 91912 M.ericii Macrocarpaea Macrocarpaea ericii \N \N \N \N \N 91913 E.abolinii Elymus Elymus abolinii \N \N \N \N \N 91914 P.microphylla Paraquilegia Paraquilegia microphylla \N \N \N \N \N 91915 P.praesagium Piper Piper praesagium \N \N \N \N \N 91916 C.variabile Crinum Crinum variabile \N \N \N \N \N 91917 D.ensifolia Dianella Dianella ensifolia \N \N \N \N \N 91918 C.pedunculata Calceolaria Calceolaria pedunculata \N \N \N \N \N 91919 R.ledermannii Rinorea Rinorea ledermannii \N \N \N \N \N 91920 L.attenuata Lilaeopsis Lilaeopsis attenuata \N \N \N \N \N 91921 L.alata Lepisanthes Lepisanthes alata \N \N \N \N \N 91922 \N subspecies Shorea parvifolia subsp. parvifolia \N \N \N \N \N 91923 \N genus Delostoma \N \N \N \N \N 91924 \N subspecies Drosera macrantha subsp. planchonii \N \N \N \N \N 91925 C.korshinskii Caragana Caragana korshinskii \N \N \N \N \N 91926 C.sinicum Chrysosplenium Chrysosplenium sinicum \N \N \N \N \N 91927 T.lissophylla Trouettia Trouettia lissophylla \N \N \N \N \N 91928 E.foveolatus Elaeocarpus Elaeocarpus foveolatus \N \N \N \N \N 91929 C.arctica Claytonia Claytonia arctica \N \N \N \N \N 91930 B.elliptica Brachylaena Brachylaena elliptica \N \N \N \N \N 91931 C.filifolium Corispermum Corispermum filifolium \N \N \N \N \N 91932 N.kampotiana Nepenthes Nepenthes kampotiana \N \N \N \N \N 91933 \N genus Babcockia \N \N \N \N \N 91934 \N subspecies Galium hypotrichium subsp. tomentellum \N \N \N \N \N 91935 H.macgregorii Heterospathe Heterospathe macgregorii \N \N \N \N \N 91936 P.paniceum Pogonatherum Pogonatherum paniceum \N \N \N \N \N 91937 P.macrantha Poa Poa macrantha \N \N \N \N \N 91938 L.bergii Loasa Loasa bergii \N \N \N \N \N 91939 N.pungens Nepeta Nepeta pungens \N \N \N \N \N 91940 S.porphyrostachys Streptocarpus Streptocarpus porphyrostachys \N \N \N \N \N 91941 C.cordubensis Centaurea Centaurea cordubensis \N \N \N \N \N 91942 S.monospermus Streblacanthus Streblacanthus monospermus \N \N \N \N \N 91943 \N genus Oligostachyum \N \N \N \N \N 91944 C.sororia Carex Carex sororia \N \N \N \N \N 91945 \N genus Hygroryza \N \N \N \N \N 91946 C.paliku Cyrtandra Cyrtandra paliku \N \N \N \N \N 91947 \N subspecies Dubautia laxa subsp. bryanii \N \N \N \N \N 91948 V.barbazitae Vicia Vicia barbazitae \N \N \N \N \N 91949 C.croatii Clusia Clusia croatii \N \N \N \N \N 91950 P.media Phillyrea Phillyrea media \N \N \N \N \N 91951 I.xiphium Iris Iris xiphium \N \N \N \N \N 91952 \N genus Bergenia \N \N \N \N \N 91953 S.malacoclados Strychnos Strychnos malacoclados \N \N \N \N \N 91954 A.giganteum Arpophyllum Arpophyllum giganteum hyacinth orchid \N \N \N \N 91955 A.crenulata Aciphylla Aciphylla crenulata \N \N \N \N \N 91956 P.koniamboensis Phyllanthus Phyllanthus koniamboensis \N \N \N \N \N 91957 N.carnosa Nolana Nolana carnosa \N \N \N \N \N 91958 \N genus Aeschynanthus \N \N \N \N \N 91959 A.compacta Artemisia Artemisia compacta \N \N \N \N \N 91960 C.timorensis Casuarina Casuarina timorensis \N \N \N \N \N 91961 A.435 Arisaema Arisaema sp. Nie and Meng 435 \N \N \N \N \N 91962 P.lasianthum Polygonatum Polygonatum lasianthum \N \N \N \N \N 91963 M.suffruticosa Moricandia Moricandia suffruticosa \N \N \N \N \N 91964 S.loganioides Spigelia Spigelia loganioides \N \N \N \N \N 91965 N.E Neonauclea Neonauclea sp. E \N \N \N \N \N 91966 E.lehmannii Erica Erica lehmannii \N \N \N \N \N 91967 P.alata Pentatrichia Pentatrichia alata \N \N \N \N \N 91968 \N subspecies Clermontia oblongifolia subsp. mauiensis \N \N \N \N \N 91969 R.parviflorus Ranunculus Ranunculus parviflorus \N \N \N \N \N 91970 P.guatemalensis Passiflora Passiflora guatemalensis \N \N \N \N \N 91971 V.dearei Vanda Vanda dearei \N \N \N \N \N 91972 S.rotundifolia Salix Salix rotundifolia \N \N \N \N \N 91973 K.albomontana Kniphofia Kniphofia albomontana \N \N \N \N \N 91974 W.frutescens Withania Withania frutescens \N \N \N \N \N 91975 P.roebelenii Phoenix Phoenix roebelenii \N \N \N \N \N 91976 \N varietas Rubus pungens var. oldhamii \N \N \N \N \N 91977 \N varietas Carex laxiculmis var. copulata \N \N \N \N \N 91978 \N genus Phagnalon \N \N \N \N \N 91979 P.affinis Prosopis Prosopis affinis algarrobillo,ibop \N \N \N \N 91980 E.densa Euphorbia Euphorbia densa \N \N \N \N \N 91981 P.alpina Palicourea Palicourea alpina \N \N \N \N \N 91982 D.domingensis Dendrophthora Dendrophthora domingensis \N \N \N \N \N 91983 F.retusa Ficus Ficus retusa \N \N \N \N \N 91984 T.steudneri Trifolium Trifolium steudneri \N \N \N \N \N 91985 C.patula Cullumia Cullumia patula \N \N \N \N \N 91986 E.napina Eriosyce Eriosyce napina \N \N \N \N \N 91987 P.capitatus Physocarpus Physocarpus capitatus \N \N \N \N \N 91988 \N genus Mausolea \N \N \N \N \N 91989 S.sinensis Sloanea Sloanea sinensis \N \N \N \N \N 91990 \N subspecies Saltugilia splendens subsp. grantii \N \N \N \N \N 91991 N.stenocarpa Nama Nama stenocarpa \N \N \N \N \N 91992 P.bracteatus Parartocarpus Parartocarpus bracteatus \N \N \N \N \N 91993 C.38CB01 Carpinus Carpinus sp. 38CB01 \N \N \N \N \N 91994 M.occidentalis Muraltia Muraltia occidentalis \N \N \N \N \N 91995 M.monoica Melanocenchris Melanocenchris monoica \N \N \N \N \N 91996 E.simulata Echinacea Echinacea simulata \N \N \N \N \N 91997 A.keiskeana Anemone Anemone keiskeana \N \N \N \N \N 91998 B.robusta Begonia Begonia robusta \N \N \N \N \N 91999 T.gladiolaris Tritonia Tritonia gladiolaris \N \N \N \N \N 92000 C.candelilla Cantua Cantua candelilla \N \N \N \N \N 92001 \N varietas Boehmeria macrophylla var. rotundifolia \N \N \N \N \N 92002 \N genus Amyema \N \N \N \N \N 92003 B.nova-anglica Brachyscome Brachyscome nova-anglica \N \N \N \N \N 92004 E.zeylanica Entada Entada zeylanica \N \N \N \N \N 92005 M.hispida Mentzelia Mentzelia hispida \N \N \N \N \N 92006 R.fruticosa Ruellia Ruellia fruticosa \N \N \N \N \N 92007 D.dalessandroi Dracula Dracula dalessandroi \N \N \N \N \N 92008 A.neglecta Aspalathus Aspalathus neglecta \N \N \N \N \N 92009 T.TL212-2 unclassified Taraxacum Taraxacum (sect. Naevosa) sp. TL212-2 \N \N \N \N \N 92010 S.virgata Scaevola Scaevola virgata \N \N \N \N \N 92011 L.pallidiflora Lemurella Lemurella pallidiflora \N \N \N \N \N 92012 P.zeylanicum Pancratium Pancratium zeylanicum \N \N \N \N \N 92013 B.acuminata Brocchinia Brocchinia acuminata \N \N \N \N \N 92014 S.swainsonii Stachys Stachys swainsonii \N \N \N \N \N 92015 M.saxosum Melampyrum Melampyrum saxosum \N \N \N \N \N 92016 H.multiflora Heladena Heladena multiflora \N \N \N \N \N 92017 C.subcordata Cordia Cordia subcordata kou,mareer \N \N \N \N 92018 \N genus Neolitsea \N \N \N \N \N 92019 A.spiralis Astroloba Astroloba spiralis \N \N \N \N \N 92020 \N genus Tupidanthus \N \N \N \N \N 92021 C.chekiangoleosa Camellia Camellia chekiangoleosa \N \N \N \N \N 92022 A.faroensis Alchemilla Alchemilla faroensis \N \N \N \N \N 92023 P.laetum Panicum Panicum laetum \N \N \N \N \N 92024 V.schaffnerii Vachellia Vachellia schaffnerii \N \N \N \N \N 92025 \N genus Tecomanthe \N \N \N \N \N 92026 D.tetrasperma Diospyros Diospyros tetrasperma \N \N \N \N \N 92027 P.neglectus Phaseolus Phaseolus neglectus \N \N \N \N \N 92028 F.modesta Festuca Festuca modesta \N \N \N \N \N 92029 P.argentea Pimelea Pimelea argentea \N \N \N \N \N 92030 C.blakei Carex Carex blakei \N \N \N \N \N 92031 \N varietas Ochrosia mariannensis var. mariannensis \N \N \N \N \N 92032 T.humile Tetramolopium Tetramolopium humile \N \N \N \N \N 92033 E.proteoides Euryops Euryops proteoides \N \N \N \N \N 92034 \N subfamily Petunioideae \N \N \N \N \N 92035 \N genus Otomeria \N \N \N \N \N 92036 L.acreana Lacunaria Lacunaria acreana \N \N \N \N \N 92037 \N subtribe Arctotidinae \N \N \N \N \N 92038 T.erectum Trillium Trillium erectum bethroot,birth root,stinking benjamin,wakerobin \N \N \N \N 92039 \N genus Stypandra \N \N \N \N \N 92040 \N tribe Carisseae \N \N \N \N \N 92041 \N genus Bungea \N \N \N \N \N 92042 C.paludicola Craspedia Craspedia paludicola \N \N \N \N \N 92043 E.helenae Erythronium Erythronium helenae Pacific fawnlily \N \N \N \N 92044 \N genus Polycnemum \N \N \N \N \N 92045 I.pungens Indigofera Indigofera pungens \N \N \N \N \N 92046 E.indica Eleusine Eleusine indica crabgrass,fowl foot grass,goosegrass,wire grass,yardgrass \N \N \N \N 92047 A.confusa Aerangis Aerangis confusa \N \N \N \N \N 92048 \N subspecies Cornus kousa subsp. chinensis \N \N \N \N \N 92049 R.monanthum Rhododendron Rhododendron monanthum \N \N \N \N \N 92050 S.kagamiana Semiarundinaria Semiarundinaria kagamiana \N \N \N \N \N 92051 \N genus Sphagneticola \N \N \N \N \N 92052 H.cupanioides Harpullia Harpullia cupanioides \N \N \N \N \N 92053 \N genus Raukaua \N \N \N \N \N 92054 C.glaziovii Casselia Casselia glaziovii \N \N \N \N \N 92055 \N genus Llerasia \N \N \N \N \N 92056 F.moschata Fragaria Fragaria moschata \N \N \N \N \N 92057 \N subfamily Orchidoideae \N \N \N \N \N 92058 A.falcatus Asparagus Asparagus falcatus \N \N \N \N \N 92059 E.ryukyuensis Eurya Eurya ryukyuensis \N \N \N \N \N 92060 S.SH-2010 Steudnera Steudnera sp. SH-2010 \N \N \N \N \N 92061 S.gigantea Scaphyglottis Scaphyglottis gigantea \N \N \N \N \N 92062 M.geniculatum Microstegium Microstegium geniculatum \N \N \N \N \N 92063 A.buxifolia Agapetes Agapetes buxifolia \N \N \N \N \N 92064 I.bostrensis Iris Iris bostrensis \N \N \N \N \N 92065 C.hyperborea Castilleja Castilleja hyperborea \N \N \N \N \N 92066 \N subspecies Phlox subulata subsp. australis \N \N \N \N \N 92067 O.densiflora Oldenlandia Oldenlandia densiflora \N \N \N \N \N 92068 A.nudicaulis Atriplex Atriplex nudicaulis \N \N \N \N \N 92069 P.lawii Phyllanthus Phyllanthus lawii \N \N \N \N \N 92070 F.cornucopiae Fedia Fedia cornucopiae \N \N \N \N \N 92071 F.tripteris Florestina Florestina tripteris \N \N \N \N \N 92072 V.poppelwellii Hebe Veronica poppelwellii \N \N \N \N \N 92073 P.cardinalis Penstemon Penstemon cardinalis \N \N \N \N \N 92074 U.condensata Uniola Uniola condensata \N \N \N \N \N 92075 R.occidentalis Rhipsalis Rhipsalis occidentalis \N \N \N \N \N 92076 S.quadrata Sesbania Sesbania quadrata \N \N \N \N \N 92077 C.betamponensis Coffea Coffea betamponensis \N \N \N \N \N 92078 \N varietas Geonoma macrostachys var. acaulis \N \N \N \N \N 92079 C.alpina Crepis Crepis alpina \N \N \N \N \N 92080 C.scabrida Capparis Capparis scabrida \N \N \N \N \N 92081 E.simonii Eleutherococcus Eleutherococcus simonii \N \N \N \N \N 92082 A.aschurbajewii Artemisia Artemisia aschurbajewii \N \N \N \N \N 92083 P.pinifolia Pityopsis Pityopsis pinifolia \N \N \N \N \N 92084 M.cornucopiae Melaleuca Melaleuca cornucopiae \N \N \N \N \N 92085 \N genus Stapeliopsis \N \N \N \N \N 92086 E.anthemoides Euryops Euryops anthemoides \N \N \N \N \N 92087 D.abyssinica Diospyros Diospyros abyssinica \N \N \N \N \N 92088 R.digbyana Rhyncholaelia Rhyncholaelia digbyana \N \N \N \N \N 92089 M.montioides Mimulus Mimulus montioides \N \N \N \N \N 92090 S.martyana Sarcopteryx Sarcopteryx martyana \N \N \N \N \N 92091 E.flindersii Eucalyptus Eucalyptus flindersii South Australian grey mallee,mallee red gum \N \N \N \N 92092 S.spontaneum Saccharum officinarum complex Saccharum officinarum x Saccharum spontaneum \N \N \N \N \N 92093 P.macradenia Polygala Polygala macradenia \N \N \N \N \N 92094 C.wilkenii Collomia Collomia wilkenii \N \N \N \N \N 92095 R.yunnanensis Rhodiola Rhodiola yunnanensis \N \N \N \N \N 92096 P.anisophylla Pagamea Pagamea anisophylla \N \N \N \N \N 92097 \N subtribe Ponerineae \N \N \N \N \N 92098 T.lallii Tetrataenium Tetrataenium lallii \N \N \N \N \N 92099 H.SK-2009h Hydrobryum Hydrobryum sp. SK-2009h \N \N \N \N \N 92100 L.diamantinana Lychnophora Lychnophora diamantinana \N \N \N \N \N 92101 I.rothii Impatiens Impatiens rothii \N \N \N \N \N 92102 \N varietas Rhynchoglossum obliquum var. hologlossum \N \N \N \N \N 92103 C.ecuadorensis Cucurbita Cucurbita ecuadorensis \N \N \N \N \N 92104 E.granulata Euphorbia Euphorbia granulata \N \N \N \N \N 92105 H.zeyheri Helichrysum Helichrysum zeyheri \N \N \N \N \N 92106 C.rechingerorum Cousinia Cousinia rechingerorum \N \N \N \N \N 92107 D.olympiana Dalechampia Dalechampia olympiana \N \N \N \N \N 92108 \N genus Leymus \N \N \N \N \N 92109 C.longifolia Cybistetes Cybistetes longifolia \N \N \N \N \N 92110 A.koshunensis Anoectochilus Anoectochilus koshunensis \N \N \N \N \N 92111 D.sachalinensis Draba Draba sachalinensis \N \N \N \N \N 92112 H.filifolius Hymenopappus Hymenopappus filifolius \N \N \N \N \N 92113 I.keilii Impatiens Impatiens keilii \N \N \N \N \N 92114 \N genus Pericopsis \N \N \N \N \N 92115 F.vaginata Festuca Festuca vaginata \N \N \N \N \N 92116 \N genus Mildbraediodendron \N \N \N \N \N 92117 \N genus Neocouma \N \N \N \N \N 92118 Q.montana Quercus Quercus montana \N \N \N \N \N 92119 \N subspecies Torilis arvensis subsp. purpurea \N \N \N \N \N 92120 A.tournefortiana Artemisia Artemisia tournefortiana \N \N \N \N \N 92121 L.setifolius Lathyrus Lathyrus setifolius \N \N \N \N \N 92122 \N varietas Lupinus microcarpus var. horizontalis \N \N \N \N \N 92123 C.andarabensis Cousinia Cousinia andarabensis \N \N \N \N \N 92124 L.purpurea Leandra Leandra purpurea \N \N \N \N \N 92125 C.LJM057291 Chirita Chirita sp. LJM057291 \N \N \N \N \N 92126 S.kealiae Schiedea Schiedea kealiae \N \N \N \N \N 92127 C.angustifolia Crucianella Crucianella angustifolia \N \N \N \N \N 92128 R.serratuloides Rhaponticum Rhaponticum serratuloides \N \N \N \N \N 92129 P.lanceifolium Piper Piper lanceifolium \N \N \N \N \N 92130 P.ovale Pelargonium Pelargonium ovale \N \N \N \N \N 92131 A.farinosa Aletris Aletris farinosa \N \N \N \N \N 92132 N.poeticus Narcissus Narcissus poeticus \N \N \N \N \N 92133 T.fortunei Trachycarpus Trachycarpus fortunei windmill palm \N \N \N \N 92134 A.manausensis Anisophyllea Anisophyllea manausensis \N \N \N \N \N 92135 G.spectabile Gastrolobium Gastrolobium spectabile \N \N \N \N \N 92136 S.hayatae Sasa Sasa hayatae \N \N \N \N \N 92137 P.ovatum Piper Piper ovatum \N \N \N \N \N 92138 M.fragrans Myrcianthes Myrcianthes fragrans \N \N \N \N \N 92139 E.pachypodioides Euphorbia Euphorbia pachypodioides \N \N \N \N \N 92140 P.mathewsii Passiflora Passiflora mathewsii \N \N \N \N \N 92141 P.angusta Puya Puya angusta \N \N \N \N \N 92142 S.kuhlmannii Swartzia Swartzia kuhlmannii \N \N \N \N \N 92143 X.spinulosum Xanthisma Xanthisma spinulosum \N \N \N \N \N 92144 M.leiocarpa Momordica Momordica leiocarpa \N \N \N \N \N 92145 O.dipterocarpum Osteocarpum Osteocarpum dipterocarpum \N \N \N \N \N 92146 S.integra Salix Salix integra \N \N \N \N \N 92147 \N genus Kelseya \N \N \N \N \N 92148 L.cumingii Leea Leea cumingii \N \N \N \N \N 92149 C.lutea Cordia Cordia lutea oberal \N \N \N \N 92150 C.cyanea Cristaria Cristaria cyanea \N \N \N \N \N 92151 \N genus Tricyrtis \N \N \N \N \N 92152 T.concinna Turnera Turnera concinna \N \N \N \N \N 92153 T.funalis Tacinga Tacinga funalis \N \N \N \N \N 92154 F.elviae Festuca Festuca elviae \N \N \N \N \N 92155 C.exilis Cleistes Cleistes exilis \N \N \N \N \N 92156 \N varietas Piptochaetium stipoides var. stipoides \N \N \N \N \N 92157 \N genus Acrothamnus \N \N \N \N \N 92158 \N no rank environmental samples Taxonomy:1096684 \N \N \N \N \N 92159 H.fendleri Hieracium Hieracium fendleri \N \N \N \N \N 92160 \N subtribe Madiinae \N \N \N \N \N 92161 A.tortilis Acacia Acacia tortilis \N \N \N \N \N 92162 A.wilmsii Adenia Adenia wilmsii \N \N \N \N \N 92163 L.kalantha Loesenera Loesenera kalantha \N \N \N \N \N 92164 L.loweanus Lotus Lotus loweanus \N \N \N \N \N 92165 \N genus Ungeria \N \N \N \N \N 92166 \N varietas Carex microchaeta var. microchaeta \N \N \N \N \N 92167 A.excubita Alcea Alcea excubita \N \N \N \N \N 92168 V.pusilla Veronica Veronica pusilla \N \N \N \N \N 92169 D.muscipula Dionaea Dionaea muscipula \N \N \N \N \N 92170 P.arabica Pluchea Pluchea arabica \N \N \N \N \N 92171 T.lanuginosa Tidestromia Tidestromia lanuginosa woolly tidestromia \N \N \N \N 92172 \N genus Brabejum \N \N \N \N \N 93825 \N genus Cleomella stinkweed \N \N \N \N 92173 D.spongiosa Dioscorea Dioscorea spongiosa \N \N \N \N \N 92174 P.pungens Pityrodia Pityrodia pungens \N \N \N \N \N 92175 C.radicans Clidemia Clidemia radicans \N \N \N \N \N 92176 \N genus Eriocephalus \N \N \N \N \N 92177 \N tribe Citharexyleae \N \N \N \N \N 92178 S.dayana Sophronitis Sophronitis dayana \N \N \N \N \N 92179 \N genus Euclasta \N \N \N \N \N 92180 \N genus Canastra \N \N \N \N \N 92181 \N subspecies Dupontia fisheri subsp. pelligera \N \N \N \N \N 92182 A.floribunda Andradea Andradea floribunda \N \N \N \N \N 92183 C.deustum Chondropetalum Chondropetalum deustum \N \N \N \N \N 92184 C.seorsiflora Conostylis Conostylis seorsiflora \N \N \N \N \N 92185 B.adamsii Brachyglottis Brachyglottis adamsii \N \N \N \N \N 92186 C.confertum Corispermum Corispermum confertum \N \N \N \N \N 92187 C.tangshen Codonopsis Codonopsis tangshen \N \N \N \N \N 92188 L.sylvatica Luzula Luzula sylvatica \N \N \N \N \N 92189 L.guttatum Lenophyllum Lenophyllum guttatum \N \N \N \N \N 92190 R.kwangtungense Rehderodendron Rehderodendron kwangtungense \N \N \N \N \N 92191 \N genus Plakothira \N \N \N \N \N 92192 C.leptostegia Cyanea Cyanea leptostegia \N \N \N \N \N 92193 A.geesinkii Argostemma Argostemma geesinkii \N \N \N \N \N 92194 P.36003 Parrya Parrya sp. Boufford et al. 36003 \N \N \N \N \N 92195 A.boniana Alphonsea Alphonsea boniana \N \N \N \N \N 92196 H.hainanensis Hopea Hopea hainanensis \N \N \N \N \N 92197 C.jaliscense Coulterophytum Coulterophytum jaliscense \N \N \N \N \N 92198 S.angustiloba Scabiosa Scabiosa angustiloba \N \N \N \N \N 92199 H.chromodontum Heliosperma Heliosperma chromodontum \N \N \N \N \N 92200 L.gebelia Lotus Lotus gebelia \N \N \N \N \N 92201 \N genus Enkleia \N \N \N \N \N 92202 H.oxycarpa Hoffmannseggia Hoffmannseggia oxycarpa \N \N \N \N \N 92203 R.hirtum Ribes Ribes hirtum \N \N \N \N \N 92204 M.meridensis Maxillaria Maxillaria meridensis \N \N \N \N \N 92205 E.lindenii Edmundoa Edmundoa lindenii \N \N \N \N \N 92206 E.abietina Erica Erica abietina \N \N \N \N \N 92207 A.chenopodioides Acleisanthes Acleisanthes chenopodioides \N \N \N \N \N 92208 A.tonkinense Acroceras Acroceras tonkinense \N \N \N \N \N 92209 P.flaccidum Paspalum Paspalum flaccidum \N \N \N \N \N 92210 E.corymbosa Elsiea Elsiea corymbosa \N \N \N \N \N 92211 A.pubescens Arabis Arabis pubescens \N \N \N \N \N 92212 S.purpurea Sarracenia Sarracenia purpurea purple pitcherplant \N \N \N \N 92213 \N subspecies Galanthus reginae-olgae subsp. vernalis \N \N \N \N \N 92214 A.symphyocarpa Asteromyrtus Asteromyrtus symphyocarpa \N \N \N \N \N 92215 \N genus Daemonorops \N \N \N \N \N 92216 \N genus Harrisia \N \N \N \N \N 92217 M.coromandelianum Malvastrum Malvastrum coromandelianum \N \N \N \N \N 92218 \N family Primulaceae primrose family \N \N \N \N 92219 B.907 Bridelia Bridelia sp. Walters et al. 907 \N \N \N \N \N 92220 E.meoides Elaeoselinum Elaeoselinum meoides \N \N \N \N \N 92221 \N varietas Camellia henryana var. trichocarpa \N \N \N \N \N 92222 P.ochreata Pultenaea Pultenaea ochreata \N \N \N \N \N 92223 H.acanthoclada Hovea Hovea acanthoclada \N \N \N \N \N 92224 L.longiseta Loasa Loasa longiseta \N \N \N \N \N 92225 M.stauropetala Mitella Mitella stauropetala \N \N \N \N \N 92226 P.perplexus Phaseolus Phaseolus perplexus \N \N \N \N \N 92227 \N family Sarraceniaceae pitcher plant family \N \N \N \N 92228 A.parryi Arnica Arnica parryi \N \N \N \N \N 92229 P.canescens Pectis Pectis canescens \N \N \N \N \N 92230 C.reticulatum Cicer Cicer reticulatum \N \N \N \N \N 92231 U.peruviana Urceolina Urceolina peruviana \N \N \N \N \N 92232 N.purpurascens Neesia Neesia purpurascens \N \N \N \N \N 92233 C.angolensis Carex Carex angolensis \N \N \N \N \N 92234 B.incarnata Begonia Begonia incarnata \N \N \N \N \N 92235 E.campanulatum Epimedium Epimedium campanulatum \N \N \N \N \N 92236 S.subcrenata Stachys Stachys subcrenata \N \N \N \N \N 92237 L.laterale Lepidosperma Lepidosperma laterale \N \N \N \N \N 92238 C.batesii Carapa Carapa batesii \N \N \N \N \N 92239 D.malabarica Diospyros Diospyros malabarica Indian persimmon \N \N \N \N 92240 M.s.n. Mesadenella Mesadenella sp. Szlachetko s.n. \N \N \N \N \N 92241 C.tectorum Crepis Crepis tectorum narrow-leaf hawk's-beard \N \N \N \N 92242 T.sylvium Thlaspi Thlaspi sylvium \N \N \N \N \N 92243 \N genus Rhaponticum \N \N \N \N \N 92244 E.O-433 Epistephium Epistephium sp. Chase O-433 \N \N \N \N \N 92245 A.linangensis Ardisia Ardisia linangensis \N \N \N \N \N 92246 R.rugosa Rosa Rosa rugosa Japanese rose,Turkestan rose \N \N \N \N 92247 H.aristatus Hypodiscus Hypodiscus aristatus \N \N \N \N \N 92248 E.coarctata Erica Erica coarctata \N \N \N \N \N 92249 S.angustifolia Steyermarkochloa Steyermarkochloa angustifolia \N \N \N \N \N 92250 N.oxypetala Nigella Nigella oxypetala \N \N \N \N \N 92251 S.parvibarbata Scaevola Scaevola parvibarbata \N \N \N \N \N 92252 P.dehiscens Pentachondra Pentachondra dehiscens \N \N \N \N \N 92253 C.blepharophyllum Chlorophytum Chlorophytum blepharophyllum \N \N \N \N \N 92254 P.undulatum Philodendron Philodendron undulatum \N \N \N \N \N 92255 \N genus Hyophorbe \N \N \N \N \N 92256 A.cearensis Amburana Amburana cearensis \N \N \N \N \N 92257 C.anachoreta Chirita Chirita anachoreta \N \N \N \N \N 92258 N.productus Nastus Nastus productus \N \N \N \N \N 92259 C.tenella Chaetanthera Chaetanthera tenella \N \N \N \N \N 92260 C.domingensis Clidemia Clidemia domingensis \N \N \N \N \N 92261 A.mabellae Acacia Acacia mabellae \N \N \N \N \N 92262 G.platypoda Guettarda Guettarda platypoda \N \N \N \N \N 92263 V.izuense Vincetoxicum Vincetoxicum izuense \N \N \N \N \N 92264 B.landia Bremeria Bremeria landia \N \N \N \N \N 92265 C.canescens Clethra Clethra canescens \N \N \N \N \N 92266 C.riparia Carex Carex riparia \N \N \N \N \N 92267 C.carlesii Castanopsis Castanopsis carlesii \N \N \N \N \N 92268 P.glabra Persicaria Persicaria glabra \N \N \N \N \N 92269 E.integrifolium Eutrema Eutrema integrifolium \N \N \N \N \N 92270 \N family Hydrangeaceae hydrangea family \N \N \N \N 92271 J.reclinata Jacquemontia Jacquemontia reclinata \N \N \N \N \N 92272 C.multifidus Calyptrocalyx Calyptrocalyx multifidus \N \N \N \N \N 92273 G.capitellata Genista Genista capitellata \N \N \N \N \N 92274 A.armeniacum Amblostoma Amblostoma armeniacum \N \N \N \N \N 92275 B.volubilis Buckollia Buckollia volubilis \N \N \N \N \N 92276 \N varietas Lupinus excubitus var. austromontanus \N \N \N \N \N 92277 C.depressa Citrus Citrus depressa \N \N \N \N \N 92278 R.indica Rhaphiolepis Rhaphiolepis indica \N \N \N \N \N 92279 C.oviformis Camellia Camellia oviformis \N \N \N \N \N 92280 D.humile Decaspermum Decaspermum humile \N \N \N \N \N 92281 E.exigua Euphorbia Euphorbia exigua \N \N \N \N \N 92282 \N varietas Aristolochia kaempferi var. tanzawana \N \N \N \N \N 92283 P.scandens Polyporandra Polyporandra scandens \N \N \N \N \N 92284 C.flava Camellia Camellia flava \N \N \N \N \N 92285 E.pilularis Eucalyptus Eucalyptus pilularis \N \N \N \N \N 92286 S.epiphytica Schefflera Schefflera epiphytica \N \N \N \N \N 92287 V.odorata Vanilla Vanilla odorata \N \N \N \N \N 92288 A.eucomus Andropogon Andropogon eucomus \N \N \N \N \N 92289 F.agustinii Festuca Festuca agustinii \N \N \N \N \N 92290 V.thymifolia Veronica Veronica thymifolia \N \N \N \N \N 92291 E.plicatum Empodium Empodium plicatum \N \N \N \N \N 92292 A.meniocoides Alyssum Alyssum meniocoides \N \N \N \N \N 92293 D.volubilis Dregea Dregea volubilis \N \N \N \N \N 92294 \N varietas Pappostipa speciosa var. manqueclensis \N \N \N \N \N 92295 P.durilancifolia Psychotria Psychotria durilancifolia \N \N \N \N \N 92296 A.platanifolium Alangium Alangium platanifolium \N \N \N \N \N 92297 P.spicata Pseudoroegneria Pseudoroegneria spicata beardless wheatgrass \N \N \N \N 92298 N.azorelloides Niphogeton Niphogeton azorelloides \N \N \N \N \N 92299 E.peritropoides Euphorbia Euphorbia peritropoides \N \N \N \N \N 92300 H.exasperata Hibbertia Hibbertia exasperata \N \N \N \N \N 92301 W.bijieensis Whytockia Whytockia bijieensis \N \N \N \N \N 92302 C.augustifolia Clutia Clutia augustifolia \N \N \N \N \N 92303 S.trifoliatus Sigmatanthus Sigmatanthus trifoliatus \N \N \N \N \N 92304 P.pentamera Prockia Prockia pentamera \N \N \N \N \N 92305 P.insueta Psychotria Psychotria insueta \N \N \N \N \N 92306 \N no rank Plantaginaceae incertae sedis \N \N \N \N \N 92307 T.lescrauwaetii Tessmannia Tessmannia lescrauwaetii \N \N \N \N \N 92308 C.leucodermis Ceanothus Ceanothus leucodermis \N \N \N \N \N 92309 \N subspecies Onobrychis arenaria subsp. arenaria \N \N \N \N \N 92310 M.20-2004 Microstegium Microstegium sp. Besnard 20-2004 \N \N \N \N \N 92311 M.brandegeei Mentzelia Mentzelia brandegeei \N \N \N \N \N 92312 \N subspecies Corythophora rimosa subsp. rubra \N \N \N \N \N 92313 R.stans Rubus Rubus stans \N \N \N \N \N 92314 S.'Mwache' Saintpaulia Saintpaulia sp. 'Mwache' \N \N \N \N \N 92315 B.williamsonii Bunochilus Bunochilus williamsonii \N \N \N \N \N 92316 O.argentea Onobrychis Onobrychis argentea \N \N \N \N \N 92317 C.eminii Canarina Canarina eminii \N \N \N \N \N 92318 C.jankae Centaurea Centaurea jankae \N \N \N \N \N 92319 B.polyclonum Bupleurum Bupleurum polyclonum \N \N \N \N \N 92320 M.stenostachya Miconia Miconia stenostachya \N \N \N \N \N 92321 E.pectinacea Eragrostis Eragrostis pectinacea Carolina love grass \N \N \N \N 92322 \N varietas Rhododendron citriniflorum var. horaeum \N \N \N \N \N 92323 B.aristidoides Bouteloua Bouteloua aristidoides \N \N \N \N \N 92324 O.pinnata Ononis Ononis pinnata \N \N \N \N \N 92325 M.centralifera Mammillaria Mammillaria centralifera \N \N \N \N \N 92326 B.cassinioides Brachyglottis Brachyglottis cassinioides \N \N \N \N \N 92327 M.trinervis Maburea Maburea trinervis \N \N \N \N \N 92328 T.pedunculatus Tragus Tragus pedunculatus \N \N \N \N \N 92329 \N genus Spondianthus \N \N \N \N \N 92330 P.veillonii Polyscias Polyscias veillonii \N \N \N \N \N 92331 C.chuanhuangjiang Curcuma Curcuma chuanhuangjiang \N \N \N \N \N 92332 E.multiflorus Elymus Elymus multiflorus \N \N \N \N \N 92333 \N genus Monimia \N \N \N \N \N 92334 \N varietas Perilla frutescens var. purpurascens \N \N \N \N \N 92335 C.cuspidata Cuscuta Cuscuta cuspidata \N \N \N \N \N 92336 T.4310 unclassified Taraxacum Taraxacum (sect. Cucullata) sp. 4310 \N \N \N \N \N 92337 V.panormitana Veronica Veronica panormitana \N \N \N \N \N 92338 \N genus Arnhemia \N \N \N \N \N 92339 A.yunnanense Asarum Asarum yunnanense \N \N \N \N \N 92340 P.penicillata Pleurothallis Pleurothallis penicillata \N \N \N \N \N 92341 O.stricta Opuntia Opuntia stricta \N \N \N \N \N 92342 A.leptolepis Aframomum Aframomum leptolepis \N \N \N \N \N 92343 D.hopwoodii Duboisia Duboisia hopwoodii \N \N \N \N \N 92344 R.lappaceus Ranunculus Ranunculus lappaceus \N \N \N \N \N 92345 V.hondoensis Viola Viola hondoensis \N \N \N \N \N 92346 G.contorta Gentianopsis Gentianopsis contorta \N \N \N \N \N 92347 \N genus Rhizanthes \N \N \N \N \N 92348 C.stalagmifera Caralluma Caralluma stalagmifera \N \N \N \N \N 92349 A.vitiensis Aglaia Aglaia vitiensis \N \N \N \N \N 92350 A.aemula Anthriscus Anthriscus aemula \N \N \N \N \N 92351 S.leendertziae Stapelia Stapelia leendertziae \N \N \N \N \N 92352 \N varietas Chaetanthera elegans var. elegans \N \N \N \N \N 92353 D.GDV-2010 Diplotaenia Diplotaenia sp. 1 GDV-2010 \N \N \N \N \N 92354 A.blanda Anemone Anemone blanda \N \N \N \N \N 92355 C.darwinii Carex Carex darwinii \N \N \N \N \N 92356 A.pectinatus Araeococcus Araeococcus pectinatus \N \N \N \N \N 92357 A.retusus Ariocarpus Ariocarpus retusus \N \N \N \N \N 92358 P.gw1201 Poikilospermum Poikilospermum sp. gw1201 \N \N \N \N \N 92359 A.velutina Armeria Armeria velutina \N \N \N \N \N 92360 A.alticola Austrobuxus Austrobuxus alticola \N \N \N \N \N 92361 \N subspecies Carex bigelowii subsp. bigelowii \N \N \N \N \N 92362 A.cornifolia Annona Annona cornifolia \N \N \N \N \N 92363 P.velutina Palaua Palaua velutina \N \N \N \N \N 92364 N.calycina Nierembergia Nierembergia calycina \N \N \N \N \N 92365 B.plicata Boesenbergia Boesenbergia plicata \N \N \N \N \N 92366 C.capitatus Cyperus Cyperus capitatus \N \N \N \N \N 92367 M.grandiflora Magnolia Magnolia grandiflora southern magnolia \N \N \N \N 92368 D.cariensis Digitalis Digitalis cariensis \N \N \N \N \N 92369 T.SFB-2011 Triphyophyllum Triphyophyllum sp. SFB-2011 \N \N \N \N \N 92370 H.huascoense Heliotropium Heliotropium huascoense \N \N \N \N \N 92371 B.cucullata Brassavola Brassavola cucullata \N \N \N \N \N 92372 A.populifolia Agarista Agarista populifolia pipestem wood \N \N \N \N 92373 S.koehneana Sorbus Sorbus koehneana \N \N \N \N \N 92374 I.venusta Inga Inga venusta \N \N \N \N \N 92375 E.ovata Eucalyptus Eucalyptus ovata \N \N \N \N \N 92376 \N genus Salix willows \N \N \N \N 92377 F.badhysi Ferula Ferula badhysi \N \N \N \N \N 92378 \N varietas Salvia glabrescens var. glabrescens \N \N \N \N \N 92379 C.ambigua Caragana Caragana ambigua \N \N \N \N \N 92380 A.oppositifolia Acmella Acmella oppositifolia \N \N \N \N \N 92381 M.ulei Markea Markea ulei \N \N \N \N \N 92382 E.balsamifera Euphorbia Euphorbia balsamifera \N \N \N \N \N 92383 T.kingii Trifolium Trifolium kingii \N \N \N \N \N 92384 \N genus Psephellus \N \N \N \N \N 92385 H.integrifolia Hebenstretia Hebenstretia integrifolia \N \N \N \N \N 92386 \N genus Isopyrum \N \N \N \N \N 92387 C.dysantha Calliandra Calliandra dysantha \N \N \N \N \N 92388 H.ferdinandi-coburgii Haberlea Haberlea ferdinandi-coburgii \N \N \N \N \N 92389 C.indicum Chrysanthemum Chrysanthemum indicum \N \N \N \N \N 92390 A.saxatile Arisaema Arisaema saxatile \N \N \N \N \N 92391 T.daemelianum Toechima Toechima daemelianum \N \N \N \N \N 92392 V.shiragae Vitis Vitis shiragae \N \N \N \N \N 92393 P.bracteata Polyscias Polyscias bracteata \N \N \N \N \N 92394 P.wrightii Puya Puya wrightii \N \N \N \N \N 92395 \N genus Senecio \N \N \N \N \N 92396 S.comatum Schoenocaulon Schoenocaulon comatum \N \N \N \N \N 92397 A.orientale Allium Allium orientale \N \N \N \N \N 92398 R.prinophyllum Rhododendron Rhododendron prinophyllum \N \N \N \N \N 92399 \N genus Knoxia \N \N \N \N \N 92400 \N genus Lygodesmia \N \N \N \N \N 92401 C.library unclassified Coffea Coffea spp. mixed genomic library \N \N \N \N \N 92402 D.conjugata Dimorphandra Dimorphandra conjugata \N \N \N \N \N 92403 L.abyssinica Lychnis Lychnis abyssinica \N \N \N \N \N 92404 \N subspecies Arrhenatherum elatius subsp. bulbosum \N \N \N \N \N 92405 S.glabra Simaba Simaba glabra \N \N \N \N \N 92406 B.ankaizinense Bulbophyllum Bulbophyllum ankaizinense \N \N \N \N \N 92407 \N genus Xylia \N \N \N \N \N 92408 \N genus Russelia \N \N \N \N \N 92409 D.macrophylla Dacryodes Dacryodes macrophylla \N \N \N \N \N 92410 C.capillacea Carex Carex capillacea \N \N \N \N \N 92411 V.pseudo-orobus Vicia Vicia pseudo-orobus \N \N \N \N \N 92412 P.hutchisonii Pappobolus Pappobolus hutchisonii \N \N \N \N \N 92413 M.formosana Michelia Michelia formosana \N \N \N \N \N 92414 \N subfamily Dipterocarpoidae \N \N \N \N \N 92415 G.longibracteolata Gaultheria Gaultheria longibracteolata \N \N \N \N \N 92416 D.tenue Dasispermum Dasispermum tenue \N \N \N \N \N 92417 H.gossypina Halocharis Halocharis gossypina \N \N \N \N \N 92418 \N genus Pterospermum \N \N \N \N \N 92419 S.causiarum Sabal Sabal causiarum \N \N \N \N \N 92420 K.JT2006-1 Kaempferia Kaempferia sp. 1 JT2006-1 \N \N \N \N \N 92421 G.lutea Gagea Gagea lutea \N \N \N \N \N 92422 P.squarrosa Petrosimonia Petrosimonia squarrosa \N \N \N \N \N 92423 \N genus x Sophrolaeliocattleya \N \N \N \N \N 92424 H.deserticola Heliophila Heliophila deserticola \N \N \N \N \N 92425 \N genus Combera \N \N \N \N \N 92426 M.durangensis Muhlenbergia Muhlenbergia durangensis \N \N \N \N \N 92427 P.digyna Portulaca Portulaca digyna \N \N \N \N \N 92428 B.101 Begonia Begonia cf. baviensis Forrest 101 \N \N \N \N \N 92429 S.gypsophilum Sedum Sedum gypsophilum \N \N \N \N \N 92430 \N subspecies Betula pubescens subsp. tortuosa mountain birch \N \N \N \N 92431 C.hispida Carex Carex hispida \N \N \N \N \N 92432 H.brasiliensis Hypochaeris Hypochaeris brasiliensis \N \N \N \N \N 92433 P.macrophylla Pycnocoma Pycnocoma macrophylla \N \N \N \N \N 92434 M.mongolica Morus Morus mongolica Mongolian mulberry \N \N \N \N 92435 D.kassii Draba Draba kassii \N \N \N \N \N 92436 P.octandrus Potamogeton Potamogeton octandrus \N \N \N \N \N 92437 C.echinocarpus Croton Croton echinocarpus \N \N \N \N \N 92438 \N varietas Fraxinus xanthoxyloides var. dimorpha \N \N \N \N \N 92439 L.purdomii Ligularia Ligularia purdomii \N \N \N \N \N 92440 G.quadriradiata Galinsoga Galinsoga quadriradiata \N \N \N \N \N 92441 \N genus Tropaeolum \N \N \N \N \N 92442 \N subspecies Chrysanthemoides monilifera subsp. septentrionalis \N \N \N \N \N 92443 F.iidana Ficus Ficus iidana \N \N \N \N \N 92444 F.fordii Ferocactus Ferocactus fordii \N \N \N \N \N 92445 V.bourgaeana Vitis Vitis bourgaeana \N \N \N \N \N 92446 V.angustifolia Vernonia Vernonia angustifolia \N \N \N \N \N 92447 P.edulis Passiflora Passiflora edulis passion fruit \N \N \N \N 92448 P.juniperina Pultenaea Pultenaea juniperina \N \N \N \N \N 92449 T.butcheri Telipogon Telipogon butcheri \N \N \N \N \N 92450 I.glomerata Inula Inula glomerata \N \N \N \N \N 92451 B.canescens Berkheya Berkheya canescens \N \N \N \N \N 92452 A.obscura Artemisia Artemisia obscura \N \N \N \N \N 92453 M.3180 Maxillaria Maxillaria aff. aggregata Whitten 3180 \N \N \N \N \N 92454 D.laevigata Dubautia Dubautia laevigata \N \N \N \N \N 92455 T.vulgaris Thymus Thymus vulgaris garden thyme,thyme \N \N \N \N 92456 L.ferdinandi Lonicera Lonicera ferdinandi \N \N \N \N \N 92457 A.cyperoides Aphelia Aphelia cyperoides \N \N \N \N \N 92458 A.serrulata Alnus Alnus serrulata \N \N \N \N \N 92459 \N genus Einadia \N \N \N \N \N 92460 E.carolinianus Elephantopus Elephantopus carolinianus \N \N \N \N \N 92461 L.bachmannii Lachenalia Lachenalia bachmannii \N \N \N \N \N 92462 C.bulbosa Cardamine Cardamine bulbosa bulbous bittercress \N \N \N \N 92463 B.aptera Begonia Begonia formosana x Begonia aptera \N \N \N \N \N 92464 \N varietas Balsamorhiza hookeri var. lagocephala \N \N \N \N \N 92465 T.melvillei Triodia Triodia melvillei \N \N \N \N \N 92466 P.baronii Pachypodium Pachypodium baronii \N \N \N \N \N 92467 \N subspecies Pimelea flava subsp. dichotoma \N \N \N \N \N 92468 C.tomentosus Chisocheton Chisocheton tomentosus \N \N \N \N \N 92469 \N tribe Symphonieae \N \N \N \N \N 92470 P.euryphyllum Piper Piper euryphyllum \N \N \N \N \N 92471 T.TL141-2 unclassified Taraxacum Taraxacum (sect. Naevosa) sp. TL141-2 \N \N \N \N \N 92472 B.heterodonta Brachyscome Brachyscome heterodonta \N \N \N \N \N 92473 A.petersonii Aspalathus Aspalathus petersonii \N \N \N \N \N 92474 F.orthoneura Ficus Ficus orthoneura \N \N \N \N \N 92475 S.iarae Sinningia Sinningia iarae \N \N \N \N \N 92476 S.sorensenis Silene Silene sorensenis \N \N \N \N \N 92477 H.triandra Hirtella Hirtella triandra \N \N \N \N \N 92478 P.costaricense Pleodendron Pleodendron costaricense \N \N \N \N \N 92479 A.circinatum Androcymbium Androcymbium circinatum \N \N \N \N \N 92480 S.glatzii Stenia Stenia glatzii \N \N \N \N \N 92481 D.pachyneura Dodonaea Dodonaea pachyneura \N \N \N \N \N 92482 P.muktinathensis Physospermopsis Physospermopsis muktinathensis \N \N \N \N \N 92483 E.usambarense Englerodendron Englerodendron usambarense \N \N \N \N \N 92484 \N tribe Mentheae \N \N \N \N \N 92485 L.suffruticosum Linum Linum suffruticosum \N \N \N \N \N 92486 S.mexicana Stylosanthes Stylosanthes mexicana \N \N \N \N \N 92487 A.kuhlmannii Arachis Arachis kuhlmannii \N \N \N \N \N 92488 L.exigua Leavenworthia Leavenworthia exigua \N \N \N \N \N 92489 D.cornutissima Dicerandra Dicerandra cornutissima \N \N \N \N \N 92490 P.trichoneuron Piper Piper trichoneuron \N \N \N \N \N 92491 E.integrifolia Eurybia Eurybia integrifolia \N \N \N \N \N 92492 S.menziesii Silene Silene menziesii \N \N \N \N \N 92493 M.ustulata Melanostachya Melanostachya ustulata \N \N \N \N \N 92494 A.tincta Aristida Aristida tincta \N \N \N \N \N 92495 M.tricolor Moraea Moraea tricolor \N \N \N \N \N 92496 \N varietas Saxifraga umbellulata var. pectinata \N \N \N \N \N 92497 B.orbicularis Barbosella Barbosella orbicularis \N \N \N \N \N 92498 \N genus Ixianthes \N \N \N \N \N 92499 A.gerrardii Acacia Acacia gerrardii \N \N \N \N \N 92500 J.6737 unclassified Acanthaceae Justicieae sp. Daniel 6737 \N \N \N \N \N 92501 A.yunnanense Arisaema Arisaema yunnanense \N \N \N \N \N 92502 H.ussuriense Hylotelephium Hylotelephium ussuriense \N \N \N \N \N 92503 G.raineri Gymnocalycium Gymnocalycium raineri \N \N \N \N \N 92504 D.majalis Dactylorhiza Dactylorhiza majalis \N \N \N \N \N 92505 C.psilosepalus Cistus Cistus psilosepalus \N \N \N \N \N 92506 \N varietas Sophora alopecuroides var. alopecuroides \N \N \N \N \N 92507 E.parkinsonianum Epidendrum Epidendrum parkinsonianum \N \N \N \N \N 92508 C.salicifolia Calceolaria Calceolaria salicifolia \N \N \N \N \N 92509 M.paupera Mimosa Mimosa paupera \N \N \N \N \N 92510 \N forma Rhipsalis teres f. capilliformis \N \N \N \N \N 92511 C.aristata Centrolepis Centrolepis aristata \N \N \N \N \N 92512 \N genus Tragia \N \N \N \N \N 92513 F.SH-2010 Flacourtia Flacourtia sp. SH-2010 \N \N \N \N \N 92514 S.tonkinensis Sophora Sophora tonkinensis \N \N \N \N \N 92515 \N varietas Antirrhinum majus var. pseudomajus \N \N \N \N \N 92516 C.botschantzevii Cousinia Cousinia botschantzevii \N \N \N \N \N 92517 \N genus Readea \N \N \N \N \N 92518 L.australis Leandra Leandra australis \N \N \N \N \N 92519 \N subspecies Sorghum bicolor subsp. x drummondii Sudan grass,chicken-corn,shattercane \N \N \N \N 92520 G.brachycalyx Gyrandra Gyrandra brachycalyx \N \N \N \N \N 92521 S.leptostachya Saranthe Saranthe leptostachya \N \N \N \N \N 92522 H.woodii Heracleum Heracleum woodii \N \N \N \N \N 92523 N.poweri Neisosperma Neisosperma poweri \N \N \N \N \N 92524 E.quinaultense Erythronium Erythronium quinaultense \N \N \N \N \N 92525 S.nitida Saintpaulia Saintpaulia nitida \N \N \N \N \N 92526 A.pendula Albuca Albuca pendula \N \N \N \N \N 92527 C.ramosa Coptis Coptis ramosa \N \N \N \N \N 92528 M.gracilis Manihot Manihot gracilis \N \N \N \N \N 92529 \N no rank Paphiopedilum 'Dark Roller' x Paphiopedilum rothschildianum \N \N \N \N \N 92530 G.thermalis Gentianopsis Gentianopsis thermalis \N \N \N \N \N 92531 M.lindenii Moritzia Moritzia lindenii \N \N \N \N \N 92532 S.kerrii Sauropus Sauropus kerrii \N \N \N \N \N 92533 P.acariianthus Pteropepon Pteropepon acariianthus \N \N \N \N \N 92534 O.falcatum Oreophyton Oreophyton falcatum \N \N \N \N \N 92535 C.gigantospermum Chenopodium Chenopodium gigantospermum \N \N \N \N \N 92536 P.verruculosa Praravinia Praravinia verruculosa \N \N \N \N \N 92537 L.1289 Lithocarpus Lithocarpus sp. 1289 \N \N \N \N \N 92538 \N genus Actephila \N \N \N \N \N 92539 \N genus Calotesta \N \N \N \N \N 92540 P.auriculata Plumbago Plumbago auriculata Cape leadwort \N \N \N \N 92541 S.fluitans Schoenus Schoenus fluitans \N \N \N \N \N 92542 U.ramosa Urochloa Urochloa ramosa \N \N \N \N \N 92543 O.polycephalus Oreopanax Oreopanax polycephalus \N \N \N \N \N 92544 R.schumannianum Rhodognaphalon Rhodognaphalon schumannianum \N \N \N \N \N 92545 M.727 Mammea Mammea sp. Laman et al. TL 727 \N \N \N \N \N 92546 M.sellowiana Miconia Miconia sellowiana \N \N \N \N \N 92547 S.hayatana Salvia Salvia hayatana \N \N \N \N \N 92548 T.purpurea Triraphis Triraphis purpurea \N \N \N \N \N 92549 U.vulgaris Utricularia Utricularia vulgaris \N \N \N \N \N 92550 D.cosmelioides Dracophyllum Dracophyllum cosmelioides \N \N \N \N \N 92551 L.schaffneriana Lilaeopsis Lilaeopsis schaffneriana \N \N \N \N \N 92552 T.andersonii Tripsacum Tripsacum andersonii \N \N \N \N \N 92553 H.stigonocarpa Hymenaea Hymenaea stigonocarpa \N \N \N \N \N 92554 M.tenuifolium Myoporum Myoporum tenuifolium \N \N \N \N \N 92555 \N genus Falcataria \N \N \N \N \N 92556 \N genus Aragoa \N \N \N \N \N 92557 P.monoensis Phacelia Phacelia monoensis \N \N \N \N \N 92558 E.cestrifolia Euphorbia Euphorbia cestrifolia \N \N \N \N \N 92559 E.inflata Erica Erica inflata \N \N \N \N \N 92560 P.amabilis Pseudosasa Pseudosasa amabilis \N \N \N \N \N 92561 P.brevicaulis Psychotria Psychotria brevicaulis \N \N \N \N \N 92562 S.turkestanica Stipa Stipa turkestanica \N \N \N \N \N 92563 V.robinsonii Verbesina Verbesina robinsonii \N \N \N \N \N 92564 B.nudata Bigelowia Bigelowia nudata \N \N \N \N \N 92565 \N varietas Lomatium triternatum var. platycarpum \N \N \N \N \N 92566 R.sargentianum Rhododendron Rhododendron sargentianum \N \N \N \N \N 92567 S.perlmanii Silene Silene perlmanii \N \N \N \N \N 92568 W.multicaulis Wahlenbergia Wahlenbergia multicaulis \N \N \N \N \N 92569 L.africana Lysimachia Lysimachia africana \N \N \N \N \N 92570 S.sinica Sasa Sasa sinica \N \N \N \N \N 92571 P.dicoccos Psydrax Psydrax dicoccos \N \N \N \N \N 92572 D.kuroiwai Diospyros Diospyros kuroiwai \N \N \N \N \N 92573 \N genus Pterygopleurum \N \N \N \N \N 92574 G.tenuissima Geonoma Geonoma tenuissima \N \N \N \N \N 92575 \N subspecies Corymbia citriodora subsp. variegata \N \N \N \N \N 92576 \N no rank Vernonieae incertae sedis \N \N \N \N \N 92577 A.amellus Aster Aster amellus Italian starwort \N \N \N \N 92578 R.pachyphyllum Rhododendron Rhododendron pachyphyllum \N \N \N \N \N 92579 S.asoca Saraca Saraca asoca \N \N \N \N \N 92580 \N genus Spiraeopsis \N \N \N \N \N 92581 P.cinnamomea Polyalthia Polyalthia cinnamomea \N \N \N \N \N 92582 G.macrostipula Gaertnera Gaertnera macrostipula \N \N \N \N \N 92583 P.indecora Packera Packera indecora \N \N \N \N \N 92584 \N genus Arnottia \N \N \N \N \N 92585 L.inermis Livistona Livistona inermis \N \N \N \N \N 92586 M.archeri Macrolobium Macrolobium archeri \N \N \N \N \N 92587 \N genus Torricellia \N \N \N \N \N 92588 C.bonariensis Cardamine Cardamine bonariensis \N \N \N \N \N 92589 \N genus Cajanus \N \N \N \N \N 92590 P.brownei Psychotria Psychotria brownei \N \N \N \N \N 92591 \N genus Cardiopteris \N \N \N \N \N 92592 T.convolvulifolia Thunbergia Thunbergia convolvulifolia \N \N \N \N \N 92593 C.graeca Carlina Carlina graeca \N \N \N \N \N 92594 D.sherriffii Draba Draba sherriffii \N \N \N \N \N 92595 A.604 Auxemma Auxemma sp. Quintona et al. 604 \N \N \N \N \N 92596 D.yunnanensis Draba Draba yunnanensis \N \N \N \N \N 92597 D.basilare Dichocarpum Dichocarpum basilare \N \N \N \N \N 92598 \N genus Neuracanthus \N \N \N \N \N 92599 G.mezianus Gonocarpus Gonocarpus mezianus \N \N \N \N \N 92600 P.richardianum Paphiopedilum Paphiopedilum richardianum \N \N \N \N \N 92601 S.himalaicus Stachyurus Stachyurus himalaicus \N \N \N \N \N 92602 S.carpetana Saxifraga Saxifraga carpetana \N \N \N \N \N 92603 P.incanus Philadelphus Philadelphus incanus \N \N \N \N \N 92604 N.beaglensis Nymphoides Nymphoides beaglensis \N \N \N \N \N 92605 P.sericea Protorhus Protorhus sericea \N \N \N \N \N 92606 D.nodosum Dendrobium Dendrobium nodosum \N \N \N \N \N 92607 Q.lamellosa Quercus Quercus lamellosa \N \N \N \N \N 92608 Z.glaucum Zygophyllum Zygophyllum glaucum \N \N \N \N \N 92609 R.scrithalis Ranunculus Ranunculus scrithalis \N \N \N \N \N 92610 \N genus Suaeda sea-blites,seepweeds \N \N \N \N 92611 H.longisepala Hemiboeopsis Hemiboeopsis longisepala \N \N \N \N \N 92612 L.purpureosplendens Luzula Luzula purpureosplendens \N \N \N \N \N 92613 S.aristella Stipa Stipa aristella \N \N \N \N \N 92614 A.zhengheensis Prunus Armeniaca zhengheensis \N \N \N \N \N 92615 R.waria Rhaphidophora Rhaphidophora waria \N \N \N \N \N 92616 O.chathamica Olearia Olearia chathamica \N \N \N \N \N 92617 L.teretifolium Leucadendron Leucadendron teretifolium \N \N \N \N \N 92618 \N genus Comoranthus \N \N \N \N \N 92619 S.rhytidocarpa Saussurea Saussurea rhytidocarpa \N \N \N \N \N 92620 P.inuloides Phalacrachena Phalacrachena inuloides \N \N \N \N \N 92621 S.asteranthos Sauropus Sauropus asteranthos \N \N \N \N \N 92622 T.s.n. Tridactyle Tridactyle sp. Szlachetko s.n. \N \N \N \N \N 92623 E.tonkinensis Exbucklandia Exbucklandia tonkinensis \N \N \N \N \N 92624 U.JEES-2007 Urophyllum Urophyllum sp. 1 JEES-2007 \N \N \N \N \N 92625 \N genus Grindelia \N \N \N \N \N 92626 \N genus Anaphalis \N \N \N \N \N 92627 E.ritrodes Echinops Echinops ritrodes \N \N \N \N \N 92628 R.andegavensis Rosa Rosa andegavensis \N \N \N \N \N 92629 \N subspecies Gilia capitata subsp. pacifica \N \N \N \N \N 92630 S.ferox Smilax Smilax ferox \N \N \N \N \N 92631 M.hastipetala Monodora Monodora hastipetala \N \N \N \N \N 92632 G.dinklagei Globimetula Globimetula dinklagei \N \N \N \N \N 92633 E.nitida Eurya Eurya nitida \N \N \N \N \N 92634 P.stenodes Panicum Panicum stenodes \N \N \N \N \N 92635 M.alliacea Mansoa Mansoa alliacea \N \N \N \N \N 92636 O.scabra Otiophora Otiophora scabra \N \N \N \N \N 92637 L.mollis Llagunoa Llagunoa mollis \N \N \N \N \N 92638 M.hippuroides Myriophyllum Myriophyllum hippuroides \N \N \N \N \N 92639 M.gemmipara Maniltoa Maniltoa gemmipara \N \N \N \N \N 92640 D.bracteosum Dendrobium Dendrobium bracteosum \N \N \N \N \N 92641 S.micrantha Stevia Stevia micrantha \N \N \N \N \N 92642 L.ardisioides Lysimachia Lysimachia ardisioides \N \N \N \N \N 92643 C.pittosporoides Cinnamomum Cinnamomum pittosporoides \N \N \N \N \N 92644 \N varietas Carex debilis var. debilis \N \N \N \N \N 92645 A.kirkii Albuca Albuca kirkii \N \N \N \N \N 92646 M.GW2413 Maniltoa Maniltoa cf. plurijuga GW2413 \N \N \N \N \N 92647 T.caspica Typha Typha caspica \N \N \N \N \N 92648 \N family Xanthoceraceae \N \N \N \N \N 92649 \N genus Prainea \N \N \N \N \N 92650 \N genus Isocoma \N \N \N \N \N 92653 N.kotschyi Nervilia Nervilia kotschyi \N \N \N \N \N 92654 C.purpureoviridis Cyperus Cyperus purpureoviridis \N \N \N \N \N 92655 K.filifolia Kobresia Kobresia filifolia \N \N \N \N \N 92656 T.scariosa Triodia Triodia scariosa \N \N \N \N \N 92657 P.mortehani Piptostigma Piptostigma mortehani \N \N \N \N \N 92658 M.dinterii Manuleopsis Manuleopsis dinterii \N \N \N \N \N 92659 S.novi-belgii Symphyotrichum Symphyotrichum novi-belgii New York aster \N \N \N \N 92660 A.COAN Arachis Arachis sp. COAN \N \N \N \N \N 92661 M.dolichopoda Miconia Miconia dolichopoda \N \N \N \N \N 92662 P.mosenii Piper Piper mosenii \N \N \N \N \N 92663 M.eburnea Maxillaria Maxillaria eburnea \N \N \N \N \N 92664 V.javanica Veronica Veronica javanica duo zhi po po na,hama-kuwagata \N \N \N \N 92665 C.6357 Chondroscaphe Chondroscaphe cf. laevis Dressler 6357 \N \N \N \N \N 92666 P.riphaea Poa Poa riphaea \N \N \N \N \N 92667 O.grandis Oenothera Oenothera grandis \N \N \N \N \N 92668 M.oblonga Mimosa Mimosa oblonga \N \N \N \N \N 92669 R.calcoma Ramirezella Ramirezella calcoma \N \N \N \N \N 92670 F.thurberi Festuca Festuca thurberi \N \N \N \N \N 92671 A.Mad025 Adenia Adenia sp. Hearn Mad025 \N \N \N \N \N 92672 B.welwitschii Buchnera Buchnera welwitschii \N \N \N \N \N 92673 \N genus Aoranthe \N \N \N \N \N 92674 A.lanata Antennaria Antennaria lanata \N \N \N \N \N 92675 V.longipedunculata Varronia Varronia longipedunculata \N \N \N \N \N 92676 C.giraldii Callicarpa Callicarpa giraldii \N \N \N \N \N 92677 I.linnaei Indigofera Indigofera linnaei \N \N \N \N \N 92678 M.cervina Mentha Mentha cervina \N \N \N \N \N 92679 T.bakeri Tulipa Tulipa bakeri \N \N \N \N \N 92680 M.caffra Mimusops Mimusops caffra \N \N \N \N \N 92681 A.forrestii Actinodaphne Actinodaphne forrestii \N \N \N \N \N 92682 \N genus Fitchia \N \N \N \N \N 92683 A.pseudoscaber Asparagus Asparagus pseudoscaber \N \N \N \N \N 92684 C.columnaris Croton Croton columnaris \N \N \N \N \N 92685 \N no rank Rubioideae incertae sedis \N \N \N \N \N 92686 A.pumilum Argostemma Argostemma pumilum \N \N \N \N \N 92687 C.aparinoides Campanula Campanula aparinoides \N \N \N \N \N 92688 D.capitellata Darwinia Darwinia capitellata \N \N \N \N \N 92689 T.heterophylla Turraea Turraea heterophylla \N \N \N \N \N 92690 A.anisochilus Adenocarpus Adenocarpus anisochilus \N \N \N \N \N 92691 D.carpaticum Doronicum Doronicum carpaticum \N \N \N \N \N 92692 O.heterophyllus Osmanthus Osmanthus heterophyllus \N \N \N \N \N 92693 V.trifolia Vitex Vitex trifolia Indian privet,hand-of-Mary,man jing,san ye man jing \N \N \N \N 92694 T.poeppigiana Triplaris Triplaris poeppigiana \N \N \N \N \N 92695 \N subspecies Potamogeton pusillus subsp. pusillus \N \N \N \N \N 92696 \N tribe Psittacantheae \N \N \N \N \N 92697 V.depauperata Vaughania Vaughania depauperata \N \N \N \N \N 92698 \N varietas Chamaecrista desvauxii var. linearis \N \N \N \N \N 92699 A.onobrychis Astragalus Astragalus onobrychis \N \N \N \N \N 92700 V.ovata Veronica Veronica ovata \N \N \N \N \N 92701 B.microphyllus Brachysiphon Brachysiphon microphyllus \N \N \N \N \N 92702 \N genus Cyclophyllum \N \N \N \N \N 92703 D.griffithii Diplotaxis Diplotaxis griffithii \N \N \N \N \N 92704 O.balansae Oncotheca Oncotheca balansae \N \N \N \N \N 92705 M.ostentans Macrocarpaea Macrocarpaea ostentans \N \N \N \N \N 92706 S.babiana Saxifraga Saxifraga babiana \N \N \N \N \N 92707 C.songarica Chorispora Chorispora songarica \N \N \N \N \N 92708 H.cyclocarpum Heracleum Heracleum cyclocarpum \N \N \N \N \N 92709 T.candidatum Taraxacum Taraxacum candidatum \N \N \N \N \N 92710 A.amurense Arisaema Arisaema amurense \N \N \N \N \N 92711 P.hillii Potamogeton Potamogeton hillii \N \N \N \N \N 92712 \N genus Hypserpa \N \N \N \N \N 92713 C.moorcroftii Carex Carex moorcroftii \N \N \N \N \N 92714 \N genus Archiatriplex \N \N \N \N \N 92715 A.spicata Aspalathus Aspalathus spicata \N \N \N \N \N 92716 N.wallisii Neomoorea Neomoorea wallisii \N \N \N \N \N 92717 T.capituliflorum Thesium Thesium capituliflorum \N \N \N \N \N 92718 A.siskiyouense Arceuthobium Arceuthobium siskiyouense \N \N \N \N \N 92719 \N subspecies Pimelea latifolia subsp. latifolia \N \N \N \N \N 92720 B.maximowicziana Betula Betula maximowicziana monarch birch \N \N \N \N 92721 P.microcarpum Piptatherum Piptatherum microcarpum \N \N \N \N \N 92722 C.schroederiana Cattleya Cattleya schroederiana \N \N \N \N \N 92723 M.malacodes Moorochloa Moorochloa malacodes \N \N \N \N \N 92724 \N varietas Phaeostigma variifolium var. ramosum \N \N \N \N \N 92725 C.grandifolia Coprosma Coprosma grandifolia \N \N \N \N \N 92726 C.salicifolius Chimonanthus Chimonanthus salicifolius \N \N \N \N \N 92727 L.andina Lachemilla Lachemilla andina \N \N \N \N \N 92728 \N no rank Heldreichia bupleurifolia ssp. KM-2009d \N \N \N \N \N 92729 B.vitis-idaea Breynia Breynia vitis-idaea \N \N \N \N \N 92730 D.frutescens Dalbergia Dalbergia frutescens \N \N \N \N \N 92731 \N genus Dumasia \N \N \N \N \N 92732 S.nana Symplocos Symplocos nana \N \N \N \N \N 92733 A.purpureorubrum Amomum Amomum purpureorubrum \N \N \N \N \N 92734 Z.formosa Zapoteca Zapoteca formosa \N \N \N \N \N 92735 R.phoenicia Rosa Rosa phoenicia \N \N \N \N \N 92736 \N varietas Crotalaria pallida var. obovata \N \N \N \N \N 92737 \N genus Jaumea \N \N \N \N \N 92738 O.fasciculata Orobanche Orobanche fasciculata \N \N \N \N \N 92739 T.acuminatus Thamnochortus Thamnochortus acuminatus \N \N \N \N \N 92740 C.kirkii Crassula Crassula kirkii \N \N \N \N \N 92741 A.kurzii Alstonia Alstonia kurzii \N \N \N \N \N 92742 M.excoriata Marlierea Marlierea excoriata \N \N \N \N \N 92743 C.viridiflorum Cyathostemma Cyathostemma viridiflorum \N \N \N \N \N 92744 C.marinum Catapodium Catapodium marinum \N \N \N \N \N 92745 \N order Berberidopsidales \N \N \N \N \N 92746 F.nitens Feldstonia Feldstonia nitens \N \N \N \N \N 92747 L.sidoides Lippia Lippia sidoides \N \N \N \N \N 92748 B.parishii Boechera Boechera parishii dwarf rockcress \N \N \N \N 92749 M.cayennense Mesosetum Mesosetum cayennense \N \N \N \N \N 92750 N.javanica Nyssa Nyssa javanica \N \N \N \N \N 92751 S.virginica Salicornia Salicornia virginica \N \N \N \N \N 92752 A.stellifera Asclepias Asclepias stellifera \N \N \N \N \N 92753 M.howellii Microseris Microseris howellii Howell's silverpuffs \N \N \N \N 92754 B.bretschneideri Bassecoia Bassecoia bretschneideri \N \N \N \N \N 92755 C.fargesii Catalpa Catalpa fargesii \N \N \N \N \N 92756 H.darwinii Hoya Hoya darwinii \N \N \N \N \N 92757 P.ecklonii Pentaschistis Pentameris ecklonii \N \N \N \N \N 92758 \N genus Colea \N \N \N \N \N 92759 V.erinoides Veronica Veronica erinoides \N \N \N \N \N 92760 A.dactylocarpus Astragalus Astragalus dactylocarpus \N \N \N \N \N 92761 J.diphylla Jeffersonia Jeffersonia diphylla \N \N \N \N \N 92762 \N genus Paloue \N \N \N \N \N 92763 T.pinnatifidum Triosteum Triosteum pinnatifidum \N \N \N \N \N 92764 \N varietas Achillea millefolium var. litoralis \N \N \N \N \N 92765 T.menziesii Tolmiea Tolmiea menziesii \N \N \N \N \N 92766 T.speciosa Trichocline Trichocline speciosa \N \N \N \N \N 92767 S.decussatum Syzygium Syzygium decussatum \N \N \N \N \N 92768 A.elasticus Artocarpus Artocarpus elasticus \N \N \N \N \N 92769 P.denudans Prosopis Prosopis denudans \N \N \N \N \N 92770 C.bentleyi Corallorhiza Corallorhiza bentleyi \N \N \N \N \N 92771 M.8274 Myxochlamys Myxochlamys sp. Nagamasu 8274 \N \N \N \N \N 92772 T.cereale x Triticosecale Triticum aestivum x Secale cereale octaploid triticale \N \N \N \N 92773 E.panganensis Emelianthe Emelianthe panganensis \N \N \N \N \N 92774 A.glandulosa Albuca Albuca glandulosa \N \N \N \N \N 92775 L.hirta Lespedeza Lespedeza hirta hairy bush-clover \N \N \N \N 92776 F.rubriflora Faurea Faurea rubriflora \N \N \N \N \N 92777 A.serotina Arachnorchis Arachnorchis serotina \N \N \N \N \N 92778 C.nigricans Cytisus Cytisus nigricans \N \N \N \N \N 92779 A.ammophila Anthemis Anthemis ammophila \N \N \N \N \N 92780 \N genus Jovellana \N \N \N \N \N 92781 G.nakaiana Gagea Gagea nakaiana \N \N \N \N \N 92782 S.pygmaea Scorzonera Scorzonera pygmaea \N \N \N \N \N 92783 C.vernalis Cupania Cupania vernalis \N \N \N \N \N 92784 I.chrysotricha Irenella Irenella chrysotricha \N \N \N \N \N 92785 \N genus Neobenthamia \N \N \N \N \N 92786 P.subcordata Prunus Prunus subcordata Klamath plum,Sierra plum \N \N \N \N 92787 C.plicatissima Coelogyne Coelogyne plicatissima \N \N \N \N \N 92788 S.myrtilloides Salix Salix myrtilloides \N \N \N \N \N 92789 A.borneensis Amorphophallus Amorphophallus borneensis \N \N \N \N \N 92790 C.ligulatum Cynanchum Cynanchum ligulatum \N \N \N \N \N 92791 P.metaszetschuanica Pedicularis Pedicularis metaszetschuanica \N \N \N \N \N 92792 S.hattorianus Scirpus Scirpus hattorianus \N \N \N \N \N 92793 E.natalense Englerophytum Englerophytum natalense \N \N \N \N \N 92794 G.argenteum Geranium Geranium argenteum \N \N \N \N \N 92795 \N tribe Helenieae \N \N \N \N \N 92796 A.majus Ammi Ammi majus ameo mayor,bishop's-weed,cicuta-negra,lady's-lace \N \N \N \N 92797 L.caulocarpa Litsea Litsea caulocarpa \N \N \N \N \N 92798 D.hispidus Dipterocarpus Dipterocarpus hispidus \N \N \N \N \N 92799 P.rubicundus Penstemon Penstemon rubicundus \N \N \N \N \N 92800 A.tetramera Asimina Asimina tetramera \N \N \N \N \N 92801 S.kilaueae Scaevola Scaevola kilaueae \N \N \N \N \N 92802 S.trinervius Sauropus Sauropus trinervius \N \N \N \N \N 92803 \N genus Tetrathyrium \N \N \N \N \N 92804 M.chamaepitys Muraltia Muraltia chamaepitys \N \N \N \N \N 92805 L.ovalifolia Lyonia Lyonia ovalifolia \N \N \N \N \N 92806 E.biterranea Eucalyptus Eucalyptus biterranea \N \N \N \N \N 92807 B.dorotheae Barkeria Barkeria dorotheae \N \N \N \N \N 92808 \N varietas Carex lucorum var. austrolucorum \N \N \N \N \N 92809 F.oldhamii Fissistigma Fissistigma oldhamii \N \N \N \N \N 92810 \N genus Acanthosicyos \N \N \N \N \N 92811 C.pterogona Clutia Clutia pterogona \N \N \N \N \N 92812 A.99-132 Asphodelus Asphodelus sp. Pires 99-132 \N \N \N \N \N 92813 E.muirii Elegia Elegia muirii \N \N \N \N \N 92814 C.filifolia Carpha Carpha filifolia \N \N \N \N \N 92815 A.caudata Aphyllorchis Aphyllorchis caudata \N \N \N \N \N 92816 D.tenuifolia Diplotaxis Diplotaxis tenuifolia \N \N \N \N \N 92817 H.yezoensis Hemerocallis Hemerocallis yezoensis \N \N \N \N \N 92818 H.kingdonii Heracleum Heracleum kingdonii \N \N \N \N \N 92819 P.grandis Plagius Plagius grandis \N \N \N \N \N 92820 A.pyrifolia Acacia Acacia pyrifolia \N \N \N \N \N 92821 \N varietas Aster indicus var. pinnatifidus \N \N \N \N \N 92822 \N subspecies Gasteranthus calcaratus subsp. calceolus \N \N \N \N \N 92823 M.radula Macairea Macairea radula \N \N \N \N \N 92824 A.scopulorum Aralia Aralia scopulorum \N \N \N \N \N 92825 M.guianensis Maieta Maieta guianensis \N \N \N \N \N 92826 H.parviflora Habenaria Habenaria parviflora \N \N \N \N \N 92827 G.hossei Gymnocalycium Gymnocalycium hossei \N \N \N \N \N 92828 M.manidea Mimosa Mimosa manidea \N \N \N \N \N 92829 P.involuta Pinguicula Pinguicula involuta \N \N \N \N \N 92830 M.coccigera Malpighia Malpighia coccigera dwarf holly \N \N \N \N 92831 S.pancheri Schefflera Schefflera pancheri \N \N \N \N \N 92832 L.A2 Lithocarpus Lithocarpus sp. A2 \N \N \N \N \N 92833 A.notata Acidosasa Acidosasa notata \N \N \N \N \N 92834 \N varietas Cymopterus acaulis var. higginsii \N \N \N \N \N 92835 V.aurantiaca Vernonia Vernonia aurantiaca \N \N \N \N \N 92836 O.dumetorum Oxalis Oxalis dumetorum \N \N \N \N \N 92837 B.macrocephala Brunia Brunia macrocephala \N \N \N \N \N 92838 L.diversifolia Litsea Litsea diversifolia \N \N \N \N \N 92839 N.nitida Nothofagus Nothofagus nitida \N \N \N \N \N 92840 P.neriifolia Protea Protea neriifolia \N \N \N \N \N 92841 S.triacanthus Scolosanthus Scolosanthus triacanthus \N \N \N \N \N 92842 M.bullata Macleania Macleania bullata \N \N \N \N \N 92843 A.polycephala Anthyllis Anthyllis polycephala \N \N \N \N \N 92844 R.petiolaris Ranunculus Ranunculus petiolaris \N \N \N \N \N 92845 E.calycina Erica Erica calycina \N \N \N \N \N 92846 \N genus Glossostipula \N \N \N \N \N 92847 M.jenischiana Maxillaria Maxillaria jenischiana \N \N \N \N \N 92848 P.tenuisecta Pedicularis Pedicularis tenuisecta \N \N \N \N \N 92849 H.novogaliciana Heliopsis Heliopsis aff. novogaliciana \N \N \N \N \N 92850 I.glomerata Indigofera Indigofera glomerata \N \N \N \N \N 93826 \N genus Chlorocardium \N \N \N \N \N 92851 E.angustifolium Echium Echium angustifolium \N \N \N \N \N 92852 N.fleckeri Neostrearia Neostrearia fleckeri \N \N \N \N \N 92853 G.styriaca Gentianella Gentianella styriaca \N \N \N \N \N 92854 T.macraei Trifolium Trifolium macraei \N \N \N \N \N 92855 A.malyschevii Allium Allium malyschevii \N \N \N \N \N 92856 O.macrobulbon Oncidium Oncidium macrobulbon \N \N \N \N \N 92857 B.korupensis Berlinia Berlinia korupensis \N \N \N \N \N 92858 S.pinnatus Sonchus Sonchus pinnatus \N \N \N \N \N 92859 \N genus Drusa \N \N \N \N \N 92860 \N genus Adenopodia \N \N \N \N \N 92861 D.andreettae Dracula Dracula andreettae \N \N \N \N \N 92862 S.filiformis Strobilanthes Strobilanthes filiformis \N \N \N \N \N 92863 U.minor Utricularia Utricularia minor lesser bladderwort \N \N \N \N 92864 R.bagshawei Rytigynia Rytigynia bagshawei \N \N \N \N \N 92865 \N genus Melampyrum \N \N \N \N \N 92866 A.majus Antirrhinum Antirrhinum majus garden snapdragon,snapdragon,snapdragon \N \N \N \N 92867 D.biflorus Dissochondrus Dissochondrus biflorus \N \N \N \N \N 92868 A.glaucescens Asclepias Asclepias glaucescens \N \N \N \N \N 92869 P.corintoananum Piper Piper corintoananum \N \N \N \N \N 92870 \N genus Rhodamnia \N \N \N \N \N 92871 B.mortoniana Besleria Besleria mortoniana \N \N \N \N \N 92872 P.tetragonolobus Psophocarpus Psophocarpus tetragonolobus Goa bean,asparagus bean,asparagus pea,winged bean,winged beans \N \N \N \N 92873 C.purpurea Coaxana Coaxana purpurea \N \N \N \N \N 92874 A.chortophila Aspalathus Aspalathus chortophila \N \N \N \N \N 92875 B.vouri Brochoneura Brochoneura vouri \N \N \N \N \N 92876 L.gmelinii Lathyrus Lathyrus gmelinii \N \N \N \N \N 92877 C.grewiifolius Croton Croton grewiifolius \N \N \N \N \N 92878 P.arborescens Pisoniella Pisoniella arborescens \N \N \N \N \N 92879 \N subspecies Fascicularia bicolor subsp. bicolor \N \N \N \N \N 92880 R.punjabensis Rhus Rhus punjabensis \N \N \N \N \N 92881 C.dirzoi Costus Costus dirzoi \N \N \N \N \N 92882 R.burchelli Riocreuxia Riocreuxia burchelli \N \N \N \N \N 92883 S.biltmoreana Smilax Smilax biltmoreana \N \N \N \N \N 92884 T.3061 Tagetes Tagetes sp. Nickrent 3061 \N \N \N \N \N 92885 S.wardii Silene Silene wardii \N \N \N \N \N 92886 R.anhweiense Rhododendron Rhododendron anhweiense \N \N \N \N \N 92887 A.tenerifolia Alchemilla Alchemilla tenerifolia \N \N \N \N \N 92888 \N varietas Ericameria nauseosa var. bernardina \N \N \N \N \N 92889 P.poiformis Poa Poa poiformis \N \N \N \N \N 92890 M.officinalis Magnolia Magnolia officinalis \N \N \N \N \N 92891 M.scandens Mikania Mikania scandens \N \N \N \N \N 92892 M.alpestris Maxillaria Maxillaria alpestris \N \N \N \N \N 92893 D.menziesii Dubautia Dubautia menziesii \N \N \N \N \N 92894 \N genus Sibara \N \N \N \N \N 92895 M.gracilis Musa Musa gracilis \N \N \N \N \N 92896 R.thibaudioides Rustia Rustia thibaudioides \N \N \N \N \N 92897 \N no rank environmental samples Taxonomy:493874 \N \N \N \N \N 92898 N.ampullacea Neoregelia Neoregelia ampullacea \N \N \N \N \N 92899 C.scandens Celastrus Celastrus scandens \N \N \N \N \N 92900 V.crista-galli Veronica Veronica crista-galli \N \N \N \N \N 92901 E.germainii Euphorbia Euphorbia germainii \N \N \N \N \N 92902 B.seminuda Banksia Banksia seminuda \N \N \N \N \N 92903 P.rhamnifolia Passiflora Passiflora rhamnifolia \N \N \N \N \N 92904 O.peirsonii Oreostemma Oreostemma peirsonii \N \N \N \N \N 92905 N.pumilio Needhamiella Needhamiella pumilio \N \N \N \N \N 92906 C.ulaei Campylocentrum Campylocentrum ulaei \N \N \N \N \N 92907 M.madisoniorum Matucana Matucana madisoniorum \N \N \N \N \N 92908 C.microcodon Chordifex Chordifex microcodon \N \N \N \N \N 92909 T.sertulariastrum Thesium Thesium sertulariastrum \N \N \N \N \N 92910 A.cuneifolia Amphithalea Amphithalea cuneifolia \N \N \N \N \N 92911 A.kruhsiana Artemisia Artemisia kruhsiana \N \N \N \N \N 92912 H.elegans Heterocentron Heterocentron elegans \N \N \N \N \N 92913 A.urens Acidoton Acidoton urens \N \N \N \N \N 92914 N.leonensis Napoleona Napoleona leonensis \N \N \N \N \N 92915 O.capitatus Oreopanax Oreopanax capitatus \N \N \N \N \N 92916 S.biafrae Solanecio Solanecio biafrae \N \N \N \N \N 92917 B.yervamora Bosea Bosea yervamora \N \N \N \N \N 92918 C.autranii Crocus Crocus autranii \N \N \N \N \N 92919 I.tectorum Iris Iris tectorum \N \N \N \N \N 92920 G.atlantica Gentiana Gentiana atlantica \N \N \N \N \N 92921 \N subspecies Stipagrostis zeyheri subsp. macropus \N \N \N \N \N 92922 M.richardsiana Medusandra Medusandra richardsiana \N \N \N \N \N 92923 R.deamii Rondeletia Rondeletia deamii \N \N \N \N \N 92924 P.malaccensis Pertusadina Pertusadina malaccensis \N \N \N \N \N 92925 P.barbertoniana Pavetta Pavetta barbertoniana \N \N \N \N \N 92926 C.goetzei Carpolobia Carpolobia goetzei \N \N \N \N \N 92927 \N genus Chrysochamela \N \N \N \N \N 92928 R.strigillosum Rhododendron Rhododendron strigillosum \N \N \N \N \N 92929 \N varietas Centaurea pinae var. pinae \N \N \N \N \N 92930 \N genus Corylus hazelnuts \N \N \N \N 92931 B.grandiflora Beaumontia Beaumontia grandiflora Easter herald's trumpet,Easter-lily vine \N \N \N \N 92932 \N genus Schizolobium \N \N \N \N \N 92933 D.muricatus Daucus Daucus muricatus \N \N \N \N \N 92934 C.boliviana Canavalia Canavalia boliviana \N \N \N \N \N 92935 P.586 Pelliciera Pelliciera sp. Pennington et al. 586 \N \N \N \N \N 92936 \N varietas Ophiopogon japonicus var. japonicus \N \N \N \N \N 92937 W.cruziana Wissadula Wissadula cruziana \N \N \N \N \N 92938 I.trichosepala Impatiens Impatiens trichosepala \N \N \N \N \N 92939 O.101762 Oerstedella Oerstedella sp. Heidelberg BG 101762 \N \N \N \N \N 92940 \N subspecies Koeleria vallesiana subsp. castellana \N \N \N \N \N 92941 H.goniocarpa Hippophae Hippophae goniocarpa \N \N \N \N \N 92942 A.NR-2009 Asparagus Asparagus sp. NR-2009 \N \N \N \N \N 92943 Z.mosanensis Zabelia Zabelia mosanensis \N \N \N \N \N 92944 \N varietas Angelica acutiloba var. sugiyamae \N \N \N \N \N 92945 \N genus Nephthytis \N \N \N \N \N 92946 L.kiangnanensis Leontice Leontice kiangnanensis \N \N \N \N \N 92947 M.setifolia Moraea Moraea setifolia \N \N \N \N \N 92948 M.obscura Marlierea Marlierea obscura \N \N \N \N \N 92949 \N subspecies Pentatrichia rehmii subsp. avasmontana \N \N \N \N \N 92950 \N genus Dactyladenia \N \N \N \N \N 92951 R.coronopifolius Rhodogeron Rhodogeron coronopifolius \N \N \N \N \N 92952 \N varietas Pisum sativum var. choresmicum \N \N \N \N \N 92953 P.wichurae Polianthion Polianthion wichurae \N \N \N \N \N 92954 C.microphylla Cyanostegia Cyanostegia microphylla \N \N \N \N \N 92955 A.trotzkiana Archanthemis Archanthemis trotzkiana \N \N \N \N \N 92956 \N subfamily Lemnoideae \N \N \N \N \N 92957 P.928 Piper Piper sp. MAJ 928 \N \N \N \N \N 92958 A.bigeminum Archidendron Archidendron bigeminum \N \N \N \N \N 92959 B.pacifica Brongniartia Brongniartia pacifica \N \N \N \N \N 92960 P.ossanum Piper Piper ossanum \N \N \N \N \N 92961 E.fenestrata Elburzia Elburzia fenestrata \N \N \N \N \N 92962 \N genus Mentha mints \N \N \N \N 92963 G.gomerae Gonospermum Gonospermum gomerae \N \N \N \N \N 92964 B.platanifolia Boehmeria Boehmeria platanifolia \N \N \N \N \N 92965 P.nervosum Phoradendron Phoradendron nervosum \N \N \N \N \N 92966 W.ringens Werauhia Werauhia ringens \N \N \N \N \N 92967 W.marginata Warczewiczella Warczewiczella marginata \N \N \N \N \N 92968 \N genus Dendromecon \N \N \N \N \N 92969 P.nitida Protea Protea nitida \N \N \N \N \N 92970 \N subspecies Ficus ardisioides subsp. camptoneura \N \N \N \N \N 92971 D.praehensilis Dioscorea Dioscorea praehensilis bush yam,forest yam \N \N \N \N 92972 H.elegans Hyospathe Hyospathe elegans \N \N \N \N \N 92973 \N genus Lespedeza \N \N \N \N \N 92974 F.filiformis Festuca Festuca filiformis \N \N \N \N \N 92975 C.decalvans Cerastium Cerastium decalvans \N \N \N \N \N 92976 T.wigginsii Trifolium Trifolium wigginsii \N \N \N \N \N 92977 C.decalobus Croton Croton decalobus \N \N \N \N \N 92978 A.psilophylla Arapatiella Arapatiella psilophylla \N \N \N \N \N 92979 B.macowanii Buxus Buxus macowanii \N \N \N \N \N 92980 \N subspecies Uebelinia kigesiensis subsp. kigesiensis \N \N \N \N \N 92981 C.fissifolia Castilleja Castilleja fissifolia \N \N \N \N \N 92982 \N genus Dracocephalum dragonheads \N \N \N \N 92983 L.aureus Leptosiphon Leptosiphon aureus \N \N \N \N \N 92984 S.oblongifolium Symphyotrichum Symphyotrichum oblongifolium \N \N \N \N \N 92985 P.jugorum Passiflora Passiflora jugorum \N \N \N \N \N 92986 C.adpressa Colymbada Colymbada adpressa \N \N \N \N \N 92987 A.tumida Acacia Acacia tumida pindan wattle \N \N \N \N 92988 C.longiflorum Cyclotrichium Cyclotrichium longiflorum \N \N \N \N \N 92989 L.grandiflorum Linum Linum grandiflorum \N \N \N \N \N 92990 B.scharnhorstii Braya Braya scharnhorstii \N \N \N \N \N 92991 R.rothschildii Rhododendron Rhododendron rothschildii \N \N \N \N \N 92992 A.quetrihuensis Arachnitis Arachnitis quetrihuensis \N \N \N \N \N 92993 \N varietas Photinia schneideriana var. parviflora \N \N \N \N \N 92994 S.megistacrolobum Solanum Solanum megistacrolobum \N \N \N \N \N 92995 A.tricoccum Allium Allium tricoccum ramp,wild leek \N \N \N \N 92996 C.megalantha Cordia Cordia megalantha \N \N \N \N \N 92997 C.flavus Crocus Crocus flavus \N \N \N \N \N 92998 \N genus Guichenotia \N \N \N \N \N 92999 H.racemosum Homalium Homalium racemosum \N \N \N \N \N 93000 S.glabra Sida Sida glabra \N \N \N \N \N 93001 C.deplexa Conostylis Conostylis deplexa \N \N \N \N \N 93002 \N subspecies Galium moranii subsp. aculeolatum \N \N \N \N \N 93003 J.longistamineus Juncus Juncus longistamineus \N \N \N \N \N 93004 G.appressum Gastrolobium Gastrolobium appressum \N \N \N \N \N 93005 \N genus Micromeria \N \N \N \N \N 93006 \N genus Petrosimonia \N \N \N \N \N 93007 R.subborealis Ranunculus Ranunculus subborealis \N \N \N \N \N 93008 M.nukuhivensis Melicope Melicope nukuhivensis \N \N \N \N \N 93009 I.kituiensis Ipomoea Ipomoea kituiensis \N \N \N \N \N 93010 V.prunifolium Viburnum Viburnum prunifolium \N \N \N \N \N 93011 H.nutantiflorum Hedychium Hedychium nutantiflorum \N \N \N \N \N 93012 D.bryoides Draba Draba bryoides \N \N \N \N \N 93013 F.apertisquamifera Fraxinus Fraxinus apertisquamifera \N \N \N \N \N 93014 H.bicolor Hymenochilus Hymenochilus bicolor \N \N \N \N \N 93015 S.aerea Salvia Salvia aerea \N \N \N \N \N 93016 T.japonica Ternstroemia Ternstroemia japonica \N \N \N \N \N 93017 A.ochracea Acampe Acampe ochracea \N \N \N \N \N 93018 A.vieillardii Arthrophyllum Arthrophyllum vieillardii \N \N \N \N \N 93019 A.macquariensis Azorella Azorella macquariensis \N \N \N \N \N 93020 \N genus Schizachne \N \N \N \N \N 93021 C.cultivar Calibrachoa Calibrachoa hybrid cultivar \N \N \N \N \N 93022 I.caspica Inula Inula caspica \N \N \N \N \N 93023 D.klaineana Dacryodes Dacryodes klaineana \N \N \N \N \N 93024 \N genus Ariadne \N \N \N \N \N 93025 \N subspecies Ficus ottoniifolia subsp. ottoniifolia \N \N \N \N \N 93026 \N genus Schinziella \N \N \N \N \N 93027 \N varietas Viburnum foetidum var. ceanothoides \N \N \N \N \N 93028 L.glutinosa Lysimachia Lysimachia glutinosa \N \N \N \N \N 93029 G.krylovii Grubovia Grubovia krylovii \N \N \N \N \N 93030 A.pubescens Angelica Angelica pubescens du huo \N \N \N \N 93031 L.arborea Leptadenia Leptadenia arborea \N \N \N \N \N 93032 B.MAG-2009 Bauhinia Bauhinia sp. MAG-2009 \N \N \N \N \N 93033 E.glabrescens Euphrasia Euphrasia glabrescens \N \N \N \N \N 93034 C.americanum Campanulastrum Campanulastrum americanum \N \N \N \N \N 93035 C.semiserrata Camellia Camellia semiserrata \N \N \N \N \N 93036 R.sinicus Raphiocarpus Raphiocarpus sinicus \N \N \N \N \N 93037 N.squarrosa Navarretia Navarretia squarrosa \N \N \N \N \N 93038 C.stenophylla Collaea Collaea stenophylla \N \N \N \N \N 93039 D.stricta Disa Disa stricta \N \N \N \N \N 93040 N.longipes Nematanthus Nematanthus longipes \N \N \N \N \N 93041 M.inconspicuus Mimulus Mimulus inconspicuus \N \N \N \N \N 93042 B.coriacea Belonophora Belonophora coriacea \N \N \N \N \N 93043 N.velutina Nicotiana Nicotiana velutina \N \N \N \N \N 93044 P.maxima Plantago Plantago maxima \N \N \N \N \N 93045 C.humilis Chimantaea Chimantaea humilis \N \N \N \N \N 93046 S.arvensis Sinapis Sinapis arvensis charlock mustard \N \N \N \N 93047 S.macropoda Sinningia Sinningia macropoda \N \N \N \N \N 93048 S.picta Strumaria Strumaria picta \N \N \N \N \N 93049 A.allenii Aechmea Aechmea allenii \N \N \N \N \N 93050 \N genus Monteiroa \N \N \N \N \N 93051 \N genus Sphaerophysa \N \N \N \N \N 93052 L.tulipifera Liriodendron Liriodendron tulipifera \N \N \N \N \N 93053 V.tenellum Vaccinium Vaccinium tenellum southern blueberry \N \N \N \N 93054 \N genus Hedera \N \N \N \N \N 93055 E.ulaei Eriocaulon Eriocaulon ulaei \N \N \N \N \N 93056 J.plicata Joinvillea Joinvillea plicata \N \N \N \N \N 93057 \N subspecies Ceanothus divergens subsp. confusus \N \N \N \N \N 93058 A.kwangsiense Alangium Alangium kwangsiense \N \N \N \N \N 93059 L.latifolium Limonium Limonium latifolium \N \N \N \N \N 93060 P.macrocalycina Pentameris sect. Pentameris Pentameris macrocalycina \N \N \N \N \N 93061 \N genus Scorzonera \N \N \N \N \N 93062 A.bulleyanum Aconitum Aconitum bulleyanum \N \N \N \N \N 93063 D.SH-2010 Derris Derris sp. SH-2010 \N \N \N \N \N 93064 \N tribe Micraireae \N \N \N \N \N 93065 T.berytheum Trifolium Trifolium berytheum \N \N \N \N \N 93066 D.grandiflora Deppea Deppea grandiflora \N \N \N \N \N 93067 P.daena Pultenaea Pultenaea daena \N \N \N \N \N 93068 \N varietas Orobanche cernua var. australiana \N \N \N \N \N 93069 P.filifolius Pileanthus Pileanthus filifolius \N \N \N \N \N 93070 \N genus Pholidostachys \N \N \N \N \N 93071 A.lakhonensis Aponogeton Aponogeton lakhonensis \N \N \N \N \N 93072 T.alexandrinum Trifolium Trifolium alexandrinum \N \N \N \N \N 93073 \N no rank Saccharum hybrid cultivar F36-819 \N \N \N \N \N 93074 C.tripartita Calceolaria Calceolaria tripartita \N \N \N \N \N 93075 C.ozarkana Carex Carex ozarkana \N \N \N \N \N 93076 D.SH-2010 Daphniphyllum Daphniphyllum sp. SH-2010 \N \N \N \N \N 93077 A.applanata Arachnorchis Arachnorchis applanata \N \N \N \N \N 93078 E.meyeri Eichhornia Eichhornia meyeri \N \N \N \N \N 93079 S.circaeifolium Solanum Solanum capsicibaccatum x Solanum circaeifolium \N \N \N \N \N 93080 P.schilleriana Phalaenopsis Phalaenopsis schilleriana \N \N \N \N \N 93081 R.farragei Radyera Radyera farragei desert rose-mallow \N \N \N \N 93082 P.alpina Plantago Plantago alpina \N \N \N \N \N 93083 M.leptaleus Mimulus Mimulus leptaleus \N \N \N \N \N 93084 A.constricta Aristida Aristida constricta \N \N \N \N \N 93085 K.3685 Klarobelia Klarobelia sp. Meier and Llamozas 3685 \N \N \N \N \N 93086 S.raddeana Scorzonera Scorzonera raddeana \N \N \N \N \N 93087 T.6382/2 unclassified Taraxacum Taraxacum (sect. Orientalia) sp. 6382/2 \N \N \N \N \N 93088 \N subspecies Ononis alba subsp. monophylla \N \N \N \N \N 93089 \N genus Bubbia \N \N \N \N \N 93090 L.pauliana Liparis Liparis pauliana \N \N \N \N \N 93091 I.brevifolia Imperata Imperata brevifolia \N \N \N \N \N 93092 \N genus Paspalidium \N \N \N \N \N 93093 G.pilosula Guatteria Guatteria pilosula \N \N \N \N \N 93094 C.lunata Cryptarrhena Cryptarrhena lunata \N \N \N \N \N 93095 P.exaltatum Paspalum Paspalum exaltatum \N \N \N \N \N 93096 \N genus Saritaea \N \N \N \N \N 93097 \N genus Fordia \N \N \N \N \N 93098 C.erythrophyllum Combretum Combretum erythrophyllum bush-willow \N \N \N \N 93099 \N genus Aeonium \N \N \N \N \N 93100 P.arctum Panicum Panicum arctum \N \N \N \N \N 93101 D.stachyodes Dendrochilum Dendrochilum stachyodes \N \N \N \N \N 93102 \N genus Kotschya \N \N \N \N \N 93103 \N varietas Myosotis laxa var. caespitosa \N \N \N \N \N 93104 G.cerastioides Gentianella Gentianella cerastioides \N \N \N \N \N 93105 S.lemmonii Senecio Senecio lemmonii \N \N \N \N \N 93106 \N subspecies Tropaeolum pentaphyllum subsp. pentaphyllum \N \N \N \N \N 93107 C.angusta Camassia Camassia angusta \N \N \N \N \N 93108 N.paradoxa Nolana Nolana paradoxa \N \N \N \N \N 93109 P.DG-2010 Parrya Parrya aff. nudicaulis DG-2010 \N \N \N \N \N 93110 \N genus Esterhuysenia \N \N \N \N \N 93111 C.reticulata Cliffortia Cliffortia reticulata \N \N \N \N \N 93112 \N genus Berenice \N \N \N \N \N 93113 G.463 Guatteria Guatteria sp. Chatrou et al. 463 \N \N \N \N \N 93114 O.neomexicana Oenothera Oenothera neomexicana \N \N \N \N \N 93115 V.AB-2009 Vanilla Vanilla sp. AB-2009 \N \N \N \N \N 93116 D.dasyphylla Diospyros Diospyros dasyphylla \N \N \N \N \N 93117 \N subspecies Hypericum henryi subsp. uraloides \N \N \N \N \N 93118 Z.apiculata Zygostates Zygostates apiculata \N \N \N \N \N 93119 \N genus Pycreus \N \N \N \N \N 93120 \N family Stilbaceae \N \N \N \N \N 93121 A.konkanensis Amorphophallus Amorphophallus konkanensis \N \N \N \N \N 93122 M.kwangtungensis Machilus Machilus kwangtungensis \N \N \N \N \N 93123 \N varietas Eriogonum nudum var. nudum \N \N \N \N \N 93124 C.skiatophytoides Caryotophora Caryotophora skiatophytoides \N \N \N \N \N 93125 C.anomala Cleome Cleome anomala \N \N \N \N \N 93126 M.cookii Moraea Moraea cookii \N \N \N \N \N 93127 M.woodsonii Maytenus Maytenus woodsonii \N \N \N \N \N 93128 C.peirsonii Castilleja Castilleja peirsonii \N \N \N \N \N 93129 L.leipoldtiana Lebeckia Lebeckia leipoldtiana \N \N \N \N \N 93130 \N subspecies Arum orientale subsp. longispathum \N \N \N \N \N 93131 X.orcuttii Xylorhiza Xylorhiza orcuttii \N \N \N \N \N 93132 A.polybotrya Acacia Acacia polybotrya \N \N \N \N \N 93133 C.pickeringii Calamagrostis Calamagrostis pickeringii \N \N \N \N \N 93134 D.barbigera Diplycosia Diplycosia barbigera \N \N \N \N \N 93135 R.hermannifolia Rulingia Rulingia hermannifolia \N \N \N \N \N 93136 N.stenophylla Nepenthes Nepenthes stenophylla \N \N \N \N \N 93137 A.hainanense Amydrium Amydrium hainanense \N \N \N \N \N 93138 R.trullifolius Ranunculus Ranunculus trullifolius \N \N \N \N \N 93139 A.rutenbergianum Angraecum Angraecum rutenbergianum \N \N \N \N \N 93140 \N genus Jacobaea \N \N \N \N \N 93141 M.axillare Mitriostigma Mitriostigma axillare \N \N \N \N \N 93142 S.MVSP-2007 Streptocarpus Streptocarpus sp. MVSP-2007 \N \N \N \N \N 93143 E.guentheri Espostoa Espostoa guentheri \N \N \N \N \N 93144 M.tenuifolia Millotia Millotia tenuifolia \N \N \N \N \N 93145 \N genus Capsicum peppers \N \N \N \N 93146 L.clymenum Lathyrus Lathyrus clymenum \N \N \N \N \N 93147 H.somalense Helichrysum Helichrysum somalense \N \N \N \N \N 93148 P.gnaphalobryum Psilotrichum Psilotrichum gnaphalobryum \N \N \N \N \N 93149 S.toromiro Sophora Sophora toromiro \N \N \N \N \N 93150 D.essequeboensis Discocarpus Discocarpus essequeboensis \N \N \N \N \N 93151 A.lemmonii Asclepias Asclepias lemmonii \N \N \N \N \N 93152 I.tsangii Illicium Illicium tsangii \N \N \N \N \N 93153 D.oubatchensis Diospyros Diospyros oubatchensis \N \N \N \N \N 93154 M.insularis Mammillaria Mammillaria insularis \N \N \N \N \N 93155 \N tribe Calepineae \N \N \N \N \N 93156 Z.kochii Zingeria Zingeria kochii \N \N \N \N \N 93157 H.bolusii Harveya Harveya bolusii \N \N \N \N \N 93158 P.hallii Penstemon Penstemon hallii \N \N \N \N \N 93159 A.asteroides Asteridea Asteridea asteroides \N \N \N \N \N 93160 C.peucedanifolia Cyclorhiza Cyclorhiza peucedanifolia \N \N \N \N \N 93161 M.emarginata Malpighia Malpighia emarginata \N \N \N \N \N 93162 O.longebracteatum Ornithogalum Ornithogalum longebracteatum sea-onion \N \N \N \N 93163 P.epihydrus Potamogeton Potamogeton perfoliatus x Potamogeton epihydrus \N \N \N \N \N 93164 A.auriculata Arctotis Arctotis auriculata \N \N \N \N \N 93165 G.pubescens Galeopsis Galeopsis bifida x Galeopsis pubescens \N \N \N \N \N 93166 S.microphylla Specklinia Specklinia microphylla \N \N \N \N \N 93167 M.sedoides Moehringia Moehringia sedoides \N \N \N \N \N 93168 S.valida Scrophularia Scrophularia valida \N \N \N \N \N 93169 A.glauca Adenia Adenia glauca \N \N \N \N \N 93170 P.hirsuta Phacelia Phacelia hirsuta \N \N \N \N \N 93171 A.pubescens Anthephora Anthephora pubescens \N \N \N \N \N 93172 T.crepiniana Tricalysia Tricalysia crepiniana \N \N \N \N \N 93173 C.bracteata Conostylis Conostylis bracteata \N \N \N \N \N 93174 \N genus Pfeiffera \N \N \N \N \N 93175 C.caroliniana Cabomba Cabomba caroliniana \N \N \N \N \N 93176 G.bernalense Graptopetalum Graptopetalum bernalense \N \N \N \N \N 93177 N.3 Neonauclea Neonauclea sp. 3 \N \N \N \N \N 93178 \N genus Lithodraba \N \N \N \N \N 93179 H.camphorifolia Hoya Hoya camphorifolia \N \N \N \N \N 93180 L.obtusiflora Leptochloa Leptochloa obtusiflora \N \N \N \N \N 93181 P.redactum Pelargonium Pelargonium redactum \N \N \N \N \N 93182 M.parvifolium Myoporum Myoporum parvifolium \N \N \N \N \N 93183 C.nivalis Coprosma Coprosma nivalis \N \N \N \N \N 93184 E.linearifolium Exacum Exacum linearifolium \N \N \N \N \N 93185 E.trichomanifolium Erodium Erodium trichomanifolium \N \N \N \N \N 93186 \N genus Mesogramma \N \N \N \N \N 93187 O.microphylla Ottoschmidtia Ottoschmidtia microphylla \N \N \N \N \N 93188 G.sierrae Gentiana Gentiana sierrae \N \N \N \N \N 93189 A.fumariifolia Anthemis Anthemis fumariifolia \N \N \N \N \N 93190 M.supinum Marrubium Marrubium supinum \N \N \N \N \N 93191 \N genus Sladenia \N \N \N \N \N 93192 S.verrucosa Salsola Salsola verrucosa \N \N \N \N \N 93193 A.abbreviata Aechmea Aechmea abbreviata \N \N \N \N \N 93194 \N varietas Madhuca longifolia var. latifolia \N \N \N \N \N 93195 B.johnstonii Bouteloua Bouteloua johnstonii \N \N \N \N \N 93196 S.insolita Schefflera Schefflera insolita \N \N \N \N \N 93197 \N genus Prescottia \N \N \N \N \N 93198 C.sinensis Cryptolepis Cryptolepis sinensis \N \N \N \N \N 93199 \N genus Monotropastrum \N \N \N \N \N 93200 A.cruenta Aristolochia Aristolochia cruenta \N \N \N \N \N 93201 P.laurifolia Populus Populus laurifolia \N \N \N \N \N 93202 P.subvestita Protea Protea subvestita \N \N \N \N \N 93203 P.mishmensis Phaius Phaius mishmensis \N \N \N \N \N 93204 P.javanica Prunus Prunus javanica \N \N \N \N \N 93205 C.94027 Croton Croton sp. Qiu 94027 \N \N \N \N \N 93206 \N genus Phyllodium \N \N \N \N \N 93207 N.chapiensis Nolana Nolana chapiensis \N \N \N \N \N 93208 G.nivalis Galanthus Galanthus nivalis common snowdrop \N \N \N \N 93209 B.lineariloba Brachyscome Brachyscome lineariloba \N \N \N \N \N 93210 O.fimbriata Otatea Otatea fimbriata \N \N \N \N \N 93211 \N genus Cardiocrinum \N \N \N \N \N 93212 \N genus Tersonia \N \N \N \N \N 93213 \N subspecies Paraserianthes lophantha subsp. lophantha \N \N \N \N \N 93214 M.pentapetalum Melastoma Melastoma pentapetalum \N \N \N \N \N 93215 N.longipetalum Nematoceras Nematoceras longipetalum \N \N \N \N \N 93216 \N varietas Penstemon heterophyllus var. heterophyllus \N \N \N \N \N 93217 E.pellucida Eleocharis Eleocharis pellucida \N \N \N \N \N 93218 A.painteri Acaciella Acaciella painteri \N \N \N \N \N 93219 F.santa-maria Ferocactus Ferocactus santa-maria \N \N \N \N \N 93220 T.buchtienii Tournefortia Tournefortia buchtienii \N \N \N \N \N 93221 \N genus Anneslea \N \N \N \N \N 93222 \N genus Bowdichia \N \N \N \N \N 93223 P.rosmarinifolia Pultenaea Pultenaea rosmarinifolia \N \N \N \N \N 93224 P.cerinthoides Prionotes Prionotes cerinthoides \N \N \N \N \N 93225 C.bellidifolius Carphephorus Carphephorus bellidifolius \N \N \N \N \N 93226 P.ussuriensis Pyrus Pyrus communis x Pyrus ussuriensis \N \N \N \N \N 93227 L.sylvestris Lepionurus Lepionurus sylvestris \N \N \N \N \N 93228 \N varietas Swartzia sprucei var. tessellata \N \N \N \N \N 93229 P.amarum Panicum Panicum amarum bitter panic grass \N \N \N \N 93230 \N genus Trimelopter \N \N \N \N \N 93231 F.bulbosa Ficinia Ficinia bulbosa \N \N \N \N \N 93232 H.urens Hemigraphis Hemigraphis urens \N \N \N \N \N 93233 N.rudgeana Nymphaea Nymphaea rudgeana \N \N \N \N \N 93234 \N genus Laccopetalum \N \N \N \N \N 93235 C.fretalis Carex Carex fretalis \N \N \N \N \N 93236 H.valo Hildebrandtia Hildebrandtia valo \N \N \N \N \N 93237 \N genus Nonea \N \N \N \N \N 93238 M.luna-gentiana Macrocarpaea Macrocarpaea luna-gentiana \N \N \N \N \N 93239 C.lanceolatus Callistemon Callistemon lanceolatus \N \N \N \N \N 93240 E.cylindrica Euphorbia Euphorbia cylindrica \N \N \N \N \N 93241 V.flavescens Viburnum Viburnum flavescens \N \N \N \N \N 93242 O.mexicana Oreomunnea Oreomunnea mexicana \N \N \N \N \N 93243 H.giganteus Helianthus Helianthus giganteus \N \N \N \N \N 93244 A.vaginata Abildgaardia Abildgaardia vaginata \N \N \N \N \N 93245 P.lehmanii Polytaxis Polytaxis lehmanii \N \N \N \N \N 93246 P.acidula Pemphis Pemphis acidula \N \N \N \N \N 93247 G.assugu Garcinia Garcinia assugu \N \N \N \N \N 93248 M.crassinervia Miconia Miconia crassinervia \N \N \N \N \N 93249 D.dubia Draba Draba dubia \N \N \N \N \N 93250 A.bicarinatum Arceuthobium Arceuthobium bicarinatum \N \N \N \N \N 93251 A.coerulea Arnebia Arnebia coerulea \N \N \N \N \N 93252 H.apiculata Hedeoma Hedeoma apiculata \N \N \N \N \N 93253 P.inserta Parthenocissus Parthenocissus inserta \N \N \N \N \N 93254 T.CH_E39Amono Triticum Triticum sp. CH_E39Amono \N \N \N \N \N 93255 N.lindeniana Nasa Nasa lindeniana \N \N \N \N \N 93256 S.nepalensis Silene Silene nepalensis \N \N \N \N \N 93257 G.coloradoense Galium Galium coloradoense \N \N \N \N \N 93258 Z.799 Zygophyllum Zygophyllum sp. Bellstedt 799 \N \N \N \N \N 93259 E.sachalinensis Euonymus Euonymus sachalinensis \N \N \N \N \N 93260 \N varietas Eriogonum esmeraldense var. esmeraldense \N \N \N \N \N 93261 L.scoparium Leptospermum Leptospermum scoparium \N \N \N \N \N 93262 S.galegifolia Swainsona Swainsona galegifolia \N \N \N \N \N 93263 L.nubigenus Lupinus Lupinus nubigenus \N \N \N \N \N 93264 P.sericea Plantago Plantago sericea \N \N \N \N \N 93265 R.boninense Rhododendron Rhododendron boninense \N \N \N \N \N 93266 B.insignis Brenierea Brenierea insignis \N \N \N \N \N 93267 N.willkommii Narcissus Narcissus willkommii \N \N \N \N \N 93268 S.pinnata Schkuhria Schkuhria pinnata \N \N \N \N \N 93269 H.stenophyllus Herpetacanthus Herpetacanthus stenophyllus \N \N \N \N \N 93270 A.nutans Alpinia Alpinia nutans \N \N \N \N \N 93271 O.euphorbioides Othonna Othonna euphorbioides \N \N \N \N \N 93272 C.vincifolia Ceropegia Ceropegia vincifolia \N \N \N \N \N 93273 C.nemecii Centaurea Centaurea nemecii \N \N \N \N \N 93274 J.pendens Jonesiopsis Jonesiopsis pendens \N \N \N \N \N 93275 \N genus Marsdenia \N \N \N \N \N 93276 G.chrysostoma Gomesa Gomesa chrysostoma \N \N \N \N \N 93277 A.aspera Alectra Alectra aspera \N \N \N \N \N 93278 M.discoidea Margaritaria Margaritaria discoidea \N \N \N \N \N 93279 C.ulmifolia Conyza Conyza ulmifolia \N \N \N \N \N 93280 O.hookeri Oreomyrrhis Oreomyrrhis hookeri \N \N \N \N \N 93281 M.planifolia Maireana Maireana planifolia \N \N \N \N \N 93282 \N genus Tieghemella \N \N \N \N \N 93283 \N genus Oxalis \N \N \N \N \N 93284 M.microphylla Mutisia Mutisia microphylla \N \N \N \N \N 93285 L.rehmannii Lippia Lippia rehmannii \N \N \N \N \N 93286 L.ellipticum Leionema Leionema ellipticum \N \N \N \N \N 93287 L.sovetkinae Lonicera Lonicera sovetkinae \N \N \N \N \N 93288 C.brevifolia Cliffortia Cliffortia brevifolia \N \N \N \N \N 93289 \N genus Dorystaechas \N \N \N \N \N 93290 \N genus Seemannia \N \N \N \N \N 93291 \N genus Clemensiella \N \N \N \N \N 93292 P.fugax Polypogon Polypogon fugax \N \N \N \N \N 93293 S.ellipticum Solanum Solanum ellipticum \N \N \N \N \N 93294 L.zippeliana Leea Leea zippeliana \N \N \N \N \N 93295 A.pseudourbicum Aeonium Aeonium pseudourbicum \N \N \N \N \N 93296 S.matsudana Salix Salix matsudana tortured willow \N \N \N \N 93297 M.guianensis Maquira Maquira guianensis \N \N \N \N \N 93298 P.zehntneri Parapiptadenia Parapiptadenia zehntneri \N \N \N \N \N 93299 C.ignea Cuphea Cuphea ignea \N \N \N \N \N 93300 D.confusa Draba Draba confusa \N \N \N \N \N 93301 C.dichotoma Cliffortia Cliffortia dichotoma \N \N \N \N \N 93302 I.forrestii Isodon Isodon forrestii \N \N \N \N \N 93303 S.lehmannii Stevia Stevia lehmannii \N \N \N \N \N 93304 L.4107 Lichtensteinia Lichtensteinia sp. van Wyk 4107 \N \N \N \N \N 93305 \N genus Canotia \N \N \N \N \N 93306 P.sempervirens Plantago Plantago sempervirens \N \N \N \N \N 93307 H.nocturna Hesperaloe Hesperaloe nocturna \N \N \N \N \N 93308 D.olgae Draba Draba olgae \N \N \N \N \N 93309 R.lomatensis Radinosiphon Radinosiphon lomatensis \N \N \N \N \N 93310 N.jamaicensis Nama Nama jamaicensis \N \N \N \N \N 93311 D.xeromorpha Devia Devia xeromorpha \N \N \N \N \N 93312 V.nigrum Verbascum Verbascum nigrum \N \N \N \N \N 93313 H.nitidum Hymenolobium Hymenolobium nitidum \N \N \N \N \N 93314 C.rhomboideum Capsicum Capsicum rhomboideum \N \N \N \N \N 93315 P.macroceras Pinguicula Pinguicula macroceras California butterwort \N \N \N \N 93316 \N genus Kissenia \N \N \N \N \N 93317 L.atrosanguineum Lophospermum Lophospermum atrosanguineum \N \N \N \N \N 93318 H.coccineum Haemodorum Haemodorum coccineum \N \N \N \N \N 93319 M.petanostyla Macaranga Macaranga petanostyla \N \N \N \N \N 93320 T.farinulosa Tolpis Tolpis farinulosa \N \N \N \N \N 93321 O.2421 Oncidium Oncidium cf. schmidtianum Whitten 2421 \N \N \N \N \N 93322 \N genus Albidella \N \N \N \N \N 93323 C.llanganatensis Centropogon Centropogon llanganatensis \N \N \N \N \N 93324 P.wardii Paphiopedilum Paphiopedilum wardii \N \N \N \N \N 93325 E.ruizlealii Euphorbia Euphorbia ruizlealii \N \N \N \N \N 93326 I.raiateensis Ixora Ixora raiateensis \N \N \N \N \N 93327 S.callosus Senecio Senecio callosus \N \N \N \N \N 93328 R.oblanceolata Randia Randia oblanceolata \N \N \N \N \N 93329 P.opulifolius Physocarpus Physocarpus opulifolius ninebark \N \N \N \N 93330 S.pentandra Schefflera Schefflera pentandra \N \N \N \N \N 93331 C.bulbispermum Crinum Crinum bulbispermum \N \N \N \N \N 93332 C.obscurus Cotoneaster Cotoneaster obscurus \N \N \N \N \N 93333 S.offneri Stipa Stipa offneri \N \N \N \N \N 93334 C.anatolicus Carthamus Carthamus anatolicus \N \N \N \N \N 93335 \N varietas Eleocharis congesta var. thermalis \N \N \N \N \N 93336 L.brachycalyx Lewisia Lewisia brachycalyx \N \N \N \N \N 93337 C.conocephala Cratystylis Cratystylis conocephala \N \N \N \N \N 93338 E.adenocaula Encyclia Encyclia adenocaula \N \N \N \N \N 93339 S.calva Simsia Simsia calva \N \N \N \N \N 93340 C.williamsii Carmichaelia Carmichaelia williamsii \N \N \N \N \N 93341 T.2353 Trichoceros Trichoceros sp. Whitten 2353 \N \N \N \N \N 93342 M.nyassana Mellera Mellera nyassana \N \N \N \N \N 93343 L.polycarpa Ludwigia Ludwigia polycarpa \N \N \N \N \N 93344 L.puberula Linguella Linguella puberula \N \N \N \N \N 93345 \N genus Afrobrunnichia \N \N \N \N \N 93346 \N genus Scorodophloeus \N \N \N \N \N 93347 P.angusta Phyllostachys Phyllostachys angusta \N \N \N \N \N 93348 E.grandiflorum Epimedium Epimedium grandiflorum barrenwort,yin yang huo \N \N \N \N 93349 \N genus Ridolfia \N \N \N \N \N 93350 \N genus Legnephora \N \N \N \N \N 93351 V.urticifolia Verbena Verbena urticifolia bur-vine,white vervain \N \N \N \N 93352 \N varietas Ranunculus glacialis var. camissonis \N \N \N \N \N 93353 D.obtusus Desmanthus Desmanthus obtusus \N \N \N \N \N 93354 M.SH-2010 Maesa Maesa sp. SH-2010 \N \N \N \N \N 93355 F.caucasica Fritillaria Fritillaria caucasica \N \N \N \N \N 93356 A.markgrafii Aegilops Aegilops markgrafii \N \N \N \N \N 93357 D.keysseri Dimorphanthera Dimorphanthera keysseri \N \N \N \N \N 93358 B.NFL-2003-1 Boesenbergia Boesenbergia sp. NFL-2003-1 \N \N \N \N \N 93359 \N genus Bornmuellera \N \N \N \N \N 93360 H.oblongifolia Heteranthera Heteranthera oblongifolia \N \N \N \N \N 93361 M.stellata Magnolia Magnolia stellata shide-kobushi,star magnolia \N \N \N \N 93362 O.aristata Osmorhiza Osmorhiza aristata \N \N \N \N \N 93363 C.flexuosa Cardamine Cardamine flexuosa woodland bittercress \N \N \N \N 93364 P.01 Piper Piper sp. RA 01 \N \N \N \N \N 93365 H.tubiflora Hymenocallis Hymenocallis tubiflora \N \N \N \N \N 93366 P.libera Polycardia Polycardia libera \N \N \N \N \N 93367 T.lhotzkiana Trilepis Trilepis lhotzkiana \N \N \N \N \N 93368 S.sachalinensis Sambucus Sambucus sachalinensis \N \N \N \N \N 93369 S.metrobotryon Solanum Solanum metrobotryon \N \N \N \N \N 93370 \N genus Pachylarnax \N \N \N \N \N 93371 \N subspecies Astragalus dactylocarpus subsp. dactylocarpus \N \N \N \N \N 93372 \N subspecies Pseudorchis albida subsp. straminea \N \N \N \N \N 93373 \N varietas Banksia sphaerocarpa var. sphaerocarpa \N \N \N \N \N 93374 V.lignum-vitae Vitex Vitex lignum-vitae \N \N \N \N \N 93375 \N genus Chazaliella \N \N \N \N \N 93376 \N subspecies Eleocharis congesta subsp. subvivipara \N \N \N \N \N 93377 S.coronilloides Senna Senna coronilloides \N \N \N \N \N 93378 O.8090 Otoglossum Otoglossum sp. Hirtz 8090 \N \N \N \N \N 93379 P.tetrandra Passiflora Passiflora tetrandra \N \N \N \N \N 93380 \N genus Siphanthera \N \N \N \N \N 93381 \N genus Schefflera \N \N \N \N \N 93382 \N genus Onira \N \N \N \N \N 93383 \N varietas Oxytropis campestris var. gracilis \N \N \N \N \N 93384 \N subspecies Poa cusickii subsp. pallida \N \N \N \N \N 93385 \N genus Melaleuca \N \N \N \N \N 93386 E.densifolia Erica Erica densifolia \N \N \N \N \N 93387 J.vaginatus Juncus Juncus vaginatus \N \N \N \N \N 93388 \N varietas Cerastium beeringianum var. grandiflorum \N \N \N \N \N 93389 P.transvaalensis Polystachya Polystachya transvaalensis \N \N \N \N \N 93390 M.mirabilis Miconia Miconia mirabilis camasey cuatrocanales \N \N \N \N 93391 L.assimilis Leucopogon Leucopogon assimilis \N \N \N \N \N 93392 \N genus Etlingera \N \N \N \N \N 93393 \N genus Semele \N \N \N \N \N 93394 S.brassiciforme Sisymbrium Sisymbrium brassiciforme \N \N \N \N \N 93395 G.macrophyllus Goniothalamus Goniothalamus macrophyllus \N \N \N \N \N 93396 C.debdouensis Centaurea Centaurea debdouensis \N \N \N \N \N 93397 D.venosa Diuris Diuris venosa \N \N \N \N \N 93398 \N genus Tetradoxa \N \N \N \N \N 93399 \N genus Gynocardia \N \N \N \N \N 93400 R.mucronata Rhizophora Rhizophora mucronata \N \N \N \N \N 93401 E.spathaceus Euryops Euryops spathaceus \N \N \N \N \N 93402 L.flavicans Leucocroton Leucocroton flavicans \N \N \N \N \N 93403 \N no rank Betula pendula var. carelica \N \N \N \N \N 93404 S.trifolia Sagittaria Sagittaria trifolia \N \N \N \N \N 93405 C.rapunculoides Campanula Campanula rapunculoides European bellflower,clochettes,creeping bellflower \N \N \N \N 93406 \N genus Humbertiella \N \N \N \N \N 93407 R.ecuadorensis Raycadenco Raycadenco ecuadorensis \N \N \N \N \N 93408 A.caesia Aechmea Aechmea caesia \N \N \N \N \N 93409 \N genus Galipea \N \N \N \N \N 93410 \N genus Smithatris \N \N \N \N \N 93411 H.angolense Hypericophyllum Hypericophyllum angolense \N \N \N \N \N 93412 T.obovata Tephrosia Tephrosia obovata \N \N \N \N \N 93413 L.europaeus Loranthus Loranthus europaeus \N \N \N \N \N 93414 A.peruvianum Aphanelytrum Aphanelytrum peruvianum \N \N \N \N \N 93415 O.stenoptera Oxalis Oxalis stenoptera \N \N \N \N \N 93416 G.tenellus Gasteranthus Gasteranthus tenellus \N \N \N \N \N 93417 H.rusbyi Halenia Halenia rusbyi \N \N \N \N \N 93418 C.scorzonerifolia Curculigo Curculigo scorzonerifolia \N \N \N \N \N 93419 A.nevadensis Arnica Arnica nevadensis \N \N \N \N \N 93420 H.lucida Hyoseris Hyoseris lucida \N \N \N \N \N 93421 A.marnieriana Alluaudiopsis Alluaudiopsis marnieriana \N \N \N \N \N 93422 \N subspecies Nigella degenii subsp. barbro \N \N \N \N \N 93423 I.sabulosa Ivesia Ivesia sabulosa \N \N \N \N \N 93424 U.palmeri Urbinella Urbinella palmeri \N \N \N \N \N 93425 H.coronatum Haplophyllum Haplophyllum coronatum \N \N \N \N \N 93426 K.velutina Kosteletzkya Kosteletzkya velutina \N \N \N \N \N 93427 L.1110 Lachenalia Lachenalia sp. Wetschnig 1110 \N \N \N \N \N 101011 \N family Koeberliniaceae \N \N \N \N \N 93428 E.porphyrium Epilobium Epilobium porphyrium \N \N \N \N \N 93429 P.diffusa Pulicaria Pulicaria diffusa \N \N \N \N \N 93430 A.longifolia Astridia Astridia longifolia \N \N \N \N \N 93431 \N subfamily Danthonioideae \N \N \N \N \N 93432 R.sicula Rosa Rosa sicula \N \N \N \N \N 93433 A.megalophylla Ampelopsis Ampelopsis megalophylla \N \N \N \N \N 93434 A.gardneri Atriplex Atriplex gardneri \N \N \N \N \N 93435 X.Castle' x Sophrolaeliocattleya x Sophrolaeliocattleya 'Love Castle' \N \N \N \N \N 93436 S.undulata Schomburgkia Schomburgkia undulata \N \N \N \N \N 93437 T.nervosum Tetramerium Tetramerium nervosum \N \N \N \N \N 93438 O.hieracioides Oritrophium Oritrophium hieracioides \N \N \N \N \N 93439 O.LE148 unclassified Orobanchaceae Orobanchaceae sp. LE148 \N \N \N \N \N 93440 \N varietas Carex deflexa var. boottii \N \N \N \N \N 93441 \N subspecies Crepis albida subsp. grosii \N \N \N \N \N 93442 L.mantaroensis Lupinus Lupinus mantaroensis \N \N \N \N \N 93443 H.s.n. Hydriastele Hydriastele sp. Watling s.n. \N \N \N \N \N 93444 D.XMW-2002-17 Dendrobium Dendrobium sp. XMW-2002-17 \N \N \N \N \N 93445 I.pulchra Indigofera Indigofera pulchra \N \N \N \N \N 93446 A.tinneana Ammocharis Ammocharis tinneana \N \N \N \N \N 93447 P.lactiflora Paeonia Paeonia lactiflora Chinese peony,common garden peony \N \N \N \N 93448 P.amesianum Paraholcoglossum Paraholcoglossum amesianum \N \N \N \N \N 93449 \N subspecies Calceolaria ericoides subsp. ericoides \N \N \N \N \N 93450 S.pinetorum Saussurea Saussurea pinetorum \N \N \N \N \N 93451 H.sp. Hedycarya Hedycarya sp. \N \N \N \N \N 93452 \N varietas Lathyrus clymenum var. articulatus \N \N \N \N \N 93453 P.loranthoides Podocalyx Podocalyx loranthoides \N \N \N \N \N 93454 D.ajanensis Dryas Dryas ajanensis \N \N \N \N \N 93455 P.caespitosum Pelargonium Pelargonium caespitosum \N \N \N \N \N 93456 P.lingulatus Phyllanthus Phyllanthus lingulatus \N \N \N \N \N 93457 T.flanaganii Tylophora Tylophora flanaganii \N \N \N \N \N 93458 D.fairchildiae Dendrobium Dendrobium fairchildiae \N \N \N \N \N 93459 H.chinensis Hemsleya Hemsleya chinensis \N \N \N \N \N 93460 \N genus Tetraglochin \N \N \N \N \N 93461 P.nova-guineensis Pseuduvaria Pseuduvaria nova-guineensis \N \N \N \N \N 93462 S.ovata Simsia Simsia ovata \N \N \N \N \N 93463 S.linearis Solms-laubachia Solms-laubachia linearis \N \N \N \N \N 93464 T.brownii Typhonium Typhonium brownii \N \N \N \N \N 93465 I.littoralis Ipomoea Ipomoea littoralis \N \N \N \N \N 93466 \N genus Leptochiton \N \N \N \N \N 93467 \N subspecies Phyllanthus urinaria subsp. urinaria \N \N \N \N \N 93468 \N genus Lophopyrum \N \N \N \N \N 93469 G.malayanus Goniothalamus Goniothalamus malayanus \N \N \N \N \N 93470 P.guineense Piper Piper guineense \N \N \N \N \N 93471 \N subspecies Aegilops tauschii subsp. tauschii \N \N \N \N \N 93472 M.lucidus Microdon Microdon lucidus \N \N \N \N \N 93473 M.livida Matthiola Matthiola livida \N \N \N \N \N 93474 C.alfredii Combretum Combretum alfredii \N \N \N \N \N 93475 T.capillacea Tetraria Tetraria capillacea \N \N \N \N \N 93476 R.iconiensis Rhaponticoides Rhaponticoides iconiensis \N \N \N \N \N 93477 \N genus Scyphocoronis \N \N \N \N \N 93478 \N genus Coulterophytum \N \N \N \N \N 93479 S.pilosulum Stenandrium Stenandrium pilosulum \N \N \N \N \N 93480 B.maderensis Bystropogon Bystropogon maderensis \N \N \N \N \N 93481 S.coriacea Sindora Sindora coriacea \N \N \N \N \N 93482 C.juncea Carmichaelia Carmichaelia juncea \N \N \N \N \N 93483 Y.periculosa Yucca Yucca periculosa izote yucca \N \N \N \N 93484 P.tetramera Phacelia Phacelia tetramera \N \N \N \N \N 93485 \N subspecies Haemodorum planifolium subsp. planifolium \N \N \N \N \N 93486 T.usambarensis Tournefortia Tournefortia usambarensis \N \N \N \N \N 93487 A.uliginosum Actinobole Actinobole uliginosum \N \N \N \N \N 93488 C.wiedemanniana Cota Cota wiedemanniana \N \N \N \N \N 93489 S.alabamensis Sarracenia Sarracenia alabamensis Alabama pitcherplant \N \N \N \N 93490 S.latifolia Sloanea Sloanea latifolia \N \N \N \N \N 93491 T.stipulatum Tropaeolum Tropaeolum stipulatum \N \N \N \N \N 93492 C.turkestanica Cortusa Cortusa turkestanica \N \N \N \N \N 93493 \N subtribe Vernoniinae \N \N \N \N \N 93494 T.obovatum Taraxacum Taraxacum obovatum \N \N \N \N \N 93495 D.vlad-tepes Dracula Dracula vlad-tepes \N \N \N \N \N 93496 C.aconitifolius Cnidoscolus Cnidoscolus aconitifolius \N \N \N \N \N 93497 A.maxima Aristolochia Aristolochia maxima \N \N \N \N \N 93498 A.ramosa Aeranthes Aeranthes ramosa \N \N \N \N \N 93499 D.viereckii Dryopetalon Dryopetalon viereckii \N \N \N \N \N 93500 B.reticulata Behnia Behnia reticulata \N \N \N \N \N 93501 B.hamatipes Bulbophyllum Bulbophyllum hamatipes \N \N \N \N \N 93502 H.C864 Halophila Halophila sp. C864 \N \N \N \N \N 93503 E.tropophylla Eugenia Eugenia tropophylla \N \N \N \N \N 93504 F.andicola Festuca Festuca andicola \N \N \N \N \N 93505 H.maxima Heuchera Heuchera maxima island alumroot \N \N \N \N 93506 T.wangii Tsiorchis Tsiorchis wangii \N \N \N \N \N 93507 \N genus Ruyschia \N \N \N \N \N 93508 C.diamantina Clusia Clusia diamantina \N \N \N \N \N 93509 M.laxum Molongum Molongum laxum \N \N \N \N \N 93510 O.pinorum Orobanche Orobanche pinorum \N \N \N \N \N 93511 A.pallasiana Ajania Ajania pallasiana \N \N \N \N \N 93512 \N tribe Bupleureae \N \N \N \N \N 93513 C.linoides Chironia Chironia linoides \N \N \N \N \N 93514 \N genus Koilodepas \N \N \N \N \N 93515 M.umbellata Metrosideros Metrosideros umbellata \N \N \N \N \N 93516 C.floccosa Centaurea Centaurea floccosa \N \N \N \N \N 93517 A.humilis Ancylostemon Ancylostemon humilis \N \N \N \N \N 93518 C.rhodesiana Cuscuta Cuscuta rhodesiana \N \N \N \N \N 93519 L.setosus Lycurus Lycurus setosus \N \N \N \N \N 93520 L.BA1 Lithocarpus Lithocarpus sp. BA1 \N \N \N \N \N 93521 P.calluniflora Polystachya Polystachya calluniflora \N \N \N \N \N 93522 H.spicata Holzneria Holzneria spicata \N \N \N \N \N 93523 E.bidwillii Exocarpos Exocarpos bidwillii \N \N \N \N \N 93524 D.incrassata Dehaasia Dehaasia incrassata \N \N \N \N \N 93525 A.hypoglauca Aniba Aniba hypoglauca \N \N \N \N \N 93526 L.cartilagineum Lepidium Lepidium cartilagineum \N \N \N \N \N 93527 \N tribe Lyonieae \N \N \N \N \N 93528 Z.baeuerlenii Zieria Zieria baeuerlenii \N \N \N \N \N 93529 C.torta Carex Carex torta \N \N \N \N \N 93530 X.stuhlmannii Xeroderris Xeroderris stuhlmannii \N \N \N \N \N 93531 R.strubeniae Ruschia Ruschia strubeniae \N \N \N \N \N 93532 P.jamaicensis Phialanthus Phialanthus jamaicensis \N \N \N \N \N 93533 L.bulbiferum Lilium Lilium bulbiferum \N \N \N \N \N 93534 A.setifolia Aristida Aristida setifolia \N \N \N \N \N 93535 N.phebalioides Nematolepis Nematolepis phebalioides \N \N \N \N \N 93536 S.asper Strobilanthes Strobilanthes asper \N \N \N \N \N 93537 C.rigidus Cucumis Cucumis rigidus \N \N \N \N \N 93538 T.simiarum Theobroma Theobroma simiarum \N \N \N \N \N 93539 B.aspera Byttneria Byttneria aspera \N \N \N \N \N 93540 U.mutica Urochloa Urochloa mutica Dutch grass,buffalo grass \N \N \N \N 93541 D.persica Dolichorrhiza Dolichorrhiza persica \N \N \N \N \N 93542 \N genus Pseudocranichis \N \N \N \N \N 93543 T.flavum Teucrium Teucrium flavum \N \N \N \N \N 93544 Z.bradleyanum Zingiber Zingiber bradleyanum \N \N \N \N \N 93545 S.MD-2011 Sobralia Sobralia sp. MD-2011 \N \N \N \N \N 93546 S.spathulifolia Saussurea Saussurea spathulifolia \N \N \N \N \N 93547 P.ngoyensis Peristylus Peristylus ngoyensis \N \N \N \N \N 93548 T.aphyllus Tristerix Tristerix aphyllus \N \N \N \N \N 93549 \N varietas Hypericum canariense var. canariense \N \N \N \N \N 93550 B.wamin Bambusa Bambusa wamin \N \N \N \N \N 93551 D.bicornutum Delphinium Delphinium bicornutum \N \N \N \N \N 93552 M.rara Microtis Microtis rara \N \N \N \N \N 93553 A.multispicata Acacia Acacia multispicata \N \N \N \N \N 93554 \N genus Lunaria \N \N \N \N \N 93555 H.bidentata Hexisea Hexisea bidentata \N \N \N \N \N 93556 \N genus Notothlaspi \N \N \N \N \N 93557 S.pusillum Solanum Solanum pusillum \N \N \N \N \N 93558 M.1132 Massonia Massonia sp. Wetschnig 1132 \N \N \N \N \N 93559 C.octacantha Coryphantha Coryphantha octacantha \N \N \N \N \N 93560 I.monantha Indigofera Indigofera monantha \N \N \N \N \N 93561 P.nigrescens Pilea Pilea nigrescens \N \N \N \N \N 93562 A.parasiebenlistii Afrocanthium Afrocanthium parasiebenlistii \N \N \N \N \N 93563 V.2577 Vellozia Vellozia sp. Mello-Silva 2577 \N \N \N \N \N 93564 N.longifolia Notelaea Notelaea longifolia \N \N \N \N \N 93565 A.altaicum Allium Allium altaicum \N \N \N \N \N 93566 M.auriculata Mimosa Mimosa auriculata \N \N \N \N \N 93567 O.inaequalis Orcuttia Orcuttia inaequalis \N \N \N \N \N 93568 B.O00316_1 Bulbophyllum Bulbophyllum sp. O00316_1 \N \N \N \N \N 93569 F.emarginata Fenerivia Fenerivia emarginata \N \N \N \N \N 93570 \N genus Cistus \N \N \N \N \N 93571 A.dubia Aiouea Aiouea dubia \N \N \N \N \N 93572 A.virginica Antennaria Antennaria virginica \N \N \N \N \N 93573 A.truncatum Allium Allium truncatum \N \N \N \N \N 93574 \N genus Parapiptadenia \N \N \N \N \N 93575 R.tridentata Rhoicissus Rhoicissus tridentata \N \N \N \N \N 93576 D.sankeyi Disa Disa sankeyi \N \N \N \N \N 93577 \N genus Dalea \N \N \N \N \N 93578 L.owariensis Lepistemon Lepistemon owariensis \N \N \N \N \N 93579 M.coronicarpa Melaleuca Melaleuca coronicarpa \N \N \N \N \N 93580 H.canum Helianthemum Helianthemum canum \N \N \N \N \N 93581 A.italica Anchusa Anchusa italica \N \N \N \N \N 93582 S.inelegans Solanum Solanum inelegans \N \N \N \N \N 93583 C.vicioides Coursetia Coursetia vicioides \N \N \N \N \N 93584 P.simonii Prunus Prunus simonii apricot plum,xing li \N \N \N \N 93585 A.pilosa Annickia Annickia pilosa \N \N \N \N \N 93586 C.lineolata Consolida Consolida lineolata \N \N \N \N \N 93587 M.urophylla Mandevilla Mandevilla urophylla \N \N \N \N \N 93588 N.albus Nematanthus Nematanthus albus \N \N \N \N \N 93589 \N genus Calostephane \N \N \N \N \N 93590 A.murpheyi Agave Agave murpheyi \N \N \N \N \N 93591 S.longipes Stellaria Stellaria longipes \N \N \N \N \N 93592 M.americanum Melampodium Melampodium americanum \N \N \N \N \N 93593 G.monostachia Guzmania Guzmania monostachia \N \N \N \N \N 93594 C.linearis Chaetanthera Chaetanthera linearis \N \N \N \N \N 93595 P.glabella Peperomia Peperomia glabella \N \N \N \N \N 93596 \N genus Isochilus \N \N \N \N \N 93597 \N family Myricaceae bayberry family \N \N \N \N 93598 R.sesquifolius Raphiocarpus Raphiocarpus sesquifolius \N \N \N \N \N 93599 \N subfamily Calloideae \N \N \N \N \N 93600 \N genus Moullava \N \N \N \N \N 93601 D.LBF-2005 Deidamia Deidamia sp. LBF-2005 \N \N \N \N \N 93602 P.depressum Polycarpon Polycarpon depressum \N \N \N \N \N 93603 O.oestrifera Ophrys Ophrys oestrifera \N \N \N \N \N 93604 C.97027 Cabomba Cabomba sp. Qiu 97027 \N \N \N \N \N 93605 C.macrourus Cenchrus Cenchrus macrourus \N \N \N \N \N 93606 T.miegeanum Trifolium Trifolium miegeanum \N \N \N \N \N 93607 C.picta Cyrtandra Cyrtandra picta \N \N \N \N \N 93608 \N genus Microcephala \N \N \N \N \N 93609 A.glauca Acaciella Acaciella glauca \N \N \N \N \N 93610 C.reniformis Cyrtostylis Cyrtostylis reniformis \N \N \N \N \N 93611 V.tomentosa Valeriana Valeriana tomentosa \N \N \N \N \N 93612 \N forma Pinguicula grandiflora f. pallida \N \N \N \N \N 93613 \N tribe Corymbieae \N \N \N \N \N 93614 O.longipetala Oxandra Oxandra longipetala \N \N \N \N \N 93615 T.adscendens Tillandsia Tillandsia adscendens \N \N \N \N \N 93616 P.sasaimanum Piper Piper sasaimanum \N \N \N \N \N 93617 D.macrocarpa Drimia Drimia macrocarpa \N \N \N \N \N 93618 E.phosphorea Euphorbia Euphorbia phosphorea \N \N \N \N \N 93619 K.angustifolia Kageneckia Kageneckia angustifolia \N \N \N \N \N 93620 \N genus Philydrella \N \N \N \N \N 93621 T.beauvaisii Tetrastigma Tetrastigma beauvaisii \N \N \N \N \N 93622 P.latestipulatum Pediomelum Pediomelum latestipulatum \N \N \N \N \N 93623 M.retusa Molinaea Molinaea retusa \N \N \N \N \N 93624 C.paniculatus Celastrus Celastrus paniculatus \N \N \N \N \N 93625 C.pseudomollis Cousinia Cousinia pseudomollis \N \N \N \N \N 93626 \N genus Borassodendron \N \N \N \N \N 93627 T.526 unclassified Taraxacum Taraxacum (sect. Calanthodia) sp. 526 \N \N \N \N \N 93628 \N genus Ruptiliocarpon \N \N \N \N \N 93629 T.mandragora Turbinicarpus Turbinicarpus mandragora \N \N \N \N \N 93630 S.fortunei Silene Silene fortunei \N \N \N \N \N 93631 A.SH-2010 Alberta Alberta sp. SH-2010 \N \N \N \N \N 93632 S.blackiana Sarcocornia Sarcocornia blackiana \N \N \N \N \N 93633 I.mertensii Ilex Ilex mertensii \N \N \N \N \N 93634 S.magna Setaria Setaria magna \N \N \N \N \N 93635 V.'australis' Vallisneria Vallisneria sp. 'australis' \N \N \N \N \N 93636 S.trilobatum Solanum Solanum trilobatum \N \N \N \N \N 93637 L.madidum Leptospermum Leptospermum madidum \N \N \N \N \N 93638 \N genus Oreopolus \N \N \N \N \N 93639 M.spinosum Macledium Macledium spinosum \N \N \N \N \N 93640 C.ciliaris Cenchrus Cenchrus ciliaris African foxtail grass,buffelgrass \N \N \N \N 93641 B.bituminosa Bituminaria Bituminaria bituminosa \N \N \N \N \N 93642 S.formosana Symplocos Symplocos formosana \N \N \N \N \N 93643 E.griffithianus Echinops Echinops griffithianus \N \N \N \N \N 93644 P.pinicola Polystachya Polystachya pinicola \N \N \N \N \N 93645 S.acreana Swartzia Swartzia acreana \N \N \N \N \N 93646 A.arizonica Argemone Argemone arizonica \N \N \N \N \N 93647 P.529 Polysphaeria Polysphaeria sp. Groves 529 \N \N \N \N \N 93648 \N varietas Wedelia biflora var. ryukyuensis \N \N \N \N \N 93649 P.dielsiana Prunus Prunus dielsiana \N \N \N \N \N 93650 S.domingensis Sabal Sabal domingensis \N \N \N \N \N 93651 A.sachalinensis Angelica Angelica sachalinensis \N \N \N \N \N 93652 G.02-604 Globba Globba sp. Williams 02-604 \N \N \N \N \N 93653 \N genus Astronium \N \N \N \N \N 93654 \N genus Haworthia \N \N \N \N \N 93655 C.ranunculoides Clematis Clematis ranunculoides \N \N \N \N \N 93656 R.angulata Rafnia Rafnia angulata \N \N \N \N \N 93657 \N genus Dracaena \N \N \N \N \N 93658 R.arnoldii Rafflesia Rafflesia arnoldii \N \N \N \N \N 93659 A.obscurus Astragalus Astragalus obscurus \N \N \N \N \N 93660 S.undulatum Symphyotrichum Symphyotrichum undulatum \N \N \N \N \N 93661 S.SP020 Sisyrinchium Sisyrinchium aff. bellum SP020 \N \N \N \N \N 93662 S.hispidissimus Senecio Senecio hispidissimus \N \N \N \N \N 93663 S.chancayense Solanum Solanum chancayense \N \N \N \N \N 93664 P.alatum Pseuderanthemum Pseuderanthemum alatum \N \N \N \N \N 93665 C.opaca Clematicissus Clematicissus opaca \N \N \N \N \N 93666 C.aurantiicarpa Cyrtandra Cyrtandra aurantiicarpa \N \N \N \N \N 93667 C.suberosus Croton Croton suberosus \N \N \N \N \N 93668 E.rostellata Eleocharis Eleocharis rostellata \N \N \N \N \N 93669 \N genus Malpighia \N \N \N \N \N 93670 C.franchetii Cypripedium Cypripedium franchetii \N \N \N \N \N 93671 \N genus Angophora gum myrtles \N \N \N \N 93672 E.globularis Elytrophorus Elytrophorus globularis \N \N \N \N \N 93673 \N family Calyceraceae \N \N \N \N \N 93674 A.splendens Acaena Acaena splendens \N \N \N \N \N 93675 M.longiligula Muhlenbergia Muhlenbergia longiligula \N \N \N \N \N 93676 P.nobilis Ptilotus Ptilotus nobilis \N \N \N \N \N 93677 \N subspecies Fagus hayatae subsp. pashanica \N \N \N \N \N 93678 U.bojeri Uapaca Uapaca bojeri \N \N \N \N \N 93679 H.lepidosperma Halosarcia Halosarcia lepidosperma \N \N \N \N \N 93680 R.amagianum Rhododendron Rhododendron amagianum \N \N \N \N \N 93681 B.purpurea Barbacenia Barbacenia purpurea \N \N \N \N \N 93682 F.alburyana Fritillaria Fritillaria alburyana \N \N \N \N \N 93683 C.reflexa Correa Correa reflexa \N \N \N \N \N 93684 M.pilosa Menziesia Menziesia pilosa minniebush \N \N \N \N 93685 K.houghtonii Kalanchoe Kalanchoe x houghtonii \N \N \N \N \N 93686 B.zollingeriana Boehmeria Boehmeria zollingeriana \N \N \N \N \N 93687 S.hirsuta Steganthera Steganthera hirsuta \N \N \N \N \N 93688 P.spinescens Pittosporum Pittosporum spinescens \N \N \N \N \N 93689 A.hollrungii Alocasia Alocasia hollrungii \N \N \N \N \N 93690 C.occidentalis Crepis Crepis occidentalis \N \N \N \N \N 93691 A.pallida Asterolasia Asterolasia pallida \N \N \N \N \N 93692 N.umbelliflora Nothaphoebe Nothaphoebe umbelliflora \N \N \N \N \N 93693 \N genus Delpydora \N \N \N \N \N 93694 \N genus Xantonnea \N \N \N \N \N 93695 E.granulosa Erica Erica granulosa \N \N \N \N \N 93696 D.mucronata Ditassa Ditassa mucronata \N \N \N \N \N 93697 C.carpesioides Cephalosorus Cephalosorus carpesioides \N \N \N \N \N 93698 C.diluta Carex Carex diluta \N \N \N \N \N 93699 \N varietas Ceanothus cuneatus var. rigidus \N \N \N \N \N 93700 P.klotzschianum Piper Piper klotzschianum \N \N \N \N \N 93701 P.peruviana Pamianthe Pamianthe peruviana \N \N \N \N \N 93702 \N genus Cymbonotus \N \N \N \N \N 93703 M.quinqueflora Milleria Milleria quinqueflora \N \N \N \N \N 93704 R.longisepala Rhodomyrtus Rhodomyrtus longisepala \N \N \N \N \N 93705 \N subspecies Kyllinga brevifolia subsp. brevifolia \N \N \N \N \N 93706 \N genus Stramentopappus \N \N \N \N \N 93707 A.rubrum Arceuthobium Arceuthobium rubrum \N \N \N \N \N 93708 C.uniflorus Calochortus Calochortus uniflorus \N \N \N \N \N 93709 T.multicaulis Tillandsia Tillandsia multicaulis \N \N \N \N \N 93710 \N genus Urgineopsis \N \N \N \N \N 93711 D.sophronites Dendrobium Dendrobium sophronites \N \N \N \N \N 93712 A.fraxinifolia Andira Andira fraxinifolia \N \N \N \N \N 93713 S.stewartii Scalesia Scalesia stewartii \N \N \N \N \N 93714 \N genus Tisonia \N \N \N \N \N 93715 P.asarifolia Pyrola Pyrola asarifolia \N \N \N \N \N 93716 \N genus Malva \N \N \N \N \N 93717 C.occultata Coelogyne Coelogyne occultata \N \N \N \N \N 93718 O.angusta Odixia Odixia angusta \N \N \N \N \N 93719 M.virginica Manfreda Manfreda virginica false aloe \N \N \N \N 93720 A.klimesii Alyssum Alyssum klimesii \N \N \N \N \N 93721 V.barrelieri Veronica Veronica barrelieri \N \N \N \N \N 104032 \N genus Neopicrorhiza \N \N \N \N \N 93722 J.serpyllifolia Jacquemontia Jacquemontia serpyllifolia \N \N \N \N \N 93723 N.pemphidius Nautilocalyx Nautilocalyx pemphidius \N \N \N \N \N 93724 C.grandiflorum Cymbidium Cymbidium grandiflorum \N \N \N \N \N 93725 C.perdentata Carex Carex perdentata \N \N \N \N \N 93726 C.quadricostata Cusickiella Cusickiella quadricostata \N \N \N \N \N 93727 \N genus Parasassafras \N \N \N \N \N 93728 E.tenella Eragrostis Eragrostis tenella Bug's egg grass,Japanese lovegrass \N \N \N \N 93729 H.gardnerianum Hedychium Hedychium gardnerianum \N \N \N \N \N 93730 C.multicaulis Calotis Calotis multicaulis \N \N \N \N \N 93731 \N genus Fatoua \N \N \N \N \N 93732 A.rossii Acomastylis Acomastylis rossii \N \N \N \N \N 93733 Z.maheshwarii Zeylanidium Zeylanidium maheshwarii \N \N \N \N \N 93734 P.arborea Passiflora Passiflora arborea \N \N \N \N \N 93735 \N subspecies Tasmannia xerophila subsp. xerophila \N \N \N \N \N 93736 S.confusa Spermacoce Spermacoce confusa \N \N \N \N \N 93737 B.SH-2010 Bougainvillea Bougainvillea sp. SH-2010 \N \N \N \N \N 93738 L.aschersonii Lepidium Lepidium aschersonii \N \N \N \N \N 93739 S.multiovula Sterculia Sterculia multiovula \N \N \N \N \N 93740 S.villosa Soldanella Soldanella villosa \N \N \N \N \N 93741 M.quadrivalvis Melloa Melloa quadrivalvis \N \N \N \N \N 93742 P.maingayi Psychotria Psychotria maingayi \N \N \N \N \N 93743 W.caespitosa Werneria Werneria caespitosa \N \N \N \N \N 93744 C.autraniana Campanula Campanula autraniana \N \N \N \N \N 93745 A.peninsularis Arctostaphylos Arctostaphylos peninsularis \N \N \N \N \N 93746 S.sieberi Scutellaria Scutellaria sieberi \N \N \N \N \N 93747 I.cordata Impatiens Impatiens cordata \N \N \N \N \N 93748 B.patellaris Beta Beta patellaris \N \N \N \N \N 93749 N.413 Nolana Nolana sp. 413 \N \N \N \N \N 93750 S.plicata Spathoglottis Spathoglottis plicata \N \N \N \N \N 93751 S.usaramense Solanum Solanum usaramense \N \N \N \N \N 93752 S.phyllacanthus Stenocactus Stenocactus phyllacanthus \N \N \N \N \N 93753 M.703 Machaerium Machaerium sp. Pennington 703 \N \N \N \N \N 93754 M.patulus Mimulus Mimulus patulus \N \N \N \N \N 93755 R.saruwagedicum Rhododendron Rhododendron saruwagedicum \N \N \N \N \N 93756 \N genus Nothosmyrnium \N \N \N \N \N 93757 \N genus Afgekia \N \N \N \N \N 93758 \N varietas Ambrosia artemisiifolia var. elatior \N \N \N \N \N 93759 \N genus Primula primroses \N \N \N \N 93760 M.craspedisetosa Mimosa Mimosa craspedisetosa \N \N \N \N \N 93761 \N varietas Prunus cerasoides var. campanulata Formosan cherry,Taiwan cherry \N \N \N \N 93762 L.tanycola Licuala Licuala tanycola \N \N \N \N \N 93763 B.nuwakotensis Begonia Begonia nuwakotensis \N \N \N \N \N 93764 G.tridentata Gongora Gongora tridentata \N \N \N \N \N 93765 C.guildingii Croton Croton guildingii \N \N \N \N \N 93766 L.uleanus Lupinus Lupinus uleanus \N \N \N \N \N 93767 C.latifolius Cenchrus Cenchrus latifolius \N \N \N \N \N 93768 B.barbinodis Bothriochloa Bothriochloa barbinodis \N \N \N \N \N 93769 \N subspecies Barbarea vulgaris subsp. rivularis \N \N \N \N \N 93770 G.rotundifolium Geranium Geranium rotundifolium \N \N \N \N \N 93771 \N genus Macrocatalpa \N \N \N \N \N 93772 P.azorica Prunus Prunus azorica \N \N \N \N \N 93773 P.madagascariense Phellolophium Phellolophium madagascariense \N \N \N \N \N 93774 E.chardinii Echinops Echinops chardinii \N \N \N \N \N 93775 \N genus Ruscus \N \N \N \N \N 93776 R.AS-2007 Ruprechtia Ruprechtia sp. AS-2007 \N \N \N \N \N 93777 W.hortensis Weigela Weigela hortensis \N \N \N \N \N 93778 N.denudata Nepeta Nepeta denudata \N \N \N \N \N 93779 I.francii Ixora Ixora francii \N \N \N \N \N 93780 R.exserta Ruellia Ruellia exserta \N \N \N \N \N 93781 D.aconitoides Disa Disa aconitoides \N \N \N \N \N 93782 F.saussureana Ficus Ficus saussureana \N \N \N \N \N 93783 C.schliebenii Coccinia Coccinia schliebenii \N \N \N \N \N 93784 P.konguensis Psychotria Psychotria konguensis \N \N \N \N \N 93785 H.armenium Helichrysum Helichrysum armenium \N \N \N \N \N 93786 P.drummondii Poranthera Poranthera drummondii \N \N \N \N \N 93787 \N genus Turgenia \N \N \N \N \N 93788 G.styllomisantha Galeandra Galeandra styllomisantha \N \N \N \N \N 93789 C.andersonii Cyrtopodium Cyrtopodium andersonii \N \N \N \N \N 93790 F.gigantea Furcraea Furcraea gigantea \N \N \N \N \N 93791 B.repanda Brachyglottis Brachyglottis repanda \N \N \N \N \N 93792 E.oxysepala Erica Erica oxysepala \N \N \N \N \N 93793 \N subspecies Vaccinium erythrocarpum subsp. japonicum \N \N \N \N \N 93794 B.coloradonis Bactris Bactris coloradonis \N \N \N \N \N 93795 S.laniceps Saussurea Saussurea laniceps \N \N \N \N \N 93796 B.globispica Betula Betula globispica \N \N \N \N \N 93797 B.calcicola Betula Betula calcicola \N \N \N \N \N 93798 \N varietas Cayaponia africana var. madagascariensis \N \N \N \N \N 93799 S.capixaba Schefflera Schefflera capixaba \N \N \N \N \N 93800 \N genus Phylloxylon \N \N \N \N \N 93801 B.infesta Bougainvillea Bougainvillea infesta \N \N \N \N \N 93802 C.keayana Coccinia Coccinia keayana \N \N \N \N \N 93803 E.multiflora Elaeagnus Elaeagnus multiflora goumi,natsu-gumi \N \N \N \N 93804 \N genus Asphodelus \N \N \N \N \N 93805 C.ramiflora Cynometra Cynometra ramiflora \N \N \N \N \N 93806 N.diatas Nepenthes Nepenthes diatas \N \N \N \N \N 93807 H.rubenachii Hymenochilus Hymenochilus rubenachii \N \N \N \N \N 93808 L.arenarius Lotus Lotus arenarius \N \N \N \N \N 93809 B.morondavensis Bauhinia Bauhinia morondavensis \N \N \N \N \N 93810 L.calcareus Leptopus Leptopus calcareus \N \N \N \N \N 93811 C.humbertii Carex Carex humbertii \N \N \N \N \N 93812 \N varietas Heliotropium curassavicum var. argentinum \N \N \N \N \N 93813 F.linifolia Felicia Felicia linifolia \N \N \N \N \N 93814 G.nigrolineata Garcinia Garcinia nigrolineata \N \N \N \N \N 93815 A.primulifolia Ardisia Ardisia primulifolia \N \N \N \N \N 93816 C.denticulato-platyphylla Crepidiastrixeris Crepidiastrixeris denticulato-platyphylla \N \N \N \N \N 93817 E.trifolium Erodium Erodium trifolium \N \N \N \N \N 93818 C.jensenianum Cinnamomum Cinnamomum jensenianum \N \N \N \N \N 93819 C.1228' Chusquea Chusquea sp. 'LC&XL 1228' \N \N \N \N \N 93820 P.hyssopifolia Prunella Prunella hyssopifolia \N \N \N \N \N 93821 H.nutans Heliconia Heliconia nutans \N \N \N \N \N 93822 M.friesiana Mutisia Mutisia friesiana \N \N \N \N \N 93823 F.301 Fragaria Fragaria sp. 301 \N \N \N \N \N 93827 A.matudae Aztecaster Aztecaster matudae \N \N \N \N \N 93828 C.990 Clitoria Clitoria sp. Pennington 990 \N \N \N \N \N 93829 R.granatensis Ranunculus Ranunculus granatensis \N \N \N \N \N 93830 C.somedanum Centaurium Centaurium somedanum \N \N \N \N \N 93831 V.jonghei Vriesea Vriesea jonghei \N \N \N \N \N 93832 H.scoparia Heliophila Heliophila scoparia \N \N \N \N \N 93833 M.baumii Mammillaria Mammillaria baumii \N \N \N \N \N 93834 H.compacta Hemithrinax Hemithrinax compacta \N \N \N \N \N 93835 C.integerrimus Ceanothus Ceanothus integerrimus \N \N \N \N \N 93836 N.enemeritoi Narcissus Narcissus enemeritoi \N \N \N \N \N 93837 I.tschudiana Ixorhea Ixorhea tschudiana \N \N \N \N \N 93838 L.pumila Luzula Luzula pumila \N \N \N \N \N 93839 P.dubia Phaedranassa Phaedranassa dubia \N \N \N \N \N 93840 \N varietas Simsia annectens var. annectens \N \N \N \N \N 93841 G.speciosa Galvezia Galvezia speciosa \N \N \N \N \N 93842 H.greenwayi Humbertochloa Humbertochloa greenwayi \N \N \N \N \N 93843 G.infecunda Grevillea Grevillea infecunda \N \N \N \N \N 93844 H.celtidifolia Hopea Hopea celtidifolia \N \N \N \N \N 93845 \N genus Wooleya \N \N \N \N \N 93846 H.diptera Halesia Halesia diptera \N \N \N \N \N 93847 M.SH-2010 Monechma Monechma sp. SH-2010 \N \N \N \N \N 93848 \N genus Diplostephium \N \N \N \N \N 93849 T.meyeri Tamarix Tamarix meyeri \N \N \N \N \N 93850 F.angulata Ferulago Ferulago angulata \N \N \N \N \N 93851 \N genus Iljinia \N \N \N \N \N 93852 \N genus Capuronia \N \N \N \N \N 93853 T.sananho Tabernaemontana Tabernaemontana sananho \N \N \N \N \N 93854 T.striata Tina Tina striata \N \N \N \N \N 93855 C.11552 Cyphostemma Cyphostemma sp. Luke 11552 \N \N \N \N \N 93856 Z.longicapsulare Zygophyllum Zygophyllum longicapsulare \N \N \N \N \N 93857 C.majestica Calathea Calathea majestica \N \N \N \N \N 93858 P.tristachya Peperomia Peperomia tristachya \N \N \N \N \N 93859 \N varietas Crassula decumbens var. decumbens \N \N \N \N \N 93860 D.uniflora Drosera Drosera uniflora \N \N \N \N \N 93861 \N genus Kedrostis \N \N \N \N \N 93862 \N genus Helictotrichon \N \N \N \N \N 93863 \N genus Gerrardanthus \N \N \N \N \N 93864 \N subspecies Vella pseudocytisus subsp. paui \N \N \N \N \N 93865 L.pinnatifidus Lecocarpus Lecocarpus pinnatifidus \N \N \N \N \N 93866 A.stokoei Aspalathus Aspalathus stokoei \N \N \N \N \N 93867 M.attenuata Monsonia Monsonia attenuata \N \N \N \N \N 93868 B.coccinea Bletia Bletia coccinea \N \N \N \N \N 93869 A.linearis Anisacanthus Anisacanthus linearis \N \N \N \N \N 93870 A.frigescens Acacia Acacia frigescens frosted wattle,montane wattle \N \N \N \N 93871 P.alsinifolia Pilea Pilea alsinifolia \N \N \N \N \N 93872 \N subspecies Cucurbita argyrosperma subsp. sororia \N \N \N \N \N 93873 D.esterhuyseniae Delosperma Delosperma esterhuyseniae \N \N \N \N \N 93874 G.wrightii Glochidion Glochidion wrightii \N \N \N \N \N 93875 L.atroviridis Licuala Licuala atroviridis \N \N \N \N \N 93876 D.obovata Diarrhena Diarrhena obovata \N \N \N \N \N 93877 E.pilosiflora Erica Erica pilosiflora \N \N \N \N \N 93878 D.astuta Dracula Dracula astuta \N \N \N \N \N 93879 L.rosei Lithospermum Lithospermum rosei \N \N \N \N \N 93880 P.setosa Pseuduvaria Pseuduvaria setosa \N \N \N \N \N 93881 C.sibthorpiana Crepis Crepis sibthorpiana \N \N \N \N \N 93882 S.affinis Shorea Shorea affinis \N \N \N \N \N 93883 V.supina Valeriana Valeriana supina \N \N \N \N \N 93884 R.albonervia Roldana Roldana albonervia \N \N \N \N \N 93885 B.coriacea Berkheya Berkheya coriacea \N \N \N \N \N 93886 A.wettsteiniana Aureliana Aureliana wettsteiniana \N \N \N \N \N 93887 P.microcarpus Phaseolus Phaseolus microcarpus \N \N \N \N \N 93888 O.apiculata Oedibasis Oedibasis apiculata \N \N \N \N \N 93889 W.punctata Wurmbea Wurmbea punctata \N \N \N \N \N 93890 H.rockii Hemilophia Hemilophia rockii \N \N \N \N \N 93891 P.nephrophylla Pyrola Pyrola nephrophylla \N \N \N \N \N 93892 \N genus Pseudoclausena \N \N \N \N \N 93893 L.lowei Lolium Lolium lowei \N \N \N \N \N 93894 K.kultiassovii Karatavia Karatavia kultiassovii \N \N \N \N \N 93895 \N varietas Castilleja integra var. integra \N \N \N \N \N 93896 P.acutifolius Potamogeton Potamogeton maackianus x Potamogeton acutifolius \N \N \N \N \N 93897 M.caerulea Molinia Molinia caerulea moor grass \N \N \N \N 93898 C.cycloides Chenopodium Chenopodium cycloides \N \N \N \N \N 93899 L.glandulosa Lycianthes Lycianthes glandulosa \N \N \N \N \N 93900 A.rigidum Amphiphyllum Amphiphyllum rigidum \N \N \N \N \N 93901 \N genus Micrandra \N \N \N \N \N 93902 T.cannabina Trema Trema cannabina \N \N \N \N \N 93903 A.andina Alstroemeria Alstroemeria andina \N \N \N \N \N 93904 W.volubilis Wattakaka Wattakaka volubilis \N \N \N \N \N 93905 H.heterophylla Harrysmithia Harrysmithia heterophylla \N \N \N \N \N 93906 G.splendens Guettarda Guettarda splendens \N \N \N \N \N 93907 G.taitensis Gardenia Gardenia taitensis bua \N \N \N \N 93908 V.umbellata Vigna Vigna umbellata mambi-bean,rice bean \N \N \N \N 93909 L.purpureocoerulea Lachenalia Lachenalia purpureocoerulea \N \N \N \N \N 93910 \N tribe Ceroxyleae \N \N \N \N \N 93911 \N genus Polemonium Jacob's ladders \N \N \N \N 93912 \N genus Secondatia \N \N \N \N \N 93913 P.glaberrima Pilea Pilea glaberrima \N \N \N \N \N 93914 C.strigillosus Celastrus Celastrus strigillosus \N \N \N \N \N 93915 P.fontanesii Plagius Plagius fontanesii \N \N \N \N \N 93916 \N genus Chrysopogon \N \N \N \N \N 93917 \N tribe Convolvuleae \N \N \N \N \N 93918 C.zebrina Caryota Caryota zebrina \N \N \N \N \N 93919 D.comorensis Danais Danais comorensis \N \N \N \N \N 93920 N.lutea Neptunia Neptunia lutea yellow puff \N \N \N \N 93921 A.ledifolia Astrotricha Astrotricha ledifolia \N \N \N \N \N 93922 H.lineatus Hapalorchis Hapalorchis lineatus \N \N \N \N \N 93923 G.dasypogon Gastrochilus Gastrochilus dasypogon \N \N \N \N \N 93924 X.sagittifolium Xanthosoma Xanthosoma sagittifolium malanga,ocumo,pomtajer,tania,yautia,yautia blanco \N \N \N \N 93925 M.alnifolia Melanophylla Melanophylla alnifolia \N \N \N \N \N 93926 B.carterae Bahiopsis Bahiopsis carterae \N \N \N \N \N 93927 D.stolonifera Drosera Drosera stolonifera \N \N \N \N \N 93928 N.assurgens Nertera Nertera assurgens \N \N \N \N \N 93929 A.scabra Agrostis Agrostis scabra \N \N \N \N \N 93930 H.globosum Helichrysum Helichrysum globosum \N \N \N \N \N 93931 \N genus Calycosia \N \N \N \N \N 93932 A.australasica Arenga Arenga australasica \N \N \N \N \N 93933 C.phaeocaulis Curcuma Curcuma phaeocaulis \N \N \N \N \N 93934 E.vacciniifolia Erithalis Erithalis vacciniifolia \N \N \N \N \N 93935 I.glandulifera Impatiens Impatiens glandulifera \N \N \N \N \N 93936 S.slootenii Shorea Shorea slootenii \N \N \N \N \N 93937 L.5912 Lethedon Lethedon sp. McPherson 5912 \N \N \N \N \N 93938 E.fastigiatus Echinops Echinops fastigiatus \N \N \N \N \N 93939 G.oresbia Gynochthodes Gynochthodes oresbia \N \N \N \N \N 93940 A.giraffae Acacia Acacia x giraffae \N \N \N \N \N 93941 F.peruviana Fusaea Fusaea peruviana \N \N \N \N \N 93942 \N genus Phylohydrax \N \N \N \N \N 93943 L.cymbalaria Lithophragma Lithophragma cymbalaria \N \N \N \N \N 93944 E.longiflora Ekmanianthe Ekmanianthe longiflora \N \N \N \N \N 93945 H.indicus Hemidesmus Hemidesmus indicus \N \N \N \N \N 93946 P.rupestris Polygala Polygala rupestris \N \N \N \N \N 93947 R.salvadorica Rensonia Rensonia salvadorica \N \N \N \N \N 93948 \N genus Achillea \N \N \N \N \N 93949 A.cana Agastache Agastache cana mosquito plant \N \N \N \N 93950 \N genus Metapanax \N \N \N \N \N 93951 N.argemonoides Nasa Nasa argemonoides \N \N \N \N \N 93952 S.jorori Swartzia Swartzia jorori \N \N \N \N \N 93953 S.officinalis Smilax Smilax officinalis \N \N \N \N \N 93954 P.tectoniifolium Piper Piper tectoniifolium \N \N \N \N \N 93955 P.prolifera Petrorhagia Petrorhagia prolifera \N \N \N \N \N 93956 C.trichotoma Crotalaria Crotalaria trichotoma curara-pea \N \N \N \N 93957 \N genus Asemnantha \N \N \N \N \N 93958 G.inconspicua Guettardella Guettardella inconspicua \N \N \N \N \N 93959 A.erythrocarpa Arctous Arctous erythrocarpa \N \N \N \N \N 93960 A.mellifera Acacia Acacia mellifera hookthorn,swaarthaak \N \N \N \N 93961 P.hirta Peperomia Peperomia hirta \N \N \N \N \N 93962 \N genus Entada \N \N \N \N \N 93963 S.roseospatha Schismatoglottis Schismatoglottis roseospatha \N \N \N \N \N 93964 \N varietas Crotalaria medicaginea var. luxurians \N \N \N \N \N 93965 H.dasycalyx Hibiscus Hibiscus dasycalyx Neches River rosemallow \N \N \N \N 93966 D.kotschyi Dielsiocharis Dielsiocharis kotschyi \N \N \N \N \N 93967 S.humile Stenandrium Stenandrium humile \N \N \N \N \N 93968 K.villosissima Kochia Kochia villosissima \N \N \N \N \N 93969 \N genus Pleuropappus \N \N \N \N \N 93970 R.crassifolia Rhaphidophora Rhaphidophora crassifolia \N \N \N \N \N 93971 T.demissa Tillandsia Tillandsia demissa \N \N \N \N \N 93972 T.lorifera Tabernaemontana Tabernaemontana lorifera \N \N \N \N \N 93973 \N genus Peyritschia \N \N \N \N \N 93974 \N subspecies Anemone narcissiflora subsp. sibirica \N \N \N \N \N 93975 S.gentianoides Sabatia Sabatia gentianoides \N \N \N \N \N 93976 P.D795 Parnassia Parnassia sp. Wurdack D795 \N \N \N \N \N 93977 M.2380 Maxillaria Maxillaria sp. Whitten 2380 \N \N \N \N \N 93978 L.P4074 Lolium Lolium sp. P4074 \N \N \N \N \N 93979 C.clementei Centaurea Centaurea clementei \N \N \N \N \N 93980 \N tribe Notocacteae \N \N \N \N \N 93981 M.tweedieana Mangonia Mangonia tweedieana \N \N \N \N \N 93982 \N genus Theophrasta \N \N \N \N \N 93983 D.gilva Descurainia Descurainia gilva \N \N \N \N \N 93984 A.purseglovei Aridarum Aridarum purseglovei \N \N \N \N \N 93985 C.glutinosum Combretum Combretum glutinosum \N \N \N \N \N 93986 T.bicolor Trigonella Trigonella bicolor \N \N \N \N \N 93987 P.s.n. Prescottia Prescottia sp. Christenson s.n. \N \N \N \N \N 93988 \N subspecies Eleocharis palustris subsp. palustris \N \N \N \N \N 93989 \N subspecies Felicia bellidioides subsp. bellidioides \N \N \N \N \N 93990 \N no rank unclassified Menyanthaceae \N \N \N \N \N 93991 D.comiferum Diastema Diastema comiferum \N \N \N \N \N 93992 S.adpressa Sibbaldianthe Sibbaldianthe adpressa \N \N \N \N \N 93993 E.collenettei Echiochilon Echiochilon collenettei \N \N \N \N \N 93994 C.12506 Commelina Commelina sp. Goldblatt 12506 \N \N \N \N \N 93995 C.walkeri Chirita Chirita walkeri \N \N \N \N \N 93996 A.sterilis Anthemis Anthemis sterilis \N \N \N \N \N 93997 \N genus Kolobopetalum \N \N \N \N \N 93998 P.recubariensis Primula Primula recubariensis \N \N \N \N \N 93999 A.creticum Arum Arum creticum \N \N \N \N \N 94000 \N genus Nietneria \N \N \N \N \N 94001 T.xiphioides Tillandsia Tillandsia xiphioides \N \N \N \N \N 94002 S.volubilis Secamone Secamone volubilis \N \N \N \N \N 94003 F.craterostoma Ficus Ficus craterostoma sandpaper fig \N \N \N \N 94004 C.bradei Chusquea Chusquea bradei \N \N \N \N \N 94005 A.montagnacii Alluaudia Alluaudia montagnacii \N \N \N \N \N 94006 D.sp. Daphniphyllum Daphniphyllum sp. \N \N \N \N \N 94007 B.pinnata Berberis Berberis pinnata \N \N \N \N \N 94008 E.dunensis Epipactis Epipactis dunensis \N \N \N \N \N 94009 P.AC306 Polygonum Polygonum sp. AC306 \N \N \N \N \N 94010 E.angustifolium Eriophorum Eriophorum angustifolium \N \N \N \N \N 94011 Y.viridiflora Yeatesia Yeatesia viridiflora \N \N \N \N \N 94012 R.polyphylla Rauvolfia Rauvolfia polyphylla \N \N \N \N \N 94013 \N genus Pseudopentameris \N \N \N \N \N 94014 S.scaposus Senecio Senecio scaposus \N \N \N \N \N 94015 \N no rank environmental samples \N \N \N \N \N 94016 S.corneliomuelleri Lycopersicon Solanum corneliomuelleri \N \N \N \N \N 94017 B.balearica Buxus Buxus balearica \N \N \N \N \N 94018 H.pernambucense Hymenachne Hymenachne pernambucense \N \N \N \N \N 94019 S.bifolia Swertia Swertia bifolia \N \N \N \N \N 94020 M.benthamiana Miconia Miconia benthamiana \N \N \N \N \N 94021 C.hughesii Caesalpinia Caesalpinia hughesii \N \N \N \N \N 94022 \N genus Microstigma \N \N \N \N \N 94023 B.triangularis Bahiopsis Bahiopsis triangularis \N \N \N \N \N 94024 A.06400 Actaea Actaea sp. Wang & Cheng 06400 \N \N \N \N \N 94025 E.mossambicensis Euphorbia Euphorbia mossambicensis \N \N \N \N \N 94026 \N genus Freylinia \N \N \N \N \N 94027 I.grandis Iresine Iresine grandis \N \N \N \N \N 94028 P.capparidifolia Passiflora Passiflora capparidifolia \N \N \N \N \N 94029 A.kiwuensis Alchemilla Alchemilla kiwuensis \N \N \N \N \N 94030 C.racemosa Cicerbita Cicerbita racemosa \N \N \N \N \N 94031 C.rhombifolium Chrysanthemum Chrysanthemum rhombifolium \N \N \N \N \N 94032 S.maninul Styrax Styrax maninul \N \N \N \N \N 94033 C.deeratus Calamus Calamus deeratus \N \N \N \N \N 94034 L.mixtec Leucaena Leucaena x mixtec \N \N \N \N \N 94035 O.herrerae Oxalis Oxalis herrerae \N \N \N \N \N 94036 S.spathulifolia Sesamoides Sesamoides spathulifolia \N \N \N \N \N 94037 A.ambigua Amphidasya Amphidasya ambigua \N \N \N \N \N 94038 C.sample environmental samples Taxonomy:1096680 Cydista environmental sample \N \N \N \N \N 94039 R.SH-2010 Robinia Robinia sp. SH-2010 \N \N \N \N \N 94040 P.kansuensis Prunus Prunus kansuensis gan su tao \N \N \N \N 94041 C.psilophyllum Callaeum Callaeum psilophyllum \N \N \N \N \N 94042 \N tribe Ericeae \N \N \N \N \N 94043 \N genus Stemodiopsis \N \N \N \N \N 94044 T.albiflora Tupistra Tupistra albiflora \N \N \N \N \N 94045 M.Mearnsia) Metrosideros Metrosideros cf. salomonensis (subg. Mearnsia) \N \N \N \N \N 94046 \N genus Pabstia \N \N \N \N \N 94047 I.aristatum Ischaemum Ischaemum aristatum \N \N \N \N \N 94048 M.bracteata Maxillaria Maxillaria bracteata \N \N \N \N \N 94049 \N genus Romneya \N \N \N \N \N 94050 I.h-1 Impatiens Impatiens sp. h-1 \N \N \N \N \N 94051 C.sinensis Citrus Citrus x paradisi x Citrus sinensis \N \N \N \N \N 94052 H.alpinum Hieracium Hieracium alpinum \N \N \N \N \N 94053 U.sagittifolia Urospatha Urospatha sagittifolia \N \N \N \N \N 94054 P.recurvifolia Pseudoselago Pseudoselago recurvifolia \N \N \N \N \N 94055 V.burle-marxii Vellozia Vellozia burle-marxii \N \N \N \N \N 94056 L.aestivum Leucojum Leucojum aestivum loddon-lily,summer snowflake \N \N \N \N 94057 E.succedanea Euphorbia Euphorbia succedanea \N \N \N \N \N 94058 C.tauromenitana Centaurea Centaurea tauromenitana \N \N \N \N \N 94059 H.rhyacophila Halenia Halenia rhyacophila \N \N \N \N \N 94060 H.macrorhachis Hyospathe Hyospathe macrorhachis \N \N \N \N \N 94061 \N order Oxalidales \N \N \N \N \N 94062 V.marifolia Viviania Viviania marifolia \N \N \N \N \N 94063 L.abyssinica Leucas Leucas abyssinica \N \N \N \N \N 94064 B.halophila Brachyscome Brachyscome halophila \N \N \N \N \N 94065 C.wilsonii Croton Croton wilsonii \N \N \N \N \N 94066 (.sp. Gentiana (Gentiana lawrencei x Gentiana veitchiorum) x Gentiana sp. \N \N \N \N \N 94067 \N genus Eriobotrya \N \N \N \N \N 94068 P.coptosperma Psychotria Psychotria coptosperma \N \N \N \N \N 94069 C.12888 Calycera Calycera cf. spinulosa TS 12888 \N \N \N \N \N 94070 C.nodosum Calophyllum Calophyllum nodosum \N \N \N \N \N 94071 R.foliolosa Rosa Rosa foliolosa leafy rose,white prairie rose \N \N \N \N 94072 S.guangxiensis Sinosenecio Sinosenecio guangxiensis \N \N \N \N \N 94073 S.bifidum Schizodium Schizodium bifidum \N \N \N \N \N 94074 S.dusenii Sarcodraba Sarcodraba dusenii \N \N \N \N \N 94075 E.serbicus Edraianthus Edraianthus serbicus \N \N \N \N \N 94076 \N subspecies Antirrhinum vexillocalyculatum subsp. intermedium \N \N \N \N \N 94077 P.lanceolatopeltata Peperomia Peperomia lanceolatopeltata \N \N \N \N \N 94078 \N genus Echinopterys \N \N \N \N \N 94079 S.eurylepis Simsia Simsia eurylepis \N \N \N \N \N 94080 \N subspecies Stephanomeria exigua subsp. exigua \N \N \N \N \N 94081 H.gigantea Hermas Hermas gigantea \N \N \N \N \N 94082 C.salangensis Cousinia Cousinia salangensis \N \N \N \N \N 94083 R.linearibracteolata Ruellia Ruellia linearibracteolata \N \N \N \N \N 94084 F.formosana Fraxinus Fraxinus formosana \N \N \N \N \N 94085 P.inuloides Pulicaria Pulicaria inuloides \N \N \N \N \N 94086 M.bullata Mniothamnea Mniothamnea bullata \N \N \N \N \N 94087 N.nepetella Nepeta Nepeta nepetella \N \N \N \N \N 94088 M.parvulum Monotagma Monotagma parvulum \N \N \N \N \N 94089 O.gracillima Oxyrhachis Oxyrhachis gracillima \N \N \N \N \N 94090 P.ambongense Pachypodium Pachypodium ambongense \N \N \N \N \N 94091 N.ciliaris Nigella Nigella ciliaris \N \N \N \N \N 94092 E.brachyantherum Eriophorum Eriophorum brachyantherum northland cottonsedge \N \N \N \N 94093 S.cinerea Salix Salix caprea x Salix cinerea \N \N \N \N \N 94094 A.almironcillo Antillanthus Antillanthus almironcillo \N \N \N \N \N 94095 B.excelsa Bursera Bursera excelsa \N \N \N \N \N 94096 \N genus Fritillaria \N \N \N \N \N 94097 S.diacantha Sclerolaena Sclerolaena diacantha \N \N \N \N \N 94098 A.echinata Acaena Acaena echinata \N \N \N \N \N 94099 S.australe Syzygium Syzygium australe brush-cherry \N \N \N \N 94100 S.castanea Secamone Secamone castanea \N \N \N \N \N 94101 \N varietas Mimosa brevipetiolata var. hirtula \N \N \N \N \N 94102 E.forsskalii Euphorbia Euphorbia forsskalii \N \N \N \N \N 94103 G.schomburgkii Globba Globba schomburgkii \N \N \N \N \N 94104 A.glomerata Adenogramma Adenogramma glomerata \N \N \N \N \N 94105 \N genus Podanthus \N \N \N \N \N 94106 L.guyonianum Limoniastrum Limoniastrum guyonianum \N \N \N \N \N 94107 \N genus Cyclantheropsis \N \N \N \N \N 94108 D.polycladon Delphinium Delphinium polycladon high mountain larkspur \N \N \N \N 94109 H.pustulata Heterophyllaea Heterophyllaea pustulata \N \N \N \N \N 94110 S.hakusanensis Sanguisorba Sanguisorba hakusanensis \N \N \N \N \N 94111 G.rutilans Gelidocalamus Gelidocalamus rutilans \N \N \N \N \N 94112 C.howittiorum Calystegia Calystegia howittiorum \N \N \N \N \N 94113 O.ptychoclada Oxalis Oxalis ptychoclada \N \N \N \N \N 94114 \N family Gisekiaceae \N \N \N \N \N 94115 C.mishuyacu Calathea Calathea mishuyacu \N \N \N \N \N 94116 D.obovata Daviesia Daviesia obovata \N \N \N \N \N 94214 O.peduncularis Oxalis Oxalis peduncularis \N \N \N \N \N 94117 T.JS5924 unclassified Taraxacum Taraxacum (sect. Fontana) sp. JS5924 \N \N \N \N \N 94118 B.parva Boesenbergia Boesenbergia parva \N \N \N \N \N 94119 R.neriiflorum Rhododendron Rhododendron neriiflorum \N \N \N \N \N 94120 A.diversifolia Acalypha Acalypha diversifolia \N \N \N \N \N 94121 P.monspeliaca Polygala Polygala monspeliaca \N \N \N \N \N 94122 A.adianthifolia Albizia Albizia adianthifolia \N \N \N \N \N 94123 B.pleurothallopsis Bulbophyllum Bulbophyllum pleurothallopsis \N \N \N \N \N 94124 I.linariifolia Ionactis Ionactis linariifolia \N \N \N \N \N 94125 A.bakerianus Aster Aster bakerianus \N \N \N \N \N 94126 O.umbilicata Ophrys Ophrys umbilicata \N \N \N \N \N 94127 N.werdermannii Nolana Nolana werdermannii \N \N \N \N \N 94128 \N genus Radermachera \N \N \N \N \N 94129 G.uniflorus Gonolobus Gonolobus uniflorus \N \N \N \N \N 94130 C.maidenii Cymbonotus Cymbonotus maidenii \N \N \N \N \N 94131 P.elwesii Pedicularis Pedicularis elwesii \N \N \N \N \N 94132 B.hygrometrica Boea Boea hygrometrica \N \N \N \N \N 94133 M.perennis Mercurialis Mercurialis perennis dog's mercury \N \N \N \N 94134 C.andongense Chlorophytum Chlorophytum andongense \N \N \N \N \N 94135 Z.paradoxa Zygochloa Zygochloa paradoxa \N \N \N \N \N 94136 C.mimuloides Cuphea Cuphea mimuloides \N \N \N \N \N 94137 C.monroensis Cedrela Cedrela monroensis \N \N \N \N \N 94138 L.revolutus Leucopogon Leucopogon revolutus \N \N \N \N \N 94139 \N genus Scybalium \N \N \N \N \N 94140 \N varietas Tripsacum dactyloides var. floridanum Florida gamagrass \N \N \N \N 94141 \N genus Myrcianthes \N \N \N \N \N 94142 A.bifolium Ammodendron Ammodendron bifolium \N \N \N \N \N 94143 P.affinis Pimpinella Pimpinella affinis \N \N \N \N \N 94144 C.unisetus Cenchrus Cenchrus unisetus \N \N \N \N \N 94145 Z.barbatum Zingiber Zingiber barbatum \N \N \N \N \N 94146 \N genus Melolobium \N \N \N \N \N 94147 B.flavorubra Boesenbergia Boesenbergia flavorubra \N \N \N \N \N 94148 P.dasypleurum Paspalum Paspalum dasypleurum \N \N \N \N \N 94149 V.queenslandica Viticipremna Viticipremna queenslandica \N \N \N \N \N 94150 \N genus Eremoblastus \N \N \N \N \N 94151 \N genus Guindilia \N \N \N \N \N 94152 L.umbellata Lotononis Lotononis umbellata \N \N \N \N \N 94153 P.carinalis Poitea Poitea carinalis caribwood \N \N \N \N 94154 O.pillansiana Oxalis Oxalis pillansiana \N \N \N \N \N 94155 S.plumosum Schoenocaulon Schoenocaulon plumosum \N \N \N \N \N 94156 D.sherffiana Dubautia Dubautia sherffiana \N \N \N \N \N 94157 A.montereyensis Arctostaphylos Arctostaphylos montereyensis \N \N \N \N \N 94158 V.PCR-2009 Villadia Villadia sp. PCR-2009 \N \N \N \N \N 94159 L.pulchella Lorandersonia Lorandersonia pulchella \N \N \N \N \N 94160 D.anthriscifolium Delphinium Delphinium anthriscifolium \N \N \N \N \N 94161 L.africanum Limeum Limeum africanum \N \N \N \N \N 94162 \N subspecies Carex curvula subsp. rosae \N \N \N \N \N 94163 B.vulgaris Barbarea Barbarea vulgaris upland cress,winter cress,yellow rocket \N \N \N \N 94164 G.nana Gentianella Gentianella nana \N \N \N \N \N 94165 M.maguirei Marcgravia Marcgravia maguirei \N \N \N \N \N 94166 S.uliginosa Schmidtottia Schmidtottia uliginosa \N \N \N \N \N 94167 \N genus Aristotelia \N \N \N \N \N 94168 A.variegata Anchusella Anchusella variegata \N \N \N \N \N 94169 \N genus Hymenocardia \N \N \N \N \N 94170 S.filiformis Stuckenia Stuckenia pamirica x Stuckenia filiformis \N \N \N \N \N 94171 E.cremersii Euphorbia Euphorbia cremersii \N \N \N \N \N 94172 S.discocalyx Sauropus Sauropus discocalyx \N \N \N \N \N 94173 R.bifidus Restio Restio bifidus \N \N \N \N \N 94174 O.simplex Orbexilum Orbexilum simplex \N \N \N \N \N 94175 H.membranacea Hellmuthia Hellmuthia membranacea \N \N \N \N \N 94176 D.macrorrhabdos Dictyolimon Dictyolimon macrorrhabdos \N \N \N \N \N 94177 S.05008 Spiraea Spiraea sp. Qiu 05008 \N \N \N \N \N 94178 C.prionota Cliffortia Cliffortia prionota \N \N \N \N \N 94179 \N genus Hirpicium \N \N \N \N \N 94180 C.orthoclada Cousinia Cousinia orthoclada \N \N \N \N \N 94181 P.alamosensis Penstemon Penstemon alamosensis \N \N \N \N \N 94182 G.suaveolens Graptopetalum Graptopetalum suaveolens \N \N \N \N \N 94183 C.anglica Cochlearia Cochlearia anglica \N \N \N \N \N 94184 \N varietas Disperis capensis var. capensis \N \N \N \N \N 94185 S.cernua Sophronitis Sophronitis cernua \N \N \N \N \N 94186 E.rheedei Entada Entada rheedei \N \N \N \N \N 94187 \N varietas Tragopogon buphthalmoides var. stenophyllus \N \N \N \N \N 94188 J.maritima Jacobaea Jacobaea maritima \N \N \N \N \N 94189 \N subspecies Viola alba subsp. alba \N \N \N \N \N 94190 G.foeniculacea Glochidotheca Glochidotheca foeniculacea \N \N \N \N \N 94191 \N genus Scabrethia \N \N \N \N \N 94192 M.CR-2009 Mycetia Mycetia sp. CR-2009 \N \N \N \N \N 94193 C.parviflora Cornus Cornus parviflora \N \N \N \N \N 94194 C.canadensis Calamagrostis Calamagrostis canadensis \N \N \N \N \N 94195 P.lundellianus Pachyanthus Pachyanthus lundellianus \N \N \N \N \N 94196 \N genus Schenkia \N \N \N \N \N 94197 P.willdenovii Persea Persea willdenovii \N \N \N \N \N 94198 C.birandiana Cousinia Cousinia birandiana \N \N \N \N \N 94199 \N genus Dovea \N \N \N \N \N 94200 N.heliotropifolia Nepeta Nepeta heliotropifolia \N \N \N \N \N 94201 T.martiniana Thibaudia Thibaudia martiniana \N \N \N \N \N 94202 C.SH-2010 Cyperus Cyperus sp. SH-2010 \N \N \N \N \N 94203 \N genus Erinacea \N \N \N \N \N 94204 \N varietas Cymopterus panamintensis var. acutifolius \N \N \N \N \N 94205 A.citrinus Astragalus Astragalus citrinus \N \N \N \N \N 94206 R.cerina Robiquetia Robiquetia cerina \N \N \N \N \N 94207 A.banksii Alseuosmia Alseuosmia banksii \N \N \N \N \N 94209 E.latifolia Eriope Eriope latifolia \N \N \N \N \N 94210 \N genus Ludwigia Ludwigia L.,primrose-willow \N \N \N \N 94211 C.glabrescens Corylopsis Corylopsis glabrescens \N \N \N \N \N 94212 A.asperum Asarum Asarum asperum \N \N \N \N \N 94213 G.pseudoaquatica Gentiana Gentiana pseudoaquatica \N \N \N \N \N 94215 T.eranthemum Turaniphytum Turaniphytum eranthemum \N \N \N \N \N 94216 A.anthochaera Acacia Acacia anthochaera \N \N \N \N \N 94217 Z.pentandra Zaleya Zaleya pentandra \N \N \N \N \N 94218 E.biloba Eriopsis Eriopsis biloba \N \N \N \N \N 94219 R.catawbiense Rhododendron Rhododendron catawbiense Catawba rosebay \N \N \N \N 94220 L.lancerottensis Lotus Lotus lancerottensis \N \N \N \N \N 94221 I.acehensis Impatiens Impatiens acehensis \N \N \N \N \N 94222 \N genus Crotonogyne \N \N \N \N \N 94223 S.amplexicaulis Salvia Salvia amplexicaulis \N \N \N \N \N 94224 S.microphyllum Solanum Solanum microphyllum \N \N \N \N \N 94225 L.amazonica Lecointea Lecointea amazonica \N \N \N \N \N 94226 O.cruciata Oncidium Oncidium cruciata \N \N \N \N \N 94227 \N subspecies Limnanthes douglasii subsp. rosea \N \N \N \N \N 94228 P.pedunculiferum Phrynium Phrynium pedunculiferum \N \N \N \N \N 94229 A.maidenii Acacia Acacia maidenii \N \N \N \N \N 94230 C.lasiolepis Cousinia Cousinia lasiolepis \N \N \N \N \N 94231 G.mazanense Gymnocalycium Gymnocalycium mazanense \N \N \N \N \N 94232 O.gilbertii Oxystigma Oxystigma gilbertii \N \N \N \N \N 94233 \N varietas Aristida adscensionis var. modesta \N \N \N \N \N 94234 N.bicorne Notoceras Notoceras bicorne \N \N \N \N \N 94235 E.glaber Enneapogon Enneapogon glaber \N \N \N \N \N 94236 \N varietas Artemisia absinthium var. absinthium \N \N \N \N \N 94237 E.vaseyi Eryngium Eryngium vaseyi \N \N \N \N \N 94238 B.dawei Balsamocitrus Balsamocitrus dawei \N \N \N \N \N 94239 F.manserichense Filarum Filarum manserichense \N \N \N \N \N 94240 S.glandulifera Symplocos Symplocos glandulifera \N \N \N \N \N 94241 S.sericea Schizogyne Schizogyne sericea \N \N \N \N \N 94242 \N genus Odonellia \N \N \N \N \N 94243 R.integrifolia Rhodiola Rhodiola integrifolia \N \N \N \N \N 94244 D.buchananii Dioscorea Dioscorea buchananii \N \N \N \N \N 94245 C.aculeata Cleome Cleome aculeata \N \N \N \N \N 94246 C.flaccosperma Carex Carex flaccosperma \N \N \N \N \N 94247 L.baetica Loeflingia Loeflingia baetica \N \N \N \N \N 94248 A.flagellosa Arabis Arabis flagellosa \N \N \N \N \N 94249 S.disepala Salacia Salacia disepala \N \N \N \N \N 94250 \N subspecies Arctostaphylos bakeri subsp. sublaevis \N \N \N \N \N 94251 E.cavaleriei Eurycorymbus Eurycorymbus cavaleriei \N \N \N \N \N 94252 S.pohlii Styrax Styrax pohlii \N \N \N \N \N 94253 B.MAK-2008 Boechera Boechera sp. MAK-2008 \N \N \N \N \N 94254 R.rubropilosum Rhododendron Rhododendron rubropilosum \N \N \N \N \N 94255 C.berggrenii Carex Carex berggrenii \N \N \N \N \N 94256 C.thyrsoidea Calandrinia Calandrinia thyrsoidea \N \N \N \N \N 94257 N.alopecuroides Neurachne Neurachne alopecuroides \N \N \N \N \N 94258 \N subspecies Bidens hillebrandiana subsp. polycephala \N \N \N \N \N 94259 D.perplexa Disa Disa perplexa \N \N \N \N \N 94260 M.rhoderoides Metalasia Metalasia rhoderoides \N \N \N \N \N 94261 P.sample environmental samples Taxonomy:531413 Plantago environmental sample \N \N \N \N \N 94262 L.angustifolia Lavandula Lavandula angustifolia lavender \N \N \N \N 94263 D.ambrosioides Dysphania Dysphania ambrosioides American wormseed,Jerusalem-tea,epazote \N \N \N \N 94264 V.odoratissimum Viburnum Viburnum odoratissimum \N \N \N \N \N 94265 O.sumatrana Octomeles Octomeles sumatrana \N \N \N \N \N 94266 C.rigida Coprosma Coprosma rigida \N \N \N \N \N 94267 A.merxmuelleri Aristolochia Aristolochia merxmuelleri \N \N \N \N \N 94268 K.paniculata Koelreuteria Koelreuteria paniculata golden rain tree,pride of India \N \N \N \N 94269 V.rubifolia Vesselowskya Vesselowskya rubifolia \N \N \N \N \N 94270 B.alicastrum Brosimum Brosimum alicastrum \N \N \N \N \N 94271 S.lanceifolia Smilax Smilax lanceifolia \N \N \N \N \N 94272 A.colorata Armeria Armeria colorata \N \N \N \N \N 94273 D.aurantiaca Diptychandra Diptychandra aurantiaca \N \N \N \N \N 94274 C.capitatum Centaurium Centaurium capitatum \N \N \N \N \N 94275 E.japonica Eurya Eurya japonica \N \N \N \N \N 94276 N.hihua Nectandra Nectandra hihua \N \N \N \N \N 94277 L.NFL-2010 Ligustrum Ligustrum sp. 2 NFL-2010 \N \N \N \N \N 94278 P.2608 Piper Piper cf. subglabribracteatum Boom 2608 \N \N \N \N \N 94279 C.calophylla Casasia Casasia calophylla \N \N \N \N \N 94280 T.glandulosum Taeniophyllum Taeniophyllum glandulosum \N \N \N \N \N 94281 C.glandulosus Croton Croton glandulosus vente conmigo \N \N \N \N 94282 R.pulchrum Rhododendron Rhododendron x pulchrum \N \N \N \N \N 94283 C.libanoticum Cyclamen Cyclamen libanoticum \N \N \N \N \N 94284 C.palmata Coreopsis Coreopsis palmata \N \N \N \N \N 94285 \N genus Actites \N \N \N \N \N 94286 C.rivularis Crataegus Crataegus rivularis river hawthorn \N \N \N \N 94287 \N subspecies Ononis alopecuroides subsp. alopecuroides \N \N \N \N \N 94288 \N genus Thilachium \N \N \N \N \N 94289 O.rehderiana Ostrya Ostrya rehderiana \N \N \N \N \N 94290 B.boquetiensis Bidens Bidens boquetiensis \N \N \N \N \N 94291 D.oppositifolia Dioscorea Dioscorea oppositifolia \N \N \N \N \N 94292 H.latispatha Heliconia Heliconia latispatha \N \N \N \N \N 94293 P.velutina Potentilla Potentilla velutina \N \N \N \N \N 94294 H.villosa Heterotheca Heterotheca villosa \N \N \N \N \N 94295 C.jainii Ceropegia Ceropegia jainii \N \N \N \N \N 94296 \N genus Platythelys \N \N \N \N \N 94297 A.harmandii Arisaema Arisaema harmandii \N \N \N \N \N 94298 A.furcata Arabis Arabis furcata \N \N \N \N \N 94299 Z.angustifolia Zaluzianskya Zaluzianskya angustifolia \N \N \N \N \N 94300 \N subspecies Artemisia kruhsiana subsp. alaskana \N \N \N \N \N 94301 H.linariifolium Hypericum Hypericum linariifolium \N \N \N \N \N 94302 A.nigrum Allium Allium nigrum \N \N \N \N \N 94303 A.guaraya Ateleia Ateleia guaraya \N \N \N \N \N 94304 S.tilesii Saussurea Saussurea tilesii \N \N \N \N \N 94305 \N genus Drepanocaryum \N \N \N \N \N 94306 C.cambessedesii Crocus Crocus cambessedesii \N \N \N \N \N 94307 D.botrys Dysphania Dysphania botrys \N \N \N \N \N 94308 T.glabrifolia Tetrapterys Tetrapterys glabrifolia \N \N \N \N \N 94309 T.costatum Thesium Thesium costatum \N \N \N \N \N 94310 H.grossheimii Heracleum Heracleum grossheimii \N \N \N \N \N 94311 \N genus Apiopetalum \N \N \N \N \N 94312 C.atlanticum Clinopodium Clinopodium atlanticum \N \N \N \N \N 94313 \N genus Ophiopogon \N \N \N \N \N 94314 F.schumacheri Ficus Ficus schumacheri \N \N \N \N \N 94315 A.capito Astragalus Astragalus capito \N \N \N \N \N 94316 P.284861 Pratia Pratia sp. AK 284861 \N \N \N \N \N 94317 O.baldschuanica Olgaea Olgaea baldschuanica \N \N \N \N \N 94318 \N subspecies Argyranthemum adauctum subsp. adauctum \N \N \N \N \N 94319 K.procumbens Kalmia Kalmia procumbens \N \N \N \N \N 94320 \N genus Nuphar \N \N \N \N \N 94321 J.HB230 Jacaranda Jacaranda sp. HB230 \N \N \N \N \N 94322 S.apiifolius Senecio Senecio apiifolius \N \N \N \N \N 94323 N.gracillima Najas Najas gracillima \N \N \N \N \N 94324 \N subspecies Abrus pulchellus subsp. cantoniensis \N \N \N \N \N 94325 A.grevilleoides Allocasuarina Allocasuarina grevilleoides \N \N \N \N \N 94326 M.rotundifolia Mitragyna Mitragyna rotundifolia \N \N \N \N \N 94327 S.megalantha Scrophularia Scrophularia megalantha \N \N \N \N \N 94328 B.bauhinioides Bauhinia Bauhinia bauhinioides \N \N \N \N \N 94329 N.pubescens Navarretia Navarretia pubescens \N \N \N \N \N 94330 A.mexicana Aechmea Aechmea mexicana \N \N \N \N \N 94331 N.leucotricha Nassella Nassella leucotricha \N \N \N \N \N 94332 P.crenata Picrasma Picrasma crenata \N \N \N \N \N 94333 C.myrtifolia Coriaria Coriaria myrtifolia \N \N \N \N \N 94334 C.claviformis Camissonia Camissonia claviformis browneyes \N \N \N \N 94335 I.quamoclit Ipomoea Ipomoea coccinea x Ipomoea quamoclit \N \N \N \N \N 94336 H.glabra Herniaria Herniaria glabra \N \N \N \N \N 94337 B.delavayi Betula Betula delavayi \N \N \N \N \N 94338 E.conifer Elleanthus Elleanthus conifer \N \N \N \N \N 94339 A.plicatilis Aloe Aloe plicatilis \N \N \N \N \N 94340 \N genus Bontia \N \N \N \N \N 94341 S.umbrella Stebbinsia Stebbinsia umbrella \N \N \N \N \N 94342 R.similis Restio Restio similis \N \N \N \N \N 94343 S.ochrophloia Shorea Shorea ochrophloia \N \N \N \N \N 94344 M.cardiospermoides Momordica Momordica cardiospermoides \N \N \N \N \N 94345 E.corollata Euphorbia Euphorbia corollata \N \N \N \N \N 94346 C.unguiculata Cremastra Cremastra unguiculata \N \N \N \N \N 94347 M.silvatica Momordica Momordica silvatica \N \N \N \N \N 94348 \N varietas Rhododendron traillianum var. dictyotum \N \N \N \N \N 94349 C.sp. Crepis Crepis sp. \N \N \N \N \N 94350 N.peninsularis Navarretia Navarretia peninsularis \N \N \N \N \N 94351 M.empleuridioides Muraltia Muraltia empleuridioides \N \N \N \N \N 94352 B.laxiflora Balanophora Balanophora laxiflora \N \N \N \N \N 94353 D.excelsum Dasyphyllum Dasyphyllum excelsum \N \N \N \N \N 94354 H.moellendorffii Heracleum Heracleum moellendorffii \N \N \N \N \N 94355 P.hydropiper Persicaria Persicaria hydropiper water-pepper \N \N \N \N 94356 K.sarmentosa Kniphofia Kniphofia sarmentosa \N \N \N \N \N 94357 G.abyssinica Guizotia Guizotia abyssinica Niger seed,niger,ramtil,ramtilla,werinnua \N \N \N \N 94358 S.floribunda Strychnos Strychnos floribunda \N \N \N \N \N 94359 D.ferruginea Disa Disa ferruginea \N \N \N \N \N 94360 A.351 Alibertia Alibertia aff. stricta Persson and Gustafsson 351 \N \N \N \N \N 94361 M.rufescens Mimosa Mimosa rufescens \N \N \N \N \N 94362 P.ebracteolatus Psilanthus Psilanthus ebracteolatus \N \N \N \N \N 94363 \N subspecies Arisaema flavum subsp. abbreviatum \N \N \N \N \N 94364 \N genus Amalophyllon \N \N \N \N \N 94365 P.petroselinifolium Pelargonium Pelargonium petroselinifolium \N \N \N \N \N 94366 A.alba Agrostis Agrostis alba \N \N \N \N \N 94367 E.nuda Eleocharis Eleocharis nuda \N \N \N \N \N 94368 C.glabrior Cuscuta Cuscuta glabrior \N \N \N \N \N 94369 B.fargesii Bashania Bashania fargesii \N \N \N \N \N 94370 \N genus Cathayanthe \N \N \N \N \N 94371 \N genus Gomidesia \N \N \N \N \N 94372 T.guizhouensis Trichosanthes Trichosanthes guizhouensis \N \N \N \N \N 94373 \N genus Disticholiparis \N \N \N \N \N 94374 M.myrcioides Myrceugenia Myrceugenia myrcioides \N \N \N \N \N 94375 M.distichophylla Maytenus Maytenus distichophylla \N \N \N \N \N 94376 A.lutea Aletris Aletris lutea \N \N \N \N \N 94377 D.collettii Dioscorea Dioscorea collettii \N \N \N \N \N 94378 P.primulinum Paphiopedilum Paphiopedilum primulinum \N \N \N \N \N 94379 C.somaliensis Cyanotis Cyanotis somaliensis \N \N \N \N \N 94380 \N genus Aldina \N \N \N \N \N 94381 T.rubriflos Trichosanthes Trichosanthes rubriflos \N \N \N \N \N 94382 F.ussuriensis Fritillaria Fritillaria ussuriensis \N \N \N \N \N 94383 \N genus Siphonochilus \N \N \N \N \N 94384 P.communis Parochetus Parochetus communis blue oxalis,shamrock pea \N \N \N \N 94385 \N subspecies Halosarcia halocnemoides subsp. halocnemoides \N \N \N \N \N 94386 \N varietas Metrosideros polymorpha var. glaberrima \N \N \N \N \N 94387 C.araucana Cortaderia Cortaderia araucana \N \N \N \N \N 94388 \N tribe Bisboeckelereae \N \N \N \N \N 94389 P.spiculigera Pimelea Pimelea spiculigera \N \N \N \N \N 94390 C.acutum Cynanchum Cynanchum acutum \N \N \N \N \N 94391 C.muritai Carmichaelia Carmichaelia muritai \N \N \N \N \N 94392 \N subtribe Scleropogoninae \N \N \N \N \N 94393 S.passerinoides Stoebe Stoebe passerinoides \N \N \N \N \N 94394 A.fraseriana Allocasuarina Allocasuarina fraseriana \N \N \N \N \N 94395 M.andina Mimosa Mimosa andina \N \N \N \N \N 94396 P.friedrichsthalianum Psidium Psidium friedrichsthalianum \N \N \N \N \N 94397 N.melanosperma Nassella Nassella melanosperma \N \N \N \N \N 94398 P.crassifolium Peponidium Peponidium crassifolium \N \N \N \N \N 94399 \N genus Pentarhopalopilia \N \N \N \N \N 94400 \N genus Microtis \N \N \N \N \N 94401 P.indicum Poeciloneuron Poeciloneuron indicum \N \N \N \N \N 94402 \N varietas Chaetanthera pulvinata var. pulvinata \N \N \N \N \N 94403 M.acuminata Massularia Massularia acuminata \N \N \N \N \N 94404 B.deflexa Brachiaria Brachiaria deflexa \N \N \N \N \N 94405 A.mannii Adenocarpus Adenocarpus mannii \N \N \N \N \N 94406 H.loeicum Hydrobryum Hydrobryum loeicum \N \N \N \N \N 94407 A.12493 Athrixia Athrixia sp. Goldblatt 12493 \N \N \N \N \N 94408 P.incisa Pulicaria Pulicaria incisa \N \N \N \N \N 94409 \N genus Prenia \N \N \N \N \N 94410 P.AC013 Piper Piper sp. AC013 \N \N \N \N \N 94411 V.lithophila Labiatoides Veronica lithophila \N \N \N \N \N 94412 D.crenata Dissomeria Dissomeria crenata \N \N \N \N \N 94413 P.africana Prunus Prunus africana \N \N \N \N \N 94414 G.valdiviensis Gilia Gilia valdiviensis \N \N \N \N \N 94415 A.glauca Aloe Aloe glauca \N \N \N \N \N 94416 D.tokoro Dioscorea Dioscorea tokoro shan bei xie \N \N \N \N 94417 \N subspecies Proboscidea parviflora subsp. sinaloensis \N \N \N \N \N 94418 A.monosperma Amischotolype Amischotolype monosperma \N \N \N \N \N 94419 A.saxatile Allium Allium saxatile \N \N \N \N \N 94420 P.laevis Protea Protea laevis \N \N \N \N \N 94421 C.turcicum Centaurium Centaurium turcicum \N \N \N \N \N 94422 \N family Cervantesiaceae \N \N \N \N \N 94423 S.gravida Salvia Salvia gravida \N \N \N \N \N 94424 M.flavidum Mastixiodendron Mastixiodendron flavidum \N \N \N \N \N 94425 P.conduplicatum Paspalum Paspalum conduplicatum \N \N \N \N \N 94426 M.melanops Moraea Moraea melanops \N \N \N \N \N 94427 A.rattanii Astragalus Astragalus rattanii \N \N \N \N \N 94428 O.viridis Onosma Onosma viridis \N \N \N \N \N 94429 N.exigua Nymphoides Nymphoides exigua \N \N \N \N \N 94430 I.viscosus Ixanthus Ixanthus viscosus \N \N \N \N \N 94431 \N genus Calciphila \N \N \N \N \N 94432 C.schimperi Crassula Crassula schimperi \N \N \N \N \N 94433 E.pithyusa Euphorbia Euphorbia pithyusa \N \N \N \N \N 94434 M.mucronata Megastachya Megastachya mucronata \N \N \N \N \N 94435 L.pamirica Leiospora Leiospora pamirica \N \N \N \N \N 94436 C.acanthophylla Caragana Caragana acanthophylla \N \N \N \N \N 94437 C.microphylla Cyphanthera Cyphanthera microphylla \N \N \N \N \N 94438 G.robusta Grevillea Grevillea robusta \N \N \N \N \N 94439 S.cremostachya Stephanodaphne Stephanodaphne cremostachya \N \N \N \N \N 94440 \N subspecies Aspalathus asparagoides subsp. asparagoides \N \N \N \N \N 94441 M.weddelliana Mourera Mourera weddelliana \N \N \N \N \N 94442 L.WOC3 Liparis Liparis sp. WOC3 \N \N \N \N \N 94443 M.stictantha Maxillaria Maxillaria stictantha \N \N \N \N \N 94444 C.minima Centipeda Centipeda minima \N \N \N \N \N 94445 H.12915 Hemigraphis Hemigraphis sp. Henry 12915 \N \N \N \N \N 94446 L.WOC6 Liparis Liparis sp. WOC6 \N \N \N \N \N 94447 A.carneum Aethionema Aethionema carneum \N \N \N \N \N 94448 H.neo-ebudica Hoya Hoya neo-ebudica \N \N \N \N \N 94449 \N genus Diodia \N \N \N \N \N 94450 L.abbottii Lydenburgia Lydenburgia abbottii \N \N \N \N \N 94451 \N tribe Livistoneae \N \N \N \N \N 94452 \N subspecies Wurmbea latifolia subsp. vanessae \N \N \N \N \N 94453 \N genus Pandanus screw pines \N \N \N \N 94454 \N varietas Senna multijuga var. multijuga \N \N \N \N \N 94455 L.hughesii Lonchocarpus Lonchocarpus hughesii \N \N \N \N \N 94456 \N genus Phyla \N \N \N \N \N 94457 W.stenophylla Wikstroemia Wikstroemia stenophylla \N \N \N \N \N 94458 S.alaica Semenovia Semenovia alaica \N \N \N \N \N 94459 C.ritchiei Cucumis Cucumis ritchiei \N \N \N \N \N 94460 S.hapemanii Sullivantia Sullivantia hapemanii \N \N \N \N \N 94461 \N subspecies Galium hilendiae subsp. carneum \N \N \N \N \N 94462 E.saxicola Eokochia Eokochia saxicola \N \N \N \N \N 94463 A.uniflora Arachnitis Arachnitis uniflora \N \N \N \N \N 94464 P.sargentii Prunus Prunus sargentii \N \N \N \N \N 94465 T.phymatocarpum Taraxacum Taraxacum phymatocarpum \N \N \N \N \N 94466 D.ranunculaceum Dichosciadium Dichosciadium ranunculaceum \N \N \N \N \N 94467 A.ventricosa Avena Avena ventricosa \N \N \N \N \N 94468 H.bullata Helonias Helonias bullata \N \N \N \N \N 94469 B.labiosa Besleria Besleria labiosa \N \N \N \N \N 94470 B.procumbens Boucerosia Boucerosia procumbens \N \N \N \N \N 94471 F.semicordata Ficus Ficus semicordata \N \N \N \N \N 94472 M.humile Myriophyllum Myriophyllum humile \N \N \N \N \N 94473 X.divaricata Xerolirion Xerolirion divaricata \N \N \N \N \N 94474 \N varietas Fimbristylis longispica var. hahajimensis \N \N \N \N \N 94475 Q.chrysolepis Quercus Quercus chrysolepis canyon live oak \N \N \N \N 94476 E.whyteana Erica Erica whyteana \N \N \N \N \N 94477 A.sparsifolium Adenostoma Adenostoma sparsifolium \N \N \N \N \N 94478 O.falciformis Oscularia Oscularia falciformis \N \N \N \N \N 94479 E.stictospora Euphorbia Euphorbia stictospora \N \N \N \N \N 94480 E.patens Eucalyptus Eucalyptus patens \N \N \N \N \N 94481 \N varietas Licuala peltata var. sumawongii \N \N \N \N \N 94482 C.aripoensis Clusia Clusia aripoensis \N \N \N \N \N 94483 C.setiger Croton Croton setiger dove weed \N \N \N \N 94484 S.coriacea Scaphyglottis Scaphyglottis coriacea \N \N \N \N \N 94485 H.mollis Helianthus Helianthus mollis \N \N \N \N \N 94486 O.andradeanum Oncidium Oncidium andradeanum \N \N \N \N \N 94487 B.umbrosa Boehmeria Boehmeria umbrosa \N \N \N \N \N 94488 P.hispida Pavetta Pavetta hispida \N \N \N \N \N 94489 \N genus Eremalche \N \N \N \N \N 94490 E.calamiformis Euphorbia Euphorbia calamiformis \N \N \N \N \N 94491 T.filifolia Thecanthes Thecanthes filifolia \N \N \N \N \N 94492 \N genus Hyperthelia \N \N \N \N \N 94493 C.rotundifolius Cotoneaster Cotoneaster rotundifolius \N \N \N \N \N 94494 P.junceum Psoralidium Psoralidium junceum \N \N \N \N \N 94495 L.cupularis Leutea Leutea cupularis \N \N \N \N \N 94496 C.floribundum Chlorophytum Chlorophytum floribundum \N \N \N \N \N 94497 C.densa Cliffortia Cliffortia densa \N \N \N \N \N 94498 C.adpressus Cotoneaster Cotoneaster adpressus \N \N \N \N \N 94500 M.eludens Muhlenbergia Muhlenbergia eludens \N \N \N \N \N 94501 S.acaulis Stenotus Stenotus acaulis \N \N \N \N \N 94502 C.radicosa Campanula Campanula radicosa \N \N \N \N \N 94503 P.tamaulipana Prosopis Prosopis tamaulipana \N \N \N \N \N 94504 T.hensii Thomandersia Thomandersia hensii \N \N \N \N \N 94505 \N genus Coluteocarpus \N \N \N \N \N 94507 P.WSY0032097-100 Penstemon Penstemon sp. WSY0032097-100 \N \N \N \N \N 94508 S.decipiens Stebbinsoseris Stebbinsoseris decipiens Santa Cruz silverpuffs \N \N \N \N 94509 M.strobiliflora Mimosa Mimosa strobiliflora \N \N \N \N \N 94510 I.auricoma Impatiens Impatiens auricoma \N \N \N \N \N 94511 R.edwardsae Ruellia Ruellia edwardsae \N \N \N \N \N 94512 M.kariangensis Martellidendron Martellidendron kariangensis \N \N \N \N \N 94513 M.simplex Melicope Melicope simplex \N \N \N \N \N 94514 O.purpurea Ondinea Ondinea purpurea \N \N \N \N \N 94515 A.javanica Aerva Aerva javanica \N \N \N \N \N 94516 M.hirta Musa Musa hirta \N \N \N \N \N 94517 D.yeshidan Duguetia Duguetia yeshidan \N \N \N \N \N 94518 R.jaundensis Rinorea Rinorea jaundensis \N \N \N \N \N 94519 C.glomerulata Calyptrocarya Calyptrocarya glomerulata \N \N \N \N \N 94520 \N genus Handelia \N \N \N \N \N 94521 M.hualapaiensis Mentzelia Mentzelia hualapaiensis \N \N \N \N \N 94522 F.ilicina Ficus Ficus ilicina \N \N \N \N \N 94523 C.grandiflora Coreopsis Coreopsis grandiflora \N \N \N \N \N 94524 I.pentagona Ilex Ilex pentagona \N \N \N \N \N 94525 G.szechenyii Gentiana Gentiana szechenyii \N \N \N \N \N 94526 C.caroliniana Carex Carex caroliniana \N \N \N \N \N 94527 J.integrifolia Jaborosa Jaborosa integrifolia \N \N \N \N \N 94528 G.leakeanum Gastrolobium Gastrolobium leakeanum \N \N \N \N \N 94529 L.pustulata Lachenalia Lachenalia pustulata \N \N \N \N \N 94530 P.amboinensis Phalaenopsis Phalaenopsis amboinensis \N \N \N \N \N 94531 C.longipedicellata Calliandra Calliandra longipedicellata \N \N \N \N \N 94532 R.glanduliferum Rhododendron Rhododendron glanduliferum \N \N \N \N \N 94533 \N forma Daboecia cantabrica f. alba \N \N \N \N \N 94534 R.13700 Randia Randia sp. Beck 13700 \N \N \N \N \N 94535 E.longipes Ebenus Ebenus longipes \N \N \N \N \N 94536 M.caespitifica Maxillaria Maxillaria caespitifica \N \N \N \N \N 94537 S.debilis Stylosanthes Stylosanthes debilis \N \N \N \N \N 94538 \N genus Paracaryum \N \N \N \N \N 94539 A.heyneanus Ancistrocladus Ancistrocladus heyneanus \N \N \N \N \N 94540 G.falcata Genista Genista falcata \N \N \N \N \N 94541 W.macrantha Witheringia Witheringia macrantha \N \N \N \N \N 94542 O.sintenisii Ornithogalum Ornithogalum sintenisii \N \N \N \N \N 94543 \N genus x Gigantocalamus \N \N \N \N \N 94544 L.elongata Litsea Litsea elongata \N \N \N \N \N 94545 H.davidii Hymenidium Hymenidium davidii \N \N \N \N \N 94546 \N genus Rhabdadenia \N \N \N \N \N 94547 P.olgae Psychotria Psychotria olgae \N \N \N \N \N 94548 E.triflora Eucalyptus Eucalyptus triflora pigeon house ash \N \N \N \N 94549 B.infernidialis Bursera Bursera infernidialis \N \N \N \N \N 94550 C.SH-2010 Caesalpinia Caesalpinia sp. SH-2010 \N \N \N \N \N 94551 S.tricuspidata Saxifraga Saxifraga tricuspidata \N \N \N \N \N 94552 C.pendula Carex Carex pendula \N \N \N \N \N 94553 B.pervillei Bulbophyllum Bulbophyllum pervillei \N \N \N \N \N 94554 N.sinensis Nuphar Nuphar sinensis \N \N \N \N \N 94555 \N genus Neurocalyx \N \N \N \N \N 94556 S.stapeliiformis Senecio Senecio stapeliiformis \N \N \N \N \N 94557 \N genus Achyropappus \N \N \N \N \N 94558 B.154 Begonia Begonia sp. Forrest 154 \N \N \N \N \N 94559 D.floribunda Diphysa Diphysa floribunda \N \N \N \N \N 94560 C.magnifolia Chusquea Chusquea magnifolia \N \N \N \N \N 94561 \N subfamily Thunbergioideae \N \N \N \N \N 94562 C.orientalis Calvoa Calvoa orientalis \N \N \N \N \N 94563 L.riesenbachia Lopezia Lopezia riesenbachia \N \N \N \N \N 94564 \N genus Coronanthera \N \N \N \N \N 94565 L.subandina Loreya Loreya subandina \N \N \N \N \N 94566 P.lindblomii Polystachya Polystachya lindblomii \N \N \N \N \N 94567 L.minor Lemna Lemna minor \N \N \N \N \N 94568 C.lagunae Cheirolophus Cheirolophus lagunae \N \N \N \N \N 94569 P.formosa Polycarena Polycarena formosa \N \N \N \N \N 94570 T.congestiflora Tarasa Tarasa congestiflora \N \N \N \N \N 94571 M.fruticosa Micromeria Micromeria fruticosa \N \N \N \N \N 94572 B.prancei Banisteriopsis Banisteriopsis prancei \N \N \N \N \N 94573 S.sessilis Soliva Soliva sessilis \N \N \N \N \N 94574 P.conspersum Paspalum Paspalum conspersum \N \N \N \N \N 94575 E.triandra Elatine Elatine triandra \N \N \N \N \N 94576 \N varietas Carex lucorum var. lucorum \N \N \N \N \N 94577 \N genus Chartoloma \N \N \N \N \N 94578 \N genus Pseudosabicea \N \N \N \N \N 94579 \N genus Paragynoxys \N \N \N \N \N 94580 \N genus Hemiboea \N \N \N \N \N 94581 C.77-128 Canthium Canthium aff. confertum Maxwell 77-128 \N \N \N \N \N 94582 \N subspecies Eleusine coracana subsp. coracana Indian finger millet,caracan millet,coracan,ragi \N \N \N \N 94583 P.efferata Pauridiantha Pauridiantha efferata \N \N \N \N \N 94584 M.brevipes Monodora Monodora brevipes \N \N \N \N \N 94585 E.spectabilis Euphrasia Euphrasia spectabilis \N \N \N \N \N 94586 P.WSY0032134-6 Penstemon Penstemon sp. WSY0032134-6 \N \N \N \N \N 94587 A.sanguinea Amelanchier Amelanchier sanguinea \N \N \N \N \N 94588 S.berberifolia Salix Salix berberifolia \N \N \N \N \N 94589 G.G2139 Glycine Glycine sp. G2139 \N \N \N \N \N 94590 I.pentaphylla Illigera Illigera pentaphylla \N \N \N \N \N 94591 D.931 Dipsacus Dipsacus sp. Jansen 931 \N \N \N \N \N 94592 A.tholozanii Alcea Alcea tholozanii \N \N \N \N \N 94593 M.breviflora Machilus Machilus breviflora \N \N \N \N \N 94594 P.bullulatum Piper Piper bullulatum \N \N \N \N \N 94595 S.meuselii Senecio Senecio meuselii \N \N \N \N \N 94596 H.lychnifera Hernandia Hernandia lychnifera \N \N \N \N \N 94597 S.parviflora Swainsona Swainsona parviflora \N \N \N \N \N 94598 \N genus Alrawia \N \N \N \N \N 94599 H.tengchongense Hedychium Hedychium tengchongense \N \N \N \N \N 94600 C.obliqua Cardamine Cardamine obliqua \N \N \N \N \N 94601 C.somalensis Chapmannia Chapmannia somalensis \N \N \N \N \N 94602 K.NYBG-2555/93 Kreysigia Kreysigia sp. NYBG-2555/93 \N \N \N \N \N 94603 D.trimerum Disterigma Disterigma trimerum \N \N \N \N \N 94604 S.bifida Siparuna Siparuna bifida \N \N \N \N \N 94605 A.tragacantha Astragalus Astragalus tragacantha \N \N \N \N \N 94606 \N genus Chimonocalamus \N \N \N \N \N 94607 P.obscura Pulmonaria Pulmonaria obscura \N \N \N \N \N 94608 C.chavarrianum Cinnamomum Cinnamomum chavarrianum \N \N \N \N \N 94609 L.brevistyla Lissanthe Lissanthe brevistyla \N \N \N \N \N 94610 M.tenuifolia Malesherbia Malesherbia tenuifolia \N \N \N \N \N 94611 T.perfoliatum Triosteum Triosteum perfoliatum \N \N \N \N \N 94612 O.glabrata Osmorhiza Osmorhiza glabrata \N \N \N \N \N 94613 S.villosa Sinningia Sinningia villosa \N \N \N \N \N 94614 P.sukhakulii Paphiopedilum Paphiopedilum sukhakulii \N \N \N \N \N 94615 \N family Convolvulaceae morning-glory family \N \N \N \N 94616 D.regia Delonix Delonix regia flametree,royal poinciana \N \N \N \N 94617 L.JTO-2010 Linguella Linguella aff. nana JTO-2010 \N \N \N \N \N 94618 D.jucunda Draba Draba jucunda \N \N \N \N \N 94619 \N varietas Miscanthus sinensis var. purpurascens \N \N \N \N \N 94620 F.intermedia Forsythia Forsythia x intermedia cultivated forsythia \N \N \N \N 94621 D.cortusifolius Didymocarpus Didymocarpus cortusifolius \N \N \N \N \N 94622 M.wilmsii Melolobium Melolobium wilmsii \N \N \N \N \N 94623 M.montis-carasae Mimosa Mimosa montis-carasae \N \N \N \N \N 94624 S.aspericaulis Smilax Smilax aspericaulis \N \N \N \N \N 94625 S.schunkei Strychnos Strychnos schunkei \N \N \N \N \N 94626 C.ovata Camptandra Camptandra ovata \N \N \N \N \N 94627 \N varietas Lewisia cotyledon var. purdyi \N \N \N \N \N 94628 \N genus Steganotaenia \N \N \N \N \N 94629 G.2211 Grindelia Grindelia cf. tenella Roe & Roe 2211 \N \N \N \N \N 94630 O.lancifolia Orites Orites lancifolia \N \N \N \N \N 94631 \N genus Razafimandimbisonia \N \N \N \N \N 94632 \N subspecies Luzula multiflora subsp. snogerupii \N \N \N \N \N 94633 F.fucifolia Franklandia Franklandia fucifolia \N \N \N \N \N 94634 B.malachadenia Bulbophyllum Bulbophyllum malachadenia \N \N \N \N \N 94635 S.whitehousei Salvia Salvia whitehousei \N \N \N \N \N 94636 \N varietas Rubus lambertianus var. glaber \N \N \N \N \N 94637 C.brownii Carex Carex brownii \N \N \N \N \N 94638 S.congesta Schrenkia Schrenkia congesta \N \N \N \N \N 94639 C.bruguierana Centaurea Centaurea bruguierana \N \N \N \N \N 94640 E.petiolata Euphorbia Euphorbia petiolata \N \N \N \N \N 94641 C.nuristanicum Cicer Cicer nuristanicum \N \N \N \N \N 94642 \N varietas Polygonum chinense var. paradoxum \N \N \N \N \N 94643 M.germanica Myricaria Myricaria germanica \N \N \N \N \N 94644 B.chlorocarpa Browningia Browningia chlorocarpa \N \N \N \N \N 94645 \N tribe Coronanthereae \N \N \N \N \N 94646 E.loxophleba Eucalyptus Eucalyptus loxophleba \N \N \N \N \N 94647 C.morenonis Chuquiraga Chuquiraga morenonis \N \N \N \N \N 94648 \N genus Neorites \N \N \N \N \N 94649 C.mayumbensis Corynanthe Corynanthe mayumbensis \N \N \N \N \N 94650 C.sessiliflorus Chionanthus Chionanthus sessiliflorus \N \N \N \N \N 94651 C.odorata Chromolaena Chromolaena odorata \N \N \N \N \N 94652 C.coreana Carpinus Carpinus coreana \N \N \N \N \N 94653 P.faurieana Pyrola Pyrola faurieana \N \N \N \N \N 94654 T.schiedeana Tillandsia Tillandsia schiedeana \N \N \N \N \N 94655 M.croatica Micromeria Micromeria croatica \N \N \N \N \N 94656 \N genus Tropidia \N \N \N \N \N 94657 \N genus Xerosiphon \N \N \N \N \N 94658 A.monteverdensis Arachnothryx Arachnothryx monteverdensis \N \N \N \N \N 94659 M.punctata Metrosideros Metrosideros punctata \N \N \N \N \N 94660 \N genus Amesiodendron \N \N \N \N \N 94661 C.membranacea Carex Carex membranacea \N \N \N \N \N 94662 C.yedoense Comospermum Comospermum yedoense \N \N \N \N \N 94663 E.dioeca Euphorbia Euphorbia dioeca \N \N \N \N \N 94664 B.uniflora Barkeria Barkeria uniflora \N \N \N \N \N 94665 D.turkestanicus Dianthus Dianthus turkestanicus \N \N \N \N \N 94666 S.velutina Senna Senna velutina \N \N \N \N \N 94667 A.abietinum Arceuthobium Arceuthobium abietinum \N \N \N \N \N 94668 P.marmorata Paris Paris marmorata \N \N \N \N \N 94669 C.spicatus Clerodendranthus Clerodendranthus spicatus \N \N \N \N \N 94670 L.scapiforme Ligusticum Ligusticum scapiforme \N \N \N \N \N 94671 R.rigida Rhynchospora Rhynchospora rigida \N \N \N \N \N 94672 C.breweri Calamagrostis Calamagrostis breweri \N \N \N \N \N 94673 C.petelotii Camellia Camellia petelotii \N \N \N \N \N 94674 Z.ovalifolium Zanthoxylum Zanthoxylum ovalifolium \N \N \N \N \N 94675 P.1133 Peponidium Peponidium sp. 4 Davis 1133 \N \N \N \N \N 94676 R.emodense Ribes Ribes emodense \N \N \N \N \N 94677 S.himalayana Sapria Sapria himalayana \N \N \N \N \N 94678 C.guatemalense Cestrum Cestrum guatemalense \N \N \N \N \N 94679 \N genus Amaracarpus \N \N \N \N \N 94680 L.dinteri Lophiocarpus Lophiocarpus dinteri \N \N \N \N \N 94681 C.jinshajiangica Camellia Camellia jinshajiangica \N \N \N \N \N 94682 T.oblongum Trichostema Trichostema oblongum \N \N \N \N \N 94683 I.sagotiana Iryanthera Iryanthera sagotiana \N \N \N \N \N 94684 S.lessertiifolia Swainsona Swainsona lessertiifolia \N \N \N \N \N 94685 O.ensiformis Oberonia Oberonia ensiformis \N \N \N \N \N 94686 B.venusta Begonia Begonia venusta \N \N \N \N \N 94687 L.myrtillus Lonicera Lonicera myrtillus \N \N \N \N \N 94688 E.corallioides Euphorbia Euphorbia corallioides \N \N \N \N \N 94689 E.melanopotamica Echinopsis Echinopsis melanopotamica \N \N \N \N \N 94690 M.myosotidifolia Millotia Millotia myosotidifolia \N \N \N \N \N 94691 \N genus Blandfordia \N \N \N \N \N 94692 R.arkansana Rosa Rosa arkansana prairie rose \N \N \N \N 94693 Z.ailanthoides Zanthoxylum Zanthoxylum ailanthoides \N \N \N \N \N 94694 S.cumingii Solanum Solanum cumingii \N \N \N \N \N 94695 S.tora Senna Senna tora \N \N \N \N \N 94696 M.latispinosa Mimosa Mimosa latispinosa \N \N \N \N \N 94697 \N subspecies Cucurbita okeechobeensis subsp. martinezii marten gourd \N \N \N \N 94698 J.paniculata Jungia Jungia paniculata \N \N \N \N \N 94699 C.warszewiczii Cycnoches Cycnoches warszewiczii \N \N \N \N \N 94700 P.rubromarginata Phyllostachys Phyllostachys rubromarginata \N \N \N \N \N 94701 A.revoluta Ardisia Ardisia revoluta \N \N \N \N \N 94702 S.hifacensis Silene Silene hifacensis \N \N \N \N \N 94703 S.roemeri Silene Silene roemeri Roemer's campion \N \N \N \N 94704 P.formosana Plantago Plantago formosana \N \N \N \N \N 94705 \N varietas Pagamea guianensis var. macrocarpa \N \N \N \N \N 94706 A.vogelii Androcymbium Androcymbium vogelii \N \N \N \N \N 94707 T.croatii Talisia Talisia croatii \N \N \N \N \N 94708 A.hirsutus Amorphophallus Amorphophallus hirsutus \N \N \N \N \N 94709 H.omeiense Holcoglossum Holcoglossum omeiense \N \N \N \N \N 94710 M.pohliana Mandevilla Mandevilla pohliana \N \N \N \N \N 94711 \N genus Calytrix \N \N \N \N \N 94712 E.axilliflora Erica Erica axilliflora \N \N \N \N \N 94713 P.preissii Pimelea Pimelea preissii \N \N \N \N \N 94714 P.amita Psychotria Psychotria amita \N \N \N \N \N 94715 S.biflora Saxifraga Saxifraga biflora \N \N \N \N \N 94716 T.appendiculatum Trifolium Trifolium appendiculatum \N \N \N \N \N 94717 A.multinode Achnatherum Achnatherum multinode \N \N \N \N \N 94718 A.senescens Allium Allium senescens \N \N \N \N \N 94719 \N varietas Aristida adscensionis var. adscensionis \N \N \N \N \N 94720 P.parviflora Physostegia Physostegia parviflora \N \N \N \N \N 94721 C.glaber Campylanthus Campylanthus glaber \N \N \N \N \N 94722 P.pilosum Papaver Papaver pilosum \N \N \N \N \N 94723 \N subfamily Weddellinoideae \N \N \N \N \N 94724 C.8341 Comparettia Comparettia sp. Hirtz 8341 \N \N \N \N \N 94725 C.barbata Camptacra Camptacra barbata \N \N \N \N \N 94726 Z.tenuior Ziziphora Ziziphora tenuior \N \N \N \N \N 94727 L.acutiglumis Lepturus Lepturus acutiglumis \N \N \N \N \N 94728 C.stenocrista Calyptrocalyx Calyptrocalyx stenocrista \N \N \N \N \N 94729 C.douglasii Carex Carex douglasii \N \N \N \N \N 94730 R.denudatum Rhododendron Rhododendron denudatum \N \N \N \N \N 94731 C.striolata Culcasia Culcasia striolata \N \N \N \N \N 94732 G.saglionis Gymnocalycium Gymnocalycium saglionis \N \N \N \N \N 94733 S.montana Soldanella Soldanella montana \N \N \N \N \N 94734 N.albescens Nolana Nolana albescens \N \N \N \N \N 94735 D.pardalianches Doronicum Doronicum pardalianches \N \N \N \N \N 94736 R.degronianum Rhododendron Rhododendron degronianum \N \N \N \N \N 94737 G.thunbergia Gardenia Gardenia thunbergia white gardenia \N \N \N \N 94738 C.SH-2010 Collinsonia Collinsonia sp. SH-2010 \N \N \N \N \N 94739 P.elata Pigafetta Pigafetta elata \N \N \N \N \N 94740 C.217 Chondrorhyncha Chondrorhyncha aff. hirtzii Maduro & Olmos 217 \N \N \N \N \N 94741 T.pumilum Tetramolopium Tetramolopium pumilum \N \N \N \N \N 94742 G.dempsterae Galium Galium dempsterae \N \N \N \N \N 94743 P.crassinervia Potentilla Potentilla crassinervia \N \N \N \N \N 94744 P.nodiflora Phyla Phyla nodiflora \N \N \N \N \N 94745 F.mollissima Fridericia Fridericia mollissima \N \N \N \N \N 94746 L.portoricensis Lobelia Lobelia portoricensis \N \N \N \N \N 94747 C.subspinescens Cratystylis Cratystylis subspinescens \N \N \N \N \N 94748 \N genus Acunaeanthus \N \N \N \N \N 94749 \N subfamily Rauvolfioideae \N \N \N \N \N 94750 C.coccinea Castilleja Castilleja coccinea \N \N \N \N \N 94751 \N genus Spananthe \N \N \N \N \N 94752 P.coriacea Polyscias Polyscias coriacea \N \N \N \N \N 94753 C.parvifolius Ceanothus Ceanothus parvifolius \N \N \N \N \N 94754 A.alpestris Aspalathus Aspalathus alpestris \N \N \N \N \N 94755 M.dolichogyna Manglietia Manglietia dolichogyna \N \N \N \N \N 94756 P.herrerae Puya Puya herrerae \N \N \N \N \N 94757 L.purpureoviridis Liparis Liparis purpureoviridis \N \N \N \N \N 94758 C.leptostachya Cansjera Cansjera leptostachya \N \N \N \N \N 94759 C.laurinus Croton Croton laurinus \N \N \N \N \N 94760 E.formosana Excoecaria Excoecaria formosana \N \N \N \N \N 94761 D.1237 Dalbergia Dalbergia sp. Hughes 1237 \N \N \N \N \N 94762 \N genus Cleistes \N \N \N \N \N 94763 C.eremobius Chrysothamnus Chrysothamnus eremobius pintwater rabbitbrush \N \N \N \N 94764 G.penduliflora Glomeropitcairnia Glomeropitcairnia penduliflora \N \N \N \N \N 94765 C.caliginosa Chirita Chirita caliginosa \N \N \N \N \N 94766 R.cheirophyllus Ranunculus Ranunculus cheirophyllus \N \N \N \N \N 94767 S.ocymoides Saponaria Saponaria ocymoides \N \N \N \N \N 94768 R.plicatula Rondeletia Rondeletia plicatula \N \N \N \N \N 94769 \N subspecies Festuca rivas-martinezii subsp. rivas-martinezii \N \N \N \N \N 94770 A.reginula Alocasia Alocasia reginula \N \N \N \N \N 94771 \N varietas Brachyscome basaltica var. gracilis \N \N \N \N \N 94772 T.wittii Trichocentrum Trichocentrum wittii \N \N \N \N \N 94773 A.virgata Allotropa Allotropa virgata \N \N \N \N \N 94774 D.psoraleifolium Discolobium Discolobium psoraleifolium \N \N \N \N \N 94775 \N genus Sampantaea \N \N \N \N \N 94776 M.kunstaetterorum Maxillaria Maxillaria kunstaetterorum \N \N \N \N \N 94777 A.corymbosa Antennaria Antennaria corymbosa \N \N \N \N \N 94778 V.nivalis Valeriana Valeriana nivalis \N \N \N \N \N 94779 E.parvifolia Eschweilera Eschweilera parvifolia \N \N \N \N \N 94780 G.guidonia Guarea Guarea guidonia \N \N \N \N \N 94781 R.urticifolius Rubus Rubus urticifolius mora silvestre \N \N \N \N 94782 \N subspecies Pachysandra axillaris subsp. axillaris \N \N \N \N \N 94783 P.205 Phyla Phyla sp. Sosa 205 \N \N \N \N \N 94784 \N genus Walafrida \N \N \N \N \N 94785 P.sprucei Passiflora Passiflora incarnata x Passiflora sprucei \N \N \N \N \N 94786 B.mucronatum Blepharodon Blepharodon mucronatum \N \N \N \N \N 94787 A.czernaevia Angelica Angelica czernaevia \N \N \N \N \N 94788 C.luridum Catasetum Catasetum luridum \N \N \N \N \N 94789 H.umbratica Herrania Herrania umbratica \N \N \N \N \N 94790 S.apiculata Santiria Santiria apiculata \N \N \N \N \N 94791 L.nodosum Lycium Lycium nodosum \N \N \N \N \N 94792 \N genus Rhamnella \N \N \N \N \N 94793 M.notylioglossa Maxillaria Maxillaria notylioglossa \N \N \N \N \N 94794 N.teixeiranus Nematanthus Nematanthus teixeiranus \N \N \N \N \N 94795 D.takesimana Dystaenia Dystaenia takesimana \N \N \N \N \N 94796 \N genus Hodgsonia \N \N \N \N \N 94797 B.spiralis Babiana Babiana spiralis \N \N \N \N \N 94798 R.americana Rhachicallis Rhachicallis americana \N \N \N \N \N 94799 V.undulata Vandopsis Vandopsis undulata \N \N \N \N \N 94800 G.douglasiana Gentiana Gentiana douglasiana \N \N \N \N \N 94801 P.phillipsonii Pervillaea Pervillaea phillipsonii \N \N \N \N \N 94802 C.333KM Codonorchis Codonorchis sp. 333KM \N \N \N \N \N 94803 S.eriocephalum Spyridium Spyridium eriocephalum \N \N \N \N \N 94804 C.flexuosus Cymbopogon Cymbopogon flexuosus \N \N \N \N \N 94805 D.franchetianum Dicranostigma Dicranostigma franchetianum \N \N \N \N \N 94806 \N subspecies Digitalis laevigata subsp. laevigata \N \N \N \N \N 94807 M.tiehmii Mentzelia Mentzelia tiehmii \N \N \N \N \N 94808 A.sulphurea Alcea Alcea sulphurea \N \N \N \N \N 94809 L.bonariense Lepidium Lepidium bonariense \N \N \N \N \N 94810 O.kochii Orlaya Orlaya kochii \N \N \N \N \N 94811 A.grayanum Argyroxiphium Argyroxiphium grayanum \N \N \N \N \N 94812 T.dumosus Thamnochortus Thamnochortus dumosus \N \N \N \N \N 94813 P.cyclosecta Pinguicula Pinguicula cyclosecta \N \N \N \N \N 94814 P.lucida Pastinaca Pastinaca lucida \N \N \N \N \N 94815 A.marcgravianum Aspidosperma Aspidosperma marcgravianum \N \N \N \N \N 94816 F.lehuntei Faradaya Faradaya lehuntei \N \N \N \N \N 94817 A.foxworthyi Alpinia Alpinia foxworthyi \N \N \N \N \N 94818 V.vaga Valeriana Valeriana vaga \N \N \N \N \N 94819 E.olowaluana Euphorbia Euphorbia olowaluana \N \N \N \N \N 94820 \N genus Corbichonia \N \N \N \N \N 94821 H.rubrum Hieracium Hieracium rubrum \N \N \N \N \N 94822 H.robertiananum Himantoglossum Himantoglossum robertiananum \N \N \N \N \N 94823 \N subspecies Brassica rapa subsp. narinosa \N \N \N \N \N 94824 E.schultzii Euphorbia Euphorbia schultzii \N \N \N \N \N 94825 P.thymifolia Pilea Pilea thymifolia \N \N \N \N \N 94826 P.2350 Psychotria Psychotria sp. Andersson 2350 \N \N \N \N \N 94827 M.glabra Malpighia Malpighia glabra Barbados cherry,acerola,huesito \N \N \N \N 94828 A.austriaca Artemisia Artemisia austriaca \N \N \N \N \N 94829 C.flexuosa Corydalis Corydalis flexuosa \N \N \N \N \N 94830 \N genus Aruncus \N \N \N \N \N 94831 S.lancifolia Sagittaria Sagittaria lancifolia \N \N \N \N \N 94832 \N varietas Cucurbita pepo var. texana Texas gourd,wild marrow \N \N \N \N 94833 \N varietas Luzula banksiana var. rhadina \N \N \N \N \N 94834 A.commutata Artemisia Artemisia commutata \N \N \N \N \N 94835 U.platyphylla Urochloa Urochloa platyphylla broadleaf signalgrass \N \N \N \N 94836 S.fruticosa Selago Selago fruticosa \N \N \N \N \N 94837 R.afghanicus Ranunculus Ranunculus afghanicus \N \N \N \N \N 94838 \N genus Amphibromus \N \N \N \N \N 94839 \N genus Schivereckia \N \N \N \N \N 94840 \N genus Dierama \N \N \N \N \N 94841 A.esperanzae Aristolochia Aristolochia esperanzae \N \N \N \N \N 94842 S.chomatophilum Solanum Solanum chomatophilum \N \N \N \N \N 94843 \N genus Euthamia \N \N \N \N \N 94844 S.glutinosa Salvia Salvia glutinosa \N \N \N \N \N 94845 \N genus Romulea \N \N \N \N \N 94846 G.dubia Gagea Gagea dubia \N \N \N \N \N 94847 V.cultivar Vasconcellea Vasconcellea hybrid cultivar \N \N \N \N \N 94848 B.boissieri Brachypodium Brachypodium boissieri \N \N \N \N \N 94849 C.irrawadiensis Camellia Camellia irrawadiensis \N \N \N \N \N 94850 A.calotheca Atriplex Atriplex calotheca \N \N \N \N \N 94851 R.minutiflorus Ranunculus Ranunculus minutiflorus \N \N \N \N \N 94852 \N subspecies Ptelea trifoliata subsp. angustifolia \N \N \N \N \N 94853 G.calcicola Gagnebina Gagnebina calcicola \N \N \N \N \N 94854 S.bicorne Satyrium Satyrium bicorne \N \N \N \N \N 94855 \N genus Schizocarphus \N \N \N \N \N 94856 N.megacarpus Nothorites Nothorites megacarpus \N \N \N \N \N 94857 D.flabellifolia Ducrosia Ducrosia flabellifolia \N \N \N \N \N 94858 S.alba Spiraea Spiraea alba \N \N \N \N \N 94859 A.multifida Acaena Acaena multifida \N \N \N \N \N 94860 D.robinioides Diphysa Diphysa robinioides \N \N \N \N \N 94861 E.Esp8234 Elleanthus Elleanthus sp. Esp8234 \N \N \N \N \N 94862 C.acuminata Cola Cola acuminata \N \N \N \N \N 94863 \N subspecies Lobelia gregoriana subsp. sattimae \N \N \N \N \N 94864 T.buchholzianus Tylecodon Tylecodon buchholzianus \N \N \N \N \N 94865 S.depauperatum Symphyotrichum Symphyotrichum depauperatum serpentine aster \N \N \N \N 94866 C.pentanthera Canscora Canscora pentanthera \N \N \N \N \N 94867 Q.incana Quercus Quercus incana bluejack oak \N \N \N \N 94868 A.microphyllus Aphanocalyx Aphanocalyx microphyllus \N \N \N \N \N 94869 \N subfamily Saniculoideae \N \N \N \N \N 94870 R.trilobus Rubus Rubus trilobus \N \N \N \N \N 94871 S.HDT-2009 Spergula Spergula sp. HDT-2009 \N \N \N \N \N 94872 D.neocaledonica Durandea Durandea neocaledonica \N \N \N \N \N 94873 M.angelliae Macrocarpaea Macrocarpaea angelliae \N \N \N \N \N 94874 \N genus Gamocarpha \N \N \N \N \N 94875 C.roseum Chaerophyllum Chaerophyllum roseum \N \N \N \N \N 94876 N.noctiflora Nicotiana Nicotiana noctiflora \N \N \N \N \N 94877 P.eichleriana Passiflora Passiflora eichleriana \N \N \N \N \N 94878 B.K16926 Bulbophyllum Bulbophyllum sp. K16926 \N \N \N \N \N 94879 C.fargesii Castanopsis Castanopsis fargesii \N \N \N \N \N 94880 A.floribunda Agonis Agonis floribunda \N \N \N \N \N 94881 T.179 Thaumatococcus Thaumatococcus sp. Ley 179 \N \N \N \N \N 94882 P.stenocarpa Parrya Parrya stenocarpa \N \N \N \N \N 94883 L.ecuadoriensis Lemna Lemna ecuadoriensis \N \N \N \N \N 94884 M.mitior Muraltia Muraltia mitior \N \N \N \N \N 94885 C.mufindiensis Coffea Coffea mufindiensis \N \N \N \N \N 94886 P.tushanensis Photinia Photinia tushanensis \N \N \N \N \N 94887 \N genus Hannonia \N \N \N \N \N 94888 \N no rank unclassified Livistoninae \N \N \N \N \N 94889 C.pseudobrizoides Carex Carex pseudobrizoides \N \N \N \N \N 94890 C.laxa Costularia Costularia laxa \N \N \N \N \N 94891 T.oblongata Turbina Turbina oblongata \N \N \N \N \N 94892 B.imthurnii Bejaria Bejaria imthurnii \N \N \N \N \N 94893 B.dactyloides Buchloe Buchloe dactyloides \N \N \N \N \N 94894 S.staudtii Strychnos Strychnos staudtii \N \N \N \N \N 94895 P.piscatorum Piper Piper piscatorum \N \N \N \N \N 94896 V.linifolia Hebe Veronica linifolia \N \N \N \N \N 94897 O.hamatus Oligochaetochilus Oligochaetochilus hamatus \N \N \N \N \N 94898 H.oreocharis Heracleum Heracleum oreocharis \N \N \N \N \N 94899 \N genus Syringantha \N \N \N \N \N 94900 H.nitidum Hypericum Hypericum nitidum \N \N \N \N \N 94901 S.bisulcatus Syngonanthus Syngonanthus bisulcatus \N \N \N \N \N 94902 C.santaritensis Croton Croton santaritensis \N \N \N \N \N 94903 R.pricei Rafflesia Rafflesia pricei \N \N \N \N \N 94904 C.antillanum Calophyllum Calophyllum antillanum Santa Maria tree,calaba \N \N \N \N 94905 L.durissima Letestua Letestua durissima \N \N \N \N \N 94906 E.globulus Eucalyptus Eucalyptus camaldulensis x Eucalyptus globulus \N \N \N \N \N 94907 \N family Simmondsiaceae \N \N \N \N \N 94908 C.alata Campanula Campanula alata \N \N \N \N \N 94909 A.gratissima Aloysia Aloysia gratissima \N \N \N \N \N 94910 P.acutifolia Physaria Physaria acutifolia \N \N \N \N \N 94911 P.elegans Pycnandra Pycnandra elegans \N \N \N \N \N 94912 S.schwerinii Salix Salix schwerinii \N \N \N \N \N 94913 L.exaltata Lobelia Lobelia exaltata \N \N \N \N \N 94914 M.australis Metagentiana Metagentiana australis \N \N \N \N \N 94915 A.stuhlmannii Alchemilla Alchemilla stuhlmannii \N \N \N \N \N 94916 O.callitrichoides Oldenlandiopsis Oldenlandiopsis callitrichoides creeping-bluet \N \N \N \N 94917 O.pumila Olimarabidopsis Olimarabidopsis pumila \N \N \N \N \N 94918 E.hydropiper Elatine Elatine hydropiper \N \N \N \N \N 94919 L.gracilis Liatris Liatris gracilis \N \N \N \N \N 94920 \N genus Paramoltkia \N \N \N \N \N 94921 P.thouarsiana Paederia Paederia thouarsiana \N \N \N \N \N 94922 L.pusilla Ledermanniella Ledermanniella pusilla \N \N \N \N \N 94923 S.lasiophyllum Solanum Solanum lasiophyllum \N \N \N \N \N 94924 C.scabrida Conyza Conyza scabrida \N \N \N \N \N 94925 P.sewerzovii Phlomoides Phlomoides sewerzovii \N \N \N \N \N 94926 T.ruschiana Tromotriche Tromotriche ruschiana \N \N \N \N \N 94927 C.pallens Chionochloa Chionochloa pallens \N \N \N \N \N 94928 N.acerosa Nephradenia Nephradenia acerosa \N \N \N \N \N 94929 P.marechalii Phaseolus Phaseolus marechalii \N \N \N \N \N 94930 M.macrophylla Magnolia Magnolia macrophylla bigleaf magnolia \N \N \N \N 94931 M.hivaoaensis Melicope Melicope hivaoaensis \N \N \N \N \N 94932 H.carnosus Helianthus Helianthus carnosus \N \N \N \N \N 94933 \N subspecies Mammillaria petrophila subsp. baxteriana \N \N \N \N \N 94934 R.insignis Restio Restio insignis \N \N \N \N \N 94935 \N genus Bornmuellerantha \N \N \N \N \N 94936 \N varietas Citrullus lanatus var. citroides citron-melon \N \N \N \N 94937 \N genus Seidenfadenia \N \N \N \N \N 94938 A.siculum Allium Allium siculum \N \N \N \N \N 94939 C.praegracilis Carex Carex praegracilis \N \N \N \N \N 94940 P.japonica Paris Paris japonica \N \N \N \N \N 94941 G.guthriei Gladiolus Gladiolus guthriei \N \N \N \N \N 94942 F.gracilis Ficinia Ficinia gracilis \N \N \N \N \N 94943 \N varietas Mimosa hirsutissima var. grossa \N \N \N \N \N 94944 R.strepens Ruellia Ruellia strepens \N \N \N \N \N 94945 B.bracteolatum Bulbophyllum Bulbophyllum bracteolatum \N \N \N \N \N 94946 \N order Gentianales \N \N \N \N \N 94947 A.venenata Adenia Adenia venenata \N \N \N \N \N 94948 V.dichroantha Vicia Vicia dichroantha \N \N \N \N \N 94949 E.scabrida Ectrosia Ectrosia scabrida \N \N \N \N \N 94950 H.punctatifolia Horsfieldia Horsfieldia punctatifolia \N \N \N \N \N 94951 \N tribe Agrostophyllinae \N \N \N \N \N 94952 M.guianensis Moutabea Moutabea guianensis \N \N \N \N \N 94953 M.elegans Microseris Microseris elegans \N \N \N \N \N 94954 A.aconitifolia Ampelopsis Ampelopsis aconitifolia \N \N \N \N \N 94955 \N family Lamiaceae mint family \N \N \N \N 94956 B.reflexa Brewcaria Brewcaria reflexa \N \N \N \N \N 94957 P.chihsiniana Photinia Photinia chihsiniana \N \N \N \N \N 94958 R.attenuata Reseda Reseda attenuata \N \N \N \N \N 94959 T.exaltatum Toxicoscordion Toxicoscordion exaltatum \N \N \N \N \N 94960 C.canovirens Cirsium Cirsium canovirens \N \N \N \N \N 94961 I.serpyllifolius Ichnocarpus Ichnocarpus serpyllifolius \N \N \N \N \N 94962 P.exiguus Paepalanthus Paepalanthus exiguus \N \N \N \N \N 94963 \N subspecies Guizotia scabra subsp. scabra \N \N \N \N \N 94964 T.5908 Trichocentrum Trichocentrum sp. Carnevali 5908 \N \N \N \N \N 94965 P.biseriatum Piper Piper biseriatum \N \N \N \N \N 94966 \N genus Scaphium \N \N \N \N \N 94967 S.vogelii Sabicea Sabicea vogelii \N \N \N \N \N 94968 S.973 Sericocalyx Sericocalyx sp. Paton 973 \N \N \N \N \N 94969 B.parvula Begonia Begonia parvula \N \N \N \N \N 94970 \N genus Rzedowskia \N \N \N \N \N 94971 M.nudiflora Margaritopsis Margaritopsis nudiflora \N \N \N \N \N 94972 Z.seubertii Zephyranthes Zephyranthes seubertii \N \N \N \N \N 94973 H.3089' Hydrostachys Hydrostachys sp. 'Bremer 3089' \N \N \N \N \N 94974 A.lycoctonum Aconitum Aconitum lycoctonum \N \N \N \N \N 94975 A.monspeliensis Aphyllanthes Aphyllanthes monspeliensis \N \N \N \N \N 94976 \N varietas Ceanothus integerrimus var. integerrimus \N \N \N \N \N 94977 E.baumianum Exochaenium Exochaenium baumianum \N \N \N \N \N 94978 J.plumosula Jarava Jarava plumosula \N \N \N \N \N 94979 S.oleosa Schleichera Schleichera oleosa \N \N \N \N \N 94980 A.pulcherrimus Anigozanthos Anigozanthos pulcherrimus \N \N \N \N \N 94981 \N genus Traunsteinera \N \N \N \N \N 94982 F.feruloides Ferula Ferula feruloides \N \N \N \N \N 94983 P.lanceolata Persoonia Persoonia lanceolata \N \N \N \N \N 94984 S.castanea Salvia Salvia castanea \N \N \N \N \N 94985 A.subelegans Acosmium Acosmium subelegans \N \N \N \N \N 94986 C.brevistyla Castilleja Castilleja brevistyla \N \N \N \N \N 94987 H.repens Hoffmannseggia Hoffmannseggia repens \N \N \N \N \N 94988 L.pothoina Labisia Labisia pothoina \N \N \N \N \N 94989 P.irwinii Piptadenia Piptadenia irwinii \N \N \N \N \N 94990 E.kansui Euphorbia Euphorbia kansui \N \N \N \N \N 94991 P.vulcani Phyllanthus Phyllanthus vulcani \N \N \N \N \N 94992 \N varietas Eriogonum shockleyi var. longilobum \N \N \N \N \N 94993 S.burkei Scirpoides Scirpoides burkei \N \N \N \N \N 94994 D.coccineum Dendrochilum Dendrochilum coccineum \N \N \N \N \N 94995 D.tremula Dombeya Dombeya tremula \N \N \N \N \N 94996 A.involucratus Aphragmus Aphragmus involucratus \N \N \N \N \N 94997 S.magnifica Sinningia Sinningia magnifica \N \N \N \N \N 94998 M.gymnas Mimosa Mimosa gymnas \N \N \N \N \N 94999 L.fraxinifolia Lomatia Lomatia fraxinifolia \N \N \N \N \N 95000 \N varietas Chrysanthemum japonense var. debile \N \N \N \N \N 95001 A.pyromorpha Adenia Adenia pyromorpha \N \N \N \N \N 95002 L.furfuraceum Limonium Limonium furfuraceum \N \N \N \N \N 95003 B.platyphylla Betula Betula platyphylla Asian white birch,bai hua,shira-kamba \N \N \N \N 95004 E.coccinea Emilia Emilia coccinea \N \N \N \N \N 95005 B.purpurea Bouteloua Bouteloua purpurea \N \N \N \N \N 95006 C.lasiopetaloides Croton Croton lasiopetaloides \N \N \N \N \N 95007 A.paxiana Androsace Androsace paxiana \N \N \N \N \N 95008 G.notata Glyceria Glyceria notata \N \N \N \N \N 95009 \N subspecies Clinopodium menthifolium subsp. ascendens \N \N \N \N \N 95010 C.foetidum Cynanchum Cynanchum foetidum \N \N \N \N \N 95011 P.ramulosa Polystachya Polystachya ramulosa \N \N \N \N \N 95012 C.vaccinioides Calceolaria Calceolaria vaccinioides \N \N \N \N \N 95013 C.lehmannii Cithareloma Cithareloma lehmannii \N \N \N \N \N 95014 A.versicolor Albizia Albizia versicolor \N \N \N \N \N 95015 \N subspecies Armeria arenaria subsp. arenaria \N \N \N \N \N 95016 H.maraisiana Heliophila Heliophila maraisiana \N \N \N \N \N 95017 F.ampelas Ficus Ficus ampelas \N \N \N \N \N 95018 P.basilobatum Piper Piper basilobatum \N \N \N \N \N 95019 P.pygmaeus Pandanus Pandanus pygmaeus \N \N \N \N \N 95020 D.tibeticus Dendrocalamus Dendrocalamus tibeticus \N \N \N \N \N 95021 \N genus Octopoma \N \N \N \N \N 95022 C.castaneifolia Clethra Clethra castaneifolia \N \N \N \N \N 95023 J.sambac Jasminum Jasminum sambac Arabian jasmine \N \N \N \N 95024 R.occidentalis Rustia Rustia occidentalis \N \N \N \N \N 95025 S.bicolor Maianthemum Smilacina bicolor \N \N \N \N \N 95026 \N subfamily Byttnerioideae \N \N \N \N \N 95027 N.trianae Nasa Nasa trianae \N \N \N \N \N 95028 B.sarukhanii Bursera Bursera sarukhanii \N \N \N \N \N 95029 P.americana Paronychia Paronychia americana \N \N \N \N \N 95030 M.lolodensis Musa Musa lolodensis \N \N \N \N \N 95031 K.sample environmental samples Taxonomy:531417 Kunzea environmental sample \N \N \N \N \N 95032 B.preussii Begonia Begonia preussii \N \N \N \N \N 95033 C.grijsii Camellia Camellia grijsii \N \N \N \N \N 95034 M.smithiana Meconopsis Meconopsis smithiana \N \N \N \N \N 95035 L.squarrosa Lappula Lappula squarrosa \N \N \N \N \N 95036 A.tauschii Aegilops Aegilops longissima x Aegilops tauschii \N \N \N \N \N 95037 C.574200 Cleome Cleome sp. CANB 574200 \N \N \N \N \N 95038 D.crepidifolia Dendrocacalia Dendrocacalia crepidifolia \N \N \N \N \N 95039 S.sp. Spiraea Spiraea sp. \N \N \N \N \N 95040 V.darrowii Vaccinium Vaccinium darrowii \N \N \N \N \N 95041 P.stapfiana Protomegabaria Protomegabaria stapfiana \N \N \N \N \N 95042 E.fragrans Eriandra Eriandra fragrans \N \N \N \N \N 95043 C.endertii Costera Costera endertii \N \N \N \N \N 95044 M.halimifolius Mecomischus Mecomischus halimifolius \N \N \N \N \N 95045 G.taschkentica Gagea Gagea taschkentica \N \N \N \N \N 95046 E.glauca Eleocharis Eleocharis glauca \N \N \N \N \N 95047 \N genus Petraeovitex \N \N \N \N \N 95048 A.stachyophyllum Acer Acer stachyophyllum \N \N \N \N \N 95049 \N genus Taihangia \N \N \N \N \N 95050 \N subspecies Puccinellia walkeri subsp. chathamica \N \N \N \N \N 95051 A.fungosa Adlumia Adlumia fungosa Allegheny-vine,mountain-fringe \N \N \N \N 95052 \N genus Heterostachys \N \N \N \N \N 95053 U.rufa Uvaria Uvaria rufa \N \N \N \N \N 95054 M.coco Magnolia Magnolia coco \N \N \N \N \N 95055 I.hoogiana Iris Iris hoogiana \N \N \N \N \N 95056 H.adscendens Hopkinsia Hopkinsia adscendens \N \N \N \N \N 95057 S.hatschbachii Syngonanthus Syngonanthus hatschbachii \N \N \N \N \N 95058 N.3648 Nemesia Nemesia aff. bicornis Steiner 3648 \N \N \N \N \N 95059 P.carnosa Polycarpaea Polycarpaea carnosa \N \N \N \N \N 95060 P.multiradiatum Papaver Papaver multiradiatum \N \N \N \N \N 95061 L.macrodon Lamium Lamium macrodon \N \N \N \N \N 95062 A.rotundifolia Amerorchis Amerorchis rotundifolia \N \N \N \N \N 95063 O.brevipes Oreomyrrhis Oreomyrrhis brevipes \N \N \N \N \N 95064 R.dentata Roridula Roridula dentata \N \N \N \N \N 95065 \N genus Ascochilopsis \N \N \N \N \N 95066 M.lewisii Mimosa Mimosa lewisii \N \N \N \N \N 95067 \N genus Ceuthostoma \N \N \N \N \N 95068 G.bracteata Grahamia Grahamia bracteata \N \N \N \N \N 95069 I.afrum Ischaemum Ischaemum afrum \N \N \N \N \N 95070 D.corymbosa Daviesia Daviesia corymbosa \N \N \N \N \N 95071 \N genus Rhodognaphalon \N \N \N \N \N 95072 P.montivaga Passerina Passerina montivaga \N \N \N \N \N 95073 M.hexandrum Micrantheum Micrantheum hexandrum \N \N \N \N \N 95074 \N genus Stuessya \N \N \N \N \N 95075 E.schickendantzii Echinopsis Echinopsis schickendantzii \N \N \N \N \N 95076 C.oldhamii Chloranthus Chloranthus oldhamii \N \N \N \N \N 95077 O.crista-galli Onobrychis Onobrychis crista-galli \N \N \N \N \N 95078 A.malacitanum Alyssum Alyssum malacitanum \N \N \N \N \N 95079 D.constricta Dendrophthoe Dendrophthoe constricta \N \N \N \N \N 95080 \N genus Aquilaria \N \N \N \N \N 95081 O.caespitosum Olymposciadium Olymposciadium caespitosum \N \N \N \N \N 95082 C.kiotensis Carex Carex kiotensis \N \N \N \N \N 106367 \N genus Nicoraepoa \N \N \N \N \N 95083 P.nigra Populus Populus nigra Lombardy poplar,black poplar \N \N \N \N 95084 B.grandifolia Bursera Bursera grandifolia \N \N \N \N \N 95085 M.lindenii Monadenium Monadenium lindenii \N \N \N \N \N 95086 H.verekeri Huernia Huernia verekeri \N \N \N \N \N 95087 T.repens Trichogyne Trichogyne repens \N \N \N \N \N 95088 \N genus Parkia \N \N \N \N \N 95089 O.ballii Olearia Olearia ballii \N \N \N \N \N 95090 A.brasiliensis Anaueria Anaueria brasiliensis \N \N \N \N \N 95091 C.intermedia Cliffortia Cliffortia intermedia \N \N \N \N \N 95092 S.forstenii Semecarpus Semecarpus forstenii \N \N \N \N \N 95093 H.californica Horkelia Horkelia californica \N \N \N \N \N 95094 \N genus Elytropus \N \N \N \N \N 95095 C.pseudogulgul Citrus Citrus pseudogulgul \N \N \N \N \N 95096 P.hallii Pterygodium Pterygodium hallii \N \N \N \N \N 95097 G.pittieri Guatteria Guatteria pittieri \N \N \N \N \N 95098 T.6273 unclassified Taraxacum Taraxacum (sect. Piesis) sp. 6273 \N \N \N \N \N 95099 \N genus Bongardia \N \N \N \N \N 95100 \N family Humiriaceae \N \N \N \N \N 95101 S.25922 Symbolanthus Symbolanthus sp. Croat 25922 \N \N \N \N \N 95102 R.alpestris Rumex Rumex alpestris \N \N \N \N \N 95103 \N genus Montrouziera \N \N \N \N \N 95104 D.longirhiza Dioscorea Dioscorea longirhiza \N \N \N \N \N 95105 A.krabiensis Aerides Aerides krabiensis \N \N \N \N \N 95106 \N subspecies Phlox drummondii subsp. drummondii \N \N \N \N \N 95107 B.nantoensis Begonia Begonia nantoensis \N \N \N \N \N 95108 L.austriacum Linum Linum austriacum \N \N \N \N \N 95109 P.axillaris Pedicularis Pedicularis axillaris \N \N \N \N \N 95110 \N genus Musschia \N \N \N \N \N 95111 \N varietas Amomum villosum var. xanthioides suo sha ren \N \N \N \N 95112 L.petelotii Lysionotus Lysionotus petelotii \N \N \N \N \N 95113 D.globosa Dichaea Dichaea globosa \N \N \N \N \N 95114 D.laxiflora Diuris Diuris laxiflora bee orchid \N \N \N \N 95115 C.coronopus Chamaesaracha Chamaesaracha coronopus \N \N \N \N \N 95116 P.umbelliforme Phagnalon Phagnalon umbelliforme \N \N \N \N \N 95117 \N genus Tugarinovia \N \N \N \N \N 95118 \N tribe Cremasporeae \N \N \N \N \N 95119 P.maypurensis Peperomia Peperomia maypurensis \N \N \N \N \N 95120 \N genus Pseudobambusa \N \N \N \N \N 95121 T.CH_M6Sdcum Triticum Triticum sp. CH_M6Sdcum \N \N \N \N \N 95122 B.sieboldii Berberis Berberis sieboldii \N \N \N \N \N 95123 I.racemosa Inula Inula racemosa Indian elecampane \N \N \N \N 95124 A.lysiphloia Acacia Acacia lysiphloia \N \N \N \N \N 95125 H.chlorantha Heuchera Heuchera chlorantha \N \N \N \N \N 95126 M.mollissimus Mallotus Mallotus mollissimus \N \N \N \N \N 95127 D.fulgurans Dorycnium Dorycnium pentaphyllum x Dorycnium pentaphyllum subsp. fulgurans \N \N \N \N \N 95128 A.garckeana Azanza Azanza garckeana \N \N \N \N \N 95129 C.07nia937 Coccinia Coccinia sp. 07nia937 \N \N \N \N \N 95130 H.cylindricum Hedychium Hedychium cylindricum \N \N \N \N \N 95131 \N varietas Pyrrocoma racemosa var. sessiliflora \N \N \N \N \N 95132 \N subspecies Ophrys cretica subsp. beloniae \N \N \N \N \N 95133 P.oliveri Periboea Periboea oliveri \N \N \N \N \N 95134 A.verbascifolia Arctotis Arctotis verbascifolia \N \N \N \N \N 95135 L.heteromera Lechenaultia Lechenaultia heteromera \N \N \N \N \N 95136 O.laurensis Ophrys Ophrys laurensis \N \N \N \N \N 95137 E.scheffleri Euphorbia Euphorbia scheffleri \N \N \N \N \N 95138 D.purpurea Dalea Dalea purpurea Dalea purpurea Vent. \N \N \N \N 95139 B.paleacea Bistorta Bistorta paleacea \N \N \N \N \N 95140 \N genus Galeopsis \N \N \N \N \N 95141 S.acuminatum Satyrium Satyrium acuminatum \N \N \N \N \N 95142 \N genus Ecclinusa \N \N \N \N \N 95143 P.setulosum Pelargonium Pelargonium setulosum \N \N \N \N \N 95144 O.lyallii Olearia Olearia lyallii \N \N \N \N \N 95145 B.JS-2010a Babiana Babiana sp. JS-2010a \N \N \N \N \N 95146 S.cultivar Saccharum officinarum complex Saccharum hybrid cultivar sugarcane \N \N \N \N 95147 L.salinus Leymus Leymus salinus \N \N \N \N \N 95148 A.kuhsorkhense Allium Allium kuhsorkhense \N \N \N \N \N 95149 H.pimpinellifolia Hypseocharis Hypseocharis pimpinellifolia \N \N \N \N \N 95150 S.nudum Sedum Sedum nudum \N \N \N \N \N 95151 P.schottii Psorothamnus Psorothamnus schottii \N \N \N \N \N 95152 S.lindeniana Scaphyglottis Scaphyglottis lindeniana \N \N \N \N \N 95153 E.chihuahuensis Escobaria Escobaria chihuahuensis \N \N \N \N \N 95154 C.semiverticillatus Callianthemoides Callianthemoides semiverticillatus \N \N \N \N \N 95155 S.fedtschenkoana Silene Silene fedtschenkoana \N \N \N \N \N 95156 C.barrelieri Cynoglottis Cynoglottis barrelieri \N \N \N \N \N 95157 L.stellatus Lettowianthus Lettowianthus stellatus \N \N \N \N \N 95158 A.hyssopifolia Aspicarpa Aspicarpa hyssopifolia \N \N \N \N \N 95159 M.barbinodis Microcalamus Microcalamus barbinodis \N \N \N \N \N 95160 W.purpurea Wedelia Wedelia purpurea \N \N \N \N \N 95161 M.coxii Myrsine Myrsine coxii \N \N \N \N \N 95162 J.BAC-2010 unclassified Juncaceae Juncaceae sp. A9 BAC-2010 \N \N \N \N \N 95163 \N genus Sobralia \N \N \N \N \N 95164 A.terminalis Aniba Aniba terminalis \N \N \N \N \N 95165 E.pauciflorum Echiochilon Echiochilon pauciflorum \N \N \N \N \N 95166 P.fulvescens Plectranthus Plectranthus fulvescens \N \N \N \N \N 95167 D.abnorme Discospermum Discospermum abnorme \N \N \N \N \N 95168 A.ellipticus Aeschynanthus Aeschynanthus ellipticus \N \N \N \N \N 95169 C.VB942 Clusia Clusia sp. VB942 \N \N \N \N \N 95170 S.pyrenaica Scorzoneroides Scorzoneroides pyrenaica \N \N \N \N \N 95171 S.arborea Strobocalyx Strobocalyx arborea \N \N \N \N \N 95172 \N genus Leersia cutgrass,white grass \N \N \N \N 95173 A.osoensis Arctostaphylos Arctostaphylos osoensis \N \N \N \N \N 95174 L.steveniana Lonicera Lonicera steveniana \N \N \N \N \N 95175 C.tolmiei Calochortus Calochortus tolmiei \N \N \N \N \N 95176 T.rusbyi Trifolium Trifolium rusbyi \N \N \N \N \N 95177 X.riskindii Xylothamia Xylothamia riskindii \N \N \N \N \N 95178 L.dregeana Lactuca Lactuca dregeana \N \N \N \N \N 95179 E.squamigera Euphorbia Euphorbia squamigera \N \N \N \N \N 95180 S.parvipetala Stegolepis Stegolepis parvipetala \N \N \N \N \N 95181 J.hallii Juncus Juncus hallii \N \N \N \N \N 95182 C.milleri Croton Croton milleri \N \N \N \N \N 95183 D.regia Drosera Drosera regia \N \N \N \N \N 95184 A.nana Apinagia Apinagia nana \N \N \N \N \N 95185 F.sogdiana Fraxinus Fraxinus sogdiana \N \N \N \N \N 95187 O.sativus Ornithopus Ornithopus sativus \N \N \N \N \N 95188 A.borneensis Actinodaphne Actinodaphne borneensis \N \N \N \N \N 95189 \N genus Cyathochaeta \N \N \N \N \N 95190 C.cilicicum Colchicum Colchicum cilicicum \N \N \N \N \N 95191 C.H1_38 Castilleja Castilleja sp. H1_38 \N \N \N \N \N 95192 M.glomerata Medicago Medicago glomerata \N \N \N \N \N 95193 A.biloba Aerangis Aerangis biloba \N \N \N \N \N 95194 F.insignis Fuchsia Fuchsia insignis \N \N \N \N \N 95195 \N genus Lablab \N \N \N \N \N 95196 M.hirsuta Mairia Mairia hirsuta \N \N \N \N \N 95197 S.crinitipes Solanum Solanum crinitipes \N \N \N \N \N 95198 A.drummondii Austrostipa Austrostipa drummondii \N \N \N \N \N 95199 C.albonigra Carex Carex albonigra \N \N \N \N \N 95200 P.lanigera Plantago Plantago lanigera \N \N \N \N \N 95201 L.repens Linaria Linaria repens \N \N \N \N \N 95202 A.96143 Alstroemeria Alstroemeria sp. Qiu 96143 \N \N \N \N \N 95203 O.warmingii Oxypetalum Oxypetalum warmingii \N \N \N \N \N 95204 C.tectorum Copernicia Copernicia tectorum \N \N \N \N \N 95205 \N tribe Lepidieae \N \N \N \N \N 95206 A.chilense Apium Apium chilense \N \N \N \N \N 95207 C.fargesii Cypripedium Cypripedium fargesii \N \N \N \N \N 95208 T.pumilus Trollius Trollius pumilus \N \N \N \N \N 95209 G.canadense Geum Geum canadense white avens \N \N \N \N 95210 C.oaxacensis Corytoplectus Corytoplectus oaxacensis \N \N \N \N \N 95211 S.exalatum Sceletium Sceletium exalatum \N \N \N \N \N 95212 D.conjugens Deinandra Deinandra conjugens \N \N \N \N \N 95213 M.pinifolia Myrceugenia Myrceugenia pinifolia \N \N \N \N \N 95214 \N genus Sphenocentrum \N \N \N \N \N 95215 \N varietas Brassica napus var. napus annual rape,canola \N \N \N \N 95216 S.blumenaviensis Schenckia Schenckia blumenaviensis \N \N \N \N \N 95217 C.nubium Chamaedorea Chamaedorea nubium \N \N \N \N \N 95218 M.DIE Macrocarpaea Macrocarpaea sp. DIE \N \N \N \N \N 95219 \N genus Gomesa \N \N \N \N \N 95220 A.drakeana Aechmea Aechmea drakeana \N \N \N \N \N 95221 R.hyperboreus Ranunculus Ranunculus hyperboreus \N \N \N \N \N 95222 R.orbiculatum Rhododendron Rhododendron orbiculatum \N \N \N \N \N 95223 R.damascenus Ranunculus Ranunculus damascenus \N \N \N \N \N 95224 H.monarchensis Heterotheca Heterotheca monarchensis Monarch goldenaster \N \N \N \N 95225 \N genus Neobouteloua \N \N \N \N \N 95226 S.filituba Spermacoce Spermacoce filituba \N \N \N \N \N 95227 E.neogossweileri Euphorbia Euphorbia neogossweileri \N \N \N \N \N 95228 M.lenticellata Miconia Miconia lenticellata \N \N \N \N \N 95229 B.gladiatum Bulbophyllum Bulbophyllum gladiatum \N \N \N \N \N 95230 H.rariflorum Heterocodon Heterocodon rariflorum \N \N \N \N \N 95231 \N genus Triolena \N \N \N \N \N 95232 R.valentina Reseda Reseda valentina \N \N \N \N \N 95233 T.CH_M4Sdcum Triticum Triticum sp. CH_M4Sdcum \N \N \N \N \N 95234 E.ottonis Ehrharta Ehrharta ottonis \N \N \N \N \N 95235 \N varietas Magnolia officinalis var. officinalis \N \N \N \N \N 95236 \N genus Otostylis \N \N \N \N \N 95237 C.lueddemanniana Cattleya Cattleya lueddemanniana \N \N \N \N \N 95238 C.humbertii Coffea Coffea humbertii \N \N \N \N \N 95239 J.regia Juglans Juglans nigra x Juglans regia \N \N \N \N \N 95240 O.zpl Ocimum Ocimum sp. MIB zpl \N \N \N \N \N 95241 L.boucheri Liparia Liparia boucheri \N \N \N \N \N 95242 S.quichensis Smallanthus Smallanthus quichensis \N \N \N \N \N 95243 C.aemula Calathea Calathea aemula \N \N \N \N \N 95244 A.sylvatica Aesculus Aesculus pavia x Aesculus sylvatica \N \N \N \N \N 95245 D.densiflora Disa Disa densiflora \N \N \N \N \N 95246 E.laricifolia Ericameria Ericameria laricifolia turpentine bush \N \N \N \N 95247 A.heterotropoides Asarum Asarum heterotropoides \N \N \N \N \N 95248 S.rosea Schlumbergera Schlumbergera rosea \N \N \N \N \N 95249 S.elliptica Stipularia Stipularia elliptica \N \N \N \N \N 95250 \N varietas Euphorbia geyeri var. geyeri \N \N \N \N \N 95251 \N varietas Samolus repens var. procumbens \N \N \N \N \N 95252 A.serenana Atriplex Atriplex serenana \N \N \N \N \N 95253 \N genus Amerorchis \N \N \N \N \N 95254 \N genus Xanthium \N \N \N \N \N 95255 \N genus Halimium \N \N \N \N \N 95256 \N genus Hexaspora \N \N \N \N \N 95257 G.curviflora Genipa Genipa curviflora \N \N \N \N \N 95258 P.interruptum Phrynium Phrynium interruptum \N \N \N \N \N 95259 M.pterocarpa Magnolia Magnolia pterocarpa \N \N \N \N \N 95260 \N subspecies Hydrangea arborescens subsp. arborescens \N \N \N \N \N 95261 D.alatus Dipterocarpus Dipterocarpus alatus \N \N \N \N \N 95262 M.ichangensis Machilus Machilus ichangensis \N \N \N \N \N 95263 H.revoluta Hexalectris Hexalectris revoluta \N \N \N \N \N 95264 C.stenophylla Carex Carex stenophylla \N \N \N \N \N 95265 B.pulvinata Baimashania Baimashania pulvinata \N \N \N \N \N 95266 A.tuncelianum Allium Allium tuncelianum \N \N \N \N \N 95267 A.macranthus Aeschynanthus Aeschynanthus macranthus \N \N \N \N \N 95268 P.bella Polystachya Polystachya bella \N \N \N \N \N 95269 S.depauperata Scaevola Scaevola depauperata \N \N \N \N \N 95270 C.hirsutissima Canavalia Canavalia hirsutissima \N \N \N \N \N 95271 B.fissistyla Begonia Begonia fissistyla \N \N \N \N \N 95272 B.obovata Barkeria Barkeria obovata \N \N \N \N \N 95273 C.pairae Carex Carex pairae \N \N \N \N \N 95274 L.pungens Linanthus Linanthus pungens granite prickly phlox \N \N \N \N 95275 T.peruviana Triplaris Triplaris peruviana \N \N \N \N \N 95276 E.capricornu Epidendrum Epidendrum capricornu \N \N \N \N \N 95277 H.dichotoma Hoppea Hoppea dichotoma \N \N \N \N \N 95278 C.stricta Crucihimalaya Crucihimalaya stricta \N \N \N \N \N 95279 C.salsoloides Campylanthus Campylanthus salsoloides \N \N \N \N \N 95280 A.papilionacea Anacamptis Anacamptis papilionacea \N \N \N \N \N 95281 G.fimbriata Gomesa Gomesa fimbriata \N \N \N \N \N 95282 P.cantorii Pseudosasa Pseudosasa cantorii \N \N \N \N \N 95283 S.oxycarpum Solanum Solanum oxycarpum \N \N \N \N \N 95284 I.tongchunensis Indocalamus Indocalamus tongchunensis \N \N \N \N \N 95285 N.gracilipes Noronhia Noronhia gracilipes \N \N \N \N \N 95286 \N family Sabiaceae \N \N \N \N \N 95287 E.walteri Eragrostis Eragrostis walteri \N \N \N \N \N 95288 H.jaegeri Halimolobos Halimolobos jaegeri \N \N \N \N \N 95289 S.elaeagnos Salix Salix elaeagnos \N \N \N \N \N 95290 S.alamosanum Sedum Sedum alamosanum \N \N \N \N \N 95291 A.brevis Androsace Androsace brevis \N \N \N \N \N 95292 N.rivularis Nierembergia Nierembergia rivularis \N \N \N \N \N 95293 I.barbata Impatiens Impatiens barbata \N \N \N \N \N 95294 D.tatsienense Delphinium Delphinium tatsienense \N \N \N \N \N 95295 \N genus Anathallis \N \N \N \N \N 95296 C.oxylepis Cota Cota oxylepis \N \N \N \N \N 95297 \N subspecies Isatis cappadocica subsp. steveniana \N \N \N \N \N 95298 O.scaberulum Ostericum Ostericum scaberulum \N \N \N \N \N 95299 B.auriflorum Bulbophyllum Bulbophyllum auriflorum \N \N \N \N \N 95300 \N subspecies Orthocarpus tolmiei subsp. tolmiei \N \N \N \N \N 95301 \N genus Stromanthe \N \N \N \N \N 95302 P.microphylla Poranthera Poranthera microphylla \N \N \N \N \N 95303 C.dayanum Cymbidium Cymbidium dayanum \N \N \N \N \N 95304 S.elatum Sauroglossum Sauroglossum elatum \N \N \N \N \N 95305 P.parviflorus Paepalanthus Paepalanthus parviflorus \N \N \N \N \N 95306 \N varietas Camellia anlungensis var. acutiperulata \N \N \N \N \N 95307 V.ferruginea Vochysia Vochysia ferruginea \N \N \N \N \N 95308 W.kaarruana Wilkiea Wilkiea kaarruana \N \N \N \N \N 95309 H.tsii Holcoglossum Holcoglossum tsii \N \N \N \N \N 95310 \N varietas Oxytropis glabra var. tenuis \N \N \N \N \N 95311 D.depressa Descurainia Descurainia depressa \N \N \N \N \N 95312 T.acanthocarpus Tragopogon Tragopogon acanthocarpus \N \N \N \N \N 95313 \N genus Chamaecostus \N \N \N \N \N 95314 S.faucisanguinea Schiedeella Schiedeella faucisanguinea \N \N \N \N \N 95315 A.mandshurica Alnus Alnus mandshurica \N \N \N \N \N 95316 R.dahuricus Ranunculus Ranunculus dahuricus \N \N \N \N \N 95317 \N genus Leptoterantha \N \N \N \N \N 95318 M.repens Maxillaria Maxillaria repens \N \N \N \N \N 95319 I.anemonifolius Isopogon Isopogon anemonifolius \N \N \N \N \N 95320 A.rumicifolium Aconogonon Aconogonon rumicifolium \N \N \N \N \N 95321 N.antiloga Niemeyera Niemeyera antiloga \N \N \N \N \N 95322 S.rigens Sauropus Sauropus rigens \N \N \N \N \N 95323 P.cranolopha Pedicularis Pedicularis cranolopha \N \N \N \N \N 95324 S.argel Solenostemma Solenostemma argel \N \N \N \N \N 95325 T.uncinatus Teramnus Teramnus uncinatus \N \N \N \N \N 95326 U.sessilifolia Uvularia Uvularia sessilifolia \N \N \N \N \N 95327 \N genus Centemopsis \N \N \N \N \N 95328 G.macedonica Glycyrrhiza Glycyrrhiza macedonica \N \N \N \N \N 95329 A.leptoclados Arenaria Arenaria leptoclados \N \N \N \N \N 95330 T.ceratophorum Taraxacum Taraxacum ceratophorum \N \N \N \N \N 95331 A.lineata Allantoma Allantoma lineata \N \N \N \N \N 95332 \N subspecies Elymus glaucus subsp. virescens \N \N \N \N \N 95333 O.mooneyi Olearia Olearia mooneyi \N \N \N \N \N 95334 A.bigelovii Artemisia Artemisia bigelovii \N \N \N \N \N 95335 \N genus Fagonia \N \N \N \N \N 95336 C.bonnieri Coffea Coffea bonnieri \N \N \N \N \N 95337 I.schomburgkiana Isidrogalvia Isidrogalvia schomburgkiana \N \N \N \N \N 95338 U.dura Urochloa Urochloa dura \N \N \N \N \N 95339 C.havilandii Callicarpa Callicarpa havilandii \N \N \N \N \N 95340 O.lauterbachiana Orania Orania lauterbachiana \N \N \N \N \N 95341 V.collumanthus Vesicarex Vesicarex collumanthus \N \N \N \N \N 95342 O.MO1101 Oxalis Oxalis sp. MO1101 \N \N \N \N \N 95343 M.oxycarpum Marathrum Marathrum oxycarpum \N \N \N \N \N 95344 S.matarankense Sorghum Sorghum matarankense \N \N \N \N \N 95345 S.udensis Salix Salix udensis \N \N \N \N \N 95346 D.aglaonematifolia Dieffenbachia Dieffenbachia aglaonematifolia \N \N \N \N \N 95347 E.angustilobus Echinops Echinops angustilobus \N \N \N \N \N 95348 C.sphyrnoides Chiloglottis Chiloglottis sphyrnoides \N \N \N \N \N 95349 H.baudouinii Hibbertia Hibbertia baudouinii \N \N \N \N \N 95350 A.searelliana Aralia Aralia searelliana \N \N \N \N \N 95351 T.37481 unclassified Taraxacum Taraxacum (sect. Erythrocarpa) sp. 37481 \N \N \N \N \N 95352 C.longirostrum Cynanchum Cynanchum longirostrum \N \N \N \N \N 95353 E.nodulosa Echeveria Echeveria nodulosa \N \N \N \N \N 95354 U.ulmacea Urvillea Urvillea ulmacea \N \N \N \N \N 95355 M.beckii Megalodonta Megalodonta beckii Beck's watermarigold \N \N \N \N 95356 \N varietas Allium howellii var. howellii \N \N \N \N \N 95357 T.argentinense Trifolium Trifolium argentinense \N \N \N \N \N 95358 M.trachyantha Matelea Matelea trachyantha \N \N \N \N \N 95359 \N genus Lagunaria \N \N \N \N \N 95360 R.lozanii Ramirezella Ramirezella lozanii \N \N \N \N \N 95361 \N genus Podocytisus \N \N \N \N \N 95362 J.succulentifolia Junellia Junellia succulentifolia \N \N \N \N \N 95363 C.3684 Clusia Clusia sp. JA 3684 \N \N \N \N \N 95364 \N genus Hanceola \N \N \N \N \N 95365 A.monostachya Artemisia Artemisia monostachya \N \N \N \N \N 95366 \N subspecies Phlox pilosa subsp. riparia \N \N \N \N \N 95367 C.napifolia Centaurea Centaurea napifolia \N \N \N \N \N 95368 T.villosus Toxocarpus Toxocarpus villosus \N \N \N \N \N 95369 C.serpyllifolia Cliffortia Cliffortia serpyllifolia \N \N \N \N \N 95370 M.papilionacea Moraea Moraea papilionacea \N \N \N \N \N 95371 V.acerifolium Viburnum Viburnum acerifolium dockmackie,mapleleaf viburnum \N \N \N \N 95372 K.microcharis Kefersteinia Kefersteinia microcharis \N \N \N \N \N 95373 S.hofmannii Symphyandra Symphyandra hofmannii \N \N \N \N \N 95374 \N genus Eudianthe \N \N \N \N \N 95375 I.taliensis Isodon Isodon taliensis \N \N \N \N \N 95376 P.elata Pterocypsela Pterocypsela elata \N \N \N \N \N 95377 M.micromalus Malus Malus micromalus Kaido crab apple \N \N \N \N 95378 T.aurea Todaroa Todaroa aurea \N \N \N \N \N 95379 \N varietas Samolus ebracteatus var. coahuilensis \N \N \N \N \N 95380 L.orbiculare Lepidium Lepidium orbiculare \N \N \N \N \N 95381 P.misera Platystele Platystele misera \N \N \N \N \N 95382 M.fordiana Manglietia Manglietia fordiana \N \N \N \N \N 95383 A.ferrugineum Aceratium Aceratium ferrugineum \N \N \N \N \N 95384 \N varietas Hydrangea serrata var. yesoensis \N \N \N \N \N 95385 V.sinocinerea Vitis Vitis sinocinerea \N \N \N \N \N 95386 D.spicatum Dischisma Dischisma spicatum \N \N \N \N \N 95387 G.ambiguus Gymnopogon Gymnopogon ambiguus \N \N \N \N \N 95388 W.floribunda Wisteria Wisteria floribunda Japanese wistaria,Japanese wisteria \N \N \N \N 95389 S.glaucophyllus Senecio Senecio glaucophyllus \N \N \N \N \N 95390 C.libanoticum Chaerophyllum Chaerophyllum libanoticum \N \N \N \N \N 95391 R.stenodontum Rhabdocaulon Rhabdocaulon stenodontum \N \N \N \N \N 95392 \N genus Lindmania \N \N \N \N \N 95393 C.tenuiflorus Carduus Carduus tenuiflorus \N \N \N \N \N 95394 T.huense Typhonium Typhonium huense \N \N \N \N \N 95395 T.islandicum Taraxacum Taraxacum islandicum \N \N \N \N \N 95396 L.australis Livistona Livistona australis \N \N \N \N \N 95397 G.paniculata Gymnacranthera Gymnacranthera paniculata \N \N \N \N \N 95398 A.cupaniana Anthemis Anthemis cupaniana \N \N \N \N \N 95399 \N genus Koeleria \N \N \N \N \N 95400 C.burttii Colchicum Colchicum burttii \N \N \N \N \N 95401 T.portulacastrum Trianthema Trianthema portulacastrum \N \N \N \N \N 95402 O.cornuta Ophrys Ophrys cornuta \N \N \N \N \N 95403 E.pilosa Eragrostis Eragrostis pilosa \N \N \N \N \N 95404 P.candicans Pelargonium Pelargonium candicans \N \N \N \N \N 95405 C.holacantha Canotia Canotia holacantha \N \N \N \N \N 95406 M.discolor Miconia Miconia discolor \N \N \N \N \N 95407 H.andromedifolia Halgania Halgania andromedifolia \N \N \N \N \N 95408 \N genus Prenanthes \N \N \N \N \N 95409 V.asarifolia Valeriana Valeriana asarifolia \N \N \N \N \N 95410 E.mammosa Erica Erica mammosa \N \N \N \N \N 95411 \N genus Homalopetalum \N \N \N \N \N 95412 N.apetala Nestegis Nestegis apetala \N \N \N \N \N 95413 \N genus Cyathobasis \N \N \N \N \N 95414 P.auxopoda Psychotria Psychotria auxopoda \N \N \N \N \N 95415 H.asperum Helichrysum Helichrysum asperum \N \N \N \N \N 95416 L.NSW756787 Leptocarpus Leptocarpus sp. NSW756787 \N \N \N \N \N 95417 \N genus Pojarkovia \N \N \N \N \N 95418 S.bhutanica Sophora Sophora bhutanica \N \N \N \N \N 95419 T.pseudopectinatus Turbinicarpus Turbinicarpus pseudopectinatus \N \N \N \N \N 95420 K.breviflora Kniphofia Kniphofia breviflora \N \N \N \N \N 95421 A.brevipes Asclepias Asclepias brevipes \N \N \N \N \N 95422 C.harmandiana Clausena Clausena harmandiana \N \N \N \N \N 95423 L.grandiflorus Lotus Lotus grandiflorus \N \N \N \N \N 95424 C.thamnodes Cousinia Cousinia thamnodes \N \N \N \N \N 95425 E.isauricum Eryngium Eryngium isauricum \N \N \N \N \N 95426 \N genus Diaspasis \N \N \N \N \N 95427 O.tripudians Oncidium Oncidium tripudians \N \N \N \N \N 95428 \N varietas Boechera pulchra var. gracilis \N \N \N \N \N 95429 P.supardii Paphiopedilum Paphiopedilum supardii \N \N \N \N \N 95430 E.isatidifolia Euphorbia Euphorbia isatidifolia \N \N \N \N \N 95431 D.ovatus Didymocarpus Didymocarpus ovatus \N \N \N \N \N 95432 C.lyroglossa Calanthe Calanthe lyroglossa \N \N \N \N \N 95433 L.fugax Lycocarpus Lycocarpus fugax \N \N \N \N \N 95434 S.acuminata Saussurea Saussurea acuminata \N \N \N \N \N 95435 P.divaricata Physalis Physalis divaricata \N \N \N \N \N 95436 U.clavata Uncinia Uncinia clavata \N \N \N \N \N 95437 C.bainesii Corallocarpus Corallocarpus bainesii \N \N \N \N \N 95438 \N varietas Aechmea farinosa var. discolor \N \N \N \N \N 95439 H.sordidum Hylotelephium Hylotelephium sordidum \N \N \N \N \N 95440 A.berteroana Albizia Albizia berteroana \N \N \N \N \N 95441 P.chilensis Puya Puya chilensis \N \N \N \N \N 95442 \N subspecies Eriosyce curvispina subsp. curvispina \N \N \N \N \N 95443 S.ovata Schoutenia Schoutenia ovata \N \N \N \N \N 95444 S.kingii Swainsona Swainsona kingii \N \N \N \N \N 95445 \N genus Strobilanthes \N \N \N \N \N 95446 C.leptanthum Colchicum Colchicum leptanthum \N \N \N \N \N 95447 G.papschii Gymnocalycium Gymnocalycium papschii \N \N \N \N \N 95448 R.graciliflora Riedeliella Riedeliella graciliflora \N \N \N \N \N 95449 P.glabra Peixotoa Peixotoa glabra \N \N \N \N \N 95450 C.bucklandioides Chunia Chunia bucklandioides \N \N \N \N \N 95451 B.maderaspatensis Blepharis Blepharis maderaspatensis \N \N \N \N \N 95452 X.wrayi Xanthophyllum Xanthophyllum wrayi \N \N \N \N \N 95453 I.japonicus Isodon Isodon japonicus \N \N \N \N \N 95454 N.advena Nuphar Nuphar advena \N \N \N \N \N 95455 N.willeana Nolana Nolana willeana \N \N \N \N \N 95456 M.foetida Mangifera Mangifera foetida bachang \N \N \N \N 95457 I.cryptocaulis Ivesia Ivesia cryptocaulis \N \N \N \N \N 95458 C.fulgida Cylindropuntia Cylindropuntia fulgida boxing-glove cactus,brinkadora,jumping cholla \N \N \N \N 95459 S.nigra Suaeda Suaeda nigra Mojave sea-blite \N \N \N \N 95460 P.australis Phragmites Phragmites australis common reed \N \N \N \N 95461 \N subspecies Erodium foetidum subsp. foetidum \N \N \N \N \N 95462 L.macrantha Lachnaea Lachnaea macrantha \N \N \N \N \N 95463 V.hirtella Vigna Vigna hirtella \N \N \N \N \N 95464 S.trabeculatus Streptocarpus Streptocarpus trabeculatus \N \N \N \N \N 95465 D.matangensis Draba Draba matangensis \N \N \N \N \N 95466 Z.villosa Zaluzianskya Zaluzianskya villosa \N \N \N \N \N 95467 C.venezuelanum Cremastosperma Cremastosperma venezuelanum \N \N \N \N \N 95468 M.punctata Maxillaria Maxillaria punctata \N \N \N \N \N 95469 \N tribe Benincaseae \N \N \N \N \N 95470 C.trilabra Chiloglottis Chiloglottis trilabra \N \N \N \N \N 95471 A.retrofracta Adesmia Adesmia retrofracta \N \N \N \N \N 95472 M.quadrivalvis Mimosa Mimosa quadrivalvis \N \N \N \N \N 95473 G.strobilinum Gomphostemma Gomphostemma strobilinum \N \N \N \N \N 95474 O.pilifera Opuntia Opuntia pilifera \N \N \N \N \N 95475 M.stellaris Micranthes Micranthes stellaris \N \N \N \N \N 95476 \N genus Weigela \N \N \N \N \N 95477 L.microphyllum Leontopodium Leontopodium microphyllum \N \N \N \N \N 95478 A.lamprocarpus Astragalus Astragalus lamprocarpus \N \N \N \N \N 95479 T.unguicularis Tritoniopsis Tritoniopsis unguicularis \N \N \N \N \N 95480 A.nelsonii Albuca Albuca nelsonii \N \N \N \N \N 95481 M.nemorosum Melampyrum Melampyrum nemorosum \N \N \N \N \N 95482 \N genus Anisodontea \N \N \N \N \N 95483 C.icosagonus Cleistocactus Cleistocactus icosagonus \N \N \N \N \N 95484 S.violacea Suksdorfia Suksdorfia violacea \N \N \N \N \N 95485 O.schmidtianum Oncidium Oncidium schmidtianum \N \N \N \N \N 95486 D.tiliifolia Dalechampia Dalechampia tiliifolia \N \N \N \N \N 95487 \N genus Hiptage \N \N \N \N \N 95488 M.macrocarpus Marah Marah macrocarpus Cucamonga manroot \N \N \N \N 95489 L.dispar Leandra Leandra dispar \N \N \N \N \N 95490 S.grandis Streptocarpus Streptocarpus grandis \N \N \N \N \N 95491 Z.racemosa Zygia Zygia racemosa \N \N \N \N \N 95492 B.alpina Braya Braya alpina \N \N \N \N \N 95493 D.magnoliifolia Distictella Distictella magnoliifolia \N \N \N \N \N 95494 E.horridum Encholirium Encholirium horridum \N \N \N \N \N 95495 F.wenchuanense Fagopyrum Fagopyrum wenchuanense \N \N \N \N \N 95496 \N subspecies Polemonium pauciflorum subsp. melindae \N \N \N \N \N 95497 M.spartioides Monechma Monechma spartioides \N \N \N \N \N 95498 S.angustifolia Stenosemis Stenosemis angustifolia \N \N \N \N \N 95499 P.digitata Pilea Pilea digitata \N \N \N \N \N 95500 I.dosua Indigofera Indigofera dosua \N \N \N \N \N 95501 A.bracteolatum Adenocalymma Adenocalymma bracteolatum \N \N \N \N \N 95502 \N genus Hemsleya \N \N \N \N \N 95503 \N genus Angianthus \N \N \N \N \N 95504 V.triphyllum Viburnum Viburnum triphyllum \N \N \N \N \N 95505 D.fugax Dendrobium Dendrobium fugax \N \N \N \N \N 95506 A.palawanensis Amorphophallus Amorphophallus palawanensis \N \N \N \N \N 95507 C.mendocinensis Carex Carex mendocinensis \N \N \N \N \N 95508 P.magnicarpa Pilea Pilea magnicarpa \N \N \N \N \N 95509 \N genus Lomatocarpa \N \N \N \N \N 95510 C.ceanothifolius Croton Croton ceanothifolius \N \N \N \N \N 95511 E.longiramea Eremocharis Eremocharis longiramea \N \N \N \N \N 95512 R.puberula Rhaphidophora Rhaphidophora puberula \N \N \N \N \N 95513 M.brasiliensis Miconia Miconia brasiliensis \N \N \N \N \N 95514 \N genus Chrysochloa \N \N \N \N \N 95515 \N varietas Meineckia fruticans var. fruticans \N \N \N \N \N 95516 \N family Picramniaceae \N \N \N \N \N 95517 P.melaleucus Paepalanthus Paepalanthus melaleucus \N \N \N \N \N 95518 \N varietas Phyllostachys nigra var. henonis \N \N \N \N \N 95519 \N genus Ceriscoides \N \N \N \N \N 95520 N.dusenii Nassauvia Nassauvia dusenii \N \N \N \N \N 95521 \N genus Vellereophyton \N \N \N \N \N 95522 \N subspecies Sidalcea oregana subsp. oregana \N \N \N \N \N 95523 C.rumphii Coelogyne Coelogyne rumphii \N \N \N \N \N 95524 E.erythropappus Eremanthus Eremanthus erythropappus \N \N \N \N \N 95525 C.nebrodensis Carlina Carlina nebrodensis \N \N \N \N \N 95526 P.acanthacea Palicourea Palicourea acanthacea \N \N \N \N \N 95527 C.decurrens Cousinia Cousinia decurrens \N \N \N \N \N 95528 C.amamiohsimensis Cardiandra Cardiandra amamiohsimensis \N \N \N \N \N 95529 R.likiangense Rheum Rheum likiangense \N \N \N \N \N 95530 S.filiforme Syringodium Syringodium filiforme \N \N \N \N \N 95531 K.rubicunda Kennedia Kennedia rubicunda dusky coral-pea \N \N \N \N 95532 S.benthamiana Swartzia Swartzia benthamiana \N \N \N \N \N 95533 D.SH-2010 Diospyros Diospyros sp. SH-2010 \N \N \N \N \N 95534 S.vogeliana Senegalia Senegalia vogeliana \N \N \N \N \N 95535 E.micrantha Eucrypta Eucrypta micrantha \N \N \N \N \N 95536 M.dominarum Mimosa Mimosa dominarum \N \N \N \N \N 95537 \N genus Diclinanona \N \N \N \N \N 95538 C.pauciflorum Choretrum Choretrum pauciflorum \N \N \N \N \N 95539 C.indica Canna Canna indica Indian-shot,Queensland arrowroot,canna,edible canna,gruya \N \N \N \N 95540 E.involucrata Erica Erica involucrata \N \N \N \N \N 95541 M.viridivenia Matelea Matelea viridivenia \N \N \N \N \N 95542 \N genus Amphipterygium \N \N \N \N \N 95543 V.hardwickii Valeriana Valeriana hardwickii \N \N \N \N \N 95544 H.tsugaruense Hylotelephium Hylotelephium tsugaruense \N \N \N \N \N 95545 N.B Neonauclea Neonauclea sp. B \N \N \N \N \N 95546 \N subspecies Hippophae neurocarpa subsp. neurocarpa \N \N \N \N \N 95547 A.jungurudoensis Aechmea Aechmea jungurudoensis \N \N \N \N \N 95548 A.apennina Anemone Anemone apennina \N \N \N \N \N 95549 K.kauaiensis Kokia Kokia kauaiensis kaua'i koki'o \N \N \N \N 95550 M.rigidulum Macroclinidium Macroclinidium rigidulum \N \N \N \N \N 95551 S.sambucifolia Sorbus Sorbus sambucifolia \N \N \N \N \N 95552 H.pannosum Hieracium Hieracium pannosum \N \N \N \N \N 95553 C.scandens Clematoclethra Clematoclethra scandens \N \N \N \N \N 95554 S.simpsoniana Saussurea Saussurea simpsoniana \N \N \N \N \N 95555 R.hemsleyanum Rhododendron Rhododendron hemsleyanum \N \N \N \N \N 95556 A.ageratum Achillea Achillea ageratum \N \N \N \N \N 95557 A.abyssinica Alchemilla Alchemilla abyssinica \N \N \N \N \N 95558 P.bulbocodioides Pleione Pleione bulbocodioides \N \N \N \N \N 95559 D.multiflora Diplarche Diplarche multiflora \N \N \N \N \N 95560 Z.spinosum Zygophyllum Zygophyllum spinosum \N \N \N \N \N 95561 C.hypoglauca Cissus Cissus hypoglauca \N \N \N \N \N 95562 P.decurvatus Phyllobolus Phyllobolus decurvatus \N \N \N \N \N 95563 D.khoonmengii Dendrocalamus Dendrocalamus khoonmengii \N \N \N \N \N 95564 G.oppositifolia Gaultheria Gaultheria oppositifolia snowberry \N \N \N \N 95565 T.divergens Tofieldia Tofieldia divergens \N \N \N \N \N 95566 V.wrightii Viburnum Viburnum wrightii \N \N \N \N \N 95567 C.compactus Convolvulus Convolvulus compactus \N \N \N \N \N 95568 D.arborescens Dictyandra Dictyandra arborescens \N \N \N \N \N 95569 P.phelpsii Peripentadenia Peripentadenia phelpsii \N \N \N \N \N 95570 Z.myriacanthum Zanthoxylum Zanthoxylum myriacanthum \N \N \N \N \N 95571 A.hortorum Araujia Araujia hortorum \N \N \N \N \N 95572 \N genus Zygia \N \N \N \N \N 95573 P.hernandiifolia Peperomia Peperomia hernandiifolia \N \N \N \N \N 95574 S.densevestitum Solanum Solanum densevestitum \N \N \N \N \N 95575 I.leucoclada Ilex Ilex leucoclada \N \N \N \N \N 95576 A.oligantha Arrabidaea Arrabidaea oligantha \N \N \N \N \N 95577 C.s.n. Cryptocentrum Cryptocentrum sp. FLAS s.n. \N \N \N \N \N 95578 S.chanii Scaevola Scaevola chanii \N \N \N \N \N 95579 G.sinuata Gaura Gaura sinuata \N \N \N \N \N 95580 K.peduncularis Kunzea Kunzea peduncularis \N \N \N \N \N 95581 \N subfamily Carduoideae \N \N \N \N \N 95582 \N subspecies Tigridia alpestris subsp. obtusa \N \N \N \N \N 95583 D.angustifolia Drimys Drimys angustifolia \N \N \N \N \N 95584 P.oligospermus Phyllanthus Phyllanthus oligospermus \N \N \N \N \N 95585 C.saguntina Centaurea Centaurea saguntina \N \N \N \N \N 95586 B.paniculatum Bolbostemma Bolbostemma paniculatum \N \N \N \N \N 95587 S.foxworthyi Shorea Shorea foxworthyi \N \N \N \N \N 95588 G.tonduzii Gyminda Gyminda tonduzii \N \N \N \N \N 95589 \N subspecies Ulex australis subsp. welwichianus \N \N \N \N \N 95590 M.foliolosa Mimosa Mimosa foliolosa \N \N \N \N \N 95591 M.lymanii Miconia Miconia lymanii \N \N \N \N \N 95592 S.banksii Streblus Streblus banksii \N \N \N \N \N 95593 \N genus Rutidea \N \N \N \N \N 95594 M.155 Miscanthus Miscanthus sp. Phillips 155 \N \N \N \N \N 95595 S.fantsipanensis Schefflera Schefflera fantsipanensis \N \N \N \N \N 95596 P.viscosum Polemonium Polemonium viscosum \N \N \N \N \N 95597 M.'Vanuatu' Metrosideros Metrosideros sp. 'Vanuatu' \N \N \N \N \N 95598 R.taxifolium Rhododendron Rhododendron taxifolium \N \N \N \N \N 95599 \N subspecies Nicotiana rosulata subsp. ingulba \N \N \N \N \N 95600 P.laricoides Psyllocarpus Psyllocarpus laricoides \N \N \N \N \N 95601 S.humboldti Solanum Solanum humboldti \N \N \N \N \N 95602 M.coronatum Myriophyllum Myriophyllum coronatum \N \N \N \N \N 95603 S.loxophyllum Solanum Solanum loxophyllum \N \N \N \N \N 95604 A.gorgona Aristolochia Aristolochia gorgona \N \N \N \N \N 95605 \N varietas Myrceugenia alpigena var. longifolia \N \N \N \N \N 95606 \N genus Bonnetia \N \N \N \N \N 95607 O.vanuatuensis Oxera Oxera vanuatuensis \N \N \N \N \N 95608 C.singchii Cypripedium Cypripedium singchii \N \N \N \N \N 95609 G.nigellastrum Garidella Garidella nigellastrum \N \N \N \N \N 95610 \N no rank unclassified Beslerieae \N \N \N \N \N 95611 G.95096 Gelsemium Gelsemium sp. Qiu 95096 \N \N \N \N \N 95612 D.ulei Disterigma Disterigma ulei \N \N \N \N \N 95613 I.ochracea Ipomoea Ipomoea ochracea \N \N \N \N \N 95614 S.yungasense Solanum Solanum yungasense \N \N \N \N \N 95615 \N genus Chloanthes \N \N \N \N \N 95616 \N genus Girgensohnia \N \N \N \N \N 95617 G.multiflorum Gymnocalycium Gymnocalycium multiflorum \N \N \N \N \N 95618 C.crassinerva Conostylis Conostylis crassinerva \N \N \N \N \N 95619 A.chamelensis Acaciella Acaciella chamelensis \N \N \N \N \N 95620 N.sample environmental samples Taxonomy:438339 Naucleopsis environmental sample \N \N \N \N \N 95621 B.cheilantha Bauhinia Bauhinia cheilantha \N \N \N \N \N 95622 N.urentivelutina Nasa Nasa urentivelutina \N \N \N \N \N 95623 C.draconoides Croton Croton draconoides \N \N \N \N \N 95624 P.adhaerens Peponopsis Peponopsis adhaerens \N \N \N \N \N 95625 P.heterophylla Parthenocissus Parthenocissus heterophylla \N \N \N \N \N 95626 A.aflatunense Allium Allium aflatunense \N \N \N \N \N 95627 A.obanensis Allexis Allexis obanensis \N \N \N \N \N 95628 S.megistocaula Semaphyllanthe Semaphyllanthe megistocaula \N \N \N \N \N 95629 M.sepium Mascagnia Mascagnia sepium \N \N \N \N \N 95630 E.grandis Elaeocarpus Elaeocarpus grandis \N \N \N \N \N 95631 E.myrtifolium Exostema Exostema myrtifolium \N \N \N \N \N 95632 L.stenophyllus Leucocroton Leucocroton stenophyllus \N \N \N \N \N 95633 Q.shumardii Quercus Quercus shumardii Shumard oak,swamp red oak \N \N \N \N 95634 P.hirsuta Podalyria Podalyria hirsuta \N \N \N \N \N 95635 E.algida Erica Erica algida \N \N \N \N \N 95636 P.diaphora Poa Poa diaphora \N \N \N \N \N 95637 H.foliosa Habenaria Habenaria foliosa \N \N \N \N \N 95638 W.oblonga Wolffiella Wolffiella oblonga \N \N \N \N \N 95639 T.rugelii Trillium Trillium rugelii Southern nodding trillium \N \N \N \N 95640 D.magnistipulata Dalechampia Dalechampia magnistipulata \N \N \N \N \N 95641 \N genus Luronium \N \N \N \N \N 95642 S.thomsonii Selago Selago thomsonii \N \N \N \N \N 95643 V.chrysostachys Vriesea Vriesea chrysostachys \N \N \N \N \N 95644 T.tamatavensis Tinopsis Tinopsis tamatavensis \N \N \N \N \N 95645 E.purpureus Elleanthus Elleanthus purpureus \N \N \N \N \N 95646 L.tangutica Lonicera Lonicera tangutica \N \N \N \N \N 95647 D.rosei Datura Datura rosei \N \N \N \N \N 95648 P.supina Potentilla Potentilla supina \N \N \N \N \N 95649 O.laevigatum Origanum Origanum laevigatum \N \N \N \N \N 95650 D.acuminata Diplycosia Diplycosia acuminata \N \N \N \N \N 95651 P.villosa Polystachya Polystachya villosa \N \N \N \N \N 95652 \N subspecies Sarcostemma viminale subsp. suberosum \N \N \N \N \N 95653 F.DK-2010 x Festulolium Festuca x Lolium sp. DK-2010 \N \N \N \N \N 95654 P.nivalis Pentatropis Pentatropis nivalis \N \N \N \N \N 95655 F.madida Festuca Festuca madida \N \N \N \N \N 95656 R.brachylobus Ranunculus Ranunculus brachylobus \N \N \N \N \N 95657 \N varietas Eleocharis albibracteata var. nubigena \N \N \N \N \N 95658 N.SH-2010 Nicotiana Nicotiana sp. SH-2010 \N \N \N \N \N 95659 R.canus Ranunculus Ranunculus canus \N \N \N \N \N 95660 C.secta Carex Carex secta \N \N \N \N \N 95661 \N varietas Solanum pennellii var. puberulum \N \N \N \N \N 95662 B.harleyi Banisteriopsis Banisteriopsis harleyi \N \N \N \N \N 95663 \N subspecies Bikinia letestui subsp. letestui \N \N \N \N \N 95664 L.sonderiana Lobelia Lobelia sonderiana \N \N \N \N \N 106661 \N tribe Euphorbieae \N \N \N \N \N 95665 C.peregrina Carex Carex peregrina \N \N \N \N \N 95666 C.parviflora Claytonia Claytonia parviflora \N \N \N \N \N 95667 F.clypeata Fibigia Fibigia clypeata \N \N \N \N \N 95668 B.O00B437_1 Bulbophyllum Bulbophyllum sp. O00B437_1 \N \N \N \N \N 95669 \N genus Chaetanthera \N \N \N \N \N 95670 A.latifolia Annesorhiza Annesorhiza latifolia \N \N \N \N \N 95671 D.olen Diospyros Diospyros olen \N \N \N \N \N 95672 F.altissima Ficus Ficus altissima council-tree,false banyan,gao shan rong \N \N \N \N 95673 C.barteri Coccinia Coccinia barteri \N \N \N \N \N 95674 F.wislizeni Ferocactus Ferocactus wislizeni \N \N \N \N \N 95675 A.brevipes Aspicarpa Aspicarpa brevipes \N \N \N \N \N 95676 H.bousigonianum Hedychium Hedychium bousigonianum \N \N \N \N \N 95677 T.TL263-1 unclassified Taraxacum Taraxacum (sect. Naevosa) sp. TL263-1 \N \N \N \N \N 95678 \N subtribe Chysinae \N \N \N \N \N 95679 M.acutifolia Minthostachys Minthostachys acutifolia \N \N \N \N \N 95680 \N genus Asterostigma \N \N \N \N \N 95681 D.sodiroi Dracula Dracula sodiroi \N \N \N \N \N 95682 O.purpurea Orchis Orchis purpurea \N \N \N \N \N 95683 V.serpyllifolia Veronica Veronica serpyllifolia thyme-leaved speedwell \N \N \N \N 95684 D.lanceolata Dryobalanops Dryobalanops lanceolata \N \N \N \N \N 95685 G.giganteus Goniothalamus Goniothalamus giganteus \N \N \N \N \N 95686 B.schwannioides Banisteriopsis Banisteriopsis schwannioides \N \N \N \N \N 95687 U.microcarpa Uvaria Uvaria microcarpa \N \N \N \N \N 95688 D.assamica Dalbergia Dalbergia assamica \N \N \N \N \N 95689 A.02-72 Alangium Alangium sp. Xiang 02-72 \N \N \N \N \N 95690 A.lapeyrousii Alchemilla Alchemilla lapeyrousii \N \N \N \N \N 95691 T.oligandrus Trymatococcus Trymatococcus oligandrus \N \N \N \N \N 95692 M.lawrenceana Maxillaria Maxillaria lawrenceana \N \N \N \N \N 95693 T.spathiflorus Thamnocalamus Thamnocalamus spathiflorus \N \N \N \N \N 95694 \N tribe Danthonieae \N \N \N \N \N 95695 A.gracile Anthogonium Anthogonium gracile \N \N \N \N \N 95696 B.valdiviana Berberis Berberis valdiviana \N \N \N \N \N 95697 P.lemmonii Phalaris Phalaris lemmonii \N \N \N \N \N 95698 O.2454 Oncidium Oncidium sp. Whitten 2454 \N \N \N \N \N 95699 \N genus Kudoacanthus \N \N \N \N \N 95700 \N subspecies Descurainia pinnata subsp. intermedia \N \N \N \N \N 95701 A.prunifolia Aronia Aronia prunifolia purple chokeberry \N \N \N \N 95702 E.goatcheriana Erica Erica goatcheriana \N \N \N \N \N 95703 S.memecyloides Strychnos Strychnos memecyloides \N \N \N \N \N 95704 \N genus Corybas \N \N \N \N \N 95705 N.sativa Nigella Nigella sativa black-caraway,black-cumin \N \N \N \N 95706 \N genus Allosyncarpia \N \N \N \N \N 95707 P.trisepala Palaua Palaua trisepala \N \N \N \N \N 95708 M.inopinata Melicope Melicope inopinata \N \N \N \N \N 95709 S.krascheninnikovii Senecio Senecio krascheninnikovii \N \N \N \N \N 95710 T.lucida Tagetes Tagetes lucida \N \N \N \N \N 95711 P.gentryi Polyscias Polyscias gentryi \N \N \N \N \N 95712 S.fauriei Schizophragma Schizophragma fauriei \N \N \N \N \N 95713 D.alpestre Delphinium Delphinium alpestre \N \N \N \N \N 95714 \N genus Burckella \N \N \N \N \N 95715 C.brasiliense Caryocar Caryocar brasiliense \N \N \N \N \N 95716 \N varietas Carex scopulorum var. scopulorum \N \N \N \N \N 95717 M.nervulosa Metrosideros Metrosideros nervulosa \N \N \N \N \N 95718 S.alaxensis Salix Salix alaxensis felt-leaf willow \N \N \N \N 95719 E.anguliger Erica Erica anguliger \N \N \N \N \N 95720 N.aragoana Nervilia Nervilia aragoana \N \N \N \N \N 95721 \N genus Archirhodomyrtus \N \N \N \N \N 95722 G.sessilis Guatteria Guatteria sessilis \N \N \N \N \N 95723 I.ingoides Inga Inga ingoides \N \N \N \N \N 95724 \N genus Macrostelia \N \N \N \N \N 95725 T.sedifolium Thesium Thesium sedifolium \N \N \N \N \N 95726 D.BGB-2009 Dalechampia Dalechampia aff. chlorocephala BGB-2009 \N \N \N \N \N 95727 B.martiana Brassavola Brassavola martiana \N \N \N \N \N 95728 B.FS798 Bulbophyllum Bulbophyllum aff. sphaerobulbum FS798 \N \N \N \N \N 95729 B.albiflora Beschorneria Beschorneria albiflora \N \N \N \N \N 95730 H.SH-2010 Holothrix Holothrix sp. SH-2010 \N \N \N \N \N 95731 \N genus Nabalus \N \N \N \N \N 95732 \N genus Nematostylis \N \N \N \N \N 95733 T.leiocarpa Tephrosia Tephrosia leiocarpa \N \N \N \N \N 95734 B.tomentosa Banara Banara tomentosa \N \N \N \N \N 95735 S.globosa Saussurea Saussurea globosa \N \N \N \N \N 95736 T.stipularis Tepualia Tepualia stipularis \N \N \N \N \N 95737 \N genus Dewevrea \N \N \N \N \N 95738 E.echinochloidea Eragrostis Eragrostis echinochloidea \N \N \N \N \N 95739 R.cyanea Ruellia Ruellia cyanea \N \N \N \N \N 95740 Q.sadleriana Quercus Quercus sadleriana \N \N \N \N \N 95741 P.corymbosa Polyxena Polyxena corymbosa \N \N \N \N \N 95742 E.oblongifolium Eustigma Eustigma oblongifolium \N \N \N \N \N 95743 C.coronarium Chrysanthemum Chrysanthemum coronarium crown daisy \N \N \N \N 95744 A.inopinata Alocasia Alocasia sp. inopinata \N \N \N \N \N 95745 C.glabellus Croton Croton glabellus \N \N \N \N \N 95746 C.paniculosa Caldcluvia Caldcluvia paniculosa \N \N \N \N \N 95747 B.hookeriana Bunchosia Bunchosia hookeriana \N \N \N \N \N 95748 \N varietas Mimosa aurivillus var. calothamnos \N \N \N \N \N 95749 \N genus Hoslundia \N \N \N \N \N 95750 \N genus Ornithochilus \N \N \N \N \N 95751 \N genus Corchoropsis \N \N \N \N \N 95752 \N subspecies Calceolaria pedunculata subsp. pedunculata \N \N \N \N \N 95753 D.nemorosa Draba Draba nemorosa \N \N \N \N \N 95754 H.burchellii Hoffmannseggia Hoffmannseggia burchellii \N \N \N \N \N 95755 \N genus Indorouchera \N \N \N \N \N 95756 H.trifoliata Hoffmannseggia Hoffmannseggia erecta x Hoffmannseggia trifoliata \N \N \N \N \N 95757 M.mexicana Malpighia Malpighia mexicana \N \N \N \N \N 95758 M.tuberculata Miconia Miconia tuberculata \N \N \N \N \N 95759 T.mexicana Tapirira Tapirira mexicana \N \N \N \N \N 95760 L.uniflora Leavenworthia Leavenworthia uniflora \N \N \N \N \N 95761 P.wiseana Psammagrostis Psammagrostis wiseana \N \N \N \N \N 95762 C.canum Calophyllum Calophyllum canum \N \N \N \N \N 95763 I.sarana Inula Inula sarana \N \N \N \N \N 95764 P.hookeri Polygonatum Polygonatum hookeri \N \N \N \N \N 95765 A.ludens Arenaria Arenaria ludens \N \N \N \N \N 95766 F.anomala Flaveria Flaveria anomala \N \N \N \N \N 95767 V.fruticans Veronica Veronica fruticans \N \N \N \N \N 95768 B.cyclostigmata Burmeistera Burmeistera cyclostigmata \N \N \N \N \N 95769 C.persica Conringia Conringia persica \N \N \N \N \N 95770 T.minus Tropaeolum Tropaeolum minus \N \N \N \N \N 95771 \N genus Lagascea \N \N \N \N \N 95772 S.orbicularis Struthanthus Struthanthus orbicularis \N \N \N \N \N 95773 Q.chapmanii Quercus Quercus chapmanii \N \N \N \N \N 95774 \N subspecies Argyranthemum frutescens subsp. succulentum \N \N \N \N \N 95775 S.spathulatus Samolus Samolus spathulatus \N \N \N \N \N 95776 I.koreana Indigofera Indigofera koreana \N \N \N \N \N 95777 \N no rank environmental samples Taxonomy:205863 \N \N \N \N \N 95778 P.fasciculata Primula Primula fasciculata \N \N \N \N \N 95779 S.australis Salsola Salsola australis \N \N \N \N \N 95780 A.longeracemosa Akebia Akebia longeracemosa \N \N \N \N \N 95781 T.aucheriana Tamarix Tamarix aucheriana \N \N \N \N \N 95782 H.stenosiphon Harveya Harveya stenosiphon \N \N \N \N \N 95783 N.tapianus Nelsonianthus Nelsonianthus tapianus \N \N \N \N \N 95784 M.aleuritoides Macaranga Macaranga aleuritoides \N \N \N \N \N 95785 \N varietas Rosa chinensis var. semperflorens \N \N \N \N \N 95786 M.leptostachya Monnina Monnina leptostachya \N \N \N \N \N 95787 A.sphaeromorpha Atriplex Atriplex sphaeromorpha \N \N \N \N \N 95788 \N no rank Lilium hybrid division I \N \N \N \N \N 95789 T.1548 Trachymene Trachymene sp. 1548 \N \N \N \N \N 95790 C.appendiculata Cuscuta Cuscuta appendiculata \N \N \N \N \N 95791 P.rupestris Primula Primula rupestris \N \N \N \N \N 95792 M.tricolor Macrosolen Macrosolen tricolor \N \N \N \N \N 95793 I.sessilfolia Indigofera Indigofera sessilfolia \N \N \N \N \N 95794 F.montana Flacourtia Flacourtia montana \N \N \N \N \N 95795 L.hyssopifolium Lepidium Lepidium hyssopifolium \N \N \N \N \N 95796 A.surinamensis Andira Andira surinamensis \N \N \N \N \N 95797 P.teucrioides Penstemon Penstemon teucrioides \N \N \N \N \N 95798 H.arizonica Hexalectris Hexalectris arizonica \N \N \N \N \N 95799 C.elegans Calyptrocalyx Calyptrocalyx elegans \N \N \N \N \N 95800 M.mauritianum Myoporum Myoporum mauritianum \N \N \N \N \N 95801 E.inconspicua Echidnopsis Echidnopsis inconspicua \N \N \N \N \N 95802 M.rupestris Maxillaria Maxillaria rupestris \N \N \N \N \N 95803 \N genus Myrtastrum \N \N \N \N \N 95804 N.7604 Napeanthus Napeanthus sp. Clark 7604 \N \N \N \N \N 95805 O.sessilifolia Ourisia Ourisia sessilifolia \N \N \N \N \N 95806 D.intermedia Drosera Drosera intermedia \N \N \N \N \N 95807 S.schugnanica Swertia Swertia schugnanica \N \N \N \N \N 95808 N.africana Noltea Noltea africana \N \N \N \N \N 95809 C.trifoliata Citrus Citrus maxima x Citrus trifoliata \N \N \N \N \N 95810 S.chinensis Sambucus Sambucus chinensis \N \N \N \N \N 95811 C.fauriei Cheirodendron Cheirodendron fauriei \N \N \N \N \N 95812 M.racemosum Maianthemum Maianthemum racemosum \N \N \N \N \N 95813 G.rupicola Gentianella Gentianella rupicola \N \N \N \N \N 95814 S.decurrens Swainsona Swainsona decurrens \N \N \N \N \N 95815 D.oleifera Dipteryx Dipteryx oleifera \N \N \N \N \N 95816 \N genus Chamaebatiaria \N \N \N \N \N 95817 P.ensifolia Polyxena Polyxena ensifolia \N \N \N \N \N 95818 D.aqueum Dendrobium Dendrobium aqueum \N \N \N \N \N 95819 C.07nia910 Coccinia Coccinia sp. 07nia910 \N \N \N \N \N 95820 G.carinatus Gasteranthus Gasteranthus carinatus \N \N \N \N \N 95821 E.teucszii Exochaenium Exochaenium teucszii \N \N \N \N \N 95822 T.youngiana Triunia Triunia youngiana \N \N \N \N \N 95823 D.lancifolius Darwiniothamnus Darwiniothamnus lancifolius \N \N \N \N \N 95824 I.sinica Indosasa Indosasa sinica \N \N \N \N \N 95825 R.amazonicum Recordoxylon Recordoxylon amazonicum \N \N \N \N \N 95826 A.shockleyi Acamptopappus Acamptopappus shockleyi \N \N \N \N \N 95827 R.begoniifolius Raphiocarpus Raphiocarpus begoniifolius \N \N \N \N \N 95828 \N family Cabombaceae water-shield family \N \N \N \N 95829 L.echioides Limonium Limonium echioides \N \N \N \N \N 95830 T.retusum Trifolium Trifolium retusum \N \N \N \N \N 95831 \N varietas Elymus ciliaris var. hackelianus \N \N \N \N \N 95832 P.domingensis Priamosia Priamosia domingensis \N \N \N \N \N 95833 L.stipitatum Leucochrysum Leucochrysum stipitatum \N \N \N \N \N 95834 C.sulcata Cordia Cordia sulcata \N \N \N \N \N 95835 B.chapulhuacania Bauhinia Bauhinia chapulhuacania \N \N \N \N \N 95836 H.leptoclada Halosarcia Halosarcia leptoclada \N \N \N \N \N 95837 C.pilcomayensis Cenchrus Cenchrus pilcomayensis \N \N \N \N \N 95838 R.83-203 Riedelia Riedelia aff. wrayii SBG 83-203 \N \N \N \N \N 95839 \N genus Catostemma \N \N \N \N \N 95840 M.paniculatum Maianthemum Maianthemum paniculatum \N \N \N \N \N 95841 \N varietas Chione venosa var. venosa \N \N \N \N \N 95842 S.baileyi Sedum Sedum baileyi \N \N \N \N \N 95843 S.mauroana Sinningia Sinningia mauroana \N \N \N \N \N 95844 \N genus Campanumoea \N \N \N \N \N 95845 C.davidii Calanthe Calanthe davidii \N \N \N \N \N 95846 M.scabra Mandevilla Mandevilla scabra \N \N \N \N \N 95847 \N subspecies Euphorbia officinarum subsp. echinus \N \N \N \N \N 95848 G.379 Gomphichis Gomphichis sp. Trujillo 379 \N \N \N \N \N 95849 \N genus Strychnos \N \N \N \N \N 95850 \N genus Aspidostemon \N \N \N \N \N 95851 A.capitata Audouinia Audouinia capitata \N \N \N \N \N 95852 E.parilis Erica Erica parilis \N \N \N \N \N 95853 \N subspecies Halimium halimifolium subsp. halimifolium \N \N \N \N \N 95854 A.obtusissima Agonis Agonis obtusissima \N \N \N \N \N 95855 \N genus Rothmannia \N \N \N \N \N 95856 F.2267 Ferdinandusa Ferdinandusa sp. Alves 2267 \N \N \N \N \N 95857 N.vanderguchtii Neonauclea Neonauclea vanderguchtii \N \N \N \N \N 108122 \N genus Gesneria \N \N \N \N \N 95858 M.sphaerocarpus Mallotus Mallotus sphaerocarpus \N \N \N \N \N 95859 A.glandulosum Aeonium Aeonium glandulosum \N \N \N \N \N 95860 S.sessiliflorum Sideroxylon Sideroxylon sessiliflorum \N \N \N \N \N 95861 \N genus Pterichis \N \N \N \N \N 95862 \N genus Pterygiella \N \N \N \N \N 95863 F.compacta Fimbristylis Fimbristylis compacta \N \N \N \N \N 95864 A.dregei Arctopus Arctopus dregei \N \N \N \N \N 95865 C.02-80 Cistanthe Cistanthe sp. Hershkovitz 02-80 \N \N \N \N \N 95866 C.purpurata Cuscuta Cuscuta purpurata \N \N \N \N \N 95867 P.5054 Physeterostemon Physeterostemon sp. Amorim 5054 \N \N \N \N \N 95868 C.amplissima Chelonistele Chelonistele amplissima \N \N \N \N \N 95869 T.301h unclassified Taraxacum Taraxacum sp. 301h \N \N \N \N \N 95870 M.vittata Mitrephora Mitrephora vittata \N \N \N \N \N 95871 B.aciculifera Bikinia Bikinia aciculifera \N \N \N \N \N 95872 D.denudata Deverra Deverra denudata \N \N \N \N \N 95873 \N genus Pleiogynium \N \N \N \N \N 95874 \N genus Cyanicula \N \N \N \N \N 95875 L.viridiflava Leandra Leandra viridiflava \N \N \N \N \N 95876 D.dampieri Diplolaena Diplolaena dampieri \N \N \N \N \N 95877 S.mauritianum Solanum Solanum mauritianum \N \N \N \N \N 95878 T.rhynchocarpum Thalictrum Thalictrum rhynchocarpum \N \N \N \N \N 95879 \N genus Schouwia \N \N \N \N \N 95880 L.tomentosa Licania Licania tomentosa oiti \N \N \N \N 95881 M.fasciculata Miconia Miconia fasciculata \N \N \N \N \N 95882 G.mangostana Garcinia Garcinia mangostana mangosteen \N \N \N \N 95883 P.04 Psychotria Psychotria aff. ectasiphylla PYR 04 \N \N \N \N \N 95884 M.hainanense Myxopyrum Myxopyrum hainanense \N \N \N \N \N 95885 S.subulata Schefflera Schefflera subulata \N \N \N \N \N 95886 M.gyrata Microcharis Microcharis gyrata \N \N \N \N \N 95887 L.unifoliolatus Lotus Lotus unifoliolatus deervetch \N \N \N \N 95888 P.immutatum Piper Piper immutatum \N \N \N \N \N 95889 R.hayi Rhaphidophora Rhaphidophora hayi \N \N \N \N \N 95890 A.fornicatus Acianthus Acianthus fornicatus \N \N \N \N \N 95891 S.oligocephala Strobilanthes Strobilanthes oligocephala \N \N \N \N \N 95892 \N genus Tamilnadia \N \N \N \N \N 95893 \N tribe Alyxieae \N \N \N \N \N 95894 E.deanei Eucalyptus Eucalyptus deanei brown gum,mountain blue gum \N \N \N \N 95895 O.etesiogaripense Ornithogalum Ornithogalum etesiogaripense \N \N \N \N \N 95896 C.H1_2 Castilleja Castilleja sp. H1_2 \N \N \N \N \N 95897 F.benjamina Ficus Ficus benjamina Java fig,benjamin-tree \N \N \N \N 95898 P.tetragona Prenia Prenia tetragona \N \N \N \N \N 95899 R.77954 Remusatia Remusatia sp. Croat & Dzu 77954 \N \N \N \N \N 95900 \N no rank Saccharum hybrid cultivar N11 \N \N \N \N \N 95901 \N genus Apollonias \N \N \N \N \N 95902 S.fruticosus Smallanthus Smallanthus fruticosus \N \N \N \N \N 95903 P.canbyi Paxistima Paxistima canbyi mountain-jade \N \N \N \N 95904 C.kotschyi Colchicum Colchicum kotschyi \N \N \N \N \N 95905 A.parvum Allium Allium parvum \N \N \N \N \N 95906 \N genus Oresitrophe \N \N \N \N \N 95907 A.validus Adenothamnus Adenothamnus validus \N \N \N \N \N 95908 L.caraganae Lespedeza Lespedeza caraganae \N \N \N \N \N 95909 \N genus Galbulimima \N \N \N \N \N 95910 V.laxiflora Valeriana Valeriana laxiflora \N \N \N \N \N 95911 P.steinbergii Pulicaria Pulicaria steinbergii \N \N \N \N \N 95912 A.argillicola Austrobryonia Austrobryonia argillicola \N \N \N \N \N 95913 C.haematoxylon Corymbia Corymbia haematoxylon \N \N \N \N \N 95914 L.pyranthus Lotus Lotus pyranthus \N \N \N \N \N 95915 \N genus Larryleachia \N \N \N \N \N 95916 T.flexuosum Thelypodium Thelypodium flexuosum \N \N \N \N \N 95917 T.putorioides Thymelaea Thymelaea putorioides \N \N \N \N \N 95918 C.25204 Chaetanthera Chaetanthera sp. Arroyo 25204 \N \N \N \N \N 95919 M.rostrata Myrcia Myrcia rostrata \N \N \N \N \N 95920 \N subspecies Crinum natans subsp. natans \N \N \N \N \N 95921 \N genus Dipterocarpus \N \N \N \N \N 95922 \N subspecies Ipomopsis longiflora subsp. neomexicana \N \N \N \N \N 95923 H.monogynum Helichrysum Helichrysum monogynum \N \N \N \N \N 95924 P.impolita Piptospatha Piptospatha impolita \N \N \N \N \N 95925 M.montana Mentzelia Mentzelia montana \N \N \N \N \N 95926 C.wilsoni Cymbidium Cymbidium wilsoni \N \N \N \N \N 95927 G.pritzelii Gladiolus Gladiolus pritzelii \N \N \N \N \N 95928 S.palustre Solanum Solanum palustre \N \N \N \N \N 95929 \N subspecies Fragaria chiloensis subsp. lucida \N \N \N \N \N 95930 P.argyrocoma Paronychia Paronychia argyrocoma \N \N \N \N \N 95931 C.asteranthum Colchicum Colchicum asteranthum \N \N \N \N \N 95932 B.rhapontica Berkheya Berkheya rhapontica \N \N \N \N \N 95933 P.magnum Pterygodium Pterygodium magnum \N \N \N \N \N 95934 B.trabutii Borago Borago trabutii \N \N \N \N \N 95935 P.pallens Pseudomuscari Pseudomuscari pallens \N \N \N \N \N 95936 \N genus Cycnogeton \N \N \N \N \N 95937 \N subspecies Caltha leptosepala subsp. howellii \N \N \N \N \N 95938 F.garcini Fortuynia Fortuynia garcini \N \N \N \N \N 95939 H.riparia Hubertia Hubertia riparia \N \N \N \N \N 95940 I.parvifolium Iochroma Iochroma parvifolium \N \N \N \N \N 95941 \N varietas Ficus deltoidea var. bilobata \N \N \N \N \N 95942 \N tribe Tordylieae \N \N \N \N \N 95943 A.blackii Austrostipa Austrostipa blackii \N \N \N \N \N 95944 M.quadricornis Martretia Martretia quadricornis \N \N \N \N \N 95945 \N subspecies Pomaderris prunifolia subsp. edgerleyi \N \N \N \N \N 95946 R.aucheri Rhabdosciadium Rhabdosciadium aucheri \N \N \N \N \N 95947 C.wildii Commiphora Commiphora wildii \N \N \N \N \N 95948 \N no rank Saccharum hybrid cultivar R48 \N \N \N \N \N 95949 P.mexicana Prochnyanthes Prochnyanthes mexicana \N \N \N \N \N 95950 H.malacophylla Habenaria Habenaria malacophylla \N \N \N \N \N 95951 L.muscoides Lysipomia Lysipomia muscoides \N \N \N \N \N 95952 C.hawaiiensis Clermontia Clermontia hawaiiensis \N \N \N \N \N 95953 C.DS14513_JM1599 Calliandra Calliandra sp. DS14513_JM1599 \N \N \N \N \N 95954 R.tuberculatus Ricinocarpos Ricinocarpos tuberculatus \N \N \N \N \N 95955 H.microsepalum Hypericum Hypericum microsepalum \N \N \N \N \N 95956 C.Cnj-1 Calamagrostis Calamagrostis sp. Cnj-1 \N \N \N \N \N 95957 S.milleri Stipa Stipa milleri \N \N \N \N \N 95958 N.elliptica Nematolepis Nematolepis elliptica \N \N \N \N \N 95959 S.myuros Sacciolepis Sacciolepis myuros \N \N \N \N \N 95960 P.quinquefolia Parthenocissus Parthenocissus quinquefolia Virginia-creeper,woodbine \N \N \N \N 95961 \N genus Dicoryphe \N \N \N \N \N 95962 H.monospermum Haloragodendron Haloragodendron monospermum \N \N \N \N \N 95963 C.sieberi Centranthus Centranthus sieberi \N \N \N \N \N 95964 L.henricii Lampranthus Lampranthus henricii \N \N \N \N \N 95965 C.figlalii Colchicum Colchicum figlalii \N \N \N \N \N 95966 C.SH-2010 Clerodendrum Clerodendrum sp. SH-2010 \N \N \N \N \N 95967 R.paludosa Rapatea Rapatea paludosa \N \N \N \N \N 95968 S.imraei Stelis Stelis imraei \N \N \N \N \N 95969 B.parviflora Bruguiera Bruguiera parviflora \N \N \N \N \N 95970 A.servitensis Aechmea Aechmea servitensis \N \N \N \N \N 95971 \N genus Anisantha \N \N \N \N \N 95972 \N genus Faroa \N \N \N \N \N 95973 C.coronata Caiophora Caiophora coronata \N \N \N \N \N 95974 \N subspecies Chionochloa flavescens subsp. hirta \N \N \N \N \N 95975 G.acehensis Globba Globba acehensis \N \N \N \N \N 95976 E.macrocarpa Eremospatha Eremospatha macrocarpa \N \N \N \N \N 95977 S.hamiltoniana Strobilanthes Strobilanthes hamiltoniana \N \N \N \N \N 95978 Q.macrophylla Quiina Quiina macrophylla \N \N \N \N \N 95979 A.calamagrostis Achnatherum Achnatherum calamagrostis \N \N \N \N \N 95980 C.americana Corylus Corylus americana American hazelnut \N \N \N \N 95981 M.lutheri Maxillaria Maxillaria lutheri \N \N \N \N \N 95982 C.H5_43 Castilleja Castilleja sp. H5_43 \N \N \N \N \N 95983 E.microcephalum Eriocaulon Eriocaulon microcephalum \N \N \N \N \N 95984 \N subspecies Rondeletia pachyphylla subsp. pachyphylla \N \N \N \N \N 95985 P.inclinata Pseudosenefeldera Pseudosenefeldera inclinata \N \N \N \N \N 95986 C.1719 Cischweinfia Cischweinfia sp. Whitten 1719 \N \N \N \N \N 95987 C.canadensis Cercis Cercis canadensis \N \N \N \N \N 95988 S.uliginosum Sisyrinchium Sisyrinchium uliginosum \N \N \N \N \N 95989 A.aculeatum Amomum Amomum aculeatum \N \N \N \N \N 95990 A.prieuriana Ammannia Ammannia prieuriana \N \N \N \N \N 95991 P.notoginseng Panax Panax notoginseng san-qi,sanchi ginseng,tienchi \N \N \N \N 95992 D.1103 Danais Danais sp. Davis 1103 \N \N \N \N \N 95993 O.amazonica Ormosia Ormosia amazonica \N \N \N \N \N 95994 P.pleiopetala Parakeelya Parakeelya pleiopetala \N \N \N \N \N 95995 P.serotina Prunus Prunus serotina black cherry \N \N \N \N 95996 I.vorobievii Iris Iris vorobievii \N \N \N \N \N 95997 M.junakii Malacothrix Malacothrix junakii \N \N \N \N \N 95998 M.laxum Monotagma Monotagma laxum \N \N \N \N \N 95999 P.micranthum Panicum Panicum micranthum \N \N \N \N \N 96000 E.ceratophorus Echinops Echinops ceratophorus \N \N \N \N \N 96001 A.bassii Ambrosina Ambrosina bassii \N \N \N \N \N 96002 I.simulans Ipomoea Ipomoea simulans \N \N \N \N \N 96003 B.complanata Baumea Baumea complanata \N \N \N \N \N 96004 A.hondurense Arceuthobium Arceuthobium hondurense \N \N \N \N \N 96005 \N subspecies Crataegus sinaica subsp. sinaica \N \N \N \N \N 96006 H.nigricaulis Hibiscus Hibiscus nigricaulis \N \N \N \N \N 96007 R.megacephala Regelia Regelia megacephala \N \N \N \N \N 96008 P.leucophyllum Pelargonium Pelargonium leucophyllum \N \N \N \N \N 96009 P.ovalifolia Prostanthera Prostanthera ovalifolia \N \N \N \N \N 96010 H.kerrii Hoya Hoya kerrii \N \N \N \N \N 96011 C.persicum Colchicum Colchicum persicum \N \N \N \N \N 96012 P.areolata Pterostylis Pterostylis areolata \N \N \N \N \N 96013 \N genus Verhuellia \N \N \N \N \N 96014 K.insignis Kniphofia Kniphofia insignis \N \N \N \N \N 96015 P.liaotungense Polygonum Polygonum liaotungense \N \N \N \N \N 96016 E.arenarioides Erigeron Erigeron arenarioides \N \N \N \N \N 96017 P.elegans Ptychosperma Ptychosperma elegans \N \N \N \N \N 96018 B.pendula Beilschmiedia Beilschmiedia pendula \N \N \N \N \N 96019 P.longipes Psychotria Psychotria longipes \N \N \N \N \N 96020 \N genus Jasione \N \N \N \N \N 96021 N.fruticans Nemesia Nemesia fruticans \N \N \N \N \N 96022 \N genus Stefanoffia \N \N \N \N \N 96023 \N genus Heteropholis \N \N \N \N \N 96024 R.princeps Roystonea Roystonea princeps \N \N \N \N \N 96025 A.polyanthus Actinocephalus Actinocephalus polyanthus \N \N \N \N \N 96026 S.comptum Satyrium Satyrium comptum \N \N \N \N \N 96027 M.ruiziana Maranta Maranta ruiziana \N \N \N \N \N 96028 C.phaeocephala Carex Carex phaeocephala \N \N \N \N \N 96029 A.caespitosa Artemisia Artemisia caespitosa \N \N \N \N \N 96030 U.argenteus Ulex Ulex argenteus \N \N \N \N \N 96031 \N genus Dyckia \N \N \N \N \N 96032 P.elongatum Pharnaceum Pharnaceum elongatum \N \N \N \N \N 96033 H.purpurea Houstonia Houstonia purpurea Venus' pride \N \N \N \N 96034 D.biternatum Delphinium Delphinium biternatum \N \N \N \N \N 96035 L.xylocarpus Lithocarpus Lithocarpus xylocarpus \N \N \N \N \N 96036 T.ruber Tragopogon Tragopogon ruber \N \N \N \N \N 96037 S.ABPT Solanum Solanum sp. ABPT \N \N \N \N \N 96038 E.pseudebenus Euclea Euclea pseudebenus \N \N \N \N \N 96039 T.odonellii Tarasa Tarasa odonellii \N \N \N \N \N 96040 H.pectinata Heliophila Heliophila pectinata \N \N \N \N \N 96041 \N genus Harleyodendron \N \N \N \N \N 96042 \N genus Nardophyllum \N \N \N \N \N 96043 A.erythrocarpus Allenanthus Allenanthus erythrocarpus \N \N \N \N \N 96044 P.hirsuta Photinia Photinia hirsuta \N \N \N \N \N 96045 G.marginata Goniorrhachis Goniorrhachis marginata \N \N \N \N \N 96046 S.JS-2005 Schima Schima sp. JS-2005 \N \N \N \N \N 96047 L.linifolium Leucadendron Leucadendron linifolium \N \N \N \N \N 96048 \N genus Chelonopsis \N \N \N \N \N 96049 N.ternstroemiacea Neocouma Neocouma ternstroemiacea \N \N \N \N \N 96050 P.rojasiana Prosopis Prosopis rojasiana \N \N \N \N \N 96051 C.astroites Croton Croton astroites \N \N \N \N \N 96052 \N subspecies Ribes oxyacanthoides subsp. cognatum stream currant \N \N \N \N 96053 H.dongolensis Hibiscus Hibiscus dongolensis \N \N \N \N \N 96054 P.malaianus Potamogeton Potamogeton malaianus \N \N \N \N \N 96055 K.schrenkianum Kalidium Kalidium schrenkianum \N \N \N \N \N 96056 A.monanthum Aconitum Aconitum monanthum \N \N \N \N \N 96057 C.unalaschcensis Castilleja Castilleja unalaschcensis \N \N \N \N \N 96058 M.sinaloensis Mimosa Mimosa sinaloensis \N \N \N \N \N 96059 B.dioica Begonia Begonia dioica \N \N \N \N \N 96060 \N subspecies Hieracium piloselloides subsp. obscurum \N \N \N \N \N 96061 \N genus Barberetta \N \N \N \N \N 96062 A.aromatica Ageratina Ageratina aromatica \N \N \N \N \N 96063 V.gigantea Vriesea Vriesea gigantea \N \N \N \N \N 96064 \N genus Stachytarpheta \N \N \N \N \N 96065 M.biondii Magnolia Magnolia biondii \N \N \N \N \N 96066 E.texana Eysenhardtia Eysenhardtia texana Texas kidneywood \N \N \N \N 96067 \N genus Enchylaena \N \N \N \N \N 96068 B.helleri Billieturnera Billieturnera helleri \N \N \N \N \N 96069 D.tripetaloides Disperis Disperis tripetaloides \N \N \N \N \N 96070 O.vallicola Orobanche Orobanche vallicola \N \N \N \N \N 96071 C.californica Cuscuta Cuscuta californica \N \N \N \N \N 96072 L.orientalis Lens Lens orientalis ye bing dou \N \N \N \N 96073 \N genus Hedinia \N \N \N \N \N 96074 \N subspecies Dactylorhiza maculata subsp. elodes \N \N \N \N \N 96075 V.kusanoana Viola Viola kusanoana \N \N \N \N \N 96076 \N genus Malope \N \N \N \N \N 96077 M.palmirensis Muhlenbergia Muhlenbergia palmirensis \N \N \N \N \N 96078 L.intermedia Luculia Luculia intermedia \N \N \N \N \N 96079 G.littoralis Gavilea Gavilea littoralis \N \N \N \N \N 96080 B.alamosana Brongniartia Brongniartia alamosana \N \N \N \N \N 96081 T.CH_M7Sdcum Triticum Triticum sp. CH_M7Sdcum \N \N \N \N \N 96082 K.hirsuta Kohleria Kohleria hirsuta \N \N \N \N \N 96083 A.stenodactyla Adenia Adenia stenodactyla \N \N \N \N \N 96084 C.KEJ-2009 Crepis Crepis sp. KEJ-2009 \N \N \N \N \N 96085 \N genus Lechenaultia \N \N \N \N \N 96086 C.oahuense Chenopodium Chenopodium oahuense \N \N \N \N \N 96087 A.lagocephala Artemisia Artemisia lagocephala \N \N \N \N \N 96088 A.heyneana Anisomeles Anisomeles heyneana \N \N \N \N \N 96089 B.hypogea Babiana Babiana hypogea \N \N \N \N \N 96090 I.manteroana Impatiens Impatiens manteroana \N \N \N \N \N 96091 L.filicifolia Loasa Loasa filicifolia \N \N \N \N \N 96092 M.phaeocarpa Malacothrix Malacothrix phaeocarpa \N \N \N \N \N 96093 O.millefolia Oenanthe Oenanthe millefolia \N \N \N \N \N 96094 S.sclerophylla Salix Salix sclerophylla \N \N \N \N \N 96095 S.nephrophylla Stachys Stachys nephrophylla \N \N \N \N \N 96096 S.noctiflora Silene Silene noctiflora night-flowering catchfly,sticky cockle \N \N \N \N 96097 K.bryophyllum Kalanchoe Kalanchoe bryophyllum \N \N \N \N \N 96098 \N genus Leroya \N \N \N \N \N 96099 L.lacera Lichtensteinia Lichtensteinia lacera \N \N \N \N \N 96100 R.acerosa Richea Richea acerosa \N \N \N \N \N 96101 H.hawaiiana Halophila Halophila hawaiiana \N \N \N \N \N 96102 X.bahamensis Xylosma Xylosma bahamensis \N \N \N \N \N 96103 D.megazyga Dodonaea Dodonaea megazyga \N \N \N \N \N 96104 \N varietas Ziziphus obtusifolia var. canescens \N \N \N \N \N 96105 N.arbor-tristis Nyctanthes Nyctanthes arbor-tristis night jasmine,tree of sadness \N \N \N \N 96106 \N varietas Glandularia gooddingii var. nepetifolia \N \N \N \N \N 96107 P.amblysepalus Phaseolus Phaseolus amblysepalus \N \N \N \N \N 96108 S.scrophularioides Stenogyne Stenogyne scrophularioides \N \N \N \N \N 96109 P.bretschneideri Pyrus Pyrus x bretschneideri bai li \N \N \N \N 96110 S.volkensii Schefflera Schefflera volkensii \N \N \N \N \N 96111 A.variifolia Ajania Ajania variifolia \N \N \N \N \N 96112 \N family Amaranthaceae amaranth family,goosefoot family \N \N \N \N 96113 S.nutans Sorghastrum Sorghastrum nutans \N \N \N \N \N 96114 E.bilobata Euphorbia Euphorbia bilobata \N \N \N \N \N 96115 M.ficifolius Mallotus Mallotus ficifolius \N \N \N \N \N 96116 C.humboldtiana Carex Carex humboldtiana \N \N \N \N \N 96117 P.officinalis Parietaria Parietaria officinalis \N \N \N \N \N 96118 P.perareolatum Piper Piper perareolatum \N \N \N \N \N 96119 P.capitellatum Phoradendron Phoradendron capitellatum \N \N \N \N \N 96120 \N genus Gonioanthela \N \N \N \N \N 96121 S.trichocalyx Strychnos Strychnos trichocalyx \N \N \N \N \N 96122 M.engleriana Metrosideros Metrosideros engleriana \N \N \N \N \N 96123 E.tatarica Euphrasia Euphrasia tatarica \N \N \N \N \N 96124 \N genus Platystemon \N \N \N \N \N 96125 C.macrostemon Chrysosplenium Chrysosplenium macrostemon \N \N \N \N \N 96126 R.pygmaeus Ranunculus Ranunculus pygmaeus \N \N \N \N \N 96127 C.telephiifolia Corrigiola Corrigiola telephiifolia \N \N \N \N \N 96128 T.quetzalteca Tecunumania Tecunumania quetzalteca \N \N \N \N \N 96129 E.virescens Echium Echium virescens \N \N \N \N \N 96130 M.sp. Musa Musa sp. \N \N \N \N \N 96131 C.paradisi Citrus Citrus x paradisi grapefruit \N \N \N \N 96132 L.magnistipulatus Lupinus Lupinus magnistipulatus \N \N \N \N \N 96133 H.major Halophila Halophila major \N \N \N \N \N 96134 S.polyphylla Swartzia Swartzia polyphylla \N \N \N \N \N 96135 X.deborah Arachnis x Vanda x Aranda deborah \N \N \N \N \N 96136 C.persistens Calochortus Calochortus persistens Siskiyou mariposa lily \N \N \N \N 96137 D.punctata Dombeya Dombeya punctata \N \N \N \N \N 96138 M.4529 Macrocarpaea Macrocarpaea cf. dies-viridis Grant 4529 \N \N \N \N \N 96139 \N subfamily Asteroideae \N \N \N \N \N 96140 H.dumosa Hullettia Hullettia dumosa \N \N \N \N \N 96141 S.muelleri Scorzoneroides Scorzoneroides muelleri \N \N \N \N \N 96142 D.variifolia Dorstenia Dorstenia variifolia \N \N \N \N \N 96143 M.prolifera Mammillaria Mammillaria prolifera \N \N \N \N \N 96144 \N genus Physopsis \N \N \N \N \N 96145 D.octopetala Dryas Dryas octopetala \N \N \N \N \N 96146 \N varietas Aconitum barbatum var. puberulum \N \N \N \N \N 108508 \N genus Leucomphalos \N \N \N \N \N 96147 M.fuscum Maianthemum Maianthemum fuscum \N \N \N \N \N 96148 \N genus Stylochaeton \N \N \N \N \N 96149 C.inopinata Coprosma Coprosma inopinata \N \N \N \N \N 96150 M.hullettii Macaranga Macaranga hullettii \N \N \N \N \N 96151 E.xeranthemifolia Erica Erica xeranthemifolia \N \N \N \N \N 96153 M.mutabilis Muraltia Muraltia mutabilis \N \N \N \N \N 96154 C.flaccidum Crinum Crinum flaccidum \N \N \N \N \N 96155 M.carinata Metasasa Metasasa carinata \N \N \N \N \N 96156 R.rubra Rhynchospora Rhynchospora rubra \N \N \N \N \N 96157 B.tenuiflora Buglossoides Buglossoides tenuiflora \N \N \N \N \N 96158 F.botryoides Ficus Ficus botryoides \N \N \N \N \N 96159 O.melanotricha Onobrychis Onobrychis melanotricha \N \N \N \N \N 96160 A.angustissima Athrixia Athrixia angustissima \N \N \N \N \N 96161 E.islayensis Eriosyce Eriosyce islayensis \N \N \N \N \N 96162 Z.aucheri Zeravschania Zeravschania aucheri \N \N \N \N \N 96163 B.berteroanus Bromus Bromus berteroanus Bromus trinii,Bromus trinii E. Desv.,Chilean chess \N \N \N \N 96164 F.ananassa Fragaria Fragaria x ananassa strawberry \N \N \N \N 96165 \N genus Echium \N \N \N \N \N 96166 T.rubicundum Taraxacum Taraxacum rubicundum \N \N \N \N \N 96167 \N genus Phlebocarya \N \N \N \N \N 96168 \N subspecies Olea woodiana subsp. woodiana \N \N \N \N \N 96169 D.palmeri Dryopetalon Dryopetalon palmeri \N \N \N \N \N 96170 D.zuluensis Disa Disa zuluensis \N \N \N \N \N 96171 P.tripartitum Philodendron Philodendron tripartitum \N \N \N \N \N 96172 R.psidioides Rhodomyrtus Rhodomyrtus psidioides \N \N \N \N \N 96173 \N genus Garberia \N \N \N \N \N 96174 \N genus Latania \N \N \N \N \N 96175 \N genus Tapiscia \N \N \N \N \N 96176 S.praecox Spiranthes Spiranthes praecox \N \N \N \N \N 96177 M.luethyi Mammillaria Mammillaria luethyi \N \N \N \N \N 96178 \N subspecies Pereskia horrida subsp. rauhii \N \N \N \N \N 96179 O.schimperi Oncocalyx Oncocalyx schimperi \N \N \N \N \N 96180 W.violacea Wahlenbergia Wahlenbergia violacea \N \N \N \N \N 96181 B.biflora Bursera Bursera biflora \N \N \N \N \N 96182 T.franchetii Terminalia Terminalia franchetii \N \N \N \N \N 96183 F.malacophylla Fraxinus Fraxinus malacophylla \N \N \N \N \N 96184 O.robusta Ossaea Ossaea robusta \N \N \N \N \N 96185 A.montanum Alyssum Alyssum montanum \N \N \N \N \N 96186 C.gregsonii Cryptocarya Cryptocarya gregsonii \N \N \N \N \N 96187 E.graminifolia Euthamia Euthamia graminifolia \N \N \N \N \N 96188 C.'pummelo-lemon' Citrus Citrus sp. 'pummelo-lemon' \N \N \N \N \N 96189 T.argenteus Thamnochortus Thamnochortus argenteus \N \N \N \N \N 96190 \N genus Lintonia \N \N \N \N \N 96191 A.aridum Achnatherum Achnatherum aridum \N \N \N \N \N 96192 \N subfamily Pereskioideae \N \N \N \N \N 96193 \N subtribe Bactridinae \N \N \N \N \N 96194 A.orbelicum Alyssum Alyssum orbelicum \N \N \N \N \N 96195 M.enneaphylla Momordica Momordica enneaphylla \N \N \N \N \N 96196 B.bracteata Bracteantha Bracteantha bracteata \N \N \N \N \N 96197 \N genus Sasa \N \N \N \N \N 96198 T.pilifera Tetratheca Tetratheca pilifera \N \N \N \N \N 96199 G.petraea Goyazia Goyazia petraea \N \N \N \N \N 96200 V.hirticalycina Vicia Vicia hirticalycina \N \N \N \N \N 96201 \N tribe Hesperideae \N \N \N \N \N 96202 C.glaucofilix Chamaecrista Chamaecrista glaucofilix \N \N \N \N \N 96203 S.glandulosissimus Streptocarpus Streptocarpus glandulosissimus \N \N \N \N \N 96204 H.hypolasia Hoya Hoya hypolasia \N \N \N \N \N 96205 C.subglabrum Chenopodium Chenopodium subglabrum \N \N \N \N \N 96206 S.ASP007 Solanum Solanum sp. ASP007 \N \N \N \N \N 96207 N.parvifolia Nymphoides Nymphoides parvifolia \N \N \N \N \N 96208 A.uniflora Abelia Abelia uniflora \N \N \N \N \N 96209 C.NY401 Cabomba Cabomba sp. NY401 \N \N \N \N \N 96210 S.micrantha Scaevola Scaevola micrantha \N \N \N \N \N 96211 J.spathulata Junellia Junellia spathulata \N \N \N \N \N 96212 C.roraimensis Croton Croton roraimensis \N \N \N \N \N 96213 \N genus Eucharis \N \N \N \N \N 96214 R.podophylla Rodgersia Rodgersia podophylla \N \N \N \N \N 96215 C.vanum Clinopodium Clinopodium vanum \N \N \N \N \N 96216 \N genus Anderbergia \N \N \N \N \N 96217 G.virescens Gladiolus Gladiolus virescens \N \N \N \N \N 96218 S.miltiorrhiza Salvia Salvia miltiorrhiza Chinese salvia,dan shen,redroot sage \N \N \N \N 96219 C.groenlandica Cochlearia Cochlearia groenlandica \N \N \N \N \N 96220 D.muyuyacensis Dichaea Dichaea muyuyacensis \N \N \N \N \N 96221 A.argentinus Axonopus Axonopus argentinus \N \N \N \N \N 96222 \N genus Aphanes \N \N \N \N \N 96223 A.lindii Alyxia Alyxia lindii \N \N \N \N \N 96224 D.glomerata Dactylis Dactylis glomerata cocksfoot,orchard grass \N \N \N \N 96225 D.XMW-2002-1 Dendrobium Dendrobium sp. XMW-2002-1 \N \N \N \N \N 96226 C.capensis Charadrophila Charadrophila capensis \N \N \N \N \N 96227 \N genus Maesobotrya \N \N \N \N \N 96228 T.oblonga Terminalia Terminalia oblonga \N \N \N \N \N 96229 R.yakumontanum Rhododendron Rhododendron yakumontanum \N \N \N \N \N 96230 M.sinuata Meconopsis Meconopsis sinuata \N \N \N \N \N 96231 E.uniflora Eugenia Eugenia uniflora Brazil-cherry,Surinam-cherry,nagapiry,pitanga \N \N \N \N 96232 \N genus Cybistetes \N \N \N \N \N 96233 C.parviflora Cryptantha Cryptantha parviflora \N \N \N \N \N 96234 C.parviflora Calceolaria Calceolaria parviflora \N \N \N \N \N 96235 C.corylifolium Cullen Cullen corylifolium \N \N \N \N \N 96236 \N genus Cotyledon \N \N \N \N \N 96237 \N genus Stryphnodendron \N \N \N \N \N 96238 H.latifolia Hesperomeles Hesperomeles latifolia \N \N \N \N \N 96239 O.aloisii Oncidium Oncidium aloisii \N \N \N \N \N 96240 N.macrostoma Napeanthus Napeanthus macrostoma \N \N \N \N \N 96241 E.illirica Euphorbia Euphorbia illirica \N \N \N \N \N 96242 D.felliana Dallwatsonia Dallwatsonia felliana \N \N \N \N \N 96243 O.macrocarpa Oenothera Oenothera macrocarpa \N \N \N \N \N 96244 S.bulbosa Sinningia Sinningia bulbosa \N \N \N \N \N 96245 \N genus Ceratosanthes \N \N \N \N \N 96246 S.fallax Solanum Solanum fallax \N \N \N \N \N 96247 L.001 Lantana Lantana sp. Williams 001 \N \N \N \N \N 96248 A.pubiflora Alternanthera Alternanthera pubiflora \N \N \N \N \N 96249 X.nitida Xylopia Xylopia nitida \N \N \N \N \N 96250 C.minutimaculata Chirita Chirita minutimaculata \N \N \N \N \N 96253 L.schweinfurthii Lannea Lannea schweinfurthii \N \N \N \N \N 96254 \N genus Canadanthus \N \N \N \N \N 96255 \N varietas Adenophora verticillata var. hirsuta \N \N \N \N \N 96256 C.rimosa Corythophora Corythophora rimosa \N \N \N \N \N 96257 P.alata Passiflora Passiflora alata \N \N \N \N \N 96258 C.pungens Campylanthus Campylanthus pungens \N \N \N \N \N 96259 V.chelmea Viola Viola chelmea \N \N \N \N \N 96260 O.pollardii Oncidium Oncidium pollardii \N \N \N \N \N 96261 P.pendula Polyalthia Polyalthia pendula \N \N \N \N \N 96262 J.9010 Justicia Justicia sp. Daniel 9010 \N \N \N \N \N 96263 A.principiculus Alocasia Alocasia principiculus \N \N \N \N \N 96264 H.longiflora Hindsia Hindsia longiflora \N \N \N \N \N 96265 E.bourgaeana Euphorbia Euphorbia bourgaeana \N \N \N \N \N 96266 \N genus Brachystelma \N \N \N \N \N 96267 P.mauiensis Psychotria Psychotria mauiensis \N \N \N \N \N 96268 T.moreliana Tetraberlinia Tetraberlinia moreliana \N \N \N \N \N 96269 L.elegans Lupinus Lupinus elegans \N \N \N \N \N 96270 \N tribe Hypericeae \N \N \N \N \N 96271 B.guineensis Brucea Brucea guineensis \N \N \N \N \N 96272 H.sinuatum Heliotropium Heliotropium sinuatum \N \N \N \N \N 96273 \N genus Moya \N \N \N \N \N 96274 S.flavinervia Sinosassafras Sinosassafras flavinervia \N \N \N \N \N 96275 D.cuspidata Dahlia Dahlia cuspidata \N \N \N \N \N 96276 \N genus Leptoplax \N \N \N \N \N 96277 C.montana Codia Codia montana \N \N \N \N \N 96278 A.grandistipula Andira Andira grandistipula \N \N \N \N \N 96279 P.MAJ-2008 Piper Piper aff. anonifolium MAJ-2008 \N \N \N \N \N 96280 P.phuwuaense Piper Piper phuwuaense \N \N \N \N \N 96281 S.faberi Setaria Setaria faberi \N \N \N \N \N 96282 C.byrsina Columnea Columnea byrsina \N \N \N \N \N 96283 P.ilicifolius Parodianthus Parodianthus ilicifolius \N \N \N \N \N 96284 A.coriacea Alpinia Alpinia coriacea \N \N \N \N \N 96285 \N genus Colobanthus \N \N \N \N \N 96286 S.renschii Solanum Solanum renschii \N \N \N \N \N 96287 L.platyglossa Ligularia Ligularia platyglossa \N \N \N \N \N 96288 H.brownii Harrisonia Harrisonia brownii \N \N \N \N \N 96289 \N subspecies Leucadendron spissifolium subsp. fragrans \N \N \N \N \N 96290 C.heliocharis Cystostemon Cystostemon heliocharis \N \N \N \N \N 96291 \N varietas Carex aquatilis var. minor \N \N \N \N \N 96292 C.choriophylla Chamaecrista Chamaecrista choriophylla \N \N \N \N \N 96293 A.okuyamae Aconitum Aconitum okuyamae \N \N \N \N \N 96294 S.kirkii Siphonochilus Siphonochilus kirkii \N \N \N \N \N 96295 S.hirtus Strobilanthes Strobilanthes hirtus \N \N \N \N \N 96296 S.macropodus Siphocampylus Siphocampylus macropodus \N \N \N \N \N 96297 \N genus Ansellia \N \N \N \N \N 96298 \N genus Microberlinia \N \N \N \N \N 96299 \N subspecies Olea europaea subsp. laperrinei \N \N \N \N \N 96300 H.reticulata Hornstedtia Hornstedtia reticulata \N \N \N \N \N 96301 M.pectinifera Mammillaria Mammillaria pectinifera \N \N \N \N \N 96302 P.ericoides Passerina Passerina ericoides \N \N \N \N \N 96303 \N genus Myrciaria \N \N \N \N \N 96304 P.agnata Pinguicula Pinguicula agnata \N \N \N \N \N 96305 O.capillacea Oxalis Oxalis capillacea \N \N \N \N \N 96306 S.CR-2009 Schismatoclada Schismatoclada sp. CR-2009 \N \N \N \N \N 96307 \N genus Dolichos \N \N \N \N \N 96308 D.huajuapanus Davilanthus Davilanthus huajuapanus \N \N \N \N \N 96309 B.1666 Boechera Boechera sp. KH 1666 \N \N \N \N \N 96310 \N subspecies Iris kirkwoodiae subsp. kirkwoodiae \N \N \N \N \N 96311 V.tokubuchiana Viola Viola tokubuchiana \N \N \N \N \N 96312 \N varietas Cucumis melo var. inodorus casaba melon,honeydew,honeydew melon \N \N \N \N 96313 B.laurentii Brachystegia Brachystegia laurentii \N \N \N \N \N 96314 C.'Ngongo2' Coffea Coffea sp. 'Ngongo2' \N \N \N \N \N 96315 S.japonica Suaeda Suaeda japonica \N \N \N \N \N 96316 A.yunnanensis Ainsliaea Ainsliaea yunnanensis \N \N \N \N \N 96317 K.nyasica Khaya Khaya nyasica \N \N \N \N \N 96318 \N genus Adrorhizon \N \N \N \N \N 96319 D.annableae Danthonia Danthonia annableae \N \N \N \N \N 96320 E.viscosus Echinops Echinops viscosus \N \N \N \N \N 96321 \N subspecies Digitalis lutea subsp. australis \N \N \N \N \N 96322 E.wetarensis Eucalyptus Eucalyptus wetarensis \N \N \N \N \N 96323 A.brevicarpa Aridaria Aridaria brevicarpa \N \N \N \N \N 96324 M.maritima Muilla Muilla maritima \N \N \N \N \N 96325 D.amplectens Diheteropogon Diheteropogon amplectens \N \N \N \N \N 96326 R.maddenii Rhododendron Rhododendron maddenii \N \N \N \N \N 96327 V.pachycephala Viguiera Viguiera pachycephala \N \N \N \N \N 96328 A.podalyriifolia Acacia Acacia podalyriifolia \N \N \N \N \N 96329 S.conspicua Sinningia Sinningia conspicua \N \N \N \N \N 96330 P.yucatanensis Poincianella Poincianella yucatanensis \N \N \N \N \N 96331 \N genus Prismatocarpus \N \N \N \N \N 96332 D.congesta Decaisnina Decaisnina congesta \N \N \N \N \N 96333 A.formosissimus Anisotes Anisotes formosissimus \N \N \N \N \N 96334 T.obovoidea Treculia Treculia obovoidea \N \N \N \N \N 96335 M.oblongum Myoschilos Myoschilos oblongum \N \N \N \N \N 96336 \N genus Natsiatum \N \N \N \N \N 96337 J.mexicana Juanulloa Juanulloa mexicana \N \N \N \N \N 96338 M.kamiesensis Moraea Moraea kamiesensis \N \N \N \N \N 96339 \N varietas Penstemon eriantherus var. cleburnei \N \N \N \N \N 96340 W.boliviana Wissadula Wissadula boliviana \N \N \N \N \N 96341 H.yangchunensis Hedyotis Hedyotis yangchunensis \N \N \N \N \N 96342 A.pertyoides Ainsliaea Ainsliaea pertyoides \N \N \N \N \N 96343 C.SRR-2011 Chondrorhyncha Chondrorhyncha sp. 2 SRR-2011 \N \N \N \N \N 96344 T.kirkii Thunbergia Thunbergia kirkii \N \N \N \N \N 96345 D.brachystylis Draba Draba brachystylis shortstyle draba \N \N \N \N 96346 B.mathiasiae Bronwenia Bronwenia mathiasiae \N \N \N \N \N 96347 C.trianae Cobaea Cobaea trianae \N \N \N \N \N 96348 T.ispahanicum Triticum Triticum ispahanicum \N \N \N \N \N 96349 B.caudata Brassia Brassia caudata \N \N \N \N \N 96350 \N genus Warczewiczella \N \N \N \N \N 96351 A.grandiflora Aristolochia Aristolochia grandiflora duck-flower,pelican-flower \N \N \N \N 96352 \N genus Salpianthus \N \N \N \N \N 96353 \N genus Dendrostellera \N \N \N \N \N 96354 C.cuyabensis Croton Croton cuyabensis \N \N \N \N \N 96355 P.triniifolium Papaver Papaver triniifolium \N \N \N \N \N 96356 \N varietas Dracaena reflexa var. angustifolia \N \N \N \N \N 96357 Z.challensis Zephyranthes Zephyranthes challensis \N \N \N \N \N 96358 C.19-1 Cornus Cornus cf. canadensis Xiang and Fan 19-1 \N \N \N \N \N 96359 A.juressi Arabis Arabis juressi \N \N \N \N \N 96360 \N genus Aegle \N \N \N \N \N 96361 \N genus Guettardella \N \N \N \N \N 96362 \N no rank Saccharum hybrid cultivar H87-4094 \N \N \N \N \N 96363 \N genus Chamaecrista \N \N \N \N \N 96364 C.schanginii Corydalis Corydalis schanginii \N \N \N \N \N 96365 N.laevis Neoregelia Neoregelia laevis \N \N \N \N \N 96366 \N genus Colpias \N \N \N \N \N 96367 M.gibbosifolium Macroptilium Macroptilium gibbosifolium \N \N \N \N \N 96368 A.fordianum Argyrotegium Argyrotegium fordianum \N \N \N \N \N 96369 \N genus Bolusia \N \N \N \N \N 96370 A.cultriforme Angraecum Angraecum cultriforme \N \N \N \N \N 96371 D.aromatica Doryphora Doryphora aromatica net sassafras,northern grey sassafras \N \N \N \N 96372 \N genus Asterotrichion \N \N \N \N \N 96373 O.loricata Oxalis Oxalis loricata \N \N \N \N \N 96374 C.cunninghamiana Casuarina Casuarina cunninghamiana \N \N \N \N \N 96375 L.liliflora Lachenalia Lachenalia liliflora \N \N \N \N \N 96376 \N varietas Erigeron strigosus var. dolomiticola \N \N \N \N \N 96377 A.V041219-40 Aristolochia Aristolochia aff. kwangsiensis V041219-40 \N \N \N \N \N 96378 D.scabra Doellingeria Doellingeria scabra \N \N \N \N \N 96379 E.leucodesmia Erica Erica leucodesmia \N \N \N \N \N 96380 N.mirabilis Nepenthes Nepenthes mirabilis \N \N \N \N \N 96381 L.involucrata Lonicera Lonicera involucrata \N \N \N \N \N 96382 \N subspecies Echinops ritro subsp. siculus \N \N \N \N \N 96383 \N subspecies Tetratheca paynterae subsp. cremnobata \N \N \N \N \N 96384 \N genus Acacia \N \N \N \N \N 96385 G.repens Gypsophila Gypsophila repens \N \N \N \N \N 96386 S.monticola Schivereckia Schivereckia monticola \N \N \N \N \N 96387 B.saussureoides Blumea Blumea saussureoides \N \N \N \N \N 96388 \N tribe Arctotideae \N \N \N \N \N 96389 P.sylvatica Pedicularis Pedicularis sylvatica \N \N \N \N \N 96390 \N varietas Peperomia vestita var. lindenii \N \N \N \N \N 96391 S.55 Scaevola Scaevola sp. Lundberg 55 \N \N \N \N \N 96392 C.3011 Carex Carex sp. Rothrock 3011 \N \N \N \N \N 96393 C.ericoides Cryptandra Cryptandra ericoides \N \N \N \N \N 96394 \N family Melanthiaceae trillium family \N \N \N \N 96395 B.longipes Baloskion Baloskion longipes \N \N \N \N \N 96396 \N varietas Ranunculus silerifolius var. silerifolius \N \N \N \N \N 96397 B.calycina Barnebyella Barnebyella calycina \N \N \N \N \N 96398 \N genus Xylopodia \N \N \N \N \N 96399 S.rosei Stevia Stevia rosei \N \N \N \N \N 96400 P.mossambicensis Pseudobersama Pseudobersama mossambicensis \N \N \N \N \N 96401 \N genus Croptilon \N \N \N \N \N 96402 P.tatarinowii Pteroceltis Pteroceltis tatarinowii \N \N \N \N \N 96403 R.williamsii Rhododendron Rhododendron williamsii \N \N \N \N \N 96404 E.obliquilobus Echinops Echinops obliquilobus \N \N \N \N \N 96405 S.peruvianum Lycopersicon Solanum arcanum x Solanum peruvianum \N \N \N \N \N 96406 C.silvicola Chrysochlamys Chrysochlamys silvicola \N \N \N \N \N 96407 R.lactea Ruellia Ruellia lactea \N \N \N \N \N 96408 A.ciliatum Arthrostemma Arthrostemma ciliatum \N \N \N \N \N 96409 P.digitata Polytoca Polytoca digitata \N \N \N \N \N 96410 I.lycopodioides Ivesia Ivesia lycopodioides \N \N \N \N \N 96411 B.distans Bouteloua Bouteloua distans \N \N \N \N \N 96412 F.conraui Ficus Ficus conraui \N \N \N \N \N 96413 \N varietas Leptodermis potanini var. glauca \N \N \N \N \N 96414 R.capensis Rhodocoma Rhodocoma capensis \N \N \N \N \N 96415 M.albo-sericea Myosotis Myosotis albo-sericea \N \N \N \N \N 96416 J.paludosa Jacobaea Jacobaea paludosa \N \N \N \N \N 96417 \N genus Haplocarpha \N \N \N \N \N 96418 B.serrata Balsamorhiza Balsamorhiza serrata \N \N \N \N \N 96419 \N genus Macadamia \N \N \N \N \N 96420 L.diplophylla Lachemilla Lachemilla diplophylla \N \N \N \N \N 96421 L.carinensis Livistona Livistona carinensis \N \N \N \N \N 96422 P.sampaioi Piper Piper sampaioi \N \N \N \N \N 96423 C.taliensis Camellia Camellia taliensis \N \N \N \N \N 96424 M.aspalatha Muraltia Muraltia aspalatha \N \N \N \N \N 96425 L.drudei Livistona Livistona drudei \N \N \N \N \N 96426 \N varietas Leonotis nepetifolia var. africana \N \N \N \N \N 96427 H.insignis Hydrostachys Hydrostachys insignis \N \N \N \N \N 96428 U.leptorhyncha Utricularia Utricularia leptorhyncha \N \N \N \N \N 96429 \N genus Dicheranthus \N \N \N \N \N 96430 N.beldingii Nolina Nolina beldingii \N \N \N \N \N 96431 S.dorbignyana Sobralia Sobralia dorbignyana \N \N \N \N \N 96432 C.comosus Costus Costus comosus \N \N \N \N \N 96433 W.pendula Wendlandia Wendlandia pendula \N \N \N \N \N 96434 \N genus Taxillus \N \N \N \N \N 96435 P.avenaceum Piptochaetium Piptochaetium avenaceum \N \N \N \N \N 96436 D.kilimanjari Dendrosenecio Dendrosenecio kilimanjari \N \N \N \N \N 96437 T.cultratum Thalictrum Thalictrum cultratum \N \N \N \N \N 96438 \N genus Vitellaria \N \N \N \N \N 96439 \N genus Mattfeldia \N \N \N \N \N 96440 R.tingitana Reichardia Reichardia tingitana \N \N \N \N \N 96441 M.comptonii Muraltia Muraltia comptonii \N \N \N \N \N 96442 M.pygmaea Mitrasacme Mitrasacme pygmaea \N \N \N \N \N 96443 \N genus Argylia \N \N \N \N \N 96444 D.nervosa Duhaldea Duhaldea nervosa \N \N \N \N \N 96445 R.acris Ranunculus Ranunculus acris cmmon buttercup,tall buttercup \N \N \N \N 96446 \N genus Necepsia \N \N \N \N \N 96447 T.austinensis Trithuria Trithuria austinensis \N \N \N \N \N 96448 A.alliacea Armeria Armeria alliacea \N \N \N \N \N 96449 L.tienchuanensis Lindera Lindera tienchuanensis \N \N \N \N \N 96451 R.multiflora Rauhia Rauhia multiflora \N \N \N \N \N 96452 R.pensylvanicus Ranunculus Ranunculus pensylvanicus \N \N \N \N \N 96453 \N tribe Heliophileae \N \N \N \N \N 96454 G.wilczekii Gagea Gagea wilczekii \N \N \N \N \N 96455 P.hahnii Passiflora Passiflora hahnii \N \N \N \N \N 96456 C.latifolia Coccoloba Coccoloba latifolia \N \N \N \N \N 96457 Z.glandulifera Zeltnera Zeltnera glandulifera \N \N \N \N \N 96458 D.brassii Dysoxylum Dysoxylum brassii \N \N \N \N \N 96459 E.senegalensis Erythrina Erythrina senegalensis \N \N \N \N \N 96460 D.turbinatus Dipterocarpus Dipterocarpus turbinatus East Indian copaiba balsam,gurjan \N \N \N \N 96461 H.delphicum Hypericum Hypericum delphicum \N \N \N \N \N 96462 C.vatovavyensis Coffea Coffea vatovavyensis \N \N \N \N \N 96463 D.saniculifolium Delphinium Delphinium saniculifolium \N \N \N \N \N 96464 I.subtillisima Isolepis Isolepis subtillisima \N \N \N \N \N 96465 G.sulcata Grewia Grewia sulcata \N \N \N \N \N 96466 G.dimorpha Guringalia Guringalia dimorpha \N \N \N \N \N 96467 V.ensifolia Vanilla Vanilla ensifolia \N \N \N \N \N 96468 P.phragmitoides Panicum Panicum phragmitoides \N \N \N \N \N 96469 S.albiflorus Sauropus Sauropus albiflorus \N \N \N \N \N 96470 A.hutchinsoniana Areca Areca hutchinsoniana \N \N \N \N \N 96471 E.spathulata Euphorbia Euphorbia spathulata \N \N \N \N \N 96472 \N no rank unclassified Vaccinieae \N \N \N \N \N 96473 O.havardii Oenothera Oenothera havardii \N \N \N \N \N 96474 \N subspecies Crocus cancellatus subsp. damascenus \N \N \N \N \N 96475 D.campestris Dichaetophora Dichaetophora campestris \N \N \N \N \N 96476 E.arceuthobioides Euphorbia Euphorbia arceuthobioides \N \N \N \N \N 96477 H.pyrenaicum Horminum Horminum pyrenaicum \N \N \N \N \N 96478 T.recurvata Tillandsia Tillandsia recurvata \N \N \N \N \N 96479 H.polygaloides Heliophila Heliophila polygaloides \N \N \N \N \N 96480 E.zambesiaca Eucomis Eucomis zambesiaca \N \N \N \N \N 96481 C.parryi Calyptridium Calyptridium parryi \N \N \N \N \N 96482 H.H28 Hesperomannia Hesperomannia sp. Ching H28 \N \N \N \N \N 96483 S.perfoliata Stevia Stevia perfoliata \N \N \N \N \N 96484 V.californicum Veratrum Veratrum californicum California false hellebore,corn lily \N \N \N \N 96485 S.mazoensis Schrebera Schrebera mazoensis \N \N \N \N \N 96486 M.Metrosideros) Metrosideros Metrosideros cf. salomonensis (subg. Metrosideros) \N \N \N \N \N 96487 P.pacifica Pritchardia Pritchardia pacifica \N \N \N \N \N 96488 O.rupigenum Octopoma Octopoma rupigenum \N \N \N \N \N 96489 O.TB-2010 Ostryopsis Ostryopsis sp. TB-2010 \N \N \N \N \N 96490 S.MAG-2009 Sloanea Sloanea sp. 3 MAG-2009 \N \N \N \N \N 96491 S.rostrata Sesbania Sesbania rostrata \N \N \N \N \N 96492 R.kirilowii Rhodiola Rhodiola kirilowii \N \N \N \N \N 96493 G.rotundifolium Gastrolobium Gastrolobium rotundifolium \N \N \N \N \N 96494 P.luteola Pleurothallis Pleurothallis luteola \N \N \N \N \N 96495 R.schneideriana Roscoea Roscoea schneideriana \N \N \N \N \N 96496 A.aurantiaca Agoseris Agoseris aurantiaca \N \N \N \N \N 96497 I.pierrei Illigera Illigera pierrei \N \N \N \N \N 96498 P.s.n. Phyla Phyla sp. Arbo s.n. \N \N \N \N \N 96499 S.sarcocarpa Sinojackia Sinojackia sarcocarpa \N \N \N \N \N 96500 C.micrantha Conostylis Conostylis micrantha \N \N \N \N \N 96501 R.rubrum Ribes Ribes rubrum northern red currant,red currant \N \N \N \N 96502 O.graminifolia Onuris Onuris graminifolia \N \N \N \N \N 96503 L.ellsworthianus Lupinus Lupinus ellsworthianus \N \N \N \N \N 96504 L.californica Lasthenia Lasthenia californica \N \N \N \N \N 96505 M.melina Maxillaria Maxillaria melina \N \N \N \N \N 96506 O.wulfenioides Orthosiphon Orthosiphon wulfenioides \N \N \N \N \N 96507 L.scandens Luvunga Luvunga scandens \N \N \N \N \N 96508 S.trinervius Sinosenecio Sinosenecio trinervius \N \N \N \N \N 96509 S.palmeri Sedum Sedum palmeri \N \N \N \N \N 96510 N.phyllostegia Neotysonia Neotysonia phyllostegia \N \N \N \N \N 96511 \N genus Solenangis \N \N \N \N \N 96512 \N family Plocospermataceae \N \N \N \N \N 96513 L.lutescens Luzula Luzula lutescens \N \N \N \N \N 96514 L.pallescens Linum Linum pallescens \N \N \N \N \N 96515 \N genus Heterorhachis \N \N \N \N \N 96516 M.densa Mentzelia Mentzelia densa \N \N \N \N \N 96517 S.villosum Sedum Sedum villosum \N \N \N \N \N 96518 H.humilis Hemigenia Hemigenia humilis \N \N \N \N \N 96519 J.yacheri Jaltomata Jaltomata yacheri \N \N \N \N \N 96520 \N varietas Eriospermum cooperi var. natalense \N \N \N \N \N 96521 D.lasiocarpa Draba Draba lasiocarpa \N \N \N \N \N 96522 \N family Hernandiaceae \N \N \N \N \N 96523 A.harveyi Albizia Albizia harveyi \N \N \N \N \N 96524 \N subspecies Centaurea boissieri subsp. willkommii \N \N \N \N \N 96525 C.myosuroides Cenchrus Cenchrus myosuroides big sandbur \N \N \N \N 96526 G.amarella Gentianella Gentianella amarella \N \N \N \N \N 96527 A.pusilla Arachis Arachis pusilla amendoim de caracar \N \N \N \N 96528 P.macrocephalus Ptilotus Ptilotus macrocephalus \N \N \N \N \N 96529 \N varietas Begonia handelii var. prostrata \N \N \N \N \N 96530 E.2210 Erythrostemon Erythrostemon sp. Hughes 2210 \N \N \N \N \N 96531 S.cubensis Swartzia Swartzia cubensis \N \N \N \N \N 96532 E.hyacinthoides Eria Eria hyacinthoides \N \N \N \N \N 96533 \N genus Christisonia \N \N \N \N \N 96534 C.flexuosum Capsicum Capsicum flexuosum \N \N \N \N \N 96535 P.corningiana Phalaenopsis Phalaenopsis corningiana \N \N \N \N \N 96536 C.maingayi Cratoxylum Cratoxylum maingayi \N \N \N \N \N 96537 P.barbata Pentaschistis Pentameris barbata \N \N \N \N \N 96538 C.virgata Cadaba Cadaba virgata \N \N \N \N \N 96539 L.ericoides Lachnaea Lachnaea ericoides \N \N \N \N \N 96540 O.paulii Ocotea Ocotea paulii \N \N \N \N \N 96541 C.acaulis Calandrinia Calandrinia acaulis \N \N \N \N \N 96542 A.variabilis Astragalus Astragalus variabilis \N \N \N \N \N 96543 P.balansae Polyscias Polyscias balansae \N \N \N \N \N 96544 \N varietas Litsea rotundifolia var. oblongifolia \N \N \N \N \N 96545 R.induta Rytigynia Rytigynia induta \N \N \N \N \N 96546 A.frutescens Acanthoprasium Acanthoprasium frutescens \N \N \N \N \N 96547 \N genus Cabreriella \N \N \N \N \N 96548 P.laevigata Peritassa Peritassa laevigata \N \N \N \N \N 96549 M.orbignyanum Mostacillastrum Mostacillastrum orbignyanum \N \N \N \N \N 96550 B.strychnoidea Bauhinia Bauhinia strychnoidea \N \N \N \N \N 96551 M.humblotii Medinilla Medinilla humblotii \N \N \N \N \N 96552 A.neglectus Astragalus Astragalus neglectus \N \N \N \N \N 96553 \N genus Phacelurus \N \N \N \N \N 96554 E.australis Edraianthus Edraianthus australis \N \N \N \N \N 96555 T.gracile Tropidocarpum Tropidocarpum gracile dobie pod \N \N \N \N 96556 F.porophylla Faramea Faramea porophylla \N \N \N \N \N 96557 P.liniflora Parakeelya Parakeelya liniflora \N \N \N \N \N 96558 \N genus Hiraea \N \N \N \N \N 96559 S.australasicus Sporobolus Sporobolus australasicus \N \N \N \N \N 96560 L.18055 Lethedon Lethedon aff. salicifolia McPherson & Munzinger 18055 \N \N \N \N \N 96561 E.megacarpa Eucalyptus Eucalyptus megacarpa \N \N \N \N \N 96562 C.micans Crotalaria Crotalaria micans \N \N \N \N \N 96563 C.lagopoides Coelachyrum Coelachyrum lagopoides \N \N \N \N \N 96564 G.engadinensis Gentianella Gentianella engadinensis \N \N \N \N \N 96565 C.coronata Coccoloba Coccoloba coronata \N \N \N \N \N 96566 P.robustior Persicaria Persicaria robustior \N \N \N \N \N 96567 T.tenella Tonella Tonella tenella \N \N \N \N \N 96568 G.microphylla Glycine Glycine microphylla \N \N \N \N \N 96569 B.cosmoides Bidens Bidens hillebrandiana subsp. polycephala x Bidens cosmoides \N \N \N \N \N 96570 \N genus Prostanthera \N \N \N \N \N 96571 \N genus Ctenolepis \N \N \N \N \N 96572 P.tristachyum Phrynium Phrynium tristachyum \N \N \N \N \N 96573 C.fuertesii Catesbaea Catesbaea fuertesii \N \N \N \N \N 96574 H.ignambiensis Hooglandia Hooglandia ignambiensis \N \N \N \N \N 96575 S.elachophyllus Sauropus Sauropus elachophyllus \N \N \N \N \N 96576 P.scouleri Phyllospadix Phyllospadix scouleri \N \N \N \N \N 96577 D.lacunosa Davilla Davilla lacunosa \N \N \N \N \N 96578 P.variegata Pinguicula Pinguicula variegata \N \N \N \N \N 96579 B.tomentosa Bridelia Bridelia tomentosa \N \N \N \N \N 96580 S.gonatanthum Syzygium Syzygium gonatanthum \N \N \N \N \N 96581 B.repanda Boerhavia Boerhavia repanda \N \N \N \N \N 96582 \N varietas Lupinus excubitus var. medius \N \N \N \N \N 96583 C.kotschyanus Crocus Crocus kotschyanus \N \N \N \N \N 96584 T.coridifolia Thymelaea Thymelaea coridifolia \N \N \N \N \N 96585 C.biflora Cathayanthe Cathayanthe biflora \N \N \N \N \N 96586 O.hyptiacantha Opuntia Opuntia hyptiacantha \N \N \N \N \N 96587 O.FS402 Ocotea Ocotea cf. glaziovii FS402 \N \N \N \N \N 96588 A.acutiloba Anemone Anemone acutiloba \N \N \N \N \N 96589 C.collenettei Corokia Corokia collenettei \N \N \N \N \N 96590 L.nervosa Lachnaea Lachnaea nervosa \N \N \N \N \N 96591 G.sonorae Gomphrena Gomphrena sonorae \N \N \N \N \N 96592 \N genus Manicaria \N \N \N \N \N 96593 O.oculata Otomeria Otomeria oculata \N \N \N \N \N 96594 T.siamensis Thyrsostachys Thyrsostachys siamensis \N \N \N \N \N 96595 P.magnifica Passiflora Passiflora magnifica \N \N \N \N \N 96596 E.cardamomum Elettaria Elettaria cardamomum cardamom,cardamon \N \N \N \N 96597 A.hymenostegis Astragalus Astragalus hymenostegis \N \N \N \N \N 96598 \N genus Alyssum \N \N \N \N \N 96599 C.abyssinica Colutea Colutea abyssinica \N \N \N \N \N 96600 \N genus Glaux \N \N \N \N \N 96601 A.roxburghii Anoectochilus Anoectochilus roxburghii \N \N \N \N \N 96602 C.altissima Chamissoa Chamissoa altissima \N \N \N \N \N 96603 C.alternifolia Cardiandra Cardiandra alternifolia \N \N \N \N \N 96604 S.rubiginosa Stewartia Stewartia rubiginosa \N \N \N \N \N 96605 P.atrosanguinea Potentilla Potentilla atrosanguinea \N \N \N \N \N 96606 P.brachiata Psychotria Psychotria brachiata \N \N \N \N \N 96607 \N varietas Lathyrus clymenum var. clymenum \N \N \N \N \N 96608 \N genus Oreopanax \N \N \N \N \N 96609 A.caespitosum Aegokeras Aegokeras caespitosum \N \N \N \N \N 96610 S.dyeriana Strobilanthes Strobilanthes dyeriana \N \N \N \N \N 96611 \N genus Arrabidaea \N \N \N \N \N 96612 N.coerulea Nierembergia Nierembergia coerulea \N \N \N \N \N 96613 L.ruscifolia Lachnaea Lachnaea ruscifolia \N \N \N \N \N 96614 S.crassicaule Sceletium Sceletium crassicaule \N \N \N \N \N 96615 D.occitanica Dactylorhiza Dactylorhiza occitanica \N \N \N \N \N 96616 \N genus Pseuderucaria \N \N \N \N \N 96617 \N genus Pistia \N \N \N \N \N 96618 \N genus Avicennia \N \N \N \N \N 96619 M.GOF20 Micromeria Micromeria cf. varia Heubl GOF20 \N \N \N \N \N 96620 S.aethnensis Senecio Senecio aethnensis \N \N \N \N \N 96621 L.parviflora Lotononis Lotononis parviflora \N \N \N \N \N 96622 \N genus Syringa lilacs \N \N \N \N 96623 W.angustifolia Wurmbea Wurmbea angustifolia \N \N \N \N \N 96624 \N tribe Cypereae \N \N \N \N \N 96625 M.macrophylla Mapania Mapania macrophylla \N \N \N \N \N 96626 P.juquilensis Phaseolus Phaseolus juquilensis \N \N \N \N \N 96627 P.sanmingensis Pleioblastus Pleioblastus sanmingensis \N \N \N \N \N 96628 I.attenuata Ilex Ilex x attenuata topel holly \N \N \N \N 96629 C.calycina Crotalaria Crotalaria calycina \N \N \N \N \N 96630 O.cirrhosum Oncidium Oncidium cirrhosum \N \N \N \N \N 96631 P.rugata Podolepis Podolepis rugata \N \N \N \N \N 96632 L.BX-2011 Lespedeza Lespedeza sp. BX-2011 \N \N \N \N \N 96633 D.caesia Dehaasia Dehaasia caesia \N \N \N \N \N 96634 H.petiolaris Helianthus Helianthus petiolaris \N \N \N \N \N 96635 C.sabulosa Chamaerhodos Chamaerhodos sabulosa \N \N \N \N \N 96636 I.litoralis Inga Inga litoralis \N \N \N \N \N 96637 C.breviculmis Carex Carex breviculmis \N \N \N \N \N 96638 M.acutifolium Machaerium Machaerium acutifolium \N \N \N \N \N 96639 \N forma Hydrangea serrata f. acuminata \N \N \N \N \N 96640 S.spectabilis Selago Selago spectabilis \N \N \N \N \N 96641 O.mascula Orchis Orchis mascula \N \N \N \N \N 96642 A.tatei Achnophora Achnophora tatei \N \N \N \N \N 96643 \N subspecies Galanthus plicatus subsp. plicatus \N \N \N \N \N 96644 A.monticola Arceuthobium Arceuthobium monticola \N \N \N \N \N 96645 C.siliquosus Corchorus Corchorus siliquosus \N \N \N \N \N 96646 C.thomasii Cyphostemma Cyphostemma thomasii \N \N \N \N \N 96647 Z.sicula Zelkova Zelkova sicula \N \N \N \N \N 96648 T.chamaedrifolia Turnera Turnera chamaedrifolia \N \N \N \N \N 96649 P.sertularioides Pleurothallis Pleurothallis sertularioides \N \N \N \N \N 96650 S.pulverulenta Schrenkia Schrenkia pulverulenta \N \N \N \N \N 96651 L.foliosus Lophopappus Lophopappus foliosus \N \N \N \N \N 96652 D.floridanum Desmodium Desmodium floridanum \N \N \N \N \N 96653 M.purpurea Menziesia Menziesia purpurea \N \N \N \N \N 96654 C.tamadabensis Crambe Crambe tamadabensis \N \N \N \N \N 96655 R.dissidens Ruellia Ruellia dissidens \N \N \N \N \N 96656 S.lancifolius Stemonoporus Stemonoporus lancifolius \N \N \N \N \N 96657 C.pauciflosculosa Chrysoma Chrysoma pauciflosculosa \N \N \N \N \N 96658 T.leptocarpa Triodanis Triodanis leptocarpa \N \N \N \N \N 96659 G.densiflorus Gladiolus Gladiolus densiflorus \N \N \N \N \N 96660 \N genus Stachystemon \N \N \N \N \N 96661 L.spectabilis Leucomeris Leucomeris spectabilis \N \N \N \N \N 96662 C.fimbriata Coelogyne Coelogyne fimbriata \N \N \N \N \N 96663 A.arcuatociliata Arenaria Arenaria arcuatociliata \N \N \N \N \N 96664 H.albanicum Haplophyllum Haplophyllum albanicum \N \N \N \N \N 96665 M.camareoides Mionandra Mionandra camareoides \N \N \N \N \N 96666 I.siphonantha Ixora Ixora siphonantha \N \N \N \N \N 96667 \N subspecies Conostylis dielsii subsp. dielsii \N \N \N \N \N 96668 G.imbricata Girgensohnia Girgensohnia imbricata \N \N \N \N \N 96669 M.angustifolia Mollugo Mollugo angustifolia \N \N \N \N \N 96670 D.TNS:KI-107 Dalzellia Dalzellia sp. TNS:KI-107 \N \N \N \N \N 96671 M.triloris Maxillaria Maxillaria triloris \N \N \N \N \N 96672 V.lobata Viola Viola lobata \N \N \N \N \N 96673 C.utricularioides Calceolaria Calceolaria utricularioides \N \N \N \N \N 96674 \N genus Orbeopsis \N \N \N \N \N 96675 \N varietas Pimelea spiculigera var. spiculigera \N \N \N \N \N 96676 C.abyssinicum Cynanchum Cynanchum abyssinicum \N \N \N \N \N 96677 \N subspecies Veronica chamaedrys subsp. chamaedryoides \N \N \N \N \N 96678 R.graciliflora Rosa Rosa graciliflora \N \N \N \N \N 96679 T.floribunda Turraea Turraea floribunda \N \N \N \N \N 96680 \N genus Bactris \N \N \N \N \N 96681 A.pulchella Antennaria Antennaria pulchella \N \N \N \N \N 96682 G.splendens Gladiolus Gladiolus splendens \N \N \N \N \N 96683 M.stenophyllum Mostacillastrum Mostacillastrum stenophyllum \N \N \N \N \N 96684 T.nw11 unclassified Taraxacum Taraxacum (sect. Hamata) sp. nw11 \N \N \N \N \N 96685 A.utahensis Amelanchier Amelanchier utahensis \N \N \N \N \N 96686 C.helianthemoides Calceolaria Calceolaria helianthemoides \N \N \N \N \N 96687 C.troodi Colchicum Colchicum troodi \N \N \N \N \N 96688 S.aspericocca Stackhousia Stackhousia aspericocca \N \N \N \N \N 96689 U.decumbens Urochloa Urochloa decumbens \N \N \N \N \N 96690 \N subspecies Hordeum patagonicum subsp. patagonicum \N \N \N \N \N 96691 L.caesium Limonium Limonium caesium \N \N \N \N \N 96692 \N genus Didesmus \N \N \N \N \N 96693 S.aegyptiaca Suaeda Suaeda aegyptiaca \N \N \N \N \N 96694 O.tananensis Oxytropis Oxytropis tananensis \N \N \N \N \N 96695 \N genus Levenhookia \N \N \N \N \N 96696 P.rhizobola Pilea Pilea rhizobola \N \N \N \N \N 96697 S.dugesii Salvia Salvia dugesii \N \N \N \N \N 96698 \N genus Solenostemma \N \N \N \N \N 96699 C.margaritaceum Cypripedium Cypripedium margaritaceum \N \N \N \N \N 96700 G.villosa Gagea Gagea villosa \N \N \N \N \N 96701 E.annamarieae Euphorbia Euphorbia annamarieae \N \N \N \N \N 96702 \N varietas Costus lima var. scabremarginatus \N \N \N \N \N 96703 \N genus Encephalocarpus \N \N \N \N \N 96704 S.montevidensis Stylosanthes Stylosanthes montevidensis \N \N \N \N \N 96705 C.phalanthopetalum Cordisepalum Cordisepalum phalanthopetalum \N \N \N \N \N 96706 H.achalensis Habenaria Habenaria achalensis \N \N \N \N \N 96707 C.cheesmanii Coprosma Coprosma cheesmanii \N \N \N \N \N 96708 \N genus Pseudocymopterus \N \N \N \N \N 96709 \N genus Isophysis \N \N \N \N \N 96710 \N subtribe Echinopsinae \N \N \N \N \N 96711 L.castellanus Lotus Lotus castellanus \N \N \N \N \N 96712 P.alangiacea Polyosma Polyosma alangiacea \N \N \N \N \N 96713 C.J.R.B.Tosh-2008 Canephora Canephora sp. J.R.B.Tosh-2008 \N \N \N \N \N 96714 \N no rank Cucurbita cv. Ebisu Nankin \N \N \N \N \N 96715 G.hyalina Gentiana Gentiana hyalina \N \N \N \N \N 96716 L.ramulosa Lessingia Lessingia ramulosa \N \N \N \N \N 96717 P.cuspidatum Polygonum Polygonum cuspidatum \N \N \N \N \N 96718 \N genus Arnebia \N \N \N \N \N 96719 M.gigas Megastylis Megastylis gigas \N \N \N \N \N 96720 C.transiens Cytisus Cytisus transiens \N \N \N \N \N 96721 P.alternans Physocarpus Physocarpus alternans dwarf ninebark \N \N \N \N 96722 P.butayei Psychotria Psychotria butayei \N \N \N \N \N 96723 \N genus Microcharis \N \N \N \N \N 96724 C.velatum Cirsium Cirsium velatum \N \N \N \N \N 96725 O.trispatha Orania Orania trispatha \N \N \N \N \N 96726 P.undulatum Pelargonium Pelargonium undulatum \N \N \N \N \N 96727 M.chekiangensis Machilus Machilus chekiangensis \N \N \N \N \N 96728 C.constancei Cymopterus Cymopterus constancei \N \N \N \N \N 96729 H.dilatata Hibbertia Hibbertia dilatata \N \N \N \N \N 96730 V.mairei Vella Vella mairei \N \N \N \N \N 96731 \N genus Nomocharis \N \N \N \N \N 96732 M.standleyi Mansoa Mansoa standleyi \N \N \N \N \N 96733 P.kaufmanniana Primula Primula kaufmanniana \N \N \N \N \N 96734 \N varietas Arabis pycnocarpa var. adpressipilis \N \N \N \N \N 96735 D.strigosus Dipsacus Dipsacus strigosus \N \N \N \N \N 96736 A.fenestralis Aponogeton Aponogeton fenestralis \N \N \N \N \N 96737 \N genus Uropappus \N \N \N \N \N 96738 C.reuteriana Carex Carex reuteriana \N \N \N \N \N 96739 B.aptera Boreava Boreava aptera \N \N \N \N \N 96740 W.cinerea Wahlenbergia Wahlenbergia cinerea \N \N \N \N \N 96741 F.hintoniana Festuca Festuca hintoniana \N \N \N \N \N 96742 G.reticulata Gagea Gagea reticulata \N \N \N \N \N 96743 C.arbuscula Cylindropuntia Cylindropuntia arbuscula \N \N \N \N \N 96744 S.kamehamehae Stenogyne Stenogyne kamehamehae \N \N \N \N \N 96745 C.rodriguesii Caraipa Caraipa rodriguesii \N \N \N \N \N 96746 C.reatina Campanula Campanula reatina \N \N \N \N \N 96747 P.brazzavillense Panicum Panicum brazzavillense \N \N \N \N \N 96748 \N subspecies Acacia mellifera subsp. mellifera \N \N \N \N \N 96749 L.heterodoxa Leea Leea heterodoxa \N \N \N \N \N 96750 N.oxyodonta Nepeta Nepeta oxyodonta \N \N \N \N \N 96751 D.alatum Dendrochilum Dendrochilum alatum \N \N \N \N \N 96752 B.higginsiae Berberis Berberis higginsiae \N \N \N \N \N 96753 C.amplissima Cousinia Cousinia amplissima \N \N \N \N \N 96754 L.brevicarpa Lebeckia Lebeckia brevicarpa \N \N \N \N \N 96755 \N genus Xanthoceras \N \N \N \N \N 96756 A.miniata Aechmea Aechmea miniata \N \N \N \N \N 96757 S.316) Swartzia Swartzia sp. D (Torke 316) \N \N \N \N \N 96758 P.macrocalyx Poa Poa macrocalyx \N \N \N \N \N 96759 F.diffusa Froesia Froesia diffusa \N \N \N \N \N 96760 \N genus Elingamita \N \N \N \N \N 96761 \N genus Reynosia \N \N \N \N \N 96762 C.kokonorica Cryptothladia Cryptothladia kokonorica \N \N \N \N \N 96763 M.megalocephala Maniltoa Maniltoa megalocephala \N \N \N \N \N 96764 P.1418 Piper Piper sp. Tepe 1418 \N \N \N \N \N 96765 C.CAM054 Campanula Campanula aff. linifolia CAM054 \N \N \N \N \N 96766 G.aridum Gossypium Gossypium aridum \N \N \N \N \N 96767 T.rhizomatosa Tidestromia Tidestromia rhizomatosa \N \N \N \N \N 96768 Z.fraterculum Zygogynum Zygogynum fraterculum \N \N \N \N \N 96769 D.grayi Diphylleia Diphylleia grayi \N \N \N \N \N 96770 R.flexuosa Redfieldia Redfieldia flexuosa \N \N \N \N \N 96771 P.secreta Petunia Petunia secreta \N \N \N \N \N 96772 \N varietas Anogeissus sericea var. nummularia \N \N \N \N \N 96773 B.riparia Brachyscome Brachyscome riparia \N \N \N \N \N 96774 \N subspecies Anthemis ammanthus subsp. ammanthus \N \N \N \N \N 96775 N.hirsuta Nepenthes Nepenthes hirsuta \N \N \N \N \N 96776 S.acutus Schoenoplectus Schoenoplectus acutus \N \N \N \N \N 96777 C.lithopsoides Conophytum Conophytum lithopsoides \N \N \N \N \N 96778 O.berteroana Oenothera Oenothera berteroana Bertero's evening primrose \N \N \N \N 96779 P.calyptratum Platymiscium Platymiscium calyptratum \N \N \N \N \N 96780 V.caespitosum Vaccinium Vaccinium caespitosum dwarf bilberry \N \N \N \N 96781 E.apios Euphorbia Euphorbia apios \N \N \N \N \N 96782 T.usneoides Tillandsia Tillandsia usneoides Spanish-moss \N \N \N \N 96783 \N genus Kengyilia \N \N \N \N \N 96784 C.tepejilote Chamaedorea Chamaedorea tepejilote \N \N \N \N \N 96785 T.loloensis Tongoloa Tongoloa loloensis \N \N \N \N \N 96786 T.rupestris Triaenophora Triaenophora rupestris \N \N \N \N \N 96787 C.caineana Castellanosia Castellanosia caineana \N \N \N \N \N 96788 C.pinnata Centaurea Centaurea pinnata \N \N \N \N \N 96789 P.discoidea Prunus Prunus discoidea \N \N \N \N \N 96790 C.frutescens Capsicum Capsicum annuum x Capsicum frutescens \N \N \N \N \N 96791 M.leucantha Micromeria Micromeria leucantha \N \N \N \N \N 96792 L.coriaceus Loxodiscus Loxodiscus coriaceus \N \N \N \N \N 96793 C.milciomejiae Cestrum Cestrum milciomejiae \N \N \N \N \N 96794 \N subspecies Neoraimondia arequipensis subsp. roseiflora \N \N \N \N \N 96795 T.bravum Tripsacum Tripsacum bravum \N \N \N \N \N 96796 \N varietas Pteryxia terebinthina var. californica \N \N \N \N \N 96797 \N genus Leobordea \N \N \N \N \N 96798 \N genus Helianthus sunflowers \N \N \N \N 96799 C.tuerckheimii Cestrum Cestrum tuerckheimii \N \N \N \N \N 96800 C.depressa Chesneya Chesneya depressa \N \N \N \N \N 96801 E.prolifera Elytraria Elytraria prolifera \N \N \N \N \N 96802 A.capillaris Artemisia Artemisia capillaris \N \N \N \N \N 96803 E.colona Echinochloa Echinochloa colona Deccan grass,corn panic grass,jungle-rice,millet-rice,shama millet \N \N \N \N 96804 I.zaprjagajevii Iris Iris zaprjagajevii \N \N \N \N \N 96805 S.rotundifolia Stachys Stachys rotundifolia \N \N \N \N \N 96806 A.ajugiflora Acrymia Acrymia ajugiflora \N \N \N \N \N 96807 P.maemetsiae Potamogeton Potamogeton x maemetsiae \N \N \N \N \N 96808 G.macrocarpa Galitzkya Galitzkya macrocarpa \N \N \N \N \N 96809 S.orbignaei Salvia Salvia orbignaei \N \N \N \N \N 96810 V.phoeniceum Verbascum Verbascum phoeniceum purple mullein \N \N \N \N 96811 T.weddelliana Tovomita Tovomita weddelliana \N \N \N \N \N 96812 \N genus Galactia \N \N \N \N \N 96813 H.castellanum Hieracium Hieracium castellanum \N \N \N \N \N 96814 C.multicaulis Cleome Cleome multicaulis \N \N \N \N \N 96815 A.thomsonii Aralia Aralia thomsonii \N \N \N \N \N 96816 \N family Betulaceae birch famly \N \N \N \N 96817 \N subspecies Mimosa rubicaulis subsp. himalayana \N \N \N \N \N 96818 \N subspecies Silene scouleri subsp. scouleri \N \N \N \N \N 96819 U.speciosa Ursinia Ursinia speciosa \N \N \N \N \N 96820 \N genus Sinacalia \N \N \N \N \N 96821 S.lychnoides Schiedea Schiedea lychnoides \N \N \N \N \N 96822 M.2576 Maxillaria Maxillaria cf. plicata Whitten 2576 \N \N \N \N \N 96823 \N genus Origanum marjorams,oreganos \N \N \N \N 96824 R.delavayi Rheum Rheum delavayi \N \N \N \N \N 96825 S.gregaria Serapias Serapias gregaria \N \N \N \N \N 96826 P.hoffmannseggii Phalacrocarpum Phalacrocarpum hoffmannseggii \N \N \N \N \N 96827 \N tribe Caesalpinieae \N \N \N \N \N 96828 T.fucatum Trifolium Trifolium fucatum \N \N \N \N \N 96829 A.tuberosum Allium Allium tuberosum \N \N \N \N \N 96830 P.plagiocylix Phaseolus Phaseolus plagiocylix \N \N \N \N \N 96831 P.campestris Pollichia Pollichia campestris \N \N \N \N \N 96832 R.Gao20006 Rhododendron Rhododendron sp. Gao20006 \N \N \N \N \N 96833 A.tridentata Artemisia Artemisia tridentata big sagebrush,sagebrush \N \N \N \N 96834 \N subspecies Primula clevelandii var. gracilis \N \N \N \N \N 96835 A.philippii Austrocactus Austrocactus philippii \N \N \N \N \N 96836 M.agathosmoides Metalasia Metalasia agathosmoides \N \N \N \N \N 96837 S.aspera Smilax Smilax aspera rough bindweed \N \N \N \N 96838 P.micranthus Paradisanthus Paradisanthus micranthus \N \N \N \N \N 96839 C.vernum Cithareloma Cithareloma vernum \N \N \N \N \N 96840 S.mussotii Swertia Swertia mussotii \N \N \N \N \N 96841 S.gracilistyla Salix Salix gracilistyla \N \N \N \N \N 96842 R.alata Rafnia Rafnia alata \N \N \N \N \N 96843 L.schottii Loeseliastrum Loeseliastrum schottii \N \N \N \N \N 96844 B.pruinosa Berberis Berberis pruinosa \N \N \N \N \N 96845 \N varietas Vicia unijuga var. kaussanensis \N \N \N \N \N 96846 E.JK-2010 Eleocharis Eleocharis aff. interstincta JK-2010 \N \N \N \N \N 96847 R.sherardii Rosa Rosa sherardii \N \N \N \N \N 96848 C.dentata Cliffortia Cliffortia dentata \N \N \N \N \N 96849 \N subtribe Plucheinae \N \N \N \N \N 96850 S.tipuanica Schefflera Schefflera tipuanica \N \N \N \N \N 96851 V.delavayi Viola Viola delavayi \N \N \N \N \N 96852 I.pseudoviola Impatiens Impatiens pseudoviola \N \N \N \N \N 96853 P.zopilotensis Peniocereus Peniocereus zopilotensis \N \N \N \N \N 96854 T.SM24700 Tovomita Tovomita sp. SM24700 \N \N \N \N \N 96855 A.javanica Anaxagorea Anaxagorea javanica \N \N \N \N \N 96856 N.diffusa Nemesia Nemesia diffusa \N \N \N \N \N 96857 H.isocalycia Homolepis Homolepis isocalycia \N \N \N \N \N 96858 \N genus Frasera \N \N \N \N \N 96859 R.alpicola Rytidosperma Rytidosperma alpicola \N \N \N \N \N 96860 R.grandis Rhodostemonodaphne Rhodostemonodaphne grandis \N \N \N \N \N 96861 L.maingayi Lophopyxis Lophopyxis maingayi \N \N \N \N \N 96862 V.capitata Valeriana Valeriana capitata \N \N \N \N \N 96863 K.suberosa Kairoa Kairoa suberosa \N \N \N \N \N 96864 A.ambigua Amelichloa Amelichloa ambigua \N \N \N \N \N 96865 I.tomentosa Ixiolaena Ixiolaena tomentosa \N \N \N \N \N 96866 E.viride Ecbolium Ecbolium viride \N \N \N \N \N 96867 A.cylindrica Aegilops Aegilops cylindrica \N \N \N \N \N 96868 C.santolinoides Calceolaria Calceolaria santolinoides \N \N \N \N \N 96869 \N genus Fryxellia \N \N \N \N \N 96870 T.nelsonii Triaspis Triaspis nelsonii \N \N \N \N \N 96871 \N genus Digitostigma \N \N \N \N \N 96872 C.wattii Combretum Combretum wattii \N \N \N \N \N 96873 \N genus Hepatica \N \N \N \N \N 96874 M.SGR-2009 Morinda Morinda sp. 5 SGR-2009 \N \N \N \N \N 96875 O.deserticola Oxalis Oxalis deserticola \N \N \N \N \N 96876 A.canescens Amorpha Amorpha canescens \N \N \N \N \N 96877 M.congdonii Mimulus Mimulus congdonii \N \N \N \N \N 96878 C.longiloba Cuscuta Cuscuta longiloba \N \N \N \N \N 96879 B.dregei Babiana Babiana dregei \N \N \N \N \N 96880 \N varietas Sanguisorba officinalis var. longifolia \N \N \N \N \N 96881 A.echinatus Arctopus Arctopus echinatus \N \N \N \N \N 96882 P.2819 Peplidium Peplidium sp. Barker 2819 \N \N \N \N \N 96883 \N genus Echeandia \N \N \N \N \N 96884 B.fistulosa Blumea Blumea fistulosa \N \N \N \N \N 96885 \N genus Xestaea \N \N \N \N \N 96886 \N genus Rainiera \N \N \N \N \N 96887 S.wulingensis Syringa Syringa wulingensis \N \N \N \N \N 96888 L.flavonutans Lloydia Lloydia flavonutans \N \N \N \N \N 96889 T.marginifolius Tragopogon Tragopogon marginifolius \N \N \N \N \N 96890 R.MG-2007 Raycadenco Raycadenco sp. MG-2007 \N \N \N \N \N 96891 \N subspecies Laserpitium prutenicum subsp. dufourianum \N \N \N \N \N 96892 H.archboldiana Hoya Hoya archboldiana \N \N \N \N \N 96893 G.aspera Gentianella Gentianella aspera \N \N \N \N \N 96894 N.affinis Neillia Neillia affinis \N \N \N \N \N 96895 J.teretifolia Jacquiniella Jacquiniella teretifolia \N \N \N \N \N 96896 G.rotundifolia Graffenrieda Graffenrieda rotundifolia \N \N \N \N \N 96897 H.goudotianum Hedyosmum Hedyosmum goudotianum \N \N \N \N \N 96898 O.atropurpurea Ochna Ochna atropurpurea \N \N \N \N \N 96899 A.rubifolia Ampelopsis Ampelopsis rubifolia \N \N \N \N \N 96900 \N family Resedaceae \N \N \N \N \N 96901 G.4062 Gynochthodes Gynochthodes sp. Davis 4062 \N \N \N \N \N 96902 E.torreyi Epilobium Epilobium torreyi \N \N \N \N \N 96903 M.yunnanensis Michelia Michelia yunnanensis \N \N \N \N \N 96904 \N forma Gomphrena celosioides f. roseiflora \N \N \N \N \N 96905 C.56 Coffea Coffea sp. IRD-Montpelier OG 56 \N \N \N \N \N 96906 \N varietas Chrysanthemoides monilifera var.nov. NPB-2009a \N \N \N \N \N 96907 M.aurantiaca Medicago Medicago aurantiaca \N \N \N \N \N 96908 M.elliptica Maytenus Maytenus elliptica \N \N \N \N \N 96909 M.1163 Madia Madia sp. 1163 \N \N \N \N \N 96910 A.2179 Alphitonia Alphitonia aff. incana Chase 2179 \N \N \N \N \N 96911 N.dentata Neotorularia Neotorularia dentata \N \N \N \N \N 96912 I.hookeri Ilex Ilex hookeri \N \N \N \N \N 96913 A.spinosa Adenia Adenia spinosa \N \N \N \N \N 96914 P.frenchii Primula Primula frenchii \N \N \N \N \N 96915 R.janczewskii Ribes Ribes janczewskii \N \N \N \N \N 96916 C.crupinastrum Crupina Crupina crupinastrum \N \N \N \N \N 96917 V.lentago Viburnum Viburnum lentago nannyberry,sheepberry \N \N \N \N 96918 E.watsonii Echidnopsis Echidnopsis watsonii \N \N \N \N \N 96919 M.tricuspis Mentzelia Mentzelia tricuspis \N \N \N \N \N 96920 T.microphylla Tabebuia Tabebuia microphylla \N \N \N \N \N 96921 D.physodes Daviesia Daviesia physodes \N \N \N \N \N 96922 M.oleifera Malania Malania oleifera \N \N \N \N \N 96923 A.2000/154 Anthericum Anthericum sp. Weigend & Weigend 2000/154 \N \N \N \N \N 96924 A.chapaensis Aralia Aralia chapaensis \N \N \N \N \N 96925 E.Esp29 Elleanthus Elleanthus sp. Esp29 \N \N \N \N \N 96926 G.saundersiae Galtonia Galtonia saundersiae Transvaal chinkerinchee \N \N \N \N 96927 \N subspecies Senecio aegyptius subsp. aegyptius \N \N \N \N \N 96928 \N genus Emmenanthe \N \N \N \N \N 96929 D.epiphyllum Daviesia Daviesia epiphyllum \N \N \N \N \N 96930 E.gunnii Epacris Epacris gunnii \N \N \N \N \N 96931 P.arboreum Petrobium Petrobium arboreum \N \N \N \N \N 96932 S.amplifolium Syzygium Syzygium amplifolium \N \N \N \N \N 96933 S.mantiqueirae Sophronitis Sophronitis mantiqueirae \N \N \N \N \N 96934 P.floccosa Puya Puya floccosa \N \N \N \N \N 96935 P.siamica Passiflora Passiflora siamica \N \N \N \N \N 96936 V.bella Vatica Vatica bella \N \N \N \N \N 96937 R.mollis Rauvolfia Rauvolfia mollis \N \N \N \N \N 96938 R.pumila Rhamnus Rhamnus pumila \N \N \N \N \N 96939 P.pendula Plocama Plocama pendula \N \N \N \N \N 96940 \N genus Gratwickia \N \N \N \N \N 96941 B.malaccensis Burkillanthus Burkillanthus malaccensis \N \N \N \N \N 96942 M.lupulina Medicago Medicago lupulina \N \N \N \N \N 96943 N.pubescens Nymphaea Nymphaea pubescens \N \N \N \N \N 96944 D.ciliatum Dipcadi Dipcadi ciliatum \N \N \N \N \N 96945 \N genus Sondottia \N \N \N \N \N 96946 \N genus Mascarenhasia \N \N \N \N \N 96947 A.fetisowii Allium Allium fetisowii \N \N \N \N \N 96948 G.dasytylis Gomesa Gomesa dasytylis \N \N \N \N \N 96949 S.nigrans Syzygium Syzygium nigrans \N \N \N \N \N 96950 R.obtusata Richella Richella obtusata \N \N \N \N \N 96951 L.krapfii Laserpitium Laserpitium krapfii \N \N \N \N \N 96952 \N varietas Aerangis ellisii var. grandiflora \N \N \N \N \N 96953 S.albotomentosa Stachys Stachys albotomentosa \N \N \N \N \N 96954 U.sulcata Uncinia Uncinia sulcata \N \N \N \N \N 96955 T.SH-2010 Thymus Thymus sp. SH-2010 \N \N \N \N \N 96956 C.pallens Calyptranthes Calyptranthes pallens \N \N \N \N \N 96957 \N genus Lovoa \N \N \N \N \N 96958 D.platypetalum Disepalum Disepalum platypetalum \N \N \N \N \N 96959 T.pallidum Trifolium Trifolium pallidum \N \N \N \N \N 96960 L.dinteri Limeum Limeum dinteri \N \N \N \N \N 96961 L.depressa Lantana Lantana depressa \N \N \N \N \N 96962 M.pertinax Maytenus Maytenus pertinax \N \N \N \N \N 96963 T.shuttleworthii Typha Typha shuttleworthii \N \N \N \N \N 96964 \N genus Haptotrichion \N \N \N \N \N 96965 C.umbellata Caralluma Caralluma umbellata \N \N \N \N \N 96966 S.drummondii Sarracenia Sarracenia drummondii \N \N \N \N \N 96967 K.malaccensis Koompassia Koompassia malaccensis \N \N \N \N \N 96968 T.longifolia Tonduzia Tonduzia longifolia \N \N \N \N \N 96969 G.19040 Greigia Greigia sp. Grant 19040 \N \N \N \N \N 96970 B.integrifolia Bauhinia Bauhinia integrifolia \N \N \N \N \N 96971 I.soulieana Impatiens Impatiens soulieana \N \N \N \N \N 96972 V.orcuttiana Verbena Verbena orcuttiana \N \N \N \N \N 96973 P.nitidifolium Protium Protium nitidifolium \N \N \N \N \N 96974 S.hemsleyanum Sedum Sedum hemsleyanum \N \N \N \N \N 96975 L.solanagrorum Lupinus Lupinus solanagrorum \N \N \N \N \N 96976 P.minutalis Pleurothallis Pleurothallis minutalis \N \N \N \N \N 96977 A.kwangsiensis Alpinia Alpinia kwangsiensis \N \N \N \N \N 96978 \N subspecies Silene acaulis subsp. bryoides \N \N \N \N \N 96979 E.annuus Euryops Euryops annuus \N \N \N \N \N 96980 O.valida Orbea Orbea valida \N \N \N \N \N 96981 C.vitifolius Croton Croton vitifolius \N \N \N \N \N 96982 \N subspecies Helictotrichon hookeri subsp. schellianum \N \N \N \N \N 96983 P.puberulum Piper Piper puberulum \N \N \N \N \N 96984 A.hispida Acrotome Acrotome hispida \N \N \N \N \N 96985 H.carnosa Heliophila Heliophila carnosa \N \N \N \N \N 96986 P.caulescens Potentilla Potentilla caulescens \N \N \N \N \N 96987 \N genus Aspasia \N \N \N \N \N 96988 G.angustifolia Guichenotia Guichenotia angustifolia \N \N \N \N \N 96989 \N genus Saxifragopsis \N \N \N \N \N 96990 C.5669 Cervantesia Cervantesia sp. Weigend 5669 \N \N \N \N \N 96991 D.espiritusanctensis Dolichoura Dolichoura espiritusanctensis \N \N \N \N \N 96992 \N genus Lobivia \N \N \N \N \N 96993 S.paludosus Schoenus Schoenus paludosus \N \N \N \N \N 96994 N.retusa Nitraria Nitraria retusa \N \N \N \N \N 96995 P.nitida Passiflora Passiflora nitida \N \N \N \N \N 96996 O.tomentosa Oxalis Oxalis tomentosa \N \N \N \N \N 96997 R.uvariifolium Rhododendron Rhododendron uvariifolium \N \N \N \N \N 96998 D.purpureobracteatus Didymocarpus Didymocarpus purpureobracteatus \N \N \N \N \N 96999 \N genus Camptandra \N \N \N \N \N 97000 S.africana Salvia Salvia africana \N \N \N \N \N 97001 V.stagnina Viola Viola stagnina \N \N \N \N \N 97002 \N tribe Cheiloseae \N \N \N \N \N 97003 \N subspecies Oenothera elata subsp. elata \N \N \N \N \N 97004 R.weyrichii Rhododendron Rhododendron weyrichii \N \N \N \N \N 97005 S.amazonicum Schizolobium Schizolobium amazonicum \N \N \N \N \N 97006 R.crithmifolia Rumia Rumia crithmifolia \N \N \N \N \N 97007 \N genus Restrepia \N \N \N \N \N 97008 G.wallichii Gomphostemma Gomphostemma wallichii \N \N \N \N \N 97009 C.pumilum Craterostigma Craterostigma pumilum \N \N \N \N \N 97010 M.MA19 Microtis Microtis aff. angusii MA19 \N \N \N \N \N 97011 \N varietas Mimosa albida var. willdenowii \N \N \N \N \N 97012 D.spinosa Drypis Drypis spinosa \N \N \N \N \N 97013 M.weberbaueri Mimosa Mimosa weberbaueri \N \N \N \N \N 97014 D.stelechantha Duguetia Duguetia stelechantha \N \N \N \N \N 97015 \N subspecies Helichrysum italicum subsp. siculum \N \N \N \N \N 97016 I.cardenasianum Iochroma Iochroma cardenasianum \N \N \N \N \N 97017 H.gabonii Hua Hua gabonii \N \N \N \N \N 97018 \N genus Neoleroya \N \N \N \N \N 97019 R.ovale Ruizodendron Ruizodendron ovale \N \N \N \N \N 97020 L.pachylepis Lithocarpus Lithocarpus pachylepis \N \N \N \N \N 97021 S.asprella Sidalcea Sidalcea asprella \N \N \N \N \N 97022 L.yunnanensis Luculia Luculia yunnanensis \N \N \N \N \N 97023 L.acutangula Luffa Luffa acutangula angled luffa,ribbed gourd,ribbed luffa,ridged gourd,silky gourd,singkwa towel gourd \N \N \N \N 97024 \N varietas Allium wallichii var. wallichii \N \N \N \N \N 97025 \N genus Euchile \N \N \N \N \N 97026 D.wyattiana Daviesia Daviesia wyattiana \N \N \N \N \N 97027 H.minor Hemerocallis Hemerocallis minor \N \N \N \N \N 97028 N.23249 Nepeta Nepeta sp. Assadi 23249 \N \N \N \N \N 97029 \N varietas Zeugites americanus var. pringlei \N \N \N \N \N 97030 M.tonduzii Miconia Miconia tonduzii \N \N \N \N \N 97031 C.australe Castanospermum Castanospermum australe Australian chestnut,Moreton Bay chestnut \N \N \N \N 97032 T.virgatum Thalictrum Thalictrum virgatum \N \N \N \N \N 97033 C.stylosus Chrysothamnus Chrysothamnus stylosus resinbush \N \N \N \N 97034 G.speciosus Gladiolus Gladiolus speciosus \N \N \N \N \N 97035 A.chrysostachys Astragalus Astragalus chrysostachys \N \N \N \N \N 97036 E.chinensis Elaeocarpus Elaeocarpus chinensis \N \N \N \N \N 97037 C.nariniana Corydalis Corydalis nariniana \N \N \N \N \N 97038 O.sarlinii Ochrothallus Ochrothallus sarlinii \N \N \N \N \N 97039 H.aristata Hilliardiella Hilliardiella aristata \N \N \N \N \N 97040 M.cnide Malpighia Malpighia cnide \N \N \N \N \N 97041 B.pauciradiata Baileya Baileya pauciradiata \N \N \N \N \N 97042 N.'Kosobe' Nepenthes Nepenthes sp. 'Kosobe' \N \N \N \N \N 97043 \N genus Gyrandra \N \N \N \N \N 97044 \N subspecies Miscanthus sinensis subsp. sinensis \N \N \N \N \N 97045 \N genus Solanecio \N \N \N \N \N 97046 A.breviflorum Androstephium Androstephium breviflorum \N \N \N \N \N 97047 \N genus Sandoricum \N \N \N \N \N 97048 \N varietas Dendrobium speciosum var. pedunculatum \N \N \N \N \N 97049 C.bungeana Cousinia Cousinia bungeana \N \N \N \N \N 97050 \N genus Osmitopsis \N \N \N \N \N 97051 A.ilicifolia Acanthomintha Acanthomintha ilicifolia \N \N \N \N \N 97052 P.polychaete Polystachya Polystachya polychaete \N \N \N \N \N 97053 S.williamsii Silene Silene williamsii \N \N \N \N \N 97054 D.tripetaloides Disa Disa tripetaloides \N \N \N \N \N 97055 S.stoechadiformis Senecio Senecio stoechadiformis \N \N \N \N \N 97056 S.treleasei Stenocereus Stenocereus treleasei \N \N \N \N \N 97057 A.candida Asclepias Asclepias candida \N \N \N \N \N 97058 M.heterophylla Machaeranthera Machaeranthera heterophylla \N \N \N \N \N 97059 \N genus Neobuchia \N \N \N \N \N 97060 G.umbraculiformis Geonoma Geonoma umbraculiformis \N \N \N \N \N 97061 \N genus Etaballia \N \N \N \N \N 97062 S.dolichopodum Sinocarum Sinocarum dolichopodum \N \N \N \N \N 97063 F.melanopsis Festuca Festuca melanopsis \N \N \N \N \N 97064 D.longicornis Diascia Diascia longicornis \N \N \N \N \N 97065 C.polytimetica Cousinia Cousinia polytimetica \N \N \N \N \N 97066 M.mexicana Metcalfia Metcalfia mexicana \N \N \N \N \N 97067 P.humile Prionosciadium Prionosciadium humile \N \N \N \N \N 97068 \N genus Psoralea \N \N \N \N \N 97069 A.spicata Aletris Aletris spicata \N \N \N \N \N 97070 C.hians Chenopodium Chenopodium hians \N \N \N \N \N 97071 V.lanosa Veronica Veronica lanosa \N \N \N \N \N 97072 G.striata Grevillea Grevillea striata \N \N \N \N \N 97073 A.capensis Atalaya Atalaya capensis \N \N \N \N \N 97074 C.lacera Castilleja Castilleja lacera \N \N \N \N \N 97075 R.feddei Rhododendron Rhododendron feddei \N \N \N \N \N 97076 F.korshinskyi Ferula Ferula korshinskyi \N \N \N \N \N 97077 L.amoi Linaria Linaria amoi \N \N \N \N \N 97078 O.recta Olmeca Olmeca recta \N \N \N \N \N 97079 E.BG-2008b Epimedium Epimedium sp. BG-2008b \N \N \N \N \N 97080 M.alba Manettia Manettia alba \N \N \N \N \N 97081 \N varietas Gaultheria griffithiana var. insignis \N \N \N \N \N 97082 \N subspecies Calystegia sepium subsp. sepium \N \N \N \N \N 97083 T.porphyrostephanum Tanacetum Tanacetum porphyrostephanum \N \N \N \N \N 97084 W.filifera Washingtonia Washingtonia filifera \N \N \N \N \N 97085 D.longirachis Dendrochilum Dendrochilum longirachis \N \N \N \N \N 97086 \N genus Daphnandra \N \N \N \N \N 97087 H.longipes Heliopsis Heliopsis longipes \N \N \N \N \N 97088 D.anthemoides Daveaua Daveaua anthemoides \N \N \N \N \N 97089 P.violoides Polygala Polygala violoides \N \N \N \N \N 97090 C.schippii Chamguava Chamguava schippii \N \N \N \N \N 97091 C.toletana Centaurea Centaurea toletana \N \N \N \N \N 97092 P.georgei Podolepis Podolepis georgei \N \N \N \N \N 97093 D.salicifolia Debregeasia Debregeasia salicifolia \N \N \N \N \N 97094 P.lorenciana Psychotria Psychotria lorenciana \N \N \N \N \N 97095 M.radicans Mesanthemum Mesanthemum radicans \N \N \N \N \N 97096 O.biflora Ononis Ononis biflora \N \N \N \N \N 97097 F.pennsylvanica Fraxinus Fraxinus pennsylvanica green ash \N \N \N \N 97098 C.dependens Cirrhaea Cirrhaea dependens \N \N \N \N \N 97099 S.uncigerum Sparattanthelium Sparattanthelium uncigerum \N \N \N \N \N 97100 \N genus Mortonia \N \N \N \N \N 97101 I.costatum Indigastrum Indigastrum costatum \N \N \N \N \N 97102 D.coccinum Diplodium Diplodium coccinum \N \N \N \N \N 97103 \N genus Rhachicallis \N \N \N \N \N 97104 \N genus Dolianthus \N \N \N \N \N 97105 E.deplanchei Eucarpha Eucarpha deplanchei \N \N \N \N \N 97106 C.setigera Conostylis Conostylis setigera \N \N \N \N \N 97107 C.47 Corchorus Corchorus sp. Moeaha 47 \N \N \N \N \N 97108 P.tatarinowii Polygala Polygala tatarinowii \N \N \N \N \N 97109 \N genus Ravenea \N \N \N \N \N 97110 R.himalense Ribes Ribes himalense \N \N \N \N \N 97111 R.elata Rehmannia Rehmannia elata \N \N \N \N \N 97112 C.6878 Cyphostemma Cyphostemma sp. RG 6878 \N \N \N \N \N 97113 P.parviflorum Platymiscium Platymiscium parviflorum \N \N \N \N \N 97114 V.menthifolia Verbena Verbena menthifolia \N \N \N \N \N 97115 S.porrigentiformis Sorbus Sorbus porrigentiformis \N \N \N \N \N 97116 T.pendula Trichosanthes Trichosanthes pendula \N \N \N \N \N 97117 H.rosea Hohenbergia Hohenbergia rosea \N \N \N \N \N 97118 G.martii Galactia Galactia martii \N \N \N \N \N 97119 C.betulifolia Campanula Campanula betulifolia \N \N \N \N \N 97120 C.microcarpum Chondropetalum Chondropetalum microcarpum \N \N \N \N \N 97121 R.sericeus Ranunculus Ranunculus sericeus \N \N \N \N \N 97122 C.macrosporum Chlorophytum Chlorophytum macrosporum \N \N \N \N \N 97123 S.3040 Salacia Salacia sp. Archer et al. 3040 \N \N \N \N \N 97124 A.matiensis Arachis Arachis matiensis \N \N \N \N \N 97125 A.parvula Arabis Arabis parvula \N \N \N \N \N 97126 D.glomerulata Dioscorea Dioscorea glomerulata \N \N \N \N \N 97127 C.micrantherus Chrysopogon Chrysopogon micrantherus \N \N \N \N \N 97128 B.angustissimum Bupleurum Bupleurum angustissimum \N \N \N \N \N 97129 E.pyrocarpa Eucalyptus Eucalyptus pyrocarpa \N \N \N \N \N 97130 S.SR-2010 Schotia Schotia aff. afra SR-2010 \N \N \N \N \N 97131 R.nathaliae Ramonda Ramonda nathaliae \N \N \N \N \N 97132 R.alphonsi Reseda Reseda alphonsi \N \N \N \N \N 97133 M.quadrilocularis Melicope Melicope quadrilocularis \N \N \N \N \N 97134 G.walla Gyrinops Gyrinops walla \N \N \N \N \N 97135 E.epithymoides Euphorbia Euphorbia epithymoides \N \N \N \N \N 97136 C.sarcocaulis Crassula Crassula sarcocaulis \N \N \N \N \N 97137 \N genus Chromolaena \N \N \N \N \N 97138 A.maritima Ambrosia Ambrosia maritima \N \N \N \N \N 97139 \N subspecies Ourisia macrophylla subsp. lactea \N \N \N \N \N 97140 D.milliganii Dracophyllum Dracophyllum milliganii \N \N \N \N \N 97141 N.spergularioides Nolana Nolana spergularioides \N \N \N \N \N 97142 S.grandifolia Strombosia Strombosia grandifolia \N \N \N \N \N 97143 N.turritella Nototriche Nototriche turritella \N \N \N \N \N 97144 C.oporinoides Crepis Crepis oporinoides \N \N \N \N \N 97145 L.maximum Lithophragma Lithophragma maximum \N \N \N \N \N 97146 M.maracasensis Manihot Manihot maracasensis \N \N \N \N \N 97147 B.floribunda Batesia Batesia floribunda \N \N \N \N \N 97148 I.corallina Ilex Ilex corallina \N \N \N \N \N 97149 \N genus Turnera \N \N \N \N \N 97150 C.enneaphyllos Cardamine Cardamine enneaphyllos \N \N \N \N \N 97151 \N varietas Potentilla wheeleri var. paupercula \N \N \N \N \N 97152 T.phaeantha Tephroseris Tephroseris phaeantha \N \N \N \N \N 97153 S.carroensis Senecio Senecio carroensis \N \N \N \N \N 97154 \N tribe Datureae \N \N \N \N \N 97155 M.pubescens Morella Morella pubescens \N \N \N \N \N 97156 S.disciformis Strombocactus Strombocactus disciformis \N \N \N \N \N 97157 C.antonina Collinsia Collinsia antonina \N \N \N \N \N 97158 O.bosseri Odosicyos Odosicyos bosseri \N \N \N \N \N 97159 L.SH-2010 Luffa Luffa sp. SH-2010 \N \N \N \N \N 97160 F.chiisanensis Fraxinus Fraxinus chiisanensis \N \N \N \N \N 97161 S.icaja Strychnos Strychnos icaja \N \N \N \N \N 97162 K.revoilii Kelleronia Kelleronia revoilii \N \N \N \N \N 97163 \N genus Protea \N \N \N \N \N 97164 P.chamaepeuce Ptilostemon Ptilostemon chamaepeuce \N \N \N \N \N 97165 C.aggregata Centaurea Centaurea aggregata \N \N \N \N \N 97166 A.lewisii Adenolinum Adenolinum lewisii \N \N \N \N \N 97167 P.oreophila Pimelea Pimelea oreophila \N \N \N \N \N 97168 I.dumosa Ilex Ilex dumosa \N \N \N \N \N 97169 P.favieri Phyllanthus Phyllanthus favieri \N \N \N \N \N 97170 C.melanium Cuphea Cuphea melanium \N \N \N \N \N 97171 K.monardii Klasea Klasea monardii \N \N \N \N \N 97172 M.4581 Manihot Manihot sp. Allem 4581 \N \N \N \N \N 97173 A.brevicaulis Ardisia Ardisia brevicaulis \N \N \N \N \N 97174 G.truncatum Gastrolobium Gastrolobium truncatum \N \N \N \N \N 97175 G.commersoniana Gagnebina Gagnebina commersoniana \N \N \N \N \N 97176 M.compactiflorus Melocalamus Melocalamus compactiflorus \N \N \N \N \N 97177 A.alpina Arabis Arabis alpina alpine rockcress,gray rockcress \N \N \N \N 97178 Y.jaliscensis Yucca Yucca jaliscensis \N \N \N \N \N 97179 V.retrorsa Valeriana Valeriana retrorsa \N \N \N \N \N 97180 B.humahuaquensis Barbaceniopsis Barbaceniopsis humahuaquensis \N \N \N \N \N 97181 P.15140 Pseudoselago Pseudoselago sp. RBGK 15140 \N \N \N \N \N 97182 T.plumosa Tillandsia Tillandsia plumosa \N \N \N \N \N 97183 C.guianensis Carapa Carapa guianensis crabwood \N \N \N \N 97184 \N genus Brylkinia \N \N \N \N \N 97185 F.nodosa Ficus Ficus nodosa \N \N \N \N \N 97186 R.manganjae Rothmannia Rothmannia manganjae \N \N \N \N \N 97187 C.tetrandra Celtis Celtis tetrandra \N \N \N \N \N 97188 T.trifaria Tristicha Tristicha trifaria \N \N \N \N \N 97189 A.cornutum Allium Allium cornutum \N \N \N \N \N 97190 \N varietas Mimosa adenophylla var. mitis \N \N \N \N \N 97191 X.perrieri Xerosicyos Xerosicyos perrieri \N \N \N \N \N 97192 D.menziesii Delphinium Delphinium menziesii \N \N \N \N \N 97193 A.occidentalis Anticlea Anticlea occidentalis \N \N \N \N \N 97194 P.ferulacea Prangos Prangos ferulacea \N \N \N \N \N 97195 \N varietas Anisacanthus quadrifidus var. wrightii \N \N \N \N \N 97196 A.mauritiana Aristida Aristida mauritiana \N \N \N \N \N 97197 O.parvifolius Ochrocarpos Ochrocarpos parvifolius \N \N \N \N \N 97198 \N genus Oreoxis \N \N \N \N \N 97199 C.angustatum Cyrtochilum Cyrtochilum angustatum \N \N \N \N \N 97200 C.galioides Cunila Cunila galioides \N \N \N \N \N 97201 C.hirticalyx Coussarea Coussarea hirticalyx \N \N \N \N \N 97202 I.prolongoi Ionopsidium Ionopsidium prolongoi \N \N \N \N \N 97203 P.otaviense Pelargonium Pelargonium otaviense \N \N \N \N \N 97204 M.resimoides Miconia Miconia resimoides \N \N \N \N \N 97205 \N genus Neorautanenia \N \N \N \N \N 97206 M.2718 Maxillaria Maxillaria cf. nubigena Whitten 2718 \N \N \N \N \N 97207 C.myanthum Cyrtochilum Cyrtochilum myanthum \N \N \N \N \N 97208 \N genus Zippelia \N \N \N \N \N 97209 A.hatsushimae Asarum Asarum hatsushimae \N \N \N \N \N 97210 S.altissimum Sisymbrium Sisymbrium altissimum tall rocket \N \N \N \N 97211 \N genus Acer maple trees \N \N \N \N 97212 \N genus Xizangia \N \N \N \N \N 97213 G.aquifolium Grevillea Grevillea aquifolium \N \N \N \N \N 97214 M.crassicaulis Monsonia Monsonia crassicaulis \N \N \N \N \N 97215 V.hulkeana Hebe Veronica hulkeana \N \N \N \N \N 97216 C.muirii Calopsis Calopsis muirii \N \N \N \N \N 97217 S.williamsii Sambucus Sambucus williamsii \N \N \N \N \N 97218 P.gilletii Pouchetia Pouchetia gilletii \N \N \N \N \N 97219 R.crenata Rinorea Rinorea crenata \N \N \N \N \N 97220 L.scariosa Liatris Liatris scariosa \N \N \N \N \N 97221 E.helenae Euphorbia Euphorbia helenae \N \N \N \N \N 97222 Z.dissitum Zanthoxylum Zanthoxylum dissitum \N \N \N \N \N 97223 H.ciliatisepala Habenaria Habenaria ciliatisepala \N \N \N \N \N 97224 A.praetexta Adelobotrys Adelobotrys praetexta \N \N \N \N \N 97225 P.lineare Ptychosperma Ptychosperma lineare \N \N \N \N \N 97226 A.epiglottis Astragalus Astragalus epiglottis \N \N \N \N \N 97227 C.xanthope Corymbia Corymbia xanthope \N \N \N \N \N 97228 \N tribe Lepidocaryeae \N \N \N \N \N 97229 G.turneri Gaillardia Gaillardia turneri \N \N \N \N \N 97230 D.platyptera Dodonaea Dodonaea platyptera \N \N \N \N \N 97231 S.monticola Subularia Subularia monticola \N \N \N \N \N 97232 C.glauca Carinavalva Carinavalva glauca \N \N \N \N \N 97233 \N genus Chlamydocardia \N \N \N \N \N 97234 C.cateniformis Cedrelinga Cedrelinga cateniformis \N \N \N \N \N 97235 \N subspecies Cytisus fontanesii subsp. plumosus \N \N \N \N \N 97236 L.JBM Lemna Lemna sp. JBM \N \N \N \N \N 97237 M.bella Moraea Moraea bella \N \N \N \N \N 97238 B.betsimisaraka Begonia Begonia betsimisaraka \N \N \N \N \N 97239 C.dipsaceus Cucumis Cucumis dipsaceus \N \N \N \N \N 97240 \N genus Nepsera \N \N \N \N \N 97241 A.282172 Alternanthera Alternanthera sp. AK 282172 \N \N \N \N \N 97242 S.schizophylla Syagrus Syagrus schizophylla Arikury palm \N \N \N \N 97243 M.smithii Microcoelia Microcoelia smithii \N \N \N \N \N 97244 \N genus Alibertia \N \N \N \N \N 97245 A.tuberculatus Amaranthus Amaranthus tuberculatus \N \N \N \N \N 97246 P.delavayana Pararuellia Pararuellia delavayana \N \N \N \N \N 97247 C.jepsonii Ceanothus Ceanothus jepsonii \N \N \N \N \N 97248 \N genus Poikilospermum \N \N \N \N \N 97249 T.uniflora Tulipa Tulipa uniflora \N \N \N \N \N 97250 R.viscosum Ribes Ribes viscosum \N \N \N \N \N 97251 \N subspecies Pachycarpus grantii subsp. marroninus \N \N \N \N \N 97252 V.primuliflora Vitaliana Vitaliana primuliflora \N \N \N \N \N 97253 T.petiolatum Trillium Trillium petiolatum \N \N \N \N \N 97254 \N varietas Cleome foliosa var. foliosa \N \N \N \N \N 97255 S.borneensis Scyphostegia Scyphostegia borneensis \N \N \N \N \N 97256 L.terrestris Lysimachia Lysimachia terrestris \N \N \N \N \N 97257 \N subspecies Erica pillansii subsp. pillansii \N \N \N \N \N 97258 I.1776 Indigofera Indigofera sp. Wilson & Palmer 1776 \N \N \N \N \N 97259 G.echinata Glycyrrhiza Glycyrrhiza echinata hedgehog licorice \N \N \N \N 97260 K.acuminata Kirkia Kirkia acuminata \N \N \N \N \N 97261 M.coccinea Masdevallia Masdevallia coccinea \N \N \N \N \N 97262 S.acaule Solanum Solanum acaule \N \N \N \N \N 97263 \N subspecies Potentilla supina subsp. paradoxa \N \N \N \N \N 97264 T.spelta Triticum Triticum spelta spelt \N \N \N \N 97265 V.bryoniifolia Vitis Vitis bryoniifolia \N \N \N \N \N 97266 P.phillipsiana Poa Poa phillipsiana \N \N \N \N \N 97267 D.970 Diospyros Diospyros sp. RNF 970 \N \N \N \N \N 97268 C.fragilis Campanula Campanula fragilis \N \N \N \N \N 97269 N.50-2006 Noronhia Noronhia sp. Besnard 50-2006 \N \N \N \N \N 97270 \N genus Platysace \N \N \N \N \N 97271 D.melocarpa Diospyros Diospyros melocarpa \N \N \N \N \N 97272 A.haemorrhoidalis Autonoe Autonoe haemorrhoidalis \N \N \N \N \N 97273 E.amplifolium Erythroxylum Erythroxylum amplifolium \N \N \N \N \N 97274 A.stenophylla Asclepias Asclepias stenophylla \N \N \N \N \N 97275 L.AAA-2004 Lysimachia Lysimachia cf. japonica AAA-2004 \N \N \N \N \N 97276 N.looseri Nassauvia Nassauvia looseri \N \N \N \N \N 97277 M.nervosa Marcgravia Marcgravia nervosa \N \N \N \N \N 97278 M.benguetensis Merrittia Merrittia benguetensis \N \N \N \N \N 97279 M.chontalensis Masdevallia Masdevallia chontalensis \N \N \N \N \N 97280 \N genus Neoholstia \N \N \N \N \N 97281 C.02-96 Chaetanthera Chaetanthera cf. glabrata Hershkovitz 02-96 \N \N \N \N \N 97282 \N tribe Gaiadendreae \N \N \N \N \N 97283 D.anethifolia Ducrosia Ducrosia anethifolia \N \N \N \N \N 97284 \N subspecies Thinopyrum intermedium subsp. barbulatum \N \N \N \N \N 97285 P.gracile Porophyllum Porophyllum gracile \N \N \N \N \N 97286 D.8366 Drymonia Drymonia sp. Clark 8366 \N \N \N \N \N 97287 \N genus Tachigali \N \N \N \N \N 97288 C.helodes Carex Carex helodes \N \N \N \N \N 97289 A.rego Arrabidaea Arrabidaea rego \N \N \N \N \N 97290 P.nepalensis Persicaria Persicaria nepalensis \N \N \N \N \N 97291 F.polyantha Fergania Fergania polyantha \N \N \N \N \N 97292 C.hybridum Chenopodium Chenopodium hybridum sowbane \N \N \N \N 97293 \N genus Cobaea \N \N \N \N \N 97294 H.JD7682 Hydriastele Hydriastele aff. brassii JD7682 \N \N \N \N \N 97295 C.reticulatum Cicer Cicer arietinum x Cicer reticulatum \N \N \N \N \N 97296 M.robin-fosteri Macrocarpaea Macrocarpaea robin-fosteri \N \N \N \N \N 97297 K.longiloba Krasnovia Krasnovia longiloba \N \N \N \N \N 97298 \N genus Archibaccharis \N \N \N \N \N 97299 M.racemosum Munroidendron Munroidendron racemosum \N \N \N \N \N 97300 H.cirromitrata Hemsleya Hemsleya cirromitrata \N \N \N \N \N 97301 \N tribe Adelieae \N \N \N \N \N 97302 H.vulgaris Hippuris Hippuris vulgaris \N \N \N \N \N 97303 C.heimii Coffea Coffea heimii \N \N \N \N \N 97304 F.glumosa Festuca Festuca glumosa \N \N \N \N \N 97305 A.confusus Acianthus Acianthus confusus \N \N \N \N \N 97306 R.minima Rohrbachia Rohrbachia minima \N \N \N \N \N 97307 \N genus Chironia \N \N \N \N \N 97308 H.caesium Hieracium Hieracium caesium \N \N \N \N \N 97309 A.stipularis Atractocarpus Atractocarpus stipularis \N \N \N \N \N 97310 D.perrieri Domohinea Domohinea perrieri \N \N \N \N \N 97311 A.yamazakii Aconitum Aconitum yamazakii \N \N \N \N \N 97312 C.157707 Cyrtandra Cyrtandra cf. hawaiensis Roalson 157707 \N \N \N \N \N 97313 I.wituensis Indigofera Indigofera wituensis \N \N \N \N \N 97314 C.petrophilum Combretum Combretum petrophilum \N \N \N \N \N 97315 P.anceps Poa Poa anceps \N \N \N \N \N 97316 A.poilanei Altingia Altingia poilanei \N \N \N \N \N 97317 M.243 Malaxis Malaxis sp. Wiegend 243 \N \N \N \N \N 97318 M.rubescens Macradenia Macradenia rubescens \N \N \N \N \N 97319 \N subspecies Lamium garganicum subsp. garganicum \N \N \N \N \N 97320 P.chilensis Pintoa Pintoa chilensis \N \N \N \N \N 97321 \N genus Cabreraea \N \N \N \N \N 97322 V.copelandii Veronica Veronica copelandii \N \N \N \N \N 97323 P.fasciculata Pultenaea Pultenaea fasciculata \N \N \N \N \N 97324 \N forma Sasa palmata f. nebulosa \N \N \N \N \N 97325 I.suffruticosa Indigofera Indigofera suffruticosa \N \N \N \N \N 97326 Y.longifolius Ypsilopus Ypsilopus longifolius \N \N \N \N \N 97327 E.medicaginea Euphorbia Euphorbia medicaginea \N \N \N \N \N 97328 P.gayanum Pittosporum Pittosporum gayanum \N \N \N \N \N 97329 A.austrocapense Androcymbium Androcymbium austrocapense \N \N \N \N \N 97330 A.motor Allium Allium motor \N \N \N \N \N 97331 \N subspecies Rafnia schlechteriana subsp. capensis \N \N \N \N \N 97332 \N genus Penianthus \N \N \N \N \N 97333 E.intisy Euphorbia Euphorbia intisy \N \N \N \N \N 97334 D.spinosa Diphysa Diphysa spinosa \N \N \N \N \N 97335 V.grahamii Viola Viola grahamii \N \N \N \N \N 97336 P.nitidus Penstemon Penstemon nitidus \N \N \N \N \N 97337 M.balansae Michelia Michelia balansae \N \N \N \N \N 97338 O.70382) Oreobolus Oreobolus sp. 1 (Laegaard 70382) \N \N \N \N \N 97339 P.odorata Protea Protea odorata \N \N \N \N \N 97340 A.praevenosa Aristolochia Aristolochia praevenosa \N \N \N \N \N 97341 R.hongnoensis Rubus Rubus hongnoensis \N \N \N \N \N 97342 \N genus Dubouzetia \N \N \N \N \N 97343 P.missionis Phyllanthus Phyllanthus missionis \N \N \N \N \N 97344 C.umbrosa Cousinia Cousinia umbrosa \N \N \N \N \N 97345 T.rosea Tabebuia Tabebuia rosea \N \N \N \N \N 97346 B.xochipalensis Bursera Bursera xochipalensis \N \N \N \N \N 97347 D.spicata Diodia Diodia spicata \N \N \N \N \N 97348 O.luteum Oncidium Oncidium luteum \N \N \N \N \N 97349 \N genus Carronia \N \N \N \N \N 97350 A.latifolia Aristida Aristida latifolia \N \N \N \N \N 97351 E.rosulatum Echium Echium rosulatum \N \N \N \N \N 97352 E.voethii Epipactis Epipactis voethii \N \N \N \N \N 97353 C.broomeana Chionanthus Chionanthus broomeana \N \N \N \N \N 97354 M.modesta Mimosa Mimosa modesta \N \N \N \N \N 97355 L.chinensis Leptochloa Leptochloa chinensis \N \N \N \N \N 97356 P.162 Phyllanthus Phyllanthus cf. decipiens Hoffmann et al. 162 \N \N \N \N \N 97357 M.gloriensis Magnolia Magnolia gloriensis \N \N \N \N \N 97358 K.jala Korthalsia Korthalsia jala \N \N \N \N \N 97359 \N varietas Myrceugenia ovata var. regnelliana \N \N \N \N \N 97360 \N genus Parquetina \N \N \N \N \N 97361 P.letouzeyi Psychotria Psychotria letouzeyi \N \N \N \N \N 97362 P.tinctorium Pterocymbium Pterocymbium tinctorium \N \N \N \N \N 97363 A.rigida Artemisia Artemisia rigida \N \N \N \N \N 97364 \N genus Kandaharia \N \N \N \N \N 97365 \N genus Adipe \N \N \N \N \N 97366 S.lesteri Solanum Solanum lesteri \N \N \N \N \N 97367 E.grammata Euphorbia Euphorbia grammata \N \N \N \N \N 97368 N.tenuis Nassella Nassella tenuis \N \N \N \N \N 97369 \N tribe Malouetieae \N \N \N \N \N 97370 S.mentagensis Silene Silene mentagensis \N \N \N \N \N 97371 P.amilis Portulaca Portulaca amilis \N \N \N \N \N 97372 C.lineata Clusia Clusia lineata \N \N \N \N \N 97373 M.reinwardtiana Mussaenda Mussaenda reinwardtiana \N \N \N \N \N 97374 \N genus Molopospermum \N \N \N \N \N 97375 C.pacificum Corispermum Corispermum pacificum \N \N \N \N \N 97376 W.cuspidata Wahlenbergia Wahlenbergia cuspidata \N \N \N \N \N 97377 M.SH-2010 Malaxis Malaxis sp. SH-2010 \N \N \N \N \N 97378 P.dolosa Poa Poa dolosa \N \N \N \N \N 97379 C.alliariifolia Campanula Campanula alliariifolia \N \N \N \N \N 97380 D.gayoides Dimorphosciadium Dimorphosciadium gayoides \N \N \N \N \N 97381 S.purpurea Schouwia Schouwia purpurea \N \N \N \N \N 97382 \N subspecies Vicia villosa subsp. pseudocracca \N \N \N \N \N 97383 \N genus Micrargeria \N \N \N \N \N 97384 D.montana Douglasia Douglasia montana \N \N \N \N \N 97385 T.variegatum Trifolium Trifolium variegatum \N \N \N \N \N 97386 H.prolificum Hypericum Hypericum prolificum \N \N \N \N \N 97387 B.94069 Buxus Buxus sp. Qiu 94069 \N \N \N \N \N 97388 A.congolensis Autranella Autranella congolensis \N \N \N \N \N 97389 \N genus Struthanthus \N \N \N \N \N 97390 R.fascicularis Rhynchospora Rhynchospora fascicularis \N \N \N \N \N 97391 R.splendens Rustia Rustia splendens \N \N \N \N \N 97392 L.coolgardiensis Lachnostachys Lachnostachys coolgardiensis \N \N \N \N \N 97393 \N genus Thecocarpus \N \N \N \N \N 97394 V.cuneata Vittadinia Vittadinia cuneata \N \N \N \N \N 97395 J.ekmanii Jacquemontia Jacquemontia ekmanii \N \N \N \N \N 97396 \N genus Rourea \N \N \N \N \N 97397 \N genus Astrococcus \N \N \N \N \N 97398 S.macrosema Swartzia Swartzia macrosema \N \N \N \N \N 97399 C.longifolia Callicarpa Callicarpa longifolia \N \N \N \N \N 97400 C.triflora Clusia Clusia triflora \N \N \N \N \N 97401 R.leptophylla Rauvolfia Rauvolfia leptophylla \N \N \N \N \N 97402 P.princeps Pandanus Pandanus princeps \N \N \N \N \N 97403 D.oliganthus Dendropanax Dendropanax oliganthus \N \N \N \N \N 97404 \N genus Erodium \N \N \N \N \N 97405 H.caucasigena Hedera Hedera caucasigena \N \N \N \N \N 97406 A.opaca Aspalathus Aspalathus opaca \N \N \N \N \N 97407 B.costata Betula Betula costata \N \N \N \N \N 97408 C.atrosquama Carex Carex atrosquama \N \N \N \N \N 97409 \N genus Ricinus \N \N \N \N \N 97410 M.verticillata Maytenus Maytenus verticillata \N \N \N \N \N 97411 A.jacquemontii Achnatherum Achnatherum jacquemontii \N \N \N \N \N 97412 \N varietas Arachis glabrata var. hagenbeckii \N \N \N \N \N 97413 \N genus Eubrachion \N \N \N \N \N 97414 P.japonica Pogonia Pogonia japonica \N \N \N \N \N 97415 \N subspecies Genista acanthoclada subsp. acanthoclada \N \N \N \N \N 97416 S.brachyantha Salvia Salvia brachyantha \N \N \N \N \N 97417 T.venosum Typhonium Typhonium venosum voodoo lily \N \N \N \N 97418 L.tenera Lobelia Lobelia tenera \N \N \N \N \N 97419 D.hoi Dendropanax Dendropanax hoi \N \N \N \N \N 97420 \N genus Laggera \N \N \N \N \N 97421 \N subspecies Discocactus zehntneri subsp. boomianus \N \N \N \N \N 97422 S.rogersii Sterculia Sterculia rogersii \N \N \N \N \N 97423 A.amurensis Adonis Adonis amurensis \N \N \N \N \N 97424 O.rosulata Oldenlandia Oldenlandia rosulata \N \N \N \N \N 97425 H.parviflora Houstonia Houstonia parviflora \N \N \N \N \N 97426 S.bracteata Saussurea Saussurea bracteata \N \N \N \N \N 97427 A.longiflorum Alangium Alangium longiflorum \N \N \N \N \N 97428 S.gracilis Stegostyla Stegostyla gracilis \N \N \N \N \N 97429 C.conzattii Castilleja Castilleja conzattii \N \N \N \N \N 97431 P.caracasanum Piper Piper caracasanum \N \N \N \N \N 97432 T.striatum Trifolium Trifolium striatum \N \N \N \N \N 97433 \N genus Tetrachne \N \N \N \N \N 97434 \N genus Anemopsis \N \N \N \N \N 97435 A.oblongifolia Acokanthera Acokanthera oblongifolia \N \N \N \N \N 97436 O.mossambicensis Ochna Ochna mossambicensis \N \N \N \N \N 97437 S.hierrensis Sonchus Sonchus hierrensis \N \N \N \N \N 97438 A.complanatus Astragalus Astragalus complanatus \N \N \N \N \N 97439 \N genus Henrya \N \N \N \N \N 97440 D.sinensis Dunnia Dunnia sinensis \N \N \N \N \N 97441 B.euryantha Bomarea Bomarea euryantha \N \N \N \N \N 97442 P.loefgrenii Philodendron Philodendron loefgrenii \N \N \N \N \N 97443 \N varietas Pomaria rubicunda var. hauthalii \N \N \N \N \N 97444 S.varians Sceletium Sceletium varians \N \N \N \N \N 97445 P.albenensis Primula Primula albenensis \N \N \N \N \N 97446 F.madagascariensis Fernandoa Fernandoa madagascariensis \N \N \N \N \N 97447 C.pulchella Cousinia Cousinia pulchella \N \N \N \N \N 97448 P.malaiana Pinanga Pinanga malaiana \N \N \N \N \N 97449 \N no rank Amygdaleae \N \N \N \N \N 97450 M.floribunda Malus Malus floribunda Japanese crab apple \N \N \N \N 97451 \N genus Menziesia \N \N \N \N \N 97452 P.murrayana Prunus Prunus murrayana \N \N \N \N \N 97453 S.decumbens Sagina Sagina decumbens \N \N \N \N \N 97454 T.351 unclassified Taraxacum Taraxacum sp. 351 \N \N \N \N \N 97455 C.blaisdellii Cardamine Cardamine blaisdellii \N \N \N \N \N 97456 A.patula Aulonemia Aulonemia patula \N \N \N \N \N 97457 \N varietas Convolvulus supinus var. supinus \N \N \N \N \N 97458 C.pumila Cyathodes Cyathodes pumila \N \N \N \N \N 97459 \N family Marantaceae prayer-plant family \N \N \N \N 97460 \N subspecies Reseda valentina subsp. almijarensis \N \N \N \N \N 97461 \N subfamily Cypripedioideae \N \N \N \N \N 97462 R.(BGM) Rheum Rheum cf. rhabarbarum (BGM) \N \N \N \N \N 97463 C.diae Carlina Carlina diae \N \N \N \N \N 97464 A.javanicus Aeschynanthus Aeschynanthus javanicus \N \N \N \N \N 97465 A.peronai Acer Acer x peronai \N \N \N \N \N 97466 S.parviflora Sibbaldia Sibbaldia parviflora \N \N \N \N \N 97467 A.aureus Ancylostemon Ancylostemon aureus \N \N \N \N \N 97468 T.94150 Tradescantia Tradescantia sp. Qiu 94150 \N \N \N \N \N 97469 J.ulicina Junellia Junellia ulicina \N \N \N \N \N 97470 B.desnottesii Brassica Brassica desnottesii \N \N \N \N \N 97471 \N genus Sloanea \N \N \N \N \N 97472 P.cocornanum Piper Piper cocornanum \N \N \N \N \N 97473 \N subspecies Protea caffra subsp. caffra \N \N \N \N \N 97474 S.uniseta Scabiosa Scabiosa uniseta \N \N \N \N \N 97475 E.somaliensis Erythroseris Erythroseris somaliensis \N \N \N \N \N 97476 G.discolor Greeniopsis Greeniopsis discolor \N \N \N \N \N 97477 \N genus Simarouba \N \N \N \N \N 97478 B.weiningensis Berberis Berberis weiningensis \N \N \N \N \N 97479 G.forrestii Gastrolobium Gastrolobium forrestii \N \N \N \N \N 97480 P.purpurea Prenanthes Prenanthes purpurea \N \N \N \N \N 97481 T.pluristachyus Thamnochortus Thamnochortus pluristachyus \N \N \N \N \N 97482 O.occidentalis Osmorhiza Osmorhiza occidentalis \N \N \N \N \N 97483 G.callistachys Gastrolobium Gastrolobium callistachys \N \N \N \N \N 97484 P.venulosum Pittosporum Pittosporum venulosum \N \N \N \N \N 97485 O.pusillus Oligochaetochilus Oligochaetochilus pusillus \N \N \N \N \N 97486 V.serrula Viola Viola serrula \N \N \N \N \N 97487 A.huaimi Astrocaryum Astrocaryum huaimi \N \N \N \N \N 97488 P.forrestii Primula Primula forrestii \N \N \N \N \N 97489 \N genus Rytidostylis \N \N \N \N \N 97490 A.00171 Aeschynanthus Aeschynanthus sp. 00171 \N \N \N \N \N 97491 G.maypurensis Guatteria Guatteria maypurensis \N \N \N \N \N 97492 S.aestivalis Strumaria Strumaria aestivalis \N \N \N \N \N 97493 \N genus Opilia \N \N \N \N \N 97494 C.s.n. Cynorkis Cynorkis sp. Bateman s.n. \N \N \N \N \N 97495 F.bracelinae Fuchsia Fuchsia bracelinae \N \N \N \N \N 97496 C.pinnatifida Crambe Crambe pinnatifida \N \N \N \N \N 97497 L.leonurus Leonotis Leonotis leonurus \N \N \N \N \N 97498 \N genus Serjania \N \N \N \N \N 97499 E.subapoda Euphorbia Euphorbia subapoda \N \N \N \N \N 97500 T.microcephalum Trifolium Trifolium microcephalum maiden clover \N \N \N \N 97501 \N genus Chimonobambusa \N \N \N \N \N 97502 \N varietas Peucedanum medicum var. gracile \N \N \N \N \N 97503 A.hamrinensis Anthemis Anthemis hamrinensis \N \N \N \N \N 97504 D.tentaculigera Dioscorea Dioscorea tentaculigera \N \N \N \N \N 97505 A.paniculatum Anodendron Anodendron paniculatum \N \N \N \N \N 97506 O.bicolor Ocotea Ocotea bicolor \N \N \N \N \N 97507 B.rabilii Begonia Begonia rabilii \N \N \N \N \N 97508 P.novoleonensis Phaseolus Phaseolus novoleonensis \N \N \N \N \N 97509 A.sclerophylla Annona Annona sclerophylla \N \N \N \N \N 97510 M.purpusii Mimosa Mimosa purpusii \N \N \N \N \N 97511 P.gladiolatus Phaseolus Phaseolus gladiolatus \N \N \N \N \N 97512 I.oerstediana Inga Inga oerstediana \N \N \N \N \N 97513 S.chlorocorys Satyrium Satyrium chlorocorys \N \N \N \N \N 97514 G.cissiformis Gomphogyne Gomphogyne cissiformis \N \N \N \N \N 97515 \N genus Catasetum \N \N \N \N \N 97516 C.austin-smithii Cayaponia Cayaponia austin-smithii \N \N \N \N \N 97517 \N family Tapisciaceae \N \N \N \N \N 97518 \N varietas Saintpaulia magungensis var. occidentalis \N \N \N \N \N 97519 O.diplobotrya Odontocarya Odontocarya diplobotrya \N \N \N \N \N 97520 B.FS650 Bulbophyllum Bulbophyllum aff. baronii FS650 \N \N \N \N \N 97521 P.rudgei Panicum Panicum rudgei \N \N \N \N \N 97522 P.grandifolia Pyrenacantha Pyrenacantha grandifolia \N \N \N \N \N 97523 \N genus Commersonia \N \N \N \N \N 97524 R.redieri Rhodanthemum Rhodanthemum redieri \N \N \N \N \N 97525 E.obliqua Erica Erica obliqua \N \N \N \N \N 97526 A.fraseri Abutilon Abutilon fraseri \N \N \N \N \N 97527 P.hirtellipetiolum Piper Piper hirtellipetiolum \N \N \N \N \N 97528 A.ciliolatum Androcymbium Androcymbium ciliolatum \N \N \N \N \N 97623 A.shiwogiku Ajania Ajania shiwogiku \N \N \N \N \N 97529 D.caerulea Dianella Dianella caerulea blueberry lily,spreading flax-lily \N \N \N \N 97530 \N genus Chascotheca \N \N \N \N \N 97531 C.jonthlaspi Clypeola Clypeola jonthlaspi \N \N \N \N \N 97532 M.excelsum Mildbraediodendron Mildbraediodendron excelsum \N \N \N \N \N 97533 \N genus Pristimera \N \N \N \N \N 97534 \N subspecies Navarretia leucocephala subsp. pauciflora \N \N \N \N \N 97535 \N genus Taeniatherum \N \N \N \N \N 97536 O.leucochilum Oncidium Oncidium leucochilum \N \N \N \N \N 97537 I.dzumacensis Ixora Ixora dzumacensis \N \N \N \N \N 97538 \N genus Lagarosiphon \N \N \N \N \N 97539 R.acuminatum Rhododendron Rhododendron acuminatum \N \N \N \N \N 97540 \N subspecies Tina striata subsp. parvifolia \N \N \N \N \N 97541 O.cultivar Oncidium Oncidium hybrid cultivar \N \N \N \N \N 97542 O.8343 Oncidium Oncidium sp. Hirtz 8343 \N \N \N \N \N 97543 \N genus Eremocaulon \N \N \N \N \N 97544 I.angustata Indigofera Indigofera angustata \N \N \N \N \N 97545 M.falcifolia Moraea Moraea falcifolia \N \N \N \N \N 97546 S.clarum Solanum Solanum clarum \N \N \N \N \N 97547 R.BAW-2010a Rulingia Rulingia sp. BAW-2010a \N \N \N \N \N 97548 T.ohsumiensis Tricyrtis Tricyrtis ohsumiensis \N \N \N \N \N 97549 \N genus Neochevalierodendron \N \N \N \N \N 97550 B.seravschanicum Bunium Bunium seravschanicum \N \N \N \N \N 97551 S.difficilis Saintpaulia Saintpaulia difficilis \N \N \N \N \N 97552 P.hollrungii Passiflora Passiflora hollrungii \N \N \N \N \N 97553 L.biddlei Lupinus Lupinus biddlei \N \N \N \N \N 97554 N.plumbaginifolia Nicotiana Nicotiana plumbaginifolia curled-leaved tobacco,leadwort-leaved tobacco \N \N \N \N 97555 A.distylum Acer Acer distylum \N \N \N \N \N 97556 R.viriosum Rhododendron Rhododendron viriosum \N \N \N \N \N 97557 A.aethiopicus Asparagus Asparagus aethiopicus asparagus-fern \N \N \N \N 97558 C.parryi Calycoseris Calycoseris parryi yellow tackstem \N \N \N \N 97559 A.peruvianum Arcytophyllum Arcytophyllum peruvianum \N \N \N \N \N 97560 P.splendens Phyllobolus Phyllobolus splendens \N \N \N \N \N 97561 \N genus Chaetacanthus \N \N \N \N \N 97562 O.capensis Oldenlandia Oldenlandia capensis \N \N \N \N \N 97563 \N genus Hydrobryum \N \N \N \N \N 97564 X.KMC1998 Xylobium Xylobium sp. KMC1998 \N \N \N \N \N 97565 C.laevis Ceratiosicyos Ceratiosicyos laevis \N \N \N \N \N 97566 H.philippinensis Heterospathe Heterospathe philippinensis \N \N \N \N \N 97567 D.stenopetala Draba Draba stenopetala \N \N \N \N \N 97568 P.acinaciphylla Poa Poa acinaciphylla \N \N \N \N \N 97569 S.fanjingshanicus Sinosenecio Sinosenecio fanjingshanicus \N \N \N \N \N 97570 L.magnificum Lamiodendron Lamiodendron magnificum \N \N \N \N \N 97571 P.nodosus Potamogeton Potamogeton perfoliatus x Potamogeton nodosus \N \N \N \N \N 97572 N.quadrivalvis Nicotiana Nicotiana quadrivalvis \N \N \N \N \N 97573 \N genus Tupeia \N \N \N \N \N 97574 F.carpathica Festuca Festuca carpathica \N \N \N \N \N 97575 P.meridensis Persea Persea meridensis \N \N \N \N \N 97576 P.glaberrima Phacelia Phacelia glaberrima \N \N \N \N \N 97577 S.trapezoideus Schoenoplectus Schoenoplectus x trapezoideus \N \N \N \N \N 97578 S.rugosum Solanum Solanum rugosum \N \N \N \N \N 97579 A.froedinii Alkanna Alkanna froedinii \N \N \N \N \N 97580 \N genus Linum \N \N \N \N \N 97581 S.ovatomicrophylla Salix Salix ovatomicrophylla \N \N \N \N \N 97582 P.canescens Phyla Phyla canescens \N \N \N \N \N 97583 A.cardenasii Arachis Arachis stenosperma x Arachis cardenasii \N \N \N \N \N 97584 S.decurrens Solidago Solidago decurrens \N \N \N \N \N 97585 C.yemenicum Coelachyrum Coelachyrum yemenicum \N \N \N \N \N 97586 K.senegalensis Khaya Khaya senegalensis \N \N \N \N \N 97587 M.debilis Mimosa Mimosa debilis \N \N \N \N \N 97588 P.chekiangensis Phoebe Phoebe chekiangensis \N \N \N \N \N 97589 T.imbricatum Thesium Thesium imbricatum \N \N \N \N \N 97590 M.obtusiloba Minuartia Minuartia obtusiloba \N \N \N \N \N 97591 S.lingua Serapias Serapias lingua \N \N \N \N \N 97592 V.kalakhensis Vicia Vicia kalakhensis \N \N \N \N \N 97593 A.leucocephalus Astragalus Astragalus leucocephalus \N \N \N \N \N 97594 T.macrophysca Tococa Tococa macrophysca \N \N \N \N \N 97595 P.anguillanus Potamogeton Potamogeton wrightii x Potamogeton x anguillanus \N \N \N \N \N 97596 C.muralis Cymbalaria Cymbalaria muralis Kenilworth ivy \N \N \N \N 97597 P.caucasica Potentilla Potentilla caucasica \N \N \N \N \N 97598 S.ringens Salvia Salvia ringens \N \N \N \N \N 97599 E.crassisquamosum Eryngium Eryngium crassisquamosum \N \N \N \N \N 97600 \N genus Molinadendron \N \N \N \N \N 97601 A.murphyi Avena Avena murphyi \N \N \N \N \N 97602 O.library unclassified Oxytropis Oxytropis campestris/Oxytropis splendens mixed EST library \N \N \N \N \N 97603 P.hendersonii Primula Primula hendersonii mosquito bills \N \N \N \N 97604 T.hawkesiana Tolumnia Tolumnia hawkesiana \N \N \N \N \N 97605 A.brachycarpa Actaea Actaea brachycarpa \N \N \N \N \N 97606 S.kimbozanus Streptocarpus Streptocarpus kimbozanus \N \N \N \N \N 97607 P.bicolor Peripleura Peripleura bicolor \N \N \N \N \N 97608 N.durangensis Nolina Nolina durangensis \N \N \N \N \N 97609 P.imbakensis Plagiostachys Plagiostachys imbakensis \N \N \N \N \N 97610 S.28.223 Salicornia Salicornia aff. borysthenica Freitag 28.223 \N \N \N \N \N 97611 E.nummulariifolium Epilobium Epilobium nummulariifolium \N \N \N \N \N 97612 P.esculentum Pediomelum Pediomelum esculentum \N \N \N \N \N 97613 P.compressa Poa Poa compressa \N \N \N \N \N 97614 V.macracantha Vachellia Vachellia macracantha \N \N \N \N \N 97615 \N varietas Primula interjacens var. epilosa \N \N \N \N \N 97616 P.cryptocarpus Plinthus Plinthus cryptocarpus \N \N \N \N \N 97617 D.fugax Drimia Drimia fugax \N \N \N \N \N 97618 P.fendleri Psychotria Psychotria fendleri \N \N \N \N \N 97619 C.alacriportanus Cereus Cereus alacriportanus \N \N \N \N \N 97620 D.minor Digitalis Digitalis minor \N \N \N \N \N 97621 P.alea Pultenaea Pultenaea alea \N \N \N \N \N 97622 T.oliveri Thladiantha Thladiantha oliveri \N \N \N \N \N 97720 \N tribe Saliceae \N \N \N \N \N 97624 C.lutea Catananche Catananche lutea \N \N \N \N \N 97625 P.sodiroi Psammisia Psammisia sodiroi \N \N \N \N \N 97626 P.atratum Paspalum Paspalum atratum \N \N \N \N \N 97627 H.02/246 Hieracium Hieracium cf. fuscescens Schuhwerk 02/246 \N \N \N \N \N 97628 E.94190 Euonymus Euonymus sp. Qiu 94190 \N \N \N \N \N 97629 B.177 Begonia Begonia sp. Forrest 177 \N \N \N \N \N 97630 \N varietas Brassica juncea var. rugosa \N \N \N \N \N 97631 V.rootstock Vitis Vitis hybrid rootstock \N \N \N \N \N 97632 H.orientalis Heloniopsis Heloniopsis orientalis \N \N \N \N \N 97633 T.gentii Talbotiella Talbotiella gentii \N \N \N \N \N 97634 G.prainiana Garcinia Garcinia prainiana \N \N \N \N \N 97635 O.roensis Oligochaetochilus Oligochaetochilus roensis \N \N \N \N \N 97636 \N tribe Helieae \N \N \N \N \N 97637 C.rugosa Coprosma Coprosma rugosa \N \N \N \N \N 97638 \N tribe Jasmineae \N \N \N \N \N 97639 F.spectabilis Fosterella Fosterella spectabilis \N \N \N \N \N 97640 P.6312 Polystachya Polystachya cf. alpina Salazar 6312 \N \N \N \N \N 97641 I.australis Indigofera Indigofera australis \N \N \N \N \N 97642 T.tessellatus Thamnocalamus Thamnocalamus tessellatus bergbamboes \N \N \N \N 97643 P.sarodranensis Pyrostria Pyrostria sarodranensis \N \N \N \N \N 97644 S.virginicus Sporobolus Sporobolus virginicus \N \N \N \N \N 97645 P.suaveolens Pimelea Pimelea suaveolens \N \N \N \N \N 97646 B.fernaldiana Boechera Boechera fernaldiana \N \N \N \N \N 97647 I.commune Ionidium Ionidium commune \N \N \N \N \N 97648 \N genus Dysoxylum \N \N \N \N \N 97649 S.parryi Silene Silene parryi \N \N \N \N \N 97650 A.plicata Alchemilla Alchemilla plicata \N \N \N \N \N 97651 P.pentandrus Pentodon Pentodon pentandrus \N \N \N \N \N 97652 D.bicolor Drosanthemum Drosanthemum bicolor \N \N \N \N \N 97653 L.aduncus Lampranthus Lampranthus aduncus \N \N \N \N \N 97654 S.ifniensis Suaeda Suaeda ifniensis \N \N \N \N \N 97655 M.straminea Muhlenbergia Muhlenbergia straminea \N \N \N \N \N 97656 Y.gloriosa Yucca Yucca gloriosa \N \N \N \N \N 97657 W.viridiflora Werauhia Werauhia viridiflora \N \N \N \N \N 97658 R.pentlandii Ribes Ribes pentlandii \N \N \N \N \N 97659 T.discolor Tipularia Tipularia discolor \N \N \N \N \N 97660 \N subspecies Klasea flavescens subsp. mucronata \N \N \N \N \N 97661 N.nitidula Nectandra Nectandra nitidula \N \N \N \N \N 97662 C.pritzelii Crambe Crambe pritzelii \N \N \N \N \N 97663 Z.isanense Zingiber Zingiber isanense \N \N \N \N \N 97664 J.volubile Jasminum Jasminum volubile \N \N \N \N \N 97665 S.divaricatum Sphaerocardamum Sphaerocardamum divaricatum \N \N \N \N \N 97666 L.delavayi Loranthus Loranthus delavayi \N \N \N \N \N 97667 \N genus Mammea \N \N \N \N \N 97668 N.patagonicus Nastanthus Nastanthus patagonicus \N \N \N \N \N 97669 B.angolensis Bridelia Bridelia angolensis \N \N \N \N \N 97670 M.cyclophylla Matelea Matelea cyclophylla \N \N \N \N \N 97671 P.angolensis Premna Premna angolensis \N \N \N \N \N 97672 K.africana Kigelia Kigelia africana sausagetree \N \N \N \N 97673 A.virginica Aeschynomene Aeschynomene virginica \N \N \N \N \N 97674 \N genus Richeria \N \N \N \N \N 97675 L.glabra Licuala Licuala glabra \N \N \N \N \N 97676 P.pterocarpum Pugionium Pugionium pterocarpum \N \N \N \N \N 97677 B.pilosa Bidens Bidens pilosa beggar-ticks,bur-marigold,cuckold,sticktight \N \N \N \N 97678 \N family Krameriaceae \N \N \N \N \N 97679 P.steyermarkii Psychotria Psychotria steyermarkii \N \N \N \N \N 97680 E.gysbertii Erica Erica gysbertii \N \N \N \N \N 97681 B.radicans Begonia Begonia radicans \N \N \N \N \N 97682 T.circinnatioides Tillandsia Tillandsia circinnatioides \N \N \N \N \N 97683 B.puberula Boechera Boechera puberula silver rockcress \N \N \N \N 97684 \N subspecies Asteriscus graveolens subsp. graveolens \N \N \N \N \N 97685 O.maremmae Ophrys Ophrys x maremmae \N \N \N \N \N 97686 A.lactescens Afrocanthium Afrocanthium lactescens \N \N \N \N \N 97687 T.grandiflorum Theobroma Theobroma grandiflorum \N \N \N \N \N 97688 E.straussiana Erica Erica straussiana \N \N \N \N \N 97689 D.kaniense Dysoxylum Dysoxylum kaniense \N \N \N \N \N 97690 S.truncata Strumaria Strumaria truncata \N \N \N \N \N 97691 G.densiflora Gunnera Gunnera densiflora \N \N \N \N \N 97692 \N subspecies Vigna frutescens subsp. frutescens \N \N \N \N \N 97693 O.pyrifolium Osteospermum Osteospermum pyrifolium \N \N \N \N \N 97694 \N genus Holocheilus \N \N \N \N \N 97695 E.galeotii Erigeron Erigeron galeotii \N \N \N \N \N 97696 M.RJM-2009 Matthiola Matthiola sp. 2 RJM-2009 \N \N \N \N \N 97697 M.reichenbachiana Masdevallia Masdevallia reichenbachiana \N \N \N \N \N 97698 V.sphaerocarpa Vasconcellea Vasconcellea sphaerocarpa \N \N \N \N \N 97699 P.nemoralis Poa Poa nemoralis \N \N \N \N \N 97700 V.cruziana Victoria Victoria amazonica x Victoria cruziana \N \N \N \N \N 97701 \N no rank Saccharum hybrid cultivar CP72-2086 \N \N \N \N \N 97702 H.grossulariifolia Heuchera Heuchera grossulariifolia \N \N \N \N \N 97703 E.tuberculosa Eleocharis Eleocharis tuberculosa \N \N \N \N \N 97704 C.vestitus Clastopus Clastopus vestitus \N \N \N \N \N 97705 \N genus Searsia \N \N \N \N \N 97706 C.longipedicellata Camellia Camellia longipedicellata \N \N \N \N \N 97707 \N genus Colliguaja \N \N \N \N \N 97708 \N subspecies Mystroxylon aethiopicum subsp. macrocarpum \N \N \N \N \N 97709 P.infundibularis Physochlaina Physochlaina infundibularis \N \N \N \N \N 97710 \N genus Caesalpinia \N \N \N \N \N 97711 \N varietas Malus hupehensis var. mengshanensis \N \N \N \N \N 97712 J.maroccana Jacobaea Jacobaea maroccana \N \N \N \N \N 97713 \N subspecies Thymus broussonetii subsp. hannonis \N \N \N \N \N 97714 A.ptarmica Achillea Achillea ptarmica \N \N \N \N \N 97715 P.fengii Pedicularis Pedicularis fengii \N \N \N \N \N 97716 L.dictyotum Lepidium Lepidium dictyotum \N \N \N \N \N 97717 L.MP-2011 Ledebouria Ledebouria sp. 1 MP-2011 \N \N \N \N \N 97718 G.bilineatus Gladiolus Gladiolus bilineatus \N \N \N \N \N 97719 C.2333 Crinum Crinum sp. Meerow 2333 \N \N \N \N \N 97721 C.1737 Cyrtochilum Cyrtochilum sp. Whitten 1737 \N \N \N \N \N 97722 K.gitingensis Kibatalia Kibatalia gitingensis \N \N \N \N \N 97723 C.latifolia Coreopsis Coreopsis latifolia \N \N \N \N \N 97724 C.oligocephala Cousinia Cousinia oligocephala \N \N \N \N \N 97725 B.reticulata Besleria Besleria reticulata \N \N \N \N \N 97726 F.amplissima Festuca Festuca amplissima \N \N \N \N \N 97727 M.minutiflora Miconia Miconia minutiflora \N \N \N \N \N 97728 S.'puberulent' Stackhousia Stackhousia sp. 'puberulent' \N \N \N \N \N 97729 T.scotti Trichodesma Trichodesma scotti \N \N \N \N \N 97730 E.spinalba Eryngium Eryngium spinalba \N \N \N \N \N 97731 G.valida Gomphichis Gomphichis valida \N \N \N \N \N 97732 S.19.812 Salicornia Salicornia sp. Freitag 19.812 \N \N \N \N \N 97733 R.Goomalling Rytidosperma Rytidosperma sp. Goomalling \N \N \N \N \N 97734 L.viscosa Linaria Linaria viscosa \N \N \N \N \N 97735 P.glomerata Pterolepis Pterolepis glomerata \N \N \N \N \N 97736 A.latifolia Astydamia Astydamia latifolia \N \N \N \N \N 97737 H.myrtifolium Haplophyllum Haplophyllum myrtifolium \N \N \N \N \N 97738 C.montanus Cyrtanthus Cyrtanthus montanus \N \N \N \N \N 97739 S.crispissima Sobralia Sobralia crispissima \N \N \N \N \N 97740 M.campii Munnozia Munnozia campii \N \N \N \N \N 97741 E.tremula Eragrostis Eragrostis tremula \N \N \N \N \N 97742 \N genus Stiburus \N \N \N \N \N 97743 H.cruciata Hemipilia Hemipilia cruciata \N \N \N \N \N 97744 B.5459 Butia Butia aff. paraguayensis Noblick 5459 \N \N \N \N \N 97745 G.umbellata Genista Genista umbellata \N \N \N \N \N 97746 B.angustifolia Babiana Babiana angustifolia \N \N \N \N \N 97747 F.europaea Forsythia Forsythia europaea \N \N \N \N \N 97748 S.rhododendrifolia Schefflera Schefflera rhododendrifolia \N \N \N \N \N 97749 G.gracilis Gladiolus Gladiolus gracilis \N \N \N \N \N 97750 S.doddsii Solanum Solanum doddsii \N \N \N \N \N 97751 C.decora Chamaecrista Chamaecrista decora \N \N \N \N \N 97752 W.899 Wurmbea Wurmbea sp. Conran et al. 899 \N \N \N \N \N 97753 P.tatsienensis Pedicularis Pedicularis tatsienensis \N \N \N \N \N 97754 A.mutica Alpinia Alpinia mutica \N \N \N \N \N 97755 \N order Aquifoliales \N \N \N \N \N 97756 E.tenuifolius Edraianthus Edraianthus tenuifolius \N \N \N \N \N 97757 V.pimeleoides Hebe Veronica pimeleoides \N \N \N \N \N 97758 E.bicolor Eucomis Eucomis bicolor \N \N \N \N \N 97759 M.polypterygia Maireana Maireana polypterygia \N \N \N \N \N 97760 P.distichum Paspalum Paspalum distichum \N \N \N \N \N 97761 L.graminifolia Lomelosia Lomelosia graminifolia \N \N \N \N \N 97762 M.banksii Musa Musa banksii f'ai taemanu \N \N \N \N 97763 E.dregeana Euphorbia Euphorbia dregeana \N \N \N \N \N 97764 \N varietas Pedicularis bracteosa var. canbyi \N \N \N \N \N 97765 F.ovata Forsythia Forsythia ovata Korean forsythia \N \N \N \N 97766 T.grandifolium Thalictrum Thalictrum grandifolium \N \N \N \N \N 97767 A.dumosum Aichryson Aichryson dumosum \N \N \N \N \N 97768 C.lanceolata Canastra Canastra lanceolata \N \N \N \N \N 97769 H.integrifolia Holoptelea Holoptelea integrifolia \N \N \N \N \N 97770 O.hispanica Ortegia Ortegia hispanica \N \N \N \N \N 97771 P.polystachyus Ptilotus Ptilotus polystachyus \N \N \N \N \N 97772 P.laxiflorum Protium Protium laxiflorum \N \N \N \N \N 97773 F.strictus Ferrocalamus Ferrocalamus strictus \N \N \N \N \N 97774 R.choriophylla Rhus Rhus choriophylla \N \N \N \N \N 97775 O.leucotrichus Oreocereus Oreocereus leucotrichus \N \N \N \N \N 97776 R.pachyphylla Rhaphidophora Rhaphidophora pachyphylla \N \N \N \N \N 97777 \N genus Rhadinothamnus \N \N \N \N \N 97778 B.montanum Bupleurum Bupleurum montanum \N \N \N \N \N 97779 C.oleifera Camellia Camellia oleifera abura-tsubaki,tea-oil plant \N \N \N \N 97780 O.alba Orobanche Orobanche alba \N \N \N \N \N 97781 A.bodkinii Aspalathus Aspalathus bodkinii \N \N \N \N \N 97782 \N genus Cercidium \N \N \N \N \N 97783 O.seravschanicum Onopordum Onopordum seravschanicum \N \N \N \N \N 97784 C.albicans Codia Codia albicans \N \N \N \N \N 97785 N.leucocephala Navarretia Navarretia leucocephala \N \N \N \N \N 97786 \N genus Stereochlaena \N \N \N \N \N 97787 D.occidentalis Drosera Drosera occidentalis \N \N \N \N \N 97788 S.despectans Stelis Stelis despectans \N \N \N \N \N 97789 A.cooperi Adenophyllum Adenophyllum cooperi \N \N \N \N \N 97790 O.betchei Oncinocalyx Oncinocalyx betchei \N \N \N \N \N 97791 C.murinum Cyrtochilum Cyrtochilum murinum \N \N \N \N \N 97792 S.ocymastrum Stachys Stachys ocymastrum \N \N \N \N \N 97793 A.vandellii Androsace Androsace vandellii \N \N \N \N \N 97794 G.kirkii Gossypioides Gossypioides kirkii \N \N \N \N \N 97795 Z.pusilla Zaluzianskya Zaluzianskya pusilla \N \N \N \N \N 97796 Z.aptera Zizia Zizia aptera \N \N \N \N \N 97797 C.integra Carex Carex integra \N \N \N \N \N 97798 \N genus Arctomecon \N \N \N \N \N 97799 R.strigosus Rovaeanthus Rovaeanthus strigosus \N \N \N \N \N 97800 \N genus Francoa \N \N \N \N \N 97801 A.pusilla Ascocentropsis Ascocentropsis pusilla \N \N \N \N \N 97802 S.atrata Setaria Setaria atrata \N \N \N \N \N 97803 B.clemensiorum Bauhinia Bauhinia clemensiorum \N \N \N \N \N 97804 G.pulchella Glandularia Glandularia pulchella moss verbena \N \N \N \N 97805 N.yamashitae Nertera Nertera yamashitae \N \N \N \N \N 97806 \N genus Adenophora \N \N \N \N \N 97807 \N varietas Ampelopsis glandulosa var. kulingensis \N \N \N \N \N 97808 F.angustifolia Flaveria Flaveria angustifolia \N \N \N \N \N 97809 S.affinis Sophora Sophora affinis \N \N \N \N \N 97810 B.lilacina Bletia Bletia lilacina \N \N \N \N \N 97811 P.americanum Philonotion Philonotion americanum \N \N \N \N \N 97812 G.collomiae Galium Galium collomiae \N \N \N \N \N 97813 A.minimiflora Abdominea Abdominea minimiflora \N \N \N \N \N 97814 A.dracunculiformis Artemisia Artemisia dracunculiformis \N \N \N \N \N 97815 \N genus Brandzeia \N \N \N \N \N 97816 \N subspecies Genista hystrix subsp. hystrix \N \N \N \N \N 97817 V.jordanii Viola Viola jordanii \N \N \N \N \N 97818 T.nutans Thamnochortus Thamnochortus nutans \N \N \N \N \N 97819 P.ornatum Piper Piper ornatum \N \N \N \N \N 97820 M.collina Morinda Morinda collina \N \N \N \N \N 97821 \N genus Tourrettia \N \N \N \N \N 97822 P.album Pelargonium Pelargonium album \N \N \N \N \N 97823 D.35 Dionysia Dionysia sp. T4Z 35 \N \N \N \N \N 97824 C.oxyphylla Cleome Cleome oxyphylla \N \N \N \N \N 97825 S.orientalis Securigera Securigera orientalis \N \N \N \N \N 97826 D.sassafras Doryphora Doryphora sassafras golden deal,golden sassafras \N \N \N \N 97827 L.sativum Lepidium Lepidium sativum \N \N \N \N \N 97828 L.longihastata Ligularia Ligularia longihastata \N \N \N \N \N 97829 G.squarrosa Grindelia Grindelia squarrosa \N \N \N \N \N 97830 C.canadensis Circaea Circaea canadensis \N \N \N \N \N 97831 R.subtibetanus Rubus Rubus subtibetanus \N \N \N \N \N 97832 C.nagasei Chrysosplenium Chrysosplenium nagasei \N \N \N \N \N 97833 B.phanrangensis Brassaiopsis Brassaiopsis phanrangensis \N \N \N \N \N 97834 T.noricum Trifolium Trifolium noricum \N \N \N \N \N 97835 \N subspecies Erica paucifolia subsp. ciliata \N \N \N \N \N 97836 I.conocarpa Ilex Ilex conocarpa \N \N \N \N \N 97837 P.627 Pycnandra Pycnandra sp. Swenson 627 \N \N \N \N \N 97838 \N varietas Isocoma menziesii var. vernonioides \N \N \N \N \N 97839 \N genus Sowerbaea \N \N \N \N \N 97840 H.sublobata Hewittia Hewittia sublobata \N \N \N \N \N 97841 S.macrophylla Schefflera Schefflera macrophylla \N \N \N \N \N 97842 V.bracteosa Valeriana Valeriana bracteosa \N \N \N \N \N 97843 P.borealis Puccinellia Puccinellia borealis \N \N \N \N \N 97844 A.triplinervis Anaphalis Anaphalis triplinervis pearly everlasting \N \N \N \N 97845 M.pellegrinianum Melastoma Melastoma pellegrinianum \N \N \N \N \N 97846 G.carmineus Gladiolus Gladiolus carmineus \N \N \N \N \N 97847 B.aucheri Bornmuellerantha Bornmuellerantha aucheri \N \N \N \N \N 97848 P.9558 Polyosma Polyosma sp. Johns 9558 \N \N \N \N \N 97849 C.boehmii Corallocarpus Corallocarpus boehmii \N \N \N \N \N 97850 S.hongkongensis Spiranthes Spiranthes hongkongensis \N \N \N \N \N 97851 V.parkinsonii Viguiera Viguiera parkinsonii \N \N \N \N \N 97852 A.reinwardtii Alyxia Alyxia reinwardtii \N \N \N \N \N 97853 \N subspecies Desmodium podocarpum subsp. oxyphyllum \N \N \N \N \N 97854 \N genus Scaphyglottis \N \N \N \N \N 97855 D.1751 Dioscorea Dioscorea sp. Wood and Guzman 1751 \N \N \N \N \N 97856 C.'Sand' Coprosma Coprosma sp. 'Sand' \N \N \N \N \N 97857 G.wardii Globba Globba wardii \N \N \N \N \N 97858 G.divaricata Guettarda Guettarda divaricata \N \N \N \N \N 97859 \N genus Argostemma \N \N \N \N \N 97860 \N genus Ficinia \N \N \N \N \N 97861 U.unguiculata Uvaria Uvaria unguiculata \N \N \N \N \N 97862 M.myriadena Mimosa Mimosa myriadena \N \N \N \N \N 97863 O.whitei Ozothamnus Ozothamnus whitei \N \N \N \N \N 97864 C.purpureus Chamaecytisus Chamaecytisus purpureus \N \N \N \N \N 97865 \N genus Neoapaloxylon \N \N \N \N \N 97866 F.tricarinata Flickingeria Flickingeria tricarinata \N \N \N \N \N 97867 \N genus Epipogium \N \N \N \N \N 97868 F.fendleri Fissicalyx Fissicalyx fendleri \N \N \N \N \N 97869 A.catechu Areca Areca catechu areca-nut,betel palm,catechu,pinang \N \N \N \N 97870 C.cephalophora Carex Carex cephalophora \N \N \N \N \N 97871 R.rotundifolia Rulingia Rulingia rotundifolia \N \N \N \N \N 97872 B.brachystachya Bencomia Bencomia brachystachya \N \N \N \N \N 97873 E.altissimum Eupatorium Eupatorium altissimum tall thoroughwort \N \N \N \N 97874 \N genus Labichea \N \N \N \N \N 97875 C.lyallii Calochortus Calochortus lyallii \N \N \N \N \N 97876 C.paradoxa Cleome Cleome paradoxa \N \N \N \N \N 97877 D.tortuosa Douepea Douepea tortuosa \N \N \N \N \N 97878 M.corymbosa Monticalia Monticalia corymbosa \N \N \N \N \N 97879 \N forma Asarum sieboldii f. maculatum \N \N \N \N \N 97880 M.marlothii Moraea Moraea marlothii \N \N \N \N \N 97881 V.naidae Valeriana Valeriana naidae \N \N \N \N \N 97882 B.kuhitangi Bunium Bunium kuhitangi \N \N \N \N \N 97883 N.cruenta Neoregelia Neoregelia cruenta \N \N \N \N \N 97884 E.natum Eriogonum Eriogonum natum \N \N \N \N \N 97885 \N genus Acaciella \N \N \N \N \N 97886 \N varietas Rudbeckia fulgida var. fulgida \N \N \N \N \N 97887 B.mannii Bobea Bobea mannii \N \N \N \N \N 97888 C.SH-2010 Calliandra Calliandra sp. SH-2010 \N \N \N \N \N 97889 C.chinense Clinopodium Clinopodium chinense \N \N \N \N \N 97890 S.fendleri Symphyotrichum Symphyotrichum fendleri Fendler s aster \N \N \N \N 97891 R.brachysepala Ruprechtia Ruprechtia brachysepala \N \N \N \N \N 97892 \N genus Mischarytera \N \N \N \N \N 97893 A.kirpicznikovii Astragalus Astragalus kirpicznikovii \N \N \N \N \N 97894 \N genus Chaenomeles \N \N \N \N \N 97895 T.sinicum Taraxacum Taraxacum sinicum \N \N \N \N \N 97896 C.durangensis Coryphantha Coryphantha durangensis \N \N \N \N \N 97897 H.dubia Heteranthera Heteranthera dubia water star-grass \N \N \N \N 97898 E.tampensis Encyclia Encyclia tampensis \N \N \N \N \N 97899 \N genus Zombitsia \N \N \N \N \N 97900 O.uniflora Orobanche Orobanche uniflora \N \N \N \N \N 97901 A.gorganica Alcea Alcea gorganica \N \N \N \N \N 97902 C.oedipostyla Carex Carex oedipostyla \N \N \N \N \N 97903 \N genus Reyemia \N \N \N \N \N 97904 \N genus Girardinia \N \N \N \N \N 97905 B.durandii Bikinia Bikinia durandii \N \N \N \N \N 97906 \N genus Philotheca \N \N \N \N \N 97907 P.tysonii Dracomontanum Pentameris tysonii \N \N \N \N \N 97908 B.camphorosmae Babingtonia Babingtonia camphorosmae \N \N \N \N \N 97909 G.5961 Glossoloma Glossoloma sp. Clark 5961 \N \N \N \N \N 97910 P.viniferum Paphiopedilum Paphiopedilum viniferum \N \N \N \N \N 97911 P.brachytropis Pultenaea Pultenaea brachytropis \N \N \N \N \N 97912 A.arabica Acacia Acacia arabica \N \N \N \N \N 97913 G.haageana Gomphrena Gomphrena haageana \N \N \N \N \N 97914 L.domingensis Laeliopsis Laeliopsis domingensis \N \N \N \N \N 97915 M.dapsiliflora Miconia Miconia dapsiliflora \N \N \N \N \N 97916 O.gregaria Oxalis Oxalis gregaria \N \N \N \N \N 97917 \N varietas Rhododendron sphaeroblastum var. wumengense \N \N \N \N \N 97918 C.gracilis Codonanthe Codonanthe gracilis \N \N \N \N \N 97919 L.luteus Lithocarpus Lithocarpus luteus \N \N \N \N \N 97920 A.canaliculatum Alisma Alisma canaliculatum \N \N \N \N \N 97921 C.lemanniana Carex Carex lemanniana \N \N \N \N \N 97922 S.granuloso-leprosum Solanum Solanum granuloso-leprosum \N \N \N \N \N 97923 D.XMW-2002-21 Dendrobium Dendrobium sp. XMW-2002-21 \N \N \N \N \N 97924 P.'Yalgoo' unclassified Pomaderreae Pomaderreae sp. 'Yalgoo' \N \N \N \N \N 97925 L.cascajalensis Lepanthes Lepanthes cascajalensis \N \N \N \N \N 97926 P.rhiphaeus Ptilostemon Ptilostemon rhiphaeus \N \N \N \N \N 97927 \N genus Backhousia sand-verbena myrtles \N \N \N \N 97928 O.cossoniana Ononis Ononis cossoniana \N \N \N \N \N 97929 A.setacea Aspalathus Aspalathus setacea \N \N \N \N \N 97930 P.rattanii Penstemon Penstemon rattanii \N \N \N \N \N 97931 M.gracile Macrolobium Macrolobium gracile \N \N \N \N \N 97932 S.SH-2010 Scutellaria Scutellaria sp. SH-2010 \N \N \N \N \N 97933 S.rhynchanthoides Satyrium Satyrium rhynchanthoides \N \N \N \N \N 97934 \N genus Steyermarkochloa \N \N \N \N \N 97935 P.chelidoniifolia Paraixeris Paraixeris chelidoniifolia \N \N \N \N \N 97936 \N genus Hosackia \N \N \N \N \N 97937 C.ekmanii Croton Croton ekmanii \N \N \N \N \N 97938 S.samia Silene Silene samia \N \N \N \N \N 97939 \N subspecies Solanum circinatum subsp. circinatum \N \N \N \N \N 97940 C.rubitinctum Cypripedium Cypripedium rubitinctum \N \N \N \N \N 97941 P.macrophylla Phyllostegia Phyllostegia macrophylla \N \N \N \N \N 97942 U.dalechampii Urospermum Urospermum dalechampii \N \N \N \N \N 97943 E.glabriflora Euphorbia Euphorbia glabriflora \N \N \N \N \N 97944 B.fimbriata Blepharandra Blepharandra fimbriata \N \N \N \N \N 97945 D.delavayi Dobinea Dobinea delavayi \N \N \N \N \N 97946 A.intricata Anthocercis Anthocercis intricata \N \N \N \N \N 97947 \N genus Buphthalmum \N \N \N \N \N 97948 M.cusickii Mimulus Mimulus cusickii \N \N \N \N \N 97949 T.tuberculatum Tetrastigma Tetrastigma tuberculatum \N \N \N \N \N 97950 A.spicata Actaea Actaea spicata \N \N \N \N \N 97951 E.pallens Erigeron Erigeron pallens \N \N \N \N \N 97952 A.clematitis Aristolochia Aristolochia clematitis asarabacca,birthwort \N \N \N \N 97953 S.kunthiana Strobilanthes Strobilanthes kunthiana \N \N \N \N \N 97954 B.aurea Bidens Bidens aurea \N \N \N \N \N 97955 S.MP-2011 Stellarioides Stellarioides sp. 1 MP-2011 \N \N \N \N \N 97956 S.tribulosum Solanum Solanum tribulosum \N \N \N \N \N 97957 I.ixocarpa Indigofera Indigofera ixocarpa \N \N \N \N \N 97958 E.impressa Epacris Epacris impressa \N \N \N \N \N 97959 J.coriaceus Juncus Juncus coriaceus \N \N \N \N \N 97960 \N genus Stephanodaphne \N \N \N \N \N 97961 R.ochracea Rondeletia Rondeletia ochracea \N \N \N \N \N 97962 H.martirensis Hedeoma Hedeoma martirensis \N \N \N \N \N 97963 P.plumosus Pentapanax Pentapanax plumosus \N \N \N \N \N 97964 N.rhytidophylla Nematolepis Nematolepis rhytidophylla \N \N \N \N \N 97965 B.dumicola Berberis Berberis dumicola \N \N \N \N \N 97966 T.ubonensis Terniopsis Terniopsis ubonensis \N \N \N \N \N 97967 C.hordeacea Chamaeraphis Chamaeraphis hordeacea \N \N \N \N \N 97968 \N varietas Penstemon pachyphyllus var. pachyphyllus \N \N \N \N \N 97969 R.multiflora Rosa Rosa multiflora Japanese rose \N \N \N \N 97970 V.kirkii Vigna Vigna kirkii \N \N \N \N \N 97971 M.coccinea Mandevilla Mandevilla coccinea \N \N \N \N \N 97972 S.library unclassified Solanum Solanum spp. mixed DNA library \N \N \N \N \N 97973 \N genus Hydroidea \N \N \N \N \N 97974 O.NFL-2010 Osmanthus Osmanthus sp. 4 NFL-2010 \N \N \N \N \N 97975 \N varietas Gaultheria dumicola var. aspera \N \N \N \N \N 97976 R.obliquum Rhynchoglossum Rhynchoglossum obliquum \N \N \N \N \N 97977 I.polyneura Ilex Ilex polyneura \N \N \N \N \N 97978 D.bella Downingia Downingia bella \N \N \N \N \N 97979 A.rigidum Anarthrophyllum Anarthrophyllum rigidum \N \N \N \N \N 97980 C.obtusifolium Cynanchum Cynanchum obtusifolium \N \N \N \N \N 97981 C.macrostyla Campanula Campanula macrostyla \N \N \N \N \N 97982 A.triuncialis Aegilops Aegilops triuncialis \N \N \N \N \N 97983 M.macclurei Michelia Michelia macclurei \N \N \N \N \N 97984 E.natalitia Erica Erica natalitia \N \N \N \N \N 97985 S.manningii Scaraboides Scaraboides manningii \N \N \N \N \N 97986 \N genus Dipyrena \N \N \N \N \N 97987 A.vera Aloe Aloe vera Barbados aloe,acibar,aloe-vera,babosa \N \N \N \N 97988 L.somaliensis Ledebouria Ledebouria somaliensis \N \N \N \N \N 97989 D.viscida Dudleya Dudleya viscida \N \N \N \N \N 97990 J.rosea Jubelina Jubelina rosea \N \N \N \N \N 97991 A.exigua Alchemilla Alchemilla exigua \N \N \N \N \N 97992 M.erythrochlamys Megaskepasma Megaskepasma erythrochlamys \N \N \N \N \N 97993 G.ciliata Grindelia Grindelia ciliata \N \N \N \N \N 97994 B.boudetianum Bulbophyllum Bulbophyllum boudetianum \N \N \N \N \N 97995 I.pseudacorus Iris Iris pseudacorus \N \N \N \N \N 97996 B.plumosum Bulbophyllum Bulbophyllum plumosum \N \N \N \N \N 97997 C.neglecta Coryphantha Coryphantha neglecta \N \N \N \N \N 97998 L.microcephala Liatris Liatris microcephala \N \N \N \N \N 97999 C.flavescens Chionochloa Chionochloa flavescens \N \N \N \N \N 98000 \N varietas Hedychium villosum var. tenuiflorum \N \N \N \N \N 98001 M.rugosus Mazus Mazus rugosus \N \N \N \N \N 98002 \N genus Lepidoceras \N \N \N \N \N 98004 P.eumecocaulon Pleurothallis Pleurothallis eumecocaulon \N \N \N \N \N 98005 S.falcata Silene Silene falcata \N \N \N \N \N 98006 E.dolichantherum Exacum Exacum dolichantherum \N \N \N \N \N 98007 C.ussuriensis Caragana Caragana ussuriensis \N \N \N \N \N 98008 H.orientalis Hyacinthus Hyacinthus orientalis common hyacinth \N \N \N \N 98009 \N subspecies Arnica griscomii subsp. frigida \N \N \N \N \N 98010 R.lutea Reseda Reseda lutea cut-leaf mignonette,hasadi,khuzam \N \N \N \N 98011 S.ovalis Smelowskia Smelowskia ovalis \N \N \N \N \N 100924 \N genus Capeochloa \N \N \N \N \N 98012 V.africana Voacanga Voacanga africana \N \N \N \N \N 98013 K.fluviatilis Kniphofia Kniphofia fluviatilis \N \N \N \N \N 98014 F.johnstonianus Ferocactus Ferocactus johnstonianus \N \N \N \N \N 98015 C.retusa Capparis Capparis retusa \N \N \N \N \N 98016 C.microspadix Chamaedorea Chamaedorea microspadix \N \N \N \N \N 98017 T.CHR514144 Taraxacum Taraxacum aff. magellanicum CHR514144 \N \N \N \N \N 98018 A.pyramidale Aulosepalum Aulosepalum pyramidale \N \N \N \N \N 98019 D.rupestris Draba Draba rupestris \N \N \N \N \N 98020 E.gracilis Eurysolen Eurysolen gracilis \N \N \N \N \N 98021 \N subspecies Ranunculus cassubicus subsp. imitans \N \N \N \N \N 98022 M.strigosa Moussonia Moussonia strigosa \N \N \N \N \N 98023 E.rosulatus Erigeron Erigeron rosulatus \N \N \N \N \N 98024 A.michnoi Agropyron Agropyron michnoi \N \N \N \N \N 98025 A.erianthemum Asepalum Asepalum erianthemum \N \N \N \N \N 98026 V.caudata Vellozia Vellozia caudata \N \N \N \N \N 98027 \N genus Pinarophyllon \N \N \N \N \N 98028 C.elata Chusquea Chusquea elata \N \N \N \N \N 98029 R.anemoneus Ranunculus Ranunculus anemoneus \N \N \N \N \N 98030 C.fasciculatum Cypripedium Cypripedium fasciculatum \N \N \N \N \N 98031 H.lawsoniae Hedyotis Hedyotis lawsoniae \N \N \N \N \N 98032 I.insignis Inga Inga insignis \N \N \N \N \N 98033 P.171 Pyrostria Pyrostria sp. OKTAN 171 \N \N \N \N \N 98034 E.fimbriata Euphorbia Euphorbia fimbriata \N \N \N \N \N 98035 S.papuanus Saribus Saribus papuanus \N \N \N \N \N 98036 T.dichotomum Trichostema Trichostema dichotomum bastard pennyroyal \N \N \N \N 98037 \N genus Portulacaria \N \N \N \N \N 98038 M.betonicifolia Meconopsis Meconopsis betonicifolia Himalayan blue-poppy \N \N \N \N 98039 \N genus Houttuynia \N \N \N \N \N 98040 G.glaucophyllus Gomphocarpus Gomphocarpus glaucophyllus \N \N \N \N \N 98041 P.fulviceps Pachycereus Pachycereus fulviceps \N \N \N \N \N 98042 O.MO57 Oxalis Oxalis cf. pulvinata MO57 \N \N \N \N \N 98043 \N genus Sphinga \N \N \N \N \N 98044 P.dilatata Pityrodia Pityrodia dilatata \N \N \N \N \N 98045 \N subspecies Euryops evansii subsp. evansii \N \N \N \N \N 98046 \N subspecies Fagopyrum esculentum subsp. ancestrale \N \N \N \N \N 98047 C.maingayi Callicarpa Callicarpa maingayi \N \N \N \N \N 98048 G.vaginatus Gladiolus Gladiolus vaginatus \N \N \N \N \N 98049 M.angustiloba Manihot Manihot angustiloba \N \N \N \N \N 98050 O.stellata Oxalis Oxalis stellata \N \N \N \N \N 98051 \N genus Prionium \N \N \N \N \N 98052 V.nemophila Votschia Votschia nemophila \N \N \N \N \N 98053 C.rumphiana Caryota Caryota rumphiana \N \N \N \N \N 98054 P.ahlesii Ptilimnium Ptilimnium ahlesii \N \N \N \N \N 98055 S.oblongus Singularybas Singularybas oblongus \N \N \N \N \N 98056 M.calabura Muntingia Muntingia calabura \N \N \N \N \N 98057 N.papyraceus Narcissus Narcissus papyraceus \N \N \N \N \N 98058 \N varietas Begonia palmata var. bowringiana \N \N \N \N \N 98059 M.campicola Mimosa Mimosa campicola \N \N \N \N \N 98060 G.olivacea Guatteria Guatteria olivacea \N \N \N \N \N 98061 A.hoffmannseggiana Acanthopsis Acanthopsis hoffmannseggiana \N \N \N \N \N 98062 H.depressum Hordeum Hordeum depressum \N \N \N \N \N 98063 E.cupreata Episcia Episcia cupreata flame-violet \N \N \N \N 98064 F.karataviensis Ferula Ferula karataviensis \N \N \N \N \N 98065 P.P086 Physalis Physalis sp. P086 \N \N \N \N \N 98066 P.velutina Podalyria Podalyria velutina \N \N \N \N \N 98067 S.thomensis Sabicea Sabicea thomensis \N \N \N \N \N 98068 \N varietas Angelica cartilaginomarginata var. distans \N \N \N \N \N 98069 C.adamianum Cypripedium Cypripedium adamianum \N \N \N \N \N 98070 E.sericopetalus Elaeocarpus Elaeocarpus sericopetalus \N \N \N \N \N 98071 H.irrasa Heliconia Heliconia irrasa \N \N \N \N \N 98072 P.haynaldianum Paphiopedilum Paphiopedilum haynaldianum \N \N \N \N \N 98073 C.glabra Conradina Conradina glabra Apalachicola false rosemary \N \N \N \N 98074 \N subspecies Argemone munita subsp. rotundata \N \N \N \N \N 98075 \N family Amborellaceae \N \N \N \N \N 98076 G.expansa Globba Globba expansa \N \N \N \N \N 98077 \N genus Deprea \N \N \N \N \N 98078 K.turanica Koelpinia Koelpinia turanica \N \N \N \N \N 98079 Z.murphyi Zieria Zieria murphyi \N \N \N \N \N 98080 S.canadensis Sambucus Sambucus canadensis American elderberry \N \N \N \N 98081 G.scrobiculata Glandularia Glandularia scrobiculata \N \N \N \N \N 98082 \N genus Calochone \N \N \N \N \N 98083 \N genus Vataireopsis \N \N \N \N \N 98084 G.SH-2010 Guioa Guioa sp. SH-2010 \N \N \N \N \N 98085 E.venusta Exostyles Exostyles venusta \N \N \N \N \N 98086 D.hookerianum Dendrobium Dendrobium hookerianum \N \N \N \N \N 98087 O.utahensis Ottleya Ottleya utahensis \N \N \N \N \N 98088 T.texanum Thelypodium Thelypodium texanum \N \N \N \N \N 98089 A.ophiorrhizoides Anna Anna ophiorrhizoides \N \N \N \N \N 98090 A.papillosa Alloteropsis Alloteropsis papillosa \N \N \N \N \N 98091 B.stewartianum Bunium Bunium stewartianum \N \N \N \N \N 98092 B.tulasneana Bridelia Bridelia tulasneana \N \N \N \N \N 98093 P.patuliforme Polygonum Polygonum patuliforme \N \N \N \N \N 98094 B.palmeri Bryantiella Bryantiella palmeri \N \N \N \N \N 98095 S.diversifolia Securidaca Securidaca diversifolia \N \N \N \N \N 98096 N.scrophulariiflora Neopicrorhiza Neopicrorhiza scrophulariiflora \N \N \N \N \N 98097 C.drymophila Carex Carex drymophila \N \N \N \N \N 98098 H.appendiculatus Heliocarpus Heliocarpus appendiculatus \N \N \N \N \N 98099 E.tenue Eutrema Eutrema tenue \N \N \N \N \N 98100 A.javanica Alphonsea Alphonsea javanica \N \N \N \N \N 98101 \N genus Eltroplectris \N \N \N \N \N 98102 C.erythrophaea Columnea Columnea erythrophaea \N \N \N \N \N 98103 A.1300/1 Arctotis Arctotis sp. B 1300/1 \N \N \N \N \N 98104 P.calycinus Phyllanthus Phyllanthus calycinus \N \N \N \N \N 98105 C.28.702 Corispermum Corispermum sp. Freitag and Adiguezel 28.702 \N \N \N \N \N 98106 P.vulcanicola Potentilla Potentilla vulcanicola \N \N \N \N \N 98107 P.albicans Plantago Plantago albicans \N \N \N \N \N 98108 T.DOB-2010 Tripterococcus Tripterococcus sp. 1 DOB-2010 \N \N \N \N \N 98109 C.tetrameria Casimiroa Casimiroa tetrameria \N \N \N \N \N 98110 A.conferta Acacia Acacia conferta \N \N \N \N \N 98111 \N genus Plumatichilos \N \N \N \N \N 98112 \N genus Guioa \N \N \N \N \N 98113 M.latisepala Mussaenda Mussaenda latisepala \N \N \N \N \N 98114 K.angustifolia Kalmia Kalmia angustifolia \N \N \N \N \N 98115 G.heterozygum Gayophytum Gayophytum heterozygum \N \N \N \N \N 98116 S.dansiei Syzygium Syzygium dansiei \N \N \N \N \N 98117 H.rodriguesii Haplolophium Haplolophium rodriguesii \N \N \N \N \N 98118 E.rockii Euphorbia Euphorbia rockii \N \N \N \N \N 98119 A.mundiana Aspalathus Aspalathus mundiana \N \N \N \N \N 98120 D.KRJ-2009 Dieffenbachia Dieffenbachia sp. KRJ-2009 \N \N \N \N \N 98121 M.4573 Mimosa Mimosa cf. rusbyana Marcelo-Pena 4573 \N \N \N \N \N 98122 S.hybrid Saccharum officinarum complex Saccharum spp. complex hybrid \N \N \N \N \N 98123 D.gallicus Dianthus Dianthus gallicus \N \N \N \N \N 98124 S.SH-2010 Solanum Solanum sp. SH-2010 \N \N \N \N \N 98125 S.decussata Strychnos Strychnos decussata \N \N \N \N \N 98126 J.brandegeana Justicia Justicia brandegeana \N \N \N \N \N 98127 \N order Lamiales \N \N \N \N \N 98128 T.pandacaqui Tabernaemontana Tabernaemontana pandacaqui \N \N \N \N \N 98129 T.coriacea Tetrazygia Tetrazygia coriacea \N \N \N \N \N 98130 C.6876 Cissus Cissus sp. 6876 \N \N \N \N \N 98131 C.oaxacensis Cedrela Cedrela oaxacensis \N \N \N \N \N 98132 A.latifolia Arctagrostis Arctagrostis latifolia \N \N \N \N \N 98133 G.carsonii Glossostelma Glossostelma carsonii \N \N \N \N \N 98134 P.salviifolia Pulicaria Pulicaria salviifolia \N \N \N \N \N 98135 O.amplexifolia Othonna Othonna amplexifolia \N \N \N \N \N 98136 A.barbata Aspalathus Aspalathus barbata \N \N \N \N \N 98137 H.24375A Hydrocotyle Hydrocotyle sp. Karuppusamy 24375A \N \N \N \N \N 98138 G.ichthyoderma Glossoloma Glossoloma ichthyoderma \N \N \N \N \N 98139 \N genus Milla \N \N \N \N \N 98140 L.paraguariensis Lupinus Lupinus paraguariensis \N \N \N \N \N 98141 T.TL262-2 unclassified Taraxacum Taraxacum (sect. Naevosa) sp. TL262-2 \N \N \N \N \N 98142 P.beachiae Pitcairnia Pitcairnia beachiae \N \N \N \N \N 98143 C.californicum Critesion Critesion californicum \N \N \N \N \N 98144 \N genus Nenga \N \N \N \N \N 98145 \N subspecies Nymphaea immutabilis subsp. kimberleyensis \N \N \N \N \N 98146 I.s.n. Inga Inga sp. Brenes s.n. \N \N \N \N \N 98147 C.squamigera Calotis Calotis squamigera \N \N \N \N \N 98148 S.kurdica Scrophularia Scrophularia kurdica \N \N \N \N \N 98149 S.lanuginosa Sipolisia Sipolisia lanuginosa \N \N \N \N \N 98150 S.lautus Senecio Senecio lautus \N \N \N \N \N 98151 M.hispida Mancoa Mancoa hispida \N \N \N \N \N 98152 S.krigsneri Salacia Salacia krigsneri \N \N \N \N \N 98153 A.subvelutina Angophora Angophora subvelutina \N \N \N \N \N 98154 S.garrettiana Senna Senna garrettiana \N \N \N \N \N 98155 L.distichoclada Leiothrix Leiothrix distichoclada \N \N \N \N \N 98156 G.integrifolia Gloveria Gloveria integrifolia \N \N \N \N \N 98157 M.sheareri Monochasma Monochasma sheareri \N \N \N \N \N 98158 A.latifolius Acrosynanthus Acrosynanthus latifolius \N \N \N \N \N 98159 \N genus Camptostemon \N \N \N \N \N 98160 D.mollis Daviesia Daviesia mollis \N \N \N \N \N 98161 T.florifer Townsendia Townsendia florifer \N \N \N \N \N 98162 S.yashadake Semiarundinaria Semiarundinaria yashadake \N \N \N \N \N 98163 S.annua Sanguisorba Sanguisorba annua \N \N \N \N \N 98164 K.tenuis Kohautia Kohautia tenuis \N \N \N \N \N 98165 G.ossirwaense Galium Galium ossirwaense \N \N \N \N \N 98166 U.macrophylla Uncaria Uncaria macrophylla \N \N \N \N \N 98167 R.pubistyla Randia Randia pubistyla \N \N \N \N \N 98168 K.flavida Kopsia Kopsia flavida \N \N \N \N \N 98169 \N genus Ottelia \N \N \N \N \N 98170 N.platycalyx Nissolia Nissolia platycalyx \N \N \N \N \N 98171 Z.arizonica Zeltnera Zeltnera arizonica \N \N \N \N \N 98172 L.melingii Linanthus Linanthus melingii \N \N \N \N \N 98173 \N varietas Cremastra appendiculata var. variabilis \N \N \N \N \N 98174 L.bella Letestudoxa Letestudoxa bella \N \N \N \N \N 98175 S.ranunculus Schizeilema Schizeilema ranunculus \N \N \N \N \N 98176 \N order Cornales \N \N \N \N \N 98177 C.floribundum Cicer Cicer floribundum \N \N \N \N \N 98178 A.ludwigii Althaea Althaea ludwigii \N \N \N \N \N 98179 \N genus Neomitranthes \N \N \N \N \N 98180 P.serrulata Passiflora Passiflora serrulata \N \N \N \N \N 98181 \N genus Platyspermation \N \N \N \N \N 98182 M.triflora Mirabilis Mirabilis triflora \N \N \N \N \N 98183 M.sempervirens Mucuna Mucuna sempervirens \N \N \N \N \N 98184 \N genus Monticalia \N \N \N \N \N 98185 A.schaffneri Asta Asta schaffneri \N \N \N \N \N 98186 J.P021 Jaltomata Jaltomata sp. P021 \N \N \N \N \N 98187 J.globiflora Julbernardia Julbernardia globiflora \N \N \N \N \N 98188 D.giganteum Dactyloctenium Dactyloctenium giganteum \N \N \N \N \N 98189 C.alatavicus Crocus Crocus alatavicus \N \N \N \N \N 98190 L.viscosum Linum Linum viscosum \N \N \N \N \N 98191 \N genus Arachnorchis \N \N \N \N \N 98192 B.polystachia Bunchosia Bunchosia polystachia \N \N \N \N \N 98193 F.greilhuberi Fessia Fessia greilhuberi \N \N \N \N \N 98194 C.ovata Cristaria Cristaria ovata \N \N \N \N \N 98195 P.unibracteata Plantago Plantago unibracteata \N \N \N \N \N 98196 M.subulifolia Maxillaria Maxillaria subulifolia \N \N \N \N \N 98198 L.aurea Leavenworthia Leavenworthia aurea golden gladecress \N \N \N \N 98199 P.burretianum Ptychosperma Ptychosperma burretianum \N \N \N \N \N 98200 A.oschaninii Allium Allium oschaninii \N \N \N \N \N 98201 M.uintahensis Mentzelia Mentzelia uintahensis \N \N \N \N \N 98202 C.tomentosa Congea Congea tomentosa \N \N \N \N \N 98203 M.divaricata Mascagnia Mascagnia divaricata \N \N \N \N \N 98204 S.buxifolium Syzygium Syzygium buxifolium \N \N \N \N \N 98205 I.uniflorum Ipheion Ipheion uniflorum \N \N \N \N \N 98206 P.latifolius Phacelurus Phacelurus latifolius \N \N \N \N \N 98207 M.preissiana Malva Malva preissiana \N \N \N \N \N 98208 \N genus Ryparosa \N \N \N \N \N 98209 P.exserta Pentaschistis Pentameris exserta \N \N \N \N \N 98210 T.oenotheroides Turbina Turbina oenotheroides \N \N \N \N \N 98211 A.tomentosa Aglaia Aglaia tomentosa \N \N \N \N \N 98212 C.ciliata Coprosma Coprosma ciliata \N \N \N \N \N 98213 \N no rank environmental samples Taxonomy:417453 \N \N \N \N \N 98214 \N genus Gaertnera \N \N \N \N \N 98215 \N varietas Chenopodium berlandieri var. zschackei \N \N \N \N \N 98216 C.parvifolia Catesbaea Catesbaea parvifolia \N \N \N \N \N 98217 A.strongylophylla Acacia Acacia strongylophylla \N \N \N \N \N 98218 L.micropoides Lasiopogon Lasiopogon micropoides \N \N \N \N \N 98219 E.truncatum Epimedium Epimedium truncatum \N \N \N \N \N 98220 S.stalmansii Syncolostemon Syncolostemon stalmansii \N \N \N \N \N 98221 M.bocensis Mammillaria Mammillaria bocensis \N \N \N \N \N 98222 B.anay Beilschmiedia Beilschmiedia anay \N \N \N \N \N 98223 H.acetosella Hibiscus Hibiscus acetosella \N \N \N \N \N 98224 S.concinnula Staurogyne Staurogyne concinnula \N \N \N \N \N 98225 A.13653 Alstroemeria Alstroemeria sp. Anderson 13653 \N \N \N \N \N 98226 D.tenuifolius Darwiniothamnus Darwiniothamnus tenuifolius \N \N \N \N \N 98227 E.elegans Eleocharis Eleocharis elegans elegant spikerush \N \N \N \N 98228 B.lanuginosa Brongniartikentia Brongniartikentia lanuginosa \N \N \N \N \N 98229 \N genus Dubautia \N \N \N \N \N 98230 H.alatostylus Hemiphylacus Hemiphylacus alatostylus \N \N \N \N \N 98231 H.bracteosa Hastingsia Hastingsia bracteosa \N \N \N \N \N 98232 F.gummosa Ferula Ferula gummosa \N \N \N \N \N 98233 D.parviflora Diospyros Diospyros parviflora \N \N \N \N \N 98234 C.arenicola Claytonia Claytonia arenicola \N \N \N \N \N 98235 P.buchtienii Piptadenia Piptadenia buchtienii \N \N \N \N \N 98236 C.varians Calathea Calathea varians \N \N \N \N \N 98237 A.polyanthum Allium Allium polyanthum \N \N \N \N \N 98238 \N genus Trischidium \N \N \N \N \N 98239 A.angustatum Arthrophyllum Arthrophyllum angustatum \N \N \N \N \N 98240 \N subspecies Centaurea triumfettii subsp. pirinensis \N \N \N \N \N 98241 C.paniculata Coursetia Coursetia paniculata \N \N \N \N \N 98242 \N subspecies Argemone pleiacantha subsp. pinnatisecta \N \N \N \N \N 98243 \N genus x Zelenkocidium \N \N \N \N \N 98244 T.harlingii Tropaeolum Tropaeolum harlingii \N \N \N \N \N 98245 V.cylindraceum Vaccinium Vaccinium cylindraceum \N \N \N \N \N 98246 S.toto Schefflera Schefflera toto \N \N \N \N \N 98247 \N subspecies Saltugilia splendens subsp. splendens \N \N \N \N \N 98248 A.siamensis Apocopis Apocopis siamensis \N \N \N \N \N 98249 S.oreodoxa Soldanella Soldanella oreodoxa \N \N \N \N \N 98250 S.dendroides Salsola Salsola dendroides \N \N \N \N \N 98251 \N genus Warreopsis \N \N \N \N \N 98252 V.multidentata Valerianella Valerianella multidentata \N \N \N \N \N 98253 D.aduncum Dendrobium Dendrobium aduncum \N \N \N \N \N 98254 C.thaianum Crinum Crinum thaianum \N \N \N \N \N 98255 R.congesta Renealmia Renealmia congesta \N \N \N \N \N 98256 R.muscula Rebutia Rebutia muscula \N \N \N \N \N 98257 C.iridioides Cymbidium Cymbidium iridioides \N \N \N \N \N 98258 L.galeobdolon Lamium Lamium galeobdolon yellow archangel \N \N \N \N 98259 A.obesum Adenium Adenium obesum desert rose \N \N \N \N 98260 S.mitis Scleria Scleria mitis \N \N \N \N \N 98261 \N no rank Gesneriaceae incertae sedis \N \N \N \N \N 98262 C.carolinianum Clinopodium Clinopodium carolinianum \N \N \N \N \N 98263 \N family Ebenaceae ebony family \N \N \N \N 98264 \N varietas Solanum lycopersicum var. cerasiforme cherry tomato \N \N \N \N 98265 C.manhartii Carex Carex manhartii \N \N \N \N \N 98266 A.canadense Asarum Asarum canadense \N \N \N \N \N 98267 H.odoratissimum Helichrysum Helichrysum odoratissimum \N \N \N \N \N 98268 R.littoralis Rauvolfia Rauvolfia littoralis \N \N \N \N \N 98269 A.guanacastensis Alfaroa Alfaroa guanacastensis \N \N \N \N \N 98270 R.davurica Rosa Rosa davurica \N \N \N \N \N 98271 \N varietas Penstemon fruticosus var. scouleri \N \N \N \N \N 98272 E.bolusiae Erica Erica bolusiae \N \N \N \N \N 98273 P.swinhoei Pieris Pieris swinhoei \N \N \N \N \N 98274 A.pachyloba Aspalathus Aspalathus pachyloba \N \N \N \N \N 98275 E.nicaeensis Euphorbia Euphorbia nicaeensis \N \N \N \N \N 98276 S.campanulata Silene Silene campanulata \N \N \N \N \N 98277 O.ludoviciana Orobanche Orobanche ludoviciana \N \N \N \N \N 98278 C.intricata Clematis Clematis intricata \N \N \N \N \N 98279 A.dewildermanii Alchemilla Alchemilla dewildermanii \N \N \N \N \N 98280 D.668 Dalbergia Dalbergia sp. Pennington 668 \N \N \N \N \N 98281 S.sipylea Sideritis Sideritis sipylea \N \N \N \N \N 98282 T.suasorium Taraxacum Taraxacum suasorium \N \N \N \N \N 98283 D.pillansii Disa Disa pillansii \N \N \N \N \N 98284 A.simplex Armeria Armeria simplex \N \N \N \N \N 98285 S.argentea Senna Senna argentea \N \N \N \N \N 98286 H.cymosum Hieracium Hieracium cymosum \N \N \N \N \N 98287 E.pulverulenta Eucalyptus Eucalyptus pulverulenta powdered gum,silver gum \N \N \N \N 98288 E.contortum Eriogonum Eriogonum contortum \N \N \N \N \N 98289 A.marmorata Agave Agave marmorata \N \N \N \N \N 98290 S.maritima Stemodia Stemodia maritima seaside twintip \N \N \N \N 98291 T.carinatum Thesium Thesium carinatum \N \N \N \N \N 98292 D.tetragonum Dendrobium Dendrobium tetragonum \N \N \N \N \N 98293 I.falcifer Impatiens Impatiens falcifer \N \N \N \N \N 98295 I.lancifolia Iryanthera Iryanthera lancifolia \N \N \N \N \N 98296 F.fungosa Fargesia Fargesia fungosa \N \N \N \N \N 98297 \N no rank unclassified Oxytropis \N \N \N \N \N 98298 P.henrici Polystachya Polystachya henrici \N \N \N \N \N 98299 G.tulocarpus Guardiola Guardiola tulocarpus \N \N \N \N \N 98300 A.anceps Axonopus Axonopus anceps \N \N \N \N \N 98301 \N genus Kerianthera \N \N \N \N \N 98302 A.friesiana Antennaria Antennaria friesiana \N \N \N \N \N 98303 I.nusairiensis Iris Iris nusairiensis \N \N \N \N \N 98304 \N genus Eclipta \N \N \N \N \N 98305 M.townsendii Mimosa Mimosa townsendii \N \N \N \N \N 98306 C.schiedeanus Croton Croton schiedeanus \N \N \N \N \N 98307 A.canina Agrostis Agrostis canina velvet bent grass,velvet bentgrass \N \N \N \N 98308 A.glabratum Apiopetalum Apiopetalum glabratum \N \N \N \N \N 98309 P.praemorsum Pelargonium Pelargonium praemorsum \N \N \N \N \N 98310 M.rotundiloba Morus Morus rotundiloba \N \N \N \N \N 98311 R.sceleratus Ranunculus Ranunculus sceleratus \N \N \N \N \N 98312 S.platycalyx Sida Sida platycalyx \N \N \N \N \N 98313 N.odorata Nymphaea Nymphaea odorata American white water-lily \N \N \N \N 98314 \N family Sphaerosepalaceae \N \N \N \N \N 98315 S.latepetiolata Saxifraga Saxifraga latepetiolata \N \N \N \N \N 98316 P.maranyonense Piper Piper maranyonense \N \N \N \N \N 98317 A.ampliceps Acacia Acacia ampliceps \N \N \N \N \N 98318 U.Papilionoideae unclassified Papillionoideae undetermined Papilionoideae \N \N \N \N \N 98319 C.nodosa Cordia Cordia nodosa \N \N \N \N \N 98320 R.milliganii Richea Richea milliganii \N \N \N \N \N 98321 C.rankanensis Carpinus Carpinus rankanensis \N \N \N \N \N 98322 L.forsteri Luzula Luzula forsteri \N \N \N \N \N 98323 C.palustre Cirsium Cirsium palustre \N \N \N \N \N 98324 E.spicata Engelhardia Engelhardia spicata yun nan huang qi \N \N \N \N 98325 T.glaucescens Tyrbastes Tyrbastes glaucescens \N \N \N \N \N 98326 T.4226h unclassified Taraxacum Taraxacum sp. 4226h \N \N \N \N \N 98327 P.verticillatum Polygonatum Polygonatum verticillatum \N \N \N \N \N 98328 C.wilsonii Cerastium Cerastium wilsonii \N \N \N \N \N 98329 M.stellulata Macrolenes Macrolenes stellulata \N \N \N \N \N 98330 D.stenanthos Didymocarpus Didymocarpus stenanthos \N \N \N \N \N 98331 P.johnstonii Polystachya Polystachya johnstonii \N \N \N \N \N 98332 E.reflectens Endlicheria Endlicheria reflectens \N \N \N \N \N 98333 P.guianensis Paloue Paloue guianensis \N \N \N \N \N 98334 Z.onusta Zelenkoa Zelenkoa onusta \N \N \N \N \N 98335 \N genus Benthamina \N \N \N \N \N 98336 \N genus Pseudoplantago \N \N \N \N \N 98337 O.refractum Ornithogalum Ornithogalum refractum \N \N \N \N \N 98338 W.raiateensis Weinmannia Weinmannia raiateensis \N \N \N \N \N 98339 \N family Asparagaceae asparagus family \N \N \N \N 98340 P.yukonensis Podistera Podistera yukonensis \N \N \N \N \N 98341 \N genus Picrorhiza \N \N \N \N \N 98342 R.salviifolia Ruellia Ruellia salviifolia \N \N \N \N \N 98343 \N genus Lepidonia \N \N \N \N \N 98344 H.brevipetiolaris Hopea Hopea brevipetiolaris \N \N \N \N \N 98345 W.suaveolens Waitzia Waitzia suaveolens \N \N \N \N \N 98346 B.smithwhitei Brachyscome Brachyscome smithwhitei \N \N \N \N \N 98347 C.grandiflora Cyrtandra Cyrtandra grandiflora \N \N \N \N \N 98348 S.sulphureum Sterigmostemum Sterigmostemum sulphureum \N \N \N \N \N 98349 N.apiculata Neolaugeria Neolaugeria apiculata \N \N \N \N \N 98350 A.sericeus Adenanthos Adenanthos sericeus \N \N \N \N \N 98351 H.parvifolia Helietta Helietta parvifolia \N \N \N \N \N 98352 T.gabonensis Tiliacora Tiliacora gabonensis \N \N \N \N \N 98353 V.major Vinca Vinca major large periwinkle \N \N \N \N 98354 H.acuminata Heritiera Heritiera acuminata \N \N \N \N \N 98355 C.padoides Combretum Combretum padoides \N \N \N \N \N 98356 \N subspecies Adenocarpus complicatus subsp. complicatus \N \N \N \N \N 98357 G.filiferum Graptopetalum Graptopetalum filiferum \N \N \N \N \N 98358 \N subspecies Arrhenatherum elatius subsp. sardoum \N \N \N \N \N 98359 E.capensis Elegia Elegia capensis \N \N \N \N \N 98360 E.simplicifolium Epimedium Epimedium simplicifolium \N \N \N \N \N 98361 C.oligophlebia Cornus Cornus oligophlebia \N \N \N \N \N 98362 D.monetaria Dalbergia Dalbergia monetaria \N \N \N \N \N 98363 Q.petraea Quercus Quercus petraea durmast oak,sessile oak \N \N \N \N 98364 \N genus Tozzia \N \N \N \N \N 98365 \N no rank Saccharum hybrid cultivar ROC20 \N \N \N \N \N 98366 G.argenteus Gymnocarpos Gymnocarpos argenteus \N \N \N \N \N 98367 \N subtribe Gymnantheminae \N \N \N \N \N 98368 P.patens Pterostylis Pterostylis patens \N \N \N \N \N 98369 K.spicata Kohleria Kohleria spicata \N \N \N \N \N 98370 I.forrestii Impatiens Impatiens forrestii \N \N \N \N \N 98371 B.cornuta Benzingia Benzingia cornuta \N \N \N \N \N 98372 C.meyeri Chaerophyllum Chaerophyllum meyeri \N \N \N \N \N 98373 S.paradictyon Senna Senna paradictyon \N \N \N \N \N 98374 L.mappacea Litsea Litsea mappacea \N \N \N \N \N 98375 G.aphanactis Grindelia Grindelia aphanactis \N \N \N \N \N 98376 C.muriculata Carex Carex muriculata \N \N \N \N \N 98377 \N genus Irenella \N \N \N \N \N 98378 P.cauliflora Polyalthia Polyalthia cauliflora \N \N \N \N \N 98379 \N subspecies Sidalcea hickmanii subsp. parishii \N \N \N \N \N 98380 C.flacca Carex Carex flacca \N \N \N \N \N 98381 C.euphlebia Camellia Camellia euphlebia \N \N \N \N \N 98382 P.emersonii Paphiopedilum Paphiopedilum emersonii \N \N \N \N \N 98383 O.japonicus Oplopanax Oplopanax japonicus \N \N \N \N \N 98384 R.pulchra Rhipsalis Rhipsalis pulchra \N \N \N \N \N 98385 G.94.84 Gunnera Gunnera sp. CWD 94.84 \N \N \N \N \N 98386 S.villosa Swainsona Swainsona villosa \N \N \N \N \N 98387 V.stocksii Vincetoxicum Vincetoxicum stocksii \N \N \N \N \N 98388 \N varietas Chrysanthemum japonense var. ashizuriense \N \N \N \N \N 98389 C.oblonga Cyrtostylis Cyrtostylis oblonga \N \N \N \N \N 98390 J.hindsii Juglans Juglans hindsii \N \N \N \N \N 98391 C.rausii Colchicum Colchicum rausii \N \N \N \N \N 98392 \N genus Agatea \N \N \N \N \N 98393 V.americana Vicia Vicia americana \N \N \N \N \N 98394 \N genus Esmeralda \N \N \N \N \N 98395 P.sativa Pastinaca Pastinaca sativa parsnip \N \N \N \N 98396 V.saundersii Vriesea Vriesea saundersii \N \N \N \N \N 98397 L.lacunosa Lophogyne Lophogyne lacunosa \N \N \N \N \N 98398 \N genus Desmazeria \N \N \N \N \N 98399 C.caput-medusae Calligonum Calligonum caput-medusae \N \N \N \N \N 98400 G.crenophilum Geranium Geranium crenophilum \N \N \N \N \N 98401 A.acetosa Ampelocissus Ampelocissus acetosa \N \N \N \N \N 98402 \N genus Eichhornia \N \N \N \N \N 98403 \N varietas Claytonia megarhiza var. nivalis \N \N \N \N \N 98404 T.barbozae Telipogon Telipogon barbozae \N \N \N \N \N 98405 P.reticulata Pultenaea Pultenaea reticulata \N \N \N \N \N 98406 B.leichhardtii Bridelia Bridelia leichhardtii \N \N \N \N \N 98407 L.spruceana Loreya Loreya spruceana \N \N \N \N \N 98408 A.mcvaughii Asclepias Asclepias mcvaughii \N \N \N \N \N 98409 P.caerulea Phyllodoce Phyllodoce caerulea blue mountain-heath \N \N \N \N 98410 \N genus Litsea \N \N \N \N \N 98411 P.cernua Pulsatilla Pulsatilla cernua \N \N \N \N \N 98412 S.macrophylla Sinningia Sinningia macrophylla \N \N \N \N \N 98413 C.parvifolia Cineraria Cineraria parvifolia \N \N \N \N \N 98414 P.dothioensis Planchonella Planchonella dothioensis \N \N \N \N \N 98415 H.microcephala Hymenoxys Hymenoxys microcephala \N \N \N \N \N 98416 C.00-213 Cistanthe Cistanthe sp. Hershkovitz 00-213 \N \N \N \N \N 98417 P.sagittalis Pluchea Pluchea sagittalis \N \N \N \N \N 98418 P.tetranthera Pluchea Pluchea tetranthera \N \N \N \N \N 98419 C.minutiflora Columnea Columnea minutiflora \N \N \N \N \N 98420 S.ellipticum Sphyrospermum Sphyrospermum ellipticum \N \N \N \N \N 98421 P.africanus Parochetus Parochetus africanus \N \N \N \N \N 98422 B.pygmaeum Brachystelma Brachystelma pygmaeum \N \N \N \N \N 98423 A.juvenna Aloe Aloe juvenna \N \N \N \N \N 98424 A.niitakayamensis Artemisia Artemisia niitakayamensis \N \N \N \N \N 98425 L.capitatus Lisianthius Lisianthius capitatus \N \N \N \N \N 98426 S.argillosa Silene Silene argillosa \N \N \N \N \N 98427 D.flavida Dietes Dietes flavida \N \N \N \N \N 98428 C.nigricans Carex Carex nigricans \N \N \N \N \N 98429 C.dutreuilii Corispermum Corispermum dutreuilii \N \N \N \N \N 98430 H.bahiensis Hiraea Hiraea bahiensis \N \N \N \N \N 98431 C.concinna Carex Carex concinna \N \N \N \N \N 98432 J.castaneus Juncus Juncus castaneus chestnut rush \N \N \N \N 98433 B.FS869 Bulbophyllum Bulbophyllum aff. baronii FS869 \N \N \N \N \N 98434 F.corymbosa Frankenia Frankenia corymbosa \N \N \N \N \N 98435 \N subspecies Arabidopsis halleri subsp. gemmifera \N \N \N \N \N 98436 I.beresowskii Incarvillea Incarvillea beresowskii \N \N \N \N \N 98437 \N genus Amblygonocarpus \N \N \N \N \N 98438 D.hirsuta Duroia Duroia hirsuta \N \N \N \N \N 98439 \N varietas Tillandsia tenuifolia var. tenuifolia \N \N \N \N \N 98440 \N genus Mozaffariania \N \N \N \N \N 98441 A.costatum Antirrhinum Antirrhinum costatum \N \N \N \N \N 98442 D.rhodoloma Drymonia Drymonia rhodoloma \N \N \N \N \N 98443 N.dombeyi Nothofagus Nothofagus dombeyi \N \N \N \N \N 98444 P.villosa Pourouma Pourouma villosa \N \N \N \N \N 98445 H.exalata Haloragis Haloragis exalata \N \N \N \N \N 98446 L.pubiflora Latua Latua pubiflora \N \N \N \N \N 98447 G.glabra Glycyrrhiza Glycyrrhiza glabra \N \N \N \N \N 98448 C.beckiana Campanula Campanula beckiana \N \N \N \N \N 98449 P.sinjiangensis Paeonia Paeonia sinjiangensis \N \N \N \N \N 98450 M.papillosa Mosannona Mosannona papillosa \N \N \N \N \N 98451 A.unalaskensis Artemisia Artemisia unalaskensis \N \N \N \N \N 98452 P.CK-2005 Phyllobolus Phyllobolus sp. CK-2005 \N \N \N \N \N 98453 \N genus Penelopeia \N \N \N \N \N 98454 C.usambarensis Cephalosphaera Cephalosphaera usambarensis \N \N \N \N \N 98455 C.fastigiata Campanula Campanula fastigiata \N \N \N \N \N 98456 \N genus Boehmeria \N \N \N \N \N 98457 P.mucronata Passiflora Passiflora mucronata \N \N \N \N \N 98458 \N varietas Corallorhiza maculata var. mexicana \N \N \N \N \N 98459 C.scopulorum Chrysothamnus Chrysothamnus scopulorum Grand Canyon glowweed \N \N \N \N 98460 D.spinosa Desfontainia Desfontainia spinosa \N \N \N \N \N 98461 \N genus Macrolobium \N \N \N \N \N 98462 \N subspecies Vicia sativa subsp. cordata \N \N \N \N \N 98463 L.ferrea Libidibia Libidibia ferrea \N \N \N \N \N 98464 R.fragariiflorum Rhododendron Rhododendron fragariiflorum \N \N \N \N \N 98465 A.nepalensis Arundinella Arundinella nepalensis \N \N \N \N \N 98466 P.equestris Phalaenopsis Phalaenopsis equestris \N \N \N \N \N 98467 M.fordii Meliosma Meliosma fordii \N \N \N \N \N 98468 S.purpurea Sulcorebutia Sulcorebutia purpurea \N \N \N \N \N 98469 P.helleri Phyllostegia Phyllostegia helleri \N \N \N \N \N 98470 G.hederacea Glechoma Glechoma hederacea gill-over-the-ground,ground ivy \N \N \N \N 98471 \N forma Gymnocalycium kieslingii f. alboareolatum \N \N \N \N \N 98472 B.gymnorhiza Bruguiera Bruguiera gymnorhiza Burma mangrove \N \N \N \N 98473 P.pratensis Poa Poa pratensis Kentucky bluegrass \N \N \N \N 98474 H.virgatum Hymenidium Hymenidium virgatum \N \N \N \N \N 98475 P.thurberiana Podagrostis Podagrostis thurberiana \N \N \N \N \N 98476 S.madagascariensis Sorindeia Sorindeia madagascariensis \N \N \N \N \N 98477 V.flagelliformis Viola Viola flagelliformis \N \N \N \N \N 98478 \N genus Capitanopsis \N \N \N \N \N 98479 S.94-5281 Stachyphrynium Stachyphrynium sp. Kress 94-5281 \N \N \N \N \N 98480 \N subspecies Gazania jurineifolia subsp. jurineifolia \N \N \N \N \N 98481 A.articulata Anabasis Anabasis articulata \N \N \N \N \N 98482 T.rosthornii Trichosanthes Trichosanthes rosthornii \N \N \N \N \N 98483 \N subspecies Vicia pannonica subsp. striata \N \N \N \N \N 98484 A.aranica Alchemilla Alchemilla aranica \N \N \N \N \N 98485 T.aurea Tetrazygia Tetrazygia aurea \N \N \N \N \N 98486 \N tribe Steyermarkochloeae \N \N \N \N \N 98487 P.heterophyllus Penstemon Penstemon heterophyllus \N \N \N \N \N 98489 C.rehderiana Clematis Clematis rehderiana \N \N \N \N \N 98490 P.mcconnellii Papaver Papaver mcconnellii \N \N \N \N \N 98491 \N genus Nesocodon \N \N \N \N \N 98492 A.lucida Amelanchier Amelanchier lucida \N \N \N \N \N 98493 G.foliosa Goodyera Goodyera foliosa \N \N \N \N \N 98494 D.attenuistylis Dalechampia Dalechampia attenuistylis \N \N \N \N \N 98495 \N subspecies Vitellaria paradoxa subsp. paradoxa \N \N \N \N \N 98496 \N varietas Mitella stylosa var. stylosa \N \N \N \N \N 98497 T.lasiocarpum Trigonosciadium Trigonosciadium lasiocarpum \N \N \N \N \N 98498 \N genus Cyrtococcum \N \N \N \N \N 98499 \N genus Thouinidium \N \N \N \N \N 98500 \N varietas Vicia venosa var. glabristyla \N \N \N \N \N 98501 A.angustispathus Amorphophallus Amorphophallus angustispathus \N \N \N \N \N 98502 \N genus Pseudosmodingium \N \N \N \N \N 98503 X.laniflora Xerochloa Xerochloa laniflora \N \N \N \N \N 98504 C.RBN154 Combretum Combretum cf. mkuzense RBN154 \N \N \N \N \N 98505 S.geniculata Shorea Shorea geniculata \N \N \N \N \N 98506 S.hyssopoides Stachys Stachys hyssopoides \N \N \N \N \N 98507 \N genus Serruria \N \N \N \N \N 98508 \N genus Clusiella \N \N \N \N \N 98509 C.racemosa Corydalis Corydalis racemosa \N \N \N \N \N 98510 S.tatsienensis Saussurea Saussurea tatsienensis \N \N \N \N \N 98511 P.polyneura Primula Primula polyneura \N \N \N \N \N 98512 N.alpestris Narcissus Narcissus alpestris \N \N \N \N \N 98513 T.capitatus Tragopogon Tragopogon capitatus \N \N \N \N \N 98514 I.serpens Impatiens Impatiens serpens \N \N \N \N \N 98515 \N subspecies Camassia quamash subsp. linearis \N \N \N \N \N 98516 P.grandicalcaratum Pelargonium Pelargonium grandicalcaratum \N \N \N \N \N 98517 A.brenesiana Allomarkgrafia Allomarkgrafia brenesiana \N \N \N \N \N 98518 \N genus Juanulloa \N \N \N \N \N 98519 D.hirsutum Dorycnium Dorycnium hirsutum \N \N \N \N \N 98520 C.rhizomata Cardamine Cardamine rhizomata \N \N \N \N \N 98521 V.candida Vellozia Vellozia candida \N \N \N \N \N 98522 G.aurea Gentianella Gentianella aurea \N \N \N \N \N 98523 \N subspecies Magnolia sieboldii subsp. sieboldii \N \N \N \N \N 98524 C.41 Corchorus Corchorus sp. Moeaha 41 \N \N \N \N \N 98525 H.verticillata Hydrocotyle Hydrocotyle verticillata \N \N \N \N \N 98526 A.lasia Aphelandra Aphelandra lasia \N \N \N \N \N 98527 A.gabrielae Anigozanthos Anigozanthos gabrielae \N \N \N \N \N 98528 S.chingii Scurrula Scurrula chingii \N \N \N \N \N 98529 \N forma Aristida gypsophila f. gypsophiloides \N \N \N \N \N 98530 K.aspera Kohautia Kohautia aspera \N \N \N \N \N 98531 G.pictum Graphistemma Graphistemma pictum \N \N \N \N \N 98532 \N genus Thrinax \N \N \N \N \N 98533 S.pendula Senna Senna pendula yerba del burro \N \N \N \N 98534 \N genus Crucihimalaya \N \N \N \N \N 98535 B.longipetiolata Beccariella Beccariella longipetiolata \N \N \N \N \N 98536 S.ocymoides Sanvitalia Sanvitalia ocymoides \N \N \N \N \N 98537 S.angolensis Strychnos Strychnos angolensis \N \N \N \N \N 98538 T.laricifolium Trigonopterum Trigonopterum laricifolium \N \N \N \N \N 98539 E.dilatatum Eryngium Eryngium dilatatum \N \N \N \N \N 98540 \N genus Plectocomiopsis \N \N \N \N \N 98541 \N genus Macropodium \N \N \N \N \N 98542 M.costaricensis Mosannona Mosannona costaricensis \N \N \N \N \N 98543 S.gaultheria Sericolea Sericolea gaultheria \N \N \N \N \N 98544 C.tetragona Cassiope Cassiope tetragona white arctic mountain heather \N \N \N \N 98545 A.humilis Allocasuarina Allocasuarina humilis \N \N \N \N \N 98546 E.fausta Erica Erica fausta \N \N \N \N \N 98547 B.racemosa Buddleja Buddleja racemosa \N \N \N \N \N 98548 \N genus Pommereschea \N \N \N \N \N 98549 C.glaziovii Cryptanthus Cryptanthus glaziovii \N \N \N \N \N 98550 A.kweilinense Acer Acer kweilinense \N \N \N \N \N 98551 R.maximiformis Rubus Rubus maximiformis \N \N \N \N \N 98552 L.odoratus Lupinus Lupinus odoratus \N \N \N \N \N 98553 M.reptans Mazus Mazus reptans \N \N \N \N \N 98554 B.fruticescens Bupleurum Bupleurum fruticescens \N \N \N \N \N 98555 A.principissa Aspasia Aspasia principissa \N \N \N \N \N 98556 M.dubius Microdon Microdon dubius \N \N \N \N \N 98557 L.SH-2010 Ligustrum Ligustrum sp. SH-2010 \N \N \N \N \N 98558 \N genus Empogona \N \N \N \N \N 98559 \N subspecies Avena sterilis subsp. ludoviciana \N \N \N \N \N 98560 \N genus Ristantia \N \N \N \N \N 98561 \N genus Chlamydocarya \N \N \N \N \N 98562 T.blumei Typhonium Typhonium blumei \N \N \N \N \N 98563 M.bradburiana Monarda Monarda bradburiana \N \N \N \N \N 98564 P.betonicifolium Phyteuma Phyteuma betonicifolium \N \N \N \N \N 98565 B.distachyon Brachypodium Brachypodium distachyon \N \N \N \N \N 98566 C.arvense Cerastium Cerastium arvense \N \N \N \N \N 98567 P.paucifolia Poitea Poitea paucifolia \N \N \N \N \N 98568 F.pollen unclassified Castanea fossil Castanea pollen \N \N \N \N \N 98569 T.pinifolium Thesium Thesium pinifolium \N \N \N \N \N 98570 M.vaginalis Maxillaria Maxillaria vaginalis \N \N \N \N \N 98571 \N varietas Ceanothus thyrsiflorus var. griseus \N \N \N \N \N 98572 F.pseudolaxa Festuca Festuca pseudolaxa \N \N \N \N \N 98573 S.yazdiana Salsola Salsola yazdiana \N \N \N \N \N 98574 D.hydrocotyloides Dickinsia Dickinsia hydrocotyloides \N \N \N \N \N 98575 \N genus Cleistocactus \N \N \N \N \N 98576 T.flexuosa Thelymitra Thelymitra flexuosa \N \N \N \N \N 98577 S.libanotis Seseli Seseli libanotis \N \N \N \N \N 98578 L.seguinii Lobelia Lobelia seguinii \N \N \N \N \N 98579 A.serpens Agapetes Agapetes serpens \N \N \N \N \N 98580 M.bradei Maxillaria Maxillaria bradei \N \N \N \N \N 98581 A.distichum Angraecum Angraecum distichum \N \N \N \N \N 98582 C.swietenia Chloroxylon Chloroxylon swietenia \N \N \N \N \N 98583 P.yucatanensis Pluchea Pluchea yucatanensis \N \N \N \N \N 98584 K.capensis Koeleria Koeleria capensis \N \N \N \N \N 98585 P.ferrugineum Pittosporum Pittosporum ferrugineum \N \N \N \N \N 98586 L.himalayanum Leontopodium Leontopodium himalayanum \N \N \N \N \N 98587 \N genus Majidea \N \N \N \N \N 98588 O.lehmannianum Octoceras Octoceras lehmannianum \N \N \N \N \N 98589 E.deuaensis Eucalyptus Eucalyptus deuaensis \N \N \N \N \N 98590 \N varietas Fagus sylvatica var. atropunicea \N \N \N \N \N 98591 P.ursina Prunus Prunus ursina \N \N \N \N \N 98592 H.crinita Heinsia Heinsia crinita \N \N \N \N \N 98593 \N genus Malagasia \N \N \N \N \N 98594 \N order Liliales \N \N \N \N \N 98595 R.montanus Rhadamanthus Rhadamanthus montanus \N \N \N \N \N 98596 C.pyrrhopappa Conyza Conyza pyrrhopappa broadleaf fleabane \N \N \N \N 98597 I.ledermannii Iphigenia Iphigenia ledermannii \N \N \N \N \N 98598 U.pectinifera Uebelmannia Uebelmannia pectinifera \N \N \N \N \N 98599 D.phyllocalyx Dasiphora Dasiphora phyllocalyx \N \N \N \N \N 98600 A.mahafalense Alantsilodendron Alantsilodendron mahafalense \N \N \N \N \N 98601 A.laevigata Acaena Acaena laevigata \N \N \N \N \N 98602 A.91 Athenaea Athenaea sp. Bohs 91 \N \N \N \N \N 98603 \N varietas Eleocharis parvula var. anachaeta \N \N \N \N \N 98604 A.rafflesiana Alpinia Alpinia rafflesiana \N \N \N \N \N 98605 S.coreana Symplocos Symplocos coreana \N \N \N \N \N 98606 R.sandwicensis Rauvolfia Rauvolfia sandwicensis \N \N \N \N \N 98607 \N genus Leucophyllum \N \N \N \N \N 98608 P.kingii Perezia Perezia kingii \N \N \N \N \N 98609 P.eydouxia Pandanus Pandanus eydouxia \N \N \N \N \N 98610 M.barteri Macaranga Macaranga barteri \N \N \N \N \N 98611 H.speciosa Hymenocallis Hymenocallis speciosa \N \N \N \N \N 98612 \N genus Strangea \N \N \N \N \N 98613 \N genus Austrocylindropuntia \N \N \N \N \N 98614 E.peninsularis Euphorbia Euphorbia peninsularis \N \N \N \N \N 98615 B.ceiba Bombax Bombax ceiba Indian kapok,red silk-cotton tree \N \N \N \N 98616 E.ruizii Eriotheca Eriotheca ruizii \N \N \N \N \N 98617 C.pauciflora Croomia Croomia pauciflora \N \N \N \N \N 98618 B.O00465_1 Bulbophyllum Bulbophyllum sp. O00465_1 \N \N \N \N \N 98619 B.stuartii Brachyscome Brachyscome stuartii \N \N \N \N \N 98620 P.fluviicola Panicum Panicum fluviicola \N \N \N \N \N 98621 \N genus Anomalluma \N \N \N \N \N 98622 A.pichinchensis Aristolochia Aristolochia pichinchensis \N \N \N \N \N 98623 C.trigonus Cucumis Cucumis trigonus \N \N \N \N \N 98624 S.lobbianum Solanum Solanum lobbianum \N \N \N \N \N 98625 A.simplex Aulacospermum Aulacospermum simplex \N \N \N \N \N 98626 Z.palustris Zizania Zizania palustris \N \N \N \N \N 98627 B.tyrianthina Bifrenaria Bifrenaria tyrianthina \N \N \N \N \N 98628 C.longirostra Coincya Coincya longirostra \N \N \N \N \N 98629 A.calyculata Aechmea Aechmea calyculata \N \N \N \N \N 98630 F.ovina Ferula Ferula ovina \N \N \N \N \N 98631 O.bipartita Oxalis Oxalis bipartita \N \N \N \N \N 98632 C.glabriusculum Chrysanthemum Chrysanthemum glabriusculum \N \N \N \N \N 98633 \N no rank Musa acuminata AAA Group Cavendish banana,dessert banana \N \N \N \N 98634 L.leptostachys Lachnagrostis Lachnagrostis leptostachys \N \N \N \N \N 98635 P.unispicatum Piper Piper unispicatum \N \N \N \N \N 98636 L.flexuosa Lobelia Lobelia flexuosa \N \N \N \N \N 98637 D.fibrosa Dypsis Dypsis fibrosa \N \N \N \N \N 98638 I.verticillata Ilex Ilex verticillata Virginia winterberry,black-alder,winterberry \N \N \N \N 98639 P.sacharosa Pereskia Pereskia sacharosa \N \N \N \N \N 98640 C.minor Caladenia Caladenia minor \N \N \N \N \N 98641 S.minor Sinoradlkofera Sinoradlkofera minor \N \N \N \N \N 98642 S.strangulata Serratula Serratula strangulata \N \N \N \N \N 98643 M.balansae Meryta Meryta balansae \N \N \N \N \N 98644 R.vanvuurenii Rhododendron Rhododendron vanvuurenii \N \N \N \N \N 98645 S.ornata Stelis Stelis ornata \N \N \N \N \N 98646 \N subspecies Euphorbia enterophora subsp. enterophora \N \N \N \N \N 98647 P.saccocarpa Pleurophora Pleurophora saccocarpa \N \N \N \N \N 98648 S.ilicifolia Scrobicaria Scrobicaria ilicifolia \N \N \N \N \N 98649 \N genus Hura \N \N \N \N \N 98650 R.hirtella Reaumuria Reaumuria hirtella \N \N \N \N \N 98651 \N genus Bulbinella \N \N \N \N \N 98652 \N no rank environmental samples Taxonomy:1096673 \N \N \N \N \N 98653 S.harpophylla Sophronitis Sophronitis harpophylla \N \N \N \N \N 98654 \N genus Plectrophora \N \N \N \N \N 98655 E.micrantha Euphrasia Euphrasia micrantha \N \N \N \N \N 98656 B.pervilleana Bridelia Bridelia pervilleana \N \N \N \N \N 98657 H.archaeoides Hakea Hakea archaeoides \N \N \N \N \N 98658 \N varietas Boechera pulchra var. munciensis \N \N \N \N \N 98659 C.karna Citrus Citrus karna \N \N \N \N \N 98660 G.laurifolia Grevillea Grevillea laurifolia \N \N \N \N \N 98661 S.parvifolia Shorea Shorea curtisii x Shorea parvifolia \N \N \N \N \N 98662 S.cedron Simaba Simaba cedron \N \N \N \N \N 98663 A.crucis Alternanthera Alternanthera crucis \N \N \N \N \N 98664 C.727 Calyptrocalyx Calyptrocalyx sp. Dowe 727 \N \N \N \N \N 98665 \N varietas Trillium pusillum var. texanum Texas wake-robin \N \N \N \N 98666 P.forrestii Pterocyclus Pterocyclus forrestii \N \N \N \N \N 98667 B.s.n. Bletia Bletia sp. FLAS s.n. \N \N \N \N \N 98668 M.divaricatum Musineon Musineon divaricatum \N \N \N \N \N 98669 N.stellaris Nigella Nigella stellaris \N \N \N \N \N 98670 P.pycnophyllon Phagnalon Phagnalon pycnophyllon \N \N \N \N \N 98671 \N genus Gigasiphon \N \N \N \N \N 98672 M.tolmiei Micranthes Micranthes tolmiei \N \N \N \N \N 98673 C.alata Cyrtidiorchis Cyrtidiorchis alata \N \N \N \N \N 98674 D.oblongifolia Dyschoriste Dyschoriste oblongifolia \N \N \N \N \N 98675 \N genus Glandulicactus \N \N \N \N \N 98676 P.dioica Polyscias Polyscias dioica \N \N \N \N \N 98677 \N genus Amphiblemma \N \N \N \N \N 98678 C.anacardioides Cupaniopsis Cupaniopsis anacardioides \N \N \N \N \N 98679 D.arboreum Dracophyllum Dracophyllum arboreum \N \N \N \N \N 98680 P.wallichiana Pulsatilla Pulsatilla wallichiana \N \N \N \N \N 98681 P.15867 Pseudima Pseudima sp. McPherson 15867 \N \N \N \N \N 98682 L.linifolius Lathyrus Lathyrus linifolius \N \N \N \N \N 98683 G.appendiculata Grosourdya Grosourdya appendiculata \N \N \N \N \N 98684 F.glaucescens Ferocactus Ferocactus glaucescens \N \N \N \N \N 98685 M.baracoensis Miconia Miconia baracoensis \N \N \N \N \N 98686 \N genus Megacodon \N \N \N \N \N 98687 M.acris Minthostachys Minthostachys acris \N \N \N \N \N 98688 B.rabiensis Berlinia Berlinia rabiensis \N \N \N \N \N 98689 A.nanus Ammopiptanthus Ammopiptanthus nanus \N \N \N \N \N 98690 L.gmelinii Limonium Limonium gmelinii \N \N \N \N \N 98691 L.cosentinii Lupinus Lupinus cosentinii West Australian blue lupin,sandplain lupin \N \N \N \N 98692 E.hyssopifolium Eupatorium Eupatorium album x Eupatorium hyssopifolium \N \N \N \N \N 98693 \N genus Hebanthe \N \N \N \N \N 98694 E.alba Eucalyptus Eucalyptus alba \N \N \N \N \N 98695 C.falcata Carlina Carlina falcata \N \N \N \N \N 98696 \N genus Cavacoa \N \N \N \N \N 98697 T.paniculata Turpinia Turpinia paniculata \N \N \N \N \N 98698 C.pedata Cyclanthera Cyclanthera pedata \N \N \N \N \N 98699 O.compacta Oxalis Oxalis compacta \N \N \N \N \N 98700 \N subspecies Phoradendron juniperinum subsp. juniperinum \N \N \N \N \N 98701 \N genus Cosmibuena \N \N \N \N \N 98702 O.drumana Ophrys Ophrys drumana \N \N \N \N \N 98703 S.myrtilloides Salix Salix aurita x Salix myrtilloides \N \N \N \N \N 98704 E.BG-2009 Epimedium Epimedium sp. BG-2009 \N \N \N \N \N 98705 C.brunnescens Carex Carex brunnescens \N \N \N \N \N 98706 P.littorale Piper Piper littorale \N \N \N \N \N 98707 L.globularia Litsea Litsea globularia \N \N \N \N \N 98708 F.yalaensis Festuca Festuca yalaensis \N \N \N \N \N 98709 O.lucens Ouratea Ouratea lucens \N \N \N \N \N 98710 S.najatrix Sabicea Sabicea najatrix \N \N \N \N \N 98711 S.guineense Syzygium Syzygium guineense \N \N \N \N \N 98712 D.diemii Diplolepis Diplolepis diemii \N \N \N \N \N 98713 L.subracemosa Lindernia Lindernia subracemosa \N \N \N \N \N 98714 M.latistipulata Microcos Microcos latistipulata \N \N \N \N \N 98715 S.anceps Solanum Solanum anceps \N \N \N \N \N 98716 S.viridis Schisandra Schisandra viridis \N \N \N \N \N 98717 C.rubricoronae Cynanchum Cynanchum rubricoronae \N \N \N \N \N 98718 O.alsatica Orobanche Orobanche alsatica \N \N \N \N \N 98719 D.orientalis Dianthus Dianthus orientalis \N \N \N \N \N 98720 L.rhamnifolia Leandra Leandra rhamnifolia \N \N \N \N \N 98721 \N subspecies Galium angustifolium subsp. angustifolium \N \N \N \N \N 98722 T.scabra Torilis Torilis scabra \N \N \N \N \N 98723 \N genus Moscharia \N \N \N \N \N 98724 \N genus Dalembertia \N \N \N \N \N 98725 O.undulatum Ornithoglossum Ornithoglossum undulatum \N \N \N \N \N 98726 P.cylindrica Pulicaria Pulicaria cylindrica \N \N \N \N \N 98727 C.acuminatus Chaunanthus Chaunanthus acuminatus \N \N \N \N \N 98728 \N varietas Cristaria viridi-luteola var. pinnata \N \N \N \N \N 98729 J.tuberosa Jasonia Jasonia tuberosa \N \N \N \N \N 98730 A.vernicosum Arcytophyllum Arcytophyllum vernicosum \N \N \N \N \N 98731 O.maderoi Oncidium Oncidium maderoi \N \N \N \N \N 98732 \N subfamily Aphyllanthoideae \N \N \N \N \N 98733 C.pusilla Crepis Crepis pusilla \N \N \N \N \N 98734 C.leptophylla Camellia Camellia leptophylla \N \N \N \N \N 98735 C.772 Croton Croton sp. van Ee 772 \N \N \N \N \N 98736 \N genus Malacocarpus \N \N \N \N \N 98737 E.JK-2009 Exochaenium Exochaenium sp. 1 JK-2009 \N \N \N \N \N 98738 M.amplexicaulis Megahertzia Megahertzia amplexicaulis \N \N \N \N \N 98739 S.lycioides Salvia Salvia lycioides canyon sage \N \N \N \N 98740 S.nana Shangrilaia Shangrilaia nana \N \N \N \N \N 98741 S.cruciatum Sinocarum Sinocarum cruciatum \N \N \N \N \N 98742 \N genus Cortaderia \N \N \N \N \N 98743 H.andina Huarpea Huarpea andina \N \N \N \N \N 98744 C.pwaniensis Coccinia Coccinia grandis x Coccinia pwaniensis \N \N \N \N \N 98745 H.emoryi Holacantha Holacantha emoryi \N \N \N \N \N 98746 A.meniaudi Anisophyllea Anisophyllea meniaudi \N \N \N \N \N 98747 S.myosuroides Sacciolepis Sacciolepis myosuroides \N \N \N \N \N 98748 \N genus Castanospora \N \N \N \N \N 98749 P.tuberosa Pueraria Pueraria tuberosa Indian kudzu \N \N \N \N 98750 \N genus Edraianthus \N \N \N \N \N 98751 R.bainbridgeanum Rhododendron Rhododendron bainbridgeanum \N \N \N \N \N 98752 B.longiradiatum Bupleurum Bupleurum longiradiatum \N \N \N \N \N 98753 D.ocellata Disa Disa ocellata \N \N \N \N \N 98754 A.kashmiricum Aegopodium Aegopodium kashmiricum \N \N \N \N \N 98755 S.pteropetiolata Stewartia Stewartia pteropetiolata \N \N \N \N \N 98756 R.deminuta Rebutia Rebutia deminuta \N \N \N \N \N 98757 \N genus Mosdenia \N \N \N \N \N 98758 \N tribe Calophylleae \N \N \N \N \N 98759 \N genus Maireana \N \N \N \N \N 98760 R.maculata Rhynchostele Rhynchostele maculata \N \N \N \N \N 98761 \N genus Licaria \N \N \N \N \N 98762 E.sarcodes Euphorbia Euphorbia sarcodes \N \N \N \N \N 98763 E.fedtschenkoi Elymus Elymus fedtschenkoi \N \N \N \N \N 98764 S.pseudotaraxaci Scorzoneroides Scorzoneroides pseudotaraxaci \N \N \N \N \N 98765 L.densiflora Lachnaea Lachnaea densiflora \N \N \N \N \N 98766 P.atlanticum Papaver Papaver atlanticum Atlas poppy \N \N \N \N 98767 R.267(HITBC) Roscoea Roscoea sp. XYM 267(HITBC) \N \N \N \N \N 98768 C.hilariana Clusia Clusia hilariana \N \N \N \N \N 98769 B.goegoensis Begonia Begonia goegoensis \N \N \N \N \N 98770 K.uncinioides Kobresia Kobresia uncinioides \N \N \N \N \N 98771 C.davisii Colchicum Colchicum davisii \N \N \N \N \N 98772 N.seychellana Northea Northea seychellana \N \N \N \N \N 98773 R.humbertii Rytigynia Rytigynia humbertii \N \N \N \N \N 98774 A.denticulatum Allium Allium denticulatum \N \N \N \N \N 98775 G.tampensis Glandularia Glandularia tampensis \N \N \N \N \N 98776 T.miyabeanum Trillium Trillium x miyabeanum \N \N \N \N \N 98777 L.537362 Leymus Leymus sp. PI 537362 \N \N \N \N \N 98778 C.luetzelburgii Croton Croton luetzelburgii \N \N \N \N \N 98779 S.multicaulis Silene Silene multicaulis \N \N \N \N \N 98780 E.capitellata Euphorbia Euphorbia capitellata \N \N \N \N \N 98781 M.vlokii Moraea Moraea vlokii \N \N \N \N \N 98782 C.lagunae-blancae Calceolaria Calceolaria lagunae-blancae \N \N \N \N \N 98783 \N genus Neoglaziovia \N \N \N \N \N 98784 G.81718 Gymnanthes Gymnanthes cf. albicans HAJB 81718 \N \N \N \N \N 98785 \N genus Diptychandra \N \N \N \N \N 98786 T.achyrostachys Tillandsia Tillandsia achyrostachys \N \N \N \N \N 98787 D.variegata Drymonia Drymonia variegata \N \N \N \N \N 98788 P.magnibaccum Piper Piper magnibaccum \N \N \N \N \N 98789 \N varietas Coreocarpus arizonicus var. pubescens \N \N \N \N \N 98790 H.orphanidis Heracleum Heracleum orphanidis \N \N \N \N \N 98791 T.19-94 Tamarix Tamarix sp. Schultheis 19-94 \N \N \N \N \N 98792 S.capuronii Sideroxylon Sideroxylon capuronii \N \N \N \N \N 98793 F.diguetii Ferocactus Ferocactus diguetii \N \N \N \N \N 98794 A.842 Acanthochlamys Acanthochlamys sp. Chase 842 \N \N \N \N \N 98795 C.remotidenticulata Castanopsis Castanopsis remotidenticulata \N \N \N \N \N 98796 A.dealbata Aechmea Aechmea dealbata \N \N \N \N \N 98797 \N varietas Cyperus plantaginifolius var. minor \N \N \N \N \N 98798 E.hirtella Euphrasia Euphrasia hirtella \N \N \N \N \N 98799 F.SH-2010 Ficus Ficus sp. SH-2010 \N \N \N \N \N 98800 A.cornicina Anthyllis Anthyllis cornicina \N \N \N \N \N 98801 D.antoninae Diarthron Diarthron antoninae \N \N \N \N \N 98802 P.standleyana Primula Primula standleyana \N \N \N \N \N 98803 E.calophyllea Elvasia Elvasia calophyllea \N \N \N \N \N 98804 L.artemisiifolium Leontopodium Leontopodium artemisiifolium \N \N \N \N \N 98805 A.minima Arnoseris Arnoseris minima \N \N \N \N \N 98806 O.sieboldii Ostericum Ostericum sieboldii \N \N \N \N \N 98807 \N order Chloranthales \N \N \N \N \N 98808 S.95037 Syringa Syringa sp. Qiu 95037 \N \N \N \N \N 98809 H.hillebrandii Hedyotis Hedyotis hillebrandii \N \N \N \N \N 98810 H.dransfieldii Hydriastele Hydriastele dransfieldii \N \N \N \N \N 98811 S.gw1548 Syzygium Syzygium sp. 2 gw1548 \N \N \N \N \N 98812 S.albiflorum Silphium Silphium albiflorum \N \N \N \N \N 98813 M.JJS-2010f Mentzelia Mentzelia sp. JJS-2010f \N \N \N \N \N 98814 D.JTM-2009 Diplodium Diplodium sp. JTM-2009 \N \N \N \N \N 98815 D.kirkii Diospyros Diospyros kirkii \N \N \N \N \N 98816 W.2789 Weinmannia Weinmannia sp. Lewis 2789 \N \N \N \N \N 98817 H.abyssinica Hagenia Hagenia abyssinica \N \N \N \N \N 98818 \N genus Dinema \N \N \N \N \N 98819 H.pudibundum Heliosperma Heliosperma pudibundum \N \N \N \N \N 98820 L.concinnus Linanthus Linanthus concinnus San Gabriel linanthus \N \N \N \N 98821 H.pottsii Hoya Hoya pottsii \N \N \N \N \N 98822 A.sterculiaceum Acer Acer sterculiaceum \N \N \N \N \N 98823 \N genus Amomyrtus \N \N \N \N \N 98824 S.sventenii Sideritis Sideritis sventenii \N \N \N \N \N 98825 G.tinctoria Gunnera Gunnera tinctoria \N \N \N \N \N 98826 \N genus Nothapodytes \N \N \N \N \N 98827 \N genus Tittmannia \N \N \N \N \N 98828 E.flanaganii Erica Erica flanaganii \N \N \N \N \N 98829 C.umbellata Calceolaria Calceolaria umbellata \N \N \N \N \N 98830 C.decumbens Corydalis Corydalis decumbens \N \N \N \N \N 98831 G.xanthotrichus Gonolobus Gonolobus xanthotrichus \N \N \N \N \N 98832 \N genus Ceratophytum \N \N \N \N \N 98833 C.pringlei Cordylanthus Cordylanthus pringlei \N \N \N \N \N 98834 G.crassifolia Galactophora Galactophora crassifolia \N \N \N \N \N 98835 G.benthamiana Galactia Galactia benthamiana \N \N \N \N \N 98836 S.meyeri Syringa Syringa microphylla x Syringa meyeri \N \N \N \N \N 98837 N.thibetica Neillia Neillia thibetica \N \N \N \N \N 98838 A.glaucum Arthrocnemum Arthrocnemum glaucum \N \N \N \N \N 98839 I.racemosa Impatiens Impatiens racemosa \N \N \N \N \N 98840 P.pachyrrhizoides Phaseolus Phaseolus pachyrrhizoides \N \N \N \N \N 98841 D.siettiana Diplotaxis Diplotaxis siettiana \N \N \N \N \N 98842 D.rupicola Dahlia Dahlia rupicola \N \N \N \N \N 98843 P.callosum Paphiopedilum Paphiopedilum callosum \N \N \N \N \N 98844 P.chrysophylla Pappostipa Pappostipa chrysophylla \N \N \N \N \N 98845 \N genus Raddia \N \N \N \N \N 98846 A.exarata Agrostis Agrostis exarata spike bent grass,spike bentgrass,spike redtop \N \N \N \N 98847 \N genus Hernandia \N \N \N \N \N 98848 V.pedata Vanasushava Vanasushava pedata \N \N \N \N \N 98849 A.simplex Alyssum Alyssum simplex \N \N \N \N \N 98850 \N genus Michelia \N \N \N \N \N 98851 M.bupleuroides Mathiasella Mathiasella bupleuroides \N \N \N \N \N 98852 S.luxurians Selago Selago luxurians \N \N \N \N \N 98853 N.cheiranthus Nemesia Nemesia cheiranthus \N \N \N \N \N 98854 \N varietas Chaetanthera tenella var. taltalensis \N \N \N \N \N 98855 \N genus Farfugium \N \N \N \N \N 98856 E.elytrigioides Elymus Elymus elytrigioides \N \N \N \N \N 98857 S.medium Sium Sium medium \N \N \N \N \N 98858 R.spicatum Ribes Ribes spicatum \N \N \N \N \N 98859 J.formosa Jansonia Jansonia formosa \N \N \N \N \N 98860 \N genus Lophocarpinia \N \N \N \N \N 98861 M.oguraense Myriophyllum Myriophyllum oguraense \N \N \N \N \N 98862 B.albitrunca Boscia Boscia albitrunca \N \N \N \N \N 98863 C.rhombifolia Cissus Cissus rhombifolia grape-ivy \N \N \N \N 98864 E.fennica Euphrasia Euphrasia fennica \N \N \N \N \N 98865 A.hamosus Astragalus Astragalus hamosus \N \N \N \N \N 98866 \N genus Echinopsis \N \N \N \N \N 98867 \N subspecies Lasthenia glabrata subsp. coulteri \N \N \N \N \N 98868 \N subspecies Saxifraga pentadactylis subsp. willkommiana \N \N \N \N \N 98869 \N varietas Coptis japonica var. major \N \N \N \N \N 98870 C.calocephala Crusea Crusea calocephala \N \N \N \N \N 98871 N.pumila Nuphar Nuphar pumila \N \N \N \N \N 98872 V.dilatatum Viburnum Viburnum dilatatum gamazumi \N \N \N \N 98873 P.penaea Polygala Polygala penaea crevajosa \N \N \N \N 98874 A.heptaphylla Aganope Aganope heptaphylla \N \N \N \N \N 98875 N.grubovii Nanophyton Nanophyton grubovii \N \N \N \N \N 98876 P.schnellii Pauridiantha Pauridiantha schnellii \N \N \N \N \N 98877 \N subspecies Leucaena leucocephala subsp. glabrata \N \N \N \N \N 98878 M.hirsuta Mitragyna Mitragyna hirsuta \N \N \N \N \N 98879 M.andicola Montiopsis Montiopsis andicola \N \N \N \N \N 98880 B.oxyodonta Blumea Blumea oxyodonta \N \N \N \N \N 98881 B.riparia Buxus Buxus riparia \N \N \N \N \N 98882 A.SING Actinodaphne Actinodaphne sp. SING \N \N \N \N \N 98883 D.densiflora Dicerandra Dicerandra densiflora Florida balm \N \N \N \N 98884 M.elegans Minuartia Minuartia elegans \N \N \N \N \N 98885 \N genus x Brassolaeliocattleya \N \N \N \N \N 98886 P.longicarpa Parrya Parrya longicarpa \N \N \N \N \N 98887 \N genus Irenepharsus \N \N \N \N \N 98888 A.balansae Astronium Astronium balansae \N \N \N \N \N 98889 M.hornei Martellidendron Martellidendron hornei \N \N \N \N \N 98890 P.parviflora Poecilanthe Poecilanthe parviflora \N \N \N \N \N 98891 \N varietas Dendrobium tetragonum var. melaleucaphilum \N \N \N \N \N 98892 \N genus Cynoglossum \N \N \N \N \N 98893 C.GF-2011 Chusquea Chusquea aff. purdieana GF-2011 \N \N \N \N \N 98894 C.septuplinervia Clidemia Clidemia septuplinervia \N \N \N \N \N 98895 K.septemlobus Kalopanax Kalopanax septemlobus \N \N \N \N \N 98896 G.grandis Glechoma Glechoma grandis \N \N \N \N \N 98897 O.schimperianus Osyridicarpos Osyridicarpos schimperianus \N \N \N \N \N 98898 M.jonesii Muhlenbergia Muhlenbergia jonesii \N \N \N \N \N 98899 \N subspecies Momordica subangulata subsp. renigera \N \N \N \N \N 98900 \N genus Podonephelium \N \N \N \N \N 98901 I.drepanocarpa Indigofera Indigofera drepanocarpa \N \N \N \N \N 98902 O.massoniana Oxalis Oxalis massoniana \N \N \N \N \N 98903 D.montevidensis Ditaxis Ditaxis montevidensis \N \N \N \N \N 98904 \N genus Maesa \N \N \N \N \N 98905 P.tricholaenoides Panicum Panicum tricholaenoides \N \N \N \N \N 98906 L.brunnescens Liparis Liparis brunnescens \N \N \N \N \N 98907 J.atropurpurea Jamesbrittenia Jamesbrittenia atropurpurea \N \N \N \N \N 98908 \N subspecies Ranunculus bulbosus subsp. bulbosus \N \N \N \N \N 98909 E.magalismontanum Englerophytum Englerophytum magalismontanum \N \N \N \N \N 98910 G.viperina Gomesa Gomesa viperina \N \N \N \N \N 98911 C.cumingiana Ceropegia Ceropegia cumingiana \N \N \N \N \N 98912 R.pudorosum Rhododendron Rhododendron pudorosum \N \N \N \N \N 98913 E.bartonioides Eucnide Eucnide bartonioides \N \N \N \N \N 98914 \N genus Urogentias \N \N \N \N \N 98915 L.brevidens Lindernia Lindernia brevidens \N \N \N \N \N 98916 V.karaguensis Vernonia Vernonia karaguensis \N \N \N \N \N 98917 C.holtzei Calochilus Calochilus holtzei \N \N \N \N \N 98918 R.gratissima Rogiera Rogiera gratissima \N \N \N \N \N 98919 S.setifera Stachys Stachys setifera \N \N \N \N \N 98920 R.graveolens Ruta Ruta graveolens common rue \N \N \N \N 98921 E.fianarantsoae Euphorbia Euphorbia fianarantsoae \N \N \N \N \N 98922 M.neuranthum Merinthopodium Merinthopodium neuranthum \N \N \N \N \N 98923 \N genus Aethusa \N \N \N \N \N 98924 \N varietas Asarum heterotropoides var. mandshuricum \N \N \N \N \N 98925 \N genus Tocoyena \N \N \N \N \N 98926 H.polystachya Hoya Hoya polystachya \N \N \N \N \N 98927 N.triphylla Nasa Nasa triphylla \N \N \N \N \N 98928 L.variicolor Lupinus Lupinus variicolor \N \N \N \N \N 98929 \N genus Decaschistia \N \N \N \N \N 98930 F.3605 Friesodielsia Friesodielsia sp. Wieringa et al. 3605 \N \N \N \N \N 98931 P.bromoides Podophorus Podophorus bromoides \N \N \N \N \N 98932 S.serrum Sium Sium serrum \N \N \N \N \N 98933 L.pholidogynum Lepidium Lepidium pholidogynum \N \N \N \N \N 98934 C.glaucus Callistemon Callistemon glaucus \N \N \N \N \N 98935 D.sativus Dipsacus Dipsacus sativus Fuller's teasel \N \N \N \N 98936 E.strigosa Euphorbia Euphorbia strigosa \N \N \N \N \N 98937 D.insidiosa Diospyros Diospyros insidiosa \N \N \N \N \N 98938 S.tsinlingensis Sorbus Sorbus tsinlingensis \N \N \N \N \N 98939 H.forrestii Heracleum Heracleum forrestii \N \N \N \N \N 98940 B.06003 Bistorta Bistorta sp. Qiu 06003 \N \N \N \N \N 98941 D.pusilla Dracula Dracula pusilla \N \N \N \N \N 98942 E.frutescens Encelia Encelia frutescens \N \N \N \N \N 98943 S.albisepala Salsola Salsola albisepala \N \N \N \N \N 98944 E.longiflora Ehrharta Ehrharta longiflora \N \N \N \N \N 98945 \N no rank Saccharum hybrid cultivar CoC 671 \N \N \N \N \N 98946 P.leptophyllum Pternopetalum Pternopetalum leptophyllum \N \N \N \N \N 98947 R.galpinii Raphionacme Raphionacme galpinii \N \N \N \N \N 98948 V.eizanensis Viola Viola eizanensis \N \N \N \N \N 98949 S.lasiantha Salvia Salvia lasiantha \N \N \N \N \N 98950 P.stenophylla Plectaneia Plectaneia stenophylla \N \N \N \N \N 98951 C.fragrans Croton Croton fragrans \N \N \N \N \N 98952 A.kentrophyta Astragalus Astragalus kentrophyta \N \N \N \N \N 98953 C.dichrum Chrysanthemum Chrysanthemum dichrum \N \N \N \N \N 98954 C.00-61 Cistanthe Cistanthe sp. Hershkovitz 00-61 \N \N \N \N \N 98955 H.panchganiensis Habenaria Habenaria panchganiensis \N \N \N \N \N 98956 J.polychroma Jonesiopsis Jonesiopsis polychroma \N \N \N \N \N 98957 A.swartziana Aristida Aristida swartziana \N \N \N \N \N 98958 G.tridentata Genista Genista tridentata \N \N \N \N \N 98959 \N varietas Brassica oleracea var. ramosa branching bush kale,perennial kale \N \N \N \N 98960 N.madagascariensis Nepenthes Nepenthes madagascariensis \N \N \N \N \N 98961 D.divaricata Daviesia Daviesia divaricata \N \N \N \N \N 98962 M.13 Melaleuca Melaleuca aff. nesophila Crayn 13 \N \N \N \N \N 98963 S.guianensis Swartzia Swartzia guianensis \N \N \N \N \N 98964 A.abyssinica Albuca Albuca abyssinica \N \N \N \N \N 98965 L.s.n. Leontodon Leontodon sp. HBV s.n. \N \N \N \N \N 98966 I.SH-2010 Impatiens Impatiens sp. SH-2010 \N \N \N \N \N 98967 J.BAC-2010 unclassified Juncaceae Juncaceae sp. A11 BAC-2010 \N \N \N \N \N 98968 P.bracteosa Primula Primula bracteosa \N \N \N \N \N 98969 C.pinnatus Carduncellus Carduncellus pinnatus \N \N \N \N \N 98970 X.australasica x Citrofortunella x Citrofortunella sp. x Microcitrus australasica \N \N \N \N \N 98971 B.ovata Bursera Bursera ovata \N \N \N \N \N 98972 L.burttii Lotus Lotus burttii \N \N \N \N \N 98973 I.rivularis Ilex Ilex rivularis \N \N \N \N \N 98974 B.crispa Buddleja Buddleja crispa \N \N \N \N \N 98975 Z.migiurtinorum Zygophyllum Zygophyllum migiurtinorum \N \N \N \N \N 98976 G.micrantha Gymnarrhena Gymnarrhena micrantha \N \N \N \N \N 98977 D.ternata Donnellsmithia Donnellsmithia ternata \N \N \N \N \N 98978 P.febrifugum Psorospermum Psorospermum febrifugum \N \N \N \N \N 98979 R.cassubicifolius Ranunculus Ranunculus carpaticola x Ranunculus cassubicifolius \N \N \N \N \N 98980 \N subfamily Orontioideae \N \N \N \N \N 98981 T.peregrinum Tropaeolum Tropaeolum peregrinum \N \N \N \N \N 98982 P.mayarensis Pachyanthus Pachyanthus mayarensis \N \N \N \N \N 101117 \N genus Dimocarpus \N \N \N \N \N 98983 D.macrocapnos Dicentra Dicentra macrocapnos \N \N \N \N \N 98984 M.grandiflora Montanoa Montanoa grandiflora \N \N \N \N \N 98985 C.priogonium Caralluma Caralluma priogonium \N \N \N \N \N 98986 C.candelabrum Corispermum Corispermum candelabrum \N \N \N \N \N 98987 R.beanianum Rhododendron Rhododendron beanianum \N \N \N \N \N 98988 S.anteuphorbium Senecio Senecio anteuphorbium \N \N \N \N \N 98989 C.luzulina Carex Carex luzulina \N \N \N \N \N 98990 G.uliginosa Gagea Gagea uliginosa \N \N \N \N \N 98991 S.congensis Sabicea Sabicea congensis \N \N \N \N \N 98992 C.alnifolia Clethra Clethra alnifolia summer-sweet,sweet pepper bush \N \N \N \N 98993 \N genus Psammochloa \N \N \N \N \N 98994 H.glaucifolium Hieracium Hieracium glaucifolium \N \N \N \N \N 98995 \N genus Noisettia \N \N \N \N \N 98996 E.veracruzensis Erigeron Erigeron veracruzensis \N \N \N \N \N 98997 A.asparagoides Asparagus Asparagus asparagoides bridal-creeper,gnarboola \N \N \N \N 98998 P.truncata Passerina Passerina truncata \N \N \N \N \N 98999 S.cultivar Solanum Solanum hybrid cultivar \N \N \N \N \N 99000 A.cryptoceras Asclepias Asclepias cryptoceras \N \N \N \N \N 99001 L.spinea Leea Leea spinea \N \N \N \N \N 99002 O.mexicanum Otholobium Otholobium mexicanum \N \N \N \N \N 99003 A.whitei Archidendron Archidendron whitei \N \N \N \N \N 99004 G.vermicidum Gorgonidium Gorgonidium vermicidum \N \N \N \N \N 99005 A.dieterlei Astragalus Astragalus dieterlei \N \N \N \N \N 99006 A.clematidea Agdestis Agdestis clematidea \N \N \N \N \N 99007 A.pelliotii Anabasis Anabasis pelliotii \N \N \N \N \N 99008 \N genus Sauvagesia \N \N \N \N \N 99009 M.velutina Miliusa Miliusa velutina \N \N \N \N \N 99010 S.kerberi Stenocereus Stenocereus kerberi \N \N \N \N \N 99011 \N genus Hortonia \N \N \N \N \N 99012 A.glabrata Arachis Arachis glabrata amendoim-bravo,rhizoma peanut \N \N \N \N 99013 C.triloba Ceratotheca Ceratotheca triloba \N \N \N \N \N 99014 W.101210T2Dc1 Wisteria Wisteria sp. 101210T2Dc1 \N \N \N \N \N 99015 V.missurica Veronica Veronica missurica \N \N \N \N \N 99016 C.alpestris Crepis Crepis alpestris \N \N \N \N \N 99017 N.serpentarius Nabalus Nabalus serpentarius \N \N \N \N \N 99018 S.bergii Stenodrepanum Stenodrepanum bergii \N \N \N \N \N 99019 P.vrolandii Pultenaea Pultenaea vrolandii \N \N \N \N \N 99020 \N genus Yakirra \N \N \N \N \N 99021 C.pentacanthoides Cousinia Cousinia pentacanthoides \N \N \N \N \N 99022 C.howellii Camassia Camassia howellii \N \N \N \N \N 99023 B.setacea Bomarea Bomarea setacea \N \N \N \N \N 99024 N.sibirica Nitraria Nitraria sibirica \N \N \N \N \N 99025 M.loreyoides Miconia Miconia loreyoides \N \N \N \N \N 99026 M.mollis Minthostachys Minthostachys mollis \N \N \N \N \N 99027 A.nemorosa Anemone Anemone nemorosa \N \N \N \N \N 99028 I.scutisepala Impatiens Impatiens scutisepala \N \N \N \N \N 99029 F.speciosa Ferdinandusa Ferdinandusa speciosa \N \N \N \N \N 99030 C.yamayakatense Cremastosperma Cremastosperma yamayakatense \N \N \N \N \N 99031 O.scansor Otoglossum Otoglossum scansor \N \N \N \N \N 99032 \N varietas Dendranthema vestitum var. lanceifolium \N \N \N \N \N 99033 C.macrocephalum Campuloclinium Campuloclinium macrocephalum \N \N \N \N \N 99034 P.tatsienensis Phlomis Phlomis tatsienensis \N \N \N \N \N 99035 A.echinatus Astragalus Astragalus echinatus \N \N \N \N \N 99036 G.patens Globba Globba patens \N \N \N \N \N 99037 M.dracomontana Moraea Moraea dracomontana \N \N \N \N \N 99038 S.regeliana Stipa Stipa regeliana \N \N \N \N \N 99039 S.stomandrus Streptocarpus Streptocarpus stomandrus \N \N \N \N \N 99040 C.multicaule Crocidium Crocidium multicaule gold-star,spring-gold \N \N \N \N 99041 C.schlimii Chrysocycnis Chrysocycnis schlimii \N \N \N \N \N 99042 P.platyloba Passiflora Passiflora platyloba \N \N \N \N \N 99043 C.specuicola Carex Carex specuicola \N \N \N \N \N 99044 G.dahurica Gentiana Gentiana dahurica \N \N \N \N \N 99045 L.triloba Lindera Lindera triloba \N \N \N \N \N 99046 V.'Norton' Vitis Vitis sp. cv. 'Norton' \N \N \N \N \N 99047 L.brachyloba Ligusticopsis Ligusticopsis brachyloba \N \N \N \N \N 99048 T.repanda Tetragonotheca Tetragonotheca repanda \N \N \N \N \N 99049 P.longifolia Poa Poa longifolia \N \N \N \N \N 99050 E.microcorys Eucalyptus Eucalyptus microcorys tallowwood \N \N \N \N 99051 \N genus Pappea \N \N \N \N \N 99052 T.villosus Tynanthus Tynanthus villosus \N \N \N \N \N 99053 K.bruceae Kniphofia Kniphofia bruceae \N \N \N \N \N 99054 G.uniflora Gomesa Gomesa uniflora \N \N \N \N \N 99055 L.eastonii Livistona Livistona eastonii \N \N \N \N \N 99056 T.brutium Trifolium Trifolium brutium \N \N \N \N \N 99057 S.kleinii Symplocos Symplocos kleinii \N \N \N \N \N 99058 C.geminata Carex Carex geminata \N \N \N \N \N 99059 B.dolichostyla Banksia Banksia dolichostyla \N \N \N \N \N 99060 M.marcosii Mammillaria Mammillaria marcosii \N \N \N \N \N 99061 L.spathulatum Lepuropetalon Lepuropetalon spathulatum \N \N \N \N \N 99062 A.transsectum Aconitum Aconitum transsectum \N \N \N \N \N 99063 D.rigida Dendromecon Dendromecon rigida \N \N \N \N \N 99064 C.yunnanensis Corylopsis Corylopsis yunnanensis \N \N \N \N \N 99065 \N genus Crudia \N \N \N \N \N 99066 L.bipinnatum Lasiospermum Lasiospermum bipinnatum \N \N \N \N \N 99067 E.anacua Ehretia Ehretia anacua \N \N \N \N \N 99068 P.982 Pyrostria Pyrostria sp. LN 982 \N \N \N \N \N 99069 M.aculeaticarpa Mimosa Mimosa aculeaticarpa \N \N \N \N \N 99070 C.parviflora Clarkeasia Clarkeasia parviflora \N \N \N \N \N 99071 A.601 Achyrospermum Achyrospermum cf. schimperi Hedren 601 \N \N \N \N \N 99072 M.dolichandra Metrosideros Metrosideros dolichandra \N \N \N \N \N 99073 G.viscosa Gravesia Gravesia viscosa \N \N \N \N \N 99074 F.fruticosa Felicia Felicia fruticosa \N \N \N \N \N 99075 B.cuneata Bursera Bursera cuneata \N \N \N \N \N 99076 A.chapadense Altoparadisium Altoparadisium chapadense \N \N \N \N \N 99077 \N family Dioscoreaceae yam family \N \N \N \N 99078 P.diphyllum Pellegriniodendron Pellegriniodendron diphyllum \N \N \N \N \N 99079 P.streyi Pseudosalacia Pseudosalacia streyi \N \N \N \N \N 99080 T.dalmaticum Trifolium Trifolium dalmaticum \N \N \N \N \N 99081 \N genus Shoshonea \N \N \N \N \N 99082 Z.venusta Zeltnera Zeltnera venusta \N \N \N \N \N 99083 I.eubotrya Impatiens Impatiens eubotrya \N \N \N \N \N 99084 C.dolichantherum Colchicum Colchicum dolichantherum \N \N \N \N \N 99085 I.assurgens Impatiens Impatiens assurgens \N \N \N \N \N 99086 T.bagshawei Tricalysia Tricalysia bagshawei \N \N \N \N \N 99087 M.clivicola Mimulus Mimulus clivicola \N \N \N \N \N 99088 B.prealpina Biscutella Biscutella prealpina \N \N \N \N \N 99089 \N varietas Xylorhiza glabriuscula var. glabriuscula \N \N \N \N \N 99090 M.plicata Medicago Medicago plicata \N \N \N \N \N 99091 T.formosana Tricyrtis Tricyrtis hirta x Tricyrtis formosana \N \N \N \N \N 99092 P.513 Pleurostachys Pleurostachys sp. Kallunki et al. 513 \N \N \N \N \N 99093 R.fitzalani Randia Randia fitzalani \N \N \N \N \N 99094 E.surculosa Eurybia Eurybia surculosa creeping aster \N \N \N \N 99095 S.merrillii Saribus Saribus merrillii \N \N \N \N \N 99096 \N no rank lamiids incertae sedis \N \N \N \N \N 99097 R.verticillata Russelia Russelia verticillata \N \N \N \N \N 99098 S.thouarsii Strychnopsis Strychnopsis thouarsii \N \N \N \N \N 99099 C.chocoanus Croton Croton chocoanus \N \N \N \N \N 99100 C.arenarium Cynanchum Cynanchum arenarium \N \N \N \N \N 99101 \N genus Hymenoxys \N \N \N \N \N 99102 L.muirii Lachenalia Lachenalia muirii \N \N \N \N \N 99103 \N genus Brasenia \N \N \N \N \N 99104 \N genus Poupartiopsis \N \N \N \N \N 99105 \N genus Kokoona \N \N \N \N \N 99106 S.sp. Salix Salix sp. \N \N \N \N \N 99107 C.volubile Clerodendrum Clerodendrum volubile \N \N \N \N \N 99108 L.glauca Lepyrodia Lepyrodia glauca \N \N \N \N \N 99109 I.vargasii Ismene Ismene vargasii \N \N \N \N \N 99110 P.tenella Polygala Polygala tenella \N \N \N \N \N 99111 E.mijerteina Echidnopsis Echidnopsis mijerteina \N \N \N \N \N 99112 Z.fraseri Zieria Zieria fraseri \N \N \N \N \N 99113 R.121559 Rangaeris Rangaeris sp. Heidelberg BG 121559 \N \N \N \N \N 99114 D.spicata Dichrostachys Dichrostachys spicata \N \N \N \N \N 99115 \N genus Bonyunia \N \N \N \N \N 99116 B.gaudichaudii Bobea Bobea gaudichaudii \N \N \N \N \N 99117 \N genus Macowania \N \N \N \N \N 99118 B.montanum Baliospermum Baliospermum montanum \N \N \N \N \N 99119 E.fusca Erythrina Erythrina fusca ahuijote,bucago,gallito de pantano,purple coraltree \N \N \N \N 99120 E.macrochaetus Elymus Elymus macrochaetus \N \N \N \N \N 99121 \N varietas Veratrum stamineum var. stamineum \N \N \N \N \N 99122 E.bimaculata Eremochloa Eremochloa bimaculata \N \N \N \N \N 99123 S.americanum Solanum Solanum americanum \N \N \N \N \N 99124 S.tsuboiana Sasa Sasa tsuboiana \N \N \N \N \N 99125 \N genus Polypleurum \N \N \N \N \N 99126 S.reflexa Symplocos Symplocos reflexa \N \N \N \N \N 99127 E.andamanensis Eulophia Eulophia andamanensis \N \N \N \N \N 99128 \N varietas Adenia firingalavensis var. stylosa \N \N \N \N \N 99129 \N varietas Malesherbia lirana var. subglabrifolia \N \N \N \N \N 99130 \N subspecies Crocus cancellatus subsp. pamphylicus \N \N \N \N \N 99131 I.tinctoria Isatis Isatis tinctoria woad \N \N \N \N 99132 S.pilosa Shorea Shorea pilosa \N \N \N \N \N 99133 \N genus Jarilla \N \N \N \N \N 99134 W.glaber Weberocereus Weberocereus glaber \N \N \N \N \N 99135 D.subamplexicaulis Draba Draba subamplexicaulis \N \N \N \N \N 99136 N.cerrateana Nolana Nolana cerrateana \N \N \N \N \N 99137 E.thunbergii Erigeron Erigeron thunbergii \N \N \N \N \N 99138 \N genus Corypha \N \N \N \N \N 99139 \N family Escalloniaceae \N \N \N \N \N 99140 L.involucrata Leucaena Leucaena involucrata barra blanca \N \N \N \N 99141 C.hirta Cliffortia Cliffortia hirta \N \N \N \N \N 99142 B.bambos Bambusa Bambusa bambos giant thorny bamboo \N \N \N \N 99143 D.glauca Deutzia Deutzia glauca \N \N \N \N \N 99144 L.hellenica Linaria Linaria hellenica \N \N \N \N \N 99145 \N varietas Calopogon tuberosus var. tuberosus \N \N \N \N \N 99146 R.breedlovei Ruellia Ruellia breedlovei \N \N \N \N \N 99147 O.spiralis Oxalis Oxalis spiralis \N \N \N \N \N 99148 T.obtusiflorum Trifolium Trifolium obtusiflorum \N \N \N \N \N 99149 A.pygmaea Andrachne Andrachne pygmaea \N \N \N \N \N 99150 \N subfamily Coryphoideae \N \N \N \N \N 99151 P.singuliflora Pouteria Pouteria singuliflora \N \N \N \N \N 99152 \N varietas Mimulus aurantiacus var. aridus \N \N \N \N \N 99153 R.clarkeana Rivea Rivea clarkeana \N \N \N \N \N 99154 S.rotundifolius Saribus Saribus rotundifolius \N \N \N \N \N 99155 Z.1348 Zanthoxylum Zanthoxylum sp. Chase 1348 \N \N \N \N \N 99156 S.laxum Solanum Solanum laxum \N \N \N \N \N 99157 \N genus Axinandra \N \N \N \N \N 99158 S.acuta Stenoptera Stenoptera acuta \N \N \N \N \N 99159 \N genus Synadenium \N \N \N \N \N 99160 \N genus Typhonium \N \N \N \N \N 99161 \N subspecies Arachis hypogaea subsp. hypogaea \N \N \N \N \N 99162 V.summifaucis Vaccinium Vaccinium summifaucis \N \N \N \N \N 99163 \N genus Burretiodendron \N \N \N \N \N 99164 V.crocea Vicia Vicia crocea \N \N \N \N \N 99165 G.porrecta Garcinia Garcinia porrecta \N \N \N \N \N 99166 G.angustus Gladiolus Gladiolus angustus \N \N \N \N \N 99167 P.3270 Pentagonia Pentagonia sp. Stahl 3270 \N \N \N \N \N 99168 C.erostris Calorophus Calorophus erostris \N \N \N \N \N 99169 V.sempervirens Viola Viola sempervirens \N \N \N \N \N 99170 S.celsum Solanum Solanum celsum \N \N \N \N \N 99171 P.juniperinum Phoradendron Phoradendron juniperinum \N \N \N \N \N 99172 P.lucida Pycnarrhena Pycnarrhena lucida \N \N \N \N \N 99173 S.racemiferum Stryphnodendron Stryphnodendron racemiferum \N \N \N \N \N 99174 L.orientalis Liquidambar Liquidambar orientalis Oriental sweet gum \N \N \N \N 99175 A.bigelovii Abronia Abronia bigelovii \N \N \N \N \N 99176 D.perrieri Didymeles Didymeles perrieri \N \N \N \N \N 99177 D.polystachya Dioscorea Dioscorea polystachya Chinese yam,Chinese-potato,naga-imo,shan yao \N \N \N \N 99178 A.nivea Asteridea Asteridea nivea \N \N \N \N \N 99179 \N genus Liriodendron \N \N \N \N \N 99180 C.panicea Carex Carex panicea \N \N \N \N \N 99181 \N genus Nasa \N \N \N \N \N 99182 C.stricta Cleome Cleome stricta \N \N \N \N \N 99183 C.eximium Chrysophyllum Chrysophyllum eximium \N \N \N \N \N 99184 V.reticulata Vigna Vigna reticulata \N \N \N \N \N 99185 A.s.n. Arundinaria Arundinaria sp. Hodkinson s.n. \N \N \N \N \N 99186 H.heldreichii Helichrysum Helichrysum heldreichii \N \N \N \N \N 99187 A.schumannii Abelia Abelia schumannii \N \N \N \N \N 99188 C.nicaeensis Crepis Crepis nicaeensis \N \N \N \N \N 99189 L.chrysothrix Loudetiopsis Loudetiopsis chrysothrix \N \N \N \N \N 99190 C.obtusifolia Cleomella Cleomella obtusifolia \N \N \N \N \N 99191 C.andromorpha Cissampelos Cissampelos andromorpha \N \N \N \N \N 99192 P.mollis Persoonia Persoonia mollis \N \N \N \N \N 99193 G.6522 Genipa Genipa sp. Delprete 6522 \N \N \N \N \N 99194 M.amplexicaulis Monocladus Monocladus amplexicaulis \N \N \N \N \N 99195 O.nodosa Ottochloa Ottochloa nodosa \N \N \N \N \N 99196 S.affinis Salacca Salacca affinis \N \N \N \N \N 99197 A.linearifolia Arnebia Arnebia linearifolia \N \N \N \N \N 99198 T.pulcher Telipogon Telipogon pulcher \N \N \N \N \N 99199 E.jaliscensis Euphorbia Euphorbia jaliscensis \N \N \N \N \N 99200 C.andamanica Caesalpinia Caesalpinia andamanica \N \N \N \N \N 99201 S.nienkui Solanum Solanum nienkui \N \N \N \N \N 99202 S.tosaensis Sciaphila Sciaphila tosaensis \N \N \N \N \N 99203 E.laurifolia Euphorbia Euphorbia laurifolia \N \N \N \N \N 99204 \N subspecies Phlox drummondii subsp. mcallisteri \N \N \N \N \N 99205 \N genus Agiortia \N \N \N \N \N 99206 M.faya Morella Morella faya \N \N \N \N \N 99207 P.madagascariensis Phylohydrax Phylohydrax madagascariensis \N \N \N \N \N 99208 A.subangulatum Allium Allium subangulatum \N \N \N \N \N 99209 \N genus Trichosanthes \N \N \N \N \N 99210 S.longiseta Setaria Setaria longiseta \N \N \N \N \N 99211 T.CH_E15Amono Triticum Triticum sp. CH_E15Amono \N \N \N \N \N 99212 L.eriocarpa Lotononis Lotononis eriocarpa \N \N \N \N \N 99213 N.venezuelensis Nasa Nasa venezuelensis \N \N \N \N \N 99214 \N subspecies Ilex perado subsp. azorica \N \N \N \N \N 99215 P.sericantha Prosopis Prosopis sericantha \N \N \N \N \N 99216 \N genus Turricula \N \N \N \N \N 99217 C.neesiana Carlowrightia Carlowrightia neesiana \N \N \N \N \N 99218 \N genus Pagamea \N \N \N \N \N 99219 A.diffusa Aspalathus Aspalathus diffusa \N \N \N \N \N 99220 \N genus Pachypterygium \N \N \N \N \N 99221 S.49 Sericocalyx Sericocalyx sp. Bennett 49 \N \N \N \N \N 99222 E.juarezensis Ericameria Ericameria juarezensis \N \N \N \N \N 99223 C.flahaultii Chamaemelum Chamaemelum flahaultii \N \N \N \N \N 99224 P.gibbosa Patrinia Patrinia gibbosa \N \N \N \N \N 99225 \N subspecies Ononis alba subsp. alba \N \N \N \N \N 99226 \N genus Triadenum \N \N \N \N \N 99227 H.spinulosa Hohenbergia Hohenbergia spinulosa \N \N \N \N \N 99228 N.edwardsiana Nepenthes Nepenthes edwardsiana \N \N \N \N \N 99229 M.laxa Myosotis Myosotis laxa \N \N \N \N \N 99230 \N subspecies Chionochloa crassiuscula subsp. crassiuscula \N \N \N \N \N 99231 W.stipitata Willemetia Willemetia stipitata \N \N \N \N \N 99232 S.50857 Sclerophylax Sclerophylax sp. Nee and Bohs 50857 \N \N \N \N \N 99233 D.foliolosa Dalbergia Dalbergia foliolosa \N \N \N \N \N 99234 P.spinifex Pavonia Pavonia spinifex \N \N \N \N \N 99235 C.pterocarya Cryptantha Cryptantha pterocarya \N \N \N \N \N 99236 A.leptophylla Anchusa Anchusa leptophylla \N \N \N \N \N 99237 A.ciliata Ajuga Ajuga ciliata \N \N \N \N \N 99238 S.funghomii Schizostachyum Schizostachyum funghomii \N \N \N \N \N 99239 T.rhodesica Thamnosma Thamnosma rhodesica \N \N \N \N \N 99240 A.pentagonus Acanthocereus Acanthocereus pentagonus \N \N \N \N \N 99241 A.praecox Aira Aira praecox \N \N \N \N \N 99242 \N genus Sesuvium \N \N \N \N \N 99243 \N genus Tricardia \N \N \N \N \N 99244 A.robusta Alocasia Alocasia robusta \N \N \N \N \N 99245 C.nutans Carduus Carduus nutans nodding thistle \N \N \N \N 99246 H.pastinacifolium Heracleum Heracleum pastinacifolium \N \N \N \N \N 99247 S.tigranii Sambucus Sambucus tigranii \N \N \N \N \N 99248 \N genus Sinapis \N \N \N \N \N 99249 S.rotundifolius Syncolostemon Syncolostemon rotundifolius \N \N \N \N \N 99250 L.robustum Ligustrum Ligustrum robustum \N \N \N \N \N 99251 O.arvensis Ononis Ononis arvensis Bocks-Hauhechel \N \N \N \N 99252 E.coactum Epimedium Epimedium coactum \N \N \N \N \N 99253 S.turbacensis Stylogyne Stylogyne turbacensis \N \N \N \N \N 99254 C.tomentosa Coptosapelta Coptosapelta tomentosa \N \N \N \N \N 99255 G.CHR546319 Geranium Geranium aff. sessiliflorum CHR546319 \N \N \N \N \N 99256 V.petraea Veronica Veronica petraea \N \N \N \N \N 99257 E.falcata Eucalyptus Eucalyptus falcata \N \N \N \N \N 99258 S.glacialis Saussurea Saussurea glacialis \N \N \N \N \N 99259 Q.hartwissiana Quercus Quercus hartwissiana \N \N \N \N \N 99260 Z.pamiroalaica Ziziphora Ziziphora pamiroalaica \N \N \N \N \N 99261 \N genus Pseudoscabiosa \N \N \N \N \N 99262 \N tribe Gomphostemmateae \N \N \N \N \N 99263 \N genus Hypodaphnis \N \N \N \N \N 99264 A.japonica Atractylodes Atractylodes japonica \N \N \N \N \N 99265 P.semitorta Pedicularis Pedicularis semitorta \N \N \N \N \N 99266 \N varietas Herrickia kingii var. kingii \N \N \N \N \N 99267 D.collinus Dianthus Dianthus collinus \N \N \N \N \N 99268 C.alba Carpolobia Carpolobia alba \N \N \N \N \N 99269 T.parishii Tauschia Tauschia parishii \N \N \N \N \N 99270 S.fitzgeraldii Sarcochilus Sarcochilus fitzgeraldii \N \N \N \N \N 99271 C.melanosperma Cleome Cleome melanosperma \N \N \N \N \N 99272 D.secundum Dracophyllum Dracophyllum secundum \N \N \N \N \N 99273 O.356 Otoglossum Otoglossum sp. Trujillo 356 \N \N \N \N \N 99274 G.pratensis Gagea Gagea pratensis \N \N \N \N \N 99275 M.pennispinosa Mammillaria Mammillaria pennispinosa \N \N \N \N \N 99276 C.tuberculata Camellia Camellia tuberculata \N \N \N \N \N 99277 S.oblata Syringa Syringa oblata \N \N \N \N \N 99278 S.laxa Saracha Saracha laxa \N \N \N \N \N 99279 U.roeoesliana Uncarina Uncarina roeoesliana \N \N \N \N \N 99280 L.JKB-2004 Lycoris Lycoris sp. JKB-2004 \N \N \N \N \N 99281 T.emarginatum Trichodiadema Trichodiadema emarginatum \N \N \N \N \N 99282 A.angusta Acacia Acacia angusta \N \N \N \N \N 99283 B.krylovii Brachanthemum Brachanthemum krylovii \N \N \N \N \N 99284 S.birostris Senna Senna birostris \N \N \N \N \N 99285 \N genus Coix \N \N \N \N \N 99286 U.hamiltonii Utricularia Utricularia hamiltonii \N \N \N \N \N 99287 \N genus Marahuacaea \N \N \N \N \N 99288 F.formosa Fouquieria Fouquieria formosa \N \N \N \N \N 99289 \N subspecies Ononis pendula subsp. pendula \N \N \N \N \N 99290 E.australasica Etlingera Etlingera australasica \N \N \N \N \N 99291 S.carduicephala Saussurea Saussurea carduicephala \N \N \N \N \N 99292 D.triquetra Dodonaea Dodonaea triquetra \N \N \N \N \N 99293 T.microstachys Tetraria Tetraria microstachys \N \N \N \N \N 99294 P.auritum Pholistoma Pholistoma auritum \N \N \N \N \N 99295 N.intonsa Nolana Nolana intonsa \N \N \N \N \N 99296 H.attenuata Haworthia Haworthia attenuata \N \N \N \N \N 99297 H.pulchella Herbertia Herbertia pulchella \N \N \N \N \N 99298 Z.prostrata Zieria Zieria prostrata \N \N \N \N \N 99299 C.tomentella Corydalis Corydalis tomentella \N \N \N \N \N 99300 P.gymnantha Phyllagathis Phyllagathis gymnantha \N \N \N \N \N 99301 B.longii Braya Braya longii \N \N \N \N \N 99302 C.mollis Cratylia Cratylia mollis \N \N \N \N \N 99303 S.dicranoides Stellaria Stellaria dicranoides \N \N \N \N \N 99304 M.pomiferus Macrococculus Macrococculus pomiferus \N \N \N \N \N 99305 I.I-92 Iris Iris aff. parvula Chase I-92 \N \N \N \N \N 99306 M.rosei Melampodium Melampodium rosei \N \N \N \N \N 99307 \N genus Scheuchzeria \N \N \N \N \N 99308 P.macgregorii Pseuduvaria Pseuduvaria macgregorii \N \N \N \N \N 99309 C.pedicellata Cadia Cadia pedicellata \N \N \N \N \N 99310 T.schliebenii Tricalysia Tricalysia schliebenii \N \N \N \N \N 99311 A.ruokolainenii Adelobotrys Adelobotrys ruokolainenii \N \N \N \N \N 99312 W.neorigida Wahlenbergia Wahlenbergia neorigida \N \N \N \N \N 99313 B.oxyphylla Bourreria Bourreria oxyphylla \N \N \N \N \N 99314 H.1142 Heterospathe Heterospathe sp. Baker 1142 \N \N \N \N \N 99315 N.lutea Nopalea Nopalea lutea \N \N \N \N \N 99316 M.brachytrichion Mammillaria Mammillaria brachytrichion \N \N \N \N \N 99317 A.saundersii Aeonium Aeonium saundersii \N \N \N \N \N 99318 A.leucocephala Armeria Armeria leucocephala \N \N \N \N \N 99319 D.vitellina Dendrophthoe Dendrophthoe vitellina \N \N \N \N \N 99320 C.cuneatus Croton Croton cuneatus \N \N \N \N \N 99321 B.karwinskii Bouteloua Bouteloua karwinskii \N \N \N \N \N 99322 \N genus Panicum panicgrasses \N \N \N \N 99323 \N varietas Matthiola livida var. morocera \N \N \N \N \N 99324 S.bracteatum Satyrium Satyrium bracteatum \N \N \N \N \N 99325 P.sylvaticum Piper Piper sylvaticum \N \N \N \N \N 99326 A.elongata Aristolochia Aristolochia elongata \N \N \N \N \N 99327 T.spadiciflora Tococa Tococa spadiciflora \N \N \N \N \N 99328 S.carpatha Salsola Salsola carpatha \N \N \N \N \N 99329 F.pyrenaica Festuca Festuca pyrenaica \N \N \N \N \N 99330 T.gymnocarpa Tetraplasandra Tetraplasandra gymnocarpa \N \N \N \N \N 99331 C.paphlagonica Cephalaria Cephalaria paphlagonica \N \N \N \N \N 99332 P.sp. Potamogeton Potamogeton sp. \N \N \N \N \N 99333 H.urbaniana Habenaria Habenaria urbaniana \N \N \N \N \N 99334 W.hyalina Wolffiella Wolffiella hyalina \N \N \N \N \N 99335 P.macroptera Pterocarya Pterocarya macroptera \N \N \N \N \N 99336 F.cirrhosa Fritillaria Fritillaria cirrhosa \N \N \N \N \N 99337 P.stenophyllum Philodendron Philodendron stenophyllum \N \N \N \N \N 99338 B.K16875 Bulbophyllum Bulbophyllum sp. K16875 \N \N \N \N \N 99339 O.flava Oxalis Oxalis flava \N \N \N \N \N 99340 C.poeppigiana Calyptrocarya Calyptrocarya poeppigiana \N \N \N \N \N 99341 F.richardiana Fenerivia Fenerivia richardiana \N \N \N \N \N 99342 D.concinna Diuris Diuris concinna \N \N \N \N \N 99343 T.diffusa Turnera Turnera diffusa \N \N \N \N \N 99344 C.microcarpa Crotalaria Crotalaria microcarpa \N \N \N \N \N 99345 G.rubriflora Garcinia Garcinia rubriflora \N \N \N \N \N 99346 L.grandicalyx Lycium Lycium grandicalyx \N \N \N \N \N 99347 L.micrantha Lotononis Lotononis micrantha \N \N \N \N \N 99348 \N genus Ortegocactus \N \N \N \N \N 99349 S.neowebsteri Senecio Senecio neowebsteri Olympic Mountain ragwort \N \N \N \N 99350 D.insularis Dactylorhiza Dactylorhiza insularis \N \N \N \N \N 99351 F.caroliniana Fraxinus Fraxinus caroliniana Carolina ash,Florida ash,pop ash \N \N \N \N 99352 L.ferulaceum Ligusticum Ligusticum ferulaceum \N \N \N \N \N 99353 G.tepperi Gyrostemon Gyrostemon tepperi \N \N \N \N \N 99354 M.striata Maxillaria Maxillaria striata \N \N \N \N \N 99355 E.rhodopis Erica Erica rhodopis \N \N \N \N \N 99356 P.telesiphe Passiflora Passiflora telesiphe \N \N \N \N \N 99357 \N genus Periboea \N \N \N \N \N 99358 C.graveolens Crocus Crocus graveolens \N \N \N \N \N 99359 C.valeri Centropogon Centropogon valeri \N \N \N \N \N 99360 \N subspecies Calycadenia multiglandulosa subsp. cephalotes \N \N \N \N \N 99361 \N genus Daveaua \N \N \N \N \N 99362 A.macrophylla Alstonia Alstonia macrophylla batino \N \N \N \N 99363 C.ochrosaccus Carex Carex ochrosaccus \N \N \N \N \N 99364 A.gracilis Anthocercis Anthocercis gracilis \N \N \N \N \N 99365 M.cymuligera Micromeria Micromeria cymuligera \N \N \N \N \N 99366 V.bracteata Veltheimia Veltheimia bracteata \N \N \N \N \N 99367 \N tribe Nephthytideae \N \N \N \N \N 99368 A.dioscoridis Arum Arum dioscoridis \N \N \N \N \N 99369 T.s.n. Tetramerista Tetramerista sp. Coode s.n. \N \N \N \N \N 99370 \N subspecies Paeonia officinalis subsp. humilis \N \N \N \N \N 99371 G.longipes Gynostemma Gynostemma longipes \N \N \N \N \N 99372 T.tulensis Thelocactus Thelocactus tulensis \N \N \N \N \N 101507 \N genus Schistogyne \N \N \N \N \N 99373 \N no rank Persea americana var. americana x 'guatemalensis' \N \N \N \N \N 99374 \N genus Coutoubea \N \N \N \N \N 99375 \N subspecies Sinapis pubescens subsp. indurata \N \N \N \N \N 99376 P.egaliksensis Primula Primula egaliksensis \N \N \N \N \N 99377 \N varietas Ottoa oenanthoides var. major \N \N \N \N \N 99378 R.formosa-montanus Ranunculus Ranunculus formosa-montanus \N \N \N \N \N 99379 T.brevis Terniopsis Terniopsis brevis \N \N \N \N \N 99380 \N subspecies Digitalis lutea subsp. lutea \N \N \N \N \N 99381 C.tenax Cullen Cullen tenax \N \N \N \N \N 99382 C.auriculatum Cynanchum Cynanchum auriculatum \N \N \N \N \N 99383 H.sosnowskyi Heracleum Heracleum sosnowskyi \N \N \N \N \N 99384 N.pulchra Nassella Nassella pulchra \N \N \N \N \N 99385 P.parvifolia Polysphaeria Polysphaeria parvifolia \N \N \N \N \N 99386 C.moschata Cucumis x Cucurbita Cucumis melo x Cucurbita moschata \N \N \N \N \N 99387 D.viridescens Delphinium Delphinium viridescens \N \N \N \N \N 99388 A.diversifolia Artemisia Artemisia diversifolia \N \N \N \N \N 99389 B.umbrinus Bunochilus Bunochilus umbrinus \N \N \N \N \N 99390 S.nodiflorum Solanum Solanum nodiflorum \N \N \N \N \N 99391 \N genus Olinia \N \N \N \N \N 99392 C.crotalifera Calathea Calathea crotalifera \N \N \N \N \N 99393 E.foliosum Epilobium Epilobium foliosum \N \N \N \N \N 99394 P.debilis Palmerella Palmerella debilis \N \N \N \N \N 99395 S.decipiens Stipa Stipa decipiens \N \N \N \N \N 99396 C.incompta Cousinia Cousinia incompta \N \N \N \N \N 99397 C.microphylla Chaetanthera Chaetanthera microphylla \N \N \N \N \N 99398 S.restioides Sisyrinchium Sisyrinchium restioides \N \N \N \N \N 99399 G.scoparia Geonoma Geonoma scoparia \N \N \N \N \N 99400 R.eximia Raoulia Raoulia eximia \N \N \N \N \N 99401 E.naumanniana Eleocharis Eleocharis naumanniana \N \N \N \N \N 99402 \N genus Hullettia \N \N \N \N \N 99403 R.capillaceus Rondonanthus Rondonanthus capillaceus \N \N \N \N \N 99404 \N subspecies Crocus vernus subsp. vernus \N \N \N \N \N 99405 L.austrinum Lepidium Lepidium austrinum \N \N \N \N \N 99406 H.ovata Halleria Halleria ovata \N \N \N \N \N 99407 R.ruiziana Randia Randia ruiziana \N \N \N \N \N 99408 U.pubescens Utricularia Utricularia pubescens \N \N \N \N \N 99409 L.aequata Leea Leea aequata \N \N \N \N \N 99410 B.lindleyana Buddleja Buddleja lindleyana \N \N \N \N \N 99411 S.traversii Sporadanthus Sporadanthus traversii \N \N \N \N \N 99412 M.tillaeoides Myriophyllum Myriophyllum tillaeoides \N \N \N \N \N 99413 M.sobolifera Muhlenbergia Muhlenbergia sobolifera \N \N \N \N \N 99414 A.racemosa Atalantia Atalantia racemosa \N \N \N \N \N 99415 C.chinensis Coptis Coptis chinensis \N \N \N \N \N 99416 C.piloselloides Castratella Castratella piloselloides \N \N \N \N \N 99417 F.concinna Ficus Ficus concinna \N \N \N \N \N 99418 \N genus Asclepias \N \N \N \N \N 99419 \N genus Monoptilon \N \N \N \N \N 99420 S.hians Steinchisma Steinchisma hians \N \N \N \N \N 99421 S.geranioides Saxifraga Saxifraga geranioides \N \N \N \N \N 99422 S.meridionale Spiraeanthemum Spiraeanthemum meridionale \N \N \N \N \N 99423 \N no rank unclassified Juncaceae \N \N \N \N \N 99424 C.reconditus Campylanthus Campylanthus reconditus \N \N \N \N \N 99425 G.spathulifolia Garnieria Garnieria spathulifolia \N \N \N \N \N 99426 \N varietas Paeonia obovata var. japonica \N \N \N \N \N 99427 O.rhodopea Onosma Onosma rhodopea \N \N \N \N \N 99428 \N genus Doerpfeldia \N \N \N \N \N 99429 \N varietas Crinum asiaticum var. sinicum \N \N \N \N \N 99430 C.4098 Clusia Clusia sp. JA 4098 \N \N \N \N \N 99431 \N genus Clintonia \N \N \N \N \N 99432 S.muelleri Stuartina Stuartina muelleri \N \N \N \N \N 99433 O.macrocentra Opuntia Opuntia macrocentra \N \N \N \N \N 99434 B.oxycarpa Burckella Burckella oxycarpa \N \N \N \N \N 99435 C.elliptica Coursetia Coursetia elliptica \N \N \N \N \N 99436 \N tribe Arisareae \N \N \N \N \N 99437 P.glabrescens Pertya Pertya glabrescens \N \N \N \N \N 99438 C.tenensis Columnea Columnea tenensis \N \N \N \N \N 99439 O.melilotoides Oxalis Oxalis melilotoides \N \N \N \N \N 99440 \N family Gerrardinaceae \N \N \N \N \N 99441 \N genus Monechma \N \N \N \N \N 99442 C.boissieri Convolvulus Convolvulus boissieri \N \N \N \N \N 99443 B.tahitensis Balaka Balaka tahitensis \N \N \N \N \N 99444 \N varietas Oxytropis arctica var. koyukukensis \N \N \N \N \N 99445 G.foliosa Gentianella Gentianella foliosa \N \N \N \N \N 99446 F.welwitschii Fuirena Fuirena welwitschii \N \N \N \N \N 99447 D.glauca Drypetes Drypetes glauca \N \N \N \N \N 99448 E.triticeum Eremopyrum Eremopyrum triticeum \N \N \N \N \N 99449 P.ternatum Pelargonium Pelargonium ternatum \N \N \N \N \N 99450 C.23B Cliffortia Cliffortia sp. Balele 23B \N \N \N \N \N 99451 C.mitis Caryota Caryota mitis Burmese fishtail palm \N \N \N \N 99452 P.megacalyx Phoebe Phoebe megacalyx \N \N \N \N \N 99453 V.kirkii Vitellariopsis Vitellariopsis kirkii \N \N \N \N \N 99454 C.ferruginea Clethra Clethra ferruginea \N \N \N \N \N 99455 \N varietas Lilium concolor var. buschianum \N \N \N \N \N 99456 H.tomentosum Hieracium Hieracium tomentosum \N \N \N \N \N 99457 M.ervendbergii Mimosa Mimosa ervendbergii \N \N \N \N \N 99458 M.norrisii Mimulus Mimulus norrisii \N \N \N \N \N 99459 C.woodii Cotyledon Cotyledon woodii \N \N \N \N \N 99460 L.wildii Lotus Lotus wildii \N \N \N \N \N 99461 M.bicolor Maranta Maranta bicolor \N \N \N \N \N 99462 \N subspecies Mammillaria vetula subsp. gracilis \N \N \N \N \N 99463 K.micrantha Kunzea Kunzea micrantha \N \N \N \N \N 99464 J.nevadensis Juncus Juncus nevadensis \N \N \N \N \N 99465 E.hyssopifolia Euphorbia Euphorbia hyssopifolia \N \N \N \N \N 99466 C.ottonis Coryphantha Coryphantha ottonis \N \N \N \N \N 99467 \N genus Stylapterus \N \N \N \N \N 99468 B.californica Brodiaea Brodiaea californica \N \N \N \N \N 99469 M.48 Myosotis Myosotis sp. Hiiesalu 48 \N \N \N \N \N 99470 \N subfamily Bombacoideae \N \N \N \N \N 99471 L.NSW756660 Leptocarpus Leptocarpus sp. NSW756660 \N \N \N \N \N 99472 H.calycinum Hypericum Hypericum calycinum Aaron's-beard \N \N \N \N 99473 C.ciliata Chrysocoma Chrysocoma ciliata \N \N \N \N \N 99474 \N genus Acanthorrhinum \N \N \N \N \N 99475 H.grandiflorum Heracleum Heracleum grandiflorum \N \N \N \N \N 99476 C.quadratiloba Coelogyne Coelogyne quadratiloba \N \N \N \N \N 99477 T.crinitus Trichocladus Trichocladus crinitus \N \N \N \N \N 99478 P.aphrodite Phalaenopsis Phalaenopsis aphrodite \N \N \N \N \N 99479 C.picturata Calathea Calathea picturata \N \N \N \N \N 99480 X.arabica Xerotia Xerotia arabica \N \N \N \N \N 99481 H.fendleri Hydrophyllum Hydrophyllum fendleri \N \N \N \N \N 99482 O.oculifera Oxalis Oxalis oculifera \N \N \N \N \N 99483 C.chekiangense Cinnamomum Cinnamomum chekiangense \N \N \N \N \N 99484 G.macronyx Gomesa Gomesa macronyx \N \N \N \N \N 99485 C.coriaria Caesalpinia Caesalpinia coriaria \N \N \N \N \N 99486 C.foliosissima Carex Carex foliosissima \N \N \N \N \N 99487 P.cordatus Phyllanthus Phyllanthus cordatus \N \N \N \N \N 99488 G.pflanzii Gymnocalycium Gymnocalycium pflanzii \N \N \N \N \N 99489 C.erosa Cuscuta Cuscuta erosa \N \N \N \N \N 99490 \N genus Echinodorus burheads,mudbabies \N \N \N \N 99491 C.macrocyatha Calycosia Calycosia macrocyatha \N \N \N \N \N 99492 B.127 Begonia Begonia sp. Forrest 127 \N \N \N \N \N 99493 \N genus Orthogynium \N \N \N \N \N 99494 F.cymosum Fagopyrum Fagopyrum cymosum \N \N \N \N \N 99495 P.calophylla Psychotria Psychotria calophylla \N \N \N \N \N 99496 N.candida Nymphaea Nymphaea candida \N \N \N \N \N 99497 \N genus Spodiopogon \N \N \N \N \N 99498 G.galeottii Graffenrieda Graffenrieda galeottii \N \N \N \N \N 99499 \N genus Bertholletia \N \N \N \N \N 99500 I.dewevrei Isolona Isolona dewevrei \N \N \N \N \N 99501 C.grandiflora Cuscuta Cuscuta grandiflora \N \N \N \N \N 99502 N.romii Normandiodendron Normandiodendron romii \N \N \N \N \N 99503 C.revolii Cistus Cistus x revolii \N \N \N \N \N 99504 M.pictus Mimulus Mimulus pictus calico monkeyflower \N \N \N \N 99505 C.pinnata Cossinia Cossinia pinnata \N \N \N \N \N 99506 \N genus Lavatera \N \N \N \N \N 99507 C.492 Cuscuta Cuscuta aff. floribunda Grimaldo 492 \N \N \N \N \N 99508 E.nivea Eatonella Eatonella nivea \N \N \N \N \N 99509 C.spinosa Catunaregam Catunaregam spinosa \N \N \N \N \N 99510 C.coronata Coronilla Coronilla coronata \N \N \N \N \N 99511 G.margaretae Genlisea Genlisea margaretae \N \N \N \N \N 99512 B.raddeana Betula Betula raddeana \N \N \N \N \N 99513 D.concolor Downingia Downingia concolor \N \N \N \N \N 99514 M.radulifolia Miconia Miconia radulifolia \N \N \N \N \N 99515 L.gerardiana Lespedeza Lespedeza gerardiana \N \N \N \N \N 99516 N.procerum Nidularium Nidularium procerum \N \N \N \N \N 99517 C.floribunda Cyanea Cyanea floribunda \N \N \N \N \N 99518 A.monspessulanus Astragalus Astragalus monspessulanus \N \N \N \N \N 99519 M.499 Manglietia Manglietia sp. Nie & Meng 499 \N \N \N \N \N 99520 L.parviflora Luzuriaga Luzuriaga parviflora \N \N \N \N \N 99521 C.marantifolia Ctenanthe Ctenanthe marantifolia \N \N \N \N \N 99522 Q.gomeziana Quararibea Quararibea gomeziana \N \N \N \N \N 99523 \N subspecies Thymus saturejoides subsp. commutatus \N \N \N \N \N 99524 C.rigidissima Cousinia Cousinia rigidissima \N \N \N \N \N 99525 P.bulleyana Primula Primula bulleyana \N \N \N \N \N 99526 \N genus Racinaea \N \N \N \N \N 99527 \N genus Conceveiba \N \N \N \N \N 99528 \N genus Mystropetalon \N \N \N \N \N 99529 S.8511 Symbolanthus Symbolanthus sp. van der Werff 8511 \N \N \N \N \N 99530 A.japonica Alnus Alnus japonica \N \N \N \N \N 99531 C.hispidula Calotis Calotis hispidula \N \N \N \N \N 99532 I.striata Isolepis Isolepis striata \N \N \N \N \N 99533 P.nairobiensis Psychotria Psychotria nairobiensis \N \N \N \N \N 99534 C.subbiflora Chaboissaea Chaboissaea subbiflora \N \N \N \N \N 99535 H.pabstii Habenaria Habenaria pabstii \N \N \N \N \N 99536 E.hirtigerum Epilobium Epilobium hirtigerum \N \N \N \N \N 99537 C.oblonga Cissus Cissus oblonga \N \N \N \N \N 99538 S.hermaphrodita Sida Sida hermaphrodita \N \N \N \N \N 99539 P.armeniacum Papaver Papaver armeniacum \N \N \N \N \N 99540 A.fissa Alchemilla Alchemilla fissa \N \N \N \N \N 99541 M.latifolius Melicytus Melicytus latifolius \N \N \N \N \N 99542 S.tortuosa Symplocos Symplocos tortuosa \N \N \N \N \N 99543 C.eburnea Correa Correa eburnea \N \N \N \N \N 99544 \N genus Musgravea \N \N \N \N \N 99545 S.grandiflorus Selenicereus Selenicereus grandiflorus queen of the night \N \N \N \N 99546 N.aquatica Nepsera Nepsera aquatica \N \N \N \N \N 99547 C.platystigma Clusia Clusia platystigma \N \N \N \N \N 99548 P.arenastrum Polygonum Polygonum achoreum x Polygonum arenastrum \N \N \N \N \N 99549 P.macintyrei Pseudopanax Pseudopanax macintyrei \N \N \N \N \N 99550 D.gyalanum Delphinium Delphinium gyalanum \N \N \N \N \N 99551 \N genus Barkleyanthus \N \N \N \N \N 99552 C.microchaete Centrolobium Centrolobium microchaete \N \N \N \N \N 99553 G.gratulabunda Gongora Gongora gratulabunda \N \N \N \N \N 99554 \N genus Pyrus pears \N \N \N \N 99555 B.wightiana Berberis Berberis wightiana \N \N \N \N \N 99556 S.apetala Sonneratia Sonneratia apetala \N \N \N \N \N 99557 I.spicata Indigofera Indigofera spicata creeping indigo \N \N \N \N 99558 G.densifolium Gastrolobium Gastrolobium densifolium \N \N \N \N \N 99559 C.spinosa Cleome Cleome spinosa \N \N \N \N \N 99560 T.tetraphyllum Tripodion Tripodion tetraphyllum \N \N \N \N \N 99561 X.parrasana Xylothamia Xylothamia parrasana \N \N \N \N \N 99562 \N subspecies Genista erioclada subsp. atlantica \N \N \N \N \N 99563 I.amparoanus Isochilus Isochilus amparoanus \N \N \N \N \N 99564 \N genus Kummerowia \N \N \N \N \N 99565 L.secalinus Leymus Leymus secalinus \N \N \N \N \N 99566 D.mahechae Dugandiodendron Dugandiodendron mahechae \N \N \N \N \N 99567 P.coeruleus Plectranthus Plectranthus coeruleus \N \N \N \N \N 99568 B.alpestris Baldellia Baldellia alpestris \N \N \N \N \N 99569 B.mayombeense Bulbophyllum Bulbophyllum mayombeense \N \N \N \N \N 99570 M.phyllogramme Microcharis Microcharis phyllogramme \N \N \N \N \N 99571 S.arborescens Sibangea Sibangea arborescens \N \N \N \N \N 99572 \N varietas Aristida purpurascens var. tenuispica \N \N \N \N \N 99573 V.articulatum Viscum Viscum articulatum \N \N \N \N \N 99574 M.andina Muhlenbergia Muhlenbergia andina \N \N \N \N \N 99575 \N varietas Lithops ruschiorum var. ruschiorum \N \N \N \N \N 99576 L.sabicu Lysiloma Lysiloma sabicu \N \N \N \N \N 99577 E.podocarpifolia Euphorbia Euphorbia podocarpifolia \N \N \N \N \N 99578 P.austrosinense Piper Piper austrosinense \N \N \N \N \N 99579 P.eucalyptifolium Piper Piper eucalyptifolium \N \N \N \N \N 99580 P.2007001 Pulsatilla Pulsatilla sp. Xie 2007001 \N \N \N \N \N 99581 S.94-500 Streptocarpus Streptocarpus sp. SI 94-500 \N \N \N \N \N 99582 P.parodii Petunia Petunia x hybrida x Petunia axillaris subsp. parodii \N \N \N \N \N 99583 P.linearis Phacelia Phacelia linearis \N \N \N \N \N 99584 P.longiligula Pseudosasa Pseudosasa longiligula \N \N \N \N \N 99585 \N varietas Mimosa ceratonia var. ceratonia \N \N \N \N \N 99586 C.axilliflora Consolida Consolida axilliflora \N \N \N \N \N 99587 \N subspecies Galium gilliesii subsp. gilliesii \N \N \N \N \N 99588 H.deflexa Halenia Halenia deflexa \N \N \N \N \N 99589 O.decorus Osmanthus Osmanthus decorus \N \N \N \N \N 99590 C.hindsii Celastrus Celastrus hindsii \N \N \N \N \N 99591 \N genus Decodon \N \N \N \N \N 99592 P.carnosa Peracarpa Peracarpa carnosa \N \N \N \N \N 99593 A.harleyi Aspicarpa Aspicarpa harleyi \N \N \N \N \N 99594 \N genus Melanopsidium \N \N \N \N \N 99595 D.4042 Dirhamphis Dirhamphis sp. Lott et al. 4042 \N \N \N \N \N 99596 E.1481 Erica Erica sp. Turner 1481 \N \N \N \N \N 99597 B.macrocarpa Bidens Bidens macrocarpa \N \N \N \N \N 99598 \N subspecies Olea europaea subsp. guanchica \N \N \N \N \N 99599 E.talassicus Echinops Echinops talassicus \N \N \N \N \N 99600 P.cardiocarpum Pternopetalum Pternopetalum cardiocarpum \N \N \N \N \N 99601 T.centipeda Thrixspermum Thrixspermum centipeda \N \N \N \N \N 99602 M.sinclairii Meryta Meryta sinclairii \N \N \N \N \N 99603 T.smyrnensis Tamarix Tamarix smyrnensis \N \N \N \N \N 99604 O.oxyphylla Oxytropis Oxytropis oxyphylla \N \N \N \N \N 99605 S.olufsenii Suaeda Suaeda olufsenii \N \N \N \N \N 99606 C.triangularis Carex Carex triangularis \N \N \N \N \N 99607 T.religiosa Tambourissa Tambourissa religiosa \N \N \N \N \N 99608 D.album Dictyosperma Dictyosperma album \N \N \N \N \N 99609 M.nivalis Micranthes Micranthes nivalis \N \N \N \N \N 99610 L.barbinervis Leandra Leandra barbinervis \N \N \N \N \N 99611 \N genus Dulichium \N \N \N \N \N 99612 \N genus Viscum \N \N \N \N \N 99613 C.theophrasti Cerastium Cerastium theophrasti \N \N \N \N \N 99614 B.fendleri Berberis Berberis fendleri \N \N \N \N \N 99615 S.argillicola Stachys Stachys argillicola \N \N \N \N \N 99616 L.ameghinoi Larrea Larrea ameghinoi \N \N \N \N \N 99617 T.aethusifolium Trachyspermum Trachyspermum aethusifolium \N \N \N \N \N 99618 P.modestei Polyscias Polyscias modestei \N \N \N \N \N 99619 P.SH-2010 Phaseolus Phaseolus sp. SH-2010 \N \N \N \N \N 99620 C.nitida Codia Codia nitida \N \N \N \N \N 99621 D.micrantha Dalechampia Dalechampia micrantha \N \N \N \N \N 99622 \N genus Phlogacanthus \N \N \N \N \N 99623 L.setuligera Leea Leea setuligera \N \N \N \N \N 99624 L.fremontii Lepidium Lepidium fremontii \N \N \N \N \N 99625 B.jamesonii Berberis Berberis jamesonii \N \N \N \N \N 99626 C.pallidus Chrysopogon Chrysopogon pallidus \N \N \N \N \N 99627 A.ligtu Alstroemeria Alstroemeria ligtu \N \N \N \N \N 99628 \N subtribe Eulophiinae \N \N \N \N \N 99629 I.longipes Inga Inga longipes \N \N \N \N \N 99630 D.linearifolia Dicerandra Dicerandra linearifolia \N \N \N \N \N 99631 I.sanguinea Iris Iris sanguinea \N \N \N \N \N 99632 C.scita Carex Carex scita \N \N \N \N \N 99633 V.johannis Vicia Vicia johannis \N \N \N \N \N 99634 E.ciliata Elsholtzia Elsholtzia ciliata \N \N \N \N \N 99635 P.tenellus Phaseolus Phaseolus tenellus \N \N \N \N \N 99636 A.hypoleuca Ajania Ajania hypoleuca \N \N \N \N \N 99637 S.parvifolia Shorea Shorea parvifolia meranti sarang punai \N \N \N \N 99638 L.squamata Lawrencia Lawrencia squamata \N \N \N \N \N 99639 \N varietas Aralia elata var. mandshurica \N \N \N \N \N 99640 \N genus Anabasis \N \N \N \N \N 99641 O.97.013 Onopordum Onopordum cf. illyricum DGK 97.013 \N \N \N \N \N 99642 A.atricapillus Astragalus Astragalus atricapillus \N \N \N \N \N 99643 C.purpurascens Chironia Chironia purpurascens \N \N \N \N \N 99644 B.latialata Burmannia Burmannia latialata \N \N \N \N \N 99645 R.indotibetanus Rubus Rubus indotibetanus \N \N \N \N \N 99646 A.sericea Afgekia Afgekia sericea \N \N \N \N \N 99647 S.graminifolia Scaphyglottis Scaphyglottis graminifolia \N \N \N \N \N 99648 \N tribe Aciphylleae \N \N \N \N \N 99649 G.australis Gleditsia Gleditsia australis \N \N \N \N \N 99650 J.grandiflorum Jasminum Jasminum grandiflorum \N \N \N \N \N 99651 K.JT2007-24 Kaempferia Kaempferia sp. 2 JT2007-24 \N \N \N \N \N 99652 H.melaleucum Helichrysum Helichrysum melaleucum \N \N \N \N \N 99653 B.guianensis Bauhinia Bauhinia guianensis \N \N \N \N \N 99654 R.stemonacanthoides Ruellia Ruellia stemonacanthoides \N \N \N \N \N 99655 T.obscura Tabebuia Tabebuia obscura \N \N \N \N \N 99656 P.oreodoxa Pentaschistis Pentameris oreodoxa \N \N \N \N \N 99657 N.brevitubum Neisosperma Neisosperma brevitubum \N \N \N \N \N 99658 \N varietas Tillandsia rauhii var. rauhii \N \N \N \N \N 99659 S.melanopsis Salix Salix melanopsis dusky willow \N \N \N \N 99660 C.salviiformis Centropogon Centropogon salviiformis \N \N \N \N \N 99661 \N genus Pterostegia \N \N \N \N \N 99662 \N genus Memora \N \N \N \N \N 99663 M.californica Muhlenbergia Muhlenbergia californica \N \N \N \N \N 99664 E.leavenworthii Eryngium Eryngium leavenworthii \N \N \N \N \N 99665 H.calyphyllus Hibiscus Hibiscus calyphyllus \N \N \N \N \N 99666 G.sphaerica Gongora Gongora sphaerica \N \N \N \N \N 99667 S.vaginiflorus Sporobolus Sporobolus vaginiflorus \N \N \N \N \N 99668 P.bracteosa Pedicularis Pedicularis bracteosa \N \N \N \N \N 99669 \N genus Solfia \N \N \N \N \N 99670 M.falcata Maxillaria Maxillaria falcata \N \N \N \N \N 99671 \N subspecies Silene laciniata subsp. greggii \N \N \N \N \N 99672 \N genus Myrceugenia \N \N \N \N \N 99673 C.squarrosa Calicorema Calicorema squarrosa \N \N \N \N \N 99674 D.termeana Dionysia Dionysia termeana \N \N \N \N \N 99675 L.lankongensis Ligularia Ligularia lankongensis \N \N \N \N \N 99676 C.pringlei Calochortus Calochortus pringlei \N \N \N \N \N 99677 E.patens Erica Erica patens \N \N \N \N \N 99678 P.henryi Pimpinella Pimpinella henryi \N \N \N \N \N 99679 D.guianensis Dicorynia Dicorynia guianensis \N \N \N \N \N 99680 Z.coloratum Zingiber Zingiber coloratum \N \N \N \N \N 99681 A.anserinifolia Acaena Acaena anserinifolia \N \N \N \N \N 99682 A.aphyllus Acanthothamnus Acanthothamnus aphyllus \N \N \N \N \N 99683 P.blinii Photinia Photinia blinii \N \N \N \N \N 99684 M.rubiginosa Miconia Miconia rubiginosa peralejo \N \N \N \N 99685 \N genus Sibbaldianthe \N \N \N \N \N 99686 C.790 Cordylostigma Cordylostigma cf. longifolia Dessein et al. 790 \N \N \N \N \N 99687 O.abruptum Oncidium Oncidium abruptum \N \N \N \N \N 99688 C.stenolepis Cuscuta Cuscuta stenolepis \N \N \N \N \N 99689 F.consociata Ficus Ficus consociata \N \N \N \N \N 99690 I.lacunosa Ipomoea Ipomoea lacunosa white-star \N \N \N \N 99691 E.tweedyi Erigeron Erigeron tweedyi \N \N \N \N \N 99692 E.daphnoides Euclea Euclea daphnoides \N \N \N \N \N 99693 A.hanceana Ardisia Ardisia hanceana \N \N \N \N \N 99694 C.(Chatham) Craspedia Craspedia sp. (Chatham) \N \N \N \N \N 99695 F.1716 Fevillea Fevillea sp. Cayola 1716 \N \N \N \N \N 99696 \N varietas Xanthisma spinulosum var. chihuahuanum \N \N \N \N \N 99697 C.endresii Chondroscaphe Chondroscaphe endresii \N \N \N \N \N 99698 H.thyrsoidea Heteropterys Heteropterys thyrsoidea \N \N \N \N \N 99699 R.yelliottii Rhododendron Rhododendron yelliottii \N \N \N \N \N 99700 P.catenetus Petalochilus Petalochilus catenetus \N \N \N \N \N 99701 \N genus Condalia \N \N \N \N \N 99702 C.lanceolatum Cotylelobium Cotylelobium lanceolatum \N \N \N \N \N 99703 P.chamaebuxus Polygala Polygala chamaebuxus \N \N \N \N \N 99704 \N genus Galitzkya \N \N \N \N \N 99705 B.versicolor Begonia Begonia versicolor \N \N \N \N \N 99706 I.chinensis Itea Itea chinensis \N \N \N \N \N 99707 O.arenaria Onosma Onosma arenaria \N \N \N \N \N 99708 \N varietas Salvia flava var. flava \N \N \N \N \N 99709 S.nicaraguensis Swartzia Swartzia nicaraguensis \N \N \N \N \N 99710 L.velutinus Lupinus Lupinus velutinus \N \N \N \N \N 99711 V.mexicana Vicia Vicia mexicana \N \N \N \N \N 99712 B.recurvata Beaucarnea Beaucarnea recurvata bottle-palm,elephant-foot tree,pony-tail \N \N \N \N 99713 M.arboricola Miconia Miconia arboricola \N \N \N \N \N 99714 A.duranensis Arachis Arachis duranensis \N \N \N \N \N 99715 M.ardens Malesherbia Malesherbia ardens \N \N \N \N \N 99716 A.barbulata Androsace Androsace barbulata \N \N \N \N \N 99717 \N genus Jenmaniella \N \N \N \N \N 99718 \N varietas Triarrhena lutarioriparia var. lutarioriparia \N \N \N \N \N 99719 O.apophysata Orthaea Orthaea apophysata \N \N \N \N \N 99720 \N genus Agrostophyllum \N \N \N \N \N 99721 \N genus Paraboea \N \N \N \N \N 99722 O.teretifolia Olearia Olearia teretifolia \N \N \N \N \N 99723 \N genus Fothergilla \N \N \N \N \N 99724 K.bupleuroides Korshinskya Korshinskya bupleuroides \N \N \N \N \N 99725 O.uliginosa Oxalis Oxalis uliginosa \N \N \N \N \N 99726 H.triangularis Hypselodelphys Hypselodelphys triangularis \N \N \N \N \N 99727 O.teneriensis Oxalis Oxalis teneriensis \N \N \N \N \N 99728 S.pottingeri Smilax Smilax pottingeri \N \N \N \N \N 99729 A.palustris Anacamptis Anacamptis palustris \N \N \N \N \N 99730 Q.bicolor Quercus Quercus bicolor swamp white oak \N \N \N \N 99731 A.cruentum Aspidosperma Aspidosperma cruentum \N \N \N \N \N 99732 T.ferulaceum Tanacetum Tanacetum ferulaceum \N \N \N \N \N 99733 \N genus Gongora \N \N \N \N \N 99734 \N genus Rhodophiala \N \N \N \N \N 99735 E.atropurpureum Exacum Exacum atropurpureum \N \N \N \N \N 99736 A.pauciflora Adenocline Adenocline pauciflora \N \N \N \N \N 99737 P.juruana Pouteria Pouteria juruana \N \N \N \N \N 99738 S.lanyuensis Strobilanthes Strobilanthes lanyuensis \N \N \N \N \N 99739 H.buxbaumii Haplophyllum Haplophyllum buxbaumii \N \N \N \N \N 99740 \N genus Paraphlomis \N \N \N \N \N 99741 \N genus Viticipremna \N \N \N \N \N 99742 \N subspecies Lilium pyrenaicum subsp. ponticum \N \N \N \N \N 99743 \N genus Mormolyca \N \N \N \N \N 99744 S.hallii Scoliopus Scoliopus hallii \N \N \N \N \N 99745 M.stenobotrys Miconia Miconia stenobotrys \N \N \N \N \N 99746 P.scheideana Petunia Petunia scheideana \N \N \N \N \N 99747 A.caudata Arenga Arenga caudata \N \N \N \N \N 99748 C.schlechteri Cynometra Cynometra schlechteri \N \N \N \N \N 99749 D.larecajensis Dioscorea Dioscorea larecajensis \N \N \N \N \N 99750 D.longa Dichaea Dichaea longa \N \N \N \N \N 99751 M.trifida Montiopsis Montiopsis capitata x Montiopsis trifida \N \N \N \N \N 99752 \N genus Mancoa \N \N \N \N \N 99753 \N genus Cyrtanthus \N \N \N \N \N 99754 I.brachycentra Impatiens Impatiens brachycentra \N \N \N \N \N 99755 \N varietas Isodon grandifolius var. atuntzeensis \N \N \N \N \N 99756 L.14912 unclassified Lauraceae Laureae gen. sp. Hyland 14912 \N \N \N \N \N 99757 C.frigida Carex Carex frigida \N \N \N \N \N 99758 \N varietas Chionochloa rubra var. inermis \N \N \N \N \N 99759 \N genus Chromolucuma \N \N \N \N \N 99760 E.serbicum Eryngium Eryngium serbicum \N \N \N \N \N 99761 \N genus Platypodium \N \N \N \N \N 99762 S.laxiflora Sowerbaea Sowerbaea laxiflora \N \N \N \N \N 99763 P.juncea Psathyrostachys Psathyrostachys juncea \N \N \N \N \N 99764 \N genus Orania \N \N \N \N \N 99765 O.8753 Orobanche Orobanche cf. graciosa HST 8753 \N \N \N \N \N 99766 A.hypoglauca Ampelopsis Ampelopsis hypoglauca \N \N \N \N \N 99767 G.puncticulata Guatteria Guatteria puncticulata \N \N \N \N \N 99768 \N genus Roldana \N \N \N \N \N 99769 \N genus Polyarrhena \N \N \N \N \N 99770 \N varietas Solanum quitoense var. septentrionale \N \N \N \N \N 99771 \N genus Ronnbergia \N \N \N \N \N 99772 B.speciosa Bonatea Bonatea speciosa \N \N \N \N \N 99773 S.SP082 Sisyrinchium Sisyrinchium cf. valparadiseum SP082 \N \N \N \N \N 99774 O.elegans Omphalogramma Omphalogramma elegans \N \N \N \N \N 99775 U.subquadripara Urochloa Urochloa subquadripara \N \N \N \N \N 99776 G.alpina Gamocarpha Gamocarpha alpina \N \N \N \N \N 99777 C.HS414 Cucumis Cucumis sp. HS414 \N \N \N \N \N 99778 O.megalophyllum Ormocarpum Ormocarpum megalophyllum \N \N \N \N \N 99779 M.pastinacea Magydaris Magydaris pastinacea \N \N \N \N \N 99780 C.psittacinum Cestrum Cestrum psittacinum \N \N \N \N \N 99781 A.obovata Asimina Asimina obovata \N \N \N \N \N 99782 \N genus Bolusanthus \N \N \N \N \N 99783 S.subulata Scaphyglottis Scaphyglottis subulata \N \N \N \N \N 99784 D.microlepis Dianthus Dianthus microlepis \N \N \N \N \N 99785 P.watsonii Prionosciadium Prionosciadium watsonii \N \N \N \N \N 99786 A.sinaloensis Albizia Albizia sinaloensis \N \N \N \N \N 99787 H.zonatus Hibiscus Hibiscus zonatus \N \N \N \N \N 99788 I.grandiflora Indigofera Indigofera grandiflora \N \N \N \N \N 99789 S.saudensis Sonchus Sonchus saudensis \N \N \N \N \N 99790 V.bracteata Verbena Verbena bracteata creeping vervain,prostrate vervain \N \N \N \N 99791 A.pumila Astelia Astelia pumila \N \N \N \N \N 99792 B.soulieana Berberis Berberis soulieana \N \N \N \N \N 99793 P.strigosus Plectranthus Plectranthus strigosus \N \N \N \N \N 99794 O.aleppica Onosma Onosma aleppica \N \N \N \N \N 99795 \N genus Lamyropsis \N \N \N \N \N 99796 T.oaxacana Tillandsia Tillandsia oaxacana \N \N \N \N \N 99797 \N genus Eruca \N \N \N \N \N 99798 V.oaxacana Viguiera Viguiera oaxacana \N \N \N \N \N 99799 C.myriantha Carlowrightia Carlowrightia myriantha \N \N \N \N \N 99800 M.hernandoi Meriania Meriania hernandoi \N \N \N \N \N 99801 M.stipulacea Muraltia Muraltia stipulacea \N \N \N \N \N 99802 A.rudis Aeschynomene Aeschynomene rudis \N \N \N \N \N 99803 O.glumipatula Oryza Oryza glumipatula \N \N \N \N \N 99804 P.2566 Plantago Plantago sp. Garnock-Jones & Tay 2566 \N \N \N \N \N 99805 E.montana Echeveria Echeveria montana \N \N \N \N \N 99806 C.annulare Cyrtochilum Cyrtochilum annulare \N \N \N \N \N 99807 A.rupestris Argocoffeopsis Argocoffeopsis rupestris \N \N \N \N \N 99808 A.arsenii Ateleia Ateleia arsenii \N \N \N \N \N 99809 C.delicata Clarkia Clarkia delicata \N \N \N \N \N 99810 C.haussknechtii Cousinia Cousinia haussknechtii \N \N \N \N \N 99811 C.juniperina Cliffortia Cliffortia juniperina \N \N \N \N \N 99812 T.stelligera Tremandra Tremandra stelligera \N \N \N \N \N 99813 E.tortilis Eleocharis Eleocharis tortilis \N \N \N \N \N 99814 S.emarginatum Stylidium Stylidium emarginatum \N \N \N \N \N 99815 A.anatolicum Alyssum Alyssum anatolicum \N \N \N \N \N 99816 P.capensis Psychotria Psychotria capensis \N \N \N \N \N 99817 W.elongata Wurmbea Wurmbea elongata \N \N \N \N \N 99818 \N subspecies Carthamus dentatus subsp. ruber \N \N \N \N \N 99819 \N genus Raphiocarpus \N \N \N \N \N 99820 C.oligodonta Cliffortia Cliffortia oligodonta \N \N \N \N \N 99821 E.cyananthum Echiochilon Echiochilon cyananthum \N \N \N \N \N 99822 C.robustum Colchicum Colchicum robustum \N \N \N \N \N 99823 T.coronopifolia Teesdalia Teesdalia coronopifolia \N \N \N \N \N 99824 \N varietas Silene rosulata var. reeseana \N \N \N \N \N 99825 S.yabeanum Sedum Sedum yabeanum \N \N \N \N \N 99826 \N subspecies Carex deweyana subsp. deweyana \N \N \N \N \N 99827 A.pubescens Aesculus Aesculus glabra var. arguta x Aesculus sylvatica var. pubescens \N \N \N \N \N 99828 D.pseudococcinea Dyckia Dyckia pseudococcinea \N \N \N \N \N 99829 \N genus Clematoclethra \N \N \N \N \N 99830 \N genus Madagaster \N \N \N \N \N 99831 I.delavayi Incarvillea Incarvillea delavayi \N \N \N \N \N 99832 A.rimarum Arabis Arabis rimarum \N \N \N \N \N 99833 C.104 Cenchrus Cenchrus sp. WK 104 \N \N \N \N \N 99834 S.pavoniana Sebastiania Sebastiania pavoniana \N \N \N \N \N 99835 I.irvingii Impatiens Impatiens irvingii \N \N \N \N \N 99836 \N genus Scleropyrum \N \N \N \N \N 99837 O.ambigua Oncella Oncella ambigua \N \N \N \N \N 99838 O.GK12391 Ophiorrhiza Ophiorrhiza sp. GK12391 \N \N \N \N \N 99839 C.compressus Cenchrus Cenchrus compressus swamp foxtail \N \N \N \N 99840 D.khuzistanica Dionysia Dionysia khuzistanica \N \N \N \N \N 99841 \N genus Launaea \N \N \N \N \N 99842 \N genus Setchellanthus \N \N \N \N \N 99843 H.piliferum Heteranthelium Heteranthelium piliferum \N \N \N \N \N 99844 D.glareosum Delphinium Delphinium glareosum \N \N \N \N \N 99845 M.montana Michelia Michelia montana \N \N \N \N \N 99846 S.erythrosticta Swertia Swertia erythrosticta \N \N \N \N \N 99847 S.pedunculata Scalesia Scalesia pedunculata \N \N \N \N \N 99848 B.conchidioides Bulbophyllum Bulbophyllum conchidioides \N \N \N \N \N 99849 C.gnaphalii Croton Croton gnaphalii \N \N \N \N \N 99850 C.kraliana Carex Carex kraliana \N \N \N \N \N 99851 P.193/00 Pterostylis Pterostylis aff. banksii B Molloy 193/00 \N \N \N \N \N 99852 N.guadalupensis Notopleura Notopleura guadalupensis \N \N \N \N \N 99853 \N varietas Aechmea bracteata var. pacifica \N \N \N \N \N 99854 T.pouponii Thylachium Thylachium pouponii \N \N \N \N \N 99855 A.densiflora Austrostipa Austrostipa densiflora \N \N \N \N \N 99856 L.comptonii Linum Linum comptonii \N \N \N \N \N 99857 \N subspecies Silene vulgaris subsp. vulgaris \N \N \N \N \N 99858 A.angustifolia Aspalathus Aspalathus angustifolia \N \N \N \N \N 99859 C.atrata Centaurea Centaurea atrata \N \N \N \N \N 99860 A.cymbalum Adenocalymma Adenocalymma cymbalum \N \N \N \N \N 99861 \N genus Doratoxylon \N \N \N \N \N 99862 G.minima Gagea Gagea minima \N \N \N \N \N 99863 \N genus Pleiostachya \N \N \N \N \N 99864 S.hookeri Saussurea Saussurea hookeri \N \N \N \N \N 99865 O.sulfurea Oxera Oxera sulfurea \N \N \N \N \N 99866 C.major Callisthene Callisthene major \N \N \N \N \N 99867 H.flavum Hymenolobium Hymenolobium flavum \N \N \N \N \N 99868 S.tuberosum Symphytum Symphytum tuberosum tuberous comfrey \N \N \N \N 99869 F.obliqua Foetidia Foetidia obliqua \N \N \N \N \N 99870 H.trisperma Hovea Hovea trisperma \N \N \N \N \N 99871 G.insubrica Gentianella Gentianella insubrica \N \N \N \N \N 99872 I.21361 Ixora Ixora sp. Kew 21361 \N \N \N \N \N 99873 H.wightiana Hopea Hopea wightiana \N \N \N \N \N 99874 \N subspecies Cyrtanthus mackenii subsp. mackenii \N \N \N \N \N 99875 A.tripartita Artemisia Artemisia tripartita \N \N \N \N \N 99876 C.diandra Cyathochaeta Cyathochaeta diandra \N \N \N \N \N 99877 \N varietas Boehmeria macrophylla var. canescens \N \N \N \N \N 99878 N.umbonata Nemesia Nemesia umbonata \N \N \N \N \N 99879 P.4632 Peponidium Peponidium sp. Gautier 4632 \N \N \N \N \N 99880 D.aquilegifolium Delphinium Delphinium aquilegifolium \N \N \N \N \N 99881 \N subspecies Heliotropium curassavicum subsp. curassavicum \N \N \N \N \N 99882 \N subspecies Primula latiloba subsp. latiloba \N \N \N \N \N 99883 P.abyssinica Pavetta Pavetta abyssinica \N \N \N \N \N 99884 I.lutea Ibicella Ibicella lutea \N \N \N \N \N 99885 H.incana Hypochaeris Hypochaeris incana \N \N \N \N \N 99886 M.quinquepartita Manihot Manihot quinquepartita \N \N \N \N \N 99887 F.laevis Fagonia Fagonia laevis \N \N \N \N \N 99888 P.clusiifolia Peperomia Peperomia clusiifolia \N \N \N \N \N 99889 P.subintegra Pinanga Pinanga subintegra \N \N \N \N \N 99890 T.squamosum Trifolium Trifolium squamosum \N \N \N \N \N 99891 S.97-019 Seemannia Seemannia aff. purpurascens Chautems Perret 97-019 \N \N \N \N \N 99892 Z.D Zannichellia Zannichellia sp. haplotype D \N \N \N \N \N 99893 \N subspecies Conostylis teretifolia subsp. teretifolia \N \N \N \N \N 99894 A.cernuum Amblostoma Amblostoma cernuum \N \N \N \N \N 99895 A.capitata Aristea Aristea capitata \N \N \N \N \N 99896 P.maidantalica Parrya Parrya maidantalica \N \N \N \N \N 99897 \N subspecies Lachnaea globulifera subsp. incana \N \N \N \N \N 99898 B.mitis Brassaiopsis Brassaiopsis mitis \N \N \N \N \N 99899 C.caledonica Capelio Capelio caledonica \N \N \N \N \N 99900 D.dusenii Declieuxia Declieuxia dusenii \N \N \N \N \N 99901 E.tripartita Eremocharis Eremocharis tripartita \N \N \N \N \N 99902 T.souliei Trachydium Trachydium souliei \N \N \N \N \N 99903 \N varietas Gymnocalycium mazanense var. breviflorum \N \N \N \N \N 99904 S.cuspidatum Sisyrinchium Sisyrinchium cuspidatum \N \N \N \N \N 99905 S.seleriana Stevia Stevia seleriana \N \N \N \N \N 99906 T.macrostylum Thalictrum Thalictrum macrostylum \N \N \N \N \N 99907 G.anglica Genista Genista anglica needle furze \N \N \N \N 99908 C.bella Carex Carex bella \N \N \N \N \N 99909 P.12484 Printzia Printzia sp. Goldblatt 12484 \N \N \N \N \N 99910 \N subspecies Carex bigelowii subsp. dacica \N \N \N \N \N 99911 E.cappadocica Ebenus Ebenus cappadocica \N \N \N \N \N 99912 \N subspecies Phacelia heterophylla subsp. virgata \N \N \N \N \N 99913 B.lappifolia Bryonia Bryonia lappifolia \N \N \N \N \N 99914 \N no rank unclassified Passifloraceae \N \N \N \N \N 99915 \N subspecies Anthemis cretica subsp. spruneri \N \N \N \N \N 99916 P.sericeum Psilotrichum Psilotrichum sericeum \N \N \N \N \N 99917 I.albiflorum Ionopsidium Ionopsidium albiflorum \N \N \N \N \N 99918 A.andreaeanum Askidiosperma Askidiosperma andreaeanum \N \N \N \N \N 99919 V.albida Vanilla Vanilla albida \N \N \N \N \N 99920 A.danicus Astragalus Astragalus danicus \N \N \N \N \N 99921 M.flavescens Mollugo Mollugo flavescens \N \N \N \N \N 99922 A.inflexa Aerides Aerides inflexa \N \N \N \N \N 99923 P.clusiana Potentilla Potentilla clusiana \N \N \N \N \N 99924 E.s.n. Elleanthus Elleanthus cf. furfuraceus Szlachetko s.n. \N \N \N \N \N 99925 I.platycarpa Indigofera Indigofera platycarpa \N \N \N \N \N 99926 L.3640 Ladenbergia Ladenbergia sp. JA 3640 \N \N \N \N \N 99927 A.alboviolaceum Aconitum Aconitum alboviolaceum \N \N \N \N \N 99928 V.pseudocytisus Vella Vella pseudocytisus \N \N \N \N \N 99929 \N varietas Boehmeria nivea var. nivea \N \N \N \N \N 99930 \N genus Calyptocarpus \N \N \N \N \N 99931 B.boisiana Begonia Begonia boisiana \N \N \N \N \N 99932 C.longipetiolata Cranichis Cranichis longipetiolata \N \N \N \N \N 99933 L.gw1205 Leucosyke Leucosyke sp. gw1205 \N \N \N \N \N 99934 I.pseudocapnoides Iris Iris pseudocapnoides \N \N \N \N \N 99935 P.pseudofumarioides Pelargonium Pelargonium pseudofumarioides \N \N \N \N \N 99936 \N genus Digoniopterys \N \N \N \N \N 99937 H.glabriusculum Heliotropium Heliotropium glabriusculum \N \N \N \N \N 99938 E.erecta Ehrharta Ehrharta erecta \N \N \N \N \N 99939 E.acaulis Elytraria Elytraria acaulis \N \N \N \N \N 99940 F.heterophylla Festuca Festuca heterophylla \N \N \N \N \N 99941 P.boivinii Polyscias Polyscias boivinii \N \N \N \N \N 99942 A.cyathophorum Allium Allium cyathophorum \N \N \N \N \N 99943 E.curvirostris Erica Erica curvirostris \N \N \N \N \N 99944 O.baetica Ononis Ononis baetica \N \N \N \N \N 99945 C.luzulae Cyperus Cyperus luzulae \N \N \N \N \N 99946 \N genus Phoradendron \N \N \N \N \N 99947 A.pentapomicum Acer Acer pentapomicum \N \N \N \N \N 99948 B.masarangensis Begonia Begonia masarangensis \N \N \N \N \N 99949 \N genus Ancylanthos \N \N \N \N \N 99950 \N varietas Chamaecrista desvauxii var. latistipula \N \N \N \N \N 99951 \N genus Liabum \N \N \N \N \N 99952 L.fusca Leptochloa Leptochloa fusca \N \N \N \N \N 99953 C.africanus Chaetocarpus Chaetocarpus africanus \N \N \N \N \N 99954 \N family Opiliaceae \N \N \N \N \N 99955 \N genus Allocheilos \N \N \N \N \N 99956 \N genus Lueddemannia \N \N \N \N \N 99957 M.undata Maytenus Maytenus undata \N \N \N \N \N 99958 A.savatieri Asarum Asarum savatieri \N \N \N \N \N 99959 C.lepida Cousinia Cousinia lepida \N \N \N \N \N 99960 C.maculata Calceolaria Calceolaria maculata \N \N \N \N \N 99961 W.planiflora Wahlenbergia Wahlenbergia planiflora \N \N \N \N \N 99962 \N subspecies Hippophae rhamnoides subsp. carpatica \N \N \N \N \N 99963 E.vilmorinianum Echium Echium vilmorinianum \N \N \N \N \N 99964 P.procerus Penstemon Penstemon procerus \N \N \N \N \N 99965 C.antipoda Coprosma Coprosma antipoda \N \N \N \N \N 99966 C.capitata Cornus Cornus capitata \N \N \N \N \N 99967 R.velutina Regelia Regelia velutina \N \N \N \N \N 99968 \N subspecies Perideridia bolanderi subsp. bolanderi \N \N \N \N \N 99969 C.aestuans Corchorus Corchorus aestuans \N \N \N \N \N 99970 T.involucratus Tolypanthus Tolypanthus involucratus \N \N \N \N \N 99971 \N subspecies Echidnopsis sharpei subsp. bavazzani \N \N \N \N \N 99972 L.bakeri Limnanthes Limnanthes bakeri \N \N \N \N \N 99973 T.ciliata Tetratheca Tetratheca ciliata \N \N \N \N \N 99974 B.alba Basella Basella alba Ceylon-spinach \N \N \N \N 99975 B.australis Brunonia Brunonia australis \N \N \N \N \N 99976 F.uonicum Fissistigma Fissistigma uonicum \N \N \N \N \N 99977 A.manzanita Arctostaphylos Arctostaphylos manzanita \N \N \N \N \N 99978 C.bequaertii Carex Carex bequaertii \N \N \N \N \N 99979 H.ferrugineus Hibiscus Hibiscus ferrugineus \N \N \N \N \N 99980 S.cordifolium Schizoglossum Schizoglossum cordifolium \N \N \N \N \N 99981 O.rosmarina Orobanche Orobanche rosmarina \N \N \N \N \N 99982 \N varietas Iris pallida var. pallida \N \N \N \N \N 99983 E.neei Eschweilera Eschweilera neei \N \N \N \N \N 99984 S.gunnii Senecio Senecio gunnii \N \N \N \N \N 99985 V.sicula Vulpia Vulpia sicula \N \N \N \N \N 99986 A.fragrans Anthonotha Anthonotha fragrans \N \N \N \N \N 99987 \N subspecies Arctostaphylos canescens subsp. canescens \N \N \N \N \N 99988 P.rutifolium Podostemum Podostemum rutifolium \N \N \N \N \N 99989 V.pseudomirabilis Viola Viola pseudomirabilis \N \N \N \N \N 99990 \N genus Lomanthus \N \N \N \N \N 99991 P.vialii Pedicularis Pedicularis vialii \N \N \N \N \N 99992 E.vulcanica Erato Erato vulcanica \N \N \N \N \N 99993 L.tenera Lemna Lemna tenera \N \N \N \N \N 99994 P.sandwithii Paloue Paloue sandwithii \N \N \N \N \N 99995 A.scoparia Aeschynomene Aeschynomene scoparia \N \N \N \N \N 99996 C.concinnoides Carex Carex concinnoides \N \N \N \N \N 99997 F.mediterranea Festuca Festuca mediterranea \N \N \N \N \N 99998 E.raulinii Erysimum Erysimum raulinii \N \N \N \N \N 99999 P.cochinchinense Platostoma Platostoma cochinchinense \N \N \N \N \N 100000 G.hexandra Georgeantha Georgeantha hexandra \N \N \N \N \N 100001 P.truncata Phalaris Phalaris truncata \N \N \N \N \N 100002 A.laciniata Atriplex Atriplex laciniata \N \N \N \N \N 100003 M.torreyi Mentzelia Mentzelia torreyi \N \N \N \N \N 100004 R.sanguineus Rumex Rumex sanguineus \N \N \N \N \N 100005 \N varietas Carex scoparia var. scoparia \N \N \N \N \N 100006 A.collinus Astragalus Astragalus collinus \N \N \N \N \N 100007 \N varietas Guatteria sordida var. lancifolia \N \N \N \N \N 100008 P.fittkaui Pachyphytum Pachyphytum fittkaui \N \N \N \N \N 100009 T.erectus Thysanocarpus Thysanocarpus erectus \N \N \N \N \N 100010 F.robertreadii Fosterella Fosterella robertreadii \N \N \N \N \N 100011 G.inermis Gymnosporia Gymnosporia inermis \N \N \N \N \N 100012 \N varietas Santalum insulare var. mitiaro \N \N \N \N \N 100013 N.raimondii Nicotiana Nicotiana raimondii \N \N \N \N \N 100014 G.505529 Geranium Geranium aff. brevicaule CHR 505529 \N \N \N \N \N 100015 O.anthyllidifolia Osteomeles Osteomeles anthyllidifolia \N \N \N \N \N 100016 P.interruptum Phacelophrynium Phacelophrynium interruptum \N \N \N \N \N 100017 A.1997075 Acer Acer cf. monspessulanum Denk 1997075 \N \N \N \N \N 100018 \N varietas Mimosa xanthocentra var. subsericea \N \N \N \N \N 100019 R.welwitschii Raphionacme Raphionacme welwitschii \N \N \N \N \N 100020 L.australis Leucosyke Leucosyke australis \N \N \N \N \N 100021 R.cymosa Rosa Rosa cymosa \N \N \N \N \N 100022 O.polystachyus Orthrosanthus Orthrosanthus polystachyus \N \N \N \N \N 100023 A.cuneatum Aeonium Aeonium cuneatum \N \N \N \N \N 100024 P.racemosa Passiflora Passiflora racemosa \N \N \N \N \N 100025 R.rushforthii Rhododendron Rhododendron rushforthii \N \N \N \N \N 100026 L.edulis Lotus Lotus edulis \N \N \N \N \N 100027 M.thouarsianum Memecylon Memecylon thouarsianum \N \N \N \N \N 100028 \N varietas Globba leucantha var. bicolor \N \N \N \N \N 100029 G.gracilis Galphimia Galphimia gracilis grano de oro,slender goldshower,spray-of-gold \N \N \N \N 100030 \N genus Phymatocarpus \N \N \N \N \N 100031 D.acicularis Distichia Distichia acicularis \N \N \N \N \N 100032 P.18106 Pycnandra Pycnandra sp. McPherson and Munzinger 18106 \N \N \N \N \N 100033 T.River Typhonium Typhonium sp. Morgan River \N \N \N \N \N 100034 O.laxa Ocotea Ocotea laxa \N \N \N \N \N 100035 T.greeniae Tutcheria Tutcheria greeniae \N \N \N \N \N 100036 V.glandulosa Vasconcellea Vasconcellea glandulosa \N \N \N \N \N 100037 P.stellatum Paspalum Paspalum stellatum \N \N \N \N \N 100038 \N varietas Camellia grijsii var. shensiensis \N \N \N \N \N 100039 M.utilis Muhlenbergia Muhlenbergia utilis \N \N \N \N \N 100040 I.nodosa Isolepis Isolepis nodosa \N \N \N \N \N 100041 S.giganteus Siphocampylus Siphocampylus giganteus \N \N \N \N \N 100042 N.coelestis Nolana Nolana coelestis \N \N \N \N \N 100043 C.grandiflorus Cytisus Cytisus grandiflorus \N \N \N \N \N 100044 C.ramosissima Campanula Campanula ramosissima \N \N \N \N \N 100045 S.integrifolium Silphium Silphium integrifolium \N \N \N \N \N 100046 \N subspecies Triphysaria eriantha subsp. rosea \N \N \N \N \N 100047 \N genus Cladium \N \N \N \N \N 100048 D.oreophilum Delphinium Delphinium oreophilum \N \N \N \N \N 100049 M.violacea Mirabilis Mirabilis violacea \N \N \N \N \N 100050 B.carlinopsis Berkheya Berkheya carlinopsis \N \N \N \N \N 100051 S.obtusa Sanguisorba Sanguisorba obtusa \N \N \N \N \N 100052 A.morifolium Acer Acer morifolium \N \N \N \N \N 100053 E.leptocladon Eriogonum Eriogonum leptocladon \N \N \N \N \N 100054 C.michaelii Croton Croton michaelii \N \N \N \N \N 100055 \N subtribe Raphiinae \N \N \N \N \N 100056 A.marina Avicennia Avicennia marina \N \N \N \N \N 100057 E.cooperi Eriospermum Eriospermum cooperi \N \N \N \N \N 100058 C.tenasserimensis Coelogyne Coelogyne tenasserimensis \N \N \N \N \N 100059 B.longifolia Barclaya Barclaya longifolia \N \N \N \N \N 100060 A.stevenianus Astragalus Astragalus stevenianus \N \N \N \N \N 100061 O.aciphyllum Osteospermum Osteospermum aciphyllum \N \N \N \N \N 100062 \N genus Lepidium \N \N \N \N \N 100063 C.sonomensis Ceanothus Ceanothus sonomensis \N \N \N \N \N 100064 P.divaricatum Protium Protium divaricatum \N \N \N \N \N 100065 W.sarmentosa Willkommia Willkommia sarmentosa \N \N \N \N \N 100066 \N genus Oreocnide \N \N \N \N \N 100067 C.vernus Crocus Crocus vernus \N \N \N \N \N 100068 \N genus Cascadia \N \N \N \N \N 100069 S.idahoense Sisyrinchium Sisyrinchium idahoense \N \N \N \N \N 100070 A.anisophylla Acleisanthes Acleisanthes anisophylla \N \N \N \N \N 100071 A.fasciculata Aphelandra Aphelandra fasciculata \N \N \N \N \N 100072 D.waianapanapaensis Dubautia Dubautia waianapanapaensis \N \N \N \N \N 100073 \N subspecies Lilaeopsis schaffneriana subsp. recurva \N \N \N \N \N 100074 B.integerrima Bravaisia Bravaisia integerrima \N \N \N \N \N 100075 I.mysorensis Indigofera Indigofera mysorensis \N \N \N \N \N 100076 H.filifolium Helictotrichon Helictotrichon filifolium \N \N \N \N \N 100077 G.crispata Gentianella Gentianella crispata \N \N \N \N \N 100078 M.ramiflorus Melicytus Melicytus ramiflorus \N \N \N \N \N 100079 L.pachyphyllus Leucocroton Leucocroton pachyphyllus \N \N \N \N \N 100080 \N genus Esterhazya \N \N \N \N \N 100081 F.panamensis Fischeria Fischeria panamensis \N \N \N \N \N 100082 \N genus Matricaria \N \N \N \N \N 100083 K.platycarpum Kingiodendron Kingiodendron platycarpum \N \N \N \N \N 100084 P.cuneifolia Primula Primula cuneifolia \N \N \N \N \N 100085 L.glandulifera Lysipomia Lysipomia glandulifera \N \N \N \N \N 100086 C.propinqua Cyrtandra Cyrtandra propinqua \N \N \N \N \N 100087 S.capitellata Sabicea Sabicea capitellata \N \N \N \N \N 100088 \N genus Tricholaena \N \N \N \N \N 100089 M.sinensis Miscanthus Miscanthus sinensis eulalia \N \N \N \N 100090 H.odorata Haraella Haraella odorata \N \N \N \N \N 100091 \N subspecies Picris angustifolia subsp. merxmuelleri \N \N \N \N \N 100092 A.setosa Albuca Albuca setosa \N \N \N \N \N 100093 C.scabrifolia Carex Carex scabrifolia \N \N \N \N \N 100094 \N varietas Downingia ornatissima var. eximia \N \N \N \N \N 100095 E.candollei Euryops Euryops candollei \N \N \N \N \N 100096 \N genus Leptomeria \N \N \N \N \N 100097 E.pseudoglobosa Euphorbia Euphorbia pseudoglobosa \N \N \N \N \N 100098 T.megasperma Trianthema Trianthema megasperma \N \N \N \N \N 100099 \N genus Crassocephalum \N \N \N \N \N 100100 H.glauca Hitchenia Hitchenia glauca \N \N \N \N \N 100101 P.poeppigiana Psychotria Psychotria poeppigiana \N \N \N \N \N 100102 \N subspecies Allium taeniopetalum subsp. taeniopetalum \N \N \N \N \N 100103 M.rubra Musa Musa rubra \N \N \N \N \N 100104 L.sabulosa Lotononis Lotononis sabulosa \N \N \N \N \N 100105 \N genus Ostericum \N \N \N \N \N 100106 P.calcaratum Platostoma Platostoma calcaratum \N \N \N \N \N 100107 S.selloi Senecio Senecio selloi \N \N \N \N \N 100108 R.siderophyllum Rhododendron Rhododendron siderophyllum \N \N \N \N \N 100109 C.brachyptera Cousinia Cousinia brachyptera \N \N \N \N \N 100110 T.sp. unclassified Taraxacum Taraxacum sp. \N \N \N \N \N 100111 P.alpina Polystachya Polystachya alpina \N \N \N \N \N 100112 I.micranthum Illicium Illicium micranthum \N \N \N \N \N 100113 S.xylocarpa Sinojackia Sinojackia xylocarpa \N \N \N \N \N 100114 H.basifissa Horsfieldia Horsfieldia basifissa \N \N \N \N \N 100115 P.langsdorffii Pedicularis Pedicularis langsdorffii \N \N \N \N \N 100116 C.odollam Cerbera Cerbera odollam \N \N \N \N \N 100117 C.occidentalis Cephalanthus Cephalanthus occidentalis \N \N \N \N \N 100118 G.crispa Gastrococos Gastrococos crispa \N \N \N \N \N 100119 K.opposita Kunzea Kunzea opposita \N \N \N \N \N 100120 C.reticulata Crabbea Crabbea reticulata \N \N \N \N \N 100121 P.striata Ponera Ponera striata \N \N \N \N \N 100122 A.deserticola Acantholippia Acantholippia deserticola \N \N \N \N \N 100123 C.submersum Ceratophyllum Ceratophyllum submersum \N \N \N \N \N 100124 C.coromandelicum Canthium Canthium coromandelicum \N \N \N \N \N 100125 O.ledifolia Olearia Olearia ledifolia \N \N \N \N \N 100126 \N genus Byrsocarpus \N \N \N \N \N 100127 D.pluvialis Dimorphotheca Dimorphotheca pluvialis \N \N \N \N \N 100128 D.aristata Dactylorhiza Dactylorhiza aristata \N \N \N \N \N 100129 R.thacherianum Ribes Ribes thacherianum \N \N \N \N \N 100130 B.papyrifera Betula Betula papyrifera canoe birch,paper birch \N \N \N \N 100131 C.africana Centaurea Centaurea africana \N \N \N \N \N 100132 M.paludosum Melampodium Melampodium paludosum \N \N \N \N \N 100133 L.gracilis Lithocarpus Lithocarpus gracilis mempening puteh \N \N \N \N 100134 I.alpina Indigofera Indigofera alpina \N \N \N \N \N 100135 O.pumilio Oreobolus Oreobolus pumilio \N \N \N \N \N 100136 \N varietas Globba atrosanguinea var. atrosanguinea \N \N \N \N \N 100137 S.albiflora Schulzia Schulzia albiflora \N \N \N \N \N 100138 E.pedunculatum Exacum Exacum pedunculatum \N \N \N \N \N 100139 S.turczaninowii Salix Salix turczaninowii \N \N \N \N \N 100140 M.miniata Moraea Moraea miniata \N \N \N \N \N 100141 M.peteri Momordica Momordica peteri \N \N \N \N \N 100142 D.brachyphylla Daviesia Daviesia brachyphylla \N \N \N \N \N 100143 L.barbata Loeseneriella Loeseneriella barbata \N \N \N \N \N 100144 P.concinna Ptilagrostis Ptilagrostis concinna \N \N \N \N \N 100145 C.pyrenaica Crepis Crepis pyrenaica \N \N \N \N \N 100146 A.amphicarpon Amphicarpum Amphicarpum amphicarpon \N \N \N \N \N 100147 \N genus Calamovilfa \N \N \N \N \N 100148 \N genus Achyropsis \N \N \N \N \N 100149 B.marmorata Bertolonia Bertolonia marmorata \N \N \N \N \N 100150 S.procurrens Salvia Salvia procurrens \N \N \N \N \N 100151 C.clavipetalum Callaeum Callaeum clavipetalum \N \N \N \N \N 100152 C.pellucida Crassula Crassula pellucida \N \N \N \N \N 101706 \N genus Frantzia \N \N \N \N \N 100153 P.delavayi Physospermopsis Physospermopsis delavayi \N \N \N \N \N 100154 I.cristata Iris Iris cristata \N \N \N \N \N 100155 M.halconensis Metrosideros Metrosideros halconensis \N \N \N \N \N 100156 C.soongorica Calophaca Calophaca soongorica \N \N \N \N \N 100157 T.postarii Trichosanthes Trichosanthes postarii \N \N \N \N \N 100158 D.vesiculosum Diarthron Diarthron vesiculosum \N \N \N \N \N 100159 C.trujillensis Carramboa Carramboa trujillensis \N \N \N \N \N 100160 \N subspecies Conopodium majus subsp. majus \N \N \N \N \N 100161 S.acroglossum Solanum Solanum acroglossum \N \N \N \N \N 100162 E.aristata Evandra Evandra aristata \N \N \N \N \N 100163 S.rotundifolia Smilax Smilax rotundifolia bullbrier,roundleaf greenbrier \N \N \N \N 100164 V.odorata Viola Viola odorata \N \N \N \N \N 100165 C.glaucescens Carex Carex glaucescens \N \N \N \N \N 100166 \N varietas Paphiopedilum javanicum var. virens \N \N \N \N \N 100167 H.madagascarica Hovanella Hovanella madagascarica \N \N \N \N \N 100168 \N genus Paraia \N \N \N \N \N 100169 F.acouci Forsteronia Forsteronia acouci \N \N \N \N \N 100170 P.alpestre Polygonum Polygonum alpestre \N \N \N \N \N 100171 \N tribe Anthospermeae \N \N \N \N \N 100172 D.intricata Drimia Drimia intricata \N \N \N \N \N 100173 C.395aa Clusia Clusia sp. HG 395aa \N \N \N \N \N 100174 M.1274 Minthostachys Minthostachys sp. Hart 1274 \N \N \N \N \N 100175 C.eryngioides Chaetanthera Chaetanthera eryngioides \N \N \N \N \N 100176 \N genus Haenianthus \N \N \N \N \N 100177 \N subgenus Lycopersicon \N \N \N \N \N 100178 R.amakusaense Rhododendron Rhododendron amakusaense \N \N \N \N \N 100179 P.macrophylla Pouteria Pouteria macrophylla \N \N \N \N \N 100180 \N subspecies Centropogon granulosus subsp. granulosus \N \N \N \N \N 100181 \N genus Lathraea \N \N \N \N \N 100182 S.pusilla Spiloxene Spiloxene pusilla \N \N \N \N \N 100183 C.hibiscifolia Caiophora Caiophora hibiscifolia \N \N \N \N \N 100184 H.quercifolia Hermas Hermas quercifolia \N \N \N \N \N 100185 P.renifolia Pyrola Pyrola renifolia \N \N \N \N \N 100186 P.chrysogyne Pseudoclausena Pseudoclausena chrysogyne \N \N \N \N \N 100187 Z.montana Ziziphus Ziziphus montana \N \N \N \N \N 100188 I.anthephoroides Ischaemum Ischaemum anthephoroides \N \N \N \N \N 100189 T.apulum Tordylium Tordylium apulum \N \N \N \N \N 100190 B.vittata Braemia Braemia vittata \N \N \N \N \N 100191 A.grandidieri Adansonia Adansonia grandidieri \N \N \N \N \N 100192 A.tetracaulis Anisacanthus Anisacanthus tetracaulis \N \N \N \N \N 100193 \N varietas Centaurea boissieri var. calvescens \N \N \N \N \N 100194 S.glomerata Schoutenia Schoutenia glomerata \N \N \N \N \N 100195 J.xiphioides Juncus Juncus xiphioides \N \N \N \N \N 100196 K.macrantha Koeleria Koeleria macrantha \N \N \N \N \N 100197 E.serrula Euphorbia Euphorbia serrula \N \N \N \N \N 100198 R.sellowii Rauvolfia Rauvolfia sellowii \N \N \N \N \N 100199 M.adunca Metalasia Metalasia adunca \N \N \N \N \N 100200 G.urnula Gentiana Gentiana urnula \N \N \N \N \N 100201 E.ruahinicus Euchiton Euchiton ruahinicus \N \N \N \N \N 100202 E.trichodon Eleutherococcus Eleutherococcus trichodon \N \N \N \N \N 100203 T.pauciradiatum Trachydium Trachydium pauciradiatum \N \N \N \N \N 100204 D.jenkinsii Dendrobium Dendrobium jenkinsii \N \N \N \N \N 100205 \N genus Condylago \N \N \N \N \N 100206 S.subochreatum Spyridium Spyridium subochreatum \N \N \N \N \N 100207 O.xantha Oxalis Oxalis xantha \N \N \N \N \N 100208 C.tomentosum Centrolobium Centrolobium tomentosum \N \N \N \N \N 100209 K.miniata Kalanchoe Kalanchoe miniata \N \N \N \N \N 100210 C.australasica Curcuma Curcuma australasica \N \N \N \N \N 100211 S.clinopodioides Salvia Salvia clinopodioides \N \N \N \N \N 100212 \N genus Dregeochloa \N \N \N \N \N 100213 S.zenkeriana Strobilanthes Strobilanthes zenkeriana \N \N \N \N \N 100214 P.latifolia Pilea Pilea latifolia \N \N \N \N \N 100215 E.eglandulosa Echinopterys Echinopterys eglandulosa \N \N \N \N \N 100216 \N varietas Achillea millefolium var. alpicola \N \N \N \N \N 100217 \N genus Megacarpaea \N \N \N \N \N 100218 P.debilis Penstemon Penstemon debilis \N \N \N \N \N 100219 M.depauperata Muhlenbergia Muhlenbergia depauperata \N \N \N \N \N 100220 B.permollis Bursera Bursera permollis \N \N \N \N \N 100221 \N genus Pieris \N \N \N \N \N 100222 P.guahamense Piper Piper guahamense \N \N \N \N \N 100223 P.inodorus Philadelphus Philadelphus inodorus \N \N \N \N \N 100224 K.suffruticulosa Klasea Klasea suffruticulosa \N \N \N \N \N 100225 C.sabatius Convolvulus Convolvulus sabatius \N \N \N \N \N 100226 C.amaranthoides Cistanthe Cistanthe amaranthoides \N \N \N \N \N 100227 P.tanneri Primula Primula tanneri \N \N \N \N \N 100228 G.maderensis Genista Genista maderensis \N \N \N \N \N 100229 \N genus Englerodendron \N \N \N \N \N 100230 C.schlechteri Canarium Canarium schlechteri \N \N \N \N \N 100231 S.cotulifer Spodiopogon Spodiopogon cotulifer \N \N \N \N \N 100232 I.falcata Isidrogalvia Isidrogalvia falcata \N \N \N \N \N 100233 J.arnautorum Jacobaea Jacobaea arnautorum \N \N \N \N \N 100234 M.atlantica Mimosa Mimosa atlantica \N \N \N \N \N 100235 J.tayabambae Jaltomata Jaltomata tayabambae \N \N \N \N \N 100236 L.sulphureum Lilium Lilium sulphureum \N \N \N \N \N 100237 X.pilosa Xanthosia Xanthosia pilosa \N \N \N \N \N 100238 L.arbuthnotiae Lachenalia Lachenalia arbuthnotiae \N \N \N \N \N 100239 E.sprucei Endlicheria Endlicheria sprucei \N \N \N \N \N 100240 M.rugosa Mnesithea Mnesithea rugosa wrinkled jointtail grass \N \N \N \N 100241 B.demissa Boechera Boechera demissa nodding rockcress \N \N \N \N 100242 A.moschata Achillea Achillea moschata \N \N \N \N \N 100243 T.buruensis Tarenna Tarenna buruensis \N \N \N \N \N 100244 C.tomentosa Capparis Capparis tomentosa \N \N \N \N \N 100245 E.coolabah Eucalyptus Eucalyptus coolabah coolibah \N \N \N \N 100246 R.alexeterius Rubus Rubus alexeterius \N \N \N \N \N 100247 N.jacetanus Narcissus Narcissus jacetanus \N \N \N \N \N 100248 C.eurynema Cayratia Cayratia eurynema \N \N \N \N \N 100249 \N tribe Abatieae \N \N \N \N \N 101707 \N genus Onobrychis \N \N \N \N \N 100250 G.corvensis Gaultheria Gaultheria corvensis \N \N \N \N \N 100251 S.grandidentata Stachys Stachys grandidentata \N \N \N \N \N 100252 S.cheesmaniae Lycopersicon Solanum cheesmaniae \N \N \N \N \N 100253 L.mauritiana Ludia Ludia mauritiana \N \N \N \N \N 100254 E.abyssinica Euphorbia Euphorbia abyssinica \N \N \N \N \N 100255 C.asperifolia Cornus Cornus asperifolia \N \N \N \N \N 100256 B.pirottae Boswellia Boswellia pirottae \N \N \N \N \N 100257 S.falconeri Saussurea Saussurea falconeri \N \N \N \N \N 100258 \N genus Strombocactus \N \N \N \N \N 100259 K.corymbosa Knoxia Knoxia corymbosa \N \N \N \N \N 100260 H.todsenii Hedeoma Hedeoma todsenii \N \N \N \N \N 100261 N.stephensiana Neoalsomitra Neoalsomitra stephensiana \N \N \N \N \N 100262 H.hookeri Hymenidium Hymenidium hookeri \N \N \N \N \N 100263 S.seabrana Stylosanthes Stylosanthes seabrana \N \N \N \N \N 100264 E.aurantiacus Elleanthus Elleanthus aurantiacus \N \N \N \N \N 100265 \N genus Hamelia \N \N \N \N \N 100266 P.calcicola Polyxena Polyxena calcicola \N \N \N \N \N 100267 P.lucidus Peridiscus Peridiscus lucidus \N \N \N \N \N 100268 M.simplicifolia Meliosma Meliosma simplicifolia \N \N \N \N \N 100269 E.SH-2010 Eragrostis Eragrostis sp. SH-2010 \N \N \N \N \N 100270 \N varietas Rotheca myricoides var. kilimandscharense \N \N \N \N \N 100271 A.norvegica Arenaria Arenaria norvegica \N \N \N \N \N 100272 H.arachnoidea Hypochaeris Hypochaeris arachnoidea \N \N \N \N \N 100273 T.coinaensis Tillandsia Tillandsia coinaensis \N \N \N \N \N 100274 F.linearis Flaveria Flaveria linearis \N \N \N \N \N 100275 E.omariana Euphorbia Euphorbia omariana \N \N \N \N \N 100276 \N tribe Neurolaeneae \N \N \N \N \N 100277 \N subspecies Disa tenella subsp. tenella \N \N \N \N \N 100278 Z.brachypterum Zygophyllum Zygophyllum brachypterum \N \N \N \N \N 100279 D.camptocentrum Dendrobium Dendrobium camptocentrum \N \N \N \N \N 100280 R.vernicosum Rhododendron Rhododendron vernicosum \N \N \N \N \N 100281 \N subspecies Acacia nilotica subsp. kraussiana \N \N \N \N \N 100282 A.sylvestris Anthriscus Anthriscus sylvestris \N \N \N \N \N 100283 D.umbellatus Dendropanax Dendropanax umbellatus \N \N \N \N \N 100284 S.pulvinaria Saxifraga Saxifraga pulvinaria \N \N \N \N \N 100285 A.aretioides Azorella Azorella aretioides \N \N \N \N \N 100286 D.grandis Draba Draba grandis \N \N \N \N \N 100287 S.pflanzii Senecio Senecio pflanzii \N \N \N \N \N 100288 L.perfoliatum Lepidium Lepidium perfoliatum \N \N \N \N \N 100289 L.autumnalis Laelia Laelia autumnalis \N \N \N \N \N 100290 \N genus Rhoiptelea \N \N \N \N \N 100291 M.decorticans Myrcia Myrcia decorticans \N \N \N \N \N 100292 M.angustifolia Macaranga Macaranga angustifolia \N \N \N \N \N 100293 S.viscosa Salvia Salvia viscosa \N \N \N \N \N 100294 E.Bluff' Elaeocarpus Elaeocarpus sp. 'Mosmann Bluff' \N \N \N \N \N 100295 G.graminifolia Guzmania Guzmania graminifolia \N \N \N \N \N 100296 P.lobbii Passiflora Passiflora lobbii \N \N \N \N \N 100297 \N genus Gymnocladus \N \N \N \N \N 100298 \N genus Secale \N \N \N \N \N 100299 C.bulbosa Corallorhiza Corallorhiza bulbosa \N \N \N \N \N 100300 E.cinerascens Euphorbia Euphorbia cinerascens \N \N \N \N \N 100301 S.ovata Schizomeria Schizomeria ovata \N \N \N \N \N 100302 \N genus Dicraeopetalum \N \N \N \N \N 100303 C.prunifera Copernicia Copernicia prunifera \N \N \N \N \N 100304 \N subspecies Lilaeopsis schaffneriana subsp. schaffneriana \N \N \N \N \N 100305 B.ochracea Bletilla Bletilla ochracea \N \N \N \N \N 100306 M.tweedieana Mimosa Mimosa tweedieana \N \N \N \N \N 100307 \N subspecies Dubautia knudsenii subsp. nagatae \N \N \N \N \N 100308 \N genus Piptostigma \N \N \N \N \N 100309 T.cultivar Torenia Torenia hybrid cultivar \N \N \N \N \N 100310 C.parishii Chiloschista Chiloschista parishii \N \N \N \N \N 100311 B.sericea Balsamorhiza Balsamorhiza sericea \N \N \N \N \N 100312 C.rariflora Carex Carex rariflora \N \N \N \N \N 100313 P.neumaniana Potentilla Potentilla neumaniana \N \N \N \N \N 100314 \N genus Reichardia \N \N \N \N \N 100315 \N genus Silene campions \N \N \N \N 100316 H.stragulum Hypericum Hypericum stragulum \N \N \N \N \N 100317 C.coryi Croton Croton coryi \N \N \N \N \N 100318 S.turkestana Smirnowia Smirnowia turkestana \N \N \N \N \N 100319 \N subspecies Genista dorycnifolia subsp. dorycnifolia \N \N \N \N \N 100320 L.odoratus Loranthus Loranthus odoratus \N \N \N \N \N 100321 C.venezuelensis Cymophora Cymophora venezuelensis \N \N \N \N \N 100322 H.floridum Heliotropium Heliotropium floridum \N \N \N \N \N 100323 \N genus Trichocline \N \N \N \N \N 100324 A.ubsicola Allium Allium ubsicola \N \N \N \N \N 100325 M.humilis Mentzelia Mentzelia humilis \N \N \N \N \N 100326 P.maculosa Persicaria Persicaria maculosa lady's-thumb \N \N \N \N 100327 T.glutinosa Trieenea Trieenea glutinosa \N \N \N \N \N 100328 P.violacea Pulsatilla Pulsatilla violacea \N \N \N \N \N 100329 \N subspecies Eucalyptus ebbanoensis subsp. photina \N \N \N \N \N 100330 L.rigida Lotononis Lotononis rigida \N \N \N \N \N 100331 C.faberi Clethra Clethra faberi \N \N \N \N \N 100332 J.horrida Jacksonia Jacksonia horrida \N \N \N \N \N 100333 \N subspecies Jonesiopsis pendens subsp. talbotii \N \N \N \N \N 100334 M.chunii Musa Musa chunii \N \N \N \N \N 100335 S.radiata Staavia Staavia radiata \N \N \N \N \N 100336 A.rhizanthus Astragalus Astragalus rhizanthus \N \N \N \N \N 100337 S.malacodendron Stewartia Stewartia malacodendron silky-camellia \N \N \N \N 100338 M.curvispinus Melocactus Melocactus curvispinus \N \N \N \N \N 100339 R.pycnantha Reevesia Reevesia pycnantha \N \N \N \N \N 100340 R.crassicaulis Rhaphidophora Rhaphidophora crassicaulis \N \N \N \N \N 100341 O.rotundifolia Ononis Ononis rotundifolia \N \N \N \N \N 100342 X.heudelotianum Xysmalobium Xysmalobium heudelotianum \N \N \N \N \N 100343 \N varietas Saccharum brevibarbe var. contortum \N \N \N \N \N 100344 P.peirsonii Pseudobahia Pseudobahia peirsonii \N \N \N \N \N 100345 \N genus Fendlera \N \N \N \N \N 100346 \N genus Polemanniopsis \N \N \N \N \N 100347 A.karroo Acacia Acacia karroo \N \N \N \N \N 100348 J.multifida Jatropha Jatropha multifida \N \N \N \N \N 100349 N.spathulata Nierembergia Nierembergia spathulata \N \N \N \N \N 100350 C.gracilis Cucumis Cucumis gracilis \N \N \N \N \N 100351 \N genus Ennealophus \N \N \N \N \N 100352 C.azoricum Chaerophyllum Chaerophyllum azoricum \N \N \N \N \N 100353 M.ferruginea Menziesia Menziesia ferruginea mock azalea \N \N \N \N 100354 N.minuta Nymphaea Nymphaea minuta \N \N \N \N \N 100355 H.pumila Haworthia Haworthia pumila \N \N \N \N \N 100356 N.thiollierei Neisosperma Neisosperma thiollierei \N \N \N \N \N 100357 \N genus Megacorax \N \N \N \N \N 100358 \N subtribe Brachyglottidineae \N \N \N \N \N 100359 I.glandulosa Indigofera Indigofera glandulosa \N \N \N \N \N 100360 L.aphyllum Leptosema Leptosema aphyllum \N \N \N \N \N 100361 \N genus Schizopepon \N \N \N \N \N 100362 P.pappiferum Pappophorum Pappophorum pappiferum \N \N \N \N \N 100363 C.montana Cheilosa Cheilosa montana \N \N \N \N \N 100364 P.nudicaule Papaver Papaver nudicaule Arctic poppy,Icelandic poppy \N \N \N \N 100365 O.schomburgkiana Ocotea Ocotea schomburgkiana \N \N \N \N \N 100366 C.ellipticum Cynanchum Cynanchum ellipticum \N \N \N \N \N 100367 U.flaccida Utricularia Utricularia flaccida \N \N \N \N \N 100368 G.recurvus Gladiolus Gladiolus recurvus \N \N \N \N \N 100369 N.aquatica Nyssa Nyssa aquatica \N \N \N \N \N 100370 A.brevipetiolata Arachis Arachis brevipetiolata \N \N \N \N \N 100371 S.1608' Schismatoclada Schismatoclada sp. 'Phillipson 1608' \N \N \N \N \N 100372 \N subspecies Vicia venosa subsp. venosa \N \N \N \N \N 100373 F.longipedunculata Ferula Ferula longipedunculata \N \N \N \N \N 100374 \N varietas Metrosideros waialealae var. waialealae \N \N \N \N \N 100375 \N genus Plagiocheilus \N \N \N \N \N 100376 M.echinocarpa Macaranga Macaranga echinocarpa \N \N \N \N \N 100377 B.hondurensis Bactris Bactris hondurensis \N \N \N \N \N 100378 \N genus Lemuropisum \N \N \N \N \N 100379 B.involutum Bulbophyllum Bulbophyllum involutum \N \N \N \N \N 100380 A.kaempferi Aristolochia Aristolochia kaempferi \N \N \N \N \N 100381 C.erinacea Cousinia Cousinia erinacea \N \N \N \N \N 100382 \N subspecies Sisyrinchium palmifolium subsp. palmifolium \N \N \N \N \N 100383 K.cespitosa Krigia Krigia cespitosa \N \N \N \N \N 100384 C.ecuadoranum Cremosperma Cremosperma ecuadoranum \N \N \N \N \N 100385 T.calophylla Tephrosia Tephrosia calophylla \N \N \N \N \N 100386 L.chrysantha Lonicera Lonicera chrysantha \N \N \N \N \N 100387 M.aequiloba Maxillaria Maxillaria aequiloba \N \N \N \N \N 100388 \N tribe Morindeae \N \N \N \N \N 100389 \N genus Carallia \N \N \N \N \N 100390 P.irsoniana Pterostylis Pterostylis irsoniana \N \N \N \N \N 100391 C.chondrilloides Crepis Crepis chondrilloides \N \N \N \N \N 100392 H.5/5/15 Haplophyllum Haplophyllum sp. Zeltner 2b 5/5/15 \N \N \N \N \N 100393 C.fragariifolia Cardamine Cardamine fragariifolia \N \N \N \N \N 100394 \N subspecies Crocus biflorus subsp. adamii \N \N \N \N \N 100395 \N subspecies Lilium maculatum subsp. maculatum \N \N \N \N \N 100396 P.congesta Polyalthia Polyalthia congesta \N \N \N \N \N 100397 \N genus Pentatrichia \N \N \N \N \N 100398 M.valerioi Macrocarpaea Macrocarpaea valerioi \N \N \N \N \N 100399 H.alata Hyptis Hyptis alata \N \N \N \N \N 100400 V.lima Varronia Varronia lima \N \N \N \N \N 100401 L.gnomus Lankesterella Lankesterella gnomus \N \N \N \N \N 100402 \N genus Gagnepainia \N \N \N \N \N 100403 S.uliginosa Salvia Salvia uliginosa \N \N \N \N \N 100404 I.veris Isidorea Isidorea veris \N \N \N \N \N 100405 E.contorta Euphorbia Euphorbia contorta \N \N \N \N \N 100406 P.manglesii Ptilotus Ptilotus manglesii \N \N \N \N \N 100407 D.unispicata Danthonia Danthonia unispicata \N \N \N \N \N 100408 S.baicalensis Saussurea Saussurea baicalensis \N \N \N \N \N 100409 S.sogerensis Sloanea Sloanea sogerensis \N \N \N \N \N 100410 S.mollis Suaeda Suaeda mollis \N \N \N \N \N 100411 C.melitensis Centaurea Centaurea melitensis \N \N \N \N \N 100412 I.paucilobus Iranecio Iranecio paucilobus \N \N \N \N \N 100413 J.repens Juncus Juncus repens \N \N \N \N \N 100414 D.linearifolia Draba Draba linearifolia \N \N \N \N \N 100415 N.binaloudensis Nepeta Nepeta binaloudensis \N \N \N \N \N 100416 C.148 Cerdia Cerdia sp. Escamilla et al. 148 \N \N \N \N \N 100417 M.kerere Mansoa Mansoa kerere \N \N \N \N \N 100418 N.humile Nototrichium Nototrichium humile \N \N \N \N \N 100419 S.berteroi Symplocos Symplocos berteroi \N \N \N \N \N 100420 L.libyca Lobularia Lobularia libyca \N \N \N \N \N 100421 \N varietas Gymnocalycium baldianum var. albiflorum \N \N \N \N \N 100422 R.aristata Rhynchospora Rhynchospora aristata \N \N \N \N \N 100423 C.deflexum Corycium Corycium deflexum \N \N \N \N \N 100424 P.bifolia Parnassia Parnassia bifolia \N \N \N \N \N 100425 S.neglecta Sarcoglottis Sarcoglottis neglecta \N \N \N \N \N 100426 M.2648 Maxillaria Maxillaria cf. umbratilis Whitten 2648 \N \N \N \N \N 100427 C.tinireana Chapmannia Chapmannia tinireana \N \N \N \N \N 100428 A.flavescens Alternanthera Alternanthera flavescens yellow joyweed \N \N \N \N 100429 T.fadyenii Tetrazygia Tetrazygia fadyenii \N \N \N \N \N 100430 \N varietas Ficus deltoidea var. trengganuensis \N \N \N \N \N 100431 L.2331 Lonicera Lonicera sp. Oxelman 2331 \N \N \N \N \N 100432 P.maideniana Pritchardia Pritchardia maideniana \N \N \N \N \N 100433 X.cordifolia Xiphotheca Xiphotheca cordifolia \N \N \N \N \N 100434 G.obtusum Galium Galium obtusum \N \N \N \N \N 100435 Y.decipiens Yucca Yucca decipiens \N \N \N \N \N 100436 S.longifolia Saxifraga Saxifraga longifolia \N \N \N \N \N 100437 P.lindsayi Poa Poa lindsayi \N \N \N \N \N 100438 T.australe Tripsacum Tripsacum australe \N \N \N \N \N 100439 M.hildebrandtii Melocarpum Melocarpum hildebrandtii \N \N \N \N \N 100440 C.columbiana Cortaderia Cortaderia columbiana \N \N \N \N \N 100441 \N tribe Sicyoeae \N \N \N \N \N 100442 T.macrocarpa Tabernaemontana Tabernaemontana macrocarpa \N \N \N \N \N 100443 D.salicifolia Dinoseris Dinoseris salicifolia \N \N \N \N \N 100444 E.cretica Ebenus Ebenus cretica \N \N \N \N \N 100445 A.6694 Allium Allium sp. GAT 6694 \N \N \N \N \N 100446 D.barteri Dactylopetalum Dactylopetalum barteri \N \N \N \N \N 100447 S.lineolata Schoenoplectiella Schoenoplectiella lineolata \N \N \N \N \N 100448 B.uncinella Baeckea Baeckea uncinella \N \N \N \N \N 100449 G.pinnatifida Gaillardia Gaillardia pinnatifida \N \N \N \N \N 100450 M.selloana Mnesithea Mnesithea selloana \N \N \N \N \N 100451 C.heterostachya Carex Carex heterostachya \N \N \N \N \N 100452 G.argyrea Glycine Glycine argyrea \N \N \N \N \N 100453 \N subspecies Digitalis lanata subsp. lanata \N \N \N \N \N 100454 L.inconspicuus Leochilus Leochilus inconspicuus \N \N \N \N \N 100455 A.onycis Anigozanthos Anigozanthos onycis \N \N \N \N \N 100456 C.longruiensis Camellia Camellia longruiensis \N \N \N \N \N 100457 \N no rank Arctotideae incertae sedis \N \N \N \N \N 100458 C.jamesii Carex Carex jamesii \N \N \N \N \N 100459 G.pavonia Gladiolus Gladiolus pavonia \N \N \N \N \N 100460 M.barklyi Mesembryanthemum Mesembryanthemum barklyi \N \N \N \N \N 100461 P.602 Plagioscyphus Plagioscyphus sp. Pell 602 \N \N \N \N \N 100462 Z.purpureum Zingiber Zingiber purpureum \N \N \N \N \N 100463 F.denticulata Fallopia Fallopia denticulata \N \N \N \N \N 100464 C.ptosimopappa Centaurea Centaurea ptosimopappa \N \N \N \N \N 100465 \N genus Poliomintha \N \N \N \N \N 100466 \N varietas Actinidia fulvicoma var. fulvicoma \N \N \N \N \N 100467 B.madagascariensis Barbeuia Barbeuia madagascariensis \N \N \N \N \N 100468 \N varietas Lilium leichtlinii var. maximowiczii \N \N \N \N \N 100469 T.tk52-1 unclassified Taraxacum Taraxacum (sect. Celtica) sp. tk52-1 \N \N \N \N \N 100470 \N varietas Vicia johannis var. johannis \N \N \N \N \N 100471 S.candollei Senecio Senecio candollei \N \N \N \N \N 100472 Z.longipedunculatum Zingiber Zingiber longipedunculatum \N \N \N \N \N 100473 C.macrochlamys Campanula Campanula macrochlamys \N \N \N \N \N 100474 S.glauca Septulina Septulina glauca \N \N \N \N \N 100475 M.clarkeana Momordica Momordica clarkeana \N \N \N \N \N 100476 P.cerradensis Passiflora Passiflora cerradensis \N \N \N \N \N 100477 M.pentandra Moehringia Moehringia pentandra \N \N \N \N \N 100478 A.yecorense Arceuthobium Arceuthobium yecorense \N \N \N \N \N 100479 C.richii Cyrtandra Cyrtandra richii \N \N \N \N \N 100480 \N subspecies Tidestromia lanuginosa subsp. lanuginosa \N \N \N \N \N 100481 P.longiscapa Polystachya Polystachya longiscapa \N \N \N \N \N 100482 \N genus Agrostocrinum \N \N \N \N \N 100483 P.oliverioides Pimpinella Pimpinella oliverioides \N \N \N \N \N 100484 O.brevilabia Oliveriana Oliveriana brevilabia \N \N \N \N \N 100485 V.grandifolia Valeriana Valeriana grandifolia \N \N \N \N \N 100486 E.nervosum Echium Echium nervosum \N \N \N \N \N 100487 \N subspecies Leucadendron elimense subsp. elimense \N \N \N \N \N 100488 S.colensoi Schizeilema Schizeilema colensoi \N \N \N \N \N 100489 G.albiflora Globba Globba albiflora \N \N \N \N \N 100490 M.ophthalmocentra Mimosa Mimosa ophthalmocentra \N \N \N \N \N 100491 I.tenuisecta Ibervillea Ibervillea tenuisecta \N \N \N \N \N 100492 C.erinus Campanula Campanula erinus \N \N \N \N \N 100493 P.gardnerianus Phyllanthus Phyllanthus gardnerianus \N \N \N \N \N 100494 P.fontellae Philibertia Philibertia fontellae \N \N \N \N \N 100495 S.verrucosum Solanum Solanum verrucosum \N \N \N \N \N 100496 M.salicifolia Monnina Monnina salicifolia \N \N \N \N \N 100497 C.purpureus Cenchrus Cenchrus purpureus elephant grass \N \N \N \N 100498 I.oblongifolia Indigofera Indigofera oblongifolia \N \N \N \N \N 100499 I.parasitica Impatiens Impatiens parasitica \N \N \N \N \N 100500 M.gracilenta Moraea Moraea gracilenta \N \N \N \N \N 100501 C.55 Chondropetalum Chondropetalum sp. Balele 55 \N \N \N \N \N 100502 L.cokeri Liatris Liatris cokeri \N \N \N \N \N 100503 S.panurensis Satyria Satyria panurensis \N \N \N \N \N 100504 D.felix Drosera Drosera felix \N \N \N \N \N 100505 \N varietas Peucedanum terebinthaceum var. deltoideum \N \N \N \N \N 100506 I.cristata Inversodicraea Inversodicraea cristata \N \N \N \N \N 100507 P.crassifolius Pseudopanax Pseudopanax crassifolius \N \N \N \N \N 100508 M.honanensis Malus Malus honanensis \N \N \N \N \N 100509 S.efoliatus Schoenus Schoenus efoliatus \N \N \N \N \N 100510 S.patens Senecio Senecio patens \N \N \N \N \N 100511 L.quinquefida Luffa Luffa quinquefida \N \N \N \N \N 100512 G.carpetana Genista Genista carpetana \N \N \N \N \N 100513 H.transcaucasicum Heracleum Heracleum transcaucasicum \N \N \N \N \N 100514 C.horichiana Coryanthes Coryanthes horichiana \N \N \N \N \N 100515 R.spathulata Robiquetia Robiquetia spathulata \N \N \N \N \N 100516 A.kerkukiensis Astragalus Astragalus kerkukiensis \N \N \N \N \N 100517 B.axillaris Bembicia Bembicia axillaris \N \N \N \N \N 100518 M.leptoclada Myrcia Myrcia leptoclada \N \N \N \N \N 100519 A.forbesii Albizia Albizia forbesii \N \N \N \N \N 100520 V.hemsleyana Viguiera Viguiera hemsleyana \N \N \N \N \N 100521 G.caespitosa Gazania Gazania caespitosa \N \N \N \N \N 100522 T.radiata Thrinax Thrinax radiata Florida thatch,Jamaican thatch \N \N \N \N 100523 P.laxa Pterostylis Pterostylis laxa \N \N \N \N \N 100524 S.viride Smicrostigma Smicrostigma viride \N \N \N \N \N 100525 S.K79 Stipa Stipa sp. Hodkinson K79 \N \N \N \N \N 100526 C.cordiformis Carya Carya cordiformis bitternut,pignut,swamp hickory \N \N \N \N 100527 C.Cnj-6 Calamagrostis Calamagrostis sp. Cnj-6 \N \N \N \N \N 100528 L.multiflora Leptostylis Leptostylis multiflora \N \N \N \N \N 100529 A.alfacarensis Arenaria Arenaria alfacarensis \N \N \N \N \N 100530 E.trichadenia Euphorbia Euphorbia trichadenia \N \N \N \N \N 100531 C.bracteatus Croton Croton bracteatus \N \N \N \N \N 100532 O.calcicola Ormocarpopsis Ormocarpopsis calcicola \N \N \N \N \N 100533 A.sellowii Anemone Anemone sellowii \N \N \N \N \N 100534 R.luteiflora Rulingia Rulingia luteiflora \N \N \N \N \N 100535 H.empetrifolium Hypericum Hypericum empetrifolium \N \N \N \N \N 100536 C.barbatum Cyclophyllum Cyclophyllum barbatum \N \N \N \N \N 100537 P.thyrsiflorus Phlogacanthus Phlogacanthus thyrsiflorus \N \N \N \N \N 101903 G.exilis Gagea Gagea exilis \N \N \N \N \N 100538 P.binata Paradrymonia Paradrymonia binata \N \N \N \N \N 100539 E.aculeatum Echium Echium aculeatum \N \N \N \N \N 100540 L.cernuum Lilium Lilium cernuum \N \N \N \N \N 100541 C.panamense Cremastosperma Cremastosperma panamense \N \N \N \N \N 100542 \N varietas Paphiopedilum malipoense var. hiepii \N \N \N \N \N 100543 L.spinescens Lebeckia Lebeckia spinescens \N \N \N \N \N 100544 M.clevelandii Mimulus Mimulus clevelandii \N \N \N \N \N 100545 D.chartaceus Dipterocarpus Dipterocarpus chartaceus \N \N \N \N \N 100546 \N genus Marlierea \N \N \N \N \N 100547 \N no rank Cattleya labiata 'Ceara' \N \N \N \N \N 100548 \N varietas Isolepis fluitans var. fluitans \N \N \N \N \N 100549 P.ursinum Pogonotium Pogonotium ursinum \N \N \N \N \N 100550 A.filiforme Antenoron Antenoron filiforme \N \N \N \N \N 100551 A.collina Anacamptis Anacamptis collina \N \N \N \N \N 100552 C.obtusifolia Cecarria Cecarria obtusifolia \N \N \N \N \N 100553 A.margaritacea Anaphalis Anaphalis margaritacea \N \N \N \N \N 100554 S.vogelii Sclerochiton Sclerochiton vogelii \N \N \N \N \N 100555 H.apenninum Helianthemum Helianthemum apenninum \N \N \N \N \N 100556 \N genus Atkinsonia \N \N \N \N \N 100557 A.parasitica Agalmyla Agalmyla parasitica \N \N \N \N \N 100558 \N subspecies Eucalyptus globulus subsp. maidenii \N \N \N \N \N 100559 O.clementis Oreonana Oreonana clementis \N \N \N \N \N 100560 R.menziesii Ribes Ribes menziesii canyon gooseberry \N \N \N \N 100561 M.Ten23 Micromeria Micromeria cf. varia Heubl Ten23 \N \N \N \N \N 100562 \N subspecies Crassula schimperi subsp. schimperi \N \N \N \N \N 100563 T.mexicanum Tetranema Tetranema mexicanum \N \N \N \N \N 100564 M.pseudoneglecta Maxillaria Maxillaria pseudoneglecta \N \N \N \N \N 100565 E.bolanderi Eleocharis Eleocharis bolanderi \N \N \N \N \N 100566 C.munda Crataegus Crataegus munda \N \N \N \N \N 100567 H.angustifolia Holboellia Holboellia angustifolia \N \N \N \N \N 100568 E.poeppigii Euphorbia Euphorbia poeppigii \N \N \N \N \N 100569 D.tenuis Disa Disa tenuis \N \N \N \N \N 100570 S.trijuga Salvia Salvia trijuga \N \N \N \N \N 100571 E.gentianoides Echium Echium gentianoides \N \N \N \N \N 100572 M.lygistum Manettia Manettia lygistum \N \N \N \N \N 100573 \N subspecies Wahlenbergia albomarginata subsp. laxa \N \N \N \N \N 100574 P.lepidocarpus Phyllanthus Phyllanthus lepidocarpus \N \N \N \N \N 100575 S.mexicana Solenandra Solenandra mexicana \N \N \N \N \N 100576 L.angelicifolium Ligusticum Ligusticum angelicifolium \N \N \N \N \N 100577 P.spicata Polycarpaea Polycarpaea spicata \N \N \N \N \N 100578 \N genus Tripterospermum \N \N \N \N \N 100579 T.bracteata Trichosanthes Trichosanthes bracteata \N \N \N \N \N 100580 M.erythrophylla Montia Montia erythrophylla \N \N \N \N \N 100581 E.ramulosa Euphorbia Euphorbia ramulosa \N \N \N \N \N 100582 \N genus Platylepis \N \N \N \N \N 100583 C.theodori-friesii Cliffortia Cliffortia ruscifolia x Cliffortia theodori-friesii \N \N \N \N \N 100584 A.obtusa Acleisanthes Acleisanthes obtusa \N \N \N \N \N 100585 \N varietas Cynodon dactylon var. aridus giant Bermuda grass \N \N \N \N 100586 E.ligulata Eucalyptus Eucalyptus ligulata \N \N \N \N \N 100587 P.cymosa Polygala Polygala cymosa \N \N \N \N \N 100588 S.sonchifolius Smallanthus Smallanthus sonchifolius \N \N \N \N \N 100589 P.scolymocephala Protea Protea scolymocephala scoly \N \N \N \N 100590 \N varietas Potentilla curviseta var. colletiana \N \N \N \N \N 100591 C.carlinoides Carduus Carduus carlinoides \N \N \N \N \N 100592 X.difformis Xyris Xyris difformis \N \N \N \N \N 100593 S.'Kwamtili.4' Saintpaulia Saintpaulia cf. nitida 'Kwamtili.4' \N \N \N \N \N 100594 C.viscidula Crepis Crepis viscidula \N \N \N \N \N 100595 V.sp. Vitis Vitis sp. \N \N \N \N \N 100596 G.dixonii Grammosolen Grammosolen dixonii \N \N \N \N \N 100597 M.2645 Maxillaria Maxillaria cf. anatomorum Whitten 2645 \N \N \N \N \N 100598 C.neglecta Commiphora Commiphora neglecta \N \N \N \N \N 100599 G.hilariana Guatteria Guatteria hilariana \N \N \N \N \N 100600 M.capillacea Monostylis Monostylis capillacea \N \N \N \N \N 100601 C.macrophylla Cardamine Cardamine macrophylla \N \N \N \N \N 100602 C.oblongifolius Cleistanthus Cleistanthus oblongifolius \N \N \N \N \N 100603 A.62 Agropyron Agropyron sp. Hodkinson 62 \N \N \N \N \N 100604 B.calthifolia Beesia Beesia calthifolia \N \N \N \N \N 100605 P.schizantha Phaedranassa Phaedranassa schizantha \N \N \N \N \N 100606 A.obtusifolia Antirhea Antirhea obtusifolia \N \N \N \N \N 100607 T.loretensis Tachia Tachia loretensis \N \N \N \N \N 100608 D.gorgadensis Diplotaxis Diplotaxis gorgadensis \N \N \N \N \N 100609 C.neocaledonicus Corybas Corybas neocaledonicus \N \N \N \N \N 100610 D.prasinum Dendrobium Dendrobium prasinum \N \N \N \N \N 100611 E.oregonum Erythronium Erythronium oregonum giant white fawnlily \N \N \N \N 100612 A.erba-rotta Achillea Achillea erba-rotta \N \N \N \N \N 100613 \N varietas Polygonum aviculare var. fusco-ochreatum \N \N \N \N \N 100614 S.tetrathecum Solanum Solanum tetrathecum \N \N \N \N \N 100615 C.tagal Ceriops Ceriops tagal \N \N \N \N \N 100616 P.altebilobata Passiflora Passiflora altebilobata \N \N \N \N \N 100617 D.alata Dillenia Dillenia alata \N \N \N \N \N 100618 C.pseudozanguebariae Coffea Coffea pseudozanguebariae \N \N \N \N \N 100619 \N subspecies Hieracium laevigatum subsp. magistri \N \N \N \N \N 100620 \N genus Thyrsodium \N \N \N \N \N 100621 B.incana Balsamorhiza Balsamorhiza incana \N \N \N \N \N 100622 \N tribe Colletieae \N \N \N \N \N 100623 \N varietas Jasione montana var. bracteosa \N \N \N \N \N 100624 \N subspecies Michelia wilsonii subsp. szechuanica \N \N \N \N \N 100625 O.caerulea Otiophora Otiophora caerulea \N \N \N \N \N 100626 P.cordata Protea Protea cordata \N \N \N \N \N 100627 H.tuberosus Helianthus Helianthus tuberosus Jerusalem artichoke \N \N \N \N 100628 \N genus Xanthisma \N \N \N \N \N 100629 O.confertifolia Ourisia Ourisia confertifolia \N \N \N \N \N 100630 \N genus Christiana \N \N \N \N \N 100631 M.panduratum Macroptilium Macroptilium panduratum \N \N \N \N \N 100632 R.viridiflora Rustia Rustia viridiflora \N \N \N \N \N 102195 \N genus Mikania \N \N \N \N \N 100633 E.minuta Euphorbia Euphorbia minuta \N \N \N \N \N 100634 P.radicans Pellionia Pellionia radicans \N \N \N \N \N 100635 L.esterhuysenae Linum Linum esterhuysenae \N \N \N \N \N 100636 K.10067 Kunzea Kunzea sp. C Rodd 10067 \N \N \N \N \N 100637 \N subspecies Lotononis densa subsp. leucoclada \N \N \N \N \N 100638 A.huicungo Astrocaryum Astrocaryum huicungo \N \N \N \N \N 100639 B.00156 Begonia Begonia sp. Mendum et al. 00156 \N \N \N \N \N 100640 L.2152a Lucinaea Lucinaea sp. 2 Ridsdale 2152a \N \N \N \N \N 100641 A.hookeriana Arenga Arenga hookeriana \N \N \N \N \N 100642 I.loxothyrsus Isodon Isodon loxothyrsus \N \N \N \N \N 100643 U.ceratocarpa Uldinia Uldinia ceratocarpa \N \N \N \N \N 100644 A.rivularis Anemone Anemone rivularis \N \N \N \N \N 100645 A.choulettiana Armeria Armeria choulettiana \N \N \N \N \N 100646 S.trigyna Sinochasea Sinochasea trigyna \N \N \N \N \N 100647 O.brachyclada Oryzopsis Oryzopsis brachyclada \N \N \N \N \N 100648 F.dipetala Fraxinus Fraxinus dipetala \N \N \N \N \N 100649 E.ramosum Epidendrum Epidendrum ramosum \N \N \N \N \N 100650 T.desertorum Triodia Triodia desertorum \N \N \N \N \N 100651 \N genus Wittsteinia \N \N \N \N \N 100652 C.cristatella Carex Carex cristatella \N \N \N \N \N 100653 E.longiflora Epacris Epacris longiflora \N \N \N \N \N 100654 \N genus Circaea \N \N \N \N \N 100655 P.henryi Passiflora Passiflora henryi \N \N \N \N \N 100656 N.exiliflora Nymphoides Nymphoides exiliflora \N \N \N \N \N 100657 T.retrorsa Tetratheca Tetratheca retrorsa \N \N \N \N \N 100658 D.3395 Discladium Discladium sp. Borsch 3395 \N \N \N \N \N 100659 I.stenocarpa Iriartella Iriartella stenocarpa \N \N \N \N \N 100660 T.diversifolia Trochomeriopsis Trochomeriopsis diversifolia \N \N \N \N \N 100661 A.gloriosa Acanthogilia Acanthogilia gloriosa \N \N \N \N \N 100662 M.bostockii Montia Montia bostockii \N \N \N \N \N 100663 H.brunonis Hierochloe Hierochloe brunonis \N \N \N \N \N 100664 S.disciforme Syncalathium Syncalathium disciforme \N \N \N \N \N 100665 \N genus Lardizabala \N \N \N \N \N 100666 \N order Laurales \N \N \N \N \N 100667 D.caudatilimba Derris Derris caudatilimba \N \N \N \N \N 100668 D.hastata Dorystaechas Dorystaechas hastata \N \N \N \N \N 100669 C.macrophylla Cicerbita Cicerbita macrophylla \N \N \N \N \N 100670 C.hystericina Carex Carex hystericina bottlebrush sedge \N \N \N \N 100671 \N subspecies Leontopodium ochroleucum subsp. campestris \N \N \N \N \N 100672 M.melanoxantha Masdevallia Masdevallia melanoxantha \N \N \N \N \N 100673 C.californicum Crossosoma Crossosoma californicum \N \N \N \N \N 100674 E.tengyuehensis Eriobotrya Eriobotrya tengyuehensis \N \N \N \N \N 100675 A.robertianum Alyssum Alyssum robertianum \N \N \N \N \N 100676 P.fonckii Perezia Perezia fonckii \N \N \N \N \N 100677 \N genus Chamaesphacos \N \N \N \N \N 100678 A.tortuosa Albuca Albuca tortuosa \N \N \N \N \N 100679 B.serrata Banksia Banksia serrata \N \N \N \N \N 100680 \N subspecies Pimelea spinescens subsp. spinescens \N \N \N \N \N 100681 G.canescens Geraea Geraea canescens desert-gold \N \N \N \N 100682 E.lancifolium Eupatorium Eupatorium lancifolium lanceleaf thoroughwort \N \N \N \N 100683 C.argyranthemus Croton Croton argyranthemus healing croton \N \N \N \N 100684 \N subspecies Acer pseudosieboldianum subsp. pseudosieboldianum \N \N \N \N \N 100685 G.clavata Genista Genista clavata \N \N \N \N \N 100686 P.reticulata Plathymenia Plathymenia reticulata \N \N \N \N \N 100687 D.lanata Dioscorea Dioscorea lanata \N \N \N \N \N 100688 S.reichenbachiana Sievekingia Sievekingia reichenbachiana \N \N \N \N \N 100689 \N genus Dissochondrus \N \N \N \N \N 100690 G.atter Gigantochloa Gigantochloa atter \N \N \N \N \N 100691 P.aurantiaca Primula Primula aurantiaca \N \N \N \N \N 100692 P.sulphurea Phyllostachys Phyllostachys sulphurea \N \N \N \N \N 100693 A.cretica Aegialophila Aegialophila cretica \N \N \N \N \N 100694 T.parkeri Tacca Tacca parkeri \N \N \N \N \N 100695 D.macraei Dendrobium Dendrobium macraei \N \N \N \N \N 100696 P.glanduligerum Piper Piper glanduligerum \N \N \N \N \N 100697 T.villosa Thymelaea Thymelaea villosa \N \N \N \N \N 100698 \N genus Lundinia \N \N \N \N \N 100699 C.heterantha Coursetia Coursetia heterantha \N \N \N \N \N 100700 Z.tenuifolia Zoysia Zoysia tenuifolia \N \N \N \N \N 100701 Z.pulvinata Zaluzianskya Zaluzianskya pulvinata \N \N \N \N \N 100702 S.bulleyana Salvia Salvia bulleyana \N \N \N \N \N 100703 A.leiocalyx Acacia Acacia leiocalyx \N \N \N \N \N 100704 R.quadratus Restio Restio quadratus \N \N \N \N \N 100705 S.gracilis Sporadanthus Sporadanthus gracilis \N \N \N \N \N 100706 S.kialensis Silene Silene kialensis \N \N \N \N \N 100707 C.stansburyana Cowania Cowania stansburyana \N \N \N \N \N 100708 \N genus Stenanthium \N \N \N \N \N 100709 P.lehmannii Peperomia Peperomia lehmannii \N \N \N \N \N 100710 F.virginiana Fragaria Fragaria virginiana \N \N \N \N \N 100711 S.struthioloides Silene Silene struthioloides \N \N \N \N \N 100712 C.kerndorffiorum Crocus Crocus kerndorffiorum \N \N \N \N \N 100713 A.patellaris Ampelocalamus Ampelocalamus patellaris \N \N \N \N \N 100714 \N genus Ornithidium \N \N \N \N \N 100715 A.kennedyae Arabis Arabis kennedyae \N \N \N \N \N 100716 \N genus Brachystegia \N \N \N \N \N 100717 R.africana Rhaphidophora Rhaphidophora africana \N \N \N \N \N 100718 V.friesiorum Vigna Vigna friesiorum \N \N \N \N \N 100719 A.crenatus Astragalus Astragalus crenatus \N \N \N \N \N 100720 C.chamissoi Calandrinia Calandrinia chamissoi \N \N \N \N \N 100721 D.arenalensis Dalechampia Dalechampia arenalensis \N \N \N \N \N 100722 C.natalense Conostomium Conostomium natalense \N \N \N \N \N 100723 \N genus Ramisia \N \N \N \N \N 100724 V.leonii Vanhouttea Vanhouttea leonii \N \N \N \N \N 100725 V.bungei Vicia Vicia bungei \N \N \N \N \N 100726 S.japonica Sophora Sophora japonica Japanese pagoda tree \N \N \N \N 100727 T.dafangensis Trichosanthes Trichosanthes dafangensis \N \N \N \N \N 100728 H.tuberculatum Haplophyllum Haplophyllum tuberculatum \N \N \N \N \N 100729 \N genus Coaxana \N \N \N \N \N 100730 H.costata Hedyotis Hedyotis costata \N \N \N \N \N 100731 \N genus Heterosperma \N \N \N \N \N 100732 A.merinoi Armeria Armeria merinoi \N \N \N \N \N 100733 O.banatica Oenanthe Oenanthe banatica \N \N \N \N \N 100734 O.excelsus Oligochaetochilus Oligochaetochilus aff. excelsus \N \N \N \N \N 100735 B.lewisiana Babiana Babiana lewisiana \N \N \N \N \N 100736 M.pervillei Mussaenda Mussaenda pervillei \N \N \N \N \N 100737 \N varietas Carex petricosa var. misandroides \N \N \N \N \N 100738 B.flammea Bernoullia Bernoullia flammea \N \N \N \N \N 100739 \N genus Rhodomyrtus \N \N \N \N \N 100740 S.paniculatum Syzygium Syzygium paniculatum Australian brush-cherry \N \N \N \N 100741 R.SH-2010 Rapanea Rapanea sp. SH-2010 \N \N \N \N \N 100742 \N subspecies Papaver alpinum subsp. alpinum \N \N \N \N \N 100743 E.amethystinoides Elleanthus Elleanthus amethystinoides \N \N \N \N \N 100744 K.rostrata Kunzea Kunzea rostrata \N \N \N \N \N 100745 H.henryi Heracleum Heracleum henryi \N \N \N \N \N 100746 A.platyphylla Arrabidaea Arrabidaea platyphylla \N \N \N \N \N 100747 T.K208 unclassified Taraxacum Taraxacum (sect. Borealia) sp. K208 \N \N \N \N \N 100748 \N genus Tina \N \N \N \N \N 100749 L.uliginosum Leucadendron Leucadendron uliginosum \N \N \N \N \N 100750 H.pauculifolius Haemanthus Haemanthus pauculifolius \N \N \N \N \N 100751 P.canadense Piptatherum Piptatherum canadense \N \N \N \N \N 100752 \N tribe Nardeae \N \N \N \N \N 100753 \N subspecies Centaurea paniculata subsp. paniculata \N \N \N \N \N 100754 A.skinneriana Agalinis Agalinis skinneriana \N \N \N \N \N 100755 T.jinpingense Typhonium Typhonium jinpingense \N \N \N \N \N 100756 P.comarrhenus Penstemon Penstemon comarrhenus \N \N \N \N \N 100757 \N genus Argyranthemum \N \N \N \N \N 100758 T.citriodorus Thymus Thymus x citriodorus \N \N \N \N \N 100759 P.fennanei Pseudoridolfia Pseudoridolfia fennanei \N \N \N \N \N 100760 M.bucidifolia Morinda Morinda bucidifolia \N \N \N \N \N 100761 \N genus Scleranthus \N \N \N \N \N 100762 \N varietas Euphorbia multiformis var. microphylla \N \N \N \N \N 100763 D.GDV-2010 Diplotaenia Diplotaenia sp. 2 GDV-2010 \N \N \N \N \N 100764 D.benthamianus Distemonanthus Distemonanthus benthamianus \N \N \N \N \N 100765 \N subspecies Yinshania acutangula subsp. wilsonii \N \N \N \N \N 100766 L.sprengeri Lycoris Lycoris chinensis x Lycoris sprengeri \N \N \N \N \N 100767 C.ratsimamangae Coffea Coffea ratsimamangae \N \N \N \N \N 100768 G.galeata Grobya Grobya galeata \N \N \N \N \N 100769 D.strymonis Dianthus Dianthus strymonis \N \N \N \N \N 100770 \N genus Hemigenia \N \N \N \N \N 100771 \N subspecies Guizotia scabra subsp. schimperi \N \N \N \N \N 100772 M.zapota Manilkara Manilkara zapota chicle,sapodilla \N \N \N \N 100773 F.erythrosperma Ficus Ficus erythrosperma \N \N \N \N \N 100774 I.longeracemosa Indigofera Indigofera longeracemosa \N \N \N \N \N 100775 N.1723 Niemeyera Niemeyera sp. Munzinger et al. 1723 \N \N \N \N \N 100776 A.echinops Astragalus Astragalus echinops \N \N \N \N \N 100777 H.dumetorum Heteropterys Heteropterys dumetorum \N \N \N \N \N 100778 L.limoides Leandra Leandra limoides \N \N \N \N \N 100779 P.dyckioides Puya Puya dyckioides \N \N \N \N \N 100780 S.tereticaulis Sophronitis Sophronitis tereticaulis \N \N \N \N \N 100781 C.busambarensis Centaurea Centaurea busambarensis \N \N \N \N \N 100782 C.CSB-2008b Crinum Crinum sp. CSB-2008b \N \N \N \N \N 100783 P.lachnostachya Physopsis Physopsis lachnostachya \N \N \N \N \N 100784 P.montana Pueraria Pueraria montana \N \N \N \N \N 100785 O.phlogopappa Olearia Olearia phlogopappa \N \N \N \N \N 100786 C.intermedia Coccinia Coccinia intermedia \N \N \N \N \N 100787 C.pratensis Cardamine Cardamine raphanifolia x Cardamine pratensis \N \N \N \N \N 100788 S.griffithii Stachyphrynium Stachyphrynium griffithii \N \N \N \N \N 100789 B.appendiculata Bonniera Bonniera appendiculata \N \N \N \N \N 100790 E.exilis Eremalche Eremalche exilis \N \N \N \N \N 100791 H.coronarium Hedychium Hedychium coronarium \N \N \N \N \N 100792 S.pindicola Soldanella Soldanella pindicola \N \N \N \N \N 100793 A.rosulata Abrotanella Abrotanella rosulata \N \N \N \N \N 100794 \N genus Philippiella \N \N \N \N \N 100795 D.haussknechtii Doronicum Doronicum haussknechtii \N \N \N \N \N 100796 D.glabrum Dorema Dorema glabrum \N \N \N \N \N 100797 C.LMP-2002 Caulokaempferia Caulokaempferia sp. LMP-2002 \N \N \N \N \N 100798 \N varietas Cymbopogon nardus var. confertiflorus \N \N \N \N \N 100799 M.bucharica Matthiola Matthiola bucharica \N \N \N \N \N 100800 R.revelieri Romulea Romulea revelieri \N \N \N \N \N 100801 A.tibetica Arabis Arabis tibetica \N \N \N \N \N 100802 P.sorbifolia Photinia Photinia sorbifolia \N \N \N \N \N 100803 A.macrophylla Achillea Achillea macrophylla \N \N \N \N \N 100804 C.filiformis Crambe Crambe filiformis \N \N \N \N \N 100805 G.cernua Gentianella Gentianella cernua \N \N \N \N \N 100806 \N genus Leptorhynchos \N \N \N \N \N 100807 L.kokioides Lebronnecia Lebronnecia kokioides \N \N \N \N \N 100808 L.vulgare Limonium Limonium vulgare \N \N \N \N \N 100809 M.rosmarinoides Maerua Maerua rosmarinoides \N \N \N \N \N 100810 C.seychellensis Curculigo Curculigo seychellensis \N \N \N \N \N 100811 C.macrophylla Citrus Citrus macrophylla alimau,colo \N \N \N \N 100812 B.JDMVSP2 Brownea Brownea sp. JDMVSP2 \N \N \N \N \N 100813 \N genus Cissus \N \N \N \N \N 100814 D.ochotensis Douglasia Douglasia ochotensis \N \N \N \N \N 100815 T.glauca Trinia Trinia glauca \N \N \N \N \N 100816 \N subspecies Kohautia caespitosa subsp. caespitosa \N \N \N \N \N 100817 A.huntii Ammi Ammi huntii \N \N \N \N \N 100818 R.altaicum Rheum Rheum altaicum \N \N \N \N \N 100819 F.histrix Ferocactus Ferocactus histrix \N \N \N \N \N 100820 A.atropurpureum Allium Allium atropurpureum \N \N \N \N \N 100821 C.tweediei Centaurea Centaurea tweediei \N \N \N \N \N 100822 \N subspecies Festuca rubra subsp. fallax \N \N \N \N \N 100823 L.wilsonii Lilium Lilium wilsonii \N \N \N \N \N 100824 P.P084 Physalis Physalis sp. P084 \N \N \N \N \N 100825 T.podocarpum Thalictrum Thalictrum podocarpum \N \N \N \N \N 100826 \N genus Xerolirion \N \N \N \N \N 100827 T.plurinerve Toechima Toechima plurinerve \N \N \N \N \N 100828 O.acaulis Oenothera Oenothera acaulis \N \N \N \N \N 100829 C.vulpina Carex Carex vulpina \N \N \N \N \N 100830 G.dumontetii Goniothalamus Goniothalamus dumontetii \N \N \N \N \N 100831 A.sprengelioides Andersonia Andersonia sprengelioides \N \N \N \N \N 100832 T.formosana Tricyrtis Tricyrtis formosana \N \N \N \N \N 100833 P.hirtum Pelargonium Pelargonium hirtum \N \N \N \N \N 100834 M.lacera Miconia Miconia lacera \N \N \N \N \N 100835 E.colletioides Euphorbia Euphorbia colletioides \N \N \N \N \N 100836 \N genus Aparisthmium \N \N \N \N \N 100837 C.macrocarpa Corokia Corokia macrocarpa \N \N \N \N \N 100838 \N genus Aizopsis \N \N \N \N \N 100839 T.cuspidatum Tropaeolum Tropaeolum cuspidatum \N \N \N \N \N 100840 \N genus Cynomorium \N \N \N \N \N 100841 A.mandshuricum Acer Acer mandshuricum \N \N \N \N \N 100842 D.cochinchinensis Dracaena Dracaena cochinchinensis \N \N \N \N \N 100843 \N varietas Lamium amplexicaule var. orientale \N \N \N \N \N 100844 O.MED-54259 Oncostema Oncostema sp. MED-54259 \N \N \N \N \N 100845 R.strigosa Rogiera Rogiera strigosa \N \N \N \N \N 100846 M.grazielae Minaria Minaria grazielae \N \N \N \N \N 100847 Y.bojieiana Yushania Yushania bojieiana \N \N \N \N \N 100848 T.involucrata Trophis Trophis involucrata \N \N \N \N \N 100849 S.sinus-persica Salicornia Salicornia sinus-persica \N \N \N \N \N 100850 M.laxispira Medicago Medicago laxispira \N \N \N \N \N 100851 R.grandiflora Raphionacme Raphionacme grandiflora \N \N \N \N \N 100852 L.palungensis Lithocarpus Lithocarpus palungensis \N \N \N \N \N 100853 M.oleifera Moringa Moringa oleifera horseradish tree,maranga \N \N \N \N 100854 B.vanneriana Barkeria Barkeria vanneriana \N \N \N \N \N 100855 P.raoulii Plantago Plantago raoulii \N \N \N \N \N 100856 S.borealis Sasa Sasa borealis \N \N \N \N \N 100857 M.SW-2006 Melicope Melicope cf. crassiramis SW-2006 \N \N \N \N \N 100858 M.hooglandii Macropiper Macropiper hooglandii \N \N \N \N \N 100859 M.formosa Mnesithea Mnesithea formosa \N \N \N \N \N 100860 S.media Spergularia Spergularia media \N \N \N \N \N 100861 A.nobilis Amherstia Amherstia nobilis pride-of-Burma \N \N \N \N 100862 B.valida Bambusa Bambusa valida \N \N \N \N \N 100863 B.attenuata Bursera Bursera attenuata \N \N \N \N \N 100864 R.rubifolia Rhus Rhus rubifolia \N \N \N \N \N 100865 \N subspecies Stachys recta subsp. recta \N \N \N \N \N 100866 H.hackelii Helictotrichon Helictotrichon hackelii \N \N \N \N \N 100867 P.tranlienianum Paphiopedilum Paphiopedilum tranlienianum \N \N \N \N \N 100868 R.praemorsus Ranunculus Ranunculus praemorsus \N \N \N \N \N 100869 M.setosa Minthostachys Minthostachys setosa \N \N \N \N \N 100870 P.longicaulis Pilea Pilea longicaulis \N \N \N \N \N 100871 E.corymbosum Exostema Exostema corymbosum \N \N \N \N \N 100872 A.256 Apocynum Apocynum sp. Olmstead 256 \N \N \N \N \N 100873 G.costaricensis Gonocalyx Gonocalyx costaricensis \N \N \N \N \N 100874 T.plumosum Trichopetalum Trichopetalum plumosum \N \N \N \N \N 100875 C.echinus Chrysosplenium Chrysosplenium echinus \N \N \N \N \N 100876 V.pallidum Vaccinium Vaccinium pallidum \N \N \N \N \N 100877 A.teretifolia Acrosanthes Acrosanthes teretifolia \N \N \N \N \N 100878 H.coccineus Haemanthus Haemanthus coccineus \N \N \N \N \N 100879 P.barrettiae Penstemon Penstemon barrettiae \N \N \N \N \N 100880 \N varietas Aegilops tauschii var. anathera \N \N \N \N \N 100881 S.dyeri Shorea Shorea dyeri \N \N \N \N \N 100882 C.parviflora Chassalia Chassalia parviflora \N \N \N \N \N 100883 D.chapaense Dendrobium Dendrobium chapaense \N \N \N \N \N 100884 L.bienne Linum Linum bienne \N \N \N \N \N 100885 C.dallii Carex Carex dallii \N \N \N \N \N 100886 \N genus Siphocodon \N \N \N \N \N 100887 M.'Vietnam' Musa Musa sp. 'Vietnam' \N \N \N \N \N 100888 \N subspecies Carex scirpoidea subsp. pseudoscirpoidea \N \N \N \N \N 100889 \N genus Alfredia \N \N \N \N \N 100890 B.rigida Beschorneria Beschorneria rigida \N \N \N \N \N 100891 L.nanum Leontopodium Leontopodium nanum \N \N \N \N \N 100892 T.sillamontana Tradescantia Tradescantia sillamontana \N \N \N \N \N 100893 G.peduncularis Gagea Gagea peduncularis \N \N \N \N \N 100894 P.emersonii Paphiopedilum Paphiopedilum delenatii x Paphiopedilum emersonii \N \N \N \N \N 100895 \N genus Hillebrandia \N \N \N \N \N 100896 C.rupicola Calophyllum Calophyllum rupicola \N \N \N \N \N 100897 \N varietas Carpolepis laurifolia var. laurifolia \N \N \N \N \N 100898 R.canaanensis Renata Renata canaanensis \N \N \N \N \N 100899 M.conifera Manglietia Manglietia conifera \N \N \N \N \N 100900 \N tribe Cosmelieae \N \N \N \N \N 100901 \N genus Sersalisia \N \N \N \N \N 100902 A.oxyphysus Astragalus Astragalus oxyphysus \N \N \N \N \N 100903 E.macartneyi Eurya Eurya macartneyi \N \N \N \N \N 100904 S.graeca Stachys Stachys graeca \N \N \N \N \N 100905 L.alopecuroides Lupinus Lupinus alopecuroides \N \N \N \N \N 100906 T.TL1525 Tetramolopium Tetramolopium sp. TL1525 \N \N \N \N \N 100907 D.cespitosa Deschampsia Deschampsia cespitosa tufted hair grass \N \N \N \N 100908 H.drasticus Himatanthus Himatanthus drasticus \N \N \N \N \N 100909 \N subspecies Festuca arundinacea subsp. corsica \N \N \N \N \N 100910 H.sessilifolia Henriettella Henriettella sessilifolia \N \N \N \N \N 100911 \N order Huerteales \N \N \N \N \N 100912 \N subspecies Disa obtusa subsp. picta \N \N \N \N \N 100913 L.caprifolium Lonicera Lonicera caprifolium \N \N \N \N \N 100914 E.cellulosa Eleocharis Eleocharis cellulosa \N \N \N \N \N 100915 I.colutea Indigofera Indigofera colutea \N \N \N \N \N 100916 T.brunonis Tripterococcus Tripterococcus brunonis \N \N \N \N \N 100917 S.anceps Smilax Smilax anceps \N \N \N \N \N 100918 S.kermesina Sobralia Sobralia kermesina \N \N \N \N \N 100919 A.letestui Augouardia Augouardia letestui \N \N \N \N \N 100920 E.bracteatus Echinodorus Echinodorus bracteatus \N \N \N \N \N 100921 H.scabra Hemigenia Hemigenia scabra \N \N \N \N \N 100922 C.soldanella Calystegia Calystegia soldanella \N \N \N \N \N 100923 I.turcica Iris Iris turcica \N \N \N \N \N 100925 C.serpens Chusquea Chusquea serpens \N \N \N \N \N 100926 Q.semecarpifolia Quercus Quercus semecarpifolia \N \N \N \N \N 100927 R.argyrophyllum Rhododendron Rhododendron argyrophyllum \N \N \N \N \N 100928 \N genus Lepinia \N \N \N \N \N 100929 R.karatavicum Rhaponticum Rhaponticum karatavicum \N \N \N \N \N 100930 \N genus Siegfriedia \N \N \N \N \N 100931 \N varietas Cleome aculeata var. cordobensis \N \N \N \N \N 100932 C.inunctum Cinnamomum Cinnamomum inunctum \N \N \N \N \N 100933 A.serrata Alepidea Alepidea serrata \N \N \N \N \N 100934 R.stapfianum Rhododendron Rhododendron stapfianum \N \N \N \N \N 100935 P.involucrata Periballia Periballia involucrata \N \N \N \N \N 100936 E.albibracteata Eleocharis Eleocharis albibracteata \N \N \N \N \N 100937 L.SH-2010 Laportea Laportea sp. SH-2010 \N \N \N \N \N 100938 A.graveolens Anethum Anethum graveolens dill \N \N \N \N 100939 O.melanosticta Oxalis Oxalis melanosticta \N \N \N \N \N 100940 P.SH-2010 Paederia Paederia sp. SH-2010 \N \N \N \N \N 100941 B.teretifolia Baumea Baumea teretifolia \N \N \N \N \N 100942 S.claviculata Strobilanthes Strobilanthes claviculata \N \N \N \N \N 100943 P.costaricensis Pilea Pilea costaricensis \N \N \N \N \N 100944 A.SH-2010 Augusta Augusta sp. SH-2010 \N \N \N \N \N 100945 I.edomensis Iris Iris edomensis \N \N \N \N \N 100946 C.diphylla Cardamine Cardamine diphylla crinkleroot \N \N \N \N 100947 S.floribunda Scaevola Scaevola floribunda \N \N \N \N \N 100948 \N varietas Acer wilsonii var. wilsonii \N \N \N \N \N 100949 E.sutaepense Exacum Exacum sutaepense \N \N \N \N \N 100950 \N genus Thrasya \N \N \N \N \N 100951 B.acutifolium Bupleurum Bupleurum acutifolium \N \N \N \N \N 100952 L.spectabilis Lonchocarpus Lonchocarpus spectabilis \N \N \N \N \N 100953 L.fawcettii Lasiocroton Lasiocroton fawcettii \N \N \N \N \N 100954 M.jamaicense Macrocnemum Macrocnemum jamaicense \N \N \N \N \N 100955 T.cardiocarpum Tetrataenium Tetrataenium cardiocarpum \N \N \N \N \N 100956 C.KMK-2009 Costus Costus aff. amazonicus KMK-2009 \N \N \N \N \N 100957 M.schizocarpa Musa Musa banksii x Musa schizocarpa \N \N \N \N \N 100958 \N genus Chaetobromus \N \N \N \N \N 100959 V.hosei Vigna Vigna hosei Sarawak-bean \N \N \N \N 100960 \N no rank Poaceae incertae sedis \N \N \N \N \N 100961 C.scandens Craterosiphon Craterosiphon scandens \N \N \N \N \N 100962 U.listeriana Umtiza Umtiza listeriana \N \N \N \N \N 100963 T.acuminatum Thesium Thesium acuminatum \N \N \N \N \N 100964 V.cymbalaria Veronica Veronica cymbalaria \N \N \N \N \N 100965 \N genus Silybum \N \N \N \N \N 100966 C.laxiflora Carpinus Carpinus laxiflora \N \N \N \N \N 100967 \N varietas Dalechampia bernieri var. denesiana \N \N \N \N \N 100968 A.versicolor Asarum Asarum versicolor \N \N \N \N \N 100969 S.japonicus Styrax Styrax japonicus Japanese snowbell \N \N \N \N 100970 \N genus Arthropodium \N \N \N \N \N 100971 Q.mas Quercus Quercus mas \N \N \N \N \N 100972 T.berteroana Tassadia Tassadia berteroana \N \N \N \N \N 100973 \N subspecies Chenopodium desertorum subsp. anidiophyllum \N \N \N \N \N 100974 H.8997 Holcoglossum Holcoglossum sp. 8997 \N \N \N \N \N 100975 C.boliviensis Cayaponia Cayaponia boliviensis \N \N \N \N \N 100976 D.texanum Dasylirion Dasylirion texanum Texas sotol \N \N \N \N 100977 \N genus Geissomeria \N \N \N \N \N 100978 P.1174 Paracephaelis Paracephaelis sp. De Block 1174 \N \N \N \N \N 100979 T.632 unclassified Taraxacum Taraxacum (sect. Hamata) sp. 632 \N \N \N \N \N 100980 \N varietas Fuchsia boliviana var. boliviana \N \N \N \N \N 100981 V.sativa Vicia Vicia sativa spring vetch,tare \N \N \N \N 100982 H.hypericoides Hibbertia Hibbertia hypericoides \N \N \N \N \N 100983 O.barthii Oryza Oryza barthii African wild rice \N \N \N \N 100984 \N varietas Taraxacum platypecidium var. platypecidium \N \N \N \N \N 100985 \N subspecies Quercus ithaburensis subsp. macrolepis \N \N \N \N \N 100986 A.amarum Anthoxanthum Anthoxanthum amarum \N \N \N \N \N 100987 \N genus Sorbus mountain ashes \N \N \N \N 100988 G.greenwoodiana Galeandra Galeandra greenwoodiana \N \N \N \N \N 100989 T.1850 Tapinanthus Tapinanthus sp. Smith 1850 \N \N \N \N \N 100990 S.spicata Saussurea Saussurea spicata \N \N \N \N \N 100991 O.lepida Otostylis Otostylis lepida \N \N \N \N \N 100992 R.langlassei Rogiera Rogiera langlassei \N \N \N \N \N 100993 W.nitida Walafrida Walafrida nitida \N \N \N \N \N 100994 S.brachyandra Stephania Stephania brachyandra \N \N \N \N \N 100995 E.boetica Euphorbia Euphorbia boetica \N \N \N \N \N 100996 E.atropurpurea Eleocharis Eleocharis atropurpurea \N \N \N \N \N 100997 D.lehmanni Dioclea Dioclea lehmanni \N \N \N \N \N 100998 Z.matrella Zoysia Zoysia matrella Japanese carpet grass,Manila grass \N \N \N \N 100999 F.quadrangulata Fraxinus Fraxinus quadrangulata blue ash \N \N \N \N 101000 \N genus Soldanella \N \N \N \N \N 101001 C.coralliformis Chamaedorea Chamaedorea coralliformis \N \N \N \N \N 101002 \N genus Peltophorum \N \N \N \N \N 101003 A.nitidus Artocarpus Artocarpus nitidus \N \N \N \N \N 101004 L.rotundifolium Leptospermum Leptospermum rotundifolium \N \N \N \N \N 101005 \N varietas Cicuta maculata var. bolanderi \N \N \N \N \N 101006 \N varietas Acacia luederitzii var. luederitzii \N \N \N \N \N 101007 S.pinnatisectum Solanum Solanum pinnatisectum tansyleaf nightshade \N \N \N \N 101008 I.meserveae Ilex Ilex x meserveae \N \N \N \N \N 101009 O.bicornis Ophrys Ophrys bicornis \N \N \N \N \N 101010 Q.palmeri Quercus Quercus palmeri \N \N \N \N \N 101012 E.hookerianus Elaeocarpus Elaeocarpus hookerianus \N \N \N \N \N 101013 P.maura Potentilla Potentilla maura \N \N \N \N \N 101014 D.angustifolia Dracaena Dracaena angustifolia \N \N \N \N \N 101015 \N varietas Myricaria elegans var. elegans \N \N \N \N \N 101016 H.paka Heliconia Heliconia paka \N \N \N \N \N 101017 T.batmanicum Trifolium Trifolium batmanicum \N \N \N \N \N 101018 M.macroura Muhlenbergia Muhlenbergia macroura \N \N \N \N \N 101019 S.falcifera Shorea Shorea falcifera \N \N \N \N \N 101020 S.aethiopis Salvia Salvia aethiopis \N \N \N \N \N 101021 P.ambiguus Penstemon Penstemon ambiguus \N \N \N \N \N 101022 \N tribe Mirbelieae \N \N \N \N \N 101023 \N no rank Oryza sativa Japonica Group Japanese rice \N \N \N \N 101024 A.speciosa Aphelandra Aphelandra speciosa \N \N \N \N \N 101025 \N tribe Phlomideae \N \N \N \N \N 101026 C.sphaerocephala Chorizandra Chorizandra sphaerocephala \N \N \N \N \N 101027 L.CDB-2011a unclassified Livistoninae Livistoninae sp. CDB-2011a \N \N \N \N \N 101028 \N genus Ceratophyllum \N \N \N \N \N 101029 E.socotrana Euphorbia Euphorbia socotrana \N \N \N \N \N 101030 X.cronquistii Xylorhiza Xylorhiza cronquistii \N \N \N \N \N 101031 A.gramineum Alisma Alisma gramineum \N \N \N \N \N 101032 I.capillaris Indigofera Indigofera capillaris \N \N \N \N \N 101033 H.congdonis Horkelia Horkelia congdonis \N \N \N \N \N 101034 C.pachyphylla Cerochlamys Cerochlamys pachyphylla \N \N \N \N \N 101035 T.crispa Tinospora Tinospora crispa \N \N \N \N \N 101036 \N tribe Anisieae \N \N \N \N \N 101037 C.elatus Cryptopus Cryptopus elatus \N \N \N \N \N 101038 S.holosericea Stipa Stipa holosericea \N \N \N \N \N 101039 \N subspecies Ficus ottoniifolia subsp. macrosyce \N \N \N \N \N 101040 M.124450 Miltonioides Miltonioides sp. Heidelberg BG 124450 \N \N \N \N \N 101041 \N genus Tetradenia \N \N \N \N \N 101042 \N subspecies Nasa pteridophylla subsp. geniculata \N \N \N \N \N 101043 G.peltata Gunnera Gunnera peltata \N \N \N \N \N 101044 \N forma Aechmea weilbachii f. pendula \N \N \N \N \N 101045 C.fendleri Chusquea Chusquea aff. fendleri \N \N \N \N \N 101046 I.1720 Indigofera Indigofera sp. 3 Barker 1720 \N \N \N \N \N 101047 C.asplenifolius Corchorus Corchorus asplenifolius \N \N \N \N \N 101048 L.mildbraedii Lasiodiscus Lasiodiscus mildbraedii \N \N \N \N \N 101049 A.leptomeria Aliciella Aliciella leptomeria \N \N \N \N \N 101050 D.wislizeni Delphinium Delphinium wislizeni \N \N \N \N \N 101051 A.multinervis Anthochlamys Anthochlamys multinervis \N \N \N \N \N 101052 H.heteroclita Hodgsonia Hodgsonia heteroclita \N \N \N \N \N 101053 B.subulifolia Brassavola Brassavola subulifolia \N \N \N \N \N 101054 A.beccariana Aquilaria Aquilaria beccariana \N \N \N \N \N 101055 \N genus Microstachys \N \N \N \N \N 101056 B.longicornis Bifrenaria Bifrenaria longicornis \N \N \N \N \N 101057 S.thesioides Scaevola Scaevola thesioides \N \N \N \N \N 101058 G.songaricum Galium Galium songaricum \N \N \N \N \N 101059 P.neurophyllum Pterygopleurum Pterygopleurum neurophyllum \N \N \N \N \N 101060 C.dissecta Cristaria Cristaria dissecta \N \N \N \N \N 101061 \N varietas Thermopsis montana var. ovata \N \N \N \N \N 101062 C.reticulata Citrus Citrus clementina x Citrus reticulata \N \N \N \N \N 101063 C.andrewsii Cirsium Cirsium andrewsii Franciscan thistle \N \N \N \N 101064 \N subspecies Crataegus azarolus subsp. aronia \N \N \N \N \N 101065 G.7510 Glossoloma Glossoloma sp. Clark 7510 \N \N \N \N \N 101066 G.4755 Gyrinops Gyrinops cf. caudata Ave 4755 \N \N \N \N \N 101067 P.pachyceras Pseudocinchona Pseudocinchona pachyceras \N \N \N \N \N 101068 \N genus Matelea \N \N \N \N \N 101069 M.pulchra Myrcia Myrcia pulchra \N \N \N \N \N 101070 T.floccosus Tragopogon Tragopogon floccosus \N \N \N \N \N 101071 E.tenuissimus Euryops Euryops tenuissimus \N \N \N \N \N 101072 L.triornithophora Linaria Linaria triornithophora three-birds-flying \N \N \N \N 101073 F.paludica Ficus Ficus paludica \N \N \N \N \N 101074 G.venusta Gomesa Gomesa venusta \N \N \N \N \N 101075 S.oplocense Solanum Solanum oplocense \N \N \N \N \N 101076 S.7 Salicornia Salicornia aff. europaea Pankova 7 \N \N \N \N \N 101077 M.greenei Mirabilis Mirabilis greenei \N \N \N \N \N 101078 \N genus Eurycorymbus \N \N \N \N \N 101079 M.arborescens Montrichardia Montrichardia arborescens \N \N \N \N \N 101080 I.kuschakewiczii Iris Iris kuschakewiczii \N \N \N \N \N 101081 C.sartorii Campanula Campanula sartorii \N \N \N \N \N 101082 M.primuliflora Metagentiana Metagentiana primuliflora \N \N \N \N \N 101083 D.battiscombei Dendrosenecio Dendrosenecio battiscombei \N \N \N \N \N 101084 C.2504 Catopsis Catopsis sp. Perez 2504 \N \N \N \N \N 101085 A.dasycarpum Alyssum Alyssum dasycarpum \N \N \N \N \N 101086 H.lupulus Humulus Humulus lupulus European hop,common hop \N \N \N \N 101087 H.glabra Hindsia Hindsia glabra \N \N \N \N \N 101088 A.pseudoibicinus Astragalus Astragalus pseudoibicinus \N \N \N \N \N 101089 R.australis Rubus Rubus australis \N \N \N \N \N 101090 C.insularis Coreocarpus Coreocarpus insularis \N \N \N \N \N 101091 R.lacteum Rhododendron Rhododendron lacteum \N \N \N \N \N 101092 C.venosa Chione Chione venosa \N \N \N \N \N 101093 C.vulgare Cirsium Cirsium vulgare \N \N \N \N \N 101094 M.deliciosa Monstera Monstera deliciosa Swiss-cheese-plant,cut-leaf-philodendron,harpon \N \N \N \N 101095 E.orientalis Echinops Echinops orientalis \N \N \N \N \N 101096 L.hirsuta Liparia Liparia hirsuta \N \N \N \N \N 101097 A.viridissima Arctostaphylos Arctostaphylos viridissima \N \N \N \N \N 101098 S.rosacea Saxifraga Saxifraga rosacea \N \N \N \N \N 101099 \N genus Eriothrix \N \N \N \N \N 101100 O.bifurca Oxalis Oxalis bifurca \N \N \N \N \N 101101 A.dimorphostegia Atriplex Atriplex dimorphostegia \N \N \N \N \N 101102 O.oliganthum Oncidium Oncidium oliganthum \N \N \N \N \N 101103 A.nuperrima Acacia Acacia nuperrima \N \N \N \N \N 101104 C.macowanii Cyrtanthus Cyrtanthus macowanii \N \N \N \N \N 101105 H.physophora Hirtella Hirtella physophora \N \N \N \N \N 101106 S.0048 Lycopersicon Solanum sp. 0048 \N \N \N \N \N 101107 F.dibotrys Fagopyrum Fagopyrum dibotrys jin qiao \N \N \N \N 101108 A.persicina Actinidia Actinidia persicina \N \N \N \N \N 101109 \N varietas Orobanche cernua var. desertorum \N \N \N \N \N 101110 S.cocci' Stackhousia Stackhousia sp. 'sharply tuberculate cocci' \N \N \N \N \N 101111 P.lanata Puya Puya lanata \N \N \N \N \N 101112 \N genus Symbolanthus \N \N \N \N \N 101113 \N subspecies Hippophae rhamnoides subsp. sinensis \N \N \N \N \N 101114 C.rogeri Conostylis Conostylis rogeri \N \N \N \N \N 101115 M.barlaeana Masdevallia Masdevallia barlaeana \N \N \N \N \N 101116 I.arundinacea Isachne Isachne arundinacea \N \N \N \N \N 101118 L.gibsonii Lepidosperma Lepidosperma gibsonii \N \N \N \N \N 101119 \N genus Phyllis \N \N \N \N \N 101120 P.kotschyi Phagnalon Phagnalon kotschyi \N \N \N \N \N 101121 M.platycarpa Mimosa Mimosa platycarpa \N \N \N \N \N 101122 A.splendens Alchemilla Alchemilla splendens \N \N \N \N \N 101123 A.bulgaricum Allium Allium bulgaricum \N \N \N \N \N 101124 \N genus Datura \N \N \N \N \N 101125 B.aristosum Brachyelytrum Brachyelytrum aristosum \N \N \N \N \N 101126 O.aggregata Orostachys Orostachys aggregata \N \N \N \N \N 101127 O.beyrodtioides Oncidium Oncidium beyrodtioides \N \N \N \N \N 101128 L.montanus Lupinus Lupinus montanus \N \N \N \N \N 101129 P.pauciflora Pultenaea Pultenaea pauciflora \N \N \N \N \N 101130 C.malloticarpa Cephalomappa Cephalomappa malloticarpa \N \N \N \N \N 101131 G.paniculata Gypsophila Gypsophila paniculata \N \N \N \N \N 101132 \N varietas Arum dioscoridis var. cyprium \N \N \N \N \N 101133 \N genus Alyxia \N \N \N \N \N 101134 C.lacerus Cheilocostus Cheilocostus lacerus \N \N \N \N \N 101135 \N genus Eucalyptopsis \N \N \N \N \N 101136 C.ferruginea Codia Codia ferruginea \N \N \N \N \N 101137 R.festuciformis Restio Restio festuciformis \N \N \N \N \N 101138 G.SH-2010 Guizotia Guizotia sp. SH-2010 \N \N \N \N \N 101139 M.oppositifolius Mallotus Mallotus oppositifolius \N \N \N \N \N 101140 T.gracile Trisetum Trisetum gracile \N \N \N \N \N 101141 S.racemosa Sinoadina Sinoadina racemosa \N \N \N \N \N 101142 S.acaulis Sonchus Sonchus acaulis \N \N \N \N \N 101143 \N genus Salweenia \N \N \N \N \N 101144 T.fontanum Toxicoscordion Toxicoscordion fontanum \N \N \N \N \N 101145 B.madagascariensis Brexia Brexia madagascariensis \N \N \N \N \N 101146 C.edwardsii Combretum Combretum edwardsii \N \N \N \N \N 101147 C.beckii Cynanchum Cynanchum beckii \N \N \N \N \N 101148 C.polysphaerus Cabobanthus Cabobanthus polysphaerus \N \N \N \N \N 101149 A.linum-stellatum Asterolinon Asterolinon linum-stellatum \N \N \N \N \N 101150 Z.oenoplia Ziziphus Ziziphus oenoplia \N \N \N \N \N 101151 P.graveolens Pultenaea Pultenaea graveolens \N \N \N \N \N 101152 B.kurzii Briggsia Briggsia kurzii \N \N \N \N \N 101153 S.bowleyana Salvia Salvia bowleyana \N \N \N \N \N 101154 \N subspecies Pachysandra axillaris subsp. stylosa \N \N \N \N \N 101155 P.mollicomum Piper Piper mollicomum \N \N \N \N \N 101156 P.DS14481_JM1594 Prosopis Prosopsis sp. DS14481_JM1594 \N \N \N \N \N 101157 L.sorghoidea Lasiacis Lasiacis sorghoidea \N \N \N \N \N 101158 \N genus Hartwrightia \N \N \N \N \N 101159 \N genus Hexapterella \N \N \N \N \N 101160 B.cuneata Banksia Banksia cuneata \N \N \N \N \N 101161 G.9528 Guatteria Guatteria aff. trichoclonia Maas et al. 9528 \N \N \N \N \N 101162 H.petersiana Hyphaene Hyphaene petersiana \N \N \N \N \N 101163 D.fragrans Danais Danais fragrans \N \N \N \N \N 101164 P.argentea Prunus Prunus argentea \N \N \N \N \N 101165 C.torreyi Carex Carex torreyi \N \N \N \N \N 101166 L.scopulensis Lysimachia Lysimachia scopulensis \N \N \N \N \N 101167 C.baccifera Cipadessa Cipadessa baccifera \N \N \N \N \N 101168 A.koriniana Arenaria Arenaria koriniana \N \N \N \N \N 101169 B.robusta Beilschmiedia Beilschmiedia robusta \N \N \N \N \N 101170 S.multicaulis Swertia Swertia multicaulis \N \N \N \N \N 101171 \N subspecies Poa secunda subsp. secunda \N \N \N \N \N 101172 C.linifolia Centella Centella linifolia \N \N \N \N \N 101173 \N subspecies Crocus olivieri subsp. olivieri \N \N \N \N \N 101174 S.salsa Suaeda Suaeda salsa \N \N \N \N \N 101175 \N genus Dregea \N \N \N \N \N 101176 R.rostrata Rafnia Rafnia rostrata \N \N \N \N \N 101177 C.hastifolia Cousinia Cousinia hastifolia \N \N \N \N \N 101178 S.Sspfguj Sobralia Sobralia sp. Sspfguj \N \N \N \N \N 101179 C.ochroleuca Clematis Clematis ochroleuca \N \N \N \N \N 101180 P.sericea Polylepis Polylepis sericea \N \N \N \N \N 101181 E.punctata Eucomis Eucomis punctata \N \N \N \N \N 101182 S.campestris Sabatia Sabatia campestris \N \N \N \N \N 101183 A.stipoides Aristida Aristida stipoides \N \N \N \N \N 101184 W.triunguifolia Westoniella Westoniella triunguifolia \N \N \N \N \N 101185 T.S5641 unclassified Taraxacum Taraxacum (sect. Parvula/Kashmirana) sp. S5641 \N \N \N \N \N 101186 S.roseus Senecio Senecio roseus \N \N \N \N \N 101187 E.senilosis Eleutherococcus Eleutherococcus senilosis \N \N \N \N \N 101188 M.pseudokobus Magnolia Magnolia pseudokobus \N \N \N \N \N 101189 \N subfamily Acalyphoideae \N \N \N \N \N 101190 P.ligustrifolia Psychotria Psychotria ligustrifolia \N \N \N \N \N 101191 \N subspecies Flueggea virosa subsp. virosa \N \N \N \N \N 101192 C.claviger Costus Costus claviger \N \N \N \N \N 101193 \N genus Metarungia \N \N \N \N \N 101194 N.aristolochioides Nepenthes Nepenthes aristolochioides \N \N \N \N \N 101195 P.stuckertii Poa Poa stuckertii \N \N \N \N \N 101196 G.acorifolia Guzmania Guzmania acorifolia \N \N \N \N \N 101197 G.splendens Genista Genista splendens \N \N \N \N \N 101198 D.verticillata Dicrastylis Dicrastylis verticillata \N \N \N \N \N 101199 A.mamillata Ardisia Ardisia mamillata \N \N \N \N \N 101200 B.apetala Beguea Beguea apetala \N \N \N \N \N 101201 C.anamariae Chamaecrista Chamaecrista anamariae \N \N \N \N \N 101202 D.speciosum Drosanthemum Drosanthemum speciosum \N \N \N \N \N 101203 M.microcarpa Macleaya Macleaya microcarpa \N \N \N \N \N 101204 L.nootkatensis Lupinus Lupinus nootkatensis \N \N \N \N \N 101205 S.vandeleurii Streptocarpus Streptocarpus vandeleurii \N \N \N \N \N 101206 S.485 Symplocos Symplocos sp. 485 \N \N \N \N \N 101207 T.alpestris Tigridia Tigridia alpestris \N \N \N \N \N 101208 P.sogdiana Prunus Prunus sogdiana \N \N \N \N \N 101209 \N genus Spirotecoma \N \N \N \N \N 101210 A.bracteatus Aeschynanthus Aeschynanthus bracteatus \N \N \N \N \N 101211 G.paraensis Guatteria Guatteria paraensis \N \N \N \N \N 101212 P.cuspidatum Pediomelum Pediomelum cuspidatum \N \N \N \N \N 101213 A.microsperma Arachis Arachis microsperma \N \N \N \N \N 101214 \N family Myodocarpaceae \N \N \N \N \N 101215 A.biserrata Achillea Achillea biserrata \N \N \N \N \N 101216 N.pulmonarioides Nonea Nonea pulmonarioides \N \N \N \N \N 101217 H.leptocarpa Hypoxis Hypoxis leptocarpa \N \N \N \N \N 101218 D.hupeana Dalbergia Dalbergia hupeana \N \N \N \N \N 101219 A.mozaffarianii Astragalus Astragalus mozaffarianii \N \N \N \N \N 101220 M.lyrata Meconopsis Meconopsis lyrata \N \N \N \N \N 101221 S.multiradiata Solidago Solidago multiradiata \N \N \N \N \N 101222 A.glossophyllus Amorphophallus Amorphophallus glossophyllus \N \N \N \N \N 101223 L.nivalis Lachemilla Lachemilla nivalis \N \N \N \N \N 101224 S.polyantha Satyria Satyria polyantha \N \N \N \N \N 101225 A.cedarbergense Apodolirion Apodolirion cedarbergense \N \N \N \N \N 101226 J.congesta Jablonskia Jablonskia congesta \N \N \N \N \N 101227 C.mimosifolia Caesalpinia Caesalpinia mimosifolia \N \N \N \N \N 101228 A.elongatum Amphilophium Amphilophium elongatum \N \N \N \N \N 101229 E.heterochroma Euphorbia Euphorbia heterochroma \N \N \N \N \N 101230 \N genus Dignathia \N \N \N \N \N 101231 E.aureofimbriatum Eremocaulon Eremocaulon aureofimbriatum \N \N \N \N \N 101232 W.middendorffiana Weigela Weigela middendorffiana \N \N \N \N \N 101233 C.elliptica Cordia Cordia elliptica \N \N \N \N \N 101234 A.digitata Acaena Acaena digitata \N \N \N \N \N 101235 \N genus Hydrilla \N \N \N \N \N 101236 C.H1_35 Castilleja Castilleja sp. H1_35 \N \N \N \N \N 101237 V.ciliatula Vicia Vicia ciliatula \N \N \N \N \N 101238 E.bicolor Eucrosia Eucrosia bicolor \N \N \N \N \N 101239 P.krukoffii Protium Protium krukoffii \N \N \N \N \N 101240 W.stricta Wahlenbergia Wahlenbergia stricta \N \N \N \N \N 101241 N.segurensis Narcissus Narcissus segurensis \N \N \N \N \N 101242 G.velutina Goodyera Goodyera velutina \N \N \N \N \N 101243 P.boranense Pelargonium Pelargonium boranense \N \N \N \N \N 101244 C.pauciflora Carex Carex pauciflora \N \N \N \N \N 101245 T.brevipes Typhonium Typhonium brevipes \N \N \N \N \N 101246 \N genus Myosotidium \N \N \N \N \N 101247 A.schachimardanicum Allium Allium schachimardanicum \N \N \N \N \N 101248 D.gigas Dracula Dracula gigas \N \N \N \N \N 101249 \N genus Kibaropsis \N \N \N \N \N 101250 C.teeta Coptis Coptis teeta \N \N \N \N \N 101251 B.natalensis Bauhinia Bauhinia natalensis \N \N \N \N \N 101252 B.sericoneura Begonia Begonia sericoneura \N \N \N \N \N 101253 G.lawrencei Gentiana Gentiana hexaphylla x Gentiana lawrencei \N \N \N \N \N 101254 L.depressum Lepidium Lepidium depressum \N \N \N \N \N 101255 A.delphiniifolium Aconitum Aconitum delphiniifolium \N \N \N \N \N 101256 A.isaloensis Adenia Adenia isaloensis \N \N \N \N \N 101257 C.straminea Calathea Calathea straminea \N \N \N \N \N 101258 C.edentula Crambe Crambe edentula \N \N \N \N \N 101259 S.reticulata Sarcopteryx Sarcopteryx reticulata \N \N \N \N \N 101260 \N varietas Calochortus weedii var. weedii \N \N \N \N \N 101261 G.1047 Gurania Gurania sp. 9 Steele 1047 \N \N \N \N \N 101262 C.praticola Carex Carex praticola \N \N \N \N \N 101263 S.erubescens Streptocarpus Streptocarpus erubescens \N \N \N \N \N 101264 S.tricephala Sachsia Sachsia tricephala \N \N \N \N \N 101265 M.insulare Myoporum Myoporum insulare \N \N \N \N \N 101266 \N genus Pycnospatha \N \N \N \N \N 101267 O.rosmarinifolia Olearia Olearia rosmarinifolia \N \N \N \N \N 101268 Z.tyaihyoni Zabelia Zabelia tyaihyoni \N \N \N \N \N 101269 M.heterophylla Mauria Mauria heterophylla \N \N \N \N \N 101270 H.cycnocephalus Hymenochilus Hymenochilus cycnocephalus \N \N \N \N \N 101271 M.argun Medemia Medemia argun \N \N \N \N \N 101272 P.tenella Puccinellia Puccinellia tenella \N \N \N \N \N 101273 A.steyermarkii Apochloa Apochloa steyermarkii \N \N \N \N \N 101274 N.Z15 Neoachmandra Neoachmandra sp. Z15 \N \N \N \N \N 101275 S.pilosa Stachys Stachys pilosa \N \N \N \N \N 101276 C.speciosa Chamaecrista Chamaecrista speciosa \N \N \N \N \N 101277 \N subtribe Megastylidinae \N \N \N \N \N 101278 G.handroi Gomesa Gomesa handroi \N \N \N \N \N 101279 P.callicarpoides Pauridiantha Pauridiantha callicarpoides \N \N \N \N \N 101280 C.floridana Carex Carex floridana \N \N \N \N \N 101281 H.glabripes Hydrangea Hydrangea glabripes \N \N \N \N \N 101282 R.lapponicus Ranunculus Ranunculus lapponicus \N \N \N \N \N 101283 G.baculifera Geonoma Geonoma baculifera \N \N \N \N \N 101284 \N subspecies Digitalis purpurea subsp. toletana \N \N \N \N \N 101285 \N genus Dayia \N \N \N \N \N 101286 M.laciniata Mentzelia Mentzelia laciniata \N \N \N \N \N 101287 C.multiflorus Calopogon Calopogon multiflorus \N \N \N \N \N 101288 D.menendezii Dendriopoterium Dendriopoterium menendezii \N \N \N \N \N 101289 X.parvifolia Xantonnea Xantonnea parvifolia \N \N \N \N \N 101290 P.stenoptera Pterocarya Pterocarya stenoptera \N \N \N \N \N 101291 E.foliosus Erigeron Erigeron foliosus \N \N \N \N \N 101292 \N genus Gingidia \N \N \N \N \N 101293 C.curtissii Copernicia Copernicia curtissii \N \N \N \N \N 101294 M.gatesiae Mimosa Mimosa gatesiae \N \N \N \N \N 101295 D.purpusii Dalea Dalea purpusii \N \N \N \N \N 101296 S.costata Schefflera Schefflera costata \N \N \N \N \N 101297 \N tribe Napeantheae \N \N \N \N \N 101298 S.uniflora Salicornia Salicornia uniflora \N \N \N \N \N 101299 \N genus Pepinia \N \N \N \N \N 101300 S.grandis Symplocos Symplocos grandis \N \N \N \N \N 101301 M.1143 Massonia Massonia sp. Wetschnig 1143 \N \N \N \N \N 101302 S.hypsobates Senecio Senecio hypsobates \N \N \N \N \N 101303 E.aurea Eucnide Eucnide aurea \N \N \N \N \N 101304 \N genus Hubertia \N \N \N \N \N 101305 C.helenioides Carduncellus Carduncellus helenioides \N \N \N \N \N 101306 M.callunoides Mniothamnea Mniothamnea callunoides \N \N \N \N \N 101307 T.W2352 Telipogon Telipogon sp. Whitten W2352 \N \N \N \N \N 101308 C.rigidum Cestrum Cestrum rigidum \N \N \N \N \N 101309 T.skirrophorum Trichanthodium Trichanthodium skirrophorum \N \N \N \N \N 101310 E.caboverdeanum Erysimum Erysimum caboverdeanum \N \N \N \N \N 101311 C.theodori-friesii Cliffortia Cliffortia theodori-friesii \N \N \N \N \N 101312 S.papillosa Sagittaria Sagittaria papillosa \N \N \N \N \N 101313 M.squamulata Meliosma Meliosma squamulata \N \N \N \N \N 101314 N.perezlarae Narcissus Narcissus x perezlarae \N \N \N \N \N 101315 \N no rank Orobanchaceae incertae sedis \N \N \N \N \N 101316 D.panthaica Dioscorea Dioscorea panthaica \N \N \N \N \N 101317 P.heterosticta Psychotria Psychotria heterosticta \N \N \N \N \N 101318 Z.SL14 Zeylanidium Zeylanidium sp. SL14 \N \N \N \N \N 101319 P.'Madagascar' Pittosporum Pittosporum sp. 'Madagascar' \N \N \N \N \N 101320 L.2008/86 Limonium Limonium sp. 2008/86 \N \N \N \N \N 101321 P.nevadensis Potentilla Potentilla nevadensis \N \N \N \N \N 101322 C.tentaculata Caladenia Caladenia tentaculata \N \N \N \N \N 101323 \N genus Heliopsis \N \N \N \N \N 101324 P.antiscorbutica Pringlea Pringlea antiscorbutica \N \N \N \N \N 101325 C.microcarpum Calligonum Calligonum microcarpum \N \N \N \N \N 101326 A.tauschii Aegilops Aegilops bicornis x Aegilops tauschii \N \N \N \N \N 101327 T.erythrospermum Taraxacum Taraxacum erythrospermum \N \N \N \N \N 101328 E.setosa Euphorbia Euphorbia setosa \N \N \N \N \N 101329 P.pseudomelampyriflora Pedicularis Pedicularis pseudomelampyriflora \N \N \N \N \N 101330 A.coranica Ammocharis Ammocharis coranica \N \N \N \N \N 101331 I.orientalis Inula Inula orientalis \N \N \N \N \N 101332 \N genus Lophogyne \N \N \N \N \N 101333 D.tamifolia Dalechampia Dalechampia tamifolia \N \N \N \N \N 101334 P.medusina Pinguicula Pinguicula medusina \N \N \N \N \N 101335 A.tonkinensis Artocarpus Artocarpus tonkinensis \N \N \N \N \N 101336 H.magnibracteata Hemiboea Hemiboea magnibracteata \N \N \N \N \N 101337 C.rhipidophylla Crataegus Crataegus rhipidophylla \N \N \N \N \N 101338 D.murrayi Draba Draba murrayi \N \N \N \N \N 101339 S.latifolia Swartzia Swartzia latifolia \N \N \N \N \N 101340 P.inodora Plumeria Plumeria inodora \N \N \N \N \N 101341 A.1051 Alpinia Alpinia aff. calycodes Baker 1051 \N \N \N \N \N 101342 P.longistipulata Palicourea Palicourea longistipulata \N \N \N \N \N 101343 \N subspecies Aphanocalyx microphyllus subsp. compactus \N \N \N \N \N 101344 \N genus Rapanea \N \N \N \N \N 101345 E.millotii Exacum Exacum millotii \N \N \N \N \N 101346 O.iberica Onobrychis Onobrychis iberica \N \N \N \N \N 101347 F.bergeriana Felicia Felicia bergeriana \N \N \N \N \N 101348 P.aualites Pulicaria Pulicaria aualites \N \N \N \N \N 101349 C.pumila Crotalaria Crotalaria pumila \N \N \N \N \N 101350 W.arborea Wrightia Wrightia arborea \N \N \N \N \N 101351 D.cundeeleensis Dicrastylis Dicrastylis cundeeleensis \N \N \N \N \N 101352 H.cuneifolia Hemigenia Hemigenia cuneifolia \N \N \N \N \N 101353 I.hermona Iris Iris hermona \N \N \N \N \N 101354 M.neglecta Moraea Moraea neglecta \N \N \N \N \N 101355 R.edanoi Rhododendron Rhododendron edanoi \N \N \N \N \N 101356 I.hiernii Ixora Ixora hiernii \N \N \N \N \N 101357 D.collina Delarbrea Delarbrea collina \N \N \N \N \N 101358 \N genus Aniba \N \N \N \N \N 101359 E.pensilis Echinocereus Echinocereus pensilis \N \N \N \N \N 101360 \N varietas Lotus scoparius var. scoparius \N \N \N \N \N 101361 C.aristata Chaetachme Chaetachme aristata \N \N \N \N \N 101362 B.grayi Barbarea Barbarea grayi \N \N \N \N \N 101363 D.dawsonii Dyckia Dyckia dawsonii \N \N \N \N \N 101364 L.minus Lachnocaulon Lachnocaulon minus \N \N \N \N \N 101365 A.ternata Arracacia Arracacia ternata \N \N \N \N \N 101366 A.biternata Actaea Actaea biternata \N \N \N \N \N 101367 C.backii Carex Carex backii \N \N \N \N \N 101368 J.foliolosa Jamesbrittenia Jamesbrittenia foliolosa \N \N \N \N \N 101369 G.longifolia Gaertnera Gaertnera longifolia \N \N \N \N \N 101370 L.ferruginea Lyonia Lyonia ferruginea stagger-bush \N \N \N \N 101371 S.hemilamprum Syzygium Syzygium hemilamprum \N \N \N \N \N 101372 F.secunda Ficinia Ficinia secunda \N \N \N \N \N 101373 M.tomentosa Manulea Manulea tomentosa \N \N \N \N \N 101374 P.marequitense Piper Piper marequitense \N \N \N \N \N 101375 C.pilosa Castilleja Castilleja pilosa \N \N \N \N \N 101376 T.kirchhoffiana Tillandsia Tillandsia kirchhoffiana \N \N \N \N \N 101377 M.glaucescens Myrceugenia Myrceugenia glaucescens \N \N \N \N \N 101378 \N genus Rutidosis \N \N \N \N \N 101379 H.SRD-2010 Hydrocotyle Hydrocotyle sp. SRD-2010 \N \N \N \N \N 101380 Z.foetidum Zygophyllum Zygophyllum foetidum \N \N \N \N \N 101381 C.densiflora Calanthe Calanthe densiflora \N \N \N \N \N 101382 N.arequipensis Nolana Nolana arequipensis \N \N \N \N \N 101383 D.ropourea Diospyros Diospyros ropourea \N \N \N \N \N 101384 M.longifolia Mareyopsis Mareyopsis longifolia \N \N \N \N \N 101385 C.parviflorus Cyrtanthus Cyrtanthus parviflorus \N \N \N \N \N 101386 N.tovariana Nolana Nolana tovariana \N \N \N \N \N 101387 P.aromaticum Pediomelum Pediomelum aromaticum \N \N \N \N \N 101388 C.hookerii Calibanus Calibanus hookerii \N \N \N \N \N 101389 P.lauracea Pouteria Pouteria lauracea \N \N \N \N \N 101390 T.americana Tilia Tilia americana American basswood,American lime,American linden \N \N \N \N 101391 \N genus Wendtia \N \N \N \N \N 101392 C.balfourii Cocculus Cocculus balfourii \N \N \N \N \N 101393 \N genus Anchusella \N \N \N \N \N 101394 S.hirsuta Scorzonera Scorzonera hirsuta \N \N \N \N \N 101395 K.siamensis Kaempferia Kaempferia siamensis \N \N \N \N \N 101396 U.cornuta Utricularia Utricularia cornuta horned bladderwort \N \N \N \N 101397 \N varietas Dracaena reflexa aff. var. condensata MR112 \N \N \N \N \N 101398 \N subtribe Mauritiinae \N \N \N \N \N 101399 H.floribunda Haplolobus Haplolobus floribunda \N \N \N \N \N 101400 S.9215 Simaba Simaba sp. Dunlop 9215 \N \N \N \N \N 101401 S.heterolepis Sporobolus Sporobolus heterolepis \N \N \N \N \N 101402 C.speciosa Campanula Campanula speciosa \N \N \N \N \N 101403 A.kochii Anagallis Anagallis kochii \N \N \N \N \N 101404 A.watsoniana Alocasia Alocasia watsoniana \N \N \N \N \N 101405 \N varietas Mimosa montana var. montana \N \N \N \N \N 101406 M.spathulata Melaleuca Melaleuca spathulata \N \N \N \N \N 101407 V.lucasiana Vitekorchis Vitekorchis lucasiana \N \N \N \N \N 101408 J.ornata Jackiopsis Jackiopsis ornata \N \N \N \N \N 101409 C.rockii Cardamine Cardamine rockii \N \N \N \N \N 101410 C.hispanica Consolida Consolida hispanica \N \N \N \N \N 101411 H.artabirense Hieracium Hieracium artabirense \N \N \N \N \N 101412 L.koehneana Lonicera Lonicera koehneana \N \N \N \N \N 101413 S.vernicosa Stevia Stevia vernicosa \N \N \N \N \N 101414 \N genus Amicia \N \N \N \N \N 101415 M.diversifolia Mitella Mitella diversifolia \N \N \N \N \N 101416 B.semiundulata Brachiaria Brachiaria semiundulata \N \N \N \N \N 101417 \N genus Rouya \N \N \N \N \N 101418 D.sylvestris Dianthus Dianthus sylvestris wood pink \N \N \N \N 101419 \N no rank apioid superclade \N \N \N \N \N 101420 Z.juniperifolia Zinnia Zinnia juniperifolia \N \N \N \N \N 101421 M.latifolia Meryta Meryta latifolia \N \N \N \N \N 101422 C.circinnata Carex Carex circinnata \N \N \N \N \N 101423 D.cochinchinense Dialium Dialium cochinchinense \N \N \N \N \N 101424 S.glabrescens Styrax Styrax glabrescens \N \N \N \N \N 101425 P.delavayi Paris Paris delavayi \N \N \N \N \N 101426 G.procumbens Gynura Gynura procumbens \N \N \N \N \N 101427 P.reptilis Peperomia Peperomia reptilis \N \N \N \N \N 101428 R.copallina Rhus Rhus copallina flameleaf sumac,shining sumac \N \N \N \N 101429 \N genus Coptis goldthread \N \N \N \N 101430 \N genus Neja \N \N \N \N \N 101431 M.perfoliatum Myagrum Myagrum perfoliatum \N \N \N \N \N 101432 \N genus Cyanostegia \N \N \N \N \N 101433 C.26-1 Cornus Cornus cf. canadensis Xiang and Fan 26-1 \N \N \N \N \N 101434 Q.rotundifolia Quercus Quercus rotundifolia \N \N \N \N \N 101435 A.densiflora Arctostaphylos Arctostaphylos densiflora \N \N \N \N \N 101436 L.macrum Lomatophyllum Lomatophyllum macrum \N \N \N \N \N 101437 C.sarcopetalus Croton Croton sarcopetalus \N \N \N \N \N 101438 A.orlandiana Aechmea Aechmea orlandiana \N \N \N \N \N 101439 B.thibetica Berneuxia Berneuxia thibetica \N \N \N \N \N 101440 C.ipecacuanha Carapichea Carapichea ipecacuanha ipecac,raicilla \N \N \N \N 101441 E.stokoeanthus Erica Erica stokoeanthus \N \N \N \N \N 101442 H.grisebachii Hedyosmum Hedyosmum grisebachii \N \N \N \N \N 101443 S.vulcanicus Stigmatodactylus Stigmatodactylus vulcanicus \N \N \N \N \N 101444 F.pugense Fagopyrum Fagopyrum pugense \N \N \N \N \N 101445 P.nuttallii Polytaenia Polytaenia nuttallii \N \N \N \N \N 101446 P.edelbergii Primula Primula edelbergii \N \N \N \N \N 101447 F.marginata Festuca Festuca marginata \N \N \N \N \N 101448 S.urticans Solanum Solanum urticans \N \N \N \N \N 101449 \N genus Ceratotheca \N \N \N \N \N 101450 D.cornuta Disa Disa cornuta \N \N \N \N \N 101451 M.modesta Montiopsis Montiopsis modesta \N \N \N \N \N 101452 H.inflata Hierobotana Hierobotana inflata \N \N \N \N \N 101453 P.angolense Peucedanum Peucedanum angolense \N \N \N \N \N 101454 L.karelinii Leymus Leymus karelinii \N \N \N \N \N 101455 H.velutinum Helictonema Helictonema velutinum \N \N \N \N \N 101456 A.humistrata Asclepias Asclepias humistrata \N \N \N \N \N 101457 H.novoguineensis Homalanthus Homalanthus novoguineensis \N \N \N \N \N 101458 X.HTC1380 x Tritordeum x Tritordeum sp. HTC1380 \N \N \N \N \N 101459 M.moelleriana Mammillaria Mammillaria moelleriana \N \N \N \N \N 101460 D.rodriguesiana Dombeya Dombeya rodriguesiana \N \N \N \N \N 101461 A.samniticus Adenocarpus Adenocarpus samniticus \N \N \N \N \N 101462 C.pseudosilene Cuphea Cuphea pseudosilene \N \N \N \N \N 101463 L.ronliesneri Lissocarpa Lissocarpa ronliesneri \N \N \N \N \N 101464 L.naufragorum Lepidium Lepidium naufragorum \N \N \N \N \N 101465 I.trichocalyx Ixora Ixora trichocalyx \N \N \N \N \N 101466 E.riparia Erica Erica riparia \N \N \N \N \N 101467 T.hexaedrophorus Thelocactus Thelocactus hexaedrophorus \N \N \N \N \N 101468 \N genus Pyrorchis \N \N \N \N \N 101469 P.loefgrenii Passiflora Passiflora loefgrenii \N \N \N \N \N 101470 R.088 Resnova Resnova sp. Lebatha 088 \N \N \N \N \N 101471 L.liversidgei Leptospermum Leptospermum liversidgei \N \N \N \N \N 101472 \N subspecies Olearia elliptica subsp. elliptica \N \N \N \N \N 101473 A.villosum Alangium Alangium villosum \N \N \N \N \N 101474 P.cinereum Pleurothyrium Pleurothyrium cinereum \N \N \N \N \N 101475 S.cuneata Saxifraga Saxifraga cuneata \N \N \N \N \N 101476 P.hemigenioides Pityrodia Pityrodia hemigenioides \N \N \N \N \N 101477 M.changii Miscanthus Miscanthus changii \N \N \N \N \N 101478 N.botschantzevii Neuroloma Neuroloma botschantzevii \N \N \N \N \N 101479 A.annulatus Artocarpus Artocarpus annulatus \N \N \N \N \N 101480 L.sp. Lisianthius Lisianthius sp. \N \N \N \N \N 101481 T.billardierei Tetracera Tetracera billardierei \N \N \N \N \N 101482 L.stevenii Laserpitium Laserpitium stevenii \N \N \N \N \N 101483 O.furcatus Oreobolus Oreobolus furcatus \N \N \N \N \N 101484 \N genus Psammisia \N \N \N \N \N 101485 R.6532 Rondeletia Rondeletia sp. Areces 6532 \N \N \N \N \N 101486 G.fasselata Genista Genista fasselata \N \N \N \N \N 101487 S.discolor Sideritis Sideritis discolor \N \N \N \N \N 101488 S.blepharophylla Salvia Salvia blepharophylla \N \N \N \N \N 101489 P.humilis Plagiobothrys Plagiobothrys humilis \N \N \N \N \N 101490 P.rosea Pentaschistis Pentameris rosea \N \N \N \N \N 101491 A.leptocarpa Atriplex Atriplex leptocarpa \N \N \N \N \N 101492 M.lanceolatus Mallotus Mallotus lanceolatus \N \N \N \N \N 101493 D.conferta Disa Disa conferta \N \N \N \N \N 101494 S.integripetala Silene Silene integripetala \N \N \N \N \N 101495 P.amplexicaulis Protea Protea amplexicaulis \N \N \N \N \N 101496 P.ridleyi Piptospatha Piptospatha ridleyi \N \N \N \N \N 101497 \N subspecies Helichrysum stoechas subsp. stoechas \N \N \N \N \N 101498 \N genus Avellinia \N \N \N \N \N 101499 H.afzelii Hymenostegia Hymenostegia afzelii \N \N \N \N \N 101500 B.vaginatum Bunium Bunium vaginatum \N \N \N \N \N 101501 P.walkeri Puccinellia Puccinellia walkeri \N \N \N \N \N 101502 D.ferruginescens Diospyros Diospyros ferruginescens \N \N \N \N \N 101503 R.alpina Rhamnus Rhamnus alpina \N \N \N \N \N 101504 D.barbeyi Delphinium Delphinium barbeyi \N \N \N \N \N 101505 T.zernyi Thalictrum Thalictrum zernyi \N \N \N \N \N 101506 E.abyssinicum Erucastrum Erucastrum abyssinicum \N \N \N \N \N 101508 S.alpina Sinolimprichtia Sinolimprichtia alpina \N \N \N \N \N 101509 A.curassavica Asclepias Asclepias curassavica \N \N \N \N \N 101510 T.glauca Typha Typha x glauca \N \N \N \N \N 101511 C.dudleyana Clarkia Clarkia dudleyana \N \N \N \N \N 101512 Z.sulphureum Zingiber Zingiber sulphureum \N \N \N \N \N 101513 C.micaceum Colchicum Colchicum micaceum \N \N \N \N \N 101514 M.stellatum Maianthemum Maianthemum stellatum \N \N \N \N \N 101515 G.grandiflorus Gerrardanthus Gerrardanthus grandiflorus \N \N \N \N \N 101516 H.perplexus Halimolobos Halimolobos perplexus \N \N \N \N \N 101517 M.speciosa Montanoa Montanoa speciosa \N \N \N \N \N 101518 A.asterias Astragalus Astragalus asterias \N \N \N \N \N 101519 \N genus Traubia \N \N \N \N \N 101520 \N subspecies Hordeum pubiflorum subsp. pubiflorum \N \N \N \N \N 101521 S.controversa Saussurea Saussurea controversa \N \N \N \N \N 101522 T.rotundifolia Tococa Tococa rotundifolia \N \N \N \N \N 101523 T.tragophoba Tillandsia Tillandsia tragophoba \N \N \N \N \N 101524 L.dunnii Lobelia Lobelia dunnii \N \N \N \N \N 101525 W.tinctoria Weinmannia Weinmannia tinctoria \N \N \N \N \N 101526 N.punctoria Neesenbeckia Neesenbeckia punctoria \N \N \N \N \N 101527 \N genus Priamosia \N \N \N \N \N 101528 C.fractum Cyrtochilum Cyrtochilum fractum \N \N \N \N \N 101529 A.moghanica Anthemis Anthemis moghanica \N \N \N \N \N 101530 M.JAC Macrocarpaea Macrocarpaea sp. JAC \N \N \N \N \N 101531 \N genus Dicentra \N \N \N \N \N 101532 C.arboreus Cytisus Cytisus arboreus \N \N \N \N \N 101533 A.cirrifer Amorphophallus Amorphophallus cirrifer \N \N \N \N \N 101534 C.annua Carrichtera Carrichtera annua \N \N \N \N \N 101535 D.XMW-2002-9 Dendrobium Dendrobium sp. XMW-2002-9 \N \N \N \N \N 101536 B.pachypodum Bunium Bunium pachypodum \N \N \N \N \N 101537 R.intrusa Ruschia Ruschia intrusa \N \N \N \N \N 101538 C.reniformis Carex Carex reniformis \N \N \N \N \N 101539 L.8-CEH Lupinus Lupinus sp. 8-CEH \N \N \N \N \N 101540 A.chinensis Actinidia Actinidia chinensis \N \N \N \N \N 101541 L.spectabilis Lampranthus Lampranthus spectabilis \N \N \N \N \N 101542 C.63850 Cuscuta Cuscuta sp. Madsen 63850 \N \N \N \N \N 101543 S.tomentosa Saussurea Saussurea tomentosa \N \N \N \N \N 101544 P.brandegei Polemonium Polemonium brandegei \N \N \N \N \N 101545 M.8 Malmea Malmea sp. Chatrou et al. 8 \N \N \N \N \N 101546 E.pinnatum Epimedium Epimedium pinnatum \N \N \N \N \N 101547 C.macropodum Chaerophyllum Chaerophyllum macropodum \N \N \N \N \N 101548 \N genus Docyniopsis \N \N \N \N \N 101549 U.biloba Utricularia Utricularia biloba \N \N \N \N \N 101550 \N varietas Banksia leptophylla var. leptophylla \N \N \N \N \N 101551 \N genus Nicandra \N \N \N \N \N 101552 I.setosa Ivesia Ivesia setosa \N \N \N \N \N 101553 D.ibicensis Diplotaxis Diplotaxis ibicensis \N \N \N \N \N 101554 E.exilis Eria Eria exilis \N \N \N \N \N 101555 M.erythrosperma Mammillaria Mammillaria erythrosperma \N \N \N \N \N 101556 O.petraea Onobrychis Onobrychis petraea \N \N \N \N \N 101557 W.elongata Wolffia Wolffia elongata \N \N \N \N \N 101558 Q.agrifolia Quercus Quercus agrifolia coast live oak \N \N \N \N 101559 C.trichotomum Clerodendrum Clerodendrum trichotomum \N \N \N \N \N 101560 C.magnificum Cercidiphyllum Cercidiphyllum magnificum \N \N \N \N \N 101561 N.revoluta Nassauvia Nassauvia revoluta \N \N \N \N \N 101562 P.caesia Pinanga Pinanga caesia \N \N \N \N \N 101563 \N genus Trichadenia \N \N \N \N \N 101564 S.ecoronata Secamone Secamone ecoronata \N \N \N \N \N 101565 V.tripinnata Vitex Vitex tripinnata \N \N \N \N \N 101566 P.12541 Papaver Papaver sp. Goldblatt 12541 \N \N \N \N \N 101567 C.costaricana Chamaedorea Chamaedorea costaricana \N \N \N \N \N 101568 H.94191 Hosta Hosta sp. Qiu 94191 \N \N \N \N \N 101569 \N varietas Codonopsis pilosula var. modesta \N \N \N \N \N 101570 \N varietas Ampelopsis glandulosa var. hancei \N \N \N \N \N 101571 S.'Socotra' Suaeda Suaeda sp. 'Socotra' \N \N \N \N \N 101572 C.crenata Castanea Castanea crenata Japanese chestnut,kuri \N \N \N \N 101573 C.fruticulosa Cyathobasis Cyathobasis fruticulosa \N \N \N \N \N 101574 D.karatifolia Diplasia Diplasia karatifolia \N \N \N \N \N 101575 E.congesta Eleocharis Eleocharis congesta \N \N \N \N \N 101576 C.racemiflora Coccinia Coccinia racemiflora \N \N \N \N \N 101577 E.ankarensis Euphorbia Euphorbia ankarensis \N \N \N \N \N 101578 \N genus Plettkea \N \N \N \N \N 101579 E.FS393 Eugenia Eugenia cf. rostrata FS393 \N \N \N \N \N 101580 C.anthemoides Calotis Calotis anthemoides \N \N \N \N \N 101581 P.arachnifera Poa Poa arachnifera Texas bluegrass \N \N \N \N 101582 A.16276 Anthemis Anthemis sp. Vogt 16276 \N \N \N \N \N 101583 C.scandens Commicarpus Commicarpus scandens \N \N \N \N \N 101584 C.glaucinus Centroplacus Centroplacus glaucinus \N \N \N \N \N 101585 A.circinalis Asclepias Asclepias circinalis \N \N \N \N \N 101586 R.fauriei Rhododendron Rhododendron fauriei \N \N \N \N \N 101587 S.supraneanae Smithatris Smithatris supraneanae \N \N \N \N \N 101588 P.chino Pleioblastus Pleioblastus chino \N \N \N \N \N 101589 O.cuzcensis Oxalis Oxalis cuzcensis \N \N \N \N \N 101590 \N genus Eremophila \N \N \N \N \N 101591 C.biflora Collomia Collomia biflora \N \N \N \N \N 101592 P.ditimena Protorhus Protorhus ditimena \N \N \N \N \N 101593 O.dodekanensis Ophrys Ophrys dodekanensis \N \N \N \N \N 101594 O.secundiflorus Ozothamnus Ozothamnus secundiflorus \N \N \N \N \N 101595 B.purpurea Bletia Bletia purpurea pinepink \N \N \N \N 101596 \N genus Englerina \N \N \N \N \N 101597 C.southwickii Citrus Citrus southwickii \N \N \N \N \N 101598 A.Bo011 Alocasia Alocasia sp. Bo011 \N \N \N \N \N 101599 \N genus Dactylaena \N \N \N \N \N 101600 B.repanda Brassica Brassica repanda \N \N \N \N \N 101601 W.densifolia Wahlenbergia Wahlenbergia densifolia \N \N \N \N \N 101602 A.napalensis Amorphophallus Amorphophallus napalensis \N \N \N \N \N 101603 \N genus Stenomeris \N \N \N \N \N 101604 \N genus Alsomitra \N \N \N \N \N 101605 T.americana Theophrasta Theophrasta americana \N \N \N \N \N 101606 \N genus Macrohasseltia \N \N \N \N \N 101607 D.cardinalis Disa Disa cardinalis \N \N \N \N \N 101608 \N genus Haumania \N \N \N \N \N 101609 H.tamariscifolium Haloxylon Haloxylon tamariscifolium \N \N \N \N \N 101610 A.confusa Anthemis Anthemis confusa \N \N \N \N \N 101611 P.brieyi Psychotria Psychotria brieyi \N \N \N \N \N 101612 E.hirtiflora Erica Erica hirtiflora \N \N \N \N \N 101613 S.sagittifolia Spathicarpa Spathicarpa sagittifolia \N \N \N \N \N 101614 C.armena Centaurea Centaurea armena \N \N \N \N \N 101615 M.vallisbelli Moraea Moraea vallisbelli \N \N \N \N \N 101616 N.elliptica Nesiota Nesiota elliptica \N \N \N \N \N 101617 N.divaricata Nolana Nolana divaricata \N \N \N \N \N 101618 R.racemifera Rhigiocarya Rhigiocarya racemifera \N \N \N \N \N 101619 P.dedeccae Paspalum Paspalum dedeccae \N \N \N \N \N 101620 C.rubiginosa Cupania Cupania rubiginosa \N \N \N \N \N 101621 H.sabaudum Hieracium Hieracium sabaudum \N \N \N \N \N 101622 L.pendula Lachnaea Lachnaea pendula \N \N \N \N \N 101623 \N genus Pterocypsela \N \N \N \N \N 101624 T.capitata Tarasa Tarasa capitata \N \N \N \N \N 101625 A.pinguis Aspalathus Aspalathus pinguis \N \N \N \N \N 101626 \N family Lardizabalaceae \N \N \N \N \N 101627 H.forrestii Hedychium Hedychium forrestii \N \N \N \N \N 101628 P.lamellosa Pescatoria Pescatoria lamellosa \N \N \N \N \N 101629 A.lactiflora Androsace Androsace lactiflora \N \N \N \N \N 101630 \N genus Ibicella \N \N \N \N \N 101631 W.tarmaensis Werauhia Werauhia tarmaensis \N \N \N \N \N 101632 \N subspecies Daucus carota subsp. gadecaei \N \N \N \N \N 101633 A.schaffneri Asclepias Asclepias schaffneri \N \N \N \N \N 101634 T.scutatum Trifolium Trifolium scutatum \N \N \N \N \N 101635 \N tribe Manuleae \N \N \N \N \N 101636 H.agyokuana Hetaeria Hetaeria agyokuana \N \N \N \N \N 101637 G.gasparrinii Genista Genista gasparrinii \N \N \N \N \N 101638 G.chiloense Geum Geum chiloense \N \N \N \N \N 101639 \N subspecies Daviesia ulicifolia subsp. ruscifolia \N \N \N \N \N 101640 C.argentea Cyrtogonone Cyrtogonone argentea \N \N \N \N \N 101641 P.dewevrei Pauridiantha Pauridiantha dewevrei \N \N \N \N \N 101642 D.strictus Diptychocarpus Diptychocarpus strictus \N \N \N \N \N 101643 F.loscosii Ferula Ferula loscosii \N \N \N \N \N 101644 M.melissophyllum Melittis Melittis melissophyllum \N \N \N \N \N 101645 G.98-17 Globba Globba aff. schomburgkii Williams 98-17 \N \N \N \N \N 101646 B.complanatum Bulbophyllum Bulbophyllum complanatum \N \N \N \N \N 101647 D.thapsi Digitalis Digitalis thapsi \N \N \N \N \N 101648 D.nummularia Dorstenia Dorstenia nummularia \N \N \N \N \N 101649 C.lanceolatum Ceratostema Ceratostema lanceolatum \N \N \N \N \N 101650 P.reticulata Polylepis Polylepis reticulata \N \N \N \N \N 101651 G.flavescens Grewia Grewia flavescens \N \N \N \N \N 101652 O.glacialis Oxygraphis Oxygraphis glacialis \N \N \N \N \N 101653 \N varietas Aletris pauciflora var. khasiana \N \N \N \N \N 101654 I.pelagica Ixora Ixora pelagica \N \N \N \N \N 101655 H.pauciflora Hoya Hoya pauciflora \N \N \N \N \N 101656 C.whiteae Cymbidium Cymbidium whiteae \N \N \N \N \N 101657 B.albidum Blastocaulon Blastocaulon albidum \N \N \N \N \N 101658 C.parvum Cullen Cullen parvum \N \N \N \N \N 101659 E.neohumbertii Euphorbia Euphorbia neohumbertii \N \N \N \N \N 101660 S.gracilis Swartzia Swartzia gracilis \N \N \N \N \N 101661 \N genus Hapaline \N \N \N \N \N 101662 M.breweri Mitella Mitella breweri \N \N \N \N \N 101663 Y.uniramosa Yushania Yushania uniramosa \N \N \N \N \N 101664 G.flavibracteata Globba Globba flavibracteata \N \N \N \N \N 101665 \N genus Chouardia \N \N \N \N \N 101666 B.tomentosa Barbacenia Barbacenia tomentosa \N \N \N \N \N 101667 \N genus Tweedia \N \N \N \N \N 101668 B.pilosa Babiana Babiana pilosa \N \N \N \N \N 101669 P.zuvandicus Psephellus Psephellus zuvandicus \N \N \N \N \N 101670 \N genus Cosmelia \N \N \N \N \N 101671 A.papuana Anacolosa Anacolosa papuana \N \N \N \N \N 101672 L.carronii Lysiphyllum Lysiphyllum carronii \N \N \N \N \N 101673 S.Sspluis55 Sobralia Sobralia sp. Sspluis55 \N \N \N \N \N 101674 R.crenulatum Rhytidophyllum Rhytidophyllum crenulatum \N \N \N \N \N 101675 V.AB-2009 Vanilla Vanilla cf. ensifolia AB-2009 \N \N \N \N \N 101676 R.verrucosa Rinorea Rinorea verrucosa \N \N \N \N \N 101677 F.fascicularis Ficaria Ficaria fascicularis \N \N \N \N \N 101678 C.divisa Carex Carex divisa \N \N \N \N \N 101679 M.nepalensis Mimulus Mimulus nepalensis \N \N \N \N \N 101680 C.repens Croton Croton repens \N \N \N \N \N 101681 P.langebergensis Pseudoselago Pseudoselago langebergensis \N \N \N \N \N 101682 \N subspecies Stephanomeria exigua subsp. macrocarpa \N \N \N \N \N 101683 P.acroleuca Poa Poa acroleuca \N \N \N \N \N 101684 O.velutina Opuntia Opuntia velutina \N \N \N \N \N 101685 E.EHR-2010 Eleocharis Eleocharis aff. nana EHR-2010 \N \N \N \N \N 101686 \N varietas Allium cepa var. aggregatum shallot \N \N \N \N 101687 M.molitor Maxillaria Maxillaria molitor \N \N \N \N \N 101688 H.dombeyanum Hedyosmum Hedyosmum dombeyanum \N \N \N \N \N 101689 P.dioscorides Pluchea Pluchea dioscorides \N \N \N \N \N 101690 C.heyana Catalepidia Catalepidia heyana \N \N \N \N \N 101691 A.penduliflora Aoranthe Aoranthe penduliflora \N \N \N \N \N 101692 \N no rank Saccharum hybrid cultivar Co 7201 \N \N \N \N \N 101693 \N subspecies Poa pratensis subsp. alpigena \N \N \N \N \N 101694 C.nobilis Citrus Citrus nobilis King of Siam,kunembo,tangor \N \N \N \N 101695 \N tribe Epithemateae \N \N \N \N \N 101696 G.costaricensis Gomphichis Gomphichis costaricensis \N \N \N \N \N 101697 C.tomentella Celmisia Celmisia tomentella \N \N \N \N \N 101698 G.grisea Gaertnera Gaertnera grisea \N \N \N \N \N 101699 G.ephedroides Genista Genista ephedroides \N \N \N \N \N 101700 S.carangolensis Sinningia Sinningia carangolensis \N \N \N \N \N 101701 I.pedicellaris Ipomoea Ipomoea pedicellaris \N \N \N \N \N 101702 \N varietas Lysionotus pauciflorus var. ikedae \N \N \N \N \N 101703 D.himalaense Daphniphyllum Daphniphyllum himalaense \N \N \N \N \N 101704 \N genus Lydenburgia \N \N \N \N \N 101705 X.baltica x Calammophila x Calammophila baltica \N \N \N \N \N 101708 S.cadiscus Senecio Senecio cadiscus \N \N \N \N \N 101709 \N subspecies Psathyrostachys rupestris subsp. rupestris \N \N \N \N \N 101710 S.linnaeanum Solanum Solanum linnaeanum Sodom-apple \N \N \N \N 101711 \N genus Forsteronia \N \N \N \N \N 101712 L.pseudopapillosum Lepidium Lepidium pseudopapillosum \N \N \N \N \N 101713 \N subspecies Cistus populifolius subsp. major \N \N \N \N \N 101714 L.turkestanicus Leonurus Leonurus turkestanicus \N \N \N \N \N 101715 \N family Altingiaceae \N \N \N \N \N 101716 P.formosanum Palaquium Palaquium formosanum \N \N \N \N \N 101717 C.commutatus Cytisus Cytisus commutatus \N \N \N \N \N 101718 E.astyla Euphorbia Euphorbia astyla \N \N \N \N \N 101719 N.ericoides Nierembergia Nierembergia ericoides \N \N \N \N \N 101720 \N varietas Magnolia nitida var. nitida \N \N \N \N \N 101721 B.medicinalis Bosistoa Bosistoa medicinalis \N \N \N \N \N 101722 A.nieuwenhuizii Alpinia Alpinia nieuwenhuizii \N \N \N \N \N 101723 T.ovalis Tetrastylis Tetrastylis ovalis \N \N \N \N \N 101724 \N genus Bifora \N \N \N \N \N 101725 C.intermedia Calectasia Calectasia intermedia \N \N \N \N \N 101726 P.pruinosa Physalis Physalis pruinosa \N \N \N \N \N 101727 M.ovalifolia Monimia Monimia ovalifolia \N \N \N \N \N 101728 R.discolor Rhynchotechum Rhynchotechum discolor \N \N \N \N \N 101729 S.obtusifolius Styrax Styrax obtusifolius \N \N \N \N \N 101730 P.puberula Pimpinella Pimpinella puberula \N \N \N \N \N 101731 A.kanisii Archidendron Archidendron kanisii \N \N \N \N \N 101732 A.grandiflora Abelia Abelia x grandiflora glossy abelia \N \N \N \N 101733 C.chilensis Conyza Conyza chilensis \N \N \N \N \N 101734 \N genus Tinopsis \N \N \N \N \N 101735 \N subspecies Cynoglottis chetikiana subsp. chetikiana \N \N \N \N \N 101736 \N genus Schiedeella \N \N \N \N \N 101737 \N varietas Miscanthus sinensis var. formosanus \N \N \N \N \N 101738 C.haydeniana Carex Carex haydeniana \N \N \N \N \N 101739 \N genus Eomecon \N \N \N \N \N 101740 Q.parviflora Quisqualis Quisqualis parviflora \N \N \N \N \N 101741 B.schultesii Bactris Bactris schultesii \N \N \N \N \N 101742 P.boliviana Pfeiffera Pfeiffera boliviana \N \N \N \N \N 101743 \N subspecies Euphorbia characias subsp. wulfenii \N \N \N \N \N 101744 \N genus Chaubardia \N \N \N \N \N 101745 P.bourgaei Peucedanum Peucedanum bourgaei \N \N \N \N \N 101746 C.rhodosperma Cryptocarya Cryptocarya rhodosperma \N \N \N \N \N 101747 C.mirabilis Cercestis Cercestis mirabilis \N \N \N \N \N 101748 K.lycopifolia Klasea Klasea lycopifolia \N \N \N \N \N 101749 P.kwangsiensis Phyllostachys Phyllostachys kwangsiensis \N \N \N \N \N 101750 C.bustamanta Cuphea Cuphea bustamanta \N \N \N \N \N 101751 \N genus Hornstedtia \N \N \N \N \N 101752 P.184 Philodendron Philodendron sp. Barabe and Archambault 184 \N \N \N \N \N 101753 D.slackii Drosera Drosera slackii \N \N \N \N \N 101754 A.haemanthoides Allium Allium haemanthoides \N \N \N \N \N 101755 N.umbrosa Nectandra Nectandra umbrosa \N \N \N \N \N 101756 G.schenckii Gazania Gazania schenckii \N \N \N \N \N 101757 L.howellii Lomatium Lomatium howellii Howell's biscuitroot \N \N \N \N 101758 B.glabrifolia Bursera Bursera glabrifolia \N \N \N \N \N 101759 T.parishii Trichostema Trichostema parishii \N \N \N \N \N 101760 G.stapelioides Gonolobus Gonolobus stapelioides \N \N \N \N \N 101761 \N genus Anisothrix \N \N \N \N \N 101762 W.mexicana Witheringia Witheringia mexicana \N \N \N \N \N 101763 M.decussata Melaleuca Melaleuca decussata \N \N \N \N \N 101764 \N subspecies Pimelea axiflora subsp. pubescens \N \N \N \N \N 101765 \N subspecies Poa hartzii subsp. ammophila \N \N \N \N \N 101766 N.acerifolia Neobrittonia Neobrittonia acerifolia \N \N \N \N \N 101767 S.edinense Solanum Solanum x edinense \N \N \N \N \N 101768 S.anomalum Satyrium Satyrium anomalum \N \N \N \N \N 101769 P.petunnikowii Prunus Prunus petunnikowii \N \N \N \N \N 101770 R.spectabilis Rauvolfia Rauvolfia spectabilis \N \N \N \N \N 101771 C.palustre Comarum Comarum palustre \N \N \N \N \N 101772 \N varietas Horkelia fusca var. filicoides \N \N \N \N \N 101773 A.brassii Alstonia Alstonia brassii \N \N \N \N \N 101774 H.pilosa Hippia Hippia pilosa \N \N \N \N \N 101775 D.HHG-D028 Draba Draba cf. lactea HHG-D028 \N \N \N \N \N 101776 C.humilis Cycladenia Cycladenia humilis \N \N \N \N \N 101777 Z.miniatum Zygophyllum Zygophyllum miniatum \N \N \N \N \N 101778 C.armata Colletia Colletia armata \N \N \N \N \N 101779 S.umbellulata Saxifraga Saxifraga umbellulata \N \N \N \N \N 101780 L.redowskii Lappula Lappula redowskii stickseed \N \N \N \N 101781 M.aesculifolia Manihot Manihot aesculifolia \N \N \N \N \N 101782 M.sensitiva Mimosa Mimosa sensitiva \N \N \N \N \N 101783 P.procera Phacelia Phacelia procera \N \N \N \N \N 101784 S.nelsonii Stevia Stevia nelsonii \N \N \N \N \N 101785 P.dissecta Palaua Palaua dissecta \N \N \N \N \N 101786 A.philoxeroides Alternanthera Alternanthera philoxeroides \N \N \N \N \N 101787 S.weirii Sisyrinchium Sisyrinchium weirii \N \N \N \N \N 101788 P.hispidum Pelargonium Pelargonium hispidum \N \N \N \N \N 101789 S.jabrense Solanum Solanum jabrense \N \N \N \N \N 101790 A.sealei Astragalus Astragalus sealei \N \N \N \N \N 101791 R.ramiflora Ruprechtia Ruprechtia ramiflora \N \N \N \N \N 101792 \N genus Saururus \N \N \N \N \N 101793 P.spithamea Psychotria Psychotria spithamea \N \N \N \N \N 101794 Z.citriodora Zieria Zieria citriodora \N \N \N \N \N 101795 A.ringens Arisaema Arisaema ringens \N \N \N \N \N 101796 C.gotlandica Corydalis Corydalis gotlandica \N \N \N \N \N 101797 V.baldwinii Vernonia Vernonia baldwinii \N \N \N \N \N 101798 P.officinalis Pterocarpus Pterocarpus officinalis lagunero,sangre de drago \N \N \N \N 101799 C.menthifolium Clinopodium Clinopodium menthifolium \N \N \N \N \N 101800 L.racemosa Liparia Liparia racemosa \N \N \N \N \N 101801 E.rubromarginata Etlingera Etlingera rubromarginata \N \N \N \N \N 101802 C.glabriflora Chimarrhis Chimarrhis glabriflora \N \N \N \N \N 101803 S.siehei Scilla Scilla siehei \N \N \N \N \N 101804 L.monadelphum Lilium Lilium monadelphum \N \N \N \N \N 101805 V.bogosensis Veronica Veronica bogosensis \N \N \N \N \N 101806 A.ursina Angelica Angelica ursina \N \N \N \N \N 101807 C.capitatus Cordylanthus Cordylanthus capitatus \N \N \N \N \N 101808 C.osseocarpa Clusia Clusia osseocarpa \N \N \N \N \N 101809 E.oblongifolia Euphorbia Euphorbia oblongifolia \N \N \N \N \N 101810 A.tomentella Anthemis Anthemis tomentella \N \N \N \N \N 101811 C.enodis Chorizandra Chorizandra enodis \N \N \N \N \N 101812 \N genus Naringi \N \N \N \N \N 101813 C.horombense Cyphostemma Cyphostemma horombense \N \N \N \N \N 101814 \N genus Alantsilodendron \N \N \N \N \N 101815 G.capensis Guthriea Guthriea capensis \N \N \N \N \N 101816 R.rufus Rubus Rubus rufus \N \N \N \N \N 101817 P.7312 Prescottia Prescottia aff. stachyodes Salazar 7312 \N \N \N \N \N 101818 R.alpina Rhodocoma Rhodocoma alpina \N \N \N \N \N 101819 G.affine Gnaphalium Gnaphalium affine \N \N \N \N \N 101820 B.sempervirens Buxus Buxus sempervirens \N \N \N \N \N 101821 A.redolens Acacia Acacia redolens \N \N \N \N \N 101822 C.koolauensis Cyanea Cyanea koolauensis \N \N \N \N \N 101823 E.lobata Eucnide Eucnide lobata \N \N \N \N \N 101824 C.parvula Camptandra Camptandra parvula \N \N \N \N \N 101825 A.nitida Alnus Alnus nitida \N \N \N \N \N 101826 S.macropodus Streptocarpus Streptocarpus macropodus \N \N \N \N \N 101827 V.scandens Valeriana Valeriana scandens \N \N \N \N \N 101828 O.hypogaea Okenia Okenia hypogaea \N \N \N \N \N 101829 N.prostrata Navarretia Navarretia prostrata \N \N \N \N \N 101830 B.hissaricum Bunium Bunium hissaricum \N \N \N \N \N 101831 B.truncata Burmeistera Burmeistera truncata \N \N \N \N \N 101832 \N genus Mendoravia \N \N \N \N \N 101833 \N genus Aenictophyton \N \N \N \N \N 101834 E.horizonthalonius Echinocactus Echinocactus horizonthalonius \N \N \N \N \N 101835 S.cymatopetalum Sedum Sedum cymatopetalum \N \N \N \N \N 101836 O.insularis Osmanthus Osmanthus insularis \N \N \N \N \N 101837 \N subspecies Claytonia perfoliata subsp. mexicana \N \N \N \N \N 101838 S.suberifolius Styrax Styrax suberifolius \N \N \N \N \N 101839 S.glaucescens Schisandra Schisandra glaucescens \N \N \N \N \N 101840 \N family Columelliaceae \N \N \N \N \N 101841 S.sandwicensis Sanicula Sanicula sandwicensis Hawai'i blacksnakeroot \N \N \N \N 101842 \N varietas Lespedeza fasciculiflora var. hengduanshanensis \N \N \N \N \N 101843 M.champaca Michelia Michelia baillonii x Michelia champaca \N \N \N \N \N 101844 S.Ecuador Schefflera Schefflera sp. Ecuador \N \N \N \N \N 101845 T.junceum Thinopyrum Thinopyrum junceum \N \N \N \N \N 101846 M.blancheana Medicago Medicago blancheana \N \N \N \N \N 101847 C.bisulca Cullumia Cullumia bisulca \N \N \N \N \N 101848 A.terminalis Acacia Acacia terminalis \N \N \N \N \N 101849 C.incompletus Cynodon Cynodon incompletus \N \N \N \N \N 101850 S.palosapis Shorea Shorea palosapis \N \N \N \N \N 101851 C.tessmannii Centropogon Centropogon tessmannii \N \N \N \N \N 101852 M.pallidus Mallotus Mallotus pallidus \N \N \N \N \N 101853 R.trilobum Ribes Ribes trilobum \N \N \N \N \N 101854 M.longifolia Miconia Miconia longifolia \N \N \N \N \N 101855 \N varietas Onosma echioides var. veronensis \N \N \N \N \N 101856 O.bullulata Oxalis Oxalis bullulata \N \N \N \N \N 101857 R.orientalis Rosa Rosa orientalis \N \N \N \N \N 101858 D.callicarpa Daemonorops Daemonorops callicarpa \N \N \N \N \N 101859 P.hassleri Prosopis Prosopis hassleri \N \N \N \N \N 101860 L.costale Lepidosperma Lepidosperma costale \N \N \N \N \N 101861 O.distincta Oxalis Oxalis aff. distincta \N \N \N \N \N 101862 L.gilvum Lysiphyllum Lysiphyllum gilvum \N \N \N \N \N 101863 T.australasica Tecticornia Tecticornia australasica \N \N \N \N \N 101864 C.molliglumis Cyperus Cyperus molliglumis \N \N \N \N \N 101865 A.elliptica Aspidopterys Aspidopterys elliptica \N \N \N \N \N 101866 \N varietas Orbexilum pedunculatum var. pedunculatum \N \N \N \N \N 101867 A.yaeyamensis Adinandra Adinandra yaeyamensis \N \N \N \N \N 101868 T.heptaneuron Tragus Tragus heptaneuron \N \N \N \N \N 101869 T.polyphyllum Trifolium Trifolium polyphyllum \N \N \N \N \N 101870 \N genus Dennettia \N \N \N \N \N 101871 H.humilis Heterospathe Heterospathe humilis \N \N \N \N \N 101872 B.pubescens Bryobium Bryobium pubescens \N \N \N \N \N 101873 Z.thyrsiflora Ziziphus Ziziphus thyrsiflora \N \N \N \N \N 101874 I.sphaerocarpa Indigofera Indigofera sphaerocarpa \N \N \N \N \N 101875 C.halicacabum Cardiospermum Cardiospermum halicacabum \N \N \N \N \N 101876 C.brevistylus Corryocactus Corryocactus brevistylus \N \N \N \N \N 101877 L.persicum Lolium Lolium persicum \N \N \N \N \N 101878 P.chimborazoensis Prosthechea Prosthechea chimborazoensis \N \N \N \N \N 101879 H.JFJ-2010 Helianthemum Helianthemum sp. JFJ-2010 \N \N \N \N \N 101880 \N genus Tiquilia \N \N \N \N \N 101881 \N genus Anarthria \N \N \N \N \N 101882 P.laurifolia Passiflora Passiflora laurifolia golden bellapple \N \N \N \N 101883 C.micrantha Centaurea Centaurea micrantha \N \N \N \N \N 101884 D.clementium Diplycosia Diplycosia clementium \N \N \N \N \N 101885 M.aspalathoides Muraltia Muraltia aspalathoides \N \N \N \N \N 101886 F.coerulescens Fuirena Fuirena coerulescens \N \N \N \N \N 101887 L.hybrida Lysimachia Lysimachia hybrida \N \N \N \N \N 101888 T.salzmannii Tournefortia Tournefortia salzmannii \N \N \N \N \N 101889 \N genus Guettarda \N \N \N \N \N 101890 \N genus Mammilloydia \N \N \N \N \N 101891 C.elegantium Coryanthes Coryanthes elegantium \N \N \N \N \N 101892 L.interrupta Lonicera Lonicera interrupta \N \N \N \N \N 101893 P.hispanicus Ptilostemon Ptilostemon hispanicus \N \N \N \N \N 101894 G.crassa Gastonia Gastonia crassa \N \N \N \N \N 101895 P.duckei Pagamea Pagamea duckei \N \N \N \N \N 101896 \N family Limeaceae \N \N \N \N \N 101897 C.humifusa Cypselea Cypselea humifusa \N \N \N \N \N 101898 A.pindreensis Astragalus Astragalus pindreensis \N \N \N \N \N 101899 A.fissivalvis Atriplex Atriplex fissivalvis \N \N \N \N \N 101900 A.longifolia Aspalathus Aspalathus longifolia \N \N \N \N \N 101901 C.psoraleifolia Cleome Cleome psoraleifolia \N \N \N \N \N 101902 P.suffruticosa Pterygiella Pterygiella suffruticosa \N \N \N \N \N 101904 A.rubescens Aerides Aerides rubescens \N \N \N \N \N 101905 H.amplexicaule Heliotropium Heliotropium amplexicaule \N \N \N \N \N 101906 \N genus Trevoria \N \N \N \N \N 101907 P.commixta Porana Porana commixta \N \N \N \N \N 101908 \N genus Micropyrum \N \N \N \N \N 101909 E.umbellulata Euphorbia Euphorbia umbellulata \N \N \N \N \N 101910 S.brachistantha Strychnos Strychnos brachistantha \N \N \N \N \N 101911 C.physodes Carex Carex physodes \N \N \N \N \N 101912 \N genus Chrysactinium \N \N \N \N \N 101913 K.affinis Kunzea Kunzea affinis \N \N \N \N \N 101914 B.FS1610 Bulbophyllum Bulbophyllum sp. FS1610 \N \N \N \N \N 101915 S.cappa Synotis Synotis cappa \N \N \N \N \N 101916 C.sativus Crocus Crocus sativus saffron crocus \N \N \N \N 101917 \N no rank unclassified Boraginaceae \N \N \N \N \N 101918 L.atlanticus Lupinus Lupinus atlanticus \N \N \N \N \N 101919 A.populifolia Arctotheca Arctotheca populifolia \N \N \N \N \N 101920 M.guatemalensis Montanoa Montanoa guatemalensis \N \N \N \N \N 101921 A.vestiaria Areca Areca vestiaria \N \N \N \N \N 101922 L.variegatus Lemurosicyos Lemurosicyos variegatus \N \N \N \N \N 101923 O.tomentosa Olearia Olearia tomentosa \N \N \N \N \N 101924 P.P092 Physalis Physalis sp. P092 \N \N \N \N \N 101925 A.krausei Amorphophallus Amorphophallus krausei \N \N \N \N \N 101926 P.pubescens Polystachya Polystachya pubescens \N \N \N \N \N 101927 T.sempervirens Trichopus Trichopus sempervirens \N \N \N \N \N 101928 H.glabra Heuchera Heuchera glabra \N \N \N \N \N 101929 C.suaveolens Croton Croton suaveolens scented croton \N \N \N \N 101930 \N subspecies Heracleum pastinacifolium subsp. incanum \N \N \N \N \N 101931 F.johnstonii Frankenia Frankenia johnstonii \N \N \N \N \N 101932 T.garrettii Tetrastigma Tetrastigma garrettii \N \N \N \N \N 101933 E.pulvinata Euphorbia Euphorbia pulvinata \N \N \N \N \N 101934 S.portoricense Sideroxylon Sideroxylon portoricense \N \N \N \N \N 101935 R.formosum Rosenbergiodendron Rosenbergiodendron formosum \N \N \N \N \N 101936 \N genus Conostegia \N \N \N \N \N 101937 I.amara Iberis Iberis amara Gruetzblume,bitter candytuft,rocket candytuft,teraspic \N \N \N \N 101938 S.matudai Schismocarpus Schismocarpus matudai \N \N \N \N \N 101939 L.macloviana Lilaeopsis Lilaeopsis macloviana \N \N \N \N \N 101940 C.validus Calothamnus Calothamnus validus \N \N \N \N \N 101941 \N genus Pictetia \N \N \N \N \N 101942 G.pumila Genista Genista pumila \N \N \N \N \N 101943 B.lukuana Begonia Begonia lukuana \N \N \N \N \N 101944 F.palmeri Flaveria Flaveria palmeri \N \N \N \N \N 101945 C.paleacea Carex Carex paleacea \N \N \N \N \N 101946 E.diversifolia Eichhornia Eichhornia diversifolia \N \N \N \N \N 101947 \N family Berberidopsidaceae \N \N \N \N \N 101948 L.peczoricus Lotus Lotus peczoricus \N \N \N \N \N 101949 A.breweri Antirrhinum Antirrhinum breweri \N \N \N \N \N 101950 C.plumulifera Calotis Calotis plumulifera \N \N \N \N \N 101951 M.quadridentata Muhlenbergia Muhlenbergia quadridentata \N \N \N \N \N 101952 S.caruifolia Saltugilia Saltugilia caruifolia \N \N \N \N \N 101953 A.pycnantha Aspalathus Aspalathus pycnantha \N \N \N \N \N 101954 L.nudatus Leptosiphon Leptosiphon nudatus \N \N \N \N \N 101955 M.lackeyi Mallotus Mallotus lackeyi \N \N \N \N \N 101956 E.rubra Escallonia Escallonia rubra \N \N \N \N \N 101957 F.africana Fingerhuthia Fingerhuthia africana \N \N \N \N \N 101958 Y.louisianensis Yucca Yucca louisianensis Gulf Coast yucca \N \N \N \N 101959 M.grandidieri Monodora Monodora grandidieri \N \N \N \N \N 101960 E.monteiri Euphorbia Euphorbia monteiri \N \N \N \N \N 101961 B.odorata Barnadesia Barnadesia odorata \N \N \N \N \N 101962 I.hystrix Isolepis Isolepis hystrix \N \N \N \N \N 101963 D.angustifolia Ditassa Ditassa angustifolia \N \N \N \N \N 101964 N.trigonophylla Nicotiana Nicotiana trigonophylla \N \N \N \N \N 101965 C.aristella Canastra Canastra aristella \N \N \N \N \N 101966 I.mortoniana Inga Inga mortoniana \N \N \N \N \N 101967 \N genus Cremosperma \N \N \N \N \N 101968 H.cynoglossoides Hieracium Hieracium cynoglossoides \N \N \N \N \N 101969 S.phylicifolia Salix Salix myrsinifolia x Salix phylicifolia \N \N \N \N \N 101970 M.prostrata Myricaria Myricaria prostrata \N \N \N \N \N 101971 C.sorghoides Cleistachne Cleistachne sorghoides \N \N \N \N \N 101972 \N genus Rytidosperma \N \N \N \N \N 101973 O.virgata Oenanthe Oenanthe virgata \N \N \N \N \N 101974 H.cochinchinensis Homalomena Homalomena cochinchinensis \N \N \N \N \N 101975 \N subspecies Lepidium hirtum subsp. petrophilum \N \N \N \N \N 101976 \N genus Oxydectes \N \N \N \N \N 101977 E.fenestrata Elegia Elegia fenestrata \N \N \N \N \N 101978 D.robusta Disa Disa robusta \N \N \N \N \N 101979 D.tenuipes Dioscorea Dioscorea tenuipes xi bing shu yu \N \N \N \N 101980 \N varietas Bupleurum longicaule var. franchetii \N \N \N \N \N 101981 S.chinensis Stephanandra Stephanandra chinensis \N \N \N \N \N 101982 C.argenteum Ceratocaryum Ceratocaryum argenteum \N \N \N \N \N 101983 A.popenoei Ateleia Ateleia popenoei \N \N \N \N \N 101984 M.stebbinsii Malacothrix Malacothrix stebbinsii \N \N \N \N \N 101985 B.ferruginea Brassaiopsis Brassaiopsis ferruginea \N \N \N \N \N 101986 I.ruiziana Inga Inga ruiziana \N \N \N \N \N 101987 O.IP-2011 Otochilus Otochilus sp. IP-2011 \N \N \N \N \N 101988 \N tribe Gardenieae \N \N \N \N \N 101989 \N subspecies Rorippa islandica subsp. dogadovae \N \N \N \N \N 101990 \N genus Rivea \N \N \N \N \N 101991 \N genus Harpagophytum \N \N \N \N \N 101992 P.latifolia Phlox Phlox latifolia \N \N \N \N \N 101993 \N subspecies Festuca paniculata subsp. baetica \N \N \N \N \N 101994 S.tenuifolium Schoenocaulon Schoenocaulon tenuifolium \N \N \N \N \N 101995 \N genus Microtropis \N \N \N \N \N 101996 H.japonica Helwingia Helwingia japonica \N \N \N \N \N 101997 E.borealis Euphrasia Euphrasia borealis \N \N \N \N \N 101998 \N varietas Melampodium montanum var. viridulum \N \N \N \N \N 101999 M.acatlensis Mariosousa Mariosousa acatlensis \N \N \N \N \N 102000 D.urgineoides Drimia Drimia urgineoides \N \N \N \N \N 102001 A.parlatorei Aichryson Aichryson parlatorei \N \N \N \N \N 102002 S.rotundifolia Saxifraga Saxifraga rotundifolia \N \N \N \N \N 102003 H.lagenicaulis Hyophorbe Hyophorbe lagenicaulis \N \N \N \N \N 102004 \N varietas Asarum heterotropoides var. heterotropoides \N \N \N \N \N 102005 X.helleborifolium Xanthosoma Xanthosoma helleborifolium \N \N \N \N \N 102006 P.petiolaris Plectranthus Plectranthus petiolaris \N \N \N \N \N 102007 B.polychroa Bellardiochloa Bellardiochloa polychroa \N \N \N \N \N 102008 G.amblyodon Gaillardia Gaillardia amblyodon \N \N \N \N \N 102009 P.sigmoidea Pedicularis Pedicularis sigmoidea \N \N \N \N \N 102010 L.JTM-2009c Linguella Linguella sp. JTM-2009c \N \N \N \N \N 102011 M.stricta Muhlenbergia Muhlenbergia stricta \N \N \N \N \N 102012 L.bracteata Luxemburgia Luxemburgia bracteata \N \N \N \N \N 102013 B.rauhii Bulbophyllum Bulbophyllum rauhii \N \N \N \N \N 102014 E.mucronata Eriachne Eriachne mucronata \N \N \N \N \N 102015 L.alluaudii Lepidium Lepidium alluaudii \N \N \N \N \N 102016 \N genus Robeschia \N \N \N \N \N 102017 \N genus Apurimacia \N \N \N \N \N 102018 F.paxiana Fraxinus Fraxinus paxiana qin ling qin \N \N \N \N 102019 P.stillans Phialanthus Phialanthus stillans \N \N \N \N \N 102020 U.floribunda Ungeria Ungeria floribunda \N \N \N \N \N 102021 B.vaginatus Brownanthus Brownanthus vaginatus \N \N \N \N \N 102022 S.australis Sloanea Sloanea australis \N \N \N \N \N 102023 A.xiphidioides Astragalus Astragalus xiphidioides \N \N \N \N \N 102024 B.scleroneura Bridelia Bridelia scleroneura \N \N \N \N \N 102025 \N varietas Petasites frigidus var. sagittatus \N \N \N \N \N 102026 \N genus Gyrocarpus \N \N \N \N \N 102027 T.hookeriana Tainia Tainia hookeriana \N \N \N \N \N 102028 B.pedersenii Byttneria Byttneria pedersenii \N \N \N \N \N 102029 E.pubescens Eriotheca Eriotheca pubescens \N \N \N \N \N 102030 P.hilariae Piptatherum Piptatherum hilariae \N \N \N \N \N 102031 L.peersii Lachenalia Lachenalia peersii \N \N \N \N \N 102032 G.174 Guatteria Guatteria sp. Chatrou et al. 174 \N \N \N \N \N 102033 \N genus Graphistylis \N \N \N \N \N 102034 O.spectatissimum Oncidium Oncidium spectatissimum \N \N \N \N \N 102035 C.pierrei Cladopus Cladopus pierrei \N \N \N \N \N 102036 C.plumosa Clidemia Clidemia plumosa \N \N \N \N \N 102037 P.songaricum Piptatherum Piptatherum songaricum \N \N \N \N \N 102038 U.rubra Ulmus Ulmus rubra slippery elm \N \N \N \N 102039 P.bracteocardia Psychotria Psychotria bracteocardia \N \N \N \N \N 102040 C.s.n. Cycnoches Cycnoches sp. Schoenbrunn s.n. \N \N \N \N \N 102041 D.violacea Draba Draba violacea \N \N \N \N \N 102042 O.haalenbergense Ornithogalum Ornithogalum haalenbergense \N \N \N \N \N 102043 S.mollis Sphenodesme Sphenodesme mollis \N \N \N \N \N 102044 G.hispida Gaultheria Gaultheria hispida \N \N \N \N \N 102045 \N varietas Bauhinia corymbosa var. longipes \N \N \N \N \N 102046 A.glumaceum Agrostophyllum Agrostophyllum glumaceum \N \N \N \N \N 102047 H.cordobense Hordeum Hordeum cordobense \N \N \N \N \N 102048 O.acerba Omphacomeria Omphacomeria acerba \N \N \N \N \N 102049 L.pentagonia Legousia Legousia pentagonia \N \N \N \N \N 102050 P.efarinosa Primula Primula efarinosa \N \N \N \N \N 102051 Q.lyrata Quercus Quercus lyrata \N \N \N \N \N 102052 W.BUR Wolffia Wolffia sp. BUR \N \N \N \N \N 102053 L.angustifolia Leiothrix Leiothrix angustifolia \N \N \N \N \N 102054 A.gesnerioides Afrothismia Afrothismia gesnerioides \N \N \N \N \N 102055 G.arborea Gmelina Gmelina arborea \N \N \N \N \N 102056 L.chubutensis Lecanophora Lecanophora chubutensis \N \N \N \N \N 102057 M.australis Muehlenbeckia Muehlenbeckia australis \N \N \N \N \N 102058 R.lobbii Ribes Ribes lobbii gummy gooseberry \N \N \N \N 102059 \N genus Eulalia \N \N \N \N \N 102060 F.nordenstamii Felicia Felicia nordenstamii \N \N \N \N \N 102061 D.velutinum Dasyphyllum Dasyphyllum velutinum \N \N \N \N \N 102062 P.maghrebinus Plagius Plagius maghrebinus \N \N \N \N \N 102063 A.eurycarpa Anelsonia Anelsonia eurycarpa \N \N \N \N \N 102064 M.tomentosa Mascagnia Mascagnia tomentosa \N \N \N \N \N 102065 S.triqueter Senecio Senecio triqueter \N \N \N \N \N 102066 C.elongata Camellia Camellia elongata \N \N \N \N \N 102067 P.drummondii Potentilla Potentilla drummondii \N \N \N \N \N 102068 E.fascicularis Erica Erica fascicularis \N \N \N \N \N 102069 \N varietas Coriaria arborea var. arborea \N \N \N \N \N 102070 \N genus Dorotheanthus \N \N \N \N \N 102071 E.pseudowushanense Epimedium Epimedium pseudowushanense \N \N \N \N \N 102072 C.acerifolia Clematis Clematis acerifolia \N \N \N \N \N 102073 \N genus Eriophyton \N \N \N \N \N 102074 S.erythrocarpa Salacia Salacia erythrocarpa \N \N \N \N \N 102075 P.longicaulis Polygala Polygala longicaulis \N \N \N \N \N 102076 \N subspecies Calamagrostis stricta subsp. stricta \N \N \N \N \N 102077 \N genus Schubertia \N \N \N \N \N 102078 \N genus Salpichroa \N \N \N \N \N 102079 A.paralipomenus Astragalus Astragalus paralipomenus \N \N \N \N \N 102080 P.spicerianum Paphiopedilum Paphiopedilum spicerianum \N \N \N \N \N 102081 F.leucopyrus Flueggea Flueggea leucopyrus \N \N \N \N \N 102082 V.glomerata Villaria Villaria glomerata \N \N \N \N \N 102083 \N genus Ecbolium \N \N \N \N \N 102084 P.pachyphylla Pinanga Pinanga pachyphylla \N \N \N \N \N 102085 \N genus Lasiopogon \N \N \N \N \N 102086 G.productum Galium Galium productum \N \N \N \N \N 102087 R.gaultheriifolium Rhododendron Rhododendron gaultheriifolium \N \N \N \N \N 102088 D.polygonoides Dalea Dalea polygonoides \N \N \N \N \N 102089 S.dinklagei Sabicea Sabicea dinklagei \N \N \N \N \N 102090 E.sventenii Echium Echium sventenii \N \N \N \N \N 102091 P.nogalensis Pluchea Pluchea nogalensis \N \N \N \N \N 102092 A.plagiophacos Astragalus Astragalus plagiophacos \N \N \N \N \N 102093 L.esquamatus Leucopogon Leucopogon esquamatus \N \N \N \N \N 102094 A.purpurascens Angelica Angelica purpurascens \N \N \N \N \N 102095 S.stoloniferum Sparganium Sparganium stoloniferum \N \N \N \N \N 102096 \N genus Dipteropeltis \N \N \N \N \N 102097 C.3698 Clusia Clusia sp. JA 3698 \N \N \N \N \N 102098 P.celtidiforme Piper Piper celtidiforme \N \N \N \N \N 102099 T.venustius Taraxacum Taraxacum venustius \N \N \N \N \N 102100 L.sibirica Libanotis Libanotis sibirica \N \N \N \N \N 102101 \N tribe Hymenocardieae \N \N \N \N \N 102102 K.abyssinica Kleinia Kleinia abyssinica \N \N \N \N \N 102103 C.londoniana Carpinus Carpinus londoniana \N \N \N \N \N 102104 S.aureus Scindapsus Scindapsus aureus \N \N \N \N \N 102105 V.brachyandrum Viburnum Viburnum brachyandrum \N \N \N \N \N 102106 L.acaulis Laretia Laretia acaulis \N \N \N \N \N 102107 \N genus Nogra \N \N \N \N \N 102108 T.contorta Tabernaemontana Tabernaemontana contorta \N \N \N \N \N 102109 C.darvazica Crepis Crepis darvazica \N \N \N \N \N 102110 E.sibiricum Erythronium Erythronium sibiricum \N \N \N \N \N 102111 R.sessiliflora Rudgea Rudgea sessiliflora \N \N \N \N \N 102112 G.fitzgeraldii Gaimardia Gaimardia fitzgeraldii \N \N \N \N \N 102113 A.acaulis Arctotis Arctotis acaulis \N \N \N \N \N 102114 T.butzii Tillandsia Tillandsia butzii \N \N \N \N \N 102115 F.purpurascens Festuca Festuca purpurascens \N \N \N \N \N 102116 G.retusum Gastrolobium Gastrolobium aff. retusum \N \N \N \N \N 102117 S.americana Schwenckia Schwenckia americana \N \N \N \N \N 102118 C.officinale Cynoglossum Cynoglossum officinale hound's-tongue \N \N \N \N 102119 P.inodorum Pelargonium Pelargonium inodorum \N \N \N \N \N 102120 O.JTM-2009b Oligochaetochilus Oligochaetochilus sp. JTM-2009b \N \N \N \N \N 102121 \N genus Setaria \N \N \N \N \N 102122 P.bullenianum Paphiopedilum Paphiopedilum bullenianum \N \N \N \N \N 102123 Z.tasmanica Zostera Zostera tasmanica \N \N \N \N \N 102124 P.verrucosum Panicum Panicum verrucosum \N \N \N \N \N 102125 P.triseta Pentaschistis Pentameris triseta \N \N \N \N \N 102126 C.285874 Celmisia Celmisia aff. similis AK 285874 \N \N \N \N \N 102127 P.eminens Poa Poa eminens \N \N \N \N \N 102128 S.dioica Sparattosyce Sparattosyce dioica \N \N \N \N \N 102129 P.saharae Picris Picris saharae \N \N \N \N \N 102130 L.nivalis Luzula Luzula nivalis \N \N \N \N \N 102131 G.macleayana Grevillea Grevillea macleayana \N \N \N \N \N 102132 C.chelidonia Cardamine Cardamine chelidonia \N \N \N \N \N 102133 A.23-1 Arisaema Arisaema aff. pingbianense Murata 23-1 \N \N \N \N \N 102134 P.murrayi Pericallis Pericallis murrayi \N \N \N \N \N 102135 S.jenisseensis Salix Salix jenisseensis \N \N \N \N \N 102136 D.JJNK-2011 Desmodium Desmodium cf. incanum JJNK-2011 \N \N \N \N \N 102137 D.kaessneri Dibrachionostylus Dibrachionostylus kaessneri \N \N \N \N \N 102138 P.grandiflorus Phoebanthus Phoebanthus grandiflorus \N \N \N \N \N 102139 C.holmii Calamagrostis Calamagrostis holmii \N \N \N \N \N 102140 V.pubigera Vigna Vigna pubigera \N \N \N \N \N 102141 S.terminalioides Soulamea Soulamea terminalioides \N \N \N \N \N 102142 \N varietas Blumea hieraciifolia var. macrostachya \N \N \N \N \N 102143 C.9116 Cuscuta Cuscuta cf. occidentalis Ahart 9116 \N \N \N \N \N 102144 \N genus Apinagia \N \N \N \N \N 102145 P.miliaceum Panicum Panicum miliaceum common millet,proso millet \N \N \N \N 102146 D.decumbens Dolichos Dolichos decumbens \N \N \N \N \N 102147 A.brasiliana Aeschynomene Aeschynomene brasiliana \N \N \N \N \N 102148 \N genus Verbesina \N \N \N \N \N 102149 L.albiflora Lycoris Lycoris albiflora \N \N \N \N \N 102150 A.glabrum Amyema Amyema glabrum \N \N \N \N \N 102151 R.suffrutescens Rovaeanthus Rovaeanthus suffrutescens \N \N \N \N \N 102152 C.fuliginosa Crepis Crepis fuliginosa \N \N \N \N \N 102153 R.polii Ranunculus Ranunculus polii \N \N \N \N \N 102154 \N genus Canscora \N \N \N \N \N 102155 E.lucidum Epistephium Epistephium lucidum \N \N \N \N \N 102156 C.umbrosa Cuscuta Cuscuta umbrosa \N \N \N \N \N 102157 A.mollugo Adenogramma Adenogramma mollugo \N \N \N \N \N 102158 \N varietas Stewartia sinensis var. acutisepala \N \N \N \N \N 102159 L.tomentosum Lamium Lamium tomentosum \N \N \N \N \N 102160 P.tenax Protea Protea tenax \N \N \N \N \N 102161 V.striata Viola Viola striata \N \N \N \N \N 102162 D.sanguinea Disa Disa sanguinea \N \N \N \N \N 102163 T.tl146 unclassified Taraxacum Taraxacum (sect. Ceratophora/Borealia) sp. tl146 \N \N \N \N \N 102164 C.floccosus Croton Croton floccosus \N \N \N \N \N 102165 B.caleyi Banksia Banksia caleyi \N \N \N \N \N 102166 E.maresii Euphorbia Euphorbia maresii \N \N \N \N \N 102167 J.heldreichii Jancaea Jancaea heldreichii \N \N \N \N \N 102168 A.guacuyule Attalea Attalea guacuyule \N \N \N \N \N 102169 E.portoalegrensis Echinodorus Echinodorus portoalegrensis \N \N \N \N \N 102170 G.heterophyllum Gastrolobium Gastrolobium heterophyllum \N \N \N \N \N 102171 \N genus Meconopsis \N \N \N \N \N 102172 B.guangxiensis Begonia Begonia guangxiensis \N \N \N \N \N 102173 S.concinnus Schoenus Schoenus concinnus \N \N \N \N \N 102174 P.insigne Philodendron Philodendron insigne \N \N \N \N \N 102175 \N genus Canarium \N \N \N \N \N 102176 S.griffithii Salsola Salsola griffithii \N \N \N \N \N 102177 H.dryobalanoides Hopea Hopea dryobalanoides \N \N \N \N \N 102178 A.fruticosa Aristotelia Aristotelia fruticosa \N \N \N \N \N 102179 A.ilanense Arisaema Arisaema ilanense \N \N \N \N \N 102180 C.HS-2010 Cratylia Cratylia sp. HS-2010 \N \N \N \N \N 102181 D.eriiflorum Dendrobium Dendrobium eriiflorum \N \N \N \N \N 102182 D.rhombilabia Deiregyne Deiregyne rhombilabia \N \N \N \N \N 102183 \N genus Androya \N \N \N \N \N 102184 L.tenue Lycium Lycium tenue \N \N \N \N \N 102185 P.lindenii Peristeria Peristeria lindenii \N \N \N \N \N 102186 A.edentata Auranticarpa Auranticarpa edentata \N \N \N \N \N 102187 O.acutifolius Oreobolus Oreobolus acutifolius \N \N \N \N \N 102188 P.falcatum Paspalum Paspalum falcatum \N \N \N \N \N 102189 A.0025 Aeschynanthus Aeschynanthus sp. 0025 \N \N \N \N \N 102190 G.concinna Glossostipula Glossostipula concinna \N \N \N \N \N 102191 M.371 Maxillaria Maxillaria sp. DLS 371 \N \N \N \N \N 102192 C.toxicofera Curarea Curarea toxicofera \N \N \N \N \N 102193 S.elaeagnifolium Solanum Solanum elaeagnifolium \N \N \N \N \N 102194 I.deltoidea Iriartea Iriartea deltoidea \N \N \N \N \N 102196 R.purpureum Rhodosciadium Rhodosciadium purpureum \N \N \N \N \N 102197 D.bracteatum Disterigma Disterigma bracteatum \N \N \N \N \N 102198 S.elegantissima Smilax Smilax elegantissima \N \N \N \N \N 102199 G.eciliata Gaultheria Gaultheria eciliata \N \N \N \N \N 102200 M.campanuloides Michauxia Michauxia campanuloides \N \N \N \N \N 102201 M.hispida Macaranga Macaranga hispida \N \N \N \N \N 102202 C.ceratocalyx Capsicum Capsicum ceratocalyx \N \N \N \N \N 102203 S.frondosa Strobilanthes Strobilanthes frondosa \N \N \N \N \N 102204 P.latisiliquum Pachycladon Pachycladon latisiliquum \N \N \N \N \N 102205 M.schleinitziana Macaranga Macaranga schleinitziana \N \N \N \N \N 102206 P.decurrens Paradrymonia Paradrymonia decurrens \N \N \N \N \N 102207 H.9271 Hydriastele Hydriastele sp. Moore 9271 \N \N \N \N \N 102208 C.serrata Cyamopsis Cyamopsis serrata \N \N \N \N \N 102209 M.9195 Machaerina Machaerina sp. Johns 9195 \N \N \N \N \N 102210 G.saponaria Gentiana Gentiana saponaria \N \N \N \N \N 102211 B.charlesworthii Bifrenaria Bifrenaria charlesworthii \N \N \N \N \N 102212 J.abrotanifolia Jacobaea Jacobaea abrotanifolia \N \N \N \N \N 102213 P.cinnamomea Panopsis Panopsis cinnamomea \N \N \N \N \N 102214 O.leucophylla Olgaea Olgaea leucophylla \N \N \N \N \N 102215 \N genus Caraipa \N \N \N \N \N 102216 D.oliveri Daniellia Daniellia oliveri \N \N \N \N \N 102217 R.nivalis Rubus Rubus nivalis \N \N \N \N \N 102218 M.affinis Miconia Miconia affinis \N \N \N \N \N 102219 \N genus Pogonopus \N \N \N \N \N 102220 \N genus Bulbostylis \N \N \N \N \N 102221 S.mathewsii Symbolanthus Symbolanthus mathewsii \N \N \N \N \N 102222 B.FS711 Bulbophyllum Bulbophyllum sp. FS711 \N \N \N \N \N 102223 V.amarella Valerianella Valerianella amarella \N \N \N \N \N 102224 G.tuberosa Gesneria Gesneria tuberosa \N \N \N \N \N 102225 C.triflora Crataegus Crataegus triflora \N \N \N \N \N 102226 F.montana Frasera Frasera montana \N \N \N \N \N 102227 E.longipetala Exbucklandia Exbucklandia longipetala \N \N \N \N \N 102228 \N genus Carduncellus \N \N \N \N \N 102229 T.maritima Triglochin Triglochin maritima \N \N \N \N \N 102230 C.chinense Cynanchum Cynanchum chinense \N \N \N \N \N 102231 A.lanuginosus Amorphophallus Amorphophallus lanuginosus \N \N \N \N \N 102232 E.onosmifolium Echium Echium onosmifolium \N \N \N \N \N 102233 O.YNH-2007 Onosma Onosma sp. YNH-2007 \N \N \N \N \N 102234 P.crassifolium Phoradendron Phoradendron crassifolium \N \N \N \N \N 102235 D.puberulus Dinteranthus Dinteranthus puberulus \N \N \N \N \N 102236 \N genus Schimpera \N \N \N \N \N 102237 \N genus Dictyoneura \N \N \N \N \N 102238 C.violaceum Chuanminshen Chuanminshen violaceum \N \N \N \N \N 102239 R.catacosmum Rhododendron Rhododendron catacosmum \N \N \N \N \N 102240 I.cooperi Isoglossa Isoglossa cooperi \N \N \N \N \N 102241 A.nanningensis Arundinaria Arundinaria nanningensis \N \N \N \N \N 102242 B.fanniae Barbacenia Barbacenia fanniae \N \N \N \N \N 102243 O.ximenae Otatea Otatea ximenae \N \N \N \N \N 102244 C.droserifolia Cleome Cleome droserifolia \N \N \N \N \N 102245 C.blanda Carex Carex blanda \N \N \N \N \N 102246 W.stricta Wurmbea Wurmbea stricta \N \N \N \N \N 102247 M.bodinieri Mimulus Mimulus bodinieri \N \N \N \N \N 102248 P.rutenbergianum Pachypodium Pachypodium rutenbergianum \N \N \N \N \N 102249 A.latifolia Adinandra Adinandra latifolia \N \N \N \N \N 102250 M.elegans Mourera Mourera elegans \N \N \N \N \N 102251 T.wayi Trymalium Trymalium wayi \N \N \N \N \N 102252 C.crassifolius Croton Croton crassifolius \N \N \N \N \N 102253 E.brevilabris Etlingera Etlingera brevilabris \N \N \N \N \N 102254 L.arboreum Linum Linum arboreum \N \N \N \N \N 102255 H.caledonicus Hybanthus Hybanthus caledonicus \N \N \N \N \N 102256 \N genus Smallanthus \N \N \N \N \N 102257 H.havilandii Hornstedtia Hornstedtia havilandii \N \N \N \N \N 102258 D.cotinifolia Dioscorea Dioscorea cotinifolia \N \N \N \N \N 102259 T.muralis Trichoceros Trichoceros muralis \N \N \N \N \N 102260 S.bulbifera Sparaxis Sparaxis bulbifera \N \N \N \N \N 102261 C.crebriflora Carex Carex crebriflora \N \N \N \N \N 102262 S.aucheriana Scorzonera Scorzonera aucheriana \N \N \N \N \N 102263 \N genus Polylychnis \N \N \N \N \N 102264 A.08089 Aechmea Aechmea sp. 08089 \N \N \N \N \N 102265 \N genus Arcuatopterus \N \N \N \N \N 102266 S.algens Senecio Senecio algens \N \N \N \N \N 102267 \N genus Kandelia \N \N \N \N \N 102268 \N forma Juncus decipiens f. spiralis \N \N \N \N \N 102269 H.bicolor Heteropterys Heteropterys bicolor \N \N \N \N \N 102270 M.glomerata Maihueniopsis Maihueniopsis glomerata \N \N \N \N \N 102271 \N genus Sucrea \N \N \N \N \N 102272 T.bergeri Tillandsia Tillandsia bergeri \N \N \N \N \N 102273 \N genus Erigeron fleabanes \N \N \N \N 102274 \N subfamily Ceroxyloideae \N \N \N \N \N 102275 S.flava Scrophularia Scrophularia flava \N \N \N \N \N 102276 M.prattii Malus Malus prattii \N \N \N \N \N 102277 \N genus Pedicularis louseworts \N \N \N \N 102278 E.notabilis Eucalyptus Eucalyptus notabilis Blue Mountains mahogany \N \N \N \N 102279 \N genus Hesperozygis \N \N \N \N \N 102280 A.mongolicum Allium Allium mongolicum \N \N \N \N \N 102281 G.marginata Glyptopleura Glyptopleura marginata carveseed \N \N \N \N 102282 M.diversifolia Mitragyna Mitragyna diversifolia \N \N \N \N \N 102283 A.leptoclada Acacia Acacia leptoclada \N \N \N \N \N 102284 R.himalensis Rhodiola Rhodiola himalensis \N \N \N \N \N 102285 R.SSL-2007 Rubus Rubus sp. SSL-2007 \N \N \N \N \N 102286 H.cordata Houttuynia Houttuynia cordata chameleon-plant,dokudami \N \N \N \N 102287 E.elongata Eleocharis Eleocharis elongata \N \N \N \N \N 102288 B.ciliata Boerhavia Boerhavia ciliata \N \N \N \N \N 102289 C.glomerata Campanula Campanula glomerata Dane's blood,Dane's-blood,clustered bellflower \N \N \N \N 102290 T.gordejevii Trifolium Trifolium gordejevii \N \N \N \N \N 102291 A.foertheriana Afrothismia Afrothismia foertheriana \N \N \N \N \N 102292 D.dubium Delphinium Delphinium dubium \N \N \N \N \N 102388 \N subspecies Daucus carota subsp. sativus \N \N \N \N \N 102293 S.lasiocarpum/violaceum Solanum Solanum lasiocarpum/violaceum \N \N \N \N \N 102294 \N genus Ipomoea \N \N \N \N \N 102295 T.rostrata Tracyina Tracyina rostrata \N \N \N \N \N 102296 G.patentivalvis Gloeocarpus Gloeocarpus patentivalvis \N \N \N \N \N 102297 S.tradescantii Symphyotrichum Symphyotrichum tradescantii \N \N \N \N \N 102298 \N genus Colpothrinax \N \N \N \N \N 102299 A.lucidum Acer Acer lucidum \N \N \N \N \N 102300 M.foliosa Mathewsia Mathewsia foliosa \N \N \N \N \N 102301 \N genus Chaetopogon \N \N \N \N \N 102302 \N genus Hemiptelea \N \N \N \N \N 102303 \N genus Craspedorhachis \N \N \N \N \N 102304 L.59 Lupinus Lupinus sp. Eastwood 59 \N \N \N \N \N 102305 P.tucumanensis Prunus Prunus tucumanensis \N \N \N \N \N 102306 C.sankuruensis Ceropegia Ceropegia sankuruensis \N \N \N \N \N 102307 B.membranacea Bambusa Bambusa membranacea \N \N \N \N \N 102308 P.shinkoensis Pyrenaria Pyrenaria shinkoensis \N \N \N \N \N 102309 M.heterophylla Musgravea Musgravea heterophylla \N \N \N \N \N 102310 B.souliei Brassica Brassica souliei \N \N \N \N \N 102311 P.lusitanica Prunus Prunus lusitanica Portuguese laurel cherry \N \N \N \N 102312 S.ovata Sesleria Sesleria ovata \N \N \N \N \N 102313 M.madagascariensis Monotes Monotes madagascariensis \N \N \N \N \N 102314 C.tenuis Calamus Calamus tenuis \N \N \N \N \N 102315 S.cryptandrus Sporobolus Sporobolus cryptandrus \N \N \N \N \N 102316 S.blepharophylla Saxifraga Saxifraga blepharophylla \N \N \N \N \N 102317 H.curtiseta Hesperostipa Hesperostipa curtiseta \N \N \N \N \N 102318 M.cunninghamii Medicosma Medicosma cunninghamii \N \N \N \N \N 102319 P.kunstleri Phalaenopsis Phalaenopsis kunstleri \N \N \N \N \N 102320 M.ernstii Miconia Miconia ernstii \N \N \N \N \N 102321 H.incrassata Hoya Hoya incrassata \N \N \N \N \N 102322 L.holcogyne Lecythis Lecythis holcogyne \N \N \N \N \N 102323 L.pauciflorus Lysionotus Lysionotus pauciflorus \N \N \N \N \N 102324 M.bigelovii Microseris Microseris bigelovii \N \N \N \N \N 102325 S.oregana Silene Silene oregana \N \N \N \N \N 102326 H.lavrensis Habenaria Habenaria lavrensis \N \N \N \N \N 102327 M.orbicularis Microtis Microtis orbicularis \N \N \N \N \N 102328 T.fraternus Thamnochortus Thamnochortus fraternus \N \N \N \N \N 102329 C.eriobasis Cousinia Cousinia eriobasis \N \N \N \N \N 102330 N.orchidiflora Noisettia Noisettia orchidiflora \N \N \N \N \N 102331 S.daphnoides Salix Salix daphnoides violet willow \N \N \N \N 102332 \N genus Trattinnickia \N \N \N \N \N 102333 A.pelegrina Alstroemeria Alstroemeria pelegrina \N \N \N \N \N 102334 B.remotiflorus Bromus Bromus remotiflorus \N \N \N \N \N 102335 F.erecta Fatoua Fatoua erecta \N \N \N \N \N 102336 D.oxycarpa Daemonorops Daemonorops oxycarpa \N \N \N \N \N 102337 D.grazielae Dimerostemma Dimerostemma grazielae \N \N \N \N \N 102338 \N genus Gastrodia \N \N \N \N \N 102339 S.pachyphyllum Sedum Sedum pachyphyllum \N \N \N \N \N 102340 C.VOV-2010 Commelina Commelina sp. VOV-2010 \N \N \N \N \N 102341 A.alboviolaceum Aframomum Aframomum alboviolaceum \N \N \N \N \N 102342 L.rotundatus Lithocarpus Lithocarpus rotundatus \N \N \N \N \N 102343 C.macropetala Clematis Clematis macropetala \N \N \N \N \N 102344 P.variabilis Phyllostegia Phyllostegia variabilis \N \N \N \N \N 102345 K.parviflora Kallstroemia Kallstroemia parviflora \N \N \N \N \N 102346 \N genus Vesicarex \N \N \N \N \N 102347 D.spigelioides Dendrosipanea Dendrosipanea spigelioides \N \N \N \N \N 102348 S.vermiculatus Sarcobatus Sarcobatus vermiculatus greasewood,saltbush,seepwood \N \N \N \N 102349 B.dregei Begonia Begonia dregei grape-leaf begonia,mapleleaf begonia \N \N \N \N 102350 M.flaccida Moraea Moraea flaccida \N \N \N \N \N 102351 \N forma Ficus formosana f. shimadae \N \N \N \N \N 102352 A.cordifolium Asarum Asarum cordifolium \N \N \N \N \N 102353 C.marina Carex Carex marina \N \N \N \N \N 102354 P.turkestanica Primula Primula turkestanica \N \N \N \N \N 102355 L.nummulariifolia Lindernia Lindernia nummulariifolia \N \N \N \N \N 102356 E.dubius Eliokarmos Eliokarmos dubius \N \N \N \N \N 102357 M.B1495 Mitrephora Mitrephora sp. Ambriansyah B1495 \N \N \N \N \N 102358 S.kawakamii Symplocos Symplocos kawakamii \N \N \N \N \N 102359 S.coriifolium Satyrium Satyrium coriifolium \N \N \N \N \N 102360 C.trichocarpum Coelopleurum Coelopleurum trichocarpum \N \N \N \N \N 102361 K.radiata Kunhardtia Kunhardtia radiata \N \N \N \N \N 102362 V.recurva Villadia Villadia recurva \N \N \N \N \N 102363 T.cupani Tragopogon Tragopogon cupani \N \N \N \N \N 102364 D.strobilaceus Dimerocostus Dimerocostus strobilaceus \N \N \N \N \N 102365 I.yunnanensis Itea Itea yunnanensis \N \N \N \N \N 102366 \N genus Lychnis \N \N \N \N \N 102367 M.lyrata Munnozia Munnozia lyrata \N \N \N \N \N 102368 B.angustifolia Banisteriopsis Banisteriopsis angustifolia \N \N \N \N \N 102369 V.piasezkii Vitis Vitis piasezkii \N \N \N \N \N 102370 T.hookeri Thladiantha Thladiantha hookeri \N \N \N \N \N 102371 V.alopecuros Vulpia Vulpia alopecuros \N \N \N \N \N 102372 M.melanostachyum Macropiper Macropiper melanostachyum \N \N \N \N \N 102373 \N subspecies Sisyrinchium arenarium subsp. arenarium \N \N \N \N \N 102374 P.barbata Pultenaea Pultenaea barbata \N \N \N \N \N 102375 N.oxypetala Nymphaea Nymphaea oxypetala \N \N \N \N \N 102376 S.crataegifolium Schistostephium Schistostephium crataegifolium \N \N \N \N \N 102377 \N genus Pseudomussaenda \N \N \N \N \N 102378 V.surinamensis Vataireopsis Vataireopsis surinamensis \N \N \N \N \N 102379 C.angustissima Clematicissus Clematicissus angustissima \N \N \N \N \N 102380 A.chaixii Androsace Androsace chaixii \N \N \N \N \N 102381 C.peragua Cassine Cassine peragua \N \N \N \N \N 102382 P.truncata Pleurothallis Pleurothallis truncata \N \N \N \N \N 102383 T.turgidum Triticum Triticum turgidum English wheat,cone wheat,poulard wheat,rivet wheat \N \N \N \N 102384 P.oreillyanum Pittosporum Pittosporum oreillyanum \N \N \N \N \N 102385 O.pedicellare Ornithogalum Ornithogalum pedicellare \N \N \N \N \N 102386 C.sichuanensis Curcuma Curcuma sichuanensis \N \N \N \N \N 102387 \N varietas Psorothamnus emoryi var. emoryi \N \N \N \N \N 102389 \N varietas Astragalus palanae var. palanae \N \N \N \N \N 102390 D.thyrsiflorum Dendrobium Dendrobium thyrsiflorum \N \N \N \N \N 102391 C.madidum Cymbidium Cymbidium madidum \N \N \N \N \N 102392 \N genus Omiltemia \N \N \N \N \N 102393 H.natalensis Heteropyxis Heteropyxis natalensis \N \N \N \N \N 102394 H.nitida Hypserpa Hypserpa nitida \N \N \N \N \N 102395 A.jasminiflora Aulacocalyx Aulacocalyx jasminiflora \N \N \N \N \N 102396 E.chamaesyce Euphorbia Euphorbia chamaesyce \N \N \N \N \N 102397 D.villosa Drosera Drosera villosa \N \N \N \N \N 102398 C.ariana Cousinia Cousinia ariana \N \N \N \N \N 102399 S.bungadinnia Syzygium Syzygium bungadinnia \N \N \N \N \N 102400 P.thyrsoideus Plectranthus Plectranthus thyrsoideus \N \N \N \N \N 102401 B.williamsii Bouteloua Bouteloua williamsii \N \N \N \N \N 102402 \N genus Newtonia \N \N \N \N \N 102403 K.porphyrocalyx Kalanchoe Kalanchoe porphyrocalyx \N \N \N \N \N 102404 R.saxatilis Rubus Rubus saxatilis \N \N \N \N \N 102405 O.iridifolius Ornithocephalus Ornithocephalus iridifolius \N \N \N \N \N 102406 D.lindenii Dendrophylax Dendrophylax lindenii \N \N \N \N \N 102407 C.stricta Coelogyne Coelogyne stricta \N \N \N \N \N 102408 P.bidentata Pavetta Pavetta bidentata \N \N \N \N \N 102409 \N varietas Thysanocarpus curvipes var. elegans \N \N \N \N \N 102410 A.dealbata Arnica Arnica dealbata \N \N \N \N \N 102411 \N family Mayacaceae \N \N \N \N \N 102412 E.Esp8241 Elleanthus Elleanthus sp. Esp8241 \N \N \N \N \N 102413 S.coronata Serratula Serratula coronata \N \N \N \N \N 102414 D.lonchocarpa Draba Draba lonchocarpa lancepod draba \N \N \N \N 102415 P.dumosum Piper Piper dumosum \N \N \N \N \N 102416 C.accrescens Cyrtococcum Cyrtococcum accrescens \N \N \N \N \N 102417 C.baumgartenii Campanula Campanula baumgartenii \N \N \N \N \N 102418 C.brevifolium Chamelaucium Chamelaucium brevifolium \N \N \N \N \N 102419 S.purpurea Spondias Spondias purpurea jocote,ovo,purple mombin,red mombin \N \N \N \N 102420 E.meredithiae Ewartia Ewartia meredithiae \N \N \N \N \N 102421 V.szechuanica Veronica Veronica szechuanica \N \N \N \N \N 102422 \N genus Storckiella \N \N \N \N \N 102423 C.quinqueloba Cardiopteris Cardiopteris quinqueloba \N \N \N \N \N 102424 M.malayana Mycetia Mycetia malayana \N \N \N \N \N 102425 L.kiusiana Lecanorchis Lecanorchis kiusiana \N \N \N \N \N 102426 S.argyreus Symbolanthus Symbolanthus argyreus \N \N \N \N \N 102427 \N subspecies Erica globiceps subsp. gracilis \N \N \N \N \N 102428 O.tauricum Onopordum Onopordum tauricum \N \N \N \N \N 102429 C.coccinea Calcareoboea Calcareoboea coccinea \N \N \N \N \N 102430 L.JSZ-2009a Lavandula Lavandula sp. JSZ-2009a \N \N \N \N \N 102431 T.CQ-2001 Tulipa Tulipa sp. CQ-2001 \N \N \N \N \N 102432 P.rufostipulata Passiflora Passiflora rufostipulata \N \N \N \N \N 102433 P.howellii Portulaca Portulaca howellii \N \N \N \N \N 102434 \N subspecies Allium senescens subsp. glaucum \N \N \N \N \N 102435 C.spinosissima Colletia Colletia spinosissima \N \N \N \N \N 102436 A.trifoliata Akebia Akebia trifoliata \N \N \N \N \N 102437 S.furcata Semenovia Semenovia furcata \N \N \N \N \N 102438 L.periclymenum Lonicera Lonicera periclymenum \N \N \N \N \N 102439 P.tigrinum Paphiopedilum Paphiopedilum tigrinum \N \N \N \N \N 102440 P.curtifolium Piper Piper curtifolium \N \N \N \N \N 102441 T.wilmsii Tetraselago Tetraselago wilmsii \N \N \N \N \N 102442 H.dissoluta Hyperthelia Hyperthelia dissoluta \N \N \N \N \N 102443 \N genus Guilfoylia \N \N \N \N \N 102444 L.8743 Lysipomia Lysipomia sp. nov. 8743 \N \N \N \N \N 102445 P.gymnocarpon Phanopyrum Phanopyrum gymnocarpon savannah-panicgrass \N \N \N \N 102446 A.roseoalba Achillea millefolium complex Achillea roseoalba \N \N \N \N \N 102447 \N genus Limonium \N \N \N \N \N 102448 N.venezuelana Notylia Notylia venezuelana \N \N \N \N \N 102449 S.tenerum Schizachyrium Schizachyrium tenerum \N \N \N \N \N 102450 M.desportesii Miconia Miconia desportesii \N \N \N \N \N 102451 C.schistoglossum Cynanchum Cynanchum schistoglossum \N \N \N \N \N 102452 R.simplex Reinhardtia Reinhardtia simplex \N \N \N \N \N 102453 \N varietas Reldia aff. minutiflora var. veraguensis Clark 8655 \N \N \N \N \N 102454 \N tribe Triphoreae \N \N \N \N \N 102455 M.bismarkii Miltoniopsis Miltoniopsis bismarkii \N \N \N \N \N 102456 M.gracilipes Mormolyca Mormolyca gracilipes \N \N \N \N \N 102457 \N genus Melastomastrum \N \N \N \N \N 102458 S.schliebenii Solanum Solanum schliebenii \N \N \N \N \N 102459 S.microchaeta Stevia Stevia microchaeta \N \N \N \N \N 102460 C.chinganicum Corispermum Corispermum chinganicum \N \N \N \N \N 102461 S.conica Siparuna Siparuna conica \N \N \N \N \N 102462 P.forrestiana Pomaderris Pomaderris forrestiana \N \N \N \N \N 102463 G.angulatum Glochidion Glochidion angulatum \N \N \N \N \N 102464 C.casuarinoides Calycopeplus Calycopeplus casuarinoides \N \N \N \N \N 102465 G.klainei Gilbertiodendron Gilbertiodendron klainei \N \N \N \N \N 102466 M.reducens Miconia Miconia reducens \N \N \N \N \N 102467 S.oregana Sidalcea Sidalcea malviflora x Sidalcea oregana \N \N \N \N \N 102468 L.divaricata Larrea Larrea divaricata \N \N \N \N \N 102469 Q.engleriana Quercus Quercus engleriana \N \N \N \N \N 102470 A.aphylla Apteria Apteria aphylla nodding nixie \N \N \N \N 102471 \N genus Cephalocroton \N \N \N \N \N 102472 P.ovatifolius Pothos Pothos ovatifolius \N \N \N \N \N 102473 A.angustifolia Antizoma Antizoma angustifolia \N \N \N \N \N 102474 F.pachyrrhiza Fuchsia Fuchsia pachyrrhiza \N \N \N \N \N 102475 B.polyphylla Berchemia Berchemia polyphylla \N \N \N \N \N 102476 P.platypoda Psychotria Psychotria platypoda \N \N \N \N \N 102477 B.20075 Billia Billia sp. Hammel 20075 \N \N \N \N \N 102478 E.agraria Euphorbia Euphorbia agraria \N \N \N \N \N 102479 \N genus Serapias \N \N \N \N \N 102480 C.caudatum Cynanchum Cynanchum caudatum \N \N \N \N \N 102481 V.davisii Veronica Veronica davisii \N \N \N \N \N 102482 C.monospermum Cremastosperma Cremastosperma monospermum \N \N \N \N \N 102483 D.uncinata Dodonaea Dodonaea uncinata \N \N \N \N \N 102484 R.lhasaense Rheum Rheum lhasaense \N \N \N \N \N 102485 P.krugii Psychilis Psychilis krugii \N \N \N \N \N 102486 P.pseudo-orientale Papaver Papaver pseudo-orientale \N \N \N \N \N 102487 V.planopetiolata Hebe Veronica planopetiolata \N \N \N \N \N 102488 H.17135 Hoya Hoya cf. darwinii Chase 17135 \N \N \N \N \N 102489 D.circumflexa Disperis Disperis circumflexa \N \N \N \N \N 102490 M.burgeri Maxillaria Maxillaria burgeri \N \N \N \N \N 102491 \N genus Pseudochaetochloa \N \N \N \N \N 102492 H.uninervis Halodule Halodule uninervis \N \N \N \N \N 102493 P.longiflora Poliomintha Poliomintha longiflora \N \N \N \N \N 102494 I.forrestii Isotropis Isotropis forrestii \N \N \N \N \N 102495 \N varietas Fraxinus velutina var. coriacea \N \N \N \N \N 102496 P.neglectus Paepalanthus Paepalanthus neglectus \N \N \N \N \N 102497 L.indica Lindenbergia Lindenbergia indica \N \N \N \N \N 102498 C.nepalense Clinopodium Clinopodium nepalense \N \N \N \N \N 102499 P.kuranda Passiflora Passiflora kuranda \N \N \N \N \N 102500 \N genus Heracleum cow parsnips \N \N \N \N 102501 T.submersa Trithuria Trithuria submersa \N \N \N \N \N 102502 L.oreocharis Lomatogonium Lomatogonium oreocharis \N \N \N \N \N 102503 P.acuminata Psychotria Psychotria acuminata \N \N \N \N \N 102504 H.gracilis Hemiboea Hemiboea gracilis \N \N \N \N \N 102505 E.decomposita Ericentrodea Ericentrodea decomposita \N \N \N \N \N 102506 \N genus Endocomia \N \N \N \N \N 102507 A.verrucosus Acidocroton Acidocroton verrucosus \N \N \N \N \N 102508 E.gracilis Endlicheria Endlicheria gracilis \N \N \N \N \N 102509 P.caerulea Psychotria Psychotria caerulea \N \N \N \N \N 102510 T.willdenovii Trifolium Trifolium willdenovii tomcat clover \N \N \N \N 102511 B.colletioides Bredemeyera Bredemeyera colletioides \N \N \N \N \N 102512 C.luteum Colchicum Colchicum luteum \N \N \N \N \N 102513 \N tribe Duranteae \N \N \N \N \N 102514 C.mandshurica Corylus Corylus mandshurica \N \N \N \N \N 102515 C.chinensis Cryptocarya Cryptocarya chinensis \N \N \N \N \N 102516 M.2466 Maxillaria Maxillaria cf. neglecta Whitten 2466 \N \N \N \N \N 102517 S.stachydifolia Salvia Salvia stachydifolia \N \N \N \N \N 102518 D.warrenii Dendrochilum Dendrochilum warrenii \N \N \N \N \N 102519 L.washingtonianum Lilium Lilium washingtonianum \N \N \N \N \N 102520 D.kingii Drepananthus Drepananthus kingii \N \N \N \N \N 102521 S.gomeraea Sideritis Sideritis gomeraea \N \N \N \N \N 102522 P.rubra Psychotria Psychotria rubra \N \N \N \N \N 102523 S.coelostylioides Spigelia Spigelia coelostylioides \N \N \N \N \N 102524 \N subspecies Scorzoneroides autumnalis subsp. borealis \N \N \N \N \N 102525 V.californica Vauquelinia Vauquelinia californica \N \N \N \N \N 102526 P.harrisii Portlandia Portlandia harrisii \N \N \N \N \N 102527 E.VOV-2010 Eriocaulon Eriocaulon sp. VOV-2010 \N \N \N \N \N 102528 H.arborescens Heliotropium Heliotropium arborescens \N \N \N \N \N 102529 P.americana Perideridia Perideridia americana eastern yampah \N \N \N \N 102530 S.tricuspidata Salvia Salvia tricuspidata \N \N \N \N \N 102531 \N genus Guardiola \N \N \N \N \N 102532 \N varietas Acer pubinerve var. apiferum \N \N \N \N \N 102533 P.madagascariense Peponidium Peponidium madagascariense \N \N \N \N \N 102534 S.inaperta Silene Silene inaperta \N \N \N \N \N 102535 R.tuberosus Rumex Rumex tuberosus \N \N \N \N \N 102536 \N subspecies Galanthus reginae-olgae subsp. reginae-olgae \N \N \N \N \N 102537 \N tribe Colletoecemateae \N \N \N \N \N 102538 C.saxatilis Carex Carex saxatilis \N \N \N \N \N 102539 S.deserti Scrophularia Scrophularia deserti \N \N \N \N \N 102540 R.elbrusensis Ranunculus Ranunculus elbrusensis \N \N \N \N \N 102541 E.sphaerocarpa Eucalyptus Eucalyptus sphaerocarpa \N \N \N \N \N 102542 J.polyanthum Jasminum Jasminum polyanthum duo hua su xin \N \N \N \N 102543 I.Q95-124 Impatiens Impatiens sp. Qiu Q95-124 \N \N \N \N \N 102544 S.burchellii Senecio Senecio burchellii \N \N \N \N \N 102545 C.lulandoensis Coffea Coffea lulandoensis \N \N \N \N \N 102546 \N subspecies Salix arctica subsp. crassijulis \N \N \N \N \N 102547 J.lanceolarium Jasminum Jasminum lanceolarium \N \N \N \N \N 102548 \N genus Diplolepis \N \N \N \N \N 102549 L.chrysophylla Licaria Licaria chrysophylla \N \N \N \N \N 102550 P.violacea Poa Poa violacea \N \N \N \N \N 102551 P.sichotensis Poa Poa sichotensis \N \N \N \N \N 102552 C.chinensis Calycanthus Calycanthus chinensis \N \N \N \N \N 102553 A.gummifera Acacia Acacia gummifera \N \N \N \N \N 102554 \N subspecies Euphorbia griseola subsp. mashonica \N \N \N \N \N 102555 P.humbertii Polystachya Polystachya humbertii \N \N \N \N \N 102556 H.villosum Hieracium Hieracium villosum \N \N \N \N \N 102557 B.yatay Butia Butia yatay \N \N \N \N \N 102558 P.baehniana Polyscias Polyscias baehniana \N \N \N \N \N 102559 M.stipulatum Melolobium Melolobium stipulatum \N \N \N \N \N 102560 A.barrelieri Antirrhinum Antirrhinum barrelieri \N \N \N \N \N 102561 W.cultivar Wisteria Wisteria hybrid cultivar \N \N \N \N \N 102562 P.pendula Passerina Passerina pendula \N \N \N \N \N 102563 G.delavayi Gentiana Gentiana delavayi \N \N \N \N \N 102564 \N genus Apoplanesia \N \N \N \N \N 102565 C.gaumeri Cuphea Cuphea gaumeri \N \N \N \N \N 102566 C.filicaulis Campanula Campanula filicaulis \N \N \N \N \N 102567 R.granulata Rosa Rosa granulata \N \N \N \N \N 102568 \N genus Hazardia \N \N \N \N \N 102569 B.tovarensis Beilschmiedia Beilschmiedia tovarensis \N \N \N \N \N 102570 D.heteromorpha Dodonaea Dodonaea heteromorpha \N \N \N \N \N 102571 C.parviflora Chloanthes Chloanthes parviflora \N \N \N \N \N 102572 \N genus Diphysa \N \N \N \N \N 102573 \N genus Croatiella \N \N \N \N \N 102574 D.SH-2010 Desmodium Desmodium sp. SH-2010 \N \N \N \N \N 102575 M.monantha Medicago Medicago monantha \N \N \N \N \N 102576 \N varietas Cliffortia paucistaminea var. australis \N \N \N \N \N 102577 M.jamaicense Mosquitoxylum Mosquitoxylum jamaicense \N \N \N \N \N 102578 L.aureus Lathyrus Lathyrus aureus \N \N \N \N \N 102579 \N genus Eriandra \N \N \N \N \N 102580 A.spraguei Annona Annona spraguei \N \N \N \N \N 102581 \N genus Torminalis \N \N \N \N \N 102582 \N varietas Verbascum sinuatum var. adenosepalum \N \N \N \N \N 102583 C.galpinii Chlorophytum Chlorophytum galpinii \N \N \N \N \N 102584 \N varietas Raphanus sativus var. raphanistroides East Asian wild radish,oil radish \N \N \N \N 102585 P.foetidum Pancratium Pancratium foetidum \N \N \N \N \N 102586 \N varietas Scaevola taccada var. sericea \N \N \N \N \N 102587 H.alternata Hemigraphis Hemigraphis alternata cemetery-plant \N \N \N \N 102588 C.japonica Carpinus Carpinus japonica Japanese hornbeam \N \N \N \N 102589 C.CG-2009 Carex Carex sp. 2 CG-2009 \N \N \N \N \N 102590 \N forma Miscanthus sinensis f. variegatus \N \N \N \N \N 102591 \N subspecies Descurainia cumingiana subsp. tenuissima \N \N \N \N \N 102592 S.sagittata Salvia Salvia sagittata \N \N \N \N \N 102593 C.arabica Chenoleoides Chenoleoides arabica \N \N \N \N \N 102594 \N varietas Nepeta congesta var. cryptantha \N \N \N \N \N 102595 B.macrophylla Blumea Blumea macrophylla \N \N \N \N \N 102596 S.circinnatus Syngonanthus Syngonanthus circinnatus \N \N \N \N \N 102597 R.monticola Rytidosperma Rytidosperma monticola \N \N \N \N \N 102598 \N genus Oreocallis \N \N \N \N \N 102599 A.pulchellus Abrus Abrus pulchellus \N \N \N \N \N 102600 W.patrinioides Winklera Winklera patrinioides \N \N \N \N \N 102601 C.mexicanum Chrysanthellum Chrysanthellum mexicanum \N \N \N \N \N 102602 D.longipes Daemonorops Daemonorops longipes \N \N \N \N \N 102603 P.2403 Pachyphyllum Pachyphyllum sp. Whitten 2403 \N \N \N \N \N 102604 P.viscosa Psiadia Psiadia viscosa \N \N \N \N \N 102605 D.dao Dracontomelon Dracontomelon dao Argus pheasant-tree \N \N \N \N 102606 I.hartwegii Indigofera Indigofera hartwegii \N \N \N \N \N 102607 \N genus Ardisiandra \N \N \N \N \N 102608 R.cristatus Rhinanthus Rhinanthus cristatus \N \N \N \N \N 102609 \N genus Govenia \N \N \N \N \N 102610 G.rotundifolium Galium Galium rotundifolium \N \N \N \N \N 102611 \N subspecies Jacobaea ambigua subsp. ambigua \N \N \N \N \N 102612 H.michelloides Hayataella Hayataella michelloides \N \N \N \N \N 102613 L.44071 Lagarosolen Lagarosolen sp. Shui et al. 44071 \N \N \N \N \N 102614 C.Jolokia' Capsicum Capsicum sp. 'Bhut Jolokia' \N \N \N \N \N 102615 S.anomalum/distichum Solanum Solanum anomalum/distichum \N \N \N \N \N 102616 D.albicans Daiotyla Daiotyla albicans \N \N \N \N \N 102617 P.chartacea Planchonella Planchonella chartacea \N \N \N \N \N 102618 B.xantholeuca Brachiaria Brachiaria xantholeuca \N \N \N \N \N 102619 F.clausum Funastrum Funastrum clausum \N \N \N \N \N 102620 P.airoides Pentaschistis Pentameris airoides \N \N \N \N \N 102621 A.ramosa Adonis Adonis ramosa \N \N \N \N \N 102622 G.anethifolia Grindelia Grindelia anethifolia \N \N \N \N \N 102623 \N tribe Eupatorieae \N \N \N \N \N 102624 A.tuberculata Aspalathus Aspalathus tuberculata \N \N \N \N \N 102625 A.gummiferum Arillastrum Arillastrum gummiferum \N \N \N \N \N 102626 P.tianschanica Parrya Parrya tianschanica \N \N \N \N \N 102627 V.tessellata Vanda Vanda tessellata \N \N \N \N \N 102628 F.trilobata Fevillea Fevillea trilobata \N \N \N \N \N 102629 M.colombiana Mimosa Mimosa colombiana \N \N \N \N \N 102630 N.aciculata Neolitsea Neolitsea aciculata \N \N \N \N \N 102631 O.tomentosa Otostegia Otostegia tomentosa \N \N \N \N \N 102632 B.kerberi Bursera Bursera kerberi \N \N \N \N \N 102633 C.mertensii Carex Carex mertensii \N \N \N \N \N 102634 D.pageanum Delosperma Delosperma pageanum \N \N \N \N \N 102635 K.biflora Krigia Krigia biflora \N \N \N \N \N 102636 M.micrantha Mareya Mareya micrantha \N \N \N \N \N 102637 D.neocaledonica Drosera Drosera neocaledonica \N \N \N \N \N 102638 T.labialis Teramnus Teramnus labialis blue wiss \N \N \N \N 102639 \N genus Brasiliorchis \N \N \N \N \N 102640 P.magnificum Piper Piper magnificum \N \N \N \N \N 102641 P.ilicifolium Podolobium Podolobium ilicifolium \N \N \N \N \N 102642 L.gibberoa Lobelia Lobelia gibberoa \N \N \N \N \N 102643 P.sandemanii Palaua Palaua sandemanii \N \N \N \N \N 102644 \N genus Brunnichia \N \N \N \N \N 102645 M.donaeana Miconia Miconia donaeana \N \N \N \N \N 102646 \N genus Haloragis \N \N \N \N \N 102647 R.regia Roystonea Roystonea regia Cuban royal palm \N \N \N \N 102648 C.aurantiflora Cornukaempferia Cornukaempferia aurantiflora \N \N \N \N \N 102649 P.anitum Paphiopedilum Paphiopedilum anitum \N \N \N \N \N 102650 \N subspecies Clinopodium graveolens subsp. rotundifolium \N \N \N \N \N 102651 P.violacea Paris Paris violacea \N \N \N \N \N 102652 A.ovalifolium Arthrophyllum Arthrophyllum ovalifolium \N \N \N \N \N 102653 M.fruticans Meineckia Meineckia fruticans \N \N \N \N \N 102654 L.taliense Lilium Lilium taliense \N \N \N \N \N 102655 \N genus Evodiella \N \N \N \N \N 102656 D.gracilis Deutzia Deutzia gracilis \N \N \N \N \N 102657 C.tenax Carex Carex tenax wire sedge \N \N \N \N 102658 S.hwangshanensis Saussurea Saussurea hwangshanensis \N \N \N \N \N 102659 N.1371 Nothoscordum Nothoscordum sp. 1371 \N \N \N \N \N 102660 \N genus Erinus \N \N \N \N \N 102661 S.caroliniana Silene Silene caroliniana sticky catchfly \N \N \N \N 102662 C.backhouseana Correa Correa backhouseana \N \N \N \N \N 102663 \N family Corsiaceae \N \N \N \N \N 102664 P.haughtii Piper Piper haughtii \N \N \N \N \N 102665 A.multifida Achillea Achillea multifida \N \N \N \N \N 102666 N.argentinensis Nassella Nassella argentinensis \N \N \N \N \N 102667 C.890 Coffea Coffea sp. Pollard 890 \N \N \N \N \N 102668 P.dryadum Piper Piper dryadum \N \N \N \N \N 102669 B.drummondii Banksia Banksia drummondii \N \N \N \N \N 102670 H.parviflora Hoodia Hoodia parviflora \N \N \N \N \N 102671 \N genus Psathyrotes \N \N \N \N \N 102672 \N varietas Guzmania angustifolia var. angustifolia \N \N \N \N \N 102673 C.sitiensis Carlina Carlina sitiensis \N \N \N \N \N 102674 S.luchuensis Suzukia Suzukia luchuensis \N \N \N \N \N 102675 A.anisophyllus Artocarpus Artocarpus anisophyllus \N \N \N \N \N 102676 \N genus Doellingeria \N \N \N \N \N 102677 C.13797 Chamaecrista Chamaecrista sp. Breteler 13797 \N \N \N \N \N 102678 A.courtallumensis Apocopis Apocopis courtallumensis \N \N \N \N \N 102679 M.imbricata Montanoa Montanoa imbricata \N \N \N \N \N 102680 A.cyrenaica Anthemis Anthemis cyrenaica \N \N \N \N \N 102681 O.densiflora Ocotea Ocotea densiflora \N \N \N \N \N 102682 C.revolutum Calycogonium Calycogonium revolutum \N \N \N \N \N 102683 \N genus Endopappus \N \N \N \N \N 102684 C.decaryi Centauropsis Centauropsis decaryi \N \N \N \N \N 102685 A.ceylanicus Aeschynanthus Aeschynanthus ceylanicus \N \N \N \N \N 102686 G.lomensis Gilia Gilia lomensis \N \N \N \N \N 102687 A.sheldonii Astragalus Astragalus sheldonii \N \N \N \N \N 102688 L.erianthus Leymus Leymus erianthus \N \N \N \N \N 102689 A.standleyana Ateleia Ateleia standleyana \N \N \N \N \N 102690 \N varietas Calyptridium parryi var. parryi \N \N \N \N \N 102691 G.barthei Globba Globba barthei \N \N \N \N \N 102692 E.JK-2009 Exochaenium Exochaenium sp. C JK-2009 \N \N \N \N \N 102693 F.mollior Ficus Ficus mollior \N \N \N \N \N 102694 P.longiradiatus Pseudocymopterus Pseudocymopterus longiradiatus \N \N \N \N \N 102695 O.fourcadei Oxalis Oxalis fourcadei \N \N \N \N \N 102696 D.taliense Delphinium Delphinium taliense \N \N \N \N \N 102697 L.13534 Leptotes Leptotes cf. unicolor IB 13534 \N \N \N \N \N 102698 L.corymbifera Lundia Lundia corymbifera \N \N \N \N \N 102699 P.camerunensis Psychotria Psychotria camerunensis \N \N \N \N \N 102700 \N genus Glossodia \N \N \N \N \N 102701 R.intermedius Rumex Rumex intermedius \N \N \N \N \N 102702 \N varietas Croton flavens var. rigidus \N \N \N \N \N 102703 \N genus Bipinnula \N \N \N \N \N 102704 C.peltatum Codiaeum Codiaeum peltatum \N \N \N \N \N 102705 D.rufescens Disa Disa rufescens \N \N \N \N \N 102706 T.541 unclassified Taraxacum Taraxacum (sect. Parvula) sp. 541 \N \N \N \N \N 102707 M.pellitum Mesembryanthemum Mesembryanthemum pellitum \N \N \N \N \N 102708 H.comosum Hordeum Hordeum comosum \N \N \N \N \N 102709 T.semidecandra Tibouchina Tibouchina semidecandra \N \N \N \N \N 102710 A.palaestinum Arrhenatherum Arrhenatherum palaestinum \N \N \N \N \N 102711 \N genus Capillipedium \N \N \N \N \N 102712 S.suffrutescens Suaeda Suaeda suffrutescens \N \N \N \N \N 102713 D.argothamnoides Ditaxis Ditaxis argothamnoides \N \N \N \N \N 102714 P.urocarpa Peperomia Peperomia urocarpa \N \N \N \N \N 102715 S.praeclara Spiranthes Spiranthes praeclara \N \N \N \N \N 102716 \N genus Chamaedaphne \N \N \N \N \N 102717 A.bengalensis Arundinella Arundinella bengalensis \N \N \N \N \N 102718 H.virgatum Haplophyllum Haplophyllum virgatum \N \N \N \N \N 102719 A.obtecta Argyreia Argyreia obtecta \N \N \N \N \N 102720 C.annua Camphorosma Camphorosma annua \N \N \N \N \N 102721 O.N178 Oncidium Oncidium aff. obryzatum Williams N178 \N \N \N \N \N 102722 \N subspecies Acer mono subsp. mono \N \N \N \N \N 102723 L.michauxii Lilium Lilium michauxii \N \N \N \N \N 102724 \N genus Astroloba \N \N \N \N \N 102725 N.carrii Nothofagus Nothofagus carrii \N \N \N \N \N 102726 A.24277 Argophyllum Argophyllum sp. PIF 24277 \N \N \N \N \N 102727 K.s.n. Kunzea Kunzea sp. L Bean s.n. \N \N \N \N \N 102728 E.bodkinii Erica Erica bodkinii \N \N \N \N \N 102729 T.remyi Tetramolopium Tetramolopium remyi \N \N \N \N \N 102730 D.devonianum Dendrobium Dendrobium devonianum \N \N \N \N \N 102731 A.laurifolia Allocassine Allocassine laurifolia \N \N \N \N \N 102732 P.gayii Potamogeton Potamogeton gayii \N \N \N \N \N 102733 \N family Aristolochiaceae birthwort family \N \N \N \N 102734 \N varietas Herrickia kingii var. barnebyana \N \N \N \N \N 102735 R.tutcherae Rhododendron Rhododendron tutcherae \N \N \N \N \N 102736 C.cipoana Cleistes Cleistes cipoana \N \N \N \N \N 102737 \N subspecies Gazania jurineifolia subsp. scabra \N \N \N \N \N 102738 H.anamesa Hyparrhenia Hyparrhenia anamesa \N \N \N \N \N 102739 R.beguei Rhaptopetalum Rhaptopetalum beguei \N \N \N \N \N 102740 F.umbellata Ficus Ficus umbellata \N \N \N \N \N 102741 R.sarukhaniana Ruellia Ruellia sarukhaniana \N \N \N \N \N 102742 C.xanthanthus Coleus Coleus xanthanthus \N \N \N \N \N 102743 M.cherrieri Metrosideros Metrosideros cherrieri \N \N \N \N \N 102744 P.sibiricum Polygonatum Polygonatum sibiricum huang jing \N \N \N \N 102745 G.tenera Genista Genista tenera \N \N \N \N \N 102746 A.20 Arctotis Arctotis sp. E Samuel 20 \N \N \N \N \N 102747 T.pachypoda Talinella Talinella pachypoda \N \N \N \N \N 102748 B.laevigata Berendtia Berendtia laevigata \N \N \N \N \N 102749 G.incisa Glandularia Glandularia incisa \N \N \N \N \N 102750 V.divaricata Virgilia Virgilia divaricata \N \N \N \N \N 102751 D.lotax Dracula Dracula lotax \N \N \N \N \N 102752 J.integerrima Jatropha Jatropha integerrima \N \N \N \N \N 102753 G.brentae Gagea Gagea brentae \N \N \N \N \N 102754 \N genus Viscaria \N \N \N \N \N 102755 B.26728 Bathysa Bathysa sp. Harling and Stahl 26728 \N \N \N \N \N 102756 \N genus Cananga \N \N \N \N \N 102757 C.maritimum Centaurium Centaurium maritimum \N \N \N \N \N 102758 L.corymbosum Leucadendron Leucadendron corymbosum \N \N \N \N \N 102759 \N varietas Ampelopsis glandulosa var. heterophylla \N \N \N \N \N 102760 T.baliophylla Tillandsia Tillandsia baliophylla \N \N \N \N \N 102761 C.ovatum Canarium Canarium ovatum \N \N \N \N \N 102762 O.colorata Orobanche Orobanche colorata \N \N \N \N \N 102763 A.australe Apium Apium australe \N \N \N \N \N 102764 N.parviflora Nemophila Nemophila parviflora \N \N \N \N \N 102765 V.incana Viguiera Viguiera incana \N \N \N \N \N 102766 A.seyal Acacia Acacia seyal \N \N \N \N \N 102767 P.mandshurica Prunus Prunus mandshurica Manchurian plum \N \N \N \N 102768 S.occidentalis Stackhousia Stackhousia occidentalis \N \N \N \N \N 102769 I.emarginella Indigofera Indigofera emarginella \N \N \N \N \N 102770 L.punctata Labichea Labichea punctata \N \N \N \N \N 102771 P.mandjeliana Planchonella Planchonella mandjeliana \N \N \N \N \N 102772 A.strictus Amphipogon Amphipogon strictus \N \N \N \N \N 102773 S.cryptoneura Silene Silene cryptoneura \N \N \N \N \N 102774 C.fluminensis Clusia Clusia fluminensis \N \N \N \N \N 102775 Z.spinosa Zilla Zilla spinosa \N \N \N \N \N 102776 A.somaliensis Aloe Aloe somaliensis \N \N \N \N \N 102777 H.chrysanthum Heliotropium Heliotropium chrysanthum \N \N \N \N \N 102778 R.nipponicus Ranunculus Ranunculus nipponicus \N \N \N \N \N 102779 A.velutina Amorimia Amorimia velutina \N \N \N \N \N 102780 M.lanata Matelea Matelea lanata \N \N \N \N \N 102781 \N genus Mimosa \N \N \N \N \N 102782 M.sinuosa Muhlenbergia Muhlenbergia sinuosa \N \N \N \N \N 102783 A.MG-2008c Allium Allium sp. MG-2008c \N \N \N \N \N 102784 T.hispida Trinia Trinia hispida \N \N \N \N \N 102785 B.insectiferum Bulbophyllum Bulbophyllum insectiferum \N \N \N \N \N 102786 M.tuberosa Myrmecodia Myrmecodia tuberosa \N \N \N \N \N 102787 B.micrantha Bidens Bidens micrantha \N \N \N \N \N 102788 \N genus Halodule \N \N \N \N \N 102789 C.arcuata Clarkia Clarkia arcuata \N \N \N \N \N 102790 P.hosinoi Ponapea Ponapea hosinoi \N \N \N \N \N 102791 R.penninervis Rumfordia Rumfordia penninervis \N \N \N \N \N 102792 H.rubescens Homalomena Homalomena rubescens \N \N \N \N \N 102793 C.carolipauana Centaurea Centaurea carolipauana \N \N \N \N \N 102794 A.pusilla Abrotanella Abrotanella pusilla \N \N \N \N \N 102795 B.repens Banksia Banksia repens \N \N \N \N \N 102796 M.humilis Malesherbia Malesherbia humilis \N \N \N \N \N 102797 M.maximiliani Moraea Moraea maximiliani \N \N \N \N \N 102798 U.schmidtii Urophyllum Urophyllum schmidtii \N \N \N \N \N 102799 M.platyrea Myrmecodia Myrmecodia platyrea \N \N \N \N \N 102800 M.tripetala Magnolia Magnolia tripetala umbrella-tree \N \N \N \N 102801 P.argentea Potentilla Potentilla argentea hoary cinquefoil,silverleaf cinquefoil \N \N \N \N 102802 A.nelsonii Aristolochia Aristolochia nelsonii \N \N \N \N \N 102803 H.acida Hymenocardia Hymenocardia acida \N \N \N \N \N 102804 C.chartaceus Costus Costus chartaceus \N \N \N \N \N 102805 P.arida Pultenaea Pultenaea arida \N \N \N \N \N 102806 C.pectinata Chloris Chloris pectinata \N \N \N \N \N 102807 \N subspecies Combretum collinum subsp. hypopilinum \N \N \N \N \N 102808 B.164 Begonia Begonia sp. Forrest 164 \N \N \N \N \N 102809 P.coccinea Portlandia Portlandia coccinea \N \N \N \N \N 102810 M.pulvinata Miconia Miconia pulvinata \N \N \N \N \N 102811 V.radiata Vigna Vigna radiata \N \N \N \N \N 102812 \N genus Cyanella \N \N \N \N \N 102813 P.reflexa Poa Poa reflexa \N \N \N \N \N 102814 T.caulescens Tillandsia Tillandsia caulescens \N \N \N \N \N 102815 S.glaucus Senecio Senecio glaucus \N \N \N \N \N 102816 \N forma Phyllostachys sulphurea f. youngii \N \N \N \N \N 102817 O.pachystachyus Orthocarpus Orthocarpus pachystachyus \N \N \N \N \N 102818 S.dubia Staehelina Staehelina dubia \N \N \N \N \N 102819 \N varietas Photinia serratifolia var. ardisiifolia \N \N \N \N \N 102820 P.ahipa Pachyrhizus Pachyrhizus ahipa ajipa,ajipo,yam-bean \N \N \N \N 102821 C.chlorobasis Colchicum Colchicum chlorobasis \N \N \N \N \N 102822 \N genus Adina \N \N \N \N \N 102823 I.hirsutus Ischnosiphon Ischnosiphon hirsutus \N \N \N \N \N 102824 \N genus Ptelea \N \N \N \N \N 102825 C.hohenackeri Campanula Campanula hohenackeri \N \N \N \N \N 102826 F.pachycarpa Ferula Ferula pachycarpa \N \N \N \N \N 102827 \N genus Ernodea \N \N \N \N \N 102828 S.macrosoma Stylosanthes Stylosanthes macrosoma \N \N \N \N \N 102829 D.cuneifolius Dendropanax Dendropanax cuneifolius \N \N \N \N \N 102830 A.annua Alepidocline Alepidocline annua \N \N \N \N \N 102831 R.polystachya Rubrivena Rubrivena polystachya Himalayan knotweed,Kashmir plume \N \N \N \N 102832 A.flaccida Anemone Anemone flaccida e zhang cao,wu gong san qi \N \N \N \N 102833 E.crus-pavonis Echinochloa Echinochloa crus-pavonis gulf barnyard grass \N \N \N \N 102834 A.calva Anemone Anemone calva \N \N \N \N \N 102835 A.apiculata Ainsliaea Ainsliaea apiculata \N \N \N \N \N 102836 T.tenella Tarasa Tarasa tenella \N \N \N \N \N 102837 A.crinita Austrostipa Austrostipa crinita \N \N \N \N \N 102838 C.carpatha Campanula Campanula carpatha \N \N \N \N \N 102839 T.muticus Tridens Tridens muticus \N \N \N \N \N 102840 C.tricuspidata Cliffortia Cliffortia tricuspidata \N \N \N \N \N 102841 B.maynensis Begonia Begonia maynensis \N \N \N \N \N 102842 H.whipplei Hesperoyucca Hesperoyucca whipplei Our Lord's candle \N \N \N \N 102843 C.decipiens Cuscuta Cuscuta decipiens \N \N \N \N \N 102844 E.davidii Epimedium Epimedium davidii \N \N \N \N \N 102845 V.potosina Viguiera Viguiera potosina \N \N \N \N \N 102846 A.nerinifolium Allium Allium nerinifolium \N \N \N \N \N 102847 \N genus Chrysochlamys \N \N \N \N \N 102848 H.contortus Heteropogon Heteropogon contortus \N \N \N \N \N 102849 A.montana Artemisia Artemisia montana \N \N \N \N \N 102850 A.maximum Asarum Asarum maximum \N \N \N \N \N 102851 \N genus Marcgravia \N \N \N \N \N 102852 \N genus Cumarinia \N \N \N \N \N 102853 \N genus Bournea \N \N \N \N \N 102854 B.lemanniana Banksia Banksia lemanniana \N \N \N \N \N 102855 M.similis Maxillaria Maxillaria similis \N \N \N \N \N 102856 V.laurifolia Valeriana Valeriana laurifolia \N \N \N \N \N 102857 D.kotschyi Draba Draba kotschyi \N \N \N \N \N 102858 E.nubica Euphorbia Euphorbia nubica \N \N \N \N \N 102859 M.aurea Musschia Musschia aurea \N \N \N \N \N 102860 V.caerulea Voyria Voyria caerulea \N \N \N \N \N 102861 \N subspecies Ranunculus crithmifolius subsp. paucifolius \N \N \N \N \N 102862 T.baileyi Tillandsia Tillandsia baileyi \N \N \N \N \N 102863 P.largiflorens Pultenaea Pultenaea largiflorens \N \N \N \N \N 102864 E.reesei Ebenus Ebenus reesei \N \N \N \N \N 102865 P.tripartita Pilea Pilea tripartita \N \N \N \N \N 102866 L.perrieri Leersia Leersia perrieri \N \N \N \N \N 102867 G.pubescens Galeopsis Galeopsis pubescens \N \N \N \N \N 102868 P.scopoliae Polyscias Polyscias scopoliae \N \N \N \N \N 102869 \N subspecies Scrophularia kurdica subsp. glabra \N \N \N \N \N 102870 N.aplocaryoides Nolana Nolana aplocaryoides \N \N \N \N \N 102871 S.plumosum Sorghum Sorghum plumosum \N \N \N \N \N 102872 A.batizocoi Arachis Arachis batizocoi \N \N \N \N \N 102873 O.nevadense Oncidium Oncidium nevadense \N \N \N \N \N 102874 T.AC45-1 Talinella Talinella sp. AC45-1 \N \N \N \N \N 102875 H.amplexicaulis Halopeplis Halopeplis amplexicaulis \N \N \N \N \N 102876 K.nebulosa Kinabaluchloa Kinabaluchloa nebulosa \N \N \N \N \N 102877 S.magadanensis Salix Salix magadanensis \N \N \N \N \N 102878 C.cytherea Crepis Crepis cytherea \N \N \N \N \N 102879 L.truncicola Liparis Liparis truncicola \N \N \N \N \N 102880 C.tsirananae Coffea Coffea tsirananae \N \N \N \N \N 102881 C.distincta Ceropegia Ceropegia distincta \N \N \N \N \N 102882 \N varietas Carex luzulina var. luzulina \N \N \N \N \N 102883 \N family Myristicaceae nutmeg family \N \N \N \N 102884 P.corymbosus Pterostyrax Pterostyrax corymbosus \N \N \N \N \N 102885 B.SH-2010 Buddleja Buddleja sp. SH-2010 \N \N \N \N \N 102886 C.lyratiformis Cineraria Cineraria lyratiformis \N \N \N \N \N 102887 P.helferi Plectranthus Plectranthus helferi \N \N \N \N \N 102888 L.crocata Lycoseris Lycoseris crocata \N \N \N \N \N 102889 H.pubescens Hypolaena Hypolaena pubescens \N \N \N \N \N 102890 C.lavranii Caralluma Caralluma lavranii \N \N \N \N \N 102891 M.neglectum Muscari Muscari neglectum \N \N \N \N \N 102892 O.quixos Ocotea Ocotea quixos \N \N \N \N \N 102893 O.petri-primi Olgaea Olgaea petri-primi \N \N \N \N \N 102894 M.pterosperma Mentzelia Mentzelia pterosperma \N \N \N \N \N 102895 O.hardyi Orbeanthus Orbeanthus hardyi \N \N \N \N \N 102896 C.pricei Crawfurdia Crawfurdia pricei \N \N \N \N \N 102897 L.perlata Larryleachia Larryleachia perlata \N \N \N \N \N 102898 C.ambongensis Coffea Coffea ambongensis \N \N \N \N \N 102899 M.urceolata Meriania Meriania urceolata \N \N \N \N \N 102900 S.nutans Silene Silene nutans \N \N \N \N \N 102901 G.baileyi Grastidium Grastidium baileyi \N \N \N \N \N 102902 P.simplex Paspalum Paspalum simplex \N \N \N \N \N 102903 D.coriacea Drymonia Drymonia coriacea \N \N \N \N \N 102904 G.hians Gastrolobium Gastrolobium hians \N \N \N \N \N 102905 N.crassipes Nesogordonia Nesogordonia crassipes \N \N \N \N \N 102906 S.herculeum Solanum Solanum herculeum \N \N \N \N \N 102907 O.aconiti-lycoctoni Orobanche Orobanche aconiti-lycoctoni \N \N \N \N \N 102908 P.oppositifolius Pseudonemacladus Pseudonemacladus oppositifolius \N \N \N \N \N 102909 I.pringlei Ipomopsis Ipomopsis pringlei \N \N \N \N \N 102910 E.polycephalus Echinocactus Echinocactus polycephalus \N \N \N \N \N 102911 P.adunca Pultenaea Pultenaea adunca \N \N \N \N \N 102912 S.crispata Sophronitis Sophronitis crispata \N \N \N \N \N 102913 I.omeiana Impatiens Impatiens omeiana \N \N \N \N \N 102914 C.hooveri Calycadenia Calycadenia hooveri Hoover's calycadenia \N \N \N \N 102915 A.axillaris Arabis Arabis axillaris \N \N \N \N \N 102916 T.sivarajanii Thottea Thottea sivarajanii \N \N \N \N \N 102917 L.hemisphaerica Lipocarpha Lipocarpha hemisphaerica \N \N \N \N \N 102918 N.obtusissima Nevillea Nevillea obtusissima \N \N \N \N \N 102919 \N genus Decaisnina \N \N \N \N \N 102920 C.purpurea Cryptocoryne Cryptocoryne x purpurea \N \N \N \N \N 102921 D.schlechteri Dichaea Dichaea schlechteri \N \N \N \N \N 102922 \N genus Ganophyllum \N \N \N \N \N 102923 \N no rank Musa AAT Group \N \N \N \N \N 102924 C.bullatus Cotoneaster Cotoneaster bullatus \N \N \N \N \N 102925 C.longispathus Calamus Calamus longispathus \N \N \N \N \N 102926 \N genus Arthrochilus \N \N \N \N \N 102927 S.spinosa Schweinfurthia Schweinfurthia spinosa \N \N \N \N \N 102928 S.velutina Saintpaulia Saintpaulia velutina \N \N \N \N \N 102929 \N subspecies Oldenlandia mitrasacmoides subsp. trachymenoides \N \N \N \N \N 102930 \N varietas Santalum austrocaledonicum var. austrocaledonicum \N \N \N \N \N 102931 A.densiflora Adenia Adenia densiflora \N \N \N \N \N 102932 B.184a Bulbostylis Bulbostylis sp. Clarke 184a \N \N \N \N \N 102933 M.Tai unclassified Magnoliophyta Magnoliophyta sp. Khao-Yen Tai \N \N \N \N \N 102934 M.woodii Mimosa Mimosa woodii \N \N \N \N \N 102935 P.minor Primula Primula minor \N \N \N \N \N 102936 S.pygmaea Saussurea Saussurea pygmaea \N \N \N \N \N 102937 B.tholloniana Buchholzia Buchholzia tholloniana \N \N \N \N \N 102938 R.parabolica Rhagodia Rhagodia parabolica \N \N \N \N \N 102939 \N genus Pternandra \N \N \N \N \N 102940 P.glauca Petrosimonia Petrosimonia glauca \N \N \N \N \N 102941 P.eucalyptophylla Parsonsia Parsonsia eucalyptophylla \N \N \N \N \N 102942 I.radicans Impatiens Impatiens radicans \N \N \N \N \N 102943 K.geminata Kengyilia Kengyilia geminata \N \N \N \N \N 102944 P.rizhaoensis Pedicularis Pedicularis rizhaoensis \N \N \N \N \N 102945 C.fresnensis Ceanothus Ceanothus fresnensis \N \N \N \N \N 102946 \N genus Helia \N \N \N \N \N 102947 \N subspecies Festuca arundinacea subsp. cirtensis \N \N \N \N \N 102948 C.gummifera Carlina Carlina gummifera \N \N \N \N \N 102949 \N subspecies Sideritis cretica subsp. cretica \N \N \N \N \N 102950 L.yiunensis Leymus Leymus yiunensis \N \N \N \N \N 102951 R.tenue Ribes Ribes tenue \N \N \N \N \N 102952 A.jaarsveldii Anginon Anginon jaarsveldii \N \N \N \N \N 102953 P.subcordata Polyalthia Polyalthia subcordata \N \N \N \N \N 102954 I.parviflorum Illicium Illicium parviflorum \N \N \N \N \N 102955 P.argentea Pseudovigna Pseudovigna argentea \N \N \N \N \N 102956 G.urbaniana Gymnosporia Gymnosporia urbaniana \N \N \N \N \N 102957 T.agrostiphyllus Tragopogon Tragopogon agrostiphyllus \N \N \N \N \N 102958 C.integrifolia Clematis Clematis integrifolia \N \N \N \N \N 102959 \N varietas Senecio scandens var. incisus \N \N \N \N \N 102960 E.grandirostris Eleocharis Eleocharis grandirostris \N \N \N \N \N 102961 M.angusii Microtis Microtis angusii \N \N \N \N \N 102962 L.pinnatifidum Lepidium Lepidium pinnatifidum \N \N \N \N \N 102963 O.multiceps Oxytropis Oxytropis multiceps \N \N \N \N \N 102964 B.amplectens Bidens Bidens amplectens \N \N \N \N \N 102965 C.mollis Campanula Campanula mollis \N \N \N \N \N 102966 E.neopolycnemoides Euphorbia Euphorbia neopolycnemoides \N \N \N \N \N 102967 A.lynchiana Asclepias Asclepias lynchiana \N \N \N \N \N 102968 G.brachyphylla Gentiana Gentiana brachyphylla \N \N \N \N \N 102969 H.rufula Heteropterys Heteropterys rufula \N \N \N \N \N 102970 D.fleckeri Dendrobium Dendrobium fleckeri \N \N \N \N \N 102972 B.papyracea Beccariella Beccariella papyracea \N \N \N \N \N 102973 P.2709 Pyrostria Pyrostria sp. Davis 2709 \N \N \N \N \N 102974 F.fascicularis Felicia Felicia fascicularis \N \N \N \N \N 102975 P.virginiana Prunus Prunus virginiana chokecherry \N \N \N \N 102976 C.rouillieri Chondrilla Chondrilla rouillieri \N \N \N \N \N 102977 M.thornberi Mammillaria Mammillaria thornberi \N \N \N \N \N 102978 M.aeruginosum Marathrum Marathrum aeruginosum \N \N \N \N \N 102979 C.mollis Crataegus Crataegus mollis \N \N \N \N \N 102980 B.burchellii Berzelia Berzelia burchellii \N \N \N \N \N 102981 O.rhodia Ophrys Ophrys rhodia \N \N \N \N \N 102982 \N varietas Lewisia rediviva var. rediviva \N \N \N \N \N 102983 A.ligulata Alpinia Alpinia ligulata \N \N \N \N \N 102984 C.melantha Cassytha Cassytha melantha \N \N \N \N \N 102985 P.SM9108 Phalaenopsis Phalaenopsis sp. SM9108 \N \N \N \N \N 102986 \N genus Schoenoxiphium \N \N \N \N \N 102987 M.pringlei Melampodium Melampodium pringlei \N \N \N \N \N 102988 T.virgata Thymelaea Thymelaea virgata \N \N \N \N \N 102989 Z.decumbens Zygophyllum Zygophyllum decumbens \N \N \N \N \N 102990 A.crenata Azorella Azorella crenata \N \N \N \N \N 102991 A.500 Ascarina Ascarina sp. Thien 500 \N \N \N \N \N 102992 A.eriosphaerus Astragalus Astragalus eriosphaerus \N \N \N \N \N 102993 A.schneideri Adesmia Adesmia schneideri \N \N \N \N \N 102994 S.1126 Stanhopea Stanhopea sp. Cameron 1126 \N \N \N \N \N 102995 C.longipes Crossandra Crossandra longipes \N \N \N \N \N 102996 R.divaricata Roycea Roycea divaricata \N \N \N \N \N 102997 R.CA103 Rhipsalis Rhipsalis sp. CA103 \N \N \N \N \N 102998 O.appendiculata Oraniopsis Oraniopsis appendiculata \N \N \N \N \N 102999 C.polyphyllum Colchicum Colchicum polyphyllum \N \N \N \N \N 103000 G.G2344 Glycine Glycine sp. G2344 \N \N \N \N \N 103001 P.madagascariensis Phyllanthus Phyllanthus madagascariensis \N \N \N \N \N 103002 C.decaisnei Colchicum Colchicum decaisnei \N \N \N \N \N 103003 \N subspecies Arabidopsis halleri subsp. tatrica \N \N \N \N \N 103004 S.regla Salvia Salvia regla \N \N \N \N \N 103005 M.championii Magnolia Magnolia championii \N \N \N \N \N 103006 G.baudii Gloriosa Gloriosa baudii \N \N \N \N \N 103007 C.nipponicus Cyperus Cyperus nipponicus \N \N \N \N \N 103008 M.peltatus Mallotus Mallotus peltatus \N \N \N \N \N 103009 C.aspera Cineraria Cineraria aspera \N \N \N \N \N 103010 A.longifolia Acacia Acacia longifolia \N \N \N \N \N 103011 D.immaculata Dicerandra Dicerandra immaculata \N \N \N \N \N 103012 R.macranthus Ranunculus Ranunculus macranthus \N \N \N \N \N 103013 N.emarginata Nemcia Nemcia emarginata \N \N \N \N \N 103014 E.pinnatus Erigeron Erigeron pinnatus \N \N \N \N \N 103015 S.JPY-2011 Salweenia Salweenia sp. JPY-2011 \N \N \N \N \N 103016 G.costulatum Gossypium Gossypium costulatum \N \N \N \N \N 103017 G.heterophylla Gymnosporia Gymnosporia heterophylla \N \N \N \N \N 103018 G.arundinacea Geonoma Geonoma arundinacea \N \N \N \N \N 103019 L.hirsutus Lasianthus Lasianthus hirsutus \N \N \N \N \N 103020 C.wiedemannii Cymbocarpum Cymbocarpum wiedemannii \N \N \N \N \N 103021 D.variegatum Delphinium Delphinium variegatum royal larkspur \N \N \N \N 103022 L.grandifolia Luculia Luculia grandifolia \N \N \N \N \N 103023 A.wilkesiana Acalypha Acalypha wilkesiana \N \N \N \N \N 103024 C.prichardii Calceolaria Calceolaria prichardii \N \N \N \N \N 103025 D.berardioidea Dolomiaea Dolomiaea berardioidea \N \N \N \N \N 103026 M.nunezii Mammillaria Mammillaria nunezii \N \N \N \N \N 103027 \N varietas Anisosciadium isosciadium var. idumaeum \N \N \N \N \N 103028 L.592 Lindackeria Lindackeria sp. Pennington & Zamora 592 \N \N \N \N \N 103029 S.coccinea Salpixantha Salpixantha coccinea \N \N \N \N \N 103030 C.pullata Centaurea Centaurea pullata \N \N \N \N \N 103031 G.austriaca Gymnadenia Gymnadenia austriaca \N \N \N \N \N 103032 \N genus Danthonia \N \N \N \N \N 103033 V.85-19 Vellozia Vellozia sp. SEL 85-19 \N \N \N \N \N 103034 L.boykinii Lobelia Lobelia boykinii \N \N \N \N \N 103035 A.fosbergii Arachnothryx Arachnothryx fosbergii \N \N \N \N \N 103036 N.domestica Nandina Nandina domestica heavenly bamboo \N \N \N \N 103037 A.mollifolia Acacia Acacia mollifolia \N \N \N \N \N 103038 C.SH-2010 Chloranthus Chloranthus sp. SH-2010 \N \N \N \N \N 103039 D.mexicana Didymaea Didymaea mexicana \N \N \N \N \N 103040 H.mitrata Hemsleya Hemsleya mitrata \N \N \N \N \N 103041 S.oroteneriffae Sideritis Sideritis oroteneriffae \N \N \N \N \N 103042 E.haemastoma Eucalyptus Eucalyptus haemastoma scribbly gum \N \N \N \N 103043 S.boivinii Strophanthus Strophanthus boivinii \N \N \N \N \N 103044 A.californica Artemisia Artemisia californica California sagebrush \N \N \N \N 103045 \N genus Mahurea \N \N \N \N \N 103046 \N genus Polygonum \N \N \N \N \N 103047 N.manicata Nassella Nassella manicata \N \N \N \N \N 103048 G.substrigosa Globba Globba substrigosa \N \N \N \N \N 103049 C.cypripediiflora Calceolaria Calceolaria cypripediiflora \N \N \N \N \N 103050 \N varietas Pisum sativum var. ponderosum \N \N \N \N \N 103051 I.apsotis Impatiens Impatiens apsotis \N \N \N \N \N 103052 F.grandifolia Fagus Fagus grandifolia American beech \N \N \N \N 103053 C.hypophoenicea Castanopsis Castanopsis hypophoenicea \N \N \N \N \N 103054 \N genus Gastrochilus \N \N \N \N \N 103055 P.macrophyllum Paranephelium Paranephelium macrophyllum \N \N \N \N \N 103056 D.capitatus Dianthus Dianthus capitatus \N \N \N \N \N 103057 C.ordosica Caragana Caragana ordosica \N \N \N \N \N 103058 A.mertensii Aechmea Aechmea mertensii \N \N \N \N \N 103059 \N subspecies Piriqueta cistoides subsp. caroliniana pitted stripeseed \N \N \N \N 103060 \N subfamily Malvoideae \N \N \N \N \N 103061 P.badensis Poa Poa badensis \N \N \N \N \N 103062 P.cuneata Phlebotaenia Phlebotaenia cuneata \N \N \N \N \N 103063 L.aureum Limonium Limonium aureum \N \N \N \N \N 103064 C.ligulata Chaboissaea Chaboissaea ligulata \N \N \N \N \N 103065 M.rostrata Magnolia Magnolia rostrata \N \N \N \N \N 103066 D.patens Delphinium Delphinium patens spreading larkspur \N \N \N \N 103067 L.flexus Leymus Leymus flexus \N \N \N \N \N 103068 Q.margarettiae Quercus Quercus margarettiae \N \N \N \N \N 103069 S.elongatum Satyrium Satyrium elongatum \N \N \N \N \N 103070 L.parviflora Lunania Lunania parviflora \N \N \N \N \N 103071 \N varietas Triticum dicoccoides var. kotschyi \N \N \N \N \N 103072 C.verrucosa Carex Carex verrucosa \N \N \N \N \N 103073 P.acmodontum Paphiopedilum Paphiopedilum acmodontum \N \N \N \N \N 103074 \N genus Podranea \N \N \N \N \N 103075 S.clavata Scaphyglottis Scaphyglottis clavata \N \N \N \N \N 103076 \N subspecies Gymnocalycium reductum subsp. leeanum \N \N \N \N \N 103077 G.talamancana Gunnera Gunnera talamancana \N \N \N \N \N 103078 \N genus Leonardoxa \N \N \N \N \N 103079 A.turkestanicum Aulacospermum Aulacospermum turkestanicum \N \N \N \N \N 103080 B.scortechinii Brachyloma Brachyloma scortechinii \N \N \N \N \N 103081 T.michelianum Trifolium Trifolium michelianum \N \N \N \N \N 103082 A.9135 Adenia Adenia sp. Gilbert 9135 \N \N \N \N \N 103083 C.subcapitata Campanula Campanula subcapitata \N \N \N \N \N 103084 S.trilobata Spiraea Spiraea trilobata \N \N \N \N \N 103085 H.glauca Hymenocallis Hymenocallis glauca \N \N \N \N \N 103086 S.jamaicense Scybalium Scybalium jamaicense \N \N \N \N \N 103087 S.triactina Sedum Sedum triactina \N \N \N \N \N 103088 S.marshallii Salicornia Salicornia x marshallii \N \N \N \N \N 103089 X.dasylirioides Xerophyta Xerophyta dasylirioides \N \N \N \N \N 103090 C.lineare Cirsium Cirsium lineare \N \N \N \N \N 103091 T.pratensis Tragopogon Tragopogon pratensis Jack-go-to-bed-at-noon,John-go-to-bed-at-noon,shepherd's-clock \N \N \N \N 103092 R.henryi Rosa Rosa henryi \N \N \N \N \N 103093 C.caspius Crocus Crocus caspius \N \N \N \N \N 103094 M.fujianensis Michelia Michelia fujianensis \N \N \N \N \N 103095 H.globulosa Hoya Hoya globulosa \N \N \N \N \N 103096 V.muricata Valerianella Valerianella muricata \N \N \N \N \N 103097 A.melanthioides Androcymbium Androcymbium melanthioides \N \N \N \N \N 103098 R.amoena Rondeletia Rondeletia amoena \N \N \N \N \N 103099 P.jamesii Penstemon Penstemon jamesii \N \N \N \N \N 103100 \N genus Jatropha \N \N \N \N \N 103101 S.flexuosum Schizodium Schizodium flexuosum \N \N \N \N \N 103102 P.LA-2002 Psychotria Psychotria aff. rubra LA-2002 \N \N \N \N \N 103103 E.cruenta Erica Erica cruenta \N \N \N \N \N 103104 \N genus Cuitlauzina \N \N \N \N \N 103105 M.fastigiatum Mesembryanthemum Mesembryanthemum fastigiatum \N \N \N \N \N 103106 P.gabonica Psychotria Psychotria gabonica \N \N \N \N \N 103107 A.fallacinum Alyssum Alyssum fallacinum \N \N \N \N \N 103108 \N genus Pelletiera \N \N \N \N \N 103109 H.chrysophylla Heteropterys Heteropterys chrysophylla \N \N \N \N \N 103110 C.plumulosus Chrysopogon Chrysopogon plumulosus \N \N \N \N \N 103111 E.symmetrica Euphorbia Euphorbia symmetrica \N \N \N \N \N 103112 S.rosacea Salsola Salsola rosacea \N \N \N \N \N 103113 A.tuberosa Anemone Anemone tuberosa \N \N \N \N \N 103114 \N genus Helosciadium \N \N \N \N \N 103115 C.stenophyllus Costus Costus stenophyllus \N \N \N \N \N 103116 \N varietas Penstemon scariosus var. garrettii \N \N \N \N \N 103117 \N genus Geodorum \N \N \N \N \N 103118 D.elegans Dontostemon Dontostemon elegans \N \N \N \N \N 103119 R.insigne Rhododendron Rhododendron insigne \N \N \N \N \N 103120 G.radiata Genista Genista radiata \N \N \N \N \N 103121 E.lehmannii Eremodaucus Eremodaucus lehmannii \N \N \N \N \N 103122 A.biflora Aspalathus Aspalathus biflora \N \N \N \N \N 103123 P.nitida Phylica Phylica nitida \N \N \N \N \N 103124 S.groffii Symplocos Symplocos groffii \N \N \N \N \N 103125 S.diversifolium Solanum Solanum diversifolium \N \N \N \N \N 103126 A.rugosa Agastache Agastache rugosa \N \N \N \N \N 103127 T.zeylanicum Trichodesma Trichodesma zeylanicum \N \N \N \N \N 103128 M.macrocarpum Muscari Muscari macrocarpum \N \N \N \N \N 103129 \N varietas Prunus apetala var. apetala \N \N \N \N \N 103130 C.cornifera Coryphantha Coryphantha cornifera \N \N \N \N \N 103131 P.congesta Phacelia Phacelia congesta \N \N \N \N \N 103132 \N genus Hemiandra \N \N \N \N \N 103133 \N varietas Acaena microphylla var. microphylla \N \N \N \N \N 103134 B.OR1822003 Bulbophyllum Bulbophyllum sp. OR1822003 \N \N \N \N \N 103135 P.glandulosa Peteria Peteria glandulosa \N \N \N \N \N 103136 D.stachyanthus Diplopanax Diplopanax stachyanthus \N \N \N \N \N 103137 P.elatior Peperomia Peperomia elatior \N \N \N \N \N 103138 S.rufum Schoenoxiphium Schoenoxiphium rufum \N \N \N \N \N 103139 C.rotundifolium Clerodendrum Clerodendrum rotundifolium \N \N \N \N \N 103140 S.unijuga Senna Senna unijuga \N \N \N \N \N 103141 A.filicinus Asparagus Asparagus filicinus \N \N \N \N \N 103142 C.sanguinolentum Chrysophyllum Chrysophyllum sanguinolentum \N \N \N \N \N 103143 E.granitica Encyclia Encyclia granitica \N \N \N \N \N 103144 D.kamoonensis Dioscorea Dioscorea kamoonensis \N \N \N \N \N 103145 F.olivacea Ferula Ferula olivacea \N \N \N \N \N 103146 \N subspecies Penaea cneorum subsp. ovata \N \N \N \N \N 103147 E.obliquifolia Eurya Eurya obliquifolia \N \N \N \N \N 103148 F.denticulata Fuchsia Fuchsia denticulata \N \N \N \N \N 103149 P.breweri Phyllodoce Phyllodoce breweri \N \N \N \N \N 103150 \N subfamily Allioideae onion famly \N \N \N \N 103151 B.salicina Bedfordia Bedfordia linearis x Bedfordia salicina \N \N \N \N \N 103152 \N varietas Centaurea resupinata var. spachii \N \N \N \N \N 103153 M.palawanensis Mussaenda Mussaenda palawanensis \N \N \N \N \N 103154 H.chlorantha Hannoa Hannoa chlorantha \N \N \N \N \N 103155 S.lycopersicum Lycopersicon Solanum lycopersicum tomato \N \N \N \N 103156 M.josephina Mimosa Mimosa josephina \N \N \N \N \N 103157 K.sibirica Kobresia Kobresia sibirica \N \N \N \N \N 103158 M.monophyllos Malaxis Malaxis monophyllos \N \N \N \N \N 103159 S.taylorianus Stirtonanthus Stirtonanthus taylorianus \N \N \N \N \N 103160 A.chamaepitys Ajuga Ajuga chamaepitys \N \N \N \N \N 103161 E.wichurae Eleocharis Eleocharis wichurae \N \N \N \N \N 103162 A.rubens Aspalathus Aspalathus rubens \N \N \N \N \N 103163 \N genus Chamaelirium \N \N \N \N \N 103164 X.amazonica Xerorchis Xerorchis amazonica \N \N \N \N \N 103165 B.coccolobifolia Byrsonima Byrsonima coccolobifolia \N \N \N \N \N 103166 \N genus Solenanthus \N \N \N \N \N 103167 T.uniolae Tribolium Tribolium uniolae \N \N \N \N \N 103168 S.nitens Schizeilema Schizeilema nitens \N \N \N \N \N 103169 L.intricatum Lycium Lycium intricatum \N \N \N \N \N 103170 N.macrovulgaris Nepenthes Nepenthes macrovulgaris \N \N \N \N \N 103171 W.calcarata Wullschlaegelia Wullschlaegelia calcarata \N \N \N \N \N 103172 S.nicaraguensis Strychnos Strychnos nicaraguensis \N \N \N \N \N 103173 B.bodiensis Boechera Boechera bodiensis \N \N \N \N \N 103174 S.afzelii Secamone Secamone afzelii \N \N \N \N \N 103175 B.odontocalyx Babingtonia Babingtonia odontocalyx \N \N \N \N \N 103176 C.rhodosticta Caucaea Caucaea rhodosticta \N \N \N \N \N 103177 E.ivorense Erythrophleum Erythrophleum ivorense \N \N \N \N \N 103178 H.brackenridgei Hibiscus Hibiscus brackenridgei ma`o hau hele \N \N \N \N 103179 \N genus Dopatrium \N \N \N \N \N 103180 C.pleiophylla Caragana Caragana pleiophylla \N \N \N \N \N 103181 O.viride Ornithoglossum Ornithoglossum viride Cape poison-onion,Kaap slangkop \N \N \N \N 103182 O.oulophora Oxalis Oxalis oulophora \N \N \N \N \N 103183 O.minor Orobanche Orobanche minor \N \N \N \N \N 103184 S.multiflora Shorea Shorea multiflora \N \N \N \N \N 103185 \N genus Cleistachne \N \N \N \N \N 103186 C.atrata Carex Carex atrata \N \N \N \N \N 103187 \N varietas Potentilla atrosanguinea var. argyrophylla \N \N \N \N \N 103188 A.filicaulis Agalinis Agalinis filicaulis \N \N \N \N \N 103189 D.sooretamae Duguetia Duguetia sooretamae \N \N \N \N \N 103190 H.tibeticum Huodendron Huodendron tibeticum \N \N \N \N \N 103191 R.termei Ranunculus Ranunculus termei \N \N \N \N \N 103192 P.anonyma Packera Packera anonyma \N \N \N \N \N 103193 D.macrocarpa Draba Draba macrocarpa \N \N \N \N \N 103194 P.rudis Pedicularis Pedicularis rudis \N \N \N \N \N 103195 S.chrysocarpus Stenocereus Stenocereus chrysocarpus \N \N \N \N \N 103196 O.boliviana Oxalis Oxalis boliviana \N \N \N \N \N 103197 \N genus Turpinia \N \N \N \N \N 103198 \N genus Crepidiastrixeris \N \N \N \N \N 103199 C.hidalgoana Coursetia Coursetia hidalgoana \N \N \N \N \N 103200 \N genus Schoepfia \N \N \N \N \N 103201 L.pachylobus Lupinus Lupinus pachylobus \N \N \N \N \N 103202 M.latahensis Magnolia Magnolia latahensis \N \N \N \N \N 103203 O.debilis Oxalis Oxalis debilis \N \N \N \N \N 103204 P.lepturum Piper Piper lepturum \N \N \N \N \N 103205 B.involucrata Begonia Begonia involucrata \N \N \N \N \N 103206 G.MAK362452 Gunnera Gunnera sp. MAK362452 \N \N \N \N \N 103207 S.pacense Sedum Sedum pacense \N \N \N \N \N 103208 \N genus Klainedoxa \N \N \N \N \N 103209 S.mujongensis Shorea Shorea mujongensis \N \N \N \N \N 103210 S.moschata Saxifraga Saxifraga moschata \N \N \N \N \N 103211 N.alternifolia Nechamandra Nechamandra alternifolia \N \N \N \N \N 103212 S.discolor Sorbus Sorbus discolor \N \N \N \N \N 103213 C.hypopolia Campanula Campanula hypopolia \N \N \N \N \N 103214 D.capillipes Dendrobium Dendrobium capillipes \N \N \N \N \N 103215 B.J.R.B.Tosh-2008 Bertiera Bertiera sp. J.R.B.Tosh-2008 \N \N \N \N \N 103216 F.PS1245MT01 Ficus Ficus sp. PS1245MT01 \N \N \N \N \N 103217 R.taiwanalpinum Rhododendron Rhododendron taiwanalpinum \N \N \N \N \N 103218 A.scabra Anarthria Anarthria scabra \N \N \N \N \N 103219 \N genus Diacidia \N \N \N \N \N 103220 \N genus Plagiobothrys \N \N \N \N \N 103221 B.convergens Brachyachne Brachyachne convergens \N \N \N \N \N 103222 P.rehmannii Polygala Polygala rehmannii \N \N \N \N \N 103223 B.laxa Blepharizonia Blepharizonia laxa \N \N \N \N \N 103224 S.celastrinum Sideroxylon Sideroxylon celastrinum \N \N \N \N \N 103225 M.platycarpa Machilus Machilus platycarpa \N \N \N \N \N 103226 R.maxima Rudbeckia Rudbeckia maxima \N \N \N \N \N 103227 C.subulatus Callistemon Callistemon subulatus \N \N \N \N \N 103228 G.martinianum Glossoloma Glossoloma martinianum \N \N \N \N \N 103229 R.girolae Ramorinoa Ramorinoa girolae \N \N \N \N \N 103230 C.s.n. Colocasia Colocasia sp. Boyce s.n. \N \N \N \N \N 103231 M.venosa Malva Malva venosa \N \N \N \N \N 103232 S.repanda Schisandra Schisandra repanda \N \N \N \N \N 103233 A.indica Aristolochia Aristolochia indica Indian birthwort \N \N \N \N 103234 \N genus Guilleminea \N \N \N \N \N 103235 P.novoguineensis Pterostylis Pterostylis novoguineensis \N \N \N \N \N 103236 T.punctatum Thalictrum Thalictrum punctatum \N \N \N \N \N 103237 \N genus Plectocephalus \N \N \N \N \N 103238 T.TEM-2009 Thesium Thesium sp. TEM-2009 \N \N \N \N \N 103239 A.fimbriata Acacallis Acacallis fimbriata \N \N \N \N \N 103240 D.auriflora Ditassa Ditassa auriflora \N \N \N \N \N 103241 Z.pachyrrhiza Zaluzianskya Zaluzianskya pachyrrhiza \N \N \N \N \N 103242 C.furcata Cabomba Cabomba furcata \N \N \N \N \N 103243 S.somalense Solanum Solanum somalense \N \N \N \N \N 103244 H.stellata Hohenbergia Hohenbergia stellata \N \N \N \N \N 103245 \N subspecies Armeria maritima subsp. andina \N \N \N \N \N 103246 A.megalosperma Aceratium Aceratium megalosperma \N \N \N \N \N 103247 A.macrantha Adelobotrys Adelobotrys macrantha \N \N \N \N \N 103248 G.23305 Guatteria Guatteria cf. lucens Gomez et al. 23305 \N \N \N \N \N 103249 \N genus Inulopsis \N \N \N \N \N 103250 P.visciformis Periploca Periploca visciformis \N \N \N \N \N 103251 F.costaricana Ficus Ficus costaricana \N \N \N \N \N 103252 C.corylifolius Croton Croton corylifolius \N \N \N \N \N 103253 R.sieboldii Ranunculus Ranunculus sieboldii \N \N \N \N \N 103254 A.natalensis Alepidea Alepidea natalensis \N \N \N \N \N 103255 C.australiana Cossinia Cossinia australiana \N \N \N \N \N 103256 T.praetermissum Typhonium Typhonium praetermissum \N \N \N \N \N 103257 S.fremontii Syntrichopappus Syntrichopappus fremontii \N \N \N \N \N 103258 A.porophyllum Adenophyllum Adenophyllum porophyllum \N \N \N \N \N 103259 R.japonica Rohdea Rohdea japonica \N \N \N \N \N 103260 S.linearis Strangea Strangea linearis \N \N \N \N \N 103261 N.orbiculata Nuphar Nuphar orbiculata \N \N \N \N \N 103262 C.ugogensis Commiphora Commiphora ugogensis \N \N \N \N \N 103263 \N genus Podospermum \N \N \N \N \N 103264 P.dubia Persicaria Persicaria dubia \N \N \N \N \N 103265 \N genus Phaneroglossa \N \N \N \N \N 103266 S.afghanicum Sisymbrium Sisymbrium afghanicum \N \N \N \N \N 103267 H.lanatiflora Hyalopoa Hyalopoa lanatiflora \N \N \N \N \N 103268 \N genus Grielum \N \N \N \N \N 103269 D.torulosa Descurainia Descurainia torulosa \N \N \N \N \N 103270 A.oshanesii Acacia Acacia oshanesii \N \N \N \N \N 103271 \N genus Psathyrotopsis \N \N \N \N \N 103272 \N tribe Athroismeae \N \N \N \N \N 103273 \N tribe Hypolytreae \N \N \N \N \N 103274 C.glanduliferum Cestrum Cestrum glanduliferum \N \N \N \N \N 103275 \N genus Pseudovigna \N \N \N \N \N 103276 B.pallida Berberis Berberis pallida \N \N \N \N \N 103277 S.thurberi Stenocereus Stenocereus thurberi organ-pipe cactus,pitayo dulce \N \N \N \N 103278 S.squarrosa Saxifraga Saxifraga squarrosa \N \N \N \N \N 103279 P.evae Picris Picris evae \N \N \N \N \N 103280 D.dinklagei Dialium Dialium dinklagei \N \N \N \N \N 103281 T.6057 unclassified Taraxacum Taraxacum (sect. Scariosa) sp. 6057 \N \N \N \N \N 103282 V.planipetala Vancouveria Vancouveria planipetala \N \N \N \N \N 103283 C.cufodontii Ceropegia Ceropegia cufodontii \N \N \N \N \N 103284 E.jejuna Euphorbia Euphorbia jejuna \N \N \N \N \N 103285 \N subspecies Dasiphora fruticosa subsp. floribunda \N \N \N \N \N 103286 S.panacoco Swartzia Swartzia panacoco \N \N \N \N \N 103287 T.chiliophyllum Tanacetum Tanacetum chiliophyllum \N \N \N \N \N 103288 \N tribe Erismantheae \N \N \N \N \N 103289 S.binchuanensis Swertia Swertia binchuanensis \N \N \N \N \N 103290 F.litwinowiana Ferula Ferula litwinowiana \N \N \N \N \N 103291 O.tenuipes Oxalis Oxalis tenuipes \N \N \N \N \N 103292 \N genus Fillaeopsis \N \N \N \N \N 103293 E.CEH-2009 Eleocharis Eleocharis aff. nuda CEH-2009 \N \N \N \N \N 103294 P.glaciale Polygonum Polygonum glaciale \N \N \N \N \N 103295 P.glandulosa Prosopis Prosopis glandulosa honey mesquite \N \N \N \N 103296 E.villosa Euphorbia Euphorbia villosa \N \N \N \N \N 103297 F.japonicum Farfugium Farfugium japonicum \N \N \N \N \N 103298 M.halbingeri Mammillaria Mammillaria halbingeri \N \N \N \N \N 103299 C.rosmarinifolia Calceolaria Calceolaria rosmarinifolia \N \N \N \N \N 103300 C.crassifolius Ceanothus Ceanothus crassifolius \N \N \N \N \N 103301 C.danguyi Cerastium Cerastium danguyi \N \N \N \N \N 103302 L.muscicola Laestadia Laestadia muscicola \N \N \N \N \N 103303 P.lucens Pluchea Pluchea lucens \N \N \N \N \N 103304 A.pulchra Aloysia Aloysia pulchra \N \N \N \N \N 103305 C.gracilis Cedrelopsis Cedrelopsis gracilis \N \N \N \N \N 103306 A.corneri Anisophyllea Anisophyllea corneri \N \N \N \N \N 103307 C.asper Cucumis Cucumis asper \N \N \N \N \N 103308 \N genus Paraphalaenopsis \N \N \N \N \N 103309 L.davidii Lespedeza Lespedeza davidii \N \N \N \N \N 103310 \N genus Austroeupatorium \N \N \N \N \N 103311 O.eleonorae Ophrys Ophrys eleonorae \N \N \N \N \N 103312 \N genus Hemidesmus \N \N \N \N \N 103313 S.hians Salvia Salvia hians \N \N \N \N \N 103314 M.fontqueri Moehringia Moehringia fontqueri \N \N \N \N \N 103315 D.boroniifolia Dodonaea Dodonaea boroniifolia \N \N \N \N \N 103316 \N genus Stubendorffia \N \N \N \N \N 103317 R.rotundifolius Rhodocalyx Rhodocalyx rotundifolius \N \N \N \N \N 103318 \N genus Smelophyllum \N \N \N \N \N 103319 P.cinerascens Physalis Physalis cinerascens \N \N \N \N \N 103320 \N varietas Claytonia megarhiza var. bellidifolia \N \N \N \N \N 103321 E.valdevillosocarpa Euphorbia Euphorbia valdevillosocarpa \N \N \N \N \N 103322 C.apiculatus Cotoneaster Cotoneaster apiculatus \N \N \N \N \N 103323 M.carpinifolia Mildbraedia Mildbraedia carpinifolia \N \N \N \N \N 103324 S.emersum Sparganium Sparganium emersum \N \N \N \N \N 103325 P.serfipiles Psychotria Psychotria serfipiles \N \N \N \N \N 103326 F.limensis Fuertesimalva Fuertesimalva limensis \N \N \N \N \N 103327 B.aculeata Brassaiopsis Brassaiopsis aculeata \N \N \N \N \N 103328 V.microcarpa Vasconcellea Vasconcellea microcarpa \N \N \N \N \N 103329 M.minutiflora Microgilia Microgilia minutiflora \N \N \N \N \N 103330 \N tribe Mesechiteae \N \N \N \N \N 103331 A.cordata Acrotriche Acrotriche cordata \N \N \N \N \N 103332 J.betonica Justicia Justicia betonica \N \N \N \N \N 103333 R.tuberosa Ruppia Ruppia tuberosa \N \N \N \N \N 103334 T.larsenii Typhonium Typhonium larsenii \N \N \N \N \N 103335 T.H.AR.543 Typhonium Typhonium sp. Hetterscheid H.AR.543 \N \N \N \N \N 103336 \N genus Anarthrophyllum \N \N \N \N \N 103337 S.aegyptiaca Salvia Salvia aegyptiaca \N \N \N \N \N 103338 A.divaricatum Allophyllum Allophyllum divaricatum purple false gilyflower \N \N \N \N 103339 S.arenarius Stapelianthus Stapelianthus arenarius \N \N \N \N \N 103340 \N genus Carruanthus \N \N \N \N \N 103341 \N varietas Aechmea distichantha var. glaziovii \N \N \N \N \N 103342 C.septentrionale Callaeum Callaeum septentrionale \N \N \N \N \N 103343 E.flacca Erica Erica flacca \N \N \N \N \N 103344 \N genus Anacolosa \N \N \N \N \N 103345 F.odoratum Funastrum Funastrum odoratum \N \N \N \N \N 103346 C.cuspidata Castanopsis Castanopsis cuspidata \N \N \N \N \N 103347 P.longiflorum Pseudopeponidium Pseudopeponidium longiflorum \N \N \N \N \N 103348 P.cotyledonis Pelargonium Pelargonium cotyledonis \N \N \N \N \N 103349 S.reticulatus Stenocarpus Stenocarpus reticulatus cooril \N \N \N \N 103350 R.SH-2010 Remusatia Remusatia sp. SH-2010 \N \N \N \N \N 103351 P.austriacum Pleurospermum Pleurospermum austriacum \N \N \N \N \N 103352 P.SRR-2011 Polycycnis Polycycnis sp. SRR-2011 \N \N \N \N \N 103353 P.multiflorum Polygonatum Polygonatum multiflorum \N \N \N \N \N 103354 M.SH-2010 Merremia Merremia sp. SH-2010 \N \N \N \N \N 103355 H.floribunda Hyptis Hyptis floribunda \N \N \N \N \N 103356 P.2697 Piper Piper cf. cabellense Fonnegra 2697 \N \N \N \N \N 103357 P.pulchella Primula Primula pulchella \N \N \N \N \N 103358 C.1391 Cedrelopsis Cedrelopsis sp. Ranaivojaona et al. 1391 \N \N \N \N \N 103359 P.lucida Pseudoxandra Pseudoxandra lucida \N \N \N \N \N 103360 P.laurifolia Protea Protea laurifolia \N \N \N \N \N 103361 R.albidiflora Rinorea Rinorea albidiflora \N \N \N \N \N 103362 C.arctata Carex Carex arctata \N \N \N \N \N 103363 P.arenicola Penstemon Penstemon arenicola \N \N \N \N \N 103364 E.1762 Elacholoma Elacholoma sp. Campbell 1762 \N \N \N \N \N 103365 \N varietas Scirpus sylvaticus var. maximowiczii \N \N \N \N \N 103366 T.mucronata Tuctoria Tuctoria mucronata prickly spiralgrass \N \N \N \N 103367 Z.glareosa Zaluzianskya Zaluzianskya glareosa \N \N \N \N \N 103368 F.formosana Freycinetia Freycinetia formosana \N \N \N \N \N 103369 \N tribe Archerieae \N \N \N \N \N 103370 V.valderia Viola Viola valderia \N \N \N \N \N 103371 G.magentatus Gasteranthus Gasteranthus magentatus \N \N \N \N \N 103372 C.hassaku Citrus Citrus hassaku hassaku orange \N \N \N \N 103373 \N genus Lavoisiera \N \N \N \N \N 103374 C.lidjiangense Cirsium Cirsium lidjiangense \N \N \N \N \N 103375 C.billbergiana Columnea Columnea billbergiana \N \N \N \N \N 103376 E.dichrous Echinops Echinops dichrous \N \N \N \N \N 103377 Z.440 Zygophyllum Zygophyllum sp. Marais 440 \N \N \N \N \N 103378 \N subspecies Triticum turgidum subsp. paleocolchicum \N \N \N \N \N 103379 E.antariense Erodium Erodium antariense \N \N \N \N \N 103380 S.panamensis Swartzia Swartzia panamensis \N \N \N \N \N 103381 \N genus Echeveria \N \N \N \N \N 103382 C.cankiriensis Centaurea Centaurea cankiriensis \N \N \N \N \N 103383 E.fraxinoides Eucalyptus Eucalyptus fraxinoides \N \N \N \N \N 103384 O.sphacelatum Oncidium Oncidium sphacelatum \N \N \N \N \N 103385 P.unicarinata Psychotria Psychotria unicarinata \N \N \N \N \N 103386 L.pruinosum Leucophyllum Leucophyllum pruinosum \N \N \N \N \N 103387 \N genus Urophysa \N \N \N \N \N 103388 D.hexagona Dioscorea Dioscorea hexagona \N \N \N \N \N 103389 E.ilense Epidendrum Epidendrum ilense \N \N \N \N \N 103390 \N genus Osbornia \N \N \N \N \N 103391 H.aristata Haworthia Haworthia aristata \N \N \N \N \N 103392 N.chartacea Niemeyera Niemeyera chartacea \N \N \N \N \N 103393 I.clavata Ipomoea Ipomoea clavata \N \N \N \N \N 103394 C.troncosoi Croton Croton troncosoi \N \N \N \N \N 103395 O.MO120 Oxalis Oxalis aff. campylorrhiza MO120 \N \N \N \N \N 103396 D.laciniosa Drymonia Drymonia laciniosa \N \N \N \N \N 103397 P.californicus Philadelphus Philadelphus californicus \N \N \N \N \N 103398 I.begoniifolia Impatiens Impatiens begoniifolia \N \N \N \N \N 103399 V.gallinae Valeriana Valeriana gallinae \N \N \N \N \N 103400 M.JSZ-2009a Mentha Mentha sp. JSZ-2009a \N \N \N \N \N 103401 G.heterotricha Guatteria Guatteria heterotricha \N \N \N \N \N 103402 M.adenophyllus Monotes Monotes adenophyllus \N \N \N \N \N 103403 N.forsteri Neonauclea Neonauclea forsteri \N \N \N \N \N 103404 I.oppositifolia Iberis Iberis oppositifolia \N \N \N \N \N 103405 S.brandegeei Salvia Salvia brandegeei Santa Rosa Island sage \N \N \N \N 103406 L.sericophylla Lotononis Lotononis sericophylla \N \N \N \N \N 103407 A.colura Alchemilla Alchemilla colura \N \N \N \N \N 103408 C.pleiocephala Craspedia Craspedia pleiocephala \N \N \N \N \N 103409 O.speciosa Ononis Ononis speciosa \N \N \N \N \N 103410 L.brevipes Laggera Laggera brevipes \N \N \N \N \N 103411 H.pubescens Hopea Hopea pubescens \N \N \N \N \N 103412 A.telonensis Adenocarpus Adenocarpus telonensis \N \N \N \N \N 103413 A.saccata Aconitella Aconitella saccata \N \N \N \N \N 103414 A.pamiricum Allium Allium pamiricum \N \N \N \N \N 103415 \N varietas Ilex anomala var. tahitensis \N \N \N \N \N 103416 \N genus Desmoschoenus \N \N \N \N \N 103417 T.berlineri Trichosalpinx Trichosalpinx berlineri \N \N \N \N \N 103418 W.crassa White-sloanea White-sloanea crassa \N \N \N \N \N 103419 T.2776 Triplaris Triplaris cf. peruviana Bridgewater 2776 \N \N \N \N \N 103420 C.CG-2009 Carex Carex sp. 6 CG-2009 \N \N \N \N \N 103421 \N family Buxaceae boxwood family \N \N \N \N 103422 I.uniflora Iris Iris uniflora \N \N \N \N \N 103423 D.aureus Daucus Daucus aureus \N \N \N \N \N 103424 S.breweri Streptanthus Streptanthus breweri \N \N \N \N \N 103425 H.coluteoides Hypocalyptus Hypocalyptus coluteoides \N \N \N \N \N 103426 H.12535 Hertia Hertia sp. Goldblatt 12535 \N \N \N \N \N 103427 \N varietas Muraltia empleuridioides var. empleuridioides \N \N \N \N \N 103428 \N genus Cousinia \N \N \N \N \N 103429 S.auriculata Strobilanthes Strobilanthes auriculata \N \N \N \N \N 103430 C.ootensis Cyrtandra Cyrtandra ootensis \N \N \N \N \N 103431 G.megalophylla Guatteria Guatteria megalophylla \N \N \N \N \N 103432 L.engleri Lachnocaulon Lachnocaulon engleri \N \N \N \N \N 103433 G.285250 Geranium Geranium aff. retorsum AK 285250 \N \N \N \N \N 103434 C.suffruticosa Calendula Calendula suffruticosa \N \N \N \N \N 103435 H.CH281 Hydriastele Hydriastele sp. CH281 \N \N \N \N \N 103436 \N tribe Zamioculcadeae \N \N \N \N \N 103437 I.leptosepala Indigofera Indigofera leptosepala \N \N \N \N \N 103438 P.chanthaburiensis Paracladopus Paracladopus chanthaburiensis \N \N \N \N \N 103439 P.lutea Phacelia Phacelia lutea \N \N \N \N \N 103440 G.tenella Gentianella Gentianella tenella \N \N \N \N \N 103441 A.brachyantherum Argostemma Argostemma brachyantherum \N \N \N \N \N 103442 \N genus Medemia \N \N \N \N \N 103443 L.patungensis Lysimachia Lysimachia patungensis \N \N \N \N \N 103444 A.aubrietioides Arabis Arabis aubrietioides \N \N \N \N \N 103445 \N subspecies Capeochloa cincta subsp. sericea \N \N \N \N \N 103446 J.floridum Jasminum Jasminum floridum \N \N \N \N \N 103447 X.diffusa Xylothamia Xylothamia diffusa \N \N \N \N \N 103448 P.castellanosii Puya Puya castellanosii \N \N \N \N \N 103449 S.kuroki Symplocos Symplocos kuroki \N \N \N \N \N 103450 J.inflexus Juncus Juncus inflexus \N \N \N \N \N 103451 \N genus Hagenia \N \N \N \N \N 103452 B.violifolia Begonia Begonia violifolia \N \N \N \N \N 103453 S.kirkii Streptocarpus Streptocarpus kirkii \N \N \N \N \N 103454 B.citronella Bursera Bursera citronella \N \N \N \N \N 103455 P.purpurea Pinanga Pinanga purpurea \N \N \N \N \N 103456 \N varietas Actephila excelsa var. excelsa \N \N \N \N \N 103457 C.macroplectron Comparettia Comparettia macroplectron \N \N \N \N \N 103458 M.grandiflorum Marsippospermum Marsippospermum grandiflorum \N \N \N \N \N 103459 H.glaucescens Hemigraphis Hemigraphis glaucescens \N \N \N \N \N 103460 \N forma Corylopsis glabrescens f. gotoana \N \N \N \N \N 103461 \N varietas Enkianthus perulatus var. perulatus \N \N \N \N \N 103462 E.hypericifolia Euphorbia Euphorbia hypericifolia \N \N \N \N \N 103463 L.semibaccatum Leptospermum Leptospermum semibaccatum \N \N \N \N \N 103464 B.lutea Besleria Besleria lutea \N \N \N \N \N 103465 C.monochroma Cleome Cleome monochroma \N \N \N \N \N 103466 L.amoenum Lycium Lycium amoenum \N \N \N \N \N 103467 C.macranthum Cynanchum Cynanchum macranthum \N \N \N \N \N 103468 \N varietas Allium schoenoprasum var. foliosum \N \N \N \N \N 103469 B.schunkei Byttneria Byttneria schunkei \N \N \N \N \N 103470 I.cuneata Ixonanthes Ixonanthes icosandra x Ixonanthes cuneata \N \N \N \N \N 103471 T.diversilobum Toxicodendron Toxicodendron diversilobum western poison-oak \N \N \N \N 103472 S.sparsiflora Salaciopsis Salaciopsis sparsiflora \N \N \N \N \N 103473 C.catalinae Calochortus Calochortus catalinae Santa Catalina mariposa lily \N \N \N \N 103474 I.merxmuelleri Indigofera Indigofera merxmuelleri \N \N \N \N \N 103475 H.carpaticum Heracleum Heracleum carpaticum \N \N \N \N \N 103476 \N subspecies Centaurea aspera subsp. pseudoaerocephala \N \N \N \N \N 103477 \N genus Melicope \N \N \N \N \N 103478 \N order Poales \N \N \N \N \N 103479 L.patens Lespedeza Lespedeza patens \N \N \N \N \N 103480 C.s.n. Celtis Celtis sp. Morton s.n. \N \N \N \N \N 103481 M.convexa Maireana Maireana convexa \N \N \N \N \N 103482 S.jacea Saussurea Saussurea jacea \N \N \N \N \N 103483 I.diversifolia Ixora Ixora diversifolia \N \N \N \N \N 103484 \N genus Clematicissus \N \N \N \N \N 103485 \N subspecies Helianthus niveus subsp. canescens \N \N \N \N \N 103486 U.costata Utricularia Utricularia costata \N \N \N \N \N 103487 T.davidii Thladiantha Thladiantha davidii \N \N \N \N \N 103488 S.aquatilis Sonchus Sonchus aquatilis \N \N \N \N \N 103489 \N genus Cottendorfia \N \N \N \N \N 103490 I.striata Inga Inga striata \N \N \N \N \N 103491 A.tetragonus Acanthocereus Acanthocereus tetragonus triangle cactus \N \N \N \N 103492 \N subspecies Genista tridens subsp. tridens \N \N \N \N \N 103493 C.gynandra Carex Carex gynandra \N \N \N \N \N 103494 A.exuvialis Acacia Acacia exuvialis \N \N \N \N \N 103495 T.velebiticum Trifolium Trifolium velebiticum \N \N \N \N \N 103496 P.schwackei Piper Piper schwackei \N \N \N \N \N 103497 A.albovii Asperula Asperula albovii \N \N \N \N \N 103498 S.angustifolia Stenogyne Stenogyne angustifolia \N \N \N \N \N 103499 S.695 Swartzia Swartzia sp. Henderson 695 \N \N \N \N \N 103500 A.validum Allium Allium validum \N \N \N \N \N 103501 P.rhizomatosa Psychotria Psychotria rhizomatosa \N \N \N \N \N 103502 H.socotrana Habenaria Habenaria socotrana \N \N \N \N \N 103503 \N genus Uncarina \N \N \N \N \N 103504 \N genus Krapovickasia \N \N \N \N \N 103505 \N genus Satakentia \N \N \N \N \N 103506 S.flabellifolius Syncolostemon Syncolostemon flabellifolius \N \N \N \N \N 103507 P.viscosa Persicaria Persicaria viscosa \N \N \N \N \N 103508 M.tenuiscapa Mapania Mapania tenuiscapa \N \N \N \N \N 103509 A.acuminata Anagallis Anagallis acuminata \N \N \N \N \N 103510 S.perralderianus Senecio Senecio perralderianus \N \N \N \N \N 103511 \N subspecies Medicago sativa subsp. x tunetana \N \N \N \N \N 103512 P.hirsuta Persicaria Persicaria hirsuta \N \N \N \N \N 103513 S.incana Scutellaria Scutellaria incana hoary skullcap \N \N \N \N 103514 M.multiflora Microcybe Microcybe multiflora \N \N \N \N \N 103515 H.acrophilum Helichrysum Helichrysum acrophilum \N \N \N \N \N 103516 Z.latifolia Zizania Zizania latifolia \N \N \N \N \N 103517 S.millei Stenorrhynchos Stenorrhynchos millei \N \N \N \N \N 103518 \N tribe Vinceae \N \N \N \N \N 103519 L.sameki Leucocroton Leucocroton sameki \N \N \N \N \N 103520 P.cinerea Pouteria Pouteria cinerea \N \N \N \N \N 103521 \N subspecies Tanacetum bipinnatum subsp. huronense \N \N \N \N \N 103522 M.minor Micrandra Micrandra minor \N \N \N \N \N 103523 B.aristata Berberis Berberis aristata \N \N \N \N \N 103524 A.hybridus Amaranthus Amaranthus hybridus green amaranth,pigweed,slim amaranth \N \N \N \N 103525 C.montana Catananche Catananche montana \N \N \N \N \N 103526 C.lindenii Cattleyopsis Cattleyopsis lindenii \N \N \N \N \N 103527 \N tribe Saccifolieae \N \N \N \N \N 103528 C.nivea Centaurea Centaurea nivea \N \N \N \N \N 103529 D.triflora Decaisnina Decaisnina triflora \N \N \N \N \N 103530 M.crassa Multidentia Multidentia crassa \N \N \N \N \N 103531 P.sanderianum Ptychosperma Ptychosperma sanderianum \N \N \N \N \N 103532 H.sanguinea Heuchera Heuchera sanguinea coralbells \N \N \N \N 103533 A.strigillosa Androsace Androsace strigillosa \N \N \N \N \N 103534 C.cyperoides Courtoisina Courtoisina cyperoides \N \N \N \N \N 103535 D.greenei Dudleya Dudleya greenei \N \N \N \N \N 103536 L.grossa Liparis Liparis grossa \N \N \N \N \N 103537 \N family Hippocastanaceae \N \N \N \N \N 103538 O.kerrii Orophea Orophea kerrii \N \N \N \N \N 103539 \N varietas Penstemon rydbergii var. rydbergii \N \N \N \N \N 103540 F.violacea Ferula Ferula violacea \N \N \N \N \N 103541 \N genus Metroxylon \N \N \N \N \N 103542 Z.SRR-2011 unclassified Zygopetalinae Zygopetalinae sp. 1 SRR-2011 \N \N \N \N \N 103543 P.albidus Pipturus Pipturus albidus Waimea pipturus \N \N \N \N 103544 M.guianensis Myrcia Myrcia guianensis \N \N \N \N \N 103545 M.acuta Metalasia Metalasia acuta \N \N \N \N \N 103546 M.racemosa Montia Montia racemosa \N \N \N \N \N 103547 D.aromatica Dryobalanops Dryobalanops aromatica Borneo camphor,kapur \N \N \N \N 103548 P.longifolia Physalis Physalis longifolia common ground-cherry,longleaf ground-cherry \N \N \N \N 103549 P.leiopetala Plantago Plantago leiopetala \N \N \N \N \N 103550 D.muralis Draba Draba muralis \N \N \N \N \N 103551 T.lappacea Tourrettia Tourrettia lappacea \N \N \N \N \N 103552 B.fluminensis Bouchea Bouchea fluminensis \N \N \N \N \N 103553 P.debilis Polyalthia Polyalthia debilis \N \N \N \N \N 103554 I.filifolia Indigofera Indigofera filifolia \N \N \N \N \N 103555 \N genus Faujasiopsis \N \N \N \N \N 103556 \N genus Symphyglossum \N \N \N \N \N 103557 C.verdoorniae Crinum Crinum verdoorniae \N \N \N \N \N 103558 H.exscapa Hohenackeria Hohenackeria exscapa \N \N \N \N \N 103559 \N genus Rhodostemonodaphne \N \N \N \N \N 103560 M.bicolor Manettia Manettia bicolor \N \N \N \N \N 103561 \N genus Derris \N \N \N \N \N 103562 D.papuana Dillenia Dillenia papuana \N \N \N \N \N 103563 S.94/54 Schizobasis Schizobasis sp. Stedje 94/54 \N \N \N \N \N 103564 \N varietas Paspalum notatum var. saurae \N \N \N \N \N 103565 P.P149 Physalis Physalis sp. P149 \N \N \N \N \N 103566 \N varietas Pericalymma ellipticum var. floridum \N \N \N \N \N 103567 C.cylindrica Chorigyne Chorigyne cylindrica \N \N \N \N \N 103568 B.chichibuensis Betula Betula chichibuensis \N \N \N \N \N 103569 G.boliviana Guatteria Guatteria boliviana \N \N \N \N \N 103570 C.microphylla Coccinia Coccinia microphylla \N \N \N \N \N 103571 R.cancellata Rochelia Rochelia cancellata \N \N \N \N \N 103572 M.quirosii Matelea Matelea quirosii \N \N \N \N \N 103573 F.multiflora Fallopia Fallopia multiflora Chinese knotweed,fo ti,he shou wu \N \N \N \N 103574 \N subspecies Magnolia sieboldii subsp. japonica \N \N \N \N \N 103575 \N no rank Solanaceae incertae sedis \N \N \N \N \N 103576 P.lehmannii Pentacyphus Pentacyphus lehmannii \N \N \N \N \N 103577 T.tipu Tipuana Tipuana tipu \N \N \N \N \N 103578 C.leptochila Caladenia Caladenia leptochila \N \N \N \N \N 103579 I.blanchetiana Indigofera Indigofera blanchetiana \N \N \N \N \N 103580 P.quadrangularis Parastrephia Parastrephia quadrangularis \N \N \N \N \N 103581 \N genus Elaeoluma \N \N \N \N \N 103582 A.mollis Achyrachaena Achyrachaena mollis blow-wives \N \N \N \N 103583 A.exilis Adesmia Adesmia exilis \N \N \N \N \N 103584 M.1881 Miconia Miconia aff. glutinosa Penneys 1881 \N \N \N \N \N 103585 \N genus Chrysophthalmum \N \N \N \N \N 103586 S.wilsonii Styrax Styrax wilsonii \N \N \N \N \N 103587 T.stellatum Trifolium Trifolium stellatum \N \N \N \N \N 103588 \N genus Deccania \N \N \N \N \N 103589 A.aurea Alstroemeria Alstroemeria aurea Peruvian lily \N \N \N \N 103590 A.iide-montanum Aconitum Aconitum iide-montanum \N \N \N \N \N 103591 \N subfamily Nepetoideae \N \N \N \N \N 103592 A.consanguineum Arisaema Arisaema consanguineum \N \N \N \N \N 103593 P.CD-2009 Paeonia Paeonia sp. CD-2009 \N \N \N \N \N 103594 F.pinguior Ficinia Ficinia pinguior \N \N \N \N \N 103595 V.guianensis Vouarana Vouarana guianensis \N \N \N \N \N 103596 M.albiflora Mammillaria Mammillaria albiflora \N \N \N \N \N 103597 M.quadriflorum Misodendrum Misodendrum quadriflorum \N \N \N \N \N 103598 D.5736 Drymonia Drymonia sp. Clark 5736 \N \N \N \N \N 103599 A.daltonii Asteriscus Asteriscus daltonii \N \N \N \N \N 103600 S.coccinea Spathelia Spathelia coccinea \N \N \N \N \N 103601 H.obtusifolia Harveya Harveya obtusifolia \N \N \N \N \N 103602 \N genus Sprekelia \N \N \N \N \N 103603 S.1 Solanum Solanum cf. centrale AMH 1 \N \N \N \N \N 103604 J.pauciflorus Juncus Juncus pauciflorus \N \N \N \N \N 103605 M.dielsiana Miconia Miconia dielsiana \N \N \N \N \N 103606 \N genus Picramnia \N \N \N \N \N 103607 C.stipata Carex Carex stipata \N \N \N \N \N 103608 S.burchellii Schefflera Schefflera burchellii \N \N \N \N \N 103609 V.rimosa Valerianella Valerianella rimosa \N \N \N \N \N 103610 O.cymosa Olinia Olinia cymosa \N \N \N \N \N 103611 \N genus Plagiantha \N \N \N \N \N 103612 L.erubescens Lophospermum Lophospermum erubescens \N \N \N \N \N 103613 O.aubrevillei Okoubaka Okoubaka aubrevillei \N \N \N \N \N 103614 B.microcephalum Bupleurum Bupleurum microcephalum \N \N \N \N \N 103615 M.fastigiata Muhlenbergia Muhlenbergia fastigiata \N \N \N \N \N 103616 B.hymenaeifolia Bauhinia Bauhinia hymenaeifolia \N \N \N \N \N 103617 A.affinis Axinaea Axinaea affinis \N \N \N \N \N 103618 L.featherstonii Leptinella Leptinella featherstonii \N \N \N \N \N 103619 C.protensa Carronia Carronia protensa \N \N \N \N \N 103620 C.bungeana Chorispora Chorispora bungeana \N \N \N \N \N 103621 G.baguense Glossoloma Glossoloma baguense \N \N \N \N \N 103622 O.yemenense Ormocarpum Ormocarpum yemenense \N \N \N \N \N 103623 C.apiculata Chaetanthera Chaetanthera apiculata \N \N \N \N \N 103624 D.paraguariensis Dolichopsis Dolichopsis paraguariensis \N \N \N \N \N 103625 \N subspecies Crassula pellucida subsp. brachypetala \N \N \N \N \N 103626 O.distichus Oreobolus Oreobolus distichus \N \N \N \N \N 103627 D.grahamii Desmodium Desmodium grahamii \N \N \N \N \N 103628 P.floridana Phlox Phlox floridana \N \N \N \N \N 103629 \N genus Cheirodendron \N \N \N \N \N 103630 \N genus Gossia \N \N \N \N \N 103631 \N genus Hekistocarpa \N \N \N \N \N 103632 P.thymifolium Polygonum Polygonum thymifolium \N \N \N \N \N 103633 M.hildebrandtii Microterangis Microterangis hildebrandtii \N \N \N \N \N 103634 P.myrtifolia Pteleopsis Pteleopsis myrtifolia \N \N \N \N \N 103635 S.pedunculatus Solenomelus Solenomelus pedunculatus \N \N \N \N \N 103636 E.tomentosa Erica Erica tomentosa \N \N \N \N \N 103637 L.archeriana Lagerstroemia Lagerstroemia archeriana \N \N \N \N \N 103638 F.vesca Fragaria Fragaria vesca European strawberry,alpine strawberry,wood strawberry \N \N \N \N 103639 X.frutescens Xylopia Xylopia frutescens \N \N \N \N \N 103640 S.hypoleucoides Schefflera Schefflera hypoleucoides \N \N \N \N \N 103641 S.mendocina Setaria Setaria mendocina \N \N \N \N \N 103642 A.chilensis Aristolochia Aristolochia chilensis \N \N \N \N \N 103643 G.valentinei Galanthus Galanthus x valentinei \N \N \N \N \N 103644 M.guineensis Motandra Motandra guineensis \N \N \N \N \N 103645 P.urbanianum Paphiopedilum Paphiopedilum urbanianum \N \N \N \N \N 103646 \N genus Gastrorchis \N \N \N \N \N 103647 X.arborea Xylonagra Xylonagra arborea \N \N \N \N \N 103648 T.dewildemaniana Tessmannia Tessmannia dewildemaniana \N \N \N \N \N 103649 H.lineare Heliotropium Heliotropium lineare \N \N \N \N \N 103650 A.valentina Arenaria Arenaria valentina \N \N \N \N \N 103651 M.dormiens Mimosa Mimosa dormiens \N \N \N \N \N 103652 E.violaceus Elymus Elymus violaceus \N \N \N \N \N 103653 S.sinuatilobus Senecio Senecio sinuatilobus \N \N \N \N \N 103654 C.longipetiolata Clusia Clusia longipetiolata \N \N \N \N \N 103655 C.ovalifolia Cissampelos Cissampelos ovalifolia \N \N \N \N \N 103656 D.albens Dianthus Dianthus albens \N \N \N \N \N 103657 I.capensis Impatiens Impatiens capensis \N \N \N \N \N 103658 N.glomerata Nassauvia Nassauvia glomerata \N \N \N \N \N 103659 \N genus Erichsenia \N \N \N \N \N 103660 B.piurensis Begonia Begonia piurensis \N \N \N \N \N 103661 D.atricapilla Disa Disa atricapilla \N \N \N \N \N 103662 P.mandiocanum Paspalum Paspalum mandiocanum \N \N \N \N \N 103663 \N genus Argyrodendron \N \N \N \N \N 103664 P.ferruginea Puya Puya ferruginea \N \N \N \N \N 103665 F.vulgaris Filipendula Filipendula vulgaris \N \N \N \N \N 103666 \N family Eupomatiaceae \N \N \N \N \N 103667 H.laurina Hypserpa Hypserpa laurina \N \N \N \N \N 103668 R.oldhamii Rhododendron Rhododendron oldhamii \N \N \N \N \N 103669 \N genus Sabaudiella \N \N \N \N \N 103670 H.odorata Hopea Hopea odorata \N \N \N \N \N 103671 \N genus Tetrastylis \N \N \N \N \N 103672 A.subcinereus Alectryon Alectryon subcinereus \N \N \N \N \N 103673 R.erythropus Ruellia Ruellia erythropus \N \N \N \N \N 103674 F.tataricum Fagopyrum Fagopyrum tataricum Kangra buckwheat,Tartarian buckwheat \N \N \N \N 103675 M.macrophylla Madhuca Madhuca macrophylla \N \N \N \N \N 103676 \N genus Caulokaempferia \N \N \N \N \N 103677 F.rivas-martinezii Festuca Festuca rivas-martinezii \N \N \N \N \N 103678 E.pachyphylla Eucalyptus Eucalyptus pachyphylla \N \N \N \N \N 103679 \N genus Hydrocera \N \N \N \N \N 103680 E.latifolium Ectadium Ectadium latifolium \N \N \N \N \N 103681 \N no rank Neillieae \N \N \N \N \N 103682 \N genus Corynocarpus \N \N \N \N \N 103683 B.fangii Begonia Begonia fangii \N \N \N \N \N 103684 E.kengii Elymus Elymus kengii \N \N \N \N \N 103685 W.2435 Warneckea Warneckea cf. erubescens Stone et al. 2435 \N \N \N \N \N 103686 C.hierosolymitana Crepis Crepis hierosolymitana \N \N \N \N \N 103687 E.salmonophloia Eucalyptus Eucalyptus salmonophloia \N \N \N \N \N 103688 P.amarus Pleioblastus Pleioblastus amarus \N \N \N \N \N 103689 B.penicillata Bursera Bursera penicillata \N \N \N \N \N 103690 A.001 Aeschynanthus Aeschynanthus sp. 001 \N \N \N \N \N 103691 \N genus Fittonia \N \N \N \N \N 103692 \N varietas Smilax myrtillus var. dulongensis \N \N \N \N \N 103693 P.schmidii Polyscias Polyscias schmidii \N \N \N \N \N 103694 A.latifolia Autonoe Autonoe latifolia \N \N \N \N \N 103695 C.tenuis Chrysochlamys Chrysochlamys tenuis \N \N \N \N \N 103696 N.reticulata Nectandra Nectandra reticulata \N \N \N \N \N 103697 P.teres Papilionanthe Papilionanthe hookeriana x Papilionanthe teres \N \N \N \N \N 103698 C.occidentalis Cercis Cercis occidentalis \N \N \N \N \N 103699 H.acaulis Hypochaeris Hypochaeris acaulis \N \N \N \N \N 103700 K.glabrescens Kunzea Kunzea glabrescens \N \N \N \N \N 103701 M.campanulata Maireana Maireana campanulata \N \N \N \N \N 103702 A.fruticosa Alectra Alectra fruticosa \N \N \N \N \N 103703 \N genus Trimezia \N \N \N \N \N 103704 N.tobaica Nepenthes Nepenthes tobaica \N \N \N \N \N 103705 G.pauciflora Gaertnera Gaertnera pauciflora \N \N \N \N \N 103706 P.acetosum Polygonum Polygonum acetosum \N \N \N \N \N 103707 M.parishii Mimulus Mimulus parishii \N \N \N \N \N 103708 H.stenopteroides Heracleum Heracleum stenopteroides \N \N \N \N \N 103709 P.nobla Phyllis Phyllis nobla \N \N \N \N \N 103710 S.chacalapensis Stenocereus Stenocereus chacalapensis \N \N \N \N \N 103711 \N genus Actaea \N \N \N \N \N 103712 L.cinerea Loxocarya Loxocarya cinerea \N \N \N \N \N 103713 P.752 Pyrostria Pyrostria sp. Pettersson & Nilsson 752 \N \N \N \N \N 103714 E.tataricum Erodium Erodium tataricum \N \N \N \N \N 103715 \N genus Piptadeniopsis \N \N \N \N \N 103716 P.brevicaule Pachypodium Pachypodium brevicaule \N \N \N \N \N 103717 T.cervariifolia Tinguarra Tinguarra cervariifolia \N \N \N \N \N 103718 I.nephrocarpoides Indigofera Indigofera nephrocarpoides \N \N \N \N \N 103719 \N genus Spathionema \N \N \N \N \N 103720 F.ceilanica Fagraea Fagraea ceilanica \N \N \N \N \N 103721 \N genus Beauprea \N \N \N \N \N 103722 \N varietas Olearia passerinoides var. passerinoides \N \N \N \N \N 103723 S.donianus Senecio Senecio donianus \N \N \N \N \N 103724 L.gallicum Laserpitium Laserpitium gallicum \N \N \N \N \N 103725 D.streptobrachia Draba Draba streptobrachia \N \N \N \N \N 103726 S.quercetorum Stachys Stachys quercetorum \N \N \N \N \N 103727 D.cardiophora Disperis Disperis cardiophora \N \N \N \N \N 103728 \N genus Mniothamnea \N \N \N \N \N 103729 P.rupiseda Peperomia Peperomia rupiseda \N \N \N \N \N 103730 M.strictissima Mentzelia Mentzelia strictissima \N \N \N \N \N 103731 T.cipo Trichilia Trichilia cipo \N \N \N \N \N 103732 S.capitata Scholtzia Scholtzia capitata \N \N \N \N \N 103733 A.yomena Aster Aster yomena \N \N \N \N \N 103734 C.keideli Chiliotrichiopsis Chiliotrichiopsis keideli \N \N \N \N \N 103735 V.carvalhoi Vitex Vitex carvalhoi \N \N \N \N \N 103736 V.hookeriana Hebe Veronica hookeriana \N \N \N \N \N 103737 \N genus Cichorium \N \N \N \N \N 103738 C.dallachiana Corymbia Corymbia dallachiana \N \N \N \N \N 103739 \N subspecies Delphinium hansenii subsp. kernense \N \N \N \N \N 103740 P.graminea Pterostylis Pterostylis graminea \N \N \N \N \N 103741 P.SH-2010 Picrasma Picrasma sp. SH-2010 \N \N \N \N \N 103742 E.kirtonii Elaeocarpus Elaeocarpus kirtonii pigeonberry-ash,silver quandong \N \N \N \N 103743 H.stuhlmannii Helichrysum Helichrysum stuhlmannii \N \N \N \N \N 103744 \N genus Pierreodendron \N \N \N \N \N 103745 S.edule Sechium Sechium edule chayote,christophine,pipinela \N \N \N \N 103746 C.elaeagnoides Cordia Cordia elaeagnoides \N \N \N \N \N 103747 \N varietas Orostachys malacophylla var. malacophylla \N \N \N \N \N 103748 K.gueinzii Keetia Keetia gueinzii \N \N \N \N \N 103749 R.ciliatum Rhododendron Rhododendron ciliatum \N \N \N \N \N 103750 V.guerrerana Viguiera Viguiera guerrerana \N \N \N \N \N 103751 \N varietas Pedicularis bracteosa var. siifolia \N \N \N \N \N 103752 L.billardierei Lachnagrostis Lachnagrostis billardierei \N \N \N \N \N 103753 C.11347_Iraq Cousinia Cousinia sp. 11347_Iraq \N \N \N \N \N 103754 L.latipes Lepidium Lepidium latipes \N \N \N \N \N 103755 E.mexicana Eschweilera Eschweilera mexicana \N \N \N \N \N 103756 V.triphylla Vigna Vigna triphylla \N \N \N \N \N 103757 \N subfamily Asparagoideae \N \N \N \N \N 103758 M.incurva Moraea Moraea incurva \N \N \N \N \N 103759 P.portobellensis Prestonia Prestonia portobellensis \N \N \N \N \N 103760 \N genus Parafaujasia \N \N \N \N \N 103761 \N genus Rockinghamia \N \N \N \N \N 103762 H.tenuifolium Hypericum Hypericum tenuifolium \N \N \N \N \N 103763 A.crispata Arctotis Arctotis crispata \N \N \N \N \N 103764 \N genus Gordonia \N \N \N \N \N 103765 S.grandiflora Stemmadenia Stemmadenia grandiflora \N \N \N \N \N 103766 D.ferox Datura Datura ferox \N \N \N \N \N 103767 \N genus Guzmania \N \N \N \N \N 103768 \N subspecies Hoffmannseggia burchellii subsp. rubroviolacea \N \N \N \N \N 103769 \N subspecies Narcissus tazetta subsp. aureus \N \N \N \N \N 103770 C.palmana Clusia Clusia palmana \N \N \N \N \N 103771 G.officinalis Gratiola Gratiola officinalis hedge hyssop,hedgehyssop \N \N \N \N 103772 M.2954 Maxillaria Maxillaria cf. hillsii Blanco 2954 \N \N \N \N \N 103773 M.spathulata Morella Morella spathulata \N \N \N \N \N 103774 E.guianensis Ecclinusa Ecclinusa guianensis \N \N \N \N \N 103775 P.nivalis Phlox Phlox nivalis \N \N \N \N \N 103776 \N genus Zoysia \N \N \N \N \N 103777 \N subspecies Centaurea triumfettii subsp. semidecurrens \N \N \N \N \N 103778 \N tribe Retiniphylleae \N \N \N \N \N 103779 S.maritima Sanicula Sanicula maritima adobe snakeroot \N \N \N \N 103780 T.elongata Tiquilia Tiquilia elongata \N \N \N \N \N 103781 G.spinescens Glossopetalon Glossopetalon spinescens Nevada greasewood,spiny greasewood \N \N \N \N 103782 C.aculeata Crypsis Crypsis aculeata \N \N \N \N \N 103783 I.glabra Ilex Ilex glabra bitter gallberry,inkberry,winter berry \N \N \N \N 103784 L.arvensis Lycopsis Lycopsis arvensis \N \N \N \N \N 103785 C.lainzii Carex Carex lainzii \N \N \N \N \N 103786 D.cultivar Dendrobium Dendrobium hybrid cultivar \N \N \N \N \N 103787 I.pallida Impatiens Impatiens pallida \N \N \N \N \N 103788 C.patelliforme Corispermum Corispermum patelliforme \N \N \N \N \N 103789 P.macropodum Polygonatum Polygonatum macropodum \N \N \N \N \N 103790 \N genus Kingidium \N \N \N \N \N 103791 T.papillosum Tropaeolum Tropaeolum papillosum \N \N \N \N \N 103792 D.pernambucanus Desmanthus Desmanthus pernambucanus \N \N \N \N \N 103793 P.scioana Parkinsonia Parkinsonia scioana \N \N \N \N \N 103794 C.hirtzii Chondrorhyncha Chondrorhyncha hirtzii \N \N \N \N \N 103795 C.virescens Coelogyne Coelogyne virescens \N \N \N \N \N 103796 H.repens Hebenstretia Hebenstretia repens \N \N \N \N \N 103797 M.guatemalensis Melananthus Melananthus guatemalensis \N \N \N \N \N 103798 Q.occidentalis Quetzalia Quetzalia occidentalis \N \N \N \N \N 103799 M.linifolia Monotaxis Monotaxis linifolia \N \N \N \N \N 103800 B.library unclassified Boechera Boechera holboellii/Boechera stricta mixed EST library \N \N \N \N \N 103801 V.exilis Vigna Vigna exilis \N \N \N \N \N 103802 P.subcordata Poecilanthe Poecilanthe subcordata \N \N \N \N \N 103803 G.angustifolius Gyrocarpus Gyrocarpus angustifolius \N \N \N \N \N 103804 T.cordata Turbina Turbina cordata \N \N \N \N \N 103805 A.s.n. Aerides Aerides sp. Szlachetko s.n. \N \N \N \N \N 103806 \N genus Bolax \N \N \N \N \N 103807 \N genus Scandia \N \N \N \N \N 103808 \N subspecies Casuarina oligodon subsp. oligodon \N \N \N \N \N 103809 \N varietas Swartzia simplex var. grandiflora \N \N \N \N \N 103810 D.pharangophila Dicymbe Dicymbe pharangophila \N \N \N \N \N 103811 B.chitoensis Begonia Begonia chitoensis \N \N \N \N \N 103812 C.'Kewensis' Columnea Columnea sp. 'Kewensis' \N \N \N \N \N 103813 \N genus Banisteriopsis \N \N \N \N \N 103814 \N varietas Berberis amurensis var. quelpaertensis \N \N \N \N \N 103815 M.stenophylla Monnina Monnina stenophylla \N \N \N \N \N 103816 T.longebracteata Treichelia Treichelia longebracteata \N \N \N \N \N 103817 \N varietas Brassica juncea var. multisecta \N \N \N \N \N 103818 S.chapaensis Smilax Smilax chapaensis \N \N \N \N \N 103819 D.lanceolatum Dendrolobium Dendrolobium lanceolatum \N \N \N \N \N 103820 A.loderi Acacia Acacia loderi \N \N \N \N \N 103821 \N varietas Mimosa campicola var. planipes \N \N \N \N \N 103822 E.didiereoides Euphorbia Euphorbia didiereoides \N \N \N \N \N 103823 E.pauciovulata Erica Erica pauciovulata \N \N \N \N \N 103824 A.ornithopodioides Astragalus Astragalus ornithopodioides \N \N \N \N \N 103825 E.coquimbensis Escallonia Escallonia coquimbensis \N \N \N \N \N 103826 D.cirrhifer Desmoncus Desmoncus cirrhifer \N \N \N \N \N 103827 I.menziesii Isocoma Isocoma menziesii \N \N \N \N \N 103828 R.aesculifolia Rodgersia Rodgersia aesculifolia \N \N \N \N \N 103829 A.blumenavii Aechmea Aechmea blumenavii \N \N \N \N \N 103830 P.pauciflora Plinia Plinia pauciflora \N \N \N \N \N 103831 D.burkilliana Dioscorea Dioscorea burkilliana \N \N \N \N \N 103832 S.arnaldii Senecio Senecio arnaldii \N \N \N \N \N 103833 P.clavigera Pterostylis Pterostylis clavigera \N \N \N \N \N 103834 G.latifolium Galium Galium latifolium \N \N \N \N \N 103835 M.sprengelii Mimosa Mimosa sprengelii \N \N \N \N \N 103836 C.pogonacanthus Calamus Calamus pogonacanthus \N \N \N \N \N 103837 \N genus Erepsia \N \N \N \N \N 103838 M.maingayi Mitrephora Mitrephora maingayi \N \N \N \N \N 103839 M.tenuis Malaxis Malaxis tenuis Arizona adder's-mouth orchid \N \N \N \N 103840 P.commutata Pterostylis Pterostylis commutata \N \N \N \N \N 103841 C.alpina Cyclopia Cyclopia alpina \N \N \N \N \N 103842 S.oppositifolia Salsola Salsola oppositifolia \N \N \N \N \N 103843 \N subspecies Conostylis aculeata subsp. gracilis \N \N \N \N \N 103844 S.brachycarpa Spuriopimpinella Spuriopimpinella brachycarpa \N \N \N \N \N 103846 L.brasiliensis Lilaeopsis Lilaeopsis brasiliensis \N \N \N \N \N 103847 P.sagittata Persicaria Persicaria sagittata \N \N \N \N \N 103848 M.villosa Meconopsis Meconopsis villosa Himalayan woodland-poppy \N \N \N \N 103849 \N tribe Noccaeeae \N \N \N \N \N 103850 \N varietas Cliffortia filifolia var. filifolia \N \N \N \N \N 103851 P.cocoides Parajubaea Parajubaea cocoides \N \N \N \N \N 103852 H.tatei Haegiela Haegiela tatei \N \N \N \N \N 103853 H.chasmolycium Helichrysum Helichrysum chasmolycium \N \N \N \N \N 103854 R.kiusianum Rhododendron Rhododendron kiusianum \N \N \N \N \N 103855 G.sardoa Glechoma Glechoma sardoa \N \N \N \N \N 103856 \N varietas Allium bolanderi var. bolanderi \N \N \N \N \N 103857 A.parviflora Agrimonia Agrimonia parviflora \N \N \N \N \N 103858 \N subspecies Erica glandulosa subsp. bondiae \N \N \N \N \N 103859 \N genus Bolusafra \N \N \N \N \N 103860 L.tsingtauense Lilium Lilium tsingtauense \N \N \N \N \N 103861 J.incana Jacmaia Jacmaia incana \N \N \N \N \N 103862 E.brevirostre Erucastrum Erucastrum brevirostre \N \N \N \N \N 103863 P.urjanchaica Poa Poa urjanchaica \N \N \N \N \N 103864 N.acuminata Neuropeltis Neuropeltis acuminata \N \N \N \N \N 103865 N.salsoloides Nolana Nolana salsoloides \N \N \N \N \N 103866 S.4022-B22 Schismatoclada Schismatoclada sp. Bremer et al. 4022-B22 \N \N \N \N \N 103867 \N varietas Dombeya acutangula aff. var. acutangula TLP-2010 \N \N \N \N \N 103868 \N varietas Symphyotrichum subulatum var. squamatum \N \N \N \N \N 103869 \N subspecies Pentatrichia rehmii subsp. rehmii \N \N \N \N \N 103870 \N genus Securidaca \N \N \N \N \N 103871 \N subspecies Burmeistera resupinata subsp. resupinata \N \N \N \N \N 103872 K.latifolia Kalmia Kalmia latifolia mountain laurel \N \N \N \N 103873 \N genus Moussonia \N \N \N \N \N 103874 N.stricta Niphogeton Niphogeton stricta \N \N \N \N \N 103875 S.SspP11 Sobralia Sobralia sp. SspP11 \N \N \N \N \N 103876 \N subspecies Quercus robur subsp. pedunculiflora \N \N \N \N \N 103877 A.pulchellum Asarum Asarum pulchellum \N \N \N \N \N 103878 M.myrtillina Myrsine Myrsine myrtillina \N \N \N \N \N 103879 T.TL264-3 unclassified Taraxacum Taraxacum (sect. Naevosa) sp. TL264-3 \N \N \N \N \N 103880 S.reticulatus Stemonoporus Stemonoporus reticulatus \N \N \N \N \N 103881 P.kohautiana Petrea Petrea kohautiana \N \N \N \N \N 103882 \N subspecies Erica trimera subsp. keniensis \N \N \N \N \N 103883 A.bicolor Anigozanthos Anigozanthos bicolor \N \N \N \N \N 103884 P.JTO-2010 Plumatichilos Plumatichilos sp. JTO-2010 \N \N \N \N \N 103885 T.radicans Toxicodendron Toxicodendron radicans eastern poison ivy \N \N \N \N 103886 Z.neotruncatum Zingiber Zingiber neotruncatum \N \N \N \N \N 103887 T.peruvianus Tristerix Tristerix peruvianus \N \N \N \N \N 103888 C.aethiopica Carex Carex aethiopica \N \N \N \N \N 103889 F.frolowii Frolovia Frolovia frolowii \N \N \N \N \N 103890 V.champinii Vitis Vitis x champinii \N \N \N \N \N 103891 T.maderense Taraxacum Taraxacum maderense \N \N \N \N \N 103892 D.antarctica Descurainia Descurainia antarctica \N \N \N \N \N 103893 C.roseum Cymbosema Cymbosema roseum \N \N \N \N \N 103894 L.filiformis Lotononis Lotononis filiformis \N \N \N \N \N 103895 P.benghalensis Pogostemon Pogostemon benghalensis \N \N \N \N \N 103896 F.micrantha Fraxinus Fraxinus micrantha \N \N \N \N \N 103897 V.czerniakowskiana Veronica Veronica czerniakowskiana \N \N \N \N \N 103898 P.514 Pseudopeponidium Pseudopeponidium sp. 2 Razafimandimbison 514 \N \N \N \N \N 103899 O.gramineum Oncidium Oncidium gramineum \N \N \N \N \N 103900 P.subspathulata Plantago Plantago subspathulata \N \N \N \N \N 103901 F.occidentalis Faramea Faramea occidentalis \N \N \N \N \N 103902 \N genus Furcraea \N \N \N \N \N 103903 C.lanigerum Ceratostema Ceratostema lanigerum \N \N \N \N \N 103904 S.matopensis Strychnos Strychnos matopensis \N \N \N \N \N 103905 C.harveyi Commiphora Commiphora harveyi \N \N \N \N \N 103906 M.stipitatoglandulosa Monarda Monarda stipitatoglandulosa \N \N \N \N \N 103907 S.campanula Silene Silene campanula \N \N \N \N \N 103908 O.rosea Oeonia Oeonia rosea \N \N \N \N \N 103909 \N genus Dehaasia \N \N \N \N \N 103910 E.reunionensis Erica Erica reunionensis \N \N \N \N \N 103911 E.1007 Euphorbia Euphorbia sp. Steinmann 1007 \N \N \N \N \N 103912 \N genus Lacmellea \N \N \N \N \N 103913 E.panormitanus Elymus Elymus panormitanus \N \N \N \N \N 103914 D.soso Dioscorea Dioscorea soso \N \N \N \N \N 103915 H.micrantha Houstonia Houstonia micrantha \N \N \N \N \N 103916 B.taligera Begonia Begonia taligera \N \N \N \N \N 103917 D.XMW-2002-10 Dendrobium Dendrobium sp. XMW-2002-10 \N \N \N \N \N 103918 B.ferulaceum Bunium Bunium ferulaceum \N \N \N \N \N 103919 P.flavidum Paspalidium Paspalidium flavidum \N \N \N \N \N 103920 F.sumbul Ferula Ferula sumbul \N \N \N \N \N 103921 C.caespitosum Cyrtochilum Cyrtochilum caespitosum \N \N \N \N \N 103922 A.maroccanus Anacyclus Anacyclus maroccanus \N \N \N \N \N 103923 R.eglandulosa Ruthalicia Ruthalicia eglandulosa \N \N \N \N \N 103924 S.longifolia Stellaria Stellaria longifolia \N \N \N \N \N 103925 A.elliptica Ardisia Ardisia elliptica shoe-button ardisia \N \N \N \N 103926 B.neglectus Brownanthus Brownanthus neglectus \N \N \N \N \N 103927 C.hartwegii Clethra Clethra hartwegii \N \N \N \N \N 103928 A.densissima Arenaria Arenaria densissima \N \N \N \N \N 103929 A.serrata Artemisia Artemisia serrata sawtooth wormwood \N \N \N \N 103930 \N subspecies Carex viridula subsp. viridula \N \N \N \N \N 103931 S.retusa Salix Salix retusa \N \N \N \N \N 103932 T.laxa Trichopilia Trichopilia laxa \N \N \N \N \N 103933 P.malainoides Potamogeton Potamogeton x malainoides \N \N \N \N \N 103934 \N genus Massonia \N \N \N \N \N 103935 \N genus Geochloa \N \N \N \N \N 103936 T.2204 Timonius Timonius sp. Ridsdale 2204 \N \N \N \N \N 103937 R.microcarpa Ruta Ruta microcarpa \N \N \N \N \N 103938 B.crassifolia Bergenia Bergenia crassifolia \N \N \N \N \N 103939 C.kokanica Cousinia Cousinia kokanica \N \N \N \N \N 103940 Q.pseudosemecarpifolia Quercus Quercus pseudosemecarpifolia \N \N \N \N \N 103941 R.azureum Rhynchoglossum Rhynchoglossum azureum \N \N \N \N \N 103943 C.gaultherioides Calceolaria Calceolaria gaultherioides \N \N \N \N \N 103944 T.buckwestiorum Trifolium Trifolium buckwestiorum \N \N \N \N \N 103945 B.eriophora Bassia Bassia eriophora \N \N \N \N \N 103946 \N genus Diplolaena \N \N \N \N \N 103947 W.paniculata Wachendorfia Wachendorfia paniculata \N \N \N \N \N 103948 S.nitidus Syngonanthus Syngonanthus nitidus \N \N \N \N \N 103949 S.sterquilinus Senecio Senecio sterquilinus \N \N \N \N \N 103950 \N genus Eriochilus \N \N \N \N \N 103951 W.hobdyi Wilkesia Wilkesia hobdyi \N \N \N \N \N 103952 \N varietas Nierembergia pulchella var. pulchella \N \N \N \N \N 103953 T.caudatum Trifolium Trifolium caudatum \N \N \N \N \N 103954 M.montanus Mallotus Mallotus montanus \N \N \N \N \N 103955 \N genus Calluna \N \N \N \N \N 103956 R.bourgaei Ruellia Ruellia bourgaei \N \N \N \N \N 103957 G.bellidifolia Goodenia Goodenia bellidifolia \N \N \N \N \N 103958 A.moratii Aeranthes Aeranthes moratii \N \N \N \N \N 103959 \N genus Jasarum \N \N \N \N \N 103960 \N family Eriocaulaceae pipewort family \N \N \N \N 103961 S.cinerascens Sesbania Sesbania cinerascens \N \N \N \N \N 103962 A.obtusiloba Anemone Anemone obtusiloba \N \N \N \N \N 103963 T.commixtum Taraxacum Taraxacum commixtum \N \N \N \N \N 103964 T.grandiflora Tiquilia Tiquilia grandiflora \N \N \N \N \N 103965 \N genus Dictyolimon \N \N \N \N \N 103966 H.kingiana Haworthia Haworthia kingiana \N \N \N \N \N 103967 \N varietas Impatiens hians var. bipindensis \N \N \N \N \N 103968 M.calycinum Melasma Melasma calycinum \N \N \N \N \N 103969 M.fragrans Myristica Myristica fragrans mace,nutmeg \N \N \N \N 103970 L.capitellata Leucosyke Leucosyke capitellata \N \N \N \N \N 103971 \N forma Lycopersicon hirsutum f. glabratum \N \N \N \N \N 103972 P.emarginata Prunus Prunus emarginata Oregon cherry,bitter cherry \N \N \N \N 103973 \N genus Piptatherum \N \N \N \N \N 103974 \N genus Garcibarrigoa \N \N \N \N \N 103975 C.quercetorum Campanula Campanula quercetorum \N \N \N \N \N 103976 \N subfamily Schwenckioideae \N \N \N \N \N 103977 E.palmata Euaraliopsis Euaraliopsis palmata \N \N \N \N \N 103978 \N genus Gymnocarpos \N \N \N \N \N 103979 S.latifolium Stachyphrynium Stachyphrynium latifolium \N \N \N \N \N 103980 P.ruhlandii Procris Procris ruhlandii \N \N \N \N \N 103981 R.fruticosa Relhania Relhania fruticosa \N \N \N \N \N 103982 C.boiviniana Coffea Coffea boiviniana \N \N \N \N \N 103983 \N genus Indoschulzia \N \N \N \N \N 103984 S.ruandensis Stemodiopsis Stemodiopsis ruandensis \N \N \N \N \N 103985 W.columbiana Wolffia Wolffia columbiana \N \N \N \N \N 103986 B.copallifera Bursera Bursera copallifera \N \N \N \N \N 103987 \N genus Ancistrorhynchus \N \N \N \N \N 103988 A.halimifolia Alternanthera Alternanthera halimifolia \N \N \N \N \N 103989 \N subspecies Collomia debilis subsp. trifida \N \N \N \N \N 103990 S.argentina Silene Silene argentina \N \N \N \N \N 103991 R.taronense Rhododendron Rhododendron taronense \N \N \N \N \N 103992 \N varietas Allium cyathophorum var. farreri \N \N \N \N \N 103993 C.standleyi Coccineorchis Coccineorchis standleyi \N \N \N \N \N 103994 G.crispa Gomesa Gomesa crispa \N \N \N \N \N 103995 I.lespedezioides Indigofera Indigofera lespedezioides \N \N \N \N \N 103996 P.LBF-2002-2 Passiflora Passiflora sp. LBF-2002-2 \N \N \N \N \N 103997 \N genus Myrtillocactus \N \N \N \N \N 103998 O.pauciflora Ocotea Ocotea pauciflora \N \N \N \N \N 103999 R.depressum Rhodanthemum Rhodanthemum depressum \N \N \N \N \N 104000 M.linnaei Malva Malva linnaei \N \N \N \N \N 104001 M.lepidota Maxwellia Maxwellia lepidota \N \N \N \N \N 104002 P.smithii Philodendron Philodendron smithii \N \N \N \N \N 104003 N.rupicola Narcissus Narcissus rupicola \N \N \N \N \N 104004 D.lucidum Dendrophorbium Dendrophorbium lucidum \N \N \N \N \N 104005 C.acris Cardamine Cardamine acris \N \N \N \N \N 104006 C.pubescens Coreopsis Coreopsis pubescens \N \N \N \N \N 104007 D.elegans Desmos Desmos elegans \N \N \N \N \N 104008 M.brandegeei Muhlenbergia Muhlenbergia brandegeei \N \N \N \N \N 104009 N.zeylanicus Neurocalyx Neurocalyx zeylanicus \N \N \N \N \N 104010 P.rubra Passiflora Passiflora rubra \N \N \N \N \N 104011 H.giessii Heliotropium Heliotropium giessii \N \N \N \N \N 104012 P.buxifolia Protorhus Protorhus buxifolia \N \N \N \N \N 104013 S.portillae Sobralia Sobralia portillae \N \N \N \N \N 104014 E.delegatensis Eucalyptus Eucalyptus delegatensis \N \N \N \N \N 104015 C.junghuhniana Casuarina Casuarina junghuhniana \N \N \N \N \N 104016 A.flavida Alepis Alepis flavida \N \N \N \N \N 104017 M.parkinsonii Mammillaria Mammillaria parkinsonii \N \N \N \N \N 104018 A.MAB-2005 Asta Asta sp. MAB-2005 \N \N \N \N \N 104019 L.auratum Lilium Lilium auratum \N \N \N \N \N 104020 T.joharchii Tanacetum Tanacetum joharchii \N \N \N \N \N 104021 \N genus Mendoncia \N \N \N \N \N 104022 P.tica Passiflora Passiflora tica \N \N \N \N \N 104023 P.costatum Ptilimnium Ptilimnium costatum \N \N \N \N \N 104024 C.sonchifolia Crepis Crepis sonchifolia \N \N \N \N \N 104025 S.chaenomeloides Salix Salix chaenomeloides \N \N \N \N \N 104026 \N subspecies Genista hystrix subsp. legionensis \N \N \N \N \N 104027 \N subspecies Cynoglossum montanum subsp. extraeuropaeum \N \N \N \N \N 104028 M.ringens Mimulus Mimulus ringens \N \N \N \N \N 104029 P.bicolor Pappophorum Pappophorum bicolor \N \N \N \N \N 104030 E.gradyi Euphorbia Euphorbia gradyi \N \N \N \N \N 104031 A.pallasii Allium Allium pallasii \N \N \N \N \N 104033 D.bellardii Draba Draba bellardii \N \N \N \N \N 104034 L.dilleniifolia Litsea Litsea dilleniifolia \N \N \N \N \N 104035 O.stictocheila Oxalis Oxalis stictocheila \N \N \N \N \N 104036 \N subspecies Lamium garganicum subsp. striatum \N \N \N \N \N 104037 N.rosulata Nicotiana Nicotiana rosulata \N \N \N \N \N 104038 \N subspecies Iris tenax subsp. tenax \N \N \N \N \N 104039 G.borealis Gymnadenia Gymnadenia borealis \N \N \N \N \N 104040 \N genus Cercestis \N \N \N \N \N 104041 S.hondelmannii Solanum Solanum hondelmannii \N \N \N \N \N 104042 D.crenulata Dyschoriste Dyschoriste crenulata \N \N \N \N \N 104043 S.martinicensis Symplocos Symplocos martinicensis \N \N \N \N \N 104044 U.sandersonii Utricularia Utricularia sandersonii \N \N \N \N \N 104045 \N genus Oxytenanthera \N \N \N \N \N 104046 M.caulescens Mandragora Mandragora caulescens Himalayan mandrake,qie shen \N \N \N \N 104047 S.schwerinii Salix Salix viminalis x Salix schwerinii \N \N \N \N \N 104048 \N subspecies Ptilostemon gnaphaloides subsp. pseudofruticosus \N \N \N \N \N 104049 C.SKYL-2010b Celastrus Celastrus sp. SKYL-2010b \N \N \N \N \N 104050 L.grandiflorus Leptosiphon Leptosiphon grandiflorus \N \N \N \N \N 104051 E.atoto Euphorbia Euphorbia atoto \N \N \N \N \N 104052 H.obscura Hoya Hoya obscura \N \N \N \N \N 104053 \N genus Cordia \N \N \N \N \N 104054 A.latifolia Anagyris Anagyris latifolia \N \N \N \N \N 104055 T.sp. Thevetia Thevetia sp. \N \N \N \N \N 104056 M.patersonii Monsonia Monsonia patersonii \N \N \N \N \N 104057 E.botryoides Eucalyptus Eucalyptus botryoides \N \N \N \N \N 104058 P.roemeriana Phlox Phlox roemeriana \N \N \N \N \N 104059 J.aequatoria Joosia Joosia aequatoria \N \N \N \N \N 104060 P.axialis Paris Paris axialis \N \N \N \N \N 104061 C.microphyllus Ceanothus Ceanothus microphyllus \N \N \N \N \N 104062 A.scortechinii Artocarpus Artocarpus scortechinii \N \N \N \N \N 104063 A.ramburei Anthyllis Anthyllis ramburei \N \N \N \N \N 104064 A.nevadensis Arctostaphylos Arctostaphylos nevadensis \N \N \N \N \N 104065 \N genus Neolauchea \N \N \N \N \N 104066 V.boelckei Valeriana Valeriana boelckei \N \N \N \N \N 104067 B.capensoides Billburttia Billburttia capensoides \N \N \N \N \N 104068 \N genus Queenslandiella \N \N \N \N \N 104069 \N genus x Odontocidium \N \N \N \N \N 104070 E.pumilio Edraianthus Edraianthus pumilio \N \N \N \N \N 104071 I.h-3a Impatiens Impatiens sp. h-3a \N \N \N \N \N 104072 A.pallidiflora Agastache Agastache pallidiflora \N \N \N \N \N 104073 A.retamocarpus Astragalus Astragalus retamocarpus \N \N \N \N \N 104074 \N varietas Psychotria panamensis var. compressicaulis \N \N \N \N \N 104075 S.33.074 Salicornia Salicornia sp. Freitag 33.074 \N \N \N \N \N 104076 \N genus Demavendia \N \N \N \N \N 104077 \N genus Gymnolaena \N \N \N \N \N 104078 \N subspecies Phlox bifida subsp. stellaria \N \N \N \N \N 104079 E.ballyi Echidnopsis Echidnopsis ballyi \N \N \N \N \N 104080 P.queenslandica Pouteria Pouteria queenslandica \N \N \N \N \N 104081 T.NHW-2005-1 Trichoceros Trichoceros sp. NHW-2005-1 \N \N \N \N \N 104082 L.gruina Lobelia Lobelia gruina \N \N \N \N \N 104083 B.tenuispicata Boesenbergia Boesenbergia tenuispicata \N \N \N \N \N 104084 \N subspecies Aiphanes hirsuta subsp. fosteriorum \N \N \N \N \N 104085 P.tsaii Photinia Photinia tsaii \N \N \N \N \N 104086 \N genus Tsoala \N \N \N \N \N 104087 J.media Jarava Jarava media \N \N \N \N \N 104088 B.salviifolia Buddleja Buddleja salviifolia \N \N \N \N \N 104089 R.schumanniana Randia Randia schumanniana \N \N \N \N \N 104090 E.quadrangularis Erica Erica quadrangularis \N \N \N \N \N 104091 L.longicoma Leandra Leandra longicoma \N \N \N \N \N 104092 E.thienii Eloyella Eloyella thienii \N \N \N \N \N 104093 \N genus Gennaria \N \N \N \N \N 104094 P.odontocalyx Primula Primula odontocalyx \N \N \N \N \N 104095 P.hibbertioides Philgamia Philgamia hibbertioides \N \N \N \N \N 104096 R.venustus Rhaphithamnus Rhaphithamnus venustus \N \N \N \N \N 104097 T.scabra Thevenotia Thevenotia scabra \N \N \N \N \N 104098 H.glabrata Hoheria Hoheria glabrata \N \N \N \N \N 104099 G.fera Gleditsia Gleditsia fera \N \N \N \N \N 104100 P.glauca Phyllostachys Phyllostachys glauca \N \N \N \N \N 104101 \N genus Terniopsis \N \N \N \N \N 104102 S.cordifolia Stewartia Stewartia cordifolia \N \N \N \N \N 104103 M.senfftiana Meryta Meryta senfftiana \N \N \N \N \N 104104 S.indica Salvia Salvia indica \N \N \N \N \N 104105 T.schimperi Trifolium Trifolium schimperi \N \N \N \N \N 104106 P.hirta Pyrenaria Pyrenaria hirta \N \N \N \N \N 104107 C.chitralensis Cousinia Cousinia chitralensis \N \N \N \N \N 104108 E.linearifolia Ericameria Ericameria linearifolia \N \N \N \N \N 104109 S.rugosa Soldanella Soldanella rugosa \N \N \N \N \N 104110 M.SH-2010 Myrcianthes Myrcianthes sp. SH-2010 \N \N \N \N \N 104111 C.nippokoreana Citrus Citrus nippokoreana mandarinier \N \N \N \N 104112 A.letestui Ancistrocladus Ancistrocladus letestui \N \N \N \N \N 104113 C.7128 Cremastosperma Cremastosperma sp. Woytkowski 7128 \N \N \N \N \N 104114 A.'Lomond' Aciphylla Aciphylla sp. 'Lomond' \N \N \N \N \N 104115 \N subtribe Pterostylidinae \N \N \N \N \N 104116 \N genus Guapira \N \N \N \N \N 104117 B.arenicola Babiana Babiana arenicola \N \N \N \N \N 104118 H.mixtum Hieracium Hieracium mixtum \N \N \N \N \N 104119 V.fasciculata Vulpia Vulpia fasciculata \N \N \N \N \N 104120 C.s.n. Catalpa Catalpa sp. CWD s.n. \N \N \N \N \N 104121 T.campylocarpum Tetrastigma Tetrastigma campylocarpum \N \N \N \N \N 104122 A.dolichocarpa Apurimacia Apurimacia dolichocarpa \N \N \N \N \N 104123 D.hutchisoniana Dalechampia Dalechampia hutchisoniana \N \N \N \N \N 104124 \N genus Najas naiads,water-nymphs \N \N \N \N 104125 S.crassifolia Suaeda Suaeda crassifolia \N \N \N \N \N 104126 \N subspecies Reseda valentina subsp. valentina \N \N \N \N \N 104127 M.rostrata Macaranga Macaranga rostrata \N \N \N \N \N 104128 P.incurva Parapholis Parapholis incurva curved sicklegrass \N \N \N \N 104129 A.occidentalis Allenrolfea Allenrolfea occidentalis iodinebush \N \N \N \N 104130 L.alyssoides Lepidium Lepidium alyssoides \N \N \N \N \N 104131 C.trilocularis Corchorus Corchorus trilocularis \N \N \N \N \N 104132 A.vavilovii Aegilops Aegilops vavilovii \N \N \N \N \N 104133 D.laevigata Digitalis Digitalis laevigata \N \N \N \N \N 104134 A.pectinatus Aphanocalyx Aphanocalyx pectinatus \N \N \N \N \N 104135 I.missouriensis Iris Iris missouriensis \N \N \N \N \N 104136 P.glauca Planchonella Planchonella glauca \N \N \N \N \N 104137 L.cavaleriei Loxostigma Loxostigma cavaleriei \N \N \N \N \N 104138 \N subspecies Cephalaria squamiflora subsp. balearica \N \N \N \N \N 104139 C.substerile Calymmanthium Calymmanthium substerile \N \N \N \N \N 104140 P.suburbanum Pelargonium Pelargonium suburbanum \N \N \N \N \N 104141 \N varietas Bursera fagaroides var. purpusii \N \N \N \N \N 104142 L.tingitana Linaria Linaria tingitana \N \N \N \N \N 104143 L.prostrata Lelya Lelya prostrata \N \N \N \N \N 104144 \N genus Stachys \N \N \N \N \N 104145 P.pseudoperuviana Peperomia Peperomia pseudoperuviana \N \N \N \N \N 104146 A.PG1 Alstroemeria Alstroemeria sp. PG1 \N \N \N \N \N 104147 E.sessilispica Eragrostis Eragrostis sessilispica tumble lovegrass \N \N \N \N 104148 P.acerosum Polygonum Polygonum acerosum \N \N \N \N \N 104149 S.chungtienensis Silene Silene chungtienensis \N \N \N \N \N 104150 P.japonicum Peucedanum Peucedanum japonicum \N \N \N \N \N 104151 S.mariqueter Scirpus Scirpus x mariqueter \N \N \N \N \N 104152 D.balcanica Dioscorea Dioscorea balcanica \N \N \N \N \N 104153 T.pallida Tradescantia Tradescantia pallida purpleheart \N \N \N \N 104154 A.heterocephalum Arisaema Arisaema heterocephalum \N \N \N \N \N 104155 \N genus Lolium \N \N \N \N \N 104156 \N genus Sageraea \N \N \N \N \N 104157 S.tagetes Steirodiscus Steirodiscus tagetes \N \N \N \N \N 104158 P.udzungwaensis Pauridiantha Pauridiantha udzungwaensis \N \N \N \N \N 104159 S.deregularis Stelis Stelis deregularis \N \N \N \N \N 104160 H.amabile Hymenidium Hymenidium amabile \N \N \N \N \N 104161 C.maynasensis Conceveiba Conceveiba maynasensis \N \N \N \N \N 104162 S.kerrii Steudnera Steudnera kerrii \N \N \N \N \N 104163 M.plumosa Mammillaria Mammillaria plumosa \N \N \N \N \N 104164 P.simonii Populus Populus simonii \N \N \N \N \N 104165 I.atropatana Iris Iris atropatana \N \N \N \N \N 104166 S.drymophilum Solanum Solanum drymophilum erubia \N \N \N \N 104167 \N subspecies Impatiens kamerunensis subsp. obanensis \N \N \N \N \N 104168 S.myrtifolia Selago Selago myrtifolia \N \N \N \N \N 104169 \N genus Pentamerista \N \N \N \N \N 104170 R.pugiformis Racinaea Racinaea pugiformis \N \N \N \N \N 104171 \N genus Ceratopyxis \N \N \N \N \N 104172 H.longifolia Hortia Hortia longifolia \N \N \N \N \N 104173 P.rohrii Pterocarpus Pterocarpus rohrii \N \N \N \N \N 104174 H.moseleyanum Hydnophytum Hydnophytum moseleyanum \N \N \N \N \N 104175 H.hircinum Hypericum Hypericum hircinum \N \N \N \N \N 104176 \N genus Eminium \N \N \N \N \N 104177 B.marginata Brasiliorchis Brasiliorchis marginata \N \N \N \N \N 104178 \N varietas Physaria didymocarpa var. lanata \N \N \N \N \N 104179 G.macrophylla Gentiana Gentiana macrophylla \N \N \N \N \N 104180 \N subspecies Narcissus poeticus subsp. hellenicus \N \N \N \N \N 104181 O.leptantha Onosma Onosma leptantha \N \N \N \N \N 104182 \N varietas Scilla hispanica var. cedretorum \N \N \N \N \N 104183 D.viscosa Dittrichia Dittrichia viscosa \N \N \N \N \N 104184 C.serruloba Cuscuta Cuscuta serruloba \N \N \N \N \N 104185 S.volckmannii Sisymbrium Sisymbrium volckmannii \N \N \N \N \N 104186 P.denhartogii Posidonia Posidonia denhartogii \N \N \N \N \N 104187 P.hookeri Pachyphytum Pachyphytum hookeri \N \N \N \N \N 104188 B.uniflora Balduina Balduina uniflora \N \N \N \N \N 104189 R.candidula Rhynchostele Rhynchostele candidula \N \N \N \N \N 104190 P.kermesina Passiflora Passiflora kermesina \N \N \N \N \N 104191 C.U-02 Cypripedium Cypripedium sp. U-02 \N \N \N \N \N 104192 B.geminata Braunsia Braunsia geminata \N \N \N \N \N 104193 \N subtribe Pentziinae \N \N \N \N \N 104194 H.inflata Hottonia Hottonia inflata \N \N \N \N \N 104195 C.thyrsiflora Cussonia Cussonia thyrsiflora \N \N \N \N \N 104196 E.fontana Erica Erica fontana \N \N \N \N \N 104197 T.patagonicum Taraxacum Taraxacum patagonicum \N \N \N \N \N 104198 S.monocephala Stephanomeria Stephanomeria monocephala \N \N \N \N \N 104199 B.bivalvis Bastardia Bastardia bivalvis \N \N \N \N \N 104200 M.leptobotrya Millettia Millettia leptobotrya \N \N \N \N \N 104201 M.meleagris Maxillaria Maxillaria meleagris \N \N \N \N \N 104202 A.polyneuron Aspidosperma Aspidosperma polyneuron peroba \N \N \N \N 104203 G.barthlottii Genlisea Genlisea barthlottii \N \N \N \N \N 104204 V.benthamii Hebe Veronica benthamii \N \N \N \N \N 104205 M.insolens Moraea Moraea insolens \N \N \N \N \N 104206 O.stamineus Orthosiphon Orthosiphon stamineus \N \N \N \N \N 104207 A.leptophylla Anthemis Anthemis leptophylla \N \N \N \N \N 104208 L.incachacana Lymanbensonia Lymanbensonia incachacana \N \N \N \N \N 104209 D.ehretioides Diospyros Diospyros ehretioides \N \N \N \N \N 104210 M.multiflora Myrcia Myrcia multiflora \N \N \N \N \N 104211 P.malainoides Potamogeton Potamogeton malainoides \N \N \N \N \N 104212 B.humboldtiana Basselinia Basselinia humboldtiana \N \N \N \N \N 104213 C.calamistratum Crinum Crinum calamistratum \N \N \N \N \N 104214 L.krukovii Litsea Litsea krukovii \N \N \N \N \N 104215 T.vavilovii Trifolium Trifolium vavilovii \N \N \N \N \N 104216 V.riparia Vitis Vitis labrusca x Vitis riparia \N \N \N \N \N 104217 \N genus Schoenolaena \N \N \N \N \N 104218 R.borealis Ranunculus Ranunculus borealis \N \N \N \N \N 104219 P.forgetii Pilea Pilea forgetii \N \N \N \N \N 104220 T.brevifolia Tradescantia Tradescantia brevifolia \N \N \N \N \N 104221 J.capensis Jatropha Jatropha capensis \N \N \N \N \N 104222 A.eremophila Austrostipa Austrostipa eremophila \N \N \N \N \N 104223 P.crucianelloides Polygala Polygala crucianelloides \N \N \N \N \N 104224 \N varietas Farfugium japonicum var. formosanum \N \N \N \N \N 104225 D.persica Draba Draba persica \N \N \N \N \N 104226 P.thuarii Pentameris sect. Pentameris Pentameris thuarii \N \N \N \N \N 104227 A.canescens Alyssum Alyssum canescens \N \N \N \N \N 104228 \N no rank environmental samples Taxonomy:531413 \N \N \N \N \N 104229 P.elegans Platypodium Platypodium elegans \N \N \N \N \N 104230 P.caaguazuense Panicum Panicum caaguazuense \N \N \N \N \N 104231 D.violascens Digitaria Digitaria violascens \N \N \N \N \N 104232 H.gymnanthum Hypericum Hypericum gymnanthum \N \N \N \N \N 104233 S.abyssinica Schlechterella Schlechterella abyssinica \N \N \N \N \N 104234 K.amatymbica Kohautia Kohautia amatymbica \N \N \N \N \N 104235 P.longiscapa Primula Primula longiscapa \N \N \N \N \N 104236 A.pinnatifidum Argyranthemum Argyranthemum pinnatifidum \N \N \N \N \N 104237 \N subspecies Hordeum murinum subsp. leporinum \N \N \N \N \N 104238 R.mengtszense Rhododendron Rhododendron mengtszense \N \N \N \N \N 104239 \N family Curtisiaceae \N \N \N \N \N 104240 V.allionii Veronica Veronica allionii \N \N \N \N \N 104241 G.wrightii Glandularia Glandularia wrightii \N \N \N \N \N 104242 G.ochroleucus Gladiolus Gladiolus ochroleucus \N \N \N \N \N 104243 P.davidii Pedicularis Pedicularis davidii \N \N \N \N \N 104244 S.ngoyense Syzygium Syzygium ngoyense \N \N \N \N \N 104245 G.sanguinea Guzmania Guzmania sanguinea \N \N \N \N \N 104246 S.desertorum Scrophularia Scrophularia desertorum \N \N \N \N \N 104247 D.canadense Desmodium Desmodium canadense showy tick-trefoil \N \N \N \N 104248 S.gigantiflorum Stathmostelma Stathmostelma gigantiflorum \N \N \N \N \N 104249 P.murrayi Ptilotus Ptilotus murrayi \N \N \N \N \N 104250 \N genus Labramia \N \N \N \N \N 104251 M.lushnathiana Moldenhawera Moldenhawera lushnathiana \N \N \N \N \N 104252 E.helmsii Eriachne Eriachne helmsii \N \N \N \N \N 104253 \N genus Cyrtostylis \N \N \N \N \N 104254 \N genus Fascicularia \N \N \N \N \N 104255 C.70 Corchorus Corchorus sp. Moeaha 70 \N \N \N \N \N 104256 \N varietas Rosa multiflora var. cathayensis \N \N \N \N \N 104257 P.sarracenia Pleurothallis Pleurothallis sarracenia \N \N \N \N \N 104258 M.formosana Mitella Mitella formosana \N \N \N \N \N 104259 D.brachystachya Dalea Dalea brachystachya \N \N \N \N \N 104260 R.obidensis Ruprechtia Ruprechtia obidensis \N \N \N \N \N 104261 G.lanceolarium Glochidion Glochidion lanceolarium \N \N \N \N \N 104262 L.androsaceus Leptosiphon Leptosiphon androsaceus \N \N \N \N \N 104263 \N genus Speirantha \N \N \N \N \N 104264 \N genus Schima \N \N \N \N \N 104265 T.brownii Tylophora Tylophora brownii \N \N \N \N \N 104266 E.lucidum Erodium Erodium lucidum \N \N \N \N \N 104267 I.poeppigiana Inga Inga poeppigiana \N \N \N \N \N 104268 S.madidorum Schoenocaulon Schoenocaulon madidorum \N \N \N \N \N 104269 L.perfoliatus Leucocarpus Leucocarpus perfoliatus \N \N \N \N \N 104270 \N varietas Epipactis albensis var. fibri \N \N \N \N \N 104271 L.serotina Lloydia Lloydia serotina \N \N \N \N \N 104272 \N varietas Chaetanthera acerosa var. dasycarpa \N \N \N \N \N 104273 \N genus Singularybas \N \N \N \N \N 104274 V.pekinensis Viola Viola pekinensis \N \N \N \N \N 104275 E.dalmaticus Edraianthus Edraianthus dalmaticus \N \N \N \N \N 104276 E.PRU092752 Eugenia Eugenia sp. B PRU092752 \N \N \N \N \N 104277 H.filifolium Heliotropium Heliotropium filifolium \N \N \N \N \N 104278 A.lunare Argyrolobium Argyrolobium lunare \N \N \N \N \N 104279 B.brunea Bursera Bursera brunea \N \N \N \N \N 104280 \N genus Acroptilon \N \N \N \N \N 104281 S.congolana Strychnos Strychnos congolana \N \N \N \N \N 104282 M.chartacea Miconia Miconia chartacea \N \N \N \N \N 104283 P.284 Parathesis Parathesis sp. Fritsch 284 \N \N \N \N \N 104284 R.restingae Renvoizea Renvoizea restingae \N \N \N \N \N 104285 T.3517 unclassified Taraxacum Taraxacum (sect. Dioszegia) sp. 3517 \N \N \N \N \N 104286 M.macrophylla Momordica Momordica macrophylla \N \N \N \N \N 104287 \N genus Boeica \N \N \N \N \N 104288 \N genus Paulita \N \N \N \N \N 104289 G.viridiflora Galtonia Galtonia viridiflora \N \N \N \N \N 104290 Z.novazelandica Zostera Zostera novazelandica \N \N \N \N \N 104291 B.confusa Banisteriopsis Banisteriopsis confusa \N \N \N \N \N 104292 H.volubilis Hibbertia Hibbertia volubilis \N \N \N \N \N 104293 S.mandonii Sisyrinchium Sisyrinchium mandonii \N \N \N \N \N 104294 O.goniorhiza Oxalis Oxalis goniorhiza \N \N \N \N \N 104295 F.violacea Festuca Festuca violacea \N \N \N \N \N 104296 V.disperma Vicia Vicia disperma \N \N \N \N \N 104297 E.crebra Eucalyptus Eucalyptus crebra \N \N \N \N \N 104298 C.physocalyx Calliandra Calliandra physocalyx \N \N \N \N \N 104299 \N genus Berlinianche \N \N \N \N \N 104300 A.cucullata Aglaia Aglaia cucullata \N \N \N \N \N 104301 \N genus Pentachondra \N \N \N \N \N 104302 T.omeiensis Tetradoxa Tetradoxa omeiensis \N \N \N \N \N 104303 \N varietas Metrosideros waialealae var. fauriei \N \N \N \N \N 104304 B.benna Bafodeya Bafodeya benna \N \N \N \N \N 104305 N.chryseum Nephelium Nephelium chryseum \N \N \N \N \N 104306 C.invicta Corynopuntia Corynopuntia invicta \N \N \N \N \N 104307 E.paniculatum Eryngium Eryngium paniculatum \N \N \N \N \N 104308 C.ovopedata Chersodoma Chersodoma ovopedata \N \N \N \N \N 104309 S.cymosa Siparuna Siparuna cymosa \N \N \N \N \N 104310 \N genus Romanzoffia \N \N \N \N \N 104311 A.cryptantha Azorella Azorella cryptantha \N \N \N \N \N 104312 \N varietas Phoenix loureiroi var. humilis \N \N \N \N \N 104313 O.obtusangulus Oreobolus Oreobolus obtusangulus \N \N \N \N \N 104314 \N genus Pseudocarapa \N \N \N \N \N 104315 \N genus Ophiorrhiziphyllon \N \N \N \N \N 104316 C.hamiltonii Coreopsis Coreopsis hamiltonii \N \N \N \N \N 104317 G.lobatum Gossypium Gossypium lobatum \N \N \N \N \N 104318 P.barbata Polycycnis Polycycnis barbata \N \N \N \N \N 104319 \N genus Daniellia \N \N \N \N \N 104320 M.pennellii Myrrhidendron Myrrhidendron pennellii \N \N \N \N \N 104321 C.genistoides Cyclolepis Cyclolepis genistoides \N \N \N \N \N 104322 P.sylvicola Pauridiantha Pauridiantha sylvicola \N \N \N \N \N 104323 E.ecklonii Euphorbia Euphorbia ecklonii \N \N \N \N \N 104324 A.austrocaledonicus Acridocarpus Acridocarpus austrocaledonicus \N \N \N \N \N 104325 S.kwebense Solanum Solanum kwebense \N \N \N \N \N 104326 E.latifolius Echinops Echinops latifolius \N \N \N \N \N 104327 D.pinnata Dalbergia Dalbergia pinnata \N \N \N \N \N 104328 R.pygmaea Rebutia Rebutia pygmaea \N \N \N \N \N 104329 \N genus Micrandropsis \N \N \N \N \N 104330 P.asteria Peplonia Peplonia asteria \N \N \N \N \N 104331 P.hongkongensis Pavetta Pavetta hongkongensis \N \N \N \N \N 104332 O.ovatifolia Oldenlandia Oldenlandia ovatifolia \N \N \N \N \N 104333 F.haematacanthus Ferocactus Ferocactus haematacanthus \N \N \N \N \N 104334 I.pharicus Isodon Isodon pharicus \N \N \N \N \N 104335 \N varietas Correa glabra var. turnbullii \N \N \N \N \N 104336 M.macklottii Magnolia Magnolia macklottii \N \N \N \N \N 104337 \N varietas Asta schaffneri var. pringlei \N \N \N \N \N 104338 O.paposana Oxalis Oxalis paposana \N \N \N \N \N 104339 E.calcicola Eucalyptus Eucalyptus calcicola \N \N \N \N \N 104340 S.heterophyllus Streblus Streblus heterophyllus \N \N \N \N \N 104341 A.scutatus Amorphophallus Amorphophallus scutatus \N \N \N \N \N 104342 P.perennis Pterocephalus Pterocephalus perennis \N \N \N \N \N 104343 A.angustiarum Agave Agave angustiarum \N \N \N \N \N 104344 S.latens Solanum Solanum latens \N \N \N \N \N 104345 I.tridactyla Ipomopsis Ipomopsis tridactyla \N \N \N \N \N 104346 E.coloradoensis Eleocharis Eleocharis coloradoensis \N \N \N \N \N 104347 N.indica Nymphoides Nymphoides indica \N \N \N \N \N 104348 G.edulis Geonoma Geonoma edulis \N \N \N \N \N 104349 L.spinosa Licuala Licuala spinosa \N \N \N \N \N 104350 H.icosiphylla Haworthia Haworthia icosiphylla \N \N \N \N \N 104351 \N subspecies Cistanche phelypaea subsp. lutea \N \N \N \N \N 104352 \N subspecies Vigna unguiculata subsp. baoulensis \N \N \N \N \N 104353 C.vesicaria Coluteocarpus Coluteocarpus vesicaria \N \N \N \N \N 104354 \N genus Hypobathrum \N \N \N \N \N 104355 R.latisepala Ruellia Ruellia latisepala \N \N \N \N \N 104356 B.boliviensis Baccharis Baccharis boliviensis \N \N \N \N \N 104357 \N subspecies Helleborus multifidus subsp. istriacus \N \N \N \N \N 104358 G.schomburgkiana Galactophora Galactophora schomburgkiana \N \N \N \N \N 104359 C.articulatus Curio Curio articulatus \N \N \N \N \N 104360 R.bagnoldii Rhodophiala Rhodophiala bagnoldii \N \N \N \N \N 104361 Z.billardierei Zygophyllum Zygophyllum billardierei \N \N \N \N \N 104362 C.compacta Calandrinia Calandrinia compacta \N \N \N \N \N 104363 C.oronensis Carex Carex oronensis \N \N \N \N \N 104364 O.aurasiaca Ononis Ononis aurasiaca \N \N \N \N \N 104365 E.cyparissias Euphorbia Euphorbia cyparissias cypress spurge \N \N \N \N 104366 P.gabunensis Pseudohydrosme Pseudohydrosme gabunensis \N \N \N \N \N 104367 A.molinioides Apochloa Apochloa molinioides \N \N \N \N \N 104368 L.gigas Loxocarya Loxocarya gigas \N \N \N \N \N 104369 P.pansamalana Pilea Pilea pansamalana \N \N \N \N \N 104370 C.lancifolia Calathea Calathea lancifolia \N \N \N \N \N 104371 A.pilosum Acer Acer pilosum \N \N \N \N \N 104372 A.mongolicus Ammopiptanthus Ammopiptanthus mongolicus \N \N \N \N \N 104373 O.tomentosa Opuntia Opuntia tomentosa \N \N \N \N \N 104374 E.EHR-2010 Eleocharis Eleocharis aff. moorei EHR-2010 \N \N \N \N \N 104375 A.grandiflora Achimenes Achimenes grandiflora \N \N \N \N \N 104376 B.multijugata Begonia Begonia multijugata \N \N \N \N \N 104377 B.frerei Boucerosia Boucerosia frerei \N \N \N \N \N 104378 \N subspecies Phyllobolus splendens subsp. pentagonus \N \N \N \N \N 104379 \N genus Wulfenia \N \N \N \N \N 104380 \N genus Brongniartia \N \N \N \N \N 104381 \N genus Zaluzianskya \N \N \N \N \N 104382 \N genus Archytaea \N \N \N \N \N 104383 G.olivieri Gentiana Gentiana olivieri \N \N \N \N \N 104384 \N genus Kyllinga \N \N \N \N \N 104385 V.stamatiadae Veronica Veronica stamatiadae \N \N \N \N \N 104386 P.heckmanniana Protea Protea heckmanniana \N \N \N \N \N 104387 P.skinneri Pultenaea Pultenaea skinneri \N \N \N \N \N 104388 \N genus Browallia \N \N \N \N \N 104389 \N varietas Castilleja pallida var. hyparctica \N \N \N \N \N 104390 U.ferruginea Uncinia Uncinia ferruginea \N \N \N \N \N 104391 R.antennifera Restrepia Restrepia antennifera \N \N \N \N \N 104392 \N genus Semiliquidambar \N \N \N \N \N 104393 F.carpetana Filago Filago carpetana \N \N \N \N \N 104394 O.rhynchanthum Oncidium Oncidium rhynchanthum \N \N \N \N \N 104395 A.psittacina Alstroemeria Alstroemeria psittacina \N \N \N \N \N 104396 D.J.R.B.Tosh-2008 Diplospora Diplospora sp. J.R.B.Tosh-2008 \N \N \N \N \N 104397 C.axillaris Camarea Camarea axillaris \N \N \N \N \N 104398 C.vulgaris Crupina Crupina vulgaris \N \N \N \N \N 104399 A.rotundata Acokanthera Acokanthera rotundata \N \N \N \N \N 104400 \N genus Lemooria \N \N \N \N \N 104401 C.gentianoides Clematis Clematis gentianoides bushy clematis \N \N \N \N 104402 N.heterophylla Nassauvia Nassauvia heterophylla \N \N \N \N \N 104403 K.capitata Kunzea Kunzea capitata \N \N \N \N \N 104404 D.tricolor Diuris Diuris tricolor \N \N \N \N \N 104405 B.neriifolia Brachylaena Brachylaena neriifolia \N \N \N \N \N 104406 \N genus Brachyachne \N \N \N \N \N 104407 N.laxiflora Nepeta Nepeta laxiflora \N \N \N \N \N 104408 I.pittieri Isertia Isertia pittieri \N \N \N \N \N 104409 A.durangense Axiniphyllum Axiniphyllum durangense \N \N \N \N \N 104410 \N subspecies Adenia fruticosa subsp. fruticosa \N \N \N \N \N 104411 \N genus Bosistoa \N \N \N \N \N 104412 X.stenolobum Xanthisma Xanthisma stenolobum \N \N \N \N \N 104413 A.delavayi Androsace Androsace delavayi \N \N \N \N \N 104414 S.restrepioides Stelis Stelis restrepioides \N \N \N \N \N 104415 \N genus Calyptrogyne \N \N \N \N \N 104416 H.sanguinea Holmskioldia Holmskioldia sanguinea \N \N \N \N \N 104417 S.picardae Sideroxylon Sideroxylon picardae \N \N \N \N \N 104418 D.elegans Disa Disa elegans \N \N \N \N \N 104419 S.bristoliensis Sorbus Sorbus bristoliensis \N \N \N \N \N 104420 C.dimorphica Clidemia Clidemia dimorphica \N \N \N \N \N 104421 S.pontica Stipa Stipa pontica \N \N \N \N \N 104422 G.inconspicua Gilia Gilia inconspicua \N \N \N \N \N 104423 S.corynephyllum Sedum Sedum corynephyllum \N \N \N \N \N 104424 \N genus Volkiella \N \N \N \N \N 104425 M.regnellii Miltonia Miltonia regnellii \N \N \N \N \N 104426 C.sunki Citrus Citrus sunki \N \N \N \N \N 104427 V.cylindricum Viburnum Viburnum cylindricum \N \N \N \N \N 104428 R.submarginatus Ranunculus Ranunculus submarginatus \N \N \N \N \N 104429 S.capillaceus Steirodiscus Steirodiscus capillaceus \N \N \N \N \N 104430 \N genus Jurinea \N \N \N \N \N 104431 O.aegyptiaca Orobanche Orobanche aegyptiaca \N \N \N \N \N 104432 B.1151 Barnadesia Barnadesia sp. 1151 \N \N \N \N \N 104433 C.jamaicense Cladium Cladium jamaicense \N \N \N \N \N 104434 J.imbricatus Juncus Juncus imbricatus \N \N \N \N \N 104435 D.TNS:L-10 Dalzellia Dalzellia sp. TNS:L-10 \N \N \N \N \N 104436 G.radicalis Globba Globba radicalis \N \N \N \N \N 104437 A.myrmecophilus Aeschynanthus Aeschynanthus myrmecophilus \N \N \N \N \N 104438 A.alaschanica Androsace Androsace alaschanica \N \N \N \N \N 104439 U.endresii Utricularia Utricularia endresii \N \N \N \N \N 104440 \N genus Schlumbergera \N \N \N \N \N 104441 S.echinosperma Silene Silene echinosperma \N \N \N \N \N 104442 C.nizandensis Cephalocereus Cephalocereus nizandensis \N \N \N \N \N 104443 F.nigrescens Festuca Festuca nigrescens \N \N \N \N \N 104444 A.incensiodorum Allium Allium incensiodorum \N \N \N \N \N 104445 J.bohsiana Jaltomata Jaltomata bohsiana \N \N \N \N \N 104446 L.elegans Lankesteria Lankesteria elegans \N \N \N \N \N 104447 A.commutatum Allium Allium commutatum \N \N \N \N \N 104448 M.globiflora Monodora Monodora globiflora \N \N \N \N \N 104449 \N genus Heliciopsis \N \N \N \N \N 104450 G.physocarpa Griffonia Griffonia physocarpa \N \N \N \N \N 104451 P.tanakae Pternopetalum Pternopetalum tanakae \N \N \N \N \N 104452 R.mairei Rosa Rosa mairei \N \N \N \N \N 104453 C.villenaorum Cyrtochilum Cyrtochilum villenaorum \N \N \N \N \N 104454 \N genus Thermopsis \N \N \N \N \N 104455 T.gracilis Tongoloa Tongoloa gracilis \N \N \N \N \N 104456 S.itremensis Streptocarpus Streptocarpus itremensis \N \N \N \N \N 104457 L.domingense Leptogonum Leptogonum domingense \N \N \N \N \N 104458 T.montanum Thlaspi Thlaspi montanum \N \N \N \N \N 104459 D.smithianum Delphinium Delphinium smithianum \N \N \N \N \N 104460 T.subnudum Trachydium Trachydium subnudum \N \N \N \N \N 104461 M.scutellata Medicago Medicago scutellata \N \N \N \N \N 104462 P.chiapensis Pitcairnia Pitcairnia chiapensis \N \N \N \N \N 104463 E.jianhense Epimedium Epimedium jianhense \N \N \N \N \N 104464 M.fragrans Mandevilla Mandevilla fragrans \N \N \N \N \N 104465 D.hypoglaucum Dichocarpum Dichocarpum hypoglaucum \N \N \N \N \N 104466 C.cantabricus Convolvulus Convolvulus cantabricus \N \N \N \N \N 104467 \N genus Angelphytum \N \N \N \N \N 104468 D.glabra Dioclea Dioclea glabra \N \N \N \N \N 104469 H.kirkii Helixanthera Helixanthera kirkii \N \N \N \N \N 104470 N.assurgens Nepeta Nepeta assurgens \N \N \N \N \N 104471 C.gaubae Cousinia Cousinia gaubae \N \N \N \N \N 104472 L.angustebracteatum Limonium Limonium angustebracteatum \N \N \N \N \N 104473 V.fasciculata Vassobia Vassobia fasciculata \N \N \N \N \N 104474 I.heinsenii Isolona Isolona heinsenii \N \N \N \N \N 104475 M.lasiocarpa Musella Musella lasiocarpa \N \N \N \N \N 104476 \N subspecies Dendrobium kingianum subsp. carnarvonense \N \N \N \N \N 104477 S.retroflexa Smilax Smilax retroflexa \N \N \N \N \N 104478 \N genus Phalacrachena \N \N \N \N \N 104479 L.82 Lupinus Lupinus sp. Oropeza 82 \N \N \N \N \N 104480 D.KMN-2007 Dichaea Dichaea sp. KMN-2007 \N \N \N \N \N 104481 \N subspecies Armeria villosa subsp. longiaristata \N \N \N \N \N 104482 S.ghillanyi Sophronitis Sophronitis ghillanyi \N \N \N \N \N 104483 O.cockayneana Ourisia Ourisia cockayneana \N \N \N \N \N 104484 Z.smallii Zephyranthes Zephyranthes smallii \N \N \N \N \N 104485 \N subspecies Eleocharis mamillata subsp. austriaca \N \N \N \N \N 104486 C.laterifolius Costus Costus laterifolius \N \N \N \N \N 104487 C.parviflora Chimarrhis Chimarrhis parviflora \N \N \N \N \N 104488 C.'Brazil' Cinnamodendron Cinnamodendron sp. 1 'Brazil' \N \N \N \N \N 104489 \N genus Gamochaeta \N \N \N \N \N 104490 M.moehringioides Minuartia Minuartia moehringioides \N \N \N \N \N 104491 P.membranacea Pedicularis Pedicularis membranacea \N \N \N \N \N 104492 T.grandiflora Tavaresia Tavaresia grandiflora \N \N \N \N \N 104493 C.obovata Cryptocarya Cryptocarya obovata \N \N \N \N \N 104494 P.casabonae Ptilostemon Ptilostemon casabonae \N \N \N \N \N 104495 A.breviscapa Arctotis Arctotis breviscapa \N \N \N \N \N 104496 O.cariniferum Oncidium Oncidium cariniferum \N \N \N \N \N 104497 C.MEM-2007 Calopappus Calopappus sp. MEM-2007 \N \N \N \N \N 104498 C.pepo Cucurbita Cucurbita pepo \N \N \N \N \N 104499 \N genus Tetramerista \N \N \N \N \N 104500 E.mexicanum Eryngium Eryngium mexicanum \N \N \N \N \N 104501 P.parviflora Parasponia Parasponia parviflora \N \N \N \N \N 104502 A.moehringioides Arenaria Arenaria moehringioides \N \N \N \N \N 104503 G.darwinii Gossypium Gossypium darwinii \N \N \N \N \N 104504 S.tricolor Schizanthus Schizanthus tricolor \N \N \N \N \N 104505 S.stipularis Sidalcea Sidalcea stipularis Scadden flat checkerbloom \N \N \N \N 104506 U.rufescens Unonopsis Unonopsis rufescens \N \N \N \N \N 104507 B.tetragona Baeckea Baeckea tetragona \N \N \N \N \N 104508 T.atriplicifolia Thunbergia Thunbergia atriplicifolia \N \N \N \N \N 104509 P.pabularia Prangos Prangos pabularia \N \N \N \N \N 104510 A.glehnii Aster Aster glehnii \N \N \N \N \N 104511 O.aucherii Oxytropis Oxytropis aucherii \N \N \N \N \N 104512 C.tauricola Corydalis Corydalis tauricola \N \N \N \N \N 104513 \N genus Petrorhagia \N \N \N \N \N 104514 C.yeiianum Cirsium Cirsium yeiianum \N \N \N \N \N 104515 C.waldsteinii Cardamine Cardamine waldsteinii \N \N \N \N \N 104516 T.leibergii Trifolium Trifolium leibergii \N \N \N \N \N 104517 S.plebeia Salvia Salvia plebeia \N \N \N \N \N 104518 P.excelsa Parapiptadenia Parapiptadenia excelsa \N \N \N \N \N 104519 P.hieracioides Picris Picris hieracioides hawkweed oxtongue \N \N \N \N 104520 \N subspecies Omphalodes littoralis subsp. gallaecica \N \N \N \N \N 104521 I.tenuissima Iris Iris tenuissima \N \N \N \N \N 104522 P.micrantha Potentilla Potentilla micrantha \N \N \N \N \N 104523 \N subspecies Senecio vulgaris subsp. denticulatus \N \N \N \N \N 104524 M.pectinatipinna Mimosa Mimosa pectinatipinna \N \N \N \N \N 104525 H.triquetrifolium Hypericum Hypericum triquetrifolium \N \N \N \N \N 104526 A.sieboldii Asarum Asarum sieboldii \N \N \N \N \N 104527 C.oligocarpum Canthium Canthium oligocarpum \N \N \N \N \N 104528 C.medusae Croton Croton medusae \N \N \N \N \N 104529 D.iberideum Dipoma Dipoma iberideum \N \N \N \N \N 104530 \N genus Oligocodon \N \N \N \N \N 104531 T.grandis Trautvetteria Trautvetteria grandis western bugbane \N \N \N \N 104532 S.summa Salvia Salvia summa great sage \N \N \N \N 104533 V.quadrifaria Veronica Veronica quadrifaria \N \N \N \N \N 104534 J.filiformis Juncus Juncus filiformis \N \N \N \N \N 104535 C.austroafricana Carex Carex austroafricana \N \N \N \N \N 104536 G.gardneri Gomesa Gomesa gardneri \N \N \N \N \N 104537 L.hatschbachii Lecointea Lecointea hatschbachii \N \N \N \N \N 104538 \N genus Hulteniella \N \N \N \N \N 104539 \N genus Froelichia \N \N \N \N \N 104540 E.tschimganicus Echinops Echinops tschimganicus \N \N \N \N \N 104541 P.schuppii Piper Piper schuppii \N \N \N \N \N 104542 E.pallidiflorum Epilobium Epilobium pallidiflorum \N \N \N \N \N 104543 R.amphidasys Rubus Rubus amphidasys \N \N \N \N \N 104544 A.purpurascens Aristida Aristida purpurascens \N \N \N \N \N 104545 \N subspecies Aubrieta canescens subsp. macrostyla \N \N \N \N \N 104546 H.caudata Hoya Hoya caudata \N \N \N \N \N 104547 S.pringlei Sinclairia Sinclairia pringlei \N \N \N \N \N 104548 D.rhombifolia Dodonaea Dodonaea rhombifolia \N \N \N \N \N 104549 B.FS624 Bulbophyllum Bulbophyllum sp. FS624 \N \N \N \N \N 104550 S.planitiana Sagittaria Sagittaria planitiana \N \N \N \N \N 104551 I.podocarpa Indigofera Indigofera podocarpa \N \N \N \N \N 104552 \N genus Achnophora \N \N \N \N \N 104553 \N subspecies Vicia villosa subsp. villosa \N \N \N \N \N 104554 \N genus Ilex \N \N \N \N \N 104555 B.nana Boswellia Boswellia nana \N \N \N \N \N 104556 \N varietas Nymphaea tetragona var. wenzelii \N \N \N \N \N 104557 \N genus Ixodia \N \N \N \N \N 104558 S.Ssp18luis Sobralia Sobralia sp. Ssp18luis \N \N \N \N \N 104559 C.mollis Coursetia Coursetia mollis \N \N \N \N \N 104560 G.paraguayense Graptopetalum Graptopetalum paraguayense \N \N \N \N \N 104561 P.gracilis Penstemon Penstemon gracilis lilac penstemon \N \N \N \N 104562 C.eberhardtii Coelogyne Coelogyne eberhardtii \N \N \N \N \N 104563 E.dichotoma Eberlanzia Eberlanzia dichotoma \N \N \N \N \N 104564 D.perfoliata Dillandia Dillandia perfoliata \N \N \N \N \N 104565 C.salvinii Clusia Clusia salvinii \N \N \N \N \N 104566 E.ochrostachys Eleocharis Eleocharis ochrostachys \N \N \N \N \N 104567 E.anthosachnoides Elymus Elymus anthosachnoides \N \N \N \N \N 104568 M.fragrans Mkilua Mkilua fragrans \N \N \N \N \N 104569 N.gunnii Nothofagus Nothofagus gunnii \N \N \N \N \N 104570 L.latilobum Lomatium Lomatium latilobum canyonlands biscuitroot \N \N \N \N 104571 C.pungens Centaurea Centaurea pungens \N \N \N \N \N 104572 \N genus Trigonopleura \N \N \N \N \N 104573 \N genus Discoglypremna \N \N \N \N \N 104574 S.racemosum Symphyotrichum Symphyotrichum racemosum \N \N \N \N \N 104575 T.pruinosa Tillandsia Tillandsia pruinosa \N \N \N \N \N 104576 D.benthamii Daviesia Daviesia benthamii \N \N \N \N \N 104577 S.oblongicapra Sinojackia Sinojackia oblongicapra \N \N \N \N \N 104578 M.constricta Medicago Medicago constricta \N \N \N \N \N 104579 A.guatemalense Arceuthobium Arceuthobium guatemalense \N \N \N \N \N 104580 A.lusitanicum Allium Allium lusitanicum \N \N \N \N \N 104581 S.barbata Strobilanthes Strobilanthes barbata \N \N \N \N \N 104582 A.balansaeanus Atractocarpus Atractocarpus balansaeanus \N \N \N \N \N 104583 \N genus Hestia \N \N \N \N \N 104584 A.baeuerlenii Acronychia Acronychia baeuerlenii \N \N \N \N \N 104585 A.balfourii Aconitum Aconitum balfourii \N \N \N \N \N 104586 G.diversifolia Gymnosporia Gymnosporia diversifolia \N \N \N \N \N 104587 \N genus Lophopetalum \N \N \N \N \N 104588 C.brevipes Cleomella Cleomella brevipes \N \N \N \N \N 104589 C.ruthii Carex Carex ruthii \N \N \N \N \N 104590 S.parviflora Securigera Securigera parviflora \N \N \N \N \N 104591 \N genus Diclidanthera \N \N \N \N \N 104592 E.qingchengshanense Epimedium Epimedium qingchengshanense \N \N \N \N \N 104593 E.largiflorens Elaeocarpus Elaeocarpus largiflorens tropical quandong \N \N \N \N 104594 C.anthoxanthoides Calamagrostis Calamagrostis anthoxanthoides \N \N \N \N \N 104595 M.tomentosa Marlierea Marlierea tomentosa \N \N \N \N \N 104596 G.GTC-2001 Gastrolobium Gastrolobium sp. GTC-2001 \N \N \N \N \N 104597 \N genus Aralia \N \N \N \N \N 104598 \N family Cannabaceae hemp family,hop family \N \N \N \N 104599 A.queenslandicum Amyema Amyema queenslandicum \N \N \N \N \N 104600 S.esuriale Solanum Solanum esuriale \N \N \N \N \N 104601 V.hupehense Viburnum Viburnum hupehense \N \N \N \N \N 104602 L.flos-jovis Lychnis Lychnis flos-jovis flower of Jove \N \N \N \N 104603 I.schinifolia Inga Inga schinifolia \N \N \N \N \N 104604 \N subspecies Clarkia biloba subsp. biloba \N \N \N \N \N 104605 \N order Asparagales \N \N \N \N \N 104606 \N genus Ecuadendron \N \N \N \N \N 104607 P.basicordata Pilea Pilea basicordata \N \N \N \N \N 104608 T.monophyllos Tractema Tractema monophyllos \N \N \N \N \N 104609 E.palustris Epipactis Epipactis palustris marsh orchid \N \N \N \N 104610 \N genus Tetrorchidium \N \N \N \N \N 104611 \N genus Sassafras \N \N \N \N \N 104612 C.speciosa Chaenomeles Chaenomeles speciosa boke,mu gua \N \N \N \N 104613 M.pubescens Muraltia Muraltia pubescens \N \N \N \N \N 104614 P.curta Pterostylis Pterostylis curta \N \N \N \N \N 104615 P.timoriense Pleiogynium Pleiogynium timoriense \N \N \N \N \N 104616 \N genus Palmorchis \N \N \N \N \N 104617 D.sericeum Dichanthium Dichanthium sericeum \N \N \N \N \N 104618 M.confusa Maxillaria Maxillaria confusa \N \N \N \N \N 104619 D.stenantha Diamena Diamena stenantha \N \N \N \N \N 104620 S.carsei Schoenus Schoenus carsei \N \N \N \N \N 104621 \N subspecies Oxalis articulata subsp. articulata \N \N \N \N \N 104622 S.parviflora Scrophularia Scrophularia parviflora \N \N \N \N \N 104623 A.leveillei Anemone Anemone leveillei \N \N \N \N \N 104624 P.alsophila Psychotria Psychotria alsophila \N \N \N \N \N 104625 C.jonesii Cymopterus Cymopterus jonesii \N \N \N \N \N 104626 D.tricorne Delphinium Delphinium tricorne \N \N \N \N \N 104627 G.rochae Griffinia Griffinia rochae \N \N \N \N \N 104628 M.minutiflora Moehringia Moehringia minutiflora \N \N \N \N \N 104629 L.tamminensis Leucopogon Leucopogon tamminensis \N \N \N \N \N 104630 C.tupizensis Cleistocactus Cleistocactus tupizensis \N \N \N \N \N 104631 T.parviflora Tetracera Tetracera parviflora \N \N \N \N \N 104632 Z.pomiferum Zygogynum Zygogynum pomiferum \N \N \N \N \N 104633 M.dixanthocentron Mammillaria Mammillaria dixanthocentron \N \N \N \N \N 104634 \N genus Lipocarpha \N \N \N \N \N 104635 \N subspecies Artemisia cana subsp. viscidula \N \N \N \N \N 104636 E.montevidensis Eriochloa Eriochloa montevidensis \N \N \N \N \N 104637 C.jacobinensis Croton Croton jacobinensis \N \N \N \N \N 104638 \N subspecies Potentilla supina subsp. supina \N \N \N \N \N 104639 P.puberula Pagamea Pagamea puberula \N \N \N \N \N 104640 G.neesii Galactia Galactia neesii \N \N \N \N \N 104641 P.albescens Pinanga Pinanga albescens \N \N \N \N \N 104642 S.teitensis Saintpaulia Saintpaulia teitensis \N \N \N \N \N 104643 A.362 Alchemilla Alchemilla cf. subnivalis Gehrke BG-Af 362 \N \N \N \N \N 104644 B.stipitata Breynia Breynia stipitata \N \N \N \N \N 104645 \N varietas Dorstenia psilurus var. scabra \N \N \N \N \N 104646 C.scheuchzeri Campanula Campanula scheuchzeri \N \N \N \N \N 104647 M.biflora Minuartia Minuartia biflora \N \N \N \N \N 104648 B.ciliatilabrum Bulbophyllum Bulbophyllum ciliatilabrum \N \N \N \N \N 104649 P.inyoensis Phacelia Phacelia inyoensis \N \N \N \N \N 104650 \N genus Hessea \N \N \N \N \N 104651 A.s.n. Abutilon Abutilon sp. La Duke s.n. \N \N \N \N \N 104652 S.coadunatus Sarcocephalus Sarcocephalus coadunatus \N \N \N \N \N 104653 A.minutiflora Aristida Aristida minutiflora \N \N \N \N \N 104654 S.cacaliifolia Salvia Salvia cacaliifolia \N \N \N \N \N 104655 D.madrense Delphinium Delphinium madrense \N \N \N \N \N 104656 A.alopecias Astragalus Astragalus alopecias \N \N \N \N \N 104657 E.decipiens Elaeocarpus Elaeocarpus decipiens \N \N \N \N \N 104658 U.astonii Uncinia Uncinia astonii \N \N \N \N \N 104659 D.senensis Diospyros Diospyros senensis \N \N \N \N \N 104660 \N family Theaceae tea family \N \N \N \N 104661 \N subspecies Pachypodium rosulatum subsp. rosulatum \N \N \N \N \N 104662 \N genus Dolomiaea \N \N \N \N \N 104663 P.spicata Proboscidea Proboscidea spicata \N \N \N \N \N 104664 \N genus Urochondra \N \N \N \N \N 104665 D.iturensis Diospyros Diospyros iturensis \N \N \N \N \N 104666 G.tessellatus Gelidocalamus Gelidocalamus tessellatus \N \N \N \N \N 104667 B.cinnabarina Begonia Begonia cinnabarina \N \N \N \N \N 104668 C.buphthalmoides Cousinia Cousinia buphthalmoides \N \N \N \N \N 104669 P.arenarium Pholisma Pholisma arenarium desert christmas-tree,dune food \N \N \N \N 104670 P.speciosa Parkia Parkia speciosa \N \N \N \N \N 104671 R.pleiosperma Reynoldsia Reynoldsia pleiosperma \N \N \N \N \N 104672 B.gunnisoniana Boechera Boechera gunnisoniana \N \N \N \N \N 104673 A.queenslandicum Amomum Amomum queenslandicum \N \N \N \N \N 104674 \N genus Aleurites \N \N \N \N \N 104675 S.rubescens Strobilanthes Strobilanthes rubescens \N \N \N \N \N 104676 P.diantha Primula Primula diantha \N \N \N \N \N 104677 B.pycnophylla Barnadesia Barnadesia pycnophylla \N \N \N \N \N 104678 G.suavis Gaillardia Gaillardia suavis \N \N \N \N \N 104679 \N genus Hesperis \N \N \N \N \N 104680 C.uniflora Crataegus Crataegus uniflora \N \N \N \N \N 104681 B.fruticulosa Brassica Brassica fruticulosa \N \N \N \N \N 104682 S.drummondii Silene Silene drummondii \N \N \N \N \N 104683 P.robinsonii Phoradendron Phoradendron robinsonii \N \N \N \N \N 104684 C.retrorsa Chenopodiopsis Chenopodiopsis retrorsa \N \N \N \N \N 104685 \N genus Spelaeanthus \N \N \N \N \N 104686 P.piperoides Phoradendron Phoradendron piperoides \N \N \N \N \N 104687 N.paterna Neosprucea Neosprucea paterna \N \N \N \N \N 104688 \N genus Spathoglottis \N \N \N \N \N 104689 M.sandwicense Myoporum Myoporum sandwicense \N \N \N \N \N 104690 E.jimenezii Epilyna Epilyna jimenezii \N \N \N \N \N 104691 C.orthacantha Castanopsis Castanopsis orthacantha \N \N \N \N \N 104692 A.godingianus Armatocereus Armatocereus godingianus \N \N \N \N \N 104693 T.tomentella Triainolepis Triainolepis tomentella \N \N \N \N \N 104694 \N subspecies Centaurium erythraea subsp. subcapitatum \N \N \N \N \N 104695 \N genus Olmeca \N \N \N \N \N 104696 D.tenella Disa Disa tenella \N \N \N \N \N 104697 S.micrantha Stewartia Stewartia micrantha \N \N \N \N \N 104698 A.basaltica Archidendropsis Archidendropsis basaltica \N \N \N \N \N 104699 C.origanifolium Chaenorhinum Chaenorhinum origanifolium \N \N \N \N \N 104700 E.montana Eleocharis Eleocharis montana \N \N \N \N \N 104701 P.africana Peddiea Peddiea africana \N \N \N \N \N 104702 \N genus Elattostachys \N \N \N \N \N 104703 E.iberica Euphorbia Euphorbia iberica \N \N \N \N \N 104704 A.griffithii Ancistrocladus Ancistrocladus griffithii \N \N \N \N \N 104705 P.parviflorum Psilocaulon Psilocaulon parviflorum \N \N \N \N \N 104706 S.chilense Sisyrinchium Sisyrinchium chilense \N \N \N \N \N 104707 R.9487 Rotheca Rotheca sp. Wen 9487 \N \N \N \N \N 104708 Z.miliacea Zizaniopsis Zizaniopsis miliacea \N \N \N \N \N 104709 M.integra Mentzelia Mentzelia integra \N \N \N \N \N 104710 P.macrorhyncha Pedicularis Pedicularis macrorhyncha \N \N \N \N \N 104711 S.speciosa Strobilanthes Strobilanthes speciosa \N \N \N \N \N 104712 A.helleborifolia Anemone Anemone helleborifolia \N \N \N \N \N 104713 J.venezuelensis Juglans Juglans venezuelensis \N \N \N \N \N 104714 C.pringlei Cordia Cordia pringlei \N \N \N \N \N 104715 A.2173 Argyrolobium Argyrolobium sp. Van Wyk 2173 \N \N \N \N \N 104716 O.Zambesiaca Oldenlandia Oldenlandia sp. C of Flora Zambesiaca \N \N \N \N \N 104717 A.nivicola Astragalus Astragalus nivicola \N \N \N \N \N 104718 \N genus Phoebe \N \N \N \N \N 104719 C.thunbergii Carex Carex thunbergii \N \N \N \N \N 104720 G.setifolia Gagea Gagea setifolia \N \N \N \N \N 104721 L.brownii Lonicera Lonicera x brownii \N \N \N \N \N 104722 \N genus Paraknoxia \N \N \N \N \N 104723 M.acostae Maxillaria Maxillaria acostae \N \N \N \N \N 104724 P.cuneifolia Phyla Phyla cuneifolia \N \N \N \N \N 104725 E.exaltatus Echinops Echinops exaltatus \N \N \N \N \N 104726 P.corsica Pinguicula Pinguicula corsica \N \N \N \N \N 104727 S.fastigiata Saropsis Saropsis fastigiata \N \N \N \N \N 104728 P.punicea Poitea Poitea punicea \N \N \N \N \N 104729 C.cinereum Cullen Cullen cinereum \N \N \N \N \N 104730 M.cochinchinensis Macrosolen Macrosolen cochinchinensis \N \N \N \N \N 104731 A.gracilispica Arachnothryx Arachnothryx gracilispica \N \N \N \N \N 104732 M.perezdelarosae Mammillaria Mammillaria perezdelarosae \N \N \N \N \N 104733 P.alismatifolia Pimpinella Pimpinella alismatifolia \N \N \N \N \N 104734 S.abadorum Sobralia Sobralia abadorum \N \N \N \N \N 104735 \N varietas Astragalus serenoi var. serenoi \N \N \N \N \N 104736 H.halocnemoides Halosarcia Halosarcia halocnemoides \N \N \N \N \N 104737 \N subspecies Alyssum bertolonii subsp. scutarinum \N \N \N \N \N 104738 T.bifidum Trisetum Trisetum bifidum \N \N \N \N \N 104739 P.scandens Paramignya Paramignya scandens \N \N \N \N \N 104740 E.fosbergii Emilia Emilia fosbergii Cupid's shaving-brush \N \N \N \N 104741 G.hapalotricha Gaultheria Gaultheria hapalotricha \N \N \N \N \N 104742 B.revoluta Brachyglottis Brachyglottis revoluta \N \N \N \N \N 104743 \N subspecies Calystegia sepium subsp. spectabilis \N \N \N \N \N 104744 O.tenella Oxalis Oxalis tenella \N \N \N \N \N 104745 A.ridleyi Alocasia Alocasia ridleyi \N \N \N \N \N 104746 \N genus Kairoa \N \N \N \N \N 104747 K.JT-2010a Kaempferia Kaempferia sp. JT-2010a \N \N \N \N \N 104748 \N genus Flagellaria \N \N \N \N \N 104749 A.bartlettii Aconitum Aconitum bartlettii \N \N \N \N \N 104750 C.strigosa Crambe Crambe strigosa \N \N \N \N \N 104751 P.spicata Platycapnos Platycapnos spicata \N \N \N \N \N 104752 S.kurilensis Salix Salix kurilensis \N \N \N \N \N 104753 L.pauciflora Leucocoryne Leucocoryne pauciflora \N \N \N \N \N 104754 P.intermedia Paeonia Paeonia intermedia \N \N \N \N \N 104755 A.serpyllifolia Anagallis Anagallis serpyllifolia \N \N \N \N \N 104756 B.umbellata Bonellia Bonellia umbellata \N \N \N \N \N 104757 M.glaberrima Monnina Monnina glaberrima \N \N \N \N \N 104758 D.chrysotrichum Delphinium Delphinium chrysotrichum \N \N \N \N \N 104759 M.costaricense Melampodium Melampodium costaricense \N \N \N \N \N 104760 \N genus Pyramidoptera \N \N \N \N \N 104761 P.graeca Periploca Periploca graeca \N \N \N \N \N 104762 G.yixingense Gynostemma Gynostemma yixingense \N \N \N \N \N 104763 F.nevadensis Filago Filago nevadensis \N \N \N \N \N 104764 C.endivia Cichorium Cichorium endivia \N \N \N \N \N 104765 S.oligostemon Scagea Scagea oligostemon \N \N \N \N \N 104766 T.1552 Trachymene Trachymene sp. 1552 \N \N \N \N \N 104767 C.TJSW-2011 unclassified Convolvulaceae Convolvulaceae sp. TJSW-2011 \N \N \N \N \N 104768 S.natalensis Sebaea Sebaea natalensis \N \N \N \N \N 104769 P.litoralis Potentilla Potentilla litoralis \N \N \N \N \N 104770 B.00238 Begonia Begonia sp. Mendum et al. 00238 \N \N \N \N \N 104771 \N no rank Pooideae incertae sedis \N \N \N \N \N 104772 S.curtilobum Solanum Solanum x curtilobum \N \N \N \N \N 104773 R.wigginsii Randia Randia wigginsii \N \N \N \N \N 104774 \N genus Lithophragma \N \N \N \N \N 104775 A.bambusifolia Arundina Arundina bambusifolia \N \N \N \N \N 104776 R.alpinum Ribes Ribes alpinum alpine currant,mountain currant \N \N \N \N 104777 \N no rank environmental samples Taxonomy:404793 \N \N \N \N \N 104778 N.pubescens Neptunia Neptunia pubescens tropical puff \N \N \N \N 104779 P.witzenbergiana Protea Protea witzenbergiana \N \N \N \N \N 104780 C.paucistaminea Cliffortia Cliffortia paucistaminea \N \N \N \N \N 104781 \N genus Orthocarpus owl's clovers \N \N \N \N 104782 D.lanceolata Dischidia Dischidia lanceolata \N \N \N \N \N 104783 E.altaicum Eutrema Eutrema altaicum \N \N \N \N \N 104784 P.variabilis Podalyria Podalyria variabilis \N \N \N \N \N 104785 P.94983 Pulsatilla Pulsatilla sp. PSU 94983 \N \N \N \N \N 104786 E.sphaerocephalus Echinops Echinops sphaerocephalus \N \N \N \N \N 104787 \N genus Bridelia \N \N \N \N \N 104788 A.grandifolium Arthrophyllum Arthrophyllum grandifolium \N \N \N \N \N 104789 \N varietas Centaurea boissieri var. atlantica \N \N \N \N \N 104790 R.tenuirostris Ranunculus Ranunculus tenuirostris \N \N \N \N \N 104791 B.hieronymi Bomarea Bomarea hieronymi \N \N \N \N \N 104792 P.americana Patagonula Patagonula americana \N \N \N \N \N 104793 P.rechingeri Piptatherum Piptatherum rechingeri \N \N \N \N \N 104794 C.orchidastrum Chlorophytum Chlorophytum orchidastrum \N \N \N \N \N 104795 P.eriantha Polycarpaea Polycarpaea eriantha \N \N \N \N \N 104796 M.425 Myriophyllum Myriophyllum sp. 425 \N \N \N \N \N 104797 S.campestris Streptanthus Streptanthus campestris \N \N \N \N \N 104798 B.secalinus Bromus Bromus secalinus cheat,chess,chess bromegrass,rye brome \N \N \N \N 104799 C.veneris Crocus Crocus veneris \N \N \N \N \N 104800 \N varietas Potentilla desertorum var. arnavatensis \N \N \N \N \N 104801 N.meyeniana Nassella Nassella meyeniana \N \N \N \N \N 104802 P.montevidense Piptochaetium Piptochaetium montevidense \N \N \N \N \N 104803 \N genus Thelocactus \N \N \N \N \N 104804 V.capillaris Viola Viola capillaris \N \N \N \N \N 104805 \N genus Niedenzuella \N \N \N \N \N 104806 P.1999.010-1 Prunus Prunus sp. Eschenz 1999.010-1 \N \N \N \N \N 104807 P.phaeocarpa Pyrus Pyrus phaeocarpa \N \N \N \N \N 104808 A.guaranitica Arachis Arachis guaranitica \N \N \N \N \N 104809 L.palustris Ludwigia Ludwigia palustris \N \N \N \N \N 104810 \N genus Diaperia \N \N \N \N \N 104811 C.incrassata Coelogyne Coelogyne incrassata \N \N \N \N \N 104812 A.purshii Astragalus Astragalus purshii \N \N \N \N \N 104813 G.43140 Greenea Greenea sp. Larsen 43140 \N \N \N \N \N 104814 A.lanceolata Adenia Adenia lanceolata \N \N \N \N \N 104815 R.vomitoria Rauvolfia Rauvolfia vomitoria \N \N \N \N \N 104816 U.livida Utricularia Utricularia livida \N \N \N \N \N 104817 \N genus Aleisanthia \N \N \N \N \N 104818 C.rotundatus Combretocarpus Combretocarpus rotundatus \N \N \N \N \N 104819 \N subspecies Helianthus occidentalis subsp. plantagineus \N \N \N \N \N 104821 I.47 Ixora Ixora sp. Andrianbololonera 47 \N \N \N \N \N 104822 \N genus Guacamaya \N \N \N \N \N 104823 \N no rank environmental samples Taxonomy:218698 \N \N \N \N \N 104824 P.cissodendron Polyscias Polyscias cissodendron \N \N \N \N \N 104825 K.laotica Kaempferia Kaempferia laotica \N \N \N \N \N 104826 F.yuanjiangensis Fargesia Fargesia yuanjiangensis \N \N \N \N \N 104827 E.brevifolius Eriostemon Eriostemon brevifolius \N \N \N \N \N 104828 B.jenningsii Bauhinia Bauhinia jenningsii \N \N \N \N \N 104829 O.picta Ophrys Ophrys picta \N \N \N \N \N 104830 C.cubensis Clethra Clethra cubensis \N \N \N \N \N 104831 C.polyrrhiza Calceolaria Calceolaria polyrrhiza \N \N \N \N \N 104832 P.arenaria Pentanisia Pentanisia arenaria \N \N \N \N \N 104833 G.reginae-olgae Galanthus Galanthus reginae-olgae \N \N \N \N \N 104834 S.calcicola Stachyphrynium Stachyphrynium calcicola \N \N \N \N \N 104835 D.ferox Dyckia Dyckia ferox \N \N \N \N \N 104836 \N subspecies Viola tricolor subsp. curtisii \N \N \N \N \N 104837 P.parryi Petalonyx Petalonyx parryi \N \N \N \N \N 104838 T.flammea Tephroseris Tephroseris flammea \N \N \N \N \N 104839 C.purpureus Ceanothus Ceanothus purpureus \N \N \N \N \N 104840 L.nana Loasa Loasa nana \N \N \N \N \N 104841 O.perdicaria Oxalis Oxalis perdicaria \N \N \N \N \N 104842 \N genus Xanthosoma \N \N \N \N \N 104843 X.carterae Xylocalyx Xylocalyx carterae \N \N \N \N \N 104844 C.montana Clematis Clematis montana \N \N \N \N \N 104845 M.quintuplinervia Meconopsis Meconopsis quintuplinervia \N \N \N \N \N 104846 \N subspecies Hordeum brachyantherum subsp. californicum \N \N \N \N \N 104847 S.annuus Scleranthus Scleranthus annuus knawel \N \N \N \N 104848 E.ventricosa Erica Erica ventricosa \N \N \N \N \N 104849 L.granatensis Leandra Leandra granatensis \N \N \N \N \N 104850 \N genus Geocharis \N \N \N \N \N 104851 S.brenesii Schefflera Schefflera brenesii \N \N \N \N \N 104852 E.revolutum Erythronium Erythronium revolutum mahogany fawnlily \N \N \N \N 104853 M.alysson Marrubium Marrubium alysson \N \N \N \N \N 104854 H.sturtii Hibiscus Hibiscus sturtii \N \N \N \N \N 104855 R.zaleucum Rhododendron Rhododendron zaleucum \N \N \N \N \N 104856 L.radula Lepechinia Lepechinia radula \N \N \N \N \N 104857 T.nervosus Telipogon Telipogon nervosus \N \N \N \N \N 104858 \N genus Zeuxine \N \N \N \N \N 104859 G.brevistipes Gaultheria Gaultheria brevistipes \N \N \N \N \N 104860 A.berlengensis Armeria Armeria berlengensis \N \N \N \N \N 104861 A.boyacensis Aphelandra Aphelandra boyacensis \N \N \N \N \N 104862 T.alpinum Trifolium Trifolium alpinum \N \N \N \N \N 104863 O.hildebrandtii Otostegia Otostegia hildebrandtii \N \N \N \N \N 104864 A.crispa Ardisia Ardisia crispa \N \N \N \N \N 104865 L.hawaiensis Liparis Liparis hawaiensis \N \N \N \N \N 104866 T.WO2008034648 Tulipa Tulipa sp. WO2008034648 \N \N \N \N \N 104867 N.bicalcarata Nepenthes Nepenthes bicalcarata \N \N \N \N \N 104868 E.demissa Erica Erica demissa \N \N \N \N \N 104869 \N genus Dipelta \N \N \N \N \N 104870 P.mixta Passiflora Passiflora mixta \N \N \N \N \N 104871 M.hirsuta Mansoa Mansoa hirsuta \N \N \N \N \N 104872 S.rugosa Shorea Shorea rugosa \N \N \N \N \N 104873 D.briquetii Doronicum Doronicum briquetii \N \N \N \N \N 104874 C.siifolium Crenosciadium Crenosciadium siifolium \N \N \N \N \N 104875 D.ibukiensis Dystaenia Dystaenia ibukiensis \N \N \N \N \N 104876 E.cetrata Erica Erica cetrata \N \N \N \N \N 104877 N.nucifera Nelumbo Nelumbo nucifera padma,sacred lotus \N \N \N \N 104878 \N subspecies Allium rosenbachianum subsp. rosenbachianum \N \N \N \N \N 104879 T.cunninghamii Tripladenia Tripladenia cunninghamii \N \N \N \N \N 104880 J.ambigua Jacobaea Jacobaea ambigua \N \N \N \N \N 104881 F.dshizakensis Ferula Ferula dshizakensis \N \N \N \N \N 104882 P.hirtella Pauridiantha Pauridiantha hirtella \N \N \N \N \N 104883 R.albiflora Ruizterania Ruizterania albiflora \N \N \N \N \N 104884 P.hirsuta Pagamea Pagamea hirsuta \N \N \N \N \N 104885 P.niitakayamensis Photinia Photinia niitakayamensis \N \N \N \N \N 104886 F.kroemeri Fosterella Fosterella kroemeri \N \N \N \N \N 104887 A.spectabilis Acacia Acacia spectabilis \N \N \N \N \N 104888 P.wallichii Piper Piper wallichii \N \N \N \N \N 104889 \N subfamily Zygophylloideae \N \N \N \N \N 104890 C.racemosa Ceropegia Ceropegia racemosa \N \N \N \N \N 104891 A.lundellii Acmella Acmella lundellii \N \N \N \N \N 104892 \N subspecies Thymelaea virgata subsp. broussonetii \N \N \N \N \N 104893 A.taiwanensis Ajuga Ajuga taiwanensis \N \N \N \N \N 104894 J.chubutensis Jarava Jarava chubutensis \N \N \N \N \N 104895 P.erecta Pterostylis Pterostylis erecta \N \N \N \N \N 104896 \N varietas Pimpinella cappadocica var. cappadocica \N \N \N \N \N 104897 B.scandens Barkeria Barkeria scandens \N \N \N \N \N 104898 O.lucumayensis Oxalis Oxalis lucumayensis \N \N \N \N \N 104899 D.pettigrewianum Dysoxylum Dysoxylum pettigrewianum \N \N \N \N \N 104900 M.O-281 Myrmecophila Myrmecophila cf. tibicinis Chase O-281 \N \N \N \N \N 104901 E.sample environmental samples Taxonomy:205863 eudicot environmental sample \N \N \N \N \N 104902 \N subspecies Helichrysum italicum subsp. microphyllum \N \N \N \N \N 104903 T.parviflora Tamarix Tamarix parviflora \N \N \N \N \N 104904 D.pusilla Dipterocome Dipterocome pusilla \N \N \N \N \N 104905 \N genus Streblus \N \N \N \N \N 104906 T.psilostachya Tournefortia Tournefortia psilostachya \N \N \N \N \N 104907 E.muscosa Erica Erica muscosa \N \N \N \N \N 104908 P.fraternus Phyllanthus Phyllanthus fraternus \N \N \N \N \N 104909 P.wilsonii Primula Primula wilsonii \N \N \N \N \N 104910 \N varietas Brassica oleracea var. costata Bedford cabbage,braganza,seakale cabbage,tronchuda kale \N \N \N \N 104911 \N subspecies Oenanthe javanica subsp. stolonifera \N \N \N \N \N 104912 P.petelotii Primula Primula petelotii \N \N \N \N \N 104913 P.valderia Potentilla Potentilla valderia \N \N \N \N \N 104914 \N varietas Prunus alleghaniensis var. davisii \N \N \N \N \N 104915 L.garcinii Lotus Lotus garcinii \N \N \N \N \N 104916 S.melanantha Silene Silene melanantha \N \N \N \N \N 104917 A.sceptrum Aframomum Aframomum sceptrum \N \N \N \N \N 104918 P.rubrum Platostoma Platostoma rubrum \N \N \N \N \N 104919 G.stipitata Gagea Gagea stipitata \N \N \N \N \N 104920 S.actinocladus Sporobolus Sporobolus actinocladus \N \N \N \N \N 104921 C.uniflora Corydalis Corydalis uniflora \N \N \N \N \N 104922 G.macrostachys Geonoma Geonoma macrostachys \N \N \N \N \N 104923 F.petersii Ficus Ficus petersii \N \N \N \N \N 104924 S.tangutica Sinacalia Sinacalia tangutica \N \N \N \N \N 104925 S.fruticosa Senna Senna fruticosa \N \N \N \N \N 104926 E.densiflora Euphorbia Euphorbia densiflora \N \N \N \N \N 104927 S.alba Smelowskia Smelowskia alba \N \N \N \N \N 104928 P.trifoliata Passiflora Passiflora trifoliata \N \N \N \N \N 104929 P.pluriflorus Phaseolus Phaseolus pluriflorus \N \N \N \N \N 104930 \N genus Perovskia \N \N \N \N \N 104931 K.grandiflora Krameria Krameria grandiflora \N \N \N \N \N 104932 A.leucophylla Artemisia Artemisia leucophylla \N \N \N \N \N 104933 A.quadripartita Adriana Adriana quadripartita \N \N \N \N \N 104934 T.niedenzuiana Triaspis Triaspis niedenzuiana \N \N \N \N \N 104935 D.weddellii Doniophyton Doniophyton weddellii \N \N \N \N \N 104936 A.japonica Ampelopsis Ampelopsis japonica \N \N \N \N \N 104937 A.exserta Arachnorchis Arachnorchis x exserta \N \N \N \N \N 104938 P.bicorne Psilocaulon Psilocaulon bicorne \N \N \N \N \N 104939 O.11 Orophea Orophea cf. malayana Hoffmann 11 \N \N \N \N \N 104940 S.uresana Sabal Sabal uresana \N \N \N \N \N 104941 P.chacoensis Phyllanthus Phyllanthus chacoensis \N \N \N \N \N 104942 P.forrestii Pleione Pleione forrestii \N \N \N \N \N 104943 S.ligulata Stegolepis Stegolepis ligulata \N \N \N \N \N 104944 S.Esp8072a Sobralia Sobralia sp. Esp8072a \N \N \N \N \N 104945 R.duclouxii Rhododendron Rhododendron duclouxii \N \N \N \N \N 104946 H.cedarbergensis Heliophila Heliophila cedarbergensis \N \N \N \N \N 104947 P.fasciculata Puccinellia Puccinellia fasciculata \N \N \N \N \N 104948 C.feuillei Crambe Crambe feuillei \N \N \N \N \N 104949 \N genus Klaprothia \N \N \N \N \N 104950 \N varietas Trichocline catharinensis var. discolor \N \N \N \N \N 104951 \N genus Coscinium \N \N \N \N \N 104952 D.globosa Draba Draba globosa beavertip draba \N \N \N \N 104953 S.americanum Sparganium Sparganium americanum \N \N \N \N \N 104954 E.feijoi Eugenia Eugenia feijoi \N \N \N \N \N 104955 H.matudae Hypericum Hypericum matudae \N \N \N \N \N 104956 \N genus Angylocalyx \N \N \N \N \N 104957 H.squamosa Harveya Harveya squamosa \N \N \N \N \N 104958 D.fragrans Disa Disa fragrans \N \N \N \N \N 104959 A.hirsuta Aiphanes Aiphanes hirsuta \N \N \N \N \N 104960 D.dalzielii Dichocarpum Dichocarpum dalzielii \N \N \N \N \N 104961 T.paniculatum Toxicoscordion Toxicoscordion paniculatum \N \N \N \N \N 104962 \N genus Dahliaphyllum \N \N \N \N \N 104963 C.amporitana Cardamine Cardamine amporitana \N \N \N \N \N 104964 F.tinctoria Flueggea Flueggea tinctoria \N \N \N \N \N 104965 \N subspecies Anthyllis montana subsp. jacquinii \N \N \N \N \N 104966 S.bogotensis Symplocos Symplocos bogotensis \N \N \N \N \N 104967 A.verticillata Allocasuarina Allocasuarina verticillata \N \N \N \N \N 104968 S.viminale Sarcostemma Sarcostemma viminale \N \N \N \N \N 104969 V.wormskjoldii Veronica Veronica wormskjoldii American alpine speedwell,alpine speedwell \N \N \N \N 104970 A.'erecta' Amelanchier Amelanchier sp. 'erecta' \N \N \N \N \N 104971 A.philippinensis Amesiella Amesiella philippinensis \N \N \N \N \N 104972 O.lancifolia Oldenlandia Oldenlandia lancifolia \N \N \N \N \N 104973 X.tashkentensis x Chitalpa x Chitalpa tashkentensis \N \N \N \N \N 104974 H.atrorubens Helianthus Helianthus atrorubens \N \N \N \N \N 104975 \N genus Octoknema \N \N \N \N \N 104976 I.chamelana Ipomoea Ipomoea chamelana \N \N \N \N \N 104977 S.littorea Sarcocornia Sarcocornia littorea \N \N \N \N \N 104978 S.auriculata Scrophularia Scrophularia auriculata \N \N \N \N \N 104979 H.maculatum Hieracium Hieracium maculatum \N \N \N \N \N 104980 P.umbellifera Pisonia Pisonia umbellifera \N \N \N \N \N 104981 P.acerifolium Pterospermum Pterospermum acerifolium \N \N \N \N \N 104982 E.klamathense Erythronium Erythronium klamathense \N \N \N \N \N 104983 C.severzowii Cousinia Cousinia severzowii \N \N \N \N \N 104984 C.adenophora Cristaria Cristaria adenophora \N \N \N \N \N 104985 A.submitis Astragalus Astragalus submitis \N \N \N \N \N 104986 L.similis Lonicera Lonicera similis \N \N \N \N \N 104987 F.crenata Fagus Fagus crenata Japanese beech \N \N \N \N 104988 V.palmata Vitis Vitis palmata \N \N \N \N \N 104989 C.colubrinum Chlorophytum Chlorophytum colubrinum \N \N \N \N \N 104990 S.caeruleum Sedum Sedum caeruleum \N \N \N \N \N 104991 P.ganderi Packera Packera ganderi \N \N \N \N \N 104992 P.Andrianatoanina Pyrostria Pyrostria sp. 7 Razafimandimbison & Andrianatoanina \N \N \N \N \N 104993 U.meziana Urochloa Urochloa meziana \N \N \N \N \N 104994 A.boliviensis Anisacanthus Anisacanthus boliviensis \N \N \N \N \N 104995 T.spicata Tamonea Tamonea spicata \N \N \N \N \N 104996 T.stanfordii Thamnosma Thamnosma stanfordii \N \N \N \N \N 104997 P.acuminata Payena Payena acuminata \N \N \N \N \N 104998 P.jinotegensis Psychotria Psychotria jinotegensis \N \N \N \N \N 104999 T.usambarica Thunbergia Thunbergia usambarica \N \N \N \N \N 105000 C.latifolium Crinum Crinum latifolium \N \N \N \N \N 105001 O.creaghii Orophea Orophea creaghii \N \N \N \N \N 105002 S.atrata Scrophularia Scrophularia atrata \N \N \N \N \N 105003 P.microphylla Pilea Pilea microphylla artillery-plant \N \N \N \N 105004 D.caucasica Dioscorea Dioscorea caucasica \N \N \N \N \N 105005 C.nairobiensis Commelina Commelina nairobiensis \N \N \N \N \N 105006 R.pringlei Rhodosciadium Rhodosciadium pringlei \N \N \N \N \N 105007 M.macroura Morus Morus macroura \N \N \N \N \N 105008 M.longicuspis Miconia Miconia longicuspis \N \N \N \N \N 105009 \N genus Wissadula \N \N \N \N \N 105010 \N varietas Echium pitardii var. pitardii \N \N \N \N \N 105011 S.porsildiana Saxifraga Saxifraga porsildiana \N \N \N \N \N 105012 P.aciculiferum Podolobium Podolobium aciculiferum \N \N \N \N \N 105014 S.retusa Securidaca Securidaca retusa \N \N \N \N \N 105015 T.samaritani Tragopogon Tragopogon samaritani \N \N \N \N \N 105016 A.pallida Arctostaphylos Arctostaphylos pallida \N \N \N \N \N 105017 \N genus Chrysactinia \N \N \N \N \N 105018 C.fimbriatus Chimonocalamus Chimonocalamus fimbriatus \N \N \N \N \N 105019 E.manescavi Erodium Erodium manescavi \N \N \N \N \N 105020 S.klugii Swartzia Swartzia klugii \N \N \N \N \N 105021 D.polyphemus Dracula Dracula polyphemus \N \N \N \N \N 105022 N.fluminensis Nematanthus Nematanthus fluminensis \N \N \N \N \N 105023 \N genus Dasypyrum \N \N \N \N \N 105024 C.pubescens Carpinus Carpinus pubescens \N \N \N \N \N 105025 \N no rank Eragrostideae incertae sedis \N \N \N \N \N 105026 \N genus Pilosocereus \N \N \N \N \N 105027 E.dunensis Erepsia Erepsia dunensis \N \N \N \N \N 105028 \N varietas Sideritis oroteneriffae var. arayae \N \N \N \N \N 105029 M.lindleyana Maxillaria Maxillaria lindleyana \N \N \N \N \N 105030 Q.virginiana Quercus Quercus virginiana southern live oak \N \N \N \N 105031 C.campanulata Cobaea Cobaea campanulata \N \N \N \N \N 105032 B.bellidioides Brachyglottis Brachyglottis bellidioides \N \N \N \N \N 105033 A.salteri Aspalathus Aspalathus salteri \N \N \N \N \N 105034 L.strigosus Lasianthus Lasianthus strigosus \N \N \N \N \N 105035 \N tribe Sanguisorbeae \N \N \N \N \N 105036 C.SRR-2011 Catasetum Catasetum sp. SRR-2011 \N \N \N \N \N 105037 B.brevipes Blumea Blumea brevipes \N \N \N \N \N 105038 R.928 Razafimandimbisonia Razafimandimbisonia sp. 1 Eriksson et al. 928 \N \N \N \N \N 105039 R.heleniifolium Rhaponticum Rhaponticum heleniifolium \N \N \N \N \N 105040 M.indistincta Macaranga Macaranga indistincta \N \N \N \N \N 105041 A.curvifolium Ascocentrum Ascocentrum curvifolium \N \N \N \N \N 105042 O.oedogonatum Oligostachyum Oligostachyum oedogonatum \N \N \N \N \N 105043 O.minaxoides Oncidium Oncidium minaxoides \N \N \N \N \N 105044 A.caucasica Arabis Arabis caucasica \N \N \N \N \N 105045 \N genus Capanea \N \N \N \N \N 105046 T.ambovombensis Thamnoldenlandia Thamnoldenlandia ambovombensis \N \N \N \N \N 105047 L.capitata Liparia Liparia capitata \N \N \N \N \N 105048 G.enysii Gingidia Gingidia enysii \N \N \N \N \N 105049 B.nigra Ballota Ballota nigra black horehound \N \N \N \N 105050 B.grandiceps Brownea Brownea grandiceps \N \N \N \N \N 105051 A.woodii Achimenes Achimenes woodii \N \N \N \N \N 105052 H.melanopoda Habenaria Habenaria melanopoda \N \N \N \N \N 105053 N.concinnus Notocactus Notocactus concinnus \N \N \N \N \N 105054 C.montana Coprosma Coprosma montana \N \N \N \N \N 105055 M.pedicellaris Melicoccus Melicoccus pedicellaris \N \N \N \N \N 105056 A.humilis Andira Andira humilis \N \N \N \N \N 105057 A.leucocephalum Allium Allium leucocephalum \N \N \N \N \N 105058 \N family Fagaceae beech family \N \N \N \N 105059 \N genus Panda \N \N \N \N \N 105060 B.socotrana Begonia Begonia socotrana \N \N \N \N \N 105061 G.eriantha Gurania Gurania eriantha \N \N \N \N \N 105062 H.bupleuroides Hypericum Hypericum bupleuroides \N \N \N \N \N 105063 E.rubiginosa Erica Erica rubiginosa \N \N \N \N \N 105064 \N genus Dicoelia \N \N \N \N \N 105065 B.sacra Boswellia Boswellia sacra frankincense \N \N \N \N 105066 P.quadrifolius Pogostemon Pogostemon quadrifolius \N \N \N \N \N 105067 D.filiformis Dodonaea Dodonaea filiformis \N \N \N \N \N 105068 S.rixfordii Scopulophila Scopulophila rixfordii Rixford's rockwort \N \N \N \N 105069 L.forrestii Lysionotus Lysionotus forrestii \N \N \N \N \N 105070 C.pallida Coryphantha Coryphantha pallida \N \N \N \N \N 105071 B.taiwaniana Begonia Begonia taiwaniana \N \N \N \N \N 105072 C.dowiana Cattleya Cattleya dowiana \N \N \N \N \N 105073 S.brachylobus Sonchus Sonchus brachylobus \N \N \N \N \N 105074 D.tomentosa Draba Draba tomentosa \N \N \N \N \N 105075 Z.1573 Zygophyllum Zygophyllum sp. Kolberg 1573 \N \N \N \N \N 105076 \N varietas Aconitum elliotii var. doshongense \N \N \N \N \N 105077 C.chuquitensis Caiophora Caiophora chuquitensis \N \N \N \N \N 105078 E.lepidopodus Erigeron Erigeron lepidopodus \N \N \N \N \N 105079 R.nanus Ranunculus Ranunculus nanus \N \N \N \N \N 105080 G.1570 Geissanthus Geissanthus sp. Stahl 1570 \N \N \N \N \N 105081 \N no rank commelinids incertae sedis \N \N \N \N \N 105082 E.pannosa Erica Erica pannosa \N \N \N \N \N 105083 L.costaricense Lepidium Lepidium costaricense \N \N \N \N \N 105084 \N genus Strophioblachia \N \N \N \N \N 105085 R.praelucens Rosa Rosa praelucens \N \N \N \N \N 105086 P.porsildii Poa Poa porsildii \N \N \N \N \N 105087 \N genus Anthopterus \N \N \N \N \N 105088 D.rotundifolia Ditassa Ditassa rotundifolia \N \N \N \N \N 105089 \N no rank Prunus persica x Prunus persica var. nucipersica \N \N \N \N \N 105090 S.rubrotinctum Sedum Sedum rubrotinctum \N \N \N \N \N 105091 \N genus Ungernia \N \N \N \N \N 105092 P.canaliculatum Phebalium Phebalium canaliculatum \N \N \N \N \N 105093 A.lyallii Anisotome Anisotome lyallii \N \N \N \N \N 105094 A.imbecilla Agrostis Agrostis imbecilla \N \N \N \N \N 105095 I.orientalis Itoa Itoa orientalis \N \N \N \N \N 105096 P.mileense Paraisometrum Paraisometrum mileense \N \N \N \N \N 105097 P.biflora Potentilla Potentilla biflora \N \N \N \N \N 105098 C.rufidula Cousinia Cousinia rufidula \N \N \N \N \N 105099 \N genus Micholitzia \N \N \N \N \N 105100 O.rosea Olea Olea rosea \N \N \N \N \N 105101 H.vulgare Hordeum Hordeum vulgare barley \N \N \N \N 105102 S.anglica Sorbus Sorbus anglica \N \N \N \N \N 105103 \N genus Ellisiophyllum \N \N \N \N \N 105104 B.aethiopica Berlinianche Berlinianche aethiopica \N \N \N \N \N 105105 P.hispidula Peripleura Peripleura hispidula \N \N \N \N \N 105106 I.irroratus Isodon Isodon irroratus \N \N \N \N \N 105107 H.dielsiana Hypsophila Hypsophila dielsiana \N \N \N \N \N 105108 E.crista-galli Erycina Erycina crista-galli \N \N \N \N \N 105109 C.trifoliolata Coptis Coptis trifoliolata \N \N \N \N \N 105110 S.gustavioides Syzygium Syzygium gustavioides \N \N \N \N \N 105111 O.patens Oreorchis Oreorchis patens \N \N \N \N \N 105112 H.globosa Hyaenanche Hyaenanche globosa \N \N \N \N \N 105113 O.maxima Opuntia Opuntia maxima \N \N \N \N \N 105114 V.collinsii Vachellia Vachellia collinsii \N \N \N \N \N 105115 R.aromatica Renealmia Renealmia aromatica \N \N \N \N \N 105116 L.galpinii Lotononis Lotononis galpinii \N \N \N \N \N 105117 D.purpurella Dactylorhiza Dactylorhiza purpurella \N \N \N \N \N 105118 D.microcephala Diplolaena Diplolaena microcephala \N \N \N \N \N 105119 D.baurii Disa Disa baurii \N \N \N \N \N 105120 M.caerulescens Manihot Manihot caerulescens \N \N \N \N \N 105121 \N genus Okenia \N \N \N \N \N 105122 V.'D'Udine' Viola Viola sp. 'D'Udine' \N \N \N \N \N 105123 L.rotundifolia Lobelia Lobelia rotundifolia \N \N \N \N \N 105124 C.distans Cymbopogon Cymbopogon distans \N \N \N \N \N 105125 R.aduncus Ranunculus Ranunculus aduncus \N \N \N \N \N 105126 D.brunnea Dicrastylis Dicrastylis brunnea \N \N \N \N \N 105127 P.pygmaeus Pleioblastus Pleioblastus pygmaeus \N \N \N \N \N 105128 C.gracillima Calyptochloa Calyptochloa gracillima \N \N \N \N \N 105129 \N genus Mandirola \N \N \N \N \N 105130 \N subspecies Heliosperma veselskyi subsp. veselskyi \N \N \N \N \N 105131 C.argenteum Chrysophyllum Chrysophyllum argenteum bastard redwood \N \N \N \N 105132 R.nivalis Rumex Rumex nivalis \N \N \N \N \N 105133 \N genus Mauria \N \N \N \N \N 105134 R.sandbergensis Ruschia Ruschia sandbergensis \N \N \N \N \N 105135 M.majalcensis Muhlenbergia Muhlenbergia majalcensis \N \N \N \N \N 105136 P.stonei Paphiopedilum Paphiopedilum stonei \N \N \N \N \N 105137 \N subspecies Luzula arcuata subsp. unalaschkensis \N \N \N \N \N 105138 \N varietas Kalanchoe geroldii var. viridifolia \N \N \N \N \N 105139 S.aversiflora Senna Senna aversiflora \N \N \N \N \N 105140 L.sessilifolia Lobelia Lobelia sessilifolia \N \N \N \N \N 105141 \N family Polygonaceae buckwheat family \N \N \N \N 105142 P.carnosus Penstemon Penstemon carnosus \N \N \N \N \N 105143 S.neilgherrensis Strobilanthes Strobilanthes neilgherrensis \N \N \N \N \N 105144 P.purpurea Polyscias Polyscias purpurea \N \N \N \N \N 105145 S.albowiana Saxifragella Saxifragella albowiana \N \N \N \N \N 105146 S.sericea Sideritis Sideritis sericea \N \N \N \N \N 105147 G.spinosum Gastrolobium Gastrolobium spinosum \N \N \N \N \N 105148 C.cerroana Castilleja Castilleja cerroana \N \N \N \N \N 105149 S.ledermannii Sciaphila Sciaphila ledermannii \N \N \N \N \N 105150 \N genus Shorea \N \N \N \N \N 105151 T.foeniculacea Turgeniopsis Turgeniopsis foeniculacea \N \N \N \N \N 105152 L.superbum Lilium Lilium superbum \N \N \N \N \N 105153 O.varians Oxytropis Oxytropis varians \N \N \N \N \N 105154 \N varietas Clerodendrum hildebrandtii var. puberula \N \N \N \N \N 105155 \N genus Stebbinsoseris \N \N \N \N \N 105156 M.kunthii Microchloa Microchloa kunthii \N \N \N \N \N 105157 C.terminalis Corymbia Corymbia terminalis \N \N \N \N \N 105158 G.damsii Gymnocalycium Gymnocalycium damsii \N \N \N \N \N 105159 \N genus Macropanax \N \N \N \N \N 105160 S.ugentii Solanum Solanum ugentii \N \N \N \N \N 105161 A.virgata Amphithalea Amphithalea virgata \N \N \N \N \N 105162 \N subspecies Arctostaphylos glandulosa subsp. cushingiana \N \N \N \N \N 105163 E.atropurpurea Euphorbia Euphorbia atropurpurea \N \N \N \N \N 105164 P.vietnamensis Panax Panax vietnamensis \N \N \N \N \N 105165 S.shepheardii Soterosanthus Soterosanthus shepheardii \N \N \N \N \N 105166 M.macropus Metrosideros Metrosideros macropus \N \N \N \N \N 105167 A.eduardii Allium Allium eduardii \N \N \N \N \N 105168 P.zeylanica Plumbago Plumbago zeylanica \N \N \N \N \N 105169 P.umbellata Phymosia Phymosia umbellata \N \N \N \N \N 105170 A.vexativa Aristida Aristida vexativa \N \N \N \N \N 105171 \N tribe Saniculeae \N \N \N \N \N 105172 S.erecta Sauvagesia Sauvagesia erecta \N \N \N \N \N 105173 \N genus Stifftia \N \N \N \N \N 105174 B.subulata Berkheya Berkheya subulata \N \N \N \N \N 105175 S.ellipticum Santalum Santalum ellipticum coast sandalwood \N \N \N \N 105176 T.pauciflora Tricostularia Tricostularia pauciflora \N \N \N \N \N 105177 M.shuanghuaensis Morinda Morinda shuanghuaensis \N \N \N \N \N 105178 E.SH-2010 Elaeocarpus Elaeocarpus sp. SH-2010 \N \N \N \N \N 105179 S.saponaria Sapindus Sapindus saponaria \N \N \N \N \N 105180 C.microcarpa Camelina Camelina microcarpa \N \N \N \N \N 105181 A.crosby-smithii Aciphylla Aciphylla crosby-smithii \N \N \N \N \N 105182 O.triangularis Oxalis Oxalis triangularis \N \N \N \N \N 105183 \N tribe Rhamneae \N \N \N \N \N 105184 O.rosea Oxalis Oxalis rosea \N \N \N \N \N 105185 \N genus Denhamia \N \N \N \N \N 105186 L.0043957 Leontopodium Leontopodium cf. stracheyi Safer 0043957 \N \N \N \N \N 105187 \N subspecies Hieracium echioides subsp. echioides \N \N \N \N \N 105188 \N genus Chalcanthus \N \N \N \N \N 105189 N.straussii Nepeta Nepeta straussii \N \N \N \N \N 105190 P.heterophylla Plantago Plantago heterophylla slender plantain \N \N \N \N 105191 L.bulbosa Luzula Luzula bulbosa \N \N \N \N \N 105192 F.ceratophylloides Frommia Frommia ceratophylloides \N \N \N \N \N 105193 G.soleirolii Gagea Gagea soleirolii \N \N \N \N \N 105194 \N subspecies Hieracium aurantiacum subsp. aurantiacum \N \N \N \N \N 105195 T.nuda Tetratheca Tetratheca nuda \N \N \N \N \N 105196 \N genus Schumacheria \N \N \N \N \N 105197 I.papposa Iostephane Iostephane papposa \N \N \N \N \N 105198 S.laevis Scrophularia Scrophularia laevis \N \N \N \N \N 105199 S.palmata Sasa Sasa palmata \N \N \N \N \N 105200 R.montana Rhodomyrtus Rhodomyrtus montana \N \N \N \N \N 105201 N.orthostates Nohawilliamsia Nohawilliamsia orthostates \N \N \N \N \N 105202 F.verrucosa Fuchsia Fuchsia verrucosa \N \N \N \N \N 105203 A.longifolia Aspidistra Aspidistra longifolia \N \N \N \N \N 105204 C.ioplocon Cyrtochilum Cyrtochilum ioplocon \N \N \N \N \N 105205 \N genus Nanophyton \N \N \N \N \N 105206 P.lithospermifolium Paracaryum Paracaryum lithospermifolium \N \N \N \N \N 105207 I.flavissima Iris Iris flavissima \N \N \N \N \N 105208 \N genus Fortuynia \N \N \N \N \N 105209 E.acris Erigeron Erigeron acris \N \N \N \N \N 105210 A.controversum Antirrhinum Antirrhinum controversum \N \N \N \N \N 105211 O.chrysomorphum Oncidium Oncidium chrysomorphum \N \N \N \N \N 105212 J.bolanderi Juncus Juncus bolanderi \N \N \N \N \N 105213 O.1394 Ochrothallus Ochrothallus sp. Munzinger 1394 \N \N \N \N \N 105214 A.pinnatifida Acaena Acaena pinnatifida sheepburr \N \N \N \N 105215 P.angustifolia Persicaria Persicaria angustifolia \N \N \N \N \N 105216 V.villosa Vicia Vicia villosa hairy vetch \N \N \N \N 105217 \N genus Leucosidea \N \N \N \N \N 105218 \N genus Calomeria \N \N \N \N \N 105219 V.218 Valeriana Valeriana cf. tripteris Hidalgo 218 \N \N \N \N \N 105220 U.5 Utricularia Utricularia sp. Albach 5 \N \N \N \N \N 105221 \N varietas Rosa multiflora var. adenochaeta \N \N \N \N \N 105222 C.chilensis Cenchrus Cenchrus chilensis \N \N \N \N \N 105223 \N genus Eccremocarpus \N \N \N \N \N 105224 \N genus Rhodocolea \N \N \N \N \N 105225 \N genus Epigynum \N \N \N \N \N 105226 C.pygmaea Calibrachoa Calibrachoa pygmaea \N \N \N \N \N 105227 M.153 Malaxis Malaxis sp. Wiegend 153 \N \N \N \N \N 105228 M.longipapillosum Mesembryanthemum Mesembryanthemum longipapillosum \N \N \N \N \N 105229 S.verticillata Salvia Salvia verticillata \N \N \N \N \N 105230 D.28465 Ditassa Ditassa sp. Maguire 28465 \N \N \N \N \N 105231 A.594 Aponogeton Aponogeton sp. Les 594 \N \N \N \N \N 105232 K.excelsa Knightia Knightia excelsa \N \N \N \N \N 105233 N.apulum Neatostema Neatostema apulum \N \N \N \N \N 105234 D.ferrea Diospyros Diospyros ferrea \N \N \N \N \N 105235 L.pittosporoides Lysimachia Lysimachia pittosporoides \N \N \N \N \N 105236 T.variifolia Tourneuxia Tourneuxia variifolia \N \N \N \N \N 105237 H.flavum Hedychium Hedychium flavum \N \N \N \N \N 105238 A.trichodesmus Allophylus Allophylus trichodesmus \N \N \N \N \N 105239 A.pilosa Aristolochia Aristolochia pilosa \N \N \N \N \N 105240 C.99105 Corydalis Corydalis sp. Hong 99105 \N \N \N \N \N 105241 R.amerophyllus Ranunculus Ranunculus amerophyllus \N \N \N \N \N 105242 L.ramsayi Licuala Licuala ramsayi \N \N \N \N \N 105243 A.boryi Anacamptis Anacamptis boryi \N \N \N \N \N 105244 J.clelandii Joycea Joycea clelandii \N \N \N \N \N 105245 G.friesiana Guatteriopsis Guatteriopsis friesiana \N \N \N \N \N 105246 \N no rank environmental samples Taxonomy:945784 \N \N \N \N \N 105247 A.pumila Aspidogyne Aspidogyne pumila \N \N \N \N \N 105248 E.JK-2009 Exochaenium Exochaenium sp. B JK-2009 \N \N \N \N \N 105249 M.oblongata Matelea Matelea oblongata \N \N \N \N \N 105250 T.queenslandiae Tapeinochilos Tapeinochilos queenslandiae \N \N \N \N \N 105251 R.parviflora Reissantia Reissantia parviflora \N \N \N \N \N 105252 F.abutilifolia Ficus Ficus abutilifolia \N \N \N \N \N 105253 C.vixdentata Carex Carex vixdentata \N \N \N \N \N 105254 L.flavum Lepidium Lepidium flavum \N \N \N \N \N 105255 \N subspecies Streptanthus glandulosus subsp. sonomensis \N \N \N \N \N 105256 C.songaricum Cicer Cicer songaricum \N \N \N \N \N 105257 S.columbaria Scabiosa Scabiosa columbaria \N \N \N \N \N 105258 \N genus Illigera \N \N \N \N \N 105259 C.neomexicanus Croton Croton neomexicanus \N \N \N \N \N 105260 G.pacifica Guatteria Guatteria pacifica \N \N \N \N \N 105261 P.bajeensis Petunia Petunia bajeensis \N \N \N \N \N 105262 E.brassii Euchiton Euchiton brassii \N \N \N \N \N 105263 H.parviflora Hexalectris Hexalectris parviflora \N \N \N \N \N 105264 \N genus Pseudosalacia \N \N \N \N \N 105265 S.amplexicaulis Simsia Simsia amplexicaulis \N \N \N \N \N 105266 D.glechomoides Dysopsis Dysopsis glechomoides \N \N \N \N \N 105267 \N subspecies Halosarcia leptoclada subsp. inclusa \N \N \N \N \N 105268 \N genus Pentarrhinum \N \N \N \N \N 105269 \N subspecies Carlina frigida subsp. fiumensis \N \N \N \N \N 105270 P.bipinnatifida Potentilla Potentilla bipinnatifida \N \N \N \N \N 105271 H.berberidifolius Hibiscus Hibiscus berberidifolius \N \N \N \N \N 105272 O.microphylla Oplonia Oplonia microphylla \N \N \N \N \N 105273 C.laxecymigera Commiphora Commiphora laxecymigera \N \N \N \N \N 105274 A.personata Agrostis Agrostis personata \N \N \N \N \N 105275 \N genus Muellerargia \N \N \N \N \N 105276 A.similis Apodasmia Apodasmia similis \N \N \N \N \N 105277 E.rimbachii Eschweilera Eschweilera rimbachii \N \N \N \N \N 105278 \N family Adoxaceae \N \N \N \N \N 105279 \N subspecies Argemone corymbosa subsp. corymbosa \N \N \N \N \N 105280 D.anadyrensis Deschampsia Deschampsia anadyrensis \N \N \N \N \N 105281 \N genus Dischisma \N \N \N \N \N 105282 C.marginata Callitriche Callitriche marginata \N \N \N \N \N 105283 L.strictus Lotus Lotus strictus \N \N \N \N \N 105284 V.AB-2009 Vanilla Vanilla cf. africana AB-2009 \N \N \N \N \N 105285 P.imbe Philodendron Philodendron imbe \N \N \N \N \N 105286 H.leucopsideum Helichrysum Helichrysum leucopsideum \N \N \N \N \N 105287 A.nervosa Acacia Acacia nervosa \N \N \N \N \N 105288 I.11247 Iris Iris aff. tubergeniana Chase 11247 \N \N \N \N \N 105289 T.peduncularis Trigonotis Trigonotis peduncularis \N \N \N \N \N 105290 A.obovata Actinodaphne Actinodaphne obovata \N \N \N \N \N 105291 A.fasciculifera Acacia Acacia fasciculifera \N \N \N \N \N 105292 \N varietas Carex albicans var. albicans \N \N \N \N \N 105293 C.potentilla Chamaecrista Chamaecrista potentilla \N \N \N \N \N 105294 B.microphylla Boechera Boechera microphylla \N \N \N \N \N 105295 P.schreberi Potamogeton Potamogeton x schreberi \N \N \N \N \N 105296 \N varietas Vitis cinerea var. helleri \N \N \N \N \N 105297 M.pedalis Matelea Matelea pedalis \N \N \N \N \N 105298 C.ferrugineum Coeloneurum Coeloneurum ferrugineum \N \N \N \N \N 105299 E.stahlii Eugenia Eugenia stahlii \N \N \N \N \N 105300 L.novae-zelandiae Lilaeopsis Lilaeopsis novae-zelandiae \N \N \N \N \N 105301 \N varietas Prunus lusitanica var. hixa \N \N \N \N \N 105302 \N tribe Vernonieae \N \N \N \N \N 105303 R.stenopetalum Rhododendron Rhododendron stenopetalum \N \N \N \N \N 105304 N.nivellei Nivellea Nivellea nivellei \N \N \N \N \N 105305 \N subspecies Calceolaria flexuosa subsp. flexuosa \N \N \N \N \N 105306 S.validus Schoenoplectus Schoenoplectus validus \N \N \N \N \N 105307 A.moupinensis Aristolochia Aristolochia moupinensis \N \N \N \N \N 105308 \N genus Hohenbergiopsis \N \N \N \N \N 105309 A.falcifolius Actinocephalus Actinocephalus falcifolius \N \N \N \N \N 105310 \N genus Muelleranthus \N \N \N \N \N 105311 A.engleri Arenga Arenga engleri \N \N \N \N \N 105312 D.dentiger Dendropanax Dendropanax dentiger \N \N \N \N \N 105313 \N varietas Vicia michauxii var. stenophylla \N \N \N \N \N 105314 T.underwoodii Trillium Trillium underwoodii \N \N \N \N \N 105315 C.subcernua Carex Carex subcernua \N \N \N \N \N 105316 \N subspecies Narcissus pseudonarcissus subsp. nevadensis \N \N \N \N \N 105317 M.cristata Micromeria Micromeria cristata \N \N \N \N \N 105318 O.colombiana Ormosia Ormosia colombiana \N \N \N \N \N 105319 V.blanda Viola Viola blanda \N \N \N \N \N 105320 P.oxycarpa Pseuduvaria Pseuduvaria oxycarpa \N \N \N \N \N 105321 B.patula Babiana Babiana patula \N \N \N \N \N 105322 D.DraB36 Draba Draba sp. DraB36 \N \N \N \N \N 105323 P.perpulcher Penstemon Penstemon perpulcher \N \N \N \N \N 105324 \N genus Amburana \N \N \N \N \N 105325 T.humile Thesium Thesium humile \N \N \N \N \N 105326 C.BWvE-2009 Croton Croton aff. ramillatus BWvE-2009 \N \N \N \N \N 105327 S.pallescens Shorea Shorea pallescens \N \N \N \N \N 105328 \N genus Threlkeldia \N \N \N \N \N 105329 A.caudigerum Asarum Asarum caudigerum \N \N \N \N \N 105330 F.hyemalis Funkiella Funkiella hyemalis \N \N \N \N \N 105331 B.S20 Brunfelsia Brunfelsia sp. S20 \N \N \N \N \N 105332 M.tornata Medicago Medicago tornata \N \N \N \N \N 105333 W.florida Weigela Weigela florida \N \N \N \N \N 105334 R.pumila Remusatia Remusatia pumila \N \N \N \N \N 105335 D.latifolia Diplarrhena Diplarrhena latifolia \N \N \N \N \N 105336 \N subspecies Gentiana verna subsp. pontica \N \N \N \N \N 105337 A.richardiana Apinagia Apinagia richardiana \N \N \N \N \N 105338 L.PSS-2000 Luzuriaga Luzuriaga sp. PSS-2000 \N \N \N \N \N 105339 E.paniculata Elaeosticta Elaeosticta paniculata \N \N \N \N \N 105340 C.linearis Calceolaria Calceolaria linearis \N \N \N \N \N 105341 E.grossheimii Euphorbia Euphorbia grossheimii \N \N \N \N \N 105342 X.bocatorena Xylopia Xylopia bocatorena \N \N \N \N \N 105343 B.berteroana Beilschmiedia Beilschmiedia berteroana \N \N \N \N \N 105344 \N subspecies Dendrosida sharpiana subsp. pubescens \N \N \N \N \N 105345 T.urophylla Tolumnia Tolumnia urophylla \N \N \N \N \N 105346 D.pulvinata Draba Draba pulvinata \N \N \N \N \N 105347 A.inconspicua Abrotanella Abrotanella inconspicua \N \N \N \N \N 105348 C.proposita Carex Carex proposita \N \N \N \N \N 105349 B.engysiphon Babiana Babiana engysiphon \N \N \N \N \N 105350 \N genus Sigmatanthus \N \N \N \N \N 105351 V.racinae Vriesea Vriesea racinae \N \N \N \N \N 105352 L.corniculatus Lotus Lotus corniculatus \N \N \N \N \N 105353 \N genus Austromuellera \N \N \N \N \N 105354 P.verrucosa Philotheca Philotheca verrucosa \N \N \N \N \N 105355 O.philippinensis Omoea Omoea philippinensis \N \N \N \N \N 105356 L.dasyanthus Leiotulus Leiotulus dasyanthus \N \N \N \N \N 105357 M.javanica Mycetia Mycetia javanica \N \N \N \N \N 105358 C.reginaldii Ceratostema Ceratostema reginaldii \N \N \N \N \N 105359 \N genus Moriera \N \N \N \N \N 105360 P.eustylum Piper Piper eustylum \N \N \N \N \N 105361 C.tangutica Clematis Clematis tangutica \N \N \N \N \N 105362 C.3174 Combretum Combretum sp. Boon 3174 \N \N \N \N \N 105363 M.fraseri Magnolia Magnolia fraseri \N \N \N \N \N 105364 C.larsenii Collomia Collomia larsenii \N \N \N \N \N 105365 H.mossambicensis Hionanthera Hionanthera mossambicensis \N \N \N \N \N 105366 \N genus Aiouea \N \N \N \N \N 105367 M.odorata Monotropsis Monotropsis odorata pygmy-pipes,sweet pinesap \N \N \N \N 105368 T.pseudomurbeckianum Taraxacum Taraxacum pseudomurbeckianum \N \N \N \N \N 105369 T.compactum Triticum Triticum compactum \N \N \N \N \N 105370 C.phragmitoides Calamagrostis Calamagrostis phragmitoides \N \N \N \N \N 105371 G.papuanum Grammatophyllum Grammatophyllum papuanum \N \N \N \N \N 105372 L.CVM-2007-5 Leandra Leandra sp. CVM-2007-5 \N \N \N \N \N 105373 T.integerrima Trema Trema integerrima \N \N \N \N \N 105374 S.sibiricus Spodiopogon Spodiopogon sibiricus \N \N \N \N \N 105375 G.diospyroides Guatteria Guatteria diospyroides \N \N \N \N \N 105376 A.parviflorus Araeococcus Araeococcus parviflorus \N \N \N \N \N 105377 C.leucantha Cephalaria Cephalaria leucantha \N \N \N \N \N 105378 P.psychotrioides Psychotria Psychotria psychotrioides \N \N \N \N \N 105379 M.ericifolia Muraltia Muraltia ericifolia \N \N \N \N \N 105380 I.kirkii Indigofera Indigofera kirkii \N \N \N \N \N 105381 U.rupestris Umbilicus Umbilicus rupestris \N \N \N \N \N 105382 E.sudanica Euphorbia Euphorbia sudanica \N \N \N \N \N 105383 A.haumannii Alchemilla Alchemilla haumannii \N \N \N \N \N 105384 \N genus Hesperochiron \N \N \N \N \N 105385 \N genus Aschersoniodoxa \N \N \N \N \N 105386 P.nitida Protorhus Protorhus nitida \N \N \N \N \N 105387 M.pavonis Morella Morella pavonis \N \N \N \N \N 105388 L.glabrata Leandra Leandra glabrata \N \N \N \N \N 105389 C.blattarioides Crepis Crepis blattarioides \N \N \N \N \N 105390 D.soliparma Dicrastylis Dicrastylis soliparma \N \N \N \N \N 105391 G.CQ-2002 Gladiolus Gladiolus sp. CQ-2002 \N \N \N \N \N 105392 M.paniculatus Mallotus Mallotus paniculatus \N \N \N \N \N 105393 \N family Daphniphyllaceae \N \N \N \N \N 105394 C.pulchella Clarkia Clarkia pulchella pink-fairies \N \N \N \N 105395 \N genus Jodrellia \N \N \N \N \N 105396 S.parvifolia Strychnos Strychnos parvifolia \N \N \N \N \N 105397 A.urbaniana Annona Annona urbaniana \N \N \N \N \N 105398 A.orientale Aconitum Aconitum orientale \N \N \N \N \N 105399 A.vaginata Actaea Actaea vaginata \N \N \N \N \N 105400 A.alaskana Artemisia Artemisia alaskana \N \N \N \N \N 105401 M.guttatus Mimulus Mimulus guttatus common monkey flower,spotted monkey flower,yellow monkey flower \N \N \N \N 105402 D.gregaria Disticholiparis Disticholiparis gregaria \N \N \N \N \N 105403 M.imperfecta Melica Melica imperfecta \N \N \N \N \N 105404 A.leucocephala Adenochlaena Adenochlaena leucocephala \N \N \N \N \N 105405 G.terglouensis Gentiana Gentiana terglouensis \N \N \N \N \N 105406 C.azoricum Cerastium Cerastium azoricum \N \N \N \N \N 105407 H.jasionoides Hysterionica Hysterionica jasionoides \N \N \N \N \N 105408 V.sylvatica Vicia Vicia sylvatica \N \N \N \N \N 105409 A.schlechteriana Aganosma Aganosma schlechteriana \N \N \N \N \N 105410 H.arborescens Hesperomannia Hesperomannia arborescens \N \N \N \N \N 105411 C.persimilis Crataegus Crataegus persimilis \N \N \N \N \N 105412 \N genus Apodolirion \N \N \N \N \N 105413 S.wilson-brownei Sipanea Sipanea wilson-brownei \N \N \N \N \N 105414 C.dubia Coursetia Coursetia dubia \N \N \N \N \N 105415 D.BGB-2009 Dalechampia Dalechampia aff. sylvestris BGB-2009 \N \N \N \N \N 105416 M.deherdtiana Mammillaria Mammillaria deherdtiana \N \N \N \N \N 105417 H.melanotilingia Halosciastrum Halosciastrum melanotilingia \N \N \N \N \N 105418 R.epapposum Rhanterium Rhanterium epapposum \N \N \N \N \N 105419 B.pyrami Biarum Biarum pyrami \N \N \N \N \N 105420 P.aurea Protea Protea aurea \N \N \N \N \N 105421 D.dumosus Dendrocalamus Dendrocalamus dumosus \N \N \N \N \N 105422 V.phlebotrichum Viburnum Viburnum phlebotrichum \N \N \N \N \N 105423 \N genus Calyptrocarya \N \N \N \N \N 105424 \N varietas Humulus lupulus var. cordifolius \N \N \N \N \N 105425 P.rotundinucula Pilea Pilea rotundinucula \N \N \N \N \N 105426 C.xantiana Clarkia Clarkia xantiana gusight clarkia \N \N \N \N 105427 C.onusta Chamaecrista Chamaecrista onusta \N \N \N \N \N 105428 P.asarifolia Primula Primula asarifolia \N \N \N \N \N 105429 O.citriodorum Ocimum Ocimum x citriodorum lemon basil \N \N \N \N 105430 A.densiflorus Asparagus Asparagus densiflorus \N \N \N \N \N 105431 B.stenophylla Bonellia Bonellia stenophylla \N \N \N \N \N 105432 P.europaea Plumbago Plumbago europaea \N \N \N \N \N 105433 \N no rank unclassified Campanulaceae \N \N \N \N \N 105434 \N genus Mesembryanthemum \N \N \N \N \N 105435 M.thurberi Muhlenbergia Muhlenbergia thurberi \N \N \N \N \N 105436 P.tomentosa Palaua Palaua dissecta x Palaua tomentosa \N \N \N \N \N 105437 \N varietas Lycoris radiata var. pumila \N \N \N \N \N 105438 S.chiapensis Stevia Stevia chiapensis \N \N \N \N \N 105439 R.RBGE Renealmia Renealmia sp. Harris RBGE \N \N \N \N \N 105440 \N tribe Hippurideae \N \N \N \N \N 105441 A.devesae Astragalus Astragalus devesae \N \N \N \N \N 105442 B.areolata Begonia Begonia areolata \N \N \N \N \N 105443 P.filicaule Pelargonium Pelargonium filicaule \N \N \N \N \N 105444 A.denudata Alocasia Alocasia denudata \N \N \N \N \N 105445 S.riederi Stachys Stachys riederi \N \N \N \N \N 105446 P.arborescens Plantago Plantago arborescens \N \N \N \N \N 105447 I.domestica Iris Iris domestica \N \N \N \N \N 105448 \N varietas Morinda citrifolia var. bracteata \N \N \N \N \N 105449 A.decumbens Alchemilla Alchemilla decumbens \N \N \N \N \N 105450 L.gentryi Leptospron Leptospron gentryi \N \N \N \N \N 105451 L.australe Limonium Limonium australe \N \N \N \N \N 105452 V.s.n. Villarsia Villarsia sp. Fay s.n. \N \N \N \N \N 105453 A.havardii Aristida Aristida havardii \N \N \N \N \N 105454 R.velutinus Ranunculus Ranunculus velutinus \N \N \N \N \N 105455 D.roseiflora Degeneria Degeneria roseiflora \N \N \N \N \N 105456 R.perenne Rapistrum Rapistrum perenne steppe-cabbage \N \N \N \N 105457 P.stricta Pimelea Pimelea stricta \N \N \N \N \N 105458 P.HL-2001 Psydrax Psydrax sp. HL-2001 \N \N \N \N \N 105459 B.corymbosa Bothriospora Bothriospora corymbosa \N \N \N \N \N 105460 A.schinini Arachis Arachis schinini \N \N \N \N \N 105461 V.anatolica Vicia Vicia anatolica \N \N \N \N \N 105462 L.loeriense Leucadendron Leucadendron loeriense \N \N \N \N \N 105463 \N genus Halophytum \N \N \N \N \N 105464 B.vermiculare Blutaparon Blutaparon vermiculare saltweed,silverweed \N \N \N \N 105465 \N genus Placea \N \N \N \N \N 105466 C.decidua Capparis Capparis decidua karira \N \N \N \N 105467 M.SB-2011 Molinaea Molinaea sp. 2 SB-2011 \N \N \N \N \N 105468 \N genus Knema \N \N \N \N \N 105469 C.eichleri Colchicum Colchicum eichleri \N \N \N \N \N 105470 E.pinnatum Epipremnum Epipremnum pinnatum golden pothos \N \N \N \N 105471 M.morrisonianus Myriocephalus Myriocephalus morrisonianus \N \N \N \N \N 105472 R.subsimplex Rhipidoglossum Rhipidoglossum subsimplex \N \N \N \N \N 105473 \N genus Malvastrum \N \N \N \N \N 105474 M.paniculatum Melampodium Melampodium paniculatum \N \N \N \N \N 105475 A.schrenkiana Artemisia Artemisia schrenkiana \N \N \N \N \N 105476 P.incrassata Poa Poa incrassata \N \N \N \N \N 105477 \N genus Rhinerrhiza \N \N \N \N \N 105478 B.paniculata Bartonia Bartonia paniculata \N \N \N \N \N 105479 P.californicum Polemonium Polemonium californicum California Jacob's-ladder \N \N \N \N 105480 P.hainanensis Pertusadina Pertusadina hainanensis \N \N \N \N \N 105481 F.sinuata Ficus Ficus sinuata \N \N \N \N \N 105482 Y.guatemalensis Yucca Yucca guatemalensis blue-stem yucca,giant yucca \N \N \N \N 105483 S.bombycina Swartzia Swartzia bombycina \N \N \N \N \N 105484 C.conduplicatus Croton Croton conduplicatus \N \N \N \N \N 105485 \N genus Commitheca \N \N \N \N \N 105486 A.balangshanensis Angelica Angelica balangshanensis \N \N \N \N \N 105487 A.nyssophylla Acacia Acacia nyssophylla \N \N \N \N \N 105488 \N genus Kayea \N \N \N \N \N 105489 D.sp. Dahlia Dahlia sp. \N \N \N \N \N 105490 M.austromontana Monarda Monarda austromontana \N \N \N \N \N 105491 M.ruscinonensis Myosotis Myosotis ruscinonensis \N \N \N \N \N 105492 P.hyssopifolia Peristrophe Peristrophe hyssopifolia \N \N \N \N \N 105493 A.salmiana Agave Agave salmiana \N \N \N \N \N 105494 L.tristis Lyperia Lyperia tristis \N \N \N \N \N 105495 D.himalayensis Draba Draba himalayensis \N \N \N \N \N 105496 P.grandidieri Paederia Paederia grandidieri \N \N \N \N \N 105497 D.myriophylla Descurainia Descurainia myriophylla \N \N \N \N \N 105498 T.guerkeana Thunbergia Thunbergia guerkeana \N \N \N \N \N 105499 S.makinoi Sedum Sedum makinoi \N \N \N \N \N 105500 A.theophrasti Abutilon Abutilon theophrasti China jute,Indian mallow,butterprint,velvetleaf \N \N \N \N 105501 G.8557 Glossoloma Glossoloma sp. Clark 8557 \N \N \N \N \N 105502 \N genus Moltkiopsis \N \N \N \N \N 105503 \N subspecies Phoradendron tomentosum subsp. macrophyllum \N \N \N \N \N 105504 G.albomarginatus Gonolobus Gonolobus albomarginatus \N \N \N \N \N 105505 \N genus Echinacea \N \N \N \N \N 105506 C.aspera Coronanthera Coronanthera aspera \N \N \N \N \N 105507 M.mauluulu Meryta Meryta mauluulu \N \N \N \N \N 105508 \N no rank Livistoneae incertae sedis \N \N \N \N \N 105509 H.nitida Hesperozygis Hesperozygis nitida \N \N \N \N \N 105510 L.leiospermum Lycium Lycium leiospermum \N \N \N \N \N 105511 E.areolata Erica Erica areolata \N \N \N \N \N 105512 \N varietas Vincetoxicum sublanceolatum var. macranthum \N \N \N \N \N 105513 I.TP-2009 Inga Inga sp. 22 TP-2009 \N \N \N \N \N 105514 E.jucunda Eucalyptus Eucalyptus jucunda \N \N \N \N \N 105515 C.phanae Camellia Camellia phanae \N \N \N \N \N 105516 P.polyadenia Plukenetia Plukenetia polyadenia \N \N \N \N \N 105517 C.californica Cardamine Cardamine californica milkmaids \N \N \N \N 105518 T.filifolia Tillandsia Tillandsia filifolia \N \N \N \N \N 105519 R.centifolia Rosa Rosa x centifolia Burgundy rose \N \N \N \N 105520 S.flaveriae Sartwellia Sartwellia flaveriae \N \N \N \N \N 105521 \N genus Nemuaron \N \N \N \N \N 105522 G.sarothrae Gutierrezia Gutierrezia sarothrae broom snakeroot \N \N \N \N 105523 C.discolor Cullen Cullen discolor \N \N \N \N \N 105524 E.fernaldii Eupatorium Eupatorium fernaldii \N \N \N \N \N 105525 I.webberi Ivesia Ivesia webberi \N \N \N \N \N 105526 B.tymphaea Bornmuellera Bornmuellera tymphaea \N \N \N \N \N 105527 \N tribe Isertieae \N \N \N \N \N 105528 L.revolutus Leucocroton Leucocroton revolutus \N \N \N \N \N 105529 L.7383 Llerasia Llerasia sp. Jaramillo 7383 \N \N \N \N \N 105530 B.menziesii Banksia Banksia menziesii \N \N \N \N \N 105531 B.oregona Bensoniella Bensoniella oregona \N \N \N \N \N 105532 L.amabile Lilium Lilium amabile \N \N \N \N \N 105533 \N subspecies Crepis bakeri subsp. idahoensis \N \N \N \N \N 105534 I.phyllostachys Isodon Isodon phyllostachys \N \N \N \N \N 105535 \N genus Socratea \N \N \N \N \N 105536 Z.diploperennis Zea Zea diploperennis chapule,milpilla,teosinte \N \N \N \N 105537 \N varietas Encelia farinosa var. farinosa \N \N \N \N \N 105538 C.pusilla Cousinia Cousinia pusilla \N \N \N \N \N 105539 \N genus Isoglossa \N \N \N \N \N 105540 V.ospinae Vriesea Vriesea ospinae \N \N \N \N \N 105541 B.tesquorum Brachyscome Brachyscome tesquorum \N \N \N \N \N 105542 C.atlantica Carlina Carlina atlantica \N \N \N \N \N 105543 A.minus Asarum Asarum minus \N \N \N \N \N 105544 P.filipes Pseuduvaria Pseuduvaria filipes \N \N \N \N \N 105545 H.saligna Hibbertia Hibbertia saligna \N \N \N \N \N 105546 I.volkensii Indigofera Indigofera volkensii \N \N \N \N \N 105547 P.tessmannii Pachyelasma Pachyelasma tessmannii mekogho \N \N \N \N 105548 \N genus Anthonotha \N \N \N \N \N 105549 G.valentina Genista Genista valentina \N \N \N \N \N 105550 G.nana Gaylussacia Gaylussacia nana dwarf dangleberry \N \N \N \N 105551 C.micrantha Conostegia Conostegia micrantha \N \N \N \N \N 105552 F.pachyptera Fimbristylis Fimbristylis pachyptera \N \N \N \N \N 105553 V.monoica Vasconcellea Vasconcellea monoica col de monte,peladera \N \N \N \N 105554 P.tonduzii Piper Piper tonduzii \N \N \N \N \N 105555 R.terminalis Ruellia Ruellia terminalis \N \N \N \N \N 105556 M.lactiflua Mimosa Mimosa lactiflua \N \N \N \N \N 105557 P.discophora Passiflora Passiflora discophora \N \N \N \N \N 105558 T.6225 unclassified Taraxacum Taraxacum (sect. Biennia) sp. 6225 \N \N \N \N \N 105559 O.rotundifolium Origanum Origanum rotundifolium \N \N \N \N \N 105560 S.similis Sauropus Sauropus similis \N \N \N \N \N 105561 P.2615 Pycnandra Pycnandra sp. Munzinger 2615 \N \N \N \N \N 105562 V.flabellata Vanda Vanda flabellata \N \N \N \N \N 105563 A.marmelos Aegle Aegle marmelos Indian baelfruit,bael \N \N \N \N 105564 A.parviflora Aesculus Aesculus parviflora f. serotina x Aesculus parviflora \N \N \N \N \N 105565 S.pubera Stellaria Stellaria pubera \N \N \N \N \N 105566 \N genus Anonidium \N \N \N \N \N 105567 P.albescens Phaseolus Phaseolus albescens \N \N \N \N \N 105568 F.laciniata Ficinia Ficinia laciniata \N \N \N \N \N 105569 \N no rank Saccharum hybrid cultivar H50-7209 \N \N \N \N \N 105570 O.cerricola Oerstedina Oerstedina cerricola \N \N \N \N \N 105571 \N subspecies Gilia achilleifolia subsp. multicaulis \N \N \N \N \N 105572 D.pallidum Disterigma Disterigma pallidum \N \N \N \N \N 105573 \N genus Bertya \N \N \N \N \N 105574 C.lihengiae Colocasia Colocasia lihengiae \N \N \N \N \N 105575 S.samoense Spiraeanthemum Spiraeanthemum samoense \N \N \N \N \N 105576 C.sample environmental samples Taxonomy:417443 Caprifoliaceae environmental sample \N \N \N \N \N 105577 J.contumacensis Jaltomata Jaltomata contumacensis \N \N \N \N \N 105578 R.moelleri Rhodophiala Rhodophiala moelleri \N \N \N \N \N 105579 T.rochebrunnianum Thalictrum Thalictrum rochebrunnianum \N \N \N \N \N 105580 E.fibrosus Elymus Elymus fibrosus \N \N \N \N \N 105581 A.apense Angelphytum Angelphytum apense \N \N \N \N \N 105582 V.rapensis Hebe Veronica rapensis \N \N \N \N \N 105583 R.ellipticus Rubus Rubus ellipticus cheeseberry,yellow raspberry \N \N \N \N 105584 E.2898 Elaeagnus Elaeagnus sp. Nickrent 2898 \N \N \N \N \N 105585 I.kirkwoodiae Iris Iris kirkwoodiae \N \N \N \N \N 105586 E.canaliculatum Eryngium Eryngium canaliculatum \N \N \N \N \N 105587 F.breviglumis Festuca Festuca breviglumis \N \N \N \N \N 105588 N.dejecta Nopalea Nopalea dejecta \N \N \N \N \N 105589 T.JS5901 unclassified Taraxacum Taraxacum (sect. Alpina) sp. JS5901 \N \N \N \N \N 105590 B.subclavata Bauhinia Bauhinia subclavata \N \N \N \N \N 105591 S.clavata Sebaea Sebaea clavata \N \N \N \N \N 105592 D.vexans Diastema Diastema vexans \N \N \N \N \N 105593 \N varietas Pappostipa vaginata var. vaginata \N \N \N \N \N 105594 C.2002_03 Crataegus Crataegus sp. 2002_03 \N \N \N \N \N 105595 L.lampadarius Lithocarpus Lithocarpus lampadarius \N \N \N \N \N 105596 \N varietas Prunus pumila var. susquehanae \N \N \N \N \N 105597 F.halophila Ferula Ferula halophila \N \N \N \N \N 105598 S.terrestris Scleria Scleria terrestris \N \N \N \N \N 105599 C.pringlei Caesalpinia Caesalpinia pringlei \N \N \N \N \N 105600 Z.strateumatica Zeuxine Zeuxine strateumatica \N \N \N \N \N 105601 M.ioensis Malus Malus ioensis prairie crabapple \N \N \N \N 105602 L.phleoides Lycurus Lycurus phleoides \N \N \N \N \N 105603 C.dormaniana Cattleya Cattleya dormaniana \N \N \N \N \N 105604 D.pygmaeus Dianthus Dianthus pygmaeus \N \N \N \N \N 105605 A.polycarpa Atriplex Atriplex polycarpa \N \N \N \N \N 105606 S.anamatophilum Solanum Solanum anamatophilum \N \N \N \N \N 105607 B.incrassata Buglossoides Buglossoides incrassata \N \N \N \N \N 105608 G.krebsiana Gazania Gazania krebsiana \N \N \N \N \N 105609 B.acuminata Brochoneura Brochoneura acuminata \N \N \N \N \N 105610 M.chrysotricha Machilus Machilus chrysotricha \N \N \N \N \N 105611 M.14068 Machilus Machilus sp. van der Werff & al. 14068 \N \N \N \N \N 105612 E.tetragona Euphorbia Euphorbia tetragona \N \N \N \N \N 105613 S.03-01 Sphedamnocarpus Sphedamnocarpus sp. Davis 03-01 \N \N \N \N \N 105614 M.sigmoidea Maxillaria Maxillaria sigmoidea \N \N \N \N \N 105615 T.korupensis Tetraberlinia Tetraberlinia korupensis \N \N \N \N \N 105616 T.pubescens Thelesperma Thelesperma pubescens \N \N \N \N \N 105617 \N subspecies Turnera sidoides subsp. pinnatifida \N \N \N \N \N 105618 B.wallichiana Berberis Berberis wallichiana \N \N \N \N \N 105619 N.micrantha Nymphaea Nymphaea micrantha \N \N \N \N \N 105620 E.borealiguizhouense Epimedium Epimedium borealiguizhouense \N \N \N \N \N 105621 \N genus Cordylogyne \N \N \N \N \N 105622 P.cockayneana Poa Poa cockayneana \N \N \N \N \N 105623 \N genus Asteranthera \N \N \N \N \N 105624 L.urticoides Lantana Lantana urticoides \N \N \N \N \N 105625 \N genus Sisymbrella \N \N \N \N \N 105626 S.creticum Symphytum Symphytum creticum \N \N \N \N \N 105627 M.latisepala Malaxis Malaxis latisepala \N \N \N \N \N 105628 C.blepharodes Clidemia Clidemia blepharodes \N \N \N \N \N 105629 \N subspecies Helichrysum arenarium subsp. aucheri \N \N \N \N \N 105630 M.pachyphylla Miconia Miconia pachyphylla camasey racimoso \N \N \N \N 105631 B.chitria Berberis Berberis chitria \N \N \N \N \N 105632 \N varietas Senna hirsuta var. leptocarpa \N \N \N \N \N 105633 L.boninensis Lobelia Lobelia boninensis \N \N \N \N \N 105634 \N varietas Lecanorchis kiusiana var. suginoana \N \N \N \N \N 105635 H.pusillum Hordeum Hordeum pusillum \N \N \N \N \N 105636 \N tribe Solandreae \N \N \N \N \N 105637 M.corymbiformis Miconia Miconia corymbiformis \N \N \N \N \N 105638 E.1406 Eurya Eurya sp. Chung & Anderberg 1406 \N \N \N \N \N 105639 E.eudesmioides Eucalyptus Eucalyptus eudesmioides desert gum,myallie \N \N \N \N 105640 S.090306/01 Salicornia Salicornia sp. Mucina 090306/01 \N \N \N \N \N 105641 S.africana Santolina Santolina africana \N \N \N \N \N 105642 \N subspecies Lupinus pilosus subsp. tassilicus \N \N \N \N \N 105643 \N varietas Draba cuneifolia cf. var. sonorae Gentry 1361 \N \N \N \N \N 105644 R.clinophylla Rosa Rosa clinophylla \N \N \N \N \N 105645 A.tegmentosum Acer Acer tegmentosum \N \N \N \N \N 105646 I.ellipticum Iochroma Iochroma ellipticum \N \N \N \N \N 105647 P.colonense Piper Piper colonense \N \N \N \N \N 105648 P.7357 Peplidium Peplidium sp. Barker 7357 \N \N \N \N \N 105649 \N genus Fraxinus ash trees \N \N \N \N 105650 \N varietas Eurya acuminata var. wallichiana \N \N \N \N \N 105651 A.paradoxa Alinula Alinula paradoxa \N \N \N \N \N 105652 \N genus Cephalotus \N \N \N \N \N 105653 S.bandeirae Saccifolium Saccifolium bandeirae \N \N \N \N \N 105654 \N genus Coelospermum \N \N \N \N \N 105655 S.rainaliana Schefflera Schefflera rainaliana \N \N \N \N \N 105656 C.laciniata Cardamine Cardamine laciniata \N \N \N \N \N 105657 \N genus Pycnanthemum \N \N \N \N \N 105658 \N varietas Lithocarpus densiflorus var. densiflorus \N \N \N \N \N 105659 H.cumingiana Hoya Hoya cumingiana \N \N \N \N \N 105660 S.czukotica Smelowskia Smelowskia czukotica \N \N \N \N \N 105661 A.argutum Acer Acer argutum \N \N \N \N \N 105662 B.stefanae Bifrenaria Bifrenaria stefanae \N \N \N \N \N 105663 \N genus Durandea \N \N \N \N \N 105664 \N genus Marah \N \N \N \N \N 105665 D.robustum Diplodium Diplodium robustum \N \N \N \N \N 105666 P.victoria-regina Paphiopedilum Paphiopedilum victoria-regina \N \N \N \N \N 105667 \N genus Dracula \N \N \N \N \N 105668 H.henrici Humbertiella Humbertiella henrici \N \N \N \N \N 105669 E.monostachya Ecdeiocolea Ecdeiocolea monostachya \N \N \N \N \N 105670 C.quercifolia Chorilaena Chorilaena quercifolia \N \N \N \N \N 105671 S.paulsenii Salsola Salsola paulsenii barbwire Russian-thistle \N \N \N \N 105672 S.pulverulenta Scurrula Scurrula pulverulenta \N \N \N \N \N 105673 \N genus Orogenia \N \N \N \N \N 105674 L.hemsleyana Lysimachia Lysimachia hemsleyana \N \N \N \N \N 105675 P.vernalis Pulsatilla Pulsatilla vernalis \N \N \N \N \N 105676 C.reniformis Cliffortia Cliffortia reniformis \N \N \N \N \N 105677 \N subspecies Streptocarpus eylesii subsp. eylesii \N \N \N \N \N 105678 P.C8470 Pleuranthodium Pleuranthodium cf. gjellerupii C8470 \N \N \N \N \N 105679 S.pileata Sorocea Sorocea pileata \N \N \N \N \N 105680 M.dillonii Maxillaria Maxillaria dillonii \N \N \N \N \N 105681 M.involucratus Myodocarpus Myodocarpus involucratus \N \N \N \N \N 105682 C.australis Ceriops Ceriops australis \N \N \N \N \N 105683 B.pubescens Betula Betula pubescens downy birch \N \N \N \N 105684 E.curtipendulum Elaeodendron Elaeodendron curtipendulum \N \N \N \N \N 105685 P.knudsenii Phyllostegia Phyllostegia knudsenii \N \N \N \N \N 105686 W.marianneae Wallichia Wallichia marianneae \N \N \N \N \N 105687 O.leptogramma Oxalis Oxalis leptogramma \N \N \N \N \N 105688 T.JK4320 unclassified Taraxacum Taraxacum (sect. Dioszegia) sp. JK4320 \N \N \N \N \N 105689 P.JID-2010 Phyllostachys Phyllostachys sp. JID-2010 \N \N \N \N \N 105690 M.multinervia Machilus Machilus multinervia \N \N \N \N \N 105691 S.radicans Selliera Selliera radicans \N \N \N \N \N 105692 C.hirtigluma Carex Carex hirtigluma \N \N \N \N \N 105693 C.amabilis Chondroscaphe Chondroscaphe amabilis \N \N \N \N \N 105694 M.eplingiana Monarda Monarda eplingiana \N \N \N \N \N 105695 P.robinsonii Paphiopedilum Paphiopedilum robinsonii \N \N \N \N \N 105696 \N genus Iocenes \N \N \N \N \N 105697 V.leucocephala Varronia Varronia leucocephala \N \N \N \N \N 105698 P.sterculioides Phitopis Phitopis sterculioides \N \N \N \N \N 105699 P.rupestre Ptilotrichum Ptilotrichum rupestre \N \N \N \N \N 105700 V.major Virectaria Virectaria major \N \N \N \N \N 105701 C.longiflora Chaetocalyx Chaetocalyx longiflora \N \N \N \N \N 105702 D.sinensis Dimeria Dimeria sinensis \N \N \N \N \N 105703 C.niveus Croton Croton niveus \N \N \N \N \N 105704 A.cunninghamii Actinodium Actinodium cunninghamii \N \N \N \N \N 105705 \N genus Arthraerua \N \N \N \N \N 105706 L.fasciculata Lycianthes Lycianthes fasciculata \N \N \N \N \N 105707 H.paradoxus Helianthus Helianthus paradoxus \N \N \N \N \N 105708 \N genus Emmeorhiza \N \N \N \N \N 105709 H.karelinii Halimocnemis Halimocnemis karelinii \N \N \N \N \N 105710 M.dichotoma Montia Montia dichotoma \N \N \N \N \N 105711 O.perrieri Otiophora Otiophora perrieri \N \N \N \N \N 105712 A.scabrifolium Alloispermum Alloispermum scabrifolium \N \N \N \N \N 105713 D.litamo Draba Draba litamo \N \N \N \N \N 105714 M.chenopodiifolia Matthiola Matthiola chenopodiifolia \N \N \N \N \N 105715 \N genus Eleorchis \N \N \N \N \N 105716 \N genus Bellida \N \N \N \N \N 105717 M.roseus Mesechites Mesechites roseus \N \N \N \N \N 105718 P.subcaulescens Paepalanthus Paepalanthus subcaulescens \N \N \N \N \N 105719 H.argentina Hypochaeris Hypochaeris argentina \N \N \N \N \N 105720 H.albescens Himalaiella Himalaiella albescens \N \N \N \N \N 105721 R.torulosa Riocreuxia Riocreuxia torulosa \N \N \N \N \N 105722 P.menabeum Pachypodium Pachypodium menabeum \N \N \N \N \N 105723 P.recutita Pedicularis Pedicularis recutita \N \N \N \N \N 105724 \N genus Phygelius \N \N \N \N \N 105725 \N order Dilleniales \N \N \N \N \N 105726 G.gracilicaule Galium Galium gracilicaule \N \N \N \N \N 105727 M.bimucronata Mimosa Mimosa bimucronata \N \N \N \N \N 105728 P.aurantium Phacelophrynium Phacelophrynium aurantium \N \N \N \N \N 105729 E.spiralis Eleocharis Eleocharis spiralis \N \N \N \N \N 105730 C.O-307 Cryptarrhena Cryptarrhena sp. Chase O-307 \N \N \N \N \N 105731 P.virescens Piptatherum Piptatherum virescens \N \N \N \N \N 105732 S.intermedia Saintpaulia Saintpaulia intermedia \N \N \N \N \N 105733 G.crinita Gentianopsis Gentianopsis crinita \N \N \N \N \N 105734 R.8835 Reldia Reldia sp. Clark 8835 \N \N \N \N \N 105735 A.excavatum Acroceras Acroceras excavatum \N \N \N \N \N 105736 H.maleolens Heterotaxis Heterotaxis maleolens \N \N \N \N \N 105737 E.spectabilis Eremurus Eremurus spectabilis \N \N \N \N \N 105738 G.nudiflora Ginoria Ginoria nudiflora \N \N \N \N \N 105739 C.californica Calliandra Calliandra californica \N \N \N \N \N 105740 N.tazetta Narcissus Narcissus tazetta \N \N \N \N \N 105741 T.lijiangensis Thladiantha Thladiantha lijiangensis \N \N \N \N \N 105742 T.bulbosum Thlaspi Thlaspi bulbosum \N \N \N \N \N 105743 \N genus Zostera \N \N \N \N \N 105744 C.indica Capparis Capparis indica \N \N \N \N \N 105745 \N subspecies Genista stenopetala subsp. microphylla \N \N \N \N \N 105746 Q.liboniana Quesnelia Quesnelia liboniana \N \N \N \N \N 105747 T.tenuiloba Thymophylla Thymophylla tenuiloba \N \N \N \N \N 105748 L.frutescens Leucophyllum Leucophyllum frutescens Texas silverleaf,barometer-bush,cenizo \N \N \N \N 105749 D.toletanus Dianthus Dianthus toletanus \N \N \N \N \N 105750 A.pilifera Anisotome Anisotome pilifera \N \N \N \N \N 105751 \N varietas Kunzea ericoides var. ericoides \N \N \N \N \N 105752 C.serrulata Cymodocea Cymodocea serrulata \N \N \N \N \N 105753 M.carinulata Maxillaria Maxillaria carinulata \N \N \N \N \N 105754 E.aurata Eberhardtia Eberhardtia aurata \N \N \N \N \N 105755 F.madagascariensis Fenerivia Fenerivia madagascariensis \N \N \N \N \N 105756 A.scholaris Alstonia Alstonia scholaris milky pine \N \N \N \N 105757 \N genus Eremosparton \N \N \N \N \N 105758 I.sootepensis Indigofera Indigofera sootepensis \N \N \N \N \N 105759 C.glauca Cleistopholis Cleistopholis glauca \N \N \N \N \N 105760 \N genus Cremanthodium \N \N \N \N \N 105761 O.welwitschii Olea Olea welwitschii \N \N \N \N \N 105762 A.chaffanjonii Ampelopsis Ampelopsis chaffanjonii \N \N \N \N \N 105763 D.trichophorum Delphinium Delphinium trichophorum \N \N \N \N \N 105764 L.loddigesii Latania Latania loddigesii \N \N \N \N \N 105765 \N subspecies Arnica lonchophylla subsp. lonchophylla \N \N \N \N \N 105766 P.distans Puccinellia Puccinellia distans \N \N \N \N \N 105767 T.pustulata Thladiantha Thladiantha pustulata \N \N \N \N \N 105768 P.nivalis Plantago Plantago nivalis \N \N \N \N \N 105769 C.tsaii Camellia Camellia tsaii \N \N \N \N \N 105770 I.rhodantha Illigera Illigera rhodantha \N \N \N \N \N 105771 E.strictum Echium Echium strictum \N \N \N \N \N 105772 C.petasata Carex Carex petasata \N \N \N \N \N 105773 C.polyacantha Centaurea Centaurea polyacantha \N \N \N \N \N 105774 A.freitagii Anthemis Anthemis freitagii \N \N \N \N \N 105775 P.fasciculatus Penstemon Penstemon fasciculatus \N \N \N \N \N 105776 N.sinensis Nyssa Nyssa sinensis \N \N \N \N \N 105777 F.augusta Ficus Ficus augusta \N \N \N \N \N 105778 G.cespitosum Galium Galium cespitosum \N \N \N \N \N 105779 S.racemosum Sphalmium Sphalmium racemosum \N \N \N \N \N 105780 \N genus Atherosperma \N \N \N \N \N 105781 B.verticillata Bowkeria Bowkeria verticillata \N \N \N \N \N 105782 \N subspecies Chironia purpurascens subsp. humilis \N \N \N \N \N 105783 O.imatongensis Ochrocephala Ochrocephala imatongensis \N \N \N \N \N 105784 R.nicolsonii Rhaphidophora Rhaphidophora nicolsonii \N \N \N \N \N 105785 M.australis Macarthuria Macarthuria australis \N \N \N \N \N 105786 A.nummularia Asclepias Asclepias nummularia \N \N \N \N \N 105787 D.diapensiifolia Dionysia Dionysia diapensiifolia \N \N \N \N \N 105788 \N genus Sinopyrenaria \N \N \N \N \N 105789 A.gilgiticum Allium Allium gilgiticum \N \N \N \N \N 105790 H.yezoense Hypericum Hypericum yezoense \N \N \N \N \N 105791 S.microphylla Sophora Sophora microphylla \N \N \N \N \N 105792 O.pumila Oreomyrrhis Oreomyrrhis pumila \N \N \N \N \N 105793 H.manipurensis Hoya Hoya manipurensis \N \N \N \N \N 105794 D.crassinervis Diospyros Diospyros crassinervis \N \N \N \N \N 105795 B.staudtii Begonia Begonia staudtii \N \N \N \N \N 105796 C.mollis Crepis Crepis mollis \N \N \N \N \N 105797 P.biswasiana Papilionanthe Papilionanthe biswasiana \N \N \N \N \N 105798 E.diversicolor Eucalyptus Eucalyptus diversicolor \N \N \N \N \N 105799 V.walteri Viola Viola walteri prostrate blue violet \N \N \N \N 105800 S.candolleana Senna Senna candolleana \N \N \N \N \N 105801 E.alashanicus Elymus Elymus alashanicus \N \N \N \N \N 105802 F.morobensis Ficus Ficus morobensis \N \N \N \N \N 105803 R.krameri Rossioglossum Rossioglossum krameri \N \N \N \N \N 105804 A.thaliana Arabidopsis Arabidopsis thaliana mouse-ear cress,thale cress,thale-cress \N \N \N \N 105805 A.rostrata Aosa Aosa rostrata \N \N \N \N \N 105806 P.rupicola Pentactina Pentactina rupicola \N \N \N \N \N 105807 B.kuhlmannii Banara Banara kuhlmannii \N \N \N \N \N 105808 P.incanum Pycnanthemum Pycnanthemum incanum \N \N \N \N \N 105809 S.peplidifolia Saxifraga Saxifraga peplidifolia \N \N \N \N \N 105810 E.lamarckii Euphorbia Euphorbia lamarckii \N \N \N \N \N 105811 \N genus Lomelosia \N \N \N \N \N 105812 T.dubianskyi Tragopogon Tragopogon dubianskyi \N \N \N \N \N 105813 \N genus Windsorina \N \N \N \N \N 105814 \N genus Baskervilla \N \N \N \N \N 105815 C.longus Cyperus Cyperus longus galingale \N \N \N \N 105816 H.coarctata Haworthia Haworthia coarctata \N \N \N \N \N 105817 A.rosea Aitchisonia Aitchisonia rosea \N \N \N \N \N 105818 C.micranthum Cyathostemma Cyathostemma micranthum \N \N \N \N \N 105819 \N genus Fitzwillia \N \N \N \N \N 105820 G.aphylla Geosiris Geosiris aphylla \N \N \N \N \N 105821 O.2507 Oncidium Oncidium sp. Whitten 2507 \N \N \N \N \N 105822 A.arborea Aristolochia Aristolochia arborea \N \N \N \N \N 105823 C.lomakini Cousinia Cousinia lomakini \N \N \N \N \N 105824 M.howeana Melaleuca Melaleuca howeana \N \N \N \N \N 105825 F.moschata Ferula Ferula moschata \N \N \N \N \N 105826 R.japonica Ranzania Ranzania japonica \N \N \N \N \N 105827 D.kochii Descurainia Descurainia kochii \N \N \N \N \N 105828 \N genus Selinum \N \N \N \N \N 105829 D.fanshawei Drypetes Drypetes fanshawei \N \N \N \N \N 105830 A.elata Actaea Actaea elata \N \N \N \N \N 105831 X.O-396 Xylobium Xylobium sp. Chase O-396 \N \N \N \N \N 105832 O.elliptica Olearia Olearia elliptica \N \N \N \N \N 105833 \N varietas Mollugo nudicaulis var. navassensis \N \N \N \N \N 105834 C.klamathensis Carex Carex klamathensis \N \N \N \N \N 105835 C.nana Castilleja Castilleja nana \N \N \N \N \N 105836 \N genus Micromyrtus \N \N \N \N \N 105837 \N genus Carya \N \N \N \N \N 105838 \N genus Androsiphon \N \N \N \N \N 105839 A.schultzii Asteriscus Asteriscus schultzii \N \N \N \N \N 105840 S.laxa Simplicia Simplicia laxa \N \N \N \N \N 105841 B.uncinata Bowlesia Bowlesia uncinata \N \N \N \N \N 105842 B.panamensis Borojoa Borojoa panamensis \N \N \N \N \N 105843 C.balansae Cuscuta Cuscuta balansae \N \N \N \N \N 105844 H.confertum Helichrysum Helichrysum confertum \N \N \N \N \N 105845 \N genus Leptonychia \N \N \N \N \N 105846 V.officinalis Veronica Veronica officinalis common speedwell \N \N \N \N 105847 \N genus Chrysocephalum \N \N \N \N \N 105848 L.floccosa Limnanthes Limnanthes floccosa wooly meadowfoam \N \N \N \N 105849 P.arenaria Plantago Plantago arenaria French psyllium,sand plantain \N \N \N \N 105850 P.'Waitaha' Pimelea Pimelea sp. 'Waitaha' \N \N \N \N \N 105851 R.nakaharae Rhododendron Rhododendron nakaharae \N \N \N \N \N 105852 S.fusiforme Solanum Solanum fusiforme \N \N \N \N \N 105853 P.venosa Pterostylis Pterostylis venosa \N \N \N \N \N 105854 \N varietas Lonicera trichosantha var. trichosantha \N \N \N \N \N 105855 G.strigosa Gaultheria Gaultheria strigosa \N \N \N \N \N 105856 C.iowense Chrysosplenium Chrysosplenium iowense \N \N \N \N \N 105857 N.punctata Notelaea Notelaea punctata \N \N \N \N \N 105858 H.fasciculatum Hypericum Hypericum fasciculatum \N \N \N \N \N 105859 S.stellarioides Schiedea Schiedea stellarioides \N \N \N \N \N 105860 P.uncinata Pityrodia Pityrodia uncinata \N \N \N \N \N 105861 M.japonica Mitella Mitella japonica \N \N \N \N \N 105862 A.cryptanthum Achyrospermum Achyrospermum cryptanthum \N \N \N \N \N 105863 C.pseudophragmites Calamagrostis Calamagrostis pseudophragmites \N \N \N \N \N 105864 G.capitis-viridis Gossypium Gossypium capitis-viridis \N \N \N \N \N 105865 G.adenothrix Gaultheria Gaultheria adenothrix \N \N \N \N \N 105866 S.persica Salicornia Salicornia persica \N \N \N \N \N 105867 \N genus Brachyscome \N \N \N \N \N 105868 \N genus Heterolepis \N \N \N \N \N 105869 R.scoparia Richea Richea scoparia \N \N \N \N \N 105870 I.bemarahaensis Indigofera Indigofera bemarahaensis \N \N \N \N \N 105871 D.scandens Dinochloa Dinochloa scandens \N \N \N \N \N 105872 T.verticillata Trichogyne Trichogyne verticillata \N \N \N \N \N 105873 E.neglectum Eriocaulon Eriocaulon neglectum \N \N \N \N \N 105874 M.unipinnata Mimosa Mimosa unipinnata \N \N \N \N \N 105875 A.IP-2011 Agrostophyllum Agrostophyllum sp. IP-2011 \N \N \N \N \N 105876 G.flava Glandularia Glandularia flava \N \N \N \N \N 105877 C.SH-2010 Clethra Clethra sp. SH-2010 \N \N \N \N \N 105878 M.subspicata Mandevilla Mandevilla subspicata \N \N \N \N \N 105879 P.lobata Passiflora Passiflora lobata \N \N \N \N \N 105880 C.juergensii Chusquea Chusquea juergensii \N \N \N \N \N 105881 A.2235 Actinocephalus Actinocephalus sp. Giulietti 2235 \N \N \N \N \N 105882 P.nodosus Physocaulis Physocaulis nodosus \N \N \N \N \N 105883 D.litigiosus Drymophloeus Drymophloeus litigiosus \N \N \N \N \N 105884 G.liliacea Govenia Govenia liliacea \N \N \N \N \N 105885 \N genus Oreochrysum \N \N \N \N \N 105886 \N genus Eustrephus \N \N \N \N \N 105887 A.carpatica Anthemis Anthemis carpatica \N \N \N \N \N 105888 G.albobracteata Globba Globba albobracteata \N \N \N \N \N 105889 T.systola Tulipa Tulipa systola \N \N \N \N \N 105890 S.affinis Siphocampylus Siphocampylus affinis \N \N \N \N \N 105891 \N genus Limosella \N \N \N \N \N 105892 H.procumbens Houstonia Houstonia procumbens roundleaf bluet \N \N \N \N 105893 C.hirtissima Carex Carex hirtissima \N \N \N \N \N 105894 \N family Iteaceae \N \N \N \N \N 105895 V.cruciatum Viscum Viscum cruciatum \N \N \N \N \N 105896 D.lutescens Dypsis Dypsis lutescens \N \N \N \N \N 105897 P.pedersenii Potentilla Potentilla pedersenii \N \N \N \N \N 105898 M.amoena Magnolia Magnolia amoena \N \N \N \N \N 105899 A.cymbicarpos Astragalus Astragalus cymbicarpos \N \N \N \N \N 105900 \N varietas Malacothrix saxatilis var. tenuifolia \N \N \N \N \N 105901 C.enerve Corymbium Corymbium enerve \N \N \N \N \N 105902 F.adelpha Ficus Ficus adelpha \N \N \N \N \N 105903 E.distorta Erica Erica distorta \N \N \N \N \N 105904 C.hirta Carex Carex hirta \N \N \N \N \N 105905 \N varietas Cucurbita argyrosperma var. stenosperma \N \N \N \N \N 105906 S.flaviflora Shorea Shorea flaviflora \N \N \N \N \N 105907 H.baeuerlenii Haloragodendron Haloragodendron baeuerlenii \N \N \N \N \N 105908 P.magnifica Parodia Parodia magnifica \N \N \N \N \N 105909 F.sylvatica Fagus Fagus sylvatica European beech \N \N \N \N 105910 B.potamophila Begonia Begonia potamophila \N \N \N \N \N 105911 M.94-30 Mabea Mabea sp. Bell et al. 94-30 \N \N \N \N \N 105912 M.sobolifera Maranta Maranta sobolifera \N \N \N \N \N 105913 P.americana Pachysandra Pachysandra americana \N \N \N \N \N 105914 \N varietas Triticum urartu var. pubescentiurartu \N \N \N \N \N 105915 \N genus Typha \N \N \N \N \N 105916 A.caulescens Agapanthus Agapanthus caulescens \N \N \N \N \N 105917 B.javanica Baccaurea Baccaurea javanica \N \N \N \N \N 105918 P.paramaribense Piper Piper paramaribense \N \N \N \N \N 105919 L.pilosus Lupinus Lupinus pilosus \N \N \N \N \N 105920 S.franchetiana Swertia Swertia franchetiana \N \N \N \N \N 105921 C.arcuatus Cynodon Cynodon arcuatus \N \N \N \N \N 105922 F.pulverulenta Frankenia Frankenia pulverulenta \N \N \N \N \N 105923 \N varietas Humulus lupulus var. neomexicanus \N \N \N \N \N 105924 P.bahiensis Psychotria Psychotria bahiensis \N \N \N \N \N 105925 L.oblongifolius Lotus Lotus oblongifolius \N \N \N \N \N 105926 P.1781 Pericopsis Pericopsis sp. Smith 1781 \N \N \N \N \N 105927 \N genus Hibbertia \N \N \N \N \N 105928 P.caudella Physalis Physalis caudella \N \N \N \N \N 105929 A.askius Astragalus Astragalus askius \N \N \N \N \N 105930 A.brassii Asteromyrtus Asteromyrtus brassii \N \N \N \N \N 105931 O.barbatus Orthocarpus Orthocarpus barbatus \N \N \N \N \N 105932 W.rigida Westringia Westringia rigida \N \N \N \N \N 105933 A.colchica Astrantia Astrantia colchica \N \N \N \N \N 105934 Q.marmorata Quesnelia Quesnelia marmorata \N \N \N \N \N 105935 C.ophiopogoides Chirita Chirita ophiopogoides \N \N \N \N \N 105936 P.aurea Packera Packera aurea golden groundsel \N \N \N \N 105937 C.cumberlandensis Carex Carex cumberlandensis \N \N \N \N \N 105938 \N subspecies Calystegia silvatica subsp. disjuncta \N \N \N \N \N 105939 \N genus Eriodictyon \N \N \N \N \N 105940 G.LC9192-2 Gossypium Gossypium sp. LC9192-2 \N \N \N \N \N 105941 A.luciae-brauniae Ageratina Ageratina luciae-brauniae \N \N \N \N \N 105942 S.adenophylla Symplocos Symplocos adenophylla \N \N \N \N \N 105943 M.angulata Macaranga Macaranga angulata \N \N \N \N \N 105944 P.scabriuscula Protea Protea scabriuscula \N \N \N \N \N 105945 B.fagifolia Begonia Begonia fagifolia \N \N \N \N \N 105946 \N subspecies Paeonia clusii subsp. rhodia \N \N \N \N \N 105947 D.zenkeri Diospyros Diospyros zenkeri \N \N \N \N \N 105948 \N subspecies Conostylis caricina subsp. caricina \N \N \N \N \N 105949 L.parviflorus Leucopogon Leucopogon parviflorus \N \N \N \N \N 105950 D.obscura Digitalis Digitalis obscura willow-leaf foxglove \N \N \N \N 105951 L.glabrifolia Letestudoxa Letestudoxa glabrifolia \N \N \N \N \N 105952 P.cupularis Psychotria Psychotria cupularis \N \N \N \N \N 105953 D.podophylla Daviesia Daviesia podophylla \N \N \N \N \N 105954 \N genus Cyphocarpus \N \N \N \N \N 105955 \N genus Pseudoxandra \N \N \N \N \N 105956 I.aphylla Iris Iris aphylla \N \N \N \N \N 105957 D.formosa Dicentra Dicentra formosa Pacific bleeding-heart \N \N \N \N 105958 A.backhousianum Allium Allium backhousianum \N \N \N \N \N 105959 A.petrophila Agave Agave petrophila \N \N \N \N \N 105960 A.degenii Aconitum Aconitum degenii \N \N \N \N \N 105961 G.pusilla Gagea Gagea pusilla \N \N \N \N \N 105962 M.antrorsa Mimosa Mimosa antrorsa \N \N \N \N \N 105963 \N genus Leopoldinia \N \N \N \N \N 105964 S.hilsenbergii Streptocarpus Streptocarpus hilsenbergii \N \N \N \N \N 105965 J.11541 Junellia Junellia sp. Taylor and Pool 11541 \N \N \N \N \N 105966 L.philippinensis Leea Leea philippinensis \N \N \N \N \N 105967 H.ridleyi Hohenbergia Hohenbergia ridleyi \N \N \N \N \N 105968 H.phyllostachya Hypoestes Hypoestes phyllostachya \N \N \N \N \N 105969 A.magna Ayenia Ayenia magna \N \N \N \N \N 105970 A.ramosum Allium Allium ramosum fragrant garlic \N \N \N \N 105971 \N varietas Juncus arcticus var. mexicanus \N \N \N \N \N 105972 R.serpentina Rauvolfia Rauvolfia serpentina devilpepper,serpentwood \N \N \N \N 105973 P.barbatus Plectranthus Plectranthus barbatus \N \N \N \N \N 105974 C.brunnea Coprosma Coprosma brunnea \N \N \N \N \N 105975 E.punctata Eriochloa Eriochloa punctata Louisiana cup grass \N \N \N \N 105976 G.canariensis Genista Genista canariensis \N \N \N \N \N 105977 R.sambucina Rosa Rosa sambucina \N \N \N \N \N 105978 A.javanica Alpinia Alpinia javanica \N \N \N \N \N 105979 E.ravenii Encelia Encelia ravenii \N \N \N \N \N 105980 P.sintenisii Pimpinella Pimpinella sintenisii \N \N \N \N \N 105981 A.parryi Atriplex Atriplex parryi \N \N \N \N \N 105982 B.5654 Besleria Besleria sp. J.L. Clark 5654 \N \N \N \N \N 105983 D.annulata Dissochaeta Dissochaeta annulata \N \N \N \N \N 105984 P.tenuifolium Protium Protium tenuifolium \N \N \N \N \N 105985 Y.angustissima Yucca Yucca angustissima \N \N \N \N \N 105987 C.rigida Clusia Clusia rigida \N \N \N \N \N 105988 F.longisiliqua Farsetia Farsetia longisiliqua \N \N \N \N \N 105989 D.caduca Drosera Drosera caduca \N \N \N \N \N 105990 \N subspecies Asaemia minuta subsp. inermis \N \N \N \N \N 105991 D.longifolia Disporopsis Disporopsis longifolia \N \N \N \N \N 105992 T.hookerianum Tropaeolum Tropaeolum hookerianum \N \N \N \N \N 105993 \N subtribe Podochilinae \N \N \N \N \N 105994 S.tricuspidatus Senecio Senecio tricuspidatus \N \N \N \N \N 105995 X.tecta Xiphotheca Xiphotheca tecta \N \N \N \N \N 105996 L.nana Linguella Linguella nana \N \N \N \N \N 105997 C.betsiliensis Colpogyne Colpogyne betsiliensis \N \N \N \N \N 105998 C.oblongifolium Cestrum Cestrum oblongifolium \N \N \N \N \N 105999 \N varietas Mentzelia pumila var. lagarosa \N \N \N \N \N 106000 \N varietas Barnadesia lehmannii var. villosa \N \N \N \N \N 106001 A.stellerianum Allium Allium stellerianum \N \N \N \N \N 106002 D.hispida Ditassa Ditassa hispida \N \N \N \N \N 106003 T.sp. Tilia Tilia sp. \N \N \N \N \N 106004 T.obovatum Theobroma Theobroma obovatum \N \N \N \N \N 106005 S.oblongifolia Sarcolaena Sarcolaena oblongifolia \N \N \N \N \N 106006 A.culionensis Alocasia Alocasia culionensis \N \N \N \N \N 106007 F.gypsophila Fagonia Fagonia gypsophila \N \N \N \N \N 106008 G.chloranthus Gonolobus Gonolobus chloranthus \N \N \N \N \N 106009 P.nana Polygala Polygala nana \N \N \N \N \N 106010 \N genus Rafinesquia \N \N \N \N \N 106011 A.debilis Aralia Aralia debilis \N \N \N \N \N 106012 C.amplissima Capparis Capparis amplissima \N \N \N \N \N 106013 C.multiflorus Cytisus Cytisus striatus x Cytisus multiflorus \N \N \N \N \N 106014 S.delavayi Sapindus Sapindus delavayi \N \N \N \N \N 106015 P.cuneifolia Proustia Proustia cuneifolia \N \N \N \N \N 106016 M.rufidula Micranthes Micranthes rufidula \N \N \N \N \N 106017 \N tribe Detarieae \N \N \N \N \N 106018 H.pedunculata Halimione Halimione pedunculata \N \N \N \N \N 106019 T.changii Tephroseris Tephroseris changii \N \N \N \N \N 106020 M.decipiens Mammillaria Mammillaria decipiens \N \N \N \N \N 106021 F.theophrastoides Ficus Ficus theophrastoides \N \N \N \N \N 106022 A.scabra Aeschynomene Aeschynomene scabra \N \N \N \N \N 106023 T.sericea Terminalia Terminalia sericea clusterleaf \N \N \N \N 106024 \N genus Saponaria soapwort \N \N \N \N 106025 A.boliviana Apurimacia Apurimacia boliviana \N \N \N \N \N 106026 E.pulchella Eucalyptus Eucalyptus pulchella \N \N \N \N \N 106027 C.aerius Crocus Crocus aerius \N \N \N \N \N 106028 \N varietas Allium fimbriatum var. fimbriatum \N \N \N \N \N 106029 \N subspecies Castilleja integrifolia subsp. integrifolia \N \N \N \N \N 106030 S.dennekense Solanum Solanum dennekense \N \N \N \N \N 106031 \N varietas Carex conferta var. leptosaccus \N \N \N \N \N 106032 \N genus Welwitschiella \N \N \N \N \N 106033 C.macrocephalus Cypholophus Cypholophus macrocephalus \N \N \N \N \N 106034 \N genus Austrosynotis \N \N \N \N \N 106035 A.mollis Acanthus Acanthus mollis artist's acanthus,sea-dock,sea-holly \N \N \N \N 106036 P.amygdaliformis Pyrus Pyrus amygdaliformis \N \N \N \N \N 106037 C.staudtii Cryptosepalum Cryptosepalum staudtii \N \N \N \N \N 106038 P.duarteana Polygala Polygala duarteana \N \N \N \N \N 106039 F.leucotricha Ficus Ficus leucotricha \N \N \N \N \N 106040 H.KMC-2001 Hiptage Hiptage sp. KMC-2001 \N \N \N \N \N 106041 K.ixine Krameria Krameria ixine \N \N \N \N \N 106042 P.brevistyla Parnassia Parnassia brevistyla \N \N \N \N \N 106043 J.cypria Jurinea Jurinea cypria \N \N \N \N \N 106044 \N genus Lorandersonia \N \N \N \N \N 106045 L.calicaris Litsea Litsea calicaris \N \N \N \N \N 106046 P.glutinicaule Pachyphytum Pachyphytum glutinicaule \N \N \N \N \N 106047 B.tenuifolium Biarum Biarum tenuifolium \N \N \N \N \N 106048 C.lungshenensis Camellia Camellia lungshenensis \N \N \N \N \N 106049 B.triaena Bouteloua Bouteloua triaena \N \N \N \N \N 106050 \N genus Glyptopleura \N \N \N \N \N 106051 A.thyrsiflora Aganope Aganope thyrsiflora \N \N \N \N \N 106052 \N genus Declieuxia \N \N \N \N \N 106053 C.papuana Cardamine Cardamine papuana \N \N \N \N \N 106054 T.nervosa Teline Teline nervosa \N \N \N \N \N 106055 S.tonkinensis Styrax Styrax tonkinensis \N \N \N \N \N 106056 \N subspecies Gymnocalycium marsoneri subsp. megatae \N \N \N \N \N 106057 \N genus Mariosousa \N \N \N \N \N 106058 A.praemixtum Allium Allium praemixtum \N \N \N \N \N 106059 P.monogynus Physocarpus Physocarpus monogynus mountain ninebark \N \N \N \N 106060 M.kurzii Macaranga Macaranga kurzii \N \N \N \N \N 106061 L.alutacea Lecythis Lecythis alutacea \N \N \N \N \N 106062 \N genus Deverra \N \N \N \N \N 106063 A.nitidum Askidiosperma Askidiosperma nitidum \N \N \N \N \N 106064 \N varietas Cnidoscolus urens var. stimulosus \N \N \N \N \N 106065 L.multifida Leucospora Leucospora multifida \N \N \N \N \N 106066 G.12664 Gomphostigma Gomphostigma sp. Goldblatt 12664 \N \N \N \N \N 106067 B.nivea Banksia Banksia nivea \N \N \N \N \N 106068 A.ericoides Aotus Aotus ericoides \N \N \N \N \N 106069 S.congesta Symplocos Symplocos congesta \N \N \N \N \N 106070 S.lucida Strychnos Strychnos lucida \N \N \N \N \N 106071 P.capillare Panicum Panicum capillare witchgrass \N \N \N \N 106072 A.skirrhobasis Aphanostephus Aphanostephus skirrhobasis \N \N \N \N \N 106073 C.polyneura Carpinus Carpinus polyneura \N \N \N \N \N 106074 U.arizonica Urochloa Urochloa arizonica \N \N \N \N \N 106075 \N genus Caulanthus \N \N \N \N \N 106076 G.philippinensis Greeniopsis Greeniopsis philippinensis \N \N \N \N \N 106077 P.schistostegia Pedicularis Pedicularis schistostegia \N \N \N \N \N 106078 \N varietas Amicia micrantha var. micrantha \N \N \N \N \N 106079 D.reflexa Dracaena Dracaena reflexa \N \N \N \N \N 106080 R.leucomallon Rhytidophyllum Rhytidophyllum leucomallon \N \N \N \N \N 106081 V.gracilis Vittadinia Vittadinia gracilis \N \N \N \N \N 106082 \N genus Buxus \N \N \N \N \N 106083 \N varietas Claytonia megarhiza var. megarhiza \N \N \N \N \N 106084 T.arabica Trigonella Trigonella arabica \N \N \N \N \N 106085 L.attenuatus Lasianthus Lasianthus attenuatus \N \N \N \N \N 106086 H.walteri Hypericum Hypericum walteri \N \N \N \N \N 106087 G.mandonii Gomphrena Gomphrena mandonii \N \N \N \N \N 106088 R.proxima Ruellia Ruellia proxima \N \N \N \N \N 106089 C.cephalophora Cistanthe Cistanthe cephalophora \N \N \N \N \N 106090 P.laevigata Prosopis Prosopis laevigata \N \N \N \N \N 106091 A.rupestre Argostemma Argostemma rupestre \N \N \N \N \N 106092 \N genus Myrmephytum \N \N \N \N \N 106093 B.hyssopifolia Bassia Bassia hyssopifolia fivehorn smotherweed \N \N \N \N 106094 \N genus Gronovia \N \N \N \N \N 106095 C.virescens Chloraea Chloraea virescens \N \N \N \N \N 106096 Z.tuberculosa Zeyheria Zeyheria tuberculosa \N \N \N \N \N 106097 D.melanophyma Dioscorea Dioscorea melanophyma \N \N \N \N \N 106098 Q.mammillaris Quaqua Quaqua mammillaris \N \N \N \N \N 106099 T.maculata Thladiantha Thladiantha maculata \N \N \N \N \N 106100 P.javanica Polyscias Polyscias javanica \N \N \N \N \N 106101 P.cretacea Prosthechea Prosthechea cretacea \N \N \N \N \N 106102 E.atropurpurea Encyclia Encyclia atropurpurea \N \N \N \N \N 106103 T.panamensis Thismia Thismia panamensis \N \N \N \N \N 106104 \N genus Crossyne \N \N \N \N \N 106105 S.hoefftiana Silene Silene hoefftiana \N \N \N \N \N 106106 B.nitida Bunchosia Bunchosia nitida \N \N \N \N \N 106107 \N no rank environmental samples Taxonomy:319697 \N \N \N \N \N 106108 S.O-334 Scuticaria Scuticaria sp. Chase O-334 \N \N \N \N \N 106109 P.fordiana Prunus Prunus fordiana \N \N \N \N \N 106110 N.cinerea Namibia Namibia cinerea \N \N \N \N \N 106111 F.lehmannii Ferula Ferula lehmannii \N \N \N \N \N 106112 I.amancaes Ismene Ismene amancaes amancay \N \N \N \N 106113 L.magalonii Licuala Licuala magalonii \N \N \N \N \N 106114 A.niebuhriana Aloe Aloe niebuhriana \N \N \N \N \N 106115 L.pichinchensis Lasiocephalus Lasiocephalus pichinchensis \N \N \N \N \N 106116 N.jaredii Navarretia Navarretia jaredii \N \N \N \N \N 106117 S.stuckertii Solanum Solanum stuckertii \N \N \N \N \N 106118 \N subspecies Asclepias cryptoceras subsp. davisii \N \N \N \N \N 106119 A.arenaria Acacia Acacia arenaria \N \N \N \N \N 106120 A.haematochiton Allium Allium haematochiton redskin onion \N \N \N \N 106121 A.glaucescens Arabidella Arabidella glaucescens \N \N \N \N \N 106122 W.yangambensis Warneckea Warneckea yangambensis \N \N \N \N \N 106123 \N genus Ventricularia \N \N \N \N \N 106124 C.smyrnioides Changium Changium smyrnioides \N \N \N \N \N 106125 E.acuminatum Epigeneium Epigeneium acuminatum \N \N \N \N \N 106126 M.fortisiana Macrocarpaea Macrocarpaea fortisiana \N \N \N \N \N 106127 L.stenus Lampranthus Lampranthus stenus \N \N \N \N \N 106128 B.juncea Brassica Brassica juncea Indian mustard,brown mustard \N \N \N \N 106129 A.pinifolia Asteriscus Asteriscus pinifolia \N \N \N \N \N 106130 L.ferrisiae Lasthenia Lasthenia ferrisiae \N \N \N \N \N 106131 S.lineatus Senecio Senecio lineatus \N \N \N \N \N 106132 \N genus Borrichia \N \N \N \N \N 106133 E.californica Eschscholzia Eschscholzia californica California poppy \N \N \N \N 106134 P.imbricatum Phrynium Phrynium imbricatum \N \N \N \N \N 106135 T.fuliginosa Tournefortia Tournefortia fuliginosa \N \N \N \N \N 106136 S.scabrum Sisyrinchium Sisyrinchium scabrum \N \N \N \N \N 106137 D.repens Dichondra Dichondra repens \N \N \N \N \N 106138 \N genus Vietnamosasa \N \N \N \N \N 106139 C.chinense Capsicum Capsicum annuum x Capsicum chinense \N \N \N \N \N 106140 C.elliptica Cornus Cornus elliptica \N \N \N \N \N 106141 A.decemloba Agalinis Agalinis decemloba \N \N \N \N \N 106142 M.chicle Manilkara Manilkara chicle \N \N \N \N \N 106143 \N subspecies Helictotrichon gervaisii subsp. gervaisii \N \N \N \N \N 106144 \N genus Jackiopsis \N \N \N \N \N 106145 P.panicoides Piptochaetium Piptochaetium panicoides \N \N \N \N \N 106146 \N genus Didymocistus \N \N \N \N \N 106147 C.micranthum Colchicum Colchicum micranthum \N \N \N \N \N 106148 A.sylvatica Aesculus Aesculus sylvatica \N \N \N \N \N 106149 E.iancannellii Euphorbia Euphorbia iancannellii \N \N \N \N \N 106150 \N subfamily Panicoideae \N \N \N \N \N 106151 A.acronychioides Acronychia Acronychia acronychioides \N \N \N \N \N 106152 C.maxima Citrus Citrus maxima buntan,pomelo,pummelo,shaddock,yu \N \N \N \N 106153 P.nelsonii Phaseolus Phaseolus nelsonii \N \N \N \N \N 106154 \N subspecies Crocus reticulatus subsp. hittiticus \N \N \N \N \N 106155 C.PJK-2001 Cyanicula Cyanicula sp. PJK-2001 \N \N \N \N \N 106156 M.bijugatus Melicoccus Melicoccus bijugatus \N \N \N \N \N 106157 O.grosseserratum Ostericum Ostericum grosseserratum \N \N \N \N \N 106158 C.arenaria Crotalaria Crotalaria arenaria \N \N \N \N \N 106159 M.glauca Maasia Maasia glauca \N \N \N \N \N 106160 Q.wislizeni Quercus Quercus wislizeni interior live oak \N \N \N \N 106161 S.tenue Schoenocaulon Schoenocaulon tenue \N \N \N \N \N 106162 S.mexicana Sartwellia Sartwellia mexicana \N \N \N \N \N 106163 \N genus Malania \N \N \N \N \N 106164 \N genus Chaetachme \N \N \N \N \N 106165 P.chenopodioides Pseudogynoxys Pseudogynoxys chenopodioides \N \N \N \N \N 106166 \N genus Kniphofia \N \N \N \N \N 106167 T.arizajuliana Tolumnia Tolumnia arizajuliana \N \N \N \N \N 106168 L.ericifolia Lambertia Lambertia ericifolia \N \N \N \N \N 106169 \N varietas Orbexilum pedunculatum var. gracile \N \N \N \N \N 106170 C.sessilis Capparis Capparis sessilis \N \N \N \N \N 106171 C.pulverulentus Costus Costus pulverulentus \N \N \N \N \N 106172 G.uruguensis Guettarda Guettarda uruguensis \N \N \N \N \N 106173 S.cantonensis Speranskia Speranskia cantonensis \N \N \N \N \N 106174 C.capensis Cissampelos Cissampelos capensis \N \N \N \N \N 106175 C.ripensis Croton Croton ripensis \N \N \N \N \N 106176 C.humilis Croton Croton humilis \N \N \N \N \N 106177 A.africanum Argostemma Argostemma africanum \N \N \N \N \N 106178 \N genus Celmisia \N \N \N \N \N 106179 A.durangense Arceuthobium Arceuthobium durangense \N \N \N \N \N 106180 M.auriculata Macaranga Macaranga auriculata \N \N \N \N \N 106181 O.dolichopoda Oxalis Oxalis dolichopoda \N \N \N \N \N 106182 D.lineapetalum Delphinium Delphinium lineapetalum \N \N \N \N \N 106183 E.pinea Erica Erica pinea \N \N \N \N \N 106184 Y.mabryi Yeatesia Yeatesia mabryi \N \N \N \N \N 106185 \N tribe Colurieae \N \N \N \N \N 106186 A.racinae Aechmea Aechmea racinae \N \N \N \N \N 106187 S.12426 Solanum Solanum sp. Goldblatt 12426 \N \N \N \N \N 106188 P.tenuinervis Psychotria Psychotria tenuinervis \N \N \N \N \N 106189 B.salicifolium Bupleurum Bupleurum salicifolium \N \N \N \N \N 106190 H.lanceolatum Helichrysum Helichrysum lanceolatum \N \N \N \N \N 106191 \N varietas Tillandsia fasciculata var. fasciculata \N \N \N \N \N 106192 G.paludosa Gentianopsis Gentianopsis paludosa \N \N \N \N \N 106193 C.japonicum Cercidiphyllum Cercidiphyllum japonicum \N \N \N \N \N 106194 \N subspecies Acacia victoriae subsp. arida \N \N \N \N \N 106195 \N genus Oxyceros \N \N \N \N \N 106196 \N genus Jacmaia \N \N \N \N \N 106197 P.arisanensis Peliosanthes Peliosanthes arisanensis \N \N \N \N \N 106198 \N varietas Angelica dahurica var. formosana \N \N \N \N \N 106199 D.spruceana Dieffenbachia Dieffenbachia spruceana \N \N \N \N \N 106200 A.gussonei Asperula Asperula gussonei \N \N \N \N \N 106201 \N subspecies Euphorbia tithymaloides subsp. angustifolia \N \N \N \N \N 106202 L.franchetii Leontopodium Leontopodium franchetii \N \N \N \N \N 106203 \N varietas Hymenaea courbaril var. stilbocarpa \N \N \N \N \N 106204 G.maranguensis Gymnosporia Gymnosporia maranguensis \N \N \N \N \N 106205 C.termitaria Cadaba Cadaba termitaria \N \N \N \N \N 106206 G.intermedium Gymnostoma Gymnostoma intermedium \N \N \N \N \N 106207 P.tetracantha Plectrocarpa Plectrocarpa tetracantha \N \N \N \N \N 106208 D.oppositifolia Disperis Disperis oppositifolia \N \N \N \N \N 106209 B.catalpifolia Byttneria Byttneria catalpifolia \N \N \N \N \N 106210 \N family Scheuchzeriaceae \N \N \N \N \N 106211 \N varietas Hemerocallis fulva var. angustifolia \N \N \N \N \N 106212 I.repens Ixeris Ixeris repens hamanigana \N \N \N \N 106213 P.strobilacea Platycarya Platycarya strobilacea \N \N \N \N \N 106214 E.359 Elettariopsis Elettariopsis sp. Sakai 359 \N \N \N \N \N 106215 \N genus Loxococcus \N \N \N \N \N 106216 \N genus Craspedia \N \N \N \N \N 106217 S.conferta Swartzia Swartzia conferta \N \N \N \N \N 106218 A.perpexus Astragalus Astragalus perpexus \N \N \N \N \N 106219 L.arcuata Ludwigia Ludwigia arcuata \N \N \N \N \N 106220 E.rubiginosa Eucalyptus Eucalyptus rubiginosa \N \N \N \N \N 106221 \N genus Epipactis \N \N \N \N \N 106222 \N genus Napeanthus \N \N \N \N \N 106223 C.228 Cyrtandra Cyrtandra sp. Cubey & Scott 228 \N \N \N \N \N 106224 C.hookerianum Crinodendron Crinodendron hookerianum \N \N \N \N \N 106225 P.senegalensis Pegolettia Pegolettia senegalensis \N \N \N \N \N 106226 S.villosa Strychnos Strychnos villosa \N \N \N \N \N 106227 \N genus Griffithella \N \N \N \N \N 106228 \N varietas Horkelia fusca var. parviflora \N \N \N \N \N 106229 P.siphonantha Pedicularis Pedicularis siphonantha \N \N \N \N \N 106230 T.JK3727(2) unclassified Taraxacum Taraxacum (sect. Fontana) sp. JK3727(2) \N \N \N \N \N 106231 N.marina Najas Najas marina holly-leaf naiad,spiny naiad \N \N \N \N 106232 S.misella Salvia Salvia misella tropical sage \N \N \N \N 106233 P.2001 Petopentia Petopentia sp. SB 2001 \N \N \N \N \N 106234 P.solmsianum Piper Piper solmsianum \N \N \N \N \N 106235 \N tribe Benthamiellieae \N \N \N \N \N 106236 \N genus Perriera \N \N \N \N \N 106237 D.macrostachyum Dendrobium Dendrobium macrostachyum \N \N \N \N \N 106238 B.prostrata Bassia Bassia prostrata \N \N \N \N \N 106239 N.atra Nonea Nonea atra \N \N \N \N \N 106240 R.whiteana Rhodamnia Rhodamnia whiteana white malletwood \N \N \N \N 106241 M.purpurea Marantochloa Marantochloa purpurea \N \N \N \N \N 106242 K.lepidota Kayea Kayea lepidota \N \N \N \N \N 106243 S.phylicifolia Salix Salix phylicifolia tea-leaf willow \N \N \N \N 106244 C.cophocarpa Callitriche Callitriche cophocarpa \N \N \N \N \N 106245 L.elaeosperma Licania Licania elaeosperma \N \N \N \N \N 106246 M.parvifolia Mansoa Mansoa parvifolia \N \N \N \N \N 106247 E.flavum Eriogonum Eriogonum flavum \N \N \N \N \N 106248 Z.triflora Zabelia Zabelia triflora \N \N \N \N \N 106249 O.hauensteinii Oncidium Oncidium hauensteinii \N \N \N \N \N 106250 A.dasycarpum Acosmium Acosmium dasycarpum \N \N \N \N \N 106251 D.JS-2008 Dichelachne Dichelachne sp. JS-2008 \N \N \N \N \N 106252 G.multiflora Garcinia Garcinia multiflora \N \N \N \N \N 106253 \N no rank Triticum urartu var. nigrum \N \N \N \N \N 106254 R.porphyrantha Ridleyandra Ridleyandra porphyrantha \N \N \N \N \N 106255 B.borneensis Blastus Blastus borneensis \N \N \N \N \N 106256 P.nubigena Protea Protea nubigena \N \N \N \N \N 106257 \N varietas Vicia narbonensis var. narbonensis \N \N \N \N \N 106258 G.quadrangulus Gladiolus Gladiolus quadrangulus \N \N \N \N \N 106259 S.talbotii Soyauxia Soyauxia talbotii \N \N \N \N \N 106260 L.incanus Leontodon Leontodon incanus \N \N \N \N \N 106261 A.nepetoides Agastache Agastache nepetoides \N \N \N \N \N 106262 O.gracilis Onobrychis Onobrychis gracilis \N \N \N \N \N 106263 B.gracilis Bletia Bletia gracilis \N \N \N \N \N 106264 I.madagascarica Imerinaea Imerinaea madagascarica \N \N \N \N \N 106265 L.kjellmaniana Luzula Luzula kjellmaniana \N \N \N \N \N 106266 N.1-1633 Nasa Nasa cf. cymbopetala 1-1633 \N \N \N \N \N 106267 M.eastwoodiae Mimulus Mimulus eastwoodiae \N \N \N \N \N 106268 M.tomentosa Marsdenia Marsdenia tomentosa \N \N \N \N \N 106269 B.tridentata Bajacalia Bajacalia tridentata \N \N \N \N \N 106270 L.kaalae Labordia Labordia kaalae \N \N \N \N \N 106271 D.huoshanense Dendrobium Dendrobium huoshanense \N \N \N \N \N 106272 T.symplocifolia Tutcheria Tutcheria symplocifolia \N \N \N \N \N 106273 H.acerosa Houstonia Houstonia acerosa needleleaf bluet \N \N \N \N 106274 D.nuttallianum Delphinium Delphinium nuttallianum dwarf larkspur,meadow larkspur \N \N \N \N 106275 D.parviflorus Dicranocarpus Dicranocarpus parviflorus pitchfork \N \N \N \N 106276 \N genus Catopsis \N \N \N \N \N 106277 S.confusa Spatalla Spatalla confusa \N \N \N \N \N 106279 P.fruticosus Plectranthus Plectranthus fruticosus \N \N \N \N \N 106280 P.hennisianum Paphiopedilum Paphiopedilum hennisianum \N \N \N \N \N 106281 P.amoena Phlox Phlox amoena \N \N \N \N \N 106282 \N varietas Peperomia rotundifolia var. rotundifolia \N \N \N \N \N 106283 \N genus Eremospatha \N \N \N \N \N 106284 H.stenopterum Heracleum Heracleum stenopterum \N \N \N \N \N 106285 C.pustulatum Cynoglossum Cynoglossum pustulatum \N \N \N \N \N 106286 C.falcisectus Cheirolophus Cheirolophus falcisectus \N \N \N \N \N 106287 \N subspecies Veronica hectorii subsp. demissa \N \N \N \N \N 106288 P.fraseri Photinia Photinia x fraseri \N \N \N \N \N 106289 I.loczyi Iris Iris loczyi \N \N \N \N \N 106290 \N subspecies Colchicum cupanii subsp. cupanii \N \N \N \N \N 106291 \N subspecies Phlox pilosa subsp. ozarkana \N \N \N \N \N 106292 S.pierrei Scyphellandra Scyphellandra pierrei \N \N \N \N \N 106293 O.oligophyllum Ornithogalum Ornithogalum oligophyllum \N \N \N \N \N 106294 C.ruscifolia Cliffortia Cliffortia juniperina x Cliffortia ruscifolia \N \N \N \N \N 106295 S.glabra Schisandra Schisandra glabra bay starvine,wild sarsaparilla \N \N \N \N 106296 I.tolucana Ilex Ilex tolucana \N \N \N \N \N 106297 C.fracta Carex Carex fracta \N \N \N \N \N 106298 A.plurifoliatum Allium Allium plurifoliatum \N \N \N \N \N 106299 A.spathulatum Aeonium Aeonium spathulatum \N \N \N \N \N 106300 V.prionophylla Valeriana Valeriana prionophylla \N \N \N \N \N 106301 H.physaloides Hibiscus Hibiscus physaloides \N \N \N \N \N 106302 C.calycina Calceolaria Calceolaria calycina \N \N \N \N \N 106303 R.dumetorum Rosa Rosa gallica x Rosa dumetorum \N \N \N \N \N 106304 H.peruviana Hydrangea Hydrangea seemannii x Hydrangea peruviana \N \N \N \N \N 106305 H.verrucosa Hymenaea Hymenaea verrucosa \N \N \N \N \N 106306 R.vestitum Rytidosperma Rytidosperma vestitum \N \N \N \N \N 106307 G.macrosperma Guettarda Guettarda macrosperma \N \N \N \N \N 106308 P.curviseta Potentilla Potentilla curviseta \N \N \N \N \N 106309 \N genus Deherainia \N \N \N \N \N 106310 C.fastigiata Cynorkis Cynorkis fastigiata \N \N \N \N \N 106311 R.niveum Ribes Ribes niveum \N \N \N \N \N 106312 \N subspecies Fraxinus chinensis subsp. rhynchophylla \N \N \N \N \N 106313 \N family Brunelliaceae \N \N \N \N \N 106314 \N genus Zelkova \N \N \N \N \N 106315 G.stephanotrichus Gonolobus Gonolobus stephanotrichus \N \N \N \N \N 106316 I.dichotoma Iris Iris dichotoma \N \N \N \N \N 106317 A.robustum Acer Acer robustum \N \N \N \N \N 106318 G.tournefortiopsis Guettarda Guettarda tournefortiopsis \N \N \N \N \N 106319 L.australis Lotus Lotus australis Australian trefoil \N \N \N \N 106320 P.maprouneifolia Pseudolachnostylis Pseudolachnostylis maprouneifolia \N \N \N \N \N 106321 \N genus Finlaysonia \N \N \N \N \N 106322 H.praetorii Hoya Hoya praetorii \N \N \N \N \N 106323 P.rigida Plantago Plantago rigida \N \N \N \N \N 106324 C.altaica Crataegus Crataegus altaica \N \N \N \N \N 106325 G.verecunda Glandularia Glandularia verecunda \N \N \N \N \N 106326 S.tenuifolia Symplocos Symplocos tenuifolia \N \N \N \N \N 106327 F.richardsonii Festuca Festuca richardsonii \N \N \N \N \N 106328 \N genus Hardwickia \N \N \N \N \N 106329 C.3354 Chomelia Chomelia sp. Bremer et al. 3354 \N \N \N \N \N 106330 A.stricta Alectra Alectra stricta \N \N \N \N \N 106331 P.armeniaca Prunus Prunus armeniaca apricot \N \N \N \N 106332 P.P141 Physalis Physalis sp. P141 \N \N \N \N \N 106333 C.purpurea Crepis Crepis purpurea \N \N \N \N \N 106334 C.bracteata Conostegia Conostegia bracteata \N \N \N \N \N 106335 \N genus Augusta \N \N \N \N \N 106336 S.retusum Sedum Sedum retusum \N \N \N \N \N 106337 G.isatidicarpum Gymnophyton Gymnophyton isatidicarpum \N \N \N \N \N 106338 P.haussknechtii Prangos Prangos haussknechtii \N \N \N \N \N 106339 O.microphyllum Origanum Origanum microphyllum \N \N \N \N \N 106340 D.ambilaensis Dypsis Dypsis ambilaensis \N \N \N \N \N 106341 C.macrorrhiza Carex Carex macrorrhiza \N \N \N \N \N 106342 C.umbellata Cuscuta Cuscuta umbellata \N \N \N \N \N 106343 R.haofui Rhododendron Rhododendron haofui \N \N \N \N \N 106344 S.alopecuroides Selago Selago alopecuroides \N \N \N \N \N 106345 A.vulgaris Alchemilla Alchemilla vulgaris \N \N \N \N \N 106346 M.stella-de-tacubaya Mammillaria Mammillaria stella-de-tacubaya \N \N \N \N \N 106347 \N genus Hydrophylax \N \N \N \N \N 106348 P.platyanthum Piptatherum Piptatherum platyanthum \N \N \N \N \N 106349 D.vitiensis Drepananthus Drepananthus vitiensis \N \N \N \N \N 106350 T.hypoleuca Telosiphonia Telosiphonia hypoleuca \N \N \N \N \N 106351 A.australe Acroptilon Acroptilon australe \N \N \N \N \N 106352 \N varietas Heracleum moellendorffii var. subbipinnatum \N \N \N \N \N 106353 C.foveolatus Cotoneaster Cotoneaster foveolatus \N \N \N \N \N 106354 N.1388 Nothoscordum Nothoscordum sp. 1388 \N \N \N \N \N 106355 G.montana Gentianella Gentianella montana \N \N \N \N \N 106356 S.amara Simarouba Simarouba amara bitterwood \N \N \N \N 106357 P.pumila Pentachondra Pentachondra pumila \N \N \N \N \N 106358 S.calidum Solanum Solanum calidum \N \N \N \N \N 106359 M.mucronata Muhlenbergia Muhlenbergia mucronata \N \N \N \N \N 106360 T.laeta Tabernaemontana Tabernaemontana laeta \N \N \N \N \N 106361 \N varietas Anthemis calcarea var. discoidea \N \N \N \N \N 106362 \N genus Claytonia springbeauties \N \N \N \N 106363 L.torulosus Lotus Lotus torulosus \N \N \N \N \N 106364 B.perpusilla Brachyscome Brachyscome perpusilla \N \N \N \N \N 106365 A.sintenisii Anthemis Anthemis sintenisii \N \N \N \N \N 106366 H.nitida Herrania Herrania nitida \N \N \N \N \N 106368 T.radians Thysanocarpus Thysanocarpus radians \N \N \N \N \N 106369 W.racemosa Weinmannia Weinmannia racemosa \N \N \N \N \N 106370 \N subtribe Alopecurinae \N \N \N \N \N 106371 N.acuminata Nolana Nolana acuminata \N \N \N \N \N 106372 \N varietas Stylosanthes guianensis var. canescens \N \N \N \N \N 106373 E.eriophorum Eryngium Eryngium eriophorum \N \N \N \N \N 106374 P.involucrata Pilea Pilea involucrata \N \N \N \N \N 106376 T.bivalve Tristagma Tristagma bivalve \N \N \N \N \N 106377 G.hispidula Genlisea Genlisea hispidula \N \N \N \N \N 106378 \N genus Chlaenosciadium \N \N \N \N \N 106379 \N tribe Elateriospermeae \N \N \N \N \N 106380 C.crawei Carex Carex crawei \N \N \N \N \N 106381 T.africana Thamnosma Thamnosma africana \N \N \N \N \N 106382 H.peruviana Hydrangea Hydrangea peruviana \N \N \N \N \N 106383 D.hutchinsoniae Delphinium Delphinium hutchinsoniae Hutchinson's larkspur \N \N \N \N 106384 B.180 Barnadesia Barnadesia sp. Palmer 180 \N \N \N \N \N 106385 C.repandum Cynanchum Cynanchum repandum \N \N \N \N \N 106386 G.juniperinum Galium Galium juniperinum \N \N \N \N \N 106387 \N genus Neocarya \N \N \N \N \N 106388 Z.capensis Zaluzianskya Zaluzianskya capensis \N \N \N \N \N 106389 L.2238 Lupinus Lupinus sp. CEH 2238 \N \N \N \N \N 106390 M.tamaquarina Malouetia Malouetia tamaquarina \N \N \N \N \N 106391 C.pycnothrix Chloris Chloris pycnothrix \N \N \N \N \N 106392 \N genus Neobathiea \N \N \N \N \N 106393 \N genus Disparago \N \N \N \N \N 106394 P.81817 Phyllanthus Phyllanthus sp. Gutierrez et al. 81817 \N \N \N \N \N 106395 B.oliveriana Bambusa Bambusa oliveriana bush bamboo,wa-pyu-san \N \N \N \N 106396 H.echioides Hieracium Hieracium echioides \N \N \N \N \N 106397 C.cordifolia Chiritopsis Chiritopsis cordifolia \N \N \N \N \N 106398 P.squamiferum Philodendron Philodendron squamiferum \N \N \N \N \N 106399 P.erigeron Paepalanthus Paepalanthus erigeron \N \N \N \N \N 106400 B.reducta Brocchinia Brocchinia reducta \N \N \N \N \N 106401 S.1238 Synostemon Synostemon sp. Bruhl & Hunter 1238 \N \N \N \N \N 106402 R.KE-2011 Ranunculus Ranunculus cf. pseudopygmaeus KE-2011 \N \N \N \N \N 106403 D.parvula Deschampsia Deschampsia parvula \N \N \N \N \N 106404 G.suaveolens Gymnosiphon Gymnosiphon suaveolens \N \N \N \N \N 106405 B.nivalis Brachyscome Brachyscome nivalis \N \N \N \N \N 106406 \N genus Conocarpus \N \N \N \N \N 106407 P.jariensis Pouteria Pouteria jariensis \N \N \N \N \N 106408 S.Mardon Saccharum officinarum complex Saccharum sp. clone Mardon \N \N \N \N \N 106409 S.purpurea Stenogyne Stenogyne purpurea \N \N \N \N \N 106410 L.molle Lasiopetalum Lasiopetalum molle \N \N \N \N \N 106411 \N genus Zuloagaea \N \N \N \N \N 106412 \N genus Schismocarpus \N \N \N \N \N 106413 \N genus Miconia \N \N \N \N \N 106414 D.wingfieldii Dendrosida Dendrosida wingfieldii \N \N \N \N \N 106415 S.brongniartianum Spiraeanthemum Spiraeanthemum brongniartianum \N \N \N \N \N 106416 P.rhizophorae Pelliciera Pelliciera rhizophorae \N \N \N \N \N 106417 D.bilabiata Dewevrea Dewevrea bilabiata \N \N \N \N \N 106418 A.pinifolia Armeria Armeria pinifolia \N \N \N \N \N 106419 S.cuspidata Siparuna Siparuna cuspidata \N \N \N \N \N 106420 \N genus Cotylanthera \N \N \N \N \N 106421 E.kitsoniana Eucalyptus Eucalyptus kitsoniana \N \N \N \N \N 106422 G.villosissima Guatteria Guatteria villosissima \N \N \N \N \N 106423 \N genus Encephalosphaera \N \N \N \N \N 106424 \N genus Cladostigma \N \N \N \N \N 106425 G.leucocarpa Gaultheria Gaultheria leucocarpa \N \N \N \N \N 106426 G.speciosum Grammatophyllum Grammatophyllum speciosum \N \N \N \N \N 106427 \N genus Alexandra \N \N \N \N \N 106428 R.millanii Ranunculus Ranunculus millanii \N \N \N \N \N 106429 E.coghlanii Euphorbia Euphorbia coghlanii \N \N \N \N \N 106430 G.coarctata Gamochaeta Gamochaeta coarctata \N \N \N \N \N 106431 P.curviflora Pimelea Pimelea curviflora \N \N \N \N \N 106432 H.uncinata Hemarthria Hemarthria uncinata \N \N \N \N \N 106433 P.villosum Pennisetum Pennisetum villosum feathertop,white foxtail \N \N \N \N 106434 T.H.AR.555 Typhonium Typhonium sp. Hetterscheid H.AR.555 \N \N \N \N \N 106435 R.glandulosa Rosenia Rosenia glandulosa \N \N \N \N \N 106436 P.ciliata Plantago Plantago ciliata \N \N \N \N \N 106437 \N genus Merendera \N \N \N \N \N 106438 L.annua Lonas Lonas annua \N \N \N \N \N 106439 D.cuneatum Desmodium Desmodium cuneatum \N \N \N \N \N 106440 L.variegata Lachenalia Lachenalia variegata \N \N \N \N \N 106441 J.oligosperma Jaeschkea Jaeschkea oligosperma \N \N \N \N \N 106442 M.woytkowskii Maxillaria Maxillaria woytkowskii \N \N \N \N \N 106443 A.retusa Anthemis Anthemis retusa \N \N \N \N \N 106444 I.karnatakana Indigofera Indigofera karnatakana \N \N \N \N \N 106445 P.ornata Polycycnis Polycycnis ornata \N \N \N \N \N 106446 P.rubra Passerina Passerina rubra \N \N \N \N \N 106447 E.myrtillifolia Euphorbia Euphorbia myrtillifolia \N \N \N \N \N 106448 H.maximiliani Helianthus Helianthus maximiliani \N \N \N \N \N 106449 C.helicoideus Croton Croton helicoideus \N \N \N \N \N 106450 \N subspecies Allium schoenoprasum subsp. schoenoprasum \N \N \N \N \N 106451 H.gordonii Hoodia Hoodia gordonii \N \N \N \N \N 106452 O.nelsonii Oxalis Oxalis nelsonii \N \N \N \N \N 106453 H.follicularis Hemiboea Hemiboea follicularis \N \N \N \N \N 106454 H.lingii Hydrangea Hydrangea lingii \N \N \N \N \N 106455 X.221 Xiphidium Xiphidium sp. Chase 221 \N \N \N \N \N 106456 C.spathulata Claytonia Claytonia spathulata \N \N \N \N \N 106457 \N genus Plectocomia \N \N \N \N \N 106458 R.moorcroftianum Rheum Rheum moorcroftianum \N \N \N \N \N 106459 H.exannulata Haplothismia Haplothismia exannulata \N \N \N \N \N 106460 \N subspecies Erica intermedia subsp. intermedia \N \N \N \N \N 106461 B.arfakiana Blumea Blumea arfakiana \N \N \N \N \N 106462 M.natalensis Monsonia Monsonia natalensis \N \N \N \N \N 106463 N.bulbocodium Narcissus Narcissus bulbocodium \N \N \N \N \N 106464 S.parishii Silene Silene parishii \N \N \N \N \N 106465 C.thomasii Croton Croton thomasii \N \N \N \N \N 106466 C.standleyanum Chenopodium Chenopodium standleyanum \N \N \N \N \N 106467 L.pensylvanicum Lilium Lilium pensylvanicum \N \N \N \N \N 106468 S.nigrescens Stephanachne Stephanachne nigrescens \N \N \N \N \N 106469 P.dilatatum Paspalum Paspalum dilatatum dallisgrass \N \N \N \N 106470 \N genus Aphaenandra \N \N \N \N \N 106471 S.retropilosa Solms-laubachia Solms-laubachia retropilosa \N \N \N \N \N 106472 S.graminea Sagittaria Sagittaria graminea \N \N \N \N \N 106473 M.oaxacana Mandevilla Mandevilla oaxacana \N \N \N \N \N 106474 G.interrupta Geonoma Geonoma interrupta \N \N \N \N \N 106475 \N subfamily Schismatoglottidoideae \N \N \N \N \N 106476 D.indica Drosera Drosera indica \N \N \N \N \N 106477 \N genus Sinoadina \N \N \N \N \N 106478 H.littoralis Hedyotis Hedyotis littoralis seacliff starviolet \N \N \N \N 106479 E.serpyllifolia Euphorbia Euphorbia serpyllifolia thyme-leaf spurge \N \N \N \N 106480 M.tripartita Manihot Manihot tripartita \N \N \N \N \N 106481 \N subspecies Randia armata subsp. panamensis \N \N \N \N \N 106482 \N subspecies Arctostaphylos tomentosa subsp. daciticola \N \N \N \N \N 106483 O.wydleri Oncidium Oncidium wydleri \N \N \N \N \N 106484 O.paradoxa Orostachys Orostachys paradoxa \N \N \N \N \N 106485 \N genus Osyris \N \N \N \N \N 106486 C.alpina Cornus Cornus alpina \N \N \N \N \N 106487 \N subspecies Acacia welwitschii subsp. delagoensis \N \N \N \N \N 106488 A.9003I Allium Allium sp. GAT 9003I \N \N \N \N \N 106489 A.alluaudianum Alantsilodendron Alantsilodendron alluaudianum \N \N \N \N \N 106490 \N genus Mesua \N \N \N \N \N 106491 P.SH-2010 Pimpinella Pimpinella sp. SH-2010 \N \N \N \N \N 106492 \N subspecies Coccothrinax crinita subsp. brevicrinis \N \N \N \N \N 106493 C.debilis Cardamine Cardamine debilis roadside bittercress \N \N \N \N 106494 L.hillebrandii Lotus Lotus hillebrandii \N \N \N \N \N 106495 \N genus Hippotis \N \N \N \N \N 106496 P.elata Prosopis Prosopis elata \N \N \N \N \N 106497 L.'Italy' Lolium Lolium sp. 'Italy' \N \N \N \N \N 106498 P.glandulosa Prunus Prunus glandulosa Chinese bush cherry,dwarf flowering almond,mai li \N \N \N \N 106499 D.scabra Deutzia Deutzia scabra \N \N \N \N \N 106500 P.emarginatus Plagiosiphon Plagiosiphon emarginatus \N \N \N \N \N 106501 P.munchanum Piper Piper munchanum \N \N \N \N \N 106502 H.scopularia Holothrix Holothrix scopularia \N \N \N \N \N 106503 P.longipes Psidium Psidium longipes \N \N \N \N \N 106504 R.matagalpae Ruellia Ruellia matagalpae \N \N \N \N \N 106505 \N varietas Orostachys aliciae var. komarovii \N \N \N \N \N 106506 L.navasii Lepidium Lepidium navasii \N \N \N \N \N 106507 \N genus Crinum \N \N \N \N \N 106508 V.vicioides Vicia Vicia vicioides \N \N \N \N \N 106509 C.mollicula Carex Carex mollicula \N \N \N \N \N 106510 S.chinensis Sinofranchetia Sinofranchetia chinensis \N \N \N \N \N 106511 B.hymenophylla Begonia Begonia hymenophylla \N \N \N \N \N 106512 O.versicolor Oxalis Oxalis versicolor \N \N \N \N \N 106513 L.sphaerica Lagenaria Lagenaria sphaerica \N \N \N \N \N 106514 T.meskheticus Tragopogon Tragopogon meskheticus \N \N \N \N \N 106515 S.heishanensis Symplocos Symplocos heishanensis \N \N \N \N \N 106516 O.hupehense Oligostachyum Oligostachyum hupehense \N \N \N \N \N 106517 \N genus Buglossoides \N \N \N \N \N 106518 S.membranaceum Satyrium Satyrium membranaceum \N \N \N \N \N 106519 C.laxus Conocalyx Conocalyx laxus \N \N \N \N \N 106520 M.italicus Melilotus Melilotus italicus \N \N \N \N \N 106521 A.reflexus Anulocaulis Anulocaulis reflexus \N \N \N \N \N 106522 B.fuertesii Badiera Badiera fuertesii \N \N \N \N \N 106523 S.concolor Schippia Schippia concolor \N \N \N \N \N 106524 L.houlletianum Lepismium Lepismium houlletianum \N \N \N \N \N 106525 K.remyana Korthalsella Korthalsella remyana \N \N \N \N \N 106526 R.tomentosa Rhoicissus Rhoicissus tomentosa \N \N \N \N \N 106527 \N genus Eutrema \N \N \N \N \N 106528 C.curaraya Calathea Calathea curaraya \N \N \N \N \N 106529 T.calderae Tolpis Tolpis calderae \N \N \N \N \N 106530 E.ancistrophora Echinopsis Echinopsis ancistrophora \N \N \N \N \N 106531 L.fraxinifolius Lecaniodiscus Lecaniodiscus fraxinifolius \N \N \N \N \N 106532 A.persicifolius Adenopappus Adenopappus persicifolius \N \N \N \N \N 106533 M.superba Meconopsis Meconopsis superba \N \N \N \N \N 106534 \N genus Steenisia \N \N \N \N \N 106535 C.miniata Clivia Clivia miniata \N \N \N \N \N 106536 \N genus Paraneurachne \N \N \N \N \N 106537 R.microphylla Raspalia Raspalia microphylla \N \N \N \N \N 106538 P.rusbyi Polygala Polygala rusbyi \N \N \N \N \N 106539 F.micrantha Ficinia Ficinia micrantha \N \N \N \N \N 106540 I.mangokyensis Indigofera Indigofera mangokyensis \N \N \N \N \N 106541 \N genus Astrotricha \N \N \N \N \N 106542 A.hispida Angophora Angophora hispida \N \N \N \N \N 106543 \N genus Plinia \N \N \N \N \N 106544 P.rupicola Phoenix Phoenix rupicola \N \N \N \N \N 106545 S.cryptotaenium Selinum Selinum cryptotaenium \N \N \N \N \N 106546 O.radiata Olinia Olinia radiata \N \N \N \N \N 106547 \N genus Pappobolus \N \N \N \N \N 106548 M.JRG-2008 Macrocarpaea Macrocarpaea cf. harlingi JRG-2008 \N \N \N \N \N 106549 S.dunlopii Sauropus Sauropus dunlopii \N \N \N \N \N 106550 A.arborescens Aloe Aloe arborescens \N \N \N \N \N 106551 L.packardiae Lomatium Lomatium packardiae \N \N \N \N \N 106552 \N genus Austroamericium \N \N \N \N \N 106553 O.trichocarpum Ormocarpum Ormocarpum trichocarpum \N \N \N \N \N 106554 O.natalitia Ochna Ochna natalitia \N \N \N \N \N 106555 A.GLA-2009 Aframomum Aframomum sp. GLA-2009 \N \N \N \N \N 106556 Z.ottensii Zingiber Zingiber ottensii \N \N \N \N \N 106557 I.walleriana Impatiens Impatiens usambarensis x Impatiens walleriana \N \N \N \N \N 106558 N.petersiana Nymphaea Nymphaea petersiana \N \N \N \N \N 106559 P.pelliotii Ptilagrostis Ptilagrostis pelliotii \N \N \N \N \N 106560 P.gracilis Potentilla Potentilla gracilis \N \N \N \N \N 106561 F.purpurea Filipendula Filipendula purpurea \N \N \N \N \N 106562 S.magnifica Salix Salix magnifica \N \N \N \N \N 106563 G.mauritanica Gagea Gagea mauritanica \N \N \N \N \N 106564 P.caeruleum Polemonium Polemonium caeruleum \N \N \N \N \N 106565 C.gracilis Cautleya Cautleya gracilis \N \N \N \N \N 106566 P.squarrosa Plantago Plantago squarrosa \N \N \N \N \N 106567 N.lamii Nepenthes Nepenthes lamii \N \N \N \N \N 106568 E.minarum Echinolaena Echinolaena minarum \N \N \N \N \N 106569 I.glabra Indigofera Indigofera glabra \N \N \N \N \N 106570 M.hosei Macaranga Macaranga hosei \N \N \N \N \N 106571 \N genus Hatiora \N \N \N \N \N 106572 O.serotina Ononis Ononis serotina \N \N \N \N \N 106573 \N varietas Chenopodium capitatum var. parvicapitatum \N \N \N \N \N 106574 \N genus Polyspatha \N \N \N \N \N 106575 \N subtribe Ruelliinae \N \N \N \N \N 106576 E.degeneri Euphorbia Euphorbia degeneri akoko \N \N \N \N 106577 S.StS-2010a Solanum Solanum sp. StS-2010a \N \N \N \N \N 106578 H.comata Hesperostipa Hesperostipa comata \N \N \N \N \N 106579 A.vereskensis Astragalus Astragalus vereskensis \N \N \N \N \N 106580 L.microcalyx Lindernia Lindernia microcalyx \N \N \N \N \N 106581 P.ciliaris Platanthera Platanthera ciliaris \N \N \N \N \N 106582 A.murumuru Astrocaryum Astrocaryum murumuru \N \N \N \N \N 106583 R.leucantha Rapanea Rapanea leucantha \N \N \N \N \N 106584 M.alternifolia Melaleuca Melaleuca alternifolia tea tree \N \N \N \N 106585 H.rawianum Heracleum Heracleum rawianum \N \N \N \N \N 106586 \N varietas Monocladus saxatilis var. solidus \N \N \N \N \N 106587 S.rubescens Spirogardnera Spirogardnera rubescens \N \N \N \N \N 106588 \N genus Woehleria \N \N \N \N \N 106589 S.italica Setaria Setaria italica foxtail millet \N \N \N \N 106590 P.ophioglossoides Pogonia Pogonia ophioglossoides \N \N \N \N \N 106591 I.fuchsioides Impatiens Impatiens fuchsioides \N \N \N \N \N 106592 \N subspecies Psathyrostachys rupestris subsp. daghestanica \N \N \N \N \N 106593 C.sample environmental samples Taxonomy:1096673 Cheiloclinium environmental sample \N \N \N \N \N 106594 P.botschantzevii Primula Primula botschantzevii \N \N \N \N \N 106595 A.humbertii Amphistemon Amphistemon humbertii \N \N \N \N \N 106596 S.angustum Sideroxylon Sideroxylon angustum \N \N \N \N \N 106597 A.acuminata Annona Annona acuminata \N \N \N \N \N 106598 C.intermedia Coreopsis Coreopsis intermedia \N \N \N \N \N 106599 \N subspecies Gymnocalycium hyptiacanthum subsp. uruguayense \N \N \N \N \N 106600 \N genus Lettowianthus \N \N \N \N \N 106601 T.grandiflorum Trifolium Trifolium grandiflorum \N \N \N \N \N 106602 T.flagelliforme Typhonium Typhonium flagelliforme \N \N \N \N \N 106603 A.cinerea Arrabidaea Arrabidaea cinerea \N \N \N \N \N 106604 M.villosus Melianthus Melianthus villosus \N \N \N \N \N 106605 E.variabilis Euphorbia Euphorbia variabilis \N \N \N \N \N 106606 G.stenophylla Gueldenstaedtia Gueldenstaedtia stenophylla \N \N \N \N \N 106607 C.pusillum Chlorophytum Chlorophytum pusillum \N \N \N \N \N 106608 C.smithiae Cyrtanthus Cyrtanthus smithiae \N \N \N \N \N 106609 R.telmateium Rhododendron Rhododendron telmateium \N \N \N \N \N 106610 E.confinalis Euphorbia Euphorbia confinalis \N \N \N \N \N 106611 F.latistipulata Fagonia Fagonia latistipulata \N \N \N \N \N 106612 D.pauciflora Drosera Drosera pauciflora \N \N \N \N \N 106613 P.exstaminodium Phragmipedium Phragmipedium exstaminodium \N \N \N \N \N 106614 T.setaceum Trichostema Trichostema setaceum narrowleaf bluecurl \N \N \N \N 106615 N.elegans Nolina Nolina elegans \N \N \N \N \N 106616 Q.lusitanica Quercus Quercus lusitanica \N \N \N \N \N 106617 A.henryi Acer Acer henryi \N \N \N \N \N 106618 M.fugacissima Moraea Moraea fugacissima \N \N \N \N \N 106619 L.pauciflora Lebeckia Lebeckia pauciflora \N \N \N \N \N 106620 \N subspecies Podostemum rutifolium subsp. ricciiforme \N \N \N \N \N 106621 C.caudatus Croton Croton caudatus \N \N \N \N \N 106622 I.elegans Illigera Illigera elegans \N \N \N \N \N 106623 G.tabacina Glycine Glycine aff. tabacina \N \N \N \N \N 106624 G.50 Guatteria Guatteria sp. Pirie et al. 50 \N \N \N \N \N 106625 K.splendida Kniphofia Kniphofia splendida \N \N \N \N \N 106626 A.vagans Aristida Aristida vagans \N \N \N \N \N 106627 Z.orientalis Zosima Zosima orientalis \N \N \N \N \N 106628 \N genus Ligularia \N \N \N \N \N 106629 F.jullienii Flueggea Flueggea jullienii \N \N \N \N \N 106630 G.buxifolia Gaultheria Gaultheria buxifolia \N \N \N \N \N 106631 \N varietas Mimosa acutistipula var. acutistipula \N \N \N \N \N 106632 G.divaricatum Geranium Geranium divaricatum \N \N \N \N \N 106633 C.fragrans Coelogyne Coelogyne fragrans \N \N \N \N \N 106634 L.sarmentosus Lupinus Lupinus sarmentosus \N \N \N \N \N 106635 S.ventricosa Satyria Satyria ventricosa \N \N \N \N \N 106636 S.basutorum Schoenoxiphium Schoenoxiphium basutorum \N \N \N \N \N 106637 L.albus Lupinus Lupinus albus white lupine \N \N \N \N 106638 B.hainesii Berberis Berberis hainesii \N \N \N \N \N 106639 C.alboroseum Cyrtochilum Cyrtochilum alboroseum \N \N \N \N \N 106640 S.azorica Spergularia Spergularia azorica \N \N \N \N \N 106641 \N no rank environmental samples Taxonomy:531417 \N \N \N \N \N 106642 C.peltata Cecropia Cecropia peltata embauba,pop-a-gun,snakewood,trumpet-tree,yagrumo hembra \N \N \N \N 106643 D.lateriflora Drypetes Drypetes lateriflora \N \N \N \N \N 106644 S.frigida Scrophularia Scrophularia frigida \N \N \N \N \N 106645 A.monticola Acacia Acacia monticola \N \N \N \N \N 106646 L.rubida Lachenalia Lachenalia rubida \N \N \N \N \N 106647 F.agrestis Fritillaria Fritillaria agrestis \N \N \N \N \N 106648 C.heterosepala Croomia Croomia heterosepala \N \N \N \N \N 106649 C.hirtifolia Carex Carex hirtifolia \N \N \N \N \N 106650 P.sterniana Paeonia Paeonia sterniana \N \N \N \N \N 106651 O.stenobulbon Oncidium Oncidium stenobulbon \N \N \N \N \N 106652 F.glumosa Ficus Ficus glumosa \N \N \N \N \N 106653 A.altilis Artocarpus Artocarpus altilis breadfruit \N \N \N \N 106654 \N genus Henoonia \N \N \N \N \N 106655 A.lingulata Aechmea Aechmea lingulata \N \N \N \N \N 106656 C.bispinosus Croton Croton bispinosus \N \N \N \N \N 106657 G.saxosa Gentianella Gentianella saxosa \N \N \N \N \N 106658 P.wichmannii Piper Piper wichmannii \N \N \N \N \N 106659 H.tibetana Hippophae Hippophae tibetana \N \N \N \N \N 106660 P.pachycarpa Paullinia Paullinia pachycarpa \N \N \N \N \N 106662 E.purpureum Epidendrum Epidendrum purpureum \N \N \N \N \N 106663 B.corrugata Begonia Begonia corrugata \N \N \N \N \N 106664 \N varietas Platymiscium pinnatum var. ulei \N \N \N \N \N 106665 \N no rank environmental samples Taxonomy:1096708 \N \N \N \N \N 106666 \N subtribe Plateilemina \N \N \N \N \N 106667 \N genus Sherbournia \N \N \N \N \N 106668 S.owabiensis Salacia Salacia owabiensis \N \N \N \N \N 106669 C.szovitsii Colchicum Colchicum szovitsii \N \N \N \N \N 106670 A.tomentosa Albizia Albizia tomentosa \N \N \N \N \N 106671 A.pedemontana Artemisia Artemisia pedemontana \N \N \N \N \N 106672 P.holciformis Poa Poa holciformis \N \N \N \N \N 106673 \N varietas Junellia toninii var. mulinoides \N \N \N \N \N 106674 D.karoense Dendrochilum Dendrochilum karoense \N \N \N \N \N 106675 N.wislizeni Nissolia Nissolia wislizeni \N \N \N \N \N 106676 C.mollissima Crucihimalaya Crucihimalaya mollissima \N \N \N \N \N 106677 S.semitectum Schizachyrium Schizachyrium semitectum \N \N \N \N \N 106678 G.subfalcata Gamochaeta Gamochaeta subfalcata \N \N \N \N \N 106679 C.esfandiarii Cousinia Cousinia esfandiarii \N \N \N \N \N 106680 A.sturtii Atriplex Atriplex sturtii \N \N \N \N \N 106681 C.hystrix Colletia Colletia hystrix \N \N \N \N \N 106682 \N subspecies Circaea canadensis subsp. canadensis \N \N \N \N \N 106683 C.hirtella Campylotropis Campylotropis hirtella \N \N \N \N \N 106684 L.mayottensis Labramia Labramia mayottensis \N \N \N \N \N 106685 R.stenostachya Reseda Reseda stenostachya \N \N \N \N \N 106686 C.raddeanum Colchicum Colchicum raddeanum \N \N \N \N \N 106687 C.hainanensis Cladopus Cladopus hainanensis \N \N \N \N \N 106688 P.anomala Pleurophora Pleurophora anomala \N \N \N \N \N 106689 O.ornithorhynchum Oncidium Oncidium ornithorhynchum \N \N \N \N \N 106690 R.LE465 Radamaea Radamaea sp. LE465 \N \N \N \N \N 106691 A.delphina Acacia Acacia delphina \N \N \N \N \N 106692 C.tetramera Commiphora Commiphora tetramera \N \N \N \N \N 106693 C.songaricum Cynomorium Cynomorium songaricum \N \N \N \N \N 106694 N.lunglingensis Neolitsea Neolitsea lunglingensis \N \N \N \N \N 106695 \N genus Dolichopsis \N \N \N \N \N 106696 A.scortechinii Agapetes Agapetes scortechinii \N \N \N \N \N 106697 \N genus Malouetia \N \N \N \N \N 106698 P.nelsonii Philactis Philactis nelsonii \N \N \N \N \N 106699 A.diversifolius Alectryon Alectryon diversifolius \N \N \N \N \N 106700 L.speciosa Loasa Loasa speciosa \N \N \N \N \N 106701 P.alaskana Puccinellia Puccinellia alaskana \N \N \N \N \N 106702 A.spathulata Acicarpha Acicarpha spathulata \N \N \N \N \N 106703 A.eremochlamys Alpinia Alpinia eremochlamys \N \N \N \N \N 106704 C.decaryana Coffea Coffea decaryana \N \N \N \N \N 106705 C.antisyphilitica Cybistax Cybistax antisyphilitica \N \N \N \N \N 106706 D.amazonicus Disocactus Disocactus amazonicus \N \N \N \N \N 106707 P.doweryensis Phalaenopsis Phalaenopsis doweryensis \N \N \N \N \N 106708 D.leptacanthum Dasyphyllum Dasyphyllum leptacanthum \N \N \N \N \N 106709 S.canaliculatus Stemonoporus Stemonoporus canaliculatus \N \N \N \N \N 106710 \N subspecies Scrophularia nervosa subsp. nervosa \N \N \N \N \N 106711 D.torquatum Diplodium Diplodium torquatum \N \N \N \N \N 106712 A.rosulata Antennaria Antennaria rosulata \N \N \N \N \N 106713 D.brevilabra Dauphinea Dauphinea brevilabra \N \N \N \N \N 106714 D.lessonianum Dracophyllum Dracophyllum lessonianum \N \N \N \N \N 106715 A.hispidus Aster Aster hispidus \N \N \N \N \N 106716 E.obcordatum Epilobium Epilobium obcordatum \N \N \N \N \N 106717 N.microphylla Nenax Nenax microphylla \N \N \N \N \N 106718 \N genus Aciachne \N \N \N \N \N 106719 C.haradjanii Campanula Campanula haradjanii \N \N \N \N \N 106720 R.humilis Rhodiola Rhodiola humilis \N \N \N \N \N 106721 \N varietas Guzmania musaica var. musaica \N \N \N \N \N 106722 E.erasmia Erica Erica erasmia \N \N \N \N \N 106723 V.blattaria Verbascum Verbascum blattaria moth mullein \N \N \N \N 106724 \N genus Pickeringia \N \N \N \N \N 106725 H.ramiflora Harpullia Harpullia ramiflora \N \N \N \N \N 106726 P.hottentotta Polygala Polygala hottentotta \N \N \N \N \N 106727 M.pallida Micropera Micropera pallida \N \N \N \N \N 106728 P.kongosanensis Pleioblastus Pleioblastus kongosanensis \N \N \N \N \N 106729 C.obovata Cologania Cologania obovata \N \N \N \N \N 106730 M.tenuiloba Mirabilis Mirabilis tenuiloba \N \N \N \N \N 106731 M.KMC1998 Mormodes Mormodes sp. KMC1998 \N \N \N \N \N 106732 B.longipes Bursera Bursera longipes \N \N \N \N \N 106733 G.18E10 Gladiolus Gladiolus sp. B 18E10 \N \N \N \N \N 106734 C.quinqueloba Cadetia Cadetia quinqueloba \N \N \N \N \N 106735 A.ningpoense Acer Acer ningpoense \N \N \N \N \N 106736 \N genus Campanula \N \N \N \N \N 106737 H.stenophyllum Heliotropium Heliotropium stenophyllum \N \N \N \N \N 106738 T.grandiflora Thottea Thottea grandiflora \N \N \N \N \N 106739 A.armeria Atocion Atocion armeria \N \N \N \N \N 106740 P.saposhnikovii Parrya Parrya saposhnikovii \N \N \N \N \N 106741 P.tangutica Przewalskia Przewalskia tangutica \N \N \N \N \N 106742 O.leucadica Ophrys Ophrys x leucadica \N \N \N \N \N 106743 R.subfalcata Rhaphidophora Rhaphidophora subfalcata \N \N \N \N \N 106744 C.echinata Caloncoba Caloncoba echinata \N \N \N \N \N 106745 Z.retrofractum Zygophyllum Zygophyllum retrofractum \N \N \N \N \N 106746 O.alpina Oreoporanthera Oreoporanthera alpina \N \N \N \N \N 106747 \N subfamily Davidioideae \N \N \N \N \N 106748 R.stricta Rhynchocorys Rhynchocorys stricta \N \N \N \N \N 106749 \N genus Corryocactus \N \N \N \N \N 106750 M.bradeorum Maxillaria Maxillaria bradeorum \N \N \N \N \N 106751 C.gymnogyna Camellia Camellia gymnogyna \N \N \N \N \N 106752 I.xerophilus Isodon Isodon xerophilus \N \N \N \N \N 106753 \N varietas Ptilotus exaltatus var. semilanatus \N \N \N \N \N 106754 I.prismatica Iris Iris prismatica \N \N \N \N \N 106755 \N genus Auranticarpa \N \N \N \N \N 106756 C.graecum Cyclamen Cyclamen graecum \N \N \N \N \N 106757 S.obliqua Sonerila Sonerila obliqua \N \N \N \N \N 106758 D.fruticosa Declieuxia Declieuxia fruticosa \N \N \N \N \N 106759 D.banksii Ditassa Ditassa banksii \N \N \N \N \N 106760 M.horridula Meconopsis Meconopsis horridula prickly blue-poppy \N \N \N \N 106761 K.sogdiana Klasea Klasea sogdiana \N \N \N \N \N 106762 \N genus Pamburus \N \N \N \N \N 106763 \N subspecies Nematolepis squamea subsp. squamea \N \N \N \N \N 106764 A.calamus Acorus Acorus calamus flagroot,sweet flag \N \N \N \N 106765 \N varietas Macaranga curtisii var. curtisii \N \N \N \N \N 106766 H.parviflora Hesperaloe Hesperaloe parviflora \N \N \N \N \N 106767 D.M.W.Chase-1820K Dictamnus Dictamnus sp. M.W.Chase-1820K \N \N \N \N \N 106768 \N genus Epaltes \N \N \N \N \N 106769 \N genus Eriochlamys \N \N \N \N \N 106770 A.submontana Anna Anna submontana \N \N \N \N \N 106771 \N subspecies Castilleja ambigua subsp. ambigua \N \N \N \N \N 106772 C.pycnacantha Coryphantha Coryphantha pycnacantha \N \N \N \N \N 106773 \N genus Rauwenhoffia \N \N \N \N \N 106774 A.fimbriata Acacia Acacia fimbriata \N \N \N \N \N 106775 C.mutisii Compsoneura Compsoneura mutisii \N \N \N \N \N 106776 R.paradoxa Rhipsalis Rhipsalis paradoxa \N \N \N \N \N 106777 C.tschonoskii Carpinus Carpinus tschonoskii \N \N \N \N \N 106778 B.pulchella Bonatea Bonatea pulchella \N \N \N \N \N 106779 \N subspecies Sagittaria lancifolia subsp. lancifolia \N \N \N \N \N 106780 C.scouleri Campanula Campanula scouleri \N \N \N \N \N 106781 G.denudata Gnidia Gnidia denudata \N \N \N \N \N 106782 R.densiflora Rauvolfia Rauvolfia densiflora \N \N \N \N \N 106783 H.tomentosa Helicostylis Helicostylis tomentosa \N \N \N \N \N 106784 \N family Comandraceae \N \N \N \N \N 106785 L.irasuensis Lobelia Lobelia irasuensis \N \N \N \N \N 106786 N.hastifolia Nymphaea Nymphaea hastifolia \N \N \N \N \N 106787 P.tenuifolius Phoebanthus Phoebanthus tenuifolius \N \N \N \N \N 106788 \N varietas Vigna parkeri var. maranguensis \N \N \N \N \N 106789 C.simense Clinopodium Clinopodium simense \N \N \N \N \N 106790 S.07-14 Silene Silene sp. Liden 07-14 \N \N \N \N \N 106791 P.bicolor Peperomia Peperomia bicolor \N \N \N \N \N 106792 \N varietas Carex lenticularis var. dolia \N \N \N \N \N 106793 \N genus Hyaloseris \N \N \N \N \N 106794 F.puberula Felicia Felicia puberula \N \N \N \N \N 106795 C.longifolium Chlorophytum Chlorophytum longifolium \N \N \N \N \N 106796 V.purpurea Viola Viola purpurea \N \N \N \N \N 106797 A.shuttleworthii Asarum Asarum shuttleworthii \N \N \N \N \N 106798 A.wulingense Asarum Asarum wulingense \N \N \N \N \N 106799 \N genus Allostigma \N \N \N \N \N 106800 B.signata Brassia Brassia signata \N \N \N \N \N 106801 S.microcephalus Sonchus Sonchus microcephalus \N \N \N \N \N 106802 U.ulugurensis Urogentias Urogentias ulugurensis \N \N \N \N \N 106803 A.emarginata Arapatiella Arapatiella emarginata \N \N \N \N \N 106804 E.triflorum Epigeneium Epigeneium triflorum \N \N \N \N \N 106805 W.latifolia Wurmbea Wurmbea latifolia \N \N \N \N \N 106806 A.rubyi Astragalus Astragalus rubyi \N \N \N \N \N 106807 D.glaucescens Desbordesia Desbordesia glaucescens \N \N \N \N \N 106808 S.unipunctatum Syzygium Syzygium unipunctatum \N \N \N \N \N 106809 C.delavayi Crawfurdia Crawfurdia delavayi \N \N \N \N \N 106810 R.novo-guineensis Rhaphidophora Rhaphidophora novo-guineensis \N \N \N \N \N 106811 C.longissimus Cenchrus Cenchrus longissimus \N \N \N \N \N 106812 \N genus Autranella \N \N \N \N \N 106813 \N genus Cheilocostus \N \N \N \N \N 106814 \N no rank Brassica rapa (Nippo-oleifera Group) \N \N \N \N \N 106815 P.kadsura Piper Piper kadsura \N \N \N \N \N 106816 \N genus Benitoa \N \N \N \N \N 106817 P.cincinnata Passiflora Passiflora cincinnata \N \N \N \N \N 106818 M.histionantha Malaxis Malaxis histionantha \N \N \N \N \N 106819 M.miquelianus Mallotus Mallotus miquelianus \N \N \N \N \N 106820 G.welteri Gomesa Gomesa welteri \N \N \N \N \N 106821 H.fuscum Hieracium Hieracium fuscum \N \N \N \N \N 106822 M.cylindrica Magnolia Magnolia cylindrica \N \N \N \N \N 106823 O.splendens Oxytropis Oxytropis splendens \N \N \N \N \N 106824 C.exscapa Chaptalia Chaptalia exscapa \N \N \N \N \N 106825 S.rutilans Salvia Salvia rutilans \N \N \N \N \N 106826 N.mutabile Nephelium Nephelium mutabile \N \N \N \N \N 106827 T.MEM-2009 Tolpis Tolpis sp. 2 MEM-2009 \N \N \N \N \N 106828 \N genus Tecunumania \N \N \N \N \N 106829 S.rhombifolia Sida Sida rhombifolia \N \N \N \N \N 106830 G.tenuisecta Galagania Galagania tenuisecta \N \N \N \N \N 106831 \N genus Ampelodesmos vine reeds \N \N \N \N 106832 B.pseudotricuspis Boehmeria Boehmeria pseudotricuspis \N \N \N \N \N 106833 \N genus Caryodendron \N \N \N \N \N 106834 P.prunifolia Photinia Photinia prunifolia \N \N \N \N \N 106835 T.ruygtii Trichostema Trichostema ruygtii \N \N \N \N \N 106836 \N subspecies Iris hartwegii subsp. columbiana Tuolumne iris \N \N \N \N 106837 L.CDB-2011b unclassified Livistoninae Livistoninae sp. CDB-2011b \N \N \N \N \N 106838 S.gymnomaschala Salsola Salsola gymnomaschala \N \N \N \N \N 106839 C.conica Carex Carex conica \N \N \N \N \N 106840 E.perrieri Euphorbia Euphorbia perrieri \N \N \N \N \N 106841 C.serawschanica Cousinia Cousinia serawschanica \N \N \N \N \N 106842 H.laevis Hibiscus Hibiscus laevis \N \N \N \N \N 106843 A.strictifolia Agalinis Agalinis strictifolia \N \N \N \N \N 106844 E.glomiflora Erica Erica glomiflora \N \N \N \N \N 106845 T.africana Tristellateia Tristellateia africana \N \N \N \N \N 106846 \N tribe Rhipsalideae \N \N \N \N \N 106847 S.patens Salvia Salvia patens \N \N \N \N \N 106848 O.grandiflora Octomeria Octomeria grandiflora \N \N \N \N \N 106849 S.mitis Strychnos Strychnos mitis \N \N \N \N \N 106850 S.rigidifolia Scilla Scilla rigidifolia \N \N \N \N \N 106851 \N varietas Stylosanthes guianensis var. pauciflora \N \N \N \N \N 106852 C.lanata Craspedia Craspedia lanata \N \N \N \N \N 106853 A.heterantha Ainsliaea Ainsliaea heterantha \N \N \N \N \N 106854 \N genus Hymenodictyon \N \N \N \N \N 106855 F.subcuneata Ficus Ficus subcuneata \N \N \N \N \N 106856 I.satyrioides Ionopsis Ionopsis satyrioides \N \N \N \N \N 106857 S.sandiana Schefflera Schefflera sandiana \N \N \N \N \N 106858 E.strictiflora Echeveria Echeveria strictiflora \N \N \N \N \N 106859 S.liukiuensis Symplocos Symplocos liukiuensis \N \N \N \N \N 106860 A.spicata Arrabidaea Arrabidaea spicata \N \N \N \N \N 106861 E.s.n. Evolvulus Evolvulus sp. Stefanovic s.n. \N \N \N \N \N 106862 O.flava Oenothera Oenothera flava yellow evening-primrose \N \N \N \N 106863 M.caesia Masdevallia Masdevallia caesia \N \N \N \N \N 106864 M.duckei Miconia Miconia duckei \N \N \N \N \N 106866 P.intermontana Polygala Polygala intermontana \N \N \N \N \N 106867 O.2235 Oxyceros Oxyceros sp. Ridsdale 2235 \N \N \N \N \N 106868 \N subspecies Crocus reticulatus subsp. reticulatus \N \N \N \N \N 106869 P.namibensis Polemanniopsis Polemanniopsis namibensis \N \N \N \N \N 106870 C.lomatolepis Cirsium Cirsium lomatolepis \N \N \N \N \N 106871 \N subspecies Musa acuminata subsp. malaccensis true apple banana \N \N \N \N 106872 F.communis Ferula Ferula communis giant fennel \N \N \N \N 106873 P.indica Pristimera Pristimera indica \N \N \N \N \N 106874 O.lancea Olea Olea lancea \N \N \N \N \N 106875 D.cappa Duhaldea Duhaldea cappa \N \N \N \N \N 106876 E.loefgreniana Eleocharis Eleocharis loefgreniana \N \N \N \N \N 106877 L.asarifolia Lycianthes Lycianthes asarifolia \N \N \N \N \N 106878 I.georgei Ilex Ilex georgei \N \N \N \N \N 106879 B.edmundoi Begonia Begonia edmundoi \N \N \N \N \N 106880 T.geminata Trichoglottis Trichoglottis geminata \N \N \N \N \N 106881 P.44 Pavonia Pavonia sp. Balele 44 \N \N \N \N \N 106882 A.besserianum Arum Arum besserianum \N \N \N \N \N 106883 G.longiscapa Gazania Gazania longiscapa \N \N \N \N \N 106884 A.sanyoense Aconitum Aconitum sanyoense \N \N \N \N \N 106885 S.capensis Stipa Stipa capensis \N \N \N \N \N 106886 C.spitsbergense Coptidium Coptidium x spitsbergense \N \N \N \N \N 106887 I.langlassei Isochilus Isochilus langlassei \N \N \N \N \N 106888 M.heringeri Mimosa Mimosa heringeri \N \N \N \N \N 106889 H.cotula Hyalosperma Hyalosperma cotula \N \N \N \N \N 106890 T.albinervis Tragopogon Tragopogon albinervis \N \N \N \N \N 106891 K.115 Koelreuteria Koelreuteria sp. Chase 115 \N \N \N \N \N 106892 A.disticha Anisophyllea Anisophyllea disticha \N \N \N \N \N 106893 M.magnimamma Mammillaria Mammillaria magnimamma \N \N \N \N \N 106894 L.laevigata Liatris Liatris laevigata \N \N \N \N \N 106895 B.havilandiana Breonia Breonia havilandiana \N \N \N \N \N 106896 D.ussuriensis Draba Draba ussuriensis \N \N \N \N \N 106897 M.huberi Manilkara Manilkara huberi macaranduba \N \N \N \N 106898 S.kaalae Stenogyne Stenogyne kaalae \N \N \N \N \N 106899 L.kalkmanii Lithocarpus Lithocarpus kalkmanii \N \N \N \N \N 106900 C.korshinskyi Cousinia Cousinia korshinskyi \N \N \N \N \N 106901 Q.fabri Quercus Quercus fabri \N \N \N \N \N 106902 C.speciosus Cheilocostus Cheilocostus speciosus crepe-ginger \N \N \N \N 106903 L.burchellii Lachnaea Lachnaea burchellii \N \N \N \N \N 106904 A.garrettii Arisaema Arisaema garrettii \N \N \N \N \N 106905 T.8256 Tetrastigma Tetrastigma sp. Wen 8256 \N \N \N \N \N 106906 \N subspecies Cordylanthus pilosus subsp. pilosus \N \N \N \N \N 106907 J.microphylla Jamesbrittenia Jamesbrittenia microphylla \N \N \N \N \N 106908 H.triflora Hippotis Hippotis triflora \N \N \N \N \N 106909 P.schizopetalum Pelargonium Pelargonium schizopetalum \N \N \N \N \N 106910 A.githago Agrostemma Agrostemma githago corn cockle,purple cockle \N \N \N \N 106911 A.glaux Astragalus Astragalus glaux \N \N \N \N \N 106912 P.paucistaminum Papaver Papaver paucistaminum \N \N \N \N \N 106913 A.coulterianum Antirrhinum Antirrhinum coulterianum \N \N \N \N \N 106914 H.meyeri-johannis Helichrysum Helichrysum meyeri-johannis \N \N \N \N \N 106915 A.banksii Astelia Astelia banksii \N \N \N \N \N 106916 \N varietas Viola brevistipulata var. minor \N \N \N \N \N 106917 \N varietas Ceanothus americanus var. americanus \N \N \N \N \N 106918 H.amplexicaulis Hibbertia Hibbertia amplexicaulis \N \N \N \N \N 106919 S.592398 Senecio Senecio aff. glomeratus CHR 592398 \N \N \N \N \N 106920 G.robusta Grewia Grewia robusta \N \N \N \N \N 106921 D.grandiflora Dietes Dietes grandiflora \N \N \N \N \N 106922 A.embergeri Aliella Aliella embergeri \N \N \N \N \N 106923 P.berberidifolia Photinia Photinia berberidifolia \N \N \N \N \N 106924 P.apetala Prunus Prunus apetala clove cherry \N \N \N \N 106925 (.tomentosa Populus (Populus tomentosa x P. bolleana) x P. tomentosa \N \N \N \N \N 106926 C.ambigua Columnea Columnea ambigua \N \N \N \N \N 106927 A.pallens Apodostigma Apodostigma pallens \N \N \N \N \N 106928 P.mantuensis Pachyanthus Pachyanthus mantuensis \N \N \N \N \N 106929 S.tetraptera Sesbania Sesbania tetraptera \N \N \N \N \N 106930 R.486 Rytigynia Rytigynia sp. Razafimandimbison & H. Bremer 486 \N \N \N \N \N 106931 B.racemosus Bromus Bromus racemosus bald brome \N \N \N \N 106932 G.junceaoides Galeandra Galeandra junceaoides \N \N \N \N \N 106933 H.pungens Hemiandra Hemiandra pungens \N \N \N \N \N 106934 \N genus Scyphostegia \N \N \N \N \N 106935 D.polysperma Deeringia Deeringia polysperma bai jiang guo xian \N \N \N \N 106936 \N genus Dyssodia \N \N \N \N \N 106937 \N subspecies Melaleuca cajuputi subsp. cajuputi \N \N \N \N \N 106938 P.stewartii Pterachaenia Pterachaenia stewartii \N \N \N \N \N 106939 S.pyramidatus Sporobolus Sporobolus pyramidatus \N \N \N \N \N 106940 C.angustifolia Centaurea Centaurea angustifolia \N \N \N \N \N 106941 B.1 Begonia Begonia sp. Sulawesi 1 \N \N \N \N \N 106942 C.obconica Coprosma Coprosma obconica \N \N \N \N \N 106943 \N genus Polpoda \N \N \N \N \N 106944 A.BJ-2009a unclassified Adelieae Adelieae sp. BJ-2009a \N \N \N \N \N 106945 I.macrocarpa Ilex Ilex macrocarpa \N \N \N \N \N 106946 N.emarginata Neomillspaughia Neomillspaughia emarginata \N \N \N \N \N 106947 \N subspecies Galium glabrescens subsp. glabrescens \N \N \N \N \N 106948 F.900109 Fagraea Fagraea sp. Bremer 900109 \N \N \N \N \N 106949 C.tetramera Carissa Carissa tetramera \N \N \N \N \N 106950 C.crassisepala Cryptantha Cryptantha crassisepala \N \N \N \N \N 106951 V.madaraspatana Ventilago Ventilago madaraspatana \N \N \N \N \N 106952 M.foliolosa Melaleuca Melaleuca foliolosa \N \N \N \N \N 106953 L.taraxacoides Leontodon Leontodon taraxacoides \N \N \N \N \N 106954 C.macrocarpa Caiophora Caiophora macrocarpa \N \N \N \N \N 106955 \N genus Tripterocalyx \N \N \N \N \N 106956 S.humilis Sutherlandia Sutherlandia humilis \N \N \N \N \N 106957 N.02-39 Nyssa Nyssa sp. Xiang 02-39 \N \N \N \N \N 106958 B.chiriquina Bomarea Bomarea chiriquina \N \N \N \N \N 106959 R.pinchonii Rheum Rheum pinchonii \N \N \N \N \N 106960 G.osbornii Gilruthia Gilruthia osbornii \N \N \N \N \N 106961 V.lychnitis Verbascum Verbascum lychnitis \N \N \N \N \N 106962 \N varietas Penstemon caespitosus var. caespitosus \N \N \N \N \N 106963 I.serrata Impatiens Impatiens serrata \N \N \N \N \N 106964 L.gayana Loasa Loasa gayana \N \N \N \N \N 106965 \N subspecies Centaurea argentea subsp. argentea \N \N \N \N \N 106966 R.oreojasme Ruta Ruta oreojasme \N \N \N \N \N 106967 E.robbinsii Eleocharis Eleocharis robbinsii \N \N \N \N \N 106968 C.suarezii Cischweinfia Cischweinfia suarezii \N \N \N \N \N 106969 E.spinea Euphorbia Euphorbia spinea \N \N \N \N \N 106970 E.reichenbachii Echinocereus Echinocereus reichenbachii \N \N \N \N \N 106971 \N genus Halimolobos \N \N \N \N \N 106972 E.tehuacana Euphorbia Euphorbia tehuacana \N \N \N \N \N 106973 A.pedunculata Agrocharis Agrocharis pedunculata \N \N \N \N \N 106974 \N genus Verticordia \N \N \N \N \N 106975 V.gigantea Vallisneria Vallisneria gigantea \N \N \N \N \N 106976 B.308 Bulbophyllum Bulbophyllum aff. chloropterum Smidt 308 \N \N \N \N \N 106977 L.laciniata Lopezia Lopezia laciniata \N \N \N \N \N 106978 D.amaranthoides Deeringia Deeringia amaranthoides jiang guo xian \N \N \N \N 106979 A.luciana Arctostaphylos Arctostaphylos luciana \N \N \N \N \N 106980 R.rosifolius Rubus Rubus hawaiensis x Rubus rosifolius \N \N \N \N \N 106981 A.acuminata Aspalathus Aspalathus acuminata \N \N \N \N \N 106982 \N genus Elionurus \N \N \N \N \N 106983 D.biflorus Dissocarpus Dissocarpus biflorus \N \N \N \N \N 106984 L.fimbriata Leporella Leporella fimbriata \N \N \N \N \N 106985 A.bicornis Andropogon Andropogon bicornis \N \N \N \N \N 106986 B.alsiosum Bulbophyllum Bulbophyllum alsiosum \N \N \N \N \N 106987 A.aprica Ayenia Ayenia aprica \N \N \N \N \N 106988 M.pallida Metalasia Metalasia pallida \N \N \N \N \N 106989 S.wrightii Scaevola Scaevola wrightii \N \N \N \N \N 106990 B.sinuata Blepharis Blepharis sinuata \N \N \N \N \N 106991 S.bornmuelleri Sonchus Sonchus bornmuelleri \N \N \N \N \N 106992 D.subulata Danthonia Danthonia subulata \N \N \N \N \N 106993 P.xanthocalyx Pitcairnia Pitcairnia xanthocalyx \N \N \N \N \N 106994 P.grandiflorus Papistylus Papistylus grandiflorus \N \N \N \N \N 106995 \N varietas Veronica orchidea var. orchidea \N \N \N \N \N 106996 \N genus Balansaea \N \N \N \N \N 106997 S.cymbulae Styphelia Styphelia cymbulae \N \N \N \N \N 106998 S.paucijugum Solanum Solanum paucijugum \N \N \N \N \N 106999 \N genus Laurophyllus \N \N \N \N \N 107000 P.hsienchuensis Pleioblastus Pleioblastus hsienchuensis \N \N \N \N \N 107001 A.grandifolia Abuta Abuta grandifolia \N \N \N \N \N 107002 M.sativa Madia Madia sativa coast tarweed \N \N \N \N 107003 A.calendula Arctotheca Arctotheca calendula Capeweed,venidium \N \N \N \N 107004 \N subtribe Anthemidinae \N \N \N \N \N 107005 D.tahanensis Diospyros Diospyros tahanensis \N \N \N \N \N 107006 P.elegans Passiflora Passiflora elegans \N \N \N \N \N 107007 E.gracillima Euphorbia Euphorbia gracillima \N \N \N \N \N 107008 J.tridactylites Junellia Junellia tridactylites \N \N \N \N \N 107009 C.raddeana Cousinia Cousinia raddeana \N \N \N \N \N 107010 S.cordifolium Symphyotrichum Symphyotrichum cordifolium beeweed,common blue wood aster \N \N \N \N 107011 C.itremense Cynanchum Cynanchum itremense \N \N \N \N \N 107012 P.arctica Poa Poa arctica \N \N \N \N \N 107013 S.madrensis Salvia Salvia madrensis \N \N \N \N \N 107014 F.przewalskii Fritillaria Fritillaria przewalskii \N \N \N \N \N 107015 \N genus Podachaenium \N \N \N \N \N 107016 O.benghalensis Oenanthe Oenanthe benghalensis \N \N \N \N \N 107017 \N genus Panisea \N \N \N \N \N 107018 P.baeuerlenii Pultenaea Pultenaea baeuerlenii \N \N \N \N \N 107019 T.2217 Thysanotus Thysanotus sp. Chase 2217 \N \N \N \N \N 107020 D.cuatrecasana Draba Draba cuatrecasana \N \N \N \N \N 107021 L.pisiformis Lathyrus Lathyrus pisiformis \N \N \N \N \N 107022 A.reticulata Annona Annona reticulata anona corazon,bullock's-heart,maman \N \N \N \N 107023 P.concanensis Pinda Pinda concanensis \N \N \N \N \N 107024 L.ornithocephala Lopholepis Lopholepis ornithocephala \N \N \N \N \N 107025 E.bicolor Elizabetha Elizabetha bicolor \N \N \N \N \N 107026 \N genus Petrosavia \N \N \N \N \N 107027 O.longistylis Osmorhiza Osmorhiza longistylis \N \N \N \N \N 107028 \N genus Stipa \N \N \N \N \N 107029 C.SH-2010 Capparis Capparis sp. SH-2010 \N \N \N \N \N 107030 H.grandiflora Huttonaea Huttonaea grandiflora \N \N \N \N \N 107031 M.angolensis Momordica Momordica angolensis \N \N \N \N \N 107032 \N subspecies Androcymbium circinatum subsp. circinatum \N \N \N \N \N 107033 P.linearifolium Pediomelum Pediomelum linearifolium \N \N \N \N \N 107034 M.timorensis Muellerargia Muellerargia timorensis \N \N \N \N \N 107035 M.recurvata Macaranga Macaranga recurvata \N \N \N \N \N 107036 A.judaica Artemisia Artemisia judaica \N \N \N \N \N 107037 P.lyallii Pauridiantha Pauridiantha lyallii \N \N \N \N \N 107038 C.platylepis Cousinia Cousinia platylepis \N \N \N \N \N 107039 R.1718 Rulingia Rulingia aff. cuneata Wilkins & Wege 1718 \N \N \N \N \N 107040 B.reticulata Buchenavia Buchenavia reticulata \N \N \N \N \N 107041 S.sessilifolia Salvia Salvia sessilifolia \N \N \N \N \N 107042 R.cervantesii Rhynchostele Rhynchostele cervantesii \N \N \N \N \N 107043 P.liebmannianus Phyllanthus Phyllanthus liebmannianus \N \N \N \N \N 107044 P.longifolia Pilea Pilea longifolia \N \N \N \N \N 107045 S.Kimberly' Stackhousia Stackhousia sp. 'West Kimberly' \N \N \N \N \N 107046 L.orbiculata Lachemilla Lachemilla orbiculata \N \N \N \N \N 107047 S.vasculosus Symbolanthus Symbolanthus vasculosus \N \N \N \N \N 107048 S.rorida Salix Salix rorida \N \N \N \N \N 107049 A.westlandii Aristolochia Aristolochia westlandii xiang gang ma dou ling \N \N \N \N 107050 C.mollis Choisya Choisya mollis \N \N \N \N \N 107051 P.ligulata Poa Poa ligulata \N \N \N \N \N 107052 \N genus Leptecophylla \N \N \N \N \N 107053 C.weberbaueri Clavija Clavija weberbaueri \N \N \N \N \N 107054 C.lacunosa Chirita Chirita lacunosa \N \N \N \N \N 107055 S.aenea Symplocos Symplocos aenea \N \N \N \N \N 107056 S.gabonensis Sacoglottis Sacoglottis gabonensis \N \N \N \N \N 107057 S.lateritia Sinningia Sinningia lateritia \N \N \N \N \N 107058 A.scabromarginatum Androcymbium Androcymbium scabromarginatum \N \N \N \N \N 107059 S.libanotica Scilla Scilla libanotica \N \N \N \N \N 107060 O.virgatus Otocarpus Otocarpus virgatus \N \N \N \N \N 107061 T.abrotanifolium Tanacetum Tanacetum abrotanifolium \N \N \N \N \N 107062 S.SH-2010 Smilax Smilax sp. SH-2010 \N \N \N \N \N 107063 P.vogtsiae Protea Protea vogtsiae \N \N \N \N \N 107064 P.polyphyllus Phyllanthus Phyllanthus polyphyllus \N \N \N \N \N 107065 P.capillaris Puccinellia Puccinellia capillaris \N \N \N \N \N 107066 S.guadalupensis Stephanomeria Stephanomeria guadalupensis \N \N \N \N \N 107067 L.cuspidata Laportea Laportea cuspidata \N \N \N \N \N 107068 \N genus Pringlea \N \N \N \N \N 107069 P.radiatinervosa Peperomia Peperomia radiatinervosa \N \N \N \N \N 107070 \N genus Leptadenia \N \N \N \N \N 107071 \N varietas Paris polyphylla var. stenophylla \N \N \N \N \N 107072 R.pertusa Rhaphidophora Rhaphidophora pertusa \N \N \N \N \N 107073 \N genus Carpentaria \N \N \N \N \N 107074 A.crispum Allium Allium crispum \N \N \N \N \N 107075 H.cerastioides Hypericum Hypericum cerastioides \N \N \N \N \N 107076 P.hoffmannseggianum Piper Piper hoffmannseggianum \N \N \N \N \N 107077 G.gueinzii Gladiolus Gladiolus gueinzii \N \N \N \N \N 107078 T.difformis Thyrsanthella Thyrsanthella difformis \N \N \N \N \N 107079 S.bella Saussurea Saussurea bella \N \N \N \N \N 107080 P.berchtoldii Potamogeton Potamogeton berchtoldii \N \N \N \N \N 107081 D.252 Dombeya Dombeya sp. Rakotonirina 252 \N \N \N \N \N 107082 H.annuus Holcus Holcus annuus \N \N \N \N \N 107083 M.GM-AM5 Milicia Milicia cf. regia GM-AM5 \N \N \N \N \N 107084 B.azorella Benthamiella Benthamiella azorella \N \N \N \N \N 107085 \N genus Phyllopentas \N \N \N \N \N 107086 G.bicolor Gynura Gynura bicolor \N \N \N \N \N 107087 \N genus Bellucia \N \N \N \N \N 107088 \N genus Mangifera \N \N \N \N \N 107089 \N varietas Vitex negundo var. cannabifolia \N \N \N \N \N 107090 M.tridentata Macradenia Macradenia tridentata \N \N \N \N \N 107091 S.microphylla Secamonopsis Secamonopsis microphylla \N \N \N \N \N 107092 S.pacifica Sarcocornia Sarcocornia pacifica \N \N \N \N \N 107093 \N varietas Echinacea paradoxa var. paradoxa \N \N \N \N \N 107094 B.phoenicea Bauhinia Bauhinia phoenicea \N \N \N \N \N 107095 A.heracleifolia Actaea Actaea heracleifolia \N \N \N \N \N 107096 \N subfamily Periplocoideae \N \N \N \N \N 107097 B.amakidophora Blumea Blumea amakidophora \N \N \N \N \N 107098 \N subspecies Phleum pratense subsp. bertolonii \N \N \N \N \N 107099 \N genus Sonchus \N \N \N \N \N 107100 D.decurrens Daviesia Daviesia decurrens \N \N \N \N \N 107101 \N genus Gomphogyne \N \N \N \N \N 107102 C.johnsonii Commersonia Commersonia johnsonii \N \N \N \N \N 107103 \N genus Leucocoryne \N \N \N \N \N 107104 R.caesia Rosa Rosa caesia \N \N \N \N \N 107105 T.betonicifolia Tragia Tragia betonicifolia \N \N \N \N \N 107106 T.repens Teramnus Teramnus repens \N \N \N \N \N 107107 \N varietas Cayratia japonica var. pseudotrifolia \N \N \N \N \N 107108 O.cultivar Osteospermum Osteospermum hybrid cultivar \N \N \N \N \N 107109 B.subpinnatifida Boechera Boechera subpinnatifida \N \N \N \N \N 107110 A.elongata Anthephora Anthephora elongata \N \N \N \N \N 107111 K.candida Klarobelia Klarobelia candida \N \N \N \N \N 107112 F.excelsa Freycinetia Freycinetia excelsa \N \N \N \N \N 107113 S.ternata Strychnos Strychnos ternata \N \N \N \N \N 107114 C.paranaense Cyrtopodium Cyrtopodium paranaense \N \N \N \N \N 107115 M.DTR-2007 Melicytus Melicytus aff. ramiflorus DTR-2007 \N \N \N \N \N 107116 C.acutifolia Claytonia Claytonia acutifolia \N \N \N \N \N 107117 H.JANB-2011 Habenaria Habenaria sp. 12 JANB-2011 \N \N \N \N \N 107118 D.16106 Dracaena Dracaena sp. Quagliariello 16106 \N \N \N \N \N 107119 A.peruviana Alstroemeria Alstroemeria peruviana \N \N \N \N \N 107120 C.cheirolopha Centaurea Centaurea cheirolopha \N \N \N \N \N 107121 M.repandus Mallotus Mallotus repandus \N \N \N \N \N 107122 D.pertusa Dresslerella Dresslerella pertusa \N \N \N \N \N 107123 V.campylopoda Veronica Veronica campylopoda \N \N \N \N \N 107124 L.rotatum Lomatogonium Lomatogonium rotatum \N \N \N \N \N 107125 E.sultan-hassei Euphorbia Euphorbia sultan-hassei \N \N \N \N \N 107126 I.holocentra Impatiens Impatiens holocentra \N \N \N \N \N 107127 G.japonica Gleditsia Gleditsia japonica \N \N \N \N \N 107128 O.spathulata Ocotea Ocotea spathulata \N \N \N \N \N 107129 \N subspecies Chionochloa pallens subsp. pilosa \N \N \N \N \N 107130 P.25232 Persea Persea sp. Vasquez & Ortiz-Gentry 25232 \N \N \N \N \N 107131 \N genus Baseonema \N \N \N \N \N 107132 T.candolleanum Tetrataenium Tetrataenium candolleanum \N \N \N \N \N 107133 \N varietas Schoenocaulon jaliscense var. jaliscense \N \N \N \N \N 107134 \N genus Galenia \N \N \N \N \N 107135 D.tanacetifolia Descurainia Descurainia tanacetifolia \N \N \N \N \N 107136 \N subspecies Chionochloa rubra subsp. cuprea \N \N \N \N \N 107137 \N genus Crocosmia \N \N \N \N \N 107138 H.longifolia Heliomeris Heliomeris longifolia \N \N \N \N \N 107139 \N genus Pteroglossaspis \N \N \N \N \N 107140 C.icche Croton Croton icche \N \N \N \N \N 107141 A.sandwicense Argyroxiphium Argyroxiphium sandwicense \N \N \N \N \N 107142 \N genus Reederochloa \N \N \N \N \N 107143 K.cuneata Kalmia Kalmia cuneata \N \N \N \N \N 107144 R.arabica Reseda Reseda arabica \N \N \N \N \N 107145 O.tigillarium Oncosperma Oncosperma tigillarium Nibung palm \N \N \N \N 107146 P.quadrifida Portulaca Portulaca quadrifida \N \N \N \N \N 107147 C.flexuosum Cyrtochilum Cyrtochilum flexuosum \N \N \N \N \N 107148 \N genus Astilbe \N \N \N \N \N 107149 D.parkinsonii Dillenia Dillenia parkinsonii \N \N \N \N \N 107150 M.2333 Maxillaria Maxillaria cf. exaltata Whitten 2333 \N \N \N \N \N 107151 \N genus Chylismia \N \N \N \N \N 107152 \N genus Lessingia \N \N \N \N \N 107153 C.minor Columnea Columnea minor \N \N \N \N \N 107154 P.watsonii Penstemon Penstemon watsonii \N \N \N \N \N 107155 T.6057Hnew unclassified Taraxacum Taraxacum (sect. Scariosa) sp. 6057Hnew \N \N \N \N \N 107156 B.atroviridis Bridelia Bridelia atroviridis \N \N \N \N \N 107157 O.dinghushanensis Opithandra Opithandra dinghushanensis \N \N \N \N \N 107158 S.emarginata Stelis Stelis emarginata \N \N \N \N \N 107159 M.sieboldii Malus Malus sieboldii Toringo crab-apple \N \N \N \N 107160 C.plurispicata Calathea Calathea plurispicata \N \N \N \N \N 107161 T.platypecidium Taraxacum Taraxacum platypecidium \N \N \N \N \N 107162 K.semisericea Kutchubaea Kutchubaea semisericea \N \N \N \N \N 107163 A.paotingensis Actinodaphne Actinodaphne paotingensis \N \N \N \N \N 107164 D.birmanicus Dendrocalamus Dendrocalamus birmanicus \N \N \N \N \N 107165 L.lepidus Lupinus Lupinus lepidus Pacific lupine \N \N \N \N 107166 P.260 Peponidium Peponidium sp. 2 Karehed et al. 260 \N \N \N \N \N 107167 \N subspecies Festuca rubra subsp. littoralis \N \N \N \N \N 107168 T.carolinianum Trifolium Trifolium carolinianum \N \N \N \N \N 107169 \N varietas Verbena neomexicana var. hirtella \N \N \N \N \N 107170 T.rupicola Tabernaemontana Tabernaemontana rupicola \N \N \N \N \N 107171 I.pes-caprae Ipomoea Ipomoea pes-caprae \N \N \N \N \N 107172 S.912 Symplocos Symplocos sp. Wu et al. 912 \N \N \N \N \N 107173 C.fascicularis Corchorus Corchorus fascicularis \N \N \N \N \N 107174 L.salmoniflorum Lomatium Lomatium salmoniflorum \N \N \N \N \N 107175 K.retrorsa Kennedia Kennedia retrorsa \N \N \N \N \N 107176 A.quinata Akebia Akebia quinata \N \N \N \N \N 107177 E.handiensis Euphorbia Euphorbia handiensis \N \N \N \N \N 107178 B.oreodoxa Begonia Begonia oreodoxa \N \N \N \N \N 107179 \N tribe Rhodoreae \N \N \N \N \N 107180 P.eminii Pseudocarum Pseudocarum eminii \N \N \N \N \N 107181 \N genus Arafoe \N \N \N \N \N 107182 C.dioscoridis Conyza Conyza dioscoridis \N \N \N \N \N 107183 R.dimakoensis Rinorea Rinorea dimakoensis \N \N \N \N \N 107184 M.carolii Maxillaria Maxillaria carolii \N \N \N \N \N 107185 P.travancorensis Psilanthus Psilanthus travancorensis \N \N \N \N \N 107186 O.wattii Oreosolen Oreosolen wattii \N \N \N \N \N 107187 M.tetrandra Miconia Miconia tetrandra \N \N \N \N \N 107188 \N varietas Carex sachalinensis var. fernaldiana \N \N \N \N \N 107189 T.molle Trischidium Trischidium molle \N \N \N \N \N 107190 N.neesiana Nassella Nassella neesiana \N \N \N \N \N 107191 D.elata Dorstenia Dorstenia elata \N \N \N \N \N 107192 P.serrata Premna Premna serrata \N \N \N \N \N 107193 \N family Haloragaceae \N \N \N \N \N 107194 T.sosnowskyi Tragopogon Tragopogon sosnowskyi \N \N \N \N \N 107195 D.tongolense Delphinium Delphinium tongolense \N \N \N \N \N 107196 \N subspecies Oxytropis campestris subsp. johannensis \N \N \N \N \N 107197 M.nicaraguensis Maxillaria Maxillaria nicaraguensis \N \N \N \N \N 107198 E.accommodata Erica Erica accommodata \N \N \N \N \N 107199 L.pastinacifolia Lalldhwojia Lalldhwojia pastinacifolia \N \N \N \N \N 107200 \N tribe Borasseae \N \N \N \N \N 107201 \N subspecies Bellis annua subsp. minuta \N \N \N \N \N 107202 C.siamensis Clinacanthus Clinacanthus siamensis \N \N \N \N \N 107203 B.capensis Burchellia Burchellia capensis \N \N \N \N \N 107204 A.sp. Alstroemeria Alstroemeria sp. \N \N \N \N \N 107205 \N genus Erythroxylum \N \N \N \N \N 107206 M.neglecta Maxillaria Maxillaria neglecta \N \N \N \N \N 107207 A.chimboracensis Arachnothryx Arachnothryx chimboracensis \N \N \N \N \N 107208 S.letestuana Staurogyne Staurogyne letestuana \N \N \N \N \N 107209 E.brandegeei Euphorbia Euphorbia brandegeei \N \N \N \N \N 107210 B.5099 Brasiliorchis Brasiliorchis aff. ubatubana Atwood & Whitten 5099 \N \N \N \N \N 107211 C.fatrense Cyclamen Cyclamen fatrense \N \N \N \N \N 107212 G.arborescens Guizotia Guizotia arborescens \N \N \N \N \N 107213 \N genus Poiretia \N \N \N \N \N 107214 \N genus Stachyphrynium \N \N \N \N \N 107215 I.himalayensis Indigofera Indigofera himalayensis \N \N \N \N \N 107216 N.powellii Nerisyrenia Nerisyrenia powellii \N \N \N \N \N 107217 \N genus Beaupreopsis \N \N \N \N \N 107218 F.amicorum Faradaya Faradaya amicorum \N \N \N \N \N 107219 I.sempervirens Iberis Iberis sempervirens \N \N \N \N \N 107220 V.monantha Vigna Vigna monantha \N \N \N \N \N 107221 N.namaquensis Neopatersonia Neopatersonia namaquensis \N \N \N \N \N 107222 C.zeylanicus Cyathocalyx Cyathocalyx zeylanicus \N \N \N \N \N 107223 C.graveolens Clinopodium Clinopodium graveolens \N \N \N \N \N 107224 \N subspecies Cordylanthus mollis subsp. hispidus \N \N \N \N \N 107225 D.dentigerus Dendropanax Dendropanax dentigerus \N \N \N \N \N 107226 \N genus Spachea \N \N \N \N \N 107227 E.uniflorus Erigeron Erigeron uniflorus \N \N \N \N \N 107228 X.capitellatum Xanthophytum Xanthophytum capitellatum \N \N \N \N \N 107229 A.klotzschii Astraea Astraea klotzschii \N \N \N \N \N 107230 \N varietas Leptospermum scoparium var. incanum \N \N \N \N \N 107231 D.roraimensis Drimys Drimys roraimensis \N \N \N \N \N 107232 \N genus Ramorinoa \N \N \N \N \N 107233 \N genus Gentianodes \N \N \N \N \N 107234 V.2135 Vellozia Vellozia aff. caudata Mello-Silva 2135 \N \N \N \N \N 107235 \N varietas Hydrocotyle novae-zealandiae var. montana \N \N \N \N \N 107236 S.hirculus Saxifraga Saxifraga hirculus \N \N \N \N \N 107237 \N genus Caliphruria \N \N \N \N \N 107238 M.palmeri Muhlenbergia Muhlenbergia palmeri \N \N \N \N \N 107239 M.brevifolia Morella Morella brevifolia \N \N \N \N \N 107240 D.cinnabarinus Dichromanthus Dichromanthus cinnabarinus \N \N \N \N \N 107241 C.josiae Centaurea Centaurea josiae \N \N \N \N \N 107242 C.laciniata Castilleja Castilleja laciniata \N \N \N \N \N 107243 \N genus Beaucarnea ponytail palms \N \N \N \N 107244 S.flanaganii Selago Selago flanaganii \N \N \N \N \N 107245 \N genus Lenzia \N \N \N \N \N 107246 N.infundibulifolia Nervilia Nervilia infundibulifolia \N \N \N \N \N 107247 M.orontium Misopates Misopates orontium \N \N \N \N \N 107248 \N varietas Mimosa skinneri var. desmodioides \N \N \N \N \N 107249 A.indivisa Alchemilla Alchemilla indivisa \N \N \N \N \N 107250 M.praemorsa Monsonia Monsonia praemorsa \N \N \N \N \N 107251 S.bigelovii Stachys Stachys bigelovii \N \N \N \N \N 107252 O.grammophylla Oxalis Oxalis grammophylla \N \N \N \N \N 107253 C.arborea Callicarpa Callicarpa arborea \N \N \N \N \N 107254 Z.pusilla Zeltnera Zeltnera pusilla \N \N \N \N \N 107255 S.MAC-2002 Singularybas Singularybas aff. oblongus MAC-2002 \N \N \N \N \N 107256 T.O-211 Tropidia Tropidia sp. Chase O-211 \N \N \N \N \N 107257 S.yunnanensis Stachyurus Stachyurus yunnanensis \N \N \N \N \N 107258 \N subspecies Eragrostis pilgeri subsp. ancashensis \N \N \N \N \N 107259 S.teneriffae Senecio Senecio teneriffae \N \N \N \N \N 107260 H.strictum Hypocalymma Hypocalymma strictum \N \N \N \N \N 107261 P.cenocladum Piper Piper cenocladum \N \N \N \N \N 107262 S.polyadenium Solanum Solanum polyadenium \N \N \N \N \N 107263 M.venezuelana Masdevallia Masdevallia venezuelana \N \N \N \N \N 107264 \N subspecies Olearia elliptica subsp. praetermissa \N \N \N \N \N 107265 C.javitensis Casearia Casearia javitensis \N \N \N \N \N 107266 C.filifolium Colchicum Colchicum filifolium \N \N \N \N \N 107267 A.malacus Astragalus Astragalus malacus \N \N \N \N \N 107268 \N genus Hydrangea \N \N \N \N \N 107269 A.paniculata Alloteropsis Alloteropsis paniculata \N \N \N \N \N 107270 L.lancifolius Lepeostegeres Lepeostegeres lancifolius \N \N \N \N \N 107271 S.euboea Sideritis Sideritis euboea \N \N \N \N \N 107272 T.406aa Tovomita Tovomita sp. HG 406aa \N \N \N \N \N 107273 B.corallinus Brownanthus Brownanthus corallinus \N \N \N \N \N 107274 T.chinensis Tripogon Tripogon chinensis \N \N \N \N \N 107275 H.pallescens Hylotelephium Hylotelephium pallescens \N \N \N \N \N 107276 E.intermedia Elegia Elegia intermedia \N \N \N \N \N 107277 P.celosioides Polygala Polygala celosioides \N \N \N \N \N 107278 E.corniculatum Eryngium Eryngium corniculatum \N \N \N \N \N 107279 \N genus Paeonia peonies \N \N \N \N 107280 \N genus Soroseris \N \N \N \N \N 107281 A.sieboldianum Acer Acer sieboldianum \N \N \N \N \N 107282 V.trifida Veronica Veronica chionohebe x Veronica trifida \N \N \N \N \N 107283 R.baccifera Rhipsalis Rhipsalis baccifera \N \N \N \N \N 107284 C.calycina Correa Correa calycina \N \N \N \N \N 107285 \N no rank Oryza sativa Indica Group Indian rice \N \N \N \N 107286 V.hypargyrea Viguiera Viguiera hypargyrea \N \N \N \N \N 107287 H.yadonii Horkelia Horkelia yadonii \N \N \N \N \N 107288 \N varietas Penstemon pachyphyllus var. mucronatus \N \N \N \N \N 107289 \N varietas Vigna reflexopilosa var. reflexopilosa \N \N \N \N \N 107290 W.elattantha Weinmannia Weinmannia elattantha \N \N \N \N \N 107291 \N genus Elaeagnus \N \N \N \N \N 107292 P.fleuryana Psychotria Psychotria fleuryana \N \N \N \N \N 107293 R.humboldtiana Ruellia Ruellia humboldtiana \N \N \N \N \N 107294 C.sagotii Cordia Cordia sagotii \N \N \N \N \N 107295 M.serrata Morella Morella serrata \N \N \N \N \N 107296 \N genus Platanus plane trees,sycamores \N \N \N \N 107297 C.schoenoides Carpha Carpha schoenoides \N \N \N \N \N 107298 A.abrotanum Artemisia Artemisia abrotanum \N \N \N \N \N 107299 S.comptum Solanum Solanum comptum \N \N \N \N \N 107300 E.amatolensis Erica Erica amatolensis \N \N \N \N \N 107301 L.sapida Lissanthe Lissanthe sapida \N \N \N \N \N 107302 N.mahafalensis Neobeguea Neobeguea mahafalensis \N \N \N \N \N 107303 \N genus Cabobanthus \N \N \N \N \N 107304 E.sekukuniensis Euphorbia Euphorbia sekukuniensis \N \N \N \N \N 107305 C.culeou Chusquea Chusquea culeou \N \N \N \N \N 107306 M.zumi Malus Malus zumi \N \N \N \N \N 107307 P.kerrii Petrocosmea Petrocosmea kerrii \N \N \N \N \N 107308 G.kamiesbergensis Gladiolus Gladiolus kamiesbergensis \N \N \N \N \N 107309 A.ansinii Astragalus Astragalus ansinii \N \N \N \N \N 107310 Q.rosea Qualea Qualea rosea \N \N \N \N \N 107311 \N subspecies Quercus petraea subsp. huguetiana \N \N \N \N \N 107312 \N genus Conophytum \N \N \N \N \N 107313 P.caudatum Phragmipedium Phragmipedium caudatum \N \N \N \N \N 107314 C.subulata Cryptostylis Cryptostylis subulata \N \N \N \N \N 107315 R.buhsei Ranunculus Ranunculus buhsei \N \N \N \N \N 107316 A.angustissima Acaciella Acaciella angustissima \N \N \N \N \N 107317 \N genus Navarretia \N \N \N \N \N 107318 E.nasturtiifolium Erucastrum Erucastrum nasturtiifolium \N \N \N \N \N 107319 E.s.n. Eurystyles Eurystyles sp. Szlachetko s.n. \N \N \N \N \N 107320 S.austro-iranica Silene Silene austro-iranica \N \N \N \N \N 107321 L.tomentosa Lespedeza Lespedeza tomentosa \N \N \N \N \N 107322 T.oxycalyptra Trianthema Trianthema oxycalyptra \N \N \N \N \N 107323 A.robur Angophora Angophora robur \N \N \N \N \N 107324 C.liberofilamenta Camellia Camellia liberofilamenta \N \N \N \N \N 107325 \N genus Stephanochilus \N \N \N \N \N 107326 D.squarrosa Dichaea Dichaea squarrosa \N \N \N \N \N 107327 A.parvifolium Argostemma Argostemma parvifolium \N \N \N \N \N 107328 H.atriplicifolium Halimium Halimium atriplicifolium \N \N \N \N \N 107329 A.burttii Afrocanthium Afrocanthium burttii \N \N \N \N \N 107330 S.hispida Solidago Solidago hispida \N \N \N \N \N 107331 G.gracillimus Gladiolus Gladiolus gracillimus \N \N \N \N \N 107332 O.amazonum Odontocarya Odontocarya amazonum \N \N \N \N \N 107333 S.fragilis Salicornia Salicornia fragilis \N \N \N \N \N 107334 C.tovari Chusquea Chusquea tovari \N \N \N \N \N 107335 N.pilosa Nepenthes Nepenthes pilosa \N \N \N \N \N 107336 C.parsonsia Cuphea Cuphea parsonsia \N \N \N \N \N 107337 C.debile Cypripedium Cypripedium debile \N \N \N \N \N 107338 E.paniculata Endlicheria Endlicheria paniculata \N \N \N \N \N 107339 Z.junceum Zingiber Zingiber junceum \N \N \N \N \N 107340 \N genus Rhynchostele \N \N \N \N \N 107341 \N varietas Astragalus lentiginosus var. diphysus \N \N \N \N \N 107342 J.uniflora Jacobaea Jacobaea uniflora \N \N \N \N \N 107343 \N genus Cacaliopsis \N \N \N \N \N 107344 E.moorei Eucalyptus Eucalyptus moorei \N \N \N \N \N 107345 M.beccarii Myrmephytum Myrmephytum beccarii \N \N \N \N \N 107346 C.microcarpum Cardiospermum Cardiospermum microcarpum \N \N \N \N \N 107347 O.altissima Onobrychis Onobrychis altissima \N \N \N \N \N 107349 P.africanum Peltophorum Peltophorum africanum \N \N \N \N \N 107350 S.dasyanthus Styrax Styrax dasyanthus \N \N \N \N \N 107351 P.hathewayi Psychotria Psychotria hathewayi \N \N \N \N \N 107352 F.longipetiolata Fagus Fagus longipetiolata \N \N \N \N \N 107353 E.trichroma Erica Erica trichroma \N \N \N \N \N 107354 \N varietas Lysionotus microphyllus var. microphyllus \N \N \N \N \N 107355 E.alsinoides Epilobium Epilobium alsinoides \N \N \N \N \N 107356 P.alternans Pelargonium Pelargonium alternans \N \N \N \N \N 107357 H.karagoellense Hieracium Hieracium karagoellense \N \N \N \N \N 107358 D.siphonantha Dyschoriste Dyschoriste siphonantha \N \N \N \N \N 107359 P.forbesii Primula Primula forbesii \N \N \N \N \N 107360 H.uniflora Henriettea Henriettea uniflora \N \N \N \N \N 107361 B.leprosipes Bennettiodendron Bennettiodendron leprosipes \N \N \N \N \N 107362 D.montana Delarbrea Delarbrea montana \N \N \N \N \N 107363 A.fraseri Aechmea Aechmea fraseri \N \N \N \N \N 107364 S.aurantiacum Sauroglossum Sauroglossum aurantiacum \N \N \N \N \N 107365 D.molle Dysoxylum Dysoxylum molle \N \N \N \N \N 107366 O.fistulosa Oenanthe Oenanthe fistulosa \N \N \N \N \N 107367 H.heterodoxa Heliamphora Heliamphora heterodoxa \N \N \N \N \N 107368 A.senegal Acacia Acacia senegal gum-arabic \N \N \N \N 107369 S.stoliczkae Saussurea Saussurea stoliczkae \N \N \N \N \N 107370 C.schottii Ceiba Ceiba schottii \N \N \N \N \N 107371 E.coriacea Eschweilera Eschweilera coriacea \N \N \N \N \N 107372 \N genus Gypsacanthus \N \N \N \N \N 107373 C.neopeltandra Chascotheca Chascotheca neopeltandra \N \N \N \N \N 107374 Z.parvifolia Zehneria Zehneria parvifolia \N \N \N \N \N 107375 P.bifrons Prunus Prunus bifrons \N \N \N \N \N 107376 R.stellatus Rhagadiolus Rhagadiolus stellatus \N \N \N \N \N 107377 L.chaetodon Leandra Leandra chaetodon \N \N \N \N \N 107378 \N genus Lozania \N \N \N \N \N 107379 P.rugosa Pseuduvaria Pseuduvaria rugosa \N \N \N \N \N 107380 S.sarmentosa Schiedea Schiedea sarmentosa \N \N \N \N \N 107381 E.alternatum Eryngium Eryngium alternatum \N \N \N \N \N 107382 \N subspecies Allocasuarina muelleriana subsp. muelleriana \N \N \N \N \N 107383 G.fuscipellita Gomphrena Gomphrena fuscipellita \N \N \N \N \N 107384 A.obovata Adelia Adelia obovata \N \N \N \N \N 107385 M.ellipticum Macrotyloma Macrotyloma ellipticum \N \N \N \N \N 107386 S.cryptophlebium Syzygium Syzygium cryptophlebium \N \N \N \N \N 107387 \N no rank Hermas clade \N \N \N \N \N 107388 R.ciliatum Ribes Ribes ciliatum \N \N \N \N \N 107389 R.nemorosus Ranunculus Ranunculus nemorosus \N \N \N \N \N 107390 \N subspecies Anacyclus radiatus subsp. radiatus \N \N \N \N \N 107391 M.leucantha Montanoa Montanoa leucantha \N \N \N \N \N 107392 A.schumannii Alsodeiopsis Alsodeiopsis schumannii \N \N \N \N \N 107393 J.filicaulis Jamesbrittenia Jamesbrittenia filicaulis \N \N \N \N \N 107394 P.mexicanum Polemonium Polemonium mexicanum \N \N \N \N \N 107395 \N genus Roigella \N \N \N \N \N 107396 R.racemosa Rhodocolea Rhodocolea racemosa \N \N \N \N \N 107397 D.oxyptera Dodonaea Dodonaea oxyptera \N \N \N \N \N 107398 E.villosum Eritrichium Eritrichium villosum \N \N \N \N \N 107399 \N genus Jablonskia \N \N \N \N \N 107400 M.tamaulipana Magnolia Magnolia tamaulipana \N \N \N \N \N 107401 C.repens Carex Carex repens \N \N \N \N \N 107402 A.canadensis Astragalus Astragalus canadensis \N \N \N \N \N 107403 S.aperta Salsola Salsola aperta \N \N \N \N \N 107404 O.nidulans Oxalis Oxalis nidulans \N \N \N \N \N 107405 D.nitida Discaria Discaria nitida \N \N \N \N \N 107406 L.tenella Lotus Lotus tenella \N \N \N \N \N 107407 V.brasiliensis Verbena Verbena brasiliensis \N \N \N \N \N 107408 C.saltensis Croton Croton saltensis \N \N \N \N \N 107409 L.maximowiczii Lonicera Lonicera maximowiczii \N \N \N \N \N 107410 K.elegans Koelreuteria Koelreuteria elegans \N \N \N \N \N 107411 S.apulica Serapias Serapias apulica \N \N \N \N \N 107412 \N family Cercidiphyllaceae katsura tree family \N \N \N \N 107413 A.ophiolitica Allocasuarina Allocasuarina ophiolitica \N \N \N \N \N 107414 F.hupehensis Fraxinus Fraxinus hupehensis \N \N \N \N \N 107415 B.serrata Brocchinia Brocchinia serrata \N \N \N \N \N 107416 L.kalmii Lobelia Lobelia kalmii \N \N \N \N \N 107417 S.humilis Sabicea Sabicea humilis \N \N \N \N \N 107418 G.harknessii Gossypium Gossypium harknessii \N \N \N \N \N 107419 A.atropilosulus Astragalus Astragalus atropilosulus \N \N \N \N \N 107420 W.thyrsiflora Wachendorfia Wachendorfia thyrsiflora \N \N \N \N \N 107421 H.niveus Helianthus Helianthus niveus \N \N \N \N \N 107422 B.multiflora Bocageopsis Bocageopsis multiflora \N \N \N \N \N 107423 \N subspecies Syringa reticulata subsp. pekinensis \N \N \N \N \N 107424 \N genus Carphephorus \N \N \N \N \N 107425 E.albicaulis Echinops Echinops albicaulis \N \N \N \N \N 107426 M.guerreronis Mammillaria Mammillaria guerreronis \N \N \N \N \N 107427 I.vieillardii Ixora Ixora vieillardii \N \N \N \N \N 107428 \N family Ranunculaceae buttercup family \N \N \N \N 107429 C.okiense Chrysanthemum Chrysanthemum okiense \N \N \N \N \N 107430 A.campestris Allocasuarina Allocasuarina campestris \N \N \N \N \N 107431 \N genus Psilactis \N \N \N \N \N 107432 O.saxifraga Oschatzia Oschatzia saxifraga \N \N \N \N \N 107433 C.horridum Canthium Canthium horridum \N \N \N \N \N 107434 B.salaziensis Begonia Begonia salaziensis \N \N \N \N \N 107435 C.stoechadis Chloanthes Chloanthes stoechadis \N \N \N \N \N 107436 M.polycephala Mimosa Mimosa polycephala \N \N \N \N \N 107437 \N genus Oxydendrum \N \N \N \N \N 107438 A.chienii Acer Acer chienii \N \N \N \N \N 107439 \N genus Clematis virgin's bower \N \N \N \N 107440 C.menyharthii Croton Croton menyharthii \N \N \N \N \N 107441 P.caribaea Pilea Pilea caribaea \N \N \N \N \N 107442 E.mlanjeana Euphorbia Euphorbia mlanjeana \N \N \N \N \N 107443 D.viride Delphinium Delphinium viride \N \N \N \N \N 107444 C.castroviejoi Cuscuta Cuscuta castroviejoi \N \N \N \N \N 107445 \N genus Gahnia \N \N \N \N \N 107446 A.rioxana Androsace Androsace rioxana \N \N \N \N \N 107447 K.eriantha Kohleria Kohleria eriantha \N \N \N \N \N 107448 \N genus Parlatoria \N \N \N \N \N 107449 S.laxum Sisyrinchium Sisyrinchium laxum \N \N \N \N \N 107450 I.echioides Indoneesiella Indoneesiella echioides \N \N \N \N \N 107451 V.pumila Valerianella Valerianella pumila \N \N \N \N \N 107452 A.3667 Austromatthaea Austromatthaea sp. Gray 3667 \N \N \N \N \N 107453 C.NH-2011 Coccinia Coccinia aff. aurantiaca NH-2011 \N \N \N \N \N 107454 B.carduchorum Biarum Biarum carduchorum \N \N \N \N \N 107455 H.heteromalla Hydrangea Hydrangea heteromalla \N \N \N \N \N 107456 C.molestiformis Carex Carex molestiformis frightful sedge \N \N \N \N 107457 I.grandiflora Iliamna Iliamna grandiflora \N \N \N \N \N 107458 M.866 Mimosa Mimosa sp. Simon 866 \N \N \N \N \N 107459 B.serratipetala Begonia Begonia serratipetala \N \N \N \N \N 107460 A.css070 Aechmea Aechmea aff. squarrosa css070 \N \N \N \N \N 107461 T.odoratissima Trilisa Trilisa odoratissima \N \N \N \N \N 107462 \N genus Sandersonia \N \N \N \N \N 107463 S.rigidum Sceletium Sceletium rigidum \N \N \N \N \N 107464 E.hornemannii Epilobium Epilobium hornemannii \N \N \N \N \N 107465 \N subfamily Papilionoideae \N \N \N \N \N 107466 P.boliviensis Puya Puya boliviensis \N \N \N \N \N 107467 C.BAW-2010a Commersonia Commersonia sp. BAW-2010a \N \N \N \N \N 107468 P.microphylla Potameia Potameia microphylla \N \N \N \N \N 107469 I.tubergeniana Iris Iris tubergeniana \N \N \N \N \N 107470 C.arctiformis Carex Carex arctiformis \N \N \N \N \N 107471 \N varietas Cliffortia juniperina var. pilosula \N \N \N \N \N 107472 E.smithiae Elettariopsis Elettariopsis smithiae \N \N \N \N \N 107473 I.colchica Ilex Ilex colchica \N \N \N \N \N 107474 M.reflexa Mitrephora Mitrephora reflexa \N \N \N \N \N 107475 R.alceifolius Rubus Rubus alceifolius \N \N \N \N \N 107476 E.cervicorne Eriospermum Eriospermum cervicorne \N \N \N \N \N 107477 E.giraldii Eleutherococcus Eleutherococcus giraldii \N \N \N \N \N 107478 P.uniflorus Paranephelius Paranephelius ovatus x Paranephelius uniflorus \N \N \N \N \N 107479 P.munsoniana Prunus Prunus munsoniana wild-goose plum \N \N \N \N 107480 V.odorata Villaria Villaria odorata \N \N \N \N \N 107481 C.greenei Chrysothamnus Chrysothamnus greenei \N \N \N \N \N 107482 \N genus Margotia \N \N \N \N \N 107483 P.ottoniana Polystachya Polystachya ottoniana \N \N \N \N \N 107484 \N genus Hippolytia \N \N \N \N \N 107485 E.linearis Erigeron Erigeron linearis \N \N \N \N \N 107486 J.mionei Jaltomata Jaltomata mionei \N \N \N \N \N 107487 P.samhanensis Pulicaria Pulicaria samhanensis \N \N \N \N \N 107488 E.erythrophloia Eucalyptus Eucalyptus erythrophloia \N \N \N \N \N 107489 D.scandens Dalea Dalea scandens \N \N \N \N \N 107490 \N genus Pleuranthodium \N \N \N \N \N 107491 A.albolutescens Ateleia Ateleia albolutescens \N \N \N \N \N 107492 G.vulcanicola Geranium Geranium vulcanicola \N \N \N \N \N 107493 E.berteroana Euphorbia Euphorbia berteroana \N \N \N \N \N 107494 A.ramosum Alantsilodendron Alantsilodendron ramosum \N \N \N \N \N 107495 C.salinensis Coryphantha Coryphantha salinensis \N \N \N \N \N 107496 A.rubra Asclepias Asclepias rubra \N \N \N \N \N 107497 S.rosulata Silene Silene rosulata \N \N \N \N \N 107498 C.arundinacea Calamagrostis Calamagrostis arundinacea \N \N \N \N \N 107499 S.alnifolia Schumacheria Schumacheria alnifolia \N \N \N \N \N 107500 B.macrantha Betonica Betonica macrantha \N \N \N \N \N 107501 P.aromatica Primula Primula aromatica \N \N \N \N \N 107502 L.BB2 Lithocarpus Lithocarpus sp. BB2 \N \N \N \N \N 107503 P.subnodosum Psilocaulon Psilocaulon subnodosum \N \N \N \N \N 107504 S.vaginata Setaria Setaria vaginata \N \N \N \N \N 107505 M.echinocaula Mimosa Mimosa echinocaula \N \N \N \N \N 107506 M.paniculatus Miscanthus Miscanthus paniculatus \N \N \N \N \N 107507 L.0044007 Leontopodium Leontopodium sp. Safer 0044007 \N \N \N \N \N 107508 R.nimbicola Resia Resia nimbicola \N \N \N \N \N 107509 \N genus Plumeria \N \N \N \N \N 107510 H.coreana Hemerocallis Hemerocallis coreana \N \N \N \N \N 107511 S.apokremnos Schiedea Schiedea apokremnos \N \N \N \N \N 107512 M.mambulilingensis Malaxis Malaxis mambulilingensis \N \N \N \N \N 107513 S.filiforme Solanum Solanum filiforme \N \N \N \N \N 107514 C.denudatum Cenolophium Cenolophium denudatum \N \N \N \N \N 107515 C.4506 Chlorophytum Chlorophytum sp. Nordal & Kativu 4506 \N \N \N \N \N 107516 L.multiflorus Lupinus Lupinus multiflorus \N \N \N \N \N 107517 T.lamottei Tragopogon Tragopogon lamottei \N \N \N \N \N 107518 V.apiculata Vangueria Vangueria apiculata \N \N \N \N \N 107519 \N genus Amphineurion \N \N \N \N \N 107520 M.callidryas Mimosa Mimosa callidryas \N \N \N \N \N 107521 S.dolomitica Salvia Salvia dolomitica \N \N \N \N \N 107522 \N genus Zaleya \N \N \N \N \N 107523 S.filaginoides Senecio Senecio filaginoides \N \N \N \N \N 107524 B.harrisoniae Bifrenaria Bifrenaria harrisoniae \N \N \N \N \N 107525 E.chapelieri Eragrostis Eragrostis chapelieri \N \N \N \N \N 107526 M.(GB) Macaranga Macaranga sp. C (GB) \N \N \N \N \N 107527 T.tauschii x Aegilotriticum Triticum turgidum subsp. durum x Aegilops tauschii \N \N \N \N \N 107528 P.oxyrhynchos Polygala Polygala oxyrhynchos \N \N \N \N \N 107529 M.szechuanica Manglietia Manglietia szechuanica \N \N \N \N \N 107530 C.103_Salouk Cousinia Cousinia sp. 103_Salouk \N \N \N \N \N 107531 A.liberica Atroxima Atroxima liberica \N \N \N \N \N 107532 C.falcata Ceratocephala Ceratocephala falcata \N \N \N \N \N 107533 P.collina Potentilla Potentilla collina \N \N \N \N \N 107534 S.prostrata Suaeda Suaeda prostrata \N \N \N \N \N 107535 M.sonorae Malacothrix Malacothrix sonorae \N \N \N \N \N 107536 I.senecionoides Iphiona Iphiona senecionoides \N \N \N \N \N 107537 M.brophyi Melaleuca Melaleuca brophyi \N \N \N \N \N 107538 C.dichrous Croton Croton dichrous \N \N \N \N \N 107539 M.sancta Matthaea Matthaea sancta \N \N \N \N \N 107540 T.sphaerocarpa Trevesia Trevesia sphaerocarpa \N \N \N \N \N 107541 P.nitida Peltiera Peltiera nitida \N \N \N \N \N 107542 A.milleflorum Arthropodium Arthropodium milleflorum \N \N \N \N \N 107543 L.virginicum Lepidium Lepidium virginicum \N \N \N \N \N 107544 I.tricolor Ipomoea Ipomoea tricolor campanilla,flying-saucers,pearly-gates,yaxcelil \N \N \N \N 107545 Z.maritimum Zygophyllum Zygophyllum maritimum \N \N \N \N \N 107546 M.carinatus Mimozyganthus Mimozyganthus carinatus \N \N \N \N \N 107547 D.bulbocastanum Diposis Diposis bulbocastanum \N \N \N \N \N 107548 \N genus Barbarea winter cress \N \N \N \N 107549 F.arenaria Filago Filago arenaria \N \N \N \N \N 107550 M.diversifolia Moehringia Moehringia diversifolia \N \N \N \N \N 107551 C.nitidula Cliffortia Cliffortia nitidula \N \N \N \N \N 107552 M.68 Miconia Miconia sp. Trusty 68 \N \N \N \N \N 107553 \N genus Eriotheca \N \N \N \N \N 107554 M.touriga Mammea Mammea touriga \N \N \N \N \N 107555 \N genus Cassine \N \N \N \N \N 107556 M.7335 Mimulus Mimulus sp. Barker 7335 \N \N \N \N \N 107557 S.innoxium Solanum Solanum innoxium \N \N \N \N \N 107558 S.americana Sorbus Sorbus americana \N \N \N \N \N 107559 C.kihansiensis Coffea Coffea kihansiensis \N \N \N \N \N 107560 L.N-309 Lycium Lycium sp. N-309 \N \N \N \N \N 107561 S.africana Scabiosa Scabiosa africana \N \N \N \N \N 107562 \N genus Scutachne \N \N \N \N \N 107563 G.martleyi Gladiolus Gladiolus martleyi \N \N \N \N \N 107564 P.hirsutus Philadelphus Philadelphus hirsutus streambank mock-orange \N \N \N \N 107565 D.brevifolium Dipcadi Dipcadi brevifolium \N \N \N \N \N 107566 M.multibracteata Mussaenda Mussaenda multibracteata \N \N \N \N \N 107567 \N genus Rhabdocaulon \N \N \N \N \N 107568 T.caffra Tinospora Tinospora caffra \N \N \N \N \N 107569 M.racemosa Masdevallia Masdevallia racemosa \N \N \N \N \N 107570 P.glaziovii Paepalanthus Paepalanthus glaziovii \N \N \N \N \N 107571 B.flava Blumeopsis Blumeopsis flava \N \N \N \N \N 107572 C.guianensis Couroupita Couroupita guianensis cannonball tree \N \N \N \N 107573 C.tomentosa Clethra Clethra tomentosa \N \N \N \N \N 107574 P.malvaceus Physocarpus Physocarpus malvaceus \N \N \N \N \N 107575 M.pseudomato Myrcianthes Myrcianthes pseudomato \N \N \N \N \N 107576 K.JT2007-21 Kaempferia Kaempferia sp. 3 JT2007-21 \N \N \N \N \N 107577 E.hemisphaerica Etlingera Etlingera hemisphaerica \N \N \N \N \N 107578 S.timorensis Senna Senna timorensis limestone cassia \N \N \N \N 107579 P.carolinianus Pyrrhopappus Pyrrhopappus carolinianus desert-chicory \N \N \N \N 107580 P.protrusum Piper Piper protrusum \N \N \N \N \N 107581 \N genus Ampelosycios \N \N \N \N \N 107582 \N varietas Hazardia squarrosa var. grindelioides \N \N \N \N \N 107583 \N genus Lloydia \N \N \N \N \N 107584 E.brachypodus Euryops Euryops brachypodus \N \N \N \N \N 107585 C.tasmanica Carex Carex tasmanica \N \N \N \N \N 107586 \N genus Myrocarpus \N \N \N \N \N 107587 S.medicaginoides Sclerolaena Sclerolaena medicaginoides \N \N \N \N \N 107588 I.edulis Inga Inga edulis ice cream bean \N \N \N \N 107589 C.paulo-vargasii Carex Carex paulo-vargasii \N \N \N \N \N 107590 F.spectabilis Festuca Festuca spectabilis \N \N \N \N \N 107591 \N subspecies Cliffortia nitidula subsp. pilosa \N \N \N \N \N 107592 A.cuatrecasana Attalea Attalea cuatrecasana taparo palm \N \N \N \N 107593 P.spathulata Platydesma Platydesma spathulata \N \N \N \N \N 107594 A.vaginata Arracacia Arracacia vaginata \N \N \N \N \N 107595 \N varietas Pediomelum aromaticum var. aromaticum \N \N \N \N \N 107596 S.flagelliformis Spermacoce Spermacoce flagelliformis \N \N \N \N \N 107597 A.wardii Acer Acer wardii \N \N \N \N \N 107598 M.zacatecasensis Mammillaria Mammillaria zacatecasensis \N \N \N \N \N 107599 L.demissa Lonicera Lonicera demissa \N \N \N \N \N 107600 G.harveyana Gymnosporia Gymnosporia harveyana \N \N \N \N \N 107601 S.WO2007002267 Sorghum Sorghum sp. WO2007002267 \N \N \N \N \N 107602 \N genus Distemonanthus \N \N \N \N \N 107603 C.3587 Clusia Clusia aff. stenophylla JA 3587 \N \N \N \N \N 107604 R.capensis Rafnia Rafnia capensis \N \N \N \N \N 107605 B.fimbriata Babiana Babiana fimbriata \N \N \N \N \N 107606 M.subangulata Momordica Momordica subangulata \N \N \N \N \N 107607 F.plicata Festuca Festuca plicata \N \N \N \N \N 107608 R.tataricum Rheum Rheum tataricum \N \N \N \N \N 107609 E.subdivaricata Erica Erica subdivaricata \N \N \N \N \N 107610 E.oatesii Erica Erica oatesii \N \N \N \N \N 107611 \N genus Nicolaia \N \N \N \N \N 107612 O.californica Orcuttia Orcuttia californica \N \N \N \N \N 107613 \N subtribe Eleusininae \N \N \N \N \N 107614 P.triste Pelargonium Pelargonium triste \N \N \N \N \N 107615 K.coriacea Kibara Kibara coriacea \N \N \N \N \N 107616 S.pustulata Strombosia Strombosia pustulata \N \N \N \N \N 107617 P.globifera Pedicularis Pedicularis globifera \N \N \N \N \N 107618 E.inarticulata Euphorbia Euphorbia inarticulata \N \N \N \N \N 107619 C.nitida Coelogyne Coelogyne nitida \N \N \N \N \N 107620 I.chinensis Impatiens Impatiens chinensis \N \N \N \N \N 107621 \N genus Phragmanthera \N \N \N \N \N 107622 \N varietas Samolus ebracteatus var. cuneatus \N \N \N \N \N 107623 D.lateriticus Desmocladus Desmocladus lateriticus \N \N \N \N \N 107624 I.purpurea Ipomoea Ipomoea purpurea common morning-glory \N \N \N \N 107625 C.sylvicola Cissus Cissus sylvicola \N \N \N \N \N 107626 A.dasyphyllum Allium Allium dasyphyllum \N \N \N \N \N 107627 Q.fusiformis Quercus Quercus fusiformis \N \N \N \N \N 107628 O.incubacea Ophrys Ophrys incubacea \N \N \N \N \N 107629 R.saulensis Ruellia Ruellia saulensis \N \N \N \N \N 107630 M.2486 Maxillaria Maxillaria sp. Whitten 2486 \N \N \N \N \N 107631 A.hydruntina Anthemis Anthemis hydruntina \N \N \N \N \N 107632 B.corniculata Bauhinia Bauhinia corniculata \N \N \N \N \N 107633 L.tiehmii Lepidium Lepidium tiehmii \N \N \N \N \N 107634 I.australiense Idiospermum Idiospermum australiense ribbonwood \N \N \N \N 107635 P.canescens Prunus Prunus avium x cerasus x canescens \N \N \N \N \N 107636 \N forma Indocalamus tessellatus f. hamadae \N \N \N \N \N 107637 \N genus Stahlianthus \N \N \N \N \N 107638 G.parvula Gymnosteris Gymnosteris parvula \N \N \N \N \N 107639 G.griffithii Garcinia Garcinia griffithii \N \N \N \N \N 107640 A.lihengiana Aralia Aralia lihengiana \N \N \N \N \N 107641 L.cruciforme Lepismium Lepismium cruciforme cruzeta \N \N \N \N 107642 S.agrestis Styrax Styrax agrestis \N \N \N \N \N 107643 S.saxicola Saxipoa Saxipoa saxicola \N \N \N \N \N 107644 E.atratiflora Elegia Elegia atratiflora \N \N \N \N \N 107645 M.aquilonia Myrsine Myrsine aquilonia \N \N \N \N \N 107646 \N no rank Alyssum serpyllifolium ('guitanii') \N \N \N \N \N 107647 T.gracile Thesium Thesium gracile \N \N \N \N \N 107648 \N genus Lasiobema \N \N \N \N \N 107649 M.pritzeliana Moraea Moraea pritzeliana \N \N \N \N \N 107650 M.doriana Miconia Miconia doriana \N \N \N \N \N 107651 \N genus Ligusticum lovage \N \N \N \N 107652 \N genus Dolichoura \N \N \N \N \N 107653 P.polyphleba Pseudoxandra Pseudoxandra polyphleba \N \N \N \N \N 107654 A.fernandezianum Apium Apium fernandezianum \N \N \N \N \N 107655 H.cylindriflorum Helichrysum Helichrysum cylindriflorum \N \N \N \N \N 107656 C.serratifolius Croton Croton serratifolius \N \N \N \N \N 107657 E.desertorum Eragrostis Eragrostis desertorum \N \N \N \N \N 107658 T.microcarpa Trichostachys Trichostachys microcarpa \N \N \N \N \N 107659 S.incamayoense Solanum Solanum incamayoense \N \N \N \N \N 107660 G.grandicalyx Glossoloma Glossoloma grandicalyx \N \N \N \N \N 107661 G.axillaris Gynotroches Gynotroches axillaris \N \N \N \N \N 107662 \N subspecies Fragaria x ananassa subsp. cuneifolia \N \N \N \N \N 107663 M.chamissoi Montia Montia chamissoi \N \N \N \N \N 107664 \N subspecies Bouteloua hirsuta subsp. pectinata \N \N \N \N \N 107665 A.racemosa Acrachne Acrachne racemosa goosegrass \N \N \N \N 107666 H.2005-BB Hamelia Hamelia sp. 2005-BB \N \N \N \N \N 107667 T.media Thorncroftia Thorncroftia media \N \N \N \N \N 107668 \N varietas Leucaena lanceolata var. lanceolata \N \N \N \N \N 107669 M.distichophylla Muhlenbergia Muhlenbergia distichophylla \N \N \N \N \N 107670 G.iranica Gagea Gagea iranica \N \N \N \N \N 107671 S.orinocensis Simaba Simaba orinocensis \N \N \N \N \N 107672 E.albida Ericameria Ericameria albida whiteflower rabbitbrush \N \N \N \N 107673 \N genus Sericocarpus \N \N \N \N \N 107674 T.WH-2010 Ternstroemia Ternstroemia sp. WH-2010 \N \N \N \N \N 107675 P.glaucescens Polygonum Polygonum glaucescens \N \N \N \N \N 107676 \N genus Psathyrostachys \N \N \N \N \N 107677 E.novocaledonicum Erythroxylum Erythroxylum novocaledonicum \N \N \N \N \N 107678 O.tuleyi Oncocalamus Oncocalamus tuleyi \N \N \N \N \N 107679 S.veitchii Schefflera Schefflera veitchii \N \N \N \N \N 107680 M.robusta Machilus Machilus robusta \N \N \N \N \N 107681 O.suavis Oxalis Oxalis suavis \N \N \N \N \N 107682 O.emarginata Ormosia Ormosia emarginata \N \N \N \N \N 107683 M.rubrostipulata Mitragyna Mitragyna rubrostipulata \N \N \N \N \N 107684 M.insignis Manglietia Manglietia insignis \N \N \N \N \N 107685 \N subspecies Polylepis tomentella subsp. tomentella \N \N \N \N \N 107686 L.involucrata Lotononis Lotononis involucrata \N \N \N \N \N 107687 P.macrocalyx Primula Primula macrocalyx \N \N \N \N \N 107688 P.elata Phyllopentas Phyllopentas elata \N \N \N \N \N 107689 H.javanica Heritiera Heritiera javanica \N \N \N \N \N 107690 P.rhipsalinum Phoradendron Phoradendron rhipsalinum \N \N \N \N \N 107691 A.manriqueorum Aeonium Aeonium manriqueorum \N \N \N \N \N 107692 T.elegans Thlaspi Thlaspi elegans \N \N \N \N \N 107693 C.coriaceum Camptosema Camptosema coriaceum \N \N \N \N \N 107694 O.lasiophylla Olearia Olearia lasiophylla \N \N \N \N \N 107695 B.jelskii Barnadesia Barnadesia jelskii \N \N \N \N \N 107696 M.sylvestris Malus Malus sylvestris European crab apple \N \N \N \N 107697 C.cumulata Carex Carex cumulata \N \N \N \N \N 107698 W.stuhlmannii Warburgia Warburgia stuhlmannii \N \N \N \N \N 107699 \N genus Tonestus serpentweeds \N \N \N \N 107700 E.velleriflora Euphorbia Euphorbia velleriflora \N \N \N \N \N 107701 \N genus Galphimia \N \N \N \N \N 107702 \N genus Luma \N \N \N \N \N 107703 D.pachyphylla Diplolepis Diplolepis pachyphylla \N \N \N \N \N 107704 A.leighii Aciphylla Aciphylla leighii \N \N \N \N \N 107705 P.moluccanum Pittosporum Pittosporum moluccanum \N \N \N \N \N 107706 A.pascoi Aconitum Aconitum pascoi \N \N \N \N \N 107707 T.purdiei Triplaris Triplaris purdiei \N \N \N \N \N 107708 P.odoratum Polygonatum Polygonatum odoratum yu zhu \N \N \N \N 107709 \N genus Spyridium \N \N \N \N \N 107710 A.duclouxii Angelica Angelica duclouxii \N \N \N \N \N 107711 M.confusa Mackinlaya Mackinlaya confusa \N \N \N \N \N 107712 V.pusilla Viguiera Viguiera pusilla \N \N \N \N \N 107713 J.uleana Jubelina Jubelina uleana \N \N \N \N \N 107714 \N genus Caudanthera \N \N \N \N \N 107715 I.anomala Ifloga Ifloga anomala \N \N \N \N \N 107716 T.19-01 Tristellateia Tristellateia sp. Davis 19-01 \N \N \N \N \N 107717 \N genus Belonophora \N \N \N \N \N 107718 S.olusatrum Smyrnium Smyrnium olusatrum alexanders,horse parsley \N \N \N \N 107719 V.weberbaueri Vasconcellea Vasconcellea weberbaueri \N \N \N \N \N 107720 G.filiformis Galearia Galearia filiformis \N \N \N \N \N 107721 H.reticulatum Hippeastrum Hippeastrum reticulatum \N \N \N \N \N 107722 L.guaissara Luetzelburgia Luetzelburgia guaissara \N \N \N \N \N 107723 E.fasciculata Ericameria Ericameria fasciculata \N \N \N \N \N 107724 \N genus Hierochloe \N \N \N \N \N 107725 F.griffithii Fraxinus Fraxinus griffithii \N \N \N \N \N 107726 \N subspecies Erythronium grandiflorum subsp. candidum \N \N \N \N \N 107727 \N genus Urocarpidium \N \N \N \N \N 107728 \N genus Pteryxia \N \N \N \N \N 107729 \N subspecies Hordeum vulgare subsp. vulgare barley,domesticated barley,two-rowed barley \N \N \N \N 107730 T.gymnocarpon Trifolium Trifolium gymnocarpon \N \N \N \N \N 107731 G.hypochlora Gaultheria Gaultheria hypochlora \N \N \N \N \N 107732 T.kweichowensis Tutcheria Tutcheria kweichowensis \N \N \N \N \N 107733 N.furculifolia Nymphoides Nymphoides furculifolia \N \N \N \N \N 107734 I.hookeri Ixora Ixora hookeri \N \N \N \N \N 107735 L.maroccana Linaria Linaria maroccana \N \N \N \N \N 107736 O.peucedanifolia Oenanthe Oenanthe peucedanifolia \N \N \N \N \N 107737 E.hypogaea Euphorbia Euphorbia hypogaea \N \N \N \N \N 107738 \N varietas Larrea tridentata var. arenaria \N \N \N \N \N 107739 R.dependens Rostrinucula Rostrinucula dependens \N \N \N \N \N 107740 R.allemannii Ranunculus Ranunculus allemannii \N \N \N \N \N 107741 P.umbraticola Portulaca Portulaca umbraticola \N \N \N \N \N 107742 M.cochinchinensis Melodinus Melodinus cochinchinensis \N \N \N \N \N 107743 D.unijuga Dichrostachys Dichrostachys unijuga \N \N \N \N \N 107744 G.algeriensis Gagea Gagea algeriensis \N \N \N \N \N 107745 C.175 Cyrtandra Cyrtandra sp. Hoover & Agus ARs 175 \N \N \N \N \N 107746 N.spathulatus Nastanthus Nastanthus spathulatus \N \N \N \N \N 107747 S.geniculata Scandia Scandia geniculata \N \N \N \N \N 107748 H.porteri Helianthus Helianthus porteri \N \N \N \N \N 107749 A.corymbosa Aechmea Aechmea corymbosa \N \N \N \N \N 107750 D.hidalgoanus Davilanthus Davilanthus hidalgoanus \N \N \N \N \N 107751 T.glandulosum Tetramerium Tetramerium glandulosum \N \N \N \N \N 107752 S.lateriflorum Syzygium Syzygium lateriflorum \N \N \N \N \N 107753 C.albertoregelia Cousinia Cousinia albertoregelia \N \N \N \N \N 107754 L.10529 Leontopodium Leontopodium cf. stracheyi Dickore 10529 \N \N \N \N \N 107755 V.ganchouenensis Viola Viola ganchouenensis \N \N \N \N \N 107756 C.densiflora Celmisia Celmisia densiflora \N \N \N \N \N 107757 S.mohrii Silphium Silphium mohrii \N \N \N \N \N 107758 \N genus Sampaiella \N \N \N \N \N 107759 H.montevidensis Habenaria Habenaria montevidensis \N \N \N \N \N 107760 T.perfoliata Triodanis Triodanis perfoliata \N \N \N \N \N 107761 B.paniculata Bonnetia Bonnetia paniculata \N \N \N \N \N 107762 S.exiguum Solanum Solanum exiguum \N \N \N \N \N 107763 A.declinatus Asparagus Asparagus declinatus \N \N \N \N \N 107764 P.khasianum Piper Piper khasianum \N \N \N \N \N 107765 \N genus Axyris \N \N \N \N \N 107766 H.tamnoides Hablitzia Hablitzia tamnoides \N \N \N \N \N 107767 P.caffrum Pelargonium Pelargonium caffrum \N \N \N \N \N 107768 A.racemosus Anthopterus Anthopterus racemosus \N \N \N \N \N 107769 P.aromatica Pimpinella Pimpinella aromatica \N \N \N \N \N 107770 E.buhsei Euphorbia Euphorbia buhsei \N \N \N \N \N 107771 A.quinii Atriplex Atriplex quinii \N \N \N \N \N 107772 T.S5598 unclassified Taraxacum Taraxacum (sect. Mexicana) sp. S5598 \N \N \N \N \N 107773 C.imberbis Commelina Commelina imberbis \N \N \N \N \N 107774 B.gossweileri Bromuniola Bromuniola gossweileri \N \N \N \N \N 107775 \N subspecies Acacia hebeclada subsp. tristis \N \N \N \N \N 107776 A.arvensis Anagallis Anagallis arvensis \N \N \N \N \N 107777 C.lasiocarpa Carex Carex lasiocarpa \N \N \N \N \N 107778 S.lepidotum Solanum Solanum lepidotum \N \N \N \N \N 107779 L.reflexa Linaria Linaria reflexa \N \N \N \N \N 107780 L.pteridophyllum Ligusticum Ligusticum pteridophyllum \N \N \N \N \N 107781 \N genus Dilkea \N \N \N \N \N 107782 Z.1490 Zygophyllum Zygophyllum sp. Kolberg 1490 \N \N \N \N \N 107783 G.cylindraceus Gladiolus Gladiolus cylindraceus \N \N \N \N \N 107784 \N varietas Aristida stricta var. beyrichiana \N \N \N \N \N 107785 P.TJSW-2011 unclassified Passifloraceae Passifloraceae sp. TJSW-2011 \N \N \N \N \N 107786 R.beesianum Rhododendron Rhododendron beesianum \N \N \N \N \N 107787 S.striata Scrophularia Scrophularia striata \N \N \N \N \N 107788 L.pubistyla Leandra Leandra pubistyla \N \N \N \N \N 107789 \N genus Pterostemon \N \N \N \N \N 107790 L.maritima Lasthenia Lasthenia maritima \N \N \N \N \N 107791 \N genus Ambrosia ragweeds \N \N \N \N 107792 R.metallica Ruellia Ruellia metallica \N \N \N \N \N 107793 C.tomentosa Chaptalia Chaptalia tomentosa \N \N \N \N \N 107794 I.majus Illicium Illicium majus \N \N \N \N \N 107795 M.longiflora Morinda Morinda longiflora \N \N \N \N \N 107796 M.cultivar Malus Malus hybrid cultivar \N \N \N \N \N 107797 A.coulteri Acourtia Acourtia coulteri \N \N \N \N \N 107798 B.biflora Bewsia Bewsia biflora \N \N \N \N \N 107799 H.pilosum Heliotropium Heliotropium pilosum \N \N \N \N \N 107800 \N subspecies Philodendron schottii subsp. talamancae \N \N \N \N \N 107801 \N genus Adenanthera \N \N \N \N \N 107802 R.acutangula Ruellia Ruellia acutangula \N \N \N \N \N 107803 M.versicolor Moraea Moraea versicolor \N \N \N \N \N 107804 L.pusillus Linanthus Linanthus pusillus \N \N \N \N \N 107805 N.racemosus Nabalus Nabalus racemosus \N \N \N \N \N 107806 G.cliftonsmithii Galium Galium cliftonsmithii \N \N \N \N \N 107807 R.eichleranus Ranunculus Ranunculus eichleranus \N \N \N \N \N 107808 \N genus Seriphidium \N \N \N \N \N 107809 \N genus Haniffia \N \N \N \N \N 107810 H.paniculatum Hieracium Hieracium paniculatum \N \N \N \N \N 107811 M.gracilis Myodocarpus Myodocarpus gracilis \N \N \N \N \N 107812 B.1090 Baccharis Baccharis sp. Pennington 1090 \N \N \N \N \N 107813 L.rubiginosa Lysimachia Lysimachia rubiginosa \N \N \N \N \N 107814 P.prostrata Peperomia Peperomia prostrata \N \N \N \N \N 107815 D.ficifolia Dalechampia Dalechampia ficifolia \N \N \N \N \N 107816 C.tuberculata Cuscuta Cuscuta tuberculata \N \N \N \N \N 107817 T.aucheri Thymelaea Thymelaea aucheri \N \N \N \N \N 107818 V.morrisonicola Veronica Veronica morrisonicola \N \N \N \N \N 107819 N.barkeri Notylia Notylia barkeri \N \N \N \N \N 107820 \N genus Hainania \N \N \N \N \N 107821 S.baileyana Samadera Samadera baileyana \N \N \N \N \N 107822 \N genus Triodanis \N \N \N \N \N 107823 B.chaerophylloides Bunium Bunium chaerophylloides \N \N \N \N \N 107824 D.laxiflora Distichlis Distichlis laxiflora \N \N \N \N \N 107825 I.basilaris Isolepis Isolepis basilaris \N \N \N \N \N 107826 D.odoratissima Dicerandra Dicerandra odoratissima \N \N \N \N \N 107827 S.plena Schisandra Schisandra plena \N \N \N \N \N 107828 C.epilinum Cuscuta Cuscuta epilinum flax dodder \N \N \N \N 107829 D.graminifolia Disa Disa graminifolia \N \N \N \N \N 107830 M.stenophylla Macrocarpaea Macrocarpaea stenophylla \N \N \N \N \N 107831 O.ecklonis Osteospermum Osteospermum ecklonis \N \N \N \N \N 107832 E.eburnea Elephantomene Elephantomene eburnea \N \N \N \N \N 107833 \N genus Peridictyon \N \N \N \N \N 107834 R.3946 Rulingia Rulingia aff. dasyphylla Copeland 3946 \N \N \N \N \N 107835 O.ilicifolia Onoseris Onoseris ilicifolia \N \N \N \N \N 107836 H.longipilum Hieracium Hieracium longipilum \N \N \N \N \N 107837 P.vicarium Piptatherum Piptatherum vicarium \N \N \N \N \N 107838 S.helvola Strophostyles Strophostyles helvola trailing fuzzybean \N \N \N \N 107839 \N subspecies Pinguicula crystallina subsp. hirtiflora \N \N \N \N \N 107840 I.lungshengensis Isodon Isodon lungshengensis \N \N \N \N \N 107841 I.montivaga Isolepis Isolepis montivaga \N \N \N \N \N 107842 \N varietas Bystropogon canariensis var. canariensis \N \N \N \N \N 107843 \N forma Rhipsalis neves-armondii f. neves-armondii \N \N \N \N \N 107844 \N subspecies Limnanthes floccosa subsp. californica \N \N \N \N \N 107845 P.crateriferum Panicum Panicum crateriferum \N \N \N \N \N 107846 B.tenuiscapa Brachyscome Brachyscome tenuiscapa \N \N \N \N \N 107847 P.racemosa Psiguria Psiguria racemosa \N \N \N \N \N 107848 C.lateriflorus Costus Costus lateriflorus \N \N \N \N \N 107849 E.678 Excoecaria Excoecaria sp. Pell 678 \N \N \N \N \N 107850 E.incisum Epidendrum Epidendrum incisum \N \N \N \N \N 107851 H.longifolia Houstonia Houstonia longifolia longleaf summer bluet \N \N \N \N 107852 P.variabile Petalidium Petalidium variabile \N \N \N \N \N 107853 X.reflexa Xiphotheca Xiphotheca reflexa \N \N \N \N \N 107854 L.kilimandscharicus Lasianthus Lasianthus kilimandscharicus \N \N \N \N \N 107855 D.belladonna Delphinium Delphinium x belladonna \N \N \N \N \N 107856 \N genus Crambella \N \N \N \N \N 107857 \N genus Prepusa \N \N \N \N \N 107858 C.acanthophylla Cliffortia Cliffortia acanthophylla \N \N \N \N \N 107859 O.81916 Oryza Oryza sp. IRGC 81916 \N \N \N \N \N 107860 S.siamensis Shorea Shorea siamensis \N \N \N \N \N 107861 C.6873 Cissus Cissus sp. 6873 \N \N \N \N \N 107862 E.PF1 Eucalyptus Eucalyptus sp. PF1 \N \N \N \N \N 107863 L.goroensis Leptostylis Leptostylis goroensis \N \N \N \N \N 107864 B.cornigera Bambusa Bambusa cornigera \N \N \N \N \N 107865 A.fuegiana Azorella Azorella fuegiana \N \N \N \N \N 107866 P.plicatiformis Pagamea Pagamea plicatiformis \N \N \N \N \N 107867 P.drupacea Pimelea Pimelea drupacea \N \N \N \N \N 107868 L.benthamii Livistona Livistona benthamii \N \N \N \N \N 107869 C.arkansanum Clinopodium Clinopodium arkansanum \N \N \N \N \N 107870 \N varietas Heterostemon mimosoides var. mimosoides \N \N \N \N \N 107871 \N genus Bocoa \N \N \N \N \N 107872 \N genus Isoleucas \N \N \N \N \N 107873 P.nigropunctata Psychotria Psychotria nigropunctata \N \N \N \N \N 107874 \N genus Sulcorebutia \N \N \N \N \N 107875 R.mackenzianum Rhododendron Rhododendron mackenzianum \N \N \N \N \N 107876 M.includens Mezia Mezia includens \N \N \N \N \N 107877 C.munzurense Colchicum Colchicum munzurense \N \N \N \N \N 107878 B.micrantha Banksia Banksia micrantha \N \N \N \N \N 107879 M.involucrata Mentzelia Mentzelia involucrata \N \N \N \N \N 107880 G.cunninghamii Gossypium Gossypium cunninghamii \N \N \N \N \N 107881 M.roseum Memecylon Memecylon roseum \N \N \N \N \N 107882 Z.erythrocarpa Zehneria Zehneria erythrocarpa \N \N \N \N \N 107883 B.darwinii Berberis Berberis darwinii \N \N \N \N \N 107884 C.triangularis Corallocarpus Corallocarpus triangularis \N \N \N \N \N 107885 T.wauensis Thecorchus Thecorchus wauensis \N \N \N \N \N 107886 R.californica Rafinesquia Rafinesquia californica California chicory \N \N \N \N 107887 C.2208 Chamaescilla Chamaescilla sp. Chase 2208 \N \N \N \N \N 107888 R.radians Rhododendron Rhododendron radians \N \N \N \N \N 107889 A.heppii Aristolochia Aristolochia heppii \N \N \N \N \N 107890 P.ambigua Phlomis Phlomis ambigua \N \N \N \N \N 107891 \N varietas Santalum paniculatum var. pilgeri \N \N \N \N \N 107892 R.1-JFS-2004 Rhytidophyllum Rhytidophyllum sp. 1-JFS-2004 \N \N \N \N \N 107893 \N genus Micrantheum \N \N \N \N \N 107894 \N subspecies Protium divaricatum subsp. divaricatum \N \N \N \N \N 107895 O.rufida Opuntia Opuntia rufida \N \N \N \N \N 107896 G.filiformis Genlisea Genlisea filiformis \N \N \N \N \N 107897 P.sericea Pultenaea Pultenaea sericea \N \N \N \N \N 107898 N.pungens Notobubon Notobubon pungens \N \N \N \N \N 107899 V.alamanii Vernonia Vernonia alamanii \N \N \N \N \N 107900 D.staintonii Draba Draba staintonii \N \N \N \N \N 107901 A.aethiopicum Anthospermum Anthospermum aethiopicum \N \N \N \N \N 107902 O.zelenkoanum Oncidium Oncidium zelenkoanum \N \N \N \N \N 107903 \N genus Dillwynia \N \N \N \N \N 107904 B.bracteosa Berlinia Berlinia bracteosa \N \N \N \N \N 107905 L.sericea Lebeckia Lebeckia sericea \N \N \N \N \N 107906 A.quaternifolium Amyema Amyema quaternifolium \N \N \N \N \N 107907 A.divaricatum Amalophyllon Amalophyllon divaricatum \N \N \N \N \N 107908 C.SS-2008b Cuscuta Cuscuta sp. SS-2008b \N \N \N \N \N 107909 R.verticillatus Ranunculus Ranunculus verticillatus \N \N \N \N \N 107910 \N genus Lasiospora \N \N \N \N \N 107911 L.macowanii Leucadendron Leucadendron macowanii \N \N \N \N \N 107912 M.laricifolia Minuartia Minuartia laricifolia \N \N \N \N \N 107913 C.canens Craspedia Craspedia canens \N \N \N \N \N 107914 P.remota Psychotria Psychotria remota \N \N \N \N \N 107915 A.petrogena Arabidopsis Arabidopsis petrogena \N \N \N \N \N 107916 C.watsoniana Cuphea Cuphea watsoniana \N \N \N \N \N 107917 D.armatum Dasyphyllum Dasyphyllum armatum \N \N \N \N \N 107918 R.goodiae Ruschia Ruschia goodiae \N \N \N \N \N 107919 A.fridericae Arenaria Arenaria fridericae \N \N \N \N \N 107920 E.arachnocalyx Erica Erica arachnocalyx \N \N \N \N \N 107921 C.benikoji Citrus Citrus benikoji \N \N \N \N \N 107922 S.vestitus Senecio Senecio vestitus \N \N \N \N \N 107923 M.filamentosa Manihot Manihot filamentosa \N \N \N \N \N 107924 H.platypterum Helichrysum Helichrysum platypterum \N \N \N \N \N 107925 \N genus Sphyrarhynchus \N \N \N \N \N 107926 \N genus Chrysolepis \N \N \N \N \N 107927 H.ayangannensis Habenaria Habenaria ayangannensis \N \N \N \N \N 107928 I.vismiifolia Inga Inga vismiifolia \N \N \N \N \N 107929 S.pancheri Styphelia Styphelia pancheri \N \N \N \N \N 107930 R.canescens Rubus Rubus canescens \N \N \N \N \N 107932 \N subspecies Descurainia paradisa subsp. nevadensis \N \N \N \N \N 107933 B.exstipulata Bencomia Bencomia exstipulata \N \N \N \N \N 107934 \N genus Pardoglossum \N \N \N \N \N 107935 \N genus Vernicia \N \N \N \N \N 107936 C.filiforme Conchidium Conchidium filiforme \N \N \N \N \N 107937 Y.schottii Yucca Yucca schottii \N \N \N \N \N 107938 \N subspecies Lewisia columbiana subsp. rupicola \N \N \N \N \N 107939 R.madulidii Rhododendron Rhododendron madulidii \N \N \N \N \N 107940 \N subspecies Cistus laurifolius subsp. atlanticus \N \N \N \N \N 107941 A.sp. Aquilegia Aquilegia sp. \N \N \N \N \N 107942 C.arabicus Cladanthus Cladanthus arabicus \N \N \N \N \N 107943 H.carneum Hieracium Hieracium carneum \N \N \N \N \N 107944 O.hispidus Opopanax Opopanax hispidus \N \N \N \N \N 107945 F.10404 Fuirena Fuirena sp. Thomas et al. 10404 \N \N \N \N \N 107946 E.woodii Eugenia Eugenia woodii \N \N \N \N \N 107947 R.bilobus Ranunculus Ranunculus bilobus \N \N \N \N \N 107948 \N genus Guillonea \N \N \N \N \N 107949 A.fontana Athrixia Athrixia fontana \N \N \N \N \N 107950 \N varietas Croton mazapensis var. obtusifolius \N \N \N \N \N 107951 P.didymocarpa Physaria Physaria didymocarpa \N \N \N \N \N 107952 \N varietas Tylophora flexuosa var. flexuosa \N \N \N \N \N 107953 \N genus Mantisalca \N \N \N \N \N 107954 P.grandiflora Polygala Polygala grandiflora \N \N \N \N \N 107955 S.apetala Swartzia Swartzia apetala \N \N \N \N \N 107956 \N genus Liparis \N \N \N \N \N 107957 G.macneilii Gladiolus Gladiolus macneilii \N \N \N \N \N 107958 C.viscidiflorus Chrysothamnus Chrysothamnus viscidiflorus yellow rabbitbrush \N \N \N \N 107959 \N genus Rhodopis \N \N \N \N \N 107960 O.echinacea Opuntia Opuntia echinacea \N \N \N \N \N 107961 T.distichophylla Tetrarrhena Tetrarrhena distichophylla \N \N \N \N \N 107962 \N genus Ratibida \N \N \N \N \N 107963 P.quaerita Pultenaea Pultenaea quaerita \N \N \N \N \N 107964 \N genus Gallardoa \N \N \N \N \N 107965 A.nankotaizanensis Astragalus Astragalus nankotaizanensis \N \N \N \N \N 107966 C.perplexans Ceanothus Ceanothus perplexans \N \N \N \N \N 107967 C.tenuilobus Croton Croton tenuilobus \N \N \N \N \N 107968 \N subfamily Maihuenioideae \N \N \N \N \N 107969 \N varietas Tragopogon longirostris var. longirostris \N \N \N \N \N 107970 D.ambonensis Drymonia Drymonia ambonensis \N \N \N \N \N 107971 I.quamoclit Ipomoea Ipomoea quamoclit \N \N \N \N \N 107972 P.oblongata Passiflora Passiflora oblongata \N \N \N \N \N 107973 L.pedunculatus Lotus Lotus pedunculatus \N \N \N \N \N 107974 A.splendens Asarum Asarum splendens \N \N \N \N \N 107975 E.aphanactis Erigeron Erigeron aphanactis \N \N \N \N \N 107976 C.O-430 Cleistes Cleistes sp. Chase O-430 \N \N \N \N \N 107977 P.pilosum Piptostigma Piptostigma pilosum \N \N \N \N \N 107978 M.cochinchinensis Maclura Maclura cochinchinensis \N \N \N \N \N 107979 \N varietas Raphanus sativus var. niger Chinese radish,Japanese radish,daikon,kaiware daikon \N \N \N \N 107980 P.fosteri Psychotria Psychotria fosteri \N \N \N \N \N 107981 T.wageneri Teuscheria Teuscheria wageneri \N \N \N \N \N 107982 T.insipida Tasmannia Tasmannia insipida \N \N \N \N \N 107983 C.monocephalum Cirsium Cirsium monocephalum \N \N \N \N \N 107984 P.denticulata Paraixeris Paraixeris denticulata \N \N \N \N \N 107985 \N genus Gongylolepis \N \N \N \N \N 107986 G.polyacantha Gymnosporia Gymnosporia polyacantha \N \N \N \N \N 107987 \N subspecies Vitex ferruginea subsp. amboniensis \N \N \N \N \N 107988 \N tribe Podococceae \N \N \N \N \N 107989 M.malacoides Malope Malope malacoides \N \N \N \N \N 107990 C.limpidum Conophytum Conophytum limpidum \N \N \N \N \N 107991 S.latifolia Sagittaria Sagittaria latifolia duck potato,wapato \N \N \N \N 107992 P.nervosum Panicum Panicum nervosum \N \N \N \N \N 107993 D.oxyglossa Dichaea Dichaea oxyglossa \N \N \N \N \N 107994 \N genus Helmholtzia \N \N \N \N \N 107995 H.myrtoides Hakea Hakea myrtoides \N \N \N \N \N 107996 \N genus Nivenia \N \N \N \N \N 107997 L.serra Lepidium Lepidium serra \N \N \N \N \N 107998 D.ramosum Diplobryum Diplobryum ramosum \N \N \N \N \N 107999 E.sieboldiana Euphorbia Euphorbia sieboldiana \N \N \N \N \N 108000 B.lyallii Boechera Boechera lyallii \N \N \N \N \N 108001 \N genus Furtadoa \N \N \N \N \N 108002 W.lanceolata Wrightia Wrightia lanceolata \N \N \N \N \N 108003 F.australis Fieldia Fieldia australis \N \N \N \N \N 108004 S.campanulata Spathodea Spathodea campanulata African tuliptree,African-tuliptree \N \N \N \N 108005 H.bulbosa Halosarcia Halosarcia bulbosa \N \N \N \N \N 108006 D.chrysothrix Diplycosia Diplycosia chrysothrix \N \N \N \N \N 108007 R.filiformis Reynaudia Reynaudia filiformis \N \N \N \N \N 108008 P.undulata Polystachya Polystachya undulata \N \N \N \N \N 108009 C.aurea Chuquiraga Chuquiraga aurea \N \N \N \N \N 108010 \N genus Byblis \N \N \N \N \N 108011 \N no rank environmental samples Taxonomy:1096686 \N \N \N \N \N 108012 P.margaritae Phlomis Phlomis x margaritae \N \N \N \N \N 108013 A.ilicifolius Acanthus Acanthus ilicifolius \N \N \N \N \N 108014 A.lopezii Aratitiyopea Aratitiyopea lopezii \N \N \N \N \N 108015 Z.rhoifolium Zanthoxylum Zanthoxylum rhoifolium \N \N \N \N \N 108016 H.forrestii Hansenia Hansenia forrestii \N \N \N \N \N 108017 A.lanceolatum Apodolirion Apodolirion lanceolatum \N \N \N \N \N 108018 C.fimbriata Caesalpinia Caesalpinia fimbriata \N \N \N \N \N 108019 O.brevicornis Oncidium Oncidium brevicornis \N \N \N \N \N 108020 P.confusum Protium Protium confusum \N \N \N \N \N 108021 C.libanotis Cachrys Cachrys libanotis \N \N \N \N \N 108022 S.pubescens Sigesbeckia Sigesbeckia pubescens \N \N \N \N \N 108023 P.kauaiense Pittosporum Pittosporum kauaiense \N \N \N \N \N 108024 C.scharojanii Crocus Crocus scharojanii \N \N \N \N \N 108025 B.hirsutula Begonia Begonia hirsutula \N \N \N \N \N 108026 \N genus Poranopsis \N \N \N \N \N 108027 R.purpurea Rhamnus Rhamnus purpurea \N \N \N \N \N 108028 E.osyridea Euphorbia Euphorbia osyridea \N \N \N \N \N 108029 E.curvifolia Erica Erica curvifolia \N \N \N \N \N 108030 P.ligularis Psychotria Psychotria ligularis \N \N \N \N \N 108031 B.maximowiczii Berteroella Berteroella maximowiczii \N \N \N \N \N 108032 P.roseoalba Pteroglossa Pteroglossa roseoalba \N \N \N \N \N 108033 C.kamtschaticum Chrysosplenium Chrysosplenium kamtschaticum \N \N \N \N \N 108034 N.cucullata Neottianthe Neottianthe cucullata \N \N \N \N \N 108035 I.terminalis Ichthyothere Ichthyothere terminalis \N \N \N \N \N 108036 E.tithymaloides Euphorbia Euphorbia tithymaloides \N \N \N \N \N 108037 E.knorringiana Elaeosticta Elaeosticta knorringiana \N \N \N \N \N 108038 \N genus Breonia \N \N \N \N \N 108039 \N subclass asterids \N \N \N \N \N 108040 C.foliolosa Chamaebatia Chamaebatia foliolosa \N \N \N \N \N 108041 C.nana Centaurea Centaurea nana \N \N \N \N \N 108042 B.maritimus Bolboschoenus Bolboschoenus maritimus \N \N \N \N \N 108043 T.olmosii Telipogon Telipogon olmosii \N \N \N \N \N 108044 T.japonica Torilis Torilis japonica \N \N \N \N \N 108045 S.robustum Solanum Solanum robustum \N \N \N \N \N 108046 \N genus Platystele \N \N \N \N \N 108047 O.jacquiniana Oxalis Oxalis jacquiniana \N \N \N \N \N 108048 \N genus Rhektophyllum \N \N \N \N \N 108049 C.inaequilatera Columnea Columnea inaequilatera \N \N \N \N \N 108050 \N genus Brassica x Raphanus \N \N \N \N \N 108051 \N genus Chiliotrichum \N \N \N \N \N 108052 G.sempervirens Gelsemium Gelsemium sempervirens \N \N \N \N \N 108053 C.erubescens Crinum Crinum erubescens \N \N \N \N \N 108054 F.tschimganica Ferula Ferula tschimganica \N \N \N \N \N 108055 B.pringlei Brongniartia Brongniartia pringlei \N \N \N \N \N 108056 C.macrosperma Couratari Couratari macrosperma \N \N \N \N \N 108057 S.lagopus Sinodolichos Sinodolichos lagopus \N \N \N \N \N 108058 \N genus Burkillanthus \N \N \N \N \N 108059 D.macrocarpa Diospyros Diospyros macrocarpa \N \N \N \N \N 108060 C.persicifolia Coprosma Coprosma persicifolia \N \N \N \N \N 108061 \N subspecies Tripleurospermum maritimum subsp. inodorum scentless chamomile,scentless mayweed \N \N \N \N 108062 A.corymbosa Apinagia Apinagia corymbosa \N \N \N \N \N 108063 A.frigida Actaea Actaea frigida \N \N \N \N \N 108064 L.floribunda Lophopterys Lophopterys floribunda \N \N \N \N \N 108065 \N genus Craterocapsa \N \N \N \N \N 108066 E.lurida Eragrostis Eragrostis lurida \N \N \N \N \N 108067 \N genus Rhodotypos \N \N \N \N \N 108068 A.asterotricha Astrotrichilia Astrotrichilia asterotricha \N \N \N \N \N 108069 \N genus Obetia \N \N \N \N \N 108070 B.longispica Boehmeria Boehmeria longispica \N \N \N \N \N 108071 F.dubia Felicia Felicia dubia \N \N \N \N \N 108072 H.leucoptera Hakea Hakea leucoptera \N \N \N \N \N 108073 T.angustifolia Typha Typha angustifolia narrow-leaf cattail \N \N \N \N 108074 T.rubescens Thalictrum Thalictrum rubescens \N \N \N \N \N 108075 \N genus Pseudopiptadenia \N \N \N \N \N 108076 \N genus Jumellea \N \N \N \N \N 108077 A.rubra Alnus Alnus rubra \N \N \N \N \N 108078 N.sagittifolia Nuphar Nuphar sagittifolia \N \N \N \N \N 108079 P.pedicellatus Pachyanthus Pachyanthus pedicellatus \N \N \N \N \N 108080 P.21 Pogonatherum Pogonatherum sp. Hodkinson 21 \N \N \N \N \N 108081 C.benthamii Chionopappus Chionopappus benthamii \N \N \N \N \N 108082 \N genus Heterosamara \N \N \N \N \N 108083 \N forma Ptilotus polystachyus f. polystachyus \N \N \N \N \N 108084 Z.stipularis Zimmermannia Zimmermannia stipularis \N \N \N \N \N 108085 L.taiwaniana Lysimachia Lysimachia taiwaniana \N \N \N \N \N 108086 C.harmandii Cyathocalyx Cyathocalyx harmandii \N \N \N \N \N 108087 L.arborescens Limonium Limonium arborescens \N \N \N \N \N 108088 S.8765 Sebaea Sebaea cf. macrophylla Bayliss 8765 \N \N \N \N \N 108089 O.gaura Oenothera Oenothera gaura \N \N \N \N \N 108090 \N family Hamamelidaceae witch-hazel family \N \N \N \N 108091 \N genus Hygrophila \N \N \N \N \N 108092 \N genus Carpinus hornbeams \N \N \N \N 108093 R.magellanica Rostkovia Rostkovia magellanica \N \N \N \N \N 108094 M.inachabense Mesembryanthemum Mesembryanthemum inachabense \N \N \N \N \N 108095 \N genus Xylocarpus \N \N \N \N \N 108096 S.jaculans Schizostachyum Schizostachyum jaculans \N \N \N \N \N 108097 M.tenera Maesa Maesa tenera \N \N \N \N \N 108098 C.arctogena Carex Carex arctogena \N \N \N \N \N 108099 B.pterosperma Blennodia Blennodia pterosperma \N \N \N \N \N 108100 \N subspecies Descurainia pinnata subsp. glabra \N \N \N \N \N 108101 D.sansibarensis Dioscorea Dioscorea sansibarensis \N \N \N \N \N 108102 \N subspecies Micromeria graeca subsp. fruticulosa maritime hyssop \N \N \N \N 108103 F.velloziana Forsteronia Forsteronia velloziana \N \N \N \N \N 108104 \N genus Adenodaphne \N \N \N \N \N 108105 B.castillonii Barbaceniopsis Barbaceniopsis castillonii \N \N \N \N \N 108106 C.hartmanii Carex Carex hartmanii \N \N \N \N \N 108107 A.meridionalis Aglaia Aglaia meridionalis \N \N \N \N \N 108108 M.galeottiana Myrmecophila Myrmecophila galeottiana \N \N \N \N \N 108109 P.cunninghamii Polyosma Polyosma cunninghamii \N \N \N \N \N 108110 M.multiglandulosa Melanolepis Melanolepis multiglandulosa \N \N \N \N \N 108111 A.crassa Allocasuarina Allocasuarina crassa \N \N \N \N \N 108112 E.condensata Erica Erica condensata \N \N \N \N \N 108113 C.robusta Coprosma Coprosma robusta \N \N \N \N \N 108114 C.paniculata Consolida Consolida paniculata \N \N \N \N \N 108115 \N genus Grevea \N \N \N \N \N 108116 A.subrigida Acacia Acacia subrigida \N \N \N \N \N 108117 A.ferox Aloe Aloe ferox \N \N \N \N \N 108118 A.rugosa Aquilaria Aquilaria rugosa \N \N \N \N \N 108119 S.humilis Swietenia Swietenia humilis Mexican mahogany \N \N \N \N 108120 P.gilmartiniae Puya Puya gilmartiniae \N \N \N \N \N 108121 T.longipedunculatum Tricliceras Tricliceras longipedunculatum \N \N \N \N \N 108123 G.parvulus Gladiolus Gladiolus parvulus \N \N \N \N \N 108124 L.burkittii Lemooria Lemooria burkittii \N \N \N \N \N 108125 C.sample environmental samples Taxonomy:979584 Chenopodium environmental sample \N \N \N \N \N 108126 D.cyri Dianthus Dianthus cyri \N \N \N \N \N 108127 L.concinnum Lomatium Lomatium concinnum adobe desertparsley \N \N \N \N 108128 S.alwynii Salacia Salacia alwynii \N \N \N \N \N 108129 P.turkmena Peltaria Peltaria turkmena \N \N \N \N \N 108130 F.edelfeltii Ficus Ficus edelfeltii \N \N \N \N \N 108131 F.rhopalophylla Fenestraria Fenestraria rhopalophylla \N \N \N \N \N 108132 L.albescens Lupinus Lupinus albescens \N \N \N \N \N 108133 D.diepenhorstii Diospyros Diospyros diepenhorstii \N \N \N \N \N 108134 M.grijsii Machilus Machilus grijsii \N \N \N \N \N 108135 \N varietas Prinsepia uniflora var. uniflora \N \N \N \N \N 108136 G.ingens Geophila Geophila ingens \N \N \N \N \N 108137 C.subtetragona Cissus Cissus subtetragona \N \N \N \N \N 108138 B.FS1480 Bulbophyllum Bulbophyllum sp. FS1480 \N \N \N \N \N 108139 E.vestita Erica Erica vestita \N \N \N \N \N 108140 C.robertsii Cooktownia Cooktownia robertsii \N \N \N \N \N 108141 I.tweediae Impatiens Impatiens tweediae \N \N \N \N \N 108142 E.epsteinii Epimedium Epimedium epsteinii \N \N \N \N \N 108143 D.pachystachys Dendrocalamus Dendrocalamus pachystachys \N \N \N \N \N 108144 C.platyptera Chiloglottis Chiloglottis platyptera \N \N \N \N \N 108145 T.stipularis Trichocephalus Trichocephalus stipularis \N \N \N \N \N 108146 C.tarapotana Cavendishia Cavendishia tarapotana \N \N \N \N \N 108147 T.dioicus Tetracoccus Tetracoccus dioicus \N \N \N \N \N 108148 L.vidalii Lonicera Lonicera vidalii \N \N \N \N \N 108149 \N genus Drymoanthus \N \N \N \N \N 108150 T.mexicana Tigridia Tigridia mexicana \N \N \N \N \N 108151 G.scordioides Gonocarpus Gonocarpus scordioides \N \N \N \N \N 108152 E.australe Elaeodendron Elaeodendron australe \N \N \N \N \N 108153 A.gummifer Astragalus Astragalus gummifer \N \N \N \N \N 108154 C.ericinum Comesperma Comesperma ericinum \N \N \N \N \N 108155 S.tragus Salsola Salsola tragus Russian thistle,Russian tumbleweed,ci sha peng,tumbleweed \N \N \N \N 108156 \N varietas Lilium pardalinum var. giganteum \N \N \N \N \N 108157 E.obovata Elaeagia Elaeagia obovata \N \N \N \N \N 108158 G.parryi Gaillardia Gaillardia parryi \N \N \N \N \N 108159 J.BAC-2010 unclassified Juncaceae Juncaceae sp. A14 BAC-2010 \N \N \N \N \N 108160 D.flexuosa Dicrastylis Dicrastylis flexuosa \N \N \N \N \N 108161 E.pinnatum Ellisiophyllum Ellisiophyllum pinnatum \N \N \N \N \N 108162 P.lecomtei Pedicularis Pedicularis lecomtei \N \N \N \N \N 108163 S.tenorioi Schoenocaulon Schoenocaulon tenorioi \N \N \N \N \N 108164 A.walcottii Anthotroche Anthotroche walcottii \N \N \N \N \N 108165 P.rubricaulis Pentanisia Pentanisia rubricaulis \N \N \N \N \N 108166 R.nobilis Rhodiola Rhodiola nobilis \N \N \N \N \N 108167 C.reticulata Citrus Citrus aurantiifolia x Citrus reticulata \N \N \N \N \N 108168 \N genus Kokia \N \N \N \N \N 108169 M.2128' Manettia Manettia aff. lygistum 'Andersson 2128' \N \N \N \N \N 108170 D.XMW-2002-6 Dendrobium Dendrobium sp. XMW-2002-6 \N \N \N \N \N 108171 S.buettnerianum Syzygium Syzygium buettnerianum \N \N \N \N \N 108172 O.mexicana Osmorhiza Osmorhiza mexicana \N \N \N \N \N 108173 E.collina Euphrasia Euphrasia collina \N \N \N \N \N 108174 P.coerulescens Perezia Perezia coerulescens \N \N \N \N \N 108175 E.apatzingana Euphorbia Euphorbia apatzingana \N \N \N \N \N 108176 D.apiculata Dahlia Dahlia apiculata \N \N \N \N \N 108177 C.sylvatica Cranichis Cranichis sylvatica \N \N \N \N \N 108178 M.robustum Maianthemum Maianthemum robustum \N \N \N \N \N 108179 A.cipoensis Apochloa Apochloa cipoensis \N \N \N \N \N 108180 T.gregoryi Thunbergia Thunbergia gregoryi \N \N \N \N \N 108181 K.platycaula Korthalsella Korthalsella platycaula \N \N \N \N \N 108182 X.9066 Xerorchis Xerorchis sp. P.J.M.et al. 9066 \N \N \N \N \N 108183 G.laevigata Goldbachia Goldbachia laevigata \N \N \N \N \N 108184 P.tardiflora Primula Primula tardiflora \N \N \N \N \N 108185 \N genus Hablitzia \N \N \N \N \N 108186 \N genus Sommera \N \N \N \N \N 108187 \N varietas Erigeron strigosus var. calcicola \N \N \N \N \N 108188 R.alopecuros Reseda Reseda alopecuros \N \N \N \N \N 108189 M.candolleana Melothria Melothria candolleana \N \N \N \N \N 108190 A.duplostrigosus Astragalus Astragalus duplostrigosus \N \N \N \N \N 108191 L.campestris Luzula Luzula campestris field woodrush \N \N \N \N 108192 R.hungaricus Ranunculus Ranunculus hungaricus \N \N \N \N \N 108193 S.macrophyllum Sisyrinchium Sisyrinchium macrophyllum \N \N \N \N \N 108194 T.clusii Trifolium Trifolium clusii \N \N \N \N \N 108195 N.dubius Narcissus Narcissus dubius \N \N \N \N \N 108196 G.2319 Gardenia Gardenia sp. Oxelman 2319 \N \N \N \N \N 108197 H.katangense Haumaniastrum Haumaniastrum katangense \N \N \N \N \N 108198 \N genus Gaoligongshania \N \N \N \N \N 108199 C.congensis Coffea Coffea canephora x Coffea congensis \N \N \N \N \N 108200 A.littoralis Abrahamia Abrahamia littoralis \N \N \N \N \N 108201 \N subspecies Claytonia parviflora subsp. parviflora \N \N \N \N \N 108202 O.kunthii Orthosia Orthosia kunthii \N \N \N \N \N 108203 S.phlebophylla Salix Salix phlebophylla \N \N \N \N \N 108204 S.cuneifolia Sibbaldiopsis Sibbaldiopsis cuneifolia \N \N \N \N \N 108205 S.hierniana Sabicea Sabicea hierniana \N \N \N \N \N 108206 O.pallasii Onobrychis Onobrychis pallasii \N \N \N \N \N 108207 \N genus Hypoxidia \N \N \N \N \N 108208 A.manzanaresiana Aechmea Aechmea manzanaresiana \N \N \N \N \N 108209 H.urceolatum Hondurodendron Hondurodendron urceolatum \N \N \N \N \N 108210 C.foetidissima Coprosma Coprosma foetidissima \N \N \N \N \N 108211 S.bulbifera Saxifraga Saxifraga bulbifera \N \N \N \N \N 108212 C.pedicellatus Cenchrus Cenchrus pedicellatus \N \N \N \N \N 108213 P.plicatulum Paspalum Paspalum plicatulum \N \N \N \N \N 108214 V.45 Virectaria Virectaria sp. Adams 45 \N \N \N \N \N 108215 S.floribunda Soyauxia Soyauxia floribunda \N \N \N \N \N 108216 M.sylvatica Microseris Microseris sylvatica \N \N \N \N \N 108217 C.MAG-2009 Cordia Cordia sp. MAG-2009 \N \N \N \N \N 108218 R.pringlei Ruellia Ruellia pringlei \N \N \N \N \N 108219 A.brachyphylla Adenandra Adenandra brachyphylla \N \N \N \N \N 108220 S.YGW-2003 Symplocos Symplocos sp. YGW-2003 \N \N \N \N \N 108221 O.hastata Onoseris Onoseris hastata \N \N \N \N \N 108222 C.origanifolium Cyclotrichium Cyclotrichium origanifolium \N \N \N \N \N 108223 D.eurekensis Dedeckera Dedeckera eurekensis \N \N \N \N \N 108224 P.zinnioides Philactis Philactis zinnioides \N \N \N \N \N 108225 D.blumei Dasymaschalon Dasymaschalon blumei \N \N \N \N \N 108226 R.indica Rotala Rotala indica \N \N \N \N \N 108227 \N genus Peltandra \N \N \N \N \N 108228 M.pierlotiana Microdesmis Microdesmis pierlotiana \N \N \N \N \N 108229 C.warczewiczii Clowesia Clowesia warczewiczii \N \N \N \N \N 108230 \N subspecies Descurainia incisa subsp. paysonii \N \N \N \N \N 108231 A.acuminatissima Apoballis Apoballis acuminatissima \N \N \N \N \N 108232 S.capillacea Stipa Stipa capillacea \N \N \N \N \N 108233 C.palmata Cecropia Cecropia palmata embauba,snakewood tree,yaruma \N \N \N \N 108234 E.tanzaniense Ecbolium Ecbolium tanzaniense \N \N \N \N \N 108235 P.brittoniae Ponthieva Ponthieva brittoniae \N \N \N \N \N 108236 P.riphaeus Phonus Phonus riphaeus \N \N \N \N \N 108237 T.sevanense Tripleurospermum Tripleurospermum sevanense \N \N \N \N \N 108238 P.pilifera Psathyrotes Psathyrotes pilifera \N \N \N \N \N 108239 E.latisepalum Epimedium Epimedium latisepalum \N \N \N \N \N 108240 L.E09 Leptolaena Leptolaena sp. E09 \N \N \N \N \N 108241 D.paysonii Draba Draba paysonii Payson's draba \N \N \N \N 108242 K.obovata Kandelia Kandelia obovata \N \N \N \N \N 108243 X.pallidiflorum Xylobium Xylobium pallidiflorum \N \N \N \N \N 108244 \N genus Hippeastrum \N \N \N \N \N 108245 I.SH-2010 Ilex Ilex sp. SH-2010 \N \N \N \N \N 108246 C.foetidum Chlorochorion Chlorochorion foetidum \N \N \N \N \N 108247 E.macrophylla Ehretia Ehretia macrophylla \N \N \N \N \N 108248 T.K3664 unclassified Taraxacum Taraxacum (sect. Tibetana/Leucantha) sp. K3664 \N \N \N \N \N 108249 P.corymbosa Phryganocydia Phryganocydia corymbosa \N \N \N \N \N 108250 L.5784 Ladenbergia Ladenbergia sp. Weigend 5784 \N \N \N \N \N 108251 M.HI16 Micromeria Micromeria cf. varia Heubl HI16 \N \N \N \N \N 108252 B.stricta Bonnetia Bonnetia stricta \N \N \N \N \N 108253 A.trichopodus Astragalus Astragalus trichopodus \N \N \N \N \N 108254 \N subspecies Begonia silletensis subsp. menyangensis \N \N \N \N \N 108255 A.tenuicaulis Aglaia Aglaia tenuicaulis \N \N \N \N \N 108256 C.exsul Carmichaelia Carmichaelia exsul \N \N \N \N \N 108257 P.thalioides Pleomele Pleomele thalioides \N \N \N \N \N 108258 P.caroli-henrici Pelargonium Pelargonium caroli-henrici \N \N \N \N \N 108259 P.fiaschii Physeterostemon Physeterostemon fiaschii \N \N \N \N \N 108260 S.parviflora Solenandra Solenandra parviflora \N \N \N \N \N 108261 P.xanthotrichus Phaseolus Phaseolus xanthotrichus \N \N \N \N \N 108262 S.grosvenorii Siraitia Siraitia grosvenorii luo han guo \N \N \N \N 108263 N.fragarioides Nebelia Nebelia fragarioides \N \N \N \N \N 108264 D.trichanthera Didymostigma Didymostigma trichanthera \N \N \N \N \N 108265 K.lactea Kefersteinia Kefersteinia lactea \N \N \N \N \N 108266 D.montana Drosera Drosera montana \N \N \N \N \N 108267 A.sarawschanicum Allium Allium sarawschanicum \N \N \N \N \N 108268 E.tanquahuete Euphorbia Euphorbia tanquahuete \N \N \N \N \N 108269 M.hupehensis Malus Malus hupehensis \N \N \N \N \N 108270 T.chrysantha Tabebuia Tabebuia chrysantha \N \N \N \N \N 108271 D.sharpiana Dendrosida Dendrosida sharpiana \N \N \N \N \N 108272 O.coccinea Ochrosia Ochrosia coccinea \N \N \N \N \N 108273 D.carinthiaca Draba Draba carinthiaca \N \N \N \N \N 108274 M.exserta Microcorys Microcorys exserta \N \N \N \N \N 108275 D.maderensis Deschampsia Deschampsia maderensis \N \N \N \N \N 108276 B.disticha Bouteloua Bouteloua disticha \N \N \N \N \N 108277 S.karaguensis Sopubia Sopubia karaguensis \N \N \N \N \N 108278 C.echinophyta Christensonella Christensonella echinophyta \N \N \N \N \N 108279 R.cossonianum Rhaponticum Rhaponticum cossonianum \N \N \N \N \N 108280 A.orites Acacia Acacia orites \N \N \N \N \N 108281 \N subspecies Bellardiochloa violacea subsp. aetnensis \N \N \N \N \N 108282 O.glaberrima Oryza Oryza glaberrima African rice \N \N \N \N 108283 S.zeylanicum Syzygium Syzygium zeylanicum \N \N \N \N \N 108284 B.prietea Blumenbachia Blumenbachia prietea \N \N \N \N \N 108285 J.hookeriana Junellia Junellia hookeriana \N \N \N \N \N 108286 \N genus Mollugo \N \N \N \N \N 108287 \N genus Rytidocarpus \N \N \N \N \N 108288 A.absinthoides Achillea Achillea absinthoides \N \N \N \N \N 108289 \N subspecies Bupleurum fruticescens subsp. fruticescens \N \N \N \N \N 108290 \N subspecies Campanula fenestrellata subsp. istriaca \N \N \N \N \N 108291 \N tribe Guettardeae \N \N \N \N \N 108292 H.procerum Hordeum Hordeum procerum \N \N \N \N \N 108293 C.verum Cinnamomum Cinnamomum verum cinnamon \N \N \N \N 108294 \N genus Blepharistemma \N \N \N \N \N 108295 O.leucotricha Ononis Ononis leucotricha \N \N \N \N \N 108296 L.splendens Lathyrus Lathyrus splendens pride of California \N \N \N \N 108297 C.ambigua Cordia Cordia ambigua \N \N \N \N \N 108298 \N genus Bromheadia \N \N \N \N \N 108299 W.coccinea Watsonia Watsonia coccinea \N \N \N \N \N 108300 T.elatior Tragopogon Tragopogon elatior \N \N \N \N \N 108301 T.quadriloba Tolumnia Tolumnia quadriloba \N \N \N \N \N 108302 U.tomentosa Uncaria Uncaria tomentosa \N \N \N \N \N 108303 P.glabella Packera Packera glabella butterweed \N \N \N \N 108304 S.nesliiforme Sphaerocardamum Sphaerocardamum nesliiforme \N \N \N \N \N 108305 E.integrifolia Eschweilera Eschweilera integrifolia \N \N \N \N \N 108306 S.monachophyllum Solanum Solanum monachophyllum \N \N \N \N \N 108307 T.splendens Taurantha Taurantha splendens \N \N \N \N \N 108308 W.coccoloboides Witheringia Witheringia coccoloboides \N \N \N \N \N 108309 C.ringens Cyrtorchis Cyrtorchis ringens \N \N \N \N \N 108310 S.sarmentosum Sedum Sedum sarmentosum \N \N \N \N \N 108311 R.trinervis Rehdera Rehdera trinervis \N \N \N \N \N 108312 B.laguroides Bothriochloa Bothriochloa laguroides \N \N \N \N \N 108313 C.mandonii Chaptalia Chaptalia mandonii \N \N \N \N \N 108314 A.4635 Aphanes Aphanes sp. Beck 4635 \N \N \N \N \N 108315 D.funiculosa Draba Draba funiculosa \N \N \N \N \N 108316 P.herbertiana Phycella Phycella herbertiana \N \N \N \N \N 108317 A.rascheyana Anthemis Anthemis rascheyana \N \N \N \N \N 108318 \N subspecies Secale cereale subsp. dighoricum \N \N \N \N \N 108319 A.wakefieldii Albuca Albuca wakefieldii \N \N \N \N \N 108320 C.melanostachya Carex Carex melanostachya \N \N \N \N \N 108321 E.urceolata Echidnopsis Echidnopsis urceolata \N \N \N \N \N 108322 G.patula Guzmania Guzmania patula \N \N \N \N \N 108323 S.juncea Stipa Stipa juncea \N \N \N \N \N 108324 P.californica Paeonia Paeonia californica \N \N \N \N \N 108325 P.darienense Platymiscium Platymiscium darienense \N \N \N \N \N 108326 L.fluitans Luziola Luziola fluitans southern watergrass \N \N \N \N 108327 C.hirsutella Carex Carex hirsutella \N \N \N \N \N 108328 \N genus Rafnia \N \N \N \N \N 108329 E.chlorideus Enteropogon Enteropogon chlorideus \N \N \N \N \N 108330 G.crassifolia Glycosmis Glycosmis crassifolia \N \N \N \N \N 108331 C.carranzae Cotinus Cotinus carranzae \N \N \N \N \N 108332 T.harperi Tetratheca Tetratheca harperi \N \N \N \N \N 108333 S.caprea Salix Salix caprea \N \N \N \N \N 108334 S.komarovii Schoenoplectus Schoenoplectus komarovii \N \N \N \N \N 108335 \N varietas Liriope spicata var. prolifera \N \N \N \N \N 108336 A.heterophylla Achimenes Achimenes heterophylla \N \N \N \N \N 108337 B.meyeri Billbergia Billbergia meyeri \N \N \N \N \N 108338 \N varietas Clerodendrum chinense var. simplex \N \N \N \N \N 108339 S.torminalis Sorbus Sorbus torminalis \N \N \N \N \N 108340 D.ecastaphyllum Dalbergia Dalbergia ecastaphyllum \N \N \N \N \N 108341 A.palmata Anemone Anemone palmata \N \N \N \N \N 108342 G.maxima Geonoma Geonoma maxima \N \N \N \N \N 108343 \N genus Trichoptilium \N \N \N \N \N 108344 C.benedicta Centaurea Centaurea benedicta blessed thistle \N \N \N \N 108345 \N subspecies Pericallis malvifolia subsp. malvifolia \N \N \N \N \N 108346 O.12499 Orobanche Orobanche sp. Sanchez Pedraja 12499 \N \N \N \N \N 108347 P.multiflora Perezia Perezia multiflora \N \N \N \N \N 108348 E.auritum Epigynum Epigynum auritum \N \N \N \N \N 108349 \N genus Thiseltonia \N \N \N \N \N 108350 A.byzantinum Arum Arum byzantinum \N \N \N \N \N 108351 \N subspecies Hedysarum spinosissimum subsp. spinosissimum \N \N \N \N \N 108352 C.defracta Chionochloa Chionochloa defracta \N \N \N \N \N 108353 G.ledermannii Gyrinops Gyrinops ledermannii \N \N \N \N \N 108354 \N no rank environmental samples Taxonomy:1096693 \N \N \N \N \N 108355 \N genus Sapium \N \N \N \N \N 108356 P.subvillifera Pimelea Pimelea subvillifera \N \N \N \N \N 108357 S.lugens Senecio Senecio lugens \N \N \N \N \N 108358 C.mirabilis Clivia Clivia mirabilis \N \N \N \N \N 108359 H.martinii Harrisia Harrisia martinii \N \N \N \N \N 108360 A.canaracunensis Alexa Alexa canaracunensis \N \N \N \N \N 108361 C.chillagoensis Corymbia Corymbia chillagoensis \N \N \N \N \N 108362 C.micranthum Campylocentrum Campylocentrum micranthum \N \N \N \N \N 108363 D.pentandra Dendrophthoe Dendrophthoe pentandra \N \N \N \N \N 108364 \N genus Traganum \N \N \N \N \N 108365 \N genus Squamellaria \N \N \N \N \N 108366 \N no rank unclassified Poaceae \N \N \N \N \N 108367 V.heureka Veronica Veronica heureka \N \N \N \N \N 108368 C.1275 Callicarpa Callicarpa sp. de Kok 1275 \N \N \N \N \N 108369 V.elatior Viola Viola elatior \N \N \N \N \N 108370 B.ubatubana Brasiliorchis Brasiliorchis ubatubana \N \N \N \N \N 108371 \N genus Comptonia \N \N \N \N \N 108372 S.dichotoma Saxifraga Saxifraga dichotoma \N \N \N \N \N 108373 S.furfuraceum Syzygium Syzygium furfuraceum \N \N \N \N \N 108374 T.MEM-2007 Triptilion Triptilion sp. MEM-2007 \N \N \N \N \N 108375 L.angustibracteata Lagotis Lagotis angustibracteata \N \N \N \N \N 108376 S.yechengnica Sisymbriopsis Sisymbriopsis yechengnica \N \N \N \N \N 108377 C.acaule Cirsium Cirsium acaule \N \N \N \N \N 108378 C.pedicellatum Camptosema Camptosema pedicellatum \N \N \N \N \N 108379 F.mollis Ferula Ferula mollis \N \N \N \N \N 108380 V.4443F Vernonia Vernonia sp. Keeley & Keeley 4443F \N \N \N \N \N 108381 M.pyramidalis Miconia Miconia pyramidalis \N \N \N \N \N 108382 \N genus Orthrosanthus \N \N \N \N \N 108383 E.backeri Elatostema Elatostema backeri \N \N \N \N \N 108384 C.faucium Cirsium Cirsium faucium \N \N \N \N \N 108385 E.aromaticum Eryngium Eryngium aromaticum \N \N \N \N \N 108386 P.spicata Pedicularis Pedicularis spicata \N \N \N \N \N 108387 S.canariensis Smilax Smilax canariensis \N \N \N \N \N 108388 P.longicaulis Paranomus Paranomus longicaulis \N \N \N \N \N 108389 H.oaxacanum Hypericum Hypericum oaxacanum \N \N \N \N \N 108390 V.acuminatum Vincetoxicum Vincetoxicum acuminatum \N \N \N \N \N 108391 P.1 Primula Primula sp. Oyumaa no. 1 \N \N \N \N \N 108392 S.gaubae Stipa Stipa gaubae \N \N \N \N \N 108393 D.albocoeruleum Delphinium Delphinium albocoeruleum \N \N \N \N \N 108394 P.minutiflora Phoebe Phoebe minutiflora \N \N \N \N \N 108395 E.spiniger Echinops Echinops spiniger \N \N \N \N \N 108396 J.oxymeris Juncus Juncus oxymeris \N \N \N \N \N 108397 \N genus Areca \N \N \N \N \N 108398 \N subspecies Scorzonera suberosa subsp. suberosa \N \N \N \N \N 108399 M.revoluta Macrocarpaea Macrocarpaea revoluta \N \N \N \N \N 108400 \N genus Picrasma \N \N \N \N \N 108401 P.violacea Polygala Polygala violacea \N \N \N \N \N 108402 C.pallasii Crocus Crocus pallasii \N \N \N \N \N 108403 \N tribe Thladiantheae \N \N \N \N \N 108404 \N varietas Poa urssulensis var. kanboensis \N \N \N \N \N 108405 R.calendulaceum Rhododendron Rhododendron calendulaceum \N \N \N \N \N 108406 I.tenuis Ixora Ixora tenuis \N \N \N \N \N 108407 \N subspecies Dubautia knudsenii subsp. knudsenii \N \N \N \N \N 108408 \N genus Omphalogonus \N \N \N \N \N 108409 S.medium Sphaerolobium Sphaerolobium medium \N \N \N \N \N 108410 S.habrochaites Solanum Solanum habrochaites \N \N \N \N \N 108411 S.germanica Stachys Stachys germanica \N \N \N \N \N 108412 P.excelsum Pithecellobium Pithecellobium excelsum \N \N \N \N \N 108413 A.burchellii Arachis Arachis burchellii \N \N \N \N \N 108414 O.joconostle Opuntia Opuntia joconostle \N \N \N \N \N 108415 B.nematostylis Boholia Boholia nematostylis \N \N \N \N \N 108416 M.graminicola Moraea Moraea graminicola \N \N \N \N \N 108417 L.usambarensis Leptonychia Leptonychia usambarensis \N \N \N \N \N 108418 M.flagellaris Mendoncia Mendoncia flagellaris \N \N \N \N \N 108419 M.umbellata Merremia Merremia umbellata \N \N \N \N \N 108420 B.lallemantii Butia Butia lallemantii \N \N \N \N \N 108421 J.pungens Jurinea Jurinea pungens \N \N \N \N \N 108422 V.sibthorpioides Veronica Veronica sibthorpioides \N \N \N \N \N 108423 O.cuculligerum Oncidium Oncidium cuculligerum \N \N \N \N \N 108424 L.mexicanus Lupinus Lupinus mexicanus \N \N \N \N \N 108425 R.cinnabarinum Rhododendron Rhododendron cinnabarinum \N \N \N \N \N 108426 S.pseudohirculus Saxifraga Saxifraga pseudohirculus \N \N \N \N \N 108427 T.alaskanum Taraxacum Taraxacum alaskanum \N \N \N \N \N 108428 E.erigena Erica Erica erigena Irish heath \N \N \N \N 108429 A.caribaea Amanoa Amanoa caribaea \N \N \N \N \N 108430 C.cvijicii Crocus Crocus cvijicii \N \N \N \N \N 108431 \N genus Delosperma \N \N \N \N \N 108432 S.leucophylla Saussurea Saussurea leucophylla \N \N \N \N \N 108433 P.chlorostylus Petalochilus Petalochilus chlorostylus \N \N \N \N \N 108434 G.paniculata Gaultheria Gaultheria paniculata \N \N \N \N \N 108435 P.minus Paspalum Paspalum minus \N \N \N \N \N 108436 T.grandiflorus Tristerix Tristerix grandiflorus \N \N \N \N \N 108437 P.linearis Paederia Paederia linearis \N \N \N \N \N 108438 D.macrophylla Duguetia Duguetia macrophylla \N \N \N \N \N 108439 B.crenulata Babingtonia Babingtonia crenulata \N \N \N \N \N 108440 F.arvensis Filago Filago arvensis \N \N \N \N \N 108441 C.caladenia Caesalpinia Caesalpinia caladenia \N \N \N \N \N 108442 C.roborovskyi Caragana Caragana roborovskyi \N \N \N \N \N 108443 E.cylindrostachys Eleocharis Eleocharis cylindrostachys \N \N \N \N \N 108444 V.stipulacea Vigna Vigna stipulacea \N \N \N \N \N 108445 H.longicorniculata Habenaria Habenaria longicorniculata \N \N \N \N \N 108446 Q.tomentella Quercus Quercus tomentella island oak \N \N \N \N 108447 R.ligulata Reichardia Reichardia ligulata \N \N \N \N \N 108448 G.yeoi Geranium Geranium yeoi \N \N \N \N \N 108449 O.SD2354 Cochlioda Oncidium sp. SD2354 \N \N \N \N \N 108450 \N genus Cryptocarya \N \N \N \N \N 108451 B.craibiana Berlinia Berlinia craibiana \N \N \N \N \N 108452 E.dolichostemon Epimedium Epimedium dolichostemon \N \N \N \N \N 108453 H.subaphyllus Halothamnus Halothamnus subaphyllus \N \N \N \N \N 108454 S.affinis Sorocea Sorocea affinis \N \N \N \N \N 108455 C.uniflora Calceolaria Calceolaria uniflora \N \N \N \N \N 108456 \N genus Teijsmanniodendron \N \N \N \N \N 108457 E.jaegeri Eleusine Eleusine jaegeri \N \N \N \N \N 108458 \N genus Metabriggsia \N \N \N \N \N 108459 S.laurentianum Symphyotrichum Symphyotrichum laurentianum \N \N \N \N \N 108460 A.komarowii Allium Allium komarowii \N \N \N \N \N 108461 S.amplexicaulis Scrophularia Scrophularia amplexicaulis \N \N \N \N \N 108462 \N genus Betonica \N \N \N \N \N 108463 T.arcticum Taraxacum Taraxacum arcticum \N \N \N \N \N 108464 C.repandum Cyclamen Cyclamen repandum \N \N \N \N \N 108465 N.shweliensis Nyssa Nyssa shweliensis \N \N \N \N \N 108466 I.hilaris Indigofera Indigofera hilaris \N \N \N \N \N 108467 C.1193 Canthium Canthium sp. 7 Davis 1193 \N \N \N \N \N 108468 C.creutzburgii Campanula Campanula creutzburgii \N \N \N \N \N 108469 A.arctiflora Alpinia Alpinia arctiflora \N \N \N \N \N 108470 E.nyctelea Ellisia Ellisia nyctelea \N \N \N \N \N 108471 S.havilandii Shorea Shorea havilandii \N \N \N \N \N 108472 A.spicatum Arpophyllum Arpophyllum spicatum \N \N \N \N \N 108473 T.brachygyne Thesium Thesium brachygyne \N \N \N \N \N 108474 C.inermis Cordia Cordia inermis \N \N \N \N \N 108475 O.densa Oxalis Oxalis densa \N \N \N \N \N 108476 L.damazioana Luxemburgia Luxemburgia damazioana \N \N \N \N \N 108477 M.heyniana Medicago Medicago heyniana \N \N \N \N \N 108478 P.mearsii Peripentadenia Peripentadenia mearsii \N \N \N \N \N 108479 C.longipes Cynanchum Cynanchum longipes \N \N \N \N \N 108480 A.vermiculata Aspalathus Aspalathus vermiculata \N \N \N \N \N 108481 \N genus Lepyrodia \N \N \N \N \N 108482 S.pratensis Succisa Succisa pratensis \N \N \N \N \N 108483 F.bruguieri Fagonia Fagonia bruguieri \N \N \N \N \N 108484 D.aucherii Dorema Dorema aucherii \N \N \N \N \N 108485 C.franciscana Clarkia Clarkia franciscana Presidio clarkia \N \N \N \N 108486 S.brachyphylla Sebaea Sebaea brachyphylla \N \N \N \N \N 108487 N.oguraensis Najas Najas oguraensis \N \N \N \N \N 108488 I.laurina Inga Inga laurina \N \N \N \N \N 108489 \N genus Microsechium \N \N \N \N \N 108490 D.brevis Dahlia Dahlia brevis \N \N \N \N \N 108491 C.amabilis Calochortus Calochortus amabilis Diogenes' lantern \N \N \N \N 108492 H.dulongjiang Holcoglossum Holcoglossum sp. dulongjiang \N \N \N \N \N 108493 A.bifolia Aporostylis Aporostylis bifolia \N \N \N \N \N 108494 H.cordifolia Haldina Haldina cordifolia \N \N \N \N \N 108495 S.azurea Salvia Salvia azurea \N \N \N \N \N 108496 D.riopalenquensis Dichaea Dichaea riopalenquensis \N \N \N \N \N 108497 M.linearifolium Metastelma Metastelma linearifolium \N \N \N \N \N 108498 M.palmeri Malacothamnus Malacothamnus palmeri \N \N \N \N \N 108499 B.procumbens Brachyscome Brachyscome procumbens \N \N \N \N \N 108500 L.rotundifolia Lippia Lippia rotundifolia \N \N \N \N \N 108501 P.caespitosa Polycarpaea Polycarpaea caespitosa \N \N \N \N \N 108502 L.viscosa Leucophysalis Leucophysalis viscosa \N \N \N \N \N 108503 T.bocconei Trifolium Trifolium bocconei \N \N \N \N \N 108504 \N subspecies Carex saxatilis subsp. saxatilis \N \N \N \N \N 108505 A.labiata Aristolochia Aristolochia labiata rooster-flower \N \N \N \N 108506 \N genus Leptosema \N \N \N \N \N 108507 B.acutus Brachysiphon Brachysiphon acutus \N \N \N \N \N 108509 E.grande Eriogonum Eriogonum grande \N \N \N \N \N 108510 P.angustifolia Pyracantha Pyracantha angustifolia \N \N \N \N \N 108511 \N varietas Ficus superba var. japonica \N \N \N \N \N 108512 P.junceum Pachynema Pachynema junceum \N \N \N \N \N 108513 C.dalbergiifolia Chamaecrista Chamaecrista dalbergiifolia \N \N \N \N \N 108514 A.peltatus Astragalus Astragalus peltatus \N \N \N \N \N 108515 R.abietifolium Rhododendron Rhododendron abietifolium \N \N \N \N \N 108516 X.coloradoense Xanthisma Xanthisma coloradoense \N \N \N \N \N 108517 \N genus Hesperethusa \N \N \N \N \N 108518 \N genus Caladium \N \N \N \N \N 108519 \N genus Amphicarpaea \N \N \N \N \N 108520 \N genus Zomicarpella \N \N \N \N \N 108521 U.venosa Urochloa Urochloa venosa \N \N \N \N \N 108522 L.lacunosa Leandra Leandra lacunosa \N \N \N \N \N 108523 P.exstipulatum Pelargonium Pelargonium exstipulatum \N \N \N \N \N 108524 \N genus Genistidium \N \N \N \N \N 108525 S.adhaerans Setaria Setaria adhaerans \N \N \N \N \N 108526 L.valida Licuala Licuala valida \N \N \N \N \N 108527 C.subperfoliata Crotalaria Crotalaria subperfoliata \N \N \N \N \N 108528 M.mandenense Malleastrum Malleastrum mandenense \N \N \N \N \N 108529 Z.madrensis Zeltnera Zeltnera madrensis \N \N \N \N \N 108530 \N genus Allomarkgrafia \N \N \N \N \N 108531 U.MP-2011 Urginavia Urginavia sp. 1 MP-2011 \N \N \N \N \N 108532 V.malzinei Vriesea Vriesea malzinei \N \N \N \N \N 108533 A.roeseliae Aechmea Aechmea roeseliae \N \N \N \N \N 108534 \N genus Havetiopsis \N \N \N \N \N 108535 C.epiphyticus Cyrtanthus Cyrtanthus epiphyticus \N \N \N \N \N 108536 A.odorata Agastachys Agastachys odorata \N \N \N \N \N 108537 S.tengtsungensis Sagittaria Sagittaria tengtsungensis \N \N \N \N \N 108538 C.patula Centaurea Centaurea patula \N \N \N \N \N 108539 B.gummifera Bolax Bolax gummifera \N \N \N \N \N 108540 A.cylindrica Austrocylindropuntia Austrocylindropuntia cylindrica \N \N \N \N \N 108541 E.koraginensis Erigeron Erigeron koraginensis \N \N \N \N \N 108542 T.arnhemica Thunbergia Thunbergia arnhemica \N \N \N \N \N 108543 P.commune Paspalum Paspalum commune \N \N \N \N \N 108544 C.albisepta Ceropegia Ceropegia albisepta \N \N \N \N \N 108545 S.lythrocarpum Solanum Solanum lythrocarpum \N \N \N \N \N 108546 S.viridissima Schismatoglottis Schismatoglottis viridissima \N \N \N \N \N 108547 S.crispata Sulcorebutia Sulcorebutia crispata \N \N \N \N \N 108548 L.flava Limnocharis Limnocharis flava sawah-lettuce \N \N \N \N 108549 D.archibaldii Dionysia Dionysia archibaldii \N \N \N \N \N 108550 E.macrocalyx Erodium Erodium macrocalyx \N \N \N \N \N 108551 R.cyclophyllus Rhoogeton Rhoogeton cyclophyllus \N \N \N \N \N 108552 C.TH-158 Cortaderia Cortaderia sp. TH-158 \N \N \N \N \N 108553 C.3580 Cosmibuena Cosmibuena sp. JA 3580 \N \N \N \N \N 108554 \N no rank Acronema clade \N \N \N \N \N 108555 M.leucophylla Mentzelia Mentzelia leucophylla \N \N \N \N \N 108556 L.ciliata Lysimachia Lysimachia ciliata \N \N \N \N \N 108557 D.densum Dracophyllum Dracophyllum densum \N \N \N \N \N 108558 A.burelae Aristolochia Aristolochia burelae \N \N \N \N \N 108559 M.roseum Macrocnemum Macrocnemum roseum \N \N \N \N \N 108560 \N genus Spirorhynchus \N \N \N \N \N 108561 \N subspecies Sinapis pubescens subsp. boivinii \N \N \N \N \N 108562 P.komarovii Photinia Photinia komarovii \N \N \N \N \N 108563 C.armandii Clematis Clematis armandii \N \N \N \N \N 108564 \N tribe Genisteae \N \N \N \N \N 108565 P.tacsonioides Passiflora Passiflora tacsonioides \N \N \N \N \N 108566 L.glaricola Lepidostemon Lepidostemon glaricola \N \N \N \N \N 108567 \N genus Aegialophila \N \N \N \N \N 108568 \N subspecies Arnica angustifolia subsp. angustifolia \N \N \N \N \N 108569 R.hugonis Rosa Rosa hugonis \N \N \N \N \N 108570 P.caudata Pericome Pericome caudata \N \N \N \N \N 108571 G.princeps Galtonia Galtonia princeps \N \N \N \N \N 108572 C.aquatica Centrostachys Centrostachys aquatica \N \N \N \N \N 108573 A.africana Afzelia Afzelia africana \N \N \N \N \N 108574 C.perpusillus Cotoneaster Cotoneaster perpusillus \N \N \N \N \N 108575 \N genus Lepisanthes \N \N \N \N \N 108576 C.purpureus Calochortus Calochortus purpureus \N \N \N \N \N 108577 E.tuckeyana Euphorbia Euphorbia tuckeyana \N \N \N \N \N 108578 H.leucopharynx Harveya Harveya leucopharynx \N \N \N \N \N 108579 L.globosa Lichtensteinia Lichtensteinia globosa \N \N \N \N \N 108580 \N genus Chrysanthemum \N \N \N \N \N 108581 C.chinensis Cornus Cornus chinensis \N \N \N \N \N 108582 \N genus Lithodora \N \N \N \N \N 108583 M.2673 Maxillaria Maxillaria cf. madida Whitten 2673 \N \N \N \N \N 108584 O.pubescens Ormocarpum Ormocarpum pubescens \N \N \N \N \N 108585 R.macrosepalum Rhododendron Rhododendron macrosepalum \N \N \N \N \N 108586 P.zeylanica Putranjiva Putranjiva zeylanica \N \N \N \N \N 108587 \N genus Schleinitzia \N \N \N \N \N 108588 I.matanoana Ilex Ilex matanoana \N \N \N \N \N 108589 \N genus Phialanthus \N \N \N \N \N 108590 D.nanum Delphinium Delphinium nanum \N \N \N \N \N 108591 M.alleniorum Macroclinium Macroclinium alleniorum \N \N \N \N \N 108592 A.aciphylla Anthemis Anthemis aciphylla \N \N \N \N \N 108593 E.davyi Euphorbia Euphorbia davyi \N \N \N \N \N 108594 C.poggei Clerodendrum Clerodendrum poggei \N \N \N \N \N 108595 M.echinata Massonia Massonia echinata \N \N \N \N \N 108596 C.cuprea Coelogyne Coelogyne cuprea \N \N \N \N \N 108597 I.brachystachya Indigofera Indigofera brachystachya \N \N \N \N \N 108598 \N genus Askidiosperma \N \N \N \N \N 108599 \N genus Olax \N \N \N \N \N 108600 E.onusta Erica Erica onusta \N \N \N \N \N 108601 C.3599 Clusia Clusia sp. JA 3599 \N \N \N \N \N 108602 P.tuerckheimii Pleurothallis Pleurothallis tuerckheimii \N \N \N \N \N 108603 \N genus Kibatalia \N \N \N \N \N 108604 P.leptotifolia Pleurothallis Pleurothallis leptotifolia \N \N \N \N \N 108605 P.2885 Pycnandra Pycnandra sp. Munzinger 2885 \N \N \N \N \N 108606 R.racemosa Rafnia Rafnia racemosa \N \N \N \N \N 108607 O.scolopax Ophrys Ophrys scolopax \N \N \N \N \N 108608 K.maxima Kallstroemia Kallstroemia maxima verdolaga \N \N \N \N 108609 R.noriakianum Rhododendron Rhododendron noriakianum \N \N \N \N \N 108610 V.anagallis Veronica Veronica anagallis \N \N \N \N \N 108611 E.maculata Euphorbia Euphorbia maculata \N \N \N \N \N 108612 T.gracilis Topobea Topobea gracilis \N \N \N \N \N 108613 S.kerrii Stemona Stemona kerrii \N \N \N \N \N 108614 \N genus Physostigma \N \N \N \N \N 108615 M.opulenta Macrocarpaea Macrocarpaea opulenta \N \N \N \N \N 108616 E.aphyllus Exocarpos Exocarpos aphyllus \N \N \N \N \N 108617 L.vulcanica Loasa Loasa vulcanica \N \N \N \N \N 108618 P.debilis Pedicularis Pedicularis debilis \N \N \N \N \N 108619 \N genus Peddiea \N \N \N \N \N 108620 \N genus Lyonia \N \N \N \N \N 108621 D.excelsa Dinizia Dinizia excelsa \N \N \N \N \N 108622 P.forbesii Pinanga Pinanga forbesii \N \N \N \N \N 108623 \N order Trochodendrales \N \N \N \N \N 108624 S.dumetorum Schizostachyum Schizostachyum dumetorum \N \N \N \N \N 108625 L.interior Leymus Leymus interior \N \N \N \N \N 108626 \N genus Dilatris \N \N \N \N \N 108627 C.longifructus Cardamine Cardamine longifructus \N \N \N \N \N 108628 D.lessertii Dendrostellera Dendrostellera lessertii \N \N \N \N \N 108629 C.schumannii Cuphea Cuphea schumannii \N \N \N \N \N 108630 T.weddelliana Turnera Turnera weddelliana \N \N \N \N \N 108631 S.parviflora Scorzonera Scorzonera parviflora \N \N \N \N \N 108632 O.grammopetala Oxalis Oxalis grammopetala \N \N \N \N \N 108633 T.obtusifolium Tribolium Tribolium obtusifolium \N \N \N \N \N 108634 S.pseudofastigiatum Syzygium Syzygium pseudofastigiatum \N \N \N \N \N 108635 A.zeravschanicum Aconitum Aconitum zeravschanicum \N \N \N \N \N 108636 H.laevigata Habenaria Habenaria laevigata \N \N \N \N \N 108637 P.fallax Polystachya Polystachya fallax \N \N \N \N \N 108638 \N varietas Cuscuta obtusiflora var. glandulosa \N \N \N \N \N 108639 A.delaguardiae Arenaria Arenaria delaguardiae \N \N \N \N \N 108640 C.sonorae Cordia Cordia sonorae \N \N \N \N \N 108641 \N subspecies Shorea macroptera subsp. baillonii \N \N \N \N \N 108642 Q.trojana Quercus Quercus suber x Quercus trojana \N \N \N \N \N 108643 A.salsoloides Artemisia Artemisia salsoloides \N \N \N \N \N 108644 \N genus Dendrophthora \N \N \N \N \N 108645 S.carpetana Scorzoneroides Scorzoneroides carpetana \N \N \N \N \N 108646 A.mirifica Asclepias Asclepias mirifica \N \N \N \N \N 108647 F.subantarctica Festuca Festuca subantarctica \N \N \N \N \N 108648 S.ionosma Staurochilus Staurochilus ionosma \N \N \N \N \N 108649 W.dioica Wurmbea Wurmbea dioica \N \N \N \N \N 108650 S.bracteata Saxifraga Saxifraga bracteata \N \N \N \N \N 108651 D.indica Dillenia Dillenia indica \N \N \N \N \N 108652 O.cultivar Odontoglossum Odontoglossum hybrid cultivar \N \N \N \N \N 108653 V.lobophyllum Viburnum Viburnum lobophyllum \N \N \N \N \N 108654 \N genus Clinosperma \N \N \N \N \N 108655 \N genus Urginavia \N \N \N \N \N 108656 O.298 Oldenlandia Oldenlandia sp. Dessein et al. 298 \N \N \N \N \N 108657 \N genus Acanthocereus \N \N \N \N \N 108658 \N genus Brocchinia \N \N \N \N \N 108659 \N genus Acharia \N \N \N \N \N 108660 L.bossiaea Leucopogon Leucopogon bossiaea \N \N \N \N \N 108661 D.glaucum Dipcadi Dipcadi glaucum \N \N \N \N \N 108662 G.mirabilis Gardnerodoxa Gardnerodoxa mirabilis \N \N \N \N \N 108663 N.latifolium Nothocestrum Nothocestrum latifolium \N \N \N \N \N 108664 P.dubia Petrorhagia Petrorhagia dubia \N \N \N \N \N 108665 M.saxatilis Myrcia Myrcia saxatilis \N \N \N \N \N 108666 P.novoascanicum Polygonum Polygonum novoascanicum \N \N \N \N \N 108667 L.botschantsevianum Lepidium Lepidium botschantsevianum \N \N \N \N \N 108668 E.rigida Eriaxis Eriaxis rigida \N \N \N \N \N 108669 M.triangularis Miconia Miconia triangularis \N \N \N \N \N 108670 S.morrisonense Sedum Sedum morrisonense \N \N \N \N \N 108671 A.blitum Amaranthus Amaranthus blitum \N \N \N \N \N 108672 G.propinquum Gastrolobium Gastrolobium propinquum \N \N \N \N \N 108673 A.flavovirens Apatophyllum Apatophyllum flavovirens \N \N \N \N \N 108674 \N subspecies Stipagrostis zeyheri subsp. zeyheri \N \N \N \N \N 108675 D.inflatum Dendrobium Dendrobium inflatum \N \N \N \N \N 108676 C.viminale Cyrtochilum Cyrtochilum viminale \N \N \N \N \N 108677 N.sphaerocephala Nebelia Nebelia sphaerocephala \N \N \N \N \N 108678 R.clavatum Rytidosperma Rytidosperma clavatum \N \N \N \N \N 108679 F.bubu Ficus Ficus bubu \N \N \N \N \N 108680 M.cerifera Maxillaria Maxillaria cerifera \N \N \N \N \N 108681 P.retusa Peperomia Peperomia retusa \N \N \N \N \N 108682 R.robustior Ravenea Ravenea robustior \N \N \N \N \N 108683 C.asperata Cucurbitella Cucurbitella asperata \N \N \N \N \N 108684 \N genus Atalantia \N \N \N \N \N 108685 \N genus Rachelia \N \N \N \N \N 108686 \N subspecies Hedera helix subsp. helix \N \N \N \N \N 108687 \N no rank unplaced Maloideae \N \N \N \N \N 108688 L.loochooensis Lobelia Lobelia loochooensis \N \N \N \N \N 108689 \N subspecies Combretum collinum subsp. suluense \N \N \N \N \N 108690 \N subspecies Conostylis setigera subsp. dasys \N \N \N \N \N 108691 P.clarkei Phyllanthus Phyllanthus clarkei \N \N \N \N \N 108692 \N genus Zeyheria \N \N \N \N \N 108693 C.canariensis Cedronella Cedronella canariensis \N \N \N \N \N 108694 \N genus Orbexilum \N \N \N \N \N 108695 C.pallida Clermontia Clermontia pallida \N \N \N \N \N 108696 J.alpigena Jurinea Jurinea alpigena \N \N \N \N \N 108697 \N subspecies Helichrysum serotinum subsp. picardii \N \N \N \N \N 108698 S.volckmannii Senecio Senecio volckmannii \N \N \N \N \N 108699 \N genus Cremolobus \N \N \N \N \N 108700 A.exscapus Astragalus Astragalus exscapus \N \N \N \N \N 108701 \N no rank environmental samples Taxonomy:1096678 \N \N \N \N \N 108702 S.obermeyerae Syncolostemon Syncolostemon obermeyerae \N \N \N \N \N 108703 M.szechuanensis Mimulus Mimulus szechuanensis \N \N \N \N \N 108704 R.calophytum Rhododendron Rhododendron calophytum \N \N \N \N \N 108705 S.australis Spiranthes Spiranthes australis \N \N \N \N \N 108706 R.madiensis Raphionacme Raphionacme madiensis \N \N \N \N \N 108707 K.latifolia Kniphofia Kniphofia latifolia \N \N \N \N \N 108708 A.elegans Acianthus Acianthus elegans \N \N \N \N \N 108709 E.elongatum Empodium Empodium elongatum \N \N \N \N \N 108710 \N varietas Mentha longifolia var. candicans \N \N \N \N \N 108711 K.elliptica Kermadecia Kermadecia elliptica \N \N \N \N \N 108712 \N varietas Lotus argophyllus var. fremontii \N \N \N \N \N 108713 F.sesleriiformis Fingerhuthia Fingerhuthia sesleriiformis \N \N \N \N \N 108714 \N genus Dichostemma \N \N \N \N \N 108715 L.guyanensis Ledothamnus Ledothamnus guyanensis \N \N \N \N \N 108716 R.youngii Raoulia Raoulia youngii \N \N \N \N \N 108717 M.macrodon Miconia Miconia macrodon \N \N \N \N \N 108718 S.paulayana Suaeda Suaeda paulayana \N \N \N \N \N 108719 T.capillare Tropaeolum Tropaeolum capillare \N \N \N \N \N 108720 \N genus Uranthoecium \N \N \N \N \N 108721 D.cubensis Doerpfeldia Doerpfeldia cubensis \N \N \N \N \N 108722 M.arvensis Moricandia Moricandia arvensis \N \N \N \N \N 108723 E.jimenez-quesadae Espeletiopsis Espeletiopsis jimenez-quesadae \N \N \N \N \N 108724 H.PI401353 Heteranthelium Heteranthelium sp. PI401353 \N \N \N \N \N 108725 C.cuspidatus Cyperus Cyperus cuspidatus \N \N \N \N \N 108726 P.volkensii Psychotria Psychotria volkensii \N \N \N \N \N 108727 A.divaricata Actinokentia Actinokentia divaricata \N \N \N \N \N 108728 A.welshii Asclepias Asclepias welshii \N \N \N \N \N 108729 \N varietas Linum prostratum var. parvum \N \N \N \N \N 108730 G.GOS-5223 Gossypium Gossypium sp. GOS-5223 \N \N \N \N \N 108731 P.guianense Protium Protium guianense \N \N \N \N \N 108732 C.uruguayensis Calyculogygas Calyculogygas uruguayensis \N \N \N \N \N 108733 C.spicatus Costus Costus spicatus cana agria \N \N \N \N 108734 M.124981 Masdevallia Masdevallia sp. HEID 124981 \N \N \N \N \N 108735 D.vigilans Disa Disa vigilans \N \N \N \N \N 108736 S.tenerrima Sesleria Sesleria tenerrima \N \N \N \N \N 108737 E.evansii Euryops Euryops evansii \N \N \N \N \N 108738 D.philippinense Dendrobium Dendrobium philippinense \N \N \N \N \N 108739 A.aaronsohnii Anthemis Anthemis aaronsohnii \N \N \N \N \N 108740 C.aizoides Campanula Campanula aizoides \N \N \N \N \N 108741 R.chinensis Rhynchospora Rhynchospora chinensis \N \N \N \N \N 108742 \N genus Acsmithia \N \N \N \N \N 108743 L.littoralis Lupinus Lupinus littoralis chinook-licorice,seashore lupine \N \N \N \N 108744 C.torresii Clusia Clusia torresii \N \N \N \N \N 108745 \N genus Ambavia \N \N \N \N \N 108746 \N genus Madangia \N \N \N \N \N 108747 L.psiloloba Lebeckia Lebeckia psiloloba \N \N \N \N \N 108748 T.line unclassified Triticeae Triticum aestivum/Thinopyrum intermedium alien addition line \N \N \N \N \N 108749 \N genus Nanobubon \N \N \N \N \N 108750 P.trinervium Phoradendron Phoradendron trinervium \N \N \N \N \N 108751 C.psammophilus Corchorus Corchorus psammophilus \N \N \N \N \N 108752 T.nordstedtii Taraxacum Taraxacum nordstedtii \N \N \N \N \N 108753 M.senegalensis Morelia Morelia senegalensis \N \N \N \N \N 108754 I.manshuricum Isopyrum Isopyrum manshuricum \N \N \N \N \N 108755 G.neomexicana Gaura Gaura neomexicana \N \N \N \N \N 108756 O.japonica Orostachys Orostachys japonica \N \N \N \N \N 108757 E.goniorhachis Epidendrum Epidendrum goniorhachis \N \N \N \N \N 108758 \N genus Gongronema \N \N \N \N \N 108759 S.eucalyptoides Syzygium Syzygium eucalyptoides \N \N \N \N \N 108760 E.veratrifolia Epipactis Epipactis veratrifolia \N \N \N \N \N 108761 S.macrocarpus Stachyurus Stachyurus macrocarpus \N \N \N \N \N 108762 L.rosani Leontodon Leontodon rosani \N \N \N \N \N 108763 \N genus Conopodium \N \N \N \N \N 108764 P.davidii Pternopetalum Pternopetalum davidii \N \N \N \N \N 108765 H.argentea Heeria Heeria argentea \N \N \N \N \N 108766 R.occidentalis Ranunculus Ranunculus occidentalis western buttercup \N \N \N \N 108767 P.sumatrana Pentastemona Pentastemona sumatrana \N \N \N \N \N 108768 A.lanceolata Arnica Arnica lanceolata \N \N \N \N \N 108769 C.AG-2008 Cucumis Cucumis sp. AG-2008 \N \N \N \N \N 108770 \N varietas Schoenoplectus acutus var. occidentalis \N \N \N \N \N 108771 D.pauciflorula Dubautia Dubautia pauciflorula \N \N \N \N \N 108772 S.argentea Shepherdia Shepherdia argentea \N \N \N \N \N 108773 A.spartioides Aphyllocladus Aphyllocladus spartioides \N \N \N \N \N 108774 H.frigidum Helichrysum Helichrysum frigidum \N \N \N \N \N 108775 M.satureioides Mentha Mentha satureioides Brisbane pennyroyal,creeping mint \N \N \N \N 108776 \N genus Sesleria \N \N \N \N \N 108777 Z.discolor Zemisia Zemisia discolor \N \N \N \N \N 108778 L.stricta Lobelia Lobelia stricta \N \N \N \N \N 108779 S.cretica Silene Silene cretica \N \N \N \N \N 108780 A.taeniopetalum Allium Allium taeniopetalum \N \N \N \N \N 108781 Z.JL-2011a Zanthoxylum Zanthoxylum sp. JL-2011a \N \N \N \N \N 108782 B.mitis Bidens Bidens mitis \N \N \N \N \N 108783 U.lorentziana Urochloa Urochloa lorentziana \N \N \N \N \N 108784 J.barrancaensis Jarava Jarava barrancaensis \N \N \N \N \N 108785 S.seelyi Silene Silene seelyi \N \N \N \N \N 108786 C.polystachya Carex Carex polystachya \N \N \N \N \N 108787 \N genus Alvesia \N \N \N \N \N 108788 C.arcta Carex Carex arcta \N \N \N \N \N 108789 P.axillaris Pseudowintera Pseudowintera axillaris \N \N \N \N \N 108790 H.stoechas Helichrysum Helichrysum stoechas \N \N \N \N \N 108791 D.involucrata Davidia Davidia involucrata \N \N \N \N \N 108792 N.aspera Nothobartsia Nothobartsia aspera \N \N \N \N \N 108793 R.densiflora Rulingia Rulingia densiflora \N \N \N \N \N 108794 P.corymbosa Phanera Phanera corymbosa \N \N \N \N \N 108795 \N genus Euterpe \N \N \N \N \N 108796 D.sample environmental samples Taxonomy:404809 Datiscaceae environmental sample \N \N \N \N \N 108797 G.commixtus Gamanthus Gamanthus commixtus \N \N \N \N \N 108798 C.lasiocarpa Campanula Campanula lasiocarpa Alaska bellflower,iwa-gikyo \N \N \N \N 108799 B.japonica Balanophora Balanophora japonica \N \N \N \N \N 108800 \N genus Hyacinthus \N \N \N \N \N 108801 G.burkei Galeottia Galeottia burkei \N \N \N \N \N 108802 C.galpinii Cyrtanthus Cyrtanthus galpinii \N \N \N \N \N 108803 G.cheliensis Goniothalamus Goniothalamus cheliensis \N \N \N \N \N 108804 M.stenopetala Moringa Moringa stenopetala \N \N \N \N \N 108805 S.tahitensis Scaevola Scaevola tahitensis \N \N \N \N \N 108806 S.persistens Symplocos Symplocos persistens \N \N \N \N \N 108807 \N varietas Moricandia arvensis var. robusta \N \N \N \N \N 108808 P.muricatum Piper Piper muricatum \N \N \N \N \N 108809 E.triquetrum Eryngium Eryngium triquetrum \N \N \N \N \N 108810 C.SH-2010 Crotalaria Crotalaria sp. SH-2010 \N \N \N \N \N 108811 \N varietas Helichrysum asperum var. albidulum \N \N \N \N \N 108812 \N genus Oxystigma \N \N \N \N \N 108813 N.gracilis Neomarica Neomarica gracilis \N \N \N \N \N 108814 O.araysiana Orbea Orbea araysiana \N \N \N \N \N 108815 A.scullyi Arctotis Arctotis scullyi \N \N \N \N \N 108816 B.oxylobula Boechera Boechera oxylobula \N \N \N \N \N 108817 P.pruinosum Pararchidendron Pararchidendron pruinosum \N \N \N \N \N 108818 \N genus Chaubardiella \N \N \N \N \N 108819 S.aphylla Senna Senna aphylla \N \N \N \N \N 108820 \N subspecies Fragaria virginiana subsp. platypetala \N \N \N \N \N 108821 P.ludlowii Paeonia Paeonia ludlowii \N \N \N \N \N 108822 S.23320 Styrax Styrax sp. Nunez 23320 \N \N \N \N \N 108823 C.aphanopetala Colpothrinax Colpothrinax aphanopetala \N \N \N \N \N 108824 \N subspecies Lamium galeobdolon subsp. galeobdolon \N \N \N \N \N 108825 H.ciliata Hippocrepis Hippocrepis ciliata \N \N \N \N \N 108826 \N genus Oliveriana \N \N \N \N \N 108827 \N genus Stenostomum \N \N \N \N \N 108828 L.cantleyanus Lithocarpus Lithocarpus cantleyanus \N \N \N \N \N 108829 M.harveyana Muraltia Muraltia harveyana \N \N \N \N \N 108830 A.platyphylla Acalypha Acalypha platyphylla \N \N \N \N \N 108831 G.lasioneura Guioa Guioa lasioneura \N \N \N \N \N 108832 P.pumilum Paspalum Paspalum pumilum \N \N \N \N \N 108833 A.beccarii Amorphophallus Amorphophallus beccarii \N \N \N \N \N 108834 M.minimus Mesechites Mesechites minimus \N \N \N \N \N 108835 B.gracilenta Besleria Besleria gracilenta \N \N \N \N \N 108836 S.nitida Solidago Solidago nitida shiny goldenrod \N \N \N \N 108837 C.fosterianum Canistrum Canistrum fosterianum \N \N \N \N \N 108838 C.armena Campanula Campanula armena \N \N \N \N \N 108839 E.fenzelii Engelhardia Engelhardia fenzelii \N \N \N \N \N 108840 L.tomentosa Lobelia Lobelia tomentosa \N \N \N \N \N 108841 R.schlechteri Rhaphidophora Rhaphidophora schlechteri \N \N \N \N \N 108842 \N subspecies Carex mannii subsp. friesiorum \N \N \N \N \N 108843 B.solandri Banksia Banksia solandri \N \N \N \N \N 108844 F.asymetrica Foetidia Foetidia asymetrica \N \N \N \N \N 108845 B.oxyloba Begonia Begonia oxyloba \N \N \N \N \N 108846 R.pseudotrullifolius Ranunculus Ranunculus pseudotrullifolius \N \N \N \N \N 108847 E.sciurus Echinocereus Echinocereus sciurus \N \N \N \N \N 108848 \N varietas Silene rosulata var. tingitana \N \N \N \N \N 108849 N.scoparia Nylandtia Nylandtia scoparia \N \N \N \N \N 108850 C.hermannii Carex Carex hermannii \N \N \N \N \N 108851 C.peruviana Cryptantha Cryptantha peruviana \N \N \N \N \N 108852 A.chilense Asteriscium Asteriscium chilense \N \N \N \N \N 108853 M.calura Masdevallia Masdevallia calura \N \N \N \N \N 108854 B.madagascariensis Borassus Borassus madagascariensis \N \N \N \N \N 108855 \N subspecies Coprosma macrocarpa subsp. macrocarpa \N \N \N \N \N 108856 \N subspecies Prunus domestica subsp. intermedia \N \N \N \N \N 108857 S.sarmentosa Saxifraga Saxifraga sarmentosa \N \N \N \N \N 108858 K.hermanniifolia Keraudrenia Keraudrenia hermanniifolia \N \N \N \N \N 108859 B.macrostachya Betonica Betonica macrostachya \N \N \N \N \N 108860 \N subfamily Vaccinioideae \N \N \N \N \N 108861 V.suavis Viola Viola suavis \N \N \N \N \N 108862 E.iquiquensis Eulychnia Eulychnia iquiquensis \N \N \N \N \N 108863 E.dolichatherus Elymus Elymus dolichatherus \N \N \N \N \N 108864 L.800 Lepidosperma Lepidosperma aff. filiforme Morris 800 \N \N \N \N \N 108865 O.macrophylla Ourisia Ourisia macrophylla \N \N \N \N \N 108866 \N genus Neostenanthera \N \N \N \N \N 108867 A.kirkii Aerangis Aerangis kirkii \N \N \N \N \N 108868 D.disticha Dicranolepis Dicranolepis disticha \N \N \N \N \N 108869 B.stellatifolium Brabejum Brabejum stellatifolium \N \N \N \N \N 108870 \N varietas Sarracenia purpurea var. purpurea \N \N \N \N \N 108871 B.suksdorfii Bromus Bromus suksdorfii \N \N \N \N \N 108872 \N genus Teloxys \N \N \N \N \N 108873 S.tenuifolia Styphelia Styphelia tenuifolia \N \N \N \N \N 108874 I.glutinosus Isodon Isodon glutinosus \N \N \N \N \N 108875 A.paucipilosa Agalmyla Agalmyla paucipilosa \N \N \N \N \N 108876 S.opuntioides Schlumbergera Schlumbergera opuntioides \N \N \N \N \N 108877 D.acroblephara Dichaea Dichaea acroblephara \N \N \N \N \N 108878 M.poeppigii Miconia Miconia poeppigii \N \N \N \N \N 108879 S.laciniata Silene Silene laciniata \N \N \N \N \N 108880 M.spathicalyx Macaranga Macaranga spathicalyx \N \N \N \N \N 108881 C.rhabdobulbon Coelogyne Coelogyne rhabdobulbon \N \N \N \N \N 108882 H.verrucosa Hypertelis Hypertelis verrucosa \N \N \N \N \N 108883 \N family Liliaceae lily family \N \N \N \N 108884 R.ulei Remijia Remijia ulei \N \N \N \N \N 108885 L.obcordata Lophomyrtus Lophomyrtus obcordata \N \N \N \N \N 108886 X.anceps Xyris Xyris anceps \N \N \N \N \N 108887 A.sclerophylla Acacia Acacia sclerophylla hard-leaf wattle \N \N \N \N 108888 \N subspecies Fagus grandifolia subsp. grandifolia \N \N \N \N \N 108889 G.grandiflorus Gymnopogon Gymnopogon grandiflorus \N \N \N \N \N 108890 C.mariana Centaurea Centaurea mariana \N \N \N \N \N 108891 G.candida Globba Globba candida \N \N \N \N \N 108892 U.hahnii Uvaria Uvaria hahnii \N \N \N \N \N 108893 F.scabriculmis Festuca Festuca scabriculmis \N \N \N \N \N 108894 C.patens Cyrtococcum Cyrtococcum patens \N \N \N \N \N 108895 L.resinosa Litsea Litsea resinosa \N \N \N \N \N 108896 \N genus Geissaspis \N \N \N \N \N 108897 C.nummulariifolius Croton Croton nummulariifolius \N \N \N \N \N 108898 S.marlothii Sebaea Sebaea marlothii \N \N \N \N \N 108899 \N genus Euclidium \N \N \N \N \N 108900 T.erectoclada Tunilla Tunilla erectoclada \N \N \N \N \N 108901 C.pereirae Capsicum Capsicum pereirae \N \N \N \N \N 108902 D.aphyllum Dendrobium Dendrobium aphyllum \N \N \N \N \N 108903 C.melanocarpa Cryptocarya Cryptocarya melanocarpa \N \N \N \N \N 108904 P.nipponica Phyllodoce Phyllodoce nipponica \N \N \N \N \N 108905 G.straminea Gentiana Gentiana straminea \N \N \N \N \N 108906 H.hirsutus Hymenocoleus Hymenocoleus hirsutus \N \N \N \N \N 108907 E.lilacina Episcia Episcia lilacina \N \N \N \N \N 108908 O.ornithorhynchum Oncidium Oncidium cheirophorum x Oncidium ornithorhynchum \N \N \N \N \N 108909 P.dactyloides Pholidostachys Pholidostachys dactyloides \N \N \N \N \N 108910 S.candicans Sideritis Sideritis candicans \N \N \N \N \N 108911 B.bracteatum Bulbophyllum Bulbophyllum bracteatum \N \N \N \N \N 108912 E.ravenelii Eleocharis Eleocharis ravenelii \N \N \N \N \N 108913 \N genus Cortia \N \N \N \N \N 108914 \N genus Microtea \N \N \N \N \N 108915 P.rootstock Prunus Prunus hybrid rootstock \N \N \N \N \N 108916 \N genus Gymnopentzia \N \N \N \N \N 108917 \N genus Kyhosia \N \N \N \N \N 108918 D.tibeticus Dontostemon Dontostemon tibeticus \N \N \N \N \N 108919 B.robusta Bhesa Bhesa robusta \N \N \N \N \N 108920 A.carolinianum Allium Allium carolinianum \N \N \N \N \N 108921 P.papantlensis Psychotria Psychotria papantlensis \N \N \N \N \N 108922 A.pruinosa Actinodaphne Actinodaphne pruinosa \N \N \N \N \N 108923 S.alta Stelis Stelis alta \N \N \N \N \N 108924 T.valentinii Typha Typha valentinii \N \N \N \N \N 108925 M.caudatus Mallotus Mallotus caudatus \N \N \N \N \N 108926 C.schweinfurthii Clerodendrum Clerodendrum schweinfurthii \N \N \N \N \N 108927 F.kyzylkumica Ferula Ferula kyzylkumica \N \N \N \N \N 108928 P.undulatum Pittosporum Pittosporum undulatum \N \N \N \N \N 108929 L.ulei Luzula Luzula ulei \N \N \N \N \N 108930 P.lobbii Pellacalyx Pellacalyx lobbii \N \N \N \N \N 108931 P.7696 Peplidium Peplidium sp. Barker 7696 \N \N \N \N \N 108932 C.propinqua Campanula Campanula propinqua \N \N \N \N \N 108933 D.acuminatus Deuteromallotus Deuteromallotus acuminatus \N \N \N \N \N 108934 B.hispida Brassaiopsis Brassaiopsis hispida \N \N \N \N \N 108935 A.hewitii Amorphophallus Amorphophallus hewitii \N \N \N \N \N 108936 T.carthlicum Triticum turgidum Triticum carthlicum Persian black wheat \N \N \N \N 108937 G.oreodoxa Gentiana Gentiana oreodoxa \N \N \N \N \N 108938 D.pallens Dianthus Dianthus pallens \N \N \N \N \N 108939 M.gracielanus Megacorax Megacorax gracielanus \N \N \N \N \N 108940 \N varietas Xylorhiza tortifolia var. tortifolia \N \N \N \N \N 108941 C.tetragona Coffea Coffea tetragona \N \N \N \N \N 108942 A.senegalense Anthostema Anthostema senegalense \N \N \N \N \N 108943 \N subspecies Orbea valida subsp. valida \N \N \N \N \N 108944 M.densiflora Macrocarpaea Macrocarpaea densiflora \N \N \N \N \N 108945 S.spinulosa Stillingia Stillingia spinulosa \N \N \N \N \N 108946 \N subspecies Filago lutescens subsp. atlantica \N \N \N \N \N 108947 H.incanum Heliotropium Heliotropium incanum \N \N \N \N \N 108948 L.nevadensis Lupinus Lupinus nevadensis \N \N \N \N \N 108949 O.guianensis Ocotea Ocotea guianensis \N \N \N \N \N 108950 \N subspecies Gymnocalycium marsoneri subsp. marsoneri \N \N \N \N \N 108951 E.fuertesii Elekmania Elekmania fuertesii \N \N \N \N \N 108952 E.radiata Eucalyptus Eucalyptus radiata \N \N \N \N \N 108953 C.senilis Cephalocereus Cephalocereus senilis \N \N \N \N \N 108954 \N genus Clarkeasia \N \N \N \N \N 108955 C.franchetiana Caragana Caragana franchetiana \N \N \N \N \N 108956 A.dimidiata Acacia Acacia dimidiata \N \N \N \N \N 108957 \N genus Pachystachys \N \N \N \N \N 108958 A.digitata Adansonia Adansonia digitata \N \N \N \N \N 108959 C.cabocla Cayaponia Cayaponia cabocla \N \N \N \N \N 108960 \N varietas Rhus chinensis var. roxburghii \N \N \N \N \N 108961 A.tessmannii Adelobotrys Adelobotrys tessmannii \N \N \N \N \N 108962 M.2747 Maxillaria Maxillaria cf. silvana Whitten 2747 \N \N \N \N \N 108963 \N varietas Mimosa claussenii var. megistophylla \N \N \N \N \N 108964 R.jimulcensis Ruellia Ruellia jimulcensis \N \N \N \N \N 108965 S.tremula Schefflera Schefflera tremula \N \N \N \N \N 108966 C.coctoris Commicarpus Commicarpus coctoris \N \N \N \N \N 108967 P.longiflora Pyrostria Pyrostria longiflora \N \N \N \N \N 108968 S.pacifica Sarcopygme Sarcopygme pacifica \N \N \N \N \N 108969 \N genus Melanocenchris \N \N \N \N \N 108970 L.crotalarioides Lupinus Lupinus crotalarioides \N \N \N \N \N 108971 G.leptantha Gilia Gilia leptantha \N \N \N \N \N 108972 \N genus Vitellariopsis \N \N \N \N \N 108973 \N genus Pedicellarum \N \N \N \N \N 108974 L.ovallei Leontochir Leontochir ovallei \N \N \N \N \N 108975 L.gonioptera Leea Leea gonioptera \N \N \N \N \N 108976 P.6216 Palmorchis Palmorchis sp. Salazar 6216 \N \N \N \N \N 108977 C.huberi Croton Croton huberi \N \N \N \N \N 108978 S.viscidula Scutellaria Scutellaria viscidula zhan mao huang qin \N \N \N \N 108979 L.solidagineum Liabum Liabum solidagineum \N \N \N \N \N 108980 E.undulata Euclea Euclea undulata \N \N \N \N \N 108981 A.procumbens Anisotome Anisotome procumbens \N \N \N \N \N 108982 M.pachyclados Mastixiodendron Mastixiodendron pachyclados \N \N \N \N \N 108983 P.longipes Polyalthia Polyalthia longipes \N \N \N \N \N 108984 C.BWvE-2008 Croton Croton sp. sect. Cascarilla BWvE-2008 \N \N \N \N \N 108985 L.nobilissimum Lilium Lilium nobilissimum \N \N \N \N \N 108986 C.involucratus Cyperus Cyperus involucratus \N \N \N \N \N 108987 P.ionocentra Prosthechea Prosthechea ionocentra \N \N \N \N \N 108988 \N subspecies Arachis paraguariensis subsp. capibarensis \N \N \N \N \N 108989 O.ciliatum Osteospermum Osteospermum ciliatum \N \N \N \N \N 108990 P.marcanoi Pereskia Pereskia marcanoi \N \N \N \N \N 108991 X.viridiramis Xerocladia Xerocladia viridiramis \N \N \N \N \N 108992 D.coriacea Dodonaea Dodonaea coriacea \N \N \N \N \N 108993 N.baeticus Narcissus Narcissus baeticus \N \N \N \N \N 108994 E.angulata Euphorbia Euphorbia angulata \N \N \N \N \N 108995 E.tenuiramis Eucalyptus Eucalyptus tenuiramis \N \N \N \N \N 108996 C.aurantiaca Curcuma Curcuma aurantiaca \N \N \N \N \N 108997 C.capitata Calathea Calathea capitata \N \N \N \N \N 108998 D.dyeriana Dipteronia Dipteronia dyeriana \N \N \N \N \N 108999 V.chilensis Vasconcellea Vasconcellea chilensis \N \N \N \N \N 109000 V.chilensis Valeriana Valeriana chilensis \N \N \N \N \N 109001 M.obovata Manilkara Manilkara obovata \N \N \N \N \N 109002 L.picta Luzula Luzula picta \N \N \N \N \N 109003 A.chinensis Acidosasa Acidosasa chinensis \N \N \N \N \N 109004 C.DRC-2004 Carmichaelia Carmichaelia sp. DRC-2004 \N \N \N \N \N 109005 \N varietas Metrosideros collina var. collina \N \N \N \N \N 109006 S.V19 Saintpaulia Saintpaulia sp. V19 \N \N \N \N \N 109007 S.allagophylla Sinningia Sinningia allagophylla \N \N \N \N \N 109008 P.gatesii Pachycereus Pachycereus gatesii \N \N \N \N \N 109009 C.DK-2009 Carapa Carapa sp. 10 DK-2009 \N \N \N \N \N 109010 \N varietas Alpinia stachyodes var. yangchunensis \N \N \N \N \N 109011 \N genus Armoracia \N \N \N \N \N 109012 M.brandegeei Mammillaria Mammillaria brandegeei \N \N \N \N \N 109013 C.verrucosa Capparis Capparis verrucosa \N \N \N \N \N 109014 V.raddeana Viola Viola raddeana \N \N \N \N \N 109015 C.macrocarpum Corispermum Corispermum macrocarpum \N \N \N \N \N 109016 P.sertulum Primula Primula sertulum \N \N \N \N \N 109017 C.296282 Carthamus Carthamus sp. PI 296282 \N \N \N \N \N 109018 F.viridescens Ferocactus Ferocactus viridescens \N \N \N \N \N 109019 C.BG-2008 Carex Carex aff. petitiana BG-2008 \N \N \N \N \N 109020 C.lanata Calceolaria Calceolaria lanata \N \N \N \N \N 109021 L.glycycarpa Leonia Leonia glycycarpa \N \N \N \N \N 109022 \N varietas Lysimachia japonica var. japonica \N \N \N \N \N 109023 \N genus Acantholimon \N \N \N \N \N 109024 M.asiatica Malus Malus asiatica hua hong \N \N \N \N 109025 A.stapfianum Aconitum Aconitum stapfianum \N \N \N \N \N 109026 R.lanceolata Reseda Reseda lanceolata \N \N \N \N \N 109027 L.conferta Lepechinia Lepechinia conferta \N \N \N \N \N 109028 \N subspecies Leptospermum polygalifolium subsp. tropicum \N \N \N \N \N 109029 C.payaquensis Croton Croton payaquensis \N \N \N \N \N 109030 T.deflexa Townsonia Townsonia deflexa \N \N \N \N \N 109031 D.mollissima Dalea Dalea mollissima \N \N \N \N \N 109032 R.hirsutus Rubus Rubus hirsutus \N \N \N \N \N 109033 G.candidus Gladiolus Gladiolus candidus \N \N \N \N \N 109034 \N genus Ormosolenia \N \N \N \N \N 109035 P.acuminata Protea Protea acuminata \N \N \N \N \N 109036 H.boveanus Hyoscyamus Hyoscyamus boveanus \N \N \N \N \N 109037 S.macgregorii Santalum Santalum macgregorii \N \N \N \N \N 109038 \N genus Lilaeopsis \N \N \N \N \N 109039 V.leandrii Vitex Vitex leandrii \N \N \N \N \N 109040 A.tequilana Acaciella Acaciella tequilana \N \N \N \N \N 109041 P.eurhyncha Pertusadina Pertusadina eurhyncha \N \N \N \N \N 109042 R.columnifera Ratibida Ratibida columnifera \N \N \N \N \N 109043 M.JMB-2009a Mentzelia Mentzelia sp. JMB-2009a \N \N \N \N \N 109044 A.scopulorum Astragalus Astragalus scopulorum \N \N \N \N \N 109045 T.tonkinense Tetrastigma Tetrastigma tonkinense \N \N \N \N \N 109046 P.990 Phyllarthron Phyllarthron sp. Zjhra 990 \N \N \N \N \N 109047 D.burkei Drimiopsis Drimiopsis burkei \N \N \N \N \N 109048 C.oleiferum Canarium Canarium oleiferum \N \N \N \N \N 109049 S.lasiocarpa Spiraea Spiraea lasiocarpa \N \N \N \N \N 109050 A.roxburghiana Atalantia Atalantia roxburghiana \N \N \N \N \N 109051 R.chasei Rodriguezia Rodriguezia chasei \N \N \N \N \N 109052 L.lanceolatus Leucopogon Leucopogon lanceolatus \N \N \N \N \N 109053 M.jaliscana Mammillaria Mammillaria jaliscana \N \N \N \N \N 109054 O.baccatus Ochradenus Ochradenus baccatus \N \N \N \N \N 109055 L.pedunculatus Lasianthus Lasianthus pedunculatus \N \N \N \N \N 109056 P.cultivar Petunia Petunia hybrid cultivar hybrid petunia \N \N \N \N 109057 O.fabifolia Oxalis Oxalis fabifolia \N \N \N \N \N 109058 D.humbertii Diegodendron Diegodendron humbertii \N \N \N \N \N 109059 \N varietas Lessingia lemmonii var. lemmonii \N \N \N \N \N 109060 B.orphanidis Biebersteinia Biebersteinia orphanidis \N \N \N \N \N 109061 A.troodi Alyssum Alyssum troodi \N \N \N \N \N 109062 \N genus Isidorea \N \N \N \N \N 109063 V.ollivieri Vagaria Vagaria ollivieri \N \N \N \N \N 109064 C.jamaicensis Croton Croton jamaicensis \N \N \N \N \N 109065 Z.laevigata Zieria Zieria laevigata \N \N \N \N \N 109066 \N genus Crataegus hawthorn \N \N \N \N 109067 V.virgatum Verbascum Verbascum virgatum \N \N \N \N \N 109068 C.6115 Cyclopogon Cyclopogon aff. comosus Salazar et al. 6115 \N \N \N \N \N 109069 F.mairei Fumaria Fumaria mairei \N \N \N \N \N 109070 P.paniculata Polystachya Polystachya paniculata \N \N \N \N \N 109071 \N genus Garnieria \N \N \N \N \N 109072 O.mexicana Ocampoa Ocampoa mexicana \N \N \N \N \N 109073 C.typhina Carex Carex typhina \N \N \N \N \N 109074 D.gonatopodus Dendropanax Dendropanax gonatopodus \N \N \N \N \N 109075 C.citruspark01 Citrus Citrus sp. citruspark01 \N \N \N \N \N 109076 C.14-1 Cornus Cornus cf. canadensis Xiang and Fan 14-1 \N \N \N \N \N 109077 \N subspecies Crepis modocensis subsp. rostrata \N \N \N \N \N 109078 P.stuebelii Pappobolus Pappobolus stuebelii \N \N \N \N \N 109079 \N varietas Dicerandra linearifolia var. linearifolia \N \N \N \N \N 109080 \N genus Chaboissaea \N \N \N \N \N 109081 M.MitX Mitella Mitella sp. MitX \N \N \N \N \N 109082 P.sarmaticus Potamogeton Potamogeton sarmaticus \N \N \N \N \N 109083 I.MVSP-2007 Ipomoea Ipomoea sp. MVSP-2007 \N \N \N \N \N 109084 E.distichophylla Eurya Eurya distichophylla \N \N \N \N \N 109085 P.poetica Primula Primula poetica \N \N \N \N \N 109086 P.moluccana Passiflora Passiflora moluccana \N \N \N \N \N 109087 F.obliqua Fraxinus Fraxinus obliqua \N \N \N \N \N 109088 C.rigida Chusquea Chusquea rigida \N \N \N \N \N 109089 V.nanlingensis Viola Viola nanlingensis \N \N \N \N \N 109090 \N genus Calamus \N \N \N \N \N 109091 \N subspecies Arctostaphylos pringlei subsp. pringlei \N \N \N \N \N 109092 M.batesii Mostuea Mostuea batesii \N \N \N \N \N 109093 \N genus Laetia \N \N \N \N \N 109094 P.oppositifolium Phalacrocarpum Phalacrocarpum oppositifolium \N \N \N \N \N 109095 H.bilitonensis Hopea Hopea bilitonensis \N \N \N \N \N 109096 R.glauca Rhaphidophora Rhaphidophora glauca \N \N \N \N \N 109097 C.wardii Cassiope Cassiope wardii \N \N \N \N \N 109098 A.dissecta Ainsliaea Ainsliaea dissecta \N \N \N \N \N 109099 A.littoralis Aeluropus Aeluropus littoralis \N \N \N \N \N 109100 M.fusca Malus Malus fusca Oregon crabapple \N \N \N \N 109101 D.chouxii Doratoxylon Doratoxylon chouxii \N \N \N \N \N 109102 M.perennis Matthiola Matthiola perennis \N \N \N \N \N 109103 L.leiboldi Leochilus Leochilus leiboldi \N \N \N \N \N 109104 \N subspecies Jasminum simplicifolium subsp. suavissimum \N \N \N \N \N 109105 L.calolepis Lithocarpus Lithocarpus calolepis \N \N \N \N \N 109106 D.14813 Diplodium Diplodium aff. longipetalum DL Jones 14813 \N \N \N \N \N 109107 N.borneensis Neuwiedia Neuwiedia borneensis \N \N \N \N \N 109108 P.laevigata Polymnia Polymnia laevigata \N \N \N \N \N 109109 S.seemannioides Stevia Stevia seemannioides \N \N \N \N \N 109110 \N genus Hedychium \N \N \N \N \N 109111 M.carnea Miconia Miconia carnea \N \N \N \N \N 109112 F.suffruticosa Fibigia Fibigia suffruticosa \N \N \N \N \N 109113 H.vincentina Hyacinthoides Hyacinthoides vincentina \N \N \N \N \N 109114 H.lucasii Haloragodendron Haloragodendron lucasii \N \N \N \N \N 109115 F.glabrata Ficus Ficus glabrata \N \N \N \N \N 109116 \N tribe Bromeae \N \N \N \N \N 109117 C.erecta Commelina Commelina erecta \N \N \N \N \N 109118 S.lanceolata Spathicarpa Spathicarpa lanceolata \N \N \N \N \N 109119 S.pentandrum Scleropyrum Scleropyrum pentandrum \N \N \N \N \N 109120 \N genus Acomastylis \N \N \N \N \N 109121 C.tuberosus Calopogon Calopogon tuberosus \N \N \N \N \N 109122 A.chinense Asarum Asarum chinense \N \N \N \N \N 109123 C.06nia088 unclassified Cucurbitaceae Cucurbitaceae sp. 06nia088 \N \N \N \N \N 109124 L.laevigatum Leucophyllum Leucophyllum laevigatum \N \N \N \N \N 109125 \N genus Melastoma \N \N \N \N \N 109126 \N subspecies Convolvulus sabatius subsp. sabatius \N \N \N \N \N 109127 C.BWvE-2008 Croton Croton aff. sphaerocarpus BWvE-2008 \N \N \N \N \N 109128 \N genus Funtumia \N \N \N \N \N 109129 E.asperatus Enneapogon Enneapogon asperatus \N \N \N \N \N 109130 A.victorialis Allium Allium victorialis \N \N \N \N \N 109131 E.verticillatum Eutrema Eutrema verticillatum \N \N \N \N \N 109132 P.orientalis Polyscias Polyscias orientalis \N \N \N \N \N 109133 R.hidakanum Rhododendron Rhododendron hidakanum \N \N \N \N \N 109134 \N genus Cleistochloa \N \N \N \N \N 109135 \N genus Peripterygia \N \N \N \N \N 109136 \N genus Euonymus \N \N \N \N \N 109137 M.insularis Malacothrix Malacothrix insularis \N \N \N \N \N 109138 T.laui Turbinicarpus Turbinicarpus laui \N \N \N \N \N 109139 C.nervosus Chloranthus Chloranthus nervosus \N \N \N \N \N 109140 A.astrantiifolium Acronema Acronema astrantiifolium \N \N \N \N \N 109141 P.exura Passiflora Passiflora exura \N \N \N \N \N 109142 C.macrocarpa Coffea Coffea macrocarpa \N \N \N \N \N 109143 S.pterophorus Senecio Senecio pterophorus \N \N \N \N \N 109144 \N genus Cespedesia \N \N \N \N \N 109145 H.popovii Haplophyllum Haplophyllum popovii \N \N \N \N \N 109146 \N subtribe Eriinae \N \N \N \N \N 109147 H.nitida Hexalectris Hexalectris nitida \N \N \N \N \N 109148 \N varietas Lotus argophyllus var. adsurgens \N \N \N \N \N 109149 I.alexeenkoi Iris Iris alexeenkoi \N \N \N \N \N 109150 \N subspecies Hordeum murinum subsp. murinum \N \N \N \N \N 109151 G.glauca Galphimia Galphimia glauca \N \N \N \N \N 109152 E.karatavicus Echinops Echinops karatavicus \N \N \N \N \N 109153 P.tasmanica Plantago Plantago tasmanica \N \N \N \N \N 109154 M.murex Masdevallia Masdevallia murex \N \N \N \N \N 109155 R.bifida Rhodophiala Rhodophiala bifida \N \N \N \N \N 109156 O.nortieri Oxalis Oxalis nortieri \N \N \N \N \N 109157 O.glabrum Otospermum Otospermum glabrum \N \N \N \N \N 109158 \N genus Nanothamnus \N \N \N \N \N 109159 M.ringens Marianthus Marianthus ringens \N \N \N \N \N 109160 R.mattfeldiana Rauvolfia Rauvolfia mattfeldiana \N \N \N \N \N 109161 \N genus Falkia \N \N \N \N \N 109162 \N genus Saundersia \N \N \N \N \N 109163 D.pinnata Dendroseris Dendroseris pinnata \N \N \N \N \N 109164 E.elderi Erodiophyllum Erodiophyllum elderi \N \N \N \N \N 109165 R.australis Raoulia Raoulia australis \N \N \N \N \N 109166 M.schweinfurthii Macaranga Macaranga schweinfurthii \N \N \N \N \N 109167 \N genus Petrophytum \N \N \N \N \N 109168 O.biennis Oenothera Oenothera biennis German evening primrose \N \N \N \N 109169 \N genus Berteroa \N \N \N \N \N 109170 P.echinulata Paronychia Paronychia echinulata \N \N \N \N \N 109171 E.pallida Echinacea Echinacea paradoxa x Echinacea pallida \N \N \N \N \N 109172 A.coarctata Achillea Achillea coarctata \N \N \N \N \N 109173 S.11 Symplocos Symplocos sp. 11 \N \N \N \N \N 109174 D.gracile Delphinium Delphinium gracile \N \N \N \N \N 109175 P.SH-2010 Pittosporum Pittosporum sp. SH-2010 \N \N \N \N \N 109176 \N genus Potamophila \N \N \N \N \N 109177 S.membranaceus Scadoxus Scadoxus membranaceus \N \N \N \N \N 109178 \N genus Dasylirion sotols \N \N \N \N 109179 \N subspecies Allium rosenbachianum subsp. kwakense \N \N \N \N \N 109180 \N varietas Chamaecrista absus var. absus \N \N \N \N \N 109181 R.picta Rudolfiella Rudolfiella picta \N \N \N \N \N 109182 V.alpina Veronica Veronica alpina \N \N \N \N \N 109183 A.divaricatum Aichryson Aichryson divaricatum \N \N \N \N \N 109184 C.2 Charybdis Charybdis sp. 2 \N \N \N \N \N 109185 L.communis Lindera Lindera communis \N \N \N \N \N 109186 F.padana Ficus Ficus padana \N \N \N \N \N 109187 C.volubilis Cissampelopsis Cissampelopsis volubilis \N \N \N \N \N 109188 E.durus Elymus Elymus durus \N \N \N \N \N 109189 A.hookeri Anaphalioides Anaphalioides hookeri \N \N \N \N \N 109190 \N varietas Citrus macroptera var. annamensis \N \N \N \N \N 109191 C.fendleri Ceanothus Ceanothus fendleri \N \N \N \N \N 109192 \N genus Amphipappus \N \N \N \N \N 109193 \N subspecies Neotinea ustulata subsp. ustulata \N \N \N \N \N 109194 \N varietas Vigna gracilis var. gracilis \N \N \N \N \N 109195 A.fruticosa Arracacia Arracacia fruticosa \N \N \N \N \N 109196 P.johannensis Pleurothallis Pleurothallis johannensis \N \N \N \N \N 109197 E.lomelii Euphorbia Euphorbia lomelii \N \N \N \N \N 109198 T.JK3600(7) unclassified Taraxacum Taraxacum (sect. Alpestria/Fontana) sp. JK3600(7) \N \N \N \N \N 109199 T.corrickiae Tietkensia Tietkensia corrickiae \N \N \N \N \N 109201 \N varietas Saussurea polycolea var. acutisquama \N \N \N \N \N 109202 S.juncea Solidago Solidago juncea \N \N \N \N \N 109203 C.shanxiense Cypripedium Cypripedium shanxiense \N \N \N \N \N 109204 \N subtribe Arethusinae \N \N \N \N \N 109205 S.angulata Scaevola Scaevola angulata \N \N \N \N \N 109206 I.rhypara Ivesia Ivesia rhypara \N \N \N \N \N 109207 O.altissimum Oncidium Oncidium altissimum \N \N \N \N \N 109208 L.tupa Lobelia Lobelia tupa \N \N \N \N \N 109209 C.mackenii Cyrtanthus Cyrtanthus mackenii \N \N \N \N \N 109210 P.flabellifolium Pelargonium Pelargonium flabellifolium \N \N \N \N \N 109211 C.durandii Charadranaetes Charadranaetes durandii \N \N \N \N \N 109212 P.montana Pterostylis Pterostylis montana \N \N \N \N \N 109213 \N genus Murdannia \N \N \N \N \N 109214 S.ortunoi Sonchus Sonchus ortunoi \N \N \N \N \N 109215 G.bancanus Gonystylus Gonystylus bancanus \N \N \N \N \N 109216 \N varietas Lithops hookeri var. hookeri \N \N \N \N \N 109217 \N genus Anchomanes \N \N \N \N \N 109218 P.comosa Polygala Polygala comosa \N \N \N \N \N 109219 S.acmophylla Salix Salix acmophylla \N \N \N \N \N 109220 \N genus Sarcopera \N \N \N \N \N 109221 B.9033 Bossiaea Bossiaea sp. Crisp 9033 \N \N \N \N \N 109222 Z.apiculatum Zygophyllum Zygophyllum apiculatum \N \N \N \N \N 109223 S.HCO-2006 Scirpus Scirpus sp. HCO-2006 \N \N \N \N \N 109224 A.aconiti Aconitella Aconitella aconiti \N \N \N \N \N 109225 C.attenuatus Codonocarpus Codonocarpus attenuatus \N \N \N \N \N 109226 M.velutiniflora Macaranga Macaranga velutiniflora \N \N \N \N \N 109227 R.japonicus Rumex Rumex japonicus \N \N \N \N \N 109228 V.microcarpum Vaccinium Vaccinium microcarpum \N \N \N \N \N 109229 \N subspecies Carex jackiana subsp. parciflora \N \N \N \N \N 109230 T.suzukii Tricyrtis Tricyrtis suzukii \N \N \N \N \N 109231 H.kewensis Haworthia Haworthia kewensis \N \N \N \N \N 109232 \N subspecies Primula veris subsp. veris \N \N \N \N \N 109233 P.foliosus Potamogeton Potamogeton foliosus \N \N \N \N \N 109234 T.warmingianum Tropaeolum Tropaeolum warmingianum \N \N \N \N \N 109235 C.incertus Cenchrus Cenchrus incertus coast sandbur \N \N \N \N 109236 P.luzuloides Polygonum Polygonum luzuloides \N \N \N \N \N 109237 T.jk3752/7 unclassified Taraxacum Taraxacum (sect. Erythrocarpa) sp. jk3752/7 \N \N \N \N \N 109238 S.villosus Sicyos Sicyos villosus \N \N \N \N \N 109239 B.jipijapensis Brassia Brassia jipijapensis \N \N \N \N \N 109240 \N genus Mathiasella \N \N \N \N \N 109241 \N genus Glehnia \N \N \N \N \N 109242 \N genus Brunsvigia \N \N \N \N \N 109243 S.chinensis Salacia Salacia chinensis \N \N \N \N \N 109244 R.mexicana Recchia Recchia mexicana \N \N \N \N \N 109245 T.viride Trillium Trillium viride green trillium \N \N \N \N 109246 H.DES-2011 Hydrangea Hydrangea sp. DES-2011 \N \N \N \N \N 109247 W.dolichophylla Wenzelia Wenzelia dolichophylla \N \N \N \N \N 109248 \N varietas Mimosa nossibiensis var. nossibiensis \N \N \N \N \N 109249 G.inandensis Gladiolus Gladiolus inandensis \N \N \N \N \N 109250 \N varietas Amsinckia spectabilis var. microcarpa \N \N \N \N \N 109251 M.505535 Melicytus Melicytus aff. obovatus CHR 505535 \N \N \N \N \N 109252 T.pachypoda Talinella Talinella cf. pachypoda \N \N \N \N \N 109253 E.parviporandra Erica Erica parviporandra \N \N \N \N \N 109254 A.christensonianum Ascocentrum Ascocentrum christensonianum \N \N \N \N \N 109255 D.pentandrum Disterigma Disterigma pentandrum \N \N \N \N \N 109256 C.rigida Centaurea Centaurea rigida \N \N \N \N \N 109257 O.cleefii Oreobolus Oreobolus cleefii \N \N \N \N \N 109258 D.dolichostachyum Delphinium Delphinium dolichostachyum \N \N \N \N \N 109259 \N varietas Genista sericea var. sericea \N \N \N \N \N 109260 E.cochinchinense Epigynum Epigynum cochinchinense \N \N \N \N \N 109261 F.pudica Fritillaria Fritillaria pudica yellow fritillary \N \N \N \N 109262 G.amoena Gaylussacia Gaylussacia amoena \N \N \N \N \N 109263 S.longepedunculata Securidaca Securidaca longepedunculata \N \N \N \N \N 109264 \N genus Polyotidium \N \N \N \N \N 109265 P.macrophylla Psychotria Psychotria macrophylla \N \N \N \N \N 109266 C.swinglei Coelocarpum Coelocarpum swinglei \N \N \N \N \N 109267 M.chrysanthus Mimetes Mimetes chrysanthus \N \N \N \N \N 109268 Z.wigginsii Zeltnera Zeltnera wigginsii \N \N \N \N \N 109269 C.calanthoides Calanthe Calanthe calanthoides \N \N \N \N \N 109270 O.nana Orobanche Orobanche nana \N \N \N \N \N 109271 A.oblata Apterosperma Apterosperma oblata \N \N \N \N \N 109272 R.salicifolium Rhododendron Rhododendron salicifolium \N \N \N \N \N 109273 C.foemina Cornus Cornus foemina \N \N \N \N \N 109274 C.terminale Ceuthostoma Ceuthostoma terminale \N \N \N \N \N 109275 L.esiangkara Limacia Limacia esiangkara \N \N \N \N \N 109276 M.ophioglossa Masdevallia Masdevallia ophioglossa \N \N \N \N \N 109277 C.hillmanii Cleomella Cleomella hillmanii \N \N \N \N \N 109278 P.hirsuta Pedicularis Pedicularis hirsuta \N \N \N \N \N 109279 A.ptarmicoides Achillea Achillea ptarmicoides \N \N \N \N \N 109280 S.sungpanensis Sinosenecio Sinosenecio sungpanensis \N \N \N \N \N 109281 S.holoschoenus Scirpoides Scirpoides holoschoenus \N \N \N \N \N 109282 \N genus Trichopilia \N \N \N \N \N 109283 \N genus Gunniopsis \N \N \N \N \N 109284 B.bosmaniae Brunsvigia Brunsvigia bosmaniae \N \N \N \N \N 109285 D.vulgaris Dobinea Dobinea vulgaris \N \N \N \N \N 109286 \N genus Vantanea \N \N \N \N \N 109287 P.guangxiensis Pseudochirita Pseudochirita guangxiensis \N \N \N \N \N 109288 \N genus Mackinlaya \N \N \N \N \N 109289 S.lagascaeformis Simsia Simsia lagascaeformis \N \N \N \N \N 109290 D.catholica Diplotaxis Diplotaxis catholica \N \N \N \N \N 109291 \N tribe Oenantheae \N \N \N \N \N 109292 E.cedrorum Euphorbia Euphorbia cedrorum \N \N \N \N \N 109293 L.discolor Lannea Lannea discolor \N \N \N \N \N 109294 P.arabica Pulicaria Pulicaria arabica \N \N \N \N \N 109295 M.dichotoma Manihot Manihot dichotoma \N \N \N \N \N 109296 P.macrochlamys Pitcairnia Pitcairnia macrochlamys \N \N \N \N \N 109297 A.bargusinensis Artemisia Artemisia bargusinensis \N \N \N \N \N 109298 G.liliaceus Gladiolus Gladiolus liliaceus \N \N \N \N \N 109299 O.colensoi Olearia Olearia colensoi \N \N \N \N \N 109300 G.scabra Graderia Graderia scabra \N \N \N \N \N 109301 V.arecina Veitchia Veitchia arecina \N \N \N \N \N 109302 B.JT-2006-1 Boesenbergia Boesenbergia sp. JT-2006-1 \N \N \N \N \N 109303 P.zonale Pelargonium Pelargonium zonale \N \N \N \N \N 109304 L.centralis Licuala Licuala centralis \N \N \N \N \N 109305 \N subspecies Pistacia terebinthus subsp. palaestina \N \N \N \N \N 109306 P.tillandsioides Phymatidium Phymatidium tillandsioides \N \N \N \N \N 109307 P.appendiculatus Pachycarpus Pachycarpus appendiculatus \N \N \N \N \N 109308 M.hookeri Manglietia Manglietia hookeri \N \N \N \N \N 109309 C.erectisepala Clematis Clematis erectisepala \N \N \N \N \N 109310 \N genus Schismatoglottis \N \N \N \N \N 109311 P.pruinosa Populus Populus pruinosa hui hu yang \N \N \N \N 109312 R.rubescens Rhodamnia Rhodamnia rubescens scrub turpentine \N \N \N \N 109313 D.9194 Dicliptera Dicliptera sp. Daniel 9194 \N \N \N \N \N 109314 L.jalicensis Lycianthes Lycianthes jalicensis \N \N \N \N \N 109315 O.scalpta Ossaea Ossaea scalpta \N \N \N \N \N 109316 D.fragrantissima Diuris Diuris fragrantissima \N \N \N \N \N 109317 S.simplex Sopubia Sopubia simplex \N \N \N \N \N 109318 V.edulis Valeriana Valeriana edulis tobacco root \N \N \N \N 109319 G.stenopetala Genista Genista stenopetala \N \N \N \N \N 109320 P.oxyphyllus Potamogeton Potamogeton oxyphyllus \N \N \N \N \N 109321 D.crispulum Delphinium Delphinium crispulum \N \N \N \N \N 109322 S.basilata Smilax Smilax basilata \N \N \N \N \N 109323 A.hydra Afrothismia Afrothismia hydra \N \N \N \N \N 109324 L.longituba Lycoris Lycoris longituba \N \N \N \N \N 109325 S.thorelii Syzygium Syzygium thorelii \N \N \N \N \N 109326 A.siebenlistii Afrocanthium Afrocanthium siebenlistii \N \N \N \N \N 109327 C.pachypodus Croton Croton pachypodus \N \N \N \N \N 109328 B.pulchra Battandiera Battandiera pulchra \N \N \N \N \N 109329 M.Kew23330 Mandragora Mandragora sp. Kew23330 \N \N \N \N \N 109330 V.veitchii Viburnum Viburnum veitchii \N \N \N \N \N 109331 \N genus Chiloschista \N \N \N \N \N 109332 B.jamaicensis Brunfelsia Brunfelsia jamaicensis \N \N \N \N \N 109333 P.mairei Paeonia Paeonia mairei \N \N \N \N \N 109334 T.thalii Trifolium Trifolium thalii \N \N \N \N \N 109335 A.cylindrica Anemone Anemone cylindrica \N \N \N \N \N 109336 W.madagascariensis Waltheria Waltheria madagascariensis \N \N \N \N \N 109337 \N genus Corymbium \N \N \N \N \N 109338 H.serratum Hymenostephium Hymenostephium serratum \N \N \N \N \N 109339 S.buesii Solanum Solanum buesii \N \N \N \N \N 109340 H.distichophyllum Haemodorum Haemodorum distichophyllum \N \N \N \N \N 109341 \N genus Ascarina \N \N \N \N \N 109342 E.jugicola Erica Erica jugicola \N \N \N \N \N 109343 C.dolichosceles Cyananthus Cyananthus dolichosceles \N \N \N \N \N 109344 D.linearis Dyschoriste Dyschoriste linearis \N \N \N \N \N 109345 A.caespitosa Abrotanella Abrotanella caespitosa \N \N \N \N \N 109346 \N genus Arcoa \N \N \N \N \N 109347 C.hyacinthoides Cyanella Cyanella hyacinthoides \N \N \N \N \N 109348 M.stolonifera Myosotis Myosotis stolonifera \N \N \N \N \N 109349 M.stipulacea Myrmeconauclea Myrmeconauclea stipulacea \N \N \N \N \N 109350 S.frondosa Sterculia Sterculia frondosa \N \N \N \N \N 109351 A.lauterbachiana Alocasia Alocasia lauterbachiana \N \N \N \N \N 109352 I.jurineifolius Iranecio Iranecio jurineifolius \N \N \N \N \N 109353 H.lemmonii Hymenoxys Hymenoxys lemmonii \N \N \N \N \N 109354 C.capensis Choritaenia Choritaenia capensis \N \N \N \N \N 109355 C.epigeios Calamagrostis Calamagrostis epigeios \N \N \N \N \N 109356 \N genus Thelepogon \N \N \N \N \N 109357 M.trichogynum Megaphrynium Megaphrynium trichogynum \N \N \N \N \N 109358 \N genus Comaclinium \N \N \N \N \N 109359 W.desmantha Wahlenbergia Wahlenbergia desmantha \N \N \N \N \N 109360 X.hienghenensis Xanthomyrtus Xanthomyrtus hienghenensis \N \N \N \N \N 109361 S.cordata Synthyris Synthyris cordata \N \N \N \N \N 109362 N.nicholasii Noahdendron Noahdendron nicholasii \N \N \N \N \N 109363 S.laurentia Solenopsis Solenopsis laurentia \N \N \N \N \N 109364 E.plebeia Euphorbia Euphorbia plebeia \N \N \N \N \N 109365 V.renifolia Viola Viola renifolia \N \N \N \N \N 109366 \N genus Antrocaryon \N \N \N \N \N 109367 A.dumosa Adinandra Adinandra dumosa \N \N \N \N \N 109368 V.cundinamarcensis Vasconcellea Vasconcellea cundinamarcensis mountain papaya \N \N \N \N 109369 A.kangdingensis Angelica Angelica kangdingensis \N \N \N \N \N 109370 C.lanea Chionochloa Chionochloa lanea \N \N \N \N \N 109371 I.hamata Impatiens Impatiens hamata \N \N \N \N \N 109372 \N subfamily Mutisioideae \N \N \N \N \N 109373 O.ornithopus Oxalis Oxalis ornithopus \N \N \N \N \N 109374 C.patens Chusquea Chusquea patens \N \N \N \N \N 109375 H.greenii Hedychium Hedychium greenii \N \N \N \N \N 109376 E.propinqua Excentradenia Excentradenia propinqua \N \N \N \N \N 109377 P.speciosum Pleurophyllum Pleurophyllum speciosum \N \N \N \N \N 109378 C.obispoensis Calochortus Calochortus obispoensis \N \N \N \N \N 109379 E.boliviensis Ephedranthus Ephedranthus boliviensis \N \N \N \N \N 109380 O.francei Ochrothallus Ochrothallus francei \N \N \N \N \N 109381 S.hossei Strobilanthes Strobilanthes hossei \N \N \N \N \N 109382 E.lyratus Enarthrocarpus Enarthrocarpus lyratus \N \N \N \N \N 109383 P.dryadifolia Primula Primula dryadifolia \N \N \N \N \N 109384 B.cochlearioides Bunias Bunias cochlearioides \N \N \N \N \N 109385 P.longifolia Pennellia Pennellia longifolia \N \N \N \N \N 109386 \N subspecies Hippophae rhamnoides subsp. wolongensis \N \N \N \N \N 109387 H.versicolor Helictotrichon Helictotrichon versicolor \N \N \N \N \N 109388 P.fasciculata Prunus Prunus fasciculata desert almond \N \N \N \N 109389 \N varietas Allium fimbriatum var. purdyi \N \N \N \N \N 109390 A.montana Arenaria Arenaria montana \N \N \N \N \N 109391 T.giganteum Typhonium Typhonium giganteum \N \N \N \N \N 109392 B.9667 Blumea Blumea cf. canalensis Bernardi 9667 \N \N \N \N \N 109393 C.BAW-2010b Commersonia Commersonia sp. BAW-2010b \N \N \N \N \N 109394 S.longipes Sophronitis Sophronitis longipes \N \N \N \N \N 109395 \N Solanum Solanum goniocalyx \N \N \N \N \N 109396 \N Nicotiana Nicotiana acuminata var. multiflora \N \N \N \N \N \. -- -- Data for Name: organism_dbxref; Type: TABLE DATA; Schema: public; Owner: postgres -- COPY public.organism_dbxref (organism_dbxref_id, organism_id, dbxref_id) FROM stdin; \. -- -- Data for Name: organism_relationship; Type: TABLE DATA; Schema: public; Owner: postgres -- COPY public.organism_relationship (organism_relationship_id, subject_id, object_id, type_id) FROM stdin; \. -- -- Data for Name: organismpath; Type: TABLE DATA; Schema: public; Owner: postgres -- COPY public.organismpath (organismpath_id, subject_id, object_id, type_id, pathdistance) FROM stdin; \. -- -- Data for Name: organismprop; Type: TABLE DATA; Schema: public; Owner: postgres -- COPY public.organismprop (organismprop_id, organism_id, type_id, value, rank) FROM stdin; \. -- -- Data for Name: phendesc; Type: TABLE DATA; Schema: public; Owner: postgres -- COPY public.phendesc (phendesc_id, genotype_id, environment_id, description, type_id, pub_id) FROM stdin; \. -- -- Data for Name: phenotype; Type: TABLE DATA; Schema: public; Owner: postgres -- COPY public.phenotype (phenotype_id, uniquename, observable_id, attr_id, value, cvalue_id, assay_id, individual_id, sp_person_id, name, create_date, collect_date, operator) FROM stdin; \. -- -- Data for Name: phenotype_comparison; Type: TABLE DATA; Schema: public; Owner: postgres -- COPY public.phenotype_comparison (phenotype_comparison_id, genotype1_id, environment1_id, genotype2_id, environment2_id, phenotype1_id, phenotype2_id, pub_id, organism_id) FROM stdin; \. -- -- Data for Name: phenotype_comparison_cvterm; Type: TABLE DATA; Schema: public; Owner: postgres -- COPY public.phenotype_comparison_cvterm (phenotype_comparison_cvterm_id, phenotype_comparison_id, cvterm_id, pub_id, rank) FROM stdin; \. -- -- Data for Name: phenotype_cvterm; Type: TABLE DATA; Schema: public; Owner: postgres -- COPY public.phenotype_cvterm (phenotype_cvterm_id, phenotype_id, cvterm_id, rank) FROM stdin; \. -- -- Data for Name: phenotypeprop; Type: TABLE DATA; Schema: public; Owner: postgres -- COPY public.phenotypeprop (phenotypeprop_id, phenotype_id, type_id, value, rank) FROM stdin; \. -- -- Data for Name: phenstatement; Type: TABLE DATA; Schema: public; Owner: postgres -- COPY public.phenstatement (phenstatement_id, genotype_id, environment_id, phenotype_id, type_id, pub_id) FROM stdin; \. -- -- Data for Name: phylonode; Type: TABLE DATA; Schema: public; Owner: postgres -- COPY public.phylonode (phylonode_id, phylotree_id, parent_phylonode_id, left_idx, right_idx, type_id, feature_id, label, distance) FROM stdin; \. -- -- Data for Name: phylonode_dbxref; Type: TABLE DATA; Schema: public; Owner: postgres -- COPY public.phylonode_dbxref (phylonode_dbxref_id, phylonode_id, dbxref_id) FROM stdin; \. -- -- Data for Name: phylonode_organism; Type: TABLE DATA; Schema: public; Owner: postgres -- COPY public.phylonode_organism (phylonode_organism_id, phylonode_id, organism_id) FROM stdin; \. -- -- Data for Name: phylonode_pub; Type: TABLE DATA; Schema: public; Owner: postgres -- COPY public.phylonode_pub (phylonode_pub_id, phylonode_id, pub_id) FROM stdin; \. -- -- Data for Name: phylonode_relationship; Type: TABLE DATA; Schema: public; Owner: postgres -- COPY public.phylonode_relationship (phylonode_relationship_id, subject_id, object_id, type_id, rank, phylotree_id) FROM stdin; \. -- -- Data for Name: phylonodeprop; Type: TABLE DATA; Schema: public; Owner: postgres -- COPY public.phylonodeprop (phylonodeprop_id, phylonode_id, type_id, value, rank) FROM stdin; \. -- -- Data for Name: phylotree; Type: TABLE DATA; Schema: public; Owner: postgres -- COPY public.phylotree (phylotree_id, dbxref_id, name, type_id, analysis_id, comment) FROM stdin; \. -- -- Data for Name: phylotree_pub; Type: TABLE DATA; Schema: public; Owner: postgres -- COPY public.phylotree_pub (phylotree_pub_id, phylotree_id, pub_id) FROM stdin; \. -- -- Data for Name: project; Type: TABLE DATA; Schema: public; Owner: postgres -- COPY public.project (project_id, name, description, create_date) FROM stdin; 166 Breedbase Breedbase Test Program 2020-02-21 14:36:58.694904 \. -- -- Data for Name: project_contact; Type: TABLE DATA; Schema: public; Owner: postgres -- COPY public.project_contact (project_contact_id, project_id, contact_id) FROM stdin; \. -- -- Data for Name: project_pub; Type: TABLE DATA; Schema: public; Owner: postgres -- COPY public.project_pub (project_pub_id, project_id, pub_id) FROM stdin; \. -- -- Data for Name: project_relationship; Type: TABLE DATA; Schema: public; Owner: postgres -- COPY public.project_relationship (project_relationship_id, subject_project_id, object_project_id, type_id, create_date) FROM stdin; \. -- -- Data for Name: projectprop; Type: TABLE DATA; Schema: public; Owner: postgres -- COPY public.projectprop (projectprop_id, project_id, type_id, value, rank) FROM stdin; 181 166 76440 \N 0 \. -- -- Data for Name: pub; Type: TABLE DATA; Schema: public; Owner: postgres -- COPY public.pub (pub_id, title, volumetitle, volume, series_name, issue, pyear, pages, miniref, uniquename, type_id, is_obsolete, publisher, pubplace, title_tsvector) FROM stdin; 2 Test title for test publication \N \N \N \N 2015 \N \N Test title for test publication 76485 f \N \N 'public':5 'test':1,4 'titl':2 \. -- -- Data for Name: pub_dbxref; Type: TABLE DATA; Schema: public; Owner: postgres -- COPY public.pub_dbxref (pub_dbxref_id, pub_id, dbxref_id, is_current) FROM stdin; 1 2 209383 t 2 2 209384 t \. -- -- Data for Name: pub_relationship; Type: TABLE DATA; Schema: public; Owner: postgres -- COPY public.pub_relationship (pub_relationship_id, subject_id, object_id, type_id) FROM stdin; \. -- -- Data for Name: pubabstract; Type: TABLE DATA; Schema: public; Owner: postgres -- COPY public.pubabstract (pubabstract_id, pub_id, abstract, abstract_tsvector) FROM stdin; \. -- -- Data for Name: pubauthor; Type: TABLE DATA; Schema: public; Owner: postgres -- COPY public.pubauthor (pubauthor_id, pub_id, rank, editor, surname, givennames, suffix) FROM stdin; \. -- -- Data for Name: pubprop; Type: TABLE DATA; Schema: public; Owner: postgres -- COPY public.pubprop (pubprop_id, pub_id, type_id, value, rank) FROM stdin; \. -- -- Data for Name: resource_file; Type: TABLE DATA; Schema: public; Owner: postgres -- COPY public.resource_file (resource_file_id, name, expression) FROM stdin; \. -- -- Data for Name: signalp; Type: TABLE DATA; Schema: public; Owner: postgres -- COPY public.signalp (signalp_id, cds_id, nn_cmax, nn_cpos, nn_cd, nn_ymax, nn_ypos, nn_yd, nn_smax, nn_spos, nn_sd, nn_smean, nn_smeand, nn_score, nn_d, hmm_type, hmm_cmax, hmm_cpos, hmm_cd, hmm_sprob, hmm_d) FROM stdin; \. -- -- Data for Name: stock; Type: TABLE DATA; Schema: public; Owner: postgres -- COPY public.stock (stock_id, dbxref_id, organism_id, name, uniquename, description, type_id, is_obsolete, create_date) FROM stdin; 41784 \N 5 test_accession test_accession \N 76392 f 2020-04-09 10:43:29.697094 \. -- -- Data for Name: stock_cvterm; Type: TABLE DATA; Schema: public; Owner: postgres -- COPY public.stock_cvterm (stock_cvterm_id, stock_id, cvterm_id, pub_id, rank, is_not) FROM stdin; \. -- -- Data for Name: stock_cvtermprop; Type: TABLE DATA; Schema: public; Owner: postgres -- COPY public.stock_cvtermprop (stock_cvtermprop_id, stock_cvterm_id, type_id, value, rank) FROM stdin; \. -- -- Data for Name: stock_dbxref; Type: TABLE DATA; Schema: public; Owner: postgres -- COPY public.stock_dbxref (stock_dbxref_id, stock_id, dbxref_id, is_current) FROM stdin; \. -- -- Data for Name: stock_dbxrefprop; Type: TABLE DATA; Schema: public; Owner: postgres -- COPY public.stock_dbxrefprop (stock_dbxrefprop_id, stock_dbxref_id, type_id, value, rank) FROM stdin; \. -- -- Data for Name: stock_genotype; Type: TABLE DATA; Schema: public; Owner: postgres -- COPY public.stock_genotype (stock_genotype_id, stock_id, genotype_id) FROM stdin; \. -- -- Data for Name: stock_pub; Type: TABLE DATA; Schema: public; Owner: postgres -- COPY public.stock_pub (stock_pub_id, stock_id, pub_id) FROM stdin; \. -- -- Data for Name: stock_relationship; Type: TABLE DATA; Schema: public; Owner: postgres -- COPY public.stock_relationship (stock_relationship_id, subject_id, object_id, type_id, value, rank, create_date) FROM stdin; \. -- -- Data for Name: stock_relationship_cvterm; Type: TABLE DATA; Schema: public; Owner: postgres -- COPY public.stock_relationship_cvterm (stock_relationship_cvterm_id, stock_relationship_id, cvterm_id, pub_id) FROM stdin; \. -- -- Data for Name: stock_relationship_pub; Type: TABLE DATA; Schema: public; Owner: postgres -- COPY public.stock_relationship_pub (stock_relationship_pub_id, stock_relationship_id, pub_id) FROM stdin; \. -- -- Data for Name: stockcollection; Type: TABLE DATA; Schema: public; Owner: postgres -- COPY public.stockcollection (stockcollection_id, type_id, contact_id, name, uniquename) FROM stdin; \. -- -- Data for Name: stockcollection_stock; Type: TABLE DATA; Schema: public; Owner: postgres -- COPY public.stockcollection_stock (stockcollection_stock_id, stockcollection_id, stock_id) FROM stdin; \. -- -- Data for Name: stockcollectionprop; Type: TABLE DATA; Schema: public; Owner: postgres -- COPY public.stockcollectionprop (stockcollectionprop_id, stockcollection_id, type_id, value, rank) FROM stdin; \. -- -- Data for Name: stockprop; Type: TABLE DATA; Schema: public; Owner: postgres -- COPY public.stockprop (stockprop_id, stock_id, type_id, value, rank) FROM stdin; 45149 41784 77140 http://localhost/stock/41784/view 0 \. -- -- Data for Name: stockprop_pub; Type: TABLE DATA; Schema: public; Owner: postgres -- COPY public.stockprop_pub (stockprop_pub_id, stockprop_id, pub_id) FROM stdin; \. -- -- Data for Name: synonym; Type: TABLE DATA; Schema: public; Owner: postgres -- COPY public.synonym (synonym_id, name, type_id, synonym_sgml) FROM stdin; \. -- -- Data for Name: tableinfo; Type: TABLE DATA; Schema: public; Owner: postgres -- COPY public.tableinfo (tableinfo_id, name, primary_key_column, is_view, view_on_table_id, superclass_table_id, is_updateable, modification_date) FROM stdin; \. -- -- Data for Name: tmp_cds_handler; Type: TABLE DATA; Schema: public; Owner: postgres -- COPY public.tmp_cds_handler (cds_row_id, seq_id, gff_id, type, fmin, fmax, object) FROM stdin; \. -- -- Data for Name: tmp_cds_handler_relationship; Type: TABLE DATA; Schema: public; Owner: postgres -- COPY public.tmp_cds_handler_relationship (rel_row_id, cds_row_id, parent_id, grandparent_id) FROM stdin; \. -- -- Data for Name: tmp_gff_load_cache; Type: TABLE DATA; Schema: public; Owner: postgres -- COPY public.tmp_gff_load_cache (feature_id, uniquename, type_id, organism_id) FROM stdin; \. -- -- Data for Name: unigene_dbxref; Type: TABLE DATA; Schema: public; Owner: postgres -- COPY public.unigene_dbxref (unigene_dbxref_id, unigene_id, dbxref_id) FROM stdin; \. -- -- Data for Name: unigene_relations; Type: TABLE DATA; Schema: public; Owner: postgres -- COPY public.unigene_relations (unigene_id, superceded_by, superceding_build_nr, superceding_organism) FROM stdin; \. -- -- Data for Name: unigene_signalp; Type: TABLE DATA; Schema: public; Owner: postgres -- COPY public.unigene_signalp (unigene_id, nn_cmax, nn_cpos, nn_cd, nn_ymax, nn_ypos, nn_yd, nn_smax, nn_spos, nn_sd, nn_smean, nn_smeand, nn_score, nn_d, hmm_type, hmm_cmax, hmm_cpos, hmm_cd, hmm_sprob, hmm_d, cds_id) FROM stdin; \. -- -- Data for Name: accession; Type: TABLE DATA; Schema: sgn; Owner: postgres -- COPY sgn.accession (accession_id, organism_id, common_name, accession_name_id, chado_organism_id, stock_id) FROM stdin; \. -- -- Data for Name: accession_names; Type: TABLE DATA; Schema: sgn; Owner: postgres -- COPY sgn.accession_names (accession_name_id, accession_name, accession_id) FROM stdin; \. -- -- Data for Name: annotation_target_type; Type: TABLE DATA; Schema: sgn; Owner: postgres -- COPY sgn.annotation_target_type (annotation_target_type_id, type_name, type_description, table_name, index_field_name) FROM stdin; \. -- -- Data for Name: authors; Type: TABLE DATA; Schema: sgn; Owner: postgres -- COPY sgn.authors (author_id, name, institution) FROM stdin; \. -- -- Data for Name: blast_annotations; Type: TABLE DATA; Schema: sgn; Owner: postgres -- COPY sgn.blast_annotations (blast_annotation_id, apply_id, apply_type, blast_target_id, n_hits, hits_stored, last_updated, host, pid) FROM stdin; \. -- -- Data for Name: blast_db; Type: TABLE DATA; Schema: sgn; Owner: postgres -- COPY sgn.blast_db (blast_db_id, file_base, title, type, source_url, lookup_url, update_freq, info_url, index_seqs, blast_db_group_id, web_interface_visible, description, jbrowse_src) FROM stdin; 1 test.fasta test nucleotide \N \N monthly \N t \N t a database for testing \N \. -- -- Data for Name: blast_db_blast_db_group; Type: TABLE DATA; Schema: sgn; Owner: postgres -- COPY sgn.blast_db_blast_db_group (blast_db_blast_db_group_id, blast_db_id, blast_db_group_id) FROM stdin; 1 1 1 \. -- -- Data for Name: blast_db_group; Type: TABLE DATA; Schema: sgn; Owner: postgres -- COPY sgn.blast_db_group (blast_db_group_id, name, ordinal) FROM stdin; 1 test group 1 \. -- -- Data for Name: blast_db_organism; Type: TABLE DATA; Schema: sgn; Owner: postgres -- COPY sgn.blast_db_organism (blast_db_organism_id, blast_db_id, organism_id) FROM stdin; \. -- -- Data for Name: blast_defline; Type: TABLE DATA; Schema: sgn; Owner: postgres -- COPY sgn.blast_defline (defline_id, blast_target_id, target_db_id, defline, defline_fulltext, identifier_defline_fulltext) FROM stdin; \. -- -- Data for Name: blast_hits; Type: TABLE DATA; Schema: sgn; Owner: postgres -- COPY sgn.blast_hits (blast_hit_id, blast_annotation_id, target_db_id, evalue, score, identity_percentage, apply_start, apply_end, defline_id) FROM stdin; \. -- -- Data for Name: blast_targets; Type: TABLE DATA; Schema: sgn; Owner: postgres -- COPY sgn.blast_targets (blast_target_id, blast_program, db_name, db_path, local_copy_timestamp) FROM stdin; \. -- -- Data for Name: cds; Type: TABLE DATA; Schema: sgn; Owner: postgres -- COPY sgn.cds (cds_id, unigene_id, seq_text, seq_edits, protein_seq, begin, "end", forward_reverse, run_id, score, method, frame, preferred, cds_seq, protein_feature_id) FROM stdin; \. -- -- Data for Name: chadoprop; Type: TABLE DATA; Schema: sgn; Owner: postgres -- COPY sgn.chadoprop (chadoprop_id, type_id, value, rank) FROM stdin; \. -- -- Data for Name: clone; Type: TABLE DATA; Schema: sgn; Owner: postgres -- COPY sgn.clone (clone_id, library_id, clone_name, clone_group_id) FROM stdin; \. -- -- Data for Name: cloning_vector; Type: TABLE DATA; Schema: sgn; Owner: postgres -- COPY sgn.cloning_vector (cloning_vector_id, name, seq) FROM stdin; \. -- -- Data for Name: common_name; Type: TABLE DATA; Schema: sgn; Owner: postgres -- COPY sgn.common_name (common_name_id, common_name) FROM stdin; 1 Cassava \. -- -- Data for Name: common_nameprop; Type: TABLE DATA; Schema: sgn; Owner: postgres -- COPY sgn.common_nameprop (common_nameprop_id, common_name_id, type_id, value, rank) FROM stdin; \. -- -- Data for Name: cos_markers; Type: TABLE DATA; Schema: sgn; Owner: postgres -- COPY sgn.cos_markers (cos_marker_id, marker_id, est_read_id, cos_id, at_match, bac_id, at_position, best_gb_prot_hit, at_evalue, at_identities, mips_cat, description, comment, tomato_copy_number, gbprot_evalue, gbprot_identities) FROM stdin; \. -- -- Data for Name: cosii_ortholog; Type: TABLE DATA; Schema: sgn; Owner: postgres -- COPY sgn.cosii_ortholog (cosii_unigene_id, marker_id, unigene_id, copies, database_name, sequence_name, edited_sequence_id, peptide_sequence_id, introns) FROM stdin; \. -- -- Data for Name: deprecated_linkage_groups; Type: TABLE DATA; Schema: sgn; Owner: postgres -- COPY sgn.deprecated_linkage_groups (lg_id, map_id, lg_order, lg_name) FROM stdin; \. -- -- Data for Name: deprecated_map_cross; Type: TABLE DATA; Schema: sgn; Owner: postgres -- COPY sgn.deprecated_map_cross (map_cross_id, map_id, organism_id) FROM stdin; \. -- -- Data for Name: deprecated_mapdata; Type: TABLE DATA; Schema: sgn; Owner: postgres -- COPY sgn.deprecated_mapdata (loc_id, map_id, lg_id, "offset", loc_type, loc_order) FROM stdin; \. -- -- Data for Name: deprecated_maps; Type: TABLE DATA; Schema: sgn; Owner: postgres -- COPY sgn.deprecated_maps (map_id, legacy_id, short_name, long_name, number_chromosomes, default_threshold, header, abstract, genetic_cross, population_type, population_size, seed_available, seed_url, deprecated_by, map_type) FROM stdin; \. -- -- Data for Name: deprecated_marker_confidences; Type: TABLE DATA; Schema: sgn; Owner: postgres -- COPY sgn.deprecated_marker_confidences (confidence_id, confidence_name, legacy_conf_id) FROM stdin; \. -- -- Data for Name: deprecated_marker_locations; Type: TABLE DATA; Schema: sgn; Owner: postgres -- COPY sgn.deprecated_marker_locations (marker_location_id, marker_id, loc_id, confidence, order_in_loc, location_subscript, mapmaker_id) FROM stdin; \. -- -- Data for Name: deprecated_marker_types; Type: TABLE DATA; Schema: sgn; Owner: postgres -- COPY sgn.deprecated_marker_types (marker_type_id, type_name, description, marker_table) FROM stdin; \. -- -- Data for Name: deprecated_markers; Type: TABLE DATA; Schema: sgn; Owner: postgres -- COPY sgn.deprecated_markers (marker_id, marker_type, marker_name) FROM stdin; \. -- -- Data for Name: derived_from_source; Type: TABLE DATA; Schema: sgn; Owner: postgres -- COPY sgn.derived_from_source (derived_from_source_id, source_name, source_schema, source_table, source_col) FROM stdin; \. -- -- Data for Name: domain; Type: TABLE DATA; Schema: sgn; Owner: postgres -- COPY sgn.domain (domain_id, method_id, domain_accession, description, interpro_id, description_fulltext, dbxref_id, metadata_id) FROM stdin; \. -- -- Data for Name: domain_match; Type: TABLE DATA; Schema: sgn; Owner: postgres -- COPY sgn.domain_match (domain_match_id, cds_id, unigene_id, domain_id, match_begin, match_end, e_value, hit_status, run_id, metadata_id) FROM stdin; \. -- -- Data for Name: enzyme_restriction_sites; Type: TABLE DATA; Schema: sgn; Owner: postgres -- COPY sgn.enzyme_restriction_sites (enzyme_id, restriction_site, enzyme_restriction_sites_id) FROM stdin; \. -- -- Data for Name: enzymes; Type: TABLE DATA; Schema: sgn; Owner: postgres -- COPY sgn.enzymes (enzyme_id, enzyme_name) FROM stdin; \. -- -- Data for Name: est; Type: TABLE DATA; Schema: sgn; Owner: postgres -- COPY sgn.est (est_id, read_id, version, basecaller, seq, qscore, call_positions, status, flags, date, genbank_submission_date, genbank_confirmed) FROM stdin; \. -- -- Data for Name: est_dbxref; Type: TABLE DATA; Schema: sgn; Owner: postgres -- COPY sgn.est_dbxref (est_dbxref_id, est_id, dbxref_id) FROM stdin; \. -- -- Data for Name: ests_mapped_by_clone; Type: TABLE DATA; Schema: sgn; Owner: postgres -- COPY sgn.ests_mapped_by_clone (embc_id, marker_id, clone_id) FROM stdin; \. -- -- Data for Name: experiment_type; Type: TABLE DATA; Schema: sgn; Owner: postgres -- COPY sgn.experiment_type (experiment_type_id, name, description) FROM stdin; 1 mapping \N \. -- -- Data for Name: facility; Type: TABLE DATA; Schema: sgn; Owner: postgres -- COPY sgn.facility (facility_id, submit_user_id, facility_moniker, facility_shortname, facility_name, facility_contact, facility_address, funding_agency, funding_comment, sequencing_primers, machine, chemistry, attribution_display, sp_person_id) FROM stdin; \. -- -- Data for Name: family; Type: TABLE DATA; Schema: sgn; Owner: postgres -- COPY sgn.family (family_id, family_build_id, family_annotation, tree_log_file_location, tree_file_location, tree_taxa_number, tree_overlap_length, family_nr, member_count) FROM stdin; \. -- -- Data for Name: family_build; Type: TABLE DATA; Schema: sgn; Owner: postgres -- COPY sgn.family_build (family_build_id, group_id, build_nr, i_value, build_date, status) FROM stdin; \. -- -- Data for Name: family_member; Type: TABLE DATA; Schema: sgn; Owner: postgres -- COPY sgn.family_member (family_member_id, cds_id, organism_group_id, family_id, database_name, sequence_name, alignment_seq) FROM stdin; \. -- -- Data for Name: family_tree; Type: TABLE DATA; Schema: sgn; Owner: postgres -- COPY sgn.family_tree (family_tree_id, family_id, tree_nr, newick_cds, newick_unigene) FROM stdin; \. -- -- Data for Name: fish_chromatin_density_constants; Type: TABLE DATA; Schema: sgn; Owner: postgres -- COPY sgn.fish_chromatin_density_constants (arm, density) FROM stdin; \. -- -- Data for Name: fish_experimenter; Type: TABLE DATA; Schema: sgn; Owner: postgres -- COPY sgn.fish_experimenter (fish_experimenter_id, fish_experimenter_name) FROM stdin; \. -- -- Data for Name: fish_file; Type: TABLE DATA; Schema: sgn; Owner: postgres -- COPY sgn.fish_file (fish_file_id, filename, fish_result_id) FROM stdin; \. -- -- Data for Name: fish_image; Type: TABLE DATA; Schema: sgn; Owner: postgres -- COPY sgn.fish_image (fish_image_id, filename, fish_result_id) FROM stdin; \. -- -- Data for Name: fish_karyotype_constants; Type: TABLE DATA; Schema: sgn; Owner: postgres -- COPY sgn.fish_karyotype_constants (fish_experimenter_id, chromo_num, chromo_arm, arm_length, arm_eu_length, arm_het_length) FROM stdin; \. -- -- Data for Name: fish_karyotype_constants_old; Type: TABLE DATA; Schema: sgn; Owner: postgres -- COPY sgn.fish_karyotype_constants_old (chromo_num, chromo_length, chromo_arm_ratio, short_arm_length, short_arm_eu_length, short_arm_het_length, long_arm_length, long_arm_eu_length, long_arm_het_length) FROM stdin; \. -- -- Data for Name: fish_result; Type: TABLE DATA; Schema: sgn; Owner: postgres -- COPY sgn.fish_result (fish_result_id, map_id, fish_experimenter_id, experiment_name, clone_id, chromo_num, chromo_arm, percent_from_centromere, experiment_group, attribution_id) FROM stdin; \. -- -- Data for Name: fish_result_composite; Type: TABLE DATA; Schema: sgn; Owner: postgres -- COPY sgn.fish_result_composite (fish_result_id, map_id, fish_experimenter_id, experiment_name, clone_id, chromo_num, chromo_arm, percent_from_centromere, het_or_eu, um_from_centromere, um_from_arm_end, um_from_arm_border, mbp_from_arm_end, mbp_from_centromere, mbp_from_arm_border, experiment_group) FROM stdin; \. -- -- Data for Name: fish_result_image; Type: TABLE DATA; Schema: sgn; Owner: postgres -- COPY sgn.fish_result_image (fish_result_image_id, image_id, fish_result_id) FROM stdin; \. -- -- Data for Name: go; Type: TABLE DATA; Schema: sgn; Owner: postgres -- COPY sgn.go (go_id, go_accession, description, description_fulltext) FROM stdin; \. -- -- Data for Name: group_linkage; Type: TABLE DATA; Schema: sgn; Owner: postgres -- COPY sgn.group_linkage (group_linkage_id, group_id, member_id, member_type, member_value) FROM stdin; \. -- -- Data for Name: groups; Type: TABLE DATA; Schema: sgn; Owner: postgres -- COPY sgn.groups (group_id, type, comment) FROM stdin; \. -- -- Data for Name: id_linkage; Type: TABLE DATA; Schema: sgn; Owner: postgres -- COPY sgn.id_linkage (id_linkage_id, link_id, link_id_type, internal_id, internal_id_type) FROM stdin; \. -- -- Data for Name: il_info; Type: TABLE DATA; Schema: sgn; Owner: postgres -- COPY sgn.il_info (ns_marker_id, sn_marker_id, map_id, map_version_id, population_id, ns_position, sn_position, name, ns_alias, sn_alias, lg_name) FROM stdin; \. -- -- Data for Name: interpro; Type: TABLE DATA; Schema: sgn; Owner: postgres -- COPY sgn.interpro (interpro_id, interpro_accession, description, description_fulltext) FROM stdin; \. -- -- Data for Name: interpro_go; Type: TABLE DATA; Schema: sgn; Owner: postgres -- COPY sgn.interpro_go (interpro_go_id, interpro_accession, go_accession) FROM stdin; \. -- -- Data for Name: library; Type: TABLE DATA; Schema: sgn; Owner: postgres -- COPY sgn.library (library_id, type, submit_user_id, library_name, library_shortname, authors, organism_id, cultivar, accession, tissue, development_stage, treatment_conditions, cloning_host, vector, rs1, rs2, cloning_kit, comments, contact_information, order_routing_id, sp_person_id, forward_adapter, reverse_adapter, obsolete, modified_date, create_date, chado_organism_id) FROM stdin; \. -- -- Data for Name: linkage_group; Type: TABLE DATA; Schema: sgn; Owner: postgres -- COPY sgn.linkage_group (lg_id, map_version_id, lg_order, lg_name, north_location_id, south_location_id) FROM stdin; \. -- -- Data for Name: loc_types; Type: TABLE DATA; Schema: sgn; Owner: postgres -- COPY sgn.loc_types (loc_type_id, type_code, type_name) FROM stdin; \. -- -- Data for Name: manual_annotations; Type: TABLE DATA; Schema: sgn; Owner: postgres -- COPY sgn.manual_annotations (manual_annotations_id, annotation_target_id, annotation_target_type_id, annotation_text, author_id, date_entered, last_modified, annotation_text_fulltext) FROM stdin; \. -- -- Data for Name: manual_censor_reasons; Type: TABLE DATA; Schema: sgn; Owner: postgres -- COPY sgn.manual_censor_reasons (censor_id, reason) FROM stdin; \. -- -- Data for Name: map; Type: TABLE DATA; Schema: sgn; Owner: postgres -- COPY sgn.map (map_id, short_name, long_name, abstract, map_type, parent_1, parent_2, units, ancestor, population_id, parent1_stock_id, parent2_stock_id, population_stock_id) FROM stdin; \. -- -- Data for Name: map_version; Type: TABLE DATA; Schema: sgn; Owner: postgres -- COPY sgn.map_version (map_version_id, map_id, date_loaded, current_version, default_threshold, has_il, has_physical, metadata_id) FROM stdin; \. -- -- Data for Name: marker; Type: TABLE DATA; Schema: sgn; Owner: postgres -- COPY sgn.marker (marker_id, dummy_field) FROM stdin; 1 \N 2 \N 3 \N 4 \N 5 \N 6 \N 7 \N 8 \N 9 \N 10 \N 11 \N 12 \N 13 \N 14 \N 15 \N 16 \N 17 \N 18 \N 19 \N 20 \N 21 \N 22 \N 23 \N 24 \N 25 \N 26 \N 27 \N 28 \N 29 \N 30 \N 31 \N 32 \N 33 \N 34 \N 35 \N 36 \N 37 \N 38 \N 39 \N 40 \N 41 \N 42 \N 43 \N 44 \N 45 \N 46 \N 47 \N 48 \N 49 \N 50 \N 51 \N 52 \N 53 \N 54 \N 55 \N 56 \N 57 \N 58 \N 59 \N 60 \N 61 \N 62 \N 63 \N 64 \N 65 \N 66 \N 67 \N 68 \N 69 \N 70 \N 71 \N 72 \N 73 \N 74 \N 75 \N 76 \N 77 \N 78 \N 79 \N 80 \N 81 \N 82 \N 83 \N 84 \N 85 \N 86 \N 87 \N 88 \N 89 \N 90 \N 91 \N 92 \N 93 \N 94 \N 95 \N 96 \N 97 \N 98 \N 99 \N 100 \N 101 \N 102 \N 103 \N 104 \N 105 \N 106 \N 107 \N 108 \N 109 \N 110 \N 111 \N 112 \N 113 \N 114 \N 115 \N 116 \N 117 \N 118 \N 119 \N 120 \N 121 \N 122 \N 123 \N 124 \N 125 \N 126 \N 127 \N 128 \N 129 \N 130 \N 131 \N 132 \N 133 \N 134 \N 135 \N 136 \N 137 \N 138 \N 139 \N 140 \N 141 \N 142 \N 143 \N 144 \N 145 \N 146 \N 147 \N 148 \N 149 \N 150 \N 151 \N 152 \N 153 \N 154 \N 155 \N 156 \N 157 \N 158 \N 159 \N 160 \N 161 \N 162 \N 163 \N 164 \N 165 \N 166 \N 167 \N 168 \N 169 \N 170 \N 171 \N 172 \N 173 \N 174 \N 175 \N 176 \N 177 \N 178 \N 179 \N 180 \N 181 \N 182 \N 183 \N 184 \N 185 \N 186 \N 187 \N 188 \N 189 \N 190 \N 191 \N 192 \N 193 \N 194 \N 195 \N 196 \N 197 \N 198 \N 199 \N 200 \N 201 \N 202 \N 203 \N 204 \N 205 \N 206 \N 207 \N 208 \N 209 \N 210 \N 211 \N 212 \N 213 \N 214 \N 215 \N 216 \N 217 \N 218 \N 219 \N 220 \N 221 \N 222 \N 223 \N 224 \N 225 \N 226 \N 227 \N 228 \N 229 \N 230 \N 231 \N 232 \N 233 \N 234 \N 235 \N 236 \N 237 \N 238 \N 239 \N 240 \N 241 \N 242 \N 243 \N 244 \N 245 \N 246 \N 247 \N 248 \N 249 \N 250 \N 251 \N 252 \N 253 \N 254 \N 255 \N 256 \N 257 \N 258 \N 259 \N 260 \N 261 \N 262 \N 263 \N 264 \N 265 \N 266 \N 267 \N 268 \N 269 \N 270 \N 271 \N 272 \N 273 \N 274 \N 275 \N 276 \N 277 \N 278 \N 279 \N 280 \N 281 \N 282 \N 283 \N 284 \N 285 \N 286 \N 287 \N 288 \N 289 \N 290 \N 291 \N 292 \N 293 \N 294 \N 295 \N 296 \N 297 \N 298 \N 299 \N 300 \N 301 \N 302 \N 303 \N 304 \N 305 \N 306 \N 307 \N 308 \N 309 \N 310 \N 311 \N 312 \N 313 \N 314 \N 315 \N 316 \N 317 \N 318 \N 319 \N 320 \N 321 \N 322 \N 323 \N 324 \N 325 \N 326 \N 327 \N 328 \N 329 \N 330 \N 331 \N 332 \N 333 \N 334 \N 335 \N 336 \N 337 \N 338 \N 339 \N 340 \N 341 \N 342 \N 343 \N 344 \N 345 \N 346 \N 347 \N 348 \N 349 \N 350 \N 351 \N 352 \N 353 \N 354 \N 355 \N 356 \N 357 \N 358 \N 359 \N 360 \N 361 \N 362 \N 363 \N 364 \N 365 \N 366 \N 367 \N 368 \N 369 \N 370 \N 371 \N 372 \N 373 \N 374 \N 375 \N 376 \N 377 \N 378 \N 379 \N 380 \N 381 \N 382 \N 383 \N 384 \N 385 \N 386 \N 387 \N 388 \N 389 \N 390 \N 391 \N 392 \N 393 \N 394 \N 395 \N 396 \N 397 \N 398 \N 399 \N 400 \N 401 \N 402 \N 403 \N 404 \N 405 \N 406 \N 407 \N 408 \N 409 \N 410 \N 411 \N 412 \N 413 \N 414 \N 415 \N 416 \N 417 \N 418 \N 419 \N 420 \N 421 \N 422 \N 423 \N 424 \N 425 \N 426 \N 427 \N 428 \N 429 \N 430 \N 431 \N 432 \N 433 \N 434 \N 435 \N 436 \N 437 \N 438 \N 439 \N 440 \N 441 \N 442 \N 443 \N 444 \N 445 \N 446 \N 447 \N 448 \N 449 \N 450 \N 451 \N 452 \N 453 \N 454 \N 455 \N 456 \N 457 \N 458 \N 459 \N 460 \N 461 \N 462 \N 463 \N 464 \N 465 \N 466 \N 467 \N 468 \N 469 \N 470 \N 471 \N 472 \N 473 \N 474 \N 475 \N 476 \N 477 \N 478 \N 479 \N 480 \N 481 \N 482 \N 483 \N 484 \N 485 \N 486 \N 487 \N 488 \N 489 \N 490 \N 491 \N 492 \N 493 \N 494 \N 495 \N 496 \N 497 \N 498 \N 499 \N 500 \N 501 \N 502 \N 503 \N 504 \N 505 \N 506 \N 507 \N 508 \N 509 \N 510 \N 511 \N 512 \N 513 \N 514 \N 515 \N 516 \N 517 \N 518 \N 519 \N 520 \N 521 \N 522 \N 523 \N 524 \N 525 \N 526 \N 527 \N 528 \N 529 \N 530 \N 531 \N 532 \N 533 \N 534 \N 535 \N 536 \N 537 \N 538 \N 539 \N 540 \N 541 \N 542 \N 543 \N 544 \N 545 \N 546 \N 547 \N 548 \N 549 \N 550 \N 551 \N 552 \N 553 \N 554 \N 555 \N 556 \N 557 \N 558 \N 559 \N 560 \N 561 \N 562 \N 563 \N 564 \N 565 \N 566 \N 567 \N \. -- -- Data for Name: marker_alias; Type: TABLE DATA; Schema: sgn; Owner: postgres -- COPY sgn.marker_alias (alias_id, alias, marker_id, preferred) FROM stdin; 1 ESSRY105 1 t 2 ESSRY116 2 t 3 ESSRY121 3 t 4 ESSRY13 4 t 5 ESSRY130 5 t 6 ESSRY139 6 t 7 ESSRY15 7 t 8 ESSRY17 8 t 9 ESSRY19 9 t 10 ESSRY24 10 t 11 ESSRY26 11 t 12 ESSRY27 12 t 13 ESSRY33 13 t 14 ESSRY36 14 t 15 ESSRY71 15 t 16 ESSRY8 16 t 17 ESSRY91 17 t 18 ESSRY95 18 t 19 ESTSSSRY24 19 t 20 ESTsSSRY100 20 t 21 ESTsSSRY11 21 t 22 ESTsSSRY115 22 t 23 ESTsSSRY17 23 t 24 ESTsSSRY19 24 t 25 ESTsSSRY20 25 t 26 ESTsSSRY22 26 t 27 ESTsSSRY280 27 t 28 ESTsSSRY294 28 t 29 ESTsSSRY58 29 t 30 ESTsSSRY62 30 t 31 ESTsSSRY75 31 t 32 ESTsSSRY76 32 t 33 ESTsSSRY83 33 t 34 MEF_c_5 34 t 35 MEF_c_8 35 t 36 MEF_c_14 36 t 37 MEF_c_19 37 t 38 MEF_c_20 38 t 39 MEF_c_29 39 t 40 MEF_c_30 40 t 41 MEF_c_36 41 t 42 MEF_c_41 42 t 43 MEF_c_52 43 t 44 MEF_c_56 44 t 45 MEF_c_58 45 t 46 MEF_c_60 46 t 47 MEF_c_68 47 t 48 MEF_c_82 48 t 49 MEF_c_85 49 t 50 MEF_c_88 50 t 51 MEF_c_89 51 t 52 MEF_c_100 52 t 53 MEF_c_102 53 t 54 MEF_c_104 54 t 55 MEF_c_110 55 t 56 MEF_c_118 56 t 57 MEF_c_126 57 t 58 MEF_c_127 58 t 59 MEF_c_137 59 t 60 MEF_c_143 60 t 61 MEF_c_145 61 t 62 MEF_c_149 62 t 63 MEF_c_150 63 t 64 MEF_c_153 64 t 65 MEF_c_156 65 t 66 MEF_c_187 66 t 67 MEF_c_194 67 t 68 MEF_c_195 68 t 69 MEF_c_196 69 t 70 MEF_c_211 70 t 71 MEF_c_222 71 t 72 MEF_c_226 72 t 73 MEF_c_227 73 t 74 MEF_c_236 74 t 75 MEF_c_238 75 t 76 MEF_c_247 76 t 77 MEF_c_268 77 t 78 MEF_c_271 78 t 79 MEF_c_276 79 t 80 MEF_c_283 80 t 81 MEF_c_284 81 t 82 MEF_c_289 82 t 83 MEF_c_359 83 t 84 MEF_c_381 84 t 85 MEF_c_387 85 t 86 MEF_c_405 86 t 87 MEF_c_450 87 t 88 MEF_c_461 88 t 89 MEF_c_468 89 t 90 MEF_c_478 90 t 91 MEF_c_494 91 t 92 MEF_c_508 92 t 93 MEF_c_515 93 t 94 MEF_c_532 94 t 95 MEF_c_545 95 t 96 MEF_c_566 96 t 97 MEF_c_572 97 t 98 MEF_c_578 98 t 99 MEF_c_580 99 t 100 MEF_c_581 100 t 101 MEF_c_587 101 t 102 MEF_c_593 102 t 103 MEF_c_595 103 t 104 MEF_c_597 104 t 105 MEF_c_602 105 t 106 MEF_c_605 106 t 107 MEF_c_606 107 t 108 MEF_c_607 108 t 109 MEF_c_611 109 t 110 MEF_c_612 110 t 111 MEF_c_615 111 t 112 MEF_c_617 112 t 113 MEF_c_669 113 t 114 MEF_c_670 114 t 115 MEF_c_671 115 t 116 MEF_c_673 116 t 117 MEF_c_677 117 t 118 MEF_c_692 118 t 119 MEF_c_698 119 t 120 MEF_c_708 120 t 121 MEF_c_712 121 t 122 MEF_c_713 122 t 123 MEF_c_716 123 t 124 MEF_c_724 124 t 125 MEF_c_739 125 t 126 MEF_c_749 126 t 127 MEF_c_779 127 t 128 MEF_c_782 128 t 129 MEF_c_786 129 t 130 MEF_c_788 130 t 131 MEF_c_789 131 t 132 MEF_c_791 132 t 133 MEF_c_797 133 t 134 MEF_c_802 134 t 135 MEF_c_803 135 t 136 MEF_c_810 136 t 137 MEF_c_811 137 t 138 MEF_c_817 138 t 139 MEF_c_830 139 t 140 MEF_c_831 140 t 141 MEF_c_835 141 t 142 MEF_c_840 142 t 143 MEF_c_841 143 t 144 MEF_c_842 144 t 145 MEF_c_847 145 t 146 MEF_c_854 146 t 147 MEF_c_859 147 t 148 MEF_c_869 148 t 149 MEF_c_871 149 t 150 MEF_c_886 150 t 151 MEF_c_887 151 t 152 MEF_c_896 152 t 153 MEF_c_898 153 t 154 MEF_c_943 154 t 155 MEF_c_946 155 t 156 MEF_c_947 156 t 157 MEF_c_951 157 t 158 MEF_c_962 158 t 159 MEF_c_963 159 t 160 MEF_c_966 160 t 161 MEF_c_975 161 t 162 MEF_c_976 162 t 163 MEF_c_977 163 t 164 MEF_c_981 164 t 165 MEF_c_994 165 t 166 MEF_c_996 166 t 167 MEF_c_1015 167 t 168 MEF_c_1018 168 t 169 MEF_c_1044 169 t 170 MEF_c_1074 170 t 171 MEF_c_1097 171 t 172 MEF_c_1099 172 t 173 MEF_c_1128 173 t 174 MEF_c_1134 174 t 175 MEF_c_1137 175 t 176 MEF_c_1159 176 t 177 MEF_c_1179 177 t 178 MEF_c_1183 178 t 179 MEF_c_1186 179 t 180 MEF_c_1187 180 t 181 MEF_c_1220 181 t 182 MEF_c_1221 182 t 183 MEF_c_1246 183 t 184 MEF_c_1250 184 t 185 MEF_c_1276 185 t 186 MEF_c_1278 186 t 187 MEF_c_1280 187 t 188 MEF_c_1284 188 t 189 MEF_c_1285 189 t 190 MEF_c_1290 190 t 191 MEF_c_1298 191 t 192 MEF_c_1304 192 t 193 MEF_c_1314 193 t 194 MEF_c_1317 194 t 195 MEF_c_1320 195 t 196 MEF_c_1337 196 t 197 MEF_c_1348 197 t 198 MEF_c_1350 198 t 199 MEF_c_1353 199 t 200 MEF_c_1355 200 t 201 MEF_c_1357 201 t 202 MEF_c_1360 202 t 203 MEF_c_1361 203 t 204 MEF_c_1362 204 t 205 MEF_c_1371 205 t 206 MEF_c_1373 206 t 207 MEF_c_1392 207 t 208 MEF_c_1420 208 t 209 MEF_c_1423 209 t 210 MEF_c_1443 210 t 211 MEF_c_1450 211 t 212 MEF_c_1454 212 t 213 MEF_c_1455 213 t 214 MEF_c_1456 214 t 215 MEF_c_1507 215 t 216 MEF_c_1509 216 t 217 MEF_c_1513 217 t 218 MEF_c_1527 218 t 219 MEF_c_1566 219 t 220 MEF_c_1575 220 t 221 MEF_c_1598 221 t 222 MEF_c_1609 222 t 223 MEF_c_1611 223 t 224 MEF_c_1615 224 t 225 MEF_c_1617 225 t 226 MEF_c_1635 226 t 227 MEF_c_1636 227 t 228 MEF_c_1637 228 t 229 MEF_c_1645 229 t 230 MEF_c_1671 230 t 231 MEF_c_1679 231 t 232 MEF_c_1687 232 t 233 MEF_c_1689 233 t 234 MEF_c_1696 234 t 235 MEF_c_1697 235 t 236 MEF_c_1709 236 t 237 MEF_c_1715 237 t 238 MEF_c_1723 238 t 239 MEF_c_1729 239 t 240 MEF_c_1730 240 t 241 MEF_c_1733 241 t 242 MEF_c_1734 242 t 243 MEF_c_1802 243 t 244 MEF_c_1817 244 t 245 MEF_c_1828 245 t 246 MEF_c_1856 246 t 247 MEF_c_1866 247 t 248 MEF_c_1870 248 t 249 MEF_c_1876 249 t 250 MEF_c_1880 250 t 251 MEF_c_1894 251 t 252 MEF_c_1919 252 t 253 MEF_c_1924 253 t 254 MEF_c_1940 254 t 255 MEF_c_1947 255 t 256 MEF_c_1953 256 t 257 MEF_c_1955 257 t 258 MEF_c_1961 258 t 259 MEF_c_1977 259 t 260 MEF_c_1986 260 t 261 MEF_c_1990 261 t 262 MEF_c_1998 262 t 263 MEF_c_2004 263 t 264 MEF_c_2032 264 t 265 MEF_c_2034 265 t 266 MEF_c_2041 266 t 267 MEF_c_2068 267 t 268 MEF_c_2076 268 t 269 MEF_c_2118 269 t 270 MEF_c_2120 270 t 271 MEF_c_2124 271 t 272 MEF_c_2137 272 t 273 MEF_c_2176 273 t 274 MEF_c_2177 274 t 275 MEF_c_2194 275 t 276 MEF_c_2195 276 t 277 MEF_c_2212 277 t 278 MEF_c_2222 278 t 279 MEF_c_2236 279 t 280 MEF_c_2247 280 t 281 MEF_c_2267 281 t 282 MEF_c_2282 282 t 283 MEF_c_2283 283 t 284 MEF_c_2285 284 t 285 MEF_c_2288 285 t 286 MEF_c_2291 286 t 287 MEF_c_2296 287 t 288 MEF_c_2297 288 t 289 MEF_c_2304 289 t 290 MEF_c_2319 290 t 291 MEF_c_2326 291 t 292 MEF_c_2327 292 t 293 MEF_c_2333 293 t 294 MEF_c_2334 294 t 295 MEF_c_2341 295 t 296 MEF_c_2344 296 t 297 MEF_c_2346 297 t 298 MEF_c_2353 298 t 299 MEF_c_2363 299 t 300 MEF_c_2364 300 t 301 MEF_c_2366 301 t 302 MEF_c_2371 302 t 303 MEF_c_2373 303 t 304 MEF_c_2376 304 t 305 MEF_c_2391 305 t 306 MEF_c_2397 306 t 307 MEF_c_2399 307 t 308 MEF_c_2401 308 t 309 MEF_c_2402 309 t 310 MEF_c_2409 310 t 311 MEF_c_2416 311 t 312 MEF_c_2425 312 t 313 MEF_c_2428 313 t 314 MEF_c_2446 314 t 315 MEF_c_2447 315 t 316 MEF_c_2448 316 t 317 MEF_c_2456 317 t 318 MEF_c_2465 318 t 319 MEF_c_2466 319 t 320 MEF_c_2472 320 t 321 MEF_c_2473 321 t 322 MEF_c_2486 322 t 323 MEF_c_2497 323 t 324 MEF_c_2503 324 t 325 MEF_c_2508 325 t 326 MEF_c_2510 326 t 327 MEF_c_2516 327 t 328 MEF_c_2518 328 t 329 MEF_c_2524 329 t 330 MEF_c_2548 330 t 331 MEF_c_2549 331 t 332 MEF_c_2552 332 t 333 MEF_c_2557 333 t 334 MEF_c_2560 334 t 335 MEF_c_2562 335 t 336 MEF_c_2567 336 t 337 MEF_c_2570 337 t 338 MEF_c_2572 338 t 339 MEF_c_2574 339 t 340 MEF_c_2576 340 t 341 MEF_c_2635 341 t 342 MEF_c_2639 342 t 343 MEF_c_2642 343 t 344 MEF_c_2644 344 t 345 MEF_c_2645 345 t 346 MEF_c_2653 346 t 347 MEF_c_2684 347 t 348 MEF_c_2698 348 t 349 MEF_c_2715 349 t 350 MEF_c_2726 350 t 351 MEF_c_2747 351 t 352 MEF_c_2748 352 t 353 MEF_c_2753 353 t 354 MEF_c_2767 354 t 355 MEF_c_2782 355 t 356 MEF_c_2786 356 t 357 MEF_c_2794 357 t 358 MEF_c_2797 358 t 359 MEF_c_2798 359 t 360 MEF_c_2799 360 t 361 MEF_c_2801 361 t 362 MEF_c_2802 362 t 363 MEF_c_2815 363 t 364 MEF_c_2821 364 t 365 MEF_c_2823 365 t 366 MEF_c_2829 366 t 367 MEF_c_2831 367 t 368 MEF_c_2834 368 t 369 MEF_c_2835 369 t 370 MEF_c_2840 370 t 371 MEF_c_2843 371 t 372 MEF_c_2851 372 t 373 MEF_c_2855 373 t 374 MEF_c_2858 374 t 375 MEF_c_2867 375 t 376 MEF_c_2873 376 t 377 MEF_c_2874 377 t 378 MEF_c_2885 378 t 379 MEF_c_2888 379 t 380 MEF_c_2890 380 t 381 MEF_c_2894 381 t 382 MEF_c_2903 382 t 383 MEF_c_2910 383 t 384 MEF_c_2924 384 t 385 MEF_c_2925 385 t 386 MEF_c_2926 386 t 387 MEF_c_2927 387 t 388 MEF_c_2953 388 t 389 MEF_c_2960 389 t 390 MEF_c_2965 390 t 391 MEF_c_2980 391 t 392 MEF_c_2990 392 t 393 MEF_c_2993 393 t 394 MEF_c_3000 394 t 395 MEF_c_3002 395 t 396 MEF_c_3010 396 t 397 MEF_c_3021 397 t 398 MEF_c_3023 398 t 399 MEF_c_3024 399 t 400 MEF_c_3039 400 t 401 MEF_c_3043 401 t 402 MEF_c_3045 402 t 403 MEF_c_3053 403 t 404 MEF_c_3054 404 t 405 MEF_c_3056 405 t 406 MEF_c_3057 406 t 407 MEF_c_3077 407 t 408 MEF_c_3081 408 t 409 MEF_c_3082 409 t 410 MEF_c_3085 410 t 411 MEF_c_3092 411 t 412 MEF_c_3094 412 t 413 MEF_c_3116 413 t 414 MEF_c_3127 414 t 415 MEF_c_3131 415 t 416 MEF_c_3135 416 t 417 MEF_c_3137 417 t 418 MEF_c_3138 418 t 419 MEF_c_3141 419 t 420 MEF_c_3142 420 t 421 MEF_c_3155 421 t 422 MEF_c_3156 422 t 423 MEF_c_3158 423 t 424 MEF_c_3165 424 t 425 MEF_c_3171 425 t 426 MEF_c_3174 426 t 427 MEF_c_3176 427 t 428 MEF_c_3177 428 t 429 MEF_c_3189 429 t 430 MEF_c_3194 430 t 431 MEF_c_3195 431 t 432 MEF_c_3197 432 t 433 MEF_c_3199 433 t 434 MEF_c_3200 434 t 435 MEF_c_3201 435 t 436 MEF_c_3207 436 t 437 MEF_c_3208 437 t 438 MEF_c_3209 438 t 439 MEF_c_3213 439 t 440 MEF_c_3214 440 t 441 MEF_c_3217 441 t 442 MEF_c_3224 442 t 443 MEF_c_3225 443 t 444 MEF_c_3226 444 t 445 MEF_c_3236 445 t 446 MEF_c_3241 446 t 447 MEF_c_3242 447 t 448 MEF_c_3254 448 t 449 MEF_c_3264 449 t 450 MEF_c_3275 450 t 451 MEF_c_3276 451 t 452 MEF_c_3278 452 t 453 MEF_c_3307 453 t 454 MEF_c_3310 454 t 455 MEF_c_3324 455 t 456 MEF_c_3330 456 t 457 MEF_c_3336 457 t 458 MEF_c_3338 458 t 459 MEF_c_3339 459 t 460 MEF_c_3343 460 t 461 MEF_c_3347 461 t 462 MEF_c_3355 462 t 463 MEF_c_3356 463 t 464 MEF_c_3361 464 t 465 MEF_c_3376 465 t 466 MEF_c_3378 466 t 467 NS1003 467 t 468 NS1021 468 t 469 NS1052 469 t 470 NS1121 470 t 471 NS119 471 t 472 NS136 472 t 473 NS158 473 t 474 NS160 474 t 475 NS166 475 t 476 NS169 476 t 477 NS176 477 t 478 NS197 478 t 479 NS210 479 t 480 NS216 480 t 481 NS271 481 t 482 NS272 482 t 483 NS300 483 t 484 NS308 484 t 485 NS340 485 t 486 NS356 486 t 487 NS371 487 t 488 NS376 488 t 489 NS57 489 t 490 NS602 490 t 491 NS622 491 t 492 NS701 492 t 493 NS717 493 t 494 NS720 494 t 495 NS80 495 t 496 NS909 496 t 497 NS928 497 t 498 NS963 498 t 499 SSRY1 499 t 500 SSRY100 500 t 501 SSRY101 501 t 502 SSRY104 502 t 503 SSRY107 503 t 504 SSRY109 504 t 505 SSRY119 505 t 506 SSRY12 506 t 507 SSRY13 507 t 508 SSRY135 508 t 509 SSRY148 509 t 510 SSRY153 510 t 511 SSRY155 511 t 512 SSRY165 512 t 513 SSRY169 513 t 514 SSRY174 514 t 515 SSRY179 515 t 516 SSRY181 516 t 517 SSRY182 517 t 518 SSRY184 518 t 519 SSRY185 519 t 520 SSRY19 520 t 521 SSRY191 521 t 522 SSRY200 522 t 523 SSRY219 523 t 524 SSRY220 524 t 525 SSRY230 525 t 526 SSRY233 526 t 527 SSRY238 527 t 528 SSRY240 528 t 529 SSRY250 529 t 530 SSRY251 530 t 531 SSRY26 531 t 532 SSRY262 532 t 533 SSRY27 533 t 534 SSRY272 534 t 535 SSRY28 535 t 536 SSRY282 536 t 537 SSRY295 537 t 538 SSRY303 538 t 539 SSRY309 539 t 540 SSRY311 540 t 541 SSRY316 541 t 542 SSRY328 542 t 543 SSRY331 543 t 544 SSRY337 544 t 545 SSRY38 545 t 546 SSRY4 546 t 547 SSRY44 547 t 548 SSRY52 548 t 549 SSRY53 549 t 550 SSRY55 550 t 551 SSRY57 551 t 552 SSRY6 552 t 553 SSRY60 553 t 554 SSRY66 554 t 555 SSRY67 555 t 556 SSRY69 556 t 557 SSRY75 557 t 558 SSRY76 558 t 559 SSRY78 559 t 560 SSRY79 560 t 561 SSRY81 561 t 562 SSRY83 562 t 563 SSRY84 563 t 564 SSRY9 564 t 565 SSRY92 565 t 566 SSRY94 566 t 567 SSRY98 567 t \. -- -- Data for Name: marker_collectible; Type: TABLE DATA; Schema: sgn; Owner: postgres -- COPY sgn.marker_collectible (marker_collectible_dummy_id, marker_id, mc_id) FROM stdin; \. -- -- Data for Name: marker_collection; Type: TABLE DATA; Schema: sgn; Owner: postgres -- COPY sgn.marker_collection (mc_id, mc_name, mc_description) FROM stdin; \. -- -- Data for Name: marker_confidence; Type: TABLE DATA; Schema: sgn; Owner: postgres -- COPY sgn.marker_confidence (confidence_id, confidence_name) FROM stdin; 1 uncalculated \. -- -- Data for Name: marker_derived_from; Type: TABLE DATA; Schema: sgn; Owner: postgres -- COPY sgn.marker_derived_from (marker_derived_dummy_id, marker_id, derived_from_source_id, id_in_source) FROM stdin; \. -- -- Data for Name: marker_experiment; Type: TABLE DATA; Schema: sgn; Owner: postgres -- COPY sgn.marker_experiment (marker_experiment_id, marker_id, pcr_experiment_id, rflp_experiment_id, location_id, protocol) FROM stdin; \. -- -- Data for Name: marker_location; Type: TABLE DATA; Schema: sgn; Owner: postgres -- COPY sgn.marker_location (location_id, lg_id, map_version_id, "position", confidence_id, subscript, position_north, position_south) FROM stdin; \. -- -- Data for Name: metadata; Type: TABLE DATA; Schema: sgn; Owner: postgres -- COPY sgn.metadata (metadata_id, create_date, create_person_id, modified_date, modified_person_id, previous_metadata_id, obsolete, obsolete_note) FROM stdin; \. -- -- Data for Name: microarray; Type: TABLE DATA; Schema: sgn; Owner: postgres -- COPY sgn.microarray (microarray_id, chip_name, release, version, spot_id, content_specific_tag, clone_id) FROM stdin; \. -- -- Data for Name: misc; Type: TABLE DATA; Schema: sgn; Owner: postgres -- COPY sgn.misc (misc_unique_id, misc_id, name, value) FROM stdin; \. -- -- Data for Name: organism; Type: TABLE DATA; Schema: sgn; Owner: postgres -- COPY sgn.organism (organism_id, organism_name, common_name_id, organism_descrip, specie_tax, genus_tax, subfamily_tax, family_tax, order_tax, chr_n_gnmc, polypl_gnmc, genom_size_gnmc, genom_proj_gnmc, est_attribution_tqmc, chado_organism_id) FROM stdin; \. -- -- Data for Name: organismgroup; Type: TABLE DATA; Schema: sgn; Owner: postgres -- COPY sgn.organismgroup (organismgroup_id, name, type) FROM stdin; \. -- -- Data for Name: organismgroup_member; Type: TABLE DATA; Schema: sgn; Owner: postgres -- COPY sgn.organismgroup_member (organismgroup_member_id, organismgroup_id, organism_id) FROM stdin; \. -- -- Data for Name: p_markers; Type: TABLE DATA; Schema: sgn; Owner: postgres -- COPY sgn.p_markers (pid, marker_id, est_clone_id, p_mrkr_name) FROM stdin; \. -- -- Data for Name: pcr_exp_accession; Type: TABLE DATA; Schema: sgn; Owner: postgres -- COPY sgn.pcr_exp_accession (pcr_exp_accession_id, pcr_experiment_id, accession_id, stock_id) FROM stdin; \. -- -- Data for Name: pcr_experiment; Type: TABLE DATA; Schema: sgn; Owner: postgres -- COPY sgn.pcr_experiment (pcr_experiment_id, marker_id, mg_concentration, annealing_temp, primer_id_fwd, primer_id_rev, subscript, experiment_type_id, map_id, additional_enzymes, primer_type, predicted, primer_id_pd, accession_id, stock_id) FROM stdin; \. -- -- Data for Name: pcr_experiment_sequence; Type: TABLE DATA; Schema: sgn; Owner: postgres -- COPY sgn.pcr_experiment_sequence (pcr_experiment_sequence_id, pcr_experiment_id, sequence_id, type_id) FROM stdin; \. -- -- Data for Name: pcr_product; Type: TABLE DATA; Schema: sgn; Owner: postgres -- COPY sgn.pcr_product (pcr_product_id, pcr_exp_accession_id, enzyme_id, multiple_flag, band_size, predicted) FROM stdin; \. -- -- Data for Name: primer_unigene_match; Type: TABLE DATA; Schema: sgn; Owner: postgres -- COPY sgn.primer_unigene_match (primer_unigene_match_id, marker_id, unigene_id, primer_direction, match_length, primer_match_start, primer_match_end, unigene_match_start, unigene_match_end, e_value) FROM stdin; \. -- -- Data for Name: qc_report; Type: TABLE DATA; Schema: sgn; Owner: postgres -- COPY sgn.qc_report (qc_id, est_id, basecaller, qc_status, vs_status, qstart, qend, istart, iend, hqi_start, hqi_length, entropy, expected_error, quality_trim_threshold, vector_tokens) FROM stdin; \. -- -- Data for Name: rflp_markers; Type: TABLE DATA; Schema: sgn; Owner: postgres -- COPY sgn.rflp_markers (rflp_id, marker_id, rflp_name, library_name, clone_name, vector, cutting_site, forward_seq_id, reverse_seq_id, insert_size, drug_resistance, marker_prefix, marker_suffix) FROM stdin; \. -- -- Data for Name: rflp_sequences; Type: TABLE DATA; Schema: sgn; Owner: postgres -- COPY sgn.rflp_sequences (seq_id, fasta_sequence) FROM stdin; \. -- -- Data for Name: rflp_unigene_associations; Type: TABLE DATA; Schema: sgn; Owner: postgres -- COPY sgn.rflp_unigene_associations (rflp_unigene_assoc_id, rflp_seq_id, unigene_id, e_val, align_length, query_start, query_end) FROM stdin; \. -- -- Data for Name: seqread; Type: TABLE DATA; Schema: sgn; Owner: postgres -- COPY sgn.seqread (read_id, clone_id, facility_id, submitter_id, batch_id, primer, direction, trace_name, trace_location, attribution_id, date, censor_id) FROM stdin; \. -- -- Data for Name: sequence; Type: TABLE DATA; Schema: sgn; Owner: postgres -- COPY sgn.sequence (sequence_id, sequence) FROM stdin; \. -- -- Data for Name: snp; Type: TABLE DATA; Schema: sgn; Owner: postgres -- COPY sgn.snp (snp_id, marker_id, reference_nucleotide, snp_nucleotide, confirmed, sequence_left_id, sequence_right_id, reference_stock_id, stock_id, metadata_id) FROM stdin; \. -- -- Data for Name: snp_file; Type: TABLE DATA; Schema: sgn; Owner: postgres -- COPY sgn.snp_file (snp_file_id, snp_id, file_id) FROM stdin; \. -- -- Data for Name: snpprop; Type: TABLE DATA; Schema: sgn; Owner: postgres -- COPY sgn.snpprop (snpprop_id, snp_id, value, rank, type_id) FROM stdin; \. -- -- Data for Name: ssr; Type: TABLE DATA; Schema: sgn; Owner: postgres -- COPY sgn.ssr (ssr_id, marker_id, ssr_name, est_read_id, start_primer, end_primer, pcr_product_ln, tm_start_primer, tm_end_primer, ann_high, ann_low) FROM stdin; \. -- -- Data for Name: ssr_primer_unigene_matches; Type: TABLE DATA; Schema: sgn; Owner: postgres -- COPY sgn.ssr_primer_unigene_matches (ssr_primer_unigene_match_id, ssr_id, unigene_id, primer_direction, match_length, primer_match_start, primer_match_end, unigene_match_start, unigene_match_end, e_value) FROM stdin; \. -- -- Data for Name: ssr_repeats; Type: TABLE DATA; Schema: sgn; Owner: postgres -- COPY sgn.ssr_repeats (repeat_id, ssr_id, repeat_motif, reapeat_nr, marker_id) FROM stdin; \. -- -- Data for Name: submit_user; Type: TABLE DATA; Schema: sgn; Owner: postgres -- COPY sgn.submit_user (submit_user_id, submit_code, username, password, name, email_address, phone_number, organization, contact_information, disabled, confirm_code, sp_person_id) FROM stdin; \. -- -- Data for Name: taxonomy; Type: TABLE DATA; Schema: sgn; Owner: postgres -- COPY sgn.taxonomy (tax_id, tax_name, tax_type) FROM stdin; \. -- -- Data for Name: temp_caps_correspondence; Type: TABLE DATA; Schema: sgn; Owner: postgres -- COPY sgn.temp_caps_correspondence (tcc_id, old_marker_id, new_marker_id) FROM stdin; \. -- -- Data for Name: temp_map_correspondence; Type: TABLE DATA; Schema: sgn; Owner: postgres -- COPY sgn.temp_map_correspondence (tmc_id, old_map_id, map_version_id) FROM stdin; \. -- -- Data for Name: temp_marker_correspondence; Type: TABLE DATA; Schema: sgn; Owner: postgres -- COPY sgn.temp_marker_correspondence (tmc_id, old_marker_id, new_marker_id) FROM stdin; \. -- -- Data for Name: tigrtc_index; Type: TABLE DATA; Schema: sgn; Owner: postgres -- COPY sgn.tigrtc_index (tcindex_id, index_name) FROM stdin; \. -- -- Data for Name: tigrtc_membership; Type: TABLE DATA; Schema: sgn; Owner: postgres -- COPY sgn.tigrtc_membership (tigrtc_membership_id, tc_id, tcindex_id, read_id) FROM stdin; \. -- -- Data for Name: tigrtc_tracking; Type: TABLE DATA; Schema: sgn; Owner: postgres -- COPY sgn.tigrtc_tracking (tigrtc_tracking_id, tc_id, current_tc_id, tcindex_id) FROM stdin; \. -- -- Data for Name: tm_markers; Type: TABLE DATA; Schema: sgn; Owner: postgres -- COPY sgn.tm_markers (tm_id, marker_id, tm_name, old_cos_id, seq_id, est_read_id, comment) FROM stdin; \. -- -- Data for Name: tm_markers_sequences; Type: TABLE DATA; Schema: sgn; Owner: postgres -- COPY sgn.tm_markers_sequences (tm_marker_seq_id, tm_id, sequence, comment) FROM stdin; \. -- -- Data for Name: trim_feature; Type: TABLE DATA; Schema: sgn; Owner: postgres -- COPY sgn.trim_feature (feature_id, est_id, start, "end", type, value) FROM stdin; \. -- -- Data for Name: trim_feature_types; Type: TABLE DATA; Schema: sgn; Owner: postgres -- COPY sgn.trim_feature_types (trim_type_id, comment) FROM stdin; \. -- -- Data for Name: types; Type: TABLE DATA; Schema: sgn; Owner: postgres -- COPY sgn.types (type_id, comment) FROM stdin; \. -- -- Data for Name: unigene; Type: TABLE DATA; Schema: sgn; Owner: postgres -- COPY sgn.unigene (unigene_id, unigene_build_id, consensi_id, cluster_no, contig_no, nr_members, database_name, sequence_name) FROM stdin; \. -- -- Data for Name: unigene_build; Type: TABLE DATA; Schema: sgn; Owner: postgres -- COPY sgn.unigene_build (unigene_build_id, source_data_group_id, organism_group_id, build_nr, build_date, method_id, status, comment, superseding_build_id, next_build_id, latest_build_id, blast_db_id) FROM stdin; \. -- -- Data for Name: unigene_consensi; Type: TABLE DATA; Schema: sgn; Owner: postgres -- COPY sgn.unigene_consensi (consensi_id, seq, qscores) FROM stdin; \. -- -- Data for Name: unigene_member; Type: TABLE DATA; Schema: sgn; Owner: postgres -- COPY sgn.unigene_member (unigene_member_id, unigene_id, est_id, start, stop, qstart, qend, dir) FROM stdin; \. -- -- Data for Name: bac_status; Type: TABLE DATA; Schema: sgn_people; Owner: postgres -- COPY sgn_people.bac_status (bac_status_id, bac_id, person_id, status, genbank_status, "timestamp") FROM stdin; \. -- -- Data for Name: bac_status_log; Type: TABLE DATA; Schema: sgn_people; Owner: postgres -- COPY sgn_people.bac_status_log (bac_status_log_id, bac_id, person_id, status, genbank_status, "timestamp") FROM stdin; \. -- -- Data for Name: clone_il_mapping_bin_log; Type: TABLE DATA; Schema: sgn_people; Owner: postgres -- COPY sgn_people.clone_il_mapping_bin_log (sp_clone_il_mapping_bin_log_id, genotype_region_id, sp_person_id, clone_id, is_current, created, chromosome, notes) FROM stdin; \. -- -- Data for Name: clone_validation_log; Type: TABLE DATA; Schema: sgn_people; Owner: postgres -- COPY sgn_people.clone_validation_log (clone_validation_log_id, sp_person_id, clone_id, val_overgo, val_bac_ends, is_current, created) FROM stdin; \. -- -- Data for Name: clone_verification_log; Type: TABLE DATA; Schema: sgn_people; Owner: postgres -- COPY sgn_people.clone_verification_log (clone_verification_log_id, sp_person_id, clone_id, ver_int_read, ver_bac_end, is_current, created) FROM stdin; \. -- -- Data for Name: forum_post; Type: TABLE DATA; Schema: sgn_people; Owner: postgres -- COPY sgn_people.forum_post (forum_post_id, person_id, post_text, parent_post_id, forum_topic_id, subject, post_time) FROM stdin; \. -- -- Data for Name: forum_topic; Type: TABLE DATA; Schema: sgn_people; Owner: postgres -- COPY sgn_people.forum_topic (forum_topic_id, person_id, topic_name, parent_topic, topic_class, page_type, page_object_id, topic_description, sort_order) FROM stdin; \. -- -- Data for Name: list; Type: TABLE DATA; Schema: sgn_people; Owner: postgres -- COPY sgn_people.list (list_id, is_hotlist, sent_by, name, description, owner, type_id, is_public) FROM stdin; 3 f \N test_stocks \N 41 76451 f 4 f \N test_list \N 40 76451 f 5 f \N accessions_for_solgs_tests \N 41 76451 f 6 f \N accessions_for_trial2 \N 41 76451 f 7 f \N selection_acc \N 41 \N f 808 f \N johndoe_1_public \N 40 \N t 809 f \N janedoe_1_public \N 41 \N t 810 f \N johndoe_1_private \N 40 \N f 811 f \N janedoe_1_private \N 41 \N f 8 f \N trial2 NaCRRI plots \N 40 76450 f 9 f \N trial2 NaCRRI clones \N 40 76451 f 10 f \N Trials list \N 40 76453 f 11 f \N accessions2add \N 40 76451 f 12 f \N desynonymize_test_list \N 41 76451 f 13 f \N traits \N 41 76455 f 14 f \N test_accession_list Adds the first accession to database 43 76451 f \. -- -- Data for Name: list_item; Type: TABLE DATA; Schema: sgn_people; Owner: postgres -- COPY sgn_people.list_item (list_item_id, content, list_id) FROM stdin; 11 test_accession4 3 12 test_accession5 3 16 test_accession1 3 17 test_accession2 3 18 test_accession3 3 19 test_accession1 4 20 test_accession2 4 21 test_accession3 4 22 test_accession4 4 23 test_accession5 4 24 UG120001 5 25 UG120002 5 26 UG120003 5 27 UG120004 5 28 UG120005 5 29 UG120006 5 30 UG120007 5 31 UG120008 5 32 UG120009 5 33 UG120010 5 34 UG120011 5 35 UG120012 5 36 UG120013 5 37 UG120014 5 38 UG120015 5 39 UG120016 5 40 UG120017 5 41 UG120018 5 42 UG120019 5 43 UG120020 5 44 UG120021 5 45 UG120022 5 46 UG120023 5 47 UG120024 5 48 UG120025 5 49 UG120026 5 50 UG120027 5 51 UG120028 5 52 UG120029 5 53 UG120030 5 54 UG120031 5 55 UG120032 5 56 UG120033 5 57 UG120034 5 58 UG120035 5 59 UG120036 5 60 UG120037 5 61 UG120038 5 62 UG120039 5 63 UG120040 5 64 UG120042 5 65 UG120043 5 66 UG120044 5 67 UG120046 5 68 UG120048 5 69 UG120049 5 70 UG120051 5 71 UG120053 5 72 UG120054 5 73 UG120055 5 74 UG120057 5 75 UG120058 5 76 UG120059 5 77 UG120060 5 78 UG120061 5 79 UG120062 5 80 UG120063 5 81 UG120064 5 82 UG120065 5 83 UG120066 5 84 UG120067 5 85 UG120069 5 86 UG120070 5 87 UG120071 5 88 UG120072 5 89 UG120073 5 90 UG120074 5 91 UG120076 5 92 UG120077 5 93 UG120078 5 94 UG120079 5 95 UG120080 5 96 UG120081 5 97 UG120082 5 98 UG120084 5 99 UG120085 5 100 UG120086 5 101 UG120087 5 102 UG120088 5 103 UG120089 5 104 UG120090 5 105 UG120091 5 106 UG120092 5 107 UG120093 5 108 UG120095 5 109 UG120096 5 110 UG120097 5 111 UG120098 5 112 UG120099 5 113 UG120100 5 114 UG120101 5 115 UG120102 5 116 UG120103 5 117 UG120105 5 118 UG120106 5 119 UG120107 5 120 UG120108 5 121 UG120109 5 122 UG120111 5 123 UG120113 5 124 UG120115 5 125 UG120116 5 126 UG120117 5 127 UG120120 5 128 UG120121 5 129 UG120122 5 130 UG120124 5 131 UG120126 5 132 UG120127 5 133 UG120128 5 134 UG120132 5 135 UG120133 5 136 UG120134 5 137 UG120135 5 138 UG120137 5 139 UG120138 5 140 UG120139 5 141 UG120141 5 142 UG120143 5 143 UG120144 5 144 UG120145 5 145 UG120146 5 146 UG120148 5 147 UG120149 5 148 UG120150 5 149 UG120151 5 150 UG120152 5 151 UG120153 5 152 UG120154 5 153 UG120156 5 154 UG120157 5 155 UG120158 5 156 UG120160 5 157 UG120161 5 158 UG120162 5 159 UG120163 5 160 UG120164 5 161 UG120165 5 162 UG120166 5 163 UG120167 5 164 UG120169 5 165 UG120170 5 166 UG120171 5 167 UG120172 5 168 UG120173 5 169 UG120174 5 170 UG120175 5 171 UG120176 5 172 UG120177 5 173 UG120178 5 174 UG120179 5 175 UG120181 5 176 UG120182 5 177 UG120183 5 178 UG120184 5 179 UG120185 5 180 UG120186 5 181 UG120187 5 182 UG120188 5 183 UG120189 5 184 UG120190 5 185 UG120191 5 186 UG120192 5 187 UG120193 5 188 UG120194 5 189 UG120195 5 190 UG120196 5 191 UG120197 5 192 UG120198 5 193 UG120199 5 194 UG120201 5 195 UG120202 5 196 UG120205 5 197 UG120206 5 198 UG120207 5 199 UG120208 5 200 UG120210 5 201 UG120211 5 202 UG120213 5 203 UG120215 5 204 UG120216 5 205 UG120218 5 206 UG120219 5 207 UG120220 5 208 UG120221 5 209 UG120222 5 210 UG120223 5 211 UG120224 5 212 UG120225 5 213 UG120226 5 214 UG120227 5 215 UG120228 5 216 UG120229 5 217 UG120230 5 218 UG120231 5 219 UG120232 5 220 UG120234 5 221 UG120235 5 222 UG120238 5 223 UG120239 5 224 UG120240 5 225 UG120242 5 226 UG120243 5 227 UG120244 5 228 UG120245 5 229 UG120246 5 230 UG120247 5 231 UG120248 5 232 UG120250 5 233 UG120251 5 234 UG120253 5 235 UG120254 5 236 UG120255 5 237 UG120256 5 238 UG120257 5 239 UG120258 5 240 UG120260 5 241 UG120261 5 242 UG120262 5 243 UG120264 5 244 UG120265 5 245 UG120266 5 246 UG120267 5 247 UG120268 5 248 UG120269 5 249 UG120270 5 250 UG120272 5 251 UG120273 5 252 UG120274 5 253 UG120276 5 254 UG120277 5 255 UG120278 5 256 UG120279 5 257 UG120280 5 258 UG120283 5 259 UG120284 5 260 UG120286 5 261 UG120287 5 262 UG120288 5 263 UG120289 5 264 UG120290 5 265 UG120291 5 266 UG120292 5 267 UG120293 5 268 UG120296 5 269 UG120297 5 270 UG120298 5 271 UG120299 5 272 UG120300 5 273 UG120301 5 274 UG120303 5 275 UG120305 5 276 UG120306 5 277 UG120307 5 278 UG130001 5 279 UG130002 5 280 UG130003 5 281 UG130004 5 282 UG130005 5 283 UG130006 5 284 UG130007 5 285 UG130008 5 286 UG130009 5 287 UG130010 5 288 UG130011 5 289 UG130012 5 290 UG130013 5 291 UG130017 5 292 UG130018 5 293 UG130019 5 294 UG130020 5 295 UG130021 5 296 UG130022 5 297 UG130023 5 298 UG130024 5 299 UG130025 5 300 UG130026 5 301 UG130028 5 302 UG130029 5 303 UG130030 5 304 UG130031 5 305 UG130032 5 306 UG130033 5 307 UG130034 5 308 UG130035 5 309 UG130036 5 310 UG130037 5 311 UG130038 5 312 UG130040 5 313 UG130042 5 314 UG130043 5 315 UG130044 5 316 UG130045 5 317 UG130046 5 318 UG130047 5 319 UG130049 5 320 UG130050 5 321 UG130051 5 322 UG130052 5 323 UG130056 5 324 UG130057 5 325 UG130058 5 326 UG130059 5 327 UG130060 5 328 UG130061 5 329 UG130062 5 330 UG130063 5 331 UG130065 5 332 UG130066 5 333 UG130067 5 334 UG130068 5 335 UG130069 5 336 UG130070 5 337 UG130071 5 338 UG130073 5 339 UG130074 5 340 UG130076 5 341 UG130077 5 342 UG130078 5 343 UG130080 5 344 UG130081 5 345 UG130082 5 346 UG130083 5 347 UG130085 5 348 UG130086 5 349 UG130087 5 350 UG130088 5 351 UG130089 5 352 UG130090 5 353 UG130091 5 354 UG130092 5 355 UG130093 5 356 UG130094 5 357 UG130095 5 358 UG130096 5 359 UG130097 5 360 UG130098 5 361 UG130099 5 362 UG130100 5 363 UG130101 5 364 UG130102 5 365 UG130103 5 366 UG130104 5 367 UG130105 5 368 UG130106 5 369 UG130107 5 370 UG130108 5 371 UG130109 5 372 UG130110 5 373 UG130111 5 374 UG130113 5 375 UG130114 5 376 UG130116 5 377 UG130117 5 378 UG130118 5 379 UG130119 5 380 UG130120 5 381 UG130121 5 382 UG130122 5 383 UG130123 5 384 UG130124 5 385 UG130125 5 386 UG130126 5 387 UG130128 5 388 UG130131 5 389 UG130133 5 390 UG130135 5 391 UG130136 5 392 UG130137 5 393 UG130139 5 394 UG130140 5 395 UG130143 5 396 UG130144 5 397 UG130145 5 398 UG120001 6 399 UG120002 6 400 UG120003 6 401 UG120004 6 402 UG120005 6 403 UG120006 6 404 UG120007 6 405 UG120008 6 406 UG120009 6 407 UG120010 6 408 UG120011 6 409 UG120012 6 410 UG120013 6 411 UG120014 6 412 UG120015 6 413 UG120016 6 414 UG120017 6 415 UG120018 6 416 UG120019 6 417 UG120020 6 418 UG120021 6 419 UG120022 6 420 UG120023 6 421 UG120024 6 422 UG120025 6 423 UG120026 6 424 UG120027 6 425 UG120028 6 426 UG120029 6 427 UG120030 6 428 UG120031 6 429 UG120032 6 430 UG120033 6 431 UG120034 6 432 UG120035 6 433 UG120036 6 434 UG120037 6 435 UG120038 6 436 UG120039 6 437 UG120040 6 438 UG120041 6 439 UG120042 6 440 UG120043 6 441 UG120044 6 442 UG120045 6 443 UG120046 6 444 UG120047 6 445 UG120048 6 446 UG120049 6 447 UG120050 6 448 UG120051 6 449 UG120052 6 450 UG120053 6 451 UG120054 6 452 UG120055 6 453 UG120056 6 454 UG120057 6 455 UG120058 6 456 UG120059 6 457 UG120060 6 458 UG120061 6 459 UG120062 6 460 UG120063 6 461 UG120064 6 462 UG120065 6 463 UG120066 6 464 UG120067 6 465 UG120068 6 466 UG120069 6 467 UG120070 6 468 UG120071 6 469 UG120072 6 470 UG120073 6 471 UG120074 6 472 UG120075 6 473 UG120076 6 474 UG120077 6 475 UG120078 6 476 UG120079 6 477 UG120080 6 478 UG120081 6 479 UG120082 6 480 UG120083 6 481 UG120084 6 482 UG120085 6 483 UG120086 6 484 UG120087 6 485 UG120088 6 486 UG120089 6 487 UG120090 6 488 UG120091 6 489 UG120092 6 490 UG120093 6 491 UG120094 6 492 UG120095 6 493 UG120096 6 494 UG120097 6 495 UG120098 6 496 UG120099 6 497 UG120100 6 498 UG120101 6 499 UG120102 6 500 UG120103 6 501 UG120104 6 502 UG120105 6 503 UG120106 6 504 UG120107 6 505 UG120108 6 506 UG120109 6 507 UG120110 6 508 UG120111 6 509 UG120112 6 510 UG120113 6 511 UG120114 6 512 UG120115 6 513 UG120116 6 514 UG120117 6 515 UG120118 6 516 UG120119 6 517 UG120120 6 518 UG120121 6 519 UG120122 6 520 UG120123 6 521 UG120124 6 522 UG120125 6 523 UG120126 6 524 UG120127 6 525 UG120128 6 526 UG120129 6 527 UG120130 6 528 UG120131 6 529 UG120132 6 530 UG120133 6 531 UG120134 6 532 UG120135 6 533 UG120136 6 534 UG120137 6 535 UG120138 6 536 UG120139 6 537 UG120140 6 538 UG120141 6 539 UG120142 6 540 UG120143 6 541 UG120144 6 542 UG120145 6 543 UG120146 6 544 UG120147 6 545 UG120148 6 546 UG120149 6 547 UG120150 6 548 UG120151 6 549 UG120152 6 550 UG120153 6 551 UG120154 6 552 UG120155 6 553 UG120156 6 554 UG120157 6 555 UG120158 6 556 UG120159 6 557 UG120160 6 558 UG120161 6 559 UG120162 6 560 UG120163 6 561 UG120164 6 562 UG120165 6 563 UG120166 6 564 UG120167 6 565 UG120168 6 566 UG120169 6 567 UG120170 6 568 UG120171 6 569 UG120172 6 570 UG120173 6 571 UG120174 6 572 UG120175 6 573 UG120176 6 574 UG120177 6 575 UG120178 6 576 UG120179 6 577 UG120180 6 578 UG120181 6 579 UG120182 6 580 UG120183 6 581 UG120184 6 582 UG120185 6 583 UG120186 6 584 UG120187 6 585 UG120188 6 586 UG120189 6 587 UG120190 6 588 UG120191 6 589 UG120192 6 590 UG120193 6 591 UG120194 6 592 UG120195 6 593 UG120196 6 594 UG120197 6 595 UG120198 6 596 UG120199 6 597 UG120200 6 598 UG120201 6 599 UG120202 6 600 UG120203 6 601 UG120204 6 602 UG120205 6 603 UG120206 6 604 UG120207 6 605 UG120208 6 606 UG120209 6 607 UG120210 6 608 UG120211 6 609 UG120212 6 610 UG120213 6 611 UG120214 6 612 UG120215 6 613 UG120216 6 614 UG120217 6 615 UG120218 6 616 UG120219 6 617 UG120220 6 618 UG120221 6 619 UG120222 6 620 UG120223 6 621 UG120224 6 622 UG120225 6 623 UG120226 6 624 UG120227 6 625 UG120228 6 626 UG120229 6 627 UG120230 6 628 UG120231 6 629 UG120232 6 630 UG120233 6 631 UG120234 6 632 UG120235 6 633 UG120236 6 634 UG120237 6 635 UG120238 6 636 UG120239 6 637 UG120240 6 638 UG120241 6 639 UG120242 6 640 UG120243 6 641 UG120244 6 642 UG120245 6 643 UG120246 6 644 UG120247 6 645 UG120248 6 646 UG120249 6 647 UG120250 6 648 UG120251 6 649 UG120252 6 650 UG120253 6 651 UG120254 6 652 UG120255 6 653 UG120256 6 654 UG120257 6 655 UG120258 6 656 UG120259 6 657 UG120260 6 658 UG120261 6 659 UG120262 6 660 UG120263 6 661 UG120264 6 662 UG120265 6 663 UG120266 6 664 UG120267 6 665 UG120268 6 666 UG120269 6 667 UG120270 6 668 UG120271 6 669 UG120272 6 670 UG120273 6 671 UG120274 6 672 UG120275 6 673 UG120276 6 674 UG120277 6 675 UG120278 6 676 UG120279 6 677 UG120280 6 678 UG120281 6 679 UG120282 6 680 UG120283 6 681 UG120284 6 682 UG120285 6 683 UG120286 6 684 UG120287 6 685 UG120288 6 686 UG120289 6 687 UG120290 6 688 UG120291 6 689 UG120292 6 690 UG120293 6 691 UG120294 6 692 UG120295 6 693 UG120296 6 694 UG120297 6 695 UG120298 6 696 UG120299 6 697 UG120300 6 698 UG120301 6 699 UG120303 6 700 UG120304 6 701 UG120305 6 702 UG120306 6 703 UG120307 6 704 UG120308 6 705 XG120113 7 706 XG120073 7 707 XG120123 7 708 XG120131 7 709 XG120261 7 710 XG120068 7 711 XG120251 7 712 XG120198 7 713 XG120021 7 714 XG120221 7 715 XG120273 7 716 XG120015 7 717 XG120030 7 718 XG120171 7 719 XG120287 7 720 XG120155 7 721 XG120061 7 722 XG120104 7 723 XG120071 7 724 XG120083 7 800 test_accession1 808 801 test_accession2 808 802 item1 809 803 item2 809 804 test1 810 805 test2 810 806 item11 811 807 item12 811 808 UG120001_block:1_plot:TP1_2012_NaCRRI 8 809 UG120002_block:1_plot:TP2_2012_NaCRRI 8 810 UG120003_block:1_plot:TP3_2012_NaCRRI 8 811 UG120004_block:1_plot:TP4_2012_NaCRRI 8 812 UG120005_block:1_plot:TP5_2012_NaCRRI 8 813 UG120006_block:1_plot:TP6_2012_NaCRRI 8 814 UG120007_block:1_plot:TP7_2012_NaCRRI 8 815 UG120008_block:1_plot:TP8_2012_NaCRRI 8 816 UG120009_block:1_plot:TP9_2012_NaCRRI 8 817 UG120010_block:1_plot:TP10_2012_NaCRRI 8 818 UG120011_block:1_plot:TP11_2012_NaCRRI 8 819 UG120012_block:1_plot:TP12_2012_NaCRRI 8 820 UG120013_block:1_plot:TP13_2012_NaCRRI 8 821 UG120014_block:1_plot:TP14_2012_NaCRRI 8 822 UG120015_block:1_plot:TP15_2012_NaCRRI 8 823 UG120016_block:1_plot:TP16_2012_NaCRRI 8 824 UG120017_block:1_plot:TP17_2012_NaCRRI 8 825 UG120018_block:1_plot:TP18_2012_NaCRRI 8 826 UG120019_block:1_plot:TP19_2012_NaCRRI 8 827 UG120020_block:1_plot:TP20_2012_NaCRRI 8 828 UG120021_block:1_plot:TP21_2012_NaCRRI 8 829 UG120022_block:1_plot:TP22_2012_NaCRRI 8 830 UG120023_block:2_plot:TP23_2012_NaCRRI 8 831 UG120024_block:2_plot:TP24_2012_NaCRRI 8 832 UG120025_block:2_plot:TP25_2012_NaCRRI 8 833 UG120026_block:2_plot:TP26_2012_NaCRRI 8 834 UG120027_block:2_plot:TP27_2012_NaCRRI 8 835 UG120028_block:2_plot:TP28_2012_NaCRRI 8 836 UG120029_block:2_plot:TP29_2012_NaCRRI 8 837 UG120030_block:2_plot:TP30_2012_NaCRRI 8 838 UG120031_block:2_plot:TP31_2012_NaCRRI 8 839 UG120032_block:2_plot:TP32_2012_NaCRRI 8 840 UG120033_block:2_plot:TP33_2012_NaCRRI 8 841 UG120034_block:2_plot:TP34_2012_NaCRRI 8 842 UG120035_block:2_plot:TP35_2012_NaCRRI 8 843 UG120036_block:2_plot:TP36_2012_NaCRRI 8 844 UG120037_block:2_plot:TP37_2012_NaCRRI 8 845 UG120038_block:2_plot:TP38_2012_NaCRRI 8 846 UG120039_block:2_plot:TP39_2012_NaCRRI 8 847 UG120040_block:2_plot:TP40_2012_NaCRRI 8 848 UG120041_block:2_plot:TP41_2012_NaCRRI 8 849 UG120042_block:2_plot:TP42_2012_NaCRRI 8 850 UG120043_block:2_plot:TP43_2012_NaCRRI 8 851 UG120044_block:2_plot:TP44_2012_NaCRRI 8 852 UG120045_block:3_plot:TP45_2012_NaCRRI 8 853 UG120046_block:3_plot:TP46_2012_NaCRRI 8 854 UG120047_block:3_plot:TP47_2012_NaCRRI 8 855 UG120048_block:3_plot:TP48_2012_NaCRRI 8 856 UG120049_block:3_plot:TP49_2012_NaCRRI 8 857 UG120050_block:3_plot:TP50_2012_NaCRRI 8 858 UG120051_block:3_plot:TP51_2012_NaCRRI 8 859 UG120052_block:3_plot:TP52_2012_NaCRRI 8 860 UG120053_block:3_plot:TP53_2012_NaCRRI 8 861 UG120054_block:3_plot:TP54_2012_NaCRRI 8 862 UG120055_block:3_plot:TP55_2012_NaCRRI 8 863 UG120056_block:3_plot:TP56_2012_NaCRRI 8 864 UG120057_block:3_plot:TP57_2012_NaCRRI 8 865 UG120058_block:3_plot:TP58_2012_NaCRRI 8 866 UG120059_block:3_plot:TP59_2012_NaCRRI 8 867 UG120060_block:3_plot:TP60_2012_NaCRRI 8 868 UG120061_block:3_plot:TP61_2012_NaCRRI 8 1143 UG120029 9 869 UG120062_block:3_plot:TP62_2012_NaCRRI 8 870 UG120063_block:3_plot:TP63_2012_NaCRRI 8 871 UG120064_block:3_plot:TP64_2012_NaCRRI 8 872 UG120065_block:3_plot:TP65_2012_NaCRRI 8 873 UG120066_block:3_plot:TP66_2012_NaCRRI 8 874 UG120067_block:4_plot:TP67_2012_NaCRRI 8 875 UG120068_block:4_plot:TP68_2012_NaCRRI 8 876 UG120069_block:4_plot:TP69_2012_NaCRRI 8 877 UG120070_block:4_plot:TP70_2012_NaCRRI 8 878 UG120071_block:4_plot:TP71_2012_NaCRRI 8 879 UG120072_block:4_plot:TP72_2012_NaCRRI 8 880 UG120073_block:4_plot:TP73_2012_NaCRRI 8 881 UG120074_block:4_plot:TP74_2012_NaCRRI 8 882 UG120075_block:4_plot:TP75_2012_NaCRRI 8 883 UG120076_block:4_plot:TP76_2012_NaCRRI 8 884 UG120077_block:4_plot:TP77_2012_NaCRRI 8 885 UG120078_block:4_plot:TP78_2012_NaCRRI 8 886 UG120079_block:4_plot:TP79_2012_NaCRRI 8 887 UG120080_block:4_plot:TP80_2012_NaCRRI 8 888 UG120081_block:4_plot:TP81_2012_NaCRRI 8 889 UG120082_block:4_plot:TP82_2012_NaCRRI 8 890 UG120083_block:4_plot:TP83_2012_NaCRRI 8 891 UG120084_block:4_plot:TP84_2012_NaCRRI 8 892 UG120085_block:4_plot:TP85_2012_NaCRRI 8 893 UG120086_block:4_plot:TP86_2012_NaCRRI 8 894 UG120087_block:4_plot:TP87_2012_NaCRRI 8 895 UG120088_block:4_plot:TP88_2012_NaCRRI 8 896 UG120089_block:5_plot:TP89_2012_NaCRRI 8 897 UG120090_block:5_plot:TP90_2012_NaCRRI 8 898 UG120091_block:5_plot:TP91_2012_NaCRRI 8 899 UG120092_block:5_plot:TP92_2012_NaCRRI 8 900 UG120093_block:5_plot:TP93_2012_NaCRRI 8 901 UG120094_block:5_plot:TP94_2012_NaCRRI 8 902 UG120095_block:5_plot:TP95_2012_NaCRRI 8 903 UG120096_block:5_plot:TP96_2012_NaCRRI 8 904 UG120097_block:5_plot:TP97_2012_NaCRRI 8 905 UG120098_block:5_plot:TP98_2012_NaCRRI 8 906 UG120099_block:5_plot:TP99_2012_NaCRRI 8 907 UG120100_block:5_plot:TP100_2012_NaCRRI 8 908 UG120101_block:5_plot:TP101_2012_NaCRRI 8 909 UG120102_block:5_plot:TP102_2012_NaCRRI 8 910 UG120103_block:5_plot:TP103_2012_NaCRRI 8 911 UG120104_block:5_plot:TP104_2012_NaCRRI 8 912 UG120105_block:5_plot:TP105_2012_NaCRRI 8 913 UG120106_block:5_plot:TP106_2012_NaCRRI 8 914 UG120107_block:5_plot:TP107_2012_NaCRRI 8 915 UG120108_block:5_plot:TP108_2012_NaCRRI 8 916 UG120109_block:5_plot:TP109_2012_NaCRRI 8 917 UG120110_block:5_plot:TP110_2012_NaCRRI 8 918 UG120111_block:6_plot:TP111_2012_NaCRRI 8 919 UG120112_block:6_plot:TP112_2012_NaCRRI 8 920 UG120113_block:6_plot:TP113_2012_NaCRRI 8 921 UG120114_block:6_plot:TP114_2012_NaCRRI 8 922 UG120115_block:6_plot:TP115_2012_NaCRRI 8 923 UG120116_block:6_plot:TP116_2012_NaCRRI 8 924 UG120117_block:6_plot:TP117_2012_NaCRRI 8 925 UG120118_block:6_plot:TP118_2012_NaCRRI 8 926 UG120119_block:6_plot:TP119_2012_NaCRRI 8 927 UG120120_block:6_plot:TP120_2012_NaCRRI 8 928 UG120121_block:6_plot:TP121_2012_NaCRRI 8 929 UG120122_block:6_plot:TP122_2012_NaCRRI 8 930 UG120123_block:6_plot:TP123_2012_NaCRRI 8 931 UG120124_block:6_plot:TP124_2012_NaCRRI 8 932 UG120125_block:6_plot:TP125_2012_NaCRRI 8 933 UG120126_block:6_plot:TP126_2012_NaCRRI 8 934 UG120127_block:6_plot:TP127_2012_NaCRRI 8 935 UG120128_block:6_plot:TP128_2012_NaCRRI 8 936 UG120129_block:6_plot:TP129_2012_NaCRRI 8 937 UG120130_block:6_plot:TP130_2012_NaCRRI 8 938 UG120131_block:6_plot:TP131_2012_NaCRRI 8 939 UG120132_block:6_plot:TP132_2012_NaCRRI 8 940 UG120133_block:7_plot:TP133_2012_NaCRRI 8 941 UG120134_block:7_plot:TP134_2012_NaCRRI 8 942 UG120135_block:7_plot:TP135_2012_NaCRRI 8 943 UG120136_block:7_plot:TP136_2012_NaCRRI 8 944 UG120137_block:7_plot:TP137_2012_NaCRRI 8 945 UG120138_block:7_plot:TP138_2012_NaCRRI 8 946 UG120139_block:7_plot:TP139_2012_NaCRRI 8 947 UG120140_block:7_plot:TP140_2012_NaCRRI 8 948 UG120141_block:7_plot:TP141_2012_NaCRRI 8 949 UG120142_block:7_plot:TP142_2012_NaCRRI 8 950 UG120143_block:7_plot:TP143_2012_NaCRRI 8 951 UG120144_block:7_plot:TP144_2012_NaCRRI 8 952 UG120145_block:7_plot:TP145_2012_NaCRRI 8 953 UG120146_block:7_plot:TP146_2012_NaCRRI 8 954 UG120147_block:7_plot:TP147_2012_NaCRRI 8 955 UG120148_block:7_plot:TP148_2012_NaCRRI 8 956 UG120149_block:7_plot:TP149_2012_NaCRRI 8 1144 UG120030 9 957 UG120150_block:7_plot:TP150_2012_NaCRRI 8 958 UG120151_block:7_plot:TP151_2012_NaCRRI 8 959 UG120152_block:7_plot:TP152_2012_NaCRRI 8 960 UG120153_block:7_plot:TP153_2012_NaCRRI 8 961 UG120154_block:7_plot:TP154_2012_NaCRRI 8 962 UG120155_block:8_plot:TP155_2012_NaCRRI 8 963 UG120156_block:8_plot:TP156_2012_NaCRRI 8 964 UG120157_block:8_plot:TP157_2012_NaCRRI 8 965 UG120158_block:8_plot:TP158_2012_NaCRRI 8 966 UG120159_block:8_plot:TP159_2012_NaCRRI 8 967 UG120160_block:8_plot:TP160_2012_NaCRRI 8 968 UG120161_block:8_plot:TP161_2012_NaCRRI 8 969 UG120162_block:8_plot:TP162_2012_NaCRRI 8 970 UG120163_block:8_plot:TP163_2012_NaCRRI 8 971 UG120164_block:8_plot:TP164_2012_NaCRRI 8 972 UG120165_block:8_plot:TP165_2012_NaCRRI 8 973 UG120166_block:8_plot:TP166_2012_NaCRRI 8 974 UG120167_block:8_plot:TP167_2012_NaCRRI 8 975 UG120168_block:8_plot:TP168_2012_NaCRRI 8 976 UG120169_block:8_plot:TP169_2012_NaCRRI 8 977 UG120170_block:8_plot:TP170_2012_NaCRRI 8 978 UG120171_block:8_plot:TP171_2012_NaCRRI 8 979 UG120172_block:8_plot:TP172_2012_NaCRRI 8 980 UG120173_block:8_plot:TP173_2012_NaCRRI 8 981 UG120174_block:8_plot:TP174_2012_NaCRRI 8 982 UG120175_block:8_plot:TP175_2012_NaCRRI 8 983 UG120176_block:8_plot:TP176_2012_NaCRRI 8 984 UG120177_block:9_plot:TP177_2012_NaCRRI 8 985 UG120178_block:9_plot:TP178_2012_NaCRRI 8 986 UG120179_block:9_plot:TP179_2012_NaCRRI 8 987 UG120180_block:9_plot:TP180_2012_NaCRRI 8 988 UG120181_block:9_plot:TP181_2012_NaCRRI 8 989 UG120182_block:9_plot:TP182_2012_NaCRRI 8 990 UG120183_block:9_plot:TP183_2012_NaCRRI 8 991 UG120184_block:9_plot:TP184_2012_NaCRRI 8 992 UG120185_block:9_plot:TP185_2012_NaCRRI 8 993 UG120186_block:9_plot:TP186_2012_NaCRRI 8 994 UG120187_block:9_plot:TP187_2012_NaCRRI 8 995 UG120188_block:9_plot:TP188_2012_NaCRRI 8 996 UG120189_block:9_plot:TP189_2012_NaCRRI 8 997 UG120190_block:9_plot:TP190_2012_NaCRRI 8 998 UG120191_block:9_plot:TP191_2012_NaCRRI 8 999 UG120192_block:9_plot:TP192_2012_NaCRRI 8 1000 UG120193_block:9_plot:TP193_2012_NaCRRI 8 1001 UG120194_block:9_plot:TP194_2012_NaCRRI 8 1002 UG120195_block:9_plot:TP195_2012_NaCRRI 8 1003 UG120196_block:9_plot:TP196_2012_NaCRRI 8 1004 UG120197_block:9_plot:TP197_2012_NaCRRI 8 1005 UG120198_block:9_plot:TP198_2012_NaCRRI 8 1006 UG120199_block:10_plot:TP199_2012_NaCRRI 8 1007 UG120200_block:10_plot:TP200_2012_NaCRRI 8 1008 UG120201_block:10_plot:TP201_2012_NaCRRI 8 1009 UG120202_block:10_plot:TP202_2012_NaCRRI 8 1010 UG120203_block:10_plot:TP203_2012_NaCRRI 8 1011 UG120204_block:10_plot:TP204_2012_NaCRRI 8 1012 UG120205_block:10_plot:TP205_2012_NaCRRI 8 1013 UG120206_block:10_plot:TP206_2012_NaCRRI 8 1014 UG120207_block:10_plot:TP207_2012_NaCRRI 8 1015 UG120208_block:10_plot:TP208_2012_NaCRRI 8 1016 UG120209_block:10_plot:TP209_2012_NaCRRI 8 1017 UG120210_block:10_plot:TP210_2012_NaCRRI 8 1018 UG120211_block:10_plot:TP211_2012_NaCRRI 8 1019 UG120212_block:10_plot:TP212_2012_NaCRRI 8 1020 UG120213_block:10_plot:TP213_2012_NaCRRI 8 1021 UG120214_block:10_plot:TP214_2012_NaCRRI 8 1022 UG120215_block:10_plot:TP215_2012_NaCRRI 8 1023 UG120216_block:10_plot:TP216_2012_NaCRRI 8 1024 UG120217_block:10_plot:TP217_2012_NaCRRI 8 1025 UG120218_block:10_plot:TP218_2012_NaCRRI 8 1026 UG120219_block:10_plot:TP219_2012_NaCRRI 8 1027 UG120220_block:10_plot:TP220_2012_NaCRRI 8 1028 UG120221_block:11_plot:TP221_2012_NaCRRI 8 1029 UG120222_block:11_plot:TP222_2012_NaCRRI 8 1030 UG120223_block:11_plot:TP223_2012_NaCRRI 8 1031 UG120224_block:11_plot:TP224_2012_NaCRRI 8 1032 UG120225_block:11_plot:TP225_2012_NaCRRI 8 1033 UG120226_block:11_plot:TP226_2012_NaCRRI 8 1034 UG120227_block:11_plot:TP227_2012_NaCRRI 8 1035 UG120228_block:11_plot:TP228_2012_NaCRRI 8 1036 UG120229_block:11_plot:TP229_2012_NaCRRI 8 1037 UG120230_block:11_plot:TP230_2012_NaCRRI 8 1038 UG120231_block:11_plot:TP231_2012_NaCRRI 8 1039 UG120232_block:11_plot:TP232_2012_NaCRRI 8 1040 UG120233_block:11_plot:TP233_2012_NaCRRI 8 1041 UG120234_block:11_plot:TP234_2012_NaCRRI 8 1042 UG120235_block:11_plot:TP235_2012_NaCRRI 8 1043 UG120236_block:11_plot:TP236_2012_NaCRRI 8 1044 UG120237_block:11_plot:TP237_2012_NaCRRI 8 1145 UG120031 9 1045 UG120238_block:11_plot:TP238_2012_NaCRRI 8 1046 UG120239_block:11_plot:TP239_2012_NaCRRI 8 1047 UG120240_block:11_plot:TP240_2012_NaCRRI 8 1048 UG120241_block:11_plot:TP241_2012_NaCRRI 8 1049 UG120242_block:11_plot:TP242_2012_NaCRRI 8 1050 UG120243_block:12_plot:TP243_2012_NaCRRI 8 1051 UG120244_block:12_plot:TP244_2012_NaCRRI 8 1052 UG120245_block:12_plot:TP245_2012_NaCRRI 8 1053 UG120246_block:12_plot:TP246_2012_NaCRRI 8 1054 UG120247_block:12_plot:TP247_2012_NaCRRI 8 1055 UG120248_block:12_plot:TP248_2012_NaCRRI 8 1056 UG120249_block:12_plot:TP249_2012_NaCRRI 8 1057 UG120250_block:12_plot:TP250_2012_NaCRRI 8 1058 UG120251_block:12_plot:TP251_2012_NaCRRI 8 1059 UG120252_block:12_plot:TP252_2012_NaCRRI 8 1060 UG120253_block:12_plot:TP253_2012_NaCRRI 8 1061 UG120254_block:12_plot:TP254_2012_NaCRRI 8 1062 UG120255_block:12_plot:TP255_2012_NaCRRI 8 1063 UG120256_block:12_plot:TP256_2012_NaCRRI 8 1064 UG120257_block:12_plot:TP257_2012_NaCRRI 8 1065 UG120258_block:12_plot:TP258_2012_NaCRRI 8 1066 UG120259_block:12_plot:TP259_2012_NaCRRI 8 1067 UG120260_block:12_plot:TP260_2012_NaCRRI 8 1068 UG120261_block:12_plot:TP261_2012_NaCRRI 8 1069 UG120262_block:12_plot:TP262_2012_NaCRRI 8 1070 UG120263_block:12_plot:TP263_2012_NaCRRI 8 1071 UG120264_block:12_plot:TP264_2012_NaCRRI 8 1072 UG120265_block:13_plot:TP265_2012_NaCRRI 8 1073 UG120266_block:13_plot:TP266_2012_NaCRRI 8 1074 UG120267_block:13_plot:TP267_2012_NaCRRI 8 1075 UG120268_block:13_plot:TP268_2012_NaCRRI 8 1076 UG120269_block:13_plot:TP269_2012_NaCRRI 8 1077 UG120270_block:13_plot:TP270_2012_NaCRRI 8 1078 UG120271_block:13_plot:TP271_2012_NaCRRI 8 1079 UG120272_block:13_plot:TP272_2012_NaCRRI 8 1080 UG120273_block:13_plot:TP273_2012_NaCRRI 8 1081 UG120274_block:13_plot:TP274_2012_NaCRRI 8 1082 UG120275_block:13_plot:TP275_2012_NaCRRI 8 1083 UG120276_block:13_plot:TP276_2012_NaCRRI 8 1084 UG120277_block:13_plot:TP277_2012_NaCRRI 8 1085 UG120278_block:13_plot:TP278_2012_NaCRRI 8 1086 UG120279_block:13_plot:TP279_2012_NaCRRI 8 1087 UG120280_block:13_plot:TP280_2012_NaCRRI 8 1088 UG120281_block:13_plot:TP281_2012_NaCRRI 8 1089 UG120282_block:13_plot:TP282_2012_NaCRRI 8 1090 UG120283_block:13_plot:TP283_2012_NaCRRI 8 1091 UG120284_block:13_plot:TP284_2012_NaCRRI 8 1092 UG120285_block:13_plot:TP285_2012_NaCRRI 8 1093 UG120286_block:13_plot:TP286_2012_NaCRRI 8 1094 UG120287_block:14_plot:TP287_2012_NaCRRI 8 1095 UG120288_block:14_plot:TP288_2012_NaCRRI 8 1096 UG120289_block:14_plot:TP289_2012_NaCRRI 8 1097 UG120290_block:14_plot:TP290_2012_NaCRRI 8 1098 UG120291_block:14_plot:TP291_2012_NaCRRI 8 1099 UG120292_block:14_plot:TP292_2012_NaCRRI 8 1100 UG120293_block:14_plot:TP293_2012_NaCRRI 8 1101 UG120294_block:14_plot:TP294_2012_NaCRRI 8 1102 UG120295_block:14_plot:TP295_2012_NaCRRI 8 1103 UG120296_block:14_plot:TP296_2012_NaCRRI 8 1104 UG120297_block:14_plot:TP297_2012_NaCRRI 8 1105 UG120298_block:14_plot:TP298_2012_NaCRRI 8 1106 UG120299_block:14_plot:TP299_2012_NaCRRI 8 1107 UG120300_block:14_plot:TP300_2012_NaCRRI 8 1108 UG120301_block:14_plot:TP301_2012_NaCRRI 8 1109 UG120303_block:14_plot:TP303_2012_NaCRRI 8 1110 UG120304_block:14_plot:TP304_2012_NaCRRI 8 1111 UG120305_block:14_plot:TP305_2012_NaCRRI 8 1112 UG120306_block:14_plot:TP306_2012_NaCRRI 8 1113 UG120307_block:14_plot:TP307_2012_NaCRRI 8 1114 UG120308_block:14_plot:TP308_2012_NaCRRI 8 1115 UG120001 9 1116 UG120002 9 1117 UG120003 9 1118 UG120004 9 1119 UG120005 9 1120 UG120006 9 1121 UG120007 9 1122 UG120008 9 1123 UG120009 9 1124 UG120010 9 1125 UG120011 9 1126 UG120012 9 1127 UG120013 9 1128 UG120014 9 1129 UG120015 9 1130 UG120016 9 1131 UG120017 9 1132 UG120018 9 1133 UG120019 9 1134 UG120020 9 1135 UG120021 9 1136 UG120022 9 1137 UG120023 9 1138 UG120024 9 1139 UG120025 9 1140 UG120026 9 1141 UG120027 9 1142 UG120028 9 1146 UG120032 9 1147 UG120033 9 1148 UG120034 9 1149 UG120035 9 1150 UG120036 9 1151 UG120037 9 1152 UG120038 9 1153 UG120039 9 1154 UG120040 9 1155 UG120041 9 1156 UG120042 9 1157 UG120043 9 1158 UG120044 9 1159 UG120045 9 1160 UG120046 9 1161 UG120047 9 1162 UG120048 9 1163 UG120049 9 1164 UG120050 9 1165 UG120051 9 1166 UG120052 9 1167 UG120053 9 1168 UG120054 9 1169 UG120055 9 1170 UG120056 9 1171 UG120057 9 1172 UG120058 9 1173 UG120059 9 1174 UG120060 9 1175 UG120061 9 1176 UG120062 9 1177 UG120063 9 1178 UG120064 9 1179 UG120065 9 1180 UG120066 9 1181 UG120067 9 1182 UG120068 9 1183 UG120069 9 1184 UG120070 9 1185 UG120071 9 1186 UG120072 9 1187 UG120073 9 1188 UG120074 9 1189 UG120075 9 1190 UG120076 9 1191 UG120077 9 1192 UG120078 9 1193 UG120079 9 1194 UG120080 9 1195 UG120081 9 1196 UG120082 9 1197 UG120083 9 1198 UG120084 9 1199 UG120085 9 1200 UG120086 9 1201 UG120087 9 1202 UG120088 9 1203 UG120089 9 1204 UG120090 9 1205 UG120091 9 1206 UG120092 9 1207 UG120093 9 1208 UG120094 9 1209 UG120095 9 1210 UG120096 9 1211 UG120097 9 1212 UG120098 9 1213 UG120099 9 1214 UG120100 9 1215 UG120101 9 1216 UG120102 9 1217 UG120103 9 1218 UG120104 9 1219 UG120105 9 1220 UG120106 9 1221 UG120107 9 1222 UG120108 9 1223 UG120109 9 1224 UG120110 9 1225 UG120111 9 1226 UG120112 9 1227 UG120113 9 1228 UG120114 9 1229 UG120115 9 1230 UG120116 9 1231 UG120117 9 1232 UG120118 9 1233 UG120119 9 1234 UG120120 9 1235 UG120121 9 1236 UG120122 9 1237 UG120123 9 1238 UG120124 9 1239 UG120125 9 1240 UG120126 9 1241 UG120127 9 1242 UG120128 9 1243 UG120129 9 1244 UG120130 9 1245 UG120131 9 1246 UG120132 9 1247 UG120133 9 1248 UG120134 9 1249 UG120135 9 1250 UG120136 9 1251 UG120137 9 1252 UG120138 9 1253 UG120139 9 1254 UG120140 9 1255 UG120141 9 1256 UG120142 9 1257 UG120143 9 1258 UG120144 9 1259 UG120145 9 1260 UG120146 9 1261 UG120147 9 1262 UG120148 9 1263 UG120149 9 1264 UG120150 9 1265 UG120151 9 1266 UG120152 9 1267 UG120153 9 1268 UG120154 9 1269 UG120155 9 1270 UG120156 9 1271 UG120157 9 1272 UG120158 9 1273 UG120159 9 1274 UG120160 9 1275 UG120161 9 1276 UG120162 9 1277 UG120163 9 1278 UG120164 9 1279 UG120165 9 1280 UG120166 9 1281 UG120167 9 1282 UG120168 9 1283 UG120169 9 1284 UG120170 9 1285 UG120171 9 1286 UG120172 9 1287 UG120173 9 1288 UG120174 9 1289 UG120175 9 1290 UG120176 9 1291 UG120177 9 1292 UG120178 9 1293 UG120179 9 1294 UG120180 9 1295 UG120181 9 1296 UG120182 9 1297 UG120183 9 1298 UG120184 9 1299 UG120185 9 1300 UG120186 9 1301 UG120187 9 1302 UG120188 9 1303 UG120189 9 1304 UG120190 9 1305 UG120191 9 1306 UG120192 9 1307 UG120193 9 1308 UG120194 9 1309 UG120195 9 1310 UG120196 9 1311 UG120197 9 1312 UG120198 9 1313 UG120199 9 1314 UG120200 9 1315 UG120201 9 1316 UG120202 9 1317 UG120203 9 1318 UG120204 9 1319 UG120205 9 1320 UG120206 9 1321 UG120207 9 1322 UG120208 9 1323 UG120209 9 1324 UG120210 9 1325 UG120211 9 1326 UG120212 9 1327 UG120213 9 1328 UG120214 9 1329 UG120215 9 1330 UG120216 9 1331 UG120217 9 1332 UG120218 9 1333 UG120219 9 1334 UG120220 9 1335 UG120221 9 1336 UG120222 9 1337 UG120223 9 1338 UG120224 9 1339 UG120225 9 1340 UG120226 9 1341 UG120227 9 1342 UG120228 9 1343 UG120229 9 1344 UG120230 9 1345 UG120231 9 1346 UG120232 9 1347 UG120233 9 1348 UG120234 9 1349 UG120235 9 1350 UG120236 9 1351 UG120237 9 1352 UG120238 9 1353 UG120239 9 1354 UG120240 9 1355 UG120241 9 1356 UG120242 9 1357 UG120243 9 1358 UG120244 9 1359 UG120245 9 1360 UG120246 9 1361 UG120247 9 1362 UG120248 9 1363 UG120249 9 1364 UG120250 9 1365 UG120251 9 1366 UG120252 9 1367 UG120253 9 1368 UG120254 9 1369 UG120255 9 1370 UG120256 9 1371 UG120257 9 1372 UG120258 9 1373 UG120259 9 1374 UG120260 9 1375 UG120261 9 1376 UG120262 9 1377 UG120263 9 1378 UG120264 9 1379 UG120265 9 1380 UG120266 9 1381 UG120267 9 1382 UG120268 9 1383 UG120269 9 1384 UG120270 9 1385 UG120271 9 1386 UG120272 9 1387 UG120273 9 1388 UG120274 9 1389 UG120275 9 1390 UG120276 9 1391 UG120277 9 1392 UG120278 9 1393 UG120279 9 1394 UG120280 9 1395 UG120281 9 1396 UG120282 9 1397 UG120283 9 1398 UG120284 9 1399 UG120285 9 1400 UG120286 9 1401 UG120287 9 1402 UG120288 9 1403 UG120289 9 1404 UG120290 9 1405 UG120291 9 1406 UG120292 9 1407 UG120293 9 1408 UG120294 9 1409 UG120295 9 1410 UG120296 9 1411 UG120297 9 1412 UG120298 9 1413 UG120299 9 1414 UG120300 9 1415 UG120301 9 1416 UG120303 9 1417 UG120304 9 1418 UG120305 9 1419 UG120306 9 1420 UG120307 9 1421 UG120308 9 1422 Kasese solgs trial 10 1423 trial2 NaCRRI 10 1424 TMEB419 11 1425 IITA-TMS-IBA30572 11 1426 TMEB693 11 1427 IITA-TMS-IBA011412 11 1428 IITA-TMS-IBA980002 11 1429 IITA-TMS-IBA980581 11 1430 new_test_crossP005 12 1431 new_test_crossP009 12 1432 test_accession1 12 1433 test_accession2 12 1434 test_accession2_synonym1 12 1435 test_accession3_synonym1 12 1436 CO_334:0000008 13 1437 CO_334:0000009 13 1438 CO_334:0000010 13 1439 CO_334:0000011 13 1440 CO_334:0000012 13 1441 CO_334:0000013 13 1442 CO_334:0000014 13 1443 CO_334:0000015 13 1444 CO_334:0000016 13 1445 CO_334:0000017 13 1446 test_accession 14 \. -- -- Data for Name: sp_clone_il_mapping_segment_log; Type: TABLE DATA; Schema: sgn_people; Owner: postgres -- COPY sgn_people.sp_clone_il_mapping_segment_log (sp_clone_il_mapping_segment_log_id, individual_id, sp_person_id, clone_id, is_current, created) FROM stdin; \. -- -- Data for Name: sp_dataset; Type: TABLE DATA; Schema: sgn_people; Owner: postgres -- COPY sgn_people.sp_dataset (sp_dataset_id, sp_person_id, name, description, dataset, is_live) FROM stdin; \. -- -- Data for Name: sp_group; Type: TABLE DATA; Schema: sgn_people; Owner: postgres -- COPY sgn_people.sp_group (sp_group_id, name, description) FROM stdin; \. -- -- Data for Name: sp_group_member; Type: TABLE DATA; Schema: sgn_people; Owner: postgres -- COPY sgn_people.sp_group_member (sp_person_id, sp_group_id, status) FROM stdin; \. -- -- Data for Name: sp_login_old; Type: TABLE DATA; Schema: sgn_people; Owner: postgres -- COPY sgn_people.sp_login_old (sp_login_id, username, private_email, pending_email, password, confirm_code, disabled, user_type) FROM stdin; \. -- -- Data for Name: sp_organisms; Type: TABLE DATA; Schema: sgn_people; Owner: postgres -- COPY sgn_people.sp_organisms (organism_id, organism_name) FROM stdin; \. -- -- Data for Name: sp_organization; Type: TABLE DATA; Schema: sgn_people; Owner: postgres -- COPY sgn_people.sp_organization (sp_organization_id, name, department, unit, address, country, phone_number, fax, contact_email, webpage, description, upload_account_name, shortname) FROM stdin; \. -- -- Data for Name: sp_organization_person; Type: TABLE DATA; Schema: sgn_people; Owner: postgres -- COPY sgn_people.sp_organization_person (sp_organization_person_id, sp_organization_id, sp_person_id) FROM stdin; \. -- -- Data for Name: sp_papers; Type: TABLE DATA; Schema: sgn_people; Owner: postgres -- COPY sgn_people.sp_papers (sp_paper_id, person_id, title, author_list, journal, volume, pages, keywords) FROM stdin; \. -- -- Data for Name: sp_person; Type: TABLE DATA; Schema: sgn_people; Owner: postgres -- COPY sgn_people.sp_person (sp_person_id, censor, salutation, last_name, first_name, organization, address, country, phone_number, fax, contact_email, webpage, research_keywords, user_format, research_interests, formatted_interests, contact_update, research_update, sp_login_id, username, private_email, pending_email, password, confirm_code, disabled, user_type, cookie_string, last_access_time, user_prefs, developer_settings) FROM stdin; 42 0 \N Sanger Fred \N \N \N \N \N \N \N \N \N \N \N \N \N \N freddy \N \N $2a$06$GWBtnOVFPiJekF9k0Iouv.5DTHmbVzkc8UZeg2CCnvTzZPpt.Q6Em \N \N user \N 2014-01-03 17:22:43.111627 \N \N 40 0 \N Doe John \N \N \N \N \N \N \N \N \N \N \N \N \N \N johndoe \N \N $2a$06$J4Me6MnN22EuC5Cy13J1YOJ/s9qL4LcMVkbB1q0af3lbDuMChm9/y \N \N user yksjzeqhmehpnwzdrkikhttacojlrwcbvmuxuzzybwzvnegjycqgrofwunsurytzdfairlv 2017-07-18 14:55:25.912619 \N \N 43 0 \N admin admin BTI \N \N \N \N \N \N \N auto \N \N \N 2020-04-09 \N admin \N admintest@admin.test $2a$06$KRJVgSpAVn3DU4K1p/OvR.FFOyOaB28FDeb39AIIRHZLTrFJgGGCi 3WZZIlbaM1d29TnJ \N user \N 2020-04-09 10:43:13.62851 \N \N 41 0 \N Doe Jane \N \N \N \N \N \N \N \N \N \N \N \N \N \N janedoe \N \N $2a$06$7/Mf/NvUCeLkxpL4LGxVuOlUs0nrSWxehQTsmTg03M2cTbbiMDP5u \N \N user yxuijzwyblqemqxvfmeklhvumzpvonlxqhcxmsttjpiqwsgzhllknaewreyytzsibiacnyq 2020-08-21 02:50:52.101952 \N \N \. -- -- Data for Name: sp_person_organisms; Type: TABLE DATA; Schema: sgn_people; Owner: postgres -- COPY sgn_people.sp_person_organisms (sp_person_organisms_id, sp_person_id, organism_id) FROM stdin; \. -- -- Data for Name: sp_person_roles; Type: TABLE DATA; Schema: sgn_people; Owner: postgres -- COPY sgn_people.sp_person_roles (sp_person_role_id, sp_person_id, sp_role_id) FROM stdin; 71 40 3 72 41 1 73 42 4 74 40 6 75 41 6 76 43 4 77 43 1 78 43 7 79 41 7 \. -- -- Data for Name: sp_project; Type: TABLE DATA; Schema: sgn_people; Owner: postgres -- COPY sgn_people.sp_project (sp_project_id, name, description) FROM stdin; \. -- -- Data for Name: sp_project_il_mapping_clone_log; Type: TABLE DATA; Schema: sgn_people; Owner: postgres -- COPY sgn_people.sp_project_il_mapping_clone_log (sp_project_il_mapping_clone_log_id, sp_project_id, sp_person_id, clone_id, is_current, created) FROM stdin; \. -- -- Data for Name: sp_project_organization; Type: TABLE DATA; Schema: sgn_people; Owner: postgres -- COPY sgn_people.sp_project_organization (sp_project_organization_id, sp_project_id, sp_organization_id) FROM stdin; \. -- -- Data for Name: sp_project_person; Type: TABLE DATA; Schema: sgn_people; Owner: postgres -- COPY sgn_people.sp_project_person (sp_project_person_id, sp_project_id, sp_person_id, type) FROM stdin; \. -- -- Data for Name: sp_roles; Type: TABLE DATA; Schema: sgn_people; Owner: postgres -- COPY sgn_people.sp_roles (sp_role_id, name) FROM stdin; 5 IITA 1 curator 2 sequencer 3 submitter 4 user 6 test 7 Breedbase \. -- -- Data for Name: user_map; Type: TABLE DATA; Schema: sgn_people; Owner: postgres -- COPY sgn_people.user_map (user_map_id, short_name, long_name, abstract, is_public, parent1_accession_id, parent1, parent2_accession_id, parent2, sp_person_id, obsolete, modified_date, create_date) FROM stdin; \. -- -- Data for Name: user_map_data; Type: TABLE DATA; Schema: sgn_people; Owner: postgres -- COPY sgn_people.user_map_data (user_map_data_id, user_map_id, marker_name, protocol, marker_id, linkage_group, "position", confidence, sp_person_id, obsolete, modified_date, create_date) FROM stdin; \. -- -- Data for Name: facility; Type: TABLE DATA; Schema: sgn_submit; Owner: postgres -- COPY sgn_submit.facility (facility_id, submit_user_id, facility_moniker, facility_shortname, facility_name, facility_contact, facility_address, funding_agency, funding_comment, sequencing_primers, machine, chemistry, attribution_display, sp_person_id) FROM stdin; \. -- -- Data for Name: library; Type: TABLE DATA; Schema: sgn_submit; Owner: postgres -- COPY sgn_submit.library (library_id, type, submit_user_id, library_name, library_shortname, authors, organism_id, cultivar, accession, tissue, development_stage, treatment_conditions, cloning_host, vector, rs1, rs2, cloning_kit, comments, contact_information, order_routing_id, sp_person_id, forward_adapter, reverse_adapter) FROM stdin; \. -- -- Data for Name: seqread; Type: TABLE DATA; Schema: sgn_submit; Owner: postgres -- COPY sgn_submit.seqread (submit_read_id, library_id, facility_id, trace_name, clone_name, direction, location, read_id) FROM stdin; \. -- -- Data for Name: submit_user; Type: TABLE DATA; Schema: sgn_submit; Owner: postgres -- COPY sgn_submit.submit_user (submit_user_id, submit_code, username, password, name, email_address, phone_number, organization, contact_information, disabled, confirm_code, sp_person_id) FROM stdin; \. -- -- Data for Name: fattribute; Type: TABLE DATA; Schema: tomato_gff; Owner: postgres -- COPY tomato_gff.fattribute (fattribute_id, fattribute_name) FROM stdin; \. -- -- Data for Name: fattribute_to_feature; Type: TABLE DATA; Schema: tomato_gff; Owner: postgres -- COPY tomato_gff.fattribute_to_feature (fid, fattribute_id, fattribute_value) FROM stdin; \. -- -- Data for Name: fdata; Type: TABLE DATA; Schema: tomato_gff; Owner: postgres -- COPY tomato_gff.fdata (fid, fref, fstart, fstop, fbin, ftypeid, fscore, fstrand, fphase, gid, ftarget_start, ftarget_stop) FROM stdin; \. -- -- Data for Name: fdna; Type: TABLE DATA; Schema: tomato_gff; Owner: postgres -- COPY tomato_gff.fdna (fref, foffset, fdna) FROM stdin; \. -- -- Data for Name: fgroup; Type: TABLE DATA; Schema: tomato_gff; Owner: postgres -- COPY tomato_gff.fgroup (gid, gclass, gname) FROM stdin; \. -- -- Data for Name: fmeta; Type: TABLE DATA; Schema: tomato_gff; Owner: postgres -- COPY tomato_gff.fmeta (fname, fvalue) FROM stdin; \. -- -- Data for Name: ftype; Type: TABLE DATA; Schema: tomato_gff; Owner: postgres -- COPY tomato_gff.ftype (ftypeid, fmethod, fsource) FROM stdin; \. -- -- Name: annotation_annot_id_seq; Type: SEQUENCE SET; Schema: annotation; Owner: postgres -- SELECT pg_catalog.setval('annotation.annotation_annot_id_seq', 1, false); -- -- Name: comment_comment_id_seq; Type: SEQUENCE SET; Schema: annotation; Owner: postgres -- SELECT pg_catalog.setval('annotation.comment_comment_id_seq', 1, false); -- -- Name: comp_analysis_ca_id_seq; Type: SEQUENCE SET; Schema: annotation; Owner: postgres -- SELECT pg_catalog.setval('annotation.comp_analysis_ca_id_seq', 1, false); -- -- Name: dblist_db_id_seq; Type: SEQUENCE SET; Schema: annotation; Owner: postgres -- SELECT pg_catalog.setval('annotation.dblist_db_id_seq', 1, false); -- -- Name: dbxref_dbxref_id_seq; Type: SEQUENCE SET; Schema: annotation; Owner: postgres -- SELECT pg_catalog.setval('annotation.dbxref_dbxref_id_seq', 1, false); -- -- Name: feature_set_f_set_id_seq; Type: SEQUENCE SET; Schema: annotation; Owner: postgres -- SELECT pg_catalog.setval('annotation.feature_set_f_set_id_seq', 1, false); -- -- Name: feature_span_f_span_id_seq; Type: SEQUENCE SET; Schema: annotation; Owner: postgres -- SELECT pg_catalog.setval('annotation.feature_span_f_span_id_seq', 1, false); -- -- Name: organism_organism_id_seq; Type: SEQUENCE SET; Schema: annotation; Owner: postgres -- SELECT pg_catalog.setval('annotation.organism_organism_id_seq', 1, false); -- -- Name: output_output_id_seq; Type: SEQUENCE SET; Schema: annotation; Owner: postgres -- SELECT pg_catalog.setval('annotation.output_output_id_seq', 1, false); -- -- Name: person_person_id_seq; Type: SEQUENCE SET; Schema: annotation; Owner: postgres -- SELECT pg_catalog.setval('annotation.person_person_id_seq', 1, false); -- -- Name: program_program_id_seq; Type: SEQUENCE SET; Schema: annotation; Owner: postgres -- SELECT pg_catalog.setval('annotation.program_program_id_seq', 1, false); -- -- Name: property_property_id_seq; Type: SEQUENCE SET; Schema: annotation; Owner: postgres -- SELECT pg_catalog.setval('annotation.property_property_id_seq', 1, false); -- -- Name: result_set_r_set_id_seq; Type: SEQUENCE SET; Schema: annotation; Owner: postgres -- SELECT pg_catalog.setval('annotation.result_set_r_set_id_seq', 1, false); -- -- Name: result_span_r_span_id_seq; Type: SEQUENCE SET; Schema: annotation; Owner: postgres -- SELECT pg_catalog.setval('annotation.result_span_r_span_id_seq', 1, false); -- -- Name: seq_error_seq_err_id_seq; Type: SEQUENCE SET; Schema: annotation; Owner: postgres -- SELECT pg_catalog.setval('annotation.seq_error_seq_err_id_seq', 1, false); -- -- Name: seq_relationship_seq_rel_id_seq; Type: SEQUENCE SET; Schema: annotation; Owner: postgres -- SELECT pg_catalog.setval('annotation.seq_relationship_seq_rel_id_seq', 1, false); -- -- Name: seq_seq_id_seq; Type: SEQUENCE SET; Schema: annotation; Owner: postgres -- SELECT pg_catalog.setval('annotation.seq_seq_id_seq', 1, false); -- -- Name: synonym_synonym_id_seq; Type: SEQUENCE SET; Schema: annotation; Owner: postgres -- SELECT pg_catalog.setval('annotation.synonym_synonym_id_seq', 1, false); -- -- Name: bs_protocol_protocol_id_seq; Type: SEQUENCE SET; Schema: biosource; Owner: postgres -- SELECT pg_catalog.setval('biosource.bs_protocol_protocol_id_seq', 1, false); -- -- Name: bs_protocol_pub_protocol_pub_id_seq; Type: SEQUENCE SET; Schema: biosource; Owner: postgres -- SELECT pg_catalog.setval('biosource.bs_protocol_pub_protocol_pub_id_seq', 1, false); -- -- Name: bs_protocol_step_dbxref_protocol_step_dbxref_id_seq; Type: SEQUENCE SET; Schema: biosource; Owner: postgres -- SELECT pg_catalog.setval('biosource.bs_protocol_step_dbxref_protocol_step_dbxref_id_seq', 1, false); -- -- Name: bs_protocol_step_protocol_step_id_seq; Type: SEQUENCE SET; Schema: biosource; Owner: postgres -- SELECT pg_catalog.setval('biosource.bs_protocol_step_protocol_step_id_seq', 1, false); -- -- Name: bs_sample_cvterm_sample_cvterm_id_seq; Type: SEQUENCE SET; Schema: biosource; Owner: postgres -- SELECT pg_catalog.setval('biosource.bs_sample_cvterm_sample_cvterm_id_seq', 1, false); -- -- Name: bs_sample_dbxref_sample_dbxref_id_seq; Type: SEQUENCE SET; Schema: biosource; Owner: postgres -- SELECT pg_catalog.setval('biosource.bs_sample_dbxref_sample_dbxref_id_seq', 1, false); -- -- Name: bs_sample_element_cvterm_sample_element_cvterm_id_seq; Type: SEQUENCE SET; Schema: biosource; Owner: postgres -- SELECT pg_catalog.setval('biosource.bs_sample_element_cvterm_sample_element_cvterm_id_seq', 1, false); -- -- Name: bs_sample_element_dbxref_sample_element_dbxref_id_seq; Type: SEQUENCE SET; Schema: biosource; Owner: postgres -- SELECT pg_catalog.setval('biosource.bs_sample_element_dbxref_sample_element_dbxref_id_seq', 1, false); -- -- Name: bs_sample_element_file_sample_element_file_id_seq; Type: SEQUENCE SET; Schema: biosource; Owner: postgres -- SELECT pg_catalog.setval('biosource.bs_sample_element_file_sample_element_file_id_seq', 1, false); -- -- Name: bs_sample_element_relation_sample_element_relation_id_seq; Type: SEQUENCE SET; Schema: biosource; Owner: postgres -- SELECT pg_catalog.setval('biosource.bs_sample_element_relation_sample_element_relation_id_seq', 1, false); -- -- Name: bs_sample_element_sample_element_id_seq; Type: SEQUENCE SET; Schema: biosource; Owner: postgres -- SELECT pg_catalog.setval('biosource.bs_sample_element_sample_element_id_seq', 1, false); -- -- Name: bs_sample_file_sample_file_id_seq; Type: SEQUENCE SET; Schema: biosource; Owner: postgres -- SELECT pg_catalog.setval('biosource.bs_sample_file_sample_file_id_seq', 1, false); -- -- Name: bs_sample_pub_sample_pub_id_seq; Type: SEQUENCE SET; Schema: biosource; Owner: postgres -- SELECT pg_catalog.setval('biosource.bs_sample_pub_sample_pub_id_seq', 1, false); -- -- Name: bs_sample_relationship_sample_relationship_id_seq; Type: SEQUENCE SET; Schema: biosource; Owner: postgres -- SELECT pg_catalog.setval('biosource.bs_sample_relationship_sample_relationship_id_seq', 1, false); -- -- Name: bs_sample_sample_id_seq; Type: SEQUENCE SET; Schema: biosource; Owner: postgres -- SELECT pg_catalog.setval('biosource.bs_sample_sample_id_seq', 1, false); -- -- Name: bs_tool_pub_tool_pub_id_seq; Type: SEQUENCE SET; Schema: biosource; Owner: postgres -- SELECT pg_catalog.setval('biosource.bs_tool_pub_tool_pub_id_seq', 1, false); -- -- Name: bs_tool_tool_id_seq; Type: SEQUENCE SET; Schema: biosource; Owner: postgres -- SELECT pg_catalog.setval('biosource.bs_tool_tool_id_seq', 1, false); -- -- Name: ge_cluster_analysis_cluster_analysis_id_seq; Type: SEQUENCE SET; Schema: gem; Owner: postgres -- SELECT pg_catalog.setval('gem.ge_cluster_analysis_cluster_analysis_id_seq', 1, false); -- -- Name: ge_cluster_member_cluster_member_id_seq; Type: SEQUENCE SET; Schema: gem; Owner: postgres -- SELECT pg_catalog.setval('gem.ge_cluster_member_cluster_member_id_seq', 1, false); -- -- Name: ge_cluster_profile_cluster_profile_id_seq; Type: SEQUENCE SET; Schema: gem; Owner: postgres -- SELECT pg_catalog.setval('gem.ge_cluster_profile_cluster_profile_id_seq', 1, false); -- -- Name: ge_correlation_analysis_correlation_analysis_id_seq; Type: SEQUENCE SET; Schema: gem; Owner: postgres -- SELECT pg_catalog.setval('gem.ge_correlation_analysis_correlation_analysis_id_seq', 1, false); -- -- Name: ge_correlation_member_correlation_member_id_seq; Type: SEQUENCE SET; Schema: gem; Owner: postgres -- SELECT pg_catalog.setval('gem.ge_correlation_member_correlation_member_id_seq', 1, false); -- -- Name: ge_data_analysis_process_data_analysis_process_id_seq; Type: SEQUENCE SET; Schema: gem; Owner: postgres -- SELECT pg_catalog.setval('gem.ge_data_analysis_process_data_analysis_process_id_seq', 1, false); -- -- Name: ge_diff_expression_diff_expression_id_seq; Type: SEQUENCE SET; Schema: gem; Owner: postgres -- SELECT pg_catalog.setval('gem.ge_diff_expression_diff_expression_id_seq', 1, false); -- -- Name: ge_experiment_analysis_group_experiment_analysis_group_id_seq; Type: SEQUENCE SET; Schema: gem; Owner: postgres -- SELECT pg_catalog.setval('gem.ge_experiment_analysis_group_experiment_analysis_group_id_seq', 1, false); -- -- Name: ge_experiment_analysis_member_experiment_analysis_member_id_seq; Type: SEQUENCE SET; Schema: gem; Owner: postgres -- SELECT pg_catalog.setval('gem.ge_experiment_analysis_member_experiment_analysis_member_id_seq', 1, false); -- -- Name: ge_experiment_dbxref_experiment_dbxref_id_seq; Type: SEQUENCE SET; Schema: gem; Owner: postgres -- SELECT pg_catalog.setval('gem.ge_experiment_dbxref_experiment_dbxref_id_seq', 1, false); -- -- Name: ge_experiment_experiment_id_seq; Type: SEQUENCE SET; Schema: gem; Owner: postgres -- SELECT pg_catalog.setval('gem.ge_experiment_experiment_id_seq', 1, false); -- -- Name: ge_experimental_design_dbxref_experimental_design_dbxref_id_seq; Type: SEQUENCE SET; Schema: gem; Owner: postgres -- SELECT pg_catalog.setval('gem.ge_experimental_design_dbxref_experimental_design_dbxref_id_seq', 1, false); -- -- Name: ge_experimental_design_experimental_design_id_seq; Type: SEQUENCE SET; Schema: gem; Owner: postgres -- SELECT pg_catalog.setval('gem.ge_experimental_design_experimental_design_id_seq', 1, false); -- -- Name: ge_experimental_design_pub_experimental_design_pub_id_seq; Type: SEQUENCE SET; Schema: gem; Owner: postgres -- SELECT pg_catalog.setval('gem.ge_experimental_design_pub_experimental_design_pub_id_seq', 1, false); -- -- Name: ge_expression_by_experiment_expression_by_experiment_id_seq; Type: SEQUENCE SET; Schema: gem; Owner: postgres -- SELECT pg_catalog.setval('gem.ge_expression_by_experiment_expression_by_experiment_id_seq', 1, false); -- -- Name: ge_fluorescanning_fluorescanning_id_seq; Type: SEQUENCE SET; Schema: gem; Owner: postgres -- SELECT pg_catalog.setval('gem.ge_fluorescanning_fluorescanning_id_seq', 1, false); -- -- Name: ge_hybridization_hybridization_id_seq; Type: SEQUENCE SET; Schema: gem; Owner: postgres -- SELECT pg_catalog.setval('gem.ge_hybridization_hybridization_id_seq', 1, false); -- -- Name: ge_platform_dbxref_platform_dbxref_id_seq; Type: SEQUENCE SET; Schema: gem; Owner: postgres -- SELECT pg_catalog.setval('gem.ge_platform_dbxref_platform_dbxref_id_seq', 1, false); -- -- Name: ge_platform_design_platform_design_id_seq; Type: SEQUENCE SET; Schema: gem; Owner: postgres -- SELECT pg_catalog.setval('gem.ge_platform_design_platform_design_id_seq', 1, false); -- -- Name: ge_platform_platform_id_seq; Type: SEQUENCE SET; Schema: gem; Owner: postgres -- SELECT pg_catalog.setval('gem.ge_platform_platform_id_seq', 1, false); -- -- Name: ge_platform_pub_platform_pub_id_seq; Type: SEQUENCE SET; Schema: gem; Owner: postgres -- SELECT pg_catalog.setval('gem.ge_platform_pub_platform_pub_id_seq', 1, false); -- -- Name: ge_probe_expression_probe_expression_id_seq; Type: SEQUENCE SET; Schema: gem; Owner: postgres -- SELECT pg_catalog.setval('gem.ge_probe_expression_probe_expression_id_seq', 1, false); -- -- Name: ge_probe_probe_id_seq; Type: SEQUENCE SET; Schema: gem; Owner: postgres -- SELECT pg_catalog.setval('gem.ge_probe_probe_id_seq', 1, false); -- -- Name: ge_probe_spot_coordinate_probe_spot_coordinate_id_seq; Type: SEQUENCE SET; Schema: gem; Owner: postgres -- SELECT pg_catalog.setval('gem.ge_probe_spot_coordinate_probe_spot_coordinate_id_seq', 1, false); -- -- Name: ge_probe_spot_probe_spot_id_seq; Type: SEQUENCE SET; Schema: gem; Owner: postgres -- SELECT pg_catalog.setval('gem.ge_probe_spot_probe_spot_id_seq', 1, false); -- -- Name: ge_profile_element_profile_element_id_seq; Type: SEQUENCE SET; Schema: gem; Owner: postgres -- SELECT pg_catalog.setval('gem.ge_profile_element_profile_element_id_seq', 1, false); -- -- Name: ge_target_dbxref_target_dbxref_id_seq; Type: SEQUENCE SET; Schema: gem; Owner: postgres -- SELECT pg_catalog.setval('gem.ge_target_dbxref_target_dbxref_id_seq', 1, false); -- -- Name: ge_target_element_target_element_id_seq; Type: SEQUENCE SET; Schema: gem; Owner: postgres -- SELECT pg_catalog.setval('gem.ge_target_element_target_element_id_seq', 1, false); -- -- Name: ge_target_target_id_seq; Type: SEQUENCE SET; Schema: gem; Owner: postgres -- SELECT pg_catalog.setval('gem.ge_target_target_id_seq', 1, false); -- -- Name: ge_technology_type_technology_type_id_seq; Type: SEQUENCE SET; Schema: gem; Owner: postgres -- SELECT pg_catalog.setval('gem.ge_technology_type_technology_type_id_seq', 1, false); -- -- Name: ge_template_dbiref_template_dbiref_id_seq; Type: SEQUENCE SET; Schema: gem; Owner: postgres -- SELECT pg_catalog.setval('gem.ge_template_dbiref_template_dbiref_id_seq', 1, false); -- -- Name: ge_template_dbxref_template_dbxref_id_seq; Type: SEQUENCE SET; Schema: gem; Owner: postgres -- SELECT pg_catalog.setval('gem.ge_template_dbxref_template_dbxref_id_seq', 1, false); -- -- Name: ge_template_diff_expression_template_diff_expression_id_seq; Type: SEQUENCE SET; Schema: gem; Owner: postgres -- SELECT pg_catalog.setval('gem.ge_template_diff_expression_template_diff_expression_id_seq', 1, false); -- -- Name: ge_template_expression_template_expression_id_seq; Type: SEQUENCE SET; Schema: gem; Owner: postgres -- SELECT pg_catalog.setval('gem.ge_template_expression_template_expression_id_seq', 1, false); -- -- Name: ge_template_template_id_seq; Type: SEQUENCE SET; Schema: gem; Owner: postgres -- SELECT pg_catalog.setval('gem.ge_template_template_id_seq', 1, false); -- -- Name: blast_defline_blast_defline_id_seq; Type: SEQUENCE SET; Schema: genomic; Owner: postgres -- SELECT pg_catalog.setval('genomic.blast_defline_blast_defline_id_seq', 1, false); -- -- Name: blast_hit_blast_hit_id_seq; Type: SEQUENCE SET; Schema: genomic; Owner: postgres -- SELECT pg_catalog.setval('genomic.blast_hit_blast_hit_id_seq', 1, false); -- -- Name: blast_query_blast_query_id_seq; Type: SEQUENCE SET; Schema: genomic; Owner: postgres -- SELECT pg_catalog.setval('genomic.blast_query_blast_query_id_seq', 1, false); -- -- Name: chromat_chromat_id_seq; Type: SEQUENCE SET; Schema: genomic; Owner: postgres -- SELECT pg_catalog.setval('genomic.chromat_chromat_id_seq', 1, false); -- -- Name: clone_clone_id_seq; Type: SEQUENCE SET; Schema: genomic; Owner: postgres -- SELECT pg_catalog.setval('genomic.clone_clone_id_seq', 1, false); -- -- Name: clone_feature_clone_feature_id_seq; Type: SEQUENCE SET; Schema: genomic; Owner: postgres -- SELECT pg_catalog.setval('genomic.clone_feature_clone_feature_id_seq', 1, false); -- -- Name: clone_type_clone_type_id_seq; Type: SEQUENCE SET; Schema: genomic; Owner: postgres -- SELECT pg_catalog.setval('genomic.clone_type_clone_type_id_seq', 1, false); -- -- Name: genbank_submission_genbank_submission_id_seq; Type: SEQUENCE SET; Schema: genomic; Owner: postgres -- SELECT pg_catalog.setval('genomic.genbank_submission_genbank_submission_id_seq', 1, false); -- -- Name: gss_gss_id_seq; Type: SEQUENCE SET; Schema: genomic; Owner: postgres -- SELECT pg_catalog.setval('genomic.gss_gss_id_seq', 1, false); -- -- Name: gss_submitted_to_genbank_gss_submitted_to_genbank_id_seq; Type: SEQUENCE SET; Schema: genomic; Owner: postgres -- SELECT pg_catalog.setval('genomic.gss_submitted_to_genbank_gss_submitted_to_genbank_id_seq', 1, false); -- -- Name: library_annotation_db_library_annotation_db_id_seq; Type: SEQUENCE SET; Schema: genomic; Owner: postgres -- SELECT pg_catalog.setval('genomic.library_annotation_db_library_annotation_db_id_seq', 1, false); -- -- Name: library_library_id_seq; Type: SEQUENCE SET; Schema: genomic; Owner: postgres -- SELECT pg_catalog.setval('genomic.library_library_id_seq', 1, false); -- -- Name: library_shortname_abbreviatio_library_shortname_abbreviatio_seq; Type: SEQUENCE SET; Schema: genomic; Owner: postgres -- SELECT pg_catalog.setval('genomic.library_shortname_abbreviatio_library_shortname_abbreviatio_seq', 1, false); -- -- Name: qc_report_qc_report_id_seq; Type: SEQUENCE SET; Schema: genomic; Owner: postgres -- SELECT pg_catalog.setval('genomic.qc_report_qc_report_id_seq', 1, false); -- -- Name: query_source_type_query_source_type_id_seq; Type: SEQUENCE SET; Schema: genomic; Owner: postgres -- SELECT pg_catalog.setval('genomic.query_source_type_query_source_type_id_seq', 1, false); -- -- Name: read_class_read_class_id_seq; Type: SEQUENCE SET; Schema: genomic; Owner: postgres -- SELECT pg_catalog.setval('genomic.read_class_read_class_id_seq', 1, false); -- -- Name: sequencing_primer_sequencing_primer_id_seq; Type: SEQUENCE SET; Schema: genomic; Owner: postgres -- SELECT pg_catalog.setval('genomic.sequencing_primer_sequencing_primer_id_seq', 1, false); -- -- Name: experiment_experiment_id_seq; Type: SEQUENCE SET; Schema: insitu; Owner: postgres -- SELECT pg_catalog.setval('insitu.experiment_experiment_id_seq', 1, false); -- -- Name: experiment_image_experiment_image_id_seq; Type: SEQUENCE SET; Schema: insitu; Owner: postgres -- SELECT pg_catalog.setval('insitu.experiment_image_experiment_image_id_seq', 1, false); -- -- Name: experiment_tag_experiment_tag_id_seq; Type: SEQUENCE SET; Schema: insitu; Owner: postgres -- SELECT pg_catalog.setval('insitu.experiment_tag_experiment_tag_id_seq', 1, false); -- -- Name: is_organism_is_organism_id_seq; Type: SEQUENCE SET; Schema: insitu; Owner: postgres -- SELECT pg_catalog.setval('insitu.is_organism_is_organism_id_seq', 1, false); -- -- Name: probe_probe_id_seq; Type: SEQUENCE SET; Schema: insitu; Owner: postgres -- SELECT pg_catalog.setval('insitu.probe_probe_id_seq', 1, false); -- -- Name: tag_tag_id_seq; Type: SEQUENCE SET; Schema: insitu; Owner: postgres -- SELECT pg_catalog.setval('insitu.tag_tag_id_seq', 1, false); -- -- Name: attribution_attribution_id_seq; Type: SEQUENCE SET; Schema: metadata; Owner: postgres -- SELECT pg_catalog.setval('metadata.attribution_attribution_id_seq', 1, false); -- -- Name: attribution_to_attribution_to_id_seq; Type: SEQUENCE SET; Schema: metadata; Owner: postgres -- SELECT pg_catalog.setval('metadata.attribution_to_attribution_to_id_seq', 1, false); -- -- Name: comments_comment_id_seq; Type: SEQUENCE SET; Schema: metadata; Owner: postgres -- SELECT pg_catalog.setval('metadata.comments_comment_id_seq', 1, false); -- -- Name: md_dbipath_dbipath_id_seq; Type: SEQUENCE SET; Schema: metadata; Owner: postgres -- SELECT pg_catalog.setval('metadata.md_dbipath_dbipath_id_seq', 1, false); -- -- Name: md_dbiref_dbiref_id_seq; Type: SEQUENCE SET; Schema: metadata; Owner: postgres -- SELECT pg_catalog.setval('metadata.md_dbiref_dbiref_id_seq', 1, false); -- -- Name: md_dbversion_dbversion_id_seq; Type: SEQUENCE SET; Schema: metadata; Owner: postgres -- SELECT pg_catalog.setval('metadata.md_dbversion_dbversion_id_seq', 202, true); -- -- Name: md_files_file_id_seq; Type: SEQUENCE SET; Schema: metadata; Owner: postgres -- SELECT pg_catalog.setval('metadata.md_files_file_id_seq', 5, true); -- -- Name: md_groupmembers_groupmember_id_seq; Type: SEQUENCE SET; Schema: metadata; Owner: postgres -- SELECT pg_catalog.setval('metadata.md_groupmembers_groupmember_id_seq', 1, false); -- -- Name: md_groups_group_id_seq; Type: SEQUENCE SET; Schema: metadata; Owner: postgres -- SELECT pg_catalog.setval('metadata.md_groups_group_id_seq', 1, false); -- -- Name: md_image_cvterm_md_image_cvterm_id_seq; Type: SEQUENCE SET; Schema: metadata; Owner: postgres -- SELECT pg_catalog.setval('metadata.md_image_cvterm_md_image_cvterm_id_seq', 1, false); -- -- Name: md_image_image_id_seq; Type: SEQUENCE SET; Schema: metadata; Owner: postgres -- SELECT pg_catalog.setval('metadata.md_image_image_id_seq', 2424, true); -- -- Name: md_image_organism_md_image_organism_id_seq; Type: SEQUENCE SET; Schema: metadata; Owner: postgres -- SELECT pg_catalog.setval('metadata.md_image_organism_md_image_organism_id_seq', 1, false); -- -- Name: md_json_json_id_seq; Type: SEQUENCE SET; Schema: metadata; Owner: postgres -- SELECT pg_catalog.setval('metadata.md_json_json_id_seq', 1, false); -- -- Name: md_metadata_metadata_id_seq; Type: SEQUENCE SET; Schema: metadata; Owner: postgres -- SELECT pg_catalog.setval('metadata.md_metadata_metadata_id_seq', 215, true); -- -- Name: md_tag_image_tag_image_id_seq; Type: SEQUENCE SET; Schema: metadata; Owner: postgres -- SELECT pg_catalog.setval('metadata.md_tag_image_tag_image_id_seq', 1, false); -- -- Name: md_tag_tag_id_seq; Type: SEQUENCE SET; Schema: metadata; Owner: postgres -- SELECT pg_catalog.setval('metadata.md_tag_tag_id_seq', 1, false); -- -- Name: roles_role_id_seq; Type: SEQUENCE SET; Schema: metadata; Owner: postgres -- SELECT pg_catalog.setval('metadata.roles_role_id_seq', 1, false); -- -- Name: data_points_dp_id_seq; Type: SEQUENCE SET; Schema: pheno_population; Owner: postgres -- SELECT pg_catalog.setval('pheno_population.data_points_dp_id_seq', 1, false); -- -- Name: genotypes_gen_id_seq; Type: SEQUENCE SET; Schema: pheno_population; Owner: postgres -- SELECT pg_catalog.setval('pheno_population.genotypes_gen_id_seq', 1, false); -- -- Name: images_image_id_seq; Type: SEQUENCE SET; Schema: pheno_population; Owner: postgres -- SELECT pg_catalog.setval('pheno_population.images_image_id_seq', 1, false); -- -- Name: locations_loc_id_seq; Type: SEQUENCE SET; Schema: pheno_population; Owner: postgres -- SELECT pg_catalog.setval('pheno_population.locations_loc_id_seq', 1, false); -- -- Name: organs_organ_id_seq; Type: SEQUENCE SET; Schema: pheno_population; Owner: postgres -- SELECT pg_catalog.setval('pheno_population.organs_organ_id_seq', 1, false); -- -- Name: plants_plant_id_seq; Type: SEQUENCE SET; Schema: pheno_population; Owner: postgres -- SELECT pg_catalog.setval('pheno_population.plants_plant_id_seq', 1, false); -- -- Name: populations_pop_id_seq; Type: SEQUENCE SET; Schema: pheno_population; Owner: postgres -- SELECT pg_catalog.setval('pheno_population.populations_pop_id_seq', 1, false); -- -- Name: properties_prop_id_seq; Type: SEQUENCE SET; Schema: pheno_population; Owner: postgres -- SELECT pg_catalog.setval('pheno_population.properties_prop_id_seq', 1, false); -- -- Name: samples_sample_id_seq; Type: SEQUENCE SET; Schema: pheno_population; Owner: postgres -- SELECT pg_catalog.setval('pheno_population.samples_sample_id_seq', 1, false); -- -- Name: sources_source_id_seq; Type: SEQUENCE SET; Schema: pheno_population; Owner: postgres -- SELECT pg_catalog.setval('pheno_population.sources_source_id_seq', 1, false); -- -- Name: allele_alias_allele_alias_id_seq; Type: SEQUENCE SET; Schema: phenome; Owner: postgres -- SELECT pg_catalog.setval('phenome.allele_alias_allele_alias_id_seq', 1, false); -- -- Name: allele_allele_id_seq; Type: SEQUENCE SET; Schema: phenome; Owner: postgres -- SELECT pg_catalog.setval('phenome.allele_allele_id_seq', 1, true); -- -- Name: allele_dbxref_allele_dbxref_id_seq; Type: SEQUENCE SET; Schema: phenome; Owner: postgres -- SELECT pg_catalog.setval('phenome.allele_dbxref_allele_dbxref_id_seq', 1, false); -- -- Name: allele_history_allele_history_id_seq; Type: SEQUENCE SET; Schema: phenome; Owner: postgres -- SELECT pg_catalog.setval('phenome.allele_history_allele_history_id_seq', 1, false); -- -- Name: cross_type_cross_type_id_seq; Type: SEQUENCE SET; Schema: phenome; Owner: postgres -- SELECT pg_catalog.setval('phenome.cross_type_cross_type_id_seq', 1, false); -- -- Name: dbxref_type_dbxref_type_id_seq; Type: SEQUENCE SET; Schema: phenome; Owner: postgres -- SELECT pg_catalog.setval('phenome.dbxref_type_dbxref_type_id_seq', 1, false); -- -- Name: genotype_experiment_genotype_experiment_id_seq; Type: SEQUENCE SET; Schema: phenome; Owner: postgres -- SELECT pg_catalog.setval('phenome.genotype_experiment_genotype_experiment_id_seq', 1, false); -- -- Name: genotype_genotype_id_seq; Type: SEQUENCE SET; Schema: phenome; Owner: postgres -- SELECT pg_catalog.setval('phenome.genotype_genotype_id_seq', 1, false); -- -- Name: genotype_region_genotype_region_id_seq; Type: SEQUENCE SET; Schema: phenome; Owner: postgres -- SELECT pg_catalog.setval('phenome.genotype_region_genotype_region_id_seq', 1, false); -- -- Name: germplasm_germplasm_id_seq; Type: SEQUENCE SET; Schema: phenome; Owner: postgres -- SELECT pg_catalog.setval('phenome.germplasm_germplasm_id_seq', 1, false); -- -- Name: individual_alias_individual_alias_id_seq; Type: SEQUENCE SET; Schema: phenome; Owner: postgres -- SELECT pg_catalog.setval('phenome.individual_alias_individual_alias_id_seq', 1, false); -- -- Name: individual_allele_individual_allele_id_seq; Type: SEQUENCE SET; Schema: phenome; Owner: postgres -- SELECT pg_catalog.setval('phenome.individual_allele_individual_allele_id_seq', 1, false); -- -- Name: individual_dbxref_evidence_hi_individual_dbxref_evidence_hi_seq; Type: SEQUENCE SET; Schema: phenome; Owner: postgres -- SELECT pg_catalog.setval('phenome.individual_dbxref_evidence_hi_individual_dbxref_evidence_hi_seq', 1, false); -- -- Name: individual_dbxref_evidence_individual_dbxref_evidence_id_seq; Type: SEQUENCE SET; Schema: phenome; Owner: postgres -- SELECT pg_catalog.setval('phenome.individual_dbxref_evidence_individual_dbxref_evidence_id_seq', 1, false); -- -- Name: individual_dbxref_individual_dbxref_id_seq; Type: SEQUENCE SET; Schema: phenome; Owner: postgres -- SELECT pg_catalog.setval('phenome.individual_dbxref_individual_dbxref_id_seq', 1, false); -- -- Name: individual_history_individual_history_id_seq; Type: SEQUENCE SET; Schema: phenome; Owner: postgres -- SELECT pg_catalog.setval('phenome.individual_history_individual_history_id_seq', 1, false); -- -- Name: individual_image_individual_image_id_seq; Type: SEQUENCE SET; Schema: phenome; Owner: postgres -- SELECT pg_catalog.setval('phenome.individual_image_individual_image_id_seq', 1, false); -- -- Name: individual_individual_id_seq; Type: SEQUENCE SET; Schema: phenome; Owner: postgres -- SELECT pg_catalog.setval('phenome.individual_individual_id_seq', 1, false); -- -- Name: individual_locus_individual_locus_id_seq; Type: SEQUENCE SET; Schema: phenome; Owner: postgres -- SELECT pg_catalog.setval('phenome.individual_locus_individual_locus_id_seq', 1, false); -- -- Name: is_public_is_public_id_seq; Type: SEQUENCE SET; Schema: phenome; Owner: postgres -- SELECT pg_catalog.setval('phenome.is_public_is_public_id_seq', 1, false); -- -- Name: locus2locus_locus2locus_id_seq; Type: SEQUENCE SET; Schema: phenome; Owner: postgres -- SELECT pg_catalog.setval('phenome.locus2locus_locus2locus_id_seq', 1, false); -- -- Name: locus_alias_locus_alias_id_seq; Type: SEQUENCE SET; Schema: phenome; Owner: postgres -- SELECT pg_catalog.setval('phenome.locus_alias_locus_alias_id_seq', 1, true); -- -- Name: locus_dbxref_evidence_history_locus_dbxref_evidence_history_seq; Type: SEQUENCE SET; Schema: phenome; Owner: postgres -- SELECT pg_catalog.setval('phenome.locus_dbxref_evidence_history_locus_dbxref_evidence_history_seq', 1, false); -- -- Name: locus_dbxref_evidence_locus_dbxref_evidence_id_seq; Type: SEQUENCE SET; Schema: phenome; Owner: postgres -- SELECT pg_catalog.setval('phenome.locus_dbxref_evidence_locus_dbxref_evidence_id_seq', 1, false); -- -- Name: locus_dbxref_locus_dbxref_id_seq; Type: SEQUENCE SET; Schema: phenome; Owner: postgres -- SELECT pg_catalog.setval('phenome.locus_dbxref_locus_dbxref_id_seq', 1, false); -- -- Name: locus_history_locus_history_id_seq; Type: SEQUENCE SET; Schema: phenome; Owner: postgres -- SELECT pg_catalog.setval('phenome.locus_history_locus_history_id_seq', 3, true); -- -- Name: locus_image_locus_image_id_seq; Type: SEQUENCE SET; Schema: phenome; Owner: postgres -- SELECT pg_catalog.setval('phenome.locus_image_locus_image_id_seq', 1, false); -- -- Name: locus_locus_id_seq; Type: SEQUENCE SET; Schema: phenome; Owner: postgres -- SELECT pg_catalog.setval('phenome.locus_locus_id_seq', 3, true); -- -- Name: locus_marker_locus_marker_id_seq; Type: SEQUENCE SET; Schema: phenome; Owner: postgres -- SELECT pg_catalog.setval('phenome.locus_marker_locus_marker_id_seq', 1, false); -- -- Name: locus_owner_locus_owner_id_seq; Type: SEQUENCE SET; Schema: phenome; Owner: postgres -- SELECT pg_catalog.setval('phenome.locus_owner_locus_owner_id_seq', 1, true); -- -- Name: locus_registry_locus_registry_id_seq; Type: SEQUENCE SET; Schema: phenome; Owner: postgres -- SELECT pg_catalog.setval('phenome.locus_registry_locus_registry_id_seq', 1, false); -- -- Name: locus_unigene_locus_unigene_id_seq; Type: SEQUENCE SET; Schema: phenome; Owner: postgres -- SELECT pg_catalog.setval('phenome.locus_unigene_locus_unigene_id_seq', 1, false); -- -- Name: locusgroup_locusgroup_id_seq; Type: SEQUENCE SET; Schema: phenome; Owner: postgres -- SELECT pg_catalog.setval('phenome.locusgroup_locusgroup_id_seq', 1, false); -- -- Name: locusgroup_member_locusgroup_member_id_seq; Type: SEQUENCE SET; Schema: phenome; Owner: postgres -- SELECT pg_catalog.setval('phenome.locusgroup_member_locusgroup_member_id_seq', 1, false); -- -- Name: nd_experiment_md_files_nd_experiment_md_files_id_seq; Type: SEQUENCE SET; Schema: phenome; Owner: postgres -- SELECT pg_catalog.setval('phenome.nd_experiment_md_files_nd_experiment_md_files_id_seq', 3503, true); -- -- Name: nd_experiment_md_images_nd_experiment_md_images_id_seq; Type: SEQUENCE SET; Schema: phenome; Owner: postgres -- SELECT pg_catalog.setval('phenome.nd_experiment_md_images_nd_experiment_md_images_id_seq', 1, false); -- -- Name: nd_experiment_md_json_nd_experiment_md_json_id_seq; Type: SEQUENCE SET; Schema: phenome; Owner: postgres -- SELECT pg_catalog.setval('phenome.nd_experiment_md_json_nd_experiment_md_json_id_seq', 1, false); -- -- Name: phenotype_user_trait_phenotype_user_trait_id_seq; Type: SEQUENCE SET; Schema: phenome; Owner: postgres -- SELECT pg_catalog.setval('phenome.phenotype_user_trait_phenotype_user_trait_id_seq', 1, false); -- -- Name: polymorphic_fragment_polymorphic_fragment_id_seq; Type: SEQUENCE SET; Schema: phenome; Owner: postgres -- SELECT pg_catalog.setval('phenome.polymorphic_fragment_polymorphic_fragment_id_seq', 1, false); -- -- Name: population_dbxref_population_dbxref_id_seq; Type: SEQUENCE SET; Schema: phenome; Owner: postgres -- SELECT pg_catalog.setval('phenome.population_dbxref_population_dbxref_id_seq', 1, false); -- -- Name: population_population_id_seq; Type: SEQUENCE SET; Schema: phenome; Owner: postgres -- SELECT pg_catalog.setval('phenome.population_population_id_seq', 1, false); -- -- Name: project_md_image_project_md_image_id_seq; Type: SEQUENCE SET; Schema: phenome; Owner: postgres -- SELECT pg_catalog.setval('phenome.project_md_image_project_md_image_id_seq', 1, false); -- -- Name: pub_curator_pub_curator_id_seq; Type: SEQUENCE SET; Schema: phenome; Owner: postgres -- SELECT pg_catalog.setval('phenome.pub_curator_pub_curator_id_seq', 1, false); -- -- Name: registry_registry_id_seq; Type: SEQUENCE SET; Schema: phenome; Owner: postgres -- SELECT pg_catalog.setval('phenome.registry_registry_id_seq', 1, false); -- -- Name: stock_allele_stock_allele_id_seq; Type: SEQUENCE SET; Schema: phenome; Owner: postgres -- SELECT pg_catalog.setval('phenome.stock_allele_stock_allele_id_seq', 1, false); -- -- Name: stock_image_stock_image_id_seq; Type: SEQUENCE SET; Schema: phenome; Owner: postgres -- SELECT pg_catalog.setval('phenome.stock_image_stock_image_id_seq', 2424, true); -- -- Name: stock_owner_stock_owner_id_seq; Type: SEQUENCE SET; Schema: phenome; Owner: postgres -- SELECT pg_catalog.setval('phenome.stock_owner_stock_owner_id_seq', 152785, true); -- -- Name: tomato_il_bin_il_bin_id_seq; Type: SEQUENCE SET; Schema: phenome; Owner: postgres -- SELECT pg_catalog.setval('phenome.tomato_il_bin_il_bin_id_seq', 1, false); -- -- Name: tomato_term2term_tomato_term2term_id_seq; Type: SEQUENCE SET; Schema: phenome; Owner: postgres -- SELECT pg_catalog.setval('phenome.tomato_term2term_tomato_term2term_id_seq', 1, false); -- -- Name: tomato_term_tomato_term_id_seq; Type: SEQUENCE SET; Schema: phenome; Owner: postgres -- SELECT pg_catalog.setval('phenome.tomato_term_tomato_term_id_seq', 1, false); -- -- Name: unit_unit_id_seq; Type: SEQUENCE SET; Schema: phenome; Owner: postgres -- SELECT pg_catalog.setval('phenome.unit_unit_id_seq', 1, false); -- -- Name: user_trait_unit_user_trait_unit_id_seq; Type: SEQUENCE SET; Schema: phenome; Owner: postgres -- SELECT pg_catalog.setval('phenome.user_trait_unit_user_trait_unit_id_seq', 1, false); -- -- Name: user_trait_user_trait_id_seq; Type: SEQUENCE SET; Schema: phenome; Owner: postgres -- SELECT pg_catalog.setval('phenome.user_trait_user_trait_id_seq', 1, false); -- -- Name: variant_variant_id_seq; Type: SEQUENCE SET; Schema: phenome; Owner: postgres -- SELECT pg_catalog.setval('phenome.variant_variant_id_seq', 1, false); -- -- Name: ba_plausibility_bap_id_seq; Type: SEQUENCE SET; Schema: physical; Owner: postgres -- SELECT pg_catalog.setval('physical.ba_plausibility_bap_id_seq', 1, false); -- -- Name: bac_associations_bac_assoc_id_seq; Type: SEQUENCE SET; Schema: physical; Owner: postgres -- SELECT pg_catalog.setval('physical.bac_associations_bac_assoc_id_seq', 1, false); -- -- Name: bac_consensus_sequences_consensus_seq_id_seq; Type: SEQUENCE SET; Schema: physical; Owner: postgres -- SELECT pg_catalog.setval('physical.bac_consensus_sequences_consensus_seq_id_seq', 1, false); -- -- Name: bac_contigs_bac_contig_id_seq; Type: SEQUENCE SET; Schema: physical; Owner: postgres -- SELECT pg_catalog.setval('physical.bac_contigs_bac_contig_id_seq', 1, false); -- -- Name: bac_end_sequences_end_seq_id_seq; Type: SEQUENCE SET; Schema: physical; Owner: postgres -- SELECT pg_catalog.setval('physical.bac_end_sequences_end_seq_id_seq', 1, false); -- -- Name: bacs_bac_id_seq; Type: SEQUENCE SET; Schema: physical; Owner: postgres -- SELECT pg_catalog.setval('physical.bacs_bac_id_seq', 1, false); -- -- Name: computational_associations_computational_assoc_id_seq; Type: SEQUENCE SET; Schema: physical; Owner: postgres -- SELECT pg_catalog.setval('physical.computational_associations_computational_assoc_id_seq', 1, false); -- -- Name: contig_sizes_contig_size_id_seq; Type: SEQUENCE SET; Schema: physical; Owner: postgres -- SELECT pg_catalog.setval('physical.contig_sizes_contig_size_id_seq', 1, false); -- -- Name: deprecated_probes_dp_id_seq; Type: SEQUENCE SET; Schema: physical; Owner: postgres -- SELECT pg_catalog.setval('physical.deprecated_probes_dp_id_seq', 1, false); -- -- Name: fpc_data_fpc_datum_id_seq; Type: SEQUENCE SET; Schema: physical; Owner: postgres -- SELECT pg_catalog.setval('physical.fpc_data_fpc_datum_id_seq', 1, false); -- -- Name: fpc_version_fpc_version_seq; Type: SEQUENCE SET; Schema: physical; Owner: postgres -- SELECT pg_catalog.setval('physical.fpc_version_fpc_version_seq', 1, false); -- -- Name: manual_associations_manual_assoc_id_seq; Type: SEQUENCE SET; Schema: physical; Owner: postgres -- SELECT pg_catalog.setval('physical.manual_associations_manual_assoc_id_seq', 1, false); -- -- Name: oa_plausibility_oap_id_seq; Type: SEQUENCE SET; Schema: physical; Owner: postgres -- SELECT pg_catalog.setval('physical.oa_plausibility_oap_id_seq', 1, false); -- -- Name: overgo_associations_overgo_assoc_id_seq; Type: SEQUENCE SET; Schema: physical; Owner: postgres -- SELECT pg_catalog.setval('physical.overgo_associations_overgo_assoc_id_seq', 1, false); -- -- Name: overgo_plates_plate_id_seq; Type: SEQUENCE SET; Schema: physical; Owner: postgres -- SELECT pg_catalog.setval('physical.overgo_plates_plate_id_seq', 1, false); -- -- Name: overgo_results_result_id_seq; Type: SEQUENCE SET; Schema: physical; Owner: postgres -- SELECT pg_catalog.setval('physical.overgo_results_result_id_seq', 1, false); -- -- Name: overgo_version_overgo_version_seq; Type: SEQUENCE SET; Schema: physical; Owner: postgres -- SELECT pg_catalog.setval('physical.overgo_version_overgo_version_seq', 1, false); -- -- Name: probe_markers_overgo_probe_id_seq; Type: SEQUENCE SET; Schema: physical; Owner: postgres -- SELECT pg_catalog.setval('physical.probe_markers_overgo_probe_id_seq', 1, false); -- -- Name: species_species_id_seq; Type: SEQUENCE SET; Schema: physical; Owner: postgres -- SELECT pg_catalog.setval('physical.species_species_id_seq', 1, false); -- -- Name: tentative_association_conflict_groups_tacg_id_seq; Type: SEQUENCE SET; Schema: physical; Owner: postgres -- SELECT pg_catalog.setval('physical.tentative_association_conflict_groups_tacg_id_seq', 1, false); -- -- Name: tentative_overgo_associations_tentative_assoc_id_seq; Type: SEQUENCE SET; Schema: physical; Owner: postgres -- SELECT pg_catalog.setval('physical.tentative_overgo_associations_tentative_assoc_id_seq', 1, false); -- -- Name: users_user_id_seq; Type: SEQUENCE SET; Schema: physical; Owner: postgres -- SELECT pg_catalog.setval('physical.users_user_id_seq', 1, false); -- -- Name: analysis_analysis_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- SELECT pg_catalog.setval('public.analysis_analysis_id_seq', 1, false); -- -- Name: analysisfeature_analysisfeature_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- SELECT pg_catalog.setval('public.analysisfeature_analysisfeature_id_seq', 1, false); -- -- Name: analysisprop_analysisprop_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- SELECT pg_catalog.setval('public.analysisprop_analysisprop_id_seq', 1, false); -- -- Name: ara_users_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- SELECT pg_catalog.setval('public.ara_users_id_seq', 1, false); -- -- Name: blastwatch_queries_blastwatch_queries_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- SELECT pg_catalog.setval('public.blastwatch_queries_blastwatch_queries_id_seq', 1, false); -- -- Name: blastwatch_results_blastwatch_results_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- SELECT pg_catalog.setval('public.blastwatch_results_blastwatch_results_id_seq', 1, false); -- -- Name: bug_bug_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- SELECT pg_catalog.setval('public.bug_bug_id_seq', 1, false); -- -- Name: composed_trait_ids; Type: SEQUENCE SET; Schema: public; Owner: web_usr -- SELECT pg_catalog.setval('public.composed_trait_ids', 13, true); -- -- Name: contact_contact_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- SELECT pg_catalog.setval('public.contact_contact_id_seq', 1, false); -- -- Name: contact_relationship_contact_relationship_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- SELECT pg_catalog.setval('public.contact_relationship_contact_relationship_id_seq', 1, false); -- -- Name: cv_cv_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- SELECT pg_catalog.setval('public.cv_cv_id_seq', 74, true); -- -- Name: cvprop_cvprop_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- SELECT pg_catalog.setval('public.cvprop_cvprop_id_seq', 6, true); -- -- Name: cvterm_cvterm_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- SELECT pg_catalog.setval('public.cvterm_cvterm_id_seq', 79057, true); -- -- Name: cvterm_dbxref_cvterm_dbxref_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- SELECT pg_catalog.setval('public.cvterm_dbxref_cvterm_dbxref_id_seq', 125383, true); -- -- Name: cvterm_relationship_cvterm_relationship_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- SELECT pg_catalog.setval('public.cvterm_relationship_cvterm_relationship_id_seq', 111908, true); -- -- Name: cvtermpath_cvtermpath_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- SELECT pg_catalog.setval('public.cvtermpath_cvtermpath_id_seq', 1794576, true); -- -- Name: cvtermprop_cvtermprop_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- SELECT pg_catalog.setval('public.cvtermprop_cvtermprop_id_seq', 8079, true); -- -- Name: cvtermsynonym_cvtermsynonym_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- SELECT pg_catalog.setval('public.cvtermsynonym_cvtermsynonym_id_seq', 147980, true); -- -- Name: cxgn_bac_pipeline_genbank_log_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- SELECT pg_catalog.setval('public.cxgn_bac_pipeline_genbank_log_id_seq', 1, false); -- -- Name: cxgn_bac_pipeline_loading_log_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- SELECT pg_catalog.setval('public.cxgn_bac_pipeline_loading_log_id_seq', 1, false); -- -- Name: cxgn_bac_pipeline_processing_log_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- SELECT pg_catalog.setval('public.cxgn_bac_pipeline_processing_log_id_seq', 1, false); -- -- Name: cxgn_indexedlog_test_feel_free_to_delete_me_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- SELECT pg_catalog.setval('public.cxgn_indexedlog_test_feel_free_to_delete_me_id_seq', 1, false); -- -- Name: db_db_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- SELECT pg_catalog.setval('public.db_db_id_seq', 312, true); -- -- Name: dbxref_dbxref_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- SELECT pg_catalog.setval('public.dbxref_dbxref_id_seq', 214216, true); -- -- Name: dbxrefprop_dbxrefprop_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- SELECT pg_catalog.setval('public.dbxrefprop_dbxrefprop_id_seq', 1, false); -- -- Name: environment_cvterm_environment_cvterm_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- SELECT pg_catalog.setval('public.environment_cvterm_environment_cvterm_id_seq', 1, false); -- -- Name: environment_environment_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- SELECT pg_catalog.setval('public.environment_environment_id_seq', 1, false); -- -- Name: enzyme_restriction_sites_enzyme_restriction_sites_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- SELECT pg_catalog.setval('public.enzyme_restriction_sites_enzyme_restriction_sites_id_seq', 1, false); -- -- Name: feature_cvterm_dbxref_feature_cvterm_dbxref_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- SELECT pg_catalog.setval('public.feature_cvterm_dbxref_feature_cvterm_dbxref_id_seq', 1, false); -- -- Name: feature_cvterm_feature_cvterm_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- SELECT pg_catalog.setval('public.feature_cvterm_feature_cvterm_id_seq', 1, false); -- -- Name: feature_cvterm_pub_feature_cvterm_pub_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- SELECT pg_catalog.setval('public.feature_cvterm_pub_feature_cvterm_pub_id_seq', 1, false); -- -- Name: feature_cvtermprop_feature_cvtermprop_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- SELECT pg_catalog.setval('public.feature_cvtermprop_feature_cvtermprop_id_seq', 1, false); -- -- Name: feature_dbxref_feature_dbxref_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- SELECT pg_catalog.setval('public.feature_dbxref_feature_dbxref_id_seq', 1, false); -- -- Name: feature_feature_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- SELECT pg_catalog.setval('public.feature_feature_id_seq', 1, false); -- -- Name: feature_genotype_feature_genotype_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- SELECT pg_catalog.setval('public.feature_genotype_feature_genotype_id_seq', 1, false); -- -- Name: feature_pub_feature_pub_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- SELECT pg_catalog.setval('public.feature_pub_feature_pub_id_seq', 1, false); -- -- Name: feature_relationship_feature_relationship_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- SELECT pg_catalog.setval('public.feature_relationship_feature_relationship_id_seq', 1, false); -- -- Name: feature_relationship_pub_feature_relationship_pub_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- SELECT pg_catalog.setval('public.feature_relationship_pub_feature_relationship_pub_id_seq', 1, false); -- -- Name: feature_relationshipprop_feature_relationshipprop_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- SELECT pg_catalog.setval('public.feature_relationshipprop_feature_relationshipprop_id_seq', 1, false); -- -- Name: feature_relationshipprop_pub_feature_relationshipprop_pub_i_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- SELECT pg_catalog.setval('public.feature_relationshipprop_pub_feature_relationshipprop_pub_i_seq', 1, false); -- -- Name: feature_synonym_feature_synonym_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- SELECT pg_catalog.setval('public.feature_synonym_feature_synonym_id_seq', 1, false); -- -- Name: feature_uniquename_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- SELECT pg_catalog.setval('public.feature_uniquename_seq', 1, false); -- -- Name: featureloc_featureloc_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- SELECT pg_catalog.setval('public.featureloc_featureloc_id_seq', 1, false); -- -- Name: featureloc_pub_featureloc_pub_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- SELECT pg_catalog.setval('public.featureloc_pub_featureloc_pub_id_seq', 1, false); -- -- Name: featureprop_featureprop_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- SELECT pg_catalog.setval('public.featureprop_featureprop_id_seq', 1, false); -- -- Name: featureprop_pub_featureprop_pub_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- SELECT pg_catalog.setval('public.featureprop_pub_featureprop_pub_id_seq', 1, false); -- -- Name: forward_amplicon_sequence_inf_forward_amplicon_sequence_inf_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- SELECT pg_catalog.setval('public.forward_amplicon_sequence_inf_forward_amplicon_sequence_inf_seq', 1, false); -- -- Name: forward_amplicon_sequence_mar_forward_amplicon_sequence_mar_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- SELECT pg_catalog.setval('public.forward_amplicon_sequence_mar_forward_amplicon_sequence_mar_seq', 1, false); -- -- Name: fpc_band_fpc_band_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- SELECT pg_catalog.setval('public.fpc_band_fpc_band_id_seq', 1, false); -- -- Name: fpc_build_fpc_build_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- SELECT pg_catalog.setval('public.fpc_build_fpc_build_id_seq', 1, false); -- -- Name: fpc_build_fpc_fingerprint_fpc_build_fpc_fingerprint_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- SELECT pg_catalog.setval('public.fpc_build_fpc_fingerprint_fpc_build_fpc_fingerprint_id_seq', 1, false); -- -- Name: fpc_contig_clone_fpc_contig_clone_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- SELECT pg_catalog.setval('public.fpc_contig_clone_fpc_contig_clone_id_seq', 1, false); -- -- Name: fpc_contig_fpc_contig_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- SELECT pg_catalog.setval('public.fpc_contig_fpc_contig_id_seq', 1, false); -- -- Name: fpc_fingerprint_fpc_fingerprint_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- SELECT pg_catalog.setval('public.fpc_fingerprint_fpc_fingerprint_id_seq', 1, false); -- -- Name: fpc_series_fpc_series_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- SELECT pg_catalog.setval('public.fpc_series_fpc_series_id_seq', 1, false); -- -- Name: genotype_genotype_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- SELECT pg_catalog.setval('public.genotype_genotype_id_seq', 1063, true); -- -- Name: genotypeprop_genotypeprop_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- SELECT pg_catalog.setval('public.genotypeprop_genotypeprop_id_seq', 2156, true); -- -- Name: glossary_glossary_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- SELECT pg_catalog.setval('public.glossary_glossary_id_seq', 1, false); -- -- Name: itag_loading_log_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- SELECT pg_catalog.setval('public.itag_loading_log_id_seq', 1, false); -- -- Name: materialized_view_materialized_view_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- SELECT pg_catalog.setval('public.materialized_view_materialized_view_id_seq', 1, false); -- -- Name: matviews_mv_id_seq; Type: SEQUENCE SET; Schema: public; Owner: web_usr -- SELECT pg_catalog.setval('public.matviews_mv_id_seq', 148, true); -- -- Name: nd_experiment_contact_nd_experiment_contact_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- SELECT pg_catalog.setval('public.nd_experiment_contact_nd_experiment_contact_id_seq', 1, false); -- -- Name: nd_experiment_dbxref_nd_experiment_dbxref_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- SELECT pg_catalog.setval('public.nd_experiment_dbxref_nd_experiment_dbxref_id_seq', 1, false); -- -- Name: nd_experiment_genotype_nd_experiment_genotype_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- SELECT pg_catalog.setval('public.nd_experiment_genotype_nd_experiment_genotype_id_seq', 1063, true); -- -- Name: nd_experiment_nd_experiment_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- SELECT pg_catalog.setval('public.nd_experiment_nd_experiment_id_seq', 80724, true); -- -- Name: nd_experiment_phenotype_nd_experiment_phenotype_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- SELECT pg_catalog.setval('public.nd_experiment_phenotype_nd_experiment_phenotype_id_seq', 1487478, true); -- -- Name: nd_experiment_project_nd_experiment_project_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- SELECT pg_catalog.setval('public.nd_experiment_project_nd_experiment_project_id_seq', 80719, true); -- -- Name: nd_experiment_protocol_nd_experiment_protocol_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- SELECT pg_catalog.setval('public.nd_experiment_protocol_nd_experiment_protocol_id_seq', 535, true); -- -- Name: nd_experiment_pub_nd_experiment_pub_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- SELECT pg_catalog.setval('public.nd_experiment_pub_nd_experiment_pub_id_seq', 1, false); -- -- Name: nd_experiment_stock_dbxref_nd_experiment_stock_dbxref_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- SELECT pg_catalog.setval('public.nd_experiment_stock_dbxref_nd_experiment_stock_dbxref_id_seq', 1, false); -- -- Name: nd_experiment_stock_nd_experiment_stock_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- SELECT pg_catalog.setval('public.nd_experiment_stock_nd_experiment_stock_id_seq', 82711, true); -- -- Name: nd_experiment_stockprop_nd_experiment_stockprop_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- SELECT pg_catalog.setval('public.nd_experiment_stockprop_nd_experiment_stockprop_id_seq', 1, false); -- -- Name: nd_experimentprop_nd_experimentprop_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- SELECT pg_catalog.setval('public.nd_experimentprop_nd_experimentprop_id_seq', 7048, true); -- -- Name: nd_geolocation_nd_geolocation_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- SELECT pg_catalog.setval('public.nd_geolocation_nd_geolocation_id_seq', 26, true); -- -- Name: nd_geolocationprop_nd_geolocationprop_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- SELECT pg_catalog.setval('public.nd_geolocationprop_nd_geolocationprop_id_seq', 9, true); -- -- Name: nd_protocol_nd_protocol_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- SELECT pg_catalog.setval('public.nd_protocol_nd_protocol_id_seq', 1, true); -- -- Name: nd_protocol_reagent_nd_protocol_reagent_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- SELECT pg_catalog.setval('public.nd_protocol_reagent_nd_protocol_reagent_id_seq', 1, false); -- -- Name: nd_protocolprop_nd_protocolprop_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- SELECT pg_catalog.setval('public.nd_protocolprop_nd_protocolprop_id_seq', 1, false); -- -- Name: nd_reagent_nd_reagent_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- SELECT pg_catalog.setval('public.nd_reagent_nd_reagent_id_seq', 1, false); -- -- Name: nd_reagent_relationship_nd_reagent_relationship_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- SELECT pg_catalog.setval('public.nd_reagent_relationship_nd_reagent_relationship_id_seq', 1, false); -- -- Name: nd_reagentprop_nd_reagentprop_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- SELECT pg_catalog.setval('public.nd_reagentprop_nd_reagentprop_id_seq', 1, false); -- -- Name: organism_dbxref_organism_dbxref_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- SELECT pg_catalog.setval('public.organism_dbxref_organism_dbxref_id_seq', 109390, true); -- -- Name: organism_organism_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- SELECT pg_catalog.setval('public.organism_organism_id_seq', 109398, true); -- -- Name: organism_relationship_organism_relationship_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- SELECT pg_catalog.setval('public.organism_relationship_organism_relationship_id_seq', 1, false); -- -- Name: organismpath_organismpath_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- SELECT pg_catalog.setval('public.organismpath_organismpath_id_seq', 1, false); -- -- Name: organismprop_organismprop_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- SELECT pg_catalog.setval('public.organismprop_organismprop_id_seq', 59397, true); -- -- Name: phendesc_phendesc_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- SELECT pg_catalog.setval('public.phendesc_phendesc_id_seq', 1, false); -- -- Name: phenotype_comparison_cvterm_phenotype_comparison_cvterm_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- SELECT pg_catalog.setval('public.phenotype_comparison_cvterm_phenotype_comparison_cvterm_id_seq', 1, false); -- -- Name: phenotype_comparison_phenotype_comparison_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- SELECT pg_catalog.setval('public.phenotype_comparison_phenotype_comparison_id_seq', 1, false); -- -- Name: phenotype_cvterm_phenotype_cvterm_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- SELECT pg_catalog.setval('public.phenotype_cvterm_phenotype_cvterm_id_seq', 1, false); -- -- Name: phenotype_phenotype_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- SELECT pg_catalog.setval('public.phenotype_phenotype_id_seq', 740533, true); -- -- Name: phenotypeprop_phenotypeprop_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- SELECT pg_catalog.setval('public.phenotypeprop_phenotypeprop_id_seq', 1, false); -- -- Name: phenstatement_phenstatement_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- SELECT pg_catalog.setval('public.phenstatement_phenstatement_id_seq', 1, false); -- -- Name: phylonode_dbxref_phylonode_dbxref_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- SELECT pg_catalog.setval('public.phylonode_dbxref_phylonode_dbxref_id_seq', 1, false); -- -- Name: phylonode_organism_phylonode_organism_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- SELECT pg_catalog.setval('public.phylonode_organism_phylonode_organism_id_seq', 109390, true); -- -- Name: phylonode_phylonode_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- SELECT pg_catalog.setval('public.phylonode_phylonode_id_seq', 1, false); -- -- Name: phylonode_pub_phylonode_pub_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- SELECT pg_catalog.setval('public.phylonode_pub_phylonode_pub_id_seq', 1, false); -- -- Name: phylonode_relationship_phylonode_relationship_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- SELECT pg_catalog.setval('public.phylonode_relationship_phylonode_relationship_id_seq', 1, false); -- -- Name: phylonodeprop_phylonodeprop_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- SELECT pg_catalog.setval('public.phylonodeprop_phylonodeprop_id_seq', 1, false); -- -- Name: phylotree_phylotree_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- SELECT pg_catalog.setval('public.phylotree_phylotree_id_seq', 1, true); -- -- Name: phylotree_pub_phylotree_pub_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- SELECT pg_catalog.setval('public.phylotree_pub_phylotree_pub_id_seq', 1, false); -- -- Name: project_contact_project_contact_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- SELECT pg_catalog.setval('public.project_contact_project_contact_id_seq', 1, false); -- -- Name: project_project_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- SELECT pg_catalog.setval('public.project_project_id_seq', 166, true); -- -- Name: project_pub_project_pub_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- SELECT pg_catalog.setval('public.project_pub_project_pub_id_seq', 1, false); -- -- Name: project_relationship_project_relationship_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- SELECT pg_catalog.setval('public.project_relationship_project_relationship_id_seq', 27, true); -- -- Name: projectprop_projectprop_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- SELECT pg_catalog.setval('public.projectprop_projectprop_id_seq', 181, true); -- -- Name: pub_dbxref_pub_dbxref_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- SELECT pg_catalog.setval('public.pub_dbxref_pub_dbxref_id_seq', 2, true); -- -- Name: pub_pub_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- SELECT pg_catalog.setval('public.pub_pub_id_seq', 2, true); -- -- Name: pub_relationship_pub_relationship_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- SELECT pg_catalog.setval('public.pub_relationship_pub_relationship_id_seq', 1, false); -- -- Name: pubabstract_pubabstract_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- SELECT pg_catalog.setval('public.pubabstract_pubabstract_id_seq', 1, false); -- -- Name: pubauthor_pubauthor_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- SELECT pg_catalog.setval('public.pubauthor_pubauthor_id_seq', 1, false); -- -- Name: pubprop_pubprop_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- SELECT pg_catalog.setval('public.pubprop_pubprop_id_seq', 1, false); -- -- Name: resource_file_resource_file_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- SELECT pg_catalog.setval('public.resource_file_resource_file_id_seq', 1, false); -- -- Name: signalp_signalp_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- SELECT pg_catalog.setval('public.signalp_signalp_id_seq', 1, false); -- -- Name: stock_cvterm_stock_cvterm_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- SELECT pg_catalog.setval('public.stock_cvterm_stock_cvterm_id_seq', 1, false); -- -- Name: stock_cvtermprop_stock_cvtermprop_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- SELECT pg_catalog.setval('public.stock_cvtermprop_stock_cvtermprop_id_seq', 1, false); -- -- Name: stock_dbxref_stock_dbxref_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- SELECT pg_catalog.setval('public.stock_dbxref_stock_dbxref_id_seq', 1, false); -- -- Name: stock_dbxrefprop_stock_dbxrefprop_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- SELECT pg_catalog.setval('public.stock_dbxrefprop_stock_dbxrefprop_id_seq', 1, false); -- -- Name: stock_genotype_stock_genotype_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- SELECT pg_catalog.setval('public.stock_genotype_stock_genotype_id_seq', 1, false); -- -- Name: stock_pub_stock_pub_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- SELECT pg_catalog.setval('public.stock_pub_stock_pub_id_seq', 1, false); -- -- Name: stock_relationship_cvterm_stock_relationship_cvterm_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- SELECT pg_catalog.setval('public.stock_relationship_cvterm_stock_relationship_cvterm_id_seq', 1, false); -- -- Name: stock_relationship_pub_stock_relationship_pub_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- SELECT pg_catalog.setval('public.stock_relationship_pub_stock_relationship_pub_id_seq', 1, false); -- -- Name: stock_relationship_stock_relationship_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- SELECT pg_catalog.setval('public.stock_relationship_stock_relationship_id_seq', 41008, true); -- -- Name: stock_stock_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- SELECT pg_catalog.setval('public.stock_stock_id_seq', 41784, true); -- -- Name: stockcollection_stock_stockcollection_stock_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- SELECT pg_catalog.setval('public.stockcollection_stock_stockcollection_stock_id_seq', 1, false); -- -- Name: stockcollection_stockcollection_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- SELECT pg_catalog.setval('public.stockcollection_stockcollection_id_seq', 1, false); -- -- Name: stockcollectionprop_stockcollectionprop_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- SELECT pg_catalog.setval('public.stockcollectionprop_stockcollectionprop_id_seq', 1, false); -- -- Name: stockprop_pub_stockprop_pub_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- SELECT pg_catalog.setval('public.stockprop_pub_stockprop_pub_id_seq', 1, false); -- -- Name: stockprop_stockprop_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- SELECT pg_catalog.setval('public.stockprop_stockprop_id_seq', 45149, true); -- -- Name: synonym_synonym_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- SELECT pg_catalog.setval('public.synonym_synonym_id_seq', 1, false); -- -- Name: tableinfo_tableinfo_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- SELECT pg_catalog.setval('public.tableinfo_tableinfo_id_seq', 1, false); -- -- Name: tmp_cds_handler_cds_row_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- SELECT pg_catalog.setval('public.tmp_cds_handler_cds_row_id_seq', 1, false); -- -- Name: tmp_cds_handler_relationship_rel_row_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- SELECT pg_catalog.setval('public.tmp_cds_handler_relationship_rel_row_id_seq', 1, false); -- -- Name: unigene_dbxref_unigene_dbxref_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres -- SELECT pg_catalog.setval('public.unigene_dbxref_unigene_dbxref_id_seq', 1, false); -- -- Name: accession_accession_id_seq; Type: SEQUENCE SET; Schema: sgn; Owner: postgres -- SELECT pg_catalog.setval('sgn.accession_accession_id_seq', 1, false); -- -- Name: accession_names_accession_name_id_seq; Type: SEQUENCE SET; Schema: sgn; Owner: postgres -- SELECT pg_catalog.setval('sgn.accession_names_accession_name_id_seq', 1, false); -- -- Name: annotation_target_type_annotation_target_type_id_seq; Type: SEQUENCE SET; Schema: sgn; Owner: postgres -- SELECT pg_catalog.setval('sgn.annotation_target_type_annotation_target_type_id_seq', 1, false); -- -- Name: authors_author_id_seq; Type: SEQUENCE SET; Schema: sgn; Owner: postgres -- SELECT pg_catalog.setval('sgn.authors_author_id_seq', 1, false); -- -- Name: blast_annotations_blast_annotation_id_seq; Type: SEQUENCE SET; Schema: sgn; Owner: postgres -- SELECT pg_catalog.setval('sgn.blast_annotations_blast_annotation_id_seq', 1, false); -- -- Name: blast_db_blast_db_group_blast_db_blast_db_group_id_seq; Type: SEQUENCE SET; Schema: sgn; Owner: postgres -- SELECT pg_catalog.setval('sgn.blast_db_blast_db_group_blast_db_blast_db_group_id_seq', 1, true); -- -- Name: blast_db_blast_db_id_seq; Type: SEQUENCE SET; Schema: sgn; Owner: postgres -- SELECT pg_catalog.setval('sgn.blast_db_blast_db_id_seq', 1, true); -- -- Name: blast_db_group_blast_db_group_id_seq; Type: SEQUENCE SET; Schema: sgn; Owner: postgres -- SELECT pg_catalog.setval('sgn.blast_db_group_blast_db_group_id_seq', 1, true); -- -- Name: blast_db_organism_blast_db_organism_id_seq; Type: SEQUENCE SET; Schema: sgn; Owner: postgres -- SELECT pg_catalog.setval('sgn.blast_db_organism_blast_db_organism_id_seq', 1, false); -- -- Name: blast_defline_defline_id_seq; Type: SEQUENCE SET; Schema: sgn; Owner: postgres -- SELECT pg_catalog.setval('sgn.blast_defline_defline_id_seq', 1, false); -- -- Name: blast_hits_blast_hit_id_seq; Type: SEQUENCE SET; Schema: sgn; Owner: postgres -- SELECT pg_catalog.setval('sgn.blast_hits_blast_hit_id_seq', 1, false); -- -- Name: blast_targets_blast_target_id_seq; Type: SEQUENCE SET; Schema: sgn; Owner: postgres -- SELECT pg_catalog.setval('sgn.blast_targets_blast_target_id_seq', 1, false); -- -- Name: cds_cds_id_seq; Type: SEQUENCE SET; Schema: sgn; Owner: postgres -- SELECT pg_catalog.setval('sgn.cds_cds_id_seq', 1, false); -- -- Name: chadoprop_chadoprop_id_seq; Type: SEQUENCE SET; Schema: sgn; Owner: postgres -- SELECT pg_catalog.setval('sgn.chadoprop_chadoprop_id_seq', 1, false); -- -- Name: clone_clone_id_seq; Type: SEQUENCE SET; Schema: sgn; Owner: postgres -- SELECT pg_catalog.setval('sgn.clone_clone_id_seq', 1, false); -- -- Name: cloning_vector_cloning_vector_id_seq; Type: SEQUENCE SET; Schema: sgn; Owner: postgres -- SELECT pg_catalog.setval('sgn.cloning_vector_cloning_vector_id_seq', 1, false); -- -- Name: common_name_common_name_id_seq; Type: SEQUENCE SET; Schema: sgn; Owner: postgres -- SELECT pg_catalog.setval('sgn.common_name_common_name_id_seq', 1, true); -- -- Name: common_nameprop_common_nameprop_id_seq; Type: SEQUENCE SET; Schema: sgn; Owner: postgres -- SELECT pg_catalog.setval('sgn.common_nameprop_common_nameprop_id_seq', 1, false); -- -- Name: composed_trait_ids; Type: SEQUENCE SET; Schema: sgn; Owner: web_usr -- SELECT pg_catalog.setval('sgn.composed_trait_ids', 13, true); -- -- Name: cos_markers_cos_marker_id_seq; Type: SEQUENCE SET; Schema: sgn; Owner: postgres -- SELECT pg_catalog.setval('sgn.cos_markers_cos_marker_id_seq', 1, false); -- -- Name: cosii_ortholog_cosii_unigene_id_seq; Type: SEQUENCE SET; Schema: sgn; Owner: postgres -- SELECT pg_catalog.setval('sgn.cosii_ortholog_cosii_unigene_id_seq', 1, false); -- -- Name: deprecated_linkage_groups_lg_id_seq; Type: SEQUENCE SET; Schema: sgn; Owner: postgres -- SELECT pg_catalog.setval('sgn.deprecated_linkage_groups_lg_id_seq', 1, false); -- -- Name: deprecated_map_cross_map_cross_id_seq; Type: SEQUENCE SET; Schema: sgn; Owner: postgres -- SELECT pg_catalog.setval('sgn.deprecated_map_cross_map_cross_id_seq', 1, false); -- -- Name: deprecated_mapdata_loc_id_seq; Type: SEQUENCE SET; Schema: sgn; Owner: postgres -- SELECT pg_catalog.setval('sgn.deprecated_mapdata_loc_id_seq', 1, false); -- -- Name: deprecated_maps_map_id_seq; Type: SEQUENCE SET; Schema: sgn; Owner: postgres -- SELECT pg_catalog.setval('sgn.deprecated_maps_map_id_seq', 1, false); -- -- Name: deprecated_marker_confidences_confidence_id_seq; Type: SEQUENCE SET; Schema: sgn; Owner: postgres -- SELECT pg_catalog.setval('sgn.deprecated_marker_confidences_confidence_id_seq', 1, false); -- -- Name: deprecated_marker_locations_marker_location_id_seq; Type: SEQUENCE SET; Schema: sgn; Owner: postgres -- SELECT pg_catalog.setval('sgn.deprecated_marker_locations_marker_location_id_seq', 1, false); -- -- Name: deprecated_marker_types_marker_type_id_seq; Type: SEQUENCE SET; Schema: sgn; Owner: postgres -- SELECT pg_catalog.setval('sgn.deprecated_marker_types_marker_type_id_seq', 1, false); -- -- Name: deprecated_markers_marker_id_seq; Type: SEQUENCE SET; Schema: sgn; Owner: postgres -- SELECT pg_catalog.setval('sgn.deprecated_markers_marker_id_seq', 1, false); -- -- Name: derived_from_source_derived_from_source_id_seq; Type: SEQUENCE SET; Schema: sgn; Owner: postgres -- SELECT pg_catalog.setval('sgn.derived_from_source_derived_from_source_id_seq', 1, false); -- -- Name: domain_domain_id_seq; Type: SEQUENCE SET; Schema: sgn; Owner: postgres -- SELECT pg_catalog.setval('sgn.domain_domain_id_seq', 1, false); -- -- Name: domain_match_domain_match_id_seq; Type: SEQUENCE SET; Schema: sgn; Owner: postgres -- SELECT pg_catalog.setval('sgn.domain_match_domain_match_id_seq', 1, false); -- -- Name: enzyme_restriction_sites_enzyme_restriction_sites_id_seq; Type: SEQUENCE SET; Schema: sgn; Owner: postgres -- SELECT pg_catalog.setval('sgn.enzyme_restriction_sites_enzyme_restriction_sites_id_seq', 1, false); -- -- Name: enzymes_enzyme_id_seq; Type: SEQUENCE SET; Schema: sgn; Owner: postgres -- SELECT pg_catalog.setval('sgn.enzymes_enzyme_id_seq', 1, false); -- -- Name: est_dbxref_est_dbxref_id_seq; Type: SEQUENCE SET; Schema: sgn; Owner: postgres -- SELECT pg_catalog.setval('sgn.est_dbxref_est_dbxref_id_seq', 1, false); -- -- Name: est_est_id_seq; Type: SEQUENCE SET; Schema: sgn; Owner: postgres -- SELECT pg_catalog.setval('sgn.est_est_id_seq', 1, false); -- -- Name: ests_mapped_by_clone_embc_id_seq; Type: SEQUENCE SET; Schema: sgn; Owner: postgres -- SELECT pg_catalog.setval('sgn.ests_mapped_by_clone_embc_id_seq', 1, false); -- -- Name: experiment_type_experiment_type_id_seq; Type: SEQUENCE SET; Schema: sgn; Owner: postgres -- SELECT pg_catalog.setval('sgn.experiment_type_experiment_type_id_seq', 1, true); -- -- Name: facility_facility_id_seq; Type: SEQUENCE SET; Schema: sgn; Owner: postgres -- SELECT pg_catalog.setval('sgn.facility_facility_id_seq', 1, false); -- -- Name: family_build_family_build_id_seq; Type: SEQUENCE SET; Schema: sgn; Owner: postgres -- SELECT pg_catalog.setval('sgn.family_build_family_build_id_seq', 1, false); -- -- Name: family_family_id_seq; Type: SEQUENCE SET; Schema: sgn; Owner: postgres -- SELECT pg_catalog.setval('sgn.family_family_id_seq', 1, false); -- -- Name: family_member_family_member_id_seq; Type: SEQUENCE SET; Schema: sgn; Owner: postgres -- SELECT pg_catalog.setval('sgn.family_member_family_member_id_seq', 1, false); -- -- Name: family_tree_family_tree_id_seq; Type: SEQUENCE SET; Schema: sgn; Owner: postgres -- SELECT pg_catalog.setval('sgn.family_tree_family_tree_id_seq', 1, false); -- -- Name: fish_experimenter_fish_experimenter_id_seq; Type: SEQUENCE SET; Schema: sgn; Owner: postgres -- SELECT pg_catalog.setval('sgn.fish_experimenter_fish_experimenter_id_seq', 1, false); -- -- Name: fish_file_fish_file_id_seq; Type: SEQUENCE SET; Schema: sgn; Owner: postgres -- SELECT pg_catalog.setval('sgn.fish_file_fish_file_id_seq', 1, false); -- -- Name: fish_result_fish_result_id_seq; Type: SEQUENCE SET; Schema: sgn; Owner: postgres -- SELECT pg_catalog.setval('sgn.fish_result_fish_result_id_seq', 1, false); -- -- Name: fish_result_image_fish_result_image_id_seq; Type: SEQUENCE SET; Schema: sgn; Owner: postgres -- SELECT pg_catalog.setval('sgn.fish_result_image_fish_result_image_id_seq', 1, false); -- -- Name: go_go_id_seq; Type: SEQUENCE SET; Schema: sgn; Owner: postgres -- SELECT pg_catalog.setval('sgn.go_go_id_seq', 1, false); -- -- Name: group_linkage_group_linkage_id_seq; Type: SEQUENCE SET; Schema: sgn; Owner: postgres -- SELECT pg_catalog.setval('sgn.group_linkage_group_linkage_id_seq', 1, false); -- -- Name: groups_group_id_seq; Type: SEQUENCE SET; Schema: sgn; Owner: postgres -- SELECT pg_catalog.setval('sgn.groups_group_id_seq', 1, false); -- -- Name: id_linkage_id_linkage_id_seq; Type: SEQUENCE SET; Schema: sgn; Owner: postgres -- SELECT pg_catalog.setval('sgn.id_linkage_id_linkage_id_seq', 1, false); -- -- Name: interpro_go_interpro_go_id_seq; Type: SEQUENCE SET; Schema: sgn; Owner: postgres -- SELECT pg_catalog.setval('sgn.interpro_go_interpro_go_id_seq', 1, false); -- -- Name: interpro_interpro_id_seq; Type: SEQUENCE SET; Schema: sgn; Owner: postgres -- SELECT pg_catalog.setval('sgn.interpro_interpro_id_seq', 1, false); -- -- Name: library_library_id_seq; Type: SEQUENCE SET; Schema: sgn; Owner: postgres -- SELECT pg_catalog.setval('sgn.library_library_id_seq', 1, false); -- -- Name: linkage_group_lg_id_seq; Type: SEQUENCE SET; Schema: sgn; Owner: postgres -- SELECT pg_catalog.setval('sgn.linkage_group_lg_id_seq', 23, true); -- -- Name: loc_types_loc_type_id_seq; Type: SEQUENCE SET; Schema: sgn; Owner: postgres -- SELECT pg_catalog.setval('sgn.loc_types_loc_type_id_seq', 1, false); -- -- Name: manual_annotations_manual_annotations_id_seq; Type: SEQUENCE SET; Schema: sgn; Owner: postgres -- SELECT pg_catalog.setval('sgn.manual_annotations_manual_annotations_id_seq', 1, false); -- -- Name: manual_censor_reasons_censor_id_seq; Type: SEQUENCE SET; Schema: sgn; Owner: postgres -- SELECT pg_catalog.setval('sgn.manual_censor_reasons_censor_id_seq', 1, false); -- -- Name: map_map_id_seq; Type: SEQUENCE SET; Schema: sgn; Owner: postgres -- SELECT pg_catalog.setval('sgn.map_map_id_seq', 1, true); -- -- Name: map_version_map_version_id_seq; Type: SEQUENCE SET; Schema: sgn; Owner: postgres -- SELECT pg_catalog.setval('sgn.map_version_map_version_id_seq', 2, true); -- -- Name: marker_alias_alias_id_seq; Type: SEQUENCE SET; Schema: sgn; Owner: postgres -- SELECT pg_catalog.setval('sgn.marker_alias_alias_id_seq', 567, true); -- -- Name: marker_collectible_marker_collectible_dummy_id_seq; Type: SEQUENCE SET; Schema: sgn; Owner: postgres -- SELECT pg_catalog.setval('sgn.marker_collectible_marker_collectible_dummy_id_seq', 1, false); -- -- Name: marker_collection_mc_id_seq; Type: SEQUENCE SET; Schema: sgn; Owner: postgres -- SELECT pg_catalog.setval('sgn.marker_collection_mc_id_seq', 1, false); -- -- Name: marker_confidence_confidence_id_seq; Type: SEQUENCE SET; Schema: sgn; Owner: postgres -- SELECT pg_catalog.setval('sgn.marker_confidence_confidence_id_seq', 1, true); -- -- Name: marker_derived_from_marker_derived_dummy_id_seq; Type: SEQUENCE SET; Schema: sgn; Owner: postgres -- SELECT pg_catalog.setval('sgn.marker_derived_from_marker_derived_dummy_id_seq', 1, false); -- -- Name: marker_experiment_marker_experiment_id_seq; Type: SEQUENCE SET; Schema: sgn; Owner: postgres -- SELECT pg_catalog.setval('sgn.marker_experiment_marker_experiment_id_seq', 567, true); -- -- Name: marker_location_location_id_seq; Type: SEQUENCE SET; Schema: sgn; Owner: postgres -- SELECT pg_catalog.setval('sgn.marker_location_location_id_seq', 567, true); -- -- Name: marker_marker_id_seq; Type: SEQUENCE SET; Schema: sgn; Owner: postgres -- SELECT pg_catalog.setval('sgn.marker_marker_id_seq', 567, true); -- -- Name: metadata_metadata_id_seq; Type: SEQUENCE SET; Schema: sgn; Owner: postgres -- SELECT pg_catalog.setval('sgn.metadata_metadata_id_seq', 1, false); -- -- Name: microarray_microarray_id_seq; Type: SEQUENCE SET; Schema: sgn; Owner: postgres -- SELECT pg_catalog.setval('sgn.microarray_microarray_id_seq', 1, false); -- -- Name: misc_misc_unique_id_seq; Type: SEQUENCE SET; Schema: sgn; Owner: postgres -- SELECT pg_catalog.setval('sgn.misc_misc_unique_id_seq', 1, false); -- -- Name: organism_organism_id_seq; Type: SEQUENCE SET; Schema: sgn; Owner: postgres -- SELECT pg_catalog.setval('sgn.organism_organism_id_seq', 1, false); -- -- Name: organismgroup_member_organismgroup_member_id_seq; Type: SEQUENCE SET; Schema: sgn; Owner: postgres -- SELECT pg_catalog.setval('sgn.organismgroup_member_organismgroup_member_id_seq', 1, false); -- -- Name: organismgroup_organismgroup_id_seq; Type: SEQUENCE SET; Schema: sgn; Owner: postgres -- SELECT pg_catalog.setval('sgn.organismgroup_organismgroup_id_seq', 1, false); -- -- Name: p_markers_pid_seq; Type: SEQUENCE SET; Schema: sgn; Owner: postgres -- SELECT pg_catalog.setval('sgn.p_markers_pid_seq', 1, false); -- -- Name: pcr_exp_accession_pcr_exp_accession_id_seq; Type: SEQUENCE SET; Schema: sgn; Owner: postgres -- SELECT pg_catalog.setval('sgn.pcr_exp_accession_pcr_exp_accession_id_seq', 1, false); -- -- Name: pcr_experiment_pcr_experiment_id_seq; Type: SEQUENCE SET; Schema: sgn; Owner: postgres -- SELECT pg_catalog.setval('sgn.pcr_experiment_pcr_experiment_id_seq', 1, false); -- -- Name: pcr_experiment_sequence_pcr_experiment_sequence_id_seq; Type: SEQUENCE SET; Schema: sgn; Owner: postgres -- SELECT pg_catalog.setval('sgn.pcr_experiment_sequence_pcr_experiment_sequence_id_seq', 1, false); -- -- Name: pcr_product_pcr_product_id_seq; Type: SEQUENCE SET; Schema: sgn; Owner: postgres -- SELECT pg_catalog.setval('sgn.pcr_product_pcr_product_id_seq', 1, false); -- -- Name: primer_unigene_match_primer_unigene_match_id_seq; Type: SEQUENCE SET; Schema: sgn; Owner: postgres -- SELECT pg_catalog.setval('sgn.primer_unigene_match_primer_unigene_match_id_seq', 1, false); -- -- Name: qc_report_qc_id_seq; Type: SEQUENCE SET; Schema: sgn; Owner: postgres -- SELECT pg_catalog.setval('sgn.qc_report_qc_id_seq', 1, false); -- -- Name: rflp_markers_rflp_id_seq; Type: SEQUENCE SET; Schema: sgn; Owner: postgres -- SELECT pg_catalog.setval('sgn.rflp_markers_rflp_id_seq', 1, false); -- -- Name: rflp_sequences_seq_id_seq; Type: SEQUENCE SET; Schema: sgn; Owner: postgres -- SELECT pg_catalog.setval('sgn.rflp_sequences_seq_id_seq', 1, false); -- -- Name: rflp_unigene_associations_rflp_unigene_assoc_id_seq; Type: SEQUENCE SET; Schema: sgn; Owner: postgres -- SELECT pg_catalog.setval('sgn.rflp_unigene_associations_rflp_unigene_assoc_id_seq', 1, false); -- -- Name: seqread_read_id_seq; Type: SEQUENCE SET; Schema: sgn; Owner: postgres -- SELECT pg_catalog.setval('sgn.seqread_read_id_seq', 1, false); -- -- Name: sequence_sequence_id_seq; Type: SEQUENCE SET; Schema: sgn; Owner: postgres -- SELECT pg_catalog.setval('sgn.sequence_sequence_id_seq', 1, false); -- -- Name: snp_file_snp_file_id_seq; Type: SEQUENCE SET; Schema: sgn; Owner: postgres -- SELECT pg_catalog.setval('sgn.snp_file_snp_file_id_seq', 1, false); -- -- Name: snp_snp_id_seq; Type: SEQUENCE SET; Schema: sgn; Owner: postgres -- SELECT pg_catalog.setval('sgn.snp_snp_id_seq', 1, false); -- -- Name: snpprop_snpprop_id_seq; Type: SEQUENCE SET; Schema: sgn; Owner: postgres -- SELECT pg_catalog.setval('sgn.snpprop_snpprop_id_seq', 1, false); -- -- Name: ssr_primer_unigene_matches_ssr_primer_unigene_match_id_seq; Type: SEQUENCE SET; Schema: sgn; Owner: postgres -- SELECT pg_catalog.setval('sgn.ssr_primer_unigene_matches_ssr_primer_unigene_match_id_seq', 1, false); -- -- Name: ssr_repeats_repeat_id_seq; Type: SEQUENCE SET; Schema: sgn; Owner: postgres -- SELECT pg_catalog.setval('sgn.ssr_repeats_repeat_id_seq', 1, false); -- -- Name: ssr_ssr_id_seq; Type: SEQUENCE SET; Schema: sgn; Owner: postgres -- SELECT pg_catalog.setval('sgn.ssr_ssr_id_seq', 1, false); -- -- Name: submit_user_submit_user_id_seq; Type: SEQUENCE SET; Schema: sgn; Owner: postgres -- SELECT pg_catalog.setval('sgn.submit_user_submit_user_id_seq', 1, false); -- -- Name: taxonomy_tax_id_seq; Type: SEQUENCE SET; Schema: sgn; Owner: postgres -- SELECT pg_catalog.setval('sgn.taxonomy_tax_id_seq', 1, false); -- -- Name: temp_caps_correspondence_tcc_id_seq; Type: SEQUENCE SET; Schema: sgn; Owner: postgres -- SELECT pg_catalog.setval('sgn.temp_caps_correspondence_tcc_id_seq', 1, false); -- -- Name: temp_map_correspondence_tmc_id_seq; Type: SEQUENCE SET; Schema: sgn; Owner: postgres -- SELECT pg_catalog.setval('sgn.temp_map_correspondence_tmc_id_seq', 1, false); -- -- Name: temp_marker_correspondence_tmc_id_seq; Type: SEQUENCE SET; Schema: sgn; Owner: postgres -- SELECT pg_catalog.setval('sgn.temp_marker_correspondence_tmc_id_seq', 1, false); -- -- Name: tigrtc_index_tcindex_id_seq; Type: SEQUENCE SET; Schema: sgn; Owner: postgres -- SELECT pg_catalog.setval('sgn.tigrtc_index_tcindex_id_seq', 1, false); -- -- Name: tigrtc_membership_tigrtc_membership_id_seq; Type: SEQUENCE SET; Schema: sgn; Owner: postgres -- SELECT pg_catalog.setval('sgn.tigrtc_membership_tigrtc_membership_id_seq', 1, false); -- -- Name: tigrtc_tracking_tigrtc_tracking_id_seq; Type: SEQUENCE SET; Schema: sgn; Owner: postgres -- SELECT pg_catalog.setval('sgn.tigrtc_tracking_tigrtc_tracking_id_seq', 1, false); -- -- Name: tm_markers_tm_id_seq; Type: SEQUENCE SET; Schema: sgn; Owner: postgres -- SELECT pg_catalog.setval('sgn.tm_markers_tm_id_seq', 1, false); -- -- Name: trim_feature_feature_id_seq; Type: SEQUENCE SET; Schema: sgn; Owner: postgres -- SELECT pg_catalog.setval('sgn.trim_feature_feature_id_seq', 1, false); -- -- Name: trim_feature_types_trim_type_id_seq; Type: SEQUENCE SET; Schema: sgn; Owner: postgres -- SELECT pg_catalog.setval('sgn.trim_feature_types_trim_type_id_seq', 1, false); -- -- Name: types_type_id_seq; Type: SEQUENCE SET; Schema: sgn; Owner: postgres -- SELECT pg_catalog.setval('sgn.types_type_id_seq', 1, false); -- -- Name: unigene_build_unigene_build_id_seq; Type: SEQUENCE SET; Schema: sgn; Owner: postgres -- SELECT pg_catalog.setval('sgn.unigene_build_unigene_build_id_seq', 1, false); -- -- Name: unigene_consensi_consensi_id_seq; Type: SEQUENCE SET; Schema: sgn; Owner: postgres -- SELECT pg_catalog.setval('sgn.unigene_consensi_consensi_id_seq', 1, false); -- -- Name: unigene_member_unigene_member_id_seq; Type: SEQUENCE SET; Schema: sgn; Owner: postgres -- SELECT pg_catalog.setval('sgn.unigene_member_unigene_member_id_seq', 1, false); -- -- Name: unigene_unigene_id_seq; Type: SEQUENCE SET; Schema: sgn; Owner: postgres -- SELECT pg_catalog.setval('sgn.unigene_unigene_id_seq', 1, false); -- -- Name: bac_status_bac_status_id_seq; Type: SEQUENCE SET; Schema: sgn_people; Owner: postgres -- SELECT pg_catalog.setval('sgn_people.bac_status_bac_status_id_seq', 1, false); -- -- Name: bac_status_log_bac_status_log_id_seq; Type: SEQUENCE SET; Schema: sgn_people; Owner: postgres -- SELECT pg_catalog.setval('sgn_people.bac_status_log_bac_status_log_id_seq', 1, false); -- -- Name: clone_il_mapping_bin_log_sp_clone_il_mapping_bin_log_id_seq; Type: SEQUENCE SET; Schema: sgn_people; Owner: postgres -- SELECT pg_catalog.setval('sgn_people.clone_il_mapping_bin_log_sp_clone_il_mapping_bin_log_id_seq', 1, false); -- -- Name: clone_validation_log_clone_validation_log_id_seq; Type: SEQUENCE SET; Schema: sgn_people; Owner: postgres -- SELECT pg_catalog.setval('sgn_people.clone_validation_log_clone_validation_log_id_seq', 1, false); -- -- Name: clone_verification_log_clone_verification_log_id_seq; Type: SEQUENCE SET; Schema: sgn_people; Owner: postgres -- SELECT pg_catalog.setval('sgn_people.clone_verification_log_clone_verification_log_id_seq', 1, false); -- -- Name: forum_post_forum_post_id_seq; Type: SEQUENCE SET; Schema: sgn_people; Owner: postgres -- SELECT pg_catalog.setval('sgn_people.forum_post_forum_post_id_seq', 6, true); -- -- Name: forum_topic_forum_topic_id_seq; Type: SEQUENCE SET; Schema: sgn_people; Owner: postgres -- SELECT pg_catalog.setval('sgn_people.forum_topic_forum_topic_id_seq', 4, true); -- -- Name: list_item_list_item_id_seq; Type: SEQUENCE SET; Schema: sgn_people; Owner: postgres -- SELECT pg_catalog.setval('sgn_people.list_item_list_item_id_seq', 724, true); -- -- Name: list_list_id_seq; Type: SEQUENCE SET; Schema: sgn_people; Owner: postgres -- SELECT pg_catalog.setval('sgn_people.list_list_id_seq', 14, true); -- -- Name: sp_clone_il_mapping_segment_l_sp_clone_il_mapping_segment_l_seq; Type: SEQUENCE SET; Schema: sgn_people; Owner: postgres -- SELECT pg_catalog.setval('sgn_people.sp_clone_il_mapping_segment_l_sp_clone_il_mapping_segment_l_seq', 1, false); -- -- Name: sp_dataset_sp_dataset_id_seq; Type: SEQUENCE SET; Schema: sgn_people; Owner: postgres -- SELECT pg_catalog.setval('sgn_people.sp_dataset_sp_dataset_id_seq', 1, false); -- -- Name: sp_group_sp_group_id_seq; Type: SEQUENCE SET; Schema: sgn_people; Owner: postgres -- SELECT pg_catalog.setval('sgn_people.sp_group_sp_group_id_seq', 1, false); -- -- Name: sp_login_old_sp_login_id_seq; Type: SEQUENCE SET; Schema: sgn_people; Owner: postgres -- SELECT pg_catalog.setval('sgn_people.sp_login_old_sp_login_id_seq', 1, false); -- -- Name: sp_organisms_organism_id_seq; Type: SEQUENCE SET; Schema: sgn_people; Owner: postgres -- SELECT pg_catalog.setval('sgn_people.sp_organisms_organism_id_seq', 1, false); -- -- Name: sp_organization_person_sp_organization_person_id_seq; Type: SEQUENCE SET; Schema: sgn_people; Owner: postgres -- SELECT pg_catalog.setval('sgn_people.sp_organization_person_sp_organization_person_id_seq', 1, false); -- -- Name: sp_organization_sp_organization_id_seq; Type: SEQUENCE SET; Schema: sgn_people; Owner: postgres -- SELECT pg_catalog.setval('sgn_people.sp_organization_sp_organization_id_seq', 1, false); -- -- Name: sp_papers_sp_paper_id_seq; Type: SEQUENCE SET; Schema: sgn_people; Owner: postgres -- SELECT pg_catalog.setval('sgn_people.sp_papers_sp_paper_id_seq', 1, false); -- -- Name: sp_person_organisms_sp_person_organisms_id_seq; Type: SEQUENCE SET; Schema: sgn_people; Owner: postgres -- SELECT pg_catalog.setval('sgn_people.sp_person_organisms_sp_person_organisms_id_seq', 1, false); -- -- Name: sp_person_roles_sp_person_role_id_seq; Type: SEQUENCE SET; Schema: sgn_people; Owner: postgres -- SELECT pg_catalog.setval('sgn_people.sp_person_roles_sp_person_role_id_seq', 79, true); -- -- Name: sp_person_sp_person_id_seq; Type: SEQUENCE SET; Schema: sgn_people; Owner: postgres -- SELECT pg_catalog.setval('sgn_people.sp_person_sp_person_id_seq', 43, true); -- -- Name: sp_project_il_mapping_clone_l_sp_project_il_mapping_clone_l_seq; Type: SEQUENCE SET; Schema: sgn_people; Owner: postgres -- SELECT pg_catalog.setval('sgn_people.sp_project_il_mapping_clone_l_sp_project_il_mapping_clone_l_seq', 1, false); -- -- Name: sp_project_organization_sp_project_organization_id_seq; Type: SEQUENCE SET; Schema: sgn_people; Owner: postgres -- SELECT pg_catalog.setval('sgn_people.sp_project_organization_sp_project_organization_id_seq', 1, false); -- -- Name: sp_project_person_sp_project_person_id_seq; Type: SEQUENCE SET; Schema: sgn_people; Owner: postgres -- SELECT pg_catalog.setval('sgn_people.sp_project_person_sp_project_person_id_seq', 1, false); -- -- Name: sp_project_sp_project_id_seq; Type: SEQUENCE SET; Schema: sgn_people; Owner: postgres -- SELECT pg_catalog.setval('sgn_people.sp_project_sp_project_id_seq', 1, false); -- -- Name: sp_roles_sp_role_id_seq; Type: SEQUENCE SET; Schema: sgn_people; Owner: postgres -- SELECT pg_catalog.setval('sgn_people.sp_roles_sp_role_id_seq', 7, true); -- -- Name: user_map_data_user_map_data_id_seq; Type: SEQUENCE SET; Schema: sgn_people; Owner: postgres -- SELECT pg_catalog.setval('sgn_people.user_map_data_user_map_data_id_seq', 1, false); -- -- Name: user_map_user_map_id_seq; Type: SEQUENCE SET; Schema: sgn_people; Owner: postgres -- SELECT pg_catalog.setval('sgn_people.user_map_user_map_id_seq', 1, false); -- -- Name: facility_facility_id_seq; Type: SEQUENCE SET; Schema: sgn_submit; Owner: postgres -- SELECT pg_catalog.setval('sgn_submit.facility_facility_id_seq', 1, false); -- -- Name: library_library_id_seq; Type: SEQUENCE SET; Schema: sgn_submit; Owner: postgres -- SELECT pg_catalog.setval('sgn_submit.library_library_id_seq', 1, false); -- -- Name: seqread_submit_read_id_seq; Type: SEQUENCE SET; Schema: sgn_submit; Owner: postgres -- SELECT pg_catalog.setval('sgn_submit.seqread_submit_read_id_seq', 1, false); -- -- Name: submit_user_submit_user_id_seq; Type: SEQUENCE SET; Schema: sgn_submit; Owner: postgres -- SELECT pg_catalog.setval('sgn_submit.submit_user_submit_user_id_seq', 1, false); -- -- Name: fattribute_fattribute_id_seq; Type: SEQUENCE SET; Schema: tomato_gff; Owner: postgres -- SELECT pg_catalog.setval('tomato_gff.fattribute_fattribute_id_seq', 1, false); -- -- Name: fdata_fid_seq; Type: SEQUENCE SET; Schema: tomato_gff; Owner: postgres -- SELECT pg_catalog.setval('tomato_gff.fdata_fid_seq', 1, false); -- -- Name: fgroup_gid_seq; Type: SEQUENCE SET; Schema: tomato_gff; Owner: postgres -- SELECT pg_catalog.setval('tomato_gff.fgroup_gid_seq', 1, false); -- -- Name: ftype_ftypeid_seq; Type: SEQUENCE SET; Schema: tomato_gff; Owner: postgres -- SELECT pg_catalog.setval('tomato_gff.ftype_ftypeid_seq', 1, false); -- -- Name: cvterm cvterm_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.cvterm ADD CONSTRAINT cvterm_pkey PRIMARY KEY (cvterm_id); -- -- Name: trial_types; Type: MATERIALIZED VIEW; Schema: public; Owner: web_usr -- CREATE MATERIALIZED VIEW public.trial_types AS SELECT cvterm.cvterm_id AS trial_type_id, cvterm.name AS trial_type_name FROM (public.cvterm JOIN public.cv USING (cv_id)) WHERE ((cv.name)::text = 'project_type'::text) GROUP BY cvterm.cvterm_id WITH NO DATA; ALTER TABLE public.trial_types OWNER TO web_usr; -- -- Name: annotation annotation_pkey; Type: CONSTRAINT; Schema: annotation; Owner: postgres -- ALTER TABLE ONLY annotation.annotation ADD CONSTRAINT annotation_pkey PRIMARY KEY (annot_id); -- -- Name: comment comment_pkey; Type: CONSTRAINT; Schema: annotation; Owner: postgres -- ALTER TABLE ONLY annotation.comment ADD CONSTRAINT comment_pkey PRIMARY KEY (comment_id); -- -- Name: comp_analysis comp_analysis_pkey; Type: CONSTRAINT; Schema: annotation; Owner: postgres -- ALTER TABLE ONLY annotation.comp_analysis ADD CONSTRAINT comp_analysis_pkey PRIMARY KEY (ca_id); -- -- Name: dblist dblist_pkey; Type: CONSTRAINT; Schema: annotation; Owner: postgres -- ALTER TABLE ONLY annotation.dblist ADD CONSTRAINT dblist_pkey PRIMARY KEY (db_id); -- -- Name: dbxref dbxref_pkey; Type: CONSTRAINT; Schema: annotation; Owner: postgres -- ALTER TABLE ONLY annotation.dbxref ADD CONSTRAINT dbxref_pkey PRIMARY KEY (dbxref_id); -- -- Name: feature_set feature_set_pkey; Type: CONSTRAINT; Schema: annotation; Owner: postgres -- ALTER TABLE ONLY annotation.feature_set ADD CONSTRAINT feature_set_pkey PRIMARY KEY (f_set_id); -- -- Name: feature_span feature_span_pkey; Type: CONSTRAINT; Schema: annotation; Owner: postgres -- ALTER TABLE ONLY annotation.feature_span ADD CONSTRAINT feature_span_pkey PRIMARY KEY (f_span_id); -- -- Name: organism organism_name_key; Type: CONSTRAINT; Schema: annotation; Owner: postgres -- ALTER TABLE ONLY annotation.organism ADD CONSTRAINT organism_name_key UNIQUE (name); -- -- Name: organism organism_pkey; Type: CONSTRAINT; Schema: annotation; Owner: postgres -- ALTER TABLE ONLY annotation.organism ADD CONSTRAINT organism_pkey PRIMARY KEY (organism_id); -- -- Name: output output_pkey; Type: CONSTRAINT; Schema: annotation; Owner: postgres -- ALTER TABLE ONLY annotation.output ADD CONSTRAINT output_pkey PRIMARY KEY (output_id); -- -- Name: person person_name_key; Type: CONSTRAINT; Schema: annotation; Owner: postgres -- ALTER TABLE ONLY annotation.person ADD CONSTRAINT person_name_key UNIQUE (name); -- -- Name: person person_pkey; Type: CONSTRAINT; Schema: annotation; Owner: postgres -- ALTER TABLE ONLY annotation.person ADD CONSTRAINT person_pkey PRIMARY KEY (person_id); -- -- Name: program program_pkey; Type: CONSTRAINT; Schema: annotation; Owner: postgres -- ALTER TABLE ONLY annotation.program ADD CONSTRAINT program_pkey PRIMARY KEY (program_id); -- -- Name: property property_pkey; Type: CONSTRAINT; Schema: annotation; Owner: postgres -- ALTER TABLE ONLY annotation.property ADD CONSTRAINT property_pkey PRIMARY KEY (property_id); -- -- Name: result_set result_set_pkey; Type: CONSTRAINT; Schema: annotation; Owner: postgres -- ALTER TABLE ONLY annotation.result_set ADD CONSTRAINT result_set_pkey PRIMARY KEY (r_set_id); -- -- Name: result_span result_span_pkey; Type: CONSTRAINT; Schema: annotation; Owner: postgres -- ALTER TABLE ONLY annotation.result_span ADD CONSTRAINT result_span_pkey PRIMARY KEY (r_span_id); -- -- Name: seq_error seq_error_pkey; Type: CONSTRAINT; Schema: annotation; Owner: postgres -- ALTER TABLE ONLY annotation.seq_error ADD CONSTRAINT seq_error_pkey PRIMARY KEY (seq_err_id); -- -- Name: seq seq_pkey; Type: CONSTRAINT; Schema: annotation; Owner: postgres -- ALTER TABLE ONLY annotation.seq ADD CONSTRAINT seq_pkey PRIMARY KEY (seq_id); -- -- Name: seq_relationship seq_relationship_pkey; Type: CONSTRAINT; Schema: annotation; Owner: postgres -- ALTER TABLE ONLY annotation.seq_relationship ADD CONSTRAINT seq_relationship_pkey PRIMARY KEY (seq_rel_id); -- -- Name: synonym synonym_pkey; Type: CONSTRAINT; Schema: annotation; Owner: postgres -- ALTER TABLE ONLY annotation.synonym ADD CONSTRAINT synonym_pkey PRIMARY KEY (synonym_id); -- -- Name: bs_protocol bs_protocol_pkey; Type: CONSTRAINT; Schema: biosource; Owner: postgres -- ALTER TABLE ONLY biosource.bs_protocol ADD CONSTRAINT bs_protocol_pkey PRIMARY KEY (protocol_id); -- -- Name: bs_protocol_pub bs_protocol_pub_pkey; Type: CONSTRAINT; Schema: biosource; Owner: postgres -- ALTER TABLE ONLY biosource.bs_protocol_pub ADD CONSTRAINT bs_protocol_pub_pkey PRIMARY KEY (protocol_pub_id); -- -- Name: bs_protocol_step_dbxref bs_protocol_step_dbxref_pkey; Type: CONSTRAINT; Schema: biosource; Owner: postgres -- ALTER TABLE ONLY biosource.bs_protocol_step_dbxref ADD CONSTRAINT bs_protocol_step_dbxref_pkey PRIMARY KEY (protocol_step_dbxref_id); -- -- Name: bs_protocol_step bs_protocol_step_pkey; Type: CONSTRAINT; Schema: biosource; Owner: postgres -- ALTER TABLE ONLY biosource.bs_protocol_step ADD CONSTRAINT bs_protocol_step_pkey PRIMARY KEY (protocol_step_id); -- -- Name: bs_sample_cvterm bs_sample_cvterm_pkey; Type: CONSTRAINT; Schema: biosource; Owner: postgres -- ALTER TABLE ONLY biosource.bs_sample_cvterm ADD CONSTRAINT bs_sample_cvterm_pkey PRIMARY KEY (sample_cvterm_id); -- -- Name: bs_sample_dbxref bs_sample_dbxref_pkey; Type: CONSTRAINT; Schema: biosource; Owner: postgres -- ALTER TABLE ONLY biosource.bs_sample_dbxref ADD CONSTRAINT bs_sample_dbxref_pkey PRIMARY KEY (sample_dbxref_id); -- -- Name: bs_sample_element_cvterm bs_sample_element_cvterm_pkey; Type: CONSTRAINT; Schema: biosource; Owner: postgres -- ALTER TABLE ONLY biosource.bs_sample_element_cvterm ADD CONSTRAINT bs_sample_element_cvterm_pkey PRIMARY KEY (sample_element_cvterm_id); -- -- Name: bs_sample_element_dbxref bs_sample_element_dbxref_pkey; Type: CONSTRAINT; Schema: biosource; Owner: postgres -- ALTER TABLE ONLY biosource.bs_sample_element_dbxref ADD CONSTRAINT bs_sample_element_dbxref_pkey PRIMARY KEY (sample_element_dbxref_id); -- -- Name: bs_sample_element_file bs_sample_element_file_pkey; Type: CONSTRAINT; Schema: biosource; Owner: postgres -- ALTER TABLE ONLY biosource.bs_sample_element_file ADD CONSTRAINT bs_sample_element_file_pkey PRIMARY KEY (sample_element_file_id); -- -- Name: bs_sample_element bs_sample_element_pkey; Type: CONSTRAINT; Schema: biosource; Owner: postgres -- ALTER TABLE ONLY biosource.bs_sample_element ADD CONSTRAINT bs_sample_element_pkey PRIMARY KEY (sample_element_id); -- -- Name: bs_sample_element_relation bs_sample_element_relation_pkey; Type: CONSTRAINT; Schema: biosource; Owner: postgres -- ALTER TABLE ONLY biosource.bs_sample_element_relation ADD CONSTRAINT bs_sample_element_relation_pkey PRIMARY KEY (sample_element_relation_id); -- -- Name: bs_sample_file bs_sample_file_pkey; Type: CONSTRAINT; Schema: biosource; Owner: postgres -- ALTER TABLE ONLY biosource.bs_sample_file ADD CONSTRAINT bs_sample_file_pkey PRIMARY KEY (sample_file_id); -- -- Name: bs_sample bs_sample_pkey; Type: CONSTRAINT; Schema: biosource; Owner: postgres -- ALTER TABLE ONLY biosource.bs_sample ADD CONSTRAINT bs_sample_pkey PRIMARY KEY (sample_id); -- -- Name: bs_sample_pub bs_sample_pub_pkey; Type: CONSTRAINT; Schema: biosource; Owner: postgres -- ALTER TABLE ONLY biosource.bs_sample_pub ADD CONSTRAINT bs_sample_pub_pkey PRIMARY KEY (sample_pub_id); -- -- Name: bs_sample_relationship bs_sample_relationship_pkey; Type: CONSTRAINT; Schema: biosource; Owner: postgres -- ALTER TABLE ONLY biosource.bs_sample_relationship ADD CONSTRAINT bs_sample_relationship_pkey PRIMARY KEY (sample_relationship_id); -- -- Name: bs_tool bs_tool_pkey; Type: CONSTRAINT; Schema: biosource; Owner: postgres -- ALTER TABLE ONLY biosource.bs_tool ADD CONSTRAINT bs_tool_pkey PRIMARY KEY (tool_id); -- -- Name: bs_tool_pub bs_tool_pub_pkey; Type: CONSTRAINT; Schema: biosource; Owner: postgres -- ALTER TABLE ONLY biosource.bs_tool_pub ADD CONSTRAINT bs_tool_pub_pkey PRIMARY KEY (tool_pub_id); -- -- Name: ge_cluster_analysis ge_cluster_analysis_pkey; Type: CONSTRAINT; Schema: gem; Owner: postgres -- ALTER TABLE ONLY gem.ge_cluster_analysis ADD CONSTRAINT ge_cluster_analysis_pkey PRIMARY KEY (cluster_analysis_id); -- -- Name: ge_cluster_member ge_cluster_member_pkey; Type: CONSTRAINT; Schema: gem; Owner: postgres -- ALTER TABLE ONLY gem.ge_cluster_member ADD CONSTRAINT ge_cluster_member_pkey PRIMARY KEY (cluster_member_id); -- -- Name: ge_cluster_profile ge_cluster_profile_pkey; Type: CONSTRAINT; Schema: gem; Owner: postgres -- ALTER TABLE ONLY gem.ge_cluster_profile ADD CONSTRAINT ge_cluster_profile_pkey PRIMARY KEY (cluster_profile_id); -- -- Name: ge_correlation_analysis ge_correlation_analysis_pkey; Type: CONSTRAINT; Schema: gem; Owner: postgres -- ALTER TABLE ONLY gem.ge_correlation_analysis ADD CONSTRAINT ge_correlation_analysis_pkey PRIMARY KEY (correlation_analysis_id); -- -- Name: ge_correlation_member ge_correlation_member_pkey; Type: CONSTRAINT; Schema: gem; Owner: postgres -- ALTER TABLE ONLY gem.ge_correlation_member ADD CONSTRAINT ge_correlation_member_pkey PRIMARY KEY (correlation_member_id); -- -- Name: ge_data_analysis_process ge_data_analysis_process_pkey; Type: CONSTRAINT; Schema: gem; Owner: postgres -- ALTER TABLE ONLY gem.ge_data_analysis_process ADD CONSTRAINT ge_data_analysis_process_pkey PRIMARY KEY (data_analysis_process_id); -- -- Name: ge_diff_expression ge_diff_expression_pkey; Type: CONSTRAINT; Schema: gem; Owner: postgres -- ALTER TABLE ONLY gem.ge_diff_expression ADD CONSTRAINT ge_diff_expression_pkey PRIMARY KEY (diff_expression_id); -- -- Name: ge_experiment_analysis_group ge_experiment_analysis_group_pkey; Type: CONSTRAINT; Schema: gem; Owner: postgres -- ALTER TABLE ONLY gem.ge_experiment_analysis_group ADD CONSTRAINT ge_experiment_analysis_group_pkey PRIMARY KEY (experiment_analysis_group_id); -- -- Name: ge_experiment_analysis_member ge_experiment_analysis_member_pkey; Type: CONSTRAINT; Schema: gem; Owner: postgres -- ALTER TABLE ONLY gem.ge_experiment_analysis_member ADD CONSTRAINT ge_experiment_analysis_member_pkey PRIMARY KEY (experiment_analysis_member_id); -- -- Name: ge_experiment_dbxref ge_experiment_dbxref_pkey; Type: CONSTRAINT; Schema: gem; Owner: postgres -- ALTER TABLE ONLY gem.ge_experiment_dbxref ADD CONSTRAINT ge_experiment_dbxref_pkey PRIMARY KEY (experiment_dbxref_id); -- -- Name: ge_experiment ge_experiment_experiment_name_key; Type: CONSTRAINT; Schema: gem; Owner: postgres -- ALTER TABLE ONLY gem.ge_experiment ADD CONSTRAINT ge_experiment_experiment_name_key UNIQUE (experiment_name, experimental_design_id); -- -- Name: ge_experiment ge_experiment_pkey; Type: CONSTRAINT; Schema: gem; Owner: postgres -- ALTER TABLE ONLY gem.ge_experiment ADD CONSTRAINT ge_experiment_pkey PRIMARY KEY (experiment_id); -- -- Name: ge_experimental_design_dbxref ge_experimental_design_dbxref_pkey; Type: CONSTRAINT; Schema: gem; Owner: postgres -- ALTER TABLE ONLY gem.ge_experimental_design_dbxref ADD CONSTRAINT ge_experimental_design_dbxref_pkey PRIMARY KEY (experimental_design_dbxref_id); -- -- Name: ge_experimental_design ge_experimental_design_pkey; Type: CONSTRAINT; Schema: gem; Owner: postgres -- ALTER TABLE ONLY gem.ge_experimental_design ADD CONSTRAINT ge_experimental_design_pkey PRIMARY KEY (experimental_design_id); -- -- Name: ge_experimental_design_pub ge_experimental_design_pub_pkey; Type: CONSTRAINT; Schema: gem; Owner: postgres -- ALTER TABLE ONLY gem.ge_experimental_design_pub ADD CONSTRAINT ge_experimental_design_pub_pkey PRIMARY KEY (experimental_design_pub_id); -- -- Name: ge_expression_by_experiment ge_expression_by_experiment_pkey; Type: CONSTRAINT; Schema: gem; Owner: postgres -- ALTER TABLE ONLY gem.ge_expression_by_experiment ADD CONSTRAINT ge_expression_by_experiment_pkey PRIMARY KEY (expression_by_experiment_id); -- -- Name: ge_fluorescanning ge_fluorescanning_pkey; Type: CONSTRAINT; Schema: gem; Owner: postgres -- ALTER TABLE ONLY gem.ge_fluorescanning ADD CONSTRAINT ge_fluorescanning_pkey PRIMARY KEY (fluorescanning_id); -- -- Name: ge_hybridization ge_hybridization_pkey; Type: CONSTRAINT; Schema: gem; Owner: postgres -- ALTER TABLE ONLY gem.ge_hybridization ADD CONSTRAINT ge_hybridization_pkey PRIMARY KEY (hybridization_id); -- -- Name: ge_platform_dbxref ge_platform_dbxref_pkey; Type: CONSTRAINT; Schema: gem; Owner: postgres -- ALTER TABLE ONLY gem.ge_platform_dbxref ADD CONSTRAINT ge_platform_dbxref_pkey PRIMARY KEY (platform_dbxref_id); -- -- Name: ge_platform_design ge_platform_design_pkey; Type: CONSTRAINT; Schema: gem; Owner: postgres -- ALTER TABLE ONLY gem.ge_platform_design ADD CONSTRAINT ge_platform_design_pkey PRIMARY KEY (platform_design_id); -- -- Name: ge_platform ge_platform_pkey; Type: CONSTRAINT; Schema: gem; Owner: postgres -- ALTER TABLE ONLY gem.ge_platform ADD CONSTRAINT ge_platform_pkey PRIMARY KEY (platform_id); -- -- Name: ge_platform_pub ge_platform_pub_pkey; Type: CONSTRAINT; Schema: gem; Owner: postgres -- ALTER TABLE ONLY gem.ge_platform_pub ADD CONSTRAINT ge_platform_pub_pkey PRIMARY KEY (platform_pub_id); -- -- Name: ge_probe_expression ge_probe_expression_pkey; Type: CONSTRAINT; Schema: gem; Owner: postgres -- ALTER TABLE ONLY gem.ge_probe_expression ADD CONSTRAINT ge_probe_expression_pkey PRIMARY KEY (probe_expression_id); -- -- Name: ge_probe ge_probe_pkey; Type: CONSTRAINT; Schema: gem; Owner: postgres -- ALTER TABLE ONLY gem.ge_probe ADD CONSTRAINT ge_probe_pkey PRIMARY KEY (probe_id); -- -- Name: ge_probe ge_probe_probe_name_key; Type: CONSTRAINT; Schema: gem; Owner: postgres -- ALTER TABLE ONLY gem.ge_probe ADD CONSTRAINT ge_probe_probe_name_key UNIQUE (probe_name, platform_id); -- -- Name: ge_probe_spot_coordinate ge_probe_spot_coordinate_pkey; Type: CONSTRAINT; Schema: gem; Owner: postgres -- ALTER TABLE ONLY gem.ge_probe_spot_coordinate ADD CONSTRAINT ge_probe_spot_coordinate_pkey PRIMARY KEY (probe_spot_coordinate_id); -- -- Name: ge_probe_spot ge_probe_spot_pkey; Type: CONSTRAINT; Schema: gem; Owner: postgres -- ALTER TABLE ONLY gem.ge_probe_spot ADD CONSTRAINT ge_probe_spot_pkey PRIMARY KEY (probe_spot_id); -- -- Name: ge_profile_element ge_profile_element_pkey; Type: CONSTRAINT; Schema: gem; Owner: postgres -- ALTER TABLE ONLY gem.ge_profile_element ADD CONSTRAINT ge_profile_element_pkey PRIMARY KEY (profile_element_id); -- -- Name: ge_target_dbxref ge_target_dbxref_pkey; Type: CONSTRAINT; Schema: gem; Owner: postgres -- ALTER TABLE ONLY gem.ge_target_dbxref ADD CONSTRAINT ge_target_dbxref_pkey PRIMARY KEY (target_dbxref_id); -- -- Name: ge_target_element ge_target_element_pkey; Type: CONSTRAINT; Schema: gem; Owner: postgres -- ALTER TABLE ONLY gem.ge_target_element ADD CONSTRAINT ge_target_element_pkey PRIMARY KEY (target_element_id); -- -- Name: ge_target_element ge_target_element_target_id_key; Type: CONSTRAINT; Schema: gem; Owner: postgres -- ALTER TABLE ONLY gem.ge_target_element ADD CONSTRAINT ge_target_element_target_id_key UNIQUE (target_id, dye); -- -- Name: ge_target ge_target_pkey; Type: CONSTRAINT; Schema: gem; Owner: postgres -- ALTER TABLE ONLY gem.ge_target ADD CONSTRAINT ge_target_pkey PRIMARY KEY (target_id); -- -- Name: ge_target ge_target_target_name_key; Type: CONSTRAINT; Schema: gem; Owner: postgres -- ALTER TABLE ONLY gem.ge_target ADD CONSTRAINT ge_target_target_name_key UNIQUE (target_name, experiment_id); -- -- Name: ge_technology_type ge_technology_type_pkey; Type: CONSTRAINT; Schema: gem; Owner: postgres -- ALTER TABLE ONLY gem.ge_technology_type ADD CONSTRAINT ge_technology_type_pkey PRIMARY KEY (technology_type_id); -- -- Name: ge_template_dbiref ge_template_dbiref_pkey; Type: CONSTRAINT; Schema: gem; Owner: postgres -- ALTER TABLE ONLY gem.ge_template_dbiref ADD CONSTRAINT ge_template_dbiref_pkey PRIMARY KEY (template_dbiref_id); -- -- Name: ge_template_dbxref ge_template_dbxref_pkey; Type: CONSTRAINT; Schema: gem; Owner: postgres -- ALTER TABLE ONLY gem.ge_template_dbxref ADD CONSTRAINT ge_template_dbxref_pkey PRIMARY KEY (template_dbxref_id); -- -- Name: ge_template_diff_expression ge_template_diff_expression_pkey; Type: CONSTRAINT; Schema: gem; Owner: postgres -- ALTER TABLE ONLY gem.ge_template_diff_expression ADD CONSTRAINT ge_template_diff_expression_pkey PRIMARY KEY (template_diff_expression_id); -- -- Name: ge_template_expression ge_template_expression_pkey; Type: CONSTRAINT; Schema: gem; Owner: postgres -- ALTER TABLE ONLY gem.ge_template_expression ADD CONSTRAINT ge_template_expression_pkey PRIMARY KEY (template_expression_id); -- -- Name: ge_template ge_template_pkey; Type: CONSTRAINT; Schema: gem; Owner: postgres -- ALTER TABLE ONLY gem.ge_template ADD CONSTRAINT ge_template_pkey PRIMARY KEY (template_id); -- -- Name: blast_defline blast_defline_pkey; Type: CONSTRAINT; Schema: genomic; Owner: postgres -- ALTER TABLE ONLY genomic.blast_defline ADD CONSTRAINT blast_defline_pkey PRIMARY KEY (blast_defline_id); -- -- Name: blast_hit blast_hit_pkey; Type: CONSTRAINT; Schema: genomic; Owner: postgres -- ALTER TABLE ONLY genomic.blast_hit ADD CONSTRAINT blast_hit_pkey PRIMARY KEY (blast_hit_id); -- -- Name: blast_query blast_query_pkey; Type: CONSTRAINT; Schema: genomic; Owner: postgres -- ALTER TABLE ONLY genomic.blast_query ADD CONSTRAINT blast_query_pkey PRIMARY KEY (blast_query_id); -- -- Name: chromat chromat_clone_id_key; Type: CONSTRAINT; Schema: genomic; Owner: postgres -- ALTER TABLE ONLY genomic.chromat ADD CONSTRAINT chromat_clone_id_key UNIQUE (clone_id, primer, subpath, filename); -- -- Name: chromat chromat_pkey; Type: CONSTRAINT; Schema: genomic; Owner: postgres -- ALTER TABLE ONLY genomic.chromat ADD CONSTRAINT chromat_pkey PRIMARY KEY (chromat_id); -- -- Name: clone_feature clone_feature_clone_id_key; Type: CONSTRAINT; Schema: genomic; Owner: postgres -- ALTER TABLE ONLY genomic.clone_feature ADD CONSTRAINT clone_feature_clone_id_key UNIQUE (clone_id, feature_id); -- -- Name: clone_feature clone_feature_pkey; Type: CONSTRAINT; Schema: genomic; Owner: postgres -- ALTER TABLE ONLY genomic.clone_feature ADD CONSTRAINT clone_feature_pkey PRIMARY KEY (clone_feature_id); -- -- Name: clone clone_pkey; Type: CONSTRAINT; Schema: genomic; Owner: postgres -- ALTER TABLE ONLY genomic.clone ADD CONSTRAINT clone_pkey PRIMARY KEY (clone_id); -- -- Name: clone_type clone_type_name_key; Type: CONSTRAINT; Schema: genomic; Owner: postgres -- ALTER TABLE ONLY genomic.clone_type ADD CONSTRAINT clone_type_name_key UNIQUE (name); -- -- Name: clone_type clone_type_pkey; Type: CONSTRAINT; Schema: genomic; Owner: postgres -- ALTER TABLE ONLY genomic.clone_type ADD CONSTRAINT clone_type_pkey PRIMARY KEY (clone_type_id); -- -- Name: clone_type clone_type_shortname_key; Type: CONSTRAINT; Schema: genomic; Owner: postgres -- ALTER TABLE ONLY genomic.clone_type ADD CONSTRAINT clone_type_shortname_key UNIQUE (shortname); -- -- Name: genbank_submission genbank_submission_pkey; Type: CONSTRAINT; Schema: genomic; Owner: postgres -- ALTER TABLE ONLY genomic.genbank_submission ADD CONSTRAINT genbank_submission_pkey PRIMARY KEY (genbank_submission_id); -- -- Name: gss gss_chromat_id_key; Type: CONSTRAINT; Schema: genomic; Owner: postgres -- ALTER TABLE ONLY genomic.gss ADD CONSTRAINT gss_chromat_id_key UNIQUE (chromat_id, version); -- -- Name: gss gss_pkey; Type: CONSTRAINT; Schema: genomic; Owner: postgres -- ALTER TABLE ONLY genomic.gss ADD CONSTRAINT gss_pkey PRIMARY KEY (gss_id); -- -- Name: gss_submitted_to_genbank gss_submitted_to_genbank_pkey; Type: CONSTRAINT; Schema: genomic; Owner: postgres -- ALTER TABLE ONLY genomic.gss_submitted_to_genbank ADD CONSTRAINT gss_submitted_to_genbank_pkey PRIMARY KEY (gss_submitted_to_genbank_id); -- -- Name: library_annotation_db library_annotation_db_pkey; Type: CONSTRAINT; Schema: genomic; Owner: postgres -- ALTER TABLE ONLY genomic.library_annotation_db ADD CONSTRAINT library_annotation_db_pkey PRIMARY KEY (library_annotation_db_id); -- -- Name: library library_pkey; Type: CONSTRAINT; Schema: genomic; Owner: postgres -- ALTER TABLE ONLY genomic.library ADD CONSTRAINT library_pkey PRIMARY KEY (library_id); -- -- Name: library_shortname_abbreviation library_shortname_abbreviation_abbreviation_key; Type: CONSTRAINT; Schema: genomic; Owner: postgres -- ALTER TABLE ONLY genomic.library_shortname_abbreviation ADD CONSTRAINT library_shortname_abbreviation_abbreviation_key UNIQUE (abbreviation); -- -- Name: library_shortname_abbreviation library_shortname_abbreviation_pkey; Type: CONSTRAINT; Schema: genomic; Owner: postgres -- ALTER TABLE ONLY genomic.library_shortname_abbreviation ADD CONSTRAINT library_shortname_abbreviation_pkey PRIMARY KEY (library_shortname_abbreviation_id); -- -- Name: qc_report qc_report_pkey; Type: CONSTRAINT; Schema: genomic; Owner: postgres -- ALTER TABLE ONLY genomic.qc_report ADD CONSTRAINT qc_report_pkey PRIMARY KEY (qc_report_id); -- -- Name: query_source_type query_source_type_pkey; Type: CONSTRAINT; Schema: genomic; Owner: postgres -- ALTER TABLE ONLY genomic.query_source_type ADD CONSTRAINT query_source_type_pkey PRIMARY KEY (query_source_type_id); -- -- Name: read_class read_class_pkey; Type: CONSTRAINT; Schema: genomic; Owner: postgres -- ALTER TABLE ONLY genomic.read_class ADD CONSTRAINT read_class_pkey PRIMARY KEY (read_class_id); -- -- Name: sequencing_primer sequencing_primer_name_key; Type: CONSTRAINT; Schema: genomic; Owner: postgres -- ALTER TABLE ONLY genomic.sequencing_primer ADD CONSTRAINT sequencing_primer_name_key UNIQUE (name); -- -- Name: sequencing_primer sequencing_primer_pkey; Type: CONSTRAINT; Schema: genomic; Owner: postgres -- ALTER TABLE ONLY genomic.sequencing_primer ADD CONSTRAINT sequencing_primer_pkey PRIMARY KEY (sequencing_primer_id); -- -- Name: experiment_image experiment_image_pkey; Type: CONSTRAINT; Schema: insitu; Owner: postgres -- ALTER TABLE ONLY insitu.experiment_image ADD CONSTRAINT experiment_image_pkey PRIMARY KEY (experiment_image_id); -- -- Name: experiment experiment_pkey; Type: CONSTRAINT; Schema: insitu; Owner: postgres -- ALTER TABLE ONLY insitu.experiment ADD CONSTRAINT experiment_pkey PRIMARY KEY (experiment_id); -- -- Name: experiment_tag experiment_tag_pkey; Type: CONSTRAINT; Schema: insitu; Owner: postgres -- ALTER TABLE ONLY insitu.experiment_tag ADD CONSTRAINT experiment_tag_pkey PRIMARY KEY (experiment_tag_id); -- -- Name: is_organism organism_pkey; Type: CONSTRAINT; Schema: insitu; Owner: postgres -- ALTER TABLE ONLY insitu.is_organism ADD CONSTRAINT organism_pkey PRIMARY KEY (is_organism_id); -- -- Name: probe primer_pkey; Type: CONSTRAINT; Schema: insitu; Owner: postgres -- ALTER TABLE ONLY insitu.probe ADD CONSTRAINT primer_pkey PRIMARY KEY (probe_id); -- -- Name: tag tag_pkey; Type: CONSTRAINT; Schema: insitu; Owner: postgres -- ALTER TABLE ONLY insitu.tag ADD CONSTRAINT tag_pkey PRIMARY KEY (tag_id); -- -- Name: attribution attribution_pkey; Type: CONSTRAINT; Schema: metadata; Owner: postgres -- ALTER TABLE ONLY metadata.attribution ADD CONSTRAINT attribution_pkey PRIMARY KEY (attribution_id); -- -- Name: attribution_to attribution_to_pkey; Type: CONSTRAINT; Schema: metadata; Owner: postgres -- ALTER TABLE ONLY metadata.attribution_to ADD CONSTRAINT attribution_to_pkey PRIMARY KEY (attribution_to_id); -- -- Name: comments comments_pkey; Type: CONSTRAINT; Schema: metadata; Owner: postgres -- ALTER TABLE ONLY metadata.comments ADD CONSTRAINT comments_pkey PRIMARY KEY (comment_id); -- -- Name: md_dbipath md_dbipath_column_name_key; Type: CONSTRAINT; Schema: metadata; Owner: postgres -- ALTER TABLE ONLY metadata.md_dbipath ADD CONSTRAINT md_dbipath_column_name_key UNIQUE (column_name, table_name, schema_name); -- -- Name: md_dbipath md_dbipath_pkey; Type: CONSTRAINT; Schema: metadata; Owner: postgres -- ALTER TABLE ONLY metadata.md_dbipath ADD CONSTRAINT md_dbipath_pkey PRIMARY KEY (dbipath_id); -- -- Name: md_dbiref md_dbiref_iref_accession_key; Type: CONSTRAINT; Schema: metadata; Owner: postgres -- ALTER TABLE ONLY metadata.md_dbiref ADD CONSTRAINT md_dbiref_iref_accession_key UNIQUE (iref_accession, dbiref_id); -- -- Name: md_dbiref md_dbiref_pkey; Type: CONSTRAINT; Schema: metadata; Owner: postgres -- ALTER TABLE ONLY metadata.md_dbiref ADD CONSTRAINT md_dbiref_pkey PRIMARY KEY (dbiref_id); -- -- Name: md_dbversion md_dbversion_pkey; Type: CONSTRAINT; Schema: metadata; Owner: postgres -- ALTER TABLE ONLY metadata.md_dbversion ADD CONSTRAINT md_dbversion_pkey PRIMARY KEY (dbversion_id); -- -- Name: md_files md_files_pkey; Type: CONSTRAINT; Schema: metadata; Owner: postgres -- ALTER TABLE ONLY metadata.md_files ADD CONSTRAINT md_files_pkey PRIMARY KEY (file_id); -- -- Name: md_groupmembers md_groupmembers_pkey; Type: CONSTRAINT; Schema: metadata; Owner: postgres -- ALTER TABLE ONLY metadata.md_groupmembers ADD CONSTRAINT md_groupmembers_pkey PRIMARY KEY (groupmember_id); -- -- Name: md_groups md_groups_group_name_key; Type: CONSTRAINT; Schema: metadata; Owner: postgres -- ALTER TABLE ONLY metadata.md_groups ADD CONSTRAINT md_groups_group_name_key UNIQUE (group_name); -- -- Name: md_groups md_groups_pkey; Type: CONSTRAINT; Schema: metadata; Owner: postgres -- ALTER TABLE ONLY metadata.md_groups ADD CONSTRAINT md_groups_pkey PRIMARY KEY (group_id); -- -- Name: md_image_cvterm md_image_cvterm_pkey; Type: CONSTRAINT; Schema: metadata; Owner: postgres -- ALTER TABLE ONLY metadata.md_image_cvterm ADD CONSTRAINT md_image_cvterm_pkey PRIMARY KEY (md_image_cvterm_id); -- -- Name: md_image_organism md_image_organism_pkey; Type: CONSTRAINT; Schema: metadata; Owner: postgres -- ALTER TABLE ONLY metadata.md_image_organism ADD CONSTRAINT md_image_organism_pkey PRIMARY KEY (md_image_organism_id); -- -- Name: md_image md_image_pkey; Type: CONSTRAINT; Schema: metadata; Owner: postgres -- ALTER TABLE ONLY metadata.md_image ADD CONSTRAINT md_image_pkey PRIMARY KEY (image_id); -- -- Name: md_json md_json_pkey; Type: CONSTRAINT; Schema: metadata; Owner: postgres -- ALTER TABLE ONLY metadata.md_json ADD CONSTRAINT md_json_pkey PRIMARY KEY (json_id); -- -- Name: md_metadata md_metadata_pkey; Type: CONSTRAINT; Schema: metadata; Owner: postgres -- ALTER TABLE ONLY metadata.md_metadata ADD CONSTRAINT md_metadata_pkey PRIMARY KEY (metadata_id); -- -- Name: md_tag_image md_tag_image_pkey; Type: CONSTRAINT; Schema: metadata; Owner: postgres -- ALTER TABLE ONLY metadata.md_tag_image ADD CONSTRAINT md_tag_image_pkey PRIMARY KEY (tag_image_id); -- -- Name: md_tag md_tag_pkey; Type: CONSTRAINT; Schema: metadata; Owner: postgres -- ALTER TABLE ONLY metadata.md_tag ADD CONSTRAINT md_tag_pkey PRIMARY KEY (tag_id); -- -- Name: attribution referred_to_db_row_unique; Type: CONSTRAINT; Schema: metadata; Owner: postgres -- ALTER TABLE ONLY metadata.attribution ADD CONSTRAINT referred_to_db_row_unique UNIQUE (database_name, table_name, row_id); -- -- Name: roles roles_pkey; Type: CONSTRAINT; Schema: metadata; Owner: postgres -- ALTER TABLE ONLY metadata.roles ADD CONSTRAINT roles_pkey PRIMARY KEY (role_id); -- -- Name: data_points data_points_pkey; Type: CONSTRAINT; Schema: pheno_population; Owner: postgres -- ALTER TABLE ONLY pheno_population.data_points ADD CONSTRAINT data_points_pkey PRIMARY KEY (dp_id); -- -- Name: genotypes genotypes_pkey; Type: CONSTRAINT; Schema: pheno_population; Owner: postgres -- ALTER TABLE ONLY pheno_population.genotypes ADD CONSTRAINT genotypes_pkey PRIMARY KEY (gen_id); -- -- Name: images images_pkey; Type: CONSTRAINT; Schema: pheno_population; Owner: postgres -- ALTER TABLE ONLY pheno_population.images ADD CONSTRAINT images_pkey PRIMARY KEY (image_id); -- -- Name: locations locations_pkey; Type: CONSTRAINT; Schema: pheno_population; Owner: postgres -- ALTER TABLE ONLY pheno_population.locations ADD CONSTRAINT locations_pkey PRIMARY KEY (loc_id); -- -- Name: organs organs_pkey; Type: CONSTRAINT; Schema: pheno_population; Owner: postgres -- ALTER TABLE ONLY pheno_population.organs ADD CONSTRAINT organs_pkey PRIMARY KEY (organ_id); -- -- Name: plants plants_pkey; Type: CONSTRAINT; Schema: pheno_population; Owner: postgres -- ALTER TABLE ONLY pheno_population.plants ADD CONSTRAINT plants_pkey PRIMARY KEY (plant_id); -- -- Name: populations populations_pkey; Type: CONSTRAINT; Schema: pheno_population; Owner: postgres -- ALTER TABLE ONLY pheno_population.populations ADD CONSTRAINT populations_pkey PRIMARY KEY (pop_id); -- -- Name: properties properties_pkey; Type: CONSTRAINT; Schema: pheno_population; Owner: postgres -- ALTER TABLE ONLY pheno_population.properties ADD CONSTRAINT properties_pkey PRIMARY KEY (prop_id); -- -- Name: samples samples_pkey; Type: CONSTRAINT; Schema: pheno_population; Owner: postgres -- ALTER TABLE ONLY pheno_population.samples ADD CONSTRAINT samples_pkey PRIMARY KEY (sample_id); -- -- Name: sources sources_pkey; Type: CONSTRAINT; Schema: pheno_population; Owner: postgres -- ALTER TABLE ONLY pheno_population.sources ADD CONSTRAINT sources_pkey PRIMARY KEY (source_id); -- -- Name: allele_alias allele_alias_pkey; Type: CONSTRAINT; Schema: phenome; Owner: postgres -- ALTER TABLE ONLY phenome.allele_alias ADD CONSTRAINT allele_alias_pkey PRIMARY KEY (allele_alias_id); -- -- Name: allele_dbxref allele_dbxref_id_key; Type: CONSTRAINT; Schema: phenome; Owner: postgres -- ALTER TABLE ONLY phenome.allele_dbxref ADD CONSTRAINT allele_dbxref_id_key UNIQUE (allele_id, dbxref_id); -- -- Name: allele_dbxref allele_dbxref_pkey; Type: CONSTRAINT; Schema: phenome; Owner: postgres -- ALTER TABLE ONLY phenome.allele_dbxref ADD CONSTRAINT allele_dbxref_pkey PRIMARY KEY (allele_dbxref_id); -- -- Name: allele_history allele_history_pkey; Type: CONSTRAINT; Schema: phenome; Owner: postgres -- ALTER TABLE ONLY phenome.allele_history ADD CONSTRAINT allele_history_pkey PRIMARY KEY (allele_history_id); -- -- Name: allele allele_pkey; Type: CONSTRAINT; Schema: phenome; Owner: postgres -- ALTER TABLE ONLY phenome.allele ADD CONSTRAINT allele_pkey PRIMARY KEY (allele_id); -- -- Name: cross_type cross_type_pkey; Type: CONSTRAINT; Schema: phenome; Owner: postgres -- ALTER TABLE ONLY phenome.cross_type ADD CONSTRAINT cross_type_pkey PRIMARY KEY (cross_type_id); -- -- Name: dbxref_type dbxref_type_dbxref_type_definition_key; Type: CONSTRAINT; Schema: phenome; Owner: postgres -- ALTER TABLE ONLY phenome.dbxref_type ADD CONSTRAINT dbxref_type_dbxref_type_definition_key UNIQUE (dbxref_type_definition); -- -- Name: dbxref_type dbxref_type_dbxref_type_name_key; Type: CONSTRAINT; Schema: phenome; Owner: postgres -- ALTER TABLE ONLY phenome.dbxref_type ADD CONSTRAINT dbxref_type_dbxref_type_name_key UNIQUE (dbxref_type_name); -- -- Name: dbxref_type dbxref_type_dbxref_type_url_key; Type: CONSTRAINT; Schema: phenome; Owner: postgres -- ALTER TABLE ONLY phenome.dbxref_type ADD CONSTRAINT dbxref_type_dbxref_type_url_key UNIQUE (dbxref_type_url); -- -- Name: dbxref_type dbxref_type_pkey; Type: CONSTRAINT; Schema: phenome; Owner: postgres -- ALTER TABLE ONLY phenome.dbxref_type ADD CONSTRAINT dbxref_type_pkey PRIMARY KEY (dbxref_type_id); -- -- Name: genotype_experiment genotype_experiment_pkey; Type: CONSTRAINT; Schema: phenome; Owner: postgres -- ALTER TABLE ONLY phenome.genotype_experiment ADD CONSTRAINT genotype_experiment_pkey PRIMARY KEY (genotype_experiment_id); -- -- Name: phenome_genotype genotype_pkey; Type: CONSTRAINT; Schema: phenome; Owner: postgres -- ALTER TABLE ONLY phenome.phenome_genotype ADD CONSTRAINT genotype_pkey PRIMARY KEY (phenome_genotype_id); -- -- Name: genotype_region genotype_region_pkey; Type: CONSTRAINT; Schema: phenome; Owner: postgres -- ALTER TABLE ONLY phenome.genotype_region ADD CONSTRAINT genotype_region_pkey PRIMARY KEY (genotype_region_id); -- -- Name: germplasm germplasm_pkey; Type: CONSTRAINT; Schema: phenome; Owner: postgres -- ALTER TABLE ONLY phenome.germplasm ADD CONSTRAINT germplasm_pkey PRIMARY KEY (germplasm_id); -- -- Name: individual_alias individual_alias_pkey; Type: CONSTRAINT; Schema: phenome; Owner: postgres -- ALTER TABLE ONLY phenome.individual_alias ADD CONSTRAINT individual_alias_pkey PRIMARY KEY (individual_alias_id); -- -- Name: individual_allele individual_allele_pkey; Type: CONSTRAINT; Schema: phenome; Owner: postgres -- ALTER TABLE ONLY phenome.individual_allele ADD CONSTRAINT individual_allele_pkey PRIMARY KEY (individual_allele_id); -- -- Name: individual_allele individual_allele_ukey; Type: CONSTRAINT; Schema: phenome; Owner: postgres -- ALTER TABLE ONLY phenome.individual_allele ADD CONSTRAINT individual_allele_ukey UNIQUE (individual_id, allele_id); -- -- Name: individual_dbxref_evidence_history individual_dbxref_evidence_history_pkey; Type: CONSTRAINT; Schema: phenome; Owner: postgres -- ALTER TABLE ONLY phenome.individual_dbxref_evidence_history ADD CONSTRAINT individual_dbxref_evidence_history_pkey PRIMARY KEY (individual_dbxref_evidence_history_id); -- -- Name: individual_dbxref_evidence individual_dbxref_evidence_pkey; Type: CONSTRAINT; Schema: phenome; Owner: postgres -- ALTER TABLE ONLY phenome.individual_dbxref_evidence ADD CONSTRAINT individual_dbxref_evidence_pkey PRIMARY KEY (individual_dbxref_evidence_id); -- -- Name: individual_dbxref individual_dbxref_pkey; Type: CONSTRAINT; Schema: phenome; Owner: postgres -- ALTER TABLE ONLY phenome.individual_dbxref ADD CONSTRAINT individual_dbxref_pkey PRIMARY KEY (individual_dbxref_id); -- -- Name: individual_history individual_history_pkey; Type: CONSTRAINT; Schema: phenome; Owner: postgres -- ALTER TABLE ONLY phenome.individual_history ADD CONSTRAINT individual_history_pkey PRIMARY KEY (individual_history_id); -- -- Name: individual_image individual_image_pkey; Type: CONSTRAINT; Schema: phenome; Owner: postgres -- ALTER TABLE ONLY phenome.individual_image ADD CONSTRAINT individual_image_pkey PRIMARY KEY (individual_image_id); -- -- Name: individual_locus individual_locus_pkey; Type: CONSTRAINT; Schema: phenome; Owner: postgres -- ALTER TABLE ONLY phenome.individual_locus ADD CONSTRAINT individual_locus_pkey PRIMARY KEY (individual_locus_id); -- -- Name: individual_locus individual_locus_ukey; Type: CONSTRAINT; Schema: phenome; Owner: postgres -- ALTER TABLE ONLY phenome.individual_locus ADD CONSTRAINT individual_locus_ukey UNIQUE (individual_id, locus_id); -- -- Name: individual individual_pkey; Type: CONSTRAINT; Schema: phenome; Owner: postgres -- ALTER TABLE ONLY phenome.individual ADD CONSTRAINT individual_pkey PRIMARY KEY (individual_id); -- -- Name: is_public is_public_pkey; Type: CONSTRAINT; Schema: phenome; Owner: postgres -- ALTER TABLE ONLY phenome.is_public ADD CONSTRAINT is_public_pkey PRIMARY KEY (is_public_id); -- -- Name: is_public is_public_population_id_key; Type: CONSTRAINT; Schema: phenome; Owner: postgres -- ALTER TABLE ONLY phenome.is_public ADD CONSTRAINT is_public_population_id_key UNIQUE (population_id); -- -- Name: locus2locus locus2locus_pkey; Type: CONSTRAINT; Schema: phenome; Owner: postgres -- ALTER TABLE ONLY phenome.locus2locus ADD CONSTRAINT locus2locus_pkey PRIMARY KEY (locus2locus_id); -- -- Name: locus_alias locus_alias_pkey; Type: CONSTRAINT; Schema: phenome; Owner: postgres -- ALTER TABLE ONLY phenome.locus_alias ADD CONSTRAINT locus_alias_pkey PRIMARY KEY (locus_alias_id); -- -- Name: locus_dbxref_evidence_history locus_dbxref_evidence_history_pkey; Type: CONSTRAINT; Schema: phenome; Owner: postgres -- ALTER TABLE ONLY phenome.locus_dbxref_evidence_history ADD CONSTRAINT locus_dbxref_evidence_history_pkey PRIMARY KEY (locus_dbxref_evidence_history_id); -- -- Name: locus_dbxref_evidence locus_dbxref_evidence_pkey; Type: CONSTRAINT; Schema: phenome; Owner: postgres -- ALTER TABLE ONLY phenome.locus_dbxref_evidence ADD CONSTRAINT locus_dbxref_evidence_pkey PRIMARY KEY (locus_dbxref_evidence_id); -- -- Name: locus_dbxref locus_dbxref_id_key; Type: CONSTRAINT; Schema: phenome; Owner: postgres -- ALTER TABLE ONLY phenome.locus_dbxref ADD CONSTRAINT locus_dbxref_id_key UNIQUE (locus_id, dbxref_id); -- -- Name: locus_dbxref locus_dbxref_pkey; Type: CONSTRAINT; Schema: phenome; Owner: postgres -- ALTER TABLE ONLY phenome.locus_dbxref ADD CONSTRAINT locus_dbxref_pkey PRIMARY KEY (locus_dbxref_id); -- -- Name: locus_history locus_history_pkey; Type: CONSTRAINT; Schema: phenome; Owner: postgres -- ALTER TABLE ONLY phenome.locus_history ADD CONSTRAINT locus_history_pkey PRIMARY KEY (locus_history_id); -- -- Name: locus_image locus_image_pkey; Type: CONSTRAINT; Schema: phenome; Owner: postgres -- ALTER TABLE ONLY phenome.locus_image ADD CONSTRAINT locus_image_pkey PRIMARY KEY (locus_image_id); -- -- Name: locus_marker locus_marker_pkey; Type: CONSTRAINT; Schema: phenome; Owner: postgres -- ALTER TABLE ONLY phenome.locus_marker ADD CONSTRAINT locus_marker_pkey PRIMARY KEY (locus_marker_id); -- -- Name: locus locus_name_key; Type: CONSTRAINT; Schema: phenome; Owner: postgres -- ALTER TABLE ONLY phenome.locus ADD CONSTRAINT locus_name_key UNIQUE (locus_name, common_name_id, obsolete); -- -- Name: locus_owner locus_owner_key; Type: CONSTRAINT; Schema: phenome; Owner: postgres -- ALTER TABLE ONLY phenome.locus_owner ADD CONSTRAINT locus_owner_key UNIQUE (locus_id, sp_person_id); -- -- Name: locus_owner locus_owner_pkey; Type: CONSTRAINT; Schema: phenome; Owner: postgres -- ALTER TABLE ONLY phenome.locus_owner ADD CONSTRAINT locus_owner_pkey PRIMARY KEY (locus_owner_id); -- -- Name: locus locus_pkey; Type: CONSTRAINT; Schema: phenome; Owner: postgres -- ALTER TABLE ONLY phenome.locus ADD CONSTRAINT locus_pkey PRIMARY KEY (locus_id); -- -- Name: locus_registry locus_registry_id_key; Type: CONSTRAINT; Schema: phenome; Owner: postgres -- ALTER TABLE ONLY phenome.locus_registry ADD CONSTRAINT locus_registry_id_key UNIQUE (locus_id, registry_id); -- -- Name: locus_registry locus_registry_pkey; Type: CONSTRAINT; Schema: phenome; Owner: postgres -- ALTER TABLE ONLY phenome.locus_registry ADD CONSTRAINT locus_registry_pkey PRIMARY KEY (locus_registry_id); -- -- Name: locus locus_symbol_key; Type: CONSTRAINT; Schema: phenome; Owner: postgres -- ALTER TABLE ONLY phenome.locus ADD CONSTRAINT locus_symbol_key UNIQUE (locus_symbol, common_name_id, obsolete); -- -- Name: locus_unigene locus_unigene_key; Type: CONSTRAINT; Schema: phenome; Owner: postgres -- ALTER TABLE ONLY phenome.locus_unigene ADD CONSTRAINT locus_unigene_key UNIQUE (locus_id, unigene_id); -- -- Name: locus_unigene locus_unigene_pkey; Type: CONSTRAINT; Schema: phenome; Owner: postgres -- ALTER TABLE ONLY phenome.locus_unigene ADD CONSTRAINT locus_unigene_pkey PRIMARY KEY (locus_unigene_id); -- -- Name: locusgroup locusgroup_locusgroup_name_key; Type: CONSTRAINT; Schema: phenome; Owner: postgres -- ALTER TABLE ONLY phenome.locusgroup ADD CONSTRAINT locusgroup_locusgroup_name_key UNIQUE (locusgroup_name); -- -- Name: locusgroup_member locusgroup_member_key; Type: CONSTRAINT; Schema: phenome; Owner: postgres -- ALTER TABLE ONLY phenome.locusgroup_member ADD CONSTRAINT locusgroup_member_key UNIQUE (locus_id, locusgroup_id); -- -- Name: locusgroup_member locusgroup_member_pkey; Type: CONSTRAINT; Schema: phenome; Owner: postgres -- ALTER TABLE ONLY phenome.locusgroup_member ADD CONSTRAINT locusgroup_member_pkey PRIMARY KEY (locusgroup_member_id); -- -- Name: locusgroup locusgroup_pkey; Type: CONSTRAINT; Schema: phenome; Owner: postgres -- ALTER TABLE ONLY phenome.locusgroup ADD CONSTRAINT locusgroup_pkey PRIMARY KEY (locusgroup_id); -- -- Name: nd_experiment_md_files nd_experiment_md_files_pkey; Type: CONSTRAINT; Schema: phenome; Owner: postgres -- ALTER TABLE ONLY phenome.nd_experiment_md_files ADD CONSTRAINT nd_experiment_md_files_pkey PRIMARY KEY (nd_experiment_md_files_id); -- -- Name: nd_experiment_md_images nd_experiment_md_images_pkey; Type: CONSTRAINT; Schema: phenome; Owner: postgres -- ALTER TABLE ONLY phenome.nd_experiment_md_images ADD CONSTRAINT nd_experiment_md_images_pkey PRIMARY KEY (nd_experiment_md_images_id); -- -- Name: nd_experiment_md_json nd_experiment_md_json_pkey; Type: CONSTRAINT; Schema: phenome; Owner: postgres -- ALTER TABLE ONLY phenome.nd_experiment_md_json ADD CONSTRAINT nd_experiment_md_json_pkey PRIMARY KEY (nd_experiment_md_json_id); -- -- Name: phenotype_user_trait phenotype_user_trait_pkey; Type: CONSTRAINT; Schema: phenome; Owner: postgres -- ALTER TABLE ONLY phenome.phenotype_user_trait ADD CONSTRAINT phenotype_user_trait_pkey PRIMARY KEY (phenotype_user_trait_id); -- -- Name: polymorphic_fragment polymorphic_fragment_pkey; Type: CONSTRAINT; Schema: phenome; Owner: postgres -- ALTER TABLE ONLY phenome.polymorphic_fragment ADD CONSTRAINT polymorphic_fragment_pkey PRIMARY KEY (polymorphic_fragment_id); -- -- Name: population_dbxref population_dbxref_pkey; Type: CONSTRAINT; Schema: phenome; Owner: postgres -- ALTER TABLE ONLY phenome.population_dbxref ADD CONSTRAINT population_dbxref_pkey PRIMARY KEY (population_dbxref_id); -- -- Name: population population_name_key; Type: CONSTRAINT; Schema: phenome; Owner: postgres -- ALTER TABLE ONLY phenome.population ADD CONSTRAINT population_name_key UNIQUE (name); -- -- Name: population population_pkey; Type: CONSTRAINT; Schema: phenome; Owner: postgres -- ALTER TABLE ONLY phenome.population ADD CONSTRAINT population_pkey PRIMARY KEY (population_id); -- -- Name: project_md_image project_md_image_pkey; Type: CONSTRAINT; Schema: phenome; Owner: postgres -- ALTER TABLE ONLY phenome.project_md_image ADD CONSTRAINT project_md_image_pkey PRIMARY KEY (project_md_image_id); -- -- Name: pub_curator pub_curator_pkey; Type: CONSTRAINT; Schema: phenome; Owner: postgres -- ALTER TABLE ONLY phenome.pub_curator ADD CONSTRAINT pub_curator_pkey PRIMARY KEY (pub_curator_id); -- -- Name: pub_curator pub_curator_pub_id_key; Type: CONSTRAINT; Schema: phenome; Owner: postgres -- ALTER TABLE ONLY phenome.pub_curator ADD CONSTRAINT pub_curator_pub_id_key UNIQUE (pub_id); -- -- Name: registry registry_pkey; Type: CONSTRAINT; Schema: phenome; Owner: postgres -- ALTER TABLE ONLY phenome.registry ADD CONSTRAINT registry_pkey PRIMARY KEY (registry_id); -- -- Name: stock_allele stock_allele_pkey; Type: CONSTRAINT; Schema: phenome; Owner: postgres -- ALTER TABLE ONLY phenome.stock_allele ADD CONSTRAINT stock_allele_pkey PRIMARY KEY (stock_allele_id); -- -- Name: stock_image stock_image_pkey; Type: CONSTRAINT; Schema: phenome; Owner: postgres -- ALTER TABLE ONLY phenome.stock_image ADD CONSTRAINT stock_image_pkey PRIMARY KEY (stock_image_id); -- -- Name: stock_owner stock_owner_pkey; Type: CONSTRAINT; Schema: phenome; Owner: postgres -- ALTER TABLE ONLY phenome.stock_owner ADD CONSTRAINT stock_owner_pkey PRIMARY KEY (stock_owner_id); -- -- Name: registry symbol_name_key; Type: CONSTRAINT; Schema: phenome; Owner: postgres -- ALTER TABLE ONLY phenome.registry ADD CONSTRAINT symbol_name_key UNIQUE (symbol, name); -- -- Name: tomato_term2term term1_id_key; Type: CONSTRAINT; Schema: phenome; Owner: postgres -- ALTER TABLE ONLY phenome.tomato_term2term ADD CONSTRAINT term1_id_key UNIQUE (term1_id, term2_id, relationship_type_id); -- -- Name: tomato_il_bin tomato_il_bin_pkey; Type: CONSTRAINT; Schema: phenome; Owner: postgres -- ALTER TABLE ONLY phenome.tomato_il_bin ADD CONSTRAINT tomato_il_bin_pkey PRIMARY KEY (il_bin_id); -- -- Name: tomato_term2term tomato_term2term_pkey; Type: CONSTRAINT; Schema: phenome; Owner: postgres -- ALTER TABLE ONLY phenome.tomato_term2term ADD CONSTRAINT tomato_term2term_pkey PRIMARY KEY (tomato_term2term_id); -- -- Name: tomato_term tomato_term_acc_key; Type: CONSTRAINT; Schema: phenome; Owner: postgres -- ALTER TABLE ONLY phenome.tomato_term ADD CONSTRAINT tomato_term_acc_key UNIQUE (tomato_term_acc); -- -- Name: tomato_term tomato_term_pkey; Type: CONSTRAINT; Schema: phenome; Owner: postgres -- ALTER TABLE ONLY phenome.tomato_term ADD CONSTRAINT tomato_term_pkey PRIMARY KEY (tomato_term_id); -- -- Name: unit unit_pkey; Type: CONSTRAINT; Schema: phenome; Owner: postgres -- ALTER TABLE ONLY phenome.unit ADD CONSTRAINT unit_pkey PRIMARY KEY (unit_id); -- -- Name: user_trait user_trait_pkey; Type: CONSTRAINT; Schema: phenome; Owner: postgres -- ALTER TABLE ONLY phenome.user_trait ADD CONSTRAINT user_trait_pkey PRIMARY KEY (user_trait_id); -- -- Name: user_trait_unit user_trait_unit_pkey; Type: CONSTRAINT; Schema: phenome; Owner: postgres -- ALTER TABLE ONLY phenome.user_trait_unit ADD CONSTRAINT user_trait_unit_pkey PRIMARY KEY (user_trait_unit_id); -- -- Name: variant variant_gi_key; Type: CONSTRAINT; Schema: phenome; Owner: postgres -- ALTER TABLE ONLY phenome.variant ADD CONSTRAINT variant_gi_key UNIQUE (variant_gi); -- -- Name: variant variant_pkey; Type: CONSTRAINT; Schema: phenome; Owner: postgres -- ALTER TABLE ONLY phenome.variant ADD CONSTRAINT variant_pkey PRIMARY KEY (variant_id); -- -- Name: ba_plausibility ba_plausibility_pkey; Type: CONSTRAINT; Schema: physical; Owner: postgres -- ALTER TABLE ONLY physical.ba_plausibility ADD CONSTRAINT ba_plausibility_pkey PRIMARY KEY (bap_id); -- -- Name: bac_associations bac_associations_pkey; Type: CONSTRAINT; Schema: physical; Owner: postgres -- ALTER TABLE ONLY physical.bac_associations ADD CONSTRAINT bac_associations_pkey PRIMARY KEY (bac_assoc_id); -- -- Name: bac_consensus_sequences bac_consensus_sequences_pkey; Type: CONSTRAINT; Schema: physical; Owner: postgres -- ALTER TABLE ONLY physical.bac_consensus_sequences ADD CONSTRAINT bac_consensus_sequences_pkey PRIMARY KEY (consensus_seq_id); -- -- Name: bac_contigs bac_contigs_pkey; Type: CONSTRAINT; Schema: physical; Owner: postgres -- ALTER TABLE ONLY physical.bac_contigs ADD CONSTRAINT bac_contigs_pkey PRIMARY KEY (bac_contig_id); -- -- Name: bac_end_sequences bac_end_sequences_pkey; Type: CONSTRAINT; Schema: physical; Owner: postgres -- ALTER TABLE ONLY physical.bac_end_sequences ADD CONSTRAINT bac_end_sequences_pkey PRIMARY KEY (end_seq_id); -- -- Name: bacs bacs_arizona_clone_name_key; Type: CONSTRAINT; Schema: physical; Owner: postgres -- ALTER TABLE ONLY physical.bacs ADD CONSTRAINT bacs_arizona_clone_name_key UNIQUE (arizona_clone_name); -- -- Name: bacs bacs_pkey; Type: CONSTRAINT; Schema: physical; Owner: postgres -- ALTER TABLE ONLY physical.bacs ADD CONSTRAINT bacs_pkey PRIMARY KEY (bac_id); -- -- Name: computational_associations computational_associations_pkey; Type: CONSTRAINT; Schema: physical; Owner: postgres -- ALTER TABLE ONLY physical.computational_associations ADD CONSTRAINT computational_associations_pkey PRIMARY KEY (computational_assoc_id); -- -- Name: contig_sizes contig_sizes_pkey; Type: CONSTRAINT; Schema: physical; Owner: postgres -- ALTER TABLE ONLY physical.contig_sizes ADD CONSTRAINT contig_sizes_pkey PRIMARY KEY (contig_size_id); -- -- Name: deprecated_probes deprecated_probes_pkey; Type: CONSTRAINT; Schema: physical; Owner: postgres -- ALTER TABLE ONLY physical.deprecated_probes ADD CONSTRAINT deprecated_probes_pkey PRIMARY KEY (dp_id); -- -- Name: fpc_data fpc_data_pkey; Type: CONSTRAINT; Schema: physical; Owner: postgres -- ALTER TABLE ONLY physical.fpc_data ADD CONSTRAINT fpc_data_pkey PRIMARY KEY (fpc_datum_id); -- -- Name: fpc_version fpc_version_pkey; Type: CONSTRAINT; Schema: physical; Owner: postgres -- ALTER TABLE ONLY physical.fpc_version ADD CONSTRAINT fpc_version_pkey PRIMARY KEY (fpc_version); -- -- Name: manual_associations manual_associations_pkey; Type: CONSTRAINT; Schema: physical; Owner: postgres -- ALTER TABLE ONLY physical.manual_associations ADD CONSTRAINT manual_associations_pkey PRIMARY KEY (manual_assoc_id); -- -- Name: oa_plausibility oa_plausibility_pkey; Type: CONSTRAINT; Schema: physical; Owner: postgres -- ALTER TABLE ONLY physical.oa_plausibility ADD CONSTRAINT oa_plausibility_pkey PRIMARY KEY (oap_id); -- -- Name: overgo_associations overgo_associations_pkey; Type: CONSTRAINT; Schema: physical; Owner: postgres -- ALTER TABLE ONLY physical.overgo_associations ADD CONSTRAINT overgo_associations_pkey PRIMARY KEY (overgo_assoc_id); -- -- Name: overgo_plates overgo_plates_pkey; Type: CONSTRAINT; Schema: physical; Owner: postgres -- ALTER TABLE ONLY physical.overgo_plates ADD CONSTRAINT overgo_plates_pkey PRIMARY KEY (plate_id); -- -- Name: overgo_results overgo_results_pkey; Type: CONSTRAINT; Schema: physical; Owner: postgres -- ALTER TABLE ONLY physical.overgo_results ADD CONSTRAINT overgo_results_pkey PRIMARY KEY (result_id); -- -- Name: overgo_version overgo_version_pkey; Type: CONSTRAINT; Schema: physical; Owner: postgres -- ALTER TABLE ONLY physical.overgo_version ADD CONSTRAINT overgo_version_pkey PRIMARY KEY (overgo_version); -- -- Name: probe_markers probe_markers_pkey; Type: CONSTRAINT; Schema: physical; Owner: postgres -- ALTER TABLE ONLY physical.probe_markers ADD CONSTRAINT probe_markers_pkey PRIMARY KEY (overgo_probe_id); -- -- Name: species species_pkey; Type: CONSTRAINT; Schema: physical; Owner: postgres -- ALTER TABLE ONLY physical.species ADD CONSTRAINT species_pkey PRIMARY KEY (species_id); -- -- Name: tentative_association_conflict_groups tentative_association_conflict_groups_pkey; Type: CONSTRAINT; Schema: physical; Owner: postgres -- ALTER TABLE ONLY physical.tentative_association_conflict_groups ADD CONSTRAINT tentative_association_conflict_groups_pkey PRIMARY KEY (tacg_id); -- -- Name: tentative_overgo_associations tentative_overgo_associations_pkey; Type: CONSTRAINT; Schema: physical; Owner: postgres -- ALTER TABLE ONLY physical.tentative_overgo_associations ADD CONSTRAINT tentative_overgo_associations_pkey PRIMARY KEY (tentative_assoc_id); -- -- Name: users users_pkey; Type: CONSTRAINT; Schema: physical; Owner: postgres -- ALTER TABLE ONLY physical.users ADD CONSTRAINT users_pkey PRIMARY KEY (user_id); -- -- Name: analysis analysis_c1; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.analysis ADD CONSTRAINT analysis_c1 UNIQUE (program, programversion, sourcename); -- -- Name: analysis analysis_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.analysis ADD CONSTRAINT analysis_pkey PRIMARY KEY (analysis_id); -- -- Name: analysisfeature analysisfeature_c1; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.analysisfeature ADD CONSTRAINT analysisfeature_c1 UNIQUE (feature_id, analysis_id); -- -- Name: analysisfeature analysisfeature_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.analysisfeature ADD CONSTRAINT analysisfeature_pkey PRIMARY KEY (analysisfeature_id); -- -- Name: analysisprop analysisprop_c1; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.analysisprop ADD CONSTRAINT analysisprop_c1 UNIQUE (analysis_id, type_id, value); -- -- Name: analysisprop analysisprop_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.analysisprop ADD CONSTRAINT analysisprop_pkey PRIMARY KEY (analysisprop_id); -- -- Name: ara_annotation ara_annotation_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.ara_annotation ADD CONSTRAINT ara_annotation_pkey PRIMARY KEY (agi); -- -- Name: ara_properties ara_properties_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.ara_properties ADD CONSTRAINT ara_properties_pkey PRIMARY KEY (agi); -- -- Name: ara_sequence ara_sequence_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.ara_sequence ADD CONSTRAINT ara_sequence_pkey PRIMARY KEY (agi); -- -- Name: ara_signalp ara_signalp_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.ara_signalp ADD CONSTRAINT ara_signalp_pkey PRIMARY KEY (agi); -- -- Name: ara_targetp ara_targetp_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.ara_targetp ADD CONSTRAINT ara_targetp_pkey PRIMARY KEY (agi); -- -- Name: blastwatch_queries blastwatch_queries_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.blastwatch_queries ADD CONSTRAINT blastwatch_queries_pkey PRIMARY KEY (blastwatch_queries_id); -- -- Name: blastwatch_results blastwatch_results_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.blastwatch_results ADD CONSTRAINT blastwatch_results_pkey PRIMARY KEY (blastwatch_results_id); -- -- Name: bug bug_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.bug ADD CONSTRAINT bug_pkey PRIMARY KEY (bug_id); -- -- Name: contact contact_c1; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.contact ADD CONSTRAINT contact_c1 UNIQUE (name); -- -- Name: contact contact_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.contact ADD CONSTRAINT contact_pkey PRIMARY KEY (contact_id); -- -- Name: contact_relationship contact_relationship_c1; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.contact_relationship ADD CONSTRAINT contact_relationship_c1 UNIQUE (subject_id, object_id, type_id); -- -- Name: contact_relationship contact_relationship_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.contact_relationship ADD CONSTRAINT contact_relationship_pkey PRIMARY KEY (contact_relationship_id); -- -- Name: cv cv_c1; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.cv ADD CONSTRAINT cv_c1 UNIQUE (name); -- -- Name: cv cv_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.cv ADD CONSTRAINT cv_pkey PRIMARY KEY (cv_id); -- -- Name: cvprop cvprop_c1; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.cvprop ADD CONSTRAINT cvprop_c1 UNIQUE (cv_id, type_id, rank); -- -- Name: cvprop cvprop_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.cvprop ADD CONSTRAINT cvprop_pkey PRIMARY KEY (cvprop_id); -- -- Name: cvterm cvterm_c1; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.cvterm ADD CONSTRAINT cvterm_c1 UNIQUE (name, cv_id, is_obsolete); -- -- Name: cvterm cvterm_c2; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.cvterm ADD CONSTRAINT cvterm_c2 UNIQUE (dbxref_id); -- -- Name: cvterm_dbxref cvterm_dbxref_c1; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.cvterm_dbxref ADD CONSTRAINT cvterm_dbxref_c1 UNIQUE (cvterm_id, dbxref_id); -- -- Name: cvterm_dbxref cvterm_dbxref_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.cvterm_dbxref ADD CONSTRAINT cvterm_dbxref_pkey PRIMARY KEY (cvterm_dbxref_id); -- -- Name: cvterm_relationship cvterm_relationship_c1; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.cvterm_relationship ADD CONSTRAINT cvterm_relationship_c1 UNIQUE (subject_id, object_id, type_id); -- -- Name: cvterm_relationship cvterm_relationship_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.cvterm_relationship ADD CONSTRAINT cvterm_relationship_pkey PRIMARY KEY (cvterm_relationship_id); -- -- Name: cvtermpath cvtermpath_c1; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.cvtermpath ADD CONSTRAINT cvtermpath_c1 UNIQUE (subject_id, object_id, type_id, pathdistance); -- -- Name: cvtermpath cvtermpath_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.cvtermpath ADD CONSTRAINT cvtermpath_pkey PRIMARY KEY (cvtermpath_id); -- -- Name: cvtermprop cvtermprop_cvterm_id_key; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.cvtermprop ADD CONSTRAINT cvtermprop_cvterm_id_key UNIQUE (cvterm_id, type_id, value, rank); -- -- Name: cvtermprop cvtermprop_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.cvtermprop ADD CONSTRAINT cvtermprop_pkey PRIMARY KEY (cvtermprop_id); -- -- Name: cvtermsynonym cvtermsynonym_c1; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.cvtermsynonym ADD CONSTRAINT cvtermsynonym_c1 UNIQUE (cvterm_id, synonym); -- -- Name: cvtermsynonym cvtermsynonym_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.cvtermsynonym ADD CONSTRAINT cvtermsynonym_pkey PRIMARY KEY (cvtermsynonym_id); -- -- Name: db db_c1; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.db ADD CONSTRAINT db_c1 UNIQUE (name); -- -- Name: db db_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.db ADD CONSTRAINT db_pkey PRIMARY KEY (db_id); -- -- Name: dbxref dbxref_c1; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.dbxref ADD CONSTRAINT dbxref_c1 UNIQUE (db_id, accession, version); -- -- Name: dbxref dbxref_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.dbxref ADD CONSTRAINT dbxref_pkey PRIMARY KEY (dbxref_id); -- -- Name: dbxrefprop dbxrefprop_c1; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.dbxrefprop ADD CONSTRAINT dbxrefprop_c1 UNIQUE (dbxref_id, type_id, rank); -- -- Name: dbxrefprop dbxrefprop_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.dbxrefprop ADD CONSTRAINT dbxrefprop_pkey PRIMARY KEY (dbxrefprop_id); -- -- Name: environment environment_c1; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.environment ADD CONSTRAINT environment_c1 UNIQUE (uniquename); -- -- Name: environment_cvterm environment_cvterm_c1; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.environment_cvterm ADD CONSTRAINT environment_cvterm_c1 UNIQUE (environment_id, cvterm_id); -- -- Name: environment_cvterm environment_cvterm_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.environment_cvterm ADD CONSTRAINT environment_cvterm_pkey PRIMARY KEY (environment_cvterm_id); -- -- Name: environment environment_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.environment ADD CONSTRAINT environment_pkey PRIMARY KEY (environment_id); -- -- Name: enzyme_restriction_sites enzyme_restriction_sites_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.enzyme_restriction_sites ADD CONSTRAINT enzyme_restriction_sites_pkey PRIMARY KEY (enzyme_restriction_sites_id); -- -- Name: feature feature_c1; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.feature ADD CONSTRAINT feature_c1 UNIQUE (organism_id, uniquename, type_id); -- -- Name: feature_cvterm feature_cvterm_c1; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.feature_cvterm ADD CONSTRAINT feature_cvterm_c1 UNIQUE (feature_id, cvterm_id, pub_id, rank); -- -- Name: feature_cvterm_dbxref feature_cvterm_dbxref_c1; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.feature_cvterm_dbxref ADD CONSTRAINT feature_cvterm_dbxref_c1 UNIQUE (feature_cvterm_id, dbxref_id); -- -- Name: feature_cvterm_dbxref feature_cvterm_dbxref_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.feature_cvterm_dbxref ADD CONSTRAINT feature_cvterm_dbxref_pkey PRIMARY KEY (feature_cvterm_dbxref_id); -- -- Name: feature_cvterm feature_cvterm_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.feature_cvterm ADD CONSTRAINT feature_cvterm_pkey PRIMARY KEY (feature_cvterm_id); -- -- Name: feature_cvterm_pub feature_cvterm_pub_c1; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.feature_cvterm_pub ADD CONSTRAINT feature_cvterm_pub_c1 UNIQUE (feature_cvterm_id, pub_id); -- -- Name: feature_cvterm_pub feature_cvterm_pub_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.feature_cvterm_pub ADD CONSTRAINT feature_cvterm_pub_pkey PRIMARY KEY (feature_cvterm_pub_id); -- -- Name: feature_cvtermprop feature_cvtermprop_c1; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.feature_cvtermprop ADD CONSTRAINT feature_cvtermprop_c1 UNIQUE (feature_cvterm_id, type_id, rank); -- -- Name: feature_cvtermprop feature_cvtermprop_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.feature_cvtermprop ADD CONSTRAINT feature_cvtermprop_pkey PRIMARY KEY (feature_cvtermprop_id); -- -- Name: feature_dbxref feature_dbxref_c1; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.feature_dbxref ADD CONSTRAINT feature_dbxref_c1 UNIQUE (feature_id, dbxref_id); -- -- Name: feature_dbxref feature_dbxref_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.feature_dbxref ADD CONSTRAINT feature_dbxref_pkey PRIMARY KEY (feature_dbxref_id); -- -- Name: feature_genotype feature_genotype_c1; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.feature_genotype ADD CONSTRAINT feature_genotype_c1 UNIQUE (feature_id, genotype_id, cvterm_id, chromosome_id, rank, cgroup); -- -- Name: feature_genotype feature_genotype_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.feature_genotype ADD CONSTRAINT feature_genotype_pkey PRIMARY KEY (feature_genotype_id); -- -- Name: feature feature_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.feature ADD CONSTRAINT feature_pkey PRIMARY KEY (feature_id); -- -- Name: feature_pub feature_pub_c1; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.feature_pub ADD CONSTRAINT feature_pub_c1 UNIQUE (feature_id, pub_id); -- -- Name: feature_pub feature_pub_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.feature_pub ADD CONSTRAINT feature_pub_pkey PRIMARY KEY (feature_pub_id); -- -- Name: feature_relationship feature_relationship_c1; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.feature_relationship ADD CONSTRAINT feature_relationship_c1 UNIQUE (subject_id, object_id, type_id, rank); -- -- Name: feature_relationship feature_relationship_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.feature_relationship ADD CONSTRAINT feature_relationship_pkey PRIMARY KEY (feature_relationship_id); -- -- Name: feature_relationship_pub feature_relationship_pub_c1; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.feature_relationship_pub ADD CONSTRAINT feature_relationship_pub_c1 UNIQUE (feature_relationship_id, pub_id); -- -- Name: feature_relationship_pub feature_relationship_pub_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.feature_relationship_pub ADD CONSTRAINT feature_relationship_pub_pkey PRIMARY KEY (feature_relationship_pub_id); -- -- Name: feature_relationshipprop feature_relationshipprop_c1; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.feature_relationshipprop ADD CONSTRAINT feature_relationshipprop_c1 UNIQUE (feature_relationship_id, type_id, rank); -- -- Name: feature_relationshipprop feature_relationshipprop_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.feature_relationshipprop ADD CONSTRAINT feature_relationshipprop_pkey PRIMARY KEY (feature_relationshipprop_id); -- -- Name: feature_relationshipprop_pub feature_relationshipprop_pub_c1; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.feature_relationshipprop_pub ADD CONSTRAINT feature_relationshipprop_pub_c1 UNIQUE (feature_relationshipprop_id, pub_id); -- -- Name: feature_relationshipprop_pub feature_relationshipprop_pub_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.feature_relationshipprop_pub ADD CONSTRAINT feature_relationshipprop_pub_pkey PRIMARY KEY (feature_relationshipprop_pub_id); -- -- Name: feature_synonym feature_synonym_c1; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.feature_synonym ADD CONSTRAINT feature_synonym_c1 UNIQUE (synonym_id, feature_id, pub_id); -- -- Name: feature_synonym feature_synonym_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.feature_synonym ADD CONSTRAINT feature_synonym_pkey PRIMARY KEY (feature_synonym_id); -- -- Name: featureloc featureloc_c1; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.featureloc ADD CONSTRAINT featureloc_c1 UNIQUE (feature_id, locgroup, rank); -- -- Name: featureloc featureloc_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.featureloc ADD CONSTRAINT featureloc_pkey PRIMARY KEY (featureloc_id); -- -- Name: featureloc_pub featureloc_pub_c1; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.featureloc_pub ADD CONSTRAINT featureloc_pub_c1 UNIQUE (featureloc_id, pub_id); -- -- Name: featureloc_pub featureloc_pub_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.featureloc_pub ADD CONSTRAINT featureloc_pub_pkey PRIMARY KEY (featureloc_pub_id); -- -- Name: featureprop featureprop_c1; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.featureprop ADD CONSTRAINT featureprop_c1 UNIQUE (feature_id, type_id, rank); -- -- Name: featureprop featureprop_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.featureprop ADD CONSTRAINT featureprop_pkey PRIMARY KEY (featureprop_id); -- -- Name: featureprop_pub featureprop_pub_c1; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.featureprop_pub ADD CONSTRAINT featureprop_pub_c1 UNIQUE (featureprop_id, pub_id); -- -- Name: featureprop_pub featureprop_pub_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.featureprop_pub ADD CONSTRAINT featureprop_pub_pkey PRIMARY KEY (featureprop_pub_id); -- -- Name: forward_amplicon_sequence_information forward_amplicon_sequence_information_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.forward_amplicon_sequence_information ADD CONSTRAINT forward_amplicon_sequence_information_pkey PRIMARY KEY (forward_amplicon_sequence_information_id); -- -- Name: forward_amplicon_sequence_markers forward_amplicon_sequence_markers_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.forward_amplicon_sequence_markers ADD CONSTRAINT forward_amplicon_sequence_markers_pkey PRIMARY KEY (forward_amplicon_sequence_markers_id); -- -- Name: fpc_band fpc_band_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.fpc_band ADD CONSTRAINT fpc_band_pkey PRIMARY KEY (fpc_band_id); -- -- Name: fpc_build fpc_build_filename_key; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.fpc_build ADD CONSTRAINT fpc_build_filename_key UNIQUE (file_base); -- -- Name: fpc_build_fpc_fingerprint fpc_build_fpc_fingerprint_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.fpc_build_fpc_fingerprint ADD CONSTRAINT fpc_build_fpc_fingerprint_pkey PRIMARY KEY (fpc_build_fpc_fingerprint_id); -- -- Name: fpc_build fpc_build_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.fpc_build ADD CONSTRAINT fpc_build_pkey PRIMARY KEY (fpc_build_id); -- -- Name: fpc_contig_clone fpc_contig_clone_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.fpc_contig_clone ADD CONSTRAINT fpc_contig_clone_pkey PRIMARY KEY (fpc_contig_clone_id); -- -- Name: fpc_contig fpc_contig_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.fpc_contig ADD CONSTRAINT fpc_contig_pkey PRIMARY KEY (fpc_contig_id); -- -- Name: fpc_fingerprint fpc_fingerprint_clone_id_key; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.fpc_fingerprint ADD CONSTRAINT fpc_fingerprint_clone_id_key UNIQUE (clone_id, gel_name); -- -- Name: fpc_fingerprint fpc_fingerprint_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.fpc_fingerprint ADD CONSTRAINT fpc_fingerprint_pkey PRIMARY KEY (fpc_fingerprint_id); -- -- Name: fpc_series fpc_series_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.fpc_series ADD CONSTRAINT fpc_series_pkey PRIMARY KEY (fpc_series_id); -- -- Name: genotype genotype_c1; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.genotype ADD CONSTRAINT genotype_c1 UNIQUE (uniquename); -- -- Name: genotype genotype_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.genotype ADD CONSTRAINT genotype_pkey PRIMARY KEY (genotype_id); -- -- Name: genotypeprop genotypeprop_c1; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.genotypeprop ADD CONSTRAINT genotypeprop_c1 UNIQUE (genotype_id, type_id, rank); -- -- Name: genotypeprop genotypeprop_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.genotypeprop ADD CONSTRAINT genotypeprop_pkey PRIMARY KEY (genotypeprop_id); -- -- Name: glossary glossary_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.glossary ADD CONSTRAINT glossary_pkey PRIMARY KEY (glossary_id); -- -- Name: materialized_view materialized_view_name_key; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.materialized_view ADD CONSTRAINT materialized_view_name_key UNIQUE (name); -- -- Name: matviews matviews_pkey; Type: CONSTRAINT; Schema: public; Owner: web_usr -- ALTER TABLE ONLY public.matviews ADD CONSTRAINT matviews_pkey PRIMARY KEY (mv_id); -- -- Name: nd_experiment_contact nd_experiment_contact_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.nd_experiment_contact ADD CONSTRAINT nd_experiment_contact_pkey PRIMARY KEY (nd_experiment_contact_id); -- -- Name: nd_experiment_dbxref nd_experiment_dbxref_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.nd_experiment_dbxref ADD CONSTRAINT nd_experiment_dbxref_pkey PRIMARY KEY (nd_experiment_dbxref_id); -- -- Name: nd_experiment_genotype nd_experiment_genotype_c1; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.nd_experiment_genotype ADD CONSTRAINT nd_experiment_genotype_c1 UNIQUE (nd_experiment_id, genotype_id); -- -- Name: nd_experiment_genotype nd_experiment_genotype_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.nd_experiment_genotype ADD CONSTRAINT nd_experiment_genotype_pkey PRIMARY KEY (nd_experiment_genotype_id); -- -- Name: nd_experiment_phenotype nd_experiment_phenotype_c1; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.nd_experiment_phenotype ADD CONSTRAINT nd_experiment_phenotype_c1 UNIQUE (nd_experiment_id, phenotype_id); -- -- Name: nd_experiment_phenotype nd_experiment_phenotype_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.nd_experiment_phenotype ADD CONSTRAINT nd_experiment_phenotype_pkey PRIMARY KEY (nd_experiment_phenotype_id); -- -- Name: nd_experiment nd_experiment_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.nd_experiment ADD CONSTRAINT nd_experiment_pkey PRIMARY KEY (nd_experiment_id); -- -- Name: nd_experiment_project nd_experiment_project_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.nd_experiment_project ADD CONSTRAINT nd_experiment_project_pkey PRIMARY KEY (nd_experiment_project_id); -- -- Name: nd_experiment_protocol nd_experiment_protocol_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.nd_experiment_protocol ADD CONSTRAINT nd_experiment_protocol_pkey PRIMARY KEY (nd_experiment_protocol_id); -- -- Name: nd_experiment_pub nd_experiment_pub_c1; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.nd_experiment_pub ADD CONSTRAINT nd_experiment_pub_c1 UNIQUE (nd_experiment_id, pub_id); -- -- Name: nd_experiment_pub nd_experiment_pub_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.nd_experiment_pub ADD CONSTRAINT nd_experiment_pub_pkey PRIMARY KEY (nd_experiment_pub_id); -- -- Name: nd_experiment_stock_dbxref nd_experiment_stock_dbxref_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.nd_experiment_stock_dbxref ADD CONSTRAINT nd_experiment_stock_dbxref_pkey PRIMARY KEY (nd_experiment_stock_dbxref_id); -- -- Name: nd_experiment_stock nd_experiment_stock_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.nd_experiment_stock ADD CONSTRAINT nd_experiment_stock_pkey PRIMARY KEY (nd_experiment_stock_id); -- -- Name: nd_experiment_stockprop nd_experiment_stockprop_c1; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.nd_experiment_stockprop ADD CONSTRAINT nd_experiment_stockprop_c1 UNIQUE (nd_experiment_stock_id, type_id, rank); -- -- Name: nd_experiment_stockprop nd_experiment_stockprop_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.nd_experiment_stockprop ADD CONSTRAINT nd_experiment_stockprop_pkey PRIMARY KEY (nd_experiment_stockprop_id); -- -- Name: nd_experimentprop nd_experimentprop_c1; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.nd_experimentprop ADD CONSTRAINT nd_experimentprop_c1 UNIQUE (nd_experiment_id, type_id, rank); -- -- Name: nd_experimentprop nd_experimentprop_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.nd_experimentprop ADD CONSTRAINT nd_experimentprop_pkey PRIMARY KEY (nd_experimentprop_id); -- -- Name: nd_geolocation nd_geolocation_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.nd_geolocation ADD CONSTRAINT nd_geolocation_pkey PRIMARY KEY (nd_geolocation_id); -- -- Name: nd_geolocationprop nd_geolocationprop_c1; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.nd_geolocationprop ADD CONSTRAINT nd_geolocationprop_c1 UNIQUE (nd_geolocation_id, type_id, rank); -- -- Name: nd_geolocationprop nd_geolocationprop_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.nd_geolocationprop ADD CONSTRAINT nd_geolocationprop_pkey PRIMARY KEY (nd_geolocationprop_id); -- -- Name: nd_protocol nd_protocol_name_key; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.nd_protocol ADD CONSTRAINT nd_protocol_name_key UNIQUE (name); -- -- Name: nd_protocol nd_protocol_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.nd_protocol ADD CONSTRAINT nd_protocol_pkey PRIMARY KEY (nd_protocol_id); -- -- Name: nd_protocol_reagent nd_protocol_reagent_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.nd_protocol_reagent ADD CONSTRAINT nd_protocol_reagent_pkey PRIMARY KEY (nd_protocol_reagent_id); -- -- Name: nd_protocolprop nd_protocolprop_c1; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.nd_protocolprop ADD CONSTRAINT nd_protocolprop_c1 UNIQUE (nd_protocol_id, type_id, rank); -- -- Name: nd_protocolprop nd_protocolprop_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.nd_protocolprop ADD CONSTRAINT nd_protocolprop_pkey PRIMARY KEY (nd_protocolprop_id); -- -- Name: nd_reagent nd_reagent_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.nd_reagent ADD CONSTRAINT nd_reagent_pkey PRIMARY KEY (nd_reagent_id); -- -- Name: nd_reagent_relationship nd_reagent_relationship_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.nd_reagent_relationship ADD CONSTRAINT nd_reagent_relationship_pkey PRIMARY KEY (nd_reagent_relationship_id); -- -- Name: nd_reagentprop nd_reagentprop_c1; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.nd_reagentprop ADD CONSTRAINT nd_reagentprop_c1 UNIQUE (nd_reagent_id, type_id, rank); -- -- Name: nd_reagentprop nd_reagentprop_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.nd_reagentprop ADD CONSTRAINT nd_reagentprop_pkey PRIMARY KEY (nd_reagentprop_id); -- -- Name: organism organism_c1; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.organism ADD CONSTRAINT organism_c1 UNIQUE (genus, species); -- -- Name: organism_dbxref organism_dbxref_c1; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.organism_dbxref ADD CONSTRAINT organism_dbxref_c1 UNIQUE (organism_id, dbxref_id); -- -- Name: organism_dbxref organism_dbxref_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.organism_dbxref ADD CONSTRAINT organism_dbxref_pkey PRIMARY KEY (organism_dbxref_id); -- -- Name: organism organism_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.organism ADD CONSTRAINT organism_pkey PRIMARY KEY (organism_id); -- -- Name: organism_relationship organism_relationship_c1; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.organism_relationship ADD CONSTRAINT organism_relationship_c1 UNIQUE (subject_id, object_id, type_id); -- -- Name: organism_relationship organism_relationship_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.organism_relationship ADD CONSTRAINT organism_relationship_pkey PRIMARY KEY (organism_relationship_id); -- -- Name: organismpath organismpath_c1; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.organismpath ADD CONSTRAINT organismpath_c1 UNIQUE (subject_id, object_id, type_id, pathdistance); -- -- Name: organismpath organismpath_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.organismpath ADD CONSTRAINT organismpath_pkey PRIMARY KEY (organismpath_id); -- -- Name: organismprop organismprop_c1; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.organismprop ADD CONSTRAINT organismprop_c1 UNIQUE (organism_id, type_id, rank); -- -- Name: organismprop organismprop_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.organismprop ADD CONSTRAINT organismprop_pkey PRIMARY KEY (organismprop_id); -- -- Name: phendesc phendesc_c1; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.phendesc ADD CONSTRAINT phendesc_c1 UNIQUE (genotype_id, environment_id, type_id, pub_id); -- -- Name: phendesc phendesc_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.phendesc ADD CONSTRAINT phendesc_pkey PRIMARY KEY (phendesc_id); -- -- Name: phenotype_comparison phenotype_comparison_c1; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.phenotype_comparison ADD CONSTRAINT phenotype_comparison_c1 UNIQUE (genotype1_id, environment1_id, genotype2_id, environment2_id, phenotype1_id, pub_id); -- -- Name: phenotype_comparison_cvterm phenotype_comparison_cvterm_c1; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.phenotype_comparison_cvterm ADD CONSTRAINT phenotype_comparison_cvterm_c1 UNIQUE (phenotype_comparison_id, cvterm_id); -- -- Name: phenotype_comparison_cvterm phenotype_comparison_cvterm_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.phenotype_comparison_cvterm ADD CONSTRAINT phenotype_comparison_cvterm_pkey PRIMARY KEY (phenotype_comparison_cvterm_id); -- -- Name: phenotype_comparison phenotype_comparison_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.phenotype_comparison ADD CONSTRAINT phenotype_comparison_pkey PRIMARY KEY (phenotype_comparison_id); -- -- Name: phenotype_cvterm phenotype_cvterm_c1; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.phenotype_cvterm ADD CONSTRAINT phenotype_cvterm_c1 UNIQUE (phenotype_id, cvterm_id, rank); -- -- Name: phenotype_cvterm phenotype_cvterm_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.phenotype_cvterm ADD CONSTRAINT phenotype_cvterm_pkey PRIMARY KEY (phenotype_cvterm_id); -- -- Name: phenotype phenotype_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.phenotype ADD CONSTRAINT phenotype_pkey PRIMARY KEY (phenotype_id); -- -- Name: phenotypeprop phenotypeprop_c1; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.phenotypeprop ADD CONSTRAINT phenotypeprop_c1 UNIQUE (phenotype_id, type_id, rank); -- -- Name: phenotypeprop phenotypeprop_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.phenotypeprop ADD CONSTRAINT phenotypeprop_pkey PRIMARY KEY (phenotypeprop_id); -- -- Name: phenstatement phenstatement_c1; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.phenstatement ADD CONSTRAINT phenstatement_c1 UNIQUE (genotype_id, phenotype_id, environment_id, type_id, pub_id); -- -- Name: phenstatement phenstatement_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.phenstatement ADD CONSTRAINT phenstatement_pkey PRIMARY KEY (phenstatement_id); -- -- Name: phylonode_dbxref phylonode_dbxref_phylonode_id_key; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.phylonode_dbxref ADD CONSTRAINT phylonode_dbxref_phylonode_id_key UNIQUE (phylonode_id, dbxref_id); -- -- Name: phylonode_dbxref phylonode_dbxref_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.phylonode_dbxref ADD CONSTRAINT phylonode_dbxref_pkey PRIMARY KEY (phylonode_dbxref_id); -- -- Name: phylonode_organism phylonode_organism_phylonode_id_key; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.phylonode_organism ADD CONSTRAINT phylonode_organism_phylonode_id_key UNIQUE (phylonode_id); -- -- Name: phylonode_organism phylonode_organism_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.phylonode_organism ADD CONSTRAINT phylonode_organism_pkey PRIMARY KEY (phylonode_organism_id); -- -- Name: phylonode phylonode_phylotree_id_key; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.phylonode ADD CONSTRAINT phylonode_phylotree_id_key UNIQUE (phylotree_id, left_idx); -- -- Name: phylonode phylonode_phylotree_id_key1; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.phylonode ADD CONSTRAINT phylonode_phylotree_id_key1 UNIQUE (phylotree_id, right_idx); -- -- Name: phylonode phylonode_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.phylonode ADD CONSTRAINT phylonode_pkey PRIMARY KEY (phylonode_id); -- -- Name: phylonode_pub phylonode_pub_phylonode_id_key; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.phylonode_pub ADD CONSTRAINT phylonode_pub_phylonode_id_key UNIQUE (phylonode_id, pub_id); -- -- Name: phylonode_pub phylonode_pub_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.phylonode_pub ADD CONSTRAINT phylonode_pub_pkey PRIMARY KEY (phylonode_pub_id); -- -- Name: phylonode_relationship phylonode_relationship_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.phylonode_relationship ADD CONSTRAINT phylonode_relationship_pkey PRIMARY KEY (phylonode_relationship_id); -- -- Name: phylonode_relationship phylonode_relationship_subject_id_key; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.phylonode_relationship ADD CONSTRAINT phylonode_relationship_subject_id_key UNIQUE (subject_id, object_id, type_id); -- -- Name: phylonodeprop phylonodeprop_phylonode_id_key; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.phylonodeprop ADD CONSTRAINT phylonodeprop_phylonode_id_key UNIQUE (phylonode_id, type_id, value, rank); -- -- Name: phylonodeprop phylonodeprop_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.phylonodeprop ADD CONSTRAINT phylonodeprop_pkey PRIMARY KEY (phylonodeprop_id); -- -- Name: phylotree phylotree_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.phylotree ADD CONSTRAINT phylotree_pkey PRIMARY KEY (phylotree_id); -- -- Name: phylotree_pub phylotree_pub_phylotree_id_key; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.phylotree_pub ADD CONSTRAINT phylotree_pub_phylotree_id_key UNIQUE (phylotree_id, pub_id); -- -- Name: phylotree_pub phylotree_pub_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.phylotree_pub ADD CONSTRAINT phylotree_pub_pkey PRIMARY KEY (phylotree_pub_id); -- -- Name: project project_c1; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.project ADD CONSTRAINT project_c1 UNIQUE (name); -- -- Name: project_contact project_contact_c1; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.project_contact ADD CONSTRAINT project_contact_c1 UNIQUE (project_id, contact_id); -- -- Name: project_contact project_contact_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.project_contact ADD CONSTRAINT project_contact_pkey PRIMARY KEY (project_contact_id); -- -- Name: project project_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.project ADD CONSTRAINT project_pkey PRIMARY KEY (project_id); -- -- Name: project_pub project_pub_c1; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.project_pub ADD CONSTRAINT project_pub_c1 UNIQUE (project_id, pub_id); -- -- Name: project_pub project_pub_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.project_pub ADD CONSTRAINT project_pub_pkey PRIMARY KEY (project_pub_id); -- -- Name: project_relationship project_relationship_c1; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.project_relationship ADD CONSTRAINT project_relationship_c1 UNIQUE (subject_project_id, object_project_id, type_id); -- -- Name: project_relationship project_relationship_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.project_relationship ADD CONSTRAINT project_relationship_pkey PRIMARY KEY (project_relationship_id); -- -- Name: projectprop projectprop_c1; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.projectprop ADD CONSTRAINT projectprop_c1 UNIQUE (project_id, type_id, rank); -- -- Name: projectprop projectprop_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.projectprop ADD CONSTRAINT projectprop_pkey PRIMARY KEY (projectprop_id); -- -- Name: pub pub_c1; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.pub ADD CONSTRAINT pub_c1 UNIQUE (uniquename); -- -- Name: pub_dbxref pub_dbxref_c1; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.pub_dbxref ADD CONSTRAINT pub_dbxref_c1 UNIQUE (pub_id, dbxref_id); -- -- Name: pub_dbxref pub_dbxref_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.pub_dbxref ADD CONSTRAINT pub_dbxref_pkey PRIMARY KEY (pub_dbxref_id); -- -- Name: pub pub_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.pub ADD CONSTRAINT pub_pkey PRIMARY KEY (pub_id); -- -- Name: pub_relationship pub_relationship_c1; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.pub_relationship ADD CONSTRAINT pub_relationship_c1 UNIQUE (subject_id, object_id, type_id); -- -- Name: pub_relationship pub_relationship_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.pub_relationship ADD CONSTRAINT pub_relationship_pkey PRIMARY KEY (pub_relationship_id); -- -- Name: pubabstract pubabstract_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.pubabstract ADD CONSTRAINT pubabstract_pkey PRIMARY KEY (pubabstract_id); -- -- Name: pubauthor pubauthor_c1; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.pubauthor ADD CONSTRAINT pubauthor_c1 UNIQUE (pub_id, rank); -- -- Name: pubauthor pubauthor_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.pubauthor ADD CONSTRAINT pubauthor_pkey PRIMARY KEY (pubauthor_id); -- -- Name: pubprop pubprop_c1; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.pubprop ADD CONSTRAINT pubprop_c1 UNIQUE (pub_id, type_id, rank); -- -- Name: pubprop pubprop_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.pubprop ADD CONSTRAINT pubprop_pkey PRIMARY KEY (pubprop_id); -- -- Name: resource_file resource_file_name_key; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.resource_file ADD CONSTRAINT resource_file_name_key UNIQUE (name); -- -- Name: resource_file resource_file_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.resource_file ADD CONSTRAINT resource_file_pkey PRIMARY KEY (resource_file_id); -- -- Name: stock stock_c1; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.stock ADD CONSTRAINT stock_c1 UNIQUE (organism_id, uniquename, type_id); -- -- Name: stock_cvterm stock_cvterm_c1; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.stock_cvterm ADD CONSTRAINT stock_cvterm_c1 UNIQUE (stock_id, cvterm_id, pub_id, rank); -- -- Name: stock_cvterm stock_cvterm_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.stock_cvterm ADD CONSTRAINT stock_cvterm_pkey PRIMARY KEY (stock_cvterm_id); -- -- Name: stock_cvtermprop stock_cvtermprop_c1; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.stock_cvtermprop ADD CONSTRAINT stock_cvtermprop_c1 UNIQUE (stock_cvterm_id, type_id, rank); -- -- Name: stock_cvtermprop stock_cvtermprop_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.stock_cvtermprop ADD CONSTRAINT stock_cvtermprop_pkey PRIMARY KEY (stock_cvtermprop_id); -- -- Name: stock_dbxref stock_dbxref_c1; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.stock_dbxref ADD CONSTRAINT stock_dbxref_c1 UNIQUE (stock_id, dbxref_id); -- -- Name: stock_dbxref stock_dbxref_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.stock_dbxref ADD CONSTRAINT stock_dbxref_pkey PRIMARY KEY (stock_dbxref_id); -- -- Name: stock_dbxrefprop stock_dbxrefprop_c1; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.stock_dbxrefprop ADD CONSTRAINT stock_dbxrefprop_c1 UNIQUE (stock_dbxref_id, type_id, rank); -- -- Name: stock_dbxrefprop stock_dbxrefprop_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.stock_dbxrefprop ADD CONSTRAINT stock_dbxrefprop_pkey PRIMARY KEY (stock_dbxrefprop_id); -- -- Name: stock_genotype stock_genotype_c1; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.stock_genotype ADD CONSTRAINT stock_genotype_c1 UNIQUE (stock_id, genotype_id); -- -- Name: stock_genotype stock_genotype_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.stock_genotype ADD CONSTRAINT stock_genotype_pkey PRIMARY KEY (stock_genotype_id); -- -- Name: stock stock_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.stock ADD CONSTRAINT stock_pkey PRIMARY KEY (stock_id); -- -- Name: stock_pub stock_pub_c1; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.stock_pub ADD CONSTRAINT stock_pub_c1 UNIQUE (stock_id, pub_id); -- -- Name: stock_pub stock_pub_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.stock_pub ADD CONSTRAINT stock_pub_pkey PRIMARY KEY (stock_pub_id); -- -- Name: stock_relationship stock_relationship_c1; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.stock_relationship ADD CONSTRAINT stock_relationship_c1 UNIQUE (subject_id, object_id, type_id, rank); -- -- Name: stock_relationship_cvterm stock_relationship_cvterm_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.stock_relationship_cvterm ADD CONSTRAINT stock_relationship_cvterm_pkey PRIMARY KEY (stock_relationship_cvterm_id); -- -- Name: stock_relationship stock_relationship_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.stock_relationship ADD CONSTRAINT stock_relationship_pkey PRIMARY KEY (stock_relationship_id); -- -- Name: stock_relationship_pub stock_relationship_pub_c1; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.stock_relationship_pub ADD CONSTRAINT stock_relationship_pub_c1 UNIQUE (stock_relationship_id, pub_id); -- -- Name: stock_relationship_pub stock_relationship_pub_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.stock_relationship_pub ADD CONSTRAINT stock_relationship_pub_pkey PRIMARY KEY (stock_relationship_pub_id); -- -- Name: stockcollection stockcollection_c1; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.stockcollection ADD CONSTRAINT stockcollection_c1 UNIQUE (uniquename, type_id); -- -- Name: stockcollection stockcollection_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.stockcollection ADD CONSTRAINT stockcollection_pkey PRIMARY KEY (stockcollection_id); -- -- Name: stockcollection_stock stockcollection_stock_c1; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.stockcollection_stock ADD CONSTRAINT stockcollection_stock_c1 UNIQUE (stockcollection_id, stock_id); -- -- Name: stockcollection_stock stockcollection_stock_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.stockcollection_stock ADD CONSTRAINT stockcollection_stock_pkey PRIMARY KEY (stockcollection_stock_id); -- -- Name: stockcollectionprop stockcollectionprop_c1; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.stockcollectionprop ADD CONSTRAINT stockcollectionprop_c1 UNIQUE (stockcollection_id, type_id, rank); -- -- Name: stockcollectionprop stockcollectionprop_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.stockcollectionprop ADD CONSTRAINT stockcollectionprop_pkey PRIMARY KEY (stockcollectionprop_id); -- -- Name: stockprop stockprop_c1; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.stockprop ADD CONSTRAINT stockprop_c1 UNIQUE (stock_id, type_id, rank); -- -- Name: stockprop stockprop_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.stockprop ADD CONSTRAINT stockprop_pkey PRIMARY KEY (stockprop_id); -- -- Name: stockprop_pub stockprop_pub_c1; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.stockprop_pub ADD CONSTRAINT stockprop_pub_c1 UNIQUE (stockprop_id, pub_id); -- -- Name: stockprop_pub stockprop_pub_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.stockprop_pub ADD CONSTRAINT stockprop_pub_pkey PRIMARY KEY (stockprop_pub_id); -- -- Name: synonym synonym_c1; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.synonym ADD CONSTRAINT synonym_c1 UNIQUE (name, type_id); -- -- Name: synonym synonym_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.synonym ADD CONSTRAINT synonym_pkey PRIMARY KEY (synonym_id); -- -- Name: tableinfo tableinfo_c1; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.tableinfo ADD CONSTRAINT tableinfo_c1 UNIQUE (name); -- -- Name: tableinfo tableinfo_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.tableinfo ADD CONSTRAINT tableinfo_pkey PRIMARY KEY (tableinfo_id); -- -- Name: tmp_cds_handler tmp_cds_handler_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.tmp_cds_handler ADD CONSTRAINT tmp_cds_handler_pkey PRIMARY KEY (cds_row_id); -- -- Name: tmp_cds_handler_relationship tmp_cds_handler_relationship_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.tmp_cds_handler_relationship ADD CONSTRAINT tmp_cds_handler_relationship_pkey PRIMARY KEY (rel_row_id); -- -- Name: unigene_dbxref unigene_dbxref_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.unigene_dbxref ADD CONSTRAINT unigene_dbxref_pkey PRIMARY KEY (unigene_dbxref_id); -- -- Name: unigene_relations unigene_relations_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.unigene_relations ADD CONSTRAINT unigene_relations_pkey PRIMARY KEY (unigene_id); -- -- Name: unigene_signalp unigene_signalp_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.unigene_signalp ADD CONSTRAINT unigene_signalp_pkey PRIMARY KEY (unigene_id); -- -- Name: accession_names accession_names_pkey; Type: CONSTRAINT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.accession_names ADD CONSTRAINT accession_names_pkey PRIMARY KEY (accession_name_id); -- -- Name: accession accession_pkey; Type: CONSTRAINT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.accession ADD CONSTRAINT accession_pkey PRIMARY KEY (accession_id); -- -- Name: annotation_target_type annotation_target_type_pkey; Type: CONSTRAINT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.annotation_target_type ADD CONSTRAINT annotation_target_type_pkey PRIMARY KEY (annotation_target_type_id); -- -- Name: authors authors_pkey; Type: CONSTRAINT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.authors ADD CONSTRAINT authors_pkey PRIMARY KEY (author_id); -- -- Name: blast_annotations blast_annotations_apply_id_blast_target_id_uq; Type: CONSTRAINT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.blast_annotations ADD CONSTRAINT blast_annotations_apply_id_blast_target_id_uq UNIQUE (apply_id, blast_target_id); -- -- Name: blast_annotations blast_annotations_pkey; Type: CONSTRAINT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.blast_annotations ADD CONSTRAINT blast_annotations_pkey PRIMARY KEY (blast_annotation_id); -- -- Name: blast_db_blast_db_group blast_db_blast_db_group_pkey; Type: CONSTRAINT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.blast_db_blast_db_group ADD CONSTRAINT blast_db_blast_db_group_pkey PRIMARY KEY (blast_db_blast_db_group_id); -- -- Name: blast_db blast_db_file_base_key; Type: CONSTRAINT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.blast_db ADD CONSTRAINT blast_db_file_base_key UNIQUE (file_base); -- -- Name: blast_db_group blast_db_group_pkey; Type: CONSTRAINT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.blast_db_group ADD CONSTRAINT blast_db_group_pkey PRIMARY KEY (blast_db_group_id); -- -- Name: blast_db_organism blast_db_organism_pkey; Type: CONSTRAINT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.blast_db_organism ADD CONSTRAINT blast_db_organism_pkey PRIMARY KEY (blast_db_organism_id); -- -- Name: blast_db blast_db_pkey; Type: CONSTRAINT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.blast_db ADD CONSTRAINT blast_db_pkey PRIMARY KEY (blast_db_id); -- -- Name: blast_defline blast_defline_pkey; Type: CONSTRAINT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.blast_defline ADD CONSTRAINT blast_defline_pkey PRIMARY KEY (defline_id); -- -- Name: blast_hits blast_hits_pkey; Type: CONSTRAINT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.blast_hits ADD CONSTRAINT blast_hits_pkey PRIMARY KEY (blast_hit_id); -- -- Name: blast_targets blast_targets_pkey; Type: CONSTRAINT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.blast_targets ADD CONSTRAINT blast_targets_pkey PRIMARY KEY (blast_target_id); -- -- Name: cds cds_pkey; Type: CONSTRAINT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.cds ADD CONSTRAINT cds_pkey PRIMARY KEY (cds_id); -- -- Name: chadoprop chadoprop_c1; Type: CONSTRAINT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.chadoprop ADD CONSTRAINT chadoprop_c1 UNIQUE (type_id, rank); -- -- Name: chadoprop chadoprop_pkey; Type: CONSTRAINT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.chadoprop ADD CONSTRAINT chadoprop_pkey PRIMARY KEY (chadoprop_id); -- -- Name: clone clone_name_library_id_unique; Type: CONSTRAINT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.clone ADD CONSTRAINT clone_name_library_id_unique UNIQUE (clone_name, library_id); -- -- Name: clone clone_pkey; Type: CONSTRAINT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.clone ADD CONSTRAINT clone_pkey PRIMARY KEY (clone_id); -- -- Name: cloning_vector cloning_vector_name_key; Type: CONSTRAINT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.cloning_vector ADD CONSTRAINT cloning_vector_name_key UNIQUE (name); -- -- Name: cloning_vector cloning_vector_pkey; Type: CONSTRAINT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.cloning_vector ADD CONSTRAINT cloning_vector_pkey PRIMARY KEY (cloning_vector_id); -- -- Name: common_name common_name_pkey; Type: CONSTRAINT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.common_name ADD CONSTRAINT common_name_pkey PRIMARY KEY (common_name_id); -- -- Name: common_name common_name_unique; Type: CONSTRAINT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.common_name ADD CONSTRAINT common_name_unique UNIQUE (common_name); -- -- Name: common_nameprop common_nameprop_pkey; Type: CONSTRAINT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.common_nameprop ADD CONSTRAINT common_nameprop_pkey PRIMARY KEY (common_nameprop_id); -- -- Name: cos_markers cos_markers_pkey; Type: CONSTRAINT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.cos_markers ADD CONSTRAINT cos_markers_pkey PRIMARY KEY (cos_marker_id); -- -- Name: cosii_ortholog cosii_ortholog_pkey; Type: CONSTRAINT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.cosii_ortholog ADD CONSTRAINT cosii_ortholog_pkey PRIMARY KEY (cosii_unigene_id); -- -- Name: derived_from_source derived_from_source_pkey; Type: CONSTRAINT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.derived_from_source ADD CONSTRAINT derived_from_source_pkey PRIMARY KEY (derived_from_source_id); -- -- Name: derived_from_source derived_from_source_source_schema_key; Type: CONSTRAINT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.derived_from_source ADD CONSTRAINT derived_from_source_source_schema_key UNIQUE (source_schema, source_table, source_col); -- -- Name: domain_match domain_match_pkey; Type: CONSTRAINT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.domain_match ADD CONSTRAINT domain_match_pkey PRIMARY KEY (domain_match_id); -- -- Name: domain domain_pkey; Type: CONSTRAINT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.domain ADD CONSTRAINT domain_pkey PRIMARY KEY (domain_id); -- -- Name: enzyme_restriction_sites enzyme_restriction_sites_pkey; Type: CONSTRAINT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.enzyme_restriction_sites ADD CONSTRAINT enzyme_restriction_sites_pkey PRIMARY KEY (enzyme_restriction_sites_id); -- -- Name: enzymes enzymes_enzyme_name_key; Type: CONSTRAINT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.enzymes ADD CONSTRAINT enzymes_enzyme_name_key UNIQUE (enzyme_name); -- -- Name: enzymes enzymes_pkey; Type: CONSTRAINT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.enzymes ADD CONSTRAINT enzymes_pkey PRIMARY KEY (enzyme_id); -- -- Name: est_dbxref est_dbxref_est_id_key; Type: CONSTRAINT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.est_dbxref ADD CONSTRAINT est_dbxref_est_id_key UNIQUE (est_id, dbxref_id); -- -- Name: est_dbxref est_dbxref_pkey; Type: CONSTRAINT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.est_dbxref ADD CONSTRAINT est_dbxref_pkey PRIMARY KEY (est_dbxref_id); -- -- Name: est est_pkey; Type: CONSTRAINT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.est ADD CONSTRAINT est_pkey PRIMARY KEY (est_id); -- -- Name: ests_mapped_by_clone ests_mapped_by_clone_pkey; Type: CONSTRAINT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.ests_mapped_by_clone ADD CONSTRAINT ests_mapped_by_clone_pkey PRIMARY KEY (embc_id); -- -- Name: experiment_type experiment_type_pkey; Type: CONSTRAINT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.experiment_type ADD CONSTRAINT experiment_type_pkey PRIMARY KEY (experiment_type_id); -- -- Name: facility facility_pkey; Type: CONSTRAINT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.facility ADD CONSTRAINT facility_pkey PRIMARY KEY (facility_id); -- -- Name: family_build family_build_pkey; Type: CONSTRAINT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.family_build ADD CONSTRAINT family_build_pkey PRIMARY KEY (family_build_id); -- -- Name: family_member family_member_pkey; Type: CONSTRAINT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.family_member ADD CONSTRAINT family_member_pkey PRIMARY KEY (family_member_id); -- -- Name: family family_pkey; Type: CONSTRAINT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.family ADD CONSTRAINT family_pkey PRIMARY KEY (family_id); -- -- Name: family_tree family_tree_pkey; Type: CONSTRAINT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.family_tree ADD CONSTRAINT family_tree_pkey PRIMARY KEY (family_tree_id); -- -- Name: fish_chromatin_density_constants fish_chromatin_density_constants_pkey; Type: CONSTRAINT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.fish_chromatin_density_constants ADD CONSTRAINT fish_chromatin_density_constants_pkey PRIMARY KEY (arm); -- -- Name: fish_experimenter fish_experimenter_pkey; Type: CONSTRAINT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.fish_experimenter ADD CONSTRAINT fish_experimenter_pkey PRIMARY KEY (fish_experimenter_id); -- -- Name: fish_experimenter fish_expermenter_name_uniq; Type: CONSTRAINT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.fish_experimenter ADD CONSTRAINT fish_expermenter_name_uniq UNIQUE (fish_experimenter_name); -- -- Name: fish_file fish_file_pkey; Type: CONSTRAINT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.fish_file ADD CONSTRAINT fish_file_pkey PRIMARY KEY (fish_file_id); -- -- Name: fish_image fish_image_pkey; Type: CONSTRAINT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.fish_image ADD CONSTRAINT fish_image_pkey PRIMARY KEY (fish_image_id); -- -- Name: fish_karyotype_constants_old fish_karyotype_constants_pkey; Type: CONSTRAINT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.fish_karyotype_constants_old ADD CONSTRAINT fish_karyotype_constants_pkey PRIMARY KEY (chromo_num); -- -- Name: fish_karyotype_constants fish_karyotype_constants_pkey1; Type: CONSTRAINT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.fish_karyotype_constants ADD CONSTRAINT fish_karyotype_constants_pkey1 PRIMARY KEY (fish_experimenter_id, chromo_num, chromo_arm); -- -- Name: fish_result_composite fish_result_composite_pkey; Type: CONSTRAINT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.fish_result_composite ADD CONSTRAINT fish_result_composite_pkey PRIMARY KEY (fish_result_id); -- -- Name: fish_result fish_result_fish_experimenter_clone_id_experiment_name; Type: CONSTRAINT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.fish_result ADD CONSTRAINT fish_result_fish_experimenter_clone_id_experiment_name UNIQUE (fish_experimenter_id, clone_id, experiment_name); -- -- Name: fish_result_image fish_result_image_pkey; Type: CONSTRAINT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.fish_result_image ADD CONSTRAINT fish_result_image_pkey PRIMARY KEY (fish_result_image_id); -- -- Name: fish_result fish_result_pkey; Type: CONSTRAINT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.fish_result ADD CONSTRAINT fish_result_pkey PRIMARY KEY (fish_result_id); -- -- Name: go go_go_accession_key; Type: CONSTRAINT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.go ADD CONSTRAINT go_go_accession_key UNIQUE (go_accession); -- -- Name: go go_pkey; Type: CONSTRAINT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.go ADD CONSTRAINT go_pkey PRIMARY KEY (go_id); -- -- Name: group_linkage group_linkage_pkey; Type: CONSTRAINT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.group_linkage ADD CONSTRAINT group_linkage_pkey PRIMARY KEY (group_linkage_id); -- -- Name: groups groups_pkey; Type: CONSTRAINT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.groups ADD CONSTRAINT groups_pkey PRIMARY KEY (group_id); -- -- Name: id_linkage id_linkage_pkey; Type: CONSTRAINT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.id_linkage ADD CONSTRAINT id_linkage_pkey PRIMARY KEY (id_linkage_id); -- -- Name: interpro_go interpro_go_pkey; Type: CONSTRAINT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.interpro_go ADD CONSTRAINT interpro_go_pkey PRIMARY KEY (interpro_go_id); -- -- Name: interpro interpro_interpro_accession_key; Type: CONSTRAINT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.interpro ADD CONSTRAINT interpro_interpro_accession_key UNIQUE (interpro_accession); -- -- Name: interpro interpro_pkey; Type: CONSTRAINT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.interpro ADD CONSTRAINT interpro_pkey PRIMARY KEY (interpro_id); -- -- Name: deprecated_marker_confidences legacy_conf_id_unique; Type: CONSTRAINT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.deprecated_marker_confidences ADD CONSTRAINT legacy_conf_id_unique UNIQUE (legacy_conf_id); -- -- Name: clone library_id_clone_name_key; Type: CONSTRAINT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.clone ADD CONSTRAINT library_id_clone_name_key UNIQUE (library_id, clone_name); -- -- Name: library library_pkey; Type: CONSTRAINT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.library ADD CONSTRAINT library_pkey PRIMARY KEY (library_id); -- -- Name: library library_shortname_idx; Type: CONSTRAINT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.library ADD CONSTRAINT library_shortname_idx UNIQUE (library_shortname); -- -- Name: linkage_group linkage_group_map_version_id_key; Type: CONSTRAINT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.linkage_group ADD CONSTRAINT linkage_group_map_version_id_key UNIQUE (map_version_id, lg_order); -- -- Name: linkage_group linkage_group_map_version_id_key1; Type: CONSTRAINT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.linkage_group ADD CONSTRAINT linkage_group_map_version_id_key1 UNIQUE (map_version_id, lg_name); -- -- Name: linkage_group linkage_group_pkey; Type: CONSTRAINT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.linkage_group ADD CONSTRAINT linkage_group_pkey PRIMARY KEY (lg_id); -- -- Name: deprecated_linkage_groups linkage_groups_pkey; Type: CONSTRAINT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.deprecated_linkage_groups ADD CONSTRAINT linkage_groups_pkey PRIMARY KEY (lg_id); -- -- Name: loc_types loc_types_pkey; Type: CONSTRAINT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.loc_types ADD CONSTRAINT loc_types_pkey PRIMARY KEY (loc_type_id); -- -- Name: manual_annotations manual_annotations_pkey; Type: CONSTRAINT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.manual_annotations ADD CONSTRAINT manual_annotations_pkey PRIMARY KEY (manual_annotations_id); -- -- Name: manual_censor_reasons manual_censor_reasons_pkey; Type: CONSTRAINT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.manual_censor_reasons ADD CONSTRAINT manual_censor_reasons_pkey PRIMARY KEY (censor_id); -- -- Name: deprecated_map_cross map_cross_pkey; Type: CONSTRAINT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.deprecated_map_cross ADD CONSTRAINT map_cross_pkey PRIMARY KEY (map_cross_id); -- -- Name: map map_pkey; Type: CONSTRAINT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.map ADD CONSTRAINT map_pkey PRIMARY KEY (map_id); -- -- Name: map_version map_version_pkey; Type: CONSTRAINT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.map_version ADD CONSTRAINT map_version_pkey PRIMARY KEY (map_version_id); -- -- Name: deprecated_mapdata mapdata_pkey; Type: CONSTRAINT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.deprecated_mapdata ADD CONSTRAINT mapdata_pkey PRIMARY KEY (loc_id); -- -- Name: deprecated_maps maps_pkey; Type: CONSTRAINT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.deprecated_maps ADD CONSTRAINT maps_pkey PRIMARY KEY (map_id); -- -- Name: marker_alias marker_alias_alias_key; Type: CONSTRAINT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.marker_alias ADD CONSTRAINT marker_alias_alias_key UNIQUE (alias); -- -- Name: marker_alias marker_alias_pkey; Type: CONSTRAINT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.marker_alias ADD CONSTRAINT marker_alias_pkey PRIMARY KEY (alias_id); -- -- Name: marker_collectible marker_collectible_marker_id_key; Type: CONSTRAINT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.marker_collectible ADD CONSTRAINT marker_collectible_marker_id_key UNIQUE (marker_id, mc_id); -- -- Name: marker_collectible marker_collectible_pkey; Type: CONSTRAINT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.marker_collectible ADD CONSTRAINT marker_collectible_pkey PRIMARY KEY (marker_collectible_dummy_id); -- -- Name: marker_collection marker_collection_mc_name_key; Type: CONSTRAINT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.marker_collection ADD CONSTRAINT marker_collection_mc_name_key UNIQUE (mc_name); -- -- Name: marker_collection marker_collection_pkey; Type: CONSTRAINT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.marker_collection ADD CONSTRAINT marker_collection_pkey PRIMARY KEY (mc_id); -- -- Name: marker_confidence marker_confidence_confidence_name_key; Type: CONSTRAINT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.marker_confidence ADD CONSTRAINT marker_confidence_confidence_name_key UNIQUE (confidence_name); -- -- Name: marker_confidence marker_confidence_pkey; Type: CONSTRAINT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.marker_confidence ADD CONSTRAINT marker_confidence_pkey PRIMARY KEY (confidence_id); -- -- Name: deprecated_marker_confidences marker_confidences_pkey; Type: CONSTRAINT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.deprecated_marker_confidences ADD CONSTRAINT marker_confidences_pkey PRIMARY KEY (confidence_id); -- -- Name: marker_derived_from marker_derived_from_pkey; Type: CONSTRAINT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.marker_derived_from ADD CONSTRAINT marker_derived_from_pkey PRIMARY KEY (marker_derived_dummy_id); -- -- Name: marker_experiment marker_experiment_pcr_experiment_id_key; Type: CONSTRAINT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.marker_experiment ADD CONSTRAINT marker_experiment_pcr_experiment_id_key UNIQUE (pcr_experiment_id, rflp_experiment_id, location_id); -- -- Name: marker_experiment marker_experiment_pkey; Type: CONSTRAINT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.marker_experiment ADD CONSTRAINT marker_experiment_pkey PRIMARY KEY (marker_experiment_id); -- -- Name: marker_location marker_location_pkey; Type: CONSTRAINT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.marker_location ADD CONSTRAINT marker_location_pkey PRIMARY KEY (location_id); -- -- Name: deprecated_marker_locations marker_locations_pkey; Type: CONSTRAINT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.deprecated_marker_locations ADD CONSTRAINT marker_locations_pkey PRIMARY KEY (marker_location_id); -- -- Name: marker marker_pkey; Type: CONSTRAINT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.marker ADD CONSTRAINT marker_pkey PRIMARY KEY (marker_id); -- -- Name: deprecated_marker_types marker_types_pkey; Type: CONSTRAINT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.deprecated_marker_types ADD CONSTRAINT marker_types_pkey PRIMARY KEY (marker_type_id); -- -- Name: deprecated_markers markers_pkey; Type: CONSTRAINT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.deprecated_markers ADD CONSTRAINT markers_pkey PRIMARY KEY (marker_id); -- -- Name: metadata metadata_pkey; Type: CONSTRAINT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.metadata ADD CONSTRAINT metadata_pkey PRIMARY KEY (metadata_id); -- -- Name: microarray microarray_pkey; Type: CONSTRAINT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.microarray ADD CONSTRAINT microarray_pkey PRIMARY KEY (microarray_id); -- -- Name: misc misc_pkey; Type: CONSTRAINT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.misc ADD CONSTRAINT misc_pkey PRIMARY KEY (misc_unique_id); -- -- Name: organism organism_pkey; Type: CONSTRAINT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.organism ADD CONSTRAINT organism_pkey PRIMARY KEY (organism_id); -- -- Name: organismgroup_member organismgroup_member_pkey; Type: CONSTRAINT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.organismgroup_member ADD CONSTRAINT organismgroup_member_pkey PRIMARY KEY (organismgroup_member_id); -- -- Name: organismgroup organismgroup_pkey; Type: CONSTRAINT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.organismgroup ADD CONSTRAINT organismgroup_pkey PRIMARY KEY (organismgroup_id); -- -- Name: p_markers p_markers_pkey; Type: CONSTRAINT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.p_markers ADD CONSTRAINT p_markers_pkey PRIMARY KEY (pid); -- -- Name: pcr_exp_accession pcr_exp_accession_pkey; Type: CONSTRAINT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.pcr_exp_accession ADD CONSTRAINT pcr_exp_accession_pkey PRIMARY KEY (pcr_exp_accession_id); -- -- Name: pcr_experiment pcr_experiment_pkey; Type: CONSTRAINT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.pcr_experiment ADD CONSTRAINT pcr_experiment_pkey PRIMARY KEY (pcr_experiment_id); -- -- Name: pcr_experiment_sequence pcr_experiment_sequence_pkey; Type: CONSTRAINT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.pcr_experiment_sequence ADD CONSTRAINT pcr_experiment_sequence_pkey PRIMARY KEY (pcr_experiment_sequence_id); -- -- Name: pcr_product pcr_product_pkey; Type: CONSTRAINT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.pcr_product ADD CONSTRAINT pcr_product_pkey PRIMARY KEY (pcr_product_id); -- -- Name: primer_unigene_match primer_unigene_match_pkey; Type: CONSTRAINT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.primer_unigene_match ADD CONSTRAINT primer_unigene_match_pkey PRIMARY KEY (primer_unigene_match_id); -- -- Name: qc_report qc_report_est_id_key; Type: CONSTRAINT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.qc_report ADD CONSTRAINT qc_report_est_id_key UNIQUE (est_id); -- -- Name: qc_report qc_report_pkey; Type: CONSTRAINT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.qc_report ADD CONSTRAINT qc_report_pkey PRIMARY KEY (qc_id); -- -- Name: rflp_markers rflp_markers_pkey; Type: CONSTRAINT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.rflp_markers ADD CONSTRAINT rflp_markers_pkey PRIMARY KEY (rflp_id); -- -- Name: rflp_sequences rflp_sequences_pkey; Type: CONSTRAINT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.rflp_sequences ADD CONSTRAINT rflp_sequences_pkey PRIMARY KEY (seq_id); -- -- Name: rflp_unigene_associations rflp_unigene_associations_pkey; Type: CONSTRAINT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.rflp_unigene_associations ADD CONSTRAINT rflp_unigene_associations_pkey PRIMARY KEY (rflp_unigene_assoc_id); -- -- Name: seqread seqread_pkey; Type: CONSTRAINT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.seqread ADD CONSTRAINT seqread_pkey PRIMARY KEY (read_id); -- -- Name: sequence sequence_pkey; Type: CONSTRAINT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.sequence ADD CONSTRAINT sequence_pkey PRIMARY KEY (sequence_id); -- -- Name: sequence sequence_unique; Type: CONSTRAINT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.sequence ADD CONSTRAINT sequence_unique UNIQUE (sequence); -- -- Name: snp_file snp_file_pkey; Type: CONSTRAINT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.snp_file ADD CONSTRAINT snp_file_pkey PRIMARY KEY (snp_file_id); -- -- Name: snp snp_pkey; Type: CONSTRAINT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.snp ADD CONSTRAINT snp_pkey PRIMARY KEY (snp_id); -- -- Name: snpprop snpprop_pkey; Type: CONSTRAINT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.snpprop ADD CONSTRAINT snpprop_pkey PRIMARY KEY (snpprop_id); -- -- Name: ssr ssr_pkey; Type: CONSTRAINT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.ssr ADD CONSTRAINT ssr_pkey PRIMARY KEY (ssr_id); -- -- Name: ssr_primer_unigene_matches ssr_primer_unigene_matches_pkey; Type: CONSTRAINT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.ssr_primer_unigene_matches ADD CONSTRAINT ssr_primer_unigene_matches_pkey PRIMARY KEY (ssr_primer_unigene_match_id); -- -- Name: ssr_repeats ssr_repeats_pkey; Type: CONSTRAINT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.ssr_repeats ADD CONSTRAINT ssr_repeats_pkey PRIMARY KEY (repeat_id); -- -- Name: submit_user submit_user_pkey; Type: CONSTRAINT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.submit_user ADD CONSTRAINT submit_user_pkey PRIMARY KEY (submit_user_id); -- -- Name: taxonomy taxonomy_pkey; Type: CONSTRAINT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.taxonomy ADD CONSTRAINT taxonomy_pkey PRIMARY KEY (tax_id); -- -- Name: temp_caps_correspondence temp_caps_correspondence_pkey; Type: CONSTRAINT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.temp_caps_correspondence ADD CONSTRAINT temp_caps_correspondence_pkey PRIMARY KEY (tcc_id); -- -- Name: temp_map_correspondence temp_map_correspondence_pkey; Type: CONSTRAINT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.temp_map_correspondence ADD CONSTRAINT temp_map_correspondence_pkey PRIMARY KEY (tmc_id); -- -- Name: temp_marker_correspondence temp_marker_correspondence_pkey; Type: CONSTRAINT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.temp_marker_correspondence ADD CONSTRAINT temp_marker_correspondence_pkey PRIMARY KEY (tmc_id); -- -- Name: tigrtc_index tigrtc_index_pkey; Type: CONSTRAINT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.tigrtc_index ADD CONSTRAINT tigrtc_index_pkey PRIMARY KEY (tcindex_id); -- -- Name: tigrtc_membership tigrtc_membership_pkey; Type: CONSTRAINT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.tigrtc_membership ADD CONSTRAINT tigrtc_membership_pkey PRIMARY KEY (tigrtc_membership_id); -- -- Name: tigrtc_tracking tigrtc_tracking_pkey; Type: CONSTRAINT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.tigrtc_tracking ADD CONSTRAINT tigrtc_tracking_pkey PRIMARY KEY (tigrtc_tracking_id); -- -- Name: tm_markers tm_markers_pkey; Type: CONSTRAINT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.tm_markers ADD CONSTRAINT tm_markers_pkey PRIMARY KEY (tm_id); -- -- Name: tm_markers_sequences tm_markers_sequences_pkey; Type: CONSTRAINT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.tm_markers_sequences ADD CONSTRAINT tm_markers_sequences_pkey PRIMARY KEY (tm_marker_seq_id); -- -- Name: trim_feature trim_feature_pkey; Type: CONSTRAINT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.trim_feature ADD CONSTRAINT trim_feature_pkey PRIMARY KEY (feature_id); -- -- Name: trim_feature_types trim_feature_types_pkey; Type: CONSTRAINT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.trim_feature_types ADD CONSTRAINT trim_feature_types_pkey PRIMARY KEY (trim_type_id); -- -- Name: types types_pkey; Type: CONSTRAINT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.types ADD CONSTRAINT types_pkey PRIMARY KEY (type_id); -- -- Name: unigene_build unigene_build_pkey; Type: CONSTRAINT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.unigene_build ADD CONSTRAINT unigene_build_pkey PRIMARY KEY (unigene_build_id); -- -- Name: unigene_consensi unigene_consensi_pkey; Type: CONSTRAINT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.unigene_consensi ADD CONSTRAINT unigene_consensi_pkey PRIMARY KEY (consensi_id); -- -- Name: unigene_member unigene_member_pkey; Type: CONSTRAINT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.unigene_member ADD CONSTRAINT unigene_member_pkey PRIMARY KEY (unigene_member_id); -- -- Name: unigene unigene_pkey; Type: CONSTRAINT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.unigene ADD CONSTRAINT unigene_pkey PRIMARY KEY (unigene_id); -- -- Name: pcr_product unique_acc_enz_mult_pred_size; Type: CONSTRAINT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.pcr_product ADD CONSTRAINT unique_acc_enz_mult_pred_size UNIQUE (pcr_exp_accession_id, enzyme_id, multiple_flag, band_size, predicted); -- -- Name: accession unique_accession_name; Type: CONSTRAINT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.accession ADD CONSTRAINT unique_accession_name UNIQUE (accession_name_id); -- -- Name: organism unique_organism_name; Type: CONSTRAINT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.organism ADD CONSTRAINT unique_organism_name UNIQUE (organism_name); -- -- Name: bac_status bac_id_key; Type: CONSTRAINT; Schema: sgn_people; Owner: postgres -- ALTER TABLE ONLY sgn_people.bac_status ADD CONSTRAINT bac_id_key UNIQUE (bac_id); -- -- Name: bac_status_log bac_status_log_id_key; Type: CONSTRAINT; Schema: sgn_people; Owner: postgres -- ALTER TABLE ONLY sgn_people.bac_status_log ADD CONSTRAINT bac_status_log_id_key PRIMARY KEY (bac_status_log_id); -- -- Name: bac_status bac_status_pkey; Type: CONSTRAINT; Schema: sgn_people; Owner: postgres -- ALTER TABLE ONLY sgn_people.bac_status ADD CONSTRAINT bac_status_pkey PRIMARY KEY (bac_status_id); -- -- Name: clone_il_mapping_bin_log clone_il_mapping_bin_log_pkey; Type: CONSTRAINT; Schema: sgn_people; Owner: postgres -- ALTER TABLE ONLY sgn_people.clone_il_mapping_bin_log ADD CONSTRAINT clone_il_mapping_bin_log_pkey PRIMARY KEY (sp_clone_il_mapping_bin_log_id); -- -- Name: sp_person cookie_string_unique; Type: CONSTRAINT; Schema: sgn_people; Owner: postgres -- ALTER TABLE ONLY sgn_people.sp_person ADD CONSTRAINT cookie_string_unique UNIQUE (cookie_string); -- -- Name: sp_person cookie_unique; Type: CONSTRAINT; Schema: sgn_people; Owner: postgres -- ALTER TABLE ONLY sgn_people.sp_person ADD CONSTRAINT cookie_unique UNIQUE (cookie_string); -- -- Name: forum_post forum_post_pkey; Type: CONSTRAINT; Schema: sgn_people; Owner: postgres -- ALTER TABLE ONLY sgn_people.forum_post ADD CONSTRAINT forum_post_pkey PRIMARY KEY (forum_post_id); -- -- Name: forum_topic forum_topic_pkey; Type: CONSTRAINT; Schema: sgn_people; Owner: postgres -- ALTER TABLE ONLY sgn_people.forum_topic ADD CONSTRAINT forum_topic_pkey PRIMARY KEY (forum_topic_id); -- -- Name: list_item list_item_pkey; Type: CONSTRAINT; Schema: sgn_people; Owner: postgres -- ALTER TABLE ONLY sgn_people.list_item ADD CONSTRAINT list_item_pkey PRIMARY KEY (list_item_id); -- -- Name: list list_pkey; Type: CONSTRAINT; Schema: sgn_people; Owner: postgres -- ALTER TABLE ONLY sgn_people.list ADD CONSTRAINT list_pkey PRIMARY KEY (list_id); -- -- Name: sp_dataset sp_dataset_pkey; Type: CONSTRAINT; Schema: sgn_people; Owner: postgres -- ALTER TABLE ONLY sgn_people.sp_dataset ADD CONSTRAINT sp_dataset_pkey PRIMARY KEY (sp_dataset_id); -- -- Name: sp_group sp_group_name_key; Type: CONSTRAINT; Schema: sgn_people; Owner: postgres -- ALTER TABLE ONLY sgn_people.sp_group ADD CONSTRAINT sp_group_name_key UNIQUE (name); -- -- Name: sp_group sp_group_pkey; Type: CONSTRAINT; Schema: sgn_people; Owner: postgres -- ALTER TABLE ONLY sgn_people.sp_group ADD CONSTRAINT sp_group_pkey PRIMARY KEY (sp_group_id); -- -- Name: sp_login_old sp_login_pkey; Type: CONSTRAINT; Schema: sgn_people; Owner: postgres -- ALTER TABLE ONLY sgn_people.sp_login_old ADD CONSTRAINT sp_login_pkey PRIMARY KEY (sp_login_id); -- -- Name: sp_organisms sp_organisms_pkey; Type: CONSTRAINT; Schema: sgn_people; Owner: postgres -- ALTER TABLE ONLY sgn_people.sp_organisms ADD CONSTRAINT sp_organisms_pkey PRIMARY KEY (organism_id); -- -- Name: sp_organization_person sp_organization_person_pkey; Type: CONSTRAINT; Schema: sgn_people; Owner: postgres -- ALTER TABLE ONLY sgn_people.sp_organization_person ADD CONSTRAINT sp_organization_person_pkey PRIMARY KEY (sp_organization_person_id); -- -- Name: sp_organization sp_organization_pkey; Type: CONSTRAINT; Schema: sgn_people; Owner: postgres -- ALTER TABLE ONLY sgn_people.sp_organization ADD CONSTRAINT sp_organization_pkey PRIMARY KEY (sp_organization_id); -- -- Name: sp_papers sp_papers_pkey; Type: CONSTRAINT; Schema: sgn_people; Owner: postgres -- ALTER TABLE ONLY sgn_people.sp_papers ADD CONSTRAINT sp_papers_pkey PRIMARY KEY (sp_paper_id); -- -- Name: sp_person_organisms sp_person_organisms_pkey; Type: CONSTRAINT; Schema: sgn_people; Owner: postgres -- ALTER TABLE ONLY sgn_people.sp_person_organisms ADD CONSTRAINT sp_person_organisms_pkey PRIMARY KEY (sp_person_organisms_id); -- -- Name: sp_person sp_person_pkey; Type: CONSTRAINT; Schema: sgn_people; Owner: postgres -- ALTER TABLE ONLY sgn_people.sp_person ADD CONSTRAINT sp_person_pkey PRIMARY KEY (sp_person_id); -- -- Name: sp_person_roles sp_person_roles_pkey; Type: CONSTRAINT; Schema: sgn_people; Owner: postgres -- ALTER TABLE ONLY sgn_people.sp_person_roles ADD CONSTRAINT sp_person_roles_pkey PRIMARY KEY (sp_person_role_id); -- -- Name: sp_person sp_person_username_key; Type: CONSTRAINT; Schema: sgn_people; Owner: postgres -- ALTER TABLE ONLY sgn_people.sp_person ADD CONSTRAINT sp_person_username_key UNIQUE (username); -- -- Name: sp_project_organization sp_project_organization_pkey; Type: CONSTRAINT; Schema: sgn_people; Owner: postgres -- ALTER TABLE ONLY sgn_people.sp_project_organization ADD CONSTRAINT sp_project_organization_pkey PRIMARY KEY (sp_project_organization_id); -- -- Name: sp_project_person sp_project_person_pkey; Type: CONSTRAINT; Schema: sgn_people; Owner: postgres -- ALTER TABLE ONLY sgn_people.sp_project_person ADD CONSTRAINT sp_project_person_pkey PRIMARY KEY (sp_project_person_id); -- -- Name: sp_project sp_project_pkey; Type: CONSTRAINT; Schema: sgn_people; Owner: postgres -- ALTER TABLE ONLY sgn_people.sp_project ADD CONSTRAINT sp_project_pkey PRIMARY KEY (sp_project_id); -- -- Name: sp_roles sp_roles_pkey; Type: CONSTRAINT; Schema: sgn_people; Owner: postgres -- ALTER TABLE ONLY sgn_people.sp_roles ADD CONSTRAINT sp_roles_pkey PRIMARY KEY (sp_role_id); -- -- Name: user_map_data user_map_data_pkey; Type: CONSTRAINT; Schema: sgn_people; Owner: postgres -- ALTER TABLE ONLY sgn_people.user_map_data ADD CONSTRAINT user_map_data_pkey PRIMARY KEY (user_map_data_id); -- -- Name: user_map user_map_pkey; Type: CONSTRAINT; Schema: sgn_people; Owner: postgres -- ALTER TABLE ONLY sgn_people.user_map ADD CONSTRAINT user_map_pkey PRIMARY KEY (user_map_id); -- -- Name: sp_login_old username_unique; Type: CONSTRAINT; Schema: sgn_people; Owner: postgres -- ALTER TABLE ONLY sgn_people.sp_login_old ADD CONSTRAINT username_unique UNIQUE (username); -- -- Name: facility facility_pkey; Type: CONSTRAINT; Schema: sgn_submit; Owner: postgres -- ALTER TABLE ONLY sgn_submit.facility ADD CONSTRAINT facility_pkey PRIMARY KEY (facility_id); -- -- Name: library library_pkey; Type: CONSTRAINT; Schema: sgn_submit; Owner: postgres -- ALTER TABLE ONLY sgn_submit.library ADD CONSTRAINT library_pkey PRIMARY KEY (library_id); -- -- Name: seqread read_id_key; Type: CONSTRAINT; Schema: sgn_submit; Owner: postgres -- ALTER TABLE ONLY sgn_submit.seqread ADD CONSTRAINT read_id_key UNIQUE (read_id); -- -- Name: seqread seqread_pkey; Type: CONSTRAINT; Schema: sgn_submit; Owner: postgres -- ALTER TABLE ONLY sgn_submit.seqread ADD CONSTRAINT seqread_pkey PRIMARY KEY (submit_read_id); -- -- Name: submit_user submit_user_pkey; Type: CONSTRAINT; Schema: sgn_submit; Owner: postgres -- ALTER TABLE ONLY sgn_submit.submit_user ADD CONSTRAINT submit_user_pkey PRIMARY KEY (submit_user_id); -- -- Name: ftype ftype_ftype; Type: CONSTRAINT; Schema: tomato_gff; Owner: postgres -- ALTER TABLE ONLY tomato_gff.ftype ADD CONSTRAINT ftype_ftype UNIQUE (fmethod, fsource); -- -- Name: fgroup gclass_fgroup; Type: CONSTRAINT; Schema: tomato_gff; Owner: postgres -- ALTER TABLE ONLY tomato_gff.fgroup ADD CONSTRAINT gclass_fgroup UNIQUE (gclass, gname); -- -- Name: fattribute pk_fattribute; Type: CONSTRAINT; Schema: tomato_gff; Owner: postgres -- ALTER TABLE ONLY tomato_gff.fattribute ADD CONSTRAINT pk_fattribute PRIMARY KEY (fattribute_id); -- -- Name: fdata pk_fdata; Type: CONSTRAINT; Schema: tomato_gff; Owner: postgres -- ALTER TABLE ONLY tomato_gff.fdata ADD CONSTRAINT pk_fdata PRIMARY KEY (fid); -- -- Name: fdna pk_fdna; Type: CONSTRAINT; Schema: tomato_gff; Owner: postgres -- ALTER TABLE ONLY tomato_gff.fdna ADD CONSTRAINT pk_fdna PRIMARY KEY (fref, foffset); -- -- Name: fgroup pk_fgroup; Type: CONSTRAINT; Schema: tomato_gff; Owner: postgres -- ALTER TABLE ONLY tomato_gff.fgroup ADD CONSTRAINT pk_fgroup PRIMARY KEY (gid); -- -- Name: fmeta pk_fmeta; Type: CONSTRAINT; Schema: tomato_gff; Owner: postgres -- ALTER TABLE ONLY tomato_gff.fmeta ADD CONSTRAINT pk_fmeta PRIMARY KEY (fname); -- -- Name: ftype pk_ftype; Type: CONSTRAINT; Schema: tomato_gff; Owner: postgres -- ALTER TABLE ONLY tomato_gff.ftype ADD CONSTRAINT pk_ftype PRIMARY KEY (ftypeid); -- -- Name: object_id_index; Type: INDEX; Schema: biosource; Owner: postgres -- CREATE INDEX object_id_index ON biosource.bs_sample_relationship USING btree (object_id); -- -- Name: protocol_id_index; Type: INDEX; Schema: biosource; Owner: postgres -- CREATE INDEX protocol_id_index ON biosource.bs_protocol USING btree (protocol_id); -- -- Name: protocol_pub_id_index; Type: INDEX; Schema: biosource; Owner: postgres -- CREATE INDEX protocol_pub_id_index ON biosource.bs_protocol_pub USING btree (protocol_pub_id); -- -- Name: protocol_step_dbxref_id_index; Type: INDEX; Schema: biosource; Owner: postgres -- CREATE INDEX protocol_step_dbxref_id_index ON biosource.bs_protocol_step_dbxref USING btree (protocol_step_dbxref_id); -- -- Name: protocol_step_id_index; Type: INDEX; Schema: biosource; Owner: postgres -- CREATE INDEX protocol_step_id_index ON biosource.bs_protocol_step USING btree (protocol_step_id); -- -- Name: sample_cvterm_id_index; Type: INDEX; Schema: biosource; Owner: postgres -- CREATE INDEX sample_cvterm_id_index ON biosource.bs_sample_cvterm USING btree (sample_cvterm_id); -- -- Name: sample_dbxref_id_index; Type: INDEX; Schema: biosource; Owner: postgres -- CREATE INDEX sample_dbxref_id_index ON biosource.bs_sample_dbxref USING btree (sample_dbxref_id); -- -- Name: sample_element_cvterm_id_index; Type: INDEX; Schema: biosource; Owner: postgres -- CREATE INDEX sample_element_cvterm_id_index ON biosource.bs_sample_element_cvterm USING btree (sample_element_cvterm_id); -- -- Name: sample_element_dbxref_id_index; Type: INDEX; Schema: biosource; Owner: postgres -- CREATE INDEX sample_element_dbxref_id_index ON biosource.bs_sample_element_dbxref USING btree (sample_element_dbxref_id); -- -- Name: sample_element_file_id_index; Type: INDEX; Schema: biosource; Owner: postgres -- CREATE INDEX sample_element_file_id_index ON biosource.bs_sample_element_file USING btree (sample_element_file_id); -- -- Name: sample_element_id_index; Type: INDEX; Schema: biosource; Owner: postgres -- CREATE INDEX sample_element_id_index ON biosource.bs_sample_element USING btree (sample_element_id); -- -- Name: sample_element_relation_id_index; Type: INDEX; Schema: biosource; Owner: postgres -- CREATE INDEX sample_element_relation_id_index ON biosource.bs_sample_element_relation USING btree (sample_element_relation_id); -- -- Name: sample_file_id_index; Type: INDEX; Schema: biosource; Owner: postgres -- CREATE INDEX sample_file_id_index ON biosource.bs_sample_file USING btree (sample_file_id); -- -- Name: sample_id_index; Type: INDEX; Schema: biosource; Owner: postgres -- CREATE INDEX sample_id_index ON biosource.bs_sample USING btree (sample_id); -- -- Name: sample_pub_id_index; Type: INDEX; Schema: biosource; Owner: postgres -- CREATE INDEX sample_pub_id_index ON biosource.bs_sample_pub USING btree (sample_pub_id); -- -- Name: sample_relationship_id_index; Type: INDEX; Schema: biosource; Owner: postgres -- CREATE INDEX sample_relationship_id_index ON biosource.bs_sample_relationship USING btree (sample_relationship_id); -- -- Name: subject_id_index; Type: INDEX; Schema: biosource; Owner: postgres -- CREATE INDEX subject_id_index ON biosource.bs_sample_relationship USING btree (subject_id); -- -- Name: tool_id_index; Type: INDEX; Schema: biosource; Owner: postgres -- CREATE INDEX tool_id_index ON biosource.bs_tool USING btree (tool_id); -- -- Name: tool_pub_id_index; Type: INDEX; Schema: biosource; Owner: postgres -- CREATE INDEX tool_pub_id_index ON biosource.bs_tool_pub USING btree (tool_pub_id); -- -- Name: type_id_index; Type: INDEX; Schema: biosource; Owner: postgres -- CREATE INDEX type_id_index ON biosource.bs_sample_relationship USING btree (type_id); -- -- Name: cluster_analysis_id_index; Type: INDEX; Schema: gem; Owner: postgres -- CREATE INDEX cluster_analysis_id_index ON gem.ge_cluster_analysis USING btree (cluster_analysis_id); -- -- Name: cluster_member_id_index; Type: INDEX; Schema: gem; Owner: postgres -- CREATE INDEX cluster_member_id_index ON gem.ge_cluster_member USING btree (cluster_member_id); -- -- Name: cluster_profile_id_index; Type: INDEX; Schema: gem; Owner: postgres -- CREATE INDEX cluster_profile_id_index ON gem.ge_cluster_profile USING btree (cluster_profile_id); -- -- Name: correlation_analysis_id_index; Type: INDEX; Schema: gem; Owner: postgres -- CREATE INDEX correlation_analysis_id_index ON gem.ge_correlation_analysis USING btree (correlation_analysis_id); -- -- Name: correlation_analysis_member_id_index; Type: INDEX; Schema: gem; Owner: postgres -- CREATE INDEX correlation_analysis_member_id_index ON gem.ge_correlation_member USING btree (correlation_member_id); -- -- Name: data_analysis_process_id_index; Type: INDEX; Schema: gem; Owner: postgres -- CREATE INDEX data_analysis_process_id_index ON gem.ge_data_analysis_process USING btree (data_analysis_process_id); -- -- Name: diff_expression_id_index; Type: INDEX; Schema: gem; Owner: postgres -- CREATE INDEX diff_expression_id_index ON gem.ge_diff_expression USING btree (diff_expression_id); -- -- Name: experiment_analysis_group_id_index; Type: INDEX; Schema: gem; Owner: postgres -- CREATE INDEX experiment_analysis_group_id_index ON gem.ge_experiment_analysis_group USING btree (experiment_analysis_group_id); -- -- Name: experiment_analysis_member_id_index; Type: INDEX; Schema: gem; Owner: postgres -- CREATE INDEX experiment_analysis_member_id_index ON gem.ge_experiment_analysis_member USING btree (experiment_analysis_member_id); -- -- Name: experiment_dbxref_id_index; Type: INDEX; Schema: gem; Owner: postgres -- CREATE INDEX experiment_dbxref_id_index ON gem.ge_experiment_dbxref USING btree (experiment_dbxref_id); -- -- Name: experiment_id_index; Type: INDEX; Schema: gem; Owner: postgres -- CREATE INDEX experiment_id_index ON gem.ge_experiment USING btree (experiment_id); -- -- Name: experimental_design_dbxref_id_index; Type: INDEX; Schema: gem; Owner: postgres -- CREATE INDEX experimental_design_dbxref_id_index ON gem.ge_experimental_design_dbxref USING btree (experimental_design_dbxref_id); -- -- Name: experimental_design_id_index; Type: INDEX; Schema: gem; Owner: postgres -- CREATE INDEX experimental_design_id_index ON gem.ge_experimental_design USING btree (experimental_design_id); -- -- Name: experimental_design_pub_id_index; Type: INDEX; Schema: gem; Owner: postgres -- CREATE INDEX experimental_design_pub_id_index ON gem.ge_experimental_design_pub USING btree (experimental_design_pub_id); -- -- Name: expression_by_experiment_id_index; Type: INDEX; Schema: gem; Owner: postgres -- CREATE INDEX expression_by_experiment_id_index ON gem.ge_expression_by_experiment USING btree (expression_by_experiment_id); -- -- Name: fluorescanning_id_index; Type: INDEX; Schema: gem; Owner: postgres -- CREATE INDEX fluorescanning_id_index ON gem.ge_fluorescanning USING btree (fluorescanning_id); -- -- Name: hybridization_id_index; Type: INDEX; Schema: gem; Owner: postgres -- CREATE INDEX hybridization_id_index ON gem.ge_hybridization USING btree (hybridization_id); -- -- Name: platform_dbxref_id_index; Type: INDEX; Schema: gem; Owner: postgres -- CREATE INDEX platform_dbxref_id_index ON gem.ge_platform_dbxref USING btree (platform_dbxref_id); -- -- Name: platform_design_id_index; Type: INDEX; Schema: gem; Owner: postgres -- CREATE INDEX platform_design_id_index ON gem.ge_platform_design USING btree (platform_design_id); -- -- Name: platform_id_index; Type: INDEX; Schema: gem; Owner: postgres -- CREATE INDEX platform_id_index ON gem.ge_platform USING btree (platform_id); -- -- Name: platform_pub_id_index; Type: INDEX; Schema: gem; Owner: postgres -- CREATE INDEX platform_pub_id_index ON gem.ge_platform_pub USING btree (platform_pub_id); -- -- Name: probe_expression_id_index; Type: INDEX; Schema: gem; Owner: postgres -- CREATE INDEX probe_expression_id_index ON gem.ge_probe_expression USING btree (probe_expression_id); -- -- Name: probe_id_index; Type: INDEX; Schema: gem; Owner: postgres -- CREATE INDEX probe_id_index ON gem.ge_probe USING btree (probe_id); -- -- Name: probe_name_index; Type: INDEX; Schema: gem; Owner: postgres -- CREATE INDEX probe_name_index ON gem.ge_probe USING btree (probe_name); -- -- Name: probe_platform_id_index; Type: INDEX; Schema: gem; Owner: postgres -- CREATE INDEX probe_platform_id_index ON gem.ge_probe USING btree (platform_id); -- -- Name: probe_spot_coordinate_id_index; Type: INDEX; Schema: gem; Owner: postgres -- CREATE INDEX probe_spot_coordinate_id_index ON gem.ge_probe_spot_coordinate USING btree (probe_spot_coordinate_id); -- -- Name: probe_spot_id_index; Type: INDEX; Schema: gem; Owner: postgres -- CREATE INDEX probe_spot_id_index ON gem.ge_probe_spot USING btree (probe_spot_id); -- -- Name: probe_spot_probe_id_index; Type: INDEX; Schema: gem; Owner: postgres -- CREATE INDEX probe_spot_probe_id_index ON gem.ge_probe_spot USING btree (probe_id); -- -- Name: profile_element_id_index; Type: INDEX; Schema: gem; Owner: postgres -- CREATE INDEX profile_element_id_index ON gem.ge_profile_element USING btree (profile_element_id); -- -- Name: target_dbxref_id_index; Type: INDEX; Schema: gem; Owner: postgres -- CREATE INDEX target_dbxref_id_index ON gem.ge_target_dbxref USING btree (target_dbxref_id); -- -- Name: target_element_id_index; Type: INDEX; Schema: gem; Owner: postgres -- CREATE INDEX target_element_id_index ON gem.ge_target_element USING btree (target_element_id); -- -- Name: target_id_index; Type: INDEX; Schema: gem; Owner: postgres -- CREATE INDEX target_id_index ON gem.ge_target USING btree (target_id); -- -- Name: technology_type_id_index; Type: INDEX; Schema: gem; Owner: postgres -- CREATE INDEX technology_type_id_index ON gem.ge_technology_type USING btree (technology_type_id); -- -- Name: template_dbiref_id_index; Type: INDEX; Schema: gem; Owner: postgres -- CREATE INDEX template_dbiref_id_index ON gem.ge_template_dbiref USING btree (template_dbiref_id); -- -- Name: template_dbxref_id_index; Type: INDEX; Schema: gem; Owner: postgres -- CREATE INDEX template_dbxref_id_index ON gem.ge_template_dbxref USING btree (template_dbxref_id); -- -- Name: template_diff_expression_id_index; Type: INDEX; Schema: gem; Owner: postgres -- CREATE INDEX template_diff_expression_id_index ON gem.ge_template_diff_expression USING btree (template_diff_expression_id); -- -- Name: template_expression_id_index; Type: INDEX; Schema: gem; Owner: postgres -- CREATE INDEX template_expression_id_index ON gem.ge_template_expression USING btree (template_expression_id); -- -- Name: template_id_index; Type: INDEX; Schema: gem; Owner: postgres -- CREATE INDEX template_id_index ON gem.ge_template USING btree (template_id); -- -- Name: template_name_index; Type: INDEX; Schema: gem; Owner: postgres -- CREATE INDEX template_name_index ON gem.ge_template USING btree (template_name); -- -- Name: accession_id_idx; Type: INDEX; Schema: genomic; Owner: postgres -- CREATE INDEX accession_id_idx ON genomic.library USING btree (accession_id); -- -- Name: blast_defline_identifier_defline_fulltext_index; Type: INDEX; Schema: genomic; Owner: postgres -- CREATE INDEX blast_defline_identifier_defline_fulltext_index ON genomic.blast_defline USING gist (identifier_defline_fulltext); -- -- Name: blast_query_id_idx; Type: INDEX; Schema: genomic; Owner: postgres -- CREATE INDEX blast_query_id_idx ON genomic.blast_hit USING btree (blast_query_id); -- -- Name: byname_idx; Type: INDEX; Schema: genomic; Owner: postgres -- CREATE INDEX byname_idx ON genomic.clone USING btree (platenum, wellrow, wellcol, clone_type_id); -- -- Name: chromat_id_idx; Type: INDEX; Schema: genomic; Owner: postgres -- CREATE INDEX chromat_id_idx ON genomic.gss USING btree (chromat_id); -- -- Name: clone_feature_feature_id_idx; Type: INDEX; Schema: genomic; Owner: postgres -- CREATE INDEX clone_feature_feature_id_idx ON genomic.clone_feature USING btree (feature_id); -- -- Name: clone_id_idx; Type: INDEX; Schema: genomic; Owner: postgres -- CREATE INDEX clone_id_idx ON genomic.chromat USING btree (clone_id); -- -- Name: clone_type_id_idx; Type: INDEX; Schema: genomic; Owner: postgres -- CREATE INDEX clone_type_id_idx ON genomic.clone USING btree (clone_type_id); -- -- Name: defline_id_idx; Type: INDEX; Schema: genomic; Owner: postgres -- CREATE INDEX defline_id_idx ON genomic.blast_hit USING btree (blast_defline_id); -- -- Name: defline_query_idx; Type: INDEX; Schema: genomic; Owner: postgres -- CREATE INDEX defline_query_idx ON genomic.blast_hit USING btree (blast_defline_id, blast_query_id); -- -- Name: evalue_idx; Type: INDEX; Schema: genomic; Owner: postgres -- CREATE INDEX evalue_idx ON genomic.blast_hit USING btree (evalue); -- -- Name: filename_idx; Type: INDEX; Schema: genomic; Owner: postgres -- CREATE INDEX filename_idx ON genomic.chromat USING btree (filename); -- -- Name: gss_flags_idx; Type: INDEX; Schema: genomic; Owner: postgres -- CREATE INDEX gss_flags_idx ON genomic.gss USING btree (flags); -- -- Name: gss_id_idx; Type: INDEX; Schema: genomic; Owner: postgres -- CREATE INDEX gss_id_idx ON genomic.gss_submitted_to_genbank USING btree (gss_id); -- -- Name: gss_id_idx2; Type: INDEX; Schema: genomic; Owner: postgres -- CREATE INDEX gss_id_idx2 ON genomic.qc_report USING btree (gss_id); -- -- Name: identifier_idx; Type: INDEX; Schema: genomic; Owner: postgres -- CREATE INDEX identifier_idx ON genomic.blast_defline USING btree (identifier); -- -- Name: library_id_idx; Type: INDEX; Schema: genomic; Owner: postgres -- CREATE INDEX library_id_idx ON genomic.clone USING btree (library_id); -- -- Name: score_idx; Type: INDEX; Schema: genomic; Owner: postgres -- CREATE INDEX score_idx ON genomic.blast_hit USING btree (score); -- -- Name: shortname_idx; Type: INDEX; Schema: genomic; Owner: postgres -- CREATE INDEX shortname_idx ON genomic.query_source_type USING btree (shortname); -- -- Name: source_idx; Type: INDEX; Schema: genomic; Owner: postgres -- CREATE INDEX source_idx ON genomic.blast_query USING btree (query_source_type_id, source_id); -- -- Name: status_idx; Type: INDEX; Schema: genomic; Owner: postgres -- CREATE INDEX status_idx ON genomic.gss USING btree (status); -- -- Name: ex_tag_idx1_idx; Type: INDEX; Schema: insitu; Owner: postgres -- CREATE INDEX ex_tag_idx1_idx ON insitu.ex_tag USING btree (experiment_id); -- -- Name: ex_tag_idx2_idx; Type: INDEX; Schema: insitu; Owner: postgres -- CREATE INDEX ex_tag_idx2_idx ON insitu.ex_tag USING btree (tag_id); -- -- Name: experiment_idx1_idx; Type: INDEX; Schema: insitu; Owner: postgres -- CREATE INDEX experiment_idx1_idx ON insitu.experiment USING btree (probe_id); -- -- Name: image_tag_idx1_idx; Type: INDEX; Schema: insitu; Owner: postgres -- CREATE INDEX image_tag_idx1_idx ON insitu.image_tag USING btree (image_id); -- -- Name: image_tag_idx2_idx; Type: INDEX; Schema: insitu; Owner: postgres -- CREATE INDEX image_tag_idx2_idx ON insitu.image_tag USING btree (tag_id); -- -- Name: tag_implication_idx1_idx; Type: INDEX; Schema: insitu; Owner: postgres -- CREATE INDEX tag_implication_idx1_idx ON insitu.tag_implication USING btree (tag_id); -- -- Name: tag_implication_idx2_idx; Type: INDEX; Schema: insitu; Owner: postgres -- CREATE INDEX tag_implication_idx2_idx ON insitu.tag_implication USING btree (implied_id); -- -- Name: dbipath_id_index; Type: INDEX; Schema: metadata; Owner: postgres -- CREATE INDEX dbipath_id_index ON metadata.md_dbipath USING btree (dbipath_id); -- -- Name: dbiref_id_index; Type: INDEX; Schema: metadata; Owner: postgres -- CREATE INDEX dbiref_id_index ON metadata.md_dbiref USING btree (dbiref_id); -- -- Name: dbversion_id_index; Type: INDEX; Schema: metadata; Owner: postgres -- CREATE INDEX dbversion_id_index ON metadata.md_dbversion USING btree (dbversion_id); -- -- Name: file_id_index; Type: INDEX; Schema: metadata; Owner: postgres -- CREATE INDEX file_id_index ON metadata.md_files USING btree (file_id); -- -- Name: group_id_index; Type: INDEX; Schema: metadata; Owner: postgres -- CREATE INDEX group_id_index ON metadata.md_groups USING btree (group_id); -- -- Name: groupmember_id_index; Type: INDEX; Schema: metadata; Owner: postgres -- CREATE INDEX groupmember_id_index ON metadata.md_groupmembers USING btree (groupmember_id); -- -- Name: metadata_id_index; Type: INDEX; Schema: metadata; Owner: postgres -- CREATE INDEX metadata_id_index ON metadata.md_metadata USING btree (metadata_id); -- -- Name: gen_id_idx; Type: INDEX; Schema: pheno_population; Owner: postgres -- CREATE INDEX gen_id_idx ON pheno_population.plants USING btree (gen_id); -- -- Name: image_id_idx; Type: INDEX; Schema: pheno_population; Owner: postgres -- CREATE INDEX image_id_idx ON pheno_population.data_points USING btree (image_id); -- -- Name: loc_id_idx; Type: INDEX; Schema: pheno_population; Owner: postgres -- CREATE INDEX loc_id_idx ON pheno_population.plants USING btree (loc_id); -- -- Name: organ_id_idx; Type: INDEX; Schema: pheno_population; Owner: postgres -- CREATE INDEX organ_id_idx ON pheno_population.properties USING btree (organ_id); -- -- Name: organ_id_idx2; Type: INDEX; Schema: pheno_population; Owner: postgres -- CREATE INDEX organ_id_idx2 ON pheno_population.samples USING btree (organ_id); -- -- Name: plant_id_idx; Type: INDEX; Schema: pheno_population; Owner: postgres -- CREATE INDEX plant_id_idx ON pheno_population.samples USING btree (plant_id); -- -- Name: pop_id_idx; Type: INDEX; Schema: pheno_population; Owner: postgres -- CREATE INDEX pop_id_idx ON pheno_population.genotypes USING btree (pop_id); -- -- Name: prop_id_idx; Type: INDEX; Schema: pheno_population; Owner: postgres -- CREATE INDEX prop_id_idx ON pheno_population.data_points USING btree (prop_id); -- -- Name: sample_id_idx; Type: INDEX; Schema: pheno_population; Owner: postgres -- CREATE INDEX sample_id_idx ON pheno_population.data_points USING btree (sample_id); -- -- Name: sample_id_idx2; Type: INDEX; Schema: pheno_population; Owner: postgres -- CREATE INDEX sample_id_idx2 ON pheno_population.images USING btree (sample_id); -- -- Name: source_id_idx; Type: INDEX; Schema: pheno_population; Owner: postgres -- CREATE INDEX source_id_idx ON pheno_population.data_points USING btree (source_id); -- -- Name: source_id_idx2; Type: INDEX; Schema: pheno_population; Owner: postgres -- CREATE INDEX source_id_idx2 ON pheno_population.images USING btree (source_id); -- -- Name: background_accession_id_idx; Type: INDEX; Schema: phenome; Owner: postgres -- CREATE INDEX background_accession_id_idx ON phenome.genotype_experiment USING btree (background_accession_id); -- -- Name: cross_type_idx1; Type: INDEX; Schema: phenome; Owner: postgres -- CREATE INDEX cross_type_idx1 ON phenome.cross_type USING btree (cross_type); -- -- Name: genotype_individual_id_idx; Type: INDEX; Schema: phenome; Owner: postgres -- CREATE INDEX genotype_individual_id_idx ON phenome.phenome_genotype USING btree (individual_id); -- -- Name: genotype_reference_map_id_idx; Type: INDEX; Schema: phenome; Owner: postgres -- CREATE INDEX genotype_reference_map_id_idx ON phenome.phenome_genotype USING btree (reference_map_id); -- -- Name: phenome_genotype_marker_id_nn_idx; Type: INDEX; Schema: phenome; Owner: postgres -- CREATE INDEX phenome_genotype_marker_id_nn_idx ON phenome.genotype_region USING btree (marker_id_nn); -- -- Name: phenome_genotype_marker_id_ns_idx; Type: INDEX; Schema: phenome; Owner: postgres -- CREATE INDEX phenome_genotype_marker_id_ns_idx ON phenome.genotype_region USING btree (marker_id_ns); -- -- Name: phenome_genotype_marker_id_sn_idx; Type: INDEX; Schema: phenome; Owner: postgres -- CREATE INDEX phenome_genotype_marker_id_sn_idx ON phenome.genotype_region USING btree (marker_id_sn); -- -- Name: phenome_genotype_marker_id_ss_idx; Type: INDEX; Schema: phenome; Owner: postgres -- CREATE INDEX phenome_genotype_marker_id_ss_idx ON phenome.genotype_region USING btree (marker_id_ss); -- -- Name: phenome_genotype_region_genotype_id_idx; Type: INDEX; Schema: phenome; Owner: postgres -- CREATE INDEX phenome_genotype_region_genotype_id_idx ON phenome.genotype_region USING btree (phenome_genotype_id); -- -- Name: phenome_genotype_region_name; Type: INDEX; Schema: phenome; Owner: postgres -- CREATE INDEX phenome_genotype_region_name ON phenome.genotype_region USING btree (name); -- -- Name: phenome_genotype_region_type; Type: INDEX; Schema: phenome; Owner: postgres -- CREATE INDEX phenome_genotype_region_type ON phenome.genotype_region USING btree (type); -- -- Name: phenome_genotype_region_zygocity_code; Type: INDEX; Schema: phenome; Owner: postgres -- CREATE INDEX phenome_genotype_region_zygocity_code ON phenome.genotype_region USING btree (zygocity_code); -- -- Name: phenome_individual_name_idx; Type: INDEX; Schema: phenome; Owner: postgres -- CREATE INDEX phenome_individual_name_idx ON phenome.individual USING btree (name); -- -- Name: phenome_population_id_idx; Type: INDEX; Schema: phenome; Owner: postgres -- CREATE INDEX phenome_population_id_idx ON phenome.individual USING btree (population_id); -- -- Name: reference_map_id_idx; Type: INDEX; Schema: phenome; Owner: postgres -- CREATE INDEX reference_map_id_idx ON phenome.genotype_experiment USING btree (reference_map_id); -- -- Name: unit_idx1; Type: INDEX; Schema: phenome; Owner: postgres -- CREATE INDEX unit_idx1 ON phenome.unit USING btree (name); -- -- Name: user_trait_idx1; Type: INDEX; Schema: phenome; Owner: postgres -- CREATE INDEX user_trait_idx1 ON phenome.user_trait USING btree (name); -- -- Name: bac_id_idx; Type: INDEX; Schema: physical; Owner: postgres -- CREATE INDEX bac_id_idx ON physical.bac_associations USING btree (bac_id, bac_contig_id, plausible); -- -- Name: bac_id_idx2; Type: INDEX; Schema: physical; Owner: postgres -- CREATE INDEX bac_id_idx2 ON physical.bac_consensus_sequences USING btree (bac_id, consensus_seq_name, length, includes_sp6_end, includes_t7_end); -- -- Name: bac_id_idx3; Type: INDEX; Schema: physical; Owner: postgres -- CREATE INDEX bac_id_idx3 ON physical.fpc_data USING btree (bac_id, bac_name, gel_number, creation_date, modification_date); -- -- Name: bac_id_idx4; Type: INDEX; Schema: physical; Owner: postgres -- CREATE INDEX bac_id_idx4 ON physical.overgo_associations USING btree (bac_id); -- -- Name: bap_bac_assoc_id_idx_idx; Type: INDEX; Schema: physical; Owner: postgres -- CREATE INDEX bap_bac_assoc_id_idx_idx ON physical.ba_plausibility USING btree (bac_assoc_id); -- -- Name: conflict_group_id_idx; Type: INDEX; Schema: physical; Owner: postgres -- CREATE INDEX conflict_group_id_idx ON physical.tentative_association_conflict_groups USING btree (conflict_group_id, tentative_assoc_id); -- -- Name: contig_name_idx; Type: INDEX; Schema: physical; Owner: postgres -- CREATE INDEX contig_name_idx ON physical.bac_contigs USING btree (contig_name, fpc_version); -- -- Name: cornell_clone_name_idx; Type: INDEX; Schema: physical; Owner: postgres -- CREATE INDEX cornell_clone_name_idx ON physical.bacs USING btree (cornell_clone_name, arizona_clone_name, species_id, genbank_accession, bad_clone, estimated_length); -- -- Name: end_id_idx; Type: INDEX; Schema: physical; Owner: postgres -- CREATE INDEX end_id_idx ON physical.bac_end_sequences USING btree (end_id, length); -- -- Name: net_id_idx; Type: INDEX; Schema: physical; Owner: postgres -- CREATE INDEX net_id_idx ON physical.users USING btree (net_id); -- -- Name: oap_overgo_assoc_id_idx_idx; Type: INDEX; Schema: physical; Owner: postgres -- CREATE INDEX oap_overgo_assoc_id_idx_idx ON physical.oa_plausibility USING btree (overgo_assoc_id); -- -- Name: overgo_plate_id_idx; Type: INDEX; Schema: physical; Owner: postgres -- CREATE INDEX overgo_plate_id_idx ON physical.overgo_results USING btree (overgo_plate_id, bac_id, overgo_pool); -- -- Name: overgo_plate_id_idx2; Type: INDEX; Schema: physical; Owner: postgres -- CREATE INDEX overgo_plate_id_idx2 ON physical.probe_markers USING btree (overgo_plate_id, overgo_plate_row, overgo_plate_col, marker_id); -- -- Name: overgo_version_idx; Type: INDEX; Schema: physical; Owner: postgres -- CREATE INDEX overgo_version_idx ON physical.deprecated_probes USING btree (overgo_version, overgo_probe_id); -- -- Name: overgo_version_idx2; Type: INDEX; Schema: physical; Owner: postgres -- CREATE INDEX overgo_version_idx2 ON physical.overgo_associations USING btree (overgo_version, overgo_probe_id, bac_id, plausible); -- -- Name: overgo_version_idx3; Type: INDEX; Schema: physical; Owner: postgres -- CREATE INDEX overgo_version_idx3 ON physical.tentative_overgo_associations USING btree (overgo_version, overgo_probe_id, bac_id); -- -- Name: plate_number_idx; Type: INDEX; Schema: physical; Owner: postgres -- CREATE INDEX plate_number_idx ON physical.overgo_plates USING btree (plate_number); -- -- Name: short_name_idx; Type: INDEX; Schema: physical; Owner: postgres -- CREATE INDEX short_name_idx ON physical.species USING btree (short_name); -- -- Name: updated_by_idx; Type: INDEX; Schema: physical; Owner: postgres -- CREATE INDEX updated_by_idx ON physical.fpc_version USING btree (updated_by, current); -- -- Name: updated_by_idx2; Type: INDEX; Schema: physical; Owner: postgres -- CREATE INDEX updated_by_idx2 ON physical.overgo_version USING btree (updated_by, current); -- -- Name: accession_id_geno_idx; Type: INDEX; Schema: public; Owner: web_usr -- CREATE INDEX accession_id_geno_idx ON public.materialized_genoview USING btree (accession_id) WITH (fillfactor='100'); -- -- Name: accession_id_pheno_idx; Type: INDEX; Schema: public; Owner: web_usr -- CREATE INDEX accession_id_pheno_idx ON public.materialized_phenoview USING btree (accession_id) WITH (fillfactor='100'); -- -- Name: accessions_idx; Type: INDEX; Schema: public; Owner: web_usr -- CREATE UNIQUE INDEX accessions_idx ON public.accessions USING btree (accession_id) WITH (fillfactor='100'); -- -- Name: accessionsxbreeding_programs_idx; Type: INDEX; Schema: public; Owner: web_usr -- CREATE UNIQUE INDEX accessionsxbreeding_programs_idx ON public.accessionsxbreeding_programs USING btree (accession_id, breeding_program_id) WITH (fillfactor='100'); -- -- Name: accessionsxgenotyping_projects_idx; Type: INDEX; Schema: public; Owner: web_usr -- CREATE UNIQUE INDEX accessionsxgenotyping_projects_idx ON public.accessionsxgenotyping_projects USING btree (accession_id, genotyping_project_id) WITH (fillfactor='100'); -- -- Name: accessionsxgenotyping_protocols_idx; Type: INDEX; Schema: public; Owner: web_usr -- CREATE UNIQUE INDEX accessionsxgenotyping_protocols_idx ON public.accessionsxgenotyping_protocols USING btree (accession_id, genotyping_protocol_id) WITH (fillfactor='100'); -- -- Name: accessionsxlocations_idx; Type: INDEX; Schema: public; Owner: web_usr -- CREATE UNIQUE INDEX accessionsxlocations_idx ON public.accessionsxlocations USING btree (accession_id, location_id) WITH (fillfactor='100'); -- -- Name: accessionsxplants_idx; Type: INDEX; Schema: public; Owner: web_usr -- CREATE UNIQUE INDEX accessionsxplants_idx ON public.accessionsxplants USING btree (accession_id, plant_id) WITH (fillfactor='100'); -- -- Name: accessionsxplots_idx; Type: INDEX; Schema: public; Owner: web_usr -- CREATE UNIQUE INDEX accessionsxplots_idx ON public.accessionsxplots USING btree (accession_id, plot_id) WITH (fillfactor='100'); -- -- Name: accessionsxseedlots_idx; Type: INDEX; Schema: public; Owner: web_usr -- CREATE UNIQUE INDEX accessionsxseedlots_idx ON public.accessionsxseedlots USING btree (accession_id, seedlot_id) WITH (fillfactor='100'); -- -- Name: accessionsxtrait_components_idx; Type: INDEX; Schema: public; Owner: web_usr -- CREATE UNIQUE INDEX accessionsxtrait_components_idx ON public.accessionsxtrait_components USING btree (accession_id, trait_component_id) WITH (fillfactor='100'); -- -- Name: accessionsxtraits_idx; Type: INDEX; Schema: public; Owner: web_usr -- CREATE UNIQUE INDEX accessionsxtraits_idx ON public.accessionsxtraits USING btree (accession_id, trait_id) WITH (fillfactor='100'); -- -- Name: accessionsxtrial_designs_idx; Type: INDEX; Schema: public; Owner: web_usr -- CREATE UNIQUE INDEX accessionsxtrial_designs_idx ON public.accessionsxtrial_designs USING btree (accession_id, trial_design_id) WITH (fillfactor='100'); -- -- Name: accessionsxtrial_types_idx; Type: INDEX; Schema: public; Owner: web_usr -- CREATE UNIQUE INDEX accessionsxtrial_types_idx ON public.accessionsxtrial_types USING btree (accession_id, trial_type_id) WITH (fillfactor='100'); -- -- Name: accessionsxtrials_idx; Type: INDEX; Schema: public; Owner: web_usr -- CREATE UNIQUE INDEX accessionsxtrials_idx ON public.accessionsxtrials USING btree (accession_id, trial_id) WITH (fillfactor='100'); -- -- Name: accessionsxyears_idx; Type: INDEX; Schema: public; Owner: web_usr -- CREATE UNIQUE INDEX accessionsxyears_idx ON public.accessionsxyears USING btree (accession_id, year_id) WITH (fillfactor='100'); -- -- Name: analysisfeature_idx1; Type: INDEX; Schema: public; Owner: postgres -- CREATE INDEX analysisfeature_idx1 ON public.analysisfeature USING btree (feature_id); -- -- Name: analysisfeature_idx2; Type: INDEX; Schema: public; Owner: postgres -- CREATE INDEX analysisfeature_idx2 ON public.analysisfeature USING btree (analysis_id); -- -- Name: analysisprop_idx1; Type: INDEX; Schema: public; Owner: postgres -- CREATE INDEX analysisprop_idx1 ON public.analysisprop USING btree (analysis_id); -- -- Name: analysisprop_idx2; Type: INDEX; Schema: public; Owner: postgres -- CREATE INDEX analysisprop_idx2 ON public.analysisprop USING btree (type_id); -- -- Name: ara_annotation_fulltext; Type: INDEX; Schema: public; Owner: postgres -- CREATE INDEX ara_annotation_fulltext ON public.ara_annotation USING gist (fulltext); -- -- Name: ara_annotation_locus; Type: INDEX; Schema: public; Owner: postgres -- CREATE INDEX ara_annotation_locus ON public.ara_annotation USING btree (locus); -- -- Name: ara_domain_agi; Type: INDEX; Schema: public; Owner: postgres -- CREATE INDEX ara_domain_agi ON public.ara_domain USING btree (agi); -- -- Name: ara_domain_locus; Type: INDEX; Schema: public; Owner: postgres -- CREATE INDEX ara_domain_locus ON public.ara_domain USING btree (locus); -- -- Name: ara_gfp_ms_agi; Type: INDEX; Schema: public; Owner: postgres -- CREATE INDEX ara_gfp_ms_agi ON public.ara_gfp_ms USING btree (agi); -- -- Name: ara_gfp_ms_locus; Type: INDEX; Schema: public; Owner: postgres -- CREATE INDEX ara_gfp_ms_locus ON public.ara_gfp_ms USING btree (locus); -- -- Name: ara_interactome_all_locus; Type: INDEX; Schema: public; Owner: postgres -- CREATE INDEX ara_interactome_all_locus ON public.ara_interactome_all USING btree (locus); -- -- Name: ara_interactome_unique_locus; Type: INDEX; Schema: public; Owner: postgres -- CREATE INDEX ara_interactome_unique_locus ON public.ara_interactome_unique USING btree (locus); -- -- Name: ara_intron_agi; Type: INDEX; Schema: public; Owner: postgres -- CREATE INDEX ara_intron_agi ON public.ara_intron USING btree (agi); -- -- Name: ara_intron_locus; Type: INDEX; Schema: public; Owner: postgres -- CREATE INDEX ara_intron_locus ON public.ara_intron USING btree (locus); -- -- Name: ara_map_locus; Type: INDEX; Schema: public; Owner: postgres -- CREATE INDEX ara_map_locus ON public.ara_map USING btree (locus); -- -- Name: ara_myristoylation_locus; Type: INDEX; Schema: public; Owner: postgres -- CREATE INDEX ara_myristoylation_locus ON public.ara_myristoylation USING btree (locus); -- -- Name: ara_properties_locus; Type: INDEX; Schema: public; Owner: postgres -- CREATE INDEX ara_properties_locus ON public.ara_properties USING btree (locus); -- -- Name: ara_scop_agi; Type: INDEX; Schema: public; Owner: postgres -- CREATE INDEX ara_scop_agi ON public.ara_scop USING btree (agi); -- -- Name: ara_scop_locus; Type: INDEX; Schema: public; Owner: postgres -- CREATE INDEX ara_scop_locus ON public.ara_scop USING btree (locus); -- -- Name: ara_sequence_locus; Type: INDEX; Schema: public; Owner: postgres -- CREATE INDEX ara_sequence_locus ON public.ara_sequence USING btree (locus); -- -- Name: ara_signalp_agi; Type: INDEX; Schema: public; Owner: postgres -- CREATE INDEX ara_signalp_agi ON public.ara_signalp USING btree (agi); -- -- Name: ara_signalp_locus; Type: INDEX; Schema: public; Owner: postgres -- CREATE INDEX ara_signalp_locus ON public.ara_signalp USING btree (locus); -- -- Name: ara_targetp_locus; Type: INDEX; Schema: public; Owner: postgres -- CREATE INDEX ara_targetp_locus ON public.ara_targetp USING btree (locus); -- -- Name: breeding_program_id_idx; Type: INDEX; Schema: public; Owner: web_usr -- CREATE INDEX breeding_program_id_idx ON public.materialized_phenoview USING btree (breeding_program_id) WITH (fillfactor='100'); -- -- Name: breeding_programs_idx; Type: INDEX; Schema: public; Owner: web_usr -- CREATE UNIQUE INDEX breeding_programs_idx ON public.breeding_programs USING btree (breeding_program_id) WITH (fillfactor='100'); -- -- Name: breeding_programsxgenotyping_projects_idx; Type: INDEX; Schema: public; Owner: web_usr -- CREATE UNIQUE INDEX breeding_programsxgenotyping_projects_idx ON public.breeding_programsxgenotyping_projects USING btree (breeding_program_id, genotyping_project_id) WITH (fillfactor='100'); -- -- Name: breeding_programsxgenotyping_protocols_idx; Type: INDEX; Schema: public; Owner: web_usr -- CREATE UNIQUE INDEX breeding_programsxgenotyping_protocols_idx ON public.breeding_programsxgenotyping_protocols USING btree (breeding_program_id, genotyping_protocol_id) WITH (fillfactor='100'); -- -- Name: breeding_programsxlocations_idx; Type: INDEX; Schema: public; Owner: web_usr -- CREATE UNIQUE INDEX breeding_programsxlocations_idx ON public.breeding_programsxlocations USING btree (breeding_program_id, location_id) WITH (fillfactor='100'); -- -- Name: breeding_programsxplants_idx; Type: INDEX; Schema: public; Owner: web_usr -- CREATE UNIQUE INDEX breeding_programsxplants_idx ON public.breeding_programsxplants USING btree (breeding_program_id, plant_id) WITH (fillfactor='100'); -- -- Name: breeding_programsxplots_idx; Type: INDEX; Schema: public; Owner: web_usr -- CREATE UNIQUE INDEX breeding_programsxplots_idx ON public.breeding_programsxplots USING btree (breeding_program_id, plot_id) WITH (fillfactor='100'); -- -- Name: breeding_programsxseedlots_idx; Type: INDEX; Schema: public; Owner: web_usr -- CREATE UNIQUE INDEX breeding_programsxseedlots_idx ON public.breeding_programsxseedlots USING btree (breeding_program_id, seedlot_id) WITH (fillfactor='100'); -- -- Name: breeding_programsxtrait_components_idx; Type: INDEX; Schema: public; Owner: web_usr -- CREATE UNIQUE INDEX breeding_programsxtrait_components_idx ON public.breeding_programsxtrait_components USING btree (breeding_program_id, trait_component_id) WITH (fillfactor='100'); -- -- Name: breeding_programsxtraits_idx; Type: INDEX; Schema: public; Owner: web_usr -- CREATE UNIQUE INDEX breeding_programsxtraits_idx ON public.breeding_programsxtraits USING btree (breeding_program_id, trait_id) WITH (fillfactor='100'); -- -- Name: breeding_programsxtrial_designs_idx; Type: INDEX; Schema: public; Owner: web_usr -- CREATE UNIQUE INDEX breeding_programsxtrial_designs_idx ON public.breeding_programsxtrial_designs USING btree (breeding_program_id, trial_design_id) WITH (fillfactor='100'); -- -- Name: breeding_programsxtrial_types_idx; Type: INDEX; Schema: public; Owner: web_usr -- CREATE UNIQUE INDEX breeding_programsxtrial_types_idx ON public.breeding_programsxtrial_types USING btree (breeding_program_id, trial_type_id) WITH (fillfactor='100'); -- -- Name: breeding_programsxtrials_idx; Type: INDEX; Schema: public; Owner: web_usr -- CREATE UNIQUE INDEX breeding_programsxtrials_idx ON public.breeding_programsxtrials USING btree (breeding_program_id, trial_id) WITH (fillfactor='100'); -- -- Name: breeding_programsxyears_idx; Type: INDEX; Schema: public; Owner: web_usr -- CREATE UNIQUE INDEX breeding_programsxyears_idx ON public.breeding_programsxyears USING btree (breeding_program_id, year_id) WITH (fillfactor='100'); -- -- Name: contact_relationship_idx1; Type: INDEX; Schema: public; Owner: postgres -- CREATE INDEX contact_relationship_idx1 ON public.contact_relationship USING btree (type_id); -- -- Name: contact_relationship_idx2; Type: INDEX; Schema: public; Owner: postgres -- CREATE INDEX contact_relationship_idx2 ON public.contact_relationship USING btree (subject_id); -- -- Name: contact_relationship_idx3; Type: INDEX; Schema: public; Owner: postgres -- CREATE INDEX contact_relationship_idx3 ON public.contact_relationship USING btree (object_id); -- -- Name: INDEX cvterm_c1; Type: COMMENT; Schema: public; Owner: postgres -- COMMENT ON INDEX public.cvterm_c1 IS 'a name can mean different things in different contexts; for example "chromosome" in SO and GO. A name should be unique within an ontology/cv. A name may exist twice in a cv, in both obsolete and non-obsolete forms - these will be for different cvterms with different OBO identifiers; so GO documentation for more details on obsoletion. Note that occasionally multiple obsolete terms with the same name will exist in the same cv. If this is a possibility for the ontology under consideration (eg GO) then the ID should be appended to the name to ensure uniqueness'; -- -- Name: INDEX cvterm_c2; Type: COMMENT; Schema: public; Owner: postgres -- COMMENT ON INDEX public.cvterm_c2 IS 'the OBO identifier is globally unique'; -- -- Name: cvterm_dbxref_idx1; Type: INDEX; Schema: public; Owner: postgres -- CREATE INDEX cvterm_dbxref_idx1 ON public.cvterm_dbxref USING btree (cvterm_id); -- -- Name: cvterm_dbxref_idx2; Type: INDEX; Schema: public; Owner: postgres -- CREATE INDEX cvterm_dbxref_idx2 ON public.cvterm_dbxref USING btree (dbxref_id); -- -- Name: cvterm_idx1; Type: INDEX; Schema: public; Owner: postgres -- CREATE INDEX cvterm_idx1 ON public.cvterm USING btree (cv_id); -- -- Name: cvterm_idx2; Type: INDEX; Schema: public; Owner: postgres -- CREATE INDEX cvterm_idx2 ON public.cvterm USING btree (name); -- -- Name: cvterm_idx3; Type: INDEX; Schema: public; Owner: postgres -- CREATE INDEX cvterm_idx3 ON public.cvterm USING btree (dbxref_id); -- -- Name: cvterm_relationship_idx1; Type: INDEX; Schema: public; Owner: postgres -- CREATE INDEX cvterm_relationship_idx1 ON public.cvterm_relationship USING btree (type_id); -- -- Name: cvterm_relationship_idx2; Type: INDEX; Schema: public; Owner: postgres -- CREATE INDEX cvterm_relationship_idx2 ON public.cvterm_relationship USING btree (subject_id); -- -- Name: cvterm_relationship_idx3; Type: INDEX; Schema: public; Owner: postgres -- CREATE INDEX cvterm_relationship_idx3 ON public.cvterm_relationship USING btree (object_id); -- -- Name: cvtermpath_idx1; Type: INDEX; Schema: public; Owner: postgres -- CREATE INDEX cvtermpath_idx1 ON public.cvtermpath USING btree (type_id); -- -- Name: cvtermpath_idx2; Type: INDEX; Schema: public; Owner: postgres -- CREATE INDEX cvtermpath_idx2 ON public.cvtermpath USING btree (subject_id); -- -- Name: cvtermpath_idx3; Type: INDEX; Schema: public; Owner: postgres -- CREATE INDEX cvtermpath_idx3 ON public.cvtermpath USING btree (object_id); -- -- Name: cvtermpath_idx4; Type: INDEX; Schema: public; Owner: postgres -- CREATE INDEX cvtermpath_idx4 ON public.cvtermpath USING btree (cv_id); -- -- Name: cvtermprop_idx1; Type: INDEX; Schema: public; Owner: postgres -- CREATE INDEX cvtermprop_idx1 ON public.cvtermprop USING btree (cvterm_id); -- -- Name: cvtermprop_idx2; Type: INDEX; Schema: public; Owner: postgres -- CREATE INDEX cvtermprop_idx2 ON public.cvtermprop USING btree (type_id); -- -- Name: cvtermsynonym_idx1; Type: INDEX; Schema: public; Owner: postgres -- CREATE INDEX cvtermsynonym_idx1 ON public.cvtermsynonym USING btree (cvterm_id); -- -- Name: cxgn_bac_pipeline_genbank_log_key; Type: INDEX; Schema: public; Owner: postgres -- CREATE INDEX cxgn_bac_pipeline_genbank_log_key ON public.cxgn_bac_pipeline_genbank_log USING btree (search_key, deleted); -- -- Name: cxgn_bac_pipeline_loading_log_key; Type: INDEX; Schema: public; Owner: postgres -- CREATE INDEX cxgn_bac_pipeline_loading_log_key ON public.cxgn_bac_pipeline_loading_log USING btree (search_key, deleted); -- -- Name: cxgn_bac_pipeline_processing_log_key; Type: INDEX; Schema: public; Owner: postgres -- CREATE INDEX cxgn_bac_pipeline_processing_log_key ON public.cxgn_bac_pipeline_processing_log USING btree (search_key, deleted); -- -- Name: cxgn_bac_pipeline_processing_log_timestamp; Type: INDEX; Schema: public; Owner: postgres -- CREATE INDEX cxgn_bac_pipeline_processing_log_timestamp ON public.cxgn_bac_pipeline_processing_log USING btree ("timestamp"); -- -- Name: cxgn_indexedlog_test_feel_free_to_delete_me_key; Type: INDEX; Schema: public; Owner: postgres -- CREATE INDEX cxgn_indexedlog_test_feel_free_to_delete_me_key ON public.cxgn_indexedlog_test_feel_free_to_delete_me USING btree (search_key, deleted); -- -- Name: dbxref_idx1; Type: INDEX; Schema: public; Owner: postgres -- CREATE INDEX dbxref_idx1 ON public.dbxref USING btree (db_id); -- -- Name: dbxref_idx2; Type: INDEX; Schema: public; Owner: postgres -- CREATE INDEX dbxref_idx2 ON public.dbxref USING btree (accession); -- -- Name: dbxref_idx3; Type: INDEX; Schema: public; Owner: postgres -- CREATE INDEX dbxref_idx3 ON public.dbxref USING btree (version); -- -- Name: dbxrefprop_idx1; Type: INDEX; Schema: public; Owner: postgres -- CREATE INDEX dbxrefprop_idx1 ON public.dbxrefprop USING btree (dbxref_id); -- -- Name: dbxrefprop_idx2; Type: INDEX; Schema: public; Owner: postgres -- CREATE INDEX dbxrefprop_idx2 ON public.dbxrefprop USING btree (type_id); -- -- Name: environment_cvterm_idx1; Type: INDEX; Schema: public; Owner: postgres -- CREATE INDEX environment_cvterm_idx1 ON public.environment_cvterm USING btree (environment_id); -- -- Name: environment_cvterm_idx2; Type: INDEX; Schema: public; Owner: postgres -- CREATE INDEX environment_cvterm_idx2 ON public.environment_cvterm USING btree (cvterm_id); -- -- Name: environment_idx1; Type: INDEX; Schema: public; Owner: postgres -- CREATE INDEX environment_idx1 ON public.environment USING btree (uniquename); -- -- Name: feature_cvterm_dbxref_idx1; Type: INDEX; Schema: public; Owner: postgres -- CREATE INDEX feature_cvterm_dbxref_idx1 ON public.feature_cvterm_dbxref USING btree (feature_cvterm_id); -- -- Name: feature_cvterm_dbxref_idx2; Type: INDEX; Schema: public; Owner: postgres -- CREATE INDEX feature_cvterm_dbxref_idx2 ON public.feature_cvterm_dbxref USING btree (dbxref_id); -- -- Name: feature_cvterm_idx1; Type: INDEX; Schema: public; Owner: postgres -- CREATE INDEX feature_cvterm_idx1 ON public.feature_cvterm USING btree (feature_id); -- -- Name: feature_cvterm_idx2; Type: INDEX; Schema: public; Owner: postgres -- CREATE INDEX feature_cvterm_idx2 ON public.feature_cvterm USING btree (cvterm_id); -- -- Name: feature_cvterm_idx3; Type: INDEX; Schema: public; Owner: postgres -- CREATE INDEX feature_cvterm_idx3 ON public.feature_cvterm USING btree (pub_id); -- -- Name: feature_cvterm_pub_idx1; Type: INDEX; Schema: public; Owner: postgres -- CREATE INDEX feature_cvterm_pub_idx1 ON public.feature_cvterm_pub USING btree (feature_cvterm_id); -- -- Name: feature_cvterm_pub_idx2; Type: INDEX; Schema: public; Owner: postgres -- CREATE INDEX feature_cvterm_pub_idx2 ON public.feature_cvterm_pub USING btree (pub_id); -- -- Name: feature_cvtermprop_idx1; Type: INDEX; Schema: public; Owner: postgres -- CREATE INDEX feature_cvtermprop_idx1 ON public.feature_cvtermprop USING btree (feature_cvterm_id); -- -- Name: feature_cvtermprop_idx2; Type: INDEX; Schema: public; Owner: postgres -- CREATE INDEX feature_cvtermprop_idx2 ON public.feature_cvtermprop USING btree (type_id); -- -- Name: feature_dbxref_idx1; Type: INDEX; Schema: public; Owner: postgres -- CREATE INDEX feature_dbxref_idx1 ON public.feature_dbxref USING btree (feature_id); -- -- Name: feature_dbxref_idx2; Type: INDEX; Schema: public; Owner: postgres -- CREATE INDEX feature_dbxref_idx2 ON public.feature_dbxref USING btree (dbxref_id); -- -- Name: feature_genotype_idx1; Type: INDEX; Schema: public; Owner: postgres -- CREATE INDEX feature_genotype_idx1 ON public.feature_genotype USING btree (feature_id); -- -- Name: feature_genotype_idx2; Type: INDEX; Schema: public; Owner: postgres -- CREATE INDEX feature_genotype_idx2 ON public.feature_genotype USING btree (genotype_id); -- -- Name: feature_idx1; Type: INDEX; Schema: public; Owner: postgres -- CREATE INDEX feature_idx1 ON public.feature USING btree (dbxref_id); -- -- Name: feature_idx2; Type: INDEX; Schema: public; Owner: postgres -- CREATE INDEX feature_idx2 ON public.feature USING btree (organism_id); -- -- Name: feature_idx3; Type: INDEX; Schema: public; Owner: postgres -- CREATE INDEX feature_idx3 ON public.feature USING btree (type_id); -- -- Name: feature_idx4; Type: INDEX; Schema: public; Owner: postgres -- CREATE INDEX feature_idx4 ON public.feature USING btree (uniquename); -- -- Name: feature_idx5; Type: INDEX; Schema: public; Owner: postgres -- CREATE INDEX feature_idx5 ON public.feature USING btree (lower((name)::text)); -- -- Name: feature_idx6; Type: INDEX; Schema: public; Owner: postgres -- CREATE INDEX feature_idx6 ON public.feature USING btree (lower(uniquename)); -- -- Name: feature_name_ind1; Type: INDEX; Schema: public; Owner: postgres -- CREATE INDEX feature_name_ind1 ON public.feature USING btree (name); -- -- Name: feature_pub_idx1; Type: INDEX; Schema: public; Owner: postgres -- CREATE INDEX feature_pub_idx1 ON public.feature_pub USING btree (feature_id); -- -- Name: feature_pub_idx2; Type: INDEX; Schema: public; Owner: postgres -- CREATE INDEX feature_pub_idx2 ON public.feature_pub USING btree (pub_id); -- -- Name: feature_relationship_idx1; Type: INDEX; Schema: public; Owner: postgres -- CREATE INDEX feature_relationship_idx1 ON public.feature_relationship USING btree (subject_id); -- -- Name: feature_relationship_idx2; Type: INDEX; Schema: public; Owner: postgres -- CREATE INDEX feature_relationship_idx2 ON public.feature_relationship USING btree (object_id); -- -- Name: feature_relationship_idx3; Type: INDEX; Schema: public; Owner: postgres -- CREATE INDEX feature_relationship_idx3 ON public.feature_relationship USING btree (type_id); -- -- Name: feature_relationship_pub_idx1; Type: INDEX; Schema: public; Owner: postgres -- CREATE INDEX feature_relationship_pub_idx1 ON public.feature_relationship_pub USING btree (feature_relationship_id); -- -- Name: feature_relationship_pub_idx2; Type: INDEX; Schema: public; Owner: postgres -- CREATE INDEX feature_relationship_pub_idx2 ON public.feature_relationship_pub USING btree (pub_id); -- -- Name: feature_relationshipprop_idx1; Type: INDEX; Schema: public; Owner: postgres -- CREATE INDEX feature_relationshipprop_idx1 ON public.feature_relationshipprop USING btree (feature_relationship_id); -- -- Name: feature_relationshipprop_idx2; Type: INDEX; Schema: public; Owner: postgres -- CREATE INDEX feature_relationshipprop_idx2 ON public.feature_relationshipprop USING btree (type_id); -- -- Name: feature_relationshipprop_pub_idx1; Type: INDEX; Schema: public; Owner: postgres -- CREATE INDEX feature_relationshipprop_pub_idx1 ON public.feature_relationshipprop_pub USING btree (feature_relationshipprop_id); -- -- Name: feature_relationshipprop_pub_idx2; Type: INDEX; Schema: public; Owner: postgres -- CREATE INDEX feature_relationshipprop_pub_idx2 ON public.feature_relationshipprop_pub USING btree (pub_id); -- -- Name: feature_synonym_idx1; Type: INDEX; Schema: public; Owner: postgres -- CREATE INDEX feature_synonym_idx1 ON public.feature_synonym USING btree (synonym_id); -- -- Name: feature_synonym_idx2; Type: INDEX; Schema: public; Owner: postgres -- CREATE INDEX feature_synonym_idx2 ON public.feature_synonym USING btree (feature_id); -- -- Name: feature_synonym_idx3; Type: INDEX; Schema: public; Owner: postgres -- CREATE INDEX feature_synonym_idx3 ON public.feature_synonym USING btree (pub_id); -- -- Name: featureloc_idx1; Type: INDEX; Schema: public; Owner: postgres -- CREATE INDEX featureloc_idx1 ON public.featureloc USING btree (feature_id); -- -- Name: featureloc_idx2; Type: INDEX; Schema: public; Owner: postgres -- CREATE INDEX featureloc_idx2 ON public.featureloc USING btree (srcfeature_id); -- -- Name: featureloc_idx3; Type: INDEX; Schema: public; Owner: postgres -- CREATE INDEX featureloc_idx3 ON public.featureloc USING btree (srcfeature_id, fmin, fmax); -- -- Name: featureloc_pub_idx1; Type: INDEX; Schema: public; Owner: postgres -- CREATE INDEX featureloc_pub_idx1 ON public.featureloc_pub USING btree (featureloc_id); -- -- Name: featureloc_pub_idx2; Type: INDEX; Schema: public; Owner: postgres -- CREATE INDEX featureloc_pub_idx2 ON public.featureloc_pub USING btree (pub_id); -- -- Name: INDEX featureprop_c1; Type: COMMENT; Schema: public; Owner: postgres -- COMMENT ON INDEX public.featureprop_c1 IS 'for any one feature, multivalued property-value pairs must be differentiated by rank'; -- -- Name: featureprop_idx1; Type: INDEX; Schema: public; Owner: postgres -- CREATE INDEX featureprop_idx1 ON public.featureprop USING btree (feature_id); -- -- Name: featureprop_idx2; Type: INDEX; Schema: public; Owner: postgres -- CREATE INDEX featureprop_idx2 ON public.featureprop USING btree (type_id); -- -- Name: featureprop_pub_idx1; Type: INDEX; Schema: public; Owner: postgres -- CREATE INDEX featureprop_pub_idx1 ON public.featureprop_pub USING btree (featureprop_id); -- -- Name: featureprop_pub_idx2; Type: INDEX; Schema: public; Owner: postgres -- CREATE INDEX featureprop_pub_idx2 ON public.featureprop_pub USING btree (pub_id); -- -- Name: fpc_band_fpc_fingerprint_id_idx1; Type: INDEX; Schema: public; Owner: postgres -- CREATE INDEX fpc_band_fpc_fingerprint_id_idx1 ON public.fpc_band USING btree (fpc_fingerprint_id); -- -- Name: fpc_build_fpc_fingerprint_fpc_build_id_idx1; Type: INDEX; Schema: public; Owner: postgres -- CREATE INDEX fpc_build_fpc_fingerprint_fpc_build_id_idx1 ON public.fpc_build_fpc_fingerprint USING btree (fpc_build_id); -- -- Name: fpc_build_fpc_fingerprint_fpc_fingerprint_id_idx1; Type: INDEX; Schema: public; Owner: postgres -- CREATE INDEX fpc_build_fpc_fingerprint_fpc_fingerprint_id_idx1 ON public.fpc_build_fpc_fingerprint USING btree (fpc_fingerprint_id); -- -- Name: fpc_fingerprint_clone_id_idx1; Type: INDEX; Schema: public; Owner: postgres -- CREATE INDEX fpc_fingerprint_clone_id_idx1 ON public.fpc_fingerprint USING btree (clone_id); -- -- Name: fpc_fingerprint_enzyme_id_idx1; Type: INDEX; Schema: public; Owner: postgres -- CREATE INDEX fpc_fingerprint_enzyme_id_idx1 ON public.fpc_fingerprint USING btree (enzyme_id); -- -- Name: fpc_fingerprint_gel_name_idx1; Type: INDEX; Schema: public; Owner: postgres -- CREATE INDEX fpc_fingerprint_gel_name_idx1 ON public.fpc_fingerprint USING btree (gel_name); -- -- Name: genotype_id_idx; Type: INDEX; Schema: public; Owner: web_usr -- CREATE INDEX genotype_id_idx ON public.materialized_genoview USING btree (genotype_id) WITH (fillfactor='100'); -- -- Name: genotype_idx1; Type: INDEX; Schema: public; Owner: postgres -- CREATE INDEX genotype_idx1 ON public.genotype USING btree (uniquename); -- -- Name: genotype_idx2; Type: INDEX; Schema: public; Owner: postgres -- CREATE INDEX genotype_idx2 ON public.genotype USING btree (name); -- -- Name: genotypeprop_idx1; Type: INDEX; Schema: public; Owner: postgres -- CREATE INDEX genotypeprop_idx1 ON public.genotypeprop USING btree (genotype_id); -- -- Name: genotypeprop_idx2; Type: INDEX; Schema: public; Owner: postgres -- CREATE INDEX genotypeprop_idx2 ON public.genotypeprop USING btree (type_id); -- -- Name: genotyping_projects_idx; Type: INDEX; Schema: public; Owner: web_usr -- CREATE UNIQUE INDEX genotyping_projects_idx ON public.genotyping_projects USING btree (genotyping_project_id, genotyping_project_name) WITH (fillfactor='100'); -- -- Name: genotyping_projectsxaccessions_idx; Type: INDEX; Schema: public; Owner: web_usr -- CREATE UNIQUE INDEX genotyping_projectsxaccessions_idx ON public.genotyping_projectsxaccessions USING btree (genotyping_project_id, accession_id) WITH (fillfactor='100'); -- -- Name: genotyping_projectsxbreeding_programs_idx; Type: INDEX; Schema: public; Owner: web_usr -- CREATE UNIQUE INDEX genotyping_projectsxbreeding_programs_idx ON public.genotyping_projectsxbreeding_programs USING btree (genotyping_project_id, breeding_program_id) WITH (fillfactor='100'); -- -- Name: genotyping_projectsxgenotyping_protocols_idx; Type: INDEX; Schema: public; Owner: web_usr -- CREATE UNIQUE INDEX genotyping_projectsxgenotyping_protocols_idx ON public.genotyping_projectsxgenotyping_protocols USING btree (genotyping_project_id, genotyping_protocol_id) WITH (fillfactor='100'); -- -- Name: genotyping_projectsxlocations_idx; Type: INDEX; Schema: public; Owner: web_usr -- CREATE UNIQUE INDEX genotyping_projectsxlocations_idx ON public.genotyping_projectsxlocations USING btree (genotyping_project_id, location_id) WITH (fillfactor='100'); -- -- Name: genotyping_projectsxtraits_idx; Type: INDEX; Schema: public; Owner: web_usr -- CREATE UNIQUE INDEX genotyping_projectsxtraits_idx ON public.genotyping_projectsxtraits USING btree (genotyping_project_id, trait_id) WITH (fillfactor='100'); -- -- Name: genotyping_projectsxtrials_idx; Type: INDEX; Schema: public; Owner: web_usr -- CREATE UNIQUE INDEX genotyping_projectsxtrials_idx ON public.genotyping_projectsxtrials USING btree (genotyping_project_id, trial_id) WITH (fillfactor='100'); -- -- Name: genotyping_projectsxyears_idx; Type: INDEX; Schema: public; Owner: web_usr -- CREATE UNIQUE INDEX genotyping_projectsxyears_idx ON public.genotyping_projectsxyears USING btree (genotyping_project_id, year_id) WITH (fillfactor='100'); -- -- Name: genotyping_protocol_id_idx; Type: INDEX; Schema: public; Owner: web_usr -- CREATE INDEX genotyping_protocol_id_idx ON public.materialized_genoview USING btree (genotyping_protocol_id) WITH (fillfactor='100'); -- -- Name: genotyping_protocols_idx; Type: INDEX; Schema: public; Owner: web_usr -- CREATE UNIQUE INDEX genotyping_protocols_idx ON public.genotyping_protocols USING btree (genotyping_protocol_id) WITH (fillfactor='100'); -- -- Name: genotyping_protocolsxgenotyping_projects_idx; Type: INDEX; Schema: public; Owner: web_usr -- CREATE UNIQUE INDEX genotyping_protocolsxgenotyping_projects_idx ON public.genotyping_protocolsxgenotyping_projects USING btree (genotyping_protocol_id, genotyping_project_id) WITH (fillfactor='100'); -- -- Name: genotyping_protocolsxlocations_idx; Type: INDEX; Schema: public; Owner: web_usr -- CREATE UNIQUE INDEX genotyping_protocolsxlocations_idx ON public.genotyping_protocolsxlocations USING btree (genotyping_protocol_id, location_id) WITH (fillfactor='100'); -- -- Name: genotyping_protocolsxplants_idx; Type: INDEX; Schema: public; Owner: web_usr -- CREATE UNIQUE INDEX genotyping_protocolsxplants_idx ON public.genotyping_protocolsxplants USING btree (genotyping_protocol_id, plant_id) WITH (fillfactor='100'); -- -- Name: genotyping_protocolsxplots_idx; Type: INDEX; Schema: public; Owner: web_usr -- CREATE UNIQUE INDEX genotyping_protocolsxplots_idx ON public.genotyping_protocolsxplots USING btree (genotyping_protocol_id, plot_id) WITH (fillfactor='100'); -- -- Name: genotyping_protocolsxseedlots_idx; Type: INDEX; Schema: public; Owner: web_usr -- CREATE UNIQUE INDEX genotyping_protocolsxseedlots_idx ON public.genotyping_protocolsxseedlots USING btree (genotyping_protocol_id, seedlot_id) WITH (fillfactor='100'); -- -- Name: genotyping_protocolsxtrait_components_idx; Type: INDEX; Schema: public; Owner: web_usr -- CREATE UNIQUE INDEX genotyping_protocolsxtrait_components_idx ON public.genotyping_protocolsxtrait_components USING btree (genotyping_protocol_id, trait_component_id) WITH (fillfactor='100'); -- -- Name: genotyping_protocolsxtraits_idx; Type: INDEX; Schema: public; Owner: web_usr -- CREATE UNIQUE INDEX genotyping_protocolsxtraits_idx ON public.genotyping_protocolsxtraits USING btree (genotyping_protocol_id, trait_id) WITH (fillfactor='100'); -- -- Name: genotyping_protocolsxtrial_designs_idx; Type: INDEX; Schema: public; Owner: web_usr -- CREATE UNIQUE INDEX genotyping_protocolsxtrial_designs_idx ON public.genotyping_protocolsxtrial_designs USING btree (genotyping_protocol_id, trial_design_id) WITH (fillfactor='100'); -- -- Name: genotyping_protocolsxtrial_types_idx; Type: INDEX; Schema: public; Owner: web_usr -- CREATE UNIQUE INDEX genotyping_protocolsxtrial_types_idx ON public.genotyping_protocolsxtrial_types USING btree (genotyping_protocol_id, trial_type_id) WITH (fillfactor='100'); -- -- Name: genotyping_protocolsxtrials_idx; Type: INDEX; Schema: public; Owner: web_usr -- CREATE UNIQUE INDEX genotyping_protocolsxtrials_idx ON public.genotyping_protocolsxtrials USING btree (genotyping_protocol_id, trial_id) WITH (fillfactor='100'); -- -- Name: genotyping_protocolsxyears_idx; Type: INDEX; Schema: public; Owner: web_usr -- CREATE UNIQUE INDEX genotyping_protocolsxyears_idx ON public.genotyping_protocolsxyears USING btree (genotyping_protocol_id, year_id) WITH (fillfactor='100'); -- -- Name: itag_loading_log_key; Type: INDEX; Schema: public; Owner: postgres -- CREATE INDEX itag_loading_log_key ON public.itag_loading_log USING btree (search_key, deleted); -- -- Name: location_id_idx; Type: INDEX; Schema: public; Owner: web_usr -- CREATE INDEX location_id_idx ON public.materialized_phenoview USING btree (location_id) WITH (fillfactor='100'); -- -- Name: locations_idx; Type: INDEX; Schema: public; Owner: web_usr -- CREATE UNIQUE INDEX locations_idx ON public.locations USING btree (location_id) WITH (fillfactor='100'); -- -- Name: locationsxgenotyping_projects_idx; Type: INDEX; Schema: public; Owner: web_usr -- CREATE UNIQUE INDEX locationsxgenotyping_projects_idx ON public.locationsxgenotyping_projects USING btree (location_id, genotyping_project_id) WITH (fillfactor='100'); -- -- Name: locationsxplants_idx; Type: INDEX; Schema: public; Owner: web_usr -- CREATE UNIQUE INDEX locationsxplants_idx ON public.locationsxplants USING btree (location_id, plant_id) WITH (fillfactor='100'); -- -- Name: locationsxplots_idx; Type: INDEX; Schema: public; Owner: web_usr -- CREATE UNIQUE INDEX locationsxplots_idx ON public.locationsxplots USING btree (location_id, plot_id) WITH (fillfactor='100'); -- -- Name: locationsxseedlots_idx; Type: INDEX; Schema: public; Owner: web_usr -- CREATE UNIQUE INDEX locationsxseedlots_idx ON public.locationsxseedlots USING btree (location_id, seedlot_id) WITH (fillfactor='100'); -- -- Name: locationsxtrait_components_idx; Type: INDEX; Schema: public; Owner: web_usr -- CREATE UNIQUE INDEX locationsxtrait_components_idx ON public.locationsxtrait_components USING btree (location_id, trait_component_id) WITH (fillfactor='100'); -- -- Name: locationsxtraits_idx; Type: INDEX; Schema: public; Owner: web_usr -- CREATE UNIQUE INDEX locationsxtraits_idx ON public.locationsxtraits USING btree (location_id, trait_id) WITH (fillfactor='100'); -- -- Name: locationsxtrial_designs_idx; Type: INDEX; Schema: public; Owner: web_usr -- CREATE UNIQUE INDEX locationsxtrial_designs_idx ON public.locationsxtrial_designs USING btree (location_id, trial_design_id) WITH (fillfactor='100'); -- -- Name: locationsxtrial_types_idx; Type: INDEX; Schema: public; Owner: web_usr -- CREATE UNIQUE INDEX locationsxtrial_types_idx ON public.locationsxtrial_types USING btree (location_id, trial_type_id) WITH (fillfactor='100'); -- -- Name: locationsxtrials_idx; Type: INDEX; Schema: public; Owner: web_usr -- CREATE UNIQUE INDEX locationsxtrials_idx ON public.locationsxtrials USING btree (location_id, trial_id) WITH (fillfactor='100'); -- -- Name: locationsxyears_idx; Type: INDEX; Schema: public; Owner: web_usr -- CREATE UNIQUE INDEX locationsxyears_idx ON public.locationsxyears USING btree (location_id, year_id) WITH (fillfactor='100'); -- -- Name: materialized_phenotype_jsonb_table_germplasm_stock_idx; Type: INDEX; Schema: public; Owner: web_usr -- CREATE INDEX materialized_phenotype_jsonb_table_germplasm_stock_idx ON public.materialized_phenotype_jsonb_table USING btree (germplasm_stock_id) WITH (fillfactor='100'); -- -- Name: materialized_phenotype_jsonb_table_germplasm_uniquename_idx; Type: INDEX; Schema: public; Owner: web_usr -- CREATE INDEX materialized_phenotype_jsonb_table_germplasm_uniquename_idx ON public.materialized_phenotype_jsonb_table USING btree (germplasm_uniquename) WITH (fillfactor='100'); -- -- Name: materialized_phenotype_jsonb_table_obsunit_stock_idx; Type: INDEX; Schema: public; Owner: web_usr -- CREATE UNIQUE INDEX materialized_phenotype_jsonb_table_obsunit_stock_idx ON public.materialized_phenotype_jsonb_table USING btree (observationunit_stock_id) WITH (fillfactor='100'); -- -- Name: materialized_phenotype_jsonb_table_obsunit_uniquename_idx; Type: INDEX; Schema: public; Owner: web_usr -- CREATE INDEX materialized_phenotype_jsonb_table_obsunit_uniquename_idx ON public.materialized_phenotype_jsonb_table USING btree (observationunit_uniquename) WITH (fillfactor='100'); -- -- Name: materialized_phenotype_jsonb_table_trial_idx; Type: INDEX; Schema: public; Owner: web_usr -- CREATE INDEX materialized_phenotype_jsonb_table_trial_idx ON public.materialized_phenotype_jsonb_table USING btree (trial_id) WITH (fillfactor='100'); -- -- Name: materialized_phenotype_jsonb_table_trial_name_idx; Type: INDEX; Schema: public; Owner: web_usr -- CREATE INDEX materialized_phenotype_jsonb_table_trial_name_idx ON public.materialized_phenotype_jsonb_table USING btree (trial_name) WITH (fillfactor='100'); -- -- Name: materialized_stockprop_stock_idx; Type: INDEX; Schema: public; Owner: web_usr -- CREATE UNIQUE INDEX materialized_stockprop_stock_idx ON public.materialized_stockprop USING btree (stock_id) WITH (fillfactor='100'); -- -- Name: nd_experiment_pub_idx1; Type: INDEX; Schema: public; Owner: postgres -- CREATE INDEX nd_experiment_pub_idx1 ON public.nd_experiment_pub USING btree (nd_experiment_id); -- -- Name: nd_experiment_pub_idx2; Type: INDEX; Schema: public; Owner: postgres -- CREATE INDEX nd_experiment_pub_idx2 ON public.nd_experiment_pub USING btree (pub_id); -- -- Name: organism_dbxref_idx1; Type: INDEX; Schema: public; Owner: postgres -- CREATE INDEX organism_dbxref_idx1 ON public.organism_dbxref USING btree (organism_id); -- -- Name: organism_dbxref_idx2; Type: INDEX; Schema: public; Owner: postgres -- CREATE INDEX organism_dbxref_idx2 ON public.organism_dbxref USING btree (dbxref_id); -- -- Name: organism_relationship_idx1; Type: INDEX; Schema: public; Owner: postgres -- CREATE INDEX organism_relationship_idx1 ON public.organism_relationship USING btree (subject_id); -- -- Name: organism_relationship_idx2; Type: INDEX; Schema: public; Owner: postgres -- CREATE INDEX organism_relationship_idx2 ON public.organism_relationship USING btree (object_id); -- -- Name: organism_relationship_idx3; Type: INDEX; Schema: public; Owner: postgres -- CREATE INDEX organism_relationship_idx3 ON public.organism_relationship USING btree (type_id); -- -- Name: organismpath_idx1; Type: INDEX; Schema: public; Owner: postgres -- CREATE INDEX organismpath_idx1 ON public.organismpath USING btree (type_id); -- -- Name: organismpath_idx2; Type: INDEX; Schema: public; Owner: postgres -- CREATE INDEX organismpath_idx2 ON public.organismpath USING btree (subject_id); -- -- Name: organismpath_idx3; Type: INDEX; Schema: public; Owner: postgres -- CREATE INDEX organismpath_idx3 ON public.organismpath USING btree (object_id); -- -- Name: organismprop_idx1; Type: INDEX; Schema: public; Owner: postgres -- CREATE INDEX organismprop_idx1 ON public.organismprop USING btree (organism_id); -- -- Name: organismprop_idx2; Type: INDEX; Schema: public; Owner: postgres -- CREATE INDEX organismprop_idx2 ON public.organismprop USING btree (type_id); -- -- Name: phendesc_idx1; Type: INDEX; Schema: public; Owner: postgres -- CREATE INDEX phendesc_idx1 ON public.phendesc USING btree (genotype_id); -- -- Name: phendesc_idx2; Type: INDEX; Schema: public; Owner: postgres -- CREATE INDEX phendesc_idx2 ON public.phendesc USING btree (environment_id); -- -- Name: phendesc_idx3; Type: INDEX; Schema: public; Owner: postgres -- CREATE INDEX phendesc_idx3 ON public.phendesc USING btree (pub_id); -- -- Name: phenotype_c1; Type: INDEX; Schema: public; Owner: postgres -- CREATE UNIQUE INDEX phenotype_c1 ON public.phenotype USING btree (uniquename); -- -- Name: phenotype_comparison_cvterm_idx1; Type: INDEX; Schema: public; Owner: postgres -- CREATE INDEX phenotype_comparison_cvterm_idx1 ON public.phenotype_comparison_cvterm USING btree (phenotype_comparison_id); -- -- Name: phenotype_comparison_cvterm_idx2; Type: INDEX; Schema: public; Owner: postgres -- CREATE INDEX phenotype_comparison_cvterm_idx2 ON public.phenotype_comparison_cvterm USING btree (cvterm_id); -- -- Name: phenotype_comparison_idx1; Type: INDEX; Schema: public; Owner: postgres -- CREATE INDEX phenotype_comparison_idx1 ON public.phenotype_comparison USING btree (genotype1_id); -- -- Name: phenotype_comparison_idx2; Type: INDEX; Schema: public; Owner: postgres -- CREATE INDEX phenotype_comparison_idx2 ON public.phenotype_comparison USING btree (genotype2_id); -- -- Name: phenotype_comparison_idx4; Type: INDEX; Schema: public; Owner: postgres -- CREATE INDEX phenotype_comparison_idx4 ON public.phenotype_comparison USING btree (pub_id); -- -- Name: phenotype_cvterm_idx1; Type: INDEX; Schema: public; Owner: postgres -- CREATE INDEX phenotype_cvterm_idx1 ON public.phenotype_cvterm USING btree (phenotype_id); -- -- Name: phenotype_cvterm_idx2; Type: INDEX; Schema: public; Owner: postgres -- CREATE INDEX phenotype_cvterm_idx2 ON public.phenotype_cvterm USING btree (cvterm_id); -- -- Name: phenotype_idx1; Type: INDEX; Schema: public; Owner: postgres -- CREATE INDEX phenotype_idx1 ON public.phenotype USING btree (cvalue_id); -- -- Name: phenotype_idx2; Type: INDEX; Schema: public; Owner: postgres -- CREATE INDEX phenotype_idx2 ON public.phenotype USING btree (observable_id); -- -- Name: phenotype_idx3; Type: INDEX; Schema: public; Owner: postgres -- CREATE INDEX phenotype_idx3 ON public.phenotype USING btree (attr_id); -- -- Name: phenotypeprop_idx1; Type: INDEX; Schema: public; Owner: postgres -- CREATE INDEX phenotypeprop_idx1 ON public.phenotypeprop USING btree (phenotype_id); -- -- Name: phenotypeprop_idx2; Type: INDEX; Schema: public; Owner: postgres -- CREATE INDEX phenotypeprop_idx2 ON public.phenotypeprop USING btree (type_id); -- -- Name: phenstatement_idx1; Type: INDEX; Schema: public; Owner: postgres -- CREATE INDEX phenstatement_idx1 ON public.phenstatement USING btree (genotype_id); -- -- Name: phenstatement_idx2; Type: INDEX; Schema: public; Owner: postgres -- CREATE INDEX phenstatement_idx2 ON public.phenstatement USING btree (phenotype_id); -- -- Name: phylonode_dbxref_idx1; Type: INDEX; Schema: public; Owner: postgres -- CREATE INDEX phylonode_dbxref_idx1 ON public.phylonode_dbxref USING btree (phylonode_id); -- -- Name: phylonode_dbxref_idx2; Type: INDEX; Schema: public; Owner: postgres -- CREATE INDEX phylonode_dbxref_idx2 ON public.phylonode_dbxref USING btree (dbxref_id); -- -- Name: phylonode_feature_id_idx; Type: INDEX; Schema: public; Owner: postgres -- CREATE INDEX phylonode_feature_id_idx ON public.phylonode USING btree (feature_id); -- -- Name: phylonode_organism_idx1; Type: INDEX; Schema: public; Owner: postgres -- CREATE INDEX phylonode_organism_idx1 ON public.phylonode_organism USING btree (phylonode_id); -- -- Name: phylonode_organism_idx2; Type: INDEX; Schema: public; Owner: postgres -- CREATE INDEX phylonode_organism_idx2 ON public.phylonode_organism USING btree (organism_id); -- -- Name: phylonode_pub_idx1; Type: INDEX; Schema: public; Owner: postgres -- CREATE INDEX phylonode_pub_idx1 ON public.phylonode_pub USING btree (phylonode_id); -- -- Name: phylonode_pub_idx2; Type: INDEX; Schema: public; Owner: postgres -- CREATE INDEX phylonode_pub_idx2 ON public.phylonode_pub USING btree (pub_id); -- -- Name: phylonode_relationship_idx1; Type: INDEX; Schema: public; Owner: postgres -- CREATE INDEX phylonode_relationship_idx1 ON public.phylonode_relationship USING btree (subject_id); -- -- Name: phylonode_relationship_idx2; Type: INDEX; Schema: public; Owner: postgres -- CREATE INDEX phylonode_relationship_idx2 ON public.phylonode_relationship USING btree (object_id); -- -- Name: phylonode_relationship_idx3; Type: INDEX; Schema: public; Owner: postgres -- CREATE INDEX phylonode_relationship_idx3 ON public.phylonode_relationship USING btree (type_id); -- -- Name: phylonodeprop_idx1; Type: INDEX; Schema: public; Owner: postgres -- CREATE INDEX phylonodeprop_idx1 ON public.phylonodeprop USING btree (phylonode_id); -- -- Name: phylonodeprop_idx2; Type: INDEX; Schema: public; Owner: postgres -- CREATE INDEX phylonodeprop_idx2 ON public.phylonodeprop USING btree (type_id); -- -- Name: phylotree_idx1; Type: INDEX; Schema: public; Owner: postgres -- CREATE INDEX phylotree_idx1 ON public.phylotree USING btree (phylotree_id); -- -- Name: phylotree_pub_idx1; Type: INDEX; Schema: public; Owner: postgres -- CREATE INDEX phylotree_pub_idx1 ON public.phylotree_pub USING btree (phylotree_id); -- -- Name: phylotree_pub_idx2; Type: INDEX; Schema: public; Owner: postgres -- CREATE INDEX phylotree_pub_idx2 ON public.phylotree_pub USING btree (pub_id); -- -- Name: plants_idx; Type: INDEX; Schema: public; Owner: web_usr -- CREATE UNIQUE INDEX plants_idx ON public.plants USING btree (plant_id) WITH (fillfactor='100'); -- -- Name: plantsxplots_idx; Type: INDEX; Schema: public; Owner: web_usr -- CREATE UNIQUE INDEX plantsxplots_idx ON public.plantsxplots USING btree (plant_id, plot_id) WITH (fillfactor='100'); -- -- Name: plantsxseedlots_idx; Type: INDEX; Schema: public; Owner: web_usr -- CREATE UNIQUE INDEX plantsxseedlots_idx ON public.plantsxseedlots USING btree (plant_id, seedlot_id) WITH (fillfactor='100'); -- -- Name: plantsxtrait_components_idx; Type: INDEX; Schema: public; Owner: web_usr -- CREATE UNIQUE INDEX plantsxtrait_components_idx ON public.plantsxtrait_components USING btree (plant_id, trait_component_id) WITH (fillfactor='100'); -- -- Name: plantsxtraits_idx; Type: INDEX; Schema: public; Owner: web_usr -- CREATE UNIQUE INDEX plantsxtraits_idx ON public.plantsxtraits USING btree (plant_id, trait_id) WITH (fillfactor='100'); -- -- Name: plantsxtrial_designs_idx; Type: INDEX; Schema: public; Owner: web_usr -- CREATE UNIQUE INDEX plantsxtrial_designs_idx ON public.plantsxtrial_designs USING btree (plant_id, trial_design_id) WITH (fillfactor='100'); -- -- Name: plantsxtrial_types_idx; Type: INDEX; Schema: public; Owner: web_usr -- CREATE UNIQUE INDEX plantsxtrial_types_idx ON public.plantsxtrial_types USING btree (plant_id, trial_type_id) WITH (fillfactor='100'); -- -- Name: plantsxtrials_idx; Type: INDEX; Schema: public; Owner: web_usr -- CREATE UNIQUE INDEX plantsxtrials_idx ON public.plantsxtrials USING btree (plant_id, trial_id) WITH (fillfactor='100'); -- -- Name: plantsxyears_idx; Type: INDEX; Schema: public; Owner: web_usr -- CREATE UNIQUE INDEX plantsxyears_idx ON public.plantsxyears USING btree (plant_id, year_id) WITH (fillfactor='100'); -- -- Name: plots_idx; Type: INDEX; Schema: public; Owner: web_usr -- CREATE UNIQUE INDEX plots_idx ON public.plots USING btree (plot_id) WITH (fillfactor='100'); -- -- Name: plotsxseedlots_idx; Type: INDEX; Schema: public; Owner: web_usr -- CREATE UNIQUE INDEX plotsxseedlots_idx ON public.plotsxseedlots USING btree (plot_id, seedlot_id) WITH (fillfactor='100'); -- -- Name: plotsxtrait_components_idx; Type: INDEX; Schema: public; Owner: web_usr -- CREATE UNIQUE INDEX plotsxtrait_components_idx ON public.plotsxtrait_components USING btree (plot_id, trait_component_id) WITH (fillfactor='100'); -- -- Name: plotsxtraits_idx; Type: INDEX; Schema: public; Owner: web_usr -- CREATE UNIQUE INDEX plotsxtraits_idx ON public.plotsxtraits USING btree (plot_id, trait_id) WITH (fillfactor='100'); -- -- Name: plotsxtrial_designs_idx; Type: INDEX; Schema: public; Owner: web_usr -- CREATE UNIQUE INDEX plotsxtrial_designs_idx ON public.plotsxtrial_designs USING btree (plot_id, trial_design_id) WITH (fillfactor='100'); -- -- Name: plotsxtrial_types_idx; Type: INDEX; Schema: public; Owner: web_usr -- CREATE UNIQUE INDEX plotsxtrial_types_idx ON public.plotsxtrial_types USING btree (plot_id, trial_type_id) WITH (fillfactor='100'); -- -- Name: plotsxtrials_idx; Type: INDEX; Schema: public; Owner: web_usr -- CREATE UNIQUE INDEX plotsxtrials_idx ON public.plotsxtrials USING btree (plot_id, trial_id) WITH (fillfactor='100'); -- -- Name: plotsxyears_idx; Type: INDEX; Schema: public; Owner: web_usr -- CREATE UNIQUE INDEX plotsxyears_idx ON public.plotsxyears USING btree (plot_id, year_id) WITH (fillfactor='100'); -- -- Name: project_contact_idx1; Type: INDEX; Schema: public; Owner: postgres -- CREATE INDEX project_contact_idx1 ON public.project_contact USING btree (project_id); -- -- Name: project_contact_idx2; Type: INDEX; Schema: public; Owner: postgres -- CREATE INDEX project_contact_idx2 ON public.project_contact USING btree (contact_id); -- -- Name: project_pub_idx1; Type: INDEX; Schema: public; Owner: postgres -- CREATE INDEX project_pub_idx1 ON public.project_pub USING btree (project_id); -- -- Name: project_pub_idx2; Type: INDEX; Schema: public; Owner: postgres -- CREATE INDEX project_pub_idx2 ON public.project_pub USING btree (pub_id); -- -- Name: pub_dbxref_idx1; Type: INDEX; Schema: public; Owner: postgres -- CREATE INDEX pub_dbxref_idx1 ON public.pub_dbxref USING btree (pub_id); -- -- Name: pub_dbxref_idx2; Type: INDEX; Schema: public; Owner: postgres -- CREATE INDEX pub_dbxref_idx2 ON public.pub_dbxref USING btree (dbxref_id); -- -- Name: pub_idx1; Type: INDEX; Schema: public; Owner: postgres -- CREATE INDEX pub_idx1 ON public.pub USING btree (type_id); -- -- Name: pub_relationship_idx1; Type: INDEX; Schema: public; Owner: postgres -- CREATE INDEX pub_relationship_idx1 ON public.pub_relationship USING btree (subject_id); -- -- Name: pub_relationship_idx2; Type: INDEX; Schema: public; Owner: postgres -- CREATE INDEX pub_relationship_idx2 ON public.pub_relationship USING btree (object_id); -- -- Name: pub_relationship_idx3; Type: INDEX; Schema: public; Owner: postgres -- CREATE INDEX pub_relationship_idx3 ON public.pub_relationship USING btree (type_id); -- -- Name: pubabstract_index; Type: INDEX; Schema: public; Owner: postgres -- CREATE INDEX pubabstract_index ON public.pubabstract USING gist (abstract_tsvector); -- -- Name: pubauthor_idx2; Type: INDEX; Schema: public; Owner: postgres -- CREATE INDEX pubauthor_idx2 ON public.pubauthor USING btree (pub_id); -- -- Name: pubprop_idx1; Type: INDEX; Schema: public; Owner: postgres -- CREATE INDEX pubprop_idx1 ON public.pubprop USING btree (pub_id); -- -- Name: pubprop_idx2; Type: INDEX; Schema: public; Owner: postgres -- CREATE INDEX pubprop_idx2 ON public.pubprop USING btree (type_id); -- -- Name: seedlot_id_pheno_idx; Type: INDEX; Schema: public; Owner: web_usr -- CREATE INDEX seedlot_id_pheno_idx ON public.materialized_phenoview USING btree (seedlot_id) WITH (fillfactor='100'); -- -- Name: seedlots_idx; Type: INDEX; Schema: public; Owner: web_usr -- CREATE UNIQUE INDEX seedlots_idx ON public.seedlots USING btree (seedlot_id) WITH (fillfactor='100'); -- -- Name: seedlotsxtrait_components_idx; Type: INDEX; Schema: public; Owner: web_usr -- CREATE UNIQUE INDEX seedlotsxtrait_components_idx ON public.seedlotsxtrait_components USING btree (seedlot_id, trait_component_id) WITH (fillfactor='100'); -- -- Name: seedlotsxtraits_idx; Type: INDEX; Schema: public; Owner: web_usr -- CREATE UNIQUE INDEX seedlotsxtraits_idx ON public.seedlotsxtraits USING btree (seedlot_id, trait_id) WITH (fillfactor='100'); -- -- Name: seedlotsxtrial_designs_idx; Type: INDEX; Schema: public; Owner: web_usr -- CREATE UNIQUE INDEX seedlotsxtrial_designs_idx ON public.seedlotsxtrial_designs USING btree (seedlot_id, trial_design_id) WITH (fillfactor='100'); -- -- Name: seedlotsxtrial_types_idx; Type: INDEX; Schema: public; Owner: web_usr -- CREATE UNIQUE INDEX seedlotsxtrial_types_idx ON public.seedlotsxtrial_types USING btree (seedlot_id, trial_type_id) WITH (fillfactor='100'); -- -- Name: seedlotsxtrials_idx; Type: INDEX; Schema: public; Owner: web_usr -- CREATE UNIQUE INDEX seedlotsxtrials_idx ON public.seedlotsxtrials USING btree (seedlot_id, trial_id) WITH (fillfactor='100'); -- -- Name: seedlotsxyears_idx; Type: INDEX; Schema: public; Owner: web_usr -- CREATE UNIQUE INDEX seedlotsxyears_idx ON public.seedlotsxyears USING btree (seedlot_id, year_id) WITH (fillfactor='100'); -- -- Name: stock_cvterm_idx1; Type: INDEX; Schema: public; Owner: postgres -- CREATE INDEX stock_cvterm_idx1 ON public.stock_cvterm USING btree (stock_id); -- -- Name: stock_cvterm_idx2; Type: INDEX; Schema: public; Owner: postgres -- CREATE INDEX stock_cvterm_idx2 ON public.stock_cvterm USING btree (cvterm_id); -- -- Name: stock_cvterm_idx3; Type: INDEX; Schema: public; Owner: postgres -- CREATE INDEX stock_cvterm_idx3 ON public.stock_cvterm USING btree (pub_id); -- -- Name: stock_cvtermprop_idx1; Type: INDEX; Schema: public; Owner: postgres -- CREATE INDEX stock_cvtermprop_idx1 ON public.stock_cvtermprop USING btree (stock_cvterm_id); -- -- Name: stock_cvtermprop_idx2; Type: INDEX; Schema: public; Owner: postgres -- CREATE INDEX stock_cvtermprop_idx2 ON public.stock_cvtermprop USING btree (type_id); -- -- Name: stock_dbxref_idx1; Type: INDEX; Schema: public; Owner: postgres -- CREATE INDEX stock_dbxref_idx1 ON public.stock_dbxref USING btree (stock_id); -- -- Name: stock_dbxref_idx2; Type: INDEX; Schema: public; Owner: postgres -- CREATE INDEX stock_dbxref_idx2 ON public.stock_dbxref USING btree (dbxref_id); -- -- Name: stock_dbxrefprop_idx1; Type: INDEX; Schema: public; Owner: postgres -- CREATE INDEX stock_dbxrefprop_idx1 ON public.stock_dbxrefprop USING btree (stock_dbxref_id); -- -- Name: stock_dbxrefprop_idx2; Type: INDEX; Schema: public; Owner: postgres -- CREATE INDEX stock_dbxrefprop_idx2 ON public.stock_dbxrefprop USING btree (type_id); -- -- Name: stock_genotype_idx1; Type: INDEX; Schema: public; Owner: postgres -- CREATE INDEX stock_genotype_idx1 ON public.stock_genotype USING btree (stock_id); -- -- Name: stock_genotype_idx2; Type: INDEX; Schema: public; Owner: postgres -- CREATE INDEX stock_genotype_idx2 ON public.stock_genotype USING btree (genotype_id); -- -- Name: stock_id_idx; Type: INDEX; Schema: public; Owner: web_usr -- CREATE INDEX stock_id_idx ON public.materialized_phenoview USING btree (stock_id) WITH (fillfactor='100'); -- -- Name: stock_idx1; Type: INDEX; Schema: public; Owner: postgres -- CREATE INDEX stock_idx1 ON public.stock USING btree (dbxref_id); -- -- Name: stock_idx2; Type: INDEX; Schema: public; Owner: postgres -- CREATE INDEX stock_idx2 ON public.stock USING btree (organism_id); -- -- Name: stock_idx3; Type: INDEX; Schema: public; Owner: postgres -- CREATE INDEX stock_idx3 ON public.stock USING btree (type_id); -- -- Name: stock_idx4; Type: INDEX; Schema: public; Owner: postgres -- CREATE INDEX stock_idx4 ON public.stock USING btree (uniquename); -- -- Name: stock_name_ind1; Type: INDEX; Schema: public; Owner: postgres -- CREATE INDEX stock_name_ind1 ON public.stock USING btree (name); -- -- Name: stock_pub_idx1; Type: INDEX; Schema: public; Owner: postgres -- CREATE INDEX stock_pub_idx1 ON public.stock_pub USING btree (stock_id); -- -- Name: stock_pub_idx2; Type: INDEX; Schema: public; Owner: postgres -- CREATE INDEX stock_pub_idx2 ON public.stock_pub USING btree (pub_id); -- -- Name: stock_relationship_idx1; Type: INDEX; Schema: public; Owner: postgres -- CREATE INDEX stock_relationship_idx1 ON public.stock_relationship USING btree (subject_id); -- -- Name: stock_relationship_idx2; Type: INDEX; Schema: public; Owner: postgres -- CREATE INDEX stock_relationship_idx2 ON public.stock_relationship USING btree (object_id); -- -- Name: stock_relationship_idx3; Type: INDEX; Schema: public; Owner: postgres -- CREATE INDEX stock_relationship_idx3 ON public.stock_relationship USING btree (type_id); -- -- Name: stock_relationship_pub_idx1; Type: INDEX; Schema: public; Owner: postgres -- CREATE INDEX stock_relationship_pub_idx1 ON public.stock_relationship_pub USING btree (stock_relationship_id); -- -- Name: stock_relationship_pub_idx2; Type: INDEX; Schema: public; Owner: postgres -- CREATE INDEX stock_relationship_pub_idx2 ON public.stock_relationship_pub USING btree (pub_id); -- -- Name: stockcollection_idx1; Type: INDEX; Schema: public; Owner: postgres -- CREATE INDEX stockcollection_idx1 ON public.stockcollection USING btree (contact_id); -- -- Name: stockcollection_idx2; Type: INDEX; Schema: public; Owner: postgres -- CREATE INDEX stockcollection_idx2 ON public.stockcollection USING btree (type_id); -- -- Name: stockcollection_idx3; Type: INDEX; Schema: public; Owner: postgres -- CREATE INDEX stockcollection_idx3 ON public.stockcollection USING btree (uniquename); -- -- Name: stockcollection_name_ind1; Type: INDEX; Schema: public; Owner: postgres -- CREATE INDEX stockcollection_name_ind1 ON public.stockcollection USING btree (name); -- -- Name: stockcollection_stock_idx1; Type: INDEX; Schema: public; Owner: postgres -- CREATE INDEX stockcollection_stock_idx1 ON public.stockcollection_stock USING btree (stockcollection_id); -- -- Name: stockcollection_stock_idx2; Type: INDEX; Schema: public; Owner: postgres -- CREATE INDEX stockcollection_stock_idx2 ON public.stockcollection_stock USING btree (stock_id); -- -- Name: stockcollectionprop_idx1; Type: INDEX; Schema: public; Owner: postgres -- CREATE INDEX stockcollectionprop_idx1 ON public.stockcollectionprop USING btree (stockcollection_id); -- -- Name: stockcollectionprop_idx2; Type: INDEX; Schema: public; Owner: postgres -- CREATE INDEX stockcollectionprop_idx2 ON public.stockcollectionprop USING btree (type_id); -- -- Name: stockprop_idx1; Type: INDEX; Schema: public; Owner: postgres -- CREATE INDEX stockprop_idx1 ON public.stockprop USING btree (stock_id); -- -- Name: stockprop_idx2; Type: INDEX; Schema: public; Owner: postgres -- CREATE INDEX stockprop_idx2 ON public.stockprop USING btree (type_id); -- -- Name: stockprop_pub_idx1; Type: INDEX; Schema: public; Owner: postgres -- CREATE INDEX stockprop_pub_idx1 ON public.stockprop_pub USING btree (stockprop_id); -- -- Name: stockprop_pub_idx2; Type: INDEX; Schema: public; Owner: postgres -- CREATE INDEX stockprop_pub_idx2 ON public.stockprop_pub USING btree (pub_id); -- -- Name: stockprop_sgn_allele_id; Type: INDEX; Schema: public; Owner: postgres -- CREATE INDEX stockprop_sgn_allele_id ON public.stockprop USING btree (((value)::numeric)) WHERE (type_id = 57425); -- -- Name: synonym_idx1; Type: INDEX; Schema: public; Owner: postgres -- CREATE INDEX synonym_idx1 ON public.synonym USING btree (type_id); -- -- Name: synonym_idx2; Type: INDEX; Schema: public; Owner: postgres -- CREATE INDEX synonym_idx2 ON public.synonym USING btree (lower((synonym_sgml)::text)); -- -- Name: tmp_cds_handler_fmax; Type: INDEX; Schema: public; Owner: postgres -- CREATE INDEX tmp_cds_handler_fmax ON public.tmp_cds_handler USING btree (fmax); -- -- Name: tmp_cds_handler_relationship_grandparent; Type: INDEX; Schema: public; Owner: postgres -- CREATE INDEX tmp_cds_handler_relationship_grandparent ON public.tmp_cds_handler_relationship USING btree (grandparent_id); -- -- Name: tmp_cds_handler_seq_id; Type: INDEX; Schema: public; Owner: postgres -- CREATE INDEX tmp_cds_handler_seq_id ON public.tmp_cds_handler USING btree (seq_id); -- -- Name: tmp_gff_load_cache_idx1; Type: INDEX; Schema: public; Owner: postgres -- CREATE INDEX tmp_gff_load_cache_idx1 ON public.tmp_gff_load_cache USING btree (feature_id); -- -- Name: tmp_gff_load_cache_idx2; Type: INDEX; Schema: public; Owner: postgres -- CREATE INDEX tmp_gff_load_cache_idx2 ON public.tmp_gff_load_cache USING btree (uniquename); -- -- Name: tmp_gff_load_cache_idx3; Type: INDEX; Schema: public; Owner: postgres -- CREATE INDEX tmp_gff_load_cache_idx3 ON public.tmp_gff_load_cache USING btree (uniquename, type_id, organism_id); -- -- Name: trait_components_idx; Type: INDEX; Schema: public; Owner: web_usr -- CREATE UNIQUE INDEX trait_components_idx ON public.trait_components USING btree (trait_component_id) WITH (fillfactor='100'); -- -- Name: trait_componentsxtraits_idx; Type: INDEX; Schema: public; Owner: web_usr -- CREATE UNIQUE INDEX trait_componentsxtraits_idx ON public.trait_componentsxtraits USING btree (trait_component_id, trait_id) WITH (fillfactor='100'); -- -- Name: trait_componentsxtrial_designs_idx; Type: INDEX; Schema: public; Owner: web_usr -- CREATE UNIQUE INDEX trait_componentsxtrial_designs_idx ON public.trait_componentsxtrial_designs USING btree (trait_component_id, trial_design_id) WITH (fillfactor='100'); -- -- Name: trait_componentsxtrial_types_idx; Type: INDEX; Schema: public; Owner: web_usr -- CREATE UNIQUE INDEX trait_componentsxtrial_types_idx ON public.trait_componentsxtrial_types USING btree (trait_component_id, trial_type_id) WITH (fillfactor='100'); -- -- Name: trait_componentsxtrials_idx; Type: INDEX; Schema: public; Owner: web_usr -- CREATE UNIQUE INDEX trait_componentsxtrials_idx ON public.trait_componentsxtrials USING btree (trait_component_id, trial_id) WITH (fillfactor='100'); -- -- Name: trait_componentsxyears_idx; Type: INDEX; Schema: public; Owner: web_usr -- CREATE UNIQUE INDEX trait_componentsxyears_idx ON public.trait_componentsxyears USING btree (trait_component_id, year_id) WITH (fillfactor='100'); -- -- Name: traits_idx; Type: INDEX; Schema: public; Owner: web_usr -- CREATE UNIQUE INDEX traits_idx ON public.traits USING btree (trait_id) WITH (fillfactor='100'); -- -- Name: traitsxtrial_designs_idx; Type: INDEX; Schema: public; Owner: web_usr -- CREATE UNIQUE INDEX traitsxtrial_designs_idx ON public.traitsxtrial_designs USING btree (trait_id, trial_design_id) WITH (fillfactor='100'); -- -- Name: traitsxtrial_types_idx; Type: INDEX; Schema: public; Owner: web_usr -- CREATE UNIQUE INDEX traitsxtrial_types_idx ON public.traitsxtrial_types USING btree (trait_id, trial_type_id) WITH (fillfactor='100'); -- -- Name: traitsxtrials_idx; Type: INDEX; Schema: public; Owner: web_usr -- CREATE UNIQUE INDEX traitsxtrials_idx ON public.traitsxtrials USING btree (trait_id, trial_id) WITH (fillfactor='100'); -- -- Name: traitsxyears_idx; Type: INDEX; Schema: public; Owner: web_usr -- CREATE UNIQUE INDEX traitsxyears_idx ON public.traitsxyears USING btree (trait_id, year_id) WITH (fillfactor='100'); -- -- Name: trial_designs_idx; Type: INDEX; Schema: public; Owner: web_usr -- CREATE UNIQUE INDEX trial_designs_idx ON public.trial_designs USING btree (trial_design_id) WITH (fillfactor='100'); -- -- Name: trial_designsxtrial_types_idx; Type: INDEX; Schema: public; Owner: web_usr -- CREATE UNIQUE INDEX trial_designsxtrial_types_idx ON public.trial_designsxtrial_types USING btree (trial_design_id, trial_type_id) WITH (fillfactor='100'); -- -- Name: trial_designsxtrials_idx; Type: INDEX; Schema: public; Owner: web_usr -- CREATE UNIQUE INDEX trial_designsxtrials_idx ON public.trial_designsxtrials USING btree (trial_id, trial_design_id) WITH (fillfactor='100'); -- -- Name: trial_designsxyears_idx; Type: INDEX; Schema: public; Owner: web_usr -- CREATE UNIQUE INDEX trial_designsxyears_idx ON public.trial_designsxyears USING btree (trial_design_id, year_id) WITH (fillfactor='100'); -- -- Name: trial_id_idx; Type: INDEX; Schema: public; Owner: web_usr -- CREATE INDEX trial_id_idx ON public.materialized_phenoview USING btree (trial_id) WITH (fillfactor='100'); -- -- Name: trial_types_idx; Type: INDEX; Schema: public; Owner: web_usr -- CREATE UNIQUE INDEX trial_types_idx ON public.trial_types USING btree (trial_type_id) WITH (fillfactor='100'); -- -- Name: trial_typesxtrials_idx; Type: INDEX; Schema: public; Owner: web_usr -- CREATE UNIQUE INDEX trial_typesxtrials_idx ON public.trial_typesxtrials USING btree (trial_id, trial_type_id) WITH (fillfactor='100'); -- -- Name: trial_typesxyears_idx; Type: INDEX; Schema: public; Owner: web_usr -- CREATE UNIQUE INDEX trial_typesxyears_idx ON public.trial_typesxyears USING btree (trial_type_id, year_id) WITH (fillfactor='100'); -- -- Name: trials_idx; Type: INDEX; Schema: public; Owner: web_usr -- CREATE UNIQUE INDEX trials_idx ON public.trials USING btree (trial_id) WITH (fillfactor='100'); -- -- Name: trialsxgenotyping_projects_idx; Type: INDEX; Schema: public; Owner: web_usr -- CREATE UNIQUE INDEX trialsxgenotyping_projects_idx ON public.trialsxgenotyping_projects USING btree (trial_id, genotyping_project_id) WITH (fillfactor='100'); -- -- Name: trialsxyears_idx; Type: INDEX; Schema: public; Owner: web_usr -- CREATE UNIQUE INDEX trialsxyears_idx ON public.trialsxyears USING btree (trial_id, year_id) WITH (fillfactor='100'); -- -- Name: unigene_relations_superceded_by; Type: INDEX; Schema: public; Owner: postgres -- CREATE INDEX unigene_relations_superceded_by ON public.unigene_relations USING btree (superceded_by); -- -- Name: unq_geno_idx; Type: INDEX; Schema: public; Owner: web_usr -- CREATE UNIQUE INDEX unq_geno_idx ON public.materialized_genoview USING btree (accession_id, genotype_id) WITH (fillfactor='100'); -- -- Name: unq_pheno_idx; Type: INDEX; Schema: public; Owner: web_usr -- CREATE UNIQUE INDEX unq_pheno_idx ON public.materialized_phenoview USING btree (stock_id, phenotype_id, trait_id) WITH (fillfactor='100'); -- -- Name: year_id_idx; Type: INDEX; Schema: public; Owner: web_usr -- CREATE INDEX year_id_idx ON public.materialized_phenoview USING btree (year_id) WITH (fillfactor='100'); -- -- Name: years_idx; Type: INDEX; Schema: public; Owner: web_usr -- CREATE UNIQUE INDEX years_idx ON public.years USING btree (year_id) WITH (fillfactor='100'); -- -- Name: annotation_target_id_idx; Type: INDEX; Schema: sgn; Owner: postgres -- CREATE INDEX annotation_target_id_idx ON sgn.manual_annotations USING btree (annotation_target_id, annotation_target_type_id); -- -- Name: apply_id_idx; Type: INDEX; Schema: sgn; Owner: postgres -- CREATE INDEX apply_id_idx ON sgn.blast_annotations USING btree (apply_id); -- -- Name: blast_annotation_id_idx; Type: INDEX; Schema: sgn; Owner: postgres -- CREATE INDEX blast_annotation_id_idx ON sgn.blast_hits USING btree (blast_annotation_id); -- -- Name: blast_defline_defline_fulltext_index; Type: INDEX; Schema: sgn; Owner: postgres -- CREATE INDEX blast_defline_defline_fulltext_index ON sgn.blast_defline USING gist (defline_fulltext); -- -- Name: build_nr_idx; Type: INDEX; Schema: sgn; Owner: postgres -- CREATE INDEX build_nr_idx ON sgn.unigene_build USING btree (build_nr); -- -- Name: cds_id_idx; Type: INDEX; Schema: sgn; Owner: postgres -- CREATE INDEX cds_id_idx ON sgn.domain_match USING btree (cds_id); -- -- Name: cds_id_idx2; Type: INDEX; Schema: sgn; Owner: postgres -- CREATE INDEX cds_id_idx2 ON sgn.family_member USING btree (cds_id); -- -- Name: cds_protein_feature_id_idx; Type: INDEX; Schema: sgn; Owner: postgres -- CREATE INDEX cds_protein_feature_id_idx ON sgn.cds USING btree (protein_feature_id); -- -- Name: clone_group_id_idx; Type: INDEX; Schema: sgn; Owner: postgres -- CREATE INDEX clone_group_id_idx ON sgn.clone USING btree (clone_group_id); -- -- Name: clone_id_idx; Type: INDEX; Schema: sgn; Owner: postgres -- CREATE INDEX clone_id_idx ON sgn.microarray USING btree (clone_id); -- -- Name: clone_id_idx2; Type: INDEX; Schema: sgn; Owner: postgres -- CREATE INDEX clone_id_idx2 ON sgn.seqread USING btree (clone_id); -- -- Name: clone_name_idx; Type: INDEX; Schema: sgn; Owner: postgres -- CREATE INDEX clone_name_idx ON sgn.clone USING btree (clone_name); -- -- Name: cluster_no_2_idx; Type: INDEX; Schema: sgn; Owner: postgres -- CREATE INDEX cluster_no_2_idx ON sgn.unigene USING btree (cluster_no, contig_no); -- -- Name: cluster_no_idx; Type: INDEX; Schema: sgn; Owner: postgres -- CREATE INDEX cluster_no_idx ON sgn.unigene USING btree (cluster_no); -- -- Name: common_name_common_name_case_insensitive_unique; Type: INDEX; Schema: sgn; Owner: postgres -- CREATE UNIQUE INDEX common_name_common_name_case_insensitive_unique ON sgn.common_name USING btree (lower((common_name)::text)); -- -- Name: confidence_name_idx; Type: INDEX; Schema: sgn; Owner: postgres -- CREATE INDEX confidence_name_idx ON sgn.deprecated_marker_confidences USING btree (confidence_name, legacy_conf_id); -- -- Name: consensi_id_idx; Type: INDEX; Schema: sgn; Owner: postgres -- CREATE INDEX consensi_id_idx ON sgn.unigene USING btree (consensi_id); -- -- Name: content_specific_tag_idx; Type: INDEX; Schema: sgn; Owner: postgres -- CREATE INDEX content_specific_tag_idx ON sgn.microarray USING btree (content_specific_tag); -- -- Name: current_tc_id_idx; Type: INDEX; Schema: sgn; Owner: postgres -- CREATE INDEX current_tc_id_idx ON sgn.tigrtc_tracking USING btree (current_tc_id); -- -- Name: defline_annotation_idx; Type: INDEX; Schema: sgn; Owner: postgres -- CREATE INDEX defline_annotation_idx ON sgn.blast_hits USING btree (defline_id, blast_annotation_id); -- -- Name: defline_id_idx; Type: INDEX; Schema: sgn; Owner: postgres -- CREATE INDEX defline_id_idx ON sgn.blast_hits USING btree (defline_id); -- -- Name: domain_id_idx; Type: INDEX; Schema: sgn; Owner: postgres -- CREATE INDEX domain_id_idx ON sgn.domain_match USING btree (domain_id); -- -- Name: enzyme_name_idx; Type: INDEX; Schema: sgn; Owner: postgres -- CREATE INDEX enzyme_name_idx ON sgn.enzymes USING btree (enzyme_name); -- -- Name: est_dbxref_idx1; Type: INDEX; Schema: sgn; Owner: postgres -- CREATE INDEX est_dbxref_idx1 ON sgn.est_dbxref USING btree (est_id); -- -- Name: est_dbxref_idx2; Type: INDEX; Schema: sgn; Owner: postgres -- CREATE INDEX est_dbxref_idx2 ON sgn.est_dbxref USING btree (dbxref_id); -- -- Name: est_id_2_idx; Type: INDEX; Schema: sgn; Owner: postgres -- CREATE INDEX est_id_2_idx ON sgn.qc_report USING btree (est_id, hqi_start, hqi_length); -- -- Name: est_id_2_idx2; Type: INDEX; Schema: sgn; Owner: postgres -- CREATE INDEX est_id_2_idx2 ON sgn.trim_feature USING btree (est_id, type); -- -- Name: est_id_idx; Type: INDEX; Schema: sgn; Owner: postgres -- CREATE INDEX est_id_idx ON sgn.trim_feature USING btree (est_id); -- -- Name: est_id_idx2; Type: INDEX; Schema: sgn; Owner: postgres -- CREATE INDEX est_id_idx2 ON sgn.unigene_member USING btree (est_id); -- -- Name: evalue_idx; Type: INDEX; Schema: sgn; Owner: postgres -- CREATE INDEX evalue_idx ON sgn.blast_hits USING btree (evalue); -- -- Name: family_build_id_idx; Type: INDEX; Schema: sgn; Owner: postgres -- CREATE INDEX family_build_id_idx ON sgn.family USING btree (family_build_id); -- -- Name: family_id_idx; Type: INDEX; Schema: sgn; Owner: postgres -- CREATE INDEX family_id_idx ON sgn.family_member USING btree (family_id); -- -- Name: flags_2_idx; Type: INDEX; Schema: sgn; Owner: postgres -- CREATE INDEX flags_2_idx ON sgn.est USING btree (flags, status); -- -- Name: flags_idx; Type: INDEX; Schema: sgn; Owner: postgres -- CREATE INDEX flags_idx ON sgn.est USING btree (flags); -- -- Name: go_accession_idx; Type: INDEX; Schema: sgn; Owner: postgres -- CREATE INDEX go_accession_idx ON sgn.go USING btree (go_accession); -- -- Name: go_accession_idx2; Type: INDEX; Schema: sgn; Owner: postgres -- CREATE INDEX go_accession_idx2 ON sgn.interpro_go USING btree (go_accession); -- -- Name: group_id_idx; Type: INDEX; Schema: sgn; Owner: postgres -- CREATE INDEX group_id_idx ON sgn.family_build USING btree (group_id); -- -- Name: group_id_idx2; Type: INDEX; Schema: sgn; Owner: postgres -- CREATE INDEX group_id_idx2 ON sgn.group_linkage USING btree (group_id); -- -- Name: il_info_lg_name; Type: INDEX; Schema: sgn; Owner: postgres -- CREATE INDEX il_info_lg_name ON sgn.il_info USING btree (lg_name); -- -- Name: il_info_map_id; Type: INDEX; Schema: sgn; Owner: postgres -- CREATE INDEX il_info_map_id ON sgn.il_info USING btree (map_id); -- -- Name: il_info_population_id; Type: INDEX; Schema: sgn; Owner: postgres -- CREATE INDEX il_info_population_id ON sgn.il_info USING btree (population_id); -- -- Name: internal_id_idx; Type: INDEX; Schema: sgn; Owner: postgres -- CREATE INDEX internal_id_idx ON sgn.id_linkage USING btree (internal_id); -- -- Name: interpro_accession_idx; Type: INDEX; Schema: sgn; Owner: postgres -- CREATE INDEX interpro_accession_idx ON sgn.interpro USING btree (interpro_accession); -- -- Name: interpro_accession_idx2; Type: INDEX; Schema: sgn; Owner: postgres -- CREATE INDEX interpro_accession_idx2 ON sgn.interpro_go USING btree (interpro_accession); -- -- Name: interpro_id_idx; Type: INDEX; Schema: sgn; Owner: postgres -- CREATE INDEX interpro_id_idx ON sgn.domain USING btree (interpro_id); -- -- Name: legacy_id_idx; Type: INDEX; Schema: sgn; Owner: postgres -- CREATE INDEX legacy_id_idx ON sgn.deprecated_maps USING btree (legacy_id); -- -- Name: library_id_idx; Type: INDEX; Schema: sgn; Owner: postgres -- CREATE INDEX library_id_idx ON sgn.clone USING btree (library_id); -- -- Name: link_id_idx; Type: INDEX; Schema: sgn; Owner: postgres -- CREATE INDEX link_id_idx ON sgn.id_linkage USING btree (link_id); -- -- Name: manual_annotations_annotation_text_fulltext_index; Type: INDEX; Schema: sgn; Owner: postgres -- CREATE INDEX manual_annotations_annotation_text_fulltext_index ON sgn.manual_annotations USING gist (annotation_text_fulltext); -- -- Name: map_id_idx; Type: INDEX; Schema: sgn; Owner: postgres -- CREATE INDEX map_id_idx ON sgn.deprecated_map_cross USING btree (map_id, organism_id); -- -- Name: map_id_idx2; Type: INDEX; Schema: sgn; Owner: postgres -- CREATE INDEX map_id_idx2 ON sgn.deprecated_mapdata USING btree (map_id, lg_id); -- -- Name: marker_id_idx; Type: INDEX; Schema: sgn; Owner: postgres -- CREATE INDEX marker_id_idx ON sgn.cos_markers USING btree (marker_id, cos_id); -- -- Name: marker_id_idx2; Type: INDEX; Schema: sgn; Owner: postgres -- CREATE INDEX marker_id_idx2 ON sgn.cosii_ortholog USING btree (marker_id, unigene_id); -- -- Name: marker_id_idx3; Type: INDEX; Schema: sgn; Owner: postgres -- CREATE INDEX marker_id_idx3 ON sgn.ests_mapped_by_clone USING btree (marker_id, clone_id); -- -- Name: marker_id_idx4; Type: INDEX; Schema: sgn; Owner: postgres -- CREATE INDEX marker_id_idx4 ON sgn.deprecated_marker_locations USING btree (marker_id, loc_id); -- -- Name: marker_id_idx5; Type: INDEX; Schema: sgn; Owner: postgres -- CREATE INDEX marker_id_idx5 ON sgn.p_markers USING btree (marker_id, est_clone_id, p_mrkr_name); -- -- Name: marker_id_idx6; Type: INDEX; Schema: sgn; Owner: postgres -- CREATE INDEX marker_id_idx6 ON sgn.pcr_experiment USING btree (marker_id, experiment_type_id); -- -- Name: marker_id_idx7; Type: INDEX; Schema: sgn; Owner: postgres -- CREATE INDEX marker_id_idx7 ON sgn.ssr USING btree (marker_id, ssr_name); -- -- Name: marker_id_idx8; Type: INDEX; Schema: sgn; Owner: postgres -- CREATE INDEX marker_id_idx8 ON sgn.tm_markers USING btree (marker_id, tm_name, old_cos_id); -- -- Name: marker_type_idx; Type: INDEX; Schema: sgn; Owner: postgres -- CREATE INDEX marker_type_idx ON sgn.deprecated_markers USING btree (marker_type, marker_name); -- -- Name: member_id_idx; Type: INDEX; Schema: sgn; Owner: postgres -- CREATE INDEX member_id_idx ON sgn.group_linkage USING btree (member_id); -- -- Name: metadata_id_index; Type: INDEX; Schema: sgn; Owner: postgres -- CREATE INDEX metadata_id_index ON sgn.metadata USING btree (metadata_id); -- -- Name: method_id_idx; Type: INDEX; Schema: sgn; Owner: postgres -- CREATE INDEX method_id_idx ON sgn.domain USING btree (method_id); -- -- Name: method_idx; Type: INDEX; Schema: sgn; Owner: postgres -- CREATE INDEX method_idx ON sgn.cds USING btree (method); -- -- Name: misc_id_idx; Type: INDEX; Schema: sgn; Owner: postgres -- CREATE INDEX misc_id_idx ON sgn.misc USING btree (misc_id); -- -- Name: organism_group_id_idx; Type: INDEX; Schema: sgn; Owner: postgres -- CREATE INDEX organism_group_id_idx ON sgn.family_member USING btree (organism_group_id); -- -- Name: organism_group_id_idx2; Type: INDEX; Schema: sgn; Owner: postgres -- CREATE INDEX organism_group_id_idx2 ON sgn.unigene_build USING btree (organism_group_id); -- -- Name: organism_id_idx; Type: INDEX; Schema: sgn; Owner: postgres -- CREATE INDEX organism_id_idx ON sgn.library USING btree (organism_id); -- -- Name: pcr_exp_accession_id_idx; Type: INDEX; Schema: sgn; Owner: postgres -- CREATE INDEX pcr_exp_accession_id_idx ON sgn.pcr_product USING btree (pcr_exp_accession_id); -- -- Name: pcr_experiment_id_idx; Type: INDEX; Schema: sgn; Owner: postgres -- CREATE INDEX pcr_experiment_id_idx ON sgn.pcr_exp_accession USING btree (pcr_experiment_id); -- -- Name: preferred_idx; Type: INDEX; Schema: sgn; Owner: postgres -- CREATE INDEX preferred_idx ON sgn.cds USING btree (preferred); -- -- Name: read_id_idx; Type: INDEX; Schema: sgn; Owner: postgres -- CREATE INDEX read_id_idx ON sgn.est USING btree (read_id); -- -- Name: read_id_idx2; Type: INDEX; Schema: sgn; Owner: postgres -- CREATE INDEX read_id_idx2 ON sgn.tigrtc_membership USING btree (read_id); -- -- Name: rflp_name_idx; Type: INDEX; Schema: sgn; Owner: postgres -- CREATE INDEX rflp_name_idx ON sgn.rflp_markers USING btree (rflp_name, marker_id, library_name, marker_prefix, vector, cutting_site); -- -- Name: rflp_seq_id_idx; Type: INDEX; Schema: sgn; Owner: postgres -- CREATE INDEX rflp_seq_id_idx ON sgn.rflp_unigene_associations USING btree (rflp_seq_id, unigene_id, align_length); -- -- Name: rsi_idx; Type: INDEX; Schema: sgn; Owner: postgres -- CREATE INDEX rsi_idx ON sgn.est USING btree (status, flags, est_id); -- -- Name: run_id_idx; Type: INDEX; Schema: sgn; Owner: postgres -- CREATE INDEX run_id_idx ON sgn.cds USING btree (run_id); -- -- Name: run_id_idx2; Type: INDEX; Schema: sgn; Owner: postgres -- CREATE INDEX run_id_idx2 ON sgn.domain_match USING btree (run_id); -- -- Name: score_idx; Type: INDEX; Schema: sgn; Owner: postgres -- CREATE INDEX score_idx ON sgn.blast_hits USING btree (score); -- -- Name: sgn_domain_description_fulltext_index; Type: INDEX; Schema: sgn; Owner: postgres -- CREATE INDEX sgn_domain_description_fulltext_index ON sgn.domain USING gist (description_fulltext); -- -- Name: sgn_go_description_fulltext_index; Type: INDEX; Schema: sgn; Owner: postgres -- CREATE INDEX sgn_go_description_fulltext_index ON sgn.go USING gist (description_fulltext); -- -- Name: sgn_interpro_description_fulltext_index; Type: INDEX; Schema: sgn; Owner: postgres -- CREATE INDEX sgn_interpro_description_fulltext_index ON sgn.interpro USING gist (description_fulltext); -- -- Name: sgn_linkage_group_name_idx; Type: INDEX; Schema: sgn; Owner: postgres -- CREATE INDEX sgn_linkage_group_name_idx ON sgn.linkage_group USING btree (lg_name); -- -- Name: source_data_group_id_idx; Type: INDEX; Schema: sgn; Owner: postgres -- CREATE INDEX source_data_group_id_idx ON sgn.unigene_build USING btree (source_data_group_id); -- -- Name: spot_id_idx; Type: INDEX; Schema: sgn; Owner: postgres -- CREATE INDEX spot_id_idx ON sgn.microarray USING btree (spot_id); -- -- Name: ssr_id_idx; Type: INDEX; Schema: sgn; Owner: postgres -- CREATE INDEX ssr_id_idx ON sgn.ssr_primer_unigene_matches USING btree (ssr_id, unigene_id, primer_direction, match_length, e_value); -- -- Name: ssr_id_idx2; Type: INDEX; Schema: sgn; Owner: postgres -- CREATE INDEX ssr_id_idx2 ON sgn.ssr_repeats USING btree (ssr_id); -- -- Name: status_idx; Type: INDEX; Schema: sgn; Owner: postgres -- CREATE INDEX status_idx ON sgn.est USING btree (status); -- -- Name: submit_user_id_idx; Type: INDEX; Schema: sgn; Owner: postgres -- CREATE INDEX submit_user_id_idx ON sgn.facility USING btree (submit_user_id); -- -- Name: submit_user_id_idx2; Type: INDEX; Schema: sgn; Owner: postgres -- CREATE INDEX submit_user_id_idx2 ON sgn.library USING btree (submit_user_id); -- -- Name: target_db_id_idx; Type: INDEX; Schema: sgn; Owner: postgres -- CREATE INDEX target_db_id_idx ON sgn.blast_defline USING btree (target_db_id); -- -- Name: tc_id_idx; Type: INDEX; Schema: sgn; Owner: postgres -- CREATE INDEX tc_id_idx ON sgn.tigrtc_membership USING btree (tc_id); -- -- Name: tc_id_idx2; Type: INDEX; Schema: sgn; Owner: postgres -- CREATE INDEX tc_id_idx2 ON sgn.tigrtc_tracking USING btree (tc_id); -- -- Name: trace_name_idx; Type: INDEX; Schema: sgn; Owner: postgres -- CREATE INDEX trace_name_idx ON sgn.seqread USING btree (trace_name); -- -- Name: type_code_idx; Type: INDEX; Schema: sgn; Owner: postgres -- CREATE INDEX type_code_idx ON sgn.loc_types USING btree (type_code); -- -- Name: type_name_idx; Type: INDEX; Schema: sgn; Owner: postgres -- CREATE INDEX type_name_idx ON sgn.annotation_target_type USING btree (type_name); -- -- Name: type_name_idx2; Type: INDEX; Schema: sgn; Owner: postgres -- CREATE INDEX type_name_idx2 ON sgn.deprecated_marker_types USING btree (type_name); -- -- Name: unigene_build_id_idx; Type: INDEX; Schema: sgn; Owner: postgres -- CREATE INDEX unigene_build_id_idx ON sgn.unigene USING btree (unigene_build_id, cluster_no); -- -- Name: unigene_id_2_idx; Type: INDEX; Schema: sgn; Owner: postgres -- CREATE INDEX unigene_id_2_idx ON sgn.unigene_member USING btree (unigene_id, est_id); -- -- Name: unigene_id_idx; Type: INDEX; Schema: sgn; Owner: postgres -- CREATE INDEX unigene_id_idx ON sgn.cds USING btree (unigene_id); -- -- Name: unigene_id_idx2; Type: INDEX; Schema: sgn; Owner: postgres -- CREATE INDEX unigene_id_idx2 ON sgn.domain_match USING btree (unigene_id); -- -- Name: unigene_id_idx3; Type: INDEX; Schema: sgn; Owner: postgres -- CREATE INDEX unigene_id_idx3 ON sgn.unigene_member USING btree (unigene_id); -- -- Name: unigene_sequence_name; Type: INDEX; Schema: sgn; Owner: postgres -- CREATE INDEX unigene_sequence_name ON sgn.unigene USING btree (sequence_name); -- -- Name: username_idx; Type: INDEX; Schema: sgn; Owner: postgres -- CREATE INDEX username_idx ON sgn.submit_user USING btree (username); -- -- Name: bac_status_idx; Type: INDEX; Schema: sgn_people; Owner: postgres -- CREATE INDEX bac_status_idx ON sgn_people.bac_status USING btree (bac_id, status); -- -- Name: country_idx; Type: INDEX; Schema: sgn_people; Owner: postgres -- CREATE INDEX country_idx ON sgn_people.sp_person USING btree (country); -- -- Name: name_idx; Type: INDEX; Schema: sgn_people; Owner: postgres -- CREATE INDEX name_idx ON sgn_people.sp_person USING btree (last_name, first_name); -- -- Name: organization_idx; Type: INDEX; Schema: sgn_people; Owner: postgres -- CREATE INDEX organization_idx ON sgn_people.sp_person USING btree (organization); -- -- Name: private_email_idx; Type: INDEX; Schema: sgn_people; Owner: postgres -- CREATE INDEX private_email_idx ON sgn_people.sp_login_old USING btree (private_email); -- -- Name: sp_user_id_idx; Type: INDEX; Schema: sgn_people; Owner: postgres -- CREATE INDEX sp_user_id_idx ON sgn_people.sp_papers USING btree (person_id); -- -- Name: sp_user_id_idx2; Type: INDEX; Schema: sgn_people; Owner: postgres -- CREATE INDEX sp_user_id_idx2 ON sgn_people.sp_person_organisms USING btree (sp_person_id); -- -- Name: status_idx; Type: INDEX; Schema: sgn_people; Owner: postgres -- CREATE INDEX status_idx ON sgn_people.bac_status USING btree (status); -- -- Name: clone_name_idx; Type: INDEX; Schema: sgn_submit; Owner: postgres -- CREATE INDEX clone_name_idx ON sgn_submit.seqread USING btree (clone_name); -- -- Name: facility_id_idx; Type: INDEX; Schema: sgn_submit; Owner: postgres -- CREATE INDEX facility_id_idx ON sgn_submit.seqread USING btree (facility_id); -- -- Name: library_id_idx; Type: INDEX; Schema: sgn_submit; Owner: postgres -- CREATE INDEX library_id_idx ON sgn_submit.seqread USING btree (library_id); -- -- Name: location_idx; Type: INDEX; Schema: sgn_submit; Owner: postgres -- CREATE INDEX location_idx ON sgn_submit.seqread USING btree (location); -- -- Name: organism_id_idx; Type: INDEX; Schema: sgn_submit; Owner: postgres -- CREATE INDEX organism_id_idx ON sgn_submit.library USING btree (organism_id); -- -- Name: submit_user_id_idx; Type: INDEX; Schema: sgn_submit; Owner: postgres -- CREATE INDEX submit_user_id_idx ON sgn_submit.facility USING btree (submit_user_id); -- -- Name: submit_user_id_idx2; Type: INDEX; Schema: sgn_submit; Owner: postgres -- CREATE INDEX submit_user_id_idx2 ON sgn_submit.library USING btree (submit_user_id); -- -- Name: trace_name_idx; Type: INDEX; Schema: sgn_submit; Owner: postgres -- CREATE INDEX trace_name_idx ON sgn_submit.seqread USING btree (trace_name); -- -- Name: username_idx; Type: INDEX; Schema: sgn_submit; Owner: postgres -- CREATE INDEX username_idx ON sgn_submit.submit_user USING btree (username); -- -- Name: fattribute_to_feature_fid; Type: INDEX; Schema: tomato_gff; Owner: postgres -- CREATE INDEX fattribute_to_feature_fid ON tomato_gff.fattribute_to_feature USING btree (fid, fattribute_id); -- -- Name: fdata_fref_idx; Type: INDEX; Schema: tomato_gff; Owner: postgres -- CREATE INDEX fdata_fref_idx ON tomato_gff.fdata USING btree (fref, fbin, fstart, fstop, ftypeid, gid); -- -- Name: fdata_ftypeid_idx; Type: INDEX; Schema: tomato_gff; Owner: postgres -- CREATE INDEX fdata_ftypeid_idx ON tomato_gff.fdata USING btree (ftypeid); -- -- Name: fdata_gid_idx; Type: INDEX; Schema: tomato_gff; Owner: postgres -- CREATE INDEX fdata_gid_idx ON tomato_gff.fdata USING btree (gid); -- -- Name: fgroup_gclass_idx; Type: INDEX; Schema: tomato_gff; Owner: postgres -- CREATE UNIQUE INDEX fgroup_gclass_idx ON tomato_gff.fgroup USING btree (gclass, gname); -- -- Name: ftype_fmethod_idx; Type: INDEX; Schema: tomato_gff; Owner: postgres -- CREATE INDEX ftype_fmethod_idx ON tomato_gff.ftype USING btree (fmethod); -- -- Name: ftype_fsource_idx; Type: INDEX; Schema: tomato_gff; Owner: postgres -- CREATE INDEX ftype_fsource_idx ON tomato_gff.ftype USING btree (fsource); -- -- Name: ftype_ftype_idx; Type: INDEX; Schema: tomato_gff; Owner: postgres -- CREATE UNIQUE INDEX ftype_ftype_idx ON tomato_gff.ftype USING btree (fmethod, fsource); -- -- Name: blast_defline blast_defline_identifier_defline_fulltext_trigger; Type: TRIGGER; Schema: genomic; Owner: postgres -- CREATE TRIGGER blast_defline_identifier_defline_fulltext_trigger BEFORE INSERT OR UPDATE ON genomic.blast_defline FOR EACH ROW EXECUTE FUNCTION tsvector_update_trigger('identifier_defline_fulltext', 'pg_catalog.english', 'identifier', 'defline'); -- -- Name: pubabstract abstract_tsvector_trigger; Type: TRIGGER; Schema: public; Owner: postgres -- CREATE TRIGGER abstract_tsvector_trigger BEFORE INSERT OR UPDATE ON public.pubabstract FOR EACH ROW EXECUTE FUNCTION tsvector_update_trigger('abstract_tsvector', 'pg_catalog.english', 'abstract'); -- -- Name: pub title_tsvector_trigger; Type: TRIGGER; Schema: public; Owner: postgres -- CREATE TRIGGER title_tsvector_trigger BEFORE INSERT OR UPDATE ON public.pub FOR EACH ROW EXECUTE FUNCTION tsvector_update_trigger('title_tsvector', 'pg_catalog.english', 'title'); -- -- Name: blast_defline blast_defline_defline_fulltext_trigger; Type: TRIGGER; Schema: sgn; Owner: postgres -- CREATE TRIGGER blast_defline_defline_fulltext_trigger BEFORE INSERT OR UPDATE ON sgn.blast_defline FOR EACH ROW EXECUTE FUNCTION tsvector_update_trigger('defline_fulltext', 'pg_catalog.english', 'defline'); -- -- Name: domain domain_description_fulltext_trigger; Type: TRIGGER; Schema: sgn; Owner: postgres -- CREATE TRIGGER domain_description_fulltext_trigger BEFORE INSERT OR UPDATE ON sgn.domain FOR EACH ROW EXECUTE FUNCTION tsvector_update_trigger('description_fulltext', 'pg_catalog.english', 'description'); -- -- Name: go go_description_fulltext_trigger; Type: TRIGGER; Schema: sgn; Owner: postgres -- CREATE TRIGGER go_description_fulltext_trigger BEFORE INSERT OR UPDATE ON sgn.go FOR EACH ROW EXECUTE FUNCTION tsvector_update_trigger('description_fulltext', 'pg_catalog.english', 'description'); -- -- Name: interpro interpro_description_fulltext_trigger; Type: TRIGGER; Schema: sgn; Owner: postgres -- CREATE TRIGGER interpro_description_fulltext_trigger BEFORE INSERT OR UPDATE ON sgn.interpro FOR EACH ROW EXECUTE FUNCTION tsvector_update_trigger('description_fulltext', 'pg_catalog.english', 'description'); -- -- Name: manual_annotations manual_annotations_annotation_text_fulltext_trigger; Type: TRIGGER; Schema: sgn; Owner: postgres -- CREATE TRIGGER manual_annotations_annotation_text_fulltext_trigger BEFORE INSERT OR UPDATE ON sgn.manual_annotations FOR EACH ROW EXECUTE FUNCTION tsvector_update_trigger('annotation_text_fulltext', 'pg_catalog.english', 'annotation_text'); -- -- Name: seq clone_id_fk; Type: FK CONSTRAINT; Schema: annotation; Owner: postgres -- ALTER TABLE ONLY annotation.seq ADD CONSTRAINT clone_id_fk FOREIGN KEY (clone_id) REFERENCES genomic.clone(clone_id) MATCH FULL; -- -- Name: annotation person_id_fk; Type: FK CONSTRAINT; Schema: annotation; Owner: postgres -- ALTER TABLE ONLY annotation.annotation ADD CONSTRAINT person_id_fk FOREIGN KEY (person_id) REFERENCES sgn_people.sp_person(sp_person_id); -- -- Name: comp_analysis person_id_fk; Type: FK CONSTRAINT; Schema: annotation; Owner: postgres -- ALTER TABLE ONLY annotation.comp_analysis ADD CONSTRAINT person_id_fk FOREIGN KEY (person_id) REFERENCES sgn_people.sp_person(sp_person_id); -- -- Name: comment person_id_fk; Type: FK CONSTRAINT; Schema: annotation; Owner: postgres -- ALTER TABLE ONLY annotation.comment ADD CONSTRAINT person_id_fk FOREIGN KEY (person_id) REFERENCES sgn_people.sp_person(sp_person_id); -- -- Name: feature_set person_id_fk; Type: FK CONSTRAINT; Schema: annotation; Owner: postgres -- ALTER TABLE ONLY annotation.feature_set ADD CONSTRAINT person_id_fk FOREIGN KEY (person_id) REFERENCES sgn_people.sp_person(sp_person_id); -- -- Name: seq person_id_fk; Type: FK CONSTRAINT; Schema: annotation; Owner: postgres -- ALTER TABLE ONLY annotation.seq ADD CONSTRAINT person_id_fk FOREIGN KEY (person_id) REFERENCES sgn_people.sp_person(sp_person_id); -- -- Name: bs_protocol bs_protocol_metadata_id_fkey; Type: FK CONSTRAINT; Schema: biosource; Owner: postgres -- ALTER TABLE ONLY biosource.bs_protocol ADD CONSTRAINT bs_protocol_metadata_id_fkey FOREIGN KEY (metadata_id) REFERENCES metadata.md_metadata(metadata_id); -- -- Name: bs_protocol_pub bs_protocol_pub_metadata_id_fkey; Type: FK CONSTRAINT; Schema: biosource; Owner: postgres -- ALTER TABLE ONLY biosource.bs_protocol_pub ADD CONSTRAINT bs_protocol_pub_metadata_id_fkey FOREIGN KEY (metadata_id) REFERENCES metadata.md_metadata(metadata_id); -- -- Name: bs_protocol_pub bs_protocol_pub_protocol_id_fkey; Type: FK CONSTRAINT; Schema: biosource; Owner: postgres -- ALTER TABLE ONLY biosource.bs_protocol_pub ADD CONSTRAINT bs_protocol_pub_protocol_id_fkey FOREIGN KEY (protocol_id) REFERENCES biosource.bs_protocol(protocol_id); -- -- Name: bs_protocol_pub bs_protocol_pub_pub_id_fkey; Type: FK CONSTRAINT; Schema: biosource; Owner: postgres -- ALTER TABLE ONLY biosource.bs_protocol_pub ADD CONSTRAINT bs_protocol_pub_pub_id_fkey FOREIGN KEY (pub_id) REFERENCES public.pub(pub_id); -- -- Name: bs_protocol_step_dbxref bs_protocol_step_dbxref_dbxref_id_fkey; Type: FK CONSTRAINT; Schema: biosource; Owner: postgres -- ALTER TABLE ONLY biosource.bs_protocol_step_dbxref ADD CONSTRAINT bs_protocol_step_dbxref_dbxref_id_fkey FOREIGN KEY (dbxref_id) REFERENCES public.dbxref(dbxref_id); -- -- Name: bs_protocol_step_dbxref bs_protocol_step_dbxref_metadata_id_fkey; Type: FK CONSTRAINT; Schema: biosource; Owner: postgres -- ALTER TABLE ONLY biosource.bs_protocol_step_dbxref ADD CONSTRAINT bs_protocol_step_dbxref_metadata_id_fkey FOREIGN KEY (metadata_id) REFERENCES metadata.md_metadata(metadata_id); -- -- Name: bs_protocol_step_dbxref bs_protocol_step_dbxref_protocol_step_id_fkey; Type: FK CONSTRAINT; Schema: biosource; Owner: postgres -- ALTER TABLE ONLY biosource.bs_protocol_step_dbxref ADD CONSTRAINT bs_protocol_step_dbxref_protocol_step_id_fkey FOREIGN KEY (protocol_step_id) REFERENCES biosource.bs_protocol_step(protocol_step_id); -- -- Name: bs_protocol_step bs_protocol_step_metadata_id_fkey; Type: FK CONSTRAINT; Schema: biosource; Owner: postgres -- ALTER TABLE ONLY biosource.bs_protocol_step ADD CONSTRAINT bs_protocol_step_metadata_id_fkey FOREIGN KEY (metadata_id) REFERENCES metadata.md_metadata(metadata_id); -- -- Name: bs_protocol_step bs_protocol_step_protocol_id_fkey; Type: FK CONSTRAINT; Schema: biosource; Owner: postgres -- ALTER TABLE ONLY biosource.bs_protocol_step ADD CONSTRAINT bs_protocol_step_protocol_id_fkey FOREIGN KEY (protocol_id) REFERENCES biosource.bs_protocol(protocol_id); -- -- Name: bs_protocol_step bs_protocol_step_tool_id_fkey; Type: FK CONSTRAINT; Schema: biosource; Owner: postgres -- ALTER TABLE ONLY biosource.bs_protocol_step ADD CONSTRAINT bs_protocol_step_tool_id_fkey FOREIGN KEY (tool_id) REFERENCES biosource.bs_tool(tool_id); -- -- Name: bs_sample bs_sample_contact_id_order_fkey; Type: FK CONSTRAINT; Schema: biosource; Owner: postgres -- ALTER TABLE ONLY biosource.bs_sample ADD CONSTRAINT bs_sample_contact_id_order_fkey FOREIGN KEY (contact_id) REFERENCES sgn_people.sp_person(sp_person_id); -- -- Name: bs_sample_cvterm bs_sample_cvterm_cvterm_id_fkey; Type: FK CONSTRAINT; Schema: biosource; Owner: postgres -- ALTER TABLE ONLY biosource.bs_sample_cvterm ADD CONSTRAINT bs_sample_cvterm_cvterm_id_fkey FOREIGN KEY (cvterm_id) REFERENCES public.cvterm(cvterm_id); -- -- Name: bs_sample_cvterm bs_sample_cvterm_metadata_id_fkey; Type: FK CONSTRAINT; Schema: biosource; Owner: postgres -- ALTER TABLE ONLY biosource.bs_sample_cvterm ADD CONSTRAINT bs_sample_cvterm_metadata_id_fkey FOREIGN KEY (metadata_id) REFERENCES metadata.md_metadata(metadata_id); -- -- Name: bs_sample_cvterm bs_sample_cvterm_sample_id_fkey; Type: FK CONSTRAINT; Schema: biosource; Owner: postgres -- ALTER TABLE ONLY biosource.bs_sample_cvterm ADD CONSTRAINT bs_sample_cvterm_sample_id_fkey FOREIGN KEY (sample_id) REFERENCES biosource.bs_sample(sample_id); -- -- Name: bs_sample_dbxref bs_sample_dbxref_dbxref_id_fkey; Type: FK CONSTRAINT; Schema: biosource; Owner: postgres -- ALTER TABLE ONLY biosource.bs_sample_dbxref ADD CONSTRAINT bs_sample_dbxref_dbxref_id_fkey FOREIGN KEY (dbxref_id) REFERENCES public.dbxref(dbxref_id); -- -- Name: bs_sample_dbxref bs_sample_dbxref_metadata_id_fkey; Type: FK CONSTRAINT; Schema: biosource; Owner: postgres -- ALTER TABLE ONLY biosource.bs_sample_dbxref ADD CONSTRAINT bs_sample_dbxref_metadata_id_fkey FOREIGN KEY (metadata_id) REFERENCES metadata.md_metadata(metadata_id); -- -- Name: bs_sample_dbxref bs_sample_dbxref_sample_id_fkey; Type: FK CONSTRAINT; Schema: biosource; Owner: postgres -- ALTER TABLE ONLY biosource.bs_sample_dbxref ADD CONSTRAINT bs_sample_dbxref_sample_id_fkey FOREIGN KEY (sample_id) REFERENCES biosource.bs_sample(sample_id); -- -- Name: bs_sample_element_cvterm bs_sample_element_cvterm_cvterm_id_fkey; Type: FK CONSTRAINT; Schema: biosource; Owner: postgres -- ALTER TABLE ONLY biosource.bs_sample_element_cvterm ADD CONSTRAINT bs_sample_element_cvterm_cvterm_id_fkey FOREIGN KEY (cvterm_id) REFERENCES public.cvterm(cvterm_id); -- -- Name: bs_sample_element_cvterm bs_sample_element_cvterm_metadata_id_fkey; Type: FK CONSTRAINT; Schema: biosource; Owner: postgres -- ALTER TABLE ONLY biosource.bs_sample_element_cvterm ADD CONSTRAINT bs_sample_element_cvterm_metadata_id_fkey FOREIGN KEY (metadata_id) REFERENCES metadata.md_metadata(metadata_id); -- -- Name: bs_sample_element_cvterm bs_sample_element_cvterm_sample_element_id_fkey; Type: FK CONSTRAINT; Schema: biosource; Owner: postgres -- ALTER TABLE ONLY biosource.bs_sample_element_cvterm ADD CONSTRAINT bs_sample_element_cvterm_sample_element_id_fkey FOREIGN KEY (sample_element_id) REFERENCES biosource.bs_sample_element(sample_element_id); -- -- Name: bs_sample_element_dbxref bs_sample_element_dbxref_dbxref_id_fkey; Type: FK CONSTRAINT; Schema: biosource; Owner: postgres -- ALTER TABLE ONLY biosource.bs_sample_element_dbxref ADD CONSTRAINT bs_sample_element_dbxref_dbxref_id_fkey FOREIGN KEY (dbxref_id) REFERENCES public.dbxref(dbxref_id); -- -- Name: bs_sample_element_dbxref bs_sample_element_dbxref_metadata_id_fkey; Type: FK CONSTRAINT; Schema: biosource; Owner: postgres -- ALTER TABLE ONLY biosource.bs_sample_element_dbxref ADD CONSTRAINT bs_sample_element_dbxref_metadata_id_fkey FOREIGN KEY (metadata_id) REFERENCES metadata.md_metadata(metadata_id); -- -- Name: bs_sample_element_dbxref bs_sample_element_dbxref_sample_element_id_fkey; Type: FK CONSTRAINT; Schema: biosource; Owner: postgres -- ALTER TABLE ONLY biosource.bs_sample_element_dbxref ADD CONSTRAINT bs_sample_element_dbxref_sample_element_id_fkey FOREIGN KEY (sample_element_id) REFERENCES biosource.bs_sample_element(sample_element_id); -- -- Name: bs_sample_element_file bs_sample_element_file_file_id_fkey; Type: FK CONSTRAINT; Schema: biosource; Owner: postgres -- ALTER TABLE ONLY biosource.bs_sample_element_file ADD CONSTRAINT bs_sample_element_file_file_id_fkey FOREIGN KEY (file_id) REFERENCES metadata.md_files(file_id); -- -- Name: bs_sample_element_file bs_sample_element_file_metadata_id_fkey; Type: FK CONSTRAINT; Schema: biosource; Owner: postgres -- ALTER TABLE ONLY biosource.bs_sample_element_file ADD CONSTRAINT bs_sample_element_file_metadata_id_fkey FOREIGN KEY (metadata_id) REFERENCES metadata.md_metadata(metadata_id); -- -- Name: bs_sample_element_file bs_sample_element_file_sample_element_id_fkey; Type: FK CONSTRAINT; Schema: biosource; Owner: postgres -- ALTER TABLE ONLY biosource.bs_sample_element_file ADD CONSTRAINT bs_sample_element_file_sample_element_id_fkey FOREIGN KEY (sample_element_id) REFERENCES biosource.bs_sample_element(sample_element_id); -- -- Name: bs_sample_element bs_sample_element_metadata_id_fkey; Type: FK CONSTRAINT; Schema: biosource; Owner: postgres -- ALTER TABLE ONLY biosource.bs_sample_element ADD CONSTRAINT bs_sample_element_metadata_id_fkey FOREIGN KEY (metadata_id) REFERENCES metadata.md_metadata(metadata_id); -- -- Name: bs_sample_element bs_sample_element_organism_id_fkey; Type: FK CONSTRAINT; Schema: biosource; Owner: postgres -- ALTER TABLE ONLY biosource.bs_sample_element ADD CONSTRAINT bs_sample_element_organism_id_fkey FOREIGN KEY (organism_id) REFERENCES public.organism(organism_id); -- -- Name: bs_sample_element bs_sample_element_protocol_id_fkey; Type: FK CONSTRAINT; Schema: biosource; Owner: postgres -- ALTER TABLE ONLY biosource.bs_sample_element ADD CONSTRAINT bs_sample_element_protocol_id_fkey FOREIGN KEY (protocol_id) REFERENCES biosource.bs_protocol(protocol_id); -- -- Name: bs_sample_element_relation bs_sample_element_relation_metadata_id_fkey; Type: FK CONSTRAINT; Schema: biosource; Owner: postgres -- ALTER TABLE ONLY biosource.bs_sample_element_relation ADD CONSTRAINT bs_sample_element_relation_metadata_id_fkey FOREIGN KEY (metadata_id) REFERENCES metadata.md_metadata(metadata_id); -- -- Name: bs_sample_element_relation bs_sample_element_relation_sample_element_id_a_fkey; Type: FK CONSTRAINT; Schema: biosource; Owner: postgres -- ALTER TABLE ONLY biosource.bs_sample_element_relation ADD CONSTRAINT bs_sample_element_relation_sample_element_id_a_fkey FOREIGN KEY (sample_element_id_a) REFERENCES biosource.bs_sample_element(sample_element_id); -- -- Name: bs_sample_element_relation bs_sample_element_relation_sample_element_id_b_fkey; Type: FK CONSTRAINT; Schema: biosource; Owner: postgres -- ALTER TABLE ONLY biosource.bs_sample_element_relation ADD CONSTRAINT bs_sample_element_relation_sample_element_id_b_fkey FOREIGN KEY (sample_element_id_b) REFERENCES biosource.bs_sample_element(sample_element_id); -- -- Name: bs_sample_element bs_sample_element_sample_id_fkey; Type: FK CONSTRAINT; Schema: biosource; Owner: postgres -- ALTER TABLE ONLY biosource.bs_sample_element ADD CONSTRAINT bs_sample_element_sample_id_fkey FOREIGN KEY (sample_id) REFERENCES biosource.bs_sample(sample_id); -- -- Name: bs_sample_file bs_sample_file_file_id_fkey; Type: FK CONSTRAINT; Schema: biosource; Owner: postgres -- ALTER TABLE ONLY biosource.bs_sample_file ADD CONSTRAINT bs_sample_file_file_id_fkey FOREIGN KEY (file_id) REFERENCES metadata.md_files(file_id); -- -- Name: bs_sample_file bs_sample_file_metadata_id_fkey; Type: FK CONSTRAINT; Schema: biosource; Owner: postgres -- ALTER TABLE ONLY biosource.bs_sample_file ADD CONSTRAINT bs_sample_file_metadata_id_fkey FOREIGN KEY (metadata_id) REFERENCES metadata.md_metadata(metadata_id); -- -- Name: bs_sample_file bs_sample_file_sample_id_fkey; Type: FK CONSTRAINT; Schema: biosource; Owner: postgres -- ALTER TABLE ONLY biosource.bs_sample_file ADD CONSTRAINT bs_sample_file_sample_id_fkey FOREIGN KEY (sample_id) REFERENCES biosource.bs_sample(sample_id); -- -- Name: bs_sample bs_sample_metadata_id_order_fkey; Type: FK CONSTRAINT; Schema: biosource; Owner: postgres -- ALTER TABLE ONLY biosource.bs_sample ADD CONSTRAINT bs_sample_metadata_id_order_fkey FOREIGN KEY (metadata_id) REFERENCES metadata.md_metadata(metadata_id); -- -- Name: bs_sample bs_sample_organism_id_fkey; Type: FK CONSTRAINT; Schema: biosource; Owner: postgres -- ALTER TABLE ONLY biosource.bs_sample ADD CONSTRAINT bs_sample_organism_id_fkey FOREIGN KEY (organism_id) REFERENCES public.organism(organism_id); -- -- Name: bs_sample bs_sample_protocol_id_fkey; Type: FK CONSTRAINT; Schema: biosource; Owner: postgres -- ALTER TABLE ONLY biosource.bs_sample ADD CONSTRAINT bs_sample_protocol_id_fkey FOREIGN KEY (protocol_id) REFERENCES biosource.bs_protocol(protocol_id); -- -- Name: bs_sample_pub bs_sample_pub_metadata_id_fkey; Type: FK CONSTRAINT; Schema: biosource; Owner: postgres -- ALTER TABLE ONLY biosource.bs_sample_pub ADD CONSTRAINT bs_sample_pub_metadata_id_fkey FOREIGN KEY (metadata_id) REFERENCES metadata.md_metadata(metadata_id); -- -- Name: bs_sample_pub bs_sample_pub_pub_id_fkey; Type: FK CONSTRAINT; Schema: biosource; Owner: postgres -- ALTER TABLE ONLY biosource.bs_sample_pub ADD CONSTRAINT bs_sample_pub_pub_id_fkey FOREIGN KEY (pub_id) REFERENCES public.pub(pub_id); -- -- Name: bs_sample_pub bs_sample_pub_sample_id_fkey; Type: FK CONSTRAINT; Schema: biosource; Owner: postgres -- ALTER TABLE ONLY biosource.bs_sample_pub ADD CONSTRAINT bs_sample_pub_sample_id_fkey FOREIGN KEY (sample_id) REFERENCES biosource.bs_sample(sample_id); -- -- Name: bs_sample_relationship bs_sample_relationship_metadata_id_fkey; Type: FK CONSTRAINT; Schema: biosource; Owner: postgres -- ALTER TABLE ONLY biosource.bs_sample_relationship ADD CONSTRAINT bs_sample_relationship_metadata_id_fkey FOREIGN KEY (metadata_id) REFERENCES metadata.md_metadata(metadata_id); -- -- Name: bs_sample_relationship bs_sample_relationship_object_id_fkey; Type: FK CONSTRAINT; Schema: biosource; Owner: postgres -- ALTER TABLE ONLY biosource.bs_sample_relationship ADD CONSTRAINT bs_sample_relationship_object_id_fkey FOREIGN KEY (object_id) REFERENCES biosource.bs_sample(sample_id); -- -- Name: bs_sample_relationship bs_sample_relationship_subject_id_fkey; Type: FK CONSTRAINT; Schema: biosource; Owner: postgres -- ALTER TABLE ONLY biosource.bs_sample_relationship ADD CONSTRAINT bs_sample_relationship_subject_id_fkey FOREIGN KEY (subject_id) REFERENCES biosource.bs_sample(sample_id); -- -- Name: bs_sample_relationship bs_sample_relationship_type_id_fkey; Type: FK CONSTRAINT; Schema: biosource; Owner: postgres -- ALTER TABLE ONLY biosource.bs_sample_relationship ADD CONSTRAINT bs_sample_relationship_type_id_fkey FOREIGN KEY (type_id) REFERENCES public.cvterm(cvterm_id); -- -- Name: bs_sample bs_sample_type_id_fkey; Type: FK CONSTRAINT; Schema: biosource; Owner: postgres -- ALTER TABLE ONLY biosource.bs_sample ADD CONSTRAINT bs_sample_type_id_fkey FOREIGN KEY (type_id) REFERENCES public.cvterm(cvterm_id); -- -- Name: bs_tool bs_tool_file_id_fkey; Type: FK CONSTRAINT; Schema: biosource; Owner: postgres -- ALTER TABLE ONLY biosource.bs_tool ADD CONSTRAINT bs_tool_file_id_fkey FOREIGN KEY (file_id) REFERENCES metadata.md_files(file_id); -- -- Name: bs_tool bs_tool_metadata_id_fkey; Type: FK CONSTRAINT; Schema: biosource; Owner: postgres -- ALTER TABLE ONLY biosource.bs_tool ADD CONSTRAINT bs_tool_metadata_id_fkey FOREIGN KEY (metadata_id) REFERENCES metadata.md_metadata(metadata_id); -- -- Name: bs_tool_pub bs_tool_pub_metadata_id_fkey; Type: FK CONSTRAINT; Schema: biosource; Owner: postgres -- ALTER TABLE ONLY biosource.bs_tool_pub ADD CONSTRAINT bs_tool_pub_metadata_id_fkey FOREIGN KEY (metadata_id) REFERENCES metadata.md_metadata(metadata_id); -- -- Name: bs_tool_pub bs_tool_pub_pub_id_fkey; Type: FK CONSTRAINT; Schema: biosource; Owner: postgres -- ALTER TABLE ONLY biosource.bs_tool_pub ADD CONSTRAINT bs_tool_pub_pub_id_fkey FOREIGN KEY (pub_id) REFERENCES public.pub(pub_id); -- -- Name: bs_tool_pub bs_tool_pub_tool_id_fkey; Type: FK CONSTRAINT; Schema: biosource; Owner: postgres -- ALTER TABLE ONLY biosource.bs_tool_pub ADD CONSTRAINT bs_tool_pub_tool_id_fkey FOREIGN KEY (tool_id) REFERENCES biosource.bs_tool(tool_id); -- -- Name: ge_cluster_analysis ge_cluster_analysis_correlation_analysis_id_fkey; Type: FK CONSTRAINT; Schema: gem; Owner: postgres -- ALTER TABLE ONLY gem.ge_cluster_analysis ADD CONSTRAINT ge_cluster_analysis_correlation_analysis_id_fkey FOREIGN KEY (correlation_analysis_id) REFERENCES gem.ge_correlation_analysis(correlation_analysis_id); -- -- Name: ge_cluster_analysis ge_cluster_analysis_experiment_analysis_group_id_fkey; Type: FK CONSTRAINT; Schema: gem; Owner: postgres -- ALTER TABLE ONLY gem.ge_cluster_analysis ADD CONSTRAINT ge_cluster_analysis_experiment_analysis_group_id_fkey FOREIGN KEY (experiment_analysis_group_id) REFERENCES gem.ge_experiment_analysis_group(experiment_analysis_group_id); -- -- Name: ge_cluster_analysis ge_cluster_analysis_metadata_id_fkey; Type: FK CONSTRAINT; Schema: gem; Owner: postgres -- ALTER TABLE ONLY gem.ge_cluster_analysis ADD CONSTRAINT ge_cluster_analysis_metadata_id_fkey FOREIGN KEY (metadata_id) REFERENCES metadata.md_metadata(metadata_id); -- -- Name: ge_cluster_analysis ge_cluster_analysis_protocol_id_fkey; Type: FK CONSTRAINT; Schema: gem; Owner: postgres -- ALTER TABLE ONLY gem.ge_cluster_analysis ADD CONSTRAINT ge_cluster_analysis_protocol_id_fkey FOREIGN KEY (protocol_id) REFERENCES biosource.bs_protocol(protocol_id); -- -- Name: ge_cluster_member ge_cluster_member_cluster_profile_id_fkey; Type: FK CONSTRAINT; Schema: gem; Owner: postgres -- ALTER TABLE ONLY gem.ge_cluster_member ADD CONSTRAINT ge_cluster_member_cluster_profile_id_fkey FOREIGN KEY (cluster_profile_id) REFERENCES gem.ge_cluster_profile(cluster_profile_id); -- -- Name: ge_cluster_member ge_cluster_member_metadata_id_fkey; Type: FK CONSTRAINT; Schema: gem; Owner: postgres -- ALTER TABLE ONLY gem.ge_cluster_member ADD CONSTRAINT ge_cluster_member_metadata_id_fkey FOREIGN KEY (metadata_id) REFERENCES metadata.md_metadata(metadata_id); -- -- Name: ge_cluster_member ge_cluster_member_template_id_fkey; Type: FK CONSTRAINT; Schema: gem; Owner: postgres -- ALTER TABLE ONLY gem.ge_cluster_member ADD CONSTRAINT ge_cluster_member_template_id_fkey FOREIGN KEY (template_id) REFERENCES gem.ge_template(template_id); -- -- Name: ge_cluster_profile ge_cluster_profile_cluster_analysis_id_fkey; Type: FK CONSTRAINT; Schema: gem; Owner: postgres -- ALTER TABLE ONLY gem.ge_cluster_profile ADD CONSTRAINT ge_cluster_profile_cluster_analysis_id_fkey FOREIGN KEY (cluster_analysis_id) REFERENCES gem.ge_cluster_analysis(cluster_analysis_id); -- -- Name: ge_cluster_profile ge_cluster_profile_file_id_fkey; Type: FK CONSTRAINT; Schema: gem; Owner: postgres -- ALTER TABLE ONLY gem.ge_cluster_profile ADD CONSTRAINT ge_cluster_profile_file_id_fkey FOREIGN KEY (file_id) REFERENCES metadata.md_files(file_id); -- -- Name: ge_cluster_profile ge_cluster_profile_metadata_id_fkey; Type: FK CONSTRAINT; Schema: gem; Owner: postgres -- ALTER TABLE ONLY gem.ge_cluster_profile ADD CONSTRAINT ge_cluster_profile_metadata_id_fkey FOREIGN KEY (metadata_id) REFERENCES metadata.md_metadata(metadata_id); -- -- Name: ge_correlation_analysis ge_correlation_analysis_experiment_analysis_group_id_fkey; Type: FK CONSTRAINT; Schema: gem; Owner: postgres -- ALTER TABLE ONLY gem.ge_correlation_analysis ADD CONSTRAINT ge_correlation_analysis_experiment_analysis_group_id_fkey FOREIGN KEY (experiment_analysis_group_id) REFERENCES gem.ge_experiment_analysis_group(experiment_analysis_group_id); -- -- Name: ge_correlation_analysis ge_correlation_analysis_metadata_id_fkey; Type: FK CONSTRAINT; Schema: gem; Owner: postgres -- ALTER TABLE ONLY gem.ge_correlation_analysis ADD CONSTRAINT ge_correlation_analysis_metadata_id_fkey FOREIGN KEY (metadata_id) REFERENCES metadata.md_metadata(metadata_id); -- -- Name: ge_correlation_member ge_correlation_member_correlation_analysis_id_fkey; Type: FK CONSTRAINT; Schema: gem; Owner: postgres -- ALTER TABLE ONLY gem.ge_correlation_member ADD CONSTRAINT ge_correlation_member_correlation_analysis_id_fkey FOREIGN KEY (correlation_analysis_id) REFERENCES gem.ge_correlation_analysis(correlation_analysis_id); -- -- Name: ge_correlation_member ge_correlation_member_dataset_id_fkey; Type: FK CONSTRAINT; Schema: gem; Owner: postgres -- ALTER TABLE ONLY gem.ge_correlation_member ADD CONSTRAINT ge_correlation_member_dataset_id_fkey FOREIGN KEY (dataset_id) REFERENCES biosource.bs_sample(sample_id); -- -- Name: ge_correlation_member ge_correlation_member_metadata_id_fkey; Type: FK CONSTRAINT; Schema: gem; Owner: postgres -- ALTER TABLE ONLY gem.ge_correlation_member ADD CONSTRAINT ge_correlation_member_metadata_id_fkey FOREIGN KEY (metadata_id) REFERENCES metadata.md_metadata(metadata_id); -- -- Name: ge_correlation_member ge_correlation_member_template_a_id_fkey; Type: FK CONSTRAINT; Schema: gem; Owner: postgres -- ALTER TABLE ONLY gem.ge_correlation_member ADD CONSTRAINT ge_correlation_member_template_a_id_fkey FOREIGN KEY (template_a_id) REFERENCES gem.ge_template(template_id); -- -- Name: ge_correlation_member ge_correlation_member_template_b_id_fkey; Type: FK CONSTRAINT; Schema: gem; Owner: postgres -- ALTER TABLE ONLY gem.ge_correlation_member ADD CONSTRAINT ge_correlation_member_template_b_id_fkey FOREIGN KEY (template_b_id) REFERENCES gem.ge_template(template_id); -- -- Name: ge_data_analysis_process ge_data_analysis_process_file_id_fkey; Type: FK CONSTRAINT; Schema: gem; Owner: postgres -- ALTER TABLE ONLY gem.ge_data_analysis_process ADD CONSTRAINT ge_data_analysis_process_file_id_fkey FOREIGN KEY (file_id) REFERENCES metadata.md_files(file_id); -- -- Name: ge_data_analysis_process ge_data_analysis_process_metadata_id_fkey; Type: FK CONSTRAINT; Schema: gem; Owner: postgres -- ALTER TABLE ONLY gem.ge_data_analysis_process ADD CONSTRAINT ge_data_analysis_process_metadata_id_fkey FOREIGN KEY (metadata_id) REFERENCES metadata.md_metadata(metadata_id); -- -- Name: ge_data_analysis_process ge_data_analysis_process_result_dataset_id_fkey; Type: FK CONSTRAINT; Schema: gem; Owner: postgres -- ALTER TABLE ONLY gem.ge_data_analysis_process ADD CONSTRAINT ge_data_analysis_process_result_dataset_id_fkey FOREIGN KEY (result_dataset_id) REFERENCES biosource.bs_sample(sample_id); -- -- Name: ge_data_analysis_process ge_data_analysis_process_source_dataset_id_fkey; Type: FK CONSTRAINT; Schema: gem; Owner: postgres -- ALTER TABLE ONLY gem.ge_data_analysis_process ADD CONSTRAINT ge_data_analysis_process_source_dataset_id_fkey FOREIGN KEY (source_dataset_id) REFERENCES biosource.bs_sample(sample_id); -- -- Name: ge_data_analysis_process ge_data_analysis_process_target_id_fkey; Type: FK CONSTRAINT; Schema: gem; Owner: postgres -- ALTER TABLE ONLY gem.ge_data_analysis_process ADD CONSTRAINT ge_data_analysis_process_target_id_fkey FOREIGN KEY (target_id) REFERENCES gem.ge_target(target_id); -- -- Name: ge_diff_expression ge_diff_expression_experiment_analysis_group_id_fkey; Type: FK CONSTRAINT; Schema: gem; Owner: postgres -- ALTER TABLE ONLY gem.ge_diff_expression ADD CONSTRAINT ge_diff_expression_experiment_analysis_group_id_fkey FOREIGN KEY (experiment_analysis_group_id) REFERENCES gem.ge_experiment_analysis_group(experiment_analysis_group_id); -- -- Name: ge_diff_expression ge_diff_expression_metadata_id_fkey; Type: FK CONSTRAINT; Schema: gem; Owner: postgres -- ALTER TABLE ONLY gem.ge_diff_expression ADD CONSTRAINT ge_diff_expression_metadata_id_fkey FOREIGN KEY (metadata_id) REFERENCES metadata.md_metadata(metadata_id); -- -- Name: ge_experiment_analysis_group ge_experiment_analysis_group_metadata_id_fkey; Type: FK CONSTRAINT; Schema: gem; Owner: postgres -- ALTER TABLE ONLY gem.ge_experiment_analysis_group ADD CONSTRAINT ge_experiment_analysis_group_metadata_id_fkey FOREIGN KEY (metadata_id) REFERENCES metadata.md_metadata(metadata_id); -- -- Name: ge_experiment_analysis_member ge_experiment_analysis_member_experiment_analysis_group_id_fkey; Type: FK CONSTRAINT; Schema: gem; Owner: postgres -- ALTER TABLE ONLY gem.ge_experiment_analysis_member ADD CONSTRAINT ge_experiment_analysis_member_experiment_analysis_group_id_fkey FOREIGN KEY (experiment_analysis_group_id) REFERENCES gem.ge_experiment_analysis_group(experiment_analysis_group_id); -- -- Name: ge_experiment_analysis_member ge_experiment_analysis_member_experiment_id_fkey; Type: FK CONSTRAINT; Schema: gem; Owner: postgres -- ALTER TABLE ONLY gem.ge_experiment_analysis_member ADD CONSTRAINT ge_experiment_analysis_member_experiment_id_fkey FOREIGN KEY (experiment_id) REFERENCES gem.ge_experiment(experiment_id); -- -- Name: ge_experiment_analysis_member ge_experiment_analysis_member_metadata_id_fkey; Type: FK CONSTRAINT; Schema: gem; Owner: postgres -- ALTER TABLE ONLY gem.ge_experiment_analysis_member ADD CONSTRAINT ge_experiment_analysis_member_metadata_id_fkey FOREIGN KEY (metadata_id) REFERENCES metadata.md_metadata(metadata_id); -- -- Name: ge_experiment ge_experiment_contact_id_fkey; Type: FK CONSTRAINT; Schema: gem; Owner: postgres -- ALTER TABLE ONLY gem.ge_experiment ADD CONSTRAINT ge_experiment_contact_id_fkey FOREIGN KEY (contact_id) REFERENCES sgn_people.sp_person(sp_person_id); -- -- Name: ge_experiment_dbxref ge_experiment_dbxref_dbxref_id_fkey; Type: FK CONSTRAINT; Schema: gem; Owner: postgres -- ALTER TABLE ONLY gem.ge_experiment_dbxref ADD CONSTRAINT ge_experiment_dbxref_dbxref_id_fkey FOREIGN KEY (dbxref_id) REFERENCES public.dbxref(dbxref_id); -- -- Name: ge_experiment_dbxref ge_experiment_dbxref_experiment_id_fkey; Type: FK CONSTRAINT; Schema: gem; Owner: postgres -- ALTER TABLE ONLY gem.ge_experiment_dbxref ADD CONSTRAINT ge_experiment_dbxref_experiment_id_fkey FOREIGN KEY (experiment_id) REFERENCES gem.ge_experiment(experiment_id); -- -- Name: ge_experiment_dbxref ge_experiment_dbxref_metadata_id_fkey; Type: FK CONSTRAINT; Schema: gem; Owner: postgres -- ALTER TABLE ONLY gem.ge_experiment_dbxref ADD CONSTRAINT ge_experiment_dbxref_metadata_id_fkey FOREIGN KEY (metadata_id) REFERENCES metadata.md_metadata(metadata_id); -- -- Name: ge_experiment ge_experiment_experimental_design_id_fkey; Type: FK CONSTRAINT; Schema: gem; Owner: postgres -- ALTER TABLE ONLY gem.ge_experiment ADD CONSTRAINT ge_experiment_experimental_design_id_fkey FOREIGN KEY (experimental_design_id) REFERENCES gem.ge_experimental_design(experimental_design_id); -- -- Name: ge_experiment ge_experiment_metadata_id_fkey; Type: FK CONSTRAINT; Schema: gem; Owner: postgres -- ALTER TABLE ONLY gem.ge_experiment ADD CONSTRAINT ge_experiment_metadata_id_fkey FOREIGN KEY (metadata_id) REFERENCES metadata.md_metadata(metadata_id); -- -- Name: ge_experimental_design_dbxref ge_experimental_design_dbxref_dbxref_id_fkey; Type: FK CONSTRAINT; Schema: gem; Owner: postgres -- ALTER TABLE ONLY gem.ge_experimental_design_dbxref ADD CONSTRAINT ge_experimental_design_dbxref_dbxref_id_fkey FOREIGN KEY (dbxref_id) REFERENCES public.dbxref(dbxref_id); -- -- Name: ge_experimental_design_dbxref ge_experimental_design_dbxref_experimental_design_id_fkey; Type: FK CONSTRAINT; Schema: gem; Owner: postgres -- ALTER TABLE ONLY gem.ge_experimental_design_dbxref ADD CONSTRAINT ge_experimental_design_dbxref_experimental_design_id_fkey FOREIGN KEY (experimental_design_id) REFERENCES gem.ge_experimental_design(experimental_design_id); -- -- Name: ge_experimental_design_dbxref ge_experimental_design_dbxref_metadata_id_fkey; Type: FK CONSTRAINT; Schema: gem; Owner: postgres -- ALTER TABLE ONLY gem.ge_experimental_design_dbxref ADD CONSTRAINT ge_experimental_design_dbxref_metadata_id_fkey FOREIGN KEY (metadata_id) REFERENCES metadata.md_metadata(metadata_id); -- -- Name: ge_experimental_design ge_experimental_design_metadata_id_fkey; Type: FK CONSTRAINT; Schema: gem; Owner: postgres -- ALTER TABLE ONLY gem.ge_experimental_design ADD CONSTRAINT ge_experimental_design_metadata_id_fkey FOREIGN KEY (metadata_id) REFERENCES metadata.md_metadata(metadata_id); -- -- Name: ge_experimental_design_pub ge_experimental_design_pub_experimental_design_id_fkey; Type: FK CONSTRAINT; Schema: gem; Owner: postgres -- ALTER TABLE ONLY gem.ge_experimental_design_pub ADD CONSTRAINT ge_experimental_design_pub_experimental_design_id_fkey FOREIGN KEY (experimental_design_id) REFERENCES gem.ge_experimental_design(experimental_design_id); -- -- Name: ge_experimental_design_pub ge_experimental_design_pub_metadata_id_fkey; Type: FK CONSTRAINT; Schema: gem; Owner: postgres -- ALTER TABLE ONLY gem.ge_experimental_design_pub ADD CONSTRAINT ge_experimental_design_pub_metadata_id_fkey FOREIGN KEY (metadata_id) REFERENCES metadata.md_metadata(metadata_id); -- -- Name: ge_experimental_design_pub ge_experimental_design_pub_pub_id_fkey; Type: FK CONSTRAINT; Schema: gem; Owner: postgres -- ALTER TABLE ONLY gem.ge_experimental_design_pub ADD CONSTRAINT ge_experimental_design_pub_pub_id_fkey FOREIGN KEY (pub_id) REFERENCES public.pub(pub_id); -- -- Name: ge_expression_by_experiment ge_expression_by_experiment_dataset_id_fkey; Type: FK CONSTRAINT; Schema: gem; Owner: postgres -- ALTER TABLE ONLY gem.ge_expression_by_experiment ADD CONSTRAINT ge_expression_by_experiment_dataset_id_fkey FOREIGN KEY (dataset_id) REFERENCES biosource.bs_sample(sample_id); -- -- Name: ge_expression_by_experiment ge_expression_by_experiment_experiment_id_fkey; Type: FK CONSTRAINT; Schema: gem; Owner: postgres -- ALTER TABLE ONLY gem.ge_expression_by_experiment ADD CONSTRAINT ge_expression_by_experiment_experiment_id_fkey FOREIGN KEY (experiment_id) REFERENCES gem.ge_experiment(experiment_id); -- -- Name: ge_expression_by_experiment ge_expression_by_experiment_metadata_id_fkey; Type: FK CONSTRAINT; Schema: gem; Owner: postgres -- ALTER TABLE ONLY gem.ge_expression_by_experiment ADD CONSTRAINT ge_expression_by_experiment_metadata_id_fkey FOREIGN KEY (metadata_id) REFERENCES metadata.md_metadata(metadata_id); -- -- Name: ge_expression_by_experiment ge_expression_by_experiment_template_id_fkey; Type: FK CONSTRAINT; Schema: gem; Owner: postgres -- ALTER TABLE ONLY gem.ge_expression_by_experiment ADD CONSTRAINT ge_expression_by_experiment_template_id_fkey FOREIGN KEY (template_id) REFERENCES gem.ge_template(template_id); -- -- Name: ge_fluorescanning ge_fluorescanning_dbxref_id_fkey; Type: FK CONSTRAINT; Schema: gem; Owner: postgres -- ALTER TABLE ONLY gem.ge_fluorescanning ADD CONSTRAINT ge_fluorescanning_dbxref_id_fkey FOREIGN KEY (dbxref_id) REFERENCES public.dbxref(dbxref_id); -- -- Name: ge_fluorescanning ge_fluorescanning_file_id_fkey; Type: FK CONSTRAINT; Schema: gem; Owner: postgres -- ALTER TABLE ONLY gem.ge_fluorescanning ADD CONSTRAINT ge_fluorescanning_file_id_fkey FOREIGN KEY (file_id) REFERENCES metadata.md_files(file_id); -- -- Name: ge_fluorescanning ge_fluorescanning_hybridization_id_fkey; Type: FK CONSTRAINT; Schema: gem; Owner: postgres -- ALTER TABLE ONLY gem.ge_fluorescanning ADD CONSTRAINT ge_fluorescanning_hybridization_id_fkey FOREIGN KEY (hybridization_id) REFERENCES gem.ge_hybridization(hybridization_id); -- -- Name: ge_fluorescanning ge_fluorescanning_metadata_id_fkey; Type: FK CONSTRAINT; Schema: gem; Owner: postgres -- ALTER TABLE ONLY gem.ge_fluorescanning ADD CONSTRAINT ge_fluorescanning_metadata_id_fkey FOREIGN KEY (metadata_id) REFERENCES metadata.md_metadata(metadata_id); -- -- Name: ge_fluorescanning ge_fluorescanning_protocol_id_fkey; Type: FK CONSTRAINT; Schema: gem; Owner: postgres -- ALTER TABLE ONLY gem.ge_fluorescanning ADD CONSTRAINT ge_fluorescanning_protocol_id_fkey FOREIGN KEY (protocol_id) REFERENCES biosource.bs_protocol(protocol_id); -- -- Name: ge_hybridization ge_hybridization_metadata_id_fkey; Type: FK CONSTRAINT; Schema: gem; Owner: postgres -- ALTER TABLE ONLY gem.ge_hybridization ADD CONSTRAINT ge_hybridization_metadata_id_fkey FOREIGN KEY (metadata_id) REFERENCES metadata.md_metadata(metadata_id); -- -- Name: ge_hybridization ge_hybridization_platform_id_fkey; Type: FK CONSTRAINT; Schema: gem; Owner: postgres -- ALTER TABLE ONLY gem.ge_hybridization ADD CONSTRAINT ge_hybridization_platform_id_fkey FOREIGN KEY (platform_id) REFERENCES gem.ge_platform(platform_id); -- -- Name: ge_hybridization ge_hybridization_protocol_id_fkey; Type: FK CONSTRAINT; Schema: gem; Owner: postgres -- ALTER TABLE ONLY gem.ge_hybridization ADD CONSTRAINT ge_hybridization_protocol_id_fkey FOREIGN KEY (protocol_id) REFERENCES biosource.bs_protocol(protocol_id); -- -- Name: ge_hybridization ge_hybridization_target_id_fkey; Type: FK CONSTRAINT; Schema: gem; Owner: postgres -- ALTER TABLE ONLY gem.ge_hybridization ADD CONSTRAINT ge_hybridization_target_id_fkey FOREIGN KEY (target_id) REFERENCES gem.ge_target(target_id); -- -- Name: ge_platform ge_platform_contact_id_fkey; Type: FK CONSTRAINT; Schema: gem; Owner: postgres -- ALTER TABLE ONLY gem.ge_platform ADD CONSTRAINT ge_platform_contact_id_fkey FOREIGN KEY (contact_id) REFERENCES sgn_people.sp_person(sp_person_id); -- -- Name: ge_platform_dbxref ge_platform_dbxref_dbxref_id_fkey; Type: FK CONSTRAINT; Schema: gem; Owner: postgres -- ALTER TABLE ONLY gem.ge_platform_dbxref ADD CONSTRAINT ge_platform_dbxref_dbxref_id_fkey FOREIGN KEY (dbxref_id) REFERENCES public.dbxref(dbxref_id); -- -- Name: ge_platform_dbxref ge_platform_dbxref_metadata_id_fkey; Type: FK CONSTRAINT; Schema: gem; Owner: postgres -- ALTER TABLE ONLY gem.ge_platform_dbxref ADD CONSTRAINT ge_platform_dbxref_metadata_id_fkey FOREIGN KEY (metadata_id) REFERENCES metadata.md_metadata(metadata_id); -- -- Name: ge_platform_dbxref ge_platform_dbxref_platform_id_fkey; Type: FK CONSTRAINT; Schema: gem; Owner: postgres -- ALTER TABLE ONLY gem.ge_platform_dbxref ADD CONSTRAINT ge_platform_dbxref_platform_id_fkey FOREIGN KEY (platform_id) REFERENCES gem.ge_platform(platform_id); -- -- Name: ge_platform_design ge_platform_design_metadata_id_fkey; Type: FK CONSTRAINT; Schema: gem; Owner: postgres -- ALTER TABLE ONLY gem.ge_platform_design ADD CONSTRAINT ge_platform_design_metadata_id_fkey FOREIGN KEY (metadata_id) REFERENCES metadata.md_metadata(metadata_id); -- -- Name: ge_platform_design ge_platform_design_platform_id_fkey; Type: FK CONSTRAINT; Schema: gem; Owner: postgres -- ALTER TABLE ONLY gem.ge_platform_design ADD CONSTRAINT ge_platform_design_platform_id_fkey FOREIGN KEY (platform_id) REFERENCES gem.ge_platform(platform_id); -- -- Name: ge_platform_design ge_platform_design_sample_id_fkey; Type: FK CONSTRAINT; Schema: gem; Owner: postgres -- ALTER TABLE ONLY gem.ge_platform_design ADD CONSTRAINT ge_platform_design_sample_id_fkey FOREIGN KEY (sample_id) REFERENCES biosource.bs_sample(sample_id); -- -- Name: ge_platform ge_platform_metadata_id_fkey; Type: FK CONSTRAINT; Schema: gem; Owner: postgres -- ALTER TABLE ONLY gem.ge_platform ADD CONSTRAINT ge_platform_metadata_id_fkey FOREIGN KEY (metadata_id) REFERENCES metadata.md_metadata(metadata_id); -- -- Name: ge_platform_pub ge_platform_pub_metadata_id_fkey; Type: FK CONSTRAINT; Schema: gem; Owner: postgres -- ALTER TABLE ONLY gem.ge_platform_pub ADD CONSTRAINT ge_platform_pub_metadata_id_fkey FOREIGN KEY (metadata_id) REFERENCES metadata.md_metadata(metadata_id); -- -- Name: ge_platform_pub ge_platform_pub_platform_id_fkey; Type: FK CONSTRAINT; Schema: gem; Owner: postgres -- ALTER TABLE ONLY gem.ge_platform_pub ADD CONSTRAINT ge_platform_pub_platform_id_fkey FOREIGN KEY (platform_id) REFERENCES gem.ge_platform(platform_id); -- -- Name: ge_platform_pub ge_platform_pub_pub_id_fkey; Type: FK CONSTRAINT; Schema: gem; Owner: postgres -- ALTER TABLE ONLY gem.ge_platform_pub ADD CONSTRAINT ge_platform_pub_pub_id_fkey FOREIGN KEY (pub_id) REFERENCES public.pub(pub_id); -- -- Name: ge_platform ge_platform_technology_type_id_fkey; Type: FK CONSTRAINT; Schema: gem; Owner: postgres -- ALTER TABLE ONLY gem.ge_platform ADD CONSTRAINT ge_platform_technology_type_id_fkey FOREIGN KEY (technology_type_id) REFERENCES gem.ge_technology_type(technology_type_id); -- -- Name: ge_probe_expression ge_probe_expression_dataset_id_fkey; Type: FK CONSTRAINT; Schema: gem; Owner: postgres -- ALTER TABLE ONLY gem.ge_probe_expression ADD CONSTRAINT ge_probe_expression_dataset_id_fkey FOREIGN KEY (dataset_id) REFERENCES biosource.bs_sample(sample_id); -- -- Name: ge_probe_expression ge_probe_expression_metadata_id_fkey; Type: FK CONSTRAINT; Schema: gem; Owner: postgres -- ALTER TABLE ONLY gem.ge_probe_expression ADD CONSTRAINT ge_probe_expression_metadata_id_fkey FOREIGN KEY (metadata_id) REFERENCES metadata.md_metadata(metadata_id); -- -- Name: ge_probe_expression ge_probe_expression_probe_id_fkey; Type: FK CONSTRAINT; Schema: gem; Owner: postgres -- ALTER TABLE ONLY gem.ge_probe_expression ADD CONSTRAINT ge_probe_expression_probe_id_fkey FOREIGN KEY (probe_id) REFERENCES gem.ge_probe(probe_id); -- -- Name: ge_probe_expression ge_probe_expression_target_element_id_fkey; Type: FK CONSTRAINT; Schema: gem; Owner: postgres -- ALTER TABLE ONLY gem.ge_probe_expression ADD CONSTRAINT ge_probe_expression_target_element_id_fkey FOREIGN KEY (target_element_id) REFERENCES gem.ge_target_element(target_element_id); -- -- Name: ge_probe ge_probe_metadata_id_fkey; Type: FK CONSTRAINT; Schema: gem; Owner: postgres -- ALTER TABLE ONLY gem.ge_probe ADD CONSTRAINT ge_probe_metadata_id_fkey FOREIGN KEY (metadata_id) REFERENCES metadata.md_metadata(metadata_id); -- -- Name: ge_probe ge_probe_platform_id_fkey; Type: FK CONSTRAINT; Schema: gem; Owner: postgres -- ALTER TABLE ONLY gem.ge_probe ADD CONSTRAINT ge_probe_platform_id_fkey FOREIGN KEY (platform_id) REFERENCES gem.ge_platform(platform_id); -- -- Name: ge_probe ge_probe_sequence_file_id_fkey; Type: FK CONSTRAINT; Schema: gem; Owner: postgres -- ALTER TABLE ONLY gem.ge_probe ADD CONSTRAINT ge_probe_sequence_file_id_fkey FOREIGN KEY (sequence_file_id) REFERENCES metadata.md_files(file_id); -- -- Name: ge_probe_spot_coordinate ge_probe_spot_coordinate_metadata_id_fkey; Type: FK CONSTRAINT; Schema: gem; Owner: postgres -- ALTER TABLE ONLY gem.ge_probe_spot_coordinate ADD CONSTRAINT ge_probe_spot_coordinate_metadata_id_fkey FOREIGN KEY (metadata_id) REFERENCES metadata.md_metadata(metadata_id); -- -- Name: ge_probe_spot_coordinate ge_probe_spot_coordinate_probe_spot_id_fkey; Type: FK CONSTRAINT; Schema: gem; Owner: postgres -- ALTER TABLE ONLY gem.ge_probe_spot_coordinate ADD CONSTRAINT ge_probe_spot_coordinate_probe_spot_id_fkey FOREIGN KEY (probe_spot_id) REFERENCES gem.ge_probe_spot(probe_spot_id); -- -- Name: ge_probe_spot ge_probe_spot_metadata_id_fkey; Type: FK CONSTRAINT; Schema: gem; Owner: postgres -- ALTER TABLE ONLY gem.ge_probe_spot ADD CONSTRAINT ge_probe_spot_metadata_id_fkey FOREIGN KEY (metadata_id) REFERENCES metadata.md_metadata(metadata_id); -- -- Name: ge_probe_spot ge_probe_spot_probe_id_fkey; Type: FK CONSTRAINT; Schema: gem; Owner: postgres -- ALTER TABLE ONLY gem.ge_probe_spot ADD CONSTRAINT ge_probe_spot_probe_id_fkey FOREIGN KEY (probe_id) REFERENCES gem.ge_probe(probe_id); -- -- Name: ge_probe ge_probe_template_id_fkey; Type: FK CONSTRAINT; Schema: gem; Owner: postgres -- ALTER TABLE ONLY gem.ge_probe ADD CONSTRAINT ge_probe_template_id_fkey FOREIGN KEY (template_id) REFERENCES gem.ge_template(template_id); -- -- Name: ge_profile_element ge_profile_element_cluster_profile_id_fkey; Type: FK CONSTRAINT; Schema: gem; Owner: postgres -- ALTER TABLE ONLY gem.ge_profile_element ADD CONSTRAINT ge_profile_element_cluster_profile_id_fkey FOREIGN KEY (cluster_profile_id) REFERENCES gem.ge_cluster_profile(cluster_profile_id); -- -- Name: ge_profile_element ge_profile_element_experiment_id_fkey; Type: FK CONSTRAINT; Schema: gem; Owner: postgres -- ALTER TABLE ONLY gem.ge_profile_element ADD CONSTRAINT ge_profile_element_experiment_id_fkey FOREIGN KEY (experiment_id) REFERENCES gem.ge_experiment(experiment_id); -- -- Name: ge_profile_element ge_profile_element_metadata_id_fkey; Type: FK CONSTRAINT; Schema: gem; Owner: postgres -- ALTER TABLE ONLY gem.ge_profile_element ADD CONSTRAINT ge_profile_element_metadata_id_fkey FOREIGN KEY (metadata_id) REFERENCES metadata.md_metadata(metadata_id); -- -- Name: ge_target_dbxref ge_target_dbxref_dbxref_id_fkey; Type: FK CONSTRAINT; Schema: gem; Owner: postgres -- ALTER TABLE ONLY gem.ge_target_dbxref ADD CONSTRAINT ge_target_dbxref_dbxref_id_fkey FOREIGN KEY (dbxref_id) REFERENCES public.dbxref(dbxref_id); -- -- Name: ge_target_dbxref ge_target_dbxref_metadata_id_fkey; Type: FK CONSTRAINT; Schema: gem; Owner: postgres -- ALTER TABLE ONLY gem.ge_target_dbxref ADD CONSTRAINT ge_target_dbxref_metadata_id_fkey FOREIGN KEY (metadata_id) REFERENCES metadata.md_metadata(metadata_id); -- -- Name: ge_target_dbxref ge_target_dbxref_target_id_fkey; Type: FK CONSTRAINT; Schema: gem; Owner: postgres -- ALTER TABLE ONLY gem.ge_target_dbxref ADD CONSTRAINT ge_target_dbxref_target_id_fkey FOREIGN KEY (target_id) REFERENCES gem.ge_target(target_id); -- -- Name: ge_target_element ge_target_element_metadata_id_fkey; Type: FK CONSTRAINT; Schema: gem; Owner: postgres -- ALTER TABLE ONLY gem.ge_target_element ADD CONSTRAINT ge_target_element_metadata_id_fkey FOREIGN KEY (metadata_id) REFERENCES metadata.md_metadata(metadata_id); -- -- Name: ge_target_element ge_target_element_protocol_id_fkey; Type: FK CONSTRAINT; Schema: gem; Owner: postgres -- ALTER TABLE ONLY gem.ge_target_element ADD CONSTRAINT ge_target_element_protocol_id_fkey FOREIGN KEY (protocol_id) REFERENCES biosource.bs_protocol(protocol_id); -- -- Name: ge_target_element ge_target_element_sample_id_fkey; Type: FK CONSTRAINT; Schema: gem; Owner: postgres -- ALTER TABLE ONLY gem.ge_target_element ADD CONSTRAINT ge_target_element_sample_id_fkey FOREIGN KEY (sample_id) REFERENCES biosource.bs_sample(sample_id); -- -- Name: ge_target_element ge_target_element_target_id_fkey; Type: FK CONSTRAINT; Schema: gem; Owner: postgres -- ALTER TABLE ONLY gem.ge_target_element ADD CONSTRAINT ge_target_element_target_id_fkey FOREIGN KEY (target_id) REFERENCES gem.ge_target(target_id); -- -- Name: ge_target ge_target_experiment_id_fkey; Type: FK CONSTRAINT; Schema: gem; Owner: postgres -- ALTER TABLE ONLY gem.ge_target ADD CONSTRAINT ge_target_experiment_id_fkey FOREIGN KEY (experiment_id) REFERENCES gem.ge_experiment(experiment_id); -- -- Name: ge_target ge_target_metadata_id_fkey; Type: FK CONSTRAINT; Schema: gem; Owner: postgres -- ALTER TABLE ONLY gem.ge_target ADD CONSTRAINT ge_target_metadata_id_fkey FOREIGN KEY (metadata_id) REFERENCES metadata.md_metadata(metadata_id); -- -- Name: ge_technology_type ge_technology_type_metadata_id_fkey; Type: FK CONSTRAINT; Schema: gem; Owner: postgres -- ALTER TABLE ONLY gem.ge_technology_type ADD CONSTRAINT ge_technology_type_metadata_id_fkey FOREIGN KEY (metadata_id) REFERENCES metadata.md_metadata(metadata_id); -- -- Name: ge_template_dbiref ge_template_dbiref_dbiref_id_fkey; Type: FK CONSTRAINT; Schema: gem; Owner: postgres -- ALTER TABLE ONLY gem.ge_template_dbiref ADD CONSTRAINT ge_template_dbiref_dbiref_id_fkey FOREIGN KEY (dbiref_id) REFERENCES metadata.md_dbiref(dbiref_id); -- -- Name: ge_template_dbiref ge_template_dbiref_metadata_id_fkey; Type: FK CONSTRAINT; Schema: gem; Owner: postgres -- ALTER TABLE ONLY gem.ge_template_dbiref ADD CONSTRAINT ge_template_dbiref_metadata_id_fkey FOREIGN KEY (metadata_id) REFERENCES metadata.md_metadata(metadata_id); -- -- Name: ge_template_dbiref ge_template_dbiref_template_id_fkey; Type: FK CONSTRAINT; Schema: gem; Owner: postgres -- ALTER TABLE ONLY gem.ge_template_dbiref ADD CONSTRAINT ge_template_dbiref_template_id_fkey FOREIGN KEY (template_id) REFERENCES gem.ge_template(template_id); -- -- Name: ge_template_dbxref ge_template_dbxref_dbxref_id_fkey; Type: FK CONSTRAINT; Schema: gem; Owner: postgres -- ALTER TABLE ONLY gem.ge_template_dbxref ADD CONSTRAINT ge_template_dbxref_dbxref_id_fkey FOREIGN KEY (dbxref_id) REFERENCES public.dbxref(dbxref_id); -- -- Name: ge_template_dbxref ge_template_dbxref_metadata_id_fkey; Type: FK CONSTRAINT; Schema: gem; Owner: postgres -- ALTER TABLE ONLY gem.ge_template_dbxref ADD CONSTRAINT ge_template_dbxref_metadata_id_fkey FOREIGN KEY (metadata_id) REFERENCES metadata.md_metadata(metadata_id); -- -- Name: ge_template_dbxref ge_template_dbxref_template_id_fkey; Type: FK CONSTRAINT; Schema: gem; Owner: postgres -- ALTER TABLE ONLY gem.ge_template_dbxref ADD CONSTRAINT ge_template_dbxref_template_id_fkey FOREIGN KEY (template_id) REFERENCES gem.ge_template(template_id); -- -- Name: ge_template_diff_expression ge_template_diff_expression_dataset_id_fkey; Type: FK CONSTRAINT; Schema: gem; Owner: postgres -- ALTER TABLE ONLY gem.ge_template_diff_expression ADD CONSTRAINT ge_template_diff_expression_dataset_id_fkey FOREIGN KEY (dataset_id) REFERENCES biosource.bs_sample(sample_id); -- -- Name: ge_template_diff_expression ge_template_diff_expression_diff_expression_id_fkey; Type: FK CONSTRAINT; Schema: gem; Owner: postgres -- ALTER TABLE ONLY gem.ge_template_diff_expression ADD CONSTRAINT ge_template_diff_expression_diff_expression_id_fkey FOREIGN KEY (diff_expression_id) REFERENCES gem.ge_diff_expression(diff_expression_id); -- -- Name: ge_template_diff_expression ge_template_diff_expression_metadata_id_fkey; Type: FK CONSTRAINT; Schema: gem; Owner: postgres -- ALTER TABLE ONLY gem.ge_template_diff_expression ADD CONSTRAINT ge_template_diff_expression_metadata_id_fkey FOREIGN KEY (metadata_id) REFERENCES metadata.md_metadata(metadata_id); -- -- Name: ge_template_diff_expression ge_template_diff_expression_template_id_fkey; Type: FK CONSTRAINT; Schema: gem; Owner: postgres -- ALTER TABLE ONLY gem.ge_template_diff_expression ADD CONSTRAINT ge_template_diff_expression_template_id_fkey FOREIGN KEY (template_id) REFERENCES gem.ge_template(template_id); -- -- Name: ge_template_expression ge_template_expression_dataset_id_fkey; Type: FK CONSTRAINT; Schema: gem; Owner: postgres -- ALTER TABLE ONLY gem.ge_template_expression ADD CONSTRAINT ge_template_expression_dataset_id_fkey FOREIGN KEY (dataset_id) REFERENCES biosource.bs_sample(sample_id); -- -- Name: ge_template_expression ge_template_expression_hybridization_id_fkey; Type: FK CONSTRAINT; Schema: gem; Owner: postgres -- ALTER TABLE ONLY gem.ge_template_expression ADD CONSTRAINT ge_template_expression_hybridization_id_fkey FOREIGN KEY (hybridization_id) REFERENCES gem.ge_hybridization(hybridization_id); -- -- Name: ge_template_expression ge_template_expression_metadata_id_fkey; Type: FK CONSTRAINT; Schema: gem; Owner: postgres -- ALTER TABLE ONLY gem.ge_template_expression ADD CONSTRAINT ge_template_expression_metadata_id_fkey FOREIGN KEY (metadata_id) REFERENCES metadata.md_metadata(metadata_id); -- -- Name: ge_template_expression ge_template_expression_template_id_fkey; Type: FK CONSTRAINT; Schema: gem; Owner: postgres -- ALTER TABLE ONLY gem.ge_template_expression ADD CONSTRAINT ge_template_expression_template_id_fkey FOREIGN KEY (template_id) REFERENCES gem.ge_template(template_id); -- -- Name: ge_template ge_template_metadata_id_fkey; Type: FK CONSTRAINT; Schema: gem; Owner: postgres -- ALTER TABLE ONLY gem.ge_template ADD CONSTRAINT ge_template_metadata_id_fkey FOREIGN KEY (metadata_id) REFERENCES metadata.md_metadata(metadata_id); -- -- Name: ge_template ge_template_platform_id_fkey; Type: FK CONSTRAINT; Schema: gem; Owner: postgres -- ALTER TABLE ONLY gem.ge_template ADD CONSTRAINT ge_template_platform_id_fkey FOREIGN KEY (platform_id) REFERENCES gem.ge_platform(platform_id); -- -- Name: blast_hit blast_hit_blast_query_id_fkey; Type: FK CONSTRAINT; Schema: genomic; Owner: postgres -- ALTER TABLE ONLY genomic.blast_hit ADD CONSTRAINT blast_hit_blast_query_id_fkey FOREIGN KEY (blast_query_id) REFERENCES genomic.blast_query(blast_query_id) ON DELETE CASCADE; -- -- Name: blast_query blast_query_blast_db_id_fkey; Type: FK CONSTRAINT; Schema: genomic; Owner: postgres -- ALTER TABLE ONLY genomic.blast_query ADD CONSTRAINT blast_query_blast_db_id_fkey FOREIGN KEY (blast_db_id) REFERENCES sgn.blast_db(blast_db_id) ON DELETE RESTRICT; -- -- Name: blast_query blast_query_query_source_type_id_fkey; Type: FK CONSTRAINT; Schema: genomic; Owner: postgres -- ALTER TABLE ONLY genomic.blast_query ADD CONSTRAINT blast_query_query_source_type_id_fkey FOREIGN KEY (query_source_type_id) REFERENCES genomic.query_source_type(query_source_type_id) ON DELETE RESTRICT; -- -- Name: chromat chromat_clone_id_fkey; Type: FK CONSTRAINT; Schema: genomic; Owner: postgres -- ALTER TABLE ONLY genomic.chromat ADD CONSTRAINT chromat_clone_id_fkey FOREIGN KEY (clone_id) REFERENCES genomic.clone(clone_id) ON DELETE CASCADE; -- -- Name: clone clone_clone_type_id_fkey; Type: FK CONSTRAINT; Schema: genomic; Owner: postgres -- ALTER TABLE ONLY genomic.clone ADD CONSTRAINT clone_clone_type_id_fkey FOREIGN KEY (clone_type_id) REFERENCES genomic.clone_type(clone_type_id) ON DELETE RESTRICT; -- -- Name: clone_feature clone_feature_clone_id_fkey; Type: FK CONSTRAINT; Schema: genomic; Owner: postgres -- ALTER TABLE ONLY genomic.clone_feature ADD CONSTRAINT clone_feature_clone_id_fkey FOREIGN KEY (clone_id) REFERENCES genomic.clone(clone_id) ON DELETE CASCADE; -- -- Name: clone_feature clone_feature_feature_id_fkey; Type: FK CONSTRAINT; Schema: genomic; Owner: postgres -- ALTER TABLE ONLY genomic.clone_feature ADD CONSTRAINT clone_feature_feature_id_fkey FOREIGN KEY (feature_id) REFERENCES public.feature(feature_id) ON DELETE CASCADE; -- -- Name: clone clone_library_id_fkey; Type: FK CONSTRAINT; Schema: genomic; Owner: postgres -- ALTER TABLE ONLY genomic.clone ADD CONSTRAINT clone_library_id_fkey FOREIGN KEY (library_id) REFERENCES genomic.library(library_id) ON DELETE RESTRICT; -- -- Name: gss gss_chromat_id_fkey; Type: FK CONSTRAINT; Schema: genomic; Owner: postgres -- ALTER TABLE ONLY genomic.gss ADD CONSTRAINT gss_chromat_id_fkey FOREIGN KEY (chromat_id) REFERENCES genomic.chromat(chromat_id) ON DELETE CASCADE; -- -- Name: gss_submitted_to_genbank gss_submitted_to_genbank_genbank_submission_id_fkey; Type: FK CONSTRAINT; Schema: genomic; Owner: postgres -- ALTER TABLE ONLY genomic.gss_submitted_to_genbank ADD CONSTRAINT gss_submitted_to_genbank_genbank_submission_id_fkey FOREIGN KEY (genbank_submission_id) REFERENCES genomic.genbank_submission(genbank_submission_id) ON DELETE CASCADE; -- -- Name: gss_submitted_to_genbank gss_submitted_to_genbank_gss_id_fkey; Type: FK CONSTRAINT; Schema: genomic; Owner: postgres -- ALTER TABLE ONLY genomic.gss_submitted_to_genbank ADD CONSTRAINT gss_submitted_to_genbank_gss_id_fkey FOREIGN KEY (gss_id) REFERENCES genomic.gss(gss_id) ON DELETE RESTRICT; -- -- Name: library library_accession_id_fkey; Type: FK CONSTRAINT; Schema: genomic; Owner: postgres -- ALTER TABLE ONLY genomic.library ADD CONSTRAINT library_accession_id_fkey FOREIGN KEY (accession_id) REFERENCES sgn.accession(accession_id) ON DELETE RESTRICT; -- -- Name: library library_clone_type_id_fkey; Type: FK CONSTRAINT; Schema: genomic; Owner: postgres -- ALTER TABLE ONLY genomic.library ADD CONSTRAINT library_clone_type_id_fkey FOREIGN KEY (clone_type_id) REFERENCES genomic.clone_type(clone_type_id) ON DELETE RESTRICT; -- -- Name: library library_left_primer_id_fkey; Type: FK CONSTRAINT; Schema: genomic; Owner: postgres -- ALTER TABLE ONLY genomic.library ADD CONSTRAINT library_left_primer_id_fkey FOREIGN KEY (left_primer_id) REFERENCES genomic.sequencing_primer(sequencing_primer_id); -- -- Name: library library_organism_id_fkey; Type: FK CONSTRAINT; Schema: genomic; Owner: postgres -- ALTER TABLE ONLY genomic.library ADD CONSTRAINT library_organism_id_fkey FOREIGN KEY (organism_id) REFERENCES public.organism(organism_id) DEFERRABLE INITIALLY DEFERRED; -- -- Name: library library_right_primer_id_fkey; Type: FK CONSTRAINT; Schema: genomic; Owner: postgres -- ALTER TABLE ONLY genomic.library ADD CONSTRAINT library_right_primer_id_fkey FOREIGN KEY (right_primer_id) REFERENCES genomic.sequencing_primer(sequencing_primer_id); -- -- Name: library_shortname_abbreviation library_shortname_abbreviation_library_id_fkey; Type: FK CONSTRAINT; Schema: genomic; Owner: postgres -- ALTER TABLE ONLY genomic.library_shortname_abbreviation ADD CONSTRAINT library_shortname_abbreviation_library_id_fkey FOREIGN KEY (library_id) REFERENCES genomic.library(library_id); -- -- Name: library library_vector_fkey; Type: FK CONSTRAINT; Schema: genomic; Owner: postgres -- ALTER TABLE ONLY genomic.library ADD CONSTRAINT library_vector_fkey FOREIGN KEY (vector) REFERENCES sgn.cloning_vector(name); -- -- Name: qc_report qc_report_gss_id_fkey; Type: FK CONSTRAINT; Schema: genomic; Owner: postgres -- ALTER TABLE ONLY genomic.qc_report ADD CONSTRAINT qc_report_gss_id_fkey FOREIGN KEY (gss_id) REFERENCES genomic.gss(gss_id) ON DELETE CASCADE; -- -- Name: experiment_image experiment_image_experiment_id_fkey; Type: FK CONSTRAINT; Schema: insitu; Owner: postgres -- ALTER TABLE ONLY insitu.experiment_image ADD CONSTRAINT experiment_image_experiment_id_fkey FOREIGN KEY (experiment_id) REFERENCES insitu.experiment(experiment_id); -- -- Name: experiment_image experiment_image_image_id_fkey; Type: FK CONSTRAINT; Schema: insitu; Owner: postgres -- ALTER TABLE ONLY insitu.experiment_image ADD CONSTRAINT experiment_image_image_id_fkey FOREIGN KEY (image_id) REFERENCES metadata.md_image(image_id); -- -- Name: experiment_image experiment_image_sp_person_id_fkey; Type: FK CONSTRAINT; Schema: insitu; Owner: postgres -- ALTER TABLE ONLY insitu.experiment_image ADD CONSTRAINT experiment_image_sp_person_id_fkey FOREIGN KEY (sp_person_id) REFERENCES sgn_people.sp_person(sp_person_id); -- -- Name: experiment_tag experiment_tag_experiment_id_fkey; Type: FK CONSTRAINT; Schema: insitu; Owner: postgres -- ALTER TABLE ONLY insitu.experiment_tag ADD CONSTRAINT experiment_tag_experiment_id_fkey FOREIGN KEY (experiment_id) REFERENCES insitu.experiment(experiment_id); -- -- Name: experiment_tag experiment_tag_sp_person_id_fkey; Type: FK CONSTRAINT; Schema: insitu; Owner: postgres -- ALTER TABLE ONLY insitu.experiment_tag ADD CONSTRAINT experiment_tag_sp_person_id_fkey FOREIGN KEY (sp_person_id) REFERENCES sgn_people.sp_person(sp_person_id); -- -- Name: experiment_tag experiment_tag_tag_id_fkey; Type: FK CONSTRAINT; Schema: insitu; Owner: postgres -- ALTER TABLE ONLY insitu.experiment_tag ADD CONSTRAINT experiment_tag_tag_id_fkey FOREIGN KEY (tag_id) REFERENCES metadata.md_tag(tag_id); -- -- Name: attribution_to attribution_id_fk; Type: FK CONSTRAINT; Schema: metadata; Owner: postgres -- ALTER TABLE ONLY metadata.attribution_to ADD CONSTRAINT attribution_id_fk FOREIGN KEY (attribution_id) REFERENCES metadata.attribution(attribution_id) ON DELETE CASCADE; -- -- Name: md_dbipath md_dbipath_metadata_id_fkey; Type: FK CONSTRAINT; Schema: metadata; Owner: postgres -- ALTER TABLE ONLY metadata.md_dbipath ADD CONSTRAINT md_dbipath_metadata_id_fkey FOREIGN KEY (metadata_id) REFERENCES metadata.md_metadata(metadata_id); -- -- Name: md_dbiref md_dbiref_dbipath_id_fkey; Type: FK CONSTRAINT; Schema: metadata; Owner: postgres -- ALTER TABLE ONLY metadata.md_dbiref ADD CONSTRAINT md_dbiref_dbipath_id_fkey FOREIGN KEY (dbipath_id) REFERENCES metadata.md_dbipath(dbipath_id); -- -- Name: md_dbiref md_dbiref_metadata_id_fkey; Type: FK CONSTRAINT; Schema: metadata; Owner: postgres -- ALTER TABLE ONLY metadata.md_dbiref ADD CONSTRAINT md_dbiref_metadata_id_fkey FOREIGN KEY (metadata_id) REFERENCES metadata.md_metadata(metadata_id); -- -- Name: md_dbversion md_dbversion_metadata_id_fkey; Type: FK CONSTRAINT; Schema: metadata; Owner: postgres -- ALTER TABLE ONLY metadata.md_dbversion ADD CONSTRAINT md_dbversion_metadata_id_fkey FOREIGN KEY (metadata_id) REFERENCES metadata.md_metadata(metadata_id); -- -- Name: md_files md_files_metadata_id_fkey; Type: FK CONSTRAINT; Schema: metadata; Owner: postgres -- ALTER TABLE ONLY metadata.md_files ADD CONSTRAINT md_files_metadata_id_fkey FOREIGN KEY (metadata_id) REFERENCES metadata.md_metadata(metadata_id); -- -- Name: md_groupmembers md_groupmembers_dbiref_id_fkey; Type: FK CONSTRAINT; Schema: metadata; Owner: postgres -- ALTER TABLE ONLY metadata.md_groupmembers ADD CONSTRAINT md_groupmembers_dbiref_id_fkey FOREIGN KEY (dbiref_id) REFERENCES metadata.md_dbiref(dbiref_id); -- -- Name: md_groupmembers md_groupmembers_group_id_fkey; Type: FK CONSTRAINT; Schema: metadata; Owner: postgres -- ALTER TABLE ONLY metadata.md_groupmembers ADD CONSTRAINT md_groupmembers_group_id_fkey FOREIGN KEY (group_id) REFERENCES metadata.md_groups(group_id); -- -- Name: md_groupmembers md_groupmembers_metadata_id_fkey; Type: FK CONSTRAINT; Schema: metadata; Owner: postgres -- ALTER TABLE ONLY metadata.md_groupmembers ADD CONSTRAINT md_groupmembers_metadata_id_fkey FOREIGN KEY (metadata_id) REFERENCES metadata.md_metadata(metadata_id); -- -- Name: md_groups md_groups_metadata_id_fkey; Type: FK CONSTRAINT; Schema: metadata; Owner: postgres -- ALTER TABLE ONLY metadata.md_groups ADD CONSTRAINT md_groups_metadata_id_fkey FOREIGN KEY (metadata_id) REFERENCES metadata.md_metadata(metadata_id); -- -- Name: md_image_cvterm md_image_cvterm_cvterm_id_fkey; Type: FK CONSTRAINT; Schema: metadata; Owner: postgres -- ALTER TABLE ONLY metadata.md_image_cvterm ADD CONSTRAINT md_image_cvterm_cvterm_id_fkey FOREIGN KEY (cvterm_id) REFERENCES public.cvterm(cvterm_id); -- -- Name: md_image_cvterm md_image_cvterm_image_id_fkey; Type: FK CONSTRAINT; Schema: metadata; Owner: postgres -- ALTER TABLE ONLY metadata.md_image_cvterm ADD CONSTRAINT md_image_cvterm_image_id_fkey FOREIGN KEY (image_id) REFERENCES metadata.md_image(image_id); -- -- Name: md_image_cvterm md_image_cvterm_sp_person_id_fkey; Type: FK CONSTRAINT; Schema: metadata; Owner: postgres -- ALTER TABLE ONLY metadata.md_image_cvterm ADD CONSTRAINT md_image_cvterm_sp_person_id_fkey FOREIGN KEY (sp_person_id) REFERENCES sgn_people.sp_person(sp_person_id); -- -- Name: md_image_organism md_image_organism_image_id_fkey; Type: FK CONSTRAINT; Schema: metadata; Owner: postgres -- ALTER TABLE ONLY metadata.md_image_organism ADD CONSTRAINT md_image_organism_image_id_fkey FOREIGN KEY (image_id) REFERENCES metadata.md_image(image_id); -- -- Name: md_image_organism md_image_organism_organism_id_fkey; Type: FK CONSTRAINT; Schema: metadata; Owner: postgres -- ALTER TABLE ONLY metadata.md_image_organism ADD CONSTRAINT md_image_organism_organism_id_fkey FOREIGN KEY (organism_id) REFERENCES public.organism(organism_id); -- -- Name: md_image_organism md_image_organism_sp_person_id_fkey; Type: FK CONSTRAINT; Schema: metadata; Owner: postgres -- ALTER TABLE ONLY metadata.md_image_organism ADD CONSTRAINT md_image_organism_sp_person_id_fkey FOREIGN KEY (sp_person_id) REFERENCES sgn_people.sp_person(sp_person_id); -- -- Name: md_image md_image_sp_person_id_fkey; Type: FK CONSTRAINT; Schema: metadata; Owner: postgres -- ALTER TABLE ONLY metadata.md_image ADD CONSTRAINT md_image_sp_person_id_fkey FOREIGN KEY (sp_person_id) REFERENCES sgn_people.sp_person(sp_person_id); -- -- Name: md_metadata md_metadata_create_person_id_fkey; Type: FK CONSTRAINT; Schema: metadata; Owner: postgres -- ALTER TABLE ONLY metadata.md_metadata ADD CONSTRAINT md_metadata_create_person_id_fkey FOREIGN KEY (create_person_id) REFERENCES sgn_people.sp_person(sp_person_id); -- -- Name: md_metadata md_metadata_modified_person_id_fkey; Type: FK CONSTRAINT; Schema: metadata; Owner: postgres -- ALTER TABLE ONLY metadata.md_metadata ADD CONSTRAINT md_metadata_modified_person_id_fkey FOREIGN KEY (modified_person_id) REFERENCES sgn_people.sp_person(sp_person_id); -- -- Name: md_tag_image md_tag_image_image_id_fkey; Type: FK CONSTRAINT; Schema: metadata; Owner: postgres -- ALTER TABLE ONLY metadata.md_tag_image ADD CONSTRAINT md_tag_image_image_id_fkey FOREIGN KEY (image_id) REFERENCES metadata.md_image(image_id); -- -- Name: md_tag_image md_tag_image_sp_person_id_fkey; Type: FK CONSTRAINT; Schema: metadata; Owner: postgres -- ALTER TABLE ONLY metadata.md_tag_image ADD CONSTRAINT md_tag_image_sp_person_id_fkey FOREIGN KEY (sp_person_id) REFERENCES sgn_people.sp_person(sp_person_id); -- -- Name: md_tag_image md_tag_image_tag_id_fkey; Type: FK CONSTRAINT; Schema: metadata; Owner: postgres -- ALTER TABLE ONLY metadata.md_tag_image ADD CONSTRAINT md_tag_image_tag_id_fkey FOREIGN KEY (tag_id) REFERENCES metadata.md_tag(tag_id); -- -- Name: md_tag md_tag_sp_person_id_fkey; Type: FK CONSTRAINT; Schema: metadata; Owner: postgres -- ALTER TABLE ONLY metadata.md_tag ADD CONSTRAINT md_tag_sp_person_id_fkey FOREIGN KEY (sp_person_id) REFERENCES sgn_people.sp_person(sp_person_id); -- -- Name: attribution_to organization_id_fk; Type: FK CONSTRAINT; Schema: metadata; Owner: postgres -- ALTER TABLE ONLY metadata.attribution_to ADD CONSTRAINT organization_id_fk FOREIGN KEY (organization_id) REFERENCES sgn_people.sp_organization(sp_organization_id); -- -- Name: attribution_to person_id_fk; Type: FK CONSTRAINT; Schema: metadata; Owner: postgres -- ALTER TABLE ONLY metadata.attribution_to ADD CONSTRAINT person_id_fk FOREIGN KEY (person_id) REFERENCES sgn_people.sp_person(sp_person_id); -- -- Name: attribution_to project_id_fk; Type: FK CONSTRAINT; Schema: metadata; Owner: postgres -- ALTER TABLE ONLY metadata.attribution_to ADD CONSTRAINT project_id_fk FOREIGN KEY (project_id) REFERENCES sgn_people.sp_project(sp_project_id); -- -- Name: attribution_to role_id_fk; Type: FK CONSTRAINT; Schema: metadata; Owner: postgres -- ALTER TABLE ONLY metadata.attribution_to ADD CONSTRAINT role_id_fk FOREIGN KEY (role_id) REFERENCES metadata.roles(role_id); -- -- Name: allele_alias allele_alias_allele_id_fkey; Type: FK CONSTRAINT; Schema: phenome; Owner: postgres -- ALTER TABLE ONLY phenome.allele_alias ADD CONSTRAINT allele_alias_allele_id_fkey FOREIGN KEY (allele_id) REFERENCES phenome.allele(allele_id); -- -- Name: allele_alias allele_alias_sp_person_id_fkey; Type: FK CONSTRAINT; Schema: phenome; Owner: postgres -- ALTER TABLE ONLY phenome.allele_alias ADD CONSTRAINT allele_alias_sp_person_id_fkey FOREIGN KEY (sp_person_id) REFERENCES sgn_people.sp_person(sp_person_id); -- -- Name: allele_dbxref allele_dbxref_allele_id_fkey; Type: FK CONSTRAINT; Schema: phenome; Owner: postgres -- ALTER TABLE ONLY phenome.allele_dbxref ADD CONSTRAINT allele_dbxref_allele_id_fkey FOREIGN KEY (allele_id) REFERENCES phenome.allele(allele_id); -- -- Name: allele_dbxref allele_dbxref_dbxref_id_fkey; Type: FK CONSTRAINT; Schema: phenome; Owner: postgres -- ALTER TABLE ONLY phenome.allele_dbxref ADD CONSTRAINT allele_dbxref_dbxref_id_fkey FOREIGN KEY (dbxref_id) REFERENCES public.dbxref(dbxref_id); -- -- Name: allele_dbxref allele_dbxref_sp_person_id_fkey; Type: FK CONSTRAINT; Schema: phenome; Owner: postgres -- ALTER TABLE ONLY phenome.allele_dbxref ADD CONSTRAINT allele_dbxref_sp_person_id_fkey FOREIGN KEY (sp_person_id) REFERENCES sgn_people.sp_person(sp_person_id); -- -- Name: allele_history allele_history_allele_id_fkey; Type: FK CONSTRAINT; Schema: phenome; Owner: postgres -- ALTER TABLE ONLY phenome.allele_history ADD CONSTRAINT allele_history_allele_id_fkey FOREIGN KEY (allele_id) REFERENCES phenome.allele(allele_id) ON DELETE CASCADE; -- -- Name: allele_history allele_history_locus_id_fkey; Type: FK CONSTRAINT; Schema: phenome; Owner: postgres -- ALTER TABLE ONLY phenome.allele_history ADD CONSTRAINT allele_history_locus_id_fkey FOREIGN KEY (locus_id) REFERENCES phenome.locus(locus_id) ON DELETE CASCADE; -- -- Name: allele_history allele_history_sp_person_id_fkey; Type: FK CONSTRAINT; Schema: phenome; Owner: postgres -- ALTER TABLE ONLY phenome.allele_history ADD CONSTRAINT allele_history_sp_person_id_fkey FOREIGN KEY (sp_person_id) REFERENCES sgn_people.sp_person(sp_person_id); -- -- Name: allele_history allele_history_updated_by_fkey; Type: FK CONSTRAINT; Schema: phenome; Owner: postgres -- ALTER TABLE ONLY phenome.allele_history ADD CONSTRAINT allele_history_updated_by_fkey FOREIGN KEY (updated_by) REFERENCES sgn_people.sp_person(sp_person_id); -- -- Name: allele allele_locus_id_fkey; Type: FK CONSTRAINT; Schema: phenome; Owner: postgres -- ALTER TABLE ONLY phenome.allele ADD CONSTRAINT allele_locus_id_fkey FOREIGN KEY (locus_id) REFERENCES phenome.locus(locus_id); -- -- Name: allele allele_sp_person_id_fkey; Type: FK CONSTRAINT; Schema: phenome; Owner: postgres -- ALTER TABLE ONLY phenome.allele ADD CONSTRAINT allele_sp_person_id_fkey FOREIGN KEY (sp_person_id) REFERENCES sgn_people.sp_person(sp_person_id); -- -- Name: allele allele_updated_by_fkey; Type: FK CONSTRAINT; Schema: phenome; Owner: postgres -- ALTER TABLE ONLY phenome.allele ADD CONSTRAINT allele_updated_by_fkey FOREIGN KEY (updated_by) REFERENCES sgn_people.sp_person(sp_person_id); -- -- Name: cvterm_pub_ranking cvterm_pub_ranking_cvterm_id_fkey; Type: FK CONSTRAINT; Schema: phenome; Owner: postgres -- ALTER TABLE ONLY phenome.cvterm_pub_ranking ADD CONSTRAINT cvterm_pub_ranking_cvterm_id_fkey FOREIGN KEY (cvterm_id) REFERENCES public.cvterm(cvterm_id); -- -- Name: cvterm_pub_ranking cvterm_pub_ranking_pub_id_fkey; Type: FK CONSTRAINT; Schema: phenome; Owner: postgres -- ALTER TABLE ONLY phenome.cvterm_pub_ranking ADD CONSTRAINT cvterm_pub_ranking_pub_id_fkey FOREIGN KEY (pub_id) REFERENCES public.pub(pub_id); -- -- Name: phenome_genotype genotype_background_accession_id_fkey; Type: FK CONSTRAINT; Schema: phenome; Owner: postgres -- ALTER TABLE ONLY phenome.phenome_genotype ADD CONSTRAINT genotype_background_accession_id_fkey FOREIGN KEY (background_accession_id) REFERENCES sgn.accession(accession_id); -- -- Name: genotype_experiment genotype_experiment_background_accession_id_fkey; Type: FK CONSTRAINT; Schema: phenome; Owner: postgres -- ALTER TABLE ONLY phenome.genotype_experiment ADD CONSTRAINT genotype_experiment_background_accession_id_fkey FOREIGN KEY (background_accession_id) REFERENCES sgn.accession(accession_id); -- -- Name: genotype_experiment genotype_experiment_reference_map_id_fkey; Type: FK CONSTRAINT; Schema: phenome; Owner: postgres -- ALTER TABLE ONLY phenome.genotype_experiment ADD CONSTRAINT genotype_experiment_reference_map_id_fkey FOREIGN KEY (reference_map_id) REFERENCES sgn.map(map_id) ON DELETE CASCADE; -- -- Name: genotype_experiment genotype_experiment_sp_person_id_fkey; Type: FK CONSTRAINT; Schema: phenome; Owner: postgres -- ALTER TABLE ONLY phenome.genotype_experiment ADD CONSTRAINT genotype_experiment_sp_person_id_fkey FOREIGN KEY (sp_person_id) REFERENCES sgn_people.sp_person(sp_person_id); -- -- Name: phenome_genotype genotype_genotype_experiment_id_fkey; Type: FK CONSTRAINT; Schema: phenome; Owner: postgres -- ALTER TABLE ONLY phenome.phenome_genotype ADD CONSTRAINT genotype_genotype_experiment_id_fkey FOREIGN KEY (genotype_experiment_id) REFERENCES phenome.genotype_experiment(genotype_experiment_id); -- -- Name: phenome_genotype genotype_individual_id_fkey; Type: FK CONSTRAINT; Schema: phenome; Owner: postgres -- ALTER TABLE ONLY phenome.phenome_genotype ADD CONSTRAINT genotype_individual_id_fkey FOREIGN KEY (individual_id) REFERENCES phenome.individual(individual_id) ON DELETE CASCADE; -- -- Name: phenome_genotype genotype_reference_map_id_fkey; Type: FK CONSTRAINT; Schema: phenome; Owner: postgres -- ALTER TABLE ONLY phenome.phenome_genotype ADD CONSTRAINT genotype_reference_map_id_fkey FOREIGN KEY (reference_map_id) REFERENCES sgn.map(map_id); -- -- Name: genotype_region genotype_region_genotype_id_fkey; Type: FK CONSTRAINT; Schema: phenome; Owner: postgres -- ALTER TABLE ONLY phenome.genotype_region ADD CONSTRAINT genotype_region_genotype_id_fkey FOREIGN KEY (phenome_genotype_id) REFERENCES phenome.phenome_genotype(phenome_genotype_id) ON DELETE CASCADE; -- -- Name: genotype_region genotype_region_lg_id_fkey; Type: FK CONSTRAINT; Schema: phenome; Owner: postgres -- ALTER TABLE ONLY phenome.genotype_region ADD CONSTRAINT genotype_region_lg_id_fkey FOREIGN KEY (lg_id) REFERENCES sgn.linkage_group(lg_id); -- -- Name: genotype_region genotype_region_marker_id_nn_fkey; Type: FK CONSTRAINT; Schema: phenome; Owner: postgres -- ALTER TABLE ONLY phenome.genotype_region ADD CONSTRAINT genotype_region_marker_id_nn_fkey FOREIGN KEY (marker_id_nn) REFERENCES sgn.marker(marker_id); -- -- Name: genotype_region genotype_region_marker_id_ns_fkey; Type: FK CONSTRAINT; Schema: phenome; Owner: postgres -- ALTER TABLE ONLY phenome.genotype_region ADD CONSTRAINT genotype_region_marker_id_ns_fkey FOREIGN KEY (marker_id_ns) REFERENCES sgn.marker(marker_id); -- -- Name: genotype_region genotype_region_marker_id_sn_fkey; Type: FK CONSTRAINT; Schema: phenome; Owner: postgres -- ALTER TABLE ONLY phenome.genotype_region ADD CONSTRAINT genotype_region_marker_id_sn_fkey FOREIGN KEY (marker_id_sn) REFERENCES sgn.marker(marker_id); -- -- Name: genotype_region genotype_region_marker_id_ss_fkey; Type: FK CONSTRAINT; Schema: phenome; Owner: postgres -- ALTER TABLE ONLY phenome.genotype_region ADD CONSTRAINT genotype_region_marker_id_ss_fkey FOREIGN KEY (marker_id_ss) REFERENCES sgn.marker(marker_id); -- -- Name: genotype_region genotype_region_sp_person_id_fkey; Type: FK CONSTRAINT; Schema: phenome; Owner: postgres -- ALTER TABLE ONLY phenome.genotype_region ADD CONSTRAINT genotype_region_sp_person_id_fkey FOREIGN KEY (sp_person_id) REFERENCES sgn_people.sp_person(sp_person_id); -- -- Name: phenome_genotype genotype_sp_person_id_fkey; Type: FK CONSTRAINT; Schema: phenome; Owner: postgres -- ALTER TABLE ONLY phenome.phenome_genotype ADD CONSTRAINT genotype_sp_person_id_fkey FOREIGN KEY (sp_person_id) REFERENCES sgn_people.sp_person(sp_person_id); -- -- Name: germplasm germplasm_dbxref_id_fkey; Type: FK CONSTRAINT; Schema: phenome; Owner: postgres -- ALTER TABLE ONLY phenome.germplasm ADD CONSTRAINT germplasm_dbxref_id_fkey FOREIGN KEY (dbxref_id) REFERENCES public.dbxref(dbxref_id); -- -- Name: germplasm germplasm_individual_id_fkey; Type: FK CONSTRAINT; Schema: phenome; Owner: postgres -- ALTER TABLE ONLY phenome.germplasm ADD CONSTRAINT germplasm_individual_id_fkey FOREIGN KEY (individual_id) REFERENCES phenome.individual(individual_id); -- -- Name: germplasm germplasm_sp_person_id_fkey; Type: FK CONSTRAINT; Schema: phenome; Owner: postgres -- ALTER TABLE ONLY phenome.germplasm ADD CONSTRAINT germplasm_sp_person_id_fkey FOREIGN KEY (sp_person_id) REFERENCES sgn_people.sp_person(sp_person_id); -- -- Name: individual individual_accession_id_fkey; Type: FK CONSTRAINT; Schema: phenome; Owner: postgres -- ALTER TABLE ONLY phenome.individual ADD CONSTRAINT individual_accession_id_fkey FOREIGN KEY (accession_id) REFERENCES sgn.accession(accession_id); -- -- Name: individual_alias individual_alias_individual_id_fkey; Type: FK CONSTRAINT; Schema: phenome; Owner: postgres -- ALTER TABLE ONLY phenome.individual_alias ADD CONSTRAINT individual_alias_individual_id_fkey FOREIGN KEY (individual_id) REFERENCES phenome.individual(individual_id); -- -- Name: individual_alias individual_alias_sp_person_id_fkey; Type: FK CONSTRAINT; Schema: phenome; Owner: postgres -- ALTER TABLE ONLY phenome.individual_alias ADD CONSTRAINT individual_alias_sp_person_id_fkey FOREIGN KEY (sp_person_id) REFERENCES sgn_people.sp_person(sp_person_id); -- -- Name: individual_allele individual_allele_allele_id_fkey; Type: FK CONSTRAINT; Schema: phenome; Owner: postgres -- ALTER TABLE ONLY phenome.individual_allele ADD CONSTRAINT individual_allele_allele_id_fkey FOREIGN KEY (allele_id) REFERENCES phenome.allele(allele_id); -- -- Name: individual_allele individual_allele_individual_id_fkey; Type: FK CONSTRAINT; Schema: phenome; Owner: postgres -- ALTER TABLE ONLY phenome.individual_allele ADD CONSTRAINT individual_allele_individual_id_fkey FOREIGN KEY (individual_id) REFERENCES phenome.individual(individual_id); -- -- Name: individual_allele individual_allele_sp_person_id_fkey; Type: FK CONSTRAINT; Schema: phenome; Owner: postgres -- ALTER TABLE ONLY phenome.individual_allele ADD CONSTRAINT individual_allele_sp_person_id_fkey FOREIGN KEY (sp_person_id) REFERENCES sgn_people.sp_person(sp_person_id); -- -- Name: individual individual_common_name_id_fkey; Type: FK CONSTRAINT; Schema: phenome; Owner: postgres -- ALTER TABLE ONLY phenome.individual ADD CONSTRAINT individual_common_name_id_fkey FOREIGN KEY (common_name_id) REFERENCES sgn.common_name(common_name_id); -- -- Name: individual_dbxref individual_dbxref_dbxref_id_fkey; Type: FK CONSTRAINT; Schema: phenome; Owner: postgres -- ALTER TABLE ONLY phenome.individual_dbxref ADD CONSTRAINT individual_dbxref_dbxref_id_fkey FOREIGN KEY (dbxref_id) REFERENCES public.dbxref(dbxref_id); -- -- Name: individual_dbxref_evidence individual_dbxref_evidence_evidence_code_fkey; Type: FK CONSTRAINT; Schema: phenome; Owner: postgres -- ALTER TABLE ONLY phenome.individual_dbxref_evidence ADD CONSTRAINT individual_dbxref_evidence_evidence_code_fkey FOREIGN KEY (evidence_code) REFERENCES public.dbxref(dbxref_id); -- -- Name: individual_dbxref_evidence individual_dbxref_evidence_evidence_description_fkey; Type: FK CONSTRAINT; Schema: phenome; Owner: postgres -- ALTER TABLE ONLY phenome.individual_dbxref_evidence ADD CONSTRAINT individual_dbxref_evidence_evidence_description_fkey FOREIGN KEY (evidence_description) REFERENCES public.dbxref(dbxref_id); -- -- Name: individual_dbxref_evidence individual_dbxref_evidence_evidence_with_fkey; Type: FK CONSTRAINT; Schema: phenome; Owner: postgres -- ALTER TABLE ONLY phenome.individual_dbxref_evidence ADD CONSTRAINT individual_dbxref_evidence_evidence_with_fkey FOREIGN KEY (evidence_with) REFERENCES public.dbxref(dbxref_id); -- -- Name: individual_dbxref_evidence_history individual_dbxref_evidence_hi_individual_dbxref_evidence_i_fkey; Type: FK CONSTRAINT; Schema: phenome; Owner: postgres -- ALTER TABLE ONLY phenome.individual_dbxref_evidence_history ADD CONSTRAINT individual_dbxref_evidence_hi_individual_dbxref_evidence_i_fkey FOREIGN KEY (individual_dbxref_evidence_id) REFERENCES phenome.individual_dbxref_evidence(individual_dbxref_evidence_id); -- -- Name: individual_dbxref_evidence_history individual_dbxref_evidence_history_evidence_code_fkey; Type: FK CONSTRAINT; Schema: phenome; Owner: postgres -- ALTER TABLE ONLY phenome.individual_dbxref_evidence_history ADD CONSTRAINT individual_dbxref_evidence_history_evidence_code_fkey FOREIGN KEY (evidence_code) REFERENCES public.dbxref(dbxref_id); -- -- Name: individual_dbxref_evidence_history individual_dbxref_evidence_history_evidence_description_fkey; Type: FK CONSTRAINT; Schema: phenome; Owner: postgres -- ALTER TABLE ONLY phenome.individual_dbxref_evidence_history ADD CONSTRAINT individual_dbxref_evidence_history_evidence_description_fkey FOREIGN KEY (evidence_description) REFERENCES public.dbxref(dbxref_id); -- -- Name: individual_dbxref_evidence_history individual_dbxref_evidence_history_evidence_with_fkey; Type: FK CONSTRAINT; Schema: phenome; Owner: postgres -- ALTER TABLE ONLY phenome.individual_dbxref_evidence_history ADD CONSTRAINT individual_dbxref_evidence_history_evidence_with_fkey FOREIGN KEY (evidence_with) REFERENCES public.dbxref(dbxref_id); -- -- Name: individual_dbxref_evidence_history individual_dbxref_evidence_history_individual_dbxref_id_fkey; Type: FK CONSTRAINT; Schema: phenome; Owner: postgres -- ALTER TABLE ONLY phenome.individual_dbxref_evidence_history ADD CONSTRAINT individual_dbxref_evidence_history_individual_dbxref_id_fkey FOREIGN KEY (individual_dbxref_id) REFERENCES phenome.individual_dbxref(individual_dbxref_id); -- -- Name: individual_dbxref_evidence_history individual_dbxref_evidence_history_reference_id_fkey; Type: FK CONSTRAINT; Schema: phenome; Owner: postgres -- ALTER TABLE ONLY phenome.individual_dbxref_evidence_history ADD CONSTRAINT individual_dbxref_evidence_history_reference_id_fkey FOREIGN KEY (reference_id) REFERENCES public.dbxref(dbxref_id); -- -- Name: individual_dbxref_evidence_history individual_dbxref_evidence_history_relationship_type_fkey; Type: FK CONSTRAINT; Schema: phenome; Owner: postgres -- ALTER TABLE ONLY phenome.individual_dbxref_evidence_history ADD CONSTRAINT individual_dbxref_evidence_history_relationship_type_fkey FOREIGN KEY (relationship_type) REFERENCES public.dbxref(dbxref_id); -- -- Name: individual_dbxref_evidence_history individual_dbxref_evidence_history_sp_person_id_fkey; Type: FK CONSTRAINT; Schema: phenome; Owner: postgres -- ALTER TABLE ONLY phenome.individual_dbxref_evidence_history ADD CONSTRAINT individual_dbxref_evidence_history_sp_person_id_fkey FOREIGN KEY (sp_person_id) REFERENCES sgn_people.sp_person(sp_person_id); -- -- Name: individual_dbxref_evidence_history individual_dbxref_evidence_history_updated_by_fkey; Type: FK CONSTRAINT; Schema: phenome; Owner: postgres -- ALTER TABLE ONLY phenome.individual_dbxref_evidence_history ADD CONSTRAINT individual_dbxref_evidence_history_updated_by_fkey FOREIGN KEY (updated_by) REFERENCES sgn_people.sp_person(sp_person_id); -- -- Name: individual_dbxref_evidence individual_dbxref_evidence_individual_dbxref_id_fkey; Type: FK CONSTRAINT; Schema: phenome; Owner: postgres -- ALTER TABLE ONLY phenome.individual_dbxref_evidence ADD CONSTRAINT individual_dbxref_evidence_individual_dbxref_id_fkey FOREIGN KEY (individual_dbxref_id) REFERENCES phenome.individual_dbxref(individual_dbxref_id); -- -- Name: individual_dbxref_evidence individual_dbxref_evidence_reference_id_fkey; Type: FK CONSTRAINT; Schema: phenome; Owner: postgres -- ALTER TABLE ONLY phenome.individual_dbxref_evidence ADD CONSTRAINT individual_dbxref_evidence_reference_id_fkey FOREIGN KEY (reference_id) REFERENCES public.dbxref(dbxref_id); -- -- Name: individual_dbxref_evidence individual_dbxref_evidence_relationship_type_fkey; Type: FK CONSTRAINT; Schema: phenome; Owner: postgres -- ALTER TABLE ONLY phenome.individual_dbxref_evidence ADD CONSTRAINT individual_dbxref_evidence_relationship_type_fkey FOREIGN KEY (relationship_type) REFERENCES public.dbxref(dbxref_id); -- -- Name: individual_dbxref_evidence individual_dbxref_evidence_sp_person_id_fkey; Type: FK CONSTRAINT; Schema: phenome; Owner: postgres -- ALTER TABLE ONLY phenome.individual_dbxref_evidence ADD CONSTRAINT individual_dbxref_evidence_sp_person_id_fkey FOREIGN KEY (sp_person_id) REFERENCES sgn_people.sp_person(sp_person_id); -- -- Name: individual_dbxref_evidence individual_dbxref_evidence_updated_by_fkey; Type: FK CONSTRAINT; Schema: phenome; Owner: postgres -- ALTER TABLE ONLY phenome.individual_dbxref_evidence ADD CONSTRAINT individual_dbxref_evidence_updated_by_fkey FOREIGN KEY (updated_by) REFERENCES sgn_people.sp_person(sp_person_id); -- -- Name: individual_dbxref individual_dbxref_individual_id_fkey; Type: FK CONSTRAINT; Schema: phenome; Owner: postgres -- ALTER TABLE ONLY phenome.individual_dbxref ADD CONSTRAINT individual_dbxref_individual_id_fkey FOREIGN KEY (individual_id) REFERENCES phenome.individual(individual_id); -- -- Name: individual_dbxref individual_dbxref_sp_person_id_fkey; Type: FK CONSTRAINT; Schema: phenome; Owner: postgres -- ALTER TABLE ONLY phenome.individual_dbxref ADD CONSTRAINT individual_dbxref_sp_person_id_fkey FOREIGN KEY (sp_person_id) REFERENCES sgn_people.sp_person(sp_person_id); -- -- Name: individual_history individual_history_individual_id_fkey; Type: FK CONSTRAINT; Schema: phenome; Owner: postgres -- ALTER TABLE ONLY phenome.individual_history ADD CONSTRAINT individual_history_individual_id_fkey FOREIGN KEY (individual_id) REFERENCES phenome.individual(individual_id) ON DELETE CASCADE; -- -- Name: individual_history individual_history_sp_person_id_fkey; Type: FK CONSTRAINT; Schema: phenome; Owner: postgres -- ALTER TABLE ONLY phenome.individual_history ADD CONSTRAINT individual_history_sp_person_id_fkey FOREIGN KEY (sp_person_id) REFERENCES sgn_people.sp_person(sp_person_id); -- -- Name: individual_history individual_history_updated_by_fkey; Type: FK CONSTRAINT; Schema: phenome; Owner: postgres -- ALTER TABLE ONLY phenome.individual_history ADD CONSTRAINT individual_history_updated_by_fkey FOREIGN KEY (updated_by) REFERENCES sgn_people.sp_person(sp_person_id); -- -- Name: individual_image individual_image_image_id_fkey; Type: FK CONSTRAINT; Schema: phenome; Owner: postgres -- ALTER TABLE ONLY phenome.individual_image ADD CONSTRAINT individual_image_image_id_fkey FOREIGN KEY (image_id) REFERENCES metadata.md_image(image_id); -- -- Name: individual_image individual_image_individual_id_fkey; Type: FK CONSTRAINT; Schema: phenome; Owner: postgres -- ALTER TABLE ONLY phenome.individual_image ADD CONSTRAINT individual_image_individual_id_fkey FOREIGN KEY (individual_id) REFERENCES phenome.individual(individual_id); -- -- Name: individual_image individual_image_sp_person_id_fkey; Type: FK CONSTRAINT; Schema: phenome; Owner: postgres -- ALTER TABLE ONLY phenome.individual_image ADD CONSTRAINT individual_image_sp_person_id_fkey FOREIGN KEY (sp_person_id) REFERENCES sgn_people.sp_person(sp_person_id); -- -- Name: individual_locus individual_locus_individual_id_fkey; Type: FK CONSTRAINT; Schema: phenome; Owner: postgres -- ALTER TABLE ONLY phenome.individual_locus ADD CONSTRAINT individual_locus_individual_id_fkey FOREIGN KEY (individual_id) REFERENCES phenome.individual(individual_id); -- -- Name: individual_locus individual_locus_locus_id_fkey; Type: FK CONSTRAINT; Schema: phenome; Owner: postgres -- ALTER TABLE ONLY phenome.individual_locus ADD CONSTRAINT individual_locus_locus_id_fkey FOREIGN KEY (locus_id) REFERENCES phenome.locus(locus_id); -- -- Name: individual_locus individual_locus_sp_person_id_fkey; Type: FK CONSTRAINT; Schema: phenome; Owner: postgres -- ALTER TABLE ONLY phenome.individual_locus ADD CONSTRAINT individual_locus_sp_person_id_fkey FOREIGN KEY (sp_person_id) REFERENCES sgn_people.sp_person(sp_person_id); -- -- Name: individual individual_population_id_fkey; Type: FK CONSTRAINT; Schema: phenome; Owner: postgres -- ALTER TABLE ONLY phenome.individual ADD CONSTRAINT individual_population_id_fkey FOREIGN KEY (population_id) REFERENCES phenome.population(population_id) ON DELETE CASCADE; -- -- Name: individual individual_sp_person_id_fkey; Type: FK CONSTRAINT; Schema: phenome; Owner: postgres -- ALTER TABLE ONLY phenome.individual ADD CONSTRAINT individual_sp_person_id_fkey FOREIGN KEY (sp_person_id) REFERENCES sgn_people.sp_person(sp_person_id); -- -- Name: individual individual_updated_by_fkey; Type: FK CONSTRAINT; Schema: phenome; Owner: postgres -- ALTER TABLE ONLY phenome.individual ADD CONSTRAINT individual_updated_by_fkey FOREIGN KEY (updated_by) REFERENCES sgn_people.sp_person(sp_person_id); -- -- Name: is_public is_public_owner_id_fkey; Type: FK CONSTRAINT; Schema: phenome; Owner: postgres -- ALTER TABLE ONLY phenome.is_public ADD CONSTRAINT is_public_owner_id_fkey FOREIGN KEY (owner_id) REFERENCES sgn_people.sp_person(sp_person_id); -- -- Name: is_public is_public_population_id_fkey; Type: FK CONSTRAINT; Schema: phenome; Owner: postgres -- ALTER TABLE ONLY phenome.is_public ADD CONSTRAINT is_public_population_id_fkey FOREIGN KEY (population_id) REFERENCES phenome.population(population_id) ON DELETE CASCADE; -- -- Name: locus2locus locus2locus_evidence_id_fkey; Type: FK CONSTRAINT; Schema: phenome; Owner: postgres -- ALTER TABLE ONLY phenome.locus2locus ADD CONSTRAINT locus2locus_evidence_id_fkey FOREIGN KEY (evidence_id) REFERENCES public.dbxref(dbxref_id); -- -- Name: locus2locus locus2locus_object_id_fkey; Type: FK CONSTRAINT; Schema: phenome; Owner: postgres -- ALTER TABLE ONLY phenome.locus2locus ADD CONSTRAINT locus2locus_object_id_fkey FOREIGN KEY (object_id) REFERENCES phenome.locus(locus_id); -- -- Name: locus2locus locus2locus_reference_id_fkey; Type: FK CONSTRAINT; Schema: phenome; Owner: postgres -- ALTER TABLE ONLY phenome.locus2locus ADD CONSTRAINT locus2locus_reference_id_fkey FOREIGN KEY (reference_id) REFERENCES public.dbxref(dbxref_id); -- -- Name: locus2locus locus2locus_relationship_id_fkey; Type: FK CONSTRAINT; Schema: phenome; Owner: postgres -- ALTER TABLE ONLY phenome.locus2locus ADD CONSTRAINT locus2locus_relationship_id_fkey FOREIGN KEY (relationship_id) REFERENCES public.dbxref(dbxref_id); -- -- Name: locus2locus locus2locus_sp_person_id_fkey; Type: FK CONSTRAINT; Schema: phenome; Owner: postgres -- ALTER TABLE ONLY phenome.locus2locus ADD CONSTRAINT locus2locus_sp_person_id_fkey FOREIGN KEY (sp_person_id) REFERENCES sgn_people.sp_person(sp_person_id); -- -- Name: locus2locus locus2locus_subject_id_fkey; Type: FK CONSTRAINT; Schema: phenome; Owner: postgres -- ALTER TABLE ONLY phenome.locus2locus ADD CONSTRAINT locus2locus_subject_id_fkey FOREIGN KEY (subject_id) REFERENCES phenome.locus(locus_id); -- -- Name: locus_alias locus_alias_locus_id_fkey; Type: FK CONSTRAINT; Schema: phenome; Owner: postgres -- ALTER TABLE ONLY phenome.locus_alias ADD CONSTRAINT locus_alias_locus_id_fkey FOREIGN KEY (locus_id) REFERENCES phenome.locus(locus_id); -- -- Name: locus_alias locus_alias_sp_person_id_fkey; Type: FK CONSTRAINT; Schema: phenome; Owner: postgres -- ALTER TABLE ONLY phenome.locus_alias ADD CONSTRAINT locus_alias_sp_person_id_fkey FOREIGN KEY (sp_person_id) REFERENCES sgn_people.sp_person(sp_person_id); -- -- Name: locus locus_common_name_id_fkey; Type: FK CONSTRAINT; Schema: phenome; Owner: postgres -- ALTER TABLE ONLY phenome.locus ADD CONSTRAINT locus_common_name_id_fkey FOREIGN KEY (common_name_id) REFERENCES sgn.common_name(common_name_id); -- -- Name: locus_dbxref locus_dbxref_dbxref_id_fkey; Type: FK CONSTRAINT; Schema: phenome; Owner: postgres -- ALTER TABLE ONLY phenome.locus_dbxref ADD CONSTRAINT locus_dbxref_dbxref_id_fkey FOREIGN KEY (dbxref_id) REFERENCES public.dbxref(dbxref_id); -- -- Name: locus_dbxref_evidence locus_dbxref_evidence_evidence_code_id_fkey; Type: FK CONSTRAINT; Schema: phenome; Owner: postgres -- ALTER TABLE ONLY phenome.locus_dbxref_evidence ADD CONSTRAINT locus_dbxref_evidence_evidence_code_id_fkey FOREIGN KEY (evidence_code_id) REFERENCES public.dbxref(dbxref_id); -- -- Name: locus_dbxref_evidence locus_dbxref_evidence_evidence_description_id_fkey; Type: FK CONSTRAINT; Schema: phenome; Owner: postgres -- ALTER TABLE ONLY phenome.locus_dbxref_evidence ADD CONSTRAINT locus_dbxref_evidence_evidence_description_id_fkey FOREIGN KEY (evidence_description_id) REFERENCES public.dbxref(dbxref_id); -- -- Name: locus_dbxref_evidence locus_dbxref_evidence_evidence_relationship_type_id_fkey; Type: FK CONSTRAINT; Schema: phenome; Owner: postgres -- ALTER TABLE ONLY phenome.locus_dbxref_evidence ADD CONSTRAINT locus_dbxref_evidence_evidence_relationship_type_id_fkey FOREIGN KEY (relationship_type_id) REFERENCES public.dbxref(dbxref_id); -- -- Name: locus_dbxref_evidence locus_dbxref_evidence_evidence_with_fkey; Type: FK CONSTRAINT; Schema: phenome; Owner: postgres -- ALTER TABLE ONLY phenome.locus_dbxref_evidence ADD CONSTRAINT locus_dbxref_evidence_evidence_with_fkey FOREIGN KEY (evidence_with) REFERENCES public.dbxref(dbxref_id); -- -- Name: locus_dbxref_evidence_history locus_dbxref_evidence_history_evidence_code_fkey; Type: FK CONSTRAINT; Schema: phenome; Owner: postgres -- ALTER TABLE ONLY phenome.locus_dbxref_evidence_history ADD CONSTRAINT locus_dbxref_evidence_history_evidence_code_fkey FOREIGN KEY (evidence_code) REFERENCES public.dbxref(dbxref_id); -- -- Name: locus_dbxref_evidence_history locus_dbxref_evidence_history_evidence_description_fkey; Type: FK CONSTRAINT; Schema: phenome; Owner: postgres -- ALTER TABLE ONLY phenome.locus_dbxref_evidence_history ADD CONSTRAINT locus_dbxref_evidence_history_evidence_description_fkey FOREIGN KEY (evidence_description) REFERENCES public.dbxref(dbxref_id); -- -- Name: locus_dbxref_evidence_history locus_dbxref_evidence_history_evidence_with_fkey; Type: FK CONSTRAINT; Schema: phenome; Owner: postgres -- ALTER TABLE ONLY phenome.locus_dbxref_evidence_history ADD CONSTRAINT locus_dbxref_evidence_history_evidence_with_fkey FOREIGN KEY (evidence_with) REFERENCES public.dbxref(dbxref_id); -- -- Name: locus_dbxref_evidence_history locus_dbxref_evidence_history_locus_dbxref_evidence_id_fkey; Type: FK CONSTRAINT; Schema: phenome; Owner: postgres -- ALTER TABLE ONLY phenome.locus_dbxref_evidence_history ADD CONSTRAINT locus_dbxref_evidence_history_locus_dbxref_evidence_id_fkey FOREIGN KEY (locus_dbxref_evidence_id) REFERENCES phenome.locus_dbxref_evidence(locus_dbxref_evidence_id); -- -- Name: locus_dbxref_evidence_history locus_dbxref_evidence_history_locus_dbxref_id_fkey; Type: FK CONSTRAINT; Schema: phenome; Owner: postgres -- ALTER TABLE ONLY phenome.locus_dbxref_evidence_history ADD CONSTRAINT locus_dbxref_evidence_history_locus_dbxref_id_fkey FOREIGN KEY (locus_dbxref_id) REFERENCES phenome.locus_dbxref(locus_dbxref_id); -- -- Name: locus_dbxref_evidence_history locus_dbxref_evidence_history_reference_id_fkey; Type: FK CONSTRAINT; Schema: phenome; Owner: postgres -- ALTER TABLE ONLY phenome.locus_dbxref_evidence_history ADD CONSTRAINT locus_dbxref_evidence_history_reference_id_fkey FOREIGN KEY (reference_id) REFERENCES public.dbxref(dbxref_id); -- -- Name: locus_dbxref_evidence_history locus_dbxref_evidence_history_relationship_type_fkey; Type: FK CONSTRAINT; Schema: phenome; Owner: postgres -- ALTER TABLE ONLY phenome.locus_dbxref_evidence_history ADD CONSTRAINT locus_dbxref_evidence_history_relationship_type_fkey FOREIGN KEY (relationship_type) REFERENCES public.dbxref(dbxref_id); -- -- Name: locus_dbxref_evidence_history locus_dbxref_evidence_history_sp_person_id_fkey; Type: FK CONSTRAINT; Schema: phenome; Owner: postgres -- ALTER TABLE ONLY phenome.locus_dbxref_evidence_history ADD CONSTRAINT locus_dbxref_evidence_history_sp_person_id_fkey FOREIGN KEY (sp_person_id) REFERENCES sgn_people.sp_person(sp_person_id); -- -- Name: locus_dbxref_evidence_history locus_dbxref_evidence_history_updated_by_fkey; Type: FK CONSTRAINT; Schema: phenome; Owner: postgres -- ALTER TABLE ONLY phenome.locus_dbxref_evidence_history ADD CONSTRAINT locus_dbxref_evidence_history_updated_by_fkey FOREIGN KEY (updated_by) REFERENCES sgn_people.sp_person(sp_person_id); -- -- Name: locus_dbxref_evidence locus_dbxref_evidence_locus_dbxref_id_fkey; Type: FK CONSTRAINT; Schema: phenome; Owner: postgres -- ALTER TABLE ONLY phenome.locus_dbxref_evidence ADD CONSTRAINT locus_dbxref_evidence_locus_dbxref_id_fkey FOREIGN KEY (locus_dbxref_id) REFERENCES phenome.locus_dbxref(locus_dbxref_id); -- -- Name: locus_dbxref_evidence locus_dbxref_evidence_reference_id_fkey; Type: FK CONSTRAINT; Schema: phenome; Owner: postgres -- ALTER TABLE ONLY phenome.locus_dbxref_evidence ADD CONSTRAINT locus_dbxref_evidence_reference_id_fkey FOREIGN KEY (reference_id) REFERENCES public.dbxref(dbxref_id); -- -- Name: locus_dbxref_evidence locus_dbxref_evidence_sp_person_id_fkey; Type: FK CONSTRAINT; Schema: phenome; Owner: postgres -- ALTER TABLE ONLY phenome.locus_dbxref_evidence ADD CONSTRAINT locus_dbxref_evidence_sp_person_id_fkey FOREIGN KEY (sp_person_id) REFERENCES sgn_people.sp_person(sp_person_id); -- -- Name: locus_dbxref_evidence locus_dbxref_evidence_updated_by_fkey; Type: FK CONSTRAINT; Schema: phenome; Owner: postgres -- ALTER TABLE ONLY phenome.locus_dbxref_evidence ADD CONSTRAINT locus_dbxref_evidence_updated_by_fkey FOREIGN KEY (updated_by) REFERENCES sgn_people.sp_person(sp_person_id); -- -- Name: locus_dbxref locus_dbxref_locus_id_fkey; Type: FK CONSTRAINT; Schema: phenome; Owner: postgres -- ALTER TABLE ONLY phenome.locus_dbxref ADD CONSTRAINT locus_dbxref_locus_id_fkey FOREIGN KEY (locus_id) REFERENCES phenome.locus(locus_id); -- -- Name: locus_dbxref locus_dbxref_sp_person_id_fkey; Type: FK CONSTRAINT; Schema: phenome; Owner: postgres -- ALTER TABLE ONLY phenome.locus_dbxref ADD CONSTRAINT locus_dbxref_sp_person_id_fkey FOREIGN KEY (sp_person_id) REFERENCES sgn_people.sp_person(sp_person_id); -- -- Name: locus_history locus_history_locus_id_fkey; Type: FK CONSTRAINT; Schema: phenome; Owner: postgres -- ALTER TABLE ONLY phenome.locus_history ADD CONSTRAINT locus_history_locus_id_fkey FOREIGN KEY (locus_id) REFERENCES phenome.locus(locus_id) ON DELETE CASCADE; -- -- Name: locus_history locus_history_sp_person_id_fkey; Type: FK CONSTRAINT; Schema: phenome; Owner: postgres -- ALTER TABLE ONLY phenome.locus_history ADD CONSTRAINT locus_history_sp_person_id_fkey FOREIGN KEY (sp_person_id) REFERENCES sgn_people.sp_person(sp_person_id); -- -- Name: locus_history locus_history_updated_by_fkey; Type: FK CONSTRAINT; Schema: phenome; Owner: postgres -- ALTER TABLE ONLY phenome.locus_history ADD CONSTRAINT locus_history_updated_by_fkey FOREIGN KEY (updated_by) REFERENCES sgn_people.sp_person(sp_person_id); -- -- Name: locus_image locus_image_image_id_fkey; Type: FK CONSTRAINT; Schema: phenome; Owner: postgres -- ALTER TABLE ONLY phenome.locus_image ADD CONSTRAINT locus_image_image_id_fkey FOREIGN KEY (image_id) REFERENCES metadata.md_image(image_id); -- -- Name: locus_image locus_image_locus_id_fkey; Type: FK CONSTRAINT; Schema: phenome; Owner: postgres -- ALTER TABLE ONLY phenome.locus_image ADD CONSTRAINT locus_image_locus_id_fkey FOREIGN KEY (locus_id) REFERENCES phenome.locus(locus_id); -- -- Name: locus_image locus_image_sp_person_id_fkey; Type: FK CONSTRAINT; Schema: phenome; Owner: postgres -- ALTER TABLE ONLY phenome.locus_image ADD CONSTRAINT locus_image_sp_person_id_fkey FOREIGN KEY (sp_person_id) REFERENCES sgn_people.sp_person(sp_person_id); -- -- Name: locus_marker locus_marker_locus_id_fkey; Type: FK CONSTRAINT; Schema: phenome; Owner: postgres -- ALTER TABLE ONLY phenome.locus_marker ADD CONSTRAINT locus_marker_locus_id_fkey FOREIGN KEY (locus_id) REFERENCES phenome.locus(locus_id); -- -- Name: locus_marker locus_marker_marker_id_fkey; Type: FK CONSTRAINT; Schema: phenome; Owner: postgres -- ALTER TABLE ONLY phenome.locus_marker ADD CONSTRAINT locus_marker_marker_id_fkey FOREIGN KEY (marker_id) REFERENCES sgn.marker(marker_id); -- -- Name: locus_marker locus_marker_sp_person_id_fkey; Type: FK CONSTRAINT; Schema: phenome; Owner: postgres -- ALTER TABLE ONLY phenome.locus_marker ADD CONSTRAINT locus_marker_sp_person_id_fkey FOREIGN KEY (sp_person_id) REFERENCES sgn_people.sp_person(sp_person_id); -- -- Name: locus locus_organism_id_fkey; Type: FK CONSTRAINT; Schema: phenome; Owner: postgres -- ALTER TABLE ONLY phenome.locus ADD CONSTRAINT locus_organism_id_fkey FOREIGN KEY (organism_id) REFERENCES public.organism(organism_id); -- -- Name: locus_owner locus_owner_granted_by_fkey; Type: FK CONSTRAINT; Schema: phenome; Owner: postgres -- ALTER TABLE ONLY phenome.locus_owner ADD CONSTRAINT locus_owner_granted_by_fkey FOREIGN KEY (granted_by) REFERENCES sgn_people.sp_person(sp_person_id); -- -- Name: locus_owner locus_owner_locus_id_fkey; Type: FK CONSTRAINT; Schema: phenome; Owner: postgres -- ALTER TABLE ONLY phenome.locus_owner ADD CONSTRAINT locus_owner_locus_id_fkey FOREIGN KEY (locus_id) REFERENCES phenome.locus(locus_id) ON DELETE CASCADE; -- -- Name: locus_owner locus_owner_sp_person_id_fkey; Type: FK CONSTRAINT; Schema: phenome; Owner: postgres -- ALTER TABLE ONLY phenome.locus_owner ADD CONSTRAINT locus_owner_sp_person_id_fkey FOREIGN KEY (sp_person_id) REFERENCES sgn_people.sp_person(sp_person_id); -- -- Name: locus_pub_ranking locus_pub_ranking_locus_id_fkey; Type: FK CONSTRAINT; Schema: phenome; Owner: postgres -- ALTER TABLE ONLY phenome.locus_pub_ranking ADD CONSTRAINT locus_pub_ranking_locus_id_fkey FOREIGN KEY (locus_id) REFERENCES phenome.locus(locus_id); -- -- Name: locus_pub_ranking locus_pub_ranking_pub_id_fkey; Type: FK CONSTRAINT; Schema: phenome; Owner: postgres -- ALTER TABLE ONLY phenome.locus_pub_ranking ADD CONSTRAINT locus_pub_ranking_pub_id_fkey FOREIGN KEY (pub_id) REFERENCES public.pub(pub_id); -- -- Name: locus_pub_ranking_validate locus_pub_ranking_validate_locus_id_fkey; Type: FK CONSTRAINT; Schema: phenome; Owner: postgres -- ALTER TABLE ONLY phenome.locus_pub_ranking_validate ADD CONSTRAINT locus_pub_ranking_validate_locus_id_fkey FOREIGN KEY (locus_id) REFERENCES phenome.locus(locus_id); -- -- Name: locus_pub_ranking_validate locus_pub_ranking_validate_pub_id_fkey; Type: FK CONSTRAINT; Schema: phenome; Owner: postgres -- ALTER TABLE ONLY phenome.locus_pub_ranking_validate ADD CONSTRAINT locus_pub_ranking_validate_pub_id_fkey FOREIGN KEY (pub_id) REFERENCES public.pub(pub_id); -- -- Name: locus_registry locus_registry_locus_id_fkey; Type: FK CONSTRAINT; Schema: phenome; Owner: postgres -- ALTER TABLE ONLY phenome.locus_registry ADD CONSTRAINT locus_registry_locus_id_fkey FOREIGN KEY (locus_id) REFERENCES phenome.locus(locus_id); -- -- Name: locus_registry locus_registry_registry_id_fkey; Type: FK CONSTRAINT; Schema: phenome; Owner: postgres -- ALTER TABLE ONLY phenome.locus_registry ADD CONSTRAINT locus_registry_registry_id_fkey FOREIGN KEY (registry_id) REFERENCES phenome.registry(registry_id); -- -- Name: locus_registry locus_registry_sp_person_id_fkey; Type: FK CONSTRAINT; Schema: phenome; Owner: postgres -- ALTER TABLE ONLY phenome.locus_registry ADD CONSTRAINT locus_registry_sp_person_id_fkey FOREIGN KEY (sp_person_id) REFERENCES sgn_people.sp_person(sp_person_id); -- -- Name: locus locus_sp_person_id_fkey; Type: FK CONSTRAINT; Schema: phenome; Owner: postgres -- ALTER TABLE ONLY phenome.locus ADD CONSTRAINT locus_sp_person_id_fkey FOREIGN KEY (sp_person_id) REFERENCES sgn_people.sp_person(sp_person_id); -- -- Name: locus_unigene locus_unigene_locus_id_fkey; Type: FK CONSTRAINT; Schema: phenome; Owner: postgres -- ALTER TABLE ONLY phenome.locus_unigene ADD CONSTRAINT locus_unigene_locus_id_fkey FOREIGN KEY (locus_id) REFERENCES phenome.locus(locus_id); -- -- Name: locus_unigene locus_unigene_sp_person_id_fkey; Type: FK CONSTRAINT; Schema: phenome; Owner: postgres -- ALTER TABLE ONLY phenome.locus_unigene ADD CONSTRAINT locus_unigene_sp_person_id_fkey FOREIGN KEY (sp_person_id) REFERENCES sgn_people.sp_person(sp_person_id); -- -- Name: locus_unigene locus_unigene_unigene_id_fkey; Type: FK CONSTRAINT; Schema: phenome; Owner: postgres -- ALTER TABLE ONLY phenome.locus_unigene ADD CONSTRAINT locus_unigene_unigene_id_fkey FOREIGN KEY (unigene_id) REFERENCES sgn.unigene(unigene_id); -- -- Name: locus locus_updated_by_fkey; Type: FK CONSTRAINT; Schema: phenome; Owner: postgres -- ALTER TABLE ONLY phenome.locus ADD CONSTRAINT locus_updated_by_fkey FOREIGN KEY (updated_by) REFERENCES sgn_people.sp_person(sp_person_id); -- -- Name: locusgroup_member locusgroup_member_evidence_id_fkey; Type: FK CONSTRAINT; Schema: phenome; Owner: postgres -- ALTER TABLE ONLY phenome.locusgroup_member ADD CONSTRAINT locusgroup_member_evidence_id_fkey FOREIGN KEY (evidence_id) REFERENCES public.cvterm(cvterm_id); -- -- Name: locusgroup_member locusgroup_member_locus_id_fkey; Type: FK CONSTRAINT; Schema: phenome; Owner: postgres -- ALTER TABLE ONLY phenome.locusgroup_member ADD CONSTRAINT locusgroup_member_locus_id_fkey FOREIGN KEY (locus_id) REFERENCES phenome.locus(locus_id) ON DELETE CASCADE; -- -- Name: locusgroup_member locusgroup_member_locusgroup_id_fkey; Type: FK CONSTRAINT; Schema: phenome; Owner: postgres -- ALTER TABLE ONLY phenome.locusgroup_member ADD CONSTRAINT locusgroup_member_locusgroup_id_fkey FOREIGN KEY (locusgroup_id) REFERENCES phenome.locusgroup(locusgroup_id); -- -- Name: locusgroup_member locusgroup_member_reference_id_fkey; Type: FK CONSTRAINT; Schema: phenome; Owner: postgres -- ALTER TABLE ONLY phenome.locusgroup_member ADD CONSTRAINT locusgroup_member_reference_id_fkey FOREIGN KEY (reference_id) REFERENCES public.dbxref(dbxref_id); -- -- Name: locusgroup_member locusgroup_member_sp_person_id_fkey; Type: FK CONSTRAINT; Schema: phenome; Owner: postgres -- ALTER TABLE ONLY phenome.locusgroup_member ADD CONSTRAINT locusgroup_member_sp_person_id_fkey FOREIGN KEY (sp_person_id) REFERENCES sgn_people.sp_person(sp_person_id); -- -- Name: locusgroup locusgroup_relationship_id_fkey; Type: FK CONSTRAINT; Schema: phenome; Owner: postgres -- ALTER TABLE ONLY phenome.locusgroup ADD CONSTRAINT locusgroup_relationship_id_fkey FOREIGN KEY (relationship_id) REFERENCES public.cvterm(cvterm_id); -- -- Name: locusgroup locusgroup_sp_person_id_fkey; Type: FK CONSTRAINT; Schema: phenome; Owner: postgres -- ALTER TABLE ONLY phenome.locusgroup ADD CONSTRAINT locusgroup_sp_person_id_fkey FOREIGN KEY (sp_person_id) REFERENCES sgn_people.sp_person(sp_person_id); -- -- Name: nd_experiment_md_files nd_experiment_md_files_nd_experiment_id_fkey; Type: FK CONSTRAINT; Schema: phenome; Owner: postgres -- ALTER TABLE ONLY phenome.nd_experiment_md_files ADD CONSTRAINT nd_experiment_md_files_nd_experiment_id_fkey FOREIGN KEY (nd_experiment_id) REFERENCES public.nd_experiment(nd_experiment_id); -- -- Name: nd_experiment_md_images nd_experiment_md_images_image_id_fkey; Type: FK CONSTRAINT; Schema: phenome; Owner: postgres -- ALTER TABLE ONLY phenome.nd_experiment_md_images ADD CONSTRAINT nd_experiment_md_images_image_id_fkey FOREIGN KEY (image_id) REFERENCES metadata.md_image(image_id); -- -- Name: nd_experiment_md_images nd_experiment_md_images_nd_experiment_id_fkey; Type: FK CONSTRAINT; Schema: phenome; Owner: postgres -- ALTER TABLE ONLY phenome.nd_experiment_md_images ADD CONSTRAINT nd_experiment_md_images_nd_experiment_id_fkey FOREIGN KEY (nd_experiment_id) REFERENCES public.nd_experiment(nd_experiment_id); -- -- Name: nd_experiment_md_json nd_experiment_md_json_json_id_fkey; Type: FK CONSTRAINT; Schema: phenome; Owner: postgres -- ALTER TABLE ONLY phenome.nd_experiment_md_json ADD CONSTRAINT nd_experiment_md_json_json_id_fkey FOREIGN KEY (json_id) REFERENCES metadata.md_json(json_id); -- -- Name: nd_experiment_md_json nd_experiment_md_json_nd_experiment_id_fkey; Type: FK CONSTRAINT; Schema: phenome; Owner: postgres -- ALTER TABLE ONLY phenome.nd_experiment_md_json ADD CONSTRAINT nd_experiment_md_json_nd_experiment_id_fkey FOREIGN KEY (nd_experiment_id) REFERENCES public.nd_experiment(nd_experiment_id); -- -- Name: phenotype_user_trait phenotype_user_trait_phenotype_id_fkey; Type: FK CONSTRAINT; Schema: phenome; Owner: postgres -- ALTER TABLE ONLY phenome.phenotype_user_trait ADD CONSTRAINT phenotype_user_trait_phenotype_id_fkey FOREIGN KEY (phenotype_id) REFERENCES public.phenotype(phenotype_id) ON DELETE CASCADE; -- -- Name: phenotype_user_trait phenotype_user_trait_user_trait_id_fkey; Type: FK CONSTRAINT; Schema: phenome; Owner: postgres -- ALTER TABLE ONLY phenome.phenotype_user_trait ADD CONSTRAINT phenotype_user_trait_user_trait_id_fkey FOREIGN KEY (user_trait_id) REFERENCES phenome.user_trait(user_trait_id); -- -- Name: polymorphic_fragment polymorphic_fragment_flanking_marker1_id_fkey; Type: FK CONSTRAINT; Schema: phenome; Owner: postgres -- ALTER TABLE ONLY phenome.polymorphic_fragment ADD CONSTRAINT polymorphic_fragment_flanking_marker1_id_fkey FOREIGN KEY (flanking_marker1_id) REFERENCES sgn.marker(marker_id); -- -- Name: polymorphic_fragment polymorphic_fragment_flanking_marker2_id_fkey; Type: FK CONSTRAINT; Schema: phenome; Owner: postgres -- ALTER TABLE ONLY phenome.polymorphic_fragment ADD CONSTRAINT polymorphic_fragment_flanking_marker2_id_fkey FOREIGN KEY (flanking_marker2_id) REFERENCES sgn.marker(marker_id); -- -- Name: polymorphic_fragment polymorphic_fragment_genotype_id_fkey; Type: FK CONSTRAINT; Schema: phenome; Owner: postgres -- ALTER TABLE ONLY phenome.polymorphic_fragment ADD CONSTRAINT polymorphic_fragment_genotype_id_fkey FOREIGN KEY (phenome_genotype_id) REFERENCES phenome.phenome_genotype(phenome_genotype_id); -- -- Name: polymorphic_fragment polymorphic_fragment_sp_person_id_fkey; Type: FK CONSTRAINT; Schema: phenome; Owner: postgres -- ALTER TABLE ONLY phenome.polymorphic_fragment ADD CONSTRAINT polymorphic_fragment_sp_person_id_fkey FOREIGN KEY (sp_person_id) REFERENCES sgn_people.sp_person(sp_person_id); -- -- Name: population population_background_accession_id_fkey; Type: FK CONSTRAINT; Schema: phenome; Owner: postgres -- ALTER TABLE ONLY phenome.population ADD CONSTRAINT population_background_accession_id_fkey FOREIGN KEY (background_accession_id) REFERENCES sgn.accession(accession_id); -- -- Name: population population_common_name_id_fkey; Type: FK CONSTRAINT; Schema: phenome; Owner: postgres -- ALTER TABLE ONLY phenome.population ADD CONSTRAINT population_common_name_id_fkey FOREIGN KEY (common_name_id) REFERENCES sgn.common_name(common_name_id); -- -- Name: population population_cross_type_id_fkey; Type: FK CONSTRAINT; Schema: phenome; Owner: postgres -- ALTER TABLE ONLY phenome.population ADD CONSTRAINT population_cross_type_id_fkey FOREIGN KEY (cross_type_id) REFERENCES phenome.cross_type(cross_type_id); -- -- Name: population_dbxref population_dbxref_dbxref_id_fkey; Type: FK CONSTRAINT; Schema: phenome; Owner: postgres -- ALTER TABLE ONLY phenome.population_dbxref ADD CONSTRAINT population_dbxref_dbxref_id_fkey FOREIGN KEY (dbxref_id) REFERENCES public.dbxref(dbxref_id) ON DELETE CASCADE; -- -- Name: population_dbxref population_dbxref_population_id_fkey; Type: FK CONSTRAINT; Schema: phenome; Owner: postgres -- ALTER TABLE ONLY phenome.population_dbxref ADD CONSTRAINT population_dbxref_population_id_fkey FOREIGN KEY (population_id) REFERENCES phenome.population(population_id) ON DELETE CASCADE; -- -- Name: population_dbxref population_dbxref_sp_person_id_fkey; Type: FK CONSTRAINT; Schema: phenome; Owner: postgres -- ALTER TABLE ONLY phenome.population_dbxref ADD CONSTRAINT population_dbxref_sp_person_id_fkey FOREIGN KEY (sp_person_id) REFERENCES sgn_people.sp_person(sp_person_id) ON DELETE SET NULL; -- -- Name: population population_donor_parent_id_fkey; Type: FK CONSTRAINT; Schema: phenome; Owner: postgres -- ALTER TABLE ONLY phenome.population ADD CONSTRAINT population_donor_parent_id_fkey FOREIGN KEY (donor_parent_id) REFERENCES sgn.accession(accession_id); -- -- Name: population population_female_parent_id_fkey; Type: FK CONSTRAINT; Schema: phenome; Owner: postgres -- ALTER TABLE ONLY phenome.population ADD CONSTRAINT population_female_parent_id_fkey FOREIGN KEY (female_parent_id) REFERENCES sgn.accession(accession_id); -- -- Name: population population_male_parent_id_fkey; Type: FK CONSTRAINT; Schema: phenome; Owner: postgres -- ALTER TABLE ONLY phenome.population ADD CONSTRAINT population_male_parent_id_fkey FOREIGN KEY (male_parent_id) REFERENCES sgn.accession(accession_id); -- -- Name: population population_person_id_fkey; Type: FK CONSTRAINT; Schema: phenome; Owner: postgres -- ALTER TABLE ONLY phenome.population ADD CONSTRAINT population_person_id_fkey FOREIGN KEY (person_id) REFERENCES sgn_people.sp_person(sp_person_id); -- -- Name: population population_recurrent_parent_id_fkey; Type: FK CONSTRAINT; Schema: phenome; Owner: postgres -- ALTER TABLE ONLY phenome.population ADD CONSTRAINT population_recurrent_parent_id_fkey FOREIGN KEY (recurrent_parent_id) REFERENCES sgn.accession(accession_id); -- -- Name: population population_sp_person_id_fkey; Type: FK CONSTRAINT; Schema: phenome; Owner: postgres -- ALTER TABLE ONLY phenome.population ADD CONSTRAINT population_sp_person_id_fkey FOREIGN KEY (sp_person_id) REFERENCES sgn_people.sp_person(sp_person_id); -- -- Name: project_md_image project_md_image_image_id_fkey; Type: FK CONSTRAINT; Schema: phenome; Owner: postgres -- ALTER TABLE ONLY phenome.project_md_image ADD CONSTRAINT project_md_image_image_id_fkey FOREIGN KEY (image_id) REFERENCES metadata.md_image(image_id); -- -- Name: project_md_image project_md_image_project_id_fkey; Type: FK CONSTRAINT; Schema: phenome; Owner: postgres -- ALTER TABLE ONLY phenome.project_md_image ADD CONSTRAINT project_md_image_project_id_fkey FOREIGN KEY (project_id) REFERENCES public.project(project_id); -- -- Name: project_md_image project_md_image_type_id_fkey; Type: FK CONSTRAINT; Schema: phenome; Owner: postgres -- ALTER TABLE ONLY phenome.project_md_image ADD CONSTRAINT project_md_image_type_id_fkey FOREIGN KEY (type_id) REFERENCES public.cvterm(cvterm_id); -- -- Name: pub_curator pub_curator_assigned_to_fkey; Type: FK CONSTRAINT; Schema: phenome; Owner: postgres -- ALTER TABLE ONLY phenome.pub_curator ADD CONSTRAINT pub_curator_assigned_to_fkey FOREIGN KEY (assigned_to) REFERENCES sgn_people.sp_person(sp_person_id); -- -- Name: pub_curator pub_curator_curated_by_fkey; Type: FK CONSTRAINT; Schema: phenome; Owner: postgres -- ALTER TABLE ONLY phenome.pub_curator ADD CONSTRAINT pub_curator_curated_by_fkey FOREIGN KEY (curated_by) REFERENCES sgn_people.sp_person(sp_person_id); -- -- Name: pub_curator pub_curator_pub_id_fkey; Type: FK CONSTRAINT; Schema: phenome; Owner: postgres -- ALTER TABLE ONLY phenome.pub_curator ADD CONSTRAINT pub_curator_pub_id_fkey FOREIGN KEY (pub_id) REFERENCES public.pub(pub_id); -- -- Name: pub_curator pub_curator_sp_person_id_fkey; Type: FK CONSTRAINT; Schema: phenome; Owner: postgres -- ALTER TABLE ONLY phenome.pub_curator ADD CONSTRAINT pub_curator_sp_person_id_fkey FOREIGN KEY (sp_person_id) REFERENCES sgn_people.sp_person(sp_person_id); -- -- Name: registry registry_sp_person_id_fkey; Type: FK CONSTRAINT; Schema: phenome; Owner: postgres -- ALTER TABLE ONLY phenome.registry ADD CONSTRAINT registry_sp_person_id_fkey FOREIGN KEY (sp_person_id) REFERENCES sgn_people.sp_person(sp_person_id); -- -- Name: registry registry_updated_by_fkey; Type: FK CONSTRAINT; Schema: phenome; Owner: postgres -- ALTER TABLE ONLY phenome.registry ADD CONSTRAINT registry_updated_by_fkey FOREIGN KEY (updated_by) REFERENCES sgn_people.sp_person(sp_person_id); -- -- Name: stock_allele stock_allele_allele_id_fkey; Type: FK CONSTRAINT; Schema: phenome; Owner: postgres -- ALTER TABLE ONLY phenome.stock_allele ADD CONSTRAINT stock_allele_allele_id_fkey FOREIGN KEY (allele_id) REFERENCES phenome.allele(allele_id); -- -- Name: stock_allele stock_allele_metadata_id_fkey; Type: FK CONSTRAINT; Schema: phenome; Owner: postgres -- ALTER TABLE ONLY phenome.stock_allele ADD CONSTRAINT stock_allele_metadata_id_fkey FOREIGN KEY (metadata_id) REFERENCES metadata.md_metadata(metadata_id); -- -- Name: stock_allele stock_allele_stock_id_fkey; Type: FK CONSTRAINT; Schema: phenome; Owner: postgres -- ALTER TABLE ONLY phenome.stock_allele ADD CONSTRAINT stock_allele_stock_id_fkey FOREIGN KEY (stock_id) REFERENCES public.stock(stock_id); -- -- Name: stock_image stock_image_image_id_fkey; Type: FK CONSTRAINT; Schema: phenome; Owner: postgres -- ALTER TABLE ONLY phenome.stock_image ADD CONSTRAINT stock_image_image_id_fkey FOREIGN KEY (image_id) REFERENCES metadata.md_image(image_id); -- -- Name: stock_image stock_image_metadata_id_fkey; Type: FK CONSTRAINT; Schema: phenome; Owner: postgres -- ALTER TABLE ONLY phenome.stock_image ADD CONSTRAINT stock_image_metadata_id_fkey FOREIGN KEY (metadata_id) REFERENCES metadata.md_metadata(metadata_id); -- -- Name: stock_image stock_image_stock_id_fkey; Type: FK CONSTRAINT; Schema: phenome; Owner: postgres -- ALTER TABLE ONLY phenome.stock_image ADD CONSTRAINT stock_image_stock_id_fkey FOREIGN KEY (stock_id) REFERENCES public.stock(stock_id); -- -- Name: stock_owner stock_owner_metadata_id_fkey; Type: FK CONSTRAINT; Schema: phenome; Owner: postgres -- ALTER TABLE ONLY phenome.stock_owner ADD CONSTRAINT stock_owner_metadata_id_fkey FOREIGN KEY (metadata_id) REFERENCES metadata.md_metadata(metadata_id); -- -- Name: stock_owner stock_owner_sp_person_id_fkey; Type: FK CONSTRAINT; Schema: phenome; Owner: postgres -- ALTER TABLE ONLY phenome.stock_owner ADD CONSTRAINT stock_owner_sp_person_id_fkey FOREIGN KEY (sp_person_id) REFERENCES sgn_people.sp_person(sp_person_id); -- -- Name: stock_owner stock_owner_stock_id_fkey; Type: FK CONSTRAINT; Schema: phenome; Owner: postgres -- ALTER TABLE ONLY phenome.stock_owner ADD CONSTRAINT stock_owner_stock_id_fkey FOREIGN KEY (stock_id) REFERENCES public.stock(stock_id); -- -- Name: tomato_il_bin tomato_il_bin_n_marker_n_fkey; Type: FK CONSTRAINT; Schema: phenome; Owner: postgres -- ALTER TABLE ONLY phenome.tomato_il_bin ADD CONSTRAINT tomato_il_bin_n_marker_n_fkey FOREIGN KEY (n_marker_n) REFERENCES sgn.marker(marker_id); -- -- Name: tomato_il_bin tomato_il_bin_n_marker_s_fkey; Type: FK CONSTRAINT; Schema: phenome; Owner: postgres -- ALTER TABLE ONLY phenome.tomato_il_bin ADD CONSTRAINT tomato_il_bin_n_marker_s_fkey FOREIGN KEY (n_marker_s) REFERENCES sgn.marker(marker_id); -- -- Name: tomato_il_bin tomato_il_bin_s_marker_n_fkey; Type: FK CONSTRAINT; Schema: phenome; Owner: postgres -- ALTER TABLE ONLY phenome.tomato_il_bin ADD CONSTRAINT tomato_il_bin_s_marker_n_fkey FOREIGN KEY (s_marker_n) REFERENCES sgn.marker(marker_id); -- -- Name: tomato_il_bin tomato_il_bin_s_marker_s_fkey; Type: FK CONSTRAINT; Schema: phenome; Owner: postgres -- ALTER TABLE ONLY phenome.tomato_il_bin ADD CONSTRAINT tomato_il_bin_s_marker_s_fkey FOREIGN KEY (s_marker_s) REFERENCES sgn.marker(marker_id); -- -- Name: user_trait user_trait_cv_id_fkey; Type: FK CONSTRAINT; Schema: phenome; Owner: postgres -- ALTER TABLE ONLY phenome.user_trait ADD CONSTRAINT user_trait_cv_id_fkey FOREIGN KEY (cv_id) REFERENCES public.cv(cv_id); -- -- Name: user_trait user_trait_dbxref_id_fkey; Type: FK CONSTRAINT; Schema: phenome; Owner: postgres -- ALTER TABLE ONLY phenome.user_trait ADD CONSTRAINT user_trait_dbxref_id_fkey FOREIGN KEY (dbxref_id) REFERENCES public.dbxref(dbxref_id) ON DELETE SET NULL; -- -- Name: user_trait user_trait_sp_person_id_fkey; Type: FK CONSTRAINT; Schema: phenome; Owner: postgres -- ALTER TABLE ONLY phenome.user_trait ADD CONSTRAINT user_trait_sp_person_id_fkey FOREIGN KEY (sp_person_id) REFERENCES sgn_people.sp_person(sp_person_id); -- -- Name: user_trait_unit user_trait_unit_population_id_fkey; Type: FK CONSTRAINT; Schema: phenome; Owner: postgres -- ALTER TABLE ONLY phenome.user_trait_unit ADD CONSTRAINT user_trait_unit_population_id_fkey FOREIGN KEY (population_id) REFERENCES phenome.population(population_id) ON DELETE CASCADE; -- -- Name: user_trait_unit user_trait_unit_unit_id_fkey; Type: FK CONSTRAINT; Schema: phenome; Owner: postgres -- ALTER TABLE ONLY phenome.user_trait_unit ADD CONSTRAINT user_trait_unit_unit_id_fkey FOREIGN KEY (unit_id) REFERENCES phenome.unit(unit_id) ON DELETE CASCADE; -- -- Name: user_trait_unit user_trait_unit_user_trait_id_fkey; Type: FK CONSTRAINT; Schema: phenome; Owner: postgres -- ALTER TABLE ONLY phenome.user_trait_unit ADD CONSTRAINT user_trait_unit_user_trait_id_fkey FOREIGN KEY (user_trait_id) REFERENCES phenome.user_trait(user_trait_id) ON DELETE CASCADE; -- -- Name: variant variant_locus_id_fkey; Type: FK CONSTRAINT; Schema: phenome; Owner: postgres -- ALTER TABLE ONLY phenome.variant ADD CONSTRAINT variant_locus_id_fkey FOREIGN KEY (locus_id) REFERENCES phenome.locus(locus_id); -- -- Name: bac_associations bac_associations_bac_id_fkey; Type: FK CONSTRAINT; Schema: physical; Owner: postgres -- ALTER TABLE ONLY physical.bac_associations ADD CONSTRAINT bac_associations_bac_id_fkey FOREIGN KEY (bac_id) REFERENCES genomic.clone(clone_id); -- -- Name: computational_associations computational_associations_clone_id_fkey; Type: FK CONSTRAINT; Schema: physical; Owner: postgres -- ALTER TABLE ONLY physical.computational_associations ADD CONSTRAINT computational_associations_clone_id_fkey FOREIGN KEY (clone_id) REFERENCES genomic.clone(clone_id); -- -- Name: computational_associations computational_associations_clone_id_fkey1; Type: FK CONSTRAINT; Schema: physical; Owner: postgres -- ALTER TABLE ONLY physical.computational_associations ADD CONSTRAINT computational_associations_clone_id_fkey1 FOREIGN KEY (clone_id) REFERENCES genomic.clone(clone_id); -- -- Name: computational_associations computational_associations_marker_id_fkey; Type: FK CONSTRAINT; Schema: physical; Owner: postgres -- ALTER TABLE ONLY physical.computational_associations ADD CONSTRAINT computational_associations_marker_id_fkey FOREIGN KEY (marker_id) REFERENCES sgn.deprecated_markers(marker_id); -- -- Name: computational_associations computational_associations_marker_id_fkey1; Type: FK CONSTRAINT; Schema: physical; Owner: postgres -- ALTER TABLE ONLY physical.computational_associations ADD CONSTRAINT computational_associations_marker_id_fkey1 FOREIGN KEY (marker_id) REFERENCES sgn.marker(marker_id); -- -- Name: fpc_data fpc_data_bac_contig_id_left_fkey; Type: FK CONSTRAINT; Schema: physical; Owner: postgres -- ALTER TABLE ONLY physical.fpc_data ADD CONSTRAINT fpc_data_bac_contig_id_left_fkey FOREIGN KEY (bac_contig_id_left) REFERENCES physical.bac_contigs(bac_contig_id); -- -- Name: fpc_data fpc_data_bac_contig_id_right_fkey; Type: FK CONSTRAINT; Schema: physical; Owner: postgres -- ALTER TABLE ONLY physical.fpc_data ADD CONSTRAINT fpc_data_bac_contig_id_right_fkey FOREIGN KEY (bac_contig_id_right) REFERENCES physical.bac_contigs(bac_contig_id); -- -- Name: manual_associations manual_associations_clone_id_fkey; Type: FK CONSTRAINT; Schema: physical; Owner: postgres -- ALTER TABLE ONLY physical.manual_associations ADD CONSTRAINT manual_associations_clone_id_fkey FOREIGN KEY (clone_id) REFERENCES genomic.clone(clone_id); -- -- Name: manual_associations manual_associations_clone_id_fkey1; Type: FK CONSTRAINT; Schema: physical; Owner: postgres -- ALTER TABLE ONLY physical.manual_associations ADD CONSTRAINT manual_associations_clone_id_fkey1 FOREIGN KEY (clone_id) REFERENCES genomic.clone(clone_id); -- -- Name: manual_associations manual_associations_marker_id_fkey; Type: FK CONSTRAINT; Schema: physical; Owner: postgres -- ALTER TABLE ONLY physical.manual_associations ADD CONSTRAINT manual_associations_marker_id_fkey FOREIGN KEY (marker_id) REFERENCES sgn.marker(marker_id); -- -- Name: manual_associations manual_associations_marker_id_fkey1; Type: FK CONSTRAINT; Schema: physical; Owner: postgres -- ALTER TABLE ONLY physical.manual_associations ADD CONSTRAINT manual_associations_marker_id_fkey1 FOREIGN KEY (marker_id) REFERENCES sgn.marker(marker_id); -- -- Name: manual_associations manual_associations_sp_person_id_fkey; Type: FK CONSTRAINT; Schema: physical; Owner: postgres -- ALTER TABLE ONLY physical.manual_associations ADD CONSTRAINT manual_associations_sp_person_id_fkey FOREIGN KEY (sp_person_id) REFERENCES sgn_people.sp_person(sp_person_id); -- -- Name: manual_associations manual_associations_sp_person_id_fkey1; Type: FK CONSTRAINT; Schema: physical; Owner: postgres -- ALTER TABLE ONLY physical.manual_associations ADD CONSTRAINT manual_associations_sp_person_id_fkey1 FOREIGN KEY (sp_person_id) REFERENCES sgn_people.sp_person(sp_person_id); -- -- Name: probe_markers marker_id_fk; Type: FK CONSTRAINT; Schema: physical; Owner: postgres -- ALTER TABLE ONLY physical.probe_markers ADD CONSTRAINT marker_id_fk FOREIGN KEY (marker_id) REFERENCES sgn.marker(marker_id); -- -- Name: analysisfeature analysisfeature_analysis_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.analysisfeature ADD CONSTRAINT analysisfeature_analysis_id_fkey FOREIGN KEY (analysis_id) REFERENCES public.analysis(analysis_id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED; -- -- Name: analysisfeature analysisfeature_feature_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.analysisfeature ADD CONSTRAINT analysisfeature_feature_id_fkey FOREIGN KEY (feature_id) REFERENCES public.feature(feature_id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED; -- -- Name: analysisprop analysisprop_analysis_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.analysisprop ADD CONSTRAINT analysisprop_analysis_id_fkey FOREIGN KEY (analysis_id) REFERENCES public.analysis(analysis_id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED; -- -- Name: analysisprop analysisprop_type_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.analysisprop ADD CONSTRAINT analysisprop_type_id_fkey FOREIGN KEY (type_id) REFERENCES public.cvterm(cvterm_id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED; -- -- Name: blastwatch_queries blastwatch_queries_sp_person_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.blastwatch_queries ADD CONSTRAINT blastwatch_queries_sp_person_id_fkey FOREIGN KEY (sp_person_id) REFERENCES sgn_people.sp_person(sp_person_id) ON DELETE CASCADE; -- -- Name: blastwatch_results blastwatch_results_blastwatch_queries_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.blastwatch_results ADD CONSTRAINT blastwatch_results_blastwatch_queries_id_fkey FOREIGN KEY (blastwatch_queries_id) REFERENCES public.blastwatch_queries(blastwatch_queries_id) ON DELETE CASCADE; -- -- Name: bug bug_created_by_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.bug ADD CONSTRAINT bug_created_by_fkey FOREIGN KEY (created_by) REFERENCES sgn_people.sp_person(sp_person_id); -- -- Name: bug bug_sp_person_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.bug ADD CONSTRAINT bug_sp_person_id_fkey FOREIGN KEY (sp_person_id) REFERENCES sgn_people.sp_person(sp_person_id); -- -- Name: bug bug_updated_by_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.bug ADD CONSTRAINT bug_updated_by_fkey FOREIGN KEY (updated_by) REFERENCES sgn_people.sp_person(sp_person_id); -- -- Name: contact_relationship contact_relationship_object_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.contact_relationship ADD CONSTRAINT contact_relationship_object_id_fkey FOREIGN KEY (object_id) REFERENCES public.contact(contact_id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED; -- -- Name: contact_relationship contact_relationship_subject_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.contact_relationship ADD CONSTRAINT contact_relationship_subject_id_fkey FOREIGN KEY (subject_id) REFERENCES public.contact(contact_id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED; -- -- Name: contact_relationship contact_relationship_type_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.contact_relationship ADD CONSTRAINT contact_relationship_type_id_fkey FOREIGN KEY (type_id) REFERENCES public.cvterm(cvterm_id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED; -- -- Name: contact contact_type_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.contact ADD CONSTRAINT contact_type_id_fkey FOREIGN KEY (type_id) REFERENCES public.cvterm(cvterm_id); -- -- Name: cvprop cvprop_cv_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.cvprop ADD CONSTRAINT cvprop_cv_id_fkey FOREIGN KEY (cv_id) REFERENCES public.cv(cv_id) DEFERRABLE INITIALLY DEFERRED; -- -- Name: cvprop cvprop_type_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.cvprop ADD CONSTRAINT cvprop_type_id_fkey FOREIGN KEY (type_id) REFERENCES public.cvterm(cvterm_id) DEFERRABLE INITIALLY DEFERRED; -- -- Name: cvterm cvterm_cv_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.cvterm ADD CONSTRAINT cvterm_cv_id_fkey FOREIGN KEY (cv_id) REFERENCES public.cv(cv_id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED; -- -- Name: cvterm_dbxref cvterm_dbxref_cvterm_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.cvterm_dbxref ADD CONSTRAINT cvterm_dbxref_cvterm_id_fkey FOREIGN KEY (cvterm_id) REFERENCES public.cvterm(cvterm_id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED; -- -- Name: cvterm_dbxref cvterm_dbxref_dbxref_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.cvterm_dbxref ADD CONSTRAINT cvterm_dbxref_dbxref_id_fkey FOREIGN KEY (dbxref_id) REFERENCES public.dbxref(dbxref_id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED; -- -- Name: cvterm cvterm_dbxref_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.cvterm ADD CONSTRAINT cvterm_dbxref_id_fkey FOREIGN KEY (dbxref_id) REFERENCES public.dbxref(dbxref_id) ON DELETE SET NULL DEFERRABLE INITIALLY DEFERRED; -- -- Name: cvterm_relationship cvterm_relationship_object_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.cvterm_relationship ADD CONSTRAINT cvterm_relationship_object_id_fkey FOREIGN KEY (object_id) REFERENCES public.cvterm(cvterm_id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED; -- -- Name: cvterm_relationship cvterm_relationship_subject_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.cvterm_relationship ADD CONSTRAINT cvterm_relationship_subject_id_fkey FOREIGN KEY (subject_id) REFERENCES public.cvterm(cvterm_id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED; -- -- Name: cvterm_relationship cvterm_relationship_type_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.cvterm_relationship ADD CONSTRAINT cvterm_relationship_type_id_fkey FOREIGN KEY (type_id) REFERENCES public.cvterm(cvterm_id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED; -- -- Name: cvtermpath cvtermpath_cv_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.cvtermpath ADD CONSTRAINT cvtermpath_cv_id_fkey FOREIGN KEY (cv_id) REFERENCES public.cv(cv_id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED; -- -- Name: cvtermpath cvtermpath_object_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.cvtermpath ADD CONSTRAINT cvtermpath_object_id_fkey FOREIGN KEY (object_id) REFERENCES public.cvterm(cvterm_id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED; -- -- Name: cvtermpath cvtermpath_subject_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.cvtermpath ADD CONSTRAINT cvtermpath_subject_id_fkey FOREIGN KEY (subject_id) REFERENCES public.cvterm(cvterm_id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED; -- -- Name: cvtermpath cvtermpath_type_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.cvtermpath ADD CONSTRAINT cvtermpath_type_id_fkey FOREIGN KEY (type_id) REFERENCES public.cvterm(cvterm_id) ON DELETE SET NULL DEFERRABLE INITIALLY DEFERRED; -- -- Name: cvtermprop cvtermprop_cvterm_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.cvtermprop ADD CONSTRAINT cvtermprop_cvterm_id_fkey FOREIGN KEY (cvterm_id) REFERENCES public.cvterm(cvterm_id) ON DELETE CASCADE; -- -- Name: cvtermprop cvtermprop_type_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.cvtermprop ADD CONSTRAINT cvtermprop_type_id_fkey FOREIGN KEY (type_id) REFERENCES public.cvterm(cvterm_id) ON DELETE CASCADE; -- -- Name: cvtermsynonym cvtermsynonym_cvterm_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.cvtermsynonym ADD CONSTRAINT cvtermsynonym_cvterm_id_fkey FOREIGN KEY (cvterm_id) REFERENCES public.cvterm(cvterm_id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED; -- -- Name: cvtermsynonym cvtermsynonym_type_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.cvtermsynonym ADD CONSTRAINT cvtermsynonym_type_id_fkey FOREIGN KEY (type_id) REFERENCES public.cvterm(cvterm_id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED; -- -- Name: dbxref dbxref_db_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.dbxref ADD CONSTRAINT dbxref_db_id_fkey FOREIGN KEY (db_id) REFERENCES public.db(db_id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED; -- -- Name: dbxrefprop dbxrefprop_dbxref_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.dbxrefprop ADD CONSTRAINT dbxrefprop_dbxref_id_fkey FOREIGN KEY (dbxref_id) REFERENCES public.dbxref(dbxref_id) DEFERRABLE INITIALLY DEFERRED; -- -- Name: dbxrefprop dbxrefprop_type_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.dbxrefprop ADD CONSTRAINT dbxrefprop_type_id_fkey FOREIGN KEY (type_id) REFERENCES public.cvterm(cvterm_id) DEFERRABLE INITIALLY DEFERRED; -- -- Name: environment_cvterm environment_cvterm_cvterm_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.environment_cvterm ADD CONSTRAINT environment_cvterm_cvterm_id_fkey FOREIGN KEY (cvterm_id) REFERENCES public.cvterm(cvterm_id) ON DELETE CASCADE; -- -- Name: environment_cvterm environment_cvterm_environment_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.environment_cvterm ADD CONSTRAINT environment_cvterm_environment_id_fkey FOREIGN KEY (environment_id) REFERENCES public.environment(environment_id) ON DELETE CASCADE; -- -- Name: enzyme_restriction_sites enzyme_restriction_sites_enzyme_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.enzyme_restriction_sites ADD CONSTRAINT enzyme_restriction_sites_enzyme_id_fkey FOREIGN KEY (enzyme_id) REFERENCES sgn.enzymes(enzyme_id); -- -- Name: feature_cvterm feature_cvterm_cvterm_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.feature_cvterm ADD CONSTRAINT feature_cvterm_cvterm_id_fkey FOREIGN KEY (cvterm_id) REFERENCES public.cvterm(cvterm_id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED; -- -- Name: feature_cvterm_dbxref feature_cvterm_dbxref_dbxref_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.feature_cvterm_dbxref ADD CONSTRAINT feature_cvterm_dbxref_dbxref_id_fkey FOREIGN KEY (dbxref_id) REFERENCES public.dbxref(dbxref_id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED; -- -- Name: feature_cvterm_dbxref feature_cvterm_dbxref_feature_cvterm_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.feature_cvterm_dbxref ADD CONSTRAINT feature_cvterm_dbxref_feature_cvterm_id_fkey FOREIGN KEY (feature_cvterm_id) REFERENCES public.feature_cvterm(feature_cvterm_id) ON DELETE CASCADE; -- -- Name: feature_cvterm feature_cvterm_feature_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.feature_cvterm ADD CONSTRAINT feature_cvterm_feature_id_fkey FOREIGN KEY (feature_id) REFERENCES public.feature(feature_id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED; -- -- Name: feature_cvterm_pub feature_cvterm_pub_feature_cvterm_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.feature_cvterm_pub ADD CONSTRAINT feature_cvterm_pub_feature_cvterm_id_fkey FOREIGN KEY (feature_cvterm_id) REFERENCES public.feature_cvterm(feature_cvterm_id) ON DELETE CASCADE; -- -- Name: feature_cvterm feature_cvterm_pub_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.feature_cvterm ADD CONSTRAINT feature_cvterm_pub_id_fkey FOREIGN KEY (pub_id) REFERENCES public.pub(pub_id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED; -- -- Name: feature_cvterm_pub feature_cvterm_pub_pub_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.feature_cvterm_pub ADD CONSTRAINT feature_cvterm_pub_pub_id_fkey FOREIGN KEY (pub_id) REFERENCES public.pub(pub_id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED; -- -- Name: feature_cvtermprop feature_cvtermprop_feature_cvterm_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.feature_cvtermprop ADD CONSTRAINT feature_cvtermprop_feature_cvterm_id_fkey FOREIGN KEY (feature_cvterm_id) REFERENCES public.feature_cvterm(feature_cvterm_id) ON DELETE CASCADE; -- -- Name: feature_cvtermprop feature_cvtermprop_type_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.feature_cvtermprop ADD CONSTRAINT feature_cvtermprop_type_id_fkey FOREIGN KEY (type_id) REFERENCES public.cvterm(cvterm_id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED; -- -- Name: feature_dbxref feature_dbxref_dbxref_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.feature_dbxref ADD CONSTRAINT feature_dbxref_dbxref_id_fkey FOREIGN KEY (dbxref_id) REFERENCES public.dbxref(dbxref_id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED; -- -- Name: feature_dbxref feature_dbxref_feature_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.feature_dbxref ADD CONSTRAINT feature_dbxref_feature_id_fkey FOREIGN KEY (feature_id) REFERENCES public.feature(feature_id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED; -- -- Name: feature feature_dbxref_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.feature ADD CONSTRAINT feature_dbxref_id_fkey FOREIGN KEY (dbxref_id) REFERENCES public.dbxref(dbxref_id) ON DELETE SET NULL DEFERRABLE INITIALLY DEFERRED; -- -- Name: feature_genotype feature_genotype_chromosome_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.feature_genotype ADD CONSTRAINT feature_genotype_chromosome_id_fkey FOREIGN KEY (chromosome_id) REFERENCES public.feature(feature_id) ON DELETE SET NULL; -- -- Name: feature_genotype feature_genotype_cvterm_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.feature_genotype ADD CONSTRAINT feature_genotype_cvterm_id_fkey FOREIGN KEY (cvterm_id) REFERENCES public.cvterm(cvterm_id) ON DELETE CASCADE; -- -- Name: feature_genotype feature_genotype_feature_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.feature_genotype ADD CONSTRAINT feature_genotype_feature_id_fkey FOREIGN KEY (feature_id) REFERENCES public.feature(feature_id) ON DELETE CASCADE; -- -- Name: feature_genotype feature_genotype_genotype_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.feature_genotype ADD CONSTRAINT feature_genotype_genotype_id_fkey FOREIGN KEY (genotype_id) REFERENCES public.genotype(genotype_id) ON DELETE CASCADE; -- -- Name: feature feature_organism_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.feature ADD CONSTRAINT feature_organism_id_fkey FOREIGN KEY (organism_id) REFERENCES public.organism(organism_id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED; -- -- Name: feature_pub feature_pub_feature_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.feature_pub ADD CONSTRAINT feature_pub_feature_id_fkey FOREIGN KEY (feature_id) REFERENCES public.feature(feature_id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED; -- -- Name: feature_pub feature_pub_pub_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.feature_pub ADD CONSTRAINT feature_pub_pub_id_fkey FOREIGN KEY (pub_id) REFERENCES public.pub(pub_id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED; -- -- Name: feature_relationship feature_relationship_object_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.feature_relationship ADD CONSTRAINT feature_relationship_object_id_fkey FOREIGN KEY (object_id) REFERENCES public.feature(feature_id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED; -- -- Name: feature_relationship_pub feature_relationship_pub_feature_relationship_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.feature_relationship_pub ADD CONSTRAINT feature_relationship_pub_feature_relationship_id_fkey FOREIGN KEY (feature_relationship_id) REFERENCES public.feature_relationship(feature_relationship_id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED; -- -- Name: feature_relationship_pub feature_relationship_pub_pub_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.feature_relationship_pub ADD CONSTRAINT feature_relationship_pub_pub_id_fkey FOREIGN KEY (pub_id) REFERENCES public.pub(pub_id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED; -- -- Name: feature_relationship feature_relationship_subject_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.feature_relationship ADD CONSTRAINT feature_relationship_subject_id_fkey FOREIGN KEY (subject_id) REFERENCES public.feature(feature_id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED; -- -- Name: feature_relationship feature_relationship_type_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.feature_relationship ADD CONSTRAINT feature_relationship_type_id_fkey FOREIGN KEY (type_id) REFERENCES public.cvterm(cvterm_id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED; -- -- Name: feature_relationshipprop feature_relationshipprop_feature_relationship_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.feature_relationshipprop ADD CONSTRAINT feature_relationshipprop_feature_relationship_id_fkey FOREIGN KEY (feature_relationship_id) REFERENCES public.feature_relationship(feature_relationship_id) ON DELETE CASCADE; -- -- Name: feature_relationshipprop_pub feature_relationshipprop_pub_feature_relationshipprop_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.feature_relationshipprop_pub ADD CONSTRAINT feature_relationshipprop_pub_feature_relationshipprop_id_fkey FOREIGN KEY (feature_relationshipprop_id) REFERENCES public.feature_relationshipprop(feature_relationshipprop_id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED; -- -- Name: feature_relationshipprop_pub feature_relationshipprop_pub_pub_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.feature_relationshipprop_pub ADD CONSTRAINT feature_relationshipprop_pub_pub_id_fkey FOREIGN KEY (pub_id) REFERENCES public.pub(pub_id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED; -- -- Name: feature_relationshipprop feature_relationshipprop_type_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.feature_relationshipprop ADD CONSTRAINT feature_relationshipprop_type_id_fkey FOREIGN KEY (type_id) REFERENCES public.cvterm(cvterm_id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED; -- -- Name: feature_synonym feature_synonym_feature_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.feature_synonym ADD CONSTRAINT feature_synonym_feature_id_fkey FOREIGN KEY (feature_id) REFERENCES public.feature(feature_id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED; -- -- Name: feature_synonym feature_synonym_pub_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.feature_synonym ADD CONSTRAINT feature_synonym_pub_id_fkey FOREIGN KEY (pub_id) REFERENCES public.pub(pub_id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED; -- -- Name: feature_synonym feature_synonym_synonym_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.feature_synonym ADD CONSTRAINT feature_synonym_synonym_id_fkey FOREIGN KEY (synonym_id) REFERENCES public.synonym(synonym_id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED; -- -- Name: feature feature_type_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.feature ADD CONSTRAINT feature_type_id_fkey FOREIGN KEY (type_id) REFERENCES public.cvterm(cvterm_id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED; -- -- Name: featureloc featureloc_feature_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.featureloc ADD CONSTRAINT featureloc_feature_id_fkey FOREIGN KEY (feature_id) REFERENCES public.feature(feature_id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED; -- -- Name: featureloc_pub featureloc_pub_featureloc_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.featureloc_pub ADD CONSTRAINT featureloc_pub_featureloc_id_fkey FOREIGN KEY (featureloc_id) REFERENCES public.featureloc(featureloc_id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED; -- -- Name: featureloc_pub featureloc_pub_pub_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.featureloc_pub ADD CONSTRAINT featureloc_pub_pub_id_fkey FOREIGN KEY (pub_id) REFERENCES public.pub(pub_id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED; -- -- Name: featureloc featureloc_srcfeature_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.featureloc ADD CONSTRAINT featureloc_srcfeature_id_fkey FOREIGN KEY (srcfeature_id) REFERENCES public.feature(feature_id) ON DELETE SET NULL DEFERRABLE INITIALLY DEFERRED; -- -- Name: featureprop featureprop_feature_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.featureprop ADD CONSTRAINT featureprop_feature_id_fkey FOREIGN KEY (feature_id) REFERENCES public.feature(feature_id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED; -- -- Name: featureprop_pub featureprop_pub_featureprop_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.featureprop_pub ADD CONSTRAINT featureprop_pub_featureprop_id_fkey FOREIGN KEY (featureprop_id) REFERENCES public.featureprop(featureprop_id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED; -- -- Name: featureprop_pub featureprop_pub_pub_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.featureprop_pub ADD CONSTRAINT featureprop_pub_pub_id_fkey FOREIGN KEY (pub_id) REFERENCES public.pub(pub_id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED; -- -- Name: featureprop featureprop_type_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.featureprop ADD CONSTRAINT featureprop_type_id_fkey FOREIGN KEY (type_id) REFERENCES public.cvterm(cvterm_id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED; -- -- Name: fpc_band fpc_band_fpc_fingerprint_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.fpc_band ADD CONSTRAINT fpc_band_fpc_fingerprint_id_fkey FOREIGN KEY (fpc_fingerprint_id) REFERENCES public.fpc_fingerprint(fpc_fingerprint_id) ON DELETE CASCADE; -- -- Name: fpc_build_fpc_fingerprint fpc_build_fpc_fingerprint_fpc_build_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.fpc_build_fpc_fingerprint ADD CONSTRAINT fpc_build_fpc_fingerprint_fpc_build_id_fkey FOREIGN KEY (fpc_build_id) REFERENCES public.fpc_build(fpc_build_id) ON DELETE CASCADE; -- -- Name: fpc_build_fpc_fingerprint fpc_build_fpc_fingerprint_fpc_fingerprint_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.fpc_build_fpc_fingerprint ADD CONSTRAINT fpc_build_fpc_fingerprint_fpc_fingerprint_id_fkey FOREIGN KEY (fpc_fingerprint_id) REFERENCES public.fpc_fingerprint(fpc_fingerprint_id) ON DELETE CASCADE; -- -- Name: fpc_build fpc_build_fpc_series_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.fpc_build ADD CONSTRAINT fpc_build_fpc_series_id_fkey FOREIGN KEY (fpc_series_id) REFERENCES public.fpc_series(fpc_series_id); -- -- Name: fpc_contig_clone fpc_contig_clone_clone_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.fpc_contig_clone ADD CONSTRAINT fpc_contig_clone_clone_id_fkey FOREIGN KEY (clone_id) REFERENCES genomic.clone(clone_id); -- -- Name: fpc_contig_clone fpc_contig_clone_fpc_contig_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.fpc_contig_clone ADD CONSTRAINT fpc_contig_clone_fpc_contig_id_fkey FOREIGN KEY (fpc_contig_id) REFERENCES public.fpc_contig(fpc_contig_id) ON DELETE CASCADE; -- -- Name: fpc_contig fpc_contig_fpc_build_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.fpc_contig ADD CONSTRAINT fpc_contig_fpc_build_id_fkey FOREIGN KEY (fpc_build_id) REFERENCES public.fpc_build(fpc_build_id) ON DELETE CASCADE; -- -- Name: fpc_fingerprint fpc_fingerprint_clone_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.fpc_fingerprint ADD CONSTRAINT fpc_fingerprint_clone_id_fkey FOREIGN KEY (clone_id) REFERENCES genomic.clone(clone_id) ON DELETE CASCADE; -- -- Name: fpc_fingerprint fpc_fingerprint_enzyme_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.fpc_fingerprint ADD CONSTRAINT fpc_fingerprint_enzyme_id_fkey FOREIGN KEY (enzyme_id) REFERENCES sgn.enzymes(enzyme_id); -- -- Name: genotype genotype_type_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.genotype ADD CONSTRAINT genotype_type_id_fkey FOREIGN KEY (type_id) REFERENCES public.cvterm(cvterm_id) ON DELETE CASCADE; -- -- Name: genotypeprop genotypeprop_genotype_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.genotypeprop ADD CONSTRAINT genotypeprop_genotype_id_fkey FOREIGN KEY (genotype_id) REFERENCES public.genotype(genotype_id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED; -- -- Name: genotypeprop genotypeprop_type_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.genotypeprop ADD CONSTRAINT genotypeprop_type_id_fkey FOREIGN KEY (type_id) REFERENCES public.cvterm(cvterm_id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED; -- -- Name: nd_experiment_contact nd_experiment_contact_contact_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.nd_experiment_contact ADD CONSTRAINT nd_experiment_contact_contact_id_fkey FOREIGN KEY (contact_id) REFERENCES public.contact(contact_id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED; -- -- Name: nd_experiment_contact nd_experiment_contact_nd_experiment_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.nd_experiment_contact ADD CONSTRAINT nd_experiment_contact_nd_experiment_id_fkey FOREIGN KEY (nd_experiment_id) REFERENCES public.nd_experiment(nd_experiment_id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED; -- -- Name: nd_experiment_dbxref nd_experiment_dbxref_dbxref_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.nd_experiment_dbxref ADD CONSTRAINT nd_experiment_dbxref_dbxref_id_fkey FOREIGN KEY (dbxref_id) REFERENCES public.dbxref(dbxref_id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED; -- -- Name: nd_experiment_dbxref nd_experiment_dbxref_nd_experiment_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.nd_experiment_dbxref ADD CONSTRAINT nd_experiment_dbxref_nd_experiment_id_fkey FOREIGN KEY (nd_experiment_id) REFERENCES public.nd_experiment(nd_experiment_id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED; -- -- Name: nd_experiment_genotype nd_experiment_genotype_genotype_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.nd_experiment_genotype ADD CONSTRAINT nd_experiment_genotype_genotype_id_fkey FOREIGN KEY (genotype_id) REFERENCES public.genotype(genotype_id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED; -- -- Name: nd_experiment_genotype nd_experiment_genotype_nd_experiment_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.nd_experiment_genotype ADD CONSTRAINT nd_experiment_genotype_nd_experiment_id_fkey FOREIGN KEY (nd_experiment_id) REFERENCES public.nd_experiment(nd_experiment_id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED; -- -- Name: nd_experiment nd_experiment_nd_geolocation_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.nd_experiment ADD CONSTRAINT nd_experiment_nd_geolocation_id_fkey FOREIGN KEY (nd_geolocation_id) REFERENCES public.nd_geolocation(nd_geolocation_id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED; -- -- Name: nd_experiment_phenotype nd_experiment_phenotype_nd_experiment_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.nd_experiment_phenotype ADD CONSTRAINT nd_experiment_phenotype_nd_experiment_id_fkey FOREIGN KEY (nd_experiment_id) REFERENCES public.nd_experiment(nd_experiment_id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED; -- -- Name: nd_experiment_phenotype nd_experiment_phenotype_phenotype_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.nd_experiment_phenotype ADD CONSTRAINT nd_experiment_phenotype_phenotype_id_fkey FOREIGN KEY (phenotype_id) REFERENCES public.phenotype(phenotype_id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED; -- -- Name: nd_experiment_project nd_experiment_project_nd_experiment_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.nd_experiment_project ADD CONSTRAINT nd_experiment_project_nd_experiment_id_fkey FOREIGN KEY (nd_experiment_id) REFERENCES public.nd_experiment(nd_experiment_id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED; -- -- Name: nd_experiment_project nd_experiment_project_project_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.nd_experiment_project ADD CONSTRAINT nd_experiment_project_project_id_fkey FOREIGN KEY (project_id) REFERENCES public.project(project_id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED; -- -- Name: nd_experiment_protocol nd_experiment_protocol_nd_experiment_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.nd_experiment_protocol ADD CONSTRAINT nd_experiment_protocol_nd_experiment_id_fkey FOREIGN KEY (nd_experiment_id) REFERENCES public.nd_experiment(nd_experiment_id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED; -- -- Name: nd_experiment_protocol nd_experiment_protocol_nd_protocol_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.nd_experiment_protocol ADD CONSTRAINT nd_experiment_protocol_nd_protocol_id_fkey FOREIGN KEY (nd_protocol_id) REFERENCES public.nd_protocol(nd_protocol_id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED; -- -- Name: nd_experiment_pub nd_experiment_pub_nd_experiment_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.nd_experiment_pub ADD CONSTRAINT nd_experiment_pub_nd_experiment_id_fkey FOREIGN KEY (nd_experiment_id) REFERENCES public.nd_experiment(nd_experiment_id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED; -- -- Name: nd_experiment_pub nd_experiment_pub_pub_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.nd_experiment_pub ADD CONSTRAINT nd_experiment_pub_pub_id_fkey FOREIGN KEY (pub_id) REFERENCES public.pub(pub_id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED; -- -- Name: nd_experiment_stock_dbxref nd_experiment_stock_dbxref_dbxref_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.nd_experiment_stock_dbxref ADD CONSTRAINT nd_experiment_stock_dbxref_dbxref_id_fkey FOREIGN KEY (dbxref_id) REFERENCES public.dbxref(dbxref_id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED; -- -- Name: nd_experiment_stock_dbxref nd_experiment_stock_dbxref_nd_experiment_stock_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.nd_experiment_stock_dbxref ADD CONSTRAINT nd_experiment_stock_dbxref_nd_experiment_stock_id_fkey FOREIGN KEY (nd_experiment_stock_id) REFERENCES public.nd_experiment_stock(nd_experiment_stock_id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED; -- -- Name: nd_experiment_stock nd_experiment_stock_nd_experiment_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.nd_experiment_stock ADD CONSTRAINT nd_experiment_stock_nd_experiment_id_fkey FOREIGN KEY (nd_experiment_id) REFERENCES public.nd_experiment(nd_experiment_id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED; -- -- Name: nd_experiment_stock nd_experiment_stock_stock_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.nd_experiment_stock ADD CONSTRAINT nd_experiment_stock_stock_id_fkey FOREIGN KEY (stock_id) REFERENCES public.stock(stock_id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED; -- -- Name: nd_experiment_stock nd_experiment_stock_type_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.nd_experiment_stock ADD CONSTRAINT nd_experiment_stock_type_id_fkey FOREIGN KEY (type_id) REFERENCES public.cvterm(cvterm_id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED; -- -- Name: nd_experiment_stockprop nd_experiment_stockprop_nd_experiment_stock_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.nd_experiment_stockprop ADD CONSTRAINT nd_experiment_stockprop_nd_experiment_stock_id_fkey FOREIGN KEY (nd_experiment_stock_id) REFERENCES public.nd_experiment_stock(nd_experiment_stock_id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED; -- -- Name: nd_experiment_stockprop nd_experiment_stockprop_type_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.nd_experiment_stockprop ADD CONSTRAINT nd_experiment_stockprop_type_id_fkey FOREIGN KEY (type_id) REFERENCES public.cvterm(cvterm_id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED; -- -- Name: nd_experiment nd_experiment_type_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.nd_experiment ADD CONSTRAINT nd_experiment_type_id_fkey FOREIGN KEY (type_id) REFERENCES public.cvterm(cvterm_id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED; -- -- Name: nd_experimentprop nd_experimentprop_nd_experiment_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.nd_experimentprop ADD CONSTRAINT nd_experimentprop_nd_experiment_id_fkey FOREIGN KEY (nd_experiment_id) REFERENCES public.nd_experiment(nd_experiment_id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED; -- -- Name: nd_experimentprop nd_experimentprop_type_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.nd_experimentprop ADD CONSTRAINT nd_experimentprop_type_id_fkey FOREIGN KEY (type_id) REFERENCES public.cvterm(cvterm_id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED; -- -- Name: nd_geolocationprop nd_geolocationprop_nd_geolocation_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.nd_geolocationprop ADD CONSTRAINT nd_geolocationprop_nd_geolocation_id_fkey FOREIGN KEY (nd_geolocation_id) REFERENCES public.nd_geolocation(nd_geolocation_id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED; -- -- Name: nd_geolocationprop nd_geolocationprop_type_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.nd_geolocationprop ADD CONSTRAINT nd_geolocationprop_type_id_fkey FOREIGN KEY (type_id) REFERENCES public.cvterm(cvterm_id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED; -- -- Name: nd_protocol_reagent nd_protocol_reagent_nd_protocol_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.nd_protocol_reagent ADD CONSTRAINT nd_protocol_reagent_nd_protocol_id_fkey FOREIGN KEY (nd_protocol_id) REFERENCES public.nd_protocol(nd_protocol_id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED; -- -- Name: nd_protocol_reagent nd_protocol_reagent_reagent_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.nd_protocol_reagent ADD CONSTRAINT nd_protocol_reagent_reagent_id_fkey FOREIGN KEY (reagent_id) REFERENCES public.nd_reagent(nd_reagent_id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED; -- -- Name: nd_protocol_reagent nd_protocol_reagent_type_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.nd_protocol_reagent ADD CONSTRAINT nd_protocol_reagent_type_id_fkey FOREIGN KEY (type_id) REFERENCES public.cvterm(cvterm_id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED; -- -- Name: nd_protocol nd_protocol_type_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.nd_protocol ADD CONSTRAINT nd_protocol_type_id_fkey FOREIGN KEY (type_id) REFERENCES public.cvterm(cvterm_id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED; -- -- Name: nd_protocolprop nd_protocolprop_nd_protocol_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.nd_protocolprop ADD CONSTRAINT nd_protocolprop_nd_protocol_id_fkey FOREIGN KEY (nd_protocol_id) REFERENCES public.nd_protocol(nd_protocol_id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED; -- -- Name: nd_protocolprop nd_protocolprop_type_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.nd_protocolprop ADD CONSTRAINT nd_protocolprop_type_id_fkey FOREIGN KEY (type_id) REFERENCES public.cvterm(cvterm_id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED; -- -- Name: nd_reagent_relationship nd_reagent_relationship_object_reagent_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.nd_reagent_relationship ADD CONSTRAINT nd_reagent_relationship_object_reagent_id_fkey FOREIGN KEY (object_reagent_id) REFERENCES public.nd_reagent(nd_reagent_id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED; -- -- Name: nd_reagent_relationship nd_reagent_relationship_subject_reagent_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.nd_reagent_relationship ADD CONSTRAINT nd_reagent_relationship_subject_reagent_id_fkey FOREIGN KEY (subject_reagent_id) REFERENCES public.nd_reagent(nd_reagent_id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED; -- -- Name: nd_reagent_relationship nd_reagent_relationship_type_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.nd_reagent_relationship ADD CONSTRAINT nd_reagent_relationship_type_id_fkey FOREIGN KEY (type_id) REFERENCES public.cvterm(cvterm_id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED; -- -- Name: nd_reagent nd_reagent_type_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.nd_reagent ADD CONSTRAINT nd_reagent_type_id_fkey FOREIGN KEY (type_id) REFERENCES public.cvterm(cvterm_id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED; -- -- Name: nd_reagentprop nd_reagentprop_nd_reagent_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.nd_reagentprop ADD CONSTRAINT nd_reagentprop_nd_reagent_id_fkey FOREIGN KEY (nd_reagent_id) REFERENCES public.nd_reagent(nd_reagent_id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED; -- -- Name: nd_reagentprop nd_reagentprop_type_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.nd_reagentprop ADD CONSTRAINT nd_reagentprop_type_id_fkey FOREIGN KEY (type_id) REFERENCES public.cvterm(cvterm_id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED; -- -- Name: organism_dbxref organism_dbxref_dbxref_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.organism_dbxref ADD CONSTRAINT organism_dbxref_dbxref_id_fkey FOREIGN KEY (dbxref_id) REFERENCES public.dbxref(dbxref_id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED; -- -- Name: organism_dbxref organism_dbxref_organism_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.organism_dbxref ADD CONSTRAINT organism_dbxref_organism_id_fkey FOREIGN KEY (organism_id) REFERENCES public.organism(organism_id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED; -- -- Name: organism_relationship organism_relationship_object_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.organism_relationship ADD CONSTRAINT organism_relationship_object_id_fkey FOREIGN KEY (object_id) REFERENCES public.organism(organism_id) DEFERRABLE INITIALLY DEFERRED; -- -- Name: organism_relationship organism_relationship_subject_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.organism_relationship ADD CONSTRAINT organism_relationship_subject_id_fkey FOREIGN KEY (subject_id) REFERENCES public.organism(organism_id) DEFERRABLE INITIALLY DEFERRED; -- -- Name: organism_relationship organism_relationship_type_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.organism_relationship ADD CONSTRAINT organism_relationship_type_id_fkey FOREIGN KEY (type_id) REFERENCES public.cvterm(cvterm_id) DEFERRABLE INITIALLY DEFERRED; -- -- Name: organism organism_sgn_organism_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.organism ADD CONSTRAINT organism_sgn_organism_id_fkey FOREIGN KEY (sgn_organism_id) REFERENCES sgn.organism(organism_id); -- -- Name: organismpath organismpath_object_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.organismpath ADD CONSTRAINT organismpath_object_id_fkey FOREIGN KEY (object_id) REFERENCES public.organism(organism_id) DEFERRABLE INITIALLY DEFERRED; -- -- Name: organismpath organismpath_subject_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.organismpath ADD CONSTRAINT organismpath_subject_id_fkey FOREIGN KEY (subject_id) REFERENCES public.organism(organism_id) DEFERRABLE INITIALLY DEFERRED; -- -- Name: organismpath organismpath_type_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.organismpath ADD CONSTRAINT organismpath_type_id_fkey FOREIGN KEY (type_id) REFERENCES public.cvterm(cvterm_id) DEFERRABLE INITIALLY DEFERRED; -- -- Name: organismprop organismprop_organism_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.organismprop ADD CONSTRAINT organismprop_organism_id_fkey FOREIGN KEY (organism_id) REFERENCES public.organism(organism_id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED; -- -- Name: organismprop organismprop_type_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.organismprop ADD CONSTRAINT organismprop_type_id_fkey FOREIGN KEY (type_id) REFERENCES public.cvterm(cvterm_id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED; -- -- Name: phendesc phendesc_environment_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.phendesc ADD CONSTRAINT phendesc_environment_id_fkey FOREIGN KEY (environment_id) REFERENCES public.environment(environment_id) ON DELETE CASCADE; -- -- Name: phendesc phendesc_genotype_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.phendesc ADD CONSTRAINT phendesc_genotype_id_fkey FOREIGN KEY (genotype_id) REFERENCES public.genotype(genotype_id) ON DELETE CASCADE; -- -- Name: phendesc phendesc_pub_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.phendesc ADD CONSTRAINT phendesc_pub_id_fkey FOREIGN KEY (pub_id) REFERENCES public.pub(pub_id) ON DELETE CASCADE; -- -- Name: phendesc phendesc_type_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.phendesc ADD CONSTRAINT phendesc_type_id_fkey FOREIGN KEY (type_id) REFERENCES public.cvterm(cvterm_id) ON DELETE CASCADE; -- -- Name: phenotype phenotype_assay_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.phenotype ADD CONSTRAINT phenotype_assay_id_fkey FOREIGN KEY (assay_id) REFERENCES public.cvterm(cvterm_id) ON DELETE SET NULL; -- -- Name: phenotype phenotype_attr_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.phenotype ADD CONSTRAINT phenotype_attr_id_fkey FOREIGN KEY (attr_id) REFERENCES public.cvterm(cvterm_id) ON DELETE SET NULL; -- -- Name: phenotype_comparison_cvterm phenotype_comparison_cvterm_cvterm_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.phenotype_comparison_cvterm ADD CONSTRAINT phenotype_comparison_cvterm_cvterm_id_fkey FOREIGN KEY (cvterm_id) REFERENCES public.cvterm(cvterm_id) ON DELETE CASCADE; -- -- Name: phenotype_comparison_cvterm phenotype_comparison_cvterm_phenotype_comparison_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.phenotype_comparison_cvterm ADD CONSTRAINT phenotype_comparison_cvterm_phenotype_comparison_id_fkey FOREIGN KEY (phenotype_comparison_id) REFERENCES public.phenotype_comparison(phenotype_comparison_id) ON DELETE CASCADE; -- -- Name: phenotype_comparison_cvterm phenotype_comparison_cvterm_pub_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.phenotype_comparison_cvterm ADD CONSTRAINT phenotype_comparison_cvterm_pub_id_fkey FOREIGN KEY (pub_id) REFERENCES public.pub(pub_id) ON DELETE CASCADE; -- -- Name: phenotype_comparison phenotype_comparison_environment1_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.phenotype_comparison ADD CONSTRAINT phenotype_comparison_environment1_id_fkey FOREIGN KEY (environment1_id) REFERENCES public.environment(environment_id) ON DELETE CASCADE; -- -- Name: phenotype_comparison phenotype_comparison_environment2_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.phenotype_comparison ADD CONSTRAINT phenotype_comparison_environment2_id_fkey FOREIGN KEY (environment2_id) REFERENCES public.environment(environment_id) ON DELETE CASCADE; -- -- Name: phenotype_comparison phenotype_comparison_genotype1_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.phenotype_comparison ADD CONSTRAINT phenotype_comparison_genotype1_id_fkey FOREIGN KEY (genotype1_id) REFERENCES public.genotype(genotype_id) ON DELETE CASCADE; -- -- Name: phenotype_comparison phenotype_comparison_genotype2_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.phenotype_comparison ADD CONSTRAINT phenotype_comparison_genotype2_id_fkey FOREIGN KEY (genotype2_id) REFERENCES public.genotype(genotype_id) ON DELETE CASCADE; -- -- Name: phenotype_comparison phenotype_comparison_organism_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.phenotype_comparison ADD CONSTRAINT phenotype_comparison_organism_id_fkey FOREIGN KEY (organism_id) REFERENCES public.organism(organism_id) ON DELETE CASCADE; -- -- Name: phenotype_comparison phenotype_comparison_phenotype1_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.phenotype_comparison ADD CONSTRAINT phenotype_comparison_phenotype1_id_fkey FOREIGN KEY (phenotype1_id) REFERENCES public.phenotype(phenotype_id) ON DELETE CASCADE; -- -- Name: phenotype_comparison phenotype_comparison_phenotype2_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.phenotype_comparison ADD CONSTRAINT phenotype_comparison_phenotype2_id_fkey FOREIGN KEY (phenotype2_id) REFERENCES public.phenotype(phenotype_id) ON DELETE CASCADE; -- -- Name: phenotype_comparison phenotype_comparison_pub_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.phenotype_comparison ADD CONSTRAINT phenotype_comparison_pub_id_fkey FOREIGN KEY (pub_id) REFERENCES public.pub(pub_id) ON DELETE CASCADE; -- -- Name: phenotype phenotype_cvalue_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.phenotype ADD CONSTRAINT phenotype_cvalue_id_fkey FOREIGN KEY (cvalue_id) REFERENCES public.cvterm(cvterm_id) ON DELETE SET NULL; -- -- Name: phenotype_cvterm phenotype_cvterm_cvterm_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.phenotype_cvterm ADD CONSTRAINT phenotype_cvterm_cvterm_id_fkey FOREIGN KEY (cvterm_id) REFERENCES public.cvterm(cvterm_id) ON DELETE CASCADE; -- -- Name: phenotype_cvterm phenotype_cvterm_phenotype_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.phenotype_cvterm ADD CONSTRAINT phenotype_cvterm_phenotype_id_fkey FOREIGN KEY (phenotype_id) REFERENCES public.phenotype(phenotype_id) ON DELETE CASCADE; -- -- Name: phenotype phenotype_individual_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.phenotype ADD CONSTRAINT phenotype_individual_id_fkey FOREIGN KEY (individual_id) REFERENCES phenome.individual(individual_id) ON DELETE CASCADE; -- -- Name: phenotype phenotype_observable_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.phenotype ADD CONSTRAINT phenotype_observable_id_fkey FOREIGN KEY (observable_id) REFERENCES public.cvterm(cvterm_id) ON DELETE CASCADE; -- -- Name: phenotype phenotype_sp_person_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.phenotype ADD CONSTRAINT phenotype_sp_person_id_fkey FOREIGN KEY (sp_person_id) REFERENCES sgn_people.sp_person(sp_person_id) ON DELETE SET NULL; -- -- Name: phenotypeprop phenotypeprop_phenotype_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.phenotypeprop ADD CONSTRAINT phenotypeprop_phenotype_id_fkey FOREIGN KEY (phenotype_id) REFERENCES public.phenotype(phenotype_id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED; -- -- Name: phenotypeprop phenotypeprop_type_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.phenotypeprop ADD CONSTRAINT phenotypeprop_type_id_fkey FOREIGN KEY (type_id) REFERENCES public.cvterm(cvterm_id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED; -- -- Name: phenstatement phenstatement_environment_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.phenstatement ADD CONSTRAINT phenstatement_environment_id_fkey FOREIGN KEY (environment_id) REFERENCES public.environment(environment_id) ON DELETE CASCADE; -- -- Name: phenstatement phenstatement_genotype_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.phenstatement ADD CONSTRAINT phenstatement_genotype_id_fkey FOREIGN KEY (genotype_id) REFERENCES public.genotype(genotype_id) ON DELETE CASCADE; -- -- Name: phenstatement phenstatement_phenotype_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.phenstatement ADD CONSTRAINT phenstatement_phenotype_id_fkey FOREIGN KEY (phenotype_id) REFERENCES public.phenotype(phenotype_id) ON DELETE CASCADE; -- -- Name: phenstatement phenstatement_pub_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.phenstatement ADD CONSTRAINT phenstatement_pub_id_fkey FOREIGN KEY (pub_id) REFERENCES public.pub(pub_id) ON DELETE CASCADE; -- -- Name: phenstatement phenstatement_type_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.phenstatement ADD CONSTRAINT phenstatement_type_id_fkey FOREIGN KEY (type_id) REFERENCES public.cvterm(cvterm_id) ON DELETE CASCADE; -- -- Name: phylonode_dbxref phylonode_dbxref_dbxref_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.phylonode_dbxref ADD CONSTRAINT phylonode_dbxref_dbxref_id_fkey FOREIGN KEY (dbxref_id) REFERENCES public.dbxref(dbxref_id) ON DELETE CASCADE; -- -- Name: phylonode_dbxref phylonode_dbxref_phylonode_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.phylonode_dbxref ADD CONSTRAINT phylonode_dbxref_phylonode_id_fkey FOREIGN KEY (phylonode_id) REFERENCES public.phylonode(phylonode_id) ON DELETE CASCADE; -- -- Name: phylonode phylonode_feature_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.phylonode ADD CONSTRAINT phylonode_feature_id_fkey FOREIGN KEY (feature_id) REFERENCES public.feature(feature_id) ON DELETE CASCADE; -- -- Name: phylonode_organism phylonode_organism_organism_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.phylonode_organism ADD CONSTRAINT phylonode_organism_organism_id_fkey FOREIGN KEY (organism_id) REFERENCES public.organism(organism_id) ON DELETE CASCADE; -- -- Name: phylonode_organism phylonode_organism_phylonode_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.phylonode_organism ADD CONSTRAINT phylonode_organism_phylonode_id_fkey FOREIGN KEY (phylonode_id) REFERENCES public.phylonode(phylonode_id) ON DELETE CASCADE; -- -- Name: phylonode phylonode_parent_phylonode_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.phylonode ADD CONSTRAINT phylonode_parent_phylonode_id_fkey FOREIGN KEY (parent_phylonode_id) REFERENCES public.phylonode(phylonode_id) ON DELETE CASCADE; -- -- Name: phylonode phylonode_phylotree_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.phylonode ADD CONSTRAINT phylonode_phylotree_id_fkey FOREIGN KEY (phylotree_id) REFERENCES public.phylotree(phylotree_id) ON DELETE CASCADE; -- -- Name: phylonode_pub phylonode_pub_phylonode_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.phylonode_pub ADD CONSTRAINT phylonode_pub_phylonode_id_fkey FOREIGN KEY (phylonode_id) REFERENCES public.phylonode(phylonode_id) ON DELETE CASCADE; -- -- Name: phylonode_pub phylonode_pub_pub_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.phylonode_pub ADD CONSTRAINT phylonode_pub_pub_id_fkey FOREIGN KEY (pub_id) REFERENCES public.pub(pub_id) ON DELETE CASCADE; -- -- Name: phylonode_relationship phylonode_relationship_object_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.phylonode_relationship ADD CONSTRAINT phylonode_relationship_object_id_fkey FOREIGN KEY (object_id) REFERENCES public.phylonode(phylonode_id) ON DELETE CASCADE; -- -- Name: phylonode_relationship phylonode_relationship_phylotree_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.phylonode_relationship ADD CONSTRAINT phylonode_relationship_phylotree_id_fkey FOREIGN KEY (phylotree_id) REFERENCES public.phylotree(phylotree_id) ON DELETE CASCADE; -- -- Name: phylonode_relationship phylonode_relationship_subject_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.phylonode_relationship ADD CONSTRAINT phylonode_relationship_subject_id_fkey FOREIGN KEY (subject_id) REFERENCES public.phylonode(phylonode_id) ON DELETE CASCADE; -- -- Name: phylonode_relationship phylonode_relationship_type_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.phylonode_relationship ADD CONSTRAINT phylonode_relationship_type_id_fkey FOREIGN KEY (type_id) REFERENCES public.cvterm(cvterm_id) ON DELETE CASCADE; -- -- Name: phylonode phylonode_type_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.phylonode ADD CONSTRAINT phylonode_type_id_fkey FOREIGN KEY (type_id) REFERENCES public.cvterm(cvterm_id) ON DELETE CASCADE; -- -- Name: phylonodeprop phylonodeprop_phylonode_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.phylonodeprop ADD CONSTRAINT phylonodeprop_phylonode_id_fkey FOREIGN KEY (phylonode_id) REFERENCES public.phylonode(phylonode_id) ON DELETE CASCADE; -- -- Name: phylonodeprop phylonodeprop_type_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.phylonodeprop ADD CONSTRAINT phylonodeprop_type_id_fkey FOREIGN KEY (type_id) REFERENCES public.cvterm(cvterm_id) ON DELETE CASCADE; -- -- Name: phylotree phylotree_analysis_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.phylotree ADD CONSTRAINT phylotree_analysis_id_fkey FOREIGN KEY (analysis_id) REFERENCES public.analysis(analysis_id) ON DELETE CASCADE; -- -- Name: phylotree phylotree_dbxref_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.phylotree ADD CONSTRAINT phylotree_dbxref_id_fkey FOREIGN KEY (dbxref_id) REFERENCES public.dbxref(dbxref_id) ON DELETE CASCADE; -- -- Name: phylotree_pub phylotree_pub_phylotree_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.phylotree_pub ADD CONSTRAINT phylotree_pub_phylotree_id_fkey FOREIGN KEY (phylotree_id) REFERENCES public.phylotree(phylotree_id) ON DELETE CASCADE; -- -- Name: phylotree_pub phylotree_pub_pub_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.phylotree_pub ADD CONSTRAINT phylotree_pub_pub_id_fkey FOREIGN KEY (pub_id) REFERENCES public.pub(pub_id) ON DELETE CASCADE; -- -- Name: phylotree phylotree_type_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.phylotree ADD CONSTRAINT phylotree_type_id_fkey FOREIGN KEY (type_id) REFERENCES public.cvterm(cvterm_id) ON DELETE CASCADE; -- -- Name: project_contact project_contact_contact_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.project_contact ADD CONSTRAINT project_contact_contact_id_fkey FOREIGN KEY (contact_id) REFERENCES public.contact(contact_id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED; -- -- Name: project_contact project_contact_project_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.project_contact ADD CONSTRAINT project_contact_project_id_fkey FOREIGN KEY (project_id) REFERENCES public.project(project_id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED; -- -- Name: project_pub project_pub_project_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.project_pub ADD CONSTRAINT project_pub_project_id_fkey FOREIGN KEY (project_id) REFERENCES public.project(project_id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED; -- -- Name: project_pub project_pub_pub_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.project_pub ADD CONSTRAINT project_pub_pub_id_fkey FOREIGN KEY (pub_id) REFERENCES public.pub(pub_id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED; -- -- Name: project_relationship project_relationship_object_project_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.project_relationship ADD CONSTRAINT project_relationship_object_project_id_fkey FOREIGN KEY (object_project_id) REFERENCES public.project(project_id) ON DELETE CASCADE; -- -- Name: project_relationship project_relationship_subject_project_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.project_relationship ADD CONSTRAINT project_relationship_subject_project_id_fkey FOREIGN KEY (subject_project_id) REFERENCES public.project(project_id) ON DELETE CASCADE; -- -- Name: project_relationship project_relationship_type_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.project_relationship ADD CONSTRAINT project_relationship_type_id_fkey FOREIGN KEY (type_id) REFERENCES public.cvterm(cvterm_id) ON DELETE RESTRICT; -- -- Name: projectprop projectprop_project_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.projectprop ADD CONSTRAINT projectprop_project_id_fkey FOREIGN KEY (project_id) REFERENCES public.project(project_id) ON DELETE CASCADE; -- -- Name: projectprop projectprop_type_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.projectprop ADD CONSTRAINT projectprop_type_id_fkey FOREIGN KEY (type_id) REFERENCES public.cvterm(cvterm_id) ON DELETE CASCADE; -- -- Name: pub_dbxref pub_dbxref_dbxref_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.pub_dbxref ADD CONSTRAINT pub_dbxref_dbxref_id_fkey FOREIGN KEY (dbxref_id) REFERENCES public.dbxref(dbxref_id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED; -- -- Name: pub_dbxref pub_dbxref_pub_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.pub_dbxref ADD CONSTRAINT pub_dbxref_pub_id_fkey FOREIGN KEY (pub_id) REFERENCES public.pub(pub_id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED; -- -- Name: pub_relationship pub_relationship_object_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.pub_relationship ADD CONSTRAINT pub_relationship_object_id_fkey FOREIGN KEY (object_id) REFERENCES public.pub(pub_id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED; -- -- Name: pub_relationship pub_relationship_subject_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.pub_relationship ADD CONSTRAINT pub_relationship_subject_id_fkey FOREIGN KEY (subject_id) REFERENCES public.pub(pub_id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED; -- -- Name: pub_relationship pub_relationship_type_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.pub_relationship ADD CONSTRAINT pub_relationship_type_id_fkey FOREIGN KEY (type_id) REFERENCES public.cvterm(cvterm_id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED; -- -- Name: pub pub_type_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.pub ADD CONSTRAINT pub_type_id_fkey FOREIGN KEY (type_id) REFERENCES public.cvterm(cvterm_id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED; -- -- Name: pubabstract pubabstract_pub_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.pubabstract ADD CONSTRAINT pubabstract_pub_id_fkey FOREIGN KEY (pub_id) REFERENCES public.pub(pub_id) ON DELETE CASCADE; -- -- Name: pubauthor pubauthor_pub_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.pubauthor ADD CONSTRAINT pubauthor_pub_id_fkey FOREIGN KEY (pub_id) REFERENCES public.pub(pub_id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED; -- -- Name: pubprop pubprop_pub_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.pubprop ADD CONSTRAINT pubprop_pub_id_fkey FOREIGN KEY (pub_id) REFERENCES public.pub(pub_id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED; -- -- Name: pubprop pubprop_type_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.pubprop ADD CONSTRAINT pubprop_type_id_fkey FOREIGN KEY (type_id) REFERENCES public.cvterm(cvterm_id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED; -- -- Name: stock_cvterm stock_cvterm_cvterm_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.stock_cvterm ADD CONSTRAINT stock_cvterm_cvterm_id_fkey FOREIGN KEY (cvterm_id) REFERENCES public.cvterm(cvterm_id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED; -- -- Name: stock_cvterm stock_cvterm_pub_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.stock_cvterm ADD CONSTRAINT stock_cvterm_pub_id_fkey FOREIGN KEY (pub_id) REFERENCES public.pub(pub_id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED; -- -- Name: stock_cvterm stock_cvterm_stock_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.stock_cvterm ADD CONSTRAINT stock_cvterm_stock_id_fkey FOREIGN KEY (stock_id) REFERENCES public.stock(stock_id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED; -- -- Name: stock_cvtermprop stock_cvtermprop_stock_cvterm_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.stock_cvtermprop ADD CONSTRAINT stock_cvtermprop_stock_cvterm_id_fkey FOREIGN KEY (stock_cvterm_id) REFERENCES public.stock_cvterm(stock_cvterm_id) ON DELETE CASCADE; -- -- Name: stock_cvtermprop stock_cvtermprop_type_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.stock_cvtermprop ADD CONSTRAINT stock_cvtermprop_type_id_fkey FOREIGN KEY (type_id) REFERENCES public.cvterm(cvterm_id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED; -- -- Name: stock_dbxref stock_dbxref_dbxref_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.stock_dbxref ADD CONSTRAINT stock_dbxref_dbxref_id_fkey FOREIGN KEY (dbxref_id) REFERENCES public.dbxref(dbxref_id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED; -- -- Name: stock stock_dbxref_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.stock ADD CONSTRAINT stock_dbxref_id_fkey FOREIGN KEY (dbxref_id) REFERENCES public.dbxref(dbxref_id) ON DELETE SET NULL DEFERRABLE INITIALLY DEFERRED; -- -- Name: stock_dbxref stock_dbxref_stock_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.stock_dbxref ADD CONSTRAINT stock_dbxref_stock_id_fkey FOREIGN KEY (stock_id) REFERENCES public.stock(stock_id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED; -- -- Name: stock_dbxrefprop stock_dbxrefprop_stock_dbxref_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.stock_dbxrefprop ADD CONSTRAINT stock_dbxrefprop_stock_dbxref_id_fkey FOREIGN KEY (stock_dbxref_id) REFERENCES public.stock_dbxref(stock_dbxref_id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED; -- -- Name: stock_dbxrefprop stock_dbxrefprop_type_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.stock_dbxrefprop ADD CONSTRAINT stock_dbxrefprop_type_id_fkey FOREIGN KEY (type_id) REFERENCES public.cvterm(cvterm_id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED; -- -- Name: stock_genotype stock_genotype_genotype_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.stock_genotype ADD CONSTRAINT stock_genotype_genotype_id_fkey FOREIGN KEY (genotype_id) REFERENCES public.genotype(genotype_id) ON DELETE CASCADE; -- -- Name: stock_genotype stock_genotype_stock_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.stock_genotype ADD CONSTRAINT stock_genotype_stock_id_fkey FOREIGN KEY (stock_id) REFERENCES public.stock(stock_id) ON DELETE CASCADE; -- -- Name: stock stock_organism_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.stock ADD CONSTRAINT stock_organism_id_fkey FOREIGN KEY (organism_id) REFERENCES public.organism(organism_id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED; -- -- Name: stock_pub stock_pub_pub_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.stock_pub ADD CONSTRAINT stock_pub_pub_id_fkey FOREIGN KEY (pub_id) REFERENCES public.pub(pub_id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED; -- -- Name: stock_pub stock_pub_stock_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.stock_pub ADD CONSTRAINT stock_pub_stock_id_fkey FOREIGN KEY (stock_id) REFERENCES public.stock(stock_id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED; -- -- Name: stock_relationship_cvterm stock_relationship_cvterm_cvterm_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.stock_relationship_cvterm ADD CONSTRAINT stock_relationship_cvterm_cvterm_id_fkey FOREIGN KEY (cvterm_id) REFERENCES public.cvterm(cvterm_id) ON DELETE RESTRICT; -- -- Name: stock_relationship_cvterm stock_relationship_cvterm_pub_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.stock_relationship_cvterm ADD CONSTRAINT stock_relationship_cvterm_pub_id_fkey FOREIGN KEY (pub_id) REFERENCES public.pub(pub_id) ON DELETE RESTRICT; -- -- Name: stock_relationship_cvterm stock_relationship_cvterm_stock_relationship_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.stock_relationship_cvterm ADD CONSTRAINT stock_relationship_cvterm_stock_relationship_id_fkey FOREIGN KEY (stock_relationship_id) REFERENCES public.stock_relationship(stock_relationship_id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED; -- -- Name: stock_relationship stock_relationship_object_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.stock_relationship ADD CONSTRAINT stock_relationship_object_id_fkey FOREIGN KEY (object_id) REFERENCES public.stock(stock_id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED; -- -- Name: stock_relationship_pub stock_relationship_pub_pub_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.stock_relationship_pub ADD CONSTRAINT stock_relationship_pub_pub_id_fkey FOREIGN KEY (pub_id) REFERENCES public.pub(pub_id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED; -- -- Name: stock_relationship_pub stock_relationship_pub_stock_relationship_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.stock_relationship_pub ADD CONSTRAINT stock_relationship_pub_stock_relationship_id_fkey FOREIGN KEY (stock_relationship_id) REFERENCES public.stock_relationship(stock_relationship_id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED; -- -- Name: stock_relationship stock_relationship_subject_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.stock_relationship ADD CONSTRAINT stock_relationship_subject_id_fkey FOREIGN KEY (subject_id) REFERENCES public.stock(stock_id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED; -- -- Name: stock_relationship stock_relationship_type_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.stock_relationship ADD CONSTRAINT stock_relationship_type_id_fkey FOREIGN KEY (type_id) REFERENCES public.cvterm(cvterm_id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED; -- -- Name: stock stock_type_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.stock ADD CONSTRAINT stock_type_id_fkey FOREIGN KEY (type_id) REFERENCES public.cvterm(cvterm_id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED; -- -- Name: stockcollection stockcollection_contact_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.stockcollection ADD CONSTRAINT stockcollection_contact_id_fkey FOREIGN KEY (contact_id) REFERENCES public.contact(contact_id) ON DELETE SET NULL DEFERRABLE INITIALLY DEFERRED; -- -- Name: stockcollection_stock stockcollection_stock_stock_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.stockcollection_stock ADD CONSTRAINT stockcollection_stock_stock_id_fkey FOREIGN KEY (stock_id) REFERENCES public.stock(stock_id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED; -- -- Name: stockcollection_stock stockcollection_stock_stockcollection_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.stockcollection_stock ADD CONSTRAINT stockcollection_stock_stockcollection_id_fkey FOREIGN KEY (stockcollection_id) REFERENCES public.stockcollection(stockcollection_id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED; -- -- Name: stockcollection stockcollection_type_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.stockcollection ADD CONSTRAINT stockcollection_type_id_fkey FOREIGN KEY (type_id) REFERENCES public.cvterm(cvterm_id) ON DELETE CASCADE; -- -- Name: stockcollectionprop stockcollectionprop_stockcollection_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.stockcollectionprop ADD CONSTRAINT stockcollectionprop_stockcollection_id_fkey FOREIGN KEY (stockcollection_id) REFERENCES public.stockcollection(stockcollection_id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED; -- -- Name: stockcollectionprop stockcollectionprop_type_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.stockcollectionprop ADD CONSTRAINT stockcollectionprop_type_id_fkey FOREIGN KEY (type_id) REFERENCES public.cvterm(cvterm_id); -- -- Name: stockprop_pub stockprop_pub_pub_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.stockprop_pub ADD CONSTRAINT stockprop_pub_pub_id_fkey FOREIGN KEY (pub_id) REFERENCES public.pub(pub_id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED; -- -- Name: stockprop_pub stockprop_pub_stockprop_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.stockprop_pub ADD CONSTRAINT stockprop_pub_stockprop_id_fkey FOREIGN KEY (stockprop_id) REFERENCES public.stockprop(stockprop_id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED; -- -- Name: stockprop stockprop_stock_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.stockprop ADD CONSTRAINT stockprop_stock_id_fkey FOREIGN KEY (stock_id) REFERENCES public.stock(stock_id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED; -- -- Name: stockprop stockprop_type_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.stockprop ADD CONSTRAINT stockprop_type_id_fkey FOREIGN KEY (type_id) REFERENCES public.cvterm(cvterm_id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED; -- -- Name: synonym synonym_type_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.synonym ADD CONSTRAINT synonym_type_id_fkey FOREIGN KEY (type_id) REFERENCES public.cvterm(cvterm_id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED; -- -- Name: tmp_cds_handler_relationship tmp_cds_handler_relationship_cds_row_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.tmp_cds_handler_relationship ADD CONSTRAINT tmp_cds_handler_relationship_cds_row_id_fkey FOREIGN KEY (cds_row_id) REFERENCES public.tmp_cds_handler(cds_row_id) ON DELETE CASCADE; -- -- Name: unigene_dbxref unigene_dbxref_dbxref_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.unigene_dbxref ADD CONSTRAINT unigene_dbxref_dbxref_id_fkey FOREIGN KEY (dbxref_id) REFERENCES public.dbxref(dbxref_id); -- -- Name: unigene_dbxref unigene_dbxref_unigene_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.unigene_dbxref ADD CONSTRAINT unigene_dbxref_unigene_id_fkey FOREIGN KEY (unigene_id) REFERENCES sgn.unigene(unigene_id); -- -- Name: unigene_relations unigene_relations_superceded_by_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.unigene_relations ADD CONSTRAINT unigene_relations_superceded_by_fkey FOREIGN KEY (superceded_by) REFERENCES sgn.unigene(unigene_id); -- -- Name: unigene_relations unigene_relations_unigene_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.unigene_relations ADD CONSTRAINT unigene_relations_unigene_id_fkey FOREIGN KEY (unigene_id) REFERENCES sgn.unigene(unigene_id); -- -- Name: unigene_signalp unigene_signalp_cds_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.unigene_signalp ADD CONSTRAINT unigene_signalp_cds_id_fkey FOREIGN KEY (cds_id) REFERENCES sgn.cds(cds_id); -- -- Name: unigene_signalp unigene_signalp_unigene_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- ALTER TABLE ONLY public.unigene_signalp ADD CONSTRAINT unigene_signalp_unigene_id_fkey FOREIGN KEY (unigene_id) REFERENCES sgn.unigene(unigene_id); -- -- Name: accession accession_chado_organism_id_fkey; Type: FK CONSTRAINT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.accession ADD CONSTRAINT accession_chado_organism_id_fkey FOREIGN KEY (chado_organism_id) REFERENCES public.organism(organism_id); -- -- Name: pcr_exp_accession accession_id_fk; Type: FK CONSTRAINT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.pcr_exp_accession ADD CONSTRAINT accession_id_fk FOREIGN KEY (accession_id) REFERENCES sgn.accession(accession_id) MATCH FULL; -- -- Name: accession_names accession_id_fk; Type: FK CONSTRAINT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.accession_names ADD CONSTRAINT accession_id_fk FOREIGN KEY (accession_id) REFERENCES sgn.accession(accession_id); -- -- Name: accession accession_name_id_fk; Type: FK CONSTRAINT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.accession ADD CONSTRAINT accession_name_id_fk FOREIGN KEY (accession_name_id) REFERENCES sgn.accession_names(accession_name_id); -- -- Name: blast_annotations apply_id_fkey; Type: FK CONSTRAINT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.blast_annotations ADD CONSTRAINT apply_id_fkey FOREIGN KEY (apply_id) REFERENCES sgn.unigene(unigene_id); -- -- Name: manual_annotations author_id_fk; Type: FK CONSTRAINT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.manual_annotations ADD CONSTRAINT author_id_fk FOREIGN KEY (author_id) REFERENCES sgn_people.sp_person(sp_person_id); -- -- Name: blast_db_blast_db_group blast_db_blast_db_group_blast_db_group_id_fkey; Type: FK CONSTRAINT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.blast_db_blast_db_group ADD CONSTRAINT blast_db_blast_db_group_blast_db_group_id_fkey FOREIGN KEY (blast_db_group_id) REFERENCES sgn.blast_db_group(blast_db_group_id); -- -- Name: blast_db_blast_db_group blast_db_blast_db_group_blast_db_id_fkey; Type: FK CONSTRAINT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.blast_db_blast_db_group ADD CONSTRAINT blast_db_blast_db_group_blast_db_id_fkey FOREIGN KEY (blast_db_id) REFERENCES sgn.blast_db(blast_db_id); -- -- Name: blast_db blast_db_blast_db_group_id_fkey; Type: FK CONSTRAINT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.blast_db ADD CONSTRAINT blast_db_blast_db_group_id_fkey FOREIGN KEY (blast_db_group_id) REFERENCES sgn.blast_db_group(blast_db_group_id); -- -- Name: blast_db_organism blast_db_organism_blast_db_id_fkey; Type: FK CONSTRAINT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.blast_db_organism ADD CONSTRAINT blast_db_organism_blast_db_id_fkey FOREIGN KEY (blast_db_id) REFERENCES sgn.blast_db(blast_db_id); -- -- Name: blast_db_organism blast_db_organism_organism_id_fkey; Type: FK CONSTRAINT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.blast_db_organism ADD CONSTRAINT blast_db_organism_organism_id_fkey FOREIGN KEY (organism_id) REFERENCES public.organism(organism_id); -- -- Name: blast_hits blast_hits_blast_annotation_id_fkey; Type: FK CONSTRAINT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.blast_hits ADD CONSTRAINT blast_hits_blast_annotation_id_fkey FOREIGN KEY (blast_annotation_id) REFERENCES sgn.blast_annotations(blast_annotation_id) ON DELETE CASCADE; -- -- Name: cds cds_protein_feature_id_fkey; Type: FK CONSTRAINT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.cds ADD CONSTRAINT cds_protein_feature_id_fkey FOREIGN KEY (protein_feature_id) REFERENCES public.feature(feature_id); -- -- Name: cds cds_unigene_id_fkey; Type: FK CONSTRAINT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.cds ADD CONSTRAINT cds_unigene_id_fkey FOREIGN KEY (unigene_id) REFERENCES sgn.unigene(unigene_id) ON DELETE CASCADE; -- -- Name: chadoprop chadoprop_type_id_fkey; Type: FK CONSTRAINT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.chadoprop ADD CONSTRAINT chadoprop_type_id_fkey FOREIGN KEY (type_id) REFERENCES public.cvterm(cvterm_id) DEFERRABLE INITIALLY DEFERRED; -- -- Name: seqread clone_id_fk; Type: FK CONSTRAINT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.seqread ADD CONSTRAINT clone_id_fk FOREIGN KEY (clone_id) REFERENCES sgn.clone(clone_id); -- -- Name: ests_mapped_by_clone clone_id_fk; Type: FK CONSTRAINT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.ests_mapped_by_clone ADD CONSTRAINT clone_id_fk FOREIGN KEY (clone_id) REFERENCES genomic.clone(clone_id); -- -- Name: organism common_name_id_fk; Type: FK CONSTRAINT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.organism ADD CONSTRAINT common_name_id_fk FOREIGN KEY (common_name_id) REFERENCES sgn.common_name(common_name_id) MATCH FULL; -- -- Name: deprecated_marker_locations confidence_fk; Type: FK CONSTRAINT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.deprecated_marker_locations ADD CONSTRAINT confidence_fk FOREIGN KEY (confidence) REFERENCES sgn.deprecated_marker_confidences(legacy_conf_id); -- -- Name: domain domain_dbxref_id_fkey; Type: FK CONSTRAINT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.domain ADD CONSTRAINT domain_dbxref_id_fkey FOREIGN KEY (dbxref_id) REFERENCES public.dbxref(dbxref_id); -- -- Name: domain_match domain_match_cds_id_fkey; Type: FK CONSTRAINT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.domain_match ADD CONSTRAINT domain_match_cds_id_fkey FOREIGN KEY (cds_id) REFERENCES sgn.cds(cds_id) ON DELETE CASCADE; -- -- Name: domain_match domain_match_domain_id_fkey; Type: FK CONSTRAINT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.domain_match ADD CONSTRAINT domain_match_domain_id_fkey FOREIGN KEY (domain_id) REFERENCES sgn.domain(domain_id) ON DELETE CASCADE; -- -- Name: domain_match domain_match_metadata_id_fkey; Type: FK CONSTRAINT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.domain_match ADD CONSTRAINT domain_match_metadata_id_fkey FOREIGN KEY (metadata_id) REFERENCES sgn.metadata(metadata_id); -- -- Name: domain domain_metadata_id_fkey; Type: FK CONSTRAINT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.domain ADD CONSTRAINT domain_metadata_id_fkey FOREIGN KEY (metadata_id) REFERENCES sgn.metadata(metadata_id); -- -- Name: pcr_product enzyme_id_fk; Type: FK CONSTRAINT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.pcr_product ADD CONSTRAINT enzyme_id_fk FOREIGN KEY (enzyme_id) REFERENCES sgn.enzymes(enzyme_id) MATCH FULL; -- -- Name: est_dbxref est_dbxref_dbxref_id_fkey; Type: FK CONSTRAINT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.est_dbxref ADD CONSTRAINT est_dbxref_dbxref_id_fkey FOREIGN KEY (dbxref_id) REFERENCES public.dbxref(dbxref_id); -- -- Name: est_dbxref est_dbxref_est_id_fkey; Type: FK CONSTRAINT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.est_dbxref ADD CONSTRAINT est_dbxref_est_id_fkey FOREIGN KEY (est_id) REFERENCES sgn.est(est_id); -- -- Name: qc_report est_id_fk; Type: FK CONSTRAINT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.qc_report ADD CONSTRAINT est_id_fk FOREIGN KEY (est_id) REFERENCES sgn.est(est_id) MATCH FULL; -- -- Name: unigene_member est_id_fkey; Type: FK CONSTRAINT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.unigene_member ADD CONSTRAINT est_id_fkey FOREIGN KEY (est_id) REFERENCES sgn.est(est_id); -- -- Name: pcr_experiment experiment_type_id_fk; Type: FK CONSTRAINT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.pcr_experiment ADD CONSTRAINT experiment_type_id_fk FOREIGN KEY (experiment_type_id) REFERENCES sgn.experiment_type(experiment_type_id) MATCH FULL; -- -- Name: seqread facility_id_fk; Type: FK CONSTRAINT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.seqread ADD CONSTRAINT facility_id_fk FOREIGN KEY (facility_id) REFERENCES sgn.facility(facility_id); -- -- Name: family family_family_build_id_fkey; Type: FK CONSTRAINT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.family ADD CONSTRAINT family_family_build_id_fkey FOREIGN KEY (family_build_id) REFERENCES sgn.family_build(family_build_id) ON DELETE CASCADE; -- -- Name: family_member family_member_family_id_fkey; Type: FK CONSTRAINT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.family_member ADD CONSTRAINT family_member_family_id_fkey FOREIGN KEY (family_id) REFERENCES sgn.family(family_id) ON DELETE CASCADE; -- -- Name: family_tree family_tree_family_id_fkey; Type: FK CONSTRAINT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.family_tree ADD CONSTRAINT family_tree_family_id_fkey FOREIGN KEY (family_id) REFERENCES sgn.family(family_id); -- -- Name: fish_result fish_experimenter_id_fkey; Type: FK CONSTRAINT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.fish_result ADD CONSTRAINT fish_experimenter_id_fkey FOREIGN KEY (fish_experimenter_id) REFERENCES sgn.fish_experimenter(fish_experimenter_id); -- -- Name: fish_result fish_result_attribution_id_fkey; Type: FK CONSTRAINT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.fish_result ADD CONSTRAINT fish_result_attribution_id_fkey FOREIGN KEY (attribution_id) REFERENCES metadata.attribution(attribution_id); -- -- Name: fish_result fish_result_clone_id_fkey; Type: FK CONSTRAINT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.fish_result ADD CONSTRAINT fish_result_clone_id_fkey FOREIGN KEY (clone_id) REFERENCES genomic.clone(clone_id); -- -- Name: fish_result_image fish_result_image_fish_result_id_fkey; Type: FK CONSTRAINT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.fish_result_image ADD CONSTRAINT fish_result_image_fish_result_id_fkey FOREIGN KEY (fish_result_id) REFERENCES sgn.fish_result(fish_result_id) ON DELETE CASCADE; -- -- Name: fish_result_image fish_result_image_image_id_fkey; Type: FK CONSTRAINT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.fish_result_image ADD CONSTRAINT fish_result_image_image_id_fkey FOREIGN KEY (image_id) REFERENCES metadata.md_image(image_id); -- -- Name: facility foriegn; Type: FK CONSTRAINT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.facility ADD CONSTRAINT foriegn FOREIGN KEY (sp_person_id) REFERENCES sgn_people.sp_person(sp_person_id); -- -- Name: submit_user foriegn; Type: FK CONSTRAINT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.submit_user ADD CONSTRAINT foriegn FOREIGN KEY (sp_person_id) REFERENCES sgn_people.sp_person(sp_person_id); -- -- Name: rflp_markers forward_seq_id_fk; Type: FK CONSTRAINT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.rflp_markers ADD CONSTRAINT forward_seq_id_fk FOREIGN KEY (forward_seq_id) REFERENCES sgn.rflp_sequences(seq_id); -- -- Name: interpro_go interpro_go_go_accession_fkey; Type: FK CONSTRAINT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.interpro_go ADD CONSTRAINT interpro_go_go_accession_fkey FOREIGN KEY (go_accession) REFERENCES sgn.go(go_accession) ON DELETE CASCADE; -- -- Name: interpro_go interpro_go_interpro_accession_fkey; Type: FK CONSTRAINT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.interpro_go ADD CONSTRAINT interpro_go_interpro_accession_fkey FOREIGN KEY (interpro_accession) REFERENCES sgn.interpro(interpro_accession) ON DELETE CASCADE; -- -- Name: deprecated_mapdata lg_id_fk; Type: FK CONSTRAINT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.deprecated_mapdata ADD CONSTRAINT lg_id_fk FOREIGN KEY (lg_id) REFERENCES sgn.deprecated_linkage_groups(lg_id) MATCH FULL; -- -- Name: library library_chado_organism_id_fkey; Type: FK CONSTRAINT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.library ADD CONSTRAINT library_chado_organism_id_fkey FOREIGN KEY (chado_organism_id) REFERENCES public.organism(organism_id); -- -- Name: clone library_id_fk; Type: FK CONSTRAINT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.clone ADD CONSTRAINT library_id_fk FOREIGN KEY (library_id) REFERENCES sgn.library(library_id); -- -- Name: library library_sp_person_id_fkey; Type: FK CONSTRAINT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.library ADD CONSTRAINT library_sp_person_id_fkey FOREIGN KEY (sp_person_id) REFERENCES sgn_people.sp_person(sp_person_id); -- -- Name: linkage_group linkage_group_map_version_id_fkey; Type: FK CONSTRAINT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.linkage_group ADD CONSTRAINT linkage_group_map_version_id_fkey FOREIGN KEY (map_version_id) REFERENCES sgn.map_version(map_version_id) ON DELETE CASCADE; -- -- Name: linkage_group linkage_group_north_location_id_fkey; Type: FK CONSTRAINT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.linkage_group ADD CONSTRAINT linkage_group_north_location_id_fkey FOREIGN KEY (north_location_id) REFERENCES sgn.marker_location(location_id); -- -- Name: linkage_group linkage_group_south_location_id_fkey; Type: FK CONSTRAINT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.linkage_group ADD CONSTRAINT linkage_group_south_location_id_fkey FOREIGN KEY (south_location_id) REFERENCES sgn.marker_location(location_id); -- -- Name: deprecated_marker_locations loc_id_fk; Type: FK CONSTRAINT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.deprecated_marker_locations ADD CONSTRAINT loc_id_fk FOREIGN KEY (loc_id) REFERENCES sgn.deprecated_mapdata(loc_id) ON DELETE CASCADE; -- -- Name: map map_ancestor_fkey; Type: FK CONSTRAINT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.map ADD CONSTRAINT map_ancestor_fkey FOREIGN KEY (ancestor) REFERENCES sgn.accession(accession_id); -- -- Name: deprecated_map_cross map_id_fk; Type: FK CONSTRAINT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.deprecated_map_cross ADD CONSTRAINT map_id_fk FOREIGN KEY (map_id) REFERENCES sgn.deprecated_maps(map_id) MATCH FULL; -- -- Name: deprecated_mapdata map_id_fk; Type: FK CONSTRAINT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.deprecated_mapdata ADD CONSTRAINT map_id_fk FOREIGN KEY (map_id) REFERENCES sgn.deprecated_maps(map_id) MATCH FULL; -- -- Name: deprecated_linkage_groups map_id_fk; Type: FK CONSTRAINT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.deprecated_linkage_groups ADD CONSTRAINT map_id_fk FOREIGN KEY (map_id) REFERENCES sgn.deprecated_maps(map_id) MATCH FULL; -- -- Name: pcr_experiment map_id_fk; Type: FK CONSTRAINT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.pcr_experiment ADD CONSTRAINT map_id_fk FOREIGN KEY (map_id) REFERENCES sgn.map(map_id) MATCH FULL; -- -- Name: fish_result map_id_fkey; Type: FK CONSTRAINT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.fish_result ADD CONSTRAINT map_id_fkey FOREIGN KEY (map_id) REFERENCES sgn.deprecated_maps(map_id); -- -- Name: map map_parent1_stock_id_fkey; Type: FK CONSTRAINT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.map ADD CONSTRAINT map_parent1_stock_id_fkey FOREIGN KEY (parent1_stock_id) REFERENCES public.stock(stock_id); -- -- Name: map map_parent2_stock_id_fkey; Type: FK CONSTRAINT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.map ADD CONSTRAINT map_parent2_stock_id_fkey FOREIGN KEY (parent2_stock_id) REFERENCES public.stock(stock_id); -- -- Name: map map_parent_1_fkey; Type: FK CONSTRAINT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.map ADD CONSTRAINT map_parent_1_fkey FOREIGN KEY (parent_1) REFERENCES sgn.accession(accession_id); -- -- Name: map map_parent_2_fkey; Type: FK CONSTRAINT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.map ADD CONSTRAINT map_parent_2_fkey FOREIGN KEY (parent_2) REFERENCES sgn.accession(accession_id); -- -- Name: map map_population_id_fkey; Type: FK CONSTRAINT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.map ADD CONSTRAINT map_population_id_fkey FOREIGN KEY (population_id) REFERENCES phenome.population(population_id) ON DELETE CASCADE; -- -- Name: map map_population_stock_id_fkey; Type: FK CONSTRAINT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.map ADD CONSTRAINT map_population_stock_id_fkey FOREIGN KEY (population_stock_id) REFERENCES public.stock(stock_id); -- -- Name: map_version map_version_default_threshold_fkey; Type: FK CONSTRAINT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.map_version ADD CONSTRAINT map_version_default_threshold_fkey FOREIGN KEY (default_threshold) REFERENCES sgn.deprecated_marker_confidences(confidence_id); -- -- Name: map_version map_version_map_id_fkey; Type: FK CONSTRAINT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.map_version ADD CONSTRAINT map_version_map_id_fkey FOREIGN KEY (map_id) REFERENCES sgn.map(map_id) ON DELETE CASCADE; -- -- Name: map_version map_version_metadata_id_fkey; Type: FK CONSTRAINT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.map_version ADD CONSTRAINT map_version_metadata_id_fkey FOREIGN KEY (metadata_id) REFERENCES metadata.md_metadata(metadata_id) ON DELETE CASCADE; -- -- Name: marker_alias marker_alias_marker_id_fkey; Type: FK CONSTRAINT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.marker_alias ADD CONSTRAINT marker_alias_marker_id_fkey FOREIGN KEY (marker_id) REFERENCES sgn.marker(marker_id); -- -- Name: marker_collectible marker_collectible_marker_id_fkey; Type: FK CONSTRAINT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.marker_collectible ADD CONSTRAINT marker_collectible_marker_id_fkey FOREIGN KEY (marker_id) REFERENCES sgn.marker(marker_id); -- -- Name: marker_collectible marker_collectible_mc_id_fkey; Type: FK CONSTRAINT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.marker_collectible ADD CONSTRAINT marker_collectible_mc_id_fkey FOREIGN KEY (mc_id) REFERENCES sgn.marker_collection(mc_id); -- -- Name: marker_derived_from marker_derived_from_derived_from_source_id_fkey; Type: FK CONSTRAINT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.marker_derived_from ADD CONSTRAINT marker_derived_from_derived_from_source_id_fkey FOREIGN KEY (derived_from_source_id) REFERENCES sgn.derived_from_source(derived_from_source_id); -- -- Name: marker_derived_from marker_derived_from_marker_id_fkey; Type: FK CONSTRAINT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.marker_derived_from ADD CONSTRAINT marker_derived_from_marker_id_fkey FOREIGN KEY (marker_id) REFERENCES sgn.deprecated_markers(marker_id); -- -- Name: marker_experiment marker_experiment_location_id_fkey; Type: FK CONSTRAINT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.marker_experiment ADD CONSTRAINT marker_experiment_location_id_fkey FOREIGN KEY (location_id) REFERENCES sgn.marker_location(location_id) ON DELETE CASCADE; -- -- Name: marker_experiment marker_experiment_marker_id_fkey; Type: FK CONSTRAINT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.marker_experiment ADD CONSTRAINT marker_experiment_marker_id_fkey FOREIGN KEY (marker_id) REFERENCES sgn.marker(marker_id); -- -- Name: marker_experiment marker_experiment_pcr_experiment_id_fkey; Type: FK CONSTRAINT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.marker_experiment ADD CONSTRAINT marker_experiment_pcr_experiment_id_fkey FOREIGN KEY (pcr_experiment_id) REFERENCES sgn.pcr_experiment(pcr_experiment_id); -- -- Name: marker_experiment marker_experiment_rflp_experiment_id_fkey; Type: FK CONSTRAINT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.marker_experiment ADD CONSTRAINT marker_experiment_rflp_experiment_id_fkey FOREIGN KEY (rflp_experiment_id) REFERENCES sgn.rflp_markers(rflp_id); -- -- Name: deprecated_marker_locations marker_id_fk; Type: FK CONSTRAINT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.deprecated_marker_locations ADD CONSTRAINT marker_id_fk FOREIGN KEY (marker_id) REFERENCES sgn.deprecated_markers(marker_id) MATCH FULL; -- -- Name: cos_markers marker_id_fk; Type: FK CONSTRAINT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.cos_markers ADD CONSTRAINT marker_id_fk FOREIGN KEY (marker_id) REFERENCES sgn.marker(marker_id); -- -- Name: cosii_ortholog marker_id_fk; Type: FK CONSTRAINT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.cosii_ortholog ADD CONSTRAINT marker_id_fk FOREIGN KEY (marker_id) REFERENCES sgn.marker(marker_id); -- -- Name: ests_mapped_by_clone marker_id_fk; Type: FK CONSTRAINT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.ests_mapped_by_clone ADD CONSTRAINT marker_id_fk FOREIGN KEY (marker_id) REFERENCES sgn.marker(marker_id); -- -- Name: p_markers marker_id_fk; Type: FK CONSTRAINT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.p_markers ADD CONSTRAINT marker_id_fk FOREIGN KEY (marker_id) REFERENCES sgn.marker(marker_id); -- -- Name: primer_unigene_match marker_id_fk; Type: FK CONSTRAINT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.primer_unigene_match ADD CONSTRAINT marker_id_fk FOREIGN KEY (marker_id) REFERENCES sgn.marker(marker_id); -- -- Name: rflp_markers marker_id_fk; Type: FK CONSTRAINT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.rflp_markers ADD CONSTRAINT marker_id_fk FOREIGN KEY (marker_id) REFERENCES sgn.marker(marker_id); -- -- Name: ssr marker_id_fk; Type: FK CONSTRAINT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.ssr ADD CONSTRAINT marker_id_fk FOREIGN KEY (marker_id) REFERENCES sgn.marker(marker_id); -- -- Name: ssr_repeats marker_id_fk; Type: FK CONSTRAINT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.ssr_repeats ADD CONSTRAINT marker_id_fk FOREIGN KEY (marker_id) REFERENCES sgn.marker(marker_id); -- -- Name: tm_markers marker_id_fk; Type: FK CONSTRAINT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.tm_markers ADD CONSTRAINT marker_id_fk FOREIGN KEY (marker_id) REFERENCES sgn.marker(marker_id); -- -- Name: pcr_experiment marker_id_fk; Type: FK CONSTRAINT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.pcr_experiment ADD CONSTRAINT marker_id_fk FOREIGN KEY (marker_id) REFERENCES sgn.marker(marker_id) MATCH FULL; -- -- Name: marker_location marker_location_confidence_id_fkey; Type: FK CONSTRAINT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.marker_location ADD CONSTRAINT marker_location_confidence_id_fkey FOREIGN KEY (confidence_id) REFERENCES sgn.marker_confidence(confidence_id); -- -- Name: marker_location marker_location_lg_id_fkey; Type: FK CONSTRAINT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.marker_location ADD CONSTRAINT marker_location_lg_id_fkey FOREIGN KEY (lg_id) REFERENCES sgn.linkage_group(lg_id) ON DELETE CASCADE; -- -- Name: marker_location marker_location_map_version_id_fkey; Type: FK CONSTRAINT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.marker_location ADD CONSTRAINT marker_location_map_version_id_fkey FOREIGN KEY (map_version_id) REFERENCES sgn.map_version(map_version_id) ON DELETE CASCADE; -- -- Name: deprecated_markers marker_type_fk; Type: FK CONSTRAINT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.deprecated_markers ADD CONSTRAINT marker_type_fk FOREIGN KEY (marker_type) REFERENCES sgn.deprecated_marker_types(marker_type_id) MATCH FULL; -- -- Name: metadata metadata_create_person_id_fkey; Type: FK CONSTRAINT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.metadata ADD CONSTRAINT metadata_create_person_id_fkey FOREIGN KEY (create_person_id) REFERENCES sgn_people.sp_person(sp_person_id); -- -- Name: metadata metadata_modified_person_id_fkey; Type: FK CONSTRAINT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.metadata ADD CONSTRAINT metadata_modified_person_id_fkey FOREIGN KEY (modified_person_id) REFERENCES sgn_people.sp_person(sp_person_id); -- -- Name: organism organism_chado_organism_id_fkey; Type: FK CONSTRAINT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.organism ADD CONSTRAINT organism_chado_organism_id_fkey FOREIGN KEY (chado_organism_id) REFERENCES public.organism(organism_id); -- -- Name: organism organism_family_tax_fkey; Type: FK CONSTRAINT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.organism ADD CONSTRAINT organism_family_tax_fkey FOREIGN KEY (family_tax) REFERENCES sgn.taxonomy(tax_id); -- -- Name: organism organism_genus_tax_fkey; Type: FK CONSTRAINT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.organism ADD CONSTRAINT organism_genus_tax_fkey FOREIGN KEY (genus_tax) REFERENCES sgn.taxonomy(tax_id); -- -- Name: accession organism_id_fk; Type: FK CONSTRAINT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.accession ADD CONSTRAINT organism_id_fk FOREIGN KEY (organism_id) REFERENCES sgn.organism(organism_id) MATCH FULL; -- -- Name: deprecated_map_cross organism_id_fk; Type: FK CONSTRAINT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.deprecated_map_cross ADD CONSTRAINT organism_id_fk FOREIGN KEY (organism_id) REFERENCES sgn.organism(organism_id) MATCH FULL; -- -- Name: organism organism_order_tax_fkey; Type: FK CONSTRAINT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.organism ADD CONSTRAINT organism_order_tax_fkey FOREIGN KEY (order_tax) REFERENCES sgn.taxonomy(tax_id); -- -- Name: organism organism_subfamily_tax_fkey; Type: FK CONSTRAINT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.organism ADD CONSTRAINT organism_subfamily_tax_fkey FOREIGN KEY (subfamily_tax) REFERENCES sgn.taxonomy(tax_id); -- -- Name: organismgroup_member organismgroup_member_organism_id_fkey; Type: FK CONSTRAINT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.organismgroup_member ADD CONSTRAINT organismgroup_member_organism_id_fkey FOREIGN KEY (organism_id) REFERENCES public.organism(organism_id); -- -- Name: organismgroup_member organismgroup_member_organismgroup_id_fkey; Type: FK CONSTRAINT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.organismgroup_member ADD CONSTRAINT organismgroup_member_organismgroup_id_fkey FOREIGN KEY (organismgroup_id) REFERENCES sgn.organismgroup(organismgroup_id); -- -- Name: common_nameprop organismprop_common_name_id_fkey; Type: FK CONSTRAINT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.common_nameprop ADD CONSTRAINT organismprop_common_name_id_fkey FOREIGN KEY (common_name_id) REFERENCES sgn.common_name(common_name_id); -- -- Name: common_nameprop organismprop_type_id_fkey; Type: FK CONSTRAINT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.common_nameprop ADD CONSTRAINT organismprop_type_id_fkey FOREIGN KEY (type_id) REFERENCES public.cvterm(cvterm_id); -- -- Name: pcr_product pcr_exp_accession_id_fk; Type: FK CONSTRAINT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.pcr_product ADD CONSTRAINT pcr_exp_accession_id_fk FOREIGN KEY (pcr_exp_accession_id) REFERENCES sgn.pcr_exp_accession(pcr_exp_accession_id) ON DELETE CASCADE; -- -- Name: pcr_exp_accession pcr_exp_accession_stock_id_fkey; Type: FK CONSTRAINT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.pcr_exp_accession ADD CONSTRAINT pcr_exp_accession_stock_id_fkey FOREIGN KEY (stock_id) REFERENCES public.stock(stock_id); -- -- Name: pcr_exp_accession pcr_experiment_id_fk; Type: FK CONSTRAINT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.pcr_exp_accession ADD CONSTRAINT pcr_experiment_id_fk FOREIGN KEY (pcr_experiment_id) REFERENCES sgn.pcr_experiment(pcr_experiment_id) ON DELETE CASCADE; -- -- Name: pcr_experiment_sequence pcr_experiment_sequence_pcr_experiment_id_fkey; Type: FK CONSTRAINT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.pcr_experiment_sequence ADD CONSTRAINT pcr_experiment_sequence_pcr_experiment_id_fkey FOREIGN KEY (pcr_experiment_id) REFERENCES sgn.pcr_experiment(pcr_experiment_id) ON DELETE CASCADE; -- -- Name: pcr_experiment_sequence pcr_experiment_sequence_sequence_id_fkey; Type: FK CONSTRAINT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.pcr_experiment_sequence ADD CONSTRAINT pcr_experiment_sequence_sequence_id_fkey FOREIGN KEY (sequence_id) REFERENCES sgn.sequence(sequence_id) ON DELETE CASCADE; -- -- Name: pcr_experiment_sequence pcr_experiment_sequence_type_id_fkey; Type: FK CONSTRAINT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.pcr_experiment_sequence ADD CONSTRAINT pcr_experiment_sequence_type_id_fkey FOREIGN KEY (type_id) REFERENCES public.cvterm(cvterm_id); -- -- Name: pcr_experiment pcr_experiment_stock_id_fkey; Type: FK CONSTRAINT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.pcr_experiment ADD CONSTRAINT pcr_experiment_stock_id_fkey FOREIGN KEY (stock_id) REFERENCES public.stock(stock_id); -- -- Name: pcr_experiment primer_id_fwd_fk; Type: FK CONSTRAINT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.pcr_experiment ADD CONSTRAINT primer_id_fwd_fk FOREIGN KEY (primer_id_fwd) REFERENCES sgn.sequence(sequence_id) MATCH FULL; -- -- Name: pcr_experiment primer_id_rev_fk; Type: FK CONSTRAINT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.pcr_experiment ADD CONSTRAINT primer_id_rev_fk FOREIGN KEY (primer_id_rev) REFERENCES sgn.sequence(sequence_id) MATCH FULL; -- -- Name: primer_unigene_match primer_unigene_match_unigene_id_fkey; Type: FK CONSTRAINT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.primer_unigene_match ADD CONSTRAINT primer_unigene_match_unigene_id_fkey FOREIGN KEY (unigene_id) REFERENCES sgn.unigene(unigene_id); -- -- Name: est read_id_fkey; Type: FK CONSTRAINT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.est ADD CONSTRAINT read_id_fkey FOREIGN KEY (read_id) REFERENCES sgn.seqread(read_id); -- -- Name: rflp_markers reverse_seq_id_fk; Type: FK CONSTRAINT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.rflp_markers ADD CONSTRAINT reverse_seq_id_fk FOREIGN KEY (reverse_seq_id) REFERENCES sgn.rflp_sequences(seq_id); -- -- Name: rflp_unigene_associations rflp_seq_id_fk; Type: FK CONSTRAINT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.rflp_unigene_associations ADD CONSTRAINT rflp_seq_id_fk FOREIGN KEY (rflp_seq_id) REFERENCES sgn.rflp_sequences(seq_id); -- -- Name: snp_file snp_file_file_id_fkey; Type: FK CONSTRAINT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.snp_file ADD CONSTRAINT snp_file_file_id_fkey FOREIGN KEY (file_id) REFERENCES metadata.md_files(file_id); -- -- Name: snp_file snp_file_snp_id_fkey; Type: FK CONSTRAINT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.snp_file ADD CONSTRAINT snp_file_snp_id_fkey FOREIGN KEY (snp_id) REFERENCES sgn.snp(snp_id); -- -- Name: snp snp_marker_id_fkey; Type: FK CONSTRAINT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.snp ADD CONSTRAINT snp_marker_id_fkey FOREIGN KEY (marker_id) REFERENCES sgn.marker(marker_id); -- -- Name: snp snp_metadata_id_fkey; Type: FK CONSTRAINT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.snp ADD CONSTRAINT snp_metadata_id_fkey FOREIGN KEY (metadata_id) REFERENCES metadata.md_metadata(metadata_id); -- -- Name: snp snp_reference_stock_id_fkey; Type: FK CONSTRAINT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.snp ADD CONSTRAINT snp_reference_stock_id_fkey FOREIGN KEY (reference_stock_id) REFERENCES public.stock(stock_id); -- -- Name: snp snp_sequence_left_id_fkey; Type: FK CONSTRAINT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.snp ADD CONSTRAINT snp_sequence_left_id_fkey FOREIGN KEY (sequence_left_id) REFERENCES sgn.sequence(sequence_id); -- -- Name: snp snp_sequence_right_id_fkey; Type: FK CONSTRAINT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.snp ADD CONSTRAINT snp_sequence_right_id_fkey FOREIGN KEY (sequence_right_id) REFERENCES sgn.sequence(sequence_id); -- -- Name: snp snp_stock_id_fkey; Type: FK CONSTRAINT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.snp ADD CONSTRAINT snp_stock_id_fkey FOREIGN KEY (stock_id) REFERENCES public.stock(stock_id); -- -- Name: snpprop snpprop_snp_id_fkey; Type: FK CONSTRAINT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.snpprop ADD CONSTRAINT snpprop_snp_id_fkey FOREIGN KEY (snp_id) REFERENCES sgn.snp(snp_id); -- -- Name: snpprop snpprop_type_id_fkey; Type: FK CONSTRAINT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.snpprop ADD CONSTRAINT snpprop_type_id_fkey FOREIGN KEY (type_id) REFERENCES public.cvterm(cvterm_id); -- -- Name: ssr_primer_unigene_matches ssr_id_fk; Type: FK CONSTRAINT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.ssr_primer_unigene_matches ADD CONSTRAINT ssr_id_fk FOREIGN KEY (ssr_id) REFERENCES sgn.ssr(ssr_id); -- -- Name: ssr_repeats ssr_id_fk; Type: FK CONSTRAINT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.ssr_repeats ADD CONSTRAINT ssr_id_fk FOREIGN KEY (ssr_id) REFERENCES sgn.ssr(ssr_id); -- -- Name: temp_map_correspondence temp_map_correspondence_map_version_id_fkey; Type: FK CONSTRAINT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.temp_map_correspondence ADD CONSTRAINT temp_map_correspondence_map_version_id_fkey FOREIGN KEY (map_version_id) REFERENCES sgn.map_version(map_version_id); -- -- Name: temp_map_correspondence temp_map_correspondence_old_map_id_fkey; Type: FK CONSTRAINT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.temp_map_correspondence ADD CONSTRAINT temp_map_correspondence_old_map_id_fkey FOREIGN KEY (old_map_id) REFERENCES sgn.deprecated_maps(map_id); -- -- Name: temp_marker_correspondence temp_marker_correspondence_old_marker_id_fkey; Type: FK CONSTRAINT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.temp_marker_correspondence ADD CONSTRAINT temp_marker_correspondence_old_marker_id_fkey FOREIGN KEY (old_marker_id) REFERENCES sgn.deprecated_markers(marker_id); -- -- Name: tm_markers tm_id_fk; Type: FK CONSTRAINT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.tm_markers ADD CONSTRAINT tm_id_fk FOREIGN KEY (tm_id) REFERENCES sgn.tm_markers(tm_id); -- -- Name: library type_fkey; Type: FK CONSTRAINT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.library ADD CONSTRAINT type_fkey FOREIGN KEY (type) REFERENCES sgn.types(type_id); -- -- Name: unigene_build unigene_build_blast_db_id_fkey; Type: FK CONSTRAINT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.unigene_build ADD CONSTRAINT unigene_build_blast_db_id_fkey FOREIGN KEY (blast_db_id) REFERENCES sgn.blast_db(blast_db_id); -- -- Name: unigene_build unigene_build_latest_build_id_fkey; Type: FK CONSTRAINT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.unigene_build ADD CONSTRAINT unigene_build_latest_build_id_fkey FOREIGN KEY (latest_build_id) REFERENCES sgn.unigene_build(unigene_build_id); -- -- Name: unigene_build unigene_build_next_build_id_fkey; Type: FK CONSTRAINT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.unigene_build ADD CONSTRAINT unigene_build_next_build_id_fkey FOREIGN KEY (next_build_id) REFERENCES sgn.unigene_build(unigene_build_id); -- -- Name: unigene_build unigene_build_organism_group_id_fkey; Type: FK CONSTRAINT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.unigene_build ADD CONSTRAINT unigene_build_organism_group_id_fkey FOREIGN KEY (organism_group_id) REFERENCES sgn.groups(group_id); -- -- Name: unigene_build unigene_build_superseding_build_id_fkey; Type: FK CONSTRAINT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.unigene_build ADD CONSTRAINT unigene_build_superseding_build_id_fkey FOREIGN KEY (superseding_build_id) REFERENCES sgn.unigene_build(unigene_build_id); -- -- Name: rflp_unigene_associations unigene_id_fk; Type: FK CONSTRAINT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.rflp_unigene_associations ADD CONSTRAINT unigene_id_fk FOREIGN KEY (unigene_id) REFERENCES sgn.unigene(unigene_id); -- -- Name: ssr_primer_unigene_matches unigene_id_fk; Type: FK CONSTRAINT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.ssr_primer_unigene_matches ADD CONSTRAINT unigene_id_fk FOREIGN KEY (unigene_id) REFERENCES sgn.unigene(unigene_id); -- -- Name: unigene_member unigene_member_unigene_id_fkey; Type: FK CONSTRAINT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.unigene_member ADD CONSTRAINT unigene_member_unigene_id_fkey FOREIGN KEY (unigene_id) REFERENCES sgn.unigene(unigene_id); -- -- Name: unigene unigene_unigene_build_id_fkey; Type: FK CONSTRAINT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.unigene ADD CONSTRAINT unigene_unigene_build_id_fkey FOREIGN KEY (unigene_build_id) REFERENCES sgn.unigene_build(unigene_build_id); -- -- Name: unigene unigene_unigene_consensi_id_fkey; Type: FK CONSTRAINT; Schema: sgn; Owner: postgres -- ALTER TABLE ONLY sgn.unigene ADD CONSTRAINT unigene_unigene_consensi_id_fkey FOREIGN KEY (consensi_id) REFERENCES sgn.unigene_consensi(consensi_id); -- -- Name: clone_il_mapping_bin_log clone_il_mapping_bin_log_clone_id_fkey; Type: FK CONSTRAINT; Schema: sgn_people; Owner: postgres -- ALTER TABLE ONLY sgn_people.clone_il_mapping_bin_log ADD CONSTRAINT clone_il_mapping_bin_log_clone_id_fkey FOREIGN KEY (clone_id) REFERENCES genomic.clone(clone_id); -- -- Name: clone_il_mapping_bin_log clone_il_mapping_bin_log_genotype_region_id_fkey; Type: FK CONSTRAINT; Schema: sgn_people; Owner: postgres -- ALTER TABLE ONLY sgn_people.clone_il_mapping_bin_log ADD CONSTRAINT clone_il_mapping_bin_log_genotype_region_id_fkey FOREIGN KEY (genotype_region_id) REFERENCES phenome.genotype_region(genotype_region_id); -- -- Name: clone_il_mapping_bin_log clone_il_mapping_bin_log_sp_person_id_fkey; Type: FK CONSTRAINT; Schema: sgn_people; Owner: postgres -- ALTER TABLE ONLY sgn_people.clone_il_mapping_bin_log ADD CONSTRAINT clone_il_mapping_bin_log_sp_person_id_fkey FOREIGN KEY (sp_person_id) REFERENCES sgn_people.sp_person(sp_person_id); -- -- Name: clone_validation_log clone_validation_log_clone_id_fkey; Type: FK CONSTRAINT; Schema: sgn_people; Owner: postgres -- ALTER TABLE ONLY sgn_people.clone_validation_log ADD CONSTRAINT clone_validation_log_clone_id_fkey FOREIGN KEY (clone_id) REFERENCES genomic.clone(clone_id); -- -- Name: clone_validation_log clone_validation_log_sp_person_id_fkey; Type: FK CONSTRAINT; Schema: sgn_people; Owner: postgres -- ALTER TABLE ONLY sgn_people.clone_validation_log ADD CONSTRAINT clone_validation_log_sp_person_id_fkey FOREIGN KEY (sp_person_id) REFERENCES sgn_people.sp_person(sp_person_id); -- -- Name: clone_verification_log clone_verification_log_clone_id_fkey; Type: FK CONSTRAINT; Schema: sgn_people; Owner: postgres -- ALTER TABLE ONLY sgn_people.clone_verification_log ADD CONSTRAINT clone_verification_log_clone_id_fkey FOREIGN KEY (clone_id) REFERENCES genomic.clone(clone_id); -- -- Name: clone_verification_log clone_verification_log_sp_person_id_fkey; Type: FK CONSTRAINT; Schema: sgn_people; Owner: postgres -- ALTER TABLE ONLY sgn_people.clone_verification_log ADD CONSTRAINT clone_verification_log_sp_person_id_fkey FOREIGN KEY (sp_person_id) REFERENCES sgn_people.sp_person(sp_person_id); -- -- Name: forum_post forum_topic_id_fk; Type: FK CONSTRAINT; Schema: sgn_people; Owner: postgres -- ALTER TABLE ONLY sgn_people.forum_post ADD CONSTRAINT forum_topic_id_fk FOREIGN KEY (forum_topic_id) REFERENCES sgn_people.forum_topic(forum_topic_id); -- -- Name: list_item list_item_list_id_fkey; Type: FK CONSTRAINT; Schema: sgn_people; Owner: postgres -- ALTER TABLE ONLY sgn_people.list_item ADD CONSTRAINT list_item_list_id_fkey FOREIGN KEY (list_id) REFERENCES sgn_people.list(list_id) ON DELETE CASCADE; -- -- Name: list list_owner_fkey; Type: FK CONSTRAINT; Schema: sgn_people; Owner: postgres -- ALTER TABLE ONLY sgn_people.list ADD CONSTRAINT list_owner_fkey FOREIGN KEY (owner) REFERENCES sgn_people.sp_person(sp_person_id) ON DELETE CASCADE; -- -- Name: list list_type_id_fkey; Type: FK CONSTRAINT; Schema: sgn_people; Owner: postgres -- ALTER TABLE ONLY sgn_people.list ADD CONSTRAINT list_type_id_fkey FOREIGN KEY (type_id) REFERENCES public.cvterm(cvterm_id); -- -- Name: bac_status person_id_fk; Type: FK CONSTRAINT; Schema: sgn_people; Owner: postgres -- ALTER TABLE ONLY sgn_people.bac_status ADD CONSTRAINT person_id_fk FOREIGN KEY (person_id) REFERENCES sgn_people.sp_person(sp_person_id); -- -- Name: bac_status_log person_id_fk; Type: FK CONSTRAINT; Schema: sgn_people; Owner: postgres -- ALTER TABLE ONLY sgn_people.bac_status_log ADD CONSTRAINT person_id_fk FOREIGN KEY (person_id) REFERENCES sgn_people.sp_person(sp_person_id); -- -- Name: forum_post person_id_fk; Type: FK CONSTRAINT; Schema: sgn_people; Owner: postgres -- ALTER TABLE ONLY sgn_people.forum_post ADD CONSTRAINT person_id_fk FOREIGN KEY (person_id) REFERENCES sgn_people.sp_person(sp_person_id); -- -- Name: forum_topic person_id_fk; Type: FK CONSTRAINT; Schema: sgn_people; Owner: postgres -- ALTER TABLE ONLY sgn_people.forum_topic ADD CONSTRAINT person_id_fk FOREIGN KEY (person_id) REFERENCES sgn_people.sp_person(sp_person_id); -- -- Name: sp_organization_person person_id_fk; Type: FK CONSTRAINT; Schema: sgn_people; Owner: postgres -- ALTER TABLE ONLY sgn_people.sp_organization_person ADD CONSTRAINT person_id_fk FOREIGN KEY (sp_person_id) REFERENCES sgn_people.sp_person(sp_person_id); -- -- Name: sp_person_organisms person_id_fk; Type: FK CONSTRAINT; Schema: sgn_people; Owner: postgres -- ALTER TABLE ONLY sgn_people.sp_person_organisms ADD CONSTRAINT person_id_fk FOREIGN KEY (sp_person_id) REFERENCES sgn_people.sp_person(sp_person_id); -- -- Name: sp_project_person person_id_fk; Type: FK CONSTRAINT; Schema: sgn_people; Owner: postgres -- ALTER TABLE ONLY sgn_people.sp_project_person ADD CONSTRAINT person_id_fk FOREIGN KEY (sp_person_id) REFERENCES sgn_people.sp_person(sp_person_id); -- -- Name: sp_papers person_id_fk; Type: FK CONSTRAINT; Schema: sgn_people; Owner: postgres -- ALTER TABLE ONLY sgn_people.sp_papers ADD CONSTRAINT person_id_fk FOREIGN KEY (person_id) REFERENCES sgn_people.sp_person(sp_person_id); -- -- Name: sp_clone_il_mapping_segment_log sp_clone_il_mapping_segment_log_clone_id_fkey; Type: FK CONSTRAINT; Schema: sgn_people; Owner: postgres -- ALTER TABLE ONLY sgn_people.sp_clone_il_mapping_segment_log ADD CONSTRAINT sp_clone_il_mapping_segment_log_clone_id_fkey FOREIGN KEY (clone_id) REFERENCES genomic.clone(clone_id); -- -- Name: sp_clone_il_mapping_segment_log sp_clone_il_mapping_segment_log_individual_id_fkey; Type: FK CONSTRAINT; Schema: sgn_people; Owner: postgres -- ALTER TABLE ONLY sgn_people.sp_clone_il_mapping_segment_log ADD CONSTRAINT sp_clone_il_mapping_segment_log_individual_id_fkey FOREIGN KEY (individual_id) REFERENCES phenome.individual(individual_id); -- -- Name: sp_clone_il_mapping_segment_log sp_clone_il_mapping_segment_log_sp_person_id_fkey; Type: FK CONSTRAINT; Schema: sgn_people; Owner: postgres -- ALTER TABLE ONLY sgn_people.sp_clone_il_mapping_segment_log ADD CONSTRAINT sp_clone_il_mapping_segment_log_sp_person_id_fkey FOREIGN KEY (sp_person_id) REFERENCES sgn_people.sp_person(sp_person_id); -- -- Name: sp_dataset sp_dataset_sp_person_id_fkey; Type: FK CONSTRAINT; Schema: sgn_people; Owner: postgres -- ALTER TABLE ONLY sgn_people.sp_dataset ADD CONSTRAINT sp_dataset_sp_person_id_fkey FOREIGN KEY (sp_person_id) REFERENCES sgn_people.sp_person(sp_person_id); -- -- Name: sp_group_member sp_group_member_sp_group_id_fkey; Type: FK CONSTRAINT; Schema: sgn_people; Owner: postgres -- ALTER TABLE ONLY sgn_people.sp_group_member ADD CONSTRAINT sp_group_member_sp_group_id_fkey FOREIGN KEY (sp_group_id) REFERENCES sgn_people.sp_group(sp_group_id) ON DELETE CASCADE; -- -- Name: sp_group_member sp_group_member_sp_person_id_fkey; Type: FK CONSTRAINT; Schema: sgn_people; Owner: postgres -- ALTER TABLE ONLY sgn_people.sp_group_member ADD CONSTRAINT sp_group_member_sp_person_id_fkey FOREIGN KEY (sp_person_id) REFERENCES sgn_people.sp_person(sp_person_id) ON DELETE CASCADE; -- -- Name: sp_person_roles sp_person_roles_sp_person_id_fkey; Type: FK CONSTRAINT; Schema: sgn_people; Owner: postgres -- ALTER TABLE ONLY sgn_people.sp_person_roles ADD CONSTRAINT sp_person_roles_sp_person_id_fkey FOREIGN KEY (sp_person_id) REFERENCES sgn_people.sp_person(sp_person_id) ON DELETE CASCADE; -- -- Name: sp_person_roles sp_person_roles_sp_role_id_fkey; Type: FK CONSTRAINT; Schema: sgn_people; Owner: postgres -- ALTER TABLE ONLY sgn_people.sp_person_roles ADD CONSTRAINT sp_person_roles_sp_role_id_fkey FOREIGN KEY (sp_role_id) REFERENCES sgn_people.sp_roles(sp_role_id) ON DELETE CASCADE; -- -- Name: sp_project_il_mapping_clone_log sp_project_il_mapping_clone_log_clone_id_fkey; Type: FK CONSTRAINT; Schema: sgn_people; Owner: postgres -- ALTER TABLE ONLY sgn_people.sp_project_il_mapping_clone_log ADD CONSTRAINT sp_project_il_mapping_clone_log_clone_id_fkey FOREIGN KEY (clone_id) REFERENCES genomic.clone(clone_id); -- -- Name: sp_project_il_mapping_clone_log sp_project_il_mapping_clone_log_sp_person_id_fkey; Type: FK CONSTRAINT; Schema: sgn_people; Owner: postgres -- ALTER TABLE ONLY sgn_people.sp_project_il_mapping_clone_log ADD CONSTRAINT sp_project_il_mapping_clone_log_sp_person_id_fkey FOREIGN KEY (sp_person_id) REFERENCES sgn_people.sp_person(sp_person_id); -- -- Name: sp_project_il_mapping_clone_log sp_project_il_mapping_clone_log_sp_project_id_fkey; Type: FK CONSTRAINT; Schema: sgn_people; Owner: postgres -- ALTER TABLE ONLY sgn_people.sp_project_il_mapping_clone_log ADD CONSTRAINT sp_project_il_mapping_clone_log_sp_project_id_fkey FOREIGN KEY (sp_project_id) REFERENCES sgn_people.sp_project(sp_project_id); -- -- Name: sp_project_person sp_project_person_sp_project_id_fkey; Type: FK CONSTRAINT; Schema: sgn_people; Owner: postgres -- ALTER TABLE ONLY sgn_people.sp_project_person ADD CONSTRAINT sp_project_person_sp_project_id_fkey FOREIGN KEY (sp_project_id) REFERENCES sgn_people.sp_project(sp_project_id); -- -- Name: user_map_data user_map_data_marker_id_fkey; Type: FK CONSTRAINT; Schema: sgn_people; Owner: postgres -- ALTER TABLE ONLY sgn_people.user_map_data ADD CONSTRAINT user_map_data_marker_id_fkey FOREIGN KEY (marker_id) REFERENCES sgn.marker(marker_id); -- -- Name: user_map_data user_map_data_sp_person_id_fkey; Type: FK CONSTRAINT; Schema: sgn_people; Owner: postgres -- ALTER TABLE ONLY sgn_people.user_map_data ADD CONSTRAINT user_map_data_sp_person_id_fkey FOREIGN KEY (sp_person_id) REFERENCES sgn_people.sp_person(sp_person_id); -- -- Name: user_map_data user_map_data_user_map_id_fkey; Type: FK CONSTRAINT; Schema: sgn_people; Owner: postgres -- ALTER TABLE ONLY sgn_people.user_map_data ADD CONSTRAINT user_map_data_user_map_id_fkey FOREIGN KEY (user_map_id) REFERENCES sgn_people.user_map(user_map_id); -- -- Name: user_map user_map_parent1_accession_id_fkey; Type: FK CONSTRAINT; Schema: sgn_people; Owner: postgres -- ALTER TABLE ONLY sgn_people.user_map ADD CONSTRAINT user_map_parent1_accession_id_fkey FOREIGN KEY (parent1_accession_id) REFERENCES sgn.accession(accession_id); -- -- Name: user_map user_map_parent2_accession_id_fkey; Type: FK CONSTRAINT; Schema: sgn_people; Owner: postgres -- ALTER TABLE ONLY sgn_people.user_map ADD CONSTRAINT user_map_parent2_accession_id_fkey FOREIGN KEY (parent2_accession_id) REFERENCES sgn.accession(accession_id); -- -- Name: user_map user_map_sp_person_id_fkey; Type: FK CONSTRAINT; Schema: sgn_people; Owner: postgres -- ALTER TABLE ONLY sgn_people.user_map ADD CONSTRAINT user_map_sp_person_id_fkey FOREIGN KEY (sp_person_id) REFERENCES sgn_people.sp_person(sp_person_id); -- -- Name: facility foriegn; Type: FK CONSTRAINT; Schema: sgn_submit; Owner: postgres -- ALTER TABLE ONLY sgn_submit.facility ADD CONSTRAINT foriegn FOREIGN KEY (sp_person_id) REFERENCES sgn_people.sp_person(sp_person_id); -- -- Name: library foriegn; Type: FK CONSTRAINT; Schema: sgn_submit; Owner: postgres -- ALTER TABLE ONLY sgn_submit.library ADD CONSTRAINT foriegn FOREIGN KEY (sp_person_id) REFERENCES sgn_people.sp_person(sp_person_id); -- -- Name: submit_user foriegn; Type: FK CONSTRAINT; Schema: sgn_submit; Owner: postgres -- ALTER TABLE ONLY sgn_submit.submit_user ADD CONSTRAINT foriegn FOREIGN KEY (sp_person_id) REFERENCES sgn_people.sp_person(sp_person_id); -- -- Name: SCHEMA annotation; Type: ACL; Schema: -; Owner: postgres -- GRANT USAGE ON SCHEMA annotation TO web_usr; -- -- Name: SCHEMA biosource; Type: ACL; Schema: -; Owner: postgres -- GRANT USAGE ON SCHEMA biosource TO web_usr; -- -- Name: SCHEMA gem; Type: ACL; Schema: -; Owner: postgres -- GRANT USAGE ON SCHEMA gem TO web_usr; -- -- Name: SCHEMA genomic; Type: ACL; Schema: -; Owner: postgres -- GRANT USAGE ON SCHEMA genomic TO web_usr; -- -- Name: SCHEMA insitu; Type: ACL; Schema: -; Owner: postgres -- GRANT USAGE ON SCHEMA insitu TO web_usr; -- -- Name: SCHEMA metadata; Type: ACL; Schema: -; Owner: postgres -- GRANT USAGE ON SCHEMA metadata TO web_usr; -- -- Name: SCHEMA pheno_population; Type: ACL; Schema: -; Owner: postgres -- GRANT USAGE ON SCHEMA pheno_population TO web_usr; -- -- Name: SCHEMA phenome; Type: ACL; Schema: -; Owner: postgres -- GRANT USAGE ON SCHEMA phenome TO web_usr; -- -- Name: SCHEMA physical; Type: ACL; Schema: -; Owner: postgres -- GRANT USAGE ON SCHEMA physical TO web_usr; -- -- Name: SCHEMA public; Type: ACL; Schema: -; Owner: postgres -- GRANT USAGE ON SCHEMA public TO web_usr; -- -- Name: SCHEMA sgn; Type: ACL; Schema: -; Owner: postgres -- GRANT USAGE ON SCHEMA sgn TO web_usr; -- -- Name: SCHEMA sgn_people; Type: ACL; Schema: -; Owner: postgres -- GRANT USAGE ON SCHEMA sgn_people TO web_usr; -- -- Name: SCHEMA sgn_submit; Type: ACL; Schema: -; Owner: postgres -- GRANT USAGE ON SCHEMA sgn_submit TO web_usr; -- -- Name: SCHEMA tomato_gff; Type: ACL; Schema: -; Owner: postgres -- GRANT USAGE ON SCHEMA tomato_gff TO web_usr; -- -- Name: TABLE feature; Type: ACL; Schema: public; Owner: postgres -- GRANT ALL ON TABLE public.feature TO web_usr; -- -- Name: TABLE featureloc; Type: ACL; Schema: public; Owner: postgres -- GRANT ALL ON TABLE public.featureloc TO web_usr; -- -- Name: TABLE cvterm; Type: ACL; Schema: public; Owner: postgres -- GRANT ALL ON TABLE public.cvterm TO web_usr; -- -- Name: TABLE db; Type: ACL; Schema: public; Owner: postgres -- GRANT ALL ON TABLE public.db TO web_usr; -- -- Name: TABLE dbxref; Type: ACL; Schema: public; Owner: postgres -- GRANT ALL ON TABLE public.dbxref TO web_usr; -- -- Name: TABLE feature_cvterm; Type: ACL; Schema: public; Owner: postgres -- GRANT ALL ON TABLE public.feature_cvterm TO web_usr; -- -- Name: TABLE feature_dbxref; Type: ACL; Schema: public; Owner: postgres -- GRANT ALL ON TABLE public.feature_dbxref TO web_usr; -- -- Name: TABLE feature_pub; Type: ACL; Schema: public; Owner: postgres -- GRANT ALL ON TABLE public.feature_pub TO web_usr; -- -- Name: TABLE feature_synonym; Type: ACL; Schema: public; Owner: postgres -- GRANT ALL ON TABLE public.feature_synonym TO web_usr; -- -- Name: TABLE featureprop; Type: ACL; Schema: public; Owner: postgres -- GRANT ALL ON TABLE public.featureprop TO web_usr; -- -- Name: TABLE pub; Type: ACL; Schema: public; Owner: postgres -- GRANT ALL ON TABLE public.pub TO web_usr; -- -- Name: TABLE synonym; Type: ACL; Schema: public; Owner: postgres -- GRANT ALL ON TABLE public.synonym TO web_usr; -- -- Name: TABLE gffatts; Type: ACL; Schema: public; Owner: postgres -- GRANT ALL ON TABLE public.gffatts TO web_usr; -- -- Name: TABLE annotation; Type: ACL; Schema: annotation; Owner: postgres -- GRANT SELECT ON TABLE annotation.annotation TO web_usr; -- -- Name: TABLE comment; Type: ACL; Schema: annotation; Owner: postgres -- GRANT SELECT ON TABLE annotation.comment TO web_usr; -- -- Name: TABLE comp_analysis; Type: ACL; Schema: annotation; Owner: postgres -- GRANT SELECT ON TABLE annotation.comp_analysis TO web_usr; -- -- Name: TABLE dblist; Type: ACL; Schema: annotation; Owner: postgres -- GRANT SELECT ON TABLE annotation.dblist TO web_usr; -- -- Name: TABLE dbxref; Type: ACL; Schema: annotation; Owner: postgres -- GRANT SELECT ON TABLE annotation.dbxref TO web_usr; -- -- Name: TABLE feature_set; Type: ACL; Schema: annotation; Owner: postgres -- GRANT SELECT ON TABLE annotation.feature_set TO web_usr; -- -- Name: TABLE feature_span; Type: ACL; Schema: annotation; Owner: postgres -- GRANT SELECT ON TABLE annotation.feature_span TO web_usr; -- -- Name: TABLE organism; Type: ACL; Schema: annotation; Owner: postgres -- GRANT SELECT ON TABLE annotation.organism TO web_usr; -- -- Name: TABLE output; Type: ACL; Schema: annotation; Owner: postgres -- GRANT SELECT ON TABLE annotation.output TO web_usr; -- -- Name: TABLE person; Type: ACL; Schema: annotation; Owner: postgres -- GRANT SELECT ON TABLE annotation.person TO web_usr; -- -- Name: TABLE program; Type: ACL; Schema: annotation; Owner: postgres -- GRANT SELECT ON TABLE annotation.program TO web_usr; -- -- Name: TABLE property; Type: ACL; Schema: annotation; Owner: postgres -- GRANT SELECT ON TABLE annotation.property TO web_usr; -- -- Name: TABLE result_set; Type: ACL; Schema: annotation; Owner: postgres -- GRANT SELECT ON TABLE annotation.result_set TO web_usr; -- -- Name: TABLE result_span; Type: ACL; Schema: annotation; Owner: postgres -- GRANT SELECT ON TABLE annotation.result_span TO web_usr; -- -- Name: TABLE seq; Type: ACL; Schema: annotation; Owner: postgres -- GRANT SELECT ON TABLE annotation.seq TO web_usr; -- -- Name: TABLE seq_error; Type: ACL; Schema: annotation; Owner: postgres -- GRANT SELECT ON TABLE annotation.seq_error TO web_usr; -- -- Name: TABLE seq_relationship; Type: ACL; Schema: annotation; Owner: postgres -- GRANT SELECT ON TABLE annotation.seq_relationship TO web_usr; -- -- Name: TABLE synonym; Type: ACL; Schema: annotation; Owner: postgres -- GRANT SELECT ON TABLE annotation.synonym TO web_usr; -- -- Name: TABLE bs_protocol; Type: ACL; Schema: biosource; Owner: postgres -- GRANT SELECT ON TABLE biosource.bs_protocol TO web_usr; -- -- Name: SEQUENCE bs_protocol_protocol_id_seq; Type: ACL; Schema: biosource; Owner: postgres -- GRANT SELECT ON SEQUENCE biosource.bs_protocol_protocol_id_seq TO web_usr; -- -- Name: TABLE bs_protocol_pub; Type: ACL; Schema: biosource; Owner: postgres -- GRANT SELECT ON TABLE biosource.bs_protocol_pub TO web_usr; -- -- Name: SEQUENCE bs_protocol_pub_protocol_pub_id_seq; Type: ACL; Schema: biosource; Owner: postgres -- GRANT SELECT ON SEQUENCE biosource.bs_protocol_pub_protocol_pub_id_seq TO web_usr; -- -- Name: TABLE bs_protocol_step; Type: ACL; Schema: biosource; Owner: postgres -- GRANT SELECT ON TABLE biosource.bs_protocol_step TO web_usr; -- -- Name: TABLE bs_protocol_step_dbxref; Type: ACL; Schema: biosource; Owner: postgres -- GRANT SELECT ON TABLE biosource.bs_protocol_step_dbxref TO web_usr; -- -- Name: SEQUENCE bs_protocol_step_dbxref_protocol_step_dbxref_id_seq; Type: ACL; Schema: biosource; Owner: postgres -- GRANT SELECT ON SEQUENCE biosource.bs_protocol_step_dbxref_protocol_step_dbxref_id_seq TO web_usr; -- -- Name: SEQUENCE bs_protocol_step_protocol_step_id_seq; Type: ACL; Schema: biosource; Owner: postgres -- GRANT SELECT ON SEQUENCE biosource.bs_protocol_step_protocol_step_id_seq TO web_usr; -- -- Name: TABLE bs_sample; Type: ACL; Schema: biosource; Owner: postgres -- GRANT SELECT ON TABLE biosource.bs_sample TO web_usr; -- -- Name: TABLE bs_sample_cvterm; Type: ACL; Schema: biosource; Owner: postgres -- GRANT SELECT ON TABLE biosource.bs_sample_cvterm TO web_usr; -- -- Name: SEQUENCE bs_sample_cvterm_sample_cvterm_id_seq; Type: ACL; Schema: biosource; Owner: postgres -- GRANT SELECT ON SEQUENCE biosource.bs_sample_cvterm_sample_cvterm_id_seq TO web_usr; -- -- Name: TABLE bs_sample_dbxref; Type: ACL; Schema: biosource; Owner: postgres -- GRANT SELECT ON TABLE biosource.bs_sample_dbxref TO web_usr; -- -- Name: SEQUENCE bs_sample_dbxref_sample_dbxref_id_seq; Type: ACL; Schema: biosource; Owner: postgres -- GRANT SELECT ON SEQUENCE biosource.bs_sample_dbxref_sample_dbxref_id_seq TO web_usr; -- -- Name: TABLE bs_sample_element; Type: ACL; Schema: biosource; Owner: postgres -- GRANT SELECT ON TABLE biosource.bs_sample_element TO web_usr; -- -- Name: TABLE bs_sample_element_cvterm; Type: ACL; Schema: biosource; Owner: postgres -- GRANT SELECT ON TABLE biosource.bs_sample_element_cvterm TO web_usr; -- -- Name: SEQUENCE bs_sample_element_cvterm_sample_element_cvterm_id_seq; Type: ACL; Schema: biosource; Owner: postgres -- GRANT SELECT ON SEQUENCE biosource.bs_sample_element_cvterm_sample_element_cvterm_id_seq TO web_usr; -- -- Name: TABLE bs_sample_element_dbxref; Type: ACL; Schema: biosource; Owner: postgres -- GRANT SELECT ON TABLE biosource.bs_sample_element_dbxref TO web_usr; -- -- Name: SEQUENCE bs_sample_element_dbxref_sample_element_dbxref_id_seq; Type: ACL; Schema: biosource; Owner: postgres -- GRANT SELECT ON SEQUENCE biosource.bs_sample_element_dbxref_sample_element_dbxref_id_seq TO web_usr; -- -- Name: TABLE bs_sample_element_file; Type: ACL; Schema: biosource; Owner: postgres -- GRANT SELECT ON TABLE biosource.bs_sample_element_file TO web_usr; -- -- Name: SEQUENCE bs_sample_element_file_sample_element_file_id_seq; Type: ACL; Schema: biosource; Owner: postgres -- GRANT SELECT ON SEQUENCE biosource.bs_sample_element_file_sample_element_file_id_seq TO web_usr; -- -- Name: TABLE bs_sample_element_relation; Type: ACL; Schema: biosource; Owner: postgres -- GRANT SELECT ON TABLE biosource.bs_sample_element_relation TO web_usr; -- -- Name: SEQUENCE bs_sample_element_relation_sample_element_relation_id_seq; Type: ACL; Schema: biosource; Owner: postgres -- GRANT SELECT ON SEQUENCE biosource.bs_sample_element_relation_sample_element_relation_id_seq TO web_usr; -- -- Name: SEQUENCE bs_sample_element_sample_element_id_seq; Type: ACL; Schema: biosource; Owner: postgres -- GRANT SELECT ON SEQUENCE biosource.bs_sample_element_sample_element_id_seq TO web_usr; -- -- Name: TABLE bs_sample_file; Type: ACL; Schema: biosource; Owner: postgres -- GRANT SELECT ON TABLE biosource.bs_sample_file TO web_usr; -- -- Name: SEQUENCE bs_sample_file_sample_file_id_seq; Type: ACL; Schema: biosource; Owner: postgres -- GRANT SELECT ON SEQUENCE biosource.bs_sample_file_sample_file_id_seq TO web_usr; -- -- Name: TABLE bs_sample_pub; Type: ACL; Schema: biosource; Owner: postgres -- GRANT SELECT ON TABLE biosource.bs_sample_pub TO web_usr; -- -- Name: SEQUENCE bs_sample_pub_sample_pub_id_seq; Type: ACL; Schema: biosource; Owner: postgres -- GRANT SELECT ON SEQUENCE biosource.bs_sample_pub_sample_pub_id_seq TO web_usr; -- -- Name: TABLE bs_sample_relationship; Type: ACL; Schema: biosource; Owner: postgres -- GRANT SELECT ON TABLE biosource.bs_sample_relationship TO web_usr; -- -- Name: SEQUENCE bs_sample_relationship_sample_relationship_id_seq; Type: ACL; Schema: biosource; Owner: postgres -- GRANT SELECT ON SEQUENCE biosource.bs_sample_relationship_sample_relationship_id_seq TO web_usr; -- -- Name: SEQUENCE bs_sample_sample_id_seq; Type: ACL; Schema: biosource; Owner: postgres -- GRANT SELECT ON SEQUENCE biosource.bs_sample_sample_id_seq TO web_usr; -- -- Name: TABLE bs_tool; Type: ACL; Schema: biosource; Owner: postgres -- GRANT SELECT ON TABLE biosource.bs_tool TO web_usr; -- -- Name: TABLE bs_tool_pub; Type: ACL; Schema: biosource; Owner: postgres -- GRANT SELECT ON TABLE biosource.bs_tool_pub TO web_usr; -- -- Name: SEQUENCE bs_tool_pub_tool_pub_id_seq; Type: ACL; Schema: biosource; Owner: postgres -- GRANT SELECT ON SEQUENCE biosource.bs_tool_pub_tool_pub_id_seq TO web_usr; -- -- Name: SEQUENCE bs_tool_tool_id_seq; Type: ACL; Schema: biosource; Owner: postgres -- GRANT SELECT ON SEQUENCE biosource.bs_tool_tool_id_seq TO web_usr; -- -- Name: TABLE ge_cluster_analysis; Type: ACL; Schema: gem; Owner: postgres -- GRANT SELECT ON TABLE gem.ge_cluster_analysis TO web_usr; -- -- Name: SEQUENCE ge_cluster_analysis_cluster_analysis_id_seq; Type: ACL; Schema: gem; Owner: postgres -- GRANT SELECT ON SEQUENCE gem.ge_cluster_analysis_cluster_analysis_id_seq TO web_usr; -- -- Name: TABLE ge_cluster_member; Type: ACL; Schema: gem; Owner: postgres -- GRANT SELECT ON TABLE gem.ge_cluster_member TO web_usr; -- -- Name: SEQUENCE ge_cluster_member_cluster_member_id_seq; Type: ACL; Schema: gem; Owner: postgres -- GRANT SELECT ON SEQUENCE gem.ge_cluster_member_cluster_member_id_seq TO web_usr; -- -- Name: TABLE ge_cluster_profile; Type: ACL; Schema: gem; Owner: postgres -- GRANT SELECT ON TABLE gem.ge_cluster_profile TO web_usr; -- -- Name: SEQUENCE ge_cluster_profile_cluster_profile_id_seq; Type: ACL; Schema: gem; Owner: postgres -- GRANT SELECT ON SEQUENCE gem.ge_cluster_profile_cluster_profile_id_seq TO web_usr; -- -- Name: TABLE ge_correlation_analysis; Type: ACL; Schema: gem; Owner: postgres -- GRANT SELECT ON TABLE gem.ge_correlation_analysis TO web_usr; -- -- Name: SEQUENCE ge_correlation_analysis_correlation_analysis_id_seq; Type: ACL; Schema: gem; Owner: postgres -- GRANT SELECT ON SEQUENCE gem.ge_correlation_analysis_correlation_analysis_id_seq TO web_usr; -- -- Name: TABLE ge_correlation_member; Type: ACL; Schema: gem; Owner: postgres -- GRANT SELECT ON TABLE gem.ge_correlation_member TO web_usr; -- -- Name: SEQUENCE ge_correlation_member_correlation_member_id_seq; Type: ACL; Schema: gem; Owner: postgres -- GRANT SELECT ON SEQUENCE gem.ge_correlation_member_correlation_member_id_seq TO web_usr; -- -- Name: TABLE ge_data_analysis_process; Type: ACL; Schema: gem; Owner: postgres -- GRANT SELECT ON TABLE gem.ge_data_analysis_process TO web_usr; -- -- Name: SEQUENCE ge_data_analysis_process_data_analysis_process_id_seq; Type: ACL; Schema: gem; Owner: postgres -- GRANT SELECT ON SEQUENCE gem.ge_data_analysis_process_data_analysis_process_id_seq TO web_usr; -- -- Name: TABLE ge_diff_expression; Type: ACL; Schema: gem; Owner: postgres -- GRANT SELECT ON TABLE gem.ge_diff_expression TO web_usr; -- -- Name: SEQUENCE ge_diff_expression_diff_expression_id_seq; Type: ACL; Schema: gem; Owner: postgres -- GRANT SELECT ON SEQUENCE gem.ge_diff_expression_diff_expression_id_seq TO web_usr; -- -- Name: TABLE ge_experiment; Type: ACL; Schema: gem; Owner: postgres -- GRANT SELECT ON TABLE gem.ge_experiment TO web_usr; -- -- Name: TABLE ge_experiment_analysis_group; Type: ACL; Schema: gem; Owner: postgres -- GRANT SELECT ON TABLE gem.ge_experiment_analysis_group TO web_usr; -- -- Name: SEQUENCE ge_experiment_analysis_group_experiment_analysis_group_id_seq; Type: ACL; Schema: gem; Owner: postgres -- GRANT SELECT ON SEQUENCE gem.ge_experiment_analysis_group_experiment_analysis_group_id_seq TO web_usr; -- -- Name: TABLE ge_experiment_analysis_member; Type: ACL; Schema: gem; Owner: postgres -- GRANT SELECT ON TABLE gem.ge_experiment_analysis_member TO web_usr; -- -- Name: SEQUENCE ge_experiment_analysis_member_experiment_analysis_member_id_seq; Type: ACL; Schema: gem; Owner: postgres -- GRANT SELECT ON SEQUENCE gem.ge_experiment_analysis_member_experiment_analysis_member_id_seq TO web_usr; -- -- Name: TABLE ge_experiment_dbxref; Type: ACL; Schema: gem; Owner: postgres -- GRANT SELECT ON TABLE gem.ge_experiment_dbxref TO web_usr; -- -- Name: SEQUENCE ge_experiment_dbxref_experiment_dbxref_id_seq; Type: ACL; Schema: gem; Owner: postgres -- GRANT SELECT ON SEQUENCE gem.ge_experiment_dbxref_experiment_dbxref_id_seq TO web_usr; -- -- Name: SEQUENCE ge_experiment_experiment_id_seq; Type: ACL; Schema: gem; Owner: postgres -- GRANT SELECT ON SEQUENCE gem.ge_experiment_experiment_id_seq TO web_usr; -- -- Name: TABLE ge_experimental_design; Type: ACL; Schema: gem; Owner: postgres -- GRANT SELECT ON TABLE gem.ge_experimental_design TO web_usr; -- -- Name: TABLE ge_experimental_design_dbxref; Type: ACL; Schema: gem; Owner: postgres -- GRANT SELECT ON TABLE gem.ge_experimental_design_dbxref TO web_usr; -- -- Name: SEQUENCE ge_experimental_design_dbxref_experimental_design_dbxref_id_seq; Type: ACL; Schema: gem; Owner: postgres -- GRANT SELECT ON SEQUENCE gem.ge_experimental_design_dbxref_experimental_design_dbxref_id_seq TO web_usr; -- -- Name: SEQUENCE ge_experimental_design_experimental_design_id_seq; Type: ACL; Schema: gem; Owner: postgres -- GRANT SELECT ON SEQUENCE gem.ge_experimental_design_experimental_design_id_seq TO web_usr; -- -- Name: TABLE ge_experimental_design_pub; Type: ACL; Schema: gem; Owner: postgres -- GRANT SELECT ON TABLE gem.ge_experimental_design_pub TO web_usr; -- -- Name: SEQUENCE ge_experimental_design_pub_experimental_design_pub_id_seq; Type: ACL; Schema: gem; Owner: postgres -- GRANT SELECT ON SEQUENCE gem.ge_experimental_design_pub_experimental_design_pub_id_seq TO web_usr; -- -- Name: TABLE ge_expression_by_experiment; Type: ACL; Schema: gem; Owner: postgres -- GRANT SELECT ON TABLE gem.ge_expression_by_experiment TO web_usr; -- -- Name: SEQUENCE ge_expression_by_experiment_expression_by_experiment_id_seq; Type: ACL; Schema: gem; Owner: postgres -- GRANT SELECT ON SEQUENCE gem.ge_expression_by_experiment_expression_by_experiment_id_seq TO web_usr; -- -- Name: TABLE ge_fluorescanning; Type: ACL; Schema: gem; Owner: postgres -- GRANT SELECT ON TABLE gem.ge_fluorescanning TO web_usr; -- -- Name: SEQUENCE ge_fluorescanning_fluorescanning_id_seq; Type: ACL; Schema: gem; Owner: postgres -- GRANT SELECT ON SEQUENCE gem.ge_fluorescanning_fluorescanning_id_seq TO web_usr; -- -- Name: TABLE ge_hybridization; Type: ACL; Schema: gem; Owner: postgres -- GRANT SELECT ON TABLE gem.ge_hybridization TO web_usr; -- -- Name: SEQUENCE ge_hybridization_hybridization_id_seq; Type: ACL; Schema: gem; Owner: postgres -- GRANT SELECT ON SEQUENCE gem.ge_hybridization_hybridization_id_seq TO web_usr; -- -- Name: TABLE ge_platform; Type: ACL; Schema: gem; Owner: postgres -- GRANT SELECT ON TABLE gem.ge_platform TO web_usr; -- -- Name: TABLE ge_platform_dbxref; Type: ACL; Schema: gem; Owner: postgres -- GRANT SELECT ON TABLE gem.ge_platform_dbxref TO web_usr; -- -- Name: SEQUENCE ge_platform_dbxref_platform_dbxref_id_seq; Type: ACL; Schema: gem; Owner: postgres -- GRANT SELECT ON SEQUENCE gem.ge_platform_dbxref_platform_dbxref_id_seq TO web_usr; -- -- Name: TABLE ge_platform_design; Type: ACL; Schema: gem; Owner: postgres -- GRANT SELECT ON TABLE gem.ge_platform_design TO web_usr; -- -- Name: SEQUENCE ge_platform_design_platform_design_id_seq; Type: ACL; Schema: gem; Owner: postgres -- GRANT SELECT ON SEQUENCE gem.ge_platform_design_platform_design_id_seq TO web_usr; -- -- Name: SEQUENCE ge_platform_platform_id_seq; Type: ACL; Schema: gem; Owner: postgres -- GRANT SELECT ON SEQUENCE gem.ge_platform_platform_id_seq TO web_usr; -- -- Name: TABLE ge_platform_pub; Type: ACL; Schema: gem; Owner: postgres -- GRANT SELECT ON TABLE gem.ge_platform_pub TO web_usr; -- -- Name: SEQUENCE ge_platform_pub_platform_pub_id_seq; Type: ACL; Schema: gem; Owner: postgres -- GRANT SELECT ON SEQUENCE gem.ge_platform_pub_platform_pub_id_seq TO web_usr; -- -- Name: TABLE ge_probe; Type: ACL; Schema: gem; Owner: postgres -- GRANT SELECT ON TABLE gem.ge_probe TO web_usr; -- -- Name: TABLE ge_probe_expression; Type: ACL; Schema: gem; Owner: postgres -- GRANT SELECT ON TABLE gem.ge_probe_expression TO web_usr; -- -- Name: SEQUENCE ge_probe_expression_probe_expression_id_seq; Type: ACL; Schema: gem; Owner: postgres -- GRANT SELECT ON SEQUENCE gem.ge_probe_expression_probe_expression_id_seq TO web_usr; -- -- Name: SEQUENCE ge_probe_probe_id_seq; Type: ACL; Schema: gem; Owner: postgres -- GRANT SELECT ON SEQUENCE gem.ge_probe_probe_id_seq TO web_usr; -- -- Name: TABLE ge_probe_spot; Type: ACL; Schema: gem; Owner: postgres -- GRANT SELECT ON TABLE gem.ge_probe_spot TO web_usr; -- -- Name: TABLE ge_probe_spot_coordinate; Type: ACL; Schema: gem; Owner: postgres -- GRANT SELECT ON TABLE gem.ge_probe_spot_coordinate TO web_usr; -- -- Name: SEQUENCE ge_probe_spot_coordinate_probe_spot_coordinate_id_seq; Type: ACL; Schema: gem; Owner: postgres -- GRANT SELECT ON SEQUENCE gem.ge_probe_spot_coordinate_probe_spot_coordinate_id_seq TO web_usr; -- -- Name: SEQUENCE ge_probe_spot_probe_spot_id_seq; Type: ACL; Schema: gem; Owner: postgres -- GRANT SELECT ON SEQUENCE gem.ge_probe_spot_probe_spot_id_seq TO web_usr; -- -- Name: TABLE ge_profile_element; Type: ACL; Schema: gem; Owner: postgres -- GRANT SELECT ON TABLE gem.ge_profile_element TO web_usr; -- -- Name: SEQUENCE ge_profile_element_profile_element_id_seq; Type: ACL; Schema: gem; Owner: postgres -- GRANT SELECT ON SEQUENCE gem.ge_profile_element_profile_element_id_seq TO web_usr; -- -- Name: TABLE ge_target; Type: ACL; Schema: gem; Owner: postgres -- GRANT SELECT ON TABLE gem.ge_target TO web_usr; -- -- Name: TABLE ge_target_dbxref; Type: ACL; Schema: gem; Owner: postgres -- GRANT SELECT ON TABLE gem.ge_target_dbxref TO web_usr; -- -- Name: SEQUENCE ge_target_dbxref_target_dbxref_id_seq; Type: ACL; Schema: gem; Owner: postgres -- GRANT SELECT ON SEQUENCE gem.ge_target_dbxref_target_dbxref_id_seq TO web_usr; -- -- Name: TABLE ge_target_element; Type: ACL; Schema: gem; Owner: postgres -- GRANT SELECT ON TABLE gem.ge_target_element TO web_usr; -- -- Name: SEQUENCE ge_target_element_target_element_id_seq; Type: ACL; Schema: gem; Owner: postgres -- GRANT SELECT ON SEQUENCE gem.ge_target_element_target_element_id_seq TO web_usr; -- -- Name: SEQUENCE ge_target_target_id_seq; Type: ACL; Schema: gem; Owner: postgres -- GRANT SELECT ON SEQUENCE gem.ge_target_target_id_seq TO web_usr; -- -- Name: TABLE ge_technology_type; Type: ACL; Schema: gem; Owner: postgres -- GRANT SELECT ON TABLE gem.ge_technology_type TO web_usr; -- -- Name: SEQUENCE ge_technology_type_technology_type_id_seq; Type: ACL; Schema: gem; Owner: postgres -- GRANT SELECT ON SEQUENCE gem.ge_technology_type_technology_type_id_seq TO web_usr; -- -- Name: TABLE ge_template; Type: ACL; Schema: gem; Owner: postgres -- GRANT SELECT ON TABLE gem.ge_template TO web_usr; -- -- Name: TABLE ge_template_dbiref; Type: ACL; Schema: gem; Owner: postgres -- GRANT SELECT ON TABLE gem.ge_template_dbiref TO web_usr; -- -- Name: SEQUENCE ge_template_dbiref_template_dbiref_id_seq; Type: ACL; Schema: gem; Owner: postgres -- GRANT SELECT ON SEQUENCE gem.ge_template_dbiref_template_dbiref_id_seq TO web_usr; -- -- Name: TABLE ge_template_dbxref; Type: ACL; Schema: gem; Owner: postgres -- GRANT SELECT ON TABLE gem.ge_template_dbxref TO web_usr; -- -- Name: SEQUENCE ge_template_dbxref_template_dbxref_id_seq; Type: ACL; Schema: gem; Owner: postgres -- GRANT SELECT ON SEQUENCE gem.ge_template_dbxref_template_dbxref_id_seq TO web_usr; -- -- Name: TABLE ge_template_diff_expression; Type: ACL; Schema: gem; Owner: postgres -- GRANT SELECT ON TABLE gem.ge_template_diff_expression TO web_usr; -- -- Name: SEQUENCE ge_template_diff_expression_template_diff_expression_id_seq; Type: ACL; Schema: gem; Owner: postgres -- GRANT SELECT ON SEQUENCE gem.ge_template_diff_expression_template_diff_expression_id_seq TO web_usr; -- -- Name: TABLE ge_template_expression; Type: ACL; Schema: gem; Owner: postgres -- GRANT SELECT ON TABLE gem.ge_template_expression TO web_usr; -- -- Name: SEQUENCE ge_template_expression_template_expression_id_seq; Type: ACL; Schema: gem; Owner: postgres -- GRANT SELECT ON SEQUENCE gem.ge_template_expression_template_expression_id_seq TO web_usr; -- -- Name: SEQUENCE ge_template_template_id_seq; Type: ACL; Schema: gem; Owner: postgres -- GRANT SELECT ON SEQUENCE gem.ge_template_template_id_seq TO web_usr; -- -- Name: TABLE blast_defline; Type: ACL; Schema: genomic; Owner: postgres -- GRANT SELECT ON TABLE genomic.blast_defline TO web_usr; -- -- Name: TABLE blast_hit; Type: ACL; Schema: genomic; Owner: postgres -- GRANT SELECT ON TABLE genomic.blast_hit TO web_usr; -- -- Name: TABLE blast_query; Type: ACL; Schema: genomic; Owner: postgres -- GRANT SELECT ON TABLE genomic.blast_query TO web_usr; -- -- Name: TABLE chromat; Type: ACL; Schema: genomic; Owner: postgres -- GRANT SELECT ON TABLE genomic.chromat TO web_usr; -- -- Name: TABLE clone; Type: ACL; Schema: genomic; Owner: postgres -- GRANT SELECT ON TABLE genomic.clone TO web_usr; -- -- Name: TABLE clone_feature; Type: ACL; Schema: genomic; Owner: postgres -- GRANT SELECT ON TABLE genomic.clone_feature TO web_usr; GRANT SELECT ON TABLE genomic.clone_feature TO PUBLIC; -- -- Name: TABLE clone_type; Type: ACL; Schema: genomic; Owner: postgres -- GRANT SELECT ON TABLE genomic.clone_type TO web_usr; -- -- Name: TABLE genbank_submission; Type: ACL; Schema: genomic; Owner: postgres -- GRANT SELECT ON TABLE genomic.genbank_submission TO web_usr; -- -- Name: TABLE gss; Type: ACL; Schema: genomic; Owner: postgres -- GRANT SELECT ON TABLE genomic.gss TO web_usr; -- -- Name: TABLE gss_submitted_to_genbank; Type: ACL; Schema: genomic; Owner: postgres -- GRANT SELECT ON TABLE genomic.gss_submitted_to_genbank TO web_usr; -- -- Name: TABLE library; Type: ACL; Schema: genomic; Owner: postgres -- GRANT SELECT ON TABLE genomic.library TO web_usr; -- -- Name: TABLE library_annotation_db; Type: ACL; Schema: genomic; Owner: postgres -- GRANT SELECT ON TABLE genomic.library_annotation_db TO web_usr; -- -- Name: TABLE library_shortname_abbreviation; Type: ACL; Schema: genomic; Owner: postgres -- GRANT SELECT ON TABLE genomic.library_shortname_abbreviation TO PUBLIC; -- -- Name: TABLE qc_report; Type: ACL; Schema: genomic; Owner: postgres -- GRANT SELECT ON TABLE genomic.qc_report TO web_usr; -- -- Name: TABLE query_source_type; Type: ACL; Schema: genomic; Owner: postgres -- GRANT SELECT ON TABLE genomic.query_source_type TO web_usr; -- -- Name: TABLE read_class; Type: ACL; Schema: genomic; Owner: postgres -- GRANT SELECT ON TABLE genomic.read_class TO web_usr; -- -- Name: TABLE sequencing_primer; Type: ACL; Schema: genomic; Owner: postgres -- GRANT SELECT ON TABLE genomic.sequencing_primer TO PUBLIC; -- -- Name: TABLE ex_tag; Type: ACL; Schema: insitu; Owner: postgres -- GRANT SELECT,INSERT,DELETE,UPDATE ON TABLE insitu.ex_tag TO web_usr; -- -- Name: TABLE experiment; Type: ACL; Schema: insitu; Owner: postgres -- GRANT SELECT,INSERT,DELETE,UPDATE ON TABLE insitu.experiment TO web_usr; -- -- Name: SEQUENCE experiment_experiment_id_seq; Type: ACL; Schema: insitu; Owner: postgres -- GRANT ALL ON SEQUENCE insitu.experiment_experiment_id_seq TO web_usr; -- -- Name: TABLE experiment_image; Type: ACL; Schema: insitu; Owner: postgres -- GRANT SELECT,INSERT,UPDATE ON TABLE insitu.experiment_image TO web_usr; -- -- Name: SEQUENCE experiment_image_experiment_image_id_seq; Type: ACL; Schema: insitu; Owner: postgres -- GRANT SELECT,UPDATE ON SEQUENCE insitu.experiment_image_experiment_image_id_seq TO web_usr; -- -- Name: TABLE experiment_tag; Type: ACL; Schema: insitu; Owner: postgres -- GRANT SELECT,INSERT,DELETE,UPDATE ON TABLE insitu.experiment_tag TO web_usr; -- -- Name: SEQUENCE experiment_tag_experiment_tag_id_seq; Type: ACL; Schema: insitu; Owner: postgres -- GRANT SELECT,UPDATE ON SEQUENCE insitu.experiment_tag_experiment_tag_id_seq TO web_usr; -- -- Name: TABLE image_tag; Type: ACL; Schema: insitu; Owner: postgres -- GRANT SELECT,INSERT,DELETE,UPDATE ON TABLE insitu.image_tag TO web_usr; -- -- Name: TABLE is_organism; Type: ACL; Schema: insitu; Owner: postgres -- GRANT SELECT,INSERT,DELETE,UPDATE ON TABLE insitu.is_organism TO web_usr; -- -- Name: SEQUENCE is_organism_is_organism_id_seq; Type: ACL; Schema: insitu; Owner: postgres -- GRANT ALL ON SEQUENCE insitu.is_organism_is_organism_id_seq TO web_usr; -- -- Name: TABLE probe; Type: ACL; Schema: insitu; Owner: postgres -- GRANT SELECT,INSERT,DELETE,UPDATE ON TABLE insitu.probe TO web_usr; -- -- Name: SEQUENCE probe_probe_id_seq; Type: ACL; Schema: insitu; Owner: postgres -- GRANT ALL ON SEQUENCE insitu.probe_probe_id_seq TO web_usr; -- -- Name: TABLE tag; Type: ACL; Schema: insitu; Owner: postgres -- GRANT SELECT,INSERT,DELETE,UPDATE ON TABLE insitu.tag TO web_usr; -- -- Name: TABLE tag_implication; Type: ACL; Schema: insitu; Owner: postgres -- GRANT SELECT,INSERT,DELETE,UPDATE ON TABLE insitu.tag_implication TO web_usr; -- -- Name: SEQUENCE tag_tag_id_seq; Type: ACL; Schema: insitu; Owner: postgres -- GRANT ALL ON SEQUENCE insitu.tag_tag_id_seq TO web_usr; -- -- Name: TABLE attribution; Type: ACL; Schema: metadata; Owner: postgres -- GRANT ALL ON TABLE metadata.attribution TO web_usr; -- -- Name: SEQUENCE attribution_attribution_id_seq; Type: ACL; Schema: metadata; Owner: postgres -- GRANT ALL ON SEQUENCE metadata.attribution_attribution_id_seq TO web_usr; -- -- Name: TABLE attribution_to; Type: ACL; Schema: metadata; Owner: postgres -- GRANT ALL ON TABLE metadata.attribution_to TO web_usr; -- -- Name: SEQUENCE attribution_to_attribution_to_id_seq; Type: ACL; Schema: metadata; Owner: postgres -- GRANT ALL ON SEQUENCE metadata.attribution_to_attribution_to_id_seq TO web_usr; -- -- Name: TABLE comments; Type: ACL; Schema: metadata; Owner: postgres -- GRANT ALL ON TABLE metadata.comments TO web_usr; -- -- Name: SEQUENCE comments_comment_id_seq; Type: ACL; Schema: metadata; Owner: postgres -- GRANT ALL ON SEQUENCE metadata.comments_comment_id_seq TO web_usr; -- -- Name: TABLE md_dbipath; Type: ACL; Schema: metadata; Owner: postgres -- GRANT ALL ON TABLE metadata.md_dbipath TO web_usr; -- -- Name: SEQUENCE md_dbipath_dbipath_id_seq; Type: ACL; Schema: metadata; Owner: postgres -- GRANT SELECT,USAGE ON SEQUENCE metadata.md_dbipath_dbipath_id_seq TO web_usr; -- -- Name: TABLE md_dbiref; Type: ACL; Schema: metadata; Owner: postgres -- GRANT ALL ON TABLE metadata.md_dbiref TO web_usr; -- -- Name: SEQUENCE md_dbiref_dbiref_id_seq; Type: ACL; Schema: metadata; Owner: postgres -- GRANT SELECT,USAGE ON SEQUENCE metadata.md_dbiref_dbiref_id_seq TO web_usr; -- -- Name: TABLE md_dbversion; Type: ACL; Schema: metadata; Owner: postgres -- GRANT ALL ON TABLE metadata.md_dbversion TO web_usr; -- -- Name: SEQUENCE md_dbversion_dbversion_id_seq; Type: ACL; Schema: metadata; Owner: postgres -- GRANT SELECT,USAGE ON SEQUENCE metadata.md_dbversion_dbversion_id_seq TO web_usr; -- -- Name: TABLE md_files; Type: ACL; Schema: metadata; Owner: postgres -- GRANT ALL ON TABLE metadata.md_files TO web_usr; -- -- Name: SEQUENCE md_files_file_id_seq; Type: ACL; Schema: metadata; Owner: postgres -- GRANT SELECT,USAGE ON SEQUENCE metadata.md_files_file_id_seq TO web_usr; -- -- Name: TABLE md_groupmembers; Type: ACL; Schema: metadata; Owner: postgres -- GRANT ALL ON TABLE metadata.md_groupmembers TO web_usr; -- -- Name: SEQUENCE md_groupmembers_groupmember_id_seq; Type: ACL; Schema: metadata; Owner: postgres -- GRANT SELECT,USAGE ON SEQUENCE metadata.md_groupmembers_groupmember_id_seq TO web_usr; -- -- Name: TABLE md_groups; Type: ACL; Schema: metadata; Owner: postgres -- GRANT ALL ON TABLE metadata.md_groups TO web_usr; -- -- Name: SEQUENCE md_groups_group_id_seq; Type: ACL; Schema: metadata; Owner: postgres -- GRANT SELECT,USAGE ON SEQUENCE metadata.md_groups_group_id_seq TO web_usr; -- -- Name: TABLE md_image; Type: ACL; Schema: metadata; Owner: postgres -- GRANT ALL ON TABLE metadata.md_image TO web_usr; -- -- Name: TABLE md_image_cvterm; Type: ACL; Schema: metadata; Owner: postgres -- GRANT ALL ON TABLE metadata.md_image_cvterm TO web_usr; -- -- Name: SEQUENCE md_image_cvterm_md_image_cvterm_id_seq; Type: ACL; Schema: metadata; Owner: postgres -- GRANT SELECT,USAGE ON SEQUENCE metadata.md_image_cvterm_md_image_cvterm_id_seq TO web_usr; -- -- Name: SEQUENCE md_image_image_id_seq; Type: ACL; Schema: metadata; Owner: postgres -- GRANT ALL ON SEQUENCE metadata.md_image_image_id_seq TO web_usr; -- -- Name: TABLE md_image_organism; Type: ACL; Schema: metadata; Owner: postgres -- GRANT ALL ON TABLE metadata.md_image_organism TO web_usr; -- -- Name: SEQUENCE md_image_organism_md_image_organism_id_seq; Type: ACL; Schema: metadata; Owner: postgres -- GRANT SELECT,USAGE ON SEQUENCE metadata.md_image_organism_md_image_organism_id_seq TO web_usr; -- -- Name: TABLE md_json; Type: ACL; Schema: metadata; Owner: postgres -- GRANT SELECT,INSERT,DELETE,UPDATE ON TABLE metadata.md_json TO web_usr; -- -- Name: SEQUENCE md_json_json_id_seq; Type: ACL; Schema: metadata; Owner: postgres -- GRANT USAGE ON SEQUENCE metadata.md_json_json_id_seq TO web_usr; -- -- Name: TABLE md_metadata; Type: ACL; Schema: metadata; Owner: postgres -- GRANT ALL ON TABLE metadata.md_metadata TO web_usr; -- -- Name: SEQUENCE md_metadata_metadata_id_seq; Type: ACL; Schema: metadata; Owner: postgres -- GRANT SELECT,USAGE ON SEQUENCE metadata.md_metadata_metadata_id_seq TO web_usr; -- -- Name: TABLE md_tag; Type: ACL; Schema: metadata; Owner: postgres -- GRANT ALL ON TABLE metadata.md_tag TO web_usr; -- -- Name: TABLE md_tag_image; Type: ACL; Schema: metadata; Owner: postgres -- GRANT ALL ON TABLE metadata.md_tag_image TO web_usr; -- -- Name: SEQUENCE md_tag_image_tag_image_id_seq; Type: ACL; Schema: metadata; Owner: postgres -- GRANT ALL ON SEQUENCE metadata.md_tag_image_tag_image_id_seq TO web_usr; -- -- Name: SEQUENCE md_tag_tag_id_seq; Type: ACL; Schema: metadata; Owner: postgres -- GRANT ALL ON SEQUENCE metadata.md_tag_tag_id_seq TO web_usr; -- -- Name: TABLE roles; Type: ACL; Schema: metadata; Owner: postgres -- GRANT ALL ON TABLE metadata.roles TO web_usr; -- -- Name: SEQUENCE roles_role_id_seq; Type: ACL; Schema: metadata; Owner: postgres -- GRANT ALL ON SEQUENCE metadata.roles_role_id_seq TO web_usr; -- -- Name: TABLE data_points; Type: ACL; Schema: pheno_population; Owner: postgres -- GRANT SELECT ON TABLE pheno_population.data_points TO web_usr; -- -- Name: TABLE genotypes; Type: ACL; Schema: pheno_population; Owner: postgres -- GRANT SELECT ON TABLE pheno_population.genotypes TO web_usr; -- -- Name: TABLE images; Type: ACL; Schema: pheno_population; Owner: postgres -- GRANT SELECT ON TABLE pheno_population.images TO web_usr; -- -- Name: TABLE locations; Type: ACL; Schema: pheno_population; Owner: postgres -- GRANT SELECT ON TABLE pheno_population.locations TO web_usr; -- -- Name: TABLE organs; Type: ACL; Schema: pheno_population; Owner: postgres -- GRANT SELECT ON TABLE pheno_population.organs TO web_usr; -- -- Name: TABLE plants; Type: ACL; Schema: pheno_population; Owner: postgres -- GRANT SELECT ON TABLE pheno_population.plants TO web_usr; -- -- Name: TABLE populations; Type: ACL; Schema: pheno_population; Owner: postgres -- GRANT SELECT ON TABLE pheno_population.populations TO web_usr; -- -- Name: TABLE properties; Type: ACL; Schema: pheno_population; Owner: postgres -- GRANT SELECT ON TABLE pheno_population.properties TO web_usr; -- -- Name: TABLE samples; Type: ACL; Schema: pheno_population; Owner: postgres -- GRANT SELECT ON TABLE pheno_population.samples TO web_usr; -- -- Name: TABLE sources; Type: ACL; Schema: pheno_population; Owner: postgres -- GRANT SELECT ON TABLE pheno_population.sources TO web_usr; -- -- Name: TABLE allele; Type: ACL; Schema: phenome; Owner: postgres -- GRANT ALL ON TABLE phenome.allele TO web_usr; -- -- Name: TABLE allele_alias; Type: ACL; Schema: phenome; Owner: postgres -- GRANT ALL ON TABLE phenome.allele_alias TO web_usr; -- -- Name: SEQUENCE allele_alias_allele_alias_id_seq; Type: ACL; Schema: phenome; Owner: postgres -- GRANT ALL ON SEQUENCE phenome.allele_alias_allele_alias_id_seq TO web_usr; -- -- Name: SEQUENCE allele_allele_id_seq; Type: ACL; Schema: phenome; Owner: postgres -- GRANT ALL ON SEQUENCE phenome.allele_allele_id_seq TO web_usr; -- -- Name: TABLE allele_dbxref; Type: ACL; Schema: phenome; Owner: postgres -- GRANT ALL ON TABLE phenome.allele_dbxref TO web_usr; -- -- Name: SEQUENCE allele_dbxref_allele_dbxref_id_seq; Type: ACL; Schema: phenome; Owner: postgres -- GRANT ALL ON SEQUENCE phenome.allele_dbxref_allele_dbxref_id_seq TO web_usr; -- -- Name: TABLE allele_history; Type: ACL; Schema: phenome; Owner: postgres -- GRANT ALL ON TABLE phenome.allele_history TO web_usr; -- -- Name: SEQUENCE allele_history_allele_history_id_seq; Type: ACL; Schema: phenome; Owner: postgres -- GRANT ALL ON SEQUENCE phenome.allele_history_allele_history_id_seq TO web_usr; -- -- Name: TABLE cross_type; Type: ACL; Schema: phenome; Owner: postgres -- GRANT ALL ON TABLE phenome.cross_type TO web_usr; -- -- Name: SEQUENCE cross_type_cross_type_id_seq; Type: ACL; Schema: phenome; Owner: postgres -- GRANT ALL ON SEQUENCE phenome.cross_type_cross_type_id_seq TO web_usr; -- -- Name: TABLE cvterm_pub_ranking; Type: ACL; Schema: phenome; Owner: postgres -- GRANT ALL ON TABLE phenome.cvterm_pub_ranking TO web_usr; -- -- Name: TABLE dbxref_type; Type: ACL; Schema: phenome; Owner: postgres -- GRANT ALL ON TABLE phenome.dbxref_type TO web_usr; -- -- Name: SEQUENCE dbxref_type_dbxref_type_id_seq; Type: ACL; Schema: phenome; Owner: postgres -- GRANT ALL ON SEQUENCE phenome.dbxref_type_dbxref_type_id_seq TO web_usr; -- -- Name: TABLE genotype_experiment; Type: ACL; Schema: phenome; Owner: postgres -- GRANT ALL ON TABLE phenome.genotype_experiment TO web_usr; -- -- Name: SEQUENCE genotype_experiment_genotype_experiment_id_seq; Type: ACL; Schema: phenome; Owner: postgres -- GRANT ALL ON SEQUENCE phenome.genotype_experiment_genotype_experiment_id_seq TO web_usr; -- -- Name: TABLE phenome_genotype; Type: ACL; Schema: phenome; Owner: postgres -- GRANT ALL ON TABLE phenome.phenome_genotype TO web_usr; -- -- Name: SEQUENCE genotype_genotype_id_seq; Type: ACL; Schema: phenome; Owner: postgres -- GRANT ALL ON SEQUENCE phenome.genotype_genotype_id_seq TO web_usr; -- -- Name: TABLE genotype_region; Type: ACL; Schema: phenome; Owner: postgres -- GRANT SELECT ON TABLE phenome.genotype_region TO PUBLIC; GRANT ALL ON TABLE phenome.genotype_region TO web_usr; -- -- Name: SEQUENCE genotype_region_genotype_region_id_seq; Type: ACL; Schema: phenome; Owner: postgres -- GRANT ALL ON SEQUENCE phenome.genotype_region_genotype_region_id_seq TO web_usr; -- -- Name: TABLE germplasm; Type: ACL; Schema: phenome; Owner: postgres -- GRANT ALL ON TABLE phenome.germplasm TO web_usr; -- -- Name: SEQUENCE germplasm_germplasm_id_seq; Type: ACL; Schema: phenome; Owner: postgres -- GRANT ALL ON SEQUENCE phenome.germplasm_germplasm_id_seq TO web_usr; -- -- Name: TABLE individual; Type: ACL; Schema: phenome; Owner: postgres -- GRANT ALL ON TABLE phenome.individual TO web_usr; -- -- Name: TABLE individual_alias; Type: ACL; Schema: phenome; Owner: postgres -- GRANT ALL ON TABLE phenome.individual_alias TO web_usr; -- -- Name: SEQUENCE individual_alias_individual_alias_id_seq; Type: ACL; Schema: phenome; Owner: postgres -- GRANT SELECT,USAGE ON SEQUENCE phenome.individual_alias_individual_alias_id_seq TO web_usr; -- -- Name: TABLE individual_allele; Type: ACL; Schema: phenome; Owner: postgres -- GRANT ALL ON TABLE phenome.individual_allele TO web_usr; -- -- Name: SEQUENCE individual_allele_individual_allele_id_seq; Type: ACL; Schema: phenome; Owner: postgres -- GRANT ALL ON SEQUENCE phenome.individual_allele_individual_allele_id_seq TO web_usr; -- -- Name: TABLE individual_dbxref; Type: ACL; Schema: phenome; Owner: postgres -- GRANT ALL ON TABLE phenome.individual_dbxref TO web_usr; -- -- Name: TABLE individual_dbxref_evidence; Type: ACL; Schema: phenome; Owner: postgres -- GRANT ALL ON TABLE phenome.individual_dbxref_evidence TO web_usr; -- -- Name: TABLE individual_dbxref_evidence_history; Type: ACL; Schema: phenome; Owner: postgres -- GRANT ALL ON TABLE phenome.individual_dbxref_evidence_history TO web_usr; -- -- Name: SEQUENCE individual_dbxref_evidence_hi_individual_dbxref_evidence_hi_seq; Type: ACL; Schema: phenome; Owner: postgres -- GRANT ALL ON SEQUENCE phenome.individual_dbxref_evidence_hi_individual_dbxref_evidence_hi_seq TO web_usr; -- -- Name: SEQUENCE individual_dbxref_evidence_individual_dbxref_evidence_id_seq; Type: ACL; Schema: phenome; Owner: postgres -- GRANT ALL ON SEQUENCE phenome.individual_dbxref_evidence_individual_dbxref_evidence_id_seq TO web_usr; -- -- Name: SEQUENCE individual_dbxref_individual_dbxref_id_seq; Type: ACL; Schema: phenome; Owner: postgres -- GRANT ALL ON SEQUENCE phenome.individual_dbxref_individual_dbxref_id_seq TO web_usr; -- -- Name: TABLE individual_history; Type: ACL; Schema: phenome; Owner: postgres -- GRANT ALL ON TABLE phenome.individual_history TO web_usr; -- -- Name: SEQUENCE individual_history_individual_history_id_seq; Type: ACL; Schema: phenome; Owner: postgres -- GRANT ALL ON SEQUENCE phenome.individual_history_individual_history_id_seq TO web_usr; -- -- Name: TABLE individual_image; Type: ACL; Schema: phenome; Owner: postgres -- GRANT ALL ON TABLE phenome.individual_image TO web_usr; -- -- Name: SEQUENCE individual_image_individual_image_id_seq; Type: ACL; Schema: phenome; Owner: postgres -- GRANT ALL ON SEQUENCE phenome.individual_image_individual_image_id_seq TO web_usr; -- -- Name: SEQUENCE individual_individual_id_seq; Type: ACL; Schema: phenome; Owner: postgres -- GRANT ALL ON SEQUENCE phenome.individual_individual_id_seq TO web_usr; -- -- Name: TABLE individual_locus; Type: ACL; Schema: phenome; Owner: postgres -- GRANT ALL ON TABLE phenome.individual_locus TO web_usr; -- -- Name: SEQUENCE individual_locus_individual_locus_id_seq; Type: ACL; Schema: phenome; Owner: postgres -- GRANT SELECT,USAGE ON SEQUENCE phenome.individual_locus_individual_locus_id_seq TO web_usr; -- -- Name: TABLE is_public; Type: ACL; Schema: phenome; Owner: postgres -- GRANT ALL ON TABLE phenome.is_public TO web_usr; -- -- Name: SEQUENCE is_public_is_public_id_seq; Type: ACL; Schema: phenome; Owner: postgres -- GRANT ALL ON SEQUENCE phenome.is_public_is_public_id_seq TO web_usr; -- -- Name: TABLE locus; Type: ACL; Schema: phenome; Owner: postgres -- GRANT ALL ON TABLE phenome.locus TO web_usr; -- -- Name: TABLE locus2locus; Type: ACL; Schema: phenome; Owner: postgres -- GRANT ALL ON TABLE phenome.locus2locus TO web_usr; -- -- Name: SEQUENCE locus2locus_locus2locus_id_seq; Type: ACL; Schema: phenome; Owner: postgres -- GRANT ALL ON SEQUENCE phenome.locus2locus_locus2locus_id_seq TO web_usr; -- -- Name: TABLE locus_alias; Type: ACL; Schema: phenome; Owner: postgres -- GRANT ALL ON TABLE phenome.locus_alias TO web_usr; -- -- Name: SEQUENCE locus_alias_locus_alias_id_seq; Type: ACL; Schema: phenome; Owner: postgres -- GRANT ALL ON SEQUENCE phenome.locus_alias_locus_alias_id_seq TO web_usr; -- -- Name: TABLE locus_dbxref; Type: ACL; Schema: phenome; Owner: postgres -- GRANT ALL ON TABLE phenome.locus_dbxref TO web_usr; -- -- Name: TABLE locus_dbxref_evidence; Type: ACL; Schema: phenome; Owner: postgres -- GRANT ALL ON TABLE phenome.locus_dbxref_evidence TO web_usr; -- -- Name: TABLE locus_dbxref_evidence_history; Type: ACL; Schema: phenome; Owner: postgres -- GRANT ALL ON TABLE phenome.locus_dbxref_evidence_history TO web_usr; -- -- Name: SEQUENCE locus_dbxref_evidence_history_locus_dbxref_evidence_history_seq; Type: ACL; Schema: phenome; Owner: postgres -- GRANT ALL ON SEQUENCE phenome.locus_dbxref_evidence_history_locus_dbxref_evidence_history_seq TO web_usr; -- -- Name: SEQUENCE locus_dbxref_evidence_locus_dbxref_evidence_id_seq; Type: ACL; Schema: phenome; Owner: postgres -- GRANT ALL ON SEQUENCE phenome.locus_dbxref_evidence_locus_dbxref_evidence_id_seq TO web_usr; -- -- Name: SEQUENCE locus_dbxref_locus_dbxref_id_seq; Type: ACL; Schema: phenome; Owner: postgres -- GRANT ALL ON SEQUENCE phenome.locus_dbxref_locus_dbxref_id_seq TO web_usr; -- -- Name: TABLE locus_history; Type: ACL; Schema: phenome; Owner: postgres -- GRANT ALL ON TABLE phenome.locus_history TO web_usr; -- -- Name: SEQUENCE locus_history_locus_history_id_seq; Type: ACL; Schema: phenome; Owner: postgres -- GRANT ALL ON SEQUENCE phenome.locus_history_locus_history_id_seq TO web_usr; -- -- Name: TABLE locus_image; Type: ACL; Schema: phenome; Owner: postgres -- GRANT ALL ON TABLE phenome.locus_image TO web_usr; -- -- Name: SEQUENCE locus_image_locus_image_id_seq; Type: ACL; Schema: phenome; Owner: postgres -- GRANT ALL ON SEQUENCE phenome.locus_image_locus_image_id_seq TO web_usr; -- -- Name: SEQUENCE locus_locus_id_seq; Type: ACL; Schema: phenome; Owner: postgres -- GRANT ALL ON SEQUENCE phenome.locus_locus_id_seq TO web_usr; -- -- Name: TABLE locus_marker; Type: ACL; Schema: phenome; Owner: postgres -- GRANT ALL ON TABLE phenome.locus_marker TO web_usr; -- -- Name: SEQUENCE locus_marker_locus_marker_id_seq; Type: ACL; Schema: phenome; Owner: postgres -- GRANT SELECT,USAGE ON SEQUENCE phenome.locus_marker_locus_marker_id_seq TO web_usr; -- -- Name: TABLE locus_owner; Type: ACL; Schema: phenome; Owner: postgres -- GRANT ALL ON TABLE phenome.locus_owner TO web_usr; -- -- Name: SEQUENCE locus_owner_locus_owner_id_seq; Type: ACL; Schema: phenome; Owner: postgres -- GRANT ALL ON SEQUENCE phenome.locus_owner_locus_owner_id_seq TO web_usr; -- -- Name: TABLE locus_pub_ranking; Type: ACL; Schema: phenome; Owner: postgres -- GRANT ALL ON TABLE phenome.locus_pub_ranking TO web_usr; -- -- Name: TABLE locus_pub_ranking_validate; Type: ACL; Schema: phenome; Owner: postgres -- GRANT ALL ON TABLE phenome.locus_pub_ranking_validate TO web_usr; -- -- Name: TABLE locus_registry; Type: ACL; Schema: phenome; Owner: postgres -- GRANT ALL ON TABLE phenome.locus_registry TO web_usr; -- -- Name: SEQUENCE locus_registry_locus_registry_id_seq; Type: ACL; Schema: phenome; Owner: postgres -- GRANT ALL ON SEQUENCE phenome.locus_registry_locus_registry_id_seq TO web_usr; -- -- Name: TABLE locus_unigene; Type: ACL; Schema: phenome; Owner: postgres -- GRANT ALL ON TABLE phenome.locus_unigene TO web_usr; -- -- Name: SEQUENCE locus_unigene_locus_unigene_id_seq; Type: ACL; Schema: phenome; Owner: postgres -- GRANT ALL ON SEQUENCE phenome.locus_unigene_locus_unigene_id_seq TO web_usr; -- -- Name: TABLE locusgroup; Type: ACL; Schema: phenome; Owner: postgres -- GRANT ALL ON TABLE phenome.locusgroup TO web_usr; -- -- Name: SEQUENCE locusgroup_locusgroup_id_seq; Type: ACL; Schema: phenome; Owner: postgres -- GRANT ALL ON SEQUENCE phenome.locusgroup_locusgroup_id_seq TO web_usr; -- -- Name: TABLE locusgroup_member; Type: ACL; Schema: phenome; Owner: postgres -- GRANT ALL ON TABLE phenome.locusgroup_member TO web_usr; -- -- Name: SEQUENCE locusgroup_member_locusgroup_member_id_seq; Type: ACL; Schema: phenome; Owner: postgres -- GRANT ALL ON SEQUENCE phenome.locusgroup_member_locusgroup_member_id_seq TO web_usr; -- -- Name: TABLE nd_experiment_md_files; Type: ACL; Schema: phenome; Owner: postgres -- GRANT ALL ON TABLE phenome.nd_experiment_md_files TO web_usr; -- -- Name: SEQUENCE nd_experiment_md_files_nd_experiment_md_files_id_seq; Type: ACL; Schema: phenome; Owner: postgres -- GRANT SELECT,USAGE ON SEQUENCE phenome.nd_experiment_md_files_nd_experiment_md_files_id_seq TO web_usr; -- -- Name: TABLE nd_experiment_md_images; Type: ACL; Schema: phenome; Owner: postgres -- GRANT SELECT,INSERT,DELETE ON TABLE phenome.nd_experiment_md_images TO web_usr; -- -- Name: SEQUENCE nd_experiment_md_images_nd_experiment_md_images_id_seq; Type: ACL; Schema: phenome; Owner: postgres -- GRANT USAGE ON SEQUENCE phenome.nd_experiment_md_images_nd_experiment_md_images_id_seq TO web_usr; -- -- Name: TABLE nd_experiment_md_json; Type: ACL; Schema: phenome; Owner: postgres -- GRANT SELECT,INSERT,DELETE,UPDATE ON TABLE phenome.nd_experiment_md_json TO web_usr; -- -- Name: SEQUENCE nd_experiment_md_json_nd_experiment_md_json_id_seq; Type: ACL; Schema: phenome; Owner: postgres -- GRANT USAGE ON SEQUENCE phenome.nd_experiment_md_json_nd_experiment_md_json_id_seq TO web_usr; -- -- Name: TABLE phenotype_user_trait; Type: ACL; Schema: phenome; Owner: postgres -- GRANT ALL ON TABLE phenome.phenotype_user_trait TO web_usr; -- -- Name: SEQUENCE phenotype_user_trait_phenotype_user_trait_id_seq; Type: ACL; Schema: phenome; Owner: postgres -- GRANT ALL ON SEQUENCE phenome.phenotype_user_trait_phenotype_user_trait_id_seq TO web_usr; -- -- Name: TABLE polymorphic_fragment; Type: ACL; Schema: phenome; Owner: postgres -- GRANT ALL ON TABLE phenome.polymorphic_fragment TO web_usr; -- -- Name: SEQUENCE polymorphic_fragment_polymorphic_fragment_id_seq; Type: ACL; Schema: phenome; Owner: postgres -- GRANT ALL ON SEQUENCE phenome.polymorphic_fragment_polymorphic_fragment_id_seq TO web_usr; -- -- Name: TABLE population; Type: ACL; Schema: phenome; Owner: postgres -- GRANT ALL ON TABLE phenome.population TO web_usr; -- -- Name: TABLE population_dbxref; Type: ACL; Schema: phenome; Owner: postgres -- GRANT ALL ON TABLE phenome.population_dbxref TO web_usr; -- -- Name: SEQUENCE population_dbxref_population_dbxref_id_seq; Type: ACL; Schema: phenome; Owner: postgres -- GRANT ALL ON SEQUENCE phenome.population_dbxref_population_dbxref_id_seq TO web_usr; -- -- Name: SEQUENCE population_population_id_seq; Type: ACL; Schema: phenome; Owner: postgres -- GRANT ALL ON SEQUENCE phenome.population_population_id_seq TO web_usr; -- -- Name: TABLE project_md_image; Type: ACL; Schema: phenome; Owner: postgres -- GRANT SELECT,INSERT,DELETE ON TABLE phenome.project_md_image TO web_usr; -- -- Name: SEQUENCE project_md_image_project_md_image_id_seq; Type: ACL; Schema: phenome; Owner: postgres -- GRANT USAGE ON SEQUENCE phenome.project_md_image_project_md_image_id_seq TO web_usr; -- -- Name: TABLE pub_curator; Type: ACL; Schema: phenome; Owner: postgres -- GRANT ALL ON TABLE phenome.pub_curator TO web_usr; -- -- Name: SEQUENCE pub_curator_pub_curator_id_seq; Type: ACL; Schema: phenome; Owner: postgres -- GRANT ALL ON SEQUENCE phenome.pub_curator_pub_curator_id_seq TO web_usr; -- -- Name: TABLE registry; Type: ACL; Schema: phenome; Owner: postgres -- GRANT ALL ON TABLE phenome.registry TO web_usr; -- -- Name: SEQUENCE registry_registry_id_seq; Type: ACL; Schema: phenome; Owner: postgres -- GRANT ALL ON SEQUENCE phenome.registry_registry_id_seq TO web_usr; -- -- Name: TABLE stock_allele; Type: ACL; Schema: phenome; Owner: postgres -- GRANT ALL ON TABLE phenome.stock_allele TO web_usr; -- -- Name: SEQUENCE stock_allele_stock_allele_id_seq; Type: ACL; Schema: phenome; Owner: postgres -- GRANT SELECT,USAGE ON SEQUENCE phenome.stock_allele_stock_allele_id_seq TO web_usr; -- -- Name: TABLE stock_image; Type: ACL; Schema: phenome; Owner: postgres -- GRANT ALL ON TABLE phenome.stock_image TO web_usr; -- -- Name: SEQUENCE stock_image_stock_image_id_seq; Type: ACL; Schema: phenome; Owner: postgres -- GRANT SELECT,USAGE ON SEQUENCE phenome.stock_image_stock_image_id_seq TO web_usr; -- -- Name: TABLE stock_owner; Type: ACL; Schema: phenome; Owner: postgres -- GRANT ALL ON TABLE phenome.stock_owner TO web_usr; -- -- Name: SEQUENCE stock_owner_stock_owner_id_seq; Type: ACL; Schema: phenome; Owner: postgres -- GRANT SELECT,USAGE ON SEQUENCE phenome.stock_owner_stock_owner_id_seq TO web_usr; -- -- Name: TABLE tomato_il_bin; Type: ACL; Schema: phenome; Owner: postgres -- GRANT SELECT ON TABLE phenome.tomato_il_bin TO PUBLIC; GRANT ALL ON TABLE phenome.tomato_il_bin TO web_usr; -- -- Name: SEQUENCE tomato_il_bin_il_bin_id_seq; Type: ACL; Schema: phenome; Owner: postgres -- GRANT ALL ON SEQUENCE phenome.tomato_il_bin_il_bin_id_seq TO web_usr; -- -- Name: TABLE tomato_term; Type: ACL; Schema: phenome; Owner: postgres -- GRANT ALL ON TABLE phenome.tomato_term TO web_usr; -- -- Name: TABLE tomato_term2term; Type: ACL; Schema: phenome; Owner: postgres -- GRANT ALL ON TABLE phenome.tomato_term2term TO web_usr; -- -- Name: SEQUENCE tomato_term2term_tomato_term2term_id_seq; Type: ACL; Schema: phenome; Owner: postgres -- GRANT ALL ON SEQUENCE phenome.tomato_term2term_tomato_term2term_id_seq TO web_usr; -- -- Name: SEQUENCE tomato_term_tomato_term_id_seq; Type: ACL; Schema: phenome; Owner: postgres -- GRANT ALL ON SEQUENCE phenome.tomato_term_tomato_term_id_seq TO web_usr; -- -- Name: TABLE unit; Type: ACL; Schema: phenome; Owner: postgres -- GRANT ALL ON TABLE phenome.unit TO web_usr; -- -- Name: SEQUENCE unit_unit_id_seq; Type: ACL; Schema: phenome; Owner: postgres -- GRANT ALL ON SEQUENCE phenome.unit_unit_id_seq TO web_usr; -- -- Name: TABLE user_trait; Type: ACL; Schema: phenome; Owner: postgres -- GRANT ALL ON TABLE phenome.user_trait TO web_usr; -- -- Name: TABLE user_trait_unit; Type: ACL; Schema: phenome; Owner: postgres -- GRANT ALL ON TABLE phenome.user_trait_unit TO web_usr; -- -- Name: SEQUENCE user_trait_unit_user_trait_unit_id_seq; Type: ACL; Schema: phenome; Owner: postgres -- GRANT ALL ON SEQUENCE phenome.user_trait_unit_user_trait_unit_id_seq TO web_usr; -- -- Name: SEQUENCE user_trait_user_trait_id_seq; Type: ACL; Schema: phenome; Owner: postgres -- GRANT ALL ON SEQUENCE phenome.user_trait_user_trait_id_seq TO web_usr; -- -- Name: TABLE variant; Type: ACL; Schema: phenome; Owner: postgres -- GRANT ALL ON TABLE phenome.variant TO web_usr; -- -- Name: SEQUENCE variant_variant_id_seq; Type: ACL; Schema: phenome; Owner: postgres -- GRANT ALL ON SEQUENCE phenome.variant_variant_id_seq TO web_usr; -- -- Name: TABLE ba_plausibility; Type: ACL; Schema: physical; Owner: postgres -- GRANT SELECT ON TABLE physical.ba_plausibility TO web_usr; -- -- Name: SEQUENCE ba_plausibility_bap_id_seq; Type: ACL; Schema: physical; Owner: postgres -- GRANT ALL ON SEQUENCE physical.ba_plausibility_bap_id_seq TO web_usr; -- -- Name: TABLE bac_associations; Type: ACL; Schema: physical; Owner: postgres -- GRANT SELECT ON TABLE physical.bac_associations TO web_usr; -- -- Name: SEQUENCE bac_associations_bac_assoc_id_seq; Type: ACL; Schema: physical; Owner: postgres -- GRANT ALL ON SEQUENCE physical.bac_associations_bac_assoc_id_seq TO web_usr; -- -- Name: TABLE bac_consensus_sequences; Type: ACL; Schema: physical; Owner: postgres -- GRANT SELECT ON TABLE physical.bac_consensus_sequences TO web_usr; -- -- Name: SEQUENCE bac_consensus_sequences_consensus_seq_id_seq; Type: ACL; Schema: physical; Owner: postgres -- GRANT ALL ON SEQUENCE physical.bac_consensus_sequences_consensus_seq_id_seq TO web_usr; -- -- Name: TABLE bac_contigs; Type: ACL; Schema: physical; Owner: postgres -- GRANT SELECT ON TABLE physical.bac_contigs TO web_usr; -- -- Name: SEQUENCE bac_contigs_bac_contig_id_seq; Type: ACL; Schema: physical; Owner: postgres -- GRANT ALL ON SEQUENCE physical.bac_contigs_bac_contig_id_seq TO web_usr; -- -- Name: TABLE bac_end_sequences; Type: ACL; Schema: physical; Owner: postgres -- GRANT SELECT ON TABLE physical.bac_end_sequences TO web_usr; -- -- Name: SEQUENCE bac_end_sequences_end_seq_id_seq; Type: ACL; Schema: physical; Owner: postgres -- GRANT ALL ON SEQUENCE physical.bac_end_sequences_end_seq_id_seq TO web_usr; -- -- Name: TABLE bac_marker_matches; Type: ACL; Schema: physical; Owner: postgres -- GRANT SELECT ON TABLE physical.bac_marker_matches TO web_usr; -- -- Name: TABLE bacs; Type: ACL; Schema: physical; Owner: postgres -- GRANT SELECT ON TABLE physical.bacs TO web_usr; -- -- Name: SEQUENCE bacs_bac_id_seq; Type: ACL; Schema: physical; Owner: postgres -- GRANT ALL ON SEQUENCE physical.bacs_bac_id_seq TO web_usr; -- -- Name: TABLE computational_associations; Type: ACL; Schema: physical; Owner: postgres -- GRANT SELECT ON TABLE physical.computational_associations TO web_usr; -- -- Name: TABLE contig_sizes; Type: ACL; Schema: physical; Owner: postgres -- GRANT SELECT ON TABLE physical.contig_sizes TO web_usr; -- -- Name: SEQUENCE contig_sizes_contig_size_id_seq; Type: ACL; Schema: physical; Owner: postgres -- GRANT ALL ON SEQUENCE physical.contig_sizes_contig_size_id_seq TO web_usr; -- -- Name: TABLE deprecated_probes; Type: ACL; Schema: physical; Owner: postgres -- GRANT SELECT ON TABLE physical.deprecated_probes TO web_usr; -- -- Name: SEQUENCE deprecated_probes_dp_id_seq; Type: ACL; Schema: physical; Owner: postgres -- GRANT ALL ON SEQUENCE physical.deprecated_probes_dp_id_seq TO web_usr; -- -- Name: TABLE fpc_data; Type: ACL; Schema: physical; Owner: postgres -- GRANT SELECT ON TABLE physical.fpc_data TO web_usr; -- -- Name: SEQUENCE fpc_data_fpc_datum_id_seq; Type: ACL; Schema: physical; Owner: postgres -- GRANT ALL ON SEQUENCE physical.fpc_data_fpc_datum_id_seq TO web_usr; -- -- Name: TABLE fpc_version; Type: ACL; Schema: physical; Owner: postgres -- GRANT SELECT ON TABLE physical.fpc_version TO web_usr; -- -- Name: SEQUENCE fpc_version_fpc_version_seq; Type: ACL; Schema: physical; Owner: postgres -- GRANT ALL ON SEQUENCE physical.fpc_version_fpc_version_seq TO web_usr; -- -- Name: TABLE manual_associations; Type: ACL; Schema: physical; Owner: postgres -- GRANT SELECT ON TABLE physical.manual_associations TO web_usr; -- -- Name: TABLE oa_plausibility; Type: ACL; Schema: physical; Owner: postgres -- GRANT SELECT ON TABLE physical.oa_plausibility TO web_usr; -- -- Name: SEQUENCE oa_plausibility_oap_id_seq; Type: ACL; Schema: physical; Owner: postgres -- GRANT ALL ON SEQUENCE physical.oa_plausibility_oap_id_seq TO web_usr; -- -- Name: TABLE overgo_associations; Type: ACL; Schema: physical; Owner: postgres -- GRANT SELECT ON TABLE physical.overgo_associations TO web_usr; -- -- Name: SEQUENCE overgo_associations_overgo_assoc_id_seq; Type: ACL; Schema: physical; Owner: postgres -- GRANT ALL ON SEQUENCE physical.overgo_associations_overgo_assoc_id_seq TO web_usr; -- -- Name: TABLE overgo_plates; Type: ACL; Schema: physical; Owner: postgres -- GRANT SELECT ON TABLE physical.overgo_plates TO web_usr; -- -- Name: SEQUENCE overgo_plates_plate_id_seq; Type: ACL; Schema: physical; Owner: postgres -- GRANT ALL ON SEQUENCE physical.overgo_plates_plate_id_seq TO web_usr; -- -- Name: TABLE overgo_results; Type: ACL; Schema: physical; Owner: postgres -- GRANT SELECT ON TABLE physical.overgo_results TO web_usr; -- -- Name: SEQUENCE overgo_results_result_id_seq; Type: ACL; Schema: physical; Owner: postgres -- GRANT ALL ON SEQUENCE physical.overgo_results_result_id_seq TO web_usr; -- -- Name: TABLE overgo_version; Type: ACL; Schema: physical; Owner: postgres -- GRANT SELECT ON TABLE physical.overgo_version TO web_usr; -- -- Name: SEQUENCE overgo_version_overgo_version_seq; Type: ACL; Schema: physical; Owner: postgres -- GRANT ALL ON SEQUENCE physical.overgo_version_overgo_version_seq TO web_usr; -- -- Name: TABLE plausible_bacs_in_all_contigs; Type: ACL; Schema: physical; Owner: postgres -- GRANT SELECT ON TABLE physical.plausible_bacs_in_all_contigs TO web_usr; -- -- Name: TABLE probe_markers; Type: ACL; Schema: physical; Owner: postgres -- GRANT SELECT ON TABLE physical.probe_markers TO web_usr; -- -- Name: SEQUENCE probe_markers_overgo_probe_id_seq; Type: ACL; Schema: physical; Owner: postgres -- GRANT ALL ON SEQUENCE physical.probe_markers_overgo_probe_id_seq TO web_usr; -- -- Name: TABLE species; Type: ACL; Schema: physical; Owner: postgres -- GRANT SELECT ON TABLE physical.species TO web_usr; -- -- Name: SEQUENCE species_species_id_seq; Type: ACL; Schema: physical; Owner: postgres -- GRANT ALL ON SEQUENCE physical.species_species_id_seq TO web_usr; -- -- Name: TABLE tentative_association_conflict_groups; Type: ACL; Schema: physical; Owner: postgres -- GRANT SELECT ON TABLE physical.tentative_association_conflict_groups TO web_usr; -- -- Name: SEQUENCE tentative_association_conflict_groups_tacg_id_seq; Type: ACL; Schema: physical; Owner: postgres -- GRANT ALL ON SEQUENCE physical.tentative_association_conflict_groups_tacg_id_seq TO web_usr; -- -- Name: TABLE tentative_overgo_associations; Type: ACL; Schema: physical; Owner: postgres -- GRANT SELECT ON TABLE physical.tentative_overgo_associations TO web_usr; -- -- Name: SEQUENCE tentative_overgo_associations_tentative_assoc_id_seq; Type: ACL; Schema: physical; Owner: postgres -- GRANT ALL ON SEQUENCE physical.tentative_overgo_associations_tentative_assoc_id_seq TO web_usr; -- -- Name: TABLE users; Type: ACL; Schema: physical; Owner: postgres -- GRANT SELECT ON TABLE physical.users TO web_usr; -- -- Name: SEQUENCE users_user_id_seq; Type: ACL; Schema: physical; Owner: postgres -- GRANT ALL ON SEQUENCE physical.users_user_id_seq TO web_usr; -- -- Name: TABLE stock; Type: ACL; Schema: public; Owner: postgres -- GRANT ALL ON TABLE public.stock TO web_usr; -- -- Name: TABLE nd_experiment; Type: ACL; Schema: public; Owner: postgres -- GRANT ALL ON TABLE public.nd_experiment TO web_usr; -- -- Name: TABLE nd_experiment_phenotype; Type: ACL; Schema: public; Owner: postgres -- GRANT ALL ON TABLE public.nd_experiment_phenotype TO web_usr; -- -- Name: TABLE nd_experiment_project; Type: ACL; Schema: public; Owner: postgres -- GRANT ALL ON TABLE public.nd_experiment_project TO web_usr; -- -- Name: TABLE nd_experiment_stock; Type: ACL; Schema: public; Owner: postgres -- GRANT ALL ON TABLE public.nd_experiment_stock TO web_usr; -- -- Name: TABLE nd_geolocation; Type: ACL; Schema: public; Owner: postgres -- GRANT ALL ON TABLE public.nd_geolocation TO web_usr; -- -- Name: TABLE phenotype; Type: ACL; Schema: public; Owner: postgres -- GRANT ALL ON TABLE public.phenotype TO web_usr; -- -- Name: TABLE project; Type: ACL; Schema: public; Owner: postgres -- GRANT ALL ON TABLE public.project TO web_usr; -- -- Name: TABLE project_relationship; Type: ACL; Schema: public; Owner: postgres -- GRANT ALL ON TABLE public.project_relationship TO web_usr; -- -- Name: TABLE projectprop; Type: ACL; Schema: public; Owner: postgres -- GRANT ALL ON TABLE public.projectprop TO web_usr; -- -- Name: TABLE stock_relationship; Type: ACL; Schema: public; Owner: postgres -- GRANT ALL ON TABLE public.stock_relationship TO web_usr; -- -- Name: TABLE nd_experiment_genotype; Type: ACL; Schema: public; Owner: postgres -- GRANT ALL ON TABLE public.nd_experiment_genotype TO web_usr; -- -- Name: TABLE nd_experiment_protocol; Type: ACL; Schema: public; Owner: postgres -- GRANT ALL ON TABLE public.nd_experiment_protocol TO web_usr; -- -- Name: TABLE nd_protocol; Type: ACL; Schema: public; Owner: postgres -- GRANT ALL ON TABLE public.nd_protocol TO web_usr; -- -- Name: TABLE cvterm_relationship; Type: ACL; Schema: public; Owner: postgres -- GRANT ALL ON TABLE public.cvterm_relationship TO web_usr; -- -- Name: TABLE cv; Type: ACL; Schema: public; Owner: postgres -- GRANT ALL ON TABLE public.cv TO web_usr; -- -- Name: TABLE analysis; Type: ACL; Schema: public; Owner: postgres -- GRANT ALL ON TABLE public.analysis TO web_usr; -- -- Name: SEQUENCE analysis_analysis_id_seq; Type: ACL; Schema: public; Owner: postgres -- GRANT SELECT,USAGE ON SEQUENCE public.analysis_analysis_id_seq TO web_usr; -- -- Name: TABLE analysisfeature; Type: ACL; Schema: public; Owner: postgres -- GRANT ALL ON TABLE public.analysisfeature TO web_usr; -- -- Name: SEQUENCE analysisfeature_analysisfeature_id_seq; Type: ACL; Schema: public; Owner: postgres -- GRANT SELECT,USAGE ON SEQUENCE public.analysisfeature_analysisfeature_id_seq TO web_usr; -- -- Name: TABLE analysisprop; Type: ACL; Schema: public; Owner: postgres -- GRANT ALL ON TABLE public.analysisprop TO web_usr; -- -- Name: SEQUENCE analysisprop_analysisprop_id_seq; Type: ACL; Schema: public; Owner: postgres -- GRANT SELECT,USAGE ON SEQUENCE public.analysisprop_analysisprop_id_seq TO web_usr; -- -- Name: TABLE ara_annotation; Type: ACL; Schema: public; Owner: postgres -- GRANT ALL ON TABLE public.ara_annotation TO web_usr; -- -- Name: TABLE ara_domain; Type: ACL; Schema: public; Owner: postgres -- GRANT ALL ON TABLE public.ara_domain TO web_usr; -- -- Name: TABLE ara_evidef; Type: ACL; Schema: public; Owner: postgres -- GRANT ALL ON TABLE public.ara_evidef TO web_usr; -- -- Name: TABLE ara_family; Type: ACL; Schema: public; Owner: postgres -- GRANT ALL ON TABLE public.ara_family TO web_usr; -- -- Name: TABLE ara_gfp_ms; Type: ACL; Schema: public; Owner: postgres -- GRANT ALL ON TABLE public.ara_gfp_ms TO web_usr; -- -- Name: TABLE ara_go_term; Type: ACL; Schema: public; Owner: postgres -- GRANT ALL ON TABLE public.ara_go_term TO web_usr; -- -- Name: TABLE ara_interactome_all; Type: ACL; Schema: public; Owner: postgres -- GRANT ALL ON TABLE public.ara_interactome_all TO web_usr; -- -- Name: TABLE ara_interactome_unique; Type: ACL; Schema: public; Owner: postgres -- GRANT ALL ON TABLE public.ara_interactome_unique TO web_usr; -- -- Name: TABLE ara_intron; Type: ACL; Schema: public; Owner: postgres -- GRANT ALL ON TABLE public.ara_intron TO web_usr; -- -- Name: TABLE ara_map; Type: ACL; Schema: public; Owner: postgres -- GRANT ALL ON TABLE public.ara_map TO web_usr; -- -- Name: TABLE ara_myristoylation; Type: ACL; Schema: public; Owner: postgres -- GRANT ALL ON TABLE public.ara_myristoylation TO web_usr; -- -- Name: TABLE ara_pmidlink; Type: ACL; Schema: public; Owner: postgres -- GRANT ALL ON TABLE public.ara_pmidlink TO web_usr; -- -- Name: TABLE ara_prefix_info; Type: ACL; Schema: public; Owner: postgres -- GRANT ALL ON TABLE public.ara_prefix_info TO web_usr; -- -- Name: TABLE ara_properties; Type: ACL; Schema: public; Owner: postgres -- GRANT ALL ON TABLE public.ara_properties TO web_usr; -- -- Name: TABLE ara_scop; Type: ACL; Schema: public; Owner: postgres -- GRANT ALL ON TABLE public.ara_scop TO web_usr; -- -- Name: TABLE ara_sequence; Type: ACL; Schema: public; Owner: postgres -- GRANT ALL ON TABLE public.ara_sequence TO web_usr; -- -- Name: TABLE ara_signalp; Type: ACL; Schema: public; Owner: postgres -- GRANT ALL ON TABLE public.ara_signalp TO web_usr; -- -- Name: TABLE ara_targetp; Type: ACL; Schema: public; Owner: postgres -- GRANT ALL ON TABLE public.ara_targetp TO web_usr; -- -- Name: TABLE ara_users; Type: ACL; Schema: public; Owner: postgres -- GRANT ALL ON TABLE public.ara_users TO web_usr; -- -- Name: SEQUENCE ara_users_id_seq; Type: ACL; Schema: public; Owner: postgres -- GRANT SELECT,USAGE ON SEQUENCE public.ara_users_id_seq TO web_usr; -- -- Name: TABLE blastwatch_queries; Type: ACL; Schema: public; Owner: postgres -- GRANT ALL ON TABLE public.blastwatch_queries TO web_usr; -- -- Name: SEQUENCE blastwatch_queries_blastwatch_queries_id_seq; Type: ACL; Schema: public; Owner: postgres -- GRANT ALL ON SEQUENCE public.blastwatch_queries_blastwatch_queries_id_seq TO web_usr; -- -- Name: TABLE blastwatch_results; Type: ACL; Schema: public; Owner: postgres -- GRANT ALL ON TABLE public.blastwatch_results TO web_usr; -- -- Name: SEQUENCE blastwatch_results_blastwatch_results_id_seq; Type: ACL; Schema: public; Owner: postgres -- GRANT ALL ON SEQUENCE public.blastwatch_results_blastwatch_results_id_seq TO web_usr; -- -- Name: TABLE bug; Type: ACL; Schema: public; Owner: postgres -- GRANT ALL ON TABLE public.bug TO web_usr; -- -- Name: SEQUENCE bug_bug_id_seq; Type: ACL; Schema: public; Owner: postgres -- GRANT ALL ON SEQUENCE public.bug_bug_id_seq TO web_usr; -- -- Name: TABLE contact; Type: ACL; Schema: public; Owner: postgres -- GRANT ALL ON TABLE public.contact TO web_usr; -- -- Name: SEQUENCE contact_contact_id_seq; Type: ACL; Schema: public; Owner: postgres -- GRANT SELECT,USAGE ON SEQUENCE public.contact_contact_id_seq TO web_usr; -- -- Name: TABLE contact_relationship; Type: ACL; Schema: public; Owner: postgres -- GRANT ALL ON TABLE public.contact_relationship TO web_usr; -- -- Name: SEQUENCE contact_relationship_contact_relationship_id_seq; Type: ACL; Schema: public; Owner: postgres -- GRANT SELECT,USAGE ON SEQUENCE public.contact_relationship_contact_relationship_id_seq TO web_usr; -- -- Name: SEQUENCE cv_cv_id_seq; Type: ACL; Schema: public; Owner: postgres -- GRANT SELECT,USAGE ON SEQUENCE public.cv_cv_id_seq TO web_usr; -- -- Name: TABLE cvprop; Type: ACL; Schema: public; Owner: postgres -- GRANT ALL ON TABLE public.cvprop TO web_usr; -- -- Name: SEQUENCE cvprop_cvprop_id_seq; Type: ACL; Schema: public; Owner: postgres -- GRANT SELECT,USAGE ON SEQUENCE public.cvprop_cvprop_id_seq TO web_usr; -- -- Name: SEQUENCE cvterm_cvterm_id_seq; Type: ACL; Schema: public; Owner: postgres -- GRANT ALL ON SEQUENCE public.cvterm_cvterm_id_seq TO web_usr; -- -- Name: TABLE cvterm_dbxref; Type: ACL; Schema: public; Owner: postgres -- GRANT ALL ON TABLE public.cvterm_dbxref TO web_usr; -- -- Name: SEQUENCE cvterm_dbxref_cvterm_dbxref_id_seq; Type: ACL; Schema: public; Owner: postgres -- GRANT SELECT,USAGE ON SEQUENCE public.cvterm_dbxref_cvterm_dbxref_id_seq TO web_usr; -- -- Name: SEQUENCE cvterm_relationship_cvterm_relationship_id_seq; Type: ACL; Schema: public; Owner: postgres -- GRANT ALL ON SEQUENCE public.cvterm_relationship_cvterm_relationship_id_seq TO web_usr; -- -- Name: TABLE cvtermpath; Type: ACL; Schema: public; Owner: postgres -- GRANT ALL ON TABLE public.cvtermpath TO web_usr; -- -- Name: SEQUENCE cvtermpath_cvtermpath_id_seq; Type: ACL; Schema: public; Owner: postgres -- GRANT SELECT,USAGE ON SEQUENCE public.cvtermpath_cvtermpath_id_seq TO web_usr; -- -- Name: TABLE cvtermprop; Type: ACL; Schema: public; Owner: postgres -- GRANT ALL ON TABLE public.cvtermprop TO web_usr; -- -- Name: SEQUENCE cvtermprop_cvtermprop_id_seq; Type: ACL; Schema: public; Owner: postgres -- GRANT SELECT,USAGE ON SEQUENCE public.cvtermprop_cvtermprop_id_seq TO web_usr; -- -- Name: TABLE cvtermsynonym; Type: ACL; Schema: public; Owner: postgres -- GRANT ALL ON TABLE public.cvtermsynonym TO web_usr; -- -- Name: SEQUENCE cvtermsynonym_cvtermsynonym_id_seq; Type: ACL; Schema: public; Owner: postgres -- GRANT ALL ON SEQUENCE public.cvtermsynonym_cvtermsynonym_id_seq TO web_usr; -- -- Name: TABLE cxgn_bac_pipeline_genbank_log; Type: ACL; Schema: public; Owner: postgres -- GRANT ALL ON TABLE public.cxgn_bac_pipeline_genbank_log TO web_usr; -- -- Name: SEQUENCE cxgn_bac_pipeline_genbank_log_id_seq; Type: ACL; Schema: public; Owner: postgres -- GRANT ALL ON SEQUENCE public.cxgn_bac_pipeline_genbank_log_id_seq TO web_usr; -- -- Name: TABLE cxgn_bac_pipeline_loading_log; Type: ACL; Schema: public; Owner: postgres -- GRANT ALL ON TABLE public.cxgn_bac_pipeline_loading_log TO web_usr; -- -- Name: SEQUENCE cxgn_bac_pipeline_loading_log_id_seq; Type: ACL; Schema: public; Owner: postgres -- GRANT ALL ON SEQUENCE public.cxgn_bac_pipeline_loading_log_id_seq TO web_usr; -- -- Name: TABLE cxgn_bac_pipeline_processing_log; Type: ACL; Schema: public; Owner: postgres -- GRANT ALL ON TABLE public.cxgn_bac_pipeline_processing_log TO web_usr; -- -- Name: SEQUENCE cxgn_bac_pipeline_processing_log_id_seq; Type: ACL; Schema: public; Owner: postgres -- GRANT ALL ON SEQUENCE public.cxgn_bac_pipeline_processing_log_id_seq TO web_usr; -- -- Name: TABLE cxgn_indexedlog_test_feel_free_to_delete_me; Type: ACL; Schema: public; Owner: postgres -- GRANT ALL ON TABLE public.cxgn_indexedlog_test_feel_free_to_delete_me TO web_usr; -- -- Name: SEQUENCE cxgn_indexedlog_test_feel_free_to_delete_me_id_seq; Type: ACL; Schema: public; Owner: postgres -- GRANT SELECT,USAGE ON SEQUENCE public.cxgn_indexedlog_test_feel_free_to_delete_me_id_seq TO web_usr; -- -- Name: SEQUENCE db_db_id_seq; Type: ACL; Schema: public; Owner: postgres -- GRANT SELECT,USAGE ON SEQUENCE public.db_db_id_seq TO web_usr; -- -- Name: SEQUENCE dbxref_dbxref_id_seq; Type: ACL; Schema: public; Owner: postgres -- GRANT ALL ON SEQUENCE public.dbxref_dbxref_id_seq TO web_usr; -- -- Name: TABLE dbxrefprop; Type: ACL; Schema: public; Owner: postgres -- GRANT ALL ON TABLE public.dbxrefprop TO web_usr; -- -- Name: SEQUENCE dbxrefprop_dbxrefprop_id_seq; Type: ACL; Schema: public; Owner: postgres -- GRANT SELECT,USAGE ON SEQUENCE public.dbxrefprop_dbxrefprop_id_seq TO web_usr; -- -- Name: TABLE environment; Type: ACL; Schema: public; Owner: postgres -- GRANT ALL ON TABLE public.environment TO web_usr; -- -- Name: TABLE environment_cvterm; Type: ACL; Schema: public; Owner: postgres -- GRANT ALL ON TABLE public.environment_cvterm TO web_usr; -- -- Name: SEQUENCE environment_cvterm_environment_cvterm_id_seq; Type: ACL; Schema: public; Owner: postgres -- GRANT SELECT,USAGE ON SEQUENCE public.environment_cvterm_environment_cvterm_id_seq TO web_usr; -- -- Name: SEQUENCE environment_environment_id_seq; Type: ACL; Schema: public; Owner: postgres -- GRANT SELECT,USAGE ON SEQUENCE public.environment_environment_id_seq TO web_usr; -- -- Name: TABLE enzyme_restriction_sites; Type: ACL; Schema: public; Owner: postgres -- GRANT ALL ON TABLE public.enzyme_restriction_sites TO web_usr; -- -- Name: SEQUENCE enzyme_restriction_sites_enzyme_restriction_sites_id_seq; Type: ACL; Schema: public; Owner: postgres -- GRANT SELECT,USAGE ON SEQUENCE public.enzyme_restriction_sites_enzyme_restriction_sites_id_seq TO web_usr; -- -- Name: TABLE family; Type: ACL; Schema: sgn; Owner: postgres -- GRANT ALL ON TABLE sgn.family TO web_usr; -- -- Name: TABLE family; Type: ACL; Schema: public; Owner: postgres -- GRANT ALL ON TABLE public.family TO web_usr; -- -- Name: TABLE family_build; Type: ACL; Schema: sgn; Owner: postgres -- GRANT ALL ON TABLE sgn.family_build TO web_usr; -- -- Name: TABLE family_build; Type: ACL; Schema: public; Owner: postgres -- GRANT ALL ON TABLE public.family_build TO web_usr; -- -- Name: TABLE family_member; Type: ACL; Schema: sgn; Owner: postgres -- GRANT ALL ON TABLE sgn.family_member TO web_usr; -- -- Name: TABLE family_member; Type: ACL; Schema: public; Owner: postgres -- GRANT ALL ON TABLE public.family_member TO web_usr; -- -- Name: TABLE feature_cvterm_dbxref; Type: ACL; Schema: public; Owner: postgres -- GRANT ALL ON TABLE public.feature_cvterm_dbxref TO web_usr; -- -- Name: SEQUENCE feature_cvterm_dbxref_feature_cvterm_dbxref_id_seq; Type: ACL; Schema: public; Owner: postgres -- GRANT SELECT,USAGE ON SEQUENCE public.feature_cvterm_dbxref_feature_cvterm_dbxref_id_seq TO web_usr; -- -- Name: SEQUENCE feature_cvterm_feature_cvterm_id_seq; Type: ACL; Schema: public; Owner: postgres -- GRANT SELECT,USAGE ON SEQUENCE public.feature_cvterm_feature_cvterm_id_seq TO web_usr; -- -- Name: TABLE feature_cvterm_pub; Type: ACL; Schema: public; Owner: postgres -- GRANT ALL ON TABLE public.feature_cvterm_pub TO web_usr; -- -- Name: SEQUENCE feature_cvterm_pub_feature_cvterm_pub_id_seq; Type: ACL; Schema: public; Owner: postgres -- GRANT SELECT,USAGE ON SEQUENCE public.feature_cvterm_pub_feature_cvterm_pub_id_seq TO web_usr; -- -- Name: TABLE feature_cvtermprop; Type: ACL; Schema: public; Owner: postgres -- GRANT ALL ON TABLE public.feature_cvtermprop TO web_usr; -- -- Name: SEQUENCE feature_cvtermprop_feature_cvtermprop_id_seq; Type: ACL; Schema: public; Owner: postgres -- GRANT SELECT,USAGE ON SEQUENCE public.feature_cvtermprop_feature_cvtermprop_id_seq TO web_usr; -- -- Name: SEQUENCE feature_dbxref_feature_dbxref_id_seq; Type: ACL; Schema: public; Owner: postgres -- GRANT ALL ON SEQUENCE public.feature_dbxref_feature_dbxref_id_seq TO web_usr; -- -- Name: SEQUENCE feature_feature_id_seq; Type: ACL; Schema: public; Owner: postgres -- GRANT ALL ON SEQUENCE public.feature_feature_id_seq TO web_usr; -- -- Name: TABLE feature_genotype; Type: ACL; Schema: public; Owner: postgres -- GRANT ALL ON TABLE public.feature_genotype TO web_usr; -- -- Name: SEQUENCE feature_genotype_feature_genotype_id_seq; Type: ACL; Schema: public; Owner: postgres -- GRANT SELECT,USAGE ON SEQUENCE public.feature_genotype_feature_genotype_id_seq TO web_usr; -- -- Name: SEQUENCE feature_pub_feature_pub_id_seq; Type: ACL; Schema: public; Owner: postgres -- GRANT SELECT,USAGE ON SEQUENCE public.feature_pub_feature_pub_id_seq TO web_usr; -- -- Name: TABLE feature_relationship; Type: ACL; Schema: public; Owner: postgres -- GRANT ALL ON TABLE public.feature_relationship TO web_usr; -- -- Name: SEQUENCE feature_relationship_feature_relationship_id_seq; Type: ACL; Schema: public; Owner: postgres -- GRANT SELECT,USAGE ON SEQUENCE public.feature_relationship_feature_relationship_id_seq TO web_usr; -- -- Name: TABLE feature_relationship_pub; Type: ACL; Schema: public; Owner: postgres -- GRANT ALL ON TABLE public.feature_relationship_pub TO web_usr; -- -- Name: SEQUENCE feature_relationship_pub_feature_relationship_pub_id_seq; Type: ACL; Schema: public; Owner: postgres -- GRANT SELECT,USAGE ON SEQUENCE public.feature_relationship_pub_feature_relationship_pub_id_seq TO web_usr; -- -- Name: TABLE feature_relationshipprop; Type: ACL; Schema: public; Owner: postgres -- GRANT ALL ON TABLE public.feature_relationshipprop TO web_usr; -- -- Name: SEQUENCE feature_relationshipprop_feature_relationshipprop_id_seq; Type: ACL; Schema: public; Owner: postgres -- GRANT SELECT,USAGE ON SEQUENCE public.feature_relationshipprop_feature_relationshipprop_id_seq TO web_usr; -- -- Name: TABLE feature_relationshipprop_pub; Type: ACL; Schema: public; Owner: postgres -- GRANT ALL ON TABLE public.feature_relationshipprop_pub TO web_usr; -- -- Name: SEQUENCE feature_relationshipprop_pub_feature_relationshipprop_pub_i_seq; Type: ACL; Schema: public; Owner: postgres -- GRANT SELECT,USAGE ON SEQUENCE public.feature_relationshipprop_pub_feature_relationshipprop_pub_i_seq TO web_usr; -- -- Name: SEQUENCE feature_synonym_feature_synonym_id_seq; Type: ACL; Schema: public; Owner: postgres -- GRANT SELECT,USAGE ON SEQUENCE public.feature_synonym_feature_synonym_id_seq TO web_usr; -- -- Name: SEQUENCE feature_uniquename_seq; Type: ACL; Schema: public; Owner: postgres -- GRANT SELECT,USAGE ON SEQUENCE public.feature_uniquename_seq TO web_usr; -- -- Name: SEQUENCE featureloc_featureloc_id_seq; Type: ACL; Schema: public; Owner: postgres -- GRANT SELECT,USAGE ON SEQUENCE public.featureloc_featureloc_id_seq TO web_usr; -- -- Name: TABLE featureloc_pub; Type: ACL; Schema: public; Owner: postgres -- GRANT ALL ON TABLE public.featureloc_pub TO web_usr; -- -- Name: SEQUENCE featureloc_pub_featureloc_pub_id_seq; Type: ACL; Schema: public; Owner: postgres -- GRANT SELECT,USAGE ON SEQUENCE public.featureloc_pub_featureloc_pub_id_seq TO web_usr; -- -- Name: SEQUENCE featureprop_featureprop_id_seq; Type: ACL; Schema: public; Owner: postgres -- GRANT SELECT,USAGE ON SEQUENCE public.featureprop_featureprop_id_seq TO web_usr; -- -- Name: TABLE featureprop_pub; Type: ACL; Schema: public; Owner: postgres -- GRANT ALL ON TABLE public.featureprop_pub TO web_usr; -- -- Name: SEQUENCE featureprop_pub_featureprop_pub_id_seq; Type: ACL; Schema: public; Owner: postgres -- GRANT SELECT,USAGE ON SEQUENCE public.featureprop_pub_featureprop_pub_id_seq TO web_usr; -- -- Name: TABLE forward_amplicon_sequence_information; Type: ACL; Schema: public; Owner: postgres -- GRANT ALL ON TABLE public.forward_amplicon_sequence_information TO web_usr; -- -- Name: SEQUENCE forward_amplicon_sequence_inf_forward_amplicon_sequence_inf_seq; Type: ACL; Schema: public; Owner: postgres -- GRANT SELECT,USAGE ON SEQUENCE public.forward_amplicon_sequence_inf_forward_amplicon_sequence_inf_seq TO web_usr; -- -- Name: TABLE forward_amplicon_sequence_markers; Type: ACL; Schema: public; Owner: postgres -- GRANT ALL ON TABLE public.forward_amplicon_sequence_markers TO web_usr; -- -- Name: SEQUENCE forward_amplicon_sequence_mar_forward_amplicon_sequence_mar_seq; Type: ACL; Schema: public; Owner: postgres -- GRANT SELECT,USAGE ON SEQUENCE public.forward_amplicon_sequence_mar_forward_amplicon_sequence_mar_seq TO web_usr; -- -- Name: TABLE fpc_band; Type: ACL; Schema: public; Owner: postgres -- GRANT ALL ON TABLE public.fpc_band TO web_usr; -- -- Name: SEQUENCE fpc_band_fpc_band_id_seq; Type: ACL; Schema: public; Owner: postgres -- GRANT SELECT,USAGE ON SEQUENCE public.fpc_band_fpc_band_id_seq TO web_usr; -- -- Name: TABLE fpc_build; Type: ACL; Schema: public; Owner: postgres -- GRANT ALL ON TABLE public.fpc_build TO web_usr; -- -- Name: SEQUENCE fpc_build_fpc_build_id_seq; Type: ACL; Schema: public; Owner: postgres -- GRANT SELECT,USAGE ON SEQUENCE public.fpc_build_fpc_build_id_seq TO web_usr; -- -- Name: TABLE fpc_build_fpc_fingerprint; Type: ACL; Schema: public; Owner: postgres -- GRANT ALL ON TABLE public.fpc_build_fpc_fingerprint TO web_usr; -- -- Name: SEQUENCE fpc_build_fpc_fingerprint_fpc_build_fpc_fingerprint_id_seq; Type: ACL; Schema: public; Owner: postgres -- GRANT SELECT,USAGE ON SEQUENCE public.fpc_build_fpc_fingerprint_fpc_build_fpc_fingerprint_id_seq TO web_usr; -- -- Name: TABLE fpc_contig; Type: ACL; Schema: public; Owner: postgres -- GRANT ALL ON TABLE public.fpc_contig TO web_usr; -- -- Name: TABLE fpc_contig_clone; Type: ACL; Schema: public; Owner: postgres -- GRANT ALL ON TABLE public.fpc_contig_clone TO web_usr; -- -- Name: SEQUENCE fpc_contig_clone_fpc_contig_clone_id_seq; Type: ACL; Schema: public; Owner: postgres -- GRANT SELECT,USAGE ON SEQUENCE public.fpc_contig_clone_fpc_contig_clone_id_seq TO web_usr; -- -- Name: SEQUENCE fpc_contig_fpc_contig_id_seq; Type: ACL; Schema: public; Owner: postgres -- GRANT SELECT,USAGE ON SEQUENCE public.fpc_contig_fpc_contig_id_seq TO web_usr; -- -- Name: TABLE fpc_fingerprint; Type: ACL; Schema: public; Owner: postgres -- GRANT ALL ON TABLE public.fpc_fingerprint TO web_usr; -- -- Name: SEQUENCE fpc_fingerprint_fpc_fingerprint_id_seq; Type: ACL; Schema: public; Owner: postgres -- GRANT SELECT,USAGE ON SEQUENCE public.fpc_fingerprint_fpc_fingerprint_id_seq TO web_usr; -- -- Name: TABLE fpc_series; Type: ACL; Schema: public; Owner: postgres -- GRANT ALL ON TABLE public.fpc_series TO web_usr; -- -- Name: SEQUENCE fpc_series_fpc_series_id_seq; Type: ACL; Schema: public; Owner: postgres -- GRANT SELECT,USAGE ON SEQUENCE public.fpc_series_fpc_series_id_seq TO web_usr; -- -- Name: TABLE genotype; Type: ACL; Schema: public; Owner: postgres -- GRANT ALL ON TABLE public.genotype TO web_usr; -- -- Name: SEQUENCE genotype_genotype_id_seq; Type: ACL; Schema: public; Owner: postgres -- GRANT SELECT,USAGE ON SEQUENCE public.genotype_genotype_id_seq TO web_usr; -- -- Name: TABLE genotypeprop; Type: ACL; Schema: public; Owner: postgres -- GRANT ALL ON TABLE public.genotypeprop TO web_usr; -- -- Name: SEQUENCE genotypeprop_genotypeprop_id_seq; Type: ACL; Schema: public; Owner: postgres -- GRANT SELECT,USAGE ON SEQUENCE public.genotypeprop_genotypeprop_id_seq TO web_usr; -- -- Name: TABLE gff3atts; Type: ACL; Schema: public; Owner: postgres -- GRANT ALL ON TABLE public.gff3atts TO web_usr; -- -- Name: TABLE gff3view; Type: ACL; Schema: public; Owner: postgres -- GRANT ALL ON TABLE public.gff3view TO web_usr; -- -- Name: TABLE gff_meta; Type: ACL; Schema: public; Owner: postgres -- GRANT ALL ON TABLE public.gff_meta TO web_usr; -- -- Name: TABLE glossary; Type: ACL; Schema: public; Owner: postgres -- GRANT ALL ON TABLE public.glossary TO web_usr; -- -- Name: SEQUENCE glossary_glossary_id_seq; Type: ACL; Schema: public; Owner: postgres -- GRANT SELECT,USAGE ON SEQUENCE public.glossary_glossary_id_seq TO web_usr; -- -- Name: TABLE itag_loading_log; Type: ACL; Schema: public; Owner: postgres -- GRANT ALL ON TABLE public.itag_loading_log TO web_usr; -- -- Name: SEQUENCE itag_loading_log_id_seq; Type: ACL; Schema: public; Owner: postgres -- GRANT ALL ON SEQUENCE public.itag_loading_log_id_seq TO web_usr; -- -- Name: TABLE marker_names; Type: ACL; Schema: public; Owner: postgres -- GRANT ALL ON TABLE public.marker_names TO web_usr; -- -- Name: TABLE phenotypeprop; Type: ACL; Schema: public; Owner: postgres -- GRANT ALL ON TABLE public.phenotypeprop TO web_usr; -- -- Name: TABLE stockprop; Type: ACL; Schema: public; Owner: postgres -- GRANT ALL ON TABLE public.stockprop TO web_usr; -- -- Name: TABLE materialized_view; Type: ACL; Schema: public; Owner: postgres -- GRANT ALL ON TABLE public.materialized_view TO web_usr; -- -- Name: SEQUENCE materialized_view_materialized_view_id_seq; Type: ACL; Schema: public; Owner: postgres -- GRANT SELECT,USAGE ON SEQUENCE public.materialized_view_materialized_view_id_seq TO web_usr; -- -- Name: TABLE nd_experiment_contact; Type: ACL; Schema: public; Owner: postgres -- GRANT ALL ON TABLE public.nd_experiment_contact TO web_usr; -- -- Name: SEQUENCE nd_experiment_contact_nd_experiment_contact_id_seq; Type: ACL; Schema: public; Owner: postgres -- GRANT SELECT,USAGE ON SEQUENCE public.nd_experiment_contact_nd_experiment_contact_id_seq TO web_usr; -- -- Name: TABLE nd_experiment_dbxref; Type: ACL; Schema: public; Owner: postgres -- GRANT ALL ON TABLE public.nd_experiment_dbxref TO web_usr; -- -- Name: SEQUENCE nd_experiment_dbxref_nd_experiment_dbxref_id_seq; Type: ACL; Schema: public; Owner: postgres -- GRANT SELECT,USAGE ON SEQUENCE public.nd_experiment_dbxref_nd_experiment_dbxref_id_seq TO web_usr; -- -- Name: SEQUENCE nd_experiment_genotype_nd_experiment_genotype_id_seq; Type: ACL; Schema: public; Owner: postgres -- GRANT SELECT,USAGE ON SEQUENCE public.nd_experiment_genotype_nd_experiment_genotype_id_seq TO web_usr; -- -- Name: SEQUENCE nd_experiment_nd_experiment_id_seq; Type: ACL; Schema: public; Owner: postgres -- GRANT ALL ON SEQUENCE public.nd_experiment_nd_experiment_id_seq TO web_usr; -- -- Name: SEQUENCE nd_experiment_phenotype_nd_experiment_phenotype_id_seq; Type: ACL; Schema: public; Owner: postgres -- GRANT ALL ON SEQUENCE public.nd_experiment_phenotype_nd_experiment_phenotype_id_seq TO web_usr; -- -- Name: SEQUENCE nd_experiment_project_nd_experiment_project_id_seq; Type: ACL; Schema: public; Owner: postgres -- GRANT SELECT,USAGE ON SEQUENCE public.nd_experiment_project_nd_experiment_project_id_seq TO web_usr; -- -- Name: SEQUENCE nd_experiment_protocol_nd_experiment_protocol_id_seq; Type: ACL; Schema: public; Owner: postgres -- GRANT SELECT,USAGE ON SEQUENCE public.nd_experiment_protocol_nd_experiment_protocol_id_seq TO web_usr; -- -- Name: TABLE nd_experiment_pub; Type: ACL; Schema: public; Owner: postgres -- GRANT ALL ON TABLE public.nd_experiment_pub TO web_usr; -- -- Name: SEQUENCE nd_experiment_pub_nd_experiment_pub_id_seq; Type: ACL; Schema: public; Owner: postgres -- GRANT SELECT,USAGE ON SEQUENCE public.nd_experiment_pub_nd_experiment_pub_id_seq TO web_usr; -- -- Name: TABLE nd_experiment_stock_dbxref; Type: ACL; Schema: public; Owner: postgres -- GRANT ALL ON TABLE public.nd_experiment_stock_dbxref TO web_usr; -- -- Name: SEQUENCE nd_experiment_stock_dbxref_nd_experiment_stock_dbxref_id_seq; Type: ACL; Schema: public; Owner: postgres -- GRANT SELECT,USAGE ON SEQUENCE public.nd_experiment_stock_dbxref_nd_experiment_stock_dbxref_id_seq TO web_usr; -- -- Name: SEQUENCE nd_experiment_stock_nd_experiment_stock_id_seq; Type: ACL; Schema: public; Owner: postgres -- GRANT SELECT,USAGE ON SEQUENCE public.nd_experiment_stock_nd_experiment_stock_id_seq TO web_usr; -- -- Name: TABLE nd_experiment_stockprop; Type: ACL; Schema: public; Owner: postgres -- GRANT ALL ON TABLE public.nd_experiment_stockprop TO web_usr; -- -- Name: SEQUENCE nd_experiment_stockprop_nd_experiment_stockprop_id_seq; Type: ACL; Schema: public; Owner: postgres -- GRANT SELECT,USAGE ON SEQUENCE public.nd_experiment_stockprop_nd_experiment_stockprop_id_seq TO web_usr; -- -- Name: TABLE nd_experimentprop; Type: ACL; Schema: public; Owner: postgres -- GRANT ALL ON TABLE public.nd_experimentprop TO web_usr; -- -- Name: SEQUENCE nd_experimentprop_nd_experimentprop_id_seq; Type: ACL; Schema: public; Owner: postgres -- GRANT SELECT,USAGE ON SEQUENCE public.nd_experimentprop_nd_experimentprop_id_seq TO web_usr; -- -- Name: SEQUENCE nd_geolocation_nd_geolocation_id_seq; Type: ACL; Schema: public; Owner: postgres -- GRANT SELECT,USAGE ON SEQUENCE public.nd_geolocation_nd_geolocation_id_seq TO web_usr; -- -- Name: TABLE nd_geolocationprop; Type: ACL; Schema: public; Owner: postgres -- GRANT ALL ON TABLE public.nd_geolocationprop TO web_usr; -- -- Name: SEQUENCE nd_geolocationprop_nd_geolocationprop_id_seq; Type: ACL; Schema: public; Owner: postgres -- GRANT SELECT,USAGE ON SEQUENCE public.nd_geolocationprop_nd_geolocationprop_id_seq TO web_usr; -- -- Name: SEQUENCE nd_protocol_nd_protocol_id_seq; Type: ACL; Schema: public; Owner: postgres -- GRANT SELECT,USAGE ON SEQUENCE public.nd_protocol_nd_protocol_id_seq TO web_usr; -- -- Name: TABLE nd_protocol_reagent; Type: ACL; Schema: public; Owner: postgres -- GRANT ALL ON TABLE public.nd_protocol_reagent TO web_usr; -- -- Name: SEQUENCE nd_protocol_reagent_nd_protocol_reagent_id_seq; Type: ACL; Schema: public; Owner: postgres -- GRANT SELECT,USAGE ON SEQUENCE public.nd_protocol_reagent_nd_protocol_reagent_id_seq TO web_usr; -- -- Name: TABLE nd_protocolprop; Type: ACL; Schema: public; Owner: postgres -- GRANT ALL ON TABLE public.nd_protocolprop TO web_usr; -- -- Name: SEQUENCE nd_protocolprop_nd_protocolprop_id_seq; Type: ACL; Schema: public; Owner: postgres -- GRANT SELECT,USAGE ON SEQUENCE public.nd_protocolprop_nd_protocolprop_id_seq TO web_usr; -- -- Name: TABLE nd_reagent; Type: ACL; Schema: public; Owner: postgres -- GRANT ALL ON TABLE public.nd_reagent TO web_usr; -- -- Name: SEQUENCE nd_reagent_nd_reagent_id_seq; Type: ACL; Schema: public; Owner: postgres -- GRANT SELECT,USAGE ON SEQUENCE public.nd_reagent_nd_reagent_id_seq TO web_usr; -- -- Name: TABLE nd_reagent_relationship; Type: ACL; Schema: public; Owner: postgres -- GRANT ALL ON TABLE public.nd_reagent_relationship TO web_usr; -- -- Name: SEQUENCE nd_reagent_relationship_nd_reagent_relationship_id_seq; Type: ACL; Schema: public; Owner: postgres -- GRANT SELECT,USAGE ON SEQUENCE public.nd_reagent_relationship_nd_reagent_relationship_id_seq TO web_usr; -- -- Name: TABLE nd_reagentprop; Type: ACL; Schema: public; Owner: postgres -- GRANT ALL ON TABLE public.nd_reagentprop TO web_usr; -- -- Name: SEQUENCE nd_reagentprop_nd_reagentprop_id_seq; Type: ACL; Schema: public; Owner: postgres -- GRANT SELECT,USAGE ON SEQUENCE public.nd_reagentprop_nd_reagentprop_id_seq TO web_usr; -- -- Name: TABLE organism; Type: ACL; Schema: public; Owner: postgres -- GRANT ALL ON TABLE public.organism TO web_usr; -- -- Name: TABLE organism_dbxref; Type: ACL; Schema: public; Owner: postgres -- GRANT ALL ON TABLE public.organism_dbxref TO web_usr; -- -- Name: SEQUENCE organism_dbxref_organism_dbxref_id_seq; Type: ACL; Schema: public; Owner: postgres -- GRANT ALL ON SEQUENCE public.organism_dbxref_organism_dbxref_id_seq TO web_usr; -- -- Name: SEQUENCE organism_organism_id_seq; Type: ACL; Schema: public; Owner: postgres -- GRANT ALL ON SEQUENCE public.organism_organism_id_seq TO web_usr; -- -- Name: TABLE organism_relationship; Type: ACL; Schema: public; Owner: postgres -- GRANT ALL ON TABLE public.organism_relationship TO web_usr; -- -- Name: SEQUENCE organism_relationship_organism_relationship_id_seq; Type: ACL; Schema: public; Owner: postgres -- GRANT SELECT,USAGE ON SEQUENCE public.organism_relationship_organism_relationship_id_seq TO web_usr; -- -- Name: TABLE organismpath; Type: ACL; Schema: public; Owner: postgres -- GRANT ALL ON TABLE public.organismpath TO web_usr; -- -- Name: SEQUENCE organismpath_organismpath_id_seq; Type: ACL; Schema: public; Owner: postgres -- GRANT SELECT,USAGE ON SEQUENCE public.organismpath_organismpath_id_seq TO web_usr; -- -- Name: TABLE organismprop; Type: ACL; Schema: public; Owner: postgres -- GRANT ALL ON TABLE public.organismprop TO web_usr; -- -- Name: SEQUENCE organismprop_organismprop_id_seq; Type: ACL; Schema: public; Owner: postgres -- GRANT ALL ON SEQUENCE public.organismprop_organismprop_id_seq TO web_usr; -- -- Name: TABLE phendesc; Type: ACL; Schema: public; Owner: postgres -- GRANT ALL ON TABLE public.phendesc TO web_usr; -- -- Name: SEQUENCE phendesc_phendesc_id_seq; Type: ACL; Schema: public; Owner: postgres -- GRANT SELECT,USAGE ON SEQUENCE public.phendesc_phendesc_id_seq TO web_usr; -- -- Name: TABLE phenotype_comparison; Type: ACL; Schema: public; Owner: postgres -- GRANT ALL ON TABLE public.phenotype_comparison TO web_usr; -- -- Name: TABLE phenotype_comparison_cvterm; Type: ACL; Schema: public; Owner: postgres -- GRANT ALL ON TABLE public.phenotype_comparison_cvterm TO web_usr; -- -- Name: SEQUENCE phenotype_comparison_cvterm_phenotype_comparison_cvterm_id_seq; Type: ACL; Schema: public; Owner: postgres -- GRANT SELECT,USAGE ON SEQUENCE public.phenotype_comparison_cvterm_phenotype_comparison_cvterm_id_seq TO web_usr; -- -- Name: SEQUENCE phenotype_comparison_phenotype_comparison_id_seq; Type: ACL; Schema: public; Owner: postgres -- GRANT SELECT,USAGE ON SEQUENCE public.phenotype_comparison_phenotype_comparison_id_seq TO web_usr; -- -- Name: TABLE phenotype_cvterm; Type: ACL; Schema: public; Owner: postgres -- GRANT ALL ON TABLE public.phenotype_cvterm TO web_usr; -- -- Name: SEQUENCE phenotype_cvterm_phenotype_cvterm_id_seq; Type: ACL; Schema: public; Owner: postgres -- GRANT SELECT,USAGE ON SEQUENCE public.phenotype_cvterm_phenotype_cvterm_id_seq TO web_usr; -- -- Name: SEQUENCE phenotype_phenotype_id_seq; Type: ACL; Schema: public; Owner: postgres -- GRANT ALL ON SEQUENCE public.phenotype_phenotype_id_seq TO web_usr; -- -- Name: SEQUENCE phenotypeprop_phenotypeprop_id_seq; Type: ACL; Schema: public; Owner: postgres -- GRANT SELECT,USAGE ON SEQUENCE public.phenotypeprop_phenotypeprop_id_seq TO web_usr; -- -- Name: TABLE phenstatement; Type: ACL; Schema: public; Owner: postgres -- GRANT ALL ON TABLE public.phenstatement TO web_usr; -- -- Name: SEQUENCE phenstatement_phenstatement_id_seq; Type: ACL; Schema: public; Owner: postgres -- GRANT SELECT,USAGE ON SEQUENCE public.phenstatement_phenstatement_id_seq TO web_usr; -- -- Name: TABLE phylonode; Type: ACL; Schema: public; Owner: postgres -- GRANT ALL ON TABLE public.phylonode TO web_usr; -- -- Name: TABLE phylonode_dbxref; Type: ACL; Schema: public; Owner: postgres -- GRANT ALL ON TABLE public.phylonode_dbxref TO web_usr; -- -- Name: SEQUENCE phylonode_dbxref_phylonode_dbxref_id_seq; Type: ACL; Schema: public; Owner: postgres -- GRANT SELECT,USAGE ON SEQUENCE public.phylonode_dbxref_phylonode_dbxref_id_seq TO web_usr; -- -- Name: TABLE phylonode_organism; Type: ACL; Schema: public; Owner: postgres -- GRANT ALL ON TABLE public.phylonode_organism TO web_usr; -- -- Name: SEQUENCE phylonode_organism_phylonode_organism_id_seq; Type: ACL; Schema: public; Owner: postgres -- GRANT SELECT,USAGE ON SEQUENCE public.phylonode_organism_phylonode_organism_id_seq TO web_usr; -- -- Name: SEQUENCE phylonode_phylonode_id_seq; Type: ACL; Schema: public; Owner: postgres -- GRANT SELECT,USAGE ON SEQUENCE public.phylonode_phylonode_id_seq TO web_usr; -- -- Name: TABLE phylonode_pub; Type: ACL; Schema: public; Owner: postgres -- GRANT ALL ON TABLE public.phylonode_pub TO web_usr; -- -- Name: SEQUENCE phylonode_pub_phylonode_pub_id_seq; Type: ACL; Schema: public; Owner: postgres -- GRANT SELECT,USAGE ON SEQUENCE public.phylonode_pub_phylonode_pub_id_seq TO web_usr; -- -- Name: TABLE phylonode_relationship; Type: ACL; Schema: public; Owner: postgres -- GRANT ALL ON TABLE public.phylonode_relationship TO web_usr; -- -- Name: SEQUENCE phylonode_relationship_phylonode_relationship_id_seq; Type: ACL; Schema: public; Owner: postgres -- GRANT SELECT,USAGE ON SEQUENCE public.phylonode_relationship_phylonode_relationship_id_seq TO web_usr; -- -- Name: TABLE phylonodeprop; Type: ACL; Schema: public; Owner: postgres -- GRANT ALL ON TABLE public.phylonodeprop TO web_usr; -- -- Name: SEQUENCE phylonodeprop_phylonodeprop_id_seq; Type: ACL; Schema: public; Owner: postgres -- GRANT SELECT,USAGE ON SEQUENCE public.phylonodeprop_phylonodeprop_id_seq TO web_usr; -- -- Name: TABLE phylotree; Type: ACL; Schema: public; Owner: postgres -- GRANT ALL ON TABLE public.phylotree TO web_usr; -- -- Name: SEQUENCE phylotree_phylotree_id_seq; Type: ACL; Schema: public; Owner: postgres -- GRANT SELECT,USAGE ON SEQUENCE public.phylotree_phylotree_id_seq TO web_usr; -- -- Name: TABLE phylotree_pub; Type: ACL; Schema: public; Owner: postgres -- GRANT ALL ON TABLE public.phylotree_pub TO web_usr; -- -- Name: SEQUENCE phylotree_pub_phylotree_pub_id_seq; Type: ACL; Schema: public; Owner: postgres -- GRANT SELECT,USAGE ON SEQUENCE public.phylotree_pub_phylotree_pub_id_seq TO web_usr; -- -- Name: TABLE project_contact; Type: ACL; Schema: public; Owner: postgres -- GRANT ALL ON TABLE public.project_contact TO web_usr; -- -- Name: SEQUENCE project_contact_project_contact_id_seq; Type: ACL; Schema: public; Owner: postgres -- GRANT SELECT,USAGE ON SEQUENCE public.project_contact_project_contact_id_seq TO web_usr; -- -- Name: SEQUENCE project_project_id_seq; Type: ACL; Schema: public; Owner: postgres -- GRANT SELECT,USAGE ON SEQUENCE public.project_project_id_seq TO web_usr; -- -- Name: TABLE project_pub; Type: ACL; Schema: public; Owner: postgres -- GRANT ALL ON TABLE public.project_pub TO web_usr; -- -- Name: SEQUENCE project_pub_project_pub_id_seq; Type: ACL; Schema: public; Owner: postgres -- GRANT SELECT,USAGE ON SEQUENCE public.project_pub_project_pub_id_seq TO web_usr; -- -- Name: SEQUENCE project_relationship_project_relationship_id_seq; Type: ACL; Schema: public; Owner: postgres -- GRANT SELECT,USAGE ON SEQUENCE public.project_relationship_project_relationship_id_seq TO web_usr; -- -- Name: SEQUENCE projectprop_projectprop_id_seq; Type: ACL; Schema: public; Owner: postgres -- GRANT SELECT,USAGE ON SEQUENCE public.projectprop_projectprop_id_seq TO web_usr; -- -- Name: TABLE pub_dbxref; Type: ACL; Schema: public; Owner: postgres -- GRANT ALL ON TABLE public.pub_dbxref TO web_usr; -- -- Name: SEQUENCE pub_dbxref_pub_dbxref_id_seq; Type: ACL; Schema: public; Owner: postgres -- GRANT ALL ON SEQUENCE public.pub_dbxref_pub_dbxref_id_seq TO web_usr; -- -- Name: SEQUENCE pub_pub_id_seq; Type: ACL; Schema: public; Owner: postgres -- GRANT ALL ON SEQUENCE public.pub_pub_id_seq TO web_usr; -- -- Name: TABLE pub_relationship; Type: ACL; Schema: public; Owner: postgres -- GRANT ALL ON TABLE public.pub_relationship TO web_usr; -- -- Name: SEQUENCE pub_relationship_pub_relationship_id_seq; Type: ACL; Schema: public; Owner: postgres -- GRANT SELECT,USAGE ON SEQUENCE public.pub_relationship_pub_relationship_id_seq TO web_usr; -- -- Name: TABLE pubabstract; Type: ACL; Schema: public; Owner: postgres -- GRANT ALL ON TABLE public.pubabstract TO web_usr; -- -- Name: SEQUENCE pubabstract_pubabstract_id_seq; Type: ACL; Schema: public; Owner: postgres -- GRANT ALL ON SEQUENCE public.pubabstract_pubabstract_id_seq TO web_usr; -- -- Name: TABLE pubauthor; Type: ACL; Schema: public; Owner: postgres -- GRANT ALL ON TABLE public.pubauthor TO web_usr; -- -- Name: SEQUENCE pubauthor_pubauthor_id_seq; Type: ACL; Schema: public; Owner: postgres -- GRANT ALL ON SEQUENCE public.pubauthor_pubauthor_id_seq TO web_usr; -- -- Name: TABLE pubprop; Type: ACL; Schema: public; Owner: postgres -- GRANT ALL ON TABLE public.pubprop TO web_usr; -- -- Name: SEQUENCE pubprop_pubprop_id_seq; Type: ACL; Schema: public; Owner: postgres -- GRANT SELECT,USAGE ON SEQUENCE public.pubprop_pubprop_id_seq TO web_usr; -- -- Name: TABLE resource_file; Type: ACL; Schema: public; Owner: postgres -- GRANT ALL ON TABLE public.resource_file TO web_usr; -- -- Name: SEQUENCE resource_file_resource_file_id_seq; Type: ACL; Schema: public; Owner: postgres -- GRANT SELECT,USAGE ON SEQUENCE public.resource_file_resource_file_id_seq TO web_usr; -- -- Name: TABLE signalp; Type: ACL; Schema: public; Owner: postgres -- GRANT ALL ON TABLE public.signalp TO web_usr; -- -- Name: SEQUENCE signalp_signalp_id_seq; Type: ACL; Schema: public; Owner: postgres -- GRANT SELECT,USAGE ON SEQUENCE public.signalp_signalp_id_seq TO web_usr; -- -- Name: TABLE stock_cvterm; Type: ACL; Schema: public; Owner: postgres -- GRANT ALL ON TABLE public.stock_cvterm TO web_usr; -- -- Name: SEQUENCE stock_cvterm_stock_cvterm_id_seq; Type: ACL; Schema: public; Owner: postgres -- GRANT SELECT,USAGE ON SEQUENCE public.stock_cvterm_stock_cvterm_id_seq TO web_usr; -- -- Name: TABLE stock_cvtermprop; Type: ACL; Schema: public; Owner: postgres -- GRANT ALL ON TABLE public.stock_cvtermprop TO web_usr; -- -- Name: SEQUENCE stock_cvtermprop_stock_cvtermprop_id_seq; Type: ACL; Schema: public; Owner: postgres -- GRANT SELECT,USAGE ON SEQUENCE public.stock_cvtermprop_stock_cvtermprop_id_seq TO web_usr; -- -- Name: TABLE stock_dbxref; Type: ACL; Schema: public; Owner: postgres -- GRANT ALL ON TABLE public.stock_dbxref TO web_usr; -- -- Name: SEQUENCE stock_dbxref_stock_dbxref_id_seq; Type: ACL; Schema: public; Owner: postgres -- GRANT SELECT,USAGE ON SEQUENCE public.stock_dbxref_stock_dbxref_id_seq TO web_usr; -- -- Name: TABLE stock_dbxrefprop; Type: ACL; Schema: public; Owner: postgres -- GRANT ALL ON TABLE public.stock_dbxrefprop TO web_usr; -- -- Name: SEQUENCE stock_dbxrefprop_stock_dbxrefprop_id_seq; Type: ACL; Schema: public; Owner: postgres -- GRANT SELECT,USAGE ON SEQUENCE public.stock_dbxrefprop_stock_dbxrefprop_id_seq TO web_usr; -- -- Name: TABLE stock_genotype; Type: ACL; Schema: public; Owner: postgres -- GRANT ALL ON TABLE public.stock_genotype TO web_usr; -- -- Name: SEQUENCE stock_genotype_stock_genotype_id_seq; Type: ACL; Schema: public; Owner: postgres -- GRANT SELECT,USAGE ON SEQUENCE public.stock_genotype_stock_genotype_id_seq TO web_usr; -- -- Name: TABLE stock_pub; Type: ACL; Schema: public; Owner: postgres -- GRANT ALL ON TABLE public.stock_pub TO web_usr; -- -- Name: SEQUENCE stock_pub_stock_pub_id_seq; Type: ACL; Schema: public; Owner: postgres -- GRANT SELECT,USAGE ON SEQUENCE public.stock_pub_stock_pub_id_seq TO web_usr; -- -- Name: TABLE stock_relationship_cvterm; Type: ACL; Schema: public; Owner: postgres -- GRANT ALL ON TABLE public.stock_relationship_cvterm TO web_usr; -- -- Name: SEQUENCE stock_relationship_cvterm_stock_relationship_cvterm_id_seq; Type: ACL; Schema: public; Owner: postgres -- GRANT SELECT,USAGE ON SEQUENCE public.stock_relationship_cvterm_stock_relationship_cvterm_id_seq TO web_usr; -- -- Name: TABLE stock_relationship_pub; Type: ACL; Schema: public; Owner: postgres -- GRANT ALL ON TABLE public.stock_relationship_pub TO web_usr; -- -- Name: SEQUENCE stock_relationship_pub_stock_relationship_pub_id_seq; Type: ACL; Schema: public; Owner: postgres -- GRANT SELECT,USAGE ON SEQUENCE public.stock_relationship_pub_stock_relationship_pub_id_seq TO web_usr; -- -- Name: SEQUENCE stock_relationship_stock_relationship_id_seq; Type: ACL; Schema: public; Owner: postgres -- GRANT SELECT,USAGE ON SEQUENCE public.stock_relationship_stock_relationship_id_seq TO web_usr; -- -- Name: SEQUENCE stock_stock_id_seq; Type: ACL; Schema: public; Owner: postgres -- GRANT ALL ON SEQUENCE public.stock_stock_id_seq TO web_usr; -- -- Name: TABLE stockcollection; Type: ACL; Schema: public; Owner: postgres -- GRANT ALL ON TABLE public.stockcollection TO web_usr; -- -- Name: TABLE stockcollection_stock; Type: ACL; Schema: public; Owner: postgres -- GRANT ALL ON TABLE public.stockcollection_stock TO web_usr; -- -- Name: SEQUENCE stockcollection_stock_stockcollection_stock_id_seq; Type: ACL; Schema: public; Owner: postgres -- GRANT SELECT,USAGE ON SEQUENCE public.stockcollection_stock_stockcollection_stock_id_seq TO web_usr; -- -- Name: SEQUENCE stockcollection_stockcollection_id_seq; Type: ACL; Schema: public; Owner: postgres -- GRANT SELECT,USAGE ON SEQUENCE public.stockcollection_stockcollection_id_seq TO web_usr; -- -- Name: TABLE stockcollectionprop; Type: ACL; Schema: public; Owner: postgres -- GRANT ALL ON TABLE public.stockcollectionprop TO web_usr; -- -- Name: SEQUENCE stockcollectionprop_stockcollectionprop_id_seq; Type: ACL; Schema: public; Owner: postgres -- GRANT SELECT,USAGE ON SEQUENCE public.stockcollectionprop_stockcollectionprop_id_seq TO web_usr; -- -- Name: TABLE stockprop_pub; Type: ACL; Schema: public; Owner: postgres -- GRANT ALL ON TABLE public.stockprop_pub TO web_usr; -- -- Name: SEQUENCE stockprop_pub_stockprop_pub_id_seq; Type: ACL; Schema: public; Owner: postgres -- GRANT SELECT,USAGE ON SEQUENCE public.stockprop_pub_stockprop_pub_id_seq TO web_usr; -- -- Name: SEQUENCE stockprop_stockprop_id_seq; Type: ACL; Schema: public; Owner: postgres -- GRANT ALL ON SEQUENCE public.stockprop_stockprop_id_seq TO web_usr; -- -- Name: SEQUENCE synonym_synonym_id_seq; Type: ACL; Schema: public; Owner: postgres -- GRANT SELECT,USAGE ON SEQUENCE public.synonym_synonym_id_seq TO web_usr; -- -- Name: TABLE tableinfo; Type: ACL; Schema: public; Owner: postgres -- GRANT ALL ON TABLE public.tableinfo TO web_usr; -- -- Name: SEQUENCE tableinfo_tableinfo_id_seq; Type: ACL; Schema: public; Owner: postgres -- GRANT SELECT,USAGE ON SEQUENCE public.tableinfo_tableinfo_id_seq TO web_usr; -- -- Name: TABLE tmp_cds_handler; Type: ACL; Schema: public; Owner: postgres -- GRANT ALL ON TABLE public.tmp_cds_handler TO web_usr; -- -- Name: SEQUENCE tmp_cds_handler_cds_row_id_seq; Type: ACL; Schema: public; Owner: postgres -- GRANT SELECT,USAGE ON SEQUENCE public.tmp_cds_handler_cds_row_id_seq TO web_usr; -- -- Name: TABLE tmp_cds_handler_relationship; Type: ACL; Schema: public; Owner: postgres -- GRANT ALL ON TABLE public.tmp_cds_handler_relationship TO web_usr; -- -- Name: SEQUENCE tmp_cds_handler_relationship_rel_row_id_seq; Type: ACL; Schema: public; Owner: postgres -- GRANT SELECT,USAGE ON SEQUENCE public.tmp_cds_handler_relationship_rel_row_id_seq TO web_usr; -- -- Name: TABLE tmp_gff_load_cache; Type: ACL; Schema: public; Owner: postgres -- GRANT ALL ON TABLE public.tmp_gff_load_cache TO web_usr; -- -- Name: TABLE unigene_dbxref; Type: ACL; Schema: public; Owner: postgres -- GRANT ALL ON TABLE public.unigene_dbxref TO web_usr; -- -- Name: SEQUENCE unigene_dbxref_unigene_dbxref_id_seq; Type: ACL; Schema: public; Owner: postgres -- GRANT SELECT,USAGE ON SEQUENCE public.unigene_dbxref_unigene_dbxref_id_seq TO web_usr; -- -- Name: TABLE unigene_relations; Type: ACL; Schema: public; Owner: postgres -- GRANT ALL ON TABLE public.unigene_relations TO web_usr; -- -- Name: TABLE unigene_signalp; Type: ACL; Schema: public; Owner: postgres -- GRANT ALL ON TABLE public.unigene_signalp TO web_usr; -- -- Name: TABLE accession; Type: ACL; Schema: sgn; Owner: postgres -- GRANT ALL ON TABLE sgn.accession TO web_usr; -- -- Name: SEQUENCE accession_accession_id_seq; Type: ACL; Schema: sgn; Owner: postgres -- GRANT ALL ON SEQUENCE sgn.accession_accession_id_seq TO web_usr; -- -- Name: TABLE accession_names; Type: ACL; Schema: sgn; Owner: postgres -- GRANT ALL ON TABLE sgn.accession_names TO web_usr; -- -- Name: SEQUENCE accession_names_accession_name_id_seq; Type: ACL; Schema: sgn; Owner: postgres -- GRANT ALL ON SEQUENCE sgn.accession_names_accession_name_id_seq TO web_usr; -- -- Name: TABLE annotation_target_type; Type: ACL; Schema: sgn; Owner: postgres -- GRANT ALL ON TABLE sgn.annotation_target_type TO web_usr; -- -- Name: SEQUENCE annotation_target_type_annotation_target_type_id_seq; Type: ACL; Schema: sgn; Owner: postgres -- GRANT ALL ON SEQUENCE sgn.annotation_target_type_annotation_target_type_id_seq TO web_usr; -- -- Name: TABLE authors; Type: ACL; Schema: sgn; Owner: postgres -- GRANT ALL ON TABLE sgn.authors TO web_usr; -- -- Name: SEQUENCE authors_author_id_seq; Type: ACL; Schema: sgn; Owner: postgres -- GRANT ALL ON SEQUENCE sgn.authors_author_id_seq TO web_usr; -- -- Name: TABLE blast_annotations; Type: ACL; Schema: sgn; Owner: postgres -- GRANT ALL ON TABLE sgn.blast_annotations TO web_usr; -- -- Name: SEQUENCE blast_annotations_blast_annotation_id_seq; Type: ACL; Schema: sgn; Owner: postgres -- GRANT ALL ON SEQUENCE sgn.blast_annotations_blast_annotation_id_seq TO web_usr; -- -- Name: TABLE blast_db; Type: ACL; Schema: sgn; Owner: postgres -- GRANT ALL ON TABLE sgn.blast_db TO web_usr; -- -- Name: TABLE blast_db_blast_db_group; Type: ACL; Schema: sgn; Owner: postgres -- GRANT ALL ON TABLE sgn.blast_db_blast_db_group TO web_usr; -- -- Name: SEQUENCE blast_db_blast_db_group_blast_db_blast_db_group_id_seq; Type: ACL; Schema: sgn; Owner: postgres -- GRANT SELECT,USAGE ON SEQUENCE sgn.blast_db_blast_db_group_blast_db_blast_db_group_id_seq TO web_usr; -- -- Name: SEQUENCE blast_db_blast_db_id_seq; Type: ACL; Schema: sgn; Owner: postgres -- GRANT ALL ON SEQUENCE sgn.blast_db_blast_db_id_seq TO web_usr; -- -- Name: TABLE blast_db_group; Type: ACL; Schema: sgn; Owner: postgres -- GRANT ALL ON TABLE sgn.blast_db_group TO web_usr; -- -- Name: SEQUENCE blast_db_group_blast_db_group_id_seq; Type: ACL; Schema: sgn; Owner: postgres -- GRANT SELECT,USAGE ON SEQUENCE sgn.blast_db_group_blast_db_group_id_seq TO web_usr; -- -- Name: TABLE blast_db_organism; Type: ACL; Schema: sgn; Owner: postgres -- GRANT ALL ON TABLE sgn.blast_db_organism TO web_usr; -- -- Name: SEQUENCE blast_db_organism_blast_db_organism_id_seq; Type: ACL; Schema: sgn; Owner: postgres -- GRANT SELECT,USAGE ON SEQUENCE sgn.blast_db_organism_blast_db_organism_id_seq TO web_usr; -- -- Name: TABLE blast_defline; Type: ACL; Schema: sgn; Owner: postgres -- GRANT ALL ON TABLE sgn.blast_defline TO web_usr; -- -- Name: SEQUENCE blast_defline_defline_id_seq; Type: ACL; Schema: sgn; Owner: postgres -- GRANT ALL ON SEQUENCE sgn.blast_defline_defline_id_seq TO web_usr; -- -- Name: TABLE blast_hits; Type: ACL; Schema: sgn; Owner: postgres -- GRANT ALL ON TABLE sgn.blast_hits TO web_usr; -- -- Name: SEQUENCE blast_hits_blast_hit_id_seq; Type: ACL; Schema: sgn; Owner: postgres -- GRANT ALL ON SEQUENCE sgn.blast_hits_blast_hit_id_seq TO web_usr; -- -- Name: TABLE blast_targets; Type: ACL; Schema: sgn; Owner: postgres -- GRANT ALL ON TABLE sgn.blast_targets TO web_usr; -- -- Name: SEQUENCE blast_targets_blast_target_id_seq; Type: ACL; Schema: sgn; Owner: postgres -- GRANT ALL ON SEQUENCE sgn.blast_targets_blast_target_id_seq TO web_usr; -- -- Name: TABLE cds; Type: ACL; Schema: sgn; Owner: postgres -- GRANT ALL ON TABLE sgn.cds TO web_usr; -- -- Name: SEQUENCE cds_cds_id_seq; Type: ACL; Schema: sgn; Owner: postgres -- GRANT ALL ON SEQUENCE sgn.cds_cds_id_seq TO web_usr; -- -- Name: TABLE chadoprop; Type: ACL; Schema: sgn; Owner: postgres -- GRANT ALL ON TABLE sgn.chadoprop TO web_usr; -- -- Name: SEQUENCE chadoprop_chadoprop_id_seq; Type: ACL; Schema: sgn; Owner: postgres -- GRANT SELECT,USAGE ON SEQUENCE sgn.chadoprop_chadoprop_id_seq TO web_usr; -- -- Name: TABLE clone; Type: ACL; Schema: sgn; Owner: postgres -- GRANT ALL ON TABLE sgn.clone TO web_usr; -- -- Name: SEQUENCE clone_clone_id_seq; Type: ACL; Schema: sgn; Owner: postgres -- GRANT ALL ON SEQUENCE sgn.clone_clone_id_seq TO web_usr; -- -- Name: TABLE cloning_vector; Type: ACL; Schema: sgn; Owner: postgres -- GRANT ALL ON TABLE sgn.cloning_vector TO web_usr; -- -- Name: SEQUENCE cloning_vector_cloning_vector_id_seq; Type: ACL; Schema: sgn; Owner: postgres -- GRANT ALL ON SEQUENCE sgn.cloning_vector_cloning_vector_id_seq TO web_usr; -- -- Name: TABLE common_name; Type: ACL; Schema: sgn; Owner: postgres -- GRANT ALL ON TABLE sgn.common_name TO web_usr; -- -- Name: SEQUENCE common_name_common_name_id_seq; Type: ACL; Schema: sgn; Owner: postgres -- GRANT ALL ON SEQUENCE sgn.common_name_common_name_id_seq TO web_usr; -- -- Name: TABLE common_nameprop; Type: ACL; Schema: sgn; Owner: postgres -- GRANT ALL ON TABLE sgn.common_nameprop TO web_usr; -- -- Name: SEQUENCE common_nameprop_common_nameprop_id_seq; Type: ACL; Schema: sgn; Owner: postgres -- GRANT SELECT,USAGE ON SEQUENCE sgn.common_nameprop_common_nameprop_id_seq TO web_usr; -- -- Name: TABLE cos_markers; Type: ACL; Schema: sgn; Owner: postgres -- GRANT ALL ON TABLE sgn.cos_markers TO web_usr; -- -- Name: SEQUENCE cos_markers_cos_marker_id_seq; Type: ACL; Schema: sgn; Owner: postgres -- GRANT ALL ON SEQUENCE sgn.cos_markers_cos_marker_id_seq TO web_usr; -- -- Name: TABLE cosii_ortholog; Type: ACL; Schema: sgn; Owner: postgres -- GRANT ALL ON TABLE sgn.cosii_ortholog TO web_usr; -- -- Name: SEQUENCE cosii_ortholog_cosii_unigene_id_seq; Type: ACL; Schema: sgn; Owner: postgres -- GRANT ALL ON SEQUENCE sgn.cosii_ortholog_cosii_unigene_id_seq TO web_usr; -- -- Name: TABLE deprecated_linkage_groups; Type: ACL; Schema: sgn; Owner: postgres -- GRANT ALL ON TABLE sgn.deprecated_linkage_groups TO web_usr; -- -- Name: SEQUENCE deprecated_linkage_groups_lg_id_seq; Type: ACL; Schema: sgn; Owner: postgres -- GRANT ALL ON SEQUENCE sgn.deprecated_linkage_groups_lg_id_seq TO web_usr; -- -- Name: TABLE deprecated_map_cross; Type: ACL; Schema: sgn; Owner: postgres -- GRANT ALL ON TABLE sgn.deprecated_map_cross TO web_usr; -- -- Name: SEQUENCE deprecated_map_cross_map_cross_id_seq; Type: ACL; Schema: sgn; Owner: postgres -- GRANT ALL ON SEQUENCE sgn.deprecated_map_cross_map_cross_id_seq TO web_usr; -- -- Name: TABLE deprecated_mapdata; Type: ACL; Schema: sgn; Owner: postgres -- GRANT ALL ON TABLE sgn.deprecated_mapdata TO web_usr; -- -- Name: SEQUENCE deprecated_mapdata_loc_id_seq; Type: ACL; Schema: sgn; Owner: postgres -- GRANT ALL ON SEQUENCE sgn.deprecated_mapdata_loc_id_seq TO web_usr; -- -- Name: TABLE deprecated_maps; Type: ACL; Schema: sgn; Owner: postgres -- GRANT ALL ON TABLE sgn.deprecated_maps TO web_usr; -- -- Name: SEQUENCE deprecated_maps_map_id_seq; Type: ACL; Schema: sgn; Owner: postgres -- GRANT ALL ON SEQUENCE sgn.deprecated_maps_map_id_seq TO web_usr; -- -- Name: TABLE deprecated_marker_confidences; Type: ACL; Schema: sgn; Owner: postgres -- GRANT ALL ON TABLE sgn.deprecated_marker_confidences TO web_usr; -- -- Name: SEQUENCE deprecated_marker_confidences_confidence_id_seq; Type: ACL; Schema: sgn; Owner: postgres -- GRANT ALL ON SEQUENCE sgn.deprecated_marker_confidences_confidence_id_seq TO web_usr; -- -- Name: TABLE deprecated_marker_locations; Type: ACL; Schema: sgn; Owner: postgres -- GRANT ALL ON TABLE sgn.deprecated_marker_locations TO web_usr; -- -- Name: SEQUENCE deprecated_marker_locations_marker_location_id_seq; Type: ACL; Schema: sgn; Owner: postgres -- GRANT ALL ON SEQUENCE sgn.deprecated_marker_locations_marker_location_id_seq TO web_usr; -- -- Name: TABLE deprecated_marker_types; Type: ACL; Schema: sgn; Owner: postgres -- GRANT ALL ON TABLE sgn.deprecated_marker_types TO web_usr; -- -- Name: SEQUENCE deprecated_marker_types_marker_type_id_seq; Type: ACL; Schema: sgn; Owner: postgres -- GRANT ALL ON SEQUENCE sgn.deprecated_marker_types_marker_type_id_seq TO web_usr; -- -- Name: TABLE deprecated_markers; Type: ACL; Schema: sgn; Owner: postgres -- GRANT ALL ON TABLE sgn.deprecated_markers TO web_usr; -- -- Name: SEQUENCE deprecated_markers_marker_id_seq; Type: ACL; Schema: sgn; Owner: postgres -- GRANT ALL ON SEQUENCE sgn.deprecated_markers_marker_id_seq TO web_usr; -- -- Name: TABLE derived_from_source; Type: ACL; Schema: sgn; Owner: postgres -- GRANT ALL ON TABLE sgn.derived_from_source TO web_usr; -- -- Name: SEQUENCE derived_from_source_derived_from_source_id_seq; Type: ACL; Schema: sgn; Owner: postgres -- GRANT ALL ON SEQUENCE sgn.derived_from_source_derived_from_source_id_seq TO web_usr; -- -- Name: TABLE domain; Type: ACL; Schema: sgn; Owner: postgres -- GRANT ALL ON TABLE sgn.domain TO web_usr; -- -- Name: SEQUENCE domain_domain_id_seq; Type: ACL; Schema: sgn; Owner: postgres -- GRANT ALL ON SEQUENCE sgn.domain_domain_id_seq TO web_usr; -- -- Name: TABLE domain_match; Type: ACL; Schema: sgn; Owner: postgres -- GRANT ALL ON TABLE sgn.domain_match TO web_usr; -- -- Name: SEQUENCE domain_match_domain_match_id_seq; Type: ACL; Schema: sgn; Owner: postgres -- GRANT ALL ON SEQUENCE sgn.domain_match_domain_match_id_seq TO web_usr; -- -- Name: TABLE enzyme_restriction_sites; Type: ACL; Schema: sgn; Owner: postgres -- GRANT ALL ON TABLE sgn.enzyme_restriction_sites TO web_usr; -- -- Name: SEQUENCE enzyme_restriction_sites_enzyme_restriction_sites_id_seq; Type: ACL; Schema: sgn; Owner: postgres -- GRANT SELECT,USAGE ON SEQUENCE sgn.enzyme_restriction_sites_enzyme_restriction_sites_id_seq TO web_usr; -- -- Name: TABLE enzymes; Type: ACL; Schema: sgn; Owner: postgres -- GRANT ALL ON TABLE sgn.enzymes TO web_usr; -- -- Name: SEQUENCE enzymes_enzyme_id_seq; Type: ACL; Schema: sgn; Owner: postgres -- GRANT ALL ON SEQUENCE sgn.enzymes_enzyme_id_seq TO web_usr; -- -- Name: TABLE est; Type: ACL; Schema: sgn; Owner: postgres -- GRANT ALL ON TABLE sgn.est TO web_usr; -- -- Name: TABLE est_dbxref; Type: ACL; Schema: sgn; Owner: postgres -- GRANT ALL ON TABLE sgn.est_dbxref TO web_usr; -- -- Name: SEQUENCE est_dbxref_est_dbxref_id_seq; Type: ACL; Schema: sgn; Owner: postgres -- GRANT SELECT,USAGE ON SEQUENCE sgn.est_dbxref_est_dbxref_id_seq TO web_usr; -- -- Name: SEQUENCE est_est_id_seq; Type: ACL; Schema: sgn; Owner: postgres -- GRANT SELECT,USAGE ON SEQUENCE sgn.est_est_id_seq TO web_usr; -- -- Name: TABLE ests_mapped_by_clone; Type: ACL; Schema: sgn; Owner: postgres -- GRANT ALL ON TABLE sgn.ests_mapped_by_clone TO web_usr; -- -- Name: SEQUENCE ests_mapped_by_clone_embc_id_seq; Type: ACL; Schema: sgn; Owner: postgres -- GRANT ALL ON SEQUENCE sgn.ests_mapped_by_clone_embc_id_seq TO web_usr; -- -- Name: TABLE experiment_type; Type: ACL; Schema: sgn; Owner: postgres -- GRANT ALL ON TABLE sgn.experiment_type TO web_usr; -- -- Name: SEQUENCE experiment_type_experiment_type_id_seq; Type: ACL; Schema: sgn; Owner: postgres -- GRANT ALL ON SEQUENCE sgn.experiment_type_experiment_type_id_seq TO web_usr; -- -- Name: TABLE facility; Type: ACL; Schema: sgn; Owner: postgres -- GRANT ALL ON TABLE sgn.facility TO web_usr; -- -- Name: SEQUENCE facility_facility_id_seq; Type: ACL; Schema: sgn; Owner: postgres -- GRANT ALL ON SEQUENCE sgn.facility_facility_id_seq TO web_usr; -- -- Name: SEQUENCE family_build_family_build_id_seq; Type: ACL; Schema: sgn; Owner: postgres -- GRANT ALL ON SEQUENCE sgn.family_build_family_build_id_seq TO web_usr; -- -- Name: SEQUENCE family_family_id_seq; Type: ACL; Schema: sgn; Owner: postgres -- GRANT ALL ON SEQUENCE sgn.family_family_id_seq TO web_usr; -- -- Name: SEQUENCE family_member_family_member_id_seq; Type: ACL; Schema: sgn; Owner: postgres -- GRANT ALL ON SEQUENCE sgn.family_member_family_member_id_seq TO web_usr; -- -- Name: TABLE family_tree; Type: ACL; Schema: sgn; Owner: postgres -- GRANT ALL ON TABLE sgn.family_tree TO web_usr; -- -- Name: SEQUENCE family_tree_family_tree_id_seq; Type: ACL; Schema: sgn; Owner: postgres -- GRANT SELECT,USAGE ON SEQUENCE sgn.family_tree_family_tree_id_seq TO web_usr; -- -- Name: TABLE fish_chromatin_density_constants; Type: ACL; Schema: sgn; Owner: postgres -- GRANT ALL ON TABLE sgn.fish_chromatin_density_constants TO web_usr; -- -- Name: TABLE fish_experimenter; Type: ACL; Schema: sgn; Owner: postgres -- GRANT ALL ON TABLE sgn.fish_experimenter TO web_usr; -- -- Name: SEQUENCE fish_experimenter_fish_experimenter_id_seq; Type: ACL; Schema: sgn; Owner: postgres -- GRANT ALL ON SEQUENCE sgn.fish_experimenter_fish_experimenter_id_seq TO web_usr; -- -- Name: TABLE fish_file; Type: ACL; Schema: sgn; Owner: postgres -- GRANT ALL ON TABLE sgn.fish_file TO web_usr; -- -- Name: SEQUENCE fish_file_fish_file_id_seq; Type: ACL; Schema: sgn; Owner: postgres -- GRANT ALL ON SEQUENCE sgn.fish_file_fish_file_id_seq TO web_usr; -- -- Name: TABLE fish_image; Type: ACL; Schema: sgn; Owner: postgres -- GRANT ALL ON TABLE sgn.fish_image TO web_usr; -- -- Name: TABLE fish_karyotype_constants; Type: ACL; Schema: sgn; Owner: postgres -- GRANT ALL ON TABLE sgn.fish_karyotype_constants TO web_usr; -- -- Name: TABLE fish_karyotype_constants_old; Type: ACL; Schema: sgn; Owner: postgres -- GRANT ALL ON TABLE sgn.fish_karyotype_constants_old TO web_usr; -- -- Name: TABLE fish_result; Type: ACL; Schema: sgn; Owner: postgres -- GRANT ALL ON TABLE sgn.fish_result TO web_usr; -- -- Name: TABLE fish_result_composite; Type: ACL; Schema: sgn; Owner: postgres -- GRANT ALL ON TABLE sgn.fish_result_composite TO web_usr; -- -- Name: SEQUENCE fish_result_fish_result_id_seq; Type: ACL; Schema: sgn; Owner: postgres -- GRANT ALL ON SEQUENCE sgn.fish_result_fish_result_id_seq TO web_usr; -- -- Name: TABLE fish_result_image; Type: ACL; Schema: sgn; Owner: postgres -- GRANT ALL ON TABLE sgn.fish_result_image TO web_usr; -- -- Name: SEQUENCE fish_result_image_fish_result_image_id_seq; Type: ACL; Schema: sgn; Owner: postgres -- GRANT SELECT,USAGE ON SEQUENCE sgn.fish_result_image_fish_result_image_id_seq TO web_usr; -- -- Name: TABLE go; Type: ACL; Schema: sgn; Owner: postgres -- GRANT ALL ON TABLE sgn.go TO web_usr; -- -- Name: SEQUENCE go_go_id_seq; Type: ACL; Schema: sgn; Owner: postgres -- GRANT ALL ON SEQUENCE sgn.go_go_id_seq TO web_usr; -- -- Name: TABLE group_linkage; Type: ACL; Schema: sgn; Owner: postgres -- GRANT ALL ON TABLE sgn.group_linkage TO web_usr; -- -- Name: SEQUENCE group_linkage_group_linkage_id_seq; Type: ACL; Schema: sgn; Owner: postgres -- GRANT ALL ON SEQUENCE sgn.group_linkage_group_linkage_id_seq TO web_usr; -- -- Name: TABLE groups; Type: ACL; Schema: sgn; Owner: postgres -- GRANT ALL ON TABLE sgn.groups TO web_usr; -- -- Name: SEQUENCE groups_group_id_seq; Type: ACL; Schema: sgn; Owner: postgres -- GRANT ALL ON SEQUENCE sgn.groups_group_id_seq TO web_usr; -- -- Name: TABLE id_linkage; Type: ACL; Schema: sgn; Owner: postgres -- GRANT ALL ON TABLE sgn.id_linkage TO web_usr; -- -- Name: SEQUENCE id_linkage_id_linkage_id_seq; Type: ACL; Schema: sgn; Owner: postgres -- GRANT ALL ON SEQUENCE sgn.id_linkage_id_linkage_id_seq TO web_usr; -- -- Name: TABLE il_info; Type: ACL; Schema: sgn; Owner: postgres -- GRANT ALL ON TABLE sgn.il_info TO web_usr; -- -- Name: TABLE interpro; Type: ACL; Schema: sgn; Owner: postgres -- GRANT ALL ON TABLE sgn.interpro TO web_usr; -- -- Name: TABLE interpro_go; Type: ACL; Schema: sgn; Owner: postgres -- GRANT ALL ON TABLE sgn.interpro_go TO web_usr; -- -- Name: SEQUENCE interpro_go_interpro_go_id_seq; Type: ACL; Schema: sgn; Owner: postgres -- GRANT ALL ON SEQUENCE sgn.interpro_go_interpro_go_id_seq TO web_usr; -- -- Name: SEQUENCE interpro_interpro_id_seq; Type: ACL; Schema: sgn; Owner: postgres -- GRANT ALL ON SEQUENCE sgn.interpro_interpro_id_seq TO web_usr; -- -- Name: TABLE library; Type: ACL; Schema: sgn; Owner: postgres -- GRANT ALL ON TABLE sgn.library TO web_usr; -- -- Name: SEQUENCE library_library_id_seq; Type: ACL; Schema: sgn; Owner: postgres -- GRANT ALL ON SEQUENCE sgn.library_library_id_seq TO web_usr; -- -- Name: TABLE linkage_group; Type: ACL; Schema: sgn; Owner: postgres -- GRANT ALL ON TABLE sgn.linkage_group TO web_usr; -- -- Name: SEQUENCE linkage_group_lg_id_seq; Type: ACL; Schema: sgn; Owner: postgres -- GRANT ALL ON SEQUENCE sgn.linkage_group_lg_id_seq TO web_usr; -- -- Name: TABLE loc_types; Type: ACL; Schema: sgn; Owner: postgres -- GRANT ALL ON TABLE sgn.loc_types TO web_usr; -- -- Name: SEQUENCE loc_types_loc_type_id_seq; Type: ACL; Schema: sgn; Owner: postgres -- GRANT ALL ON SEQUENCE sgn.loc_types_loc_type_id_seq TO web_usr; -- -- Name: TABLE manual_annotations; Type: ACL; Schema: sgn; Owner: postgres -- GRANT ALL ON TABLE sgn.manual_annotations TO web_usr; -- -- Name: SEQUENCE manual_annotations_manual_annotations_id_seq; Type: ACL; Schema: sgn; Owner: postgres -- GRANT ALL ON SEQUENCE sgn.manual_annotations_manual_annotations_id_seq TO web_usr; -- -- Name: TABLE manual_censor_reasons; Type: ACL; Schema: sgn; Owner: postgres -- GRANT ALL ON TABLE sgn.manual_censor_reasons TO web_usr; -- -- Name: SEQUENCE manual_censor_reasons_censor_id_seq; Type: ACL; Schema: sgn; Owner: postgres -- GRANT ALL ON SEQUENCE sgn.manual_censor_reasons_censor_id_seq TO web_usr; -- -- Name: TABLE map; Type: ACL; Schema: sgn; Owner: postgres -- GRANT ALL ON TABLE sgn.map TO web_usr; -- -- Name: SEQUENCE map_map_id_seq; Type: ACL; Schema: sgn; Owner: postgres -- GRANT ALL ON SEQUENCE sgn.map_map_id_seq TO web_usr; -- -- Name: TABLE map_version; Type: ACL; Schema: sgn; Owner: postgres -- GRANT ALL ON TABLE sgn.map_version TO web_usr; -- -- Name: SEQUENCE map_version_map_version_id_seq; Type: ACL; Schema: sgn; Owner: postgres -- GRANT ALL ON SEQUENCE sgn.map_version_map_version_id_seq TO web_usr; -- -- Name: TABLE marker; Type: ACL; Schema: sgn; Owner: postgres -- GRANT ALL ON TABLE sgn.marker TO web_usr; -- -- Name: TABLE marker_alias; Type: ACL; Schema: sgn; Owner: postgres -- GRANT ALL ON TABLE sgn.marker_alias TO web_usr; -- -- Name: SEQUENCE marker_alias_alias_id_seq; Type: ACL; Schema: sgn; Owner: postgres -- GRANT ALL ON SEQUENCE sgn.marker_alias_alias_id_seq TO web_usr; -- -- Name: TABLE marker_collectible; Type: ACL; Schema: sgn; Owner: postgres -- GRANT ALL ON TABLE sgn.marker_collectible TO web_usr; -- -- Name: SEQUENCE marker_collectible_marker_collectible_dummy_id_seq; Type: ACL; Schema: sgn; Owner: postgres -- GRANT ALL ON SEQUENCE sgn.marker_collectible_marker_collectible_dummy_id_seq TO web_usr; -- -- Name: TABLE marker_collection; Type: ACL; Schema: sgn; Owner: postgres -- GRANT ALL ON TABLE sgn.marker_collection TO web_usr; -- -- Name: SEQUENCE marker_collection_mc_id_seq; Type: ACL; Schema: sgn; Owner: postgres -- GRANT ALL ON SEQUENCE sgn.marker_collection_mc_id_seq TO web_usr; -- -- Name: TABLE marker_confidence; Type: ACL; Schema: sgn; Owner: postgres -- GRANT ALL ON TABLE sgn.marker_confidence TO web_usr; -- -- Name: SEQUENCE marker_confidence_confidence_id_seq; Type: ACL; Schema: sgn; Owner: postgres -- GRANT ALL ON SEQUENCE sgn.marker_confidence_confidence_id_seq TO web_usr; -- -- Name: TABLE marker_derived_from; Type: ACL; Schema: sgn; Owner: postgres -- GRANT ALL ON TABLE sgn.marker_derived_from TO web_usr; -- -- Name: SEQUENCE marker_derived_from_marker_derived_dummy_id_seq; Type: ACL; Schema: sgn; Owner: postgres -- GRANT ALL ON SEQUENCE sgn.marker_derived_from_marker_derived_dummy_id_seq TO web_usr; -- -- Name: TABLE marker_experiment; Type: ACL; Schema: sgn; Owner: postgres -- GRANT ALL ON TABLE sgn.marker_experiment TO web_usr; -- -- Name: SEQUENCE marker_experiment_marker_experiment_id_seq; Type: ACL; Schema: sgn; Owner: postgres -- GRANT ALL ON SEQUENCE sgn.marker_experiment_marker_experiment_id_seq TO web_usr; -- -- Name: TABLE marker_location; Type: ACL; Schema: sgn; Owner: postgres -- GRANT ALL ON TABLE sgn.marker_location TO web_usr; -- -- Name: SEQUENCE marker_location_location_id_seq; Type: ACL; Schema: sgn; Owner: postgres -- GRANT ALL ON SEQUENCE sgn.marker_location_location_id_seq TO web_usr; -- -- Name: SEQUENCE marker_marker_id_seq; Type: ACL; Schema: sgn; Owner: postgres -- GRANT ALL ON SEQUENCE sgn.marker_marker_id_seq TO web_usr; -- -- Name: TABLE marker_to_map; Type: ACL; Schema: sgn; Owner: postgres -- GRANT ALL ON TABLE sgn.marker_to_map TO web_usr; -- -- Name: TABLE metadata; Type: ACL; Schema: sgn; Owner: postgres -- GRANT ALL ON TABLE sgn.metadata TO web_usr; -- -- Name: SEQUENCE metadata_metadata_id_seq; Type: ACL; Schema: sgn; Owner: postgres -- GRANT ALL ON SEQUENCE sgn.metadata_metadata_id_seq TO web_usr; -- -- Name: TABLE microarray; Type: ACL; Schema: sgn; Owner: postgres -- GRANT ALL ON TABLE sgn.microarray TO web_usr; -- -- Name: SEQUENCE microarray_microarray_id_seq; Type: ACL; Schema: sgn; Owner: postgres -- GRANT ALL ON SEQUENCE sgn.microarray_microarray_id_seq TO web_usr; -- -- Name: TABLE misc; Type: ACL; Schema: sgn; Owner: postgres -- GRANT ALL ON TABLE sgn.misc TO web_usr; -- -- Name: SEQUENCE misc_misc_unique_id_seq; Type: ACL; Schema: sgn; Owner: postgres -- GRANT ALL ON SEQUENCE sgn.misc_misc_unique_id_seq TO web_usr; -- -- Name: TABLE organism; Type: ACL; Schema: sgn; Owner: postgres -- GRANT ALL ON TABLE sgn.organism TO web_usr; -- -- Name: SEQUENCE organism_organism_id_seq; Type: ACL; Schema: sgn; Owner: postgres -- GRANT ALL ON SEQUENCE sgn.organism_organism_id_seq TO web_usr; -- -- Name: TABLE organismgroup; Type: ACL; Schema: sgn; Owner: postgres -- GRANT ALL ON TABLE sgn.organismgroup TO web_usr; -- -- Name: TABLE organismgroup_member; Type: ACL; Schema: sgn; Owner: postgres -- GRANT ALL ON TABLE sgn.organismgroup_member TO web_usr; -- -- Name: SEQUENCE organismgroup_member_organismgroup_member_id_seq; Type: ACL; Schema: sgn; Owner: postgres -- GRANT SELECT,USAGE ON SEQUENCE sgn.organismgroup_member_organismgroup_member_id_seq TO web_usr; -- -- Name: SEQUENCE organismgroup_organismgroup_id_seq; Type: ACL; Schema: sgn; Owner: postgres -- GRANT SELECT,USAGE ON SEQUENCE sgn.organismgroup_organismgroup_id_seq TO web_usr; -- -- Name: TABLE p_markers; Type: ACL; Schema: sgn; Owner: postgres -- GRANT ALL ON TABLE sgn.p_markers TO web_usr; -- -- Name: SEQUENCE p_markers_pid_seq; Type: ACL; Schema: sgn; Owner: postgres -- GRANT ALL ON SEQUENCE sgn.p_markers_pid_seq TO web_usr; -- -- Name: TABLE pcr_exp_accession; Type: ACL; Schema: sgn; Owner: postgres -- GRANT ALL ON TABLE sgn.pcr_exp_accession TO web_usr; -- -- Name: SEQUENCE pcr_exp_accession_pcr_exp_accession_id_seq; Type: ACL; Schema: sgn; Owner: postgres -- GRANT ALL ON SEQUENCE sgn.pcr_exp_accession_pcr_exp_accession_id_seq TO web_usr; -- -- Name: TABLE pcr_experiment; Type: ACL; Schema: sgn; Owner: postgres -- GRANT ALL ON TABLE sgn.pcr_experiment TO web_usr; -- -- Name: SEQUENCE pcr_experiment_pcr_experiment_id_seq; Type: ACL; Schema: sgn; Owner: postgres -- GRANT ALL ON SEQUENCE sgn.pcr_experiment_pcr_experiment_id_seq TO web_usr; -- -- Name: TABLE pcr_experiment_sequence; Type: ACL; Schema: sgn; Owner: postgres -- GRANT ALL ON TABLE sgn.pcr_experiment_sequence TO web_usr; -- -- Name: SEQUENCE pcr_experiment_sequence_pcr_experiment_sequence_id_seq; Type: ACL; Schema: sgn; Owner: postgres -- GRANT SELECT,USAGE ON SEQUENCE sgn.pcr_experiment_sequence_pcr_experiment_sequence_id_seq TO web_usr; -- -- Name: TABLE pcr_product; Type: ACL; Schema: sgn; Owner: postgres -- GRANT ALL ON TABLE sgn.pcr_product TO web_usr; -- -- Name: SEQUENCE pcr_product_pcr_product_id_seq; Type: ACL; Schema: sgn; Owner: postgres -- GRANT ALL ON SEQUENCE sgn.pcr_product_pcr_product_id_seq TO web_usr; -- -- Name: TABLE primer_unigene_match; Type: ACL; Schema: sgn; Owner: postgres -- GRANT ALL ON TABLE sgn.primer_unigene_match TO web_usr; -- -- Name: SEQUENCE primer_unigene_match_primer_unigene_match_id_seq; Type: ACL; Schema: sgn; Owner: postgres -- GRANT ALL ON SEQUENCE sgn.primer_unigene_match_primer_unigene_match_id_seq TO web_usr; -- -- Name: TABLE qc_report; Type: ACL; Schema: sgn; Owner: postgres -- GRANT ALL ON TABLE sgn.qc_report TO web_usr; -- -- Name: SEQUENCE qc_report_qc_id_seq; Type: ACL; Schema: sgn; Owner: postgres -- GRANT ALL ON SEQUENCE sgn.qc_report_qc_id_seq TO web_usr; -- -- Name: TABLE rflp_markers; Type: ACL; Schema: sgn; Owner: postgres -- GRANT ALL ON TABLE sgn.rflp_markers TO web_usr; -- -- Name: SEQUENCE rflp_markers_rflp_id_seq; Type: ACL; Schema: sgn; Owner: postgres -- GRANT ALL ON SEQUENCE sgn.rflp_markers_rflp_id_seq TO web_usr; -- -- Name: TABLE rflp_sequences; Type: ACL; Schema: sgn; Owner: postgres -- GRANT ALL ON TABLE sgn.rflp_sequences TO web_usr; -- -- Name: SEQUENCE rflp_sequences_seq_id_seq; Type: ACL; Schema: sgn; Owner: postgres -- GRANT ALL ON SEQUENCE sgn.rflp_sequences_seq_id_seq TO web_usr; -- -- Name: TABLE rflp_unigene_associations; Type: ACL; Schema: sgn; Owner: postgres -- GRANT ALL ON TABLE sgn.rflp_unigene_associations TO web_usr; -- -- Name: SEQUENCE rflp_unigene_associations_rflp_unigene_assoc_id_seq; Type: ACL; Schema: sgn; Owner: postgres -- GRANT ALL ON SEQUENCE sgn.rflp_unigene_associations_rflp_unigene_assoc_id_seq TO web_usr; -- -- Name: TABLE seqread; Type: ACL; Schema: sgn; Owner: postgres -- GRANT ALL ON TABLE sgn.seqread TO web_usr; -- -- Name: SEQUENCE seqread_read_id_seq; Type: ACL; Schema: sgn; Owner: postgres -- GRANT ALL ON SEQUENCE sgn.seqread_read_id_seq TO web_usr; -- -- Name: TABLE sequence; Type: ACL; Schema: sgn; Owner: postgres -- GRANT ALL ON TABLE sgn.sequence TO web_usr; -- -- Name: SEQUENCE sequence_sequence_id_seq; Type: ACL; Schema: sgn; Owner: postgres -- GRANT ALL ON SEQUENCE sgn.sequence_sequence_id_seq TO web_usr; -- -- Name: TABLE snp; Type: ACL; Schema: sgn; Owner: postgres -- GRANT ALL ON TABLE sgn.snp TO web_usr; -- -- Name: TABLE snp_file; Type: ACL; Schema: sgn; Owner: postgres -- GRANT ALL ON TABLE sgn.snp_file TO web_usr; -- -- Name: SEQUENCE snp_file_snp_file_id_seq; Type: ACL; Schema: sgn; Owner: postgres -- GRANT SELECT,USAGE ON SEQUENCE sgn.snp_file_snp_file_id_seq TO web_usr; -- -- Name: SEQUENCE snp_snp_id_seq; Type: ACL; Schema: sgn; Owner: postgres -- GRANT SELECT,USAGE ON SEQUENCE sgn.snp_snp_id_seq TO web_usr; -- -- Name: TABLE snpprop; Type: ACL; Schema: sgn; Owner: postgres -- GRANT ALL ON TABLE sgn.snpprop TO web_usr; -- -- Name: SEQUENCE snpprop_snpprop_id_seq; Type: ACL; Schema: sgn; Owner: postgres -- GRANT SELECT,USAGE ON SEQUENCE sgn.snpprop_snpprop_id_seq TO web_usr; -- -- Name: TABLE ssr; Type: ACL; Schema: sgn; Owner: postgres -- GRANT ALL ON TABLE sgn.ssr TO web_usr; -- -- Name: TABLE ssr_primer_unigene_matches; Type: ACL; Schema: sgn; Owner: postgres -- GRANT ALL ON TABLE sgn.ssr_primer_unigene_matches TO web_usr; -- -- Name: SEQUENCE ssr_primer_unigene_matches_ssr_primer_unigene_match_id_seq; Type: ACL; Schema: sgn; Owner: postgres -- GRANT ALL ON SEQUENCE sgn.ssr_primer_unigene_matches_ssr_primer_unigene_match_id_seq TO web_usr; -- -- Name: TABLE ssr_repeats; Type: ACL; Schema: sgn; Owner: postgres -- GRANT ALL ON TABLE sgn.ssr_repeats TO web_usr; -- -- Name: SEQUENCE ssr_repeats_repeat_id_seq; Type: ACL; Schema: sgn; Owner: postgres -- GRANT ALL ON SEQUENCE sgn.ssr_repeats_repeat_id_seq TO web_usr; -- -- Name: SEQUENCE ssr_ssr_id_seq; Type: ACL; Schema: sgn; Owner: postgres -- GRANT ALL ON SEQUENCE sgn.ssr_ssr_id_seq TO web_usr; -- -- Name: TABLE submit_user; Type: ACL; Schema: sgn; Owner: postgres -- GRANT ALL ON TABLE sgn.submit_user TO web_usr; -- -- Name: SEQUENCE submit_user_submit_user_id_seq; Type: ACL; Schema: sgn; Owner: postgres -- GRANT ALL ON SEQUENCE sgn.submit_user_submit_user_id_seq TO web_usr; -- -- Name: TABLE taxonomy; Type: ACL; Schema: sgn; Owner: postgres -- GRANT ALL ON TABLE sgn.taxonomy TO PUBLIC; GRANT ALL ON TABLE sgn.taxonomy TO web_usr; -- -- Name: SEQUENCE taxonomy_tax_id_seq; Type: ACL; Schema: sgn; Owner: postgres -- GRANT ALL ON SEQUENCE sgn.taxonomy_tax_id_seq TO web_usr; -- -- Name: TABLE temp_caps_correspondence; Type: ACL; Schema: sgn; Owner: postgres -- GRANT ALL ON TABLE sgn.temp_caps_correspondence TO web_usr; -- -- Name: SEQUENCE temp_caps_correspondence_tcc_id_seq; Type: ACL; Schema: sgn; Owner: postgres -- GRANT ALL ON SEQUENCE sgn.temp_caps_correspondence_tcc_id_seq TO web_usr; -- -- Name: TABLE temp_map_correspondence; Type: ACL; Schema: sgn; Owner: postgres -- GRANT ALL ON TABLE sgn.temp_map_correspondence TO web_usr; -- -- Name: SEQUENCE temp_map_correspondence_tmc_id_seq; Type: ACL; Schema: sgn; Owner: postgres -- GRANT ALL ON SEQUENCE sgn.temp_map_correspondence_tmc_id_seq TO web_usr; -- -- Name: TABLE temp_marker_correspondence; Type: ACL; Schema: sgn; Owner: postgres -- GRANT ALL ON TABLE sgn.temp_marker_correspondence TO web_usr; -- -- Name: SEQUENCE temp_marker_correspondence_tmc_id_seq; Type: ACL; Schema: sgn; Owner: postgres -- GRANT ALL ON SEQUENCE sgn.temp_marker_correspondence_tmc_id_seq TO web_usr; -- -- Name: TABLE tigrtc_index; Type: ACL; Schema: sgn; Owner: postgres -- GRANT ALL ON TABLE sgn.tigrtc_index TO web_usr; -- -- Name: SEQUENCE tigrtc_index_tcindex_id_seq; Type: ACL; Schema: sgn; Owner: postgres -- GRANT ALL ON SEQUENCE sgn.tigrtc_index_tcindex_id_seq TO web_usr; -- -- Name: TABLE tigrtc_membership; Type: ACL; Schema: sgn; Owner: postgres -- GRANT ALL ON TABLE sgn.tigrtc_membership TO web_usr; -- -- Name: SEQUENCE tigrtc_membership_tigrtc_membership_id_seq; Type: ACL; Schema: sgn; Owner: postgres -- GRANT ALL ON SEQUENCE sgn.tigrtc_membership_tigrtc_membership_id_seq TO web_usr; -- -- Name: TABLE tigrtc_tracking; Type: ACL; Schema: sgn; Owner: postgres -- GRANT ALL ON TABLE sgn.tigrtc_tracking TO web_usr; -- -- Name: SEQUENCE tigrtc_tracking_tigrtc_tracking_id_seq; Type: ACL; Schema: sgn; Owner: postgres -- GRANT ALL ON SEQUENCE sgn.tigrtc_tracking_tigrtc_tracking_id_seq TO web_usr; -- -- Name: TABLE tm_markers; Type: ACL; Schema: sgn; Owner: postgres -- GRANT ALL ON TABLE sgn.tm_markers TO web_usr; -- -- Name: TABLE tm_markers_sequences; Type: ACL; Schema: sgn; Owner: postgres -- GRANT ALL ON TABLE sgn.tm_markers_sequences TO web_usr; -- -- Name: SEQUENCE tm_markers_tm_id_seq; Type: ACL; Schema: sgn; Owner: postgres -- GRANT ALL ON SEQUENCE sgn.tm_markers_tm_id_seq TO web_usr; -- -- Name: TABLE trim_feature; Type: ACL; Schema: sgn; Owner: postgres -- GRANT ALL ON TABLE sgn.trim_feature TO web_usr; -- -- Name: SEQUENCE trim_feature_feature_id_seq; Type: ACL; Schema: sgn; Owner: postgres -- GRANT ALL ON SEQUENCE sgn.trim_feature_feature_id_seq TO web_usr; -- -- Name: TABLE trim_feature_types; Type: ACL; Schema: sgn; Owner: postgres -- GRANT ALL ON TABLE sgn.trim_feature_types TO web_usr; -- -- Name: SEQUENCE trim_feature_types_trim_type_id_seq; Type: ACL; Schema: sgn; Owner: postgres -- GRANT ALL ON SEQUENCE sgn.trim_feature_types_trim_type_id_seq TO web_usr; -- -- Name: TABLE types; Type: ACL; Schema: sgn; Owner: postgres -- GRANT ALL ON TABLE sgn.types TO web_usr; -- -- Name: SEQUENCE types_type_id_seq; Type: ACL; Schema: sgn; Owner: postgres -- GRANT ALL ON SEQUENCE sgn.types_type_id_seq TO web_usr; -- -- Name: TABLE unigene; Type: ACL; Schema: sgn; Owner: postgres -- GRANT ALL ON TABLE sgn.unigene TO web_usr; -- -- Name: TABLE unigene_build; Type: ACL; Schema: sgn; Owner: postgres -- GRANT ALL ON TABLE sgn.unigene_build TO web_usr; -- -- Name: SEQUENCE unigene_build_unigene_build_id_seq; Type: ACL; Schema: sgn; Owner: postgres -- GRANT ALL ON SEQUENCE sgn.unigene_build_unigene_build_id_seq TO web_usr; -- -- Name: TABLE unigene_consensi; Type: ACL; Schema: sgn; Owner: postgres -- GRANT ALL ON TABLE sgn.unigene_consensi TO web_usr; -- -- Name: SEQUENCE unigene_consensi_consensi_id_seq; Type: ACL; Schema: sgn; Owner: postgres -- GRANT ALL ON SEQUENCE sgn.unigene_consensi_consensi_id_seq TO web_usr; -- -- Name: TABLE unigene_member; Type: ACL; Schema: sgn; Owner: postgres -- GRANT ALL ON TABLE sgn.unigene_member TO web_usr; -- -- Name: SEQUENCE unigene_member_unigene_member_id_seq; Type: ACL; Schema: sgn; Owner: postgres -- GRANT ALL ON SEQUENCE sgn.unigene_member_unigene_member_id_seq TO web_usr; -- -- Name: SEQUENCE unigene_unigene_id_seq; Type: ACL; Schema: sgn; Owner: postgres -- GRANT ALL ON SEQUENCE sgn.unigene_unigene_id_seq TO web_usr; -- -- Name: TABLE bac_status; Type: ACL; Schema: sgn_people; Owner: postgres -- GRANT ALL ON TABLE sgn_people.bac_status TO web_usr; -- -- Name: SEQUENCE bac_status_bac_status_id_seq; Type: ACL; Schema: sgn_people; Owner: postgres -- GRANT ALL ON SEQUENCE sgn_people.bac_status_bac_status_id_seq TO web_usr; -- -- Name: TABLE bac_status_log; Type: ACL; Schema: sgn_people; Owner: postgres -- GRANT ALL ON TABLE sgn_people.bac_status_log TO web_usr; -- -- Name: SEQUENCE bac_status_log_bac_status_log_id_seq; Type: ACL; Schema: sgn_people; Owner: postgres -- GRANT ALL ON SEQUENCE sgn_people.bac_status_log_bac_status_log_id_seq TO web_usr; -- -- Name: TABLE clone_il_mapping_bin_log; Type: ACL; Schema: sgn_people; Owner: postgres -- GRANT SELECT ON TABLE sgn_people.clone_il_mapping_bin_log TO PUBLIC; GRANT ALL ON TABLE sgn_people.clone_il_mapping_bin_log TO web_usr; -- -- Name: SEQUENCE clone_il_mapping_bin_log_sp_clone_il_mapping_bin_log_id_seq; Type: ACL; Schema: sgn_people; Owner: postgres -- GRANT ALL ON SEQUENCE sgn_people.clone_il_mapping_bin_log_sp_clone_il_mapping_bin_log_id_seq TO web_usr; -- -- Name: TABLE clone_validation_log; Type: ACL; Schema: sgn_people; Owner: postgres -- GRANT SELECT ON TABLE sgn_people.clone_validation_log TO PUBLIC; GRANT ALL ON TABLE sgn_people.clone_validation_log TO web_usr; -- -- Name: SEQUENCE clone_validation_log_clone_validation_log_id_seq; Type: ACL; Schema: sgn_people; Owner: postgres -- GRANT ALL ON SEQUENCE sgn_people.clone_validation_log_clone_validation_log_id_seq TO web_usr; -- -- Name: TABLE clone_verification_log; Type: ACL; Schema: sgn_people; Owner: postgres -- GRANT SELECT ON TABLE sgn_people.clone_verification_log TO PUBLIC; GRANT ALL ON TABLE sgn_people.clone_verification_log TO web_usr; -- -- Name: SEQUENCE clone_verification_log_clone_verification_log_id_seq; Type: ACL; Schema: sgn_people; Owner: postgres -- GRANT ALL ON SEQUENCE sgn_people.clone_verification_log_clone_verification_log_id_seq TO web_usr; -- -- Name: TABLE forum_post; Type: ACL; Schema: sgn_people; Owner: postgres -- GRANT ALL ON TABLE sgn_people.forum_post TO web_usr; -- -- Name: SEQUENCE forum_post_forum_post_id_seq; Type: ACL; Schema: sgn_people; Owner: postgres -- GRANT ALL ON SEQUENCE sgn_people.forum_post_forum_post_id_seq TO web_usr; -- -- Name: TABLE forum_topic; Type: ACL; Schema: sgn_people; Owner: postgres -- GRANT ALL ON TABLE sgn_people.forum_topic TO web_usr; -- -- Name: SEQUENCE forum_topic_forum_topic_id_seq; Type: ACL; Schema: sgn_people; Owner: postgres -- GRANT ALL ON SEQUENCE sgn_people.forum_topic_forum_topic_id_seq TO web_usr; -- -- Name: TABLE list; Type: ACL; Schema: sgn_people; Owner: postgres -- GRANT ALL ON TABLE sgn_people.list TO web_usr; -- -- Name: TABLE list_item; Type: ACL; Schema: sgn_people; Owner: postgres -- GRANT ALL ON TABLE sgn_people.list_item TO web_usr; -- -- Name: SEQUENCE list_item_list_item_id_seq; Type: ACL; Schema: sgn_people; Owner: postgres -- GRANT ALL ON SEQUENCE sgn_people.list_item_list_item_id_seq TO web_usr; -- -- Name: SEQUENCE list_list_id_seq; Type: ACL; Schema: sgn_people; Owner: postgres -- GRANT ALL ON SEQUENCE sgn_people.list_list_id_seq TO web_usr; -- -- Name: TABLE sp_clone_il_mapping_segment_log; Type: ACL; Schema: sgn_people; Owner: postgres -- GRANT SELECT ON TABLE sgn_people.sp_clone_il_mapping_segment_log TO PUBLIC; GRANT ALL ON TABLE sgn_people.sp_clone_il_mapping_segment_log TO web_usr; -- -- Name: SEQUENCE sp_clone_il_mapping_segment_l_sp_clone_il_mapping_segment_l_seq; Type: ACL; Schema: sgn_people; Owner: postgres -- GRANT ALL ON SEQUENCE sgn_people.sp_clone_il_mapping_segment_l_sp_clone_il_mapping_segment_l_seq TO web_usr; -- -- Name: TABLE sp_dataset; Type: ACL; Schema: sgn_people; Owner: postgres -- GRANT ALL ON TABLE sgn_people.sp_dataset TO web_usr; -- -- Name: SEQUENCE sp_dataset_sp_dataset_id_seq; Type: ACL; Schema: sgn_people; Owner: postgres -- GRANT SELECT,USAGE ON SEQUENCE sgn_people.sp_dataset_sp_dataset_id_seq TO web_usr; -- -- Name: TABLE sp_group; Type: ACL; Schema: sgn_people; Owner: postgres -- GRANT ALL ON TABLE sgn_people.sp_group TO web_usr; -- -- Name: TABLE sp_group_member; Type: ACL; Schema: sgn_people; Owner: postgres -- GRANT ALL ON TABLE sgn_people.sp_group_member TO web_usr; -- -- Name: SEQUENCE sp_group_sp_group_id_seq; Type: ACL; Schema: sgn_people; Owner: postgres -- GRANT SELECT,USAGE ON SEQUENCE sgn_people.sp_group_sp_group_id_seq TO web_usr; -- -- Name: TABLE sp_login_old; Type: ACL; Schema: sgn_people; Owner: postgres -- GRANT ALL ON TABLE sgn_people.sp_login_old TO web_usr; -- -- Name: SEQUENCE sp_login_old_sp_login_id_seq; Type: ACL; Schema: sgn_people; Owner: postgres -- GRANT ALL ON SEQUENCE sgn_people.sp_login_old_sp_login_id_seq TO web_usr; -- -- Name: TABLE sp_organisms; Type: ACL; Schema: sgn_people; Owner: postgres -- GRANT ALL ON TABLE sgn_people.sp_organisms TO web_usr; -- -- Name: SEQUENCE sp_organisms_organism_id_seq; Type: ACL; Schema: sgn_people; Owner: postgres -- GRANT ALL ON SEQUENCE sgn_people.sp_organisms_organism_id_seq TO web_usr; -- -- Name: TABLE sp_organization; Type: ACL; Schema: sgn_people; Owner: postgres -- GRANT ALL ON TABLE sgn_people.sp_organization TO web_usr; -- -- Name: TABLE sp_organization_person; Type: ACL; Schema: sgn_people; Owner: postgres -- GRANT ALL ON TABLE sgn_people.sp_organization_person TO web_usr; -- -- Name: SEQUENCE sp_organization_person_sp_organization_person_id_seq; Type: ACL; Schema: sgn_people; Owner: postgres -- GRANT ALL ON SEQUENCE sgn_people.sp_organization_person_sp_organization_person_id_seq TO web_usr; -- -- Name: SEQUENCE sp_organization_sp_organization_id_seq; Type: ACL; Schema: sgn_people; Owner: postgres -- GRANT ALL ON SEQUENCE sgn_people.sp_organization_sp_organization_id_seq TO web_usr; -- -- Name: TABLE sp_papers; Type: ACL; Schema: sgn_people; Owner: postgres -- GRANT ALL ON TABLE sgn_people.sp_papers TO web_usr; -- -- Name: SEQUENCE sp_papers_sp_paper_id_seq; Type: ACL; Schema: sgn_people; Owner: postgres -- GRANT ALL ON SEQUENCE sgn_people.sp_papers_sp_paper_id_seq TO web_usr; -- -- Name: TABLE sp_person; Type: ACL; Schema: sgn_people; Owner: postgres -- GRANT ALL ON TABLE sgn_people.sp_person TO web_usr; -- -- Name: TABLE sp_person_organisms; Type: ACL; Schema: sgn_people; Owner: postgres -- GRANT ALL ON TABLE sgn_people.sp_person_organisms TO web_usr; -- -- Name: SEQUENCE sp_person_organisms_sp_person_organisms_id_seq; Type: ACL; Schema: sgn_people; Owner: postgres -- GRANT ALL ON SEQUENCE sgn_people.sp_person_organisms_sp_person_organisms_id_seq TO web_usr; -- -- Name: TABLE sp_person_roles; Type: ACL; Schema: sgn_people; Owner: postgres -- GRANT ALL ON TABLE sgn_people.sp_person_roles TO web_usr; -- -- Name: SEQUENCE sp_person_roles_sp_person_role_id_seq; Type: ACL; Schema: sgn_people; Owner: postgres -- GRANT ALL ON SEQUENCE sgn_people.sp_person_roles_sp_person_role_id_seq TO web_usr; -- -- Name: SEQUENCE sp_person_sp_person_id_seq; Type: ACL; Schema: sgn_people; Owner: postgres -- GRANT ALL ON SEQUENCE sgn_people.sp_person_sp_person_id_seq TO web_usr; -- -- Name: TABLE sp_project; Type: ACL; Schema: sgn_people; Owner: postgres -- GRANT ALL ON TABLE sgn_people.sp_project TO web_usr; -- -- Name: TABLE sp_project_il_mapping_clone_log; Type: ACL; Schema: sgn_people; Owner: postgres -- GRANT SELECT ON TABLE sgn_people.sp_project_il_mapping_clone_log TO PUBLIC; GRANT ALL ON TABLE sgn_people.sp_project_il_mapping_clone_log TO web_usr; -- -- Name: SEQUENCE sp_project_il_mapping_clone_l_sp_project_il_mapping_clone_l_seq; Type: ACL; Schema: sgn_people; Owner: postgres -- GRANT ALL ON SEQUENCE sgn_people.sp_project_il_mapping_clone_l_sp_project_il_mapping_clone_l_seq TO web_usr; -- -- Name: TABLE sp_project_organization; Type: ACL; Schema: sgn_people; Owner: postgres -- GRANT ALL ON TABLE sgn_people.sp_project_organization TO web_usr; -- -- Name: SEQUENCE sp_project_organization_sp_project_organization_id_seq; Type: ACL; Schema: sgn_people; Owner: postgres -- GRANT ALL ON SEQUENCE sgn_people.sp_project_organization_sp_project_organization_id_seq TO web_usr; -- -- Name: TABLE sp_project_person; Type: ACL; Schema: sgn_people; Owner: postgres -- GRANT ALL ON TABLE sgn_people.sp_project_person TO web_usr; -- -- Name: SEQUENCE sp_project_person_sp_project_person_id_seq; Type: ACL; Schema: sgn_people; Owner: postgres -- GRANT ALL ON SEQUENCE sgn_people.sp_project_person_sp_project_person_id_seq TO web_usr; -- -- Name: SEQUENCE sp_project_sp_project_id_seq; Type: ACL; Schema: sgn_people; Owner: postgres -- GRANT ALL ON SEQUENCE sgn_people.sp_project_sp_project_id_seq TO web_usr; -- -- Name: TABLE sp_roles; Type: ACL; Schema: sgn_people; Owner: postgres -- GRANT ALL ON TABLE sgn_people.sp_roles TO web_usr; -- -- Name: SEQUENCE sp_roles_sp_role_id_seq; Type: ACL; Schema: sgn_people; Owner: postgres -- GRANT ALL ON SEQUENCE sgn_people.sp_roles_sp_role_id_seq TO web_usr; -- -- Name: TABLE user_map; Type: ACL; Schema: sgn_people; Owner: postgres -- GRANT ALL ON TABLE sgn_people.user_map TO web_usr; -- -- Name: TABLE user_map_data; Type: ACL; Schema: sgn_people; Owner: postgres -- GRANT ALL ON TABLE sgn_people.user_map_data TO web_usr; -- -- Name: SEQUENCE user_map_data_user_map_data_id_seq; Type: ACL; Schema: sgn_people; Owner: postgres -- GRANT ALL ON SEQUENCE sgn_people.user_map_data_user_map_data_id_seq TO web_usr; -- -- Name: SEQUENCE user_map_user_map_id_seq; Type: ACL; Schema: sgn_people; Owner: postgres -- GRANT ALL ON SEQUENCE sgn_people.user_map_user_map_id_seq TO web_usr; -- -- Name: TABLE facility; Type: ACL; Schema: sgn_submit; Owner: postgres -- GRANT SELECT,INSERT,UPDATE ON TABLE sgn_submit.facility TO web_usr; -- -- Name: SEQUENCE facility_facility_id_seq; Type: ACL; Schema: sgn_submit; Owner: postgres -- GRANT ALL ON SEQUENCE sgn_submit.facility_facility_id_seq TO web_usr; -- -- Name: TABLE library; Type: ACL; Schema: sgn_submit; Owner: postgres -- GRANT SELECT,INSERT,UPDATE ON TABLE sgn_submit.library TO web_usr; -- -- Name: SEQUENCE library_library_id_seq; Type: ACL; Schema: sgn_submit; Owner: postgres -- GRANT ALL ON SEQUENCE sgn_submit.library_library_id_seq TO web_usr; -- -- Name: TABLE seqread; Type: ACL; Schema: sgn_submit; Owner: postgres -- GRANT SELECT,INSERT,UPDATE ON TABLE sgn_submit.seqread TO web_usr; -- -- Name: SEQUENCE seqread_submit_read_id_seq; Type: ACL; Schema: sgn_submit; Owner: postgres -- GRANT ALL ON SEQUENCE sgn_submit.seqread_submit_read_id_seq TO web_usr; -- -- Name: TABLE submit_user; Type: ACL; Schema: sgn_submit; Owner: postgres -- GRANT SELECT,INSERT,UPDATE ON TABLE sgn_submit.submit_user TO web_usr; -- -- Name: SEQUENCE submit_user_submit_user_id_seq; Type: ACL; Schema: sgn_submit; Owner: postgres -- GRANT ALL ON SEQUENCE sgn_submit.submit_user_submit_user_id_seq TO web_usr; -- -- Name: TABLE fattribute; Type: ACL; Schema: tomato_gff; Owner: postgres -- GRANT SELECT ON TABLE tomato_gff.fattribute TO web_usr; -- -- Name: TABLE fattribute_to_feature; Type: ACL; Schema: tomato_gff; Owner: postgres -- GRANT SELECT ON TABLE tomato_gff.fattribute_to_feature TO web_usr; -- -- Name: TABLE fdata; Type: ACL; Schema: tomato_gff; Owner: postgres -- GRANT SELECT ON TABLE tomato_gff.fdata TO web_usr; -- -- Name: TABLE fdna; Type: ACL; Schema: tomato_gff; Owner: postgres -- GRANT SELECT ON TABLE tomato_gff.fdna TO web_usr; -- -- Name: TABLE fgroup; Type: ACL; Schema: tomato_gff; Owner: postgres -- GRANT SELECT ON TABLE tomato_gff.fgroup TO web_usr; -- -- Name: TABLE fmeta; Type: ACL; Schema: tomato_gff; Owner: postgres -- GRANT SELECT ON TABLE tomato_gff.fmeta TO web_usr; -- -- Name: TABLE ftype; Type: ACL; Schema: tomato_gff; Owner: postgres -- GRANT SELECT ON TABLE tomato_gff.ftype TO web_usr; -- -- Name: accessions; Type: MATERIALIZED VIEW DATA; Schema: public; Owner: web_usr -- REFRESH MATERIALIZED VIEW public.accessions; -- -- Name: materialized_phenoview; Type: MATERIALIZED VIEW DATA; Schema: public; Owner: web_usr -- REFRESH MATERIALIZED VIEW public.materialized_phenoview; -- -- Name: accessionsxbreeding_programs; Type: MATERIALIZED VIEW DATA; Schema: public; Owner: web_usr -- REFRESH MATERIALIZED VIEW public.accessionsxbreeding_programs; -- -- Name: materialized_genoview; Type: MATERIALIZED VIEW DATA; Schema: public; Owner: web_usr -- REFRESH MATERIALIZED VIEW public.materialized_genoview; -- -- Name: accessionsxgenotyping_projects; Type: MATERIALIZED VIEW DATA; Schema: public; Owner: web_usr -- REFRESH MATERIALIZED VIEW public.accessionsxgenotyping_projects; -- -- Name: accessionsxgenotyping_protocols; Type: MATERIALIZED VIEW DATA; Schema: public; Owner: web_usr -- REFRESH MATERIALIZED VIEW public.accessionsxgenotyping_protocols; -- -- Name: accessionsxlocations; Type: MATERIALIZED VIEW DATA; Schema: public; Owner: web_usr -- REFRESH MATERIALIZED VIEW public.accessionsxlocations; -- -- Name: accessionsxplants; Type: MATERIALIZED VIEW DATA; Schema: public; Owner: web_usr -- REFRESH MATERIALIZED VIEW public.accessionsxplants; -- -- Name: accessionsxplots; Type: MATERIALIZED VIEW DATA; Schema: public; Owner: web_usr -- REFRESH MATERIALIZED VIEW public.accessionsxplots; -- -- Name: accessionsxseedlots; Type: MATERIALIZED VIEW DATA; Schema: public; Owner: web_usr -- REFRESH MATERIALIZED VIEW public.accessionsxseedlots; -- -- Name: accessionsxtrait_components; Type: MATERIALIZED VIEW DATA; Schema: public; Owner: web_usr -- REFRESH MATERIALIZED VIEW public.accessionsxtrait_components; -- -- Name: accessionsxtraits; Type: MATERIALIZED VIEW DATA; Schema: public; Owner: web_usr -- REFRESH MATERIALIZED VIEW public.accessionsxtraits; -- -- Name: accessionsxtrial_designs; Type: MATERIALIZED VIEW DATA; Schema: public; Owner: web_usr -- REFRESH MATERIALIZED VIEW public.accessionsxtrial_designs; -- -- Name: accessionsxtrial_types; Type: MATERIALIZED VIEW DATA; Schema: public; Owner: web_usr -- REFRESH MATERIALIZED VIEW public.accessionsxtrial_types; -- -- Name: accessionsxtrials; Type: MATERIALIZED VIEW DATA; Schema: public; Owner: web_usr -- REFRESH MATERIALIZED VIEW public.accessionsxtrials; -- -- Name: accessionsxyears; Type: MATERIALIZED VIEW DATA; Schema: public; Owner: web_usr -- REFRESH MATERIALIZED VIEW public.accessionsxyears; -- -- Name: breeding_programs; Type: MATERIALIZED VIEW DATA; Schema: public; Owner: web_usr -- REFRESH MATERIALIZED VIEW public.breeding_programs; -- -- Name: genotyping_projects; Type: MATERIALIZED VIEW DATA; Schema: public; Owner: web_usr -- REFRESH MATERIALIZED VIEW public.genotyping_projects; -- -- Name: breeding_programsxgenotyping_projects; Type: MATERIALIZED VIEW DATA; Schema: public; Owner: web_usr -- REFRESH MATERIALIZED VIEW public.breeding_programsxgenotyping_projects; -- -- Name: breeding_programsxgenotyping_protocols; Type: MATERIALIZED VIEW DATA; Schema: public; Owner: web_usr -- REFRESH MATERIALIZED VIEW public.breeding_programsxgenotyping_protocols; -- -- Name: breeding_programsxlocations; Type: MATERIALIZED VIEW DATA; Schema: public; Owner: web_usr -- REFRESH MATERIALIZED VIEW public.breeding_programsxlocations; -- -- Name: breeding_programsxplants; Type: MATERIALIZED VIEW DATA; Schema: public; Owner: web_usr -- REFRESH MATERIALIZED VIEW public.breeding_programsxplants; -- -- Name: breeding_programsxplots; Type: MATERIALIZED VIEW DATA; Schema: public; Owner: web_usr -- REFRESH MATERIALIZED VIEW public.breeding_programsxplots; -- -- Name: breeding_programsxseedlots; Type: MATERIALIZED VIEW DATA; Schema: public; Owner: web_usr -- REFRESH MATERIALIZED VIEW public.breeding_programsxseedlots; -- -- Name: breeding_programsxtrait_components; Type: MATERIALIZED VIEW DATA; Schema: public; Owner: web_usr -- REFRESH MATERIALIZED VIEW public.breeding_programsxtrait_components; -- -- Name: breeding_programsxtraits; Type: MATERIALIZED VIEW DATA; Schema: public; Owner: web_usr -- REFRESH MATERIALIZED VIEW public.breeding_programsxtraits; -- -- Name: breeding_programsxtrial_designs; Type: MATERIALIZED VIEW DATA; Schema: public; Owner: web_usr -- REFRESH MATERIALIZED VIEW public.breeding_programsxtrial_designs; -- -- Name: breeding_programsxtrial_types; Type: MATERIALIZED VIEW DATA; Schema: public; Owner: web_usr -- REFRESH MATERIALIZED VIEW public.breeding_programsxtrial_types; -- -- Name: breeding_programsxtrials; Type: MATERIALIZED VIEW DATA; Schema: public; Owner: web_usr -- REFRESH MATERIALIZED VIEW public.breeding_programsxtrials; -- -- Name: breeding_programsxyears; Type: MATERIALIZED VIEW DATA; Schema: public; Owner: web_usr -- REFRESH MATERIALIZED VIEW public.breeding_programsxyears; -- -- Name: genotyping_projectsxaccessions; Type: MATERIALIZED VIEW DATA; Schema: public; Owner: web_usr -- REFRESH MATERIALIZED VIEW public.genotyping_projectsxaccessions; -- -- Name: genotyping_projectsxbreeding_programs; Type: MATERIALIZED VIEW DATA; Schema: public; Owner: web_usr -- REFRESH MATERIALIZED VIEW public.genotyping_projectsxbreeding_programs; -- -- Name: genotyping_projectsxgenotyping_protocols; Type: MATERIALIZED VIEW DATA; Schema: public; Owner: web_usr -- REFRESH MATERIALIZED VIEW public.genotyping_projectsxgenotyping_protocols; -- -- Name: genotyping_projectsxlocations; Type: MATERIALIZED VIEW DATA; Schema: public; Owner: web_usr -- REFRESH MATERIALIZED VIEW public.genotyping_projectsxlocations; -- -- Name: genotyping_projectsxtraits; Type: MATERIALIZED VIEW DATA; Schema: public; Owner: web_usr -- REFRESH MATERIALIZED VIEW public.genotyping_projectsxtraits; -- -- Name: genotyping_projectsxtrials; Type: MATERIALIZED VIEW DATA; Schema: public; Owner: web_usr -- REFRESH MATERIALIZED VIEW public.genotyping_projectsxtrials; -- -- Name: genotyping_projectsxyears; Type: MATERIALIZED VIEW DATA; Schema: public; Owner: web_usr -- REFRESH MATERIALIZED VIEW public.genotyping_projectsxyears; -- -- Name: genotyping_protocols; Type: MATERIALIZED VIEW DATA; Schema: public; Owner: web_usr -- REFRESH MATERIALIZED VIEW public.genotyping_protocols; -- -- Name: genotyping_protocolsxgenotyping_projects; Type: MATERIALIZED VIEW DATA; Schema: public; Owner: web_usr -- REFRESH MATERIALIZED VIEW public.genotyping_protocolsxgenotyping_projects; -- -- Name: genotyping_protocolsxlocations; Type: MATERIALIZED VIEW DATA; Schema: public; Owner: web_usr -- REFRESH MATERIALIZED VIEW public.genotyping_protocolsxlocations; -- -- Name: genotyping_protocolsxplants; Type: MATERIALIZED VIEW DATA; Schema: public; Owner: web_usr -- REFRESH MATERIALIZED VIEW public.genotyping_protocolsxplants; -- -- Name: genotyping_protocolsxplots; Type: MATERIALIZED VIEW DATA; Schema: public; Owner: web_usr -- REFRESH MATERIALIZED VIEW public.genotyping_protocolsxplots; -- -- Name: genotyping_protocolsxseedlots; Type: MATERIALIZED VIEW DATA; Schema: public; Owner: web_usr -- REFRESH MATERIALIZED VIEW public.genotyping_protocolsxseedlots; -- -- Name: genotyping_protocolsxtrait_components; Type: MATERIALIZED VIEW DATA; Schema: public; Owner: web_usr -- REFRESH MATERIALIZED VIEW public.genotyping_protocolsxtrait_components; -- -- Name: genotyping_protocolsxtraits; Type: MATERIALIZED VIEW DATA; Schema: public; Owner: web_usr -- REFRESH MATERIALIZED VIEW public.genotyping_protocolsxtraits; -- -- Name: genotyping_protocolsxtrial_designs; Type: MATERIALIZED VIEW DATA; Schema: public; Owner: web_usr -- REFRESH MATERIALIZED VIEW public.genotyping_protocolsxtrial_designs; -- -- Name: genotyping_protocolsxtrial_types; Type: MATERIALIZED VIEW DATA; Schema: public; Owner: web_usr -- REFRESH MATERIALIZED VIEW public.genotyping_protocolsxtrial_types; -- -- Name: genotyping_protocolsxtrials; Type: MATERIALIZED VIEW DATA; Schema: public; Owner: web_usr -- REFRESH MATERIALIZED VIEW public.genotyping_protocolsxtrials; -- -- Name: genotyping_protocolsxyears; Type: MATERIALIZED VIEW DATA; Schema: public; Owner: web_usr -- REFRESH MATERIALIZED VIEW public.genotyping_protocolsxyears; -- -- Name: locations; Type: MATERIALIZED VIEW DATA; Schema: public; Owner: web_usr -- REFRESH MATERIALIZED VIEW public.locations; -- -- Name: locationsxgenotyping_projects; Type: MATERIALIZED VIEW DATA; Schema: public; Owner: web_usr -- REFRESH MATERIALIZED VIEW public.locationsxgenotyping_projects; -- -- Name: locationsxplants; Type: MATERIALIZED VIEW DATA; Schema: public; Owner: web_usr -- REFRESH MATERIALIZED VIEW public.locationsxplants; -- -- Name: locationsxplots; Type: MATERIALIZED VIEW DATA; Schema: public; Owner: web_usr -- REFRESH MATERIALIZED VIEW public.locationsxplots; -- -- Name: locationsxseedlots; Type: MATERIALIZED VIEW DATA; Schema: public; Owner: web_usr -- REFRESH MATERIALIZED VIEW public.locationsxseedlots; -- -- Name: locationsxtrait_components; Type: MATERIALIZED VIEW DATA; Schema: public; Owner: web_usr -- REFRESH MATERIALIZED VIEW public.locationsxtrait_components; -- -- Name: locationsxtraits; Type: MATERIALIZED VIEW DATA; Schema: public; Owner: web_usr -- REFRESH MATERIALIZED VIEW public.locationsxtraits; -- -- Name: locationsxtrial_designs; Type: MATERIALIZED VIEW DATA; Schema: public; Owner: web_usr -- REFRESH MATERIALIZED VIEW public.locationsxtrial_designs; -- -- Name: locationsxtrial_types; Type: MATERIALIZED VIEW DATA; Schema: public; Owner: web_usr -- REFRESH MATERIALIZED VIEW public.locationsxtrial_types; -- -- Name: locationsxtrials; Type: MATERIALIZED VIEW DATA; Schema: public; Owner: web_usr -- REFRESH MATERIALIZED VIEW public.locationsxtrials; -- -- Name: locationsxyears; Type: MATERIALIZED VIEW DATA; Schema: public; Owner: web_usr -- REFRESH MATERIALIZED VIEW public.locationsxyears; -- -- Name: materialized_phenotype_jsonb_table; Type: MATERIALIZED VIEW DATA; Schema: public; Owner: web_usr -- REFRESH MATERIALIZED VIEW public.materialized_phenotype_jsonb_table; -- -- Name: materialized_stockprop; Type: MATERIALIZED VIEW DATA; Schema: public; Owner: web_usr -- REFRESH MATERIALIZED VIEW public.materialized_stockprop; -- -- Name: plants; Type: MATERIALIZED VIEW DATA; Schema: public; Owner: web_usr -- REFRESH MATERIALIZED VIEW public.plants; -- -- Name: plantsxplots; Type: MATERIALIZED VIEW DATA; Schema: public; Owner: web_usr -- REFRESH MATERIALIZED VIEW public.plantsxplots; -- -- Name: plantsxseedlots; Type: MATERIALIZED VIEW DATA; Schema: public; Owner: web_usr -- REFRESH MATERIALIZED VIEW public.plantsxseedlots; -- -- Name: plantsxtrait_components; Type: MATERIALIZED VIEW DATA; Schema: public; Owner: web_usr -- REFRESH MATERIALIZED VIEW public.plantsxtrait_components; -- -- Name: plantsxtraits; Type: MATERIALIZED VIEW DATA; Schema: public; Owner: web_usr -- REFRESH MATERIALIZED VIEW public.plantsxtraits; -- -- Name: plantsxtrial_designs; Type: MATERIALIZED VIEW DATA; Schema: public; Owner: web_usr -- REFRESH MATERIALIZED VIEW public.plantsxtrial_designs; -- -- Name: plantsxtrial_types; Type: MATERIALIZED VIEW DATA; Schema: public; Owner: web_usr -- REFRESH MATERIALIZED VIEW public.plantsxtrial_types; -- -- Name: plantsxtrials; Type: MATERIALIZED VIEW DATA; Schema: public; Owner: web_usr -- REFRESH MATERIALIZED VIEW public.plantsxtrials; -- -- Name: plantsxyears; Type: MATERIALIZED VIEW DATA; Schema: public; Owner: web_usr -- REFRESH MATERIALIZED VIEW public.plantsxyears; -- -- Name: plots; Type: MATERIALIZED VIEW DATA; Schema: public; Owner: web_usr -- REFRESH MATERIALIZED VIEW public.plots; -- -- Name: plotsxseedlots; Type: MATERIALIZED VIEW DATA; Schema: public; Owner: web_usr -- REFRESH MATERIALIZED VIEW public.plotsxseedlots; -- -- Name: plotsxtrait_components; Type: MATERIALIZED VIEW DATA; Schema: public; Owner: web_usr -- REFRESH MATERIALIZED VIEW public.plotsxtrait_components; -- -- Name: plotsxtraits; Type: MATERIALIZED VIEW DATA; Schema: public; Owner: web_usr -- REFRESH MATERIALIZED VIEW public.plotsxtraits; -- -- Name: plotsxtrial_designs; Type: MATERIALIZED VIEW DATA; Schema: public; Owner: web_usr -- REFRESH MATERIALIZED VIEW public.plotsxtrial_designs; -- -- Name: plotsxtrial_types; Type: MATERIALIZED VIEW DATA; Schema: public; Owner: web_usr -- REFRESH MATERIALIZED VIEW public.plotsxtrial_types; -- -- Name: plotsxtrials; Type: MATERIALIZED VIEW DATA; Schema: public; Owner: web_usr -- REFRESH MATERIALIZED VIEW public.plotsxtrials; -- -- Name: plotsxyears; Type: MATERIALIZED VIEW DATA; Schema: public; Owner: web_usr -- REFRESH MATERIALIZED VIEW public.plotsxyears; -- -- Name: seedlots; Type: MATERIALIZED VIEW DATA; Schema: public; Owner: web_usr -- REFRESH MATERIALIZED VIEW public.seedlots; -- -- Name: seedlotsxtrait_components; Type: MATERIALIZED VIEW DATA; Schema: public; Owner: web_usr -- REFRESH MATERIALIZED VIEW public.seedlotsxtrait_components; -- -- Name: seedlotsxtraits; Type: MATERIALIZED VIEW DATA; Schema: public; Owner: web_usr -- REFRESH MATERIALIZED VIEW public.seedlotsxtraits; -- -- Name: seedlotsxtrial_designs; Type: MATERIALIZED VIEW DATA; Schema: public; Owner: web_usr -- REFRESH MATERIALIZED VIEW public.seedlotsxtrial_designs; -- -- Name: seedlotsxtrial_types; Type: MATERIALIZED VIEW DATA; Schema: public; Owner: web_usr -- REFRESH MATERIALIZED VIEW public.seedlotsxtrial_types; -- -- Name: seedlotsxtrials; Type: MATERIALIZED VIEW DATA; Schema: public; Owner: web_usr -- REFRESH MATERIALIZED VIEW public.seedlotsxtrials; -- -- Name: seedlotsxyears; Type: MATERIALIZED VIEW DATA; Schema: public; Owner: web_usr -- REFRESH MATERIALIZED VIEW public.seedlotsxyears; -- -- Name: trait_components; Type: MATERIALIZED VIEW DATA; Schema: public; Owner: web_usr -- REFRESH MATERIALIZED VIEW public.trait_components; -- -- Name: traits; Type: MATERIALIZED VIEW DATA; Schema: public; Owner: web_usr -- REFRESH MATERIALIZED VIEW public.traits; -- -- Name: trait_componentsxtraits; Type: MATERIALIZED VIEW DATA; Schema: public; Owner: web_usr -- REFRESH MATERIALIZED VIEW public.trait_componentsxtraits; -- -- Name: trait_componentsxtrial_designs; Type: MATERIALIZED VIEW DATA; Schema: public; Owner: web_usr -- REFRESH MATERIALIZED VIEW public.trait_componentsxtrial_designs; -- -- Name: trait_componentsxtrial_types; Type: MATERIALIZED VIEW DATA; Schema: public; Owner: web_usr -- REFRESH MATERIALIZED VIEW public.trait_componentsxtrial_types; -- -- Name: trait_componentsxtrials; Type: MATERIALIZED VIEW DATA; Schema: public; Owner: web_usr -- REFRESH MATERIALIZED VIEW public.trait_componentsxtrials; -- -- Name: trait_componentsxyears; Type: MATERIALIZED VIEW DATA; Schema: public; Owner: web_usr -- REFRESH MATERIALIZED VIEW public.trait_componentsxyears; -- -- Name: traitsxtrial_designs; Type: MATERIALIZED VIEW DATA; Schema: public; Owner: web_usr -- REFRESH MATERIALIZED VIEW public.traitsxtrial_designs; -- -- Name: traitsxtrial_types; Type: MATERIALIZED VIEW DATA; Schema: public; Owner: web_usr -- REFRESH MATERIALIZED VIEW public.traitsxtrial_types; -- -- Name: traitsxtrials; Type: MATERIALIZED VIEW DATA; Schema: public; Owner: web_usr -- REFRESH MATERIALIZED VIEW public.traitsxtrials; -- -- Name: traitsxyears; Type: MATERIALIZED VIEW DATA; Schema: public; Owner: web_usr -- REFRESH MATERIALIZED VIEW public.traitsxyears; -- -- Name: trial_designs; Type: MATERIALIZED VIEW DATA; Schema: public; Owner: web_usr -- REFRESH MATERIALIZED VIEW public.trial_designs; -- -- Name: trial_designsxtrial_types; Type: MATERIALIZED VIEW DATA; Schema: public; Owner: web_usr -- REFRESH MATERIALIZED VIEW public.trial_designsxtrial_types; -- -- Name: trial_designsxtrials; Type: MATERIALIZED VIEW DATA; Schema: public; Owner: web_usr -- REFRESH MATERIALIZED VIEW public.trial_designsxtrials; -- -- Name: trial_designsxyears; Type: MATERIALIZED VIEW DATA; Schema: public; Owner: web_usr -- REFRESH MATERIALIZED VIEW public.trial_designsxyears; -- -- Name: trial_types; Type: MATERIALIZED VIEW DATA; Schema: public; Owner: web_usr -- REFRESH MATERIALIZED VIEW public.trial_types; -- -- Name: trial_typesxtrials; Type: MATERIALIZED VIEW DATA; Schema: public; Owner: web_usr -- REFRESH MATERIALIZED VIEW public.trial_typesxtrials; -- -- Name: trial_typesxyears; Type: MATERIALIZED VIEW DATA; Schema: public; Owner: web_usr -- REFRESH MATERIALIZED VIEW public.trial_typesxyears; -- -- Name: trials; Type: MATERIALIZED VIEW DATA; Schema: public; Owner: web_usr -- REFRESH MATERIALIZED VIEW public.trials; -- -- Name: trialsxgenotyping_projects; Type: MATERIALIZED VIEW DATA; Schema: public; Owner: web_usr -- REFRESH MATERIALIZED VIEW public.trialsxgenotyping_projects; -- -- Name: trialsxyears; Type: MATERIALIZED VIEW DATA; Schema: public; Owner: web_usr -- REFRESH MATERIALIZED VIEW public.trialsxyears; -- -- Name: years; Type: MATERIALIZED VIEW DATA; Schema: public; Owner: web_usr -- REFRESH MATERIALIZED VIEW public.years; -- -- PostgreSQL database dump complete --